diff --git a/.gitignore b/.gitignore
index b8836a00..7cd64fe8 100644
--- a/.gitignore
+++ b/.gitignore
@@ -161,6 +161,15 @@ ClientBin/
*.pfx
*.publishsettings
node_modules/
+*.tlg
+*.jdt
+*.ahs
+*.jlg
+*.csv
+*.ahf
+*.rws
+*.asd
+*.ahh
# RIA/Silverlight projects
Generated_Code/
diff --git a/.vs/AxelSuite/DesignTimeBuild/.dtbcache.v2 b/.vs/AxelSuite/DesignTimeBuild/.dtbcache.v2
new file mode 100644
index 00000000..f9e44944
Binary files /dev/null and b/.vs/AxelSuite/DesignTimeBuild/.dtbcache.v2 differ
diff --git a/.vs/AxelSuite/v16/Server/sqlite3/db.lock b/.vs/AxelSuite/v16/Server/sqlite3/db.lock
new file mode 100644
index 00000000..e69de29b
diff --git a/.vs/AxelSuite/v16/Server/sqlite3/storage.ide b/.vs/AxelSuite/v16/Server/sqlite3/storage.ide
new file mode 100644
index 00000000..0523cf7f
Binary files /dev/null and b/.vs/AxelSuite/v16/Server/sqlite3/storage.ide differ
diff --git a/Axel-data/App.config b/Axel-data/App.config
index 8e156463..d58ab5ac 100644
--- a/Axel-data/App.config
+++ b/Axel-data/App.config
@@ -1,6 +1,14 @@
-
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Axel-data/Axel-data.csproj b/Axel-data/Axel-data.csproj
index df42ffa9..c669deb6 100644
--- a/Axel-data/Axel-data.csproj
+++ b/Axel-data/Axel-data.csproj
@@ -13,6 +13,7 @@
512
{60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}
4
+ true
AnyCPU
@@ -37,24 +38,30 @@
dataProc2.ico
-
-
-
-
-
-
-
-
-
- False
- C:\Program Files (x86)\Microsoft Visual Studio 12.0\Blend\Newtonsoft.Json.dll
+
+ False
+
+
+ False
+
+
+ False
+
+
+ False
+
+
+ False
+
+
+ False
+
+
+
+ ..\packages\Newtonsoft.Json.13.0.1\lib\net45\Newtonsoft.Json.dll
-
- False
- C:\Program Files (x86)\Microsoft Visual Studio 12.0\Data\system.threading.tasks.dataflow.dll
-
@@ -63,8 +70,9 @@
4.0
-
- ..\Utils\bin\UtilsLib.dll
+
+ False
+ ..\..\Utils\bin\UtilsLib.dll
@@ -75,12 +83,47 @@
MSBuild:Compile
Designer
+
+ DataPrimitives.cs
+
DataStackLib.cs
+
+ OptionsType.cs
+
+
+ strobesUC.xaml.cs
+ strobesUC.xaml
+
+
+ graphTestUC.xaml
+
+
+ JoinOptimUC.xaml
+
+
+ QMfitUC.xaml
+
+
+ QuantVsMems.xaml
+
TmprCompUC.xaml
+
+ strobesUC.xaml
+ MSBuild:Compile
+ Designer
+
+
+ Designer
+ MSBuild:Compile
+
+
+ MSBuild:Compile
+ Designer
+
MSBuild:Compile
Designer
@@ -93,6 +136,14 @@
MainWindow.xaml
Code
+
+ Designer
+ MSBuild:Compile
+
+
+ Designer
+ MSBuild:Compile
+
Designer
MSBuild:Compile
@@ -117,6 +168,7 @@
ResXFileCodeGenerator
Resources.Designer.cs
+
SettingsSingleFileGenerator
Settings.Designer.cs
diff --git a/Axel-data/JoinOptimUC.xaml b/Axel-data/JoinOptimUC.xaml
new file mode 100644
index 00000000..d4f212b3
--- /dev/null
+++ b/Axel-data/JoinOptimUC.xaml
@@ -0,0 +1,128 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/Axel-data/JoinOptimUC.xaml.cs b/Axel-data/JoinOptimUC.xaml.cs
new file mode 100644
index 00000000..3862cdf4
--- /dev/null
+++ b/Axel-data/JoinOptimUC.xaml.cs
@@ -0,0 +1,266 @@
+using System;
+using System.Collections.Generic;
+using System.IO;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+using System.Windows;
+using System.Windows.Controls;
+using System.Windows.Data;
+using System.Windows.Documents;
+using System.Windows.Input;
+using System.Windows.Media;
+using System.Windows.Media.Imaging;
+using System.Windows.Navigation;
+using System.Windows.Shapes;
+using Axel_hub;
+using UtilsNS;
+
+namespace Axel_data
+{
+ ///
+ /// Interaction logic for JoinOptimClass.xaml
+ ///
+ public partial class JoinOptimClass : UserControl
+ {
+ public JoinOptimClass()
+ {
+ InitializeComponent();
+ }
+ public void Initialize()
+ {
+
+ }
+
+ public delegate void LogHandler(string txt, bool detail = false, SolidColorBrush clr = null);
+ public event LogHandler OnLog;
+
+ protected void LogEvent(string txt, bool detail = false, SolidColorBrush clr = null)
+ {
+ if (OnLog != null) OnLog(txt, detail, clr);
+ }
+
+ public delegate void ProgressHandler(int prog);
+ public event ProgressHandler OnProgress;
+
+ protected void ProgressEvent(int prog)
+ {
+ if (OnProgress != null) OnProgress(prog);
+ }
+
+ #region Scan timing of MEMS vs quant. Delay
+ ShotList shotListDly;
+ bool rawData;
+ private const int dataLength = 10000; // default length of data kept in
+ ///
+ /// Open joint log file
+ ///
+ ///
+ ///
+ private void btnOpenJLog_Click(object sender, RoutedEventArgs e)
+ {
+ Microsoft.Win32.OpenFileDialog dlg = new Microsoft.Win32.OpenFileDialog();
+ dlg.InitialDirectory = Utils.dataPath;
+ dlg.FileName = ""; // Default file name
+ //dlg.DefaultExt = ".jlg"; // Default file extension
+ dlg.Filter = "Join Log File |*.jlg;*.jdt"; // Filter files by extension
+ shotListDly = null; btnJDlyScan.IsEnabled = false; btnDlyScan.IsEnabled = false;
+ Nullable result = dlg.ShowDialog();
+ if (result == true)
+ {
+ lbJoinLogInfo.Content = "File: " + dlg.FileName;
+ rawData = dlg.FileName.IndexOf(".jdt") > -1;
+ shotListDly = new ShotList(false, dlg.FileName, "", rawData);
+ }
+ if (Utils.isNull(shotListDly)) return;
+ btnJDlyScan.IsEnabled = File.Exists(shotListDly.filename) && !shotListDly.savingMode;
+ btnDlyScan.IsEnabled = btnJDlyScan.IsEnabled;
+
+ if (btnJDlyScan.IsEnabled)
+ {
+ LogEvent("Opened: " + shotListDly.filename);
+ shotListDly.resetScan();
+ lbInfo.Text = System.IO.Path.GetFileName(shotListDly.filename) + " : " + shotListDly.Count.ToString() + " shots";
+ if (shotListDly.Count == 0) LogEvent("Error: The file is too big or wrong format");
+ numShotIndex.Value = 0;
+ }
+ //shotList = new ShotList(true, false, fn);
+ //shotList.enabled = true;
+ //setConditions(ref shotList.conditions);
+ }
+
+ DataStack srsMdiffQ = new DataStack(); // ShotList shotList;
+ public DataStack srsFringes = null; DataStack srsMotAccel = null; DataStack srsCorr = null; DataStack srsMems = null; DataStack srsAccel = null;
+
+ public void chartShot(SingleShot ss)
+ {
+ graphJoinOptim.Data[0] = ss.mems;
+ }
+
+ public Dictionary statShot(SingleShot ss)
+ {
+ Dictionary stat = new Dictionary();
+ stat["n.pnts"] = ss.mems.Count;
+ if (ss.mems.Count > 0)
+ {
+ stat["mems.0"] = ss.mems[0].X; stat["mems.1"] = ss.mems[ss.mems.Count - 1].X;
+ }
+ stat["quant.X"] = ss.quant.X; stat["quant.Y"] = ss.quant.Y; stat["quant.Dur"] = ss.quant.Z;
+
+ Utils.dictOfValues(lboxStats, stat, "G5");
+ return stat;
+ }
+ private void numShotIndex_ValueChanged(object sender, NationalInstruments.Controls.ValueChangedEventArgs e)
+ {
+ if (Utils.isNull(shotListDly)) return;
+ int idx = numShotIndex.Value;
+ if (!Utils.InRange(idx, 0, shotListDly.Count - 1))
+ {
+ LogEvent("Wrong shot index"); return;
+ }
+ chartShot(shotListDly[idx]);
+ statShot(shotListDly[idx]);
+ }
+
+ ///
+ /// Scan delay between MOT accel data point and MEMS accel array
+ ///
+ ///
+ ///
+ private void btnJDlyScan_Click(object sender, RoutedEventArgs e)
+ {
+ if (Utils.isNull(shotListDly)) throw new Exception("No shotList opened");
+ btnJDlyScan.Value = !btnJDlyScan.Value;
+ if (!btnJDlyScan.Value) return;
+ if (shotListDly.savingMode || shotListDly.filename.Equals("")) throw new Exception("problem with shotList");
+ //tabLowPlots.SelectedIndex = 1;
+ if (Utils.isNull(srsMotAccel)) srsMotAccel = new DataStack(dataLength);
+ if (Utils.isNull(srsCorr)) srsCorr = new DataStack(dataLength);
+ if (Utils.isNull(srsMems)) srsMems = new DataStack(dataLength);
+ if (Utils.isNull(srsAccel)) srsAccel = new DataStack(dataLength);
+
+ srsMdiffQ.Clear(); double xMin = 1E6, xMax = -1e6;
+ double wd = numJFrom.Value / 1000.0;
+ SingleShot ss; bool next; int j;
+ shotListDly.resetScan();
+ if (!shotListDly.conditions.Count.Equals(0))
+ {
+ OnLog(">> processing conditions:", true, Brushes.DarkSlateGray);
+ foreach (KeyValuePair pair in shotListDly.conditions)
+ {
+ OnLog(pair.Key + " = " + pair.Value, true, Brushes.Teal);
+ }
+ }
+ if (shotListDly.archiveMode == false) OnLog("The file is loaded in memory -> " + shotListDly.Count.ToString() + " shots.", false, Brushes.DarkSlateGray);
+ while ((wd <= (numJTo.Value / 1000.0)) && btnJDlyScan.Value)
+ {
+ srsMotAccel.Clear(); srsCorr.Clear(); srsMems.Clear(); srsAccel.Clear();
+ shotListDly.resetScan(); j = 0; // next wd for the scan
+ do
+ {
+ ss = shotListDly.archiScan(out next); if (Utils.isNull(ss) || !next) break;
+ srsMotAccel.Add(new Point(ss.quant.X, ss.quant.Y)); xMin = Math.Min(xMin, ss.quant.X); xMax = Math.Max(xMax, ss.quant.X);
+ double m = ss.memsWeightAccel(wd, -1, true);
+
+ srsMems.AddPoint(m, ss.quant.X + wd);
+ srsCorr.AddPoint((m - ss.quant.Y) * (m - ss.quant.Y), ss.quant.X);
+ if (chkChartEachIter.IsChecked.Value)
+ {
+ if (!srsMems.Count.Equals(0)) graphAccelTrend.Data[0] = srsMems;
+ if (!srsCorr.Count.Equals(0)) graphAccelTrend.Data[1] = srsCorr;
+ if (!srsMotAccel.Count.Equals(0)) graphAccelTrend.Data[2] = srsMotAccel;
+ if (!srsAccel.Count.Equals(0)) graphAccelTrend.Data[3] = srsAccel;
+ }
+ Utils.DoEvents();
+ j++;
+ } while (next && (numJNPnts.Value.Equals(-1) || (j < numJNPnts.Value)) && btnJDlyScan.Value);
+ LogEvent("shot #" + j.ToString());
+ if (btnJDlyScan.Value)
+ {
+ srsMdiffQ.AddPoint(srsCorr.pointYs().Average(), wd * 1000.0);
+ graphJoinOptim.Data[0] = srsMdiffQ;
+ }
+ lbJoinLogInfo.Content = "File: " + shotListDly.filename + " ; Delay = " + (wd * 1000.0).ToString("G4");
+ Utils.DoEvents();
+ wd += numJBy.Value / 1000.0;
+ } // wd
+ btnJDlyScan.Value = false;
+ double xm = 0; double ym = 1e6;
+ foreach (Point pnt in srsMdiffQ)
+ {
+ if (pnt.Y < ym)
+ {
+ xm = pnt.X; ym = pnt.Y;
+ }
+ }
+ LogEvent("Minimum at " + xm.ToString("G5") + " / " + ym.ToString("G5"));
+ LogEvent("=================================");
+ }
+ #endregion
+ private void chkMEMS_Checked(object sender, RoutedEventArgs e)
+ {
+ if (Utils.isNull(plotMems)) return;
+ if (chkMEMS.IsChecked.Value) plotMems.Visibility = System.Windows.Visibility.Visible;
+ else plotMems.Visibility = System.Windows.Visibility.Hidden;
+ if (chkCorr.IsChecked.Value) plotCorr.Visibility = System.Windows.Visibility.Visible;
+ else plotCorr.Visibility = System.Windows.Visibility.Hidden;
+ if (chkMOT.IsChecked.Value) plotMotAccel.Visibility = System.Windows.Visibility.Visible;
+ else plotMotAccel.Visibility = System.Windows.Visibility.Hidden;
+ if (chkAccel.IsChecked.Value) plotAccel.Visibility = System.Windows.Visibility.Visible;
+ else plotAccel.Visibility = System.Windows.Visibility.Hidden;
+ }
+
+ private void btnScrollLeft_Click(object sender, RoutedEventArgs e)
+ {
+ numShotIndex.Value -= 1;
+ }
+
+ private void btnScrollRight_Click(object sender, RoutedEventArgs e)
+ {
+ numShotIndex.Value += 1;
+ }
+
+ private Point ThresholdDetect(List sp, double level, bool rising = true)
+ {
+ int toler = 2;
+ Point pnt = new Point(-1, -1);
+ for (int i = 0; i < sp.Count; i++)
+ {
+ if (rising)
+ {
+ if (sp[i].Y > level)
+ if ((i - toler) > -1)
+ {
+ pnt = sp[i-toler]; break;
+ }
+
+ }
+ else
+ {
+ if (sp[i].Y < level)
+ if ((i + toler) < sp.Count)
+ {
+ pnt = sp[i+toler]; break;
+ }
+ }
+ }
+ return new Point(pnt.X - sp[0].X, pnt.Y);
+ }
+
+ private void btnDlyScan_Click(object sender, RoutedEventArgs e)
+ {
+ if (Utils.isNull(srsMems)) srsMems = new DataStack();
+ else srsMems.Clear();
+ if (!btnDlyScan.IsEnabled) return;
+ btnDlyScan.Value = !btnDlyScan.Value;
+ for (int i = 0; i< shotListDly.Count; i++)
+ {
+ Point pnt = ThresholdDetect(shotListDly[i].mems, 2);
+ srsMems.Add(new Point(i, pnt.X));
+ if (!btnDlyScan.Value) break;
+ }
+ graphAccelTrend.Data[0] = srsMems;
+ btnDlyScan.Value = false;
+ }
+ }
+}
diff --git a/Axel-data/JoinOptimUC0.xaml.cs b/Axel-data/JoinOptimUC0.xaml.cs
new file mode 100644
index 00000000..9c8f2b72
--- /dev/null
+++ b/Axel-data/JoinOptimUC0.xaml.cs
@@ -0,0 +1,153 @@
+using System;
+using System.Collections.Generic;
+using System.IO;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+using System.Windows;
+using System.Windows.Controls;
+using System.Windows.Data;
+using System.Windows.Documents;
+using System.Windows.Input;
+using System.Windows.Media;
+using System.Windows.Media.Imaging;
+using System.Windows.Navigation;
+using System.Windows.Shapes;
+using Axel_hub;
+using UtilsNS;
+
+namespace Axel_data
+{
+ ///
+ /// Interaction logic for JoinOptimClass.xaml
+ ///
+ public partial class JoinOptimClass : UserControl
+ {
+ public JoinOptimClass()
+ {
+ InitializeComponent();
+ }
+ public delegate void LogHandler(string txt, Color? clr = null);
+ public event LogHandler OnLog;
+
+ protected void LogEvent(string txt, Color? clr = null)
+ {
+ if (OnLog != null) OnLog(txt, clr);
+ }
+
+ #region Scan timing of MEMS vs quant. Delay
+ ShotList shotListDly;
+ private const int dataLength = 10000; // default length of data kept in
+ ///
+ /// Open joint log file
+ ///
+ ///
+ ///
+ private void btnOpenJLog_Click(object sender, RoutedEventArgs e)
+ {
+ Microsoft.Win32.OpenFileDialog dlg = new Microsoft.Win32.OpenFileDialog();
+ dlg.FileName = ""; // Default file name
+ dlg.DefaultExt = ".jlg"; // Default file extension
+ dlg.Filter = "Join Log File (.jlg)|*.jlg"; // Filter files by extension
+
+ Nullable result = dlg.ShowDialog();
+ if (result == true)
+ {
+ lbJoinLogInfo.Content = "File: " + dlg.FileName;
+ shotListDly = new ShotList(true, false, dlg.FileName);
+ }
+ btnJDlyScan.IsEnabled = File.Exists(shotListDly.filename) && !shotListDly.savingMode;
+
+ //shotList = new ShotList(true, false, fn);
+ //shotList.enabled = true;
+ //setConditions(ref shotList.conditions);
+ }
+
+ DataStack srsMdiffQ = new DataStack(); //ShotList shotList;
+ public DataStack srsFringes = null; DataStack srsMotAccel = null; DataStack srsCorr = null; DataStack srsMems = null; DataStack srsAccel = null;
+
+ ///
+ /// Scan delay between MOT accel data point and MEMS accel array
+ ///
+ ///
+ ///
+ private void btnJDlyScan_Click(object sender, RoutedEventArgs e)
+ {
+ if (Utils.isNull(shotListDly)) return;
+ btnJDlyScan.Value = !btnJDlyScan.Value;
+ if (!btnJDlyScan.Value) return;
+ if (shotListDly.savingMode || shotListDly.filename.Equals("")) throw new Exception("problem with shotList");
+ //tabLowPlots.SelectedIndex = 1;
+ if (Utils.isNull(srsMotAccel)) srsMotAccel = new DataStack(dataLength);
+ if (Utils.isNull(srsCorr)) srsCorr = new DataStack(dataLength);
+ if (Utils.isNull(srsMems)) srsMems = new DataStack(dataLength);
+ if (Utils.isNull(srsAccel)) srsAccel = new DataStack(dataLength);
+
+ srsMdiffQ.Clear(); double xMin = 1E6, xMax = -1e6;
+ double wd = numJFrom.Value / 1000.0;
+ SingleShot ss; bool next; int j;
+ shotListDly.resetScan();
+ /*if (!shotListDly.conditions.Count.Equals(0))
+ {
+ OnLog(">> processing conditions:", Brushes.DarkSlateGray.Color);
+ foreach (KeyValuePair pair in shotList.conditions)
+ {
+ OnLog(pair.Key + " = " + pair.Value, Brushes.Teal.Color);
+ }
+ }*/
+ shotListDly.resetScan(); if (!shotListDly.archiveMode) OnLog("The file is loaded in memory -> " + shotListDly.FileCount.ToString() + " shots.", Brushes.DarkSlateGray.Color);
+ while ((wd <= (numJTo.Value / 1000.0)) && btnJDlyScan.Value)
+ {
+ srsMotAccel.Clear(); srsCorr.Clear(); srsMems.Clear(); srsAccel.Clear();
+ shotListDly.resetScan(); j = 0;
+ do
+ {
+ ss = shotListDly.archiScan(out next);
+ srsMotAccel.Add(ss.quant); xMin = Math.Min(xMin, ss.quant.X); xMax = Math.Max(xMax, ss.quant.X);
+ double m = ss.memsWeightAccel(wd, genOptions.Mems2SignLen / 1000.0, true);
+
+ srsMems.AddPoint(m, ss.quant.X + wd);
+ srsCorr.AddPoint((m - ss.quant.Y) * (m - ss.quant.Y), ss.quant.X);
+ if (chkChartEachIter.IsChecked.Value)
+ {
+ if (!srsMems.Count.Equals(0)) graphAccelTrend.Data[0] = srsMems;
+ if (!srsCorr.Count.Equals(0)) graphAccelTrend.Data[1] = srsCorr;
+ if (!srsMotAccel.Count.Equals(0)) graphAccelTrend.Data[2] = srsMotAccel;
+ if (!srsAccel.Count.Equals(0)) graphAccelTrend.Data[3] = srsAccel;
+ }
+ Utils.DoEvents();
+ j++;
+ } while (next && (numJNPnts.Value.Equals(-1) || (j < numJNPnts.Value)) && btnJDlyScan.Value);
+ lbInfoAccelTrend.Content = "Info: shot # " + j.ToString();
+ if (btnJDlyScan.Value)
+ {
+ if (chkChartEachIter.IsChecked.Value)
+ {
+ double d = 0.02 * (xMax - xMin);
+ accelXaxis.Adjuster = RangeAdjuster.None;
+ accelXaxis.Range = new Range(xMin - d, xMax + d);
+ }
+ srsMdiffQ.AddPoint(srsCorr.pointYs().Average(), wd * 1000.0);
+ graphJoinOptim.Data[0] = srsMdiffQ;
+ }
+ lbJoinLogInfo.Content = "File: " + shotListDly.filename + " ; Delay = " + (wd * 1000.0).ToString("G4");
+ Utils.DoEvents();
+ wd += numJBy.Value / 1000.0;
+ }
+ accelXaxis.Adjuster = RangeAdjuster.FitLoosely;
+ btnJDlyScan.Value = false;
+ double xm = 0; double ym = 1e6;
+ foreach (Point pnt in srsMdiffQ)
+ {
+ if (pnt.Y < ym)
+ {
+ xm = pnt.X; ym = pnt.Y;
+ }
+ }
+ lbJoinLogInfo.Content = "File: " + shotList.filename + " ; Minimum at " + xm.ToString("G5") + " / " + ym.ToString("G5");
+ lbInfoAccelTrend.Content = "Info:";*/
+ }
+ #endregion
+
+ }
+}
diff --git a/Axel-data/MainWindow.xaml b/Axel-data/MainWindow.xaml
index f94859be..f0b6a535 100644
--- a/Axel-data/MainWindow.xaml
+++ b/Axel-data/MainWindow.xaml
@@ -1,43 +1,62 @@

+ xmlns:local="clr-namespace:Axel_data" xmlns:ni="http://schemas.ni.com/controls/2009/xaml/presentation" x:Name="AxelDataWindow"
+ x:Class="Axel_data.MainWindow"
+ Title="Axel Data Processing Desk" Height="675.714" Width="1262.857" Icon="Properties/dataProc2.ico" KeyDown="AxelDataWindow_KeyDown" Loaded="AxelDataWindow_Loaded">
-
-
-
-
-
-
-
-
-
-
-
-
+
-
+
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/Axel-data/MainWindow.xaml.cs b/Axel-data/MainWindow.xaml.cs
index b594c4c9..afffbec3 100644
--- a/Axel-data/MainWindow.xaml.cs
+++ b/Axel-data/MainWindow.xaml.cs
@@ -21,7 +21,7 @@
namespace Axel_data
{
///
- /// Interaction logic for MainWindow.xaml
+ /// Interaction logic for MainWindow.xaml -> test 2
///
public partial class MainWindow : Window
{
@@ -30,6 +30,11 @@ public MainWindow()
InitializeComponent();
tmprCompX.OnLog += new TmprCompClass.LogHandler(log);
tmprCompY.OnLog += new TmprCompClass.LogHandler(log);
+ JoinOptim1.OnLog += new JoinOptimClass.LogHandler(log);
+ QuantVsMems1.OnLog += new QuantVsMems.LogHandler(log);
+ QuantVsMems1.QMfit.OnLog += new QMfitUC.LogHandler(log);
+
+ QuantVsMems1.OnProgress += new QuantVsMems.ProgressHandler(progress);
}
private void btnLogClear_Click(object sender, RoutedEventArgs e)
@@ -37,66 +42,67 @@ private void btnLogClear_Click(object sender, RoutedEventArgs e)
tbLog.Document.Blocks.Clear();
}
- private void log(string txt, Color? clr = null)
+ private void log(string txt, bool detail = true, SolidColorBrush clr = null)
{
if (!chkLog.IsChecked.Value) return;
string printOut;
- if ((chkVerbatim.IsChecked.Value) || (txt.Length < 81)) printOut = txt;
+ if ((chkDetail.IsChecked.Value) || (txt.Length < 81)) printOut = txt;
else printOut = txt.Substring(0, 80) + "..."; //
-
- Utils.log(tbLog, printOut, clr);
+ if (detail)
+ {
+ if (chkDetail.IsChecked.Value) Utils.log(tbLog, txt, clr);
+ }
+ else Utils.log(tbLog, txt, clr);
}
- /* FileLogger fl = new FileLogger("", "C:/temp/test11.log");
- DateTime start, finish; TimeSpan time;
- string buff = Utils.randomString(1024);
- int dly = (int)(1000 / tbiSpeed.Value);
- start = DateTime.Now; log("start at: " + start.ToString() +" / interval = "+dly.ToString());
-
- fl.Enabled = true;
- for (int i = 0; i < 100000; i++)
- {
- //Thread.Sleep(dly);
- fl.log(buff);
- }
- finish = DateTime.Now;
- log("finish at: " + finish.ToString());
- time = finish - start;
- log("end of it: " + fl.stw.Elapsed.Milliseconds.ToString() + " / " + time.Seconds.ToString()+" [s]");
- if (fl.missingData) log("skip some data!!!");
- fl.Enabled = false;
- fl = null;
- ===================================================================================
- List rec = new List();
- rec.Add("aaa"); rec.Add("bbb"); rec.Add("ccc");
- DictFileLogger fl = new DictFileLogger(rec, "", "C:/temp/test12.log");
- fl.Enabled = true;
- Dictionary row = new Dictionary();
- row["aaa"] = 111; row["bbb"] = 222; row["ccc"] = 333;
- for (int i = 0; i < 1000; i++)
- {
- fl.dictLog(row);
- }
- if (fl.missingData) log("skiped some data!!!");
- fl.Enabled = false;
- fl = null;
- log("Done!");
-
- */
- private void Button_Click(object sender, RoutedEventArgs e)
+ private int progIdx = 0; private int progMax = 0;
+ // prog <> 0 the iteration counter (progIdx) is set to 0
+ // -2: hide progress bar
+ // -1: normal count including progress bar, when the final count is unknown
+ // 0: one iteration(moves the iteration count 1 up)
+ // n: (n>0) the expected number of iterations, with progress bar
+ private void progress(int prog = 0) //
{
- string[] rec = new string[]{"aaa","bbb","ccc"};
- DictFileReader fl = new DictFileReader("C:/temp/test12.log", rec);
-
- Dictionary row = new Dictionary();
- while (fl.doubleIterator(ref row))
- {
- log(row["aaa"].ToString()+" | "+row["bbb"].ToString()+" | "+row["ccc"].ToString());
+ if (prog == -2)
+ {
+ lbProgBar.Visibility = Visibility.Collapsed; progBar.Visibility = Visibility.Collapsed;
+ }
+ else
+ {
+ lbProgBar.Visibility = Visibility.Visible; progBar.Visibility = Visibility.Visible;
+ }
+ if (prog == -1)
+ {
+ progMax = prog; progIdx = 0; lbProgBar.Content = "0"; progBar.Value = 0; progBar.Maximum = 30;
}
- fl = null;
- log("Done!");
+ if (prog > 0)
+ {
+ progMax = prog; progIdx = 0; lbProgBar.Content = "0 %"; progBar.Value = 0; progBar.Maximum = prog;
+ }
+ if (prog == 0)
+ {
+ progIdx++;
+ if (progMax < 0) // max unknown
+ {
+ lbProgBar.Content = progIdx.ToString(); progBar.Value = (progIdx % 30);
+ }
+ if (progMax > 0)
+ {
+ lbProgBar.Content = (100.0 * progIdx/progMax).ToString("G3")+"%"; progBar.Value = progIdx;
+ }
+ }
+ }
+ private void AxelDataWindow_KeyDown(object sender, KeyEventArgs e)
+ {
+ if (e.Key.Equals(Key.F1)) System.Diagnostics.Process.Start("http://www.axelsuite.com");
+ }
+ private void AxelDataWindow_Loaded(object sender, RoutedEventArgs e)
+ {
+ QuantVsMems1.Initialize();
+ tmprCompY.Initialize();
+ JoinOptim1.Initialize();
}
}
}
diff --git a/Axel-data/Properties/AssemblyInfo.cs b/Axel-data/Properties/AssemblyInfo.cs
index 8f9e18cd..bc1f7fef 100644
--- a/Axel-data/Properties/AssemblyInfo.cs
+++ b/Axel-data/Properties/AssemblyInfo.cs
@@ -7,12 +7,12 @@
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
-[assembly: AssemblyTitle("DataProcDesk")]
-[assembly: AssemblyDescription("")]
+[assembly: AssemblyTitle("Axel Data")]
+[assembly: AssemblyDescription("Off line data processing application for Axel Suite logs and data")]
[assembly: AssemblyConfiguration("")]
-[assembly: AssemblyCompany("HP Inc.")]
-[assembly: AssemblyProduct("DataProcDesk")]
-[assembly: AssemblyCopyright("Copyright © HP Inc. 2019")]
+[assembly: AssemblyCompany("Imperial College London")]
+[assembly: AssemblyProduct("Axel Data")]
+[assembly: AssemblyCopyright("Teodor Krastev & Imperial College London")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
@@ -51,5 +51,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
-[assembly: AssemblyVersion("1.0.0.0")]
-[assembly: AssemblyFileVersion("1.0.0.0")]
+[assembly: AssemblyVersion("1.3.0.5")]
+[assembly: AssemblyFileVersion("1.3.0.5")]
diff --git a/Axel-data/Properties/licenses.licx b/Axel-data/Properties/licenses.licx
index bd6d4b41..c521fc7f 100644
--- a/Axel-data/Properties/licenses.licx
+++ b/Axel-data/Properties/licenses.licx
@@ -1,8 +1,8 @@
# The following section of this file was auto-generated by Measurement Studio. Do not edit or remove this file from the project.
# This file is used for licensing Measurement Studio components.
# Begin Measurement Studio licenses
-NationalInstruments.Controls.Internal.WpfEnterpriseLicenser, NationalInstruments.Controls, Version=15.0.45.3898, Culture=neutral, PublicKeyToken=4febd62461bf11a4
-NationalInstruments.Controls.Internal.WpfProfessionalLicenser, NationalInstruments.Controls, Version=15.0.45.3898, Culture=neutral, PublicKeyToken=4febd62461bf11a4
-NationalInstruments.Controls.Internal.WpfStandardLicenser, NationalInstruments.Controls, Version=15.0.45.3898, Culture=neutral, PublicKeyToken=4febd62461bf11a4
-NationalInstruments.Restricted.AnalysisLicenser, NationalInstruments.Analysis.Enterprise, Version=15.0.45.49153, Culture=neutral, PublicKeyToken=4febd62461bf11a4
+NationalInstruments.Controls.Internal.WpfEnterpriseLicenser, NationalInstruments.Controls, Version=19.0.45.54571, Culture=neutral, PublicKeyToken=4febd62461bf11a4
+NationalInstruments.Controls.Internal.WpfProfessionalLicenser, NationalInstruments.Controls, Version=19.0.45.54571, Culture=neutral, PublicKeyToken=4febd62461bf11a4
+NationalInstruments.Controls.Internal.WpfStandardLicenser, NationalInstruments.Controls, Version=19.0.45.54571, Culture=neutral, PublicKeyToken=4febd62461bf11a4
+NationalInstruments.Restricted.AnalysisLicenser, NationalInstruments.Analysis.Enterprise, Version=19.0.45.49152, Culture=neutral, PublicKeyToken=4febd62461bf11a4
# End Measurement Studio licenses
diff --git a/Axel-data/QMfitUC.xaml b/Axel-data/QMfitUC.xaml
new file mode 100644
index 00000000..da3afc88
--- /dev/null
+++ b/Axel-data/QMfitUC.xaml
@@ -0,0 +1,81 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/Axel-data/QMfitUC.xaml.cs b/Axel-data/QMfitUC.xaml.cs
new file mode 100644
index 00000000..6801b869
--- /dev/null
+++ b/Axel-data/QMfitUC.xaml.cs
@@ -0,0 +1,284 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+using System.Windows.Threading;
+using System.Windows;
+using System.Windows.Controls;
+using System.Windows.Data;
+using System.Windows.Documents;
+using System.Windows.Input;
+using System.Windows.Media;
+using System.Windows.Media.Imaging;
+using System.Windows.Navigation;
+using System.Windows.Shapes;
+using NationalInstruments.Controls.Primitives;
+using NationalInstruments.Analysis.Math;
+using Axel_hub;
+using UtilsNS;
+
+namespace Axel_data
+{
+ ///
+ /// Interaction logic for QMfitUC.xaml
+ ///
+ public partial class QMfitUC : UserControl
+ {
+ private string doubleFormat = "G5";
+ public QMfitUC()
+ {
+ InitializeComponent();
+ Clear();
+ }
+ public void Clear()
+ {
+ data = null; curShotList = null; sectSize = -1;
+ }
+ public delegate void LogHandler(string txt, bool detail = false, SolidColorBrush clr = null);
+ public event LogHandler OnLog;
+ protected void LogEvent(string txt, bool detail = false, SolidColorBrush clr = null)
+ {
+ if (OnLog != null) OnLog(txt, detail, clr);
+ }
+ public Dictionary GetInitials()
+ {
+ Dictionary r = new Dictionary();
+ r["period"] = numPeriod.Value; r["phase"] = numPhase.Value; r["ampl"] = numAmpl.Value; r["offset"] = numOffset.Value;
+ return r;
+ }
+ public int curSectIdx
+ {
+ get
+ {
+ if (Utils.isNull(curShotList)) return -1;
+ if (Utils.isNull(data)) return -1;
+ return (sectSize < 0) ? -1 : Convert.ToInt32(Math.Round((double)(curShotList.lastIdx / sectSize) - 1));
+ }
+ }
+ public ShotList curShotList { get; private set; }
+ public int sectSize = -1;
+ public List data { get; private set; }
+ public Dictionary LoadFromPoints(List dt, bool andFit = true)
+ {
+ Dictionary rslt = new Dictionary(); // andFit false -> empty result
+ Application.Current.Dispatcher.BeginInvoke(DispatcherPriority.DataBind,
+ new Action(() =>
+ {
+ graphMEMSvsQuant.Data[0] = dt;
+ if (!andFit) graphMEMSvsQuant.Data[1] = null;
+ graphMEMSvsQuant.Refresh();
+ }));
+ btnJFitSingle.IsEnabled = (dt.Count > 5);
+ if (btnJFitSingle.IsEnabled) data = new List(dt);
+ else data = null;
+ if (!btnJFitSingle.IsEnabled) LogEvent("no data in section " + curSectIdx.ToString(), false, Brushes.Red);
+ if (!btnJFitSingle.IsEnabled || !andFit) return rslt;
+ rslt = BigFIT();
+ if (rslt.Count == 0) LogEvent("error at section " + curSectIdx.ToString(), false, Brushes.Red);
+ else
+ {
+ if (rslt.ContainsKey("rmse"))
+ {
+ if (Double.IsNaN(rslt["rmse"])) LogEvent("error at section " + curSectIdx.ToString(), false, Brushes.Red);
+ }
+ }
+ return rslt;
+ }
+ public Dictionary LoadFromListOfShots(List shotList, bool andFit = true) // plot the portion
+ {
+ List dt = new List();
+ foreach (SingleShot ss in shotList)
+ {
+ // quant vs mems
+ dt.Add(new Point(ss.memsWeightAccel(0), ss.quant.Y));
+ }
+ return LoadFromPoints(dt, andFit);
+ }
+ public Dictionary ScanSection(ref ShotList shotList, int sectLen, out bool next, bool andFit = true)
+ {
+ curShotList = shotList;
+ List ls = shotList.sectionScan(sectLen, true, out next);
+ return LoadFromListOfShots(ls);
+ }
+
+ // if sectStart > 0 then inefficient use -> must reset and read thru
+ public Dictionary LoadFromShotList(ref ShotList shotList, int sectLen, int sectStart = -1, bool andFit = true)
+ {
+ curShotList = shotList;
+ List dt = new List(); SingleShot ss; bool next = false;
+ if (sectLen < 2) throw new Exception("Too few points ");
+ List ls;
+ if (sectStart > -1) // random access, inefficient especially for large files
+ {
+ shotList.resetScan(); int k = 0;
+ do
+ {
+ ss = shotList.archiScan(out next);
+ k++;
+ } while (next && (k < sectStart));
+ }
+ if (!next) return null;
+ ls = shotList.sectionScan(sectLen, true, out next); // sequential access
+ return LoadFromListOfShots(ls, andFit);
+ }
+ private void reportFit(Dictionary fitCoeff)
+ {
+ tabControl.SelectedIndex = 1;
+ liPeriod.Content = "Period " + fitCoeff["period"].ToString(doubleFormat);
+ liPhase.Content = "Phase " + fitCoeff["phase"].ToString(doubleFormat);
+ liRealPhase.Content = "R.Phase " + fitCoeff["rphase"].ToString(doubleFormat);
+ liAmpl.Content = "Ampl. " + fitCoeff["ampl"].ToString(doubleFormat);
+ liOffset.Content = "Offset " + fitCoeff["offset"].ToString(doubleFormat);
+ liRMSE.Content = "RMSE " + (100*fitCoeff["rmse"]).ToString(doubleFormat)+" [%]";
+ if (fitCoeff["rmse"] < 0.01) liRMSE.Foreground = Brushes.ForestGreen;
+ if (Utils.InRange(fitCoeff["rmse"],0.01,0.02)) liRMSE.Foreground = Brushes.Coral;
+ if (fitCoeff["rmse"] > 0.02) liRMSE.Foreground = Brushes.OrangeRed;
+ liCoD.Content = "R^2 " + fitCoeff["r^2"].ToString(doubleFormat);
+ }
+ private void chartFit(double[] xData, double[] fittedData)
+ {
+ List lp = new List();
+ if (xData.Length != fittedData.Length) throw new Exception("Array size problem");
+ for (int i = 0; i< xData.Length; i++)
+ {
+ lp.Add(new Point(xData[i], fittedData[i]));
+ }
+ Application.Current.Dispatcher.BeginInvoke(DispatcherPriority.DataBind,
+ new Action(() =>
+ {
+ graphMEMSvsQuant.Data[1] = lp;
+ }));
+ }
+ private bool goodFit(Dictionary fitRslt)
+ {
+ if (fitRslt.Count == 0) return false;
+ return (fitRslt["ampl"] > 0) && (fitRslt["rmse"] < 0.01);
+ }
+ public Dictionary BigFIT(bool report = true, bool chart = true)
+ {
+ Dictionary rslt = FIT(report, chart); rslt["in_prd"] = numPeriod.Value;
+ if (!chkPerturbation.IsChecked.Value || goodFit(rslt)) return rslt;
+ List> ls = new List>();
+ double prd0 = numPeriod.Value; double prd = prd0;
+ ls.Add(rslt);
+ while (!goodFit(rslt) && (ls.Count < 11))
+ {
+ int cnt = ls.Count;
+ if (cnt % 2 == 1) prd = prd0 + (cnt/2 + 1) * 0.05;
+ else prd = prd0 - ((cnt - 1)/2 +1) * 0.05;
+ numPeriod.Value = prd;
+ rslt = FIT(report, chart); rslt["in_prd"] = prd;
+ ls.Add(rslt);
+ }
+ for (int k = ls.Count-1; k > -1; k--)
+ {
+ if (ls[k].Count == 0) { ls.RemoveAt(k); continue; }
+ if (ls[k]["ampl"] < 0) { ls.RemoveAt(k); continue; }
+ }
+ int j = 0; double rmse = 1000; int irmse = -1;
+ foreach (Dictionary rs in ls)
+ {
+ if (rs["rmse"] < rmse) { rmse = rs["rmse"]; irmse = j; }
+ j++;
+ }
+ if (irmse > -1) rslt = ls[irmse];
+ numPeriod.Value = rslt["in_prd"]; FIT(report, chart);
+ return rslt;
+ }
+ public Dictionary FIT(bool report = true, bool chart = true)
+ {
+ Dictionary rslt = new Dictionary();
+ if (Utils.isNull(data)) return rslt;
+ int numSamples = data.Count;
+ if (numSamples < 5) return rslt;
+ double[] xData = new double[numSamples];
+ double[] yData = new double[numSamples];
+ for (int i = 0; i< numSamples; i++)
+ {
+ xData[i] = data[i].X; yData[i] = data[i].Y;
+ }
+ Array.Sort(xData, yData);
+ double[] coefficients = new double[4];
+ coefficients[0] = numPeriod.Value; coefficients[1] = numPhase.Value; coefficients[2] = numAmpl.Value; coefficients[3] = numOffset.Value;
+ double meanSquaredError;
+ int maximumIterations = 100;
+ double[] fittedData = null;
+ ModelFunctionCallback callback = new ModelFunctionCallback(ModelFunction);
+ try
+ {
+ fittedData = CurveFit.NonLinearFit(xData, yData, callback, coefficients, out meanSquaredError, maximumIterations);
+ }
+ catch (NationalInstruments.Analysis.AnalysisException e)
+ {
+ LogEvent("============= sect: " + curSectIdx.ToString(), true, Brushes.Blue);
+ LogEvent("Error: " + e.Message, false, Brushes.Red);
+ return rslt;
+ }
+ rslt["period"] = coefficients[0]; double phase = coefficients[1];
+ rslt["phase"] = phase;
+ while (!Utils.InRange(phase, 0, 2 * Math.PI)) // confine in 0 .. 2*Math.PI
+ {
+ if (phase < 0) phase += 2 * Math.PI;
+ else phase -= 2 * Math.PI;
+ }
+ rslt["rphase"] = phase;
+ rslt["ampl"] = coefficients[2]; rslt["offset"] = coefficients[3];
+ rslt["rmse"] = Math.Sqrt(meanSquaredError);
+ double SSres = 0; double SStot = 0; double yAver = yData.Average();
+ for (int i = 0; i < numSamples; i++)
+ {
+ SSres += Math.Pow(yData[i] - fittedData[i], 2);
+ SStot += Math.Pow(yData[i] - yAver, 2);
+ }
+ rslt["r^2"] = 1 - SSres / SStot;
+ if (report) reportFit(rslt);
+ if (chart) chartFit(xData, fittedData);
+ Utils.DoEvents();
+ return rslt;
+ }
+
+ // Callback function that implements the fitting model
+ private double ModelFunction(double x, double[] coefficients)
+ {
+ return Math.Cos(coefficients[0]* x + coefficients[1]) * coefficients[2] + coefficients[3];
+ }
+
+ private void btnJFitSingle_Click(object sender, RoutedEventArgs e)
+ {
+ if (!Utils.isNull(data)) BigFIT();
+ }
+
+ private void btnTest_Click(object sender, RoutedEventArgs e)
+ {
+ if (Utils.isNull(data)) return;
+ int numSamples = data.Count;
+ if (numSamples < 5) return;
+ double[] coefficients = new double[4];
+ coefficients[0] = numPeriod.Value; coefficients[1] = numPhase.Value; coefficients[2] = numAmpl.Value; coefficients[3] = numOffset.Value;
+ double[] xData = new double[numSamples];
+ double[] yData = new double[numSamples];
+ for (int i = 0; i < numSamples; i++)
+ {
+ xData[i] = data[i].X; yData[i] = ModelFunction(data[i].X, coefficients);
+ }
+ Array.Sort(xData, yData);
+ chartFit(xData, yData);
+ }
+
+ private void btnEval_Click(object sender, RoutedEventArgs e)
+ {
+ if (Utils.isNull(data)) return;
+ int numSamples = data.Count;
+ if (numSamples < 5) return;
+ double[] xData = new double[numSamples];
+ double[] yData = new double[numSamples];
+ for (int i = 0; i < numSamples; i++)
+ {
+ xData[i] = data[i].X; yData[i] = data[i].Y;
+ }
+ numAmpl.Value = (yData.Max() - yData.Min())/2;
+ numOffset.Value = yData.Average();
+ }
+ }
+}
diff --git a/Axel-data/QuantVsMems.xaml b/Axel-data/QuantVsMems.xaml
new file mode 100644
index 00000000..1a66ab87
--- /dev/null
+++ b/Axel-data/QuantVsMems.xaml
@@ -0,0 +1,114 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/Axel-data/QuantVsMems.xaml.cs b/Axel-data/QuantVsMems.xaml.cs
new file mode 100644
index 00000000..15522e7d
--- /dev/null
+++ b/Axel-data/QuantVsMems.xaml.cs
@@ -0,0 +1,296 @@
+using System;
+using System.Collections.Generic;
+using System.IO;
+using System.Threading;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+using System.Windows;
+using System.Windows.Controls;
+using System.Windows.Data;
+using System.Windows.Documents;
+using System.Windows.Input;
+using System.Windows.Media;
+using System.Windows.Media.Imaging;
+using System.Windows.Navigation;
+using System.Windows.Shapes;
+using Axel_hub;
+using UtilsNS;
+
+
+namespace Axel_data
+{
+ ///
+ /// Interaction logic for QuantVsMems.xaml
+ ///
+ public partial class QuantVsMems : UserControl
+ {
+ const string prec = "G5";
+ public QuantVsMems()
+ {
+ InitializeComponent();
+
+ }
+ public void Initialize()
+ {
+ Window window = Window.GetWindow(this);
+ window.Closing += window_Closing;
+
+ numSectionSize_ValueChanged(null, null);
+ }
+
+ public delegate void LogHandler(string txt, bool detail = false, SolidColorBrush clr = null);
+ public event LogHandler OnLog;
+
+ protected void LogEvent(string txt, bool detail = false, SolidColorBrush clr = null)
+ {
+ if (OnLog != null) OnLog(txt, detail, clr);
+ }
+ public delegate void ProgressHandler(int prog);
+ public event ProgressHandler OnProgress;
+
+ protected void ProgressEvent(int prog)
+ {
+ if (OnProgress != null) OnProgress(prog);
+ }
+
+ #region Scan timing of MEMS vs quant. Delay
+ ShotList shotList; List validShotList;
+ private const int dataLength = 10000; // default length of data kept in
+ ///
+ /// Open joint log file
+ ///
+ ///
+ ///
+ private void btnOpenJLog_Click(object sender, RoutedEventArgs e)
+ {
+ Microsoft.Win32.OpenFileDialog dlg = new Microsoft.Win32.OpenFileDialog();
+ dlg.FileName = ""; // Default file name
+ dlg.InitialDirectory = Utils.dataPath;
+ dlg.DefaultExt = ".jdt"; // Default file extension
+ dlg.Filter = "Join Data File (.jdt)|*.jdt|CSV File (.csv)|*.csv"; // Filter files by extension
+ btnScan.IsEnabled = false;
+ Nullable result = dlg.ShowDialog();
+ if (result == false) return;
+ //dlg.FileName = @"f:\Work\AxelSuite\Axel-data\Data\5120Hz.jdt";
+ //lbJoinLogInfo.Content = "File: " + dlg.FileName;
+ if (System.IO.Path.GetExtension(dlg.FileName).Equals(".jdt") && File.Exists(dlg.FileName))
+ {
+ shotList = new ShotList(false, dlg.FileName, "", true); shotList.resetScan();
+ btnScan.IsEnabled = File.Exists(shotList.filename) && !shotList.savingMode;
+ if (btnScan.IsEnabled)
+ {
+ LogEvent("Opened: " + shotList.filename); LogEvent(shotList.Count.ToString() + " shots loaded in memory");
+ }
+ gbSectScroll.Header = "Section Scroll";
+ actIdx = 0; btnScrollRight_Click(null, null);
+ }
+ else
+ {
+ btnScan.IsEnabled = false;
+ List lp = new List();
+ foreach (string line in File.ReadLines(dlg.FileName))
+ {
+ if (line.Equals("")) continue;
+ if (line[0].Equals('#')) continue;
+ string[] sa = line.Split(',');
+ if (sa.Length.Equals(2)) lp.Add(new Point(Convert.ToDouble(sa[0]), Convert.ToDouble(sa[1])));
+ if (sa.Length.Equals(3)) lp.Add(new Point(Convert.ToDouble(sa[1]), Convert.ToDouble(sa[2])));
+ }
+ if (lp.Count < 3)
+ {
+ LogEvent("Too few points in " + dlg.FileName);
+ return;
+ }
+ QMfit.LoadFromPoints(lp, false);
+ }
+ //shotList = new ShotList(true, false, fn);
+ //shotList.enabled = true;
+ //setConditions(ref shotList.conditions);
+ }
+
+ DataStack srsMdiffQ = new DataStack(); //ShotList shotList;
+ public DataStack srsFringes = null; DataStack srsPeriod = null; DataStack srsPhase = null; DataStack srsAmpl = null; DataStack srsRMSE = null;
+
+ public List M_size()
+ {
+ List all = new List(); SingleShot ss;
+ DataStack srs = new DataStack(dataLength); DataStack srs2 = new DataStack(dataLength);
+
+ shotList.resetScan(); double prT = -1;
+ bool next; int k = 0;
+ do
+ {
+ ss = shotList.archiScan(out next);
+ k++; if (k < 4) continue;
+ if (next)
+ {
+ srs.AddPoint(ss.mems.Count);
+ if (prT > 0) srs2.AddPoint(ss.quant.X - prT);
+ prT = ss.quant.X;
+ }
+ } while (next);
+ all.Add(srs); all.Add(srs2);
+ return all;
+ }
+
+ private bool ShowResults(Dictionary rFit, bool inLog, bool inChart)
+ {
+ if (Utils.isNull(rFit)) return false;
+ if (!rFit.ContainsKey("rmse")) return false;
+ if (inLog)
+ {
+ LogEvent("============= sect: "+QMfit.curSectIdx.ToString(), true, Brushes.Blue);
+ foreach (KeyValuePair keyVal in rFit)
+ {
+ LogEvent(keyVal.Key + " = " + keyVal.Value.ToString(prec), true, Brushes.Navy);
+ }
+ //LogEvent("-------------------", true, Brushes.Blue.Color);
+ }
+ if (inChart)
+ {
+ if (Double.IsNaN(rFit["rmse"])) return false;
+ srsPeriod.AddPoint(rFit["period"]); graphTrends.Data[0] = srsPeriod;
+ srsPhase.AddPoint(rFit["phase"]); graphTrends.Data[1] = srsPhase;
+ srsAmpl.AddPoint(rFit["ampl"]); graphTrends.Data[2] = srsAmpl;
+ srsRMSE.AddPoint(rFit["rmse"]); graphTrends.Data[3] = srsRMSE;
+ }
+ return true;
+ }
+
+ private int ValidateMemsData(bool detail)
+ {
+ validShotList = new List(); bool next; SingleShot ss;
+ shotList.resetScan(); if (shotList.Count == 0) LogEvent("Join -Data (.jdt) file seems to be empty.",false,Brushes.Red);
+ LogEvent("Estim.aqc.range: " + shotList.defaultAqcTime.ToString(prec) + " [s]", detail, Brushes.DarkGreen);
+ do
+ {
+ ss = shotList.archiScan(out next);
+ if (next)
+ if (ss.timeValidation(shotList.defaultAqcTime)) validShotList.Add(new SingleShot(ss));
+ } while (next);
+ LogEvent("Total shots: " + shotList.Count.ToString() + "; valid: " + validShotList.Count.ToString(), detail, Brushes.Navy);
+
+ return validShotList.Count;
+ }
+ ///
+ /// Scan delay between MOT accel data point and MEMS accel array
+ ///
+ ///
+ ///
+ private void btnJFitScan_Click(object sender, RoutedEventArgs e)
+ {
+ if (cbAction.SelectedIndex != 2)
+ {
+ if (Utils.isNull(shotList)) throw new Exception("No Join-Data (.jdt) file loaded.");
+ }
+ btnScan.Value = !btnScan.Value;
+ switch (cbAction.SelectedIndex)
+ {
+ case(0): // Scan Fit
+ bool next;
+ shotList.resetScan();
+ // validation stats
+ ProgressEvent((int)(ValidateMemsData(true)/ numSectionSize.Value) + 1);
+ // initialte series
+ if (Utils.isNull(srsPeriod)) srsPeriod = new DataStack();
+ else srsPeriod.Clear();
+ if (Utils.isNull(srsPhase)) srsPhase = new DataStack();
+ else srsPhase.Clear();
+ if (Utils.isNull(srsAmpl)) srsAmpl = new DataStack();
+ else srsAmpl.Clear();
+ if (Utils.isNull(srsRMSE)) srsRMSE = new DataStack();
+ else srsRMSE.Clear();
+
+ // the real action
+ shotList.resetScan(); Dictionary rFit;
+ do
+ {
+ rFit = QMfit.ScanSection(ref shotList, numSectionSize.Value, out next);
+ ShowResults(rFit, true, true); //LogEvent("error at sect: "+((int)(shotList.lastIdx/ numSectionSize.Value)).ToString(), false, Brushes.Red.Color);
+ ProgressEvent(0);
+ } while (next);
+
+ btnScan.Value = false;
+ break;
+ case(1): // M-size
+ ValidateMemsData(false);
+ List all = M_size();
+ graphTrends.Data[0] = all[0]; graphTrends.Data[1] = all[1];
+ btnScan.Value = false;
+ break;
+ case(2): // Simulation
+ while (btnScan.Value)
+ {
+ btnScrollRight_Click(null, null);
+ //Utils.DoEvents();
+ Thread.Sleep(500);
+ }
+ break;
+ }
+ return;
+ }
+ #endregion
+ private void chkMEMS_Checked(object sender, RoutedEventArgs e)
+ {
+ if (Utils.isNull(plotPeriod)) return;
+ if (chkPeriod.IsChecked.Value) plotPeriod.Visibility = System.Windows.Visibility.Visible;
+ else plotPeriod.Visibility = System.Windows.Visibility.Hidden;
+ if (chkPhase.IsChecked.Value) plotPhase.Visibility = System.Windows.Visibility.Visible;
+ else plotPhase.Visibility = System.Windows.Visibility.Hidden;
+ if (chkAmpl.IsChecked.Value) plotAmpl.Visibility = System.Windows.Visibility.Visible;
+ else plotAmpl.Visibility = System.Windows.Visibility.Hidden;
+ if (chkRMSE.IsChecked.Value) plotRMSE.Visibility = System.Windows.Visibility.Visible;
+ else plotRMSE.Visibility = System.Windows.Visibility.Hidden;
+ }
+
+ private int actIdx = 0; // active section index
+ private void btnScrollRight_Click(object sender, RoutedEventArgs e)
+ {
+ if ((cbAction.SelectedIndex != 2) && Utils.isNull(shotList))
+ {
+ LogEvent("No Join-Data (.jdt) file loaded.", false, Brushes.Red); return;
+ //if (shotList.Count == 0) throw new Exception("Join-Data (.jdt) file is empty.");
+ }
+ switch (cbAction.SelectedIndex)
+ {
+ case (0): // Scan Fit
+ int sz = numSectionSize.Value;
+ if (sender == btnScrollLeft) actIdx--;
+ if (sender == btnScrollRight) actIdx++;
+ actIdx = Utils.EnsureRange(actIdx, 0, shotList.Count/sz);
+ gbSectScroll.Header = "Section Scroll #" + actIdx.ToString();
+ QMfit.LoadFromShotList(ref shotList, sz, actIdx * sz, false);
+ break;
+ case (1): // M-size
+ break;
+ case (2): // Simulation
+ List lp = new List();
+ Dictionary ini = QMfit.GetInitials();
+ double st = 26.0 / numSectionSize.Value; // step in rad (4 periods)
+ for (int i = 0; i < numSectionSize.Value; i++)
+ {
+ double x = i * st;
+ double y = Math.Cos(ini["period"] * x + ini["phase"]) * ini["ampl"] + ini["offset"];
+ lp.Add(new Point(x, y+Utils.Gauss01()* numSimulNoise.Value/100));
+ }
+ QMfit.LoadFromPoints(lp, Utils.isNull(sender));
+ break;
+ }
+ }
+
+ private void window_Closing(object sender, global::System.ComponentModel.CancelEventArgs e)
+ {
+ if (btnScan.Value)
+ {
+ btnScan.Value = false; Thread.Sleep(600);
+ }
+ }
+
+ private void numSectionSize_ValueChanged(object sender, NationalInstruments.Controls.ValueChangedEventArgs e)
+ {
+ if (Utils.isNull(QMfit)) return;
+ QMfit.sectSize = numSectionSize.Value;
+ }
+ }
+}
diff --git a/Axel-data/TmprCompUC.xaml.cs b/Axel-data/TmprCompUC.xaml.cs
index 392e4e13..045d0ed8 100644
--- a/Axel-data/TmprCompUC.xaml.cs
+++ b/Axel-data/TmprCompUC.xaml.cs
@@ -40,13 +40,17 @@ public TmprCompClass()
srsRes = new DataStack(DataStack.maxDepth);
srsResHisto = new DataStack(1000);
}
+ public void Initialize()
+ {
+
+ }
- public delegate void LogHandler(string txt, Color? clr = null);
+ public delegate void LogHandler(string txt, bool detail = false, SolidColorBrush clr = null);
public event LogHandler OnLog;
- protected void LogEvent(string txt, Color? clr = null)
+ protected void LogEvent(string txt, bool detail = false, SolidColorBrush clr = null)
{
- if (OnLog != null) OnLog(txt, clr);
+ if (OnLog != null) OnLog(txt, detail, clr);
}
private void btnOpenLog_Click(object sender, RoutedEventArgs e)
@@ -54,7 +58,7 @@ private void btnOpenLog_Click(object sender, RoutedEventArgs e)
Microsoft.Win32.OpenFileDialog dlg = new Microsoft.Win32.OpenFileDialog();
dlg.FileName = ""; // Default file name
dlg.DefaultExt = ".ahf"; // Default file extension
- dlg.Filter = "Axel Hub File (.ahf)|*.ahf|" + "All files (*.*)|*.*"; ; // Filter files by extension
+ dlg.Filter = "Axel Hub File (.ahf)|*.ahf|" + "All files (*.*)|*.*"; // Filter files by extension
// Show save file dialog box
Nullable result = dlg.ShowDialog();
@@ -73,7 +77,7 @@ private void btnOpenLog_Click(object sender, RoutedEventArgs e)
k++;
}
graphRaw.Data[0] = srsMems; graphRaw.Data[1] = srsTmpr;
- OnLog("Opened: " + dlg.FileName + " (" + k.ToString() + " pnts)");
+ OnLog("Opened: " + dlg.FileName + " (" + k.ToString() + " pnts)", false, Brushes.Maroon);
btnFIT.IsEnabled = true;
}
@@ -137,10 +141,10 @@ private void btnFIT_Click(object sender, RoutedEventArgs e)
double[] fittedData = CurveFit.NonLinearFit(inputXData, inputYData, callback, coefficients, out meanSquaredError, maximumIterations);
Histogram(Residuals(fittedData), 50);
- Utils.log(richResults, "Raw signal stDev = " + mDev.ToString("G5"), Brushes.Navy.Color);
+ Utils.log(richResults, "Raw signal stDev = " + mDev.ToString("G5"), Brushes.Navy);
double rDev = Statistics.StandardDeviation(srsRes.pointYs());
- Utils.log(richResults, "Resid. stDev = " + rDev.ToString("G5"), Brushes.Navy.Color);
- Utils.log(richResults, "Improvement = " + (mDev / rDev).ToString("G5") + " times", Brushes.Blue.Color);
+ Utils.log(richResults, "Resid. stDev = " + rDev.ToString("G5"), Brushes.Navy);
+ Utils.log(richResults, "Improvement = " + (mDev / rDev).ToString("G5") + " times", Brushes.Blue);
}
catch (Exception exp)
{
@@ -151,7 +155,7 @@ private void btnFIT_Click(object sender, RoutedEventArgs e)
string txt = '['+i.ToString()+"] "+coefficients[i].ToString("G6");
Utils.log(richResults, txt);
}
- Utils.log(richResults, "MeanSqError= " + meanSquaredError.ToString("G5"), Brushes.Maroon.Color);
+ Utils.log(richResults, "MeanSqError= " + meanSquaredError.ToString("G5"), Brushes.Maroon);
}
private DataStack Residuals(double[] fittedData)
diff --git a/Axel-data/UserControl1.xaml b/Axel-data/UserControl1.xaml
new file mode 100644
index 00000000..254a574e
--- /dev/null
+++ b/Axel-data/UserControl1.xaml
@@ -0,0 +1,12 @@
+
+
+
+
+
diff --git a/Axel-data/UserControl1.xaml.cs b/Axel-data/UserControl1.xaml.cs
new file mode 100644
index 00000000..a19c48fa
--- /dev/null
+++ b/Axel-data/UserControl1.xaml.cs
@@ -0,0 +1,28 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+using System.Windows;
+using System.Windows.Controls;
+using System.Windows.Data;
+using System.Windows.Documents;
+using System.Windows.Input;
+using System.Windows.Media;
+using System.Windows.Media.Imaging;
+using System.Windows.Navigation;
+using System.Windows.Shapes;
+
+namespace Axel_data
+{
+ ///
+ /// Interaction logic for UserControl1.xaml
+ ///
+ public partial class UserControl1 : UserControl
+ {
+ public UserControl1()
+ {
+ InitializeComponent();
+ }
+ }
+}
diff --git a/Axel-data/docs/NonLinearFit Method (Double[], Double[], ModelFunctionCallback, Double[], Double, Int32) - Measurement Studio 2012 for Visual Studio 2010 Help - National Instruments.url b/Axel-data/docs/NonLinearFit Method (Double[], Double[], ModelFunctionCallback, Double[], Double, Int32) - Measurement Studio 2012 for Visual Studio 2010 Help - National Instruments.url
new file mode 100644
index 00000000..f86a2c40
--- /dev/null
+++ b/Axel-data/docs/NonLinearFit Method (Double[], Double[], ModelFunctionCallback, Double[], Double, Int32) - Measurement Studio 2012 for Visual Studio 2010 Help - National Instruments.url
@@ -0,0 +1,2 @@
+[InternetShortcut]
+URL=http://zone.ni.com/reference/en-XX/help/372636F-01/mstudiowebhelp/html/d115725c/
diff --git a/Axel-data/docs/acquisitionSummary.pdf b/Axel-data/docs/acquisitionSummary.pdf
new file mode 100644
index 00000000..6fbc58bf
Binary files /dev/null and b/Axel-data/docs/acquisitionSummary.pdf differ
diff --git a/Axel-data/graphTestUC.xaml b/Axel-data/graphTestUC.xaml
new file mode 100644
index 00000000..7d1426bd
--- /dev/null
+++ b/Axel-data/graphTestUC.xaml
@@ -0,0 +1,27 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/Axel-data/graphTestUC.xaml.cs b/Axel-data/graphTestUC.xaml.cs
new file mode 100644
index 00000000..bf783d0a
--- /dev/null
+++ b/Axel-data/graphTestUC.xaml.cs
@@ -0,0 +1,69 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading;
+using System.Windows.Threading;
+using System.Threading.Tasks;
+using System.Windows;
+using System.Windows.Controls;
+using System.Windows.Data;
+using System.Windows.Documents;
+using System.Windows.Input;
+using System.Windows.Media;
+using System.Windows.Media.Imaging;
+using System.Windows.Navigation;
+using System.Windows.Shapes;
+using UtilsNS;
+
+namespace Axel_data
+{
+ ///
+ /// Interaction logic for graphTestUC.xaml
+ ///
+ public partial class graphTestUC : UserControl
+ {
+ private readonly Random _random;
+ private readonly DispatcherTimer _timer;
+ const int Rows = 10; // number of series
+ const int Columns = 101;
+
+ public graphTestUC()
+ {
+ InitializeComponent();
+ _random = new Random();
+ _timer = new DispatcherTimer(TimeSpan.FromSeconds(0.5), DispatcherPriority.Normal, OnTimerTick, Dispatcher);
+ _timer.Stop();
+ }
+ private void OnTimerTick(object sender, EventArgs e)
+ {
+ if (rbMode1.IsChecked.Value)
+ {
+ var data = new uint[Rows, Columns];
+ for (int i = 0; i < Rows; ++i)
+ for (int j = 0; j < Columns; ++j)
+ data[i, j] = (uint)_random.Next(0, 101);
+ graph1.DataContext = data;
+ }
+ }
+
+ private void btnTest_Click(object sender, RoutedEventArgs e)
+ {
+ if (rbMode1.IsChecked.Value) _timer.Start();
+
+ if (rbMode2.IsChecked.Value)
+ {
+ var data = new uint[Rows, Columns];
+ for (int j = 0; j < Columns; ++j)
+ {
+ //var data = new uint[Rows, j+1];
+ for (int i = 0; i < Rows; ++i)
+ data[i, j] = (uint)_random.Next(0, 101);
+ graph1.DataContext = data; graph1.Refresh();
+ Utils.DoEvents();
+ Thread.Sleep(500);
+ }
+ }
+ }
+ }
+}
diff --git a/Axel-data/packages.config b/Axel-data/packages.config
new file mode 100644
index 00000000..093dcd23
--- /dev/null
+++ b/Axel-data/packages.config
@@ -0,0 +1,4 @@
+
+
+
+
\ No newline at end of file
diff --git a/Axel-digit/App.config b/Axel-digit/App.config
new file mode 100644
index 00000000..4c18c6bf
--- /dev/null
+++ b/Axel-digit/App.config
@@ -0,0 +1,14 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Axel-digit/App.xaml b/Axel-digit/App.xaml
new file mode 100644
index 00000000..f4c4ea3c
--- /dev/null
+++ b/Axel-digit/App.xaml
@@ -0,0 +1,9 @@
+
+
+
+
+
diff --git a/Axel-digit/App.xaml.cs b/Axel-digit/App.xaml.cs
new file mode 100644
index 00000000..16a08e88
--- /dev/null
+++ b/Axel-digit/App.xaml.cs
@@ -0,0 +1,17 @@
+using System;
+using System.Collections.Generic;
+using System.Configuration;
+using System.Data;
+using System.Linq;
+using System.Threading.Tasks;
+using System.Windows;
+
+namespace Axel_digit
+{
+ ///
+ /// Interaction logic for App.xaml
+ ///
+ public partial class App : Application
+ {
+ }
+}
diff --git a/Axel-digit/Axel-digit.csproj b/Axel-digit/Axel-digit.csproj
new file mode 100644
index 00000000..45a33f03
--- /dev/null
+++ b/Axel-digit/Axel-digit.csproj
@@ -0,0 +1,122 @@
+
+
+
+
+ Debug
+ AnyCPU
+ {7961FB42-975A-4430-8C48-6FAE6F6431BD}
+ WinExe
+ Axel_digit
+ Axel-digit
+ v4.7.2
+ 512
+ {60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}
+ 4
+ true
+ true
+
+
+ AnyCPU
+ true
+ full
+ false
+ bin\Debug\
+ DEBUG;TRACE
+ prompt
+ 4
+
+
+ AnyCPU
+ pdbonly
+ true
+ bin\Release\
+ TRACE
+ prompt
+ 4
+
+
+
+
+
+
+
+ ..\packages\Newtonsoft.Json.13.0.1\lib\net45\Newtonsoft.Json.dll
+
+
+
+
+
+
+
+
+
+
+
+ 4.0
+
+
+
+
+
+
+
+
+
+ MSBuild:Compile
+ Designer
+
+
+ MSBuild:Compile
+ Designer
+
+
+ App.xaml
+ Code
+
+
+ MainWindow.xaml
+ Code
+
+
+
+
+
+ Code
+
+
+ True
+ True
+ Resources.resx
+
+
+ True
+ Settings.settings
+ True
+
+
+ ResXFileCodeGenerator
+ Resources.Designer.cs
+
+
+
+ SettingsSingleFileGenerator
+ Settings.Designer.cs
+
+
+
+
+
+
+
+
+
+
+ {a377a708-96b9-4569-bc22-0187d647611e}
+ UtilsLib
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Axel-digit/Delete1.bmp b/Axel-digit/Delete1.bmp
new file mode 100644
index 00000000..6f6b6478
Binary files /dev/null and b/Axel-digit/Delete1.bmp differ
diff --git a/Axel-digit/Help/NINETDAQmxComponentModelFx40Ref.chm b/Axel-digit/Help/NINETDAQmxComponentModelFx40Ref.chm
new file mode 100644
index 00000000..1e1c5793
Binary files /dev/null and b/Axel-digit/Help/NINETDAQmxComponentModelFx40Ref.chm differ
diff --git a/Axel-digit/Help/NINETDAQmxFx40.chm b/Axel-digit/Help/NINETDAQmxFx40.chm
new file mode 100644
index 00000000..7f3b50ee
Binary files /dev/null and b/Axel-digit/Help/NINETDAQmxFx40.chm differ
diff --git a/Axel-digit/Help/NINETDAQmxFx40Ref.chm b/Axel-digit/Help/NINETDAQmxFx40Ref.chm
new file mode 100644
index 00000000..87c9835d
Binary files /dev/null and b/Axel-digit/Help/NINETDAQmxFx40Ref.chm differ
diff --git a/Axel-digit/Help/NINETDAQmxIntegrationFx40.chm b/Axel-digit/Help/NINETDAQmxIntegrationFx40.chm
new file mode 100644
index 00000000..3569915e
Binary files /dev/null and b/Axel-digit/Help/NINETDAQmxIntegrationFx40.chm differ
diff --git a/Axel-digit/Help/_OpeningCHMFiles.txt b/Axel-digit/Help/_OpeningCHMFiles.txt
new file mode 100644
index 00000000..c169e775
--- /dev/null
+++ b/Axel-digit/Help/_OpeningCHMFiles.txt
@@ -0,0 +1,10 @@
+Windows only
+------------
+You cannot view the information in this help file if you launch the file directly from the zip file or across a networked drive. To view this help file, extract all the files in this ZIP archive and copy them to an appropriate location on your computer, then double-click the NINETDAQmxFx40.chm file.
+
+
+Unblocking the CHM File
+-----------------------
+The security settings on your PC may require you to unblock the .chm file before you can view its contents. To unblock the .chm file, right-click the file, and choose Properties from the shortcut menu. If the Unblock button is visible at the bottom of the General or Security tab, click that button and try to reopen the file. You may need to repeat this procedure for the remaining .chm files in the folder.
+
+Refer to the Microsoft Knowledge Base (article ID 896358) for more information about the security updates that prevent you from viewing HTML Help files remotely.
\ No newline at end of file
diff --git a/Axel-digit/Help/digit_example.cs b/Axel-digit/Help/digit_example.cs
new file mode 100644
index 00000000..1e0163c0
--- /dev/null
+++ b/Axel-digit/Help/digit_example.cs
@@ -0,0 +1,663 @@
+/*******************************************************************************
+*
+* Example program:
+* GlobalDigitalPortIO_USB
+*
+* Description:
+* This example shows how to load a digital port input/output task from the Measurement &
+* Automation Explorer (MAX) and use it to read/write the lowest 8 bits from/to the digital port.
+* This example should also work with E-Series and M-Series devices.
+*
+* Instructions for running:
+* 1. Create an on demand digital port I/O NI-DAQmx global task in MAX. For help, refer to
+* "Creating Tasks and Channels" in the Measurement & Automation Explorer Help.
+* To access this help, select Start>>All Programs>>National Instruments>>
+* Measurement & Automation. In MAX, select Help>>MAX Help.
+*
+* Note: If you prefer, you can import an on demand digital port I/O task and a simulated USB
+* device into MAX from the GlobalDigitalPort[Input/Output]_USB.nce file, which is located in the
+* example directory. Refer to "Using the Configuration Import Wizard" in the
+* Measurement & Automation Explorer Help for more information.
+*
+* 2. Run the application, select the task from the drop-down list, and then toggle to switches
+* to write values to the port or click the Read button to read values from the port
+*
+* Steps:
+* Write
+* 1. Load the task from MAX.
+* 2. Create a DigitalSingleChannelWriter and call WriteSingleSamplePort to write the data
+* to the digital port.
+* Read
+* 1. Load the task from MAX.
+* 2. Create a DigitalSingleChannelReader and call ReadSingleSamplePortInt32 to read the data
+* from the digital port.
+*******************************************************************************/
+
+
+using System;
+using System.Drawing;
+using System.Collections;
+using System.ComponentModel;
+using System.Windows.Forms;
+using System.Data;
+using NationalInstruments.DAQmx;
+using NationalInstruments.UI;
+using NationalInstruments.UI.WindowsForms;
+
+namespace NationalInstruments.Examples.GlobalDigitalPortIO_USB
+{
+ ///
+ /// Summary description for Form1.
+ ///
+ public class MainForm : System.Windows.Forms.Form
+ {
+ private NationalInstruments.UI.WindowsForms.Switch line7Switch;
+ private NationalInstruments.UI.WindowsForms.Led line7Led;
+ private System.Windows.Forms.GroupBox writeGroupBox;
+ private NationalInstruments.UI.WindowsForms.Switch line6Switch;
+ private NationalInstruments.UI.WindowsForms.Switch line5Switch;
+ private NationalInstruments.UI.WindowsForms.Switch line4Switch;
+ private NationalInstruments.UI.WindowsForms.Switch line3Switch;
+ private NationalInstruments.UI.WindowsForms.Switch line2Switch;
+ private NationalInstruments.UI.WindowsForms.Switch line1Switch;
+ private NationalInstruments.UI.WindowsForms.Switch line0Switch;
+ private System.Windows.Forms.GroupBox readGroupBox;
+ private NationalInstruments.UI.WindowsForms.Led line6Led;
+ private NationalInstruments.UI.WindowsForms.Led line5Led;
+ private NationalInstruments.UI.WindowsForms.Led line4Led;
+ private NationalInstruments.UI.WindowsForms.Led line3Led;
+ private NationalInstruments.UI.WindowsForms.Led line2Led;
+ private NationalInstruments.UI.WindowsForms.Led line1Led;
+ private NationalInstruments.UI.WindowsForms.Led line0Led;
+ private System.Windows.Forms.Button readButton;
+ private Label writeLabel;
+ private ComboBox writeComboBox;
+ private Label readLabel;
+ private ComboBox readComboBox;
+ private Label infoLabel;
+ private Label ledLine7Label;
+ private Label ledLine0Label;
+ private Label switchLine7Label;
+ private Label switchLine0Label;
+ private bool resettingSwitches;
+ private System.Windows.Forms.Label readIndoLabel;
+
+ ///
+ /// Required designer variable.
+ ///
+ private System.ComponentModel.Container components = null;
+
+ public MainForm()
+ {
+ //
+ // Required for Windows Form Designer support
+ //
+ InitializeComponent();
+
+ readButton.Enabled = false;
+
+ // Add valid digital input and output tasks to the combo boxes
+ foreach (string s in DaqSystem.Local.Tasks)
+ {
+ try
+ {
+ using (Task t = DaqSystem.Local.LoadTask(s))
+ {
+ t.Control(TaskAction.Verify);
+
+ if (t.DOChannels.Count > 0 &&
+ t.Timing.SampleTimingType == SampleTimingType.OnDemand)
+ {
+ writeComboBox.Items.Add(s);
+ readComboBox.Items.Add(s);
+ }
+
+ if (t.DIChannels.Count > 0 &&
+ t.Timing.SampleTimingType == SampleTimingType.OnDemand)
+ {
+ readComboBox.Items.Add(s);
+ }
+ }
+ }
+ catch (DaqException)
+ {
+ // Ignore invalid tasks
+ }
+ }
+
+ // By default select the first item in the combo boxes
+ if (writeComboBox.Items.Count > 0)
+ {
+ writeComboBox.SelectedIndex = 0;
+ }
+
+ if (readComboBox.Items.Count > 0)
+ {
+ readComboBox.SelectedIndex = 0;
+ readButton.Enabled = true;
+ }
+ }
+
+ ///
+ /// Clean up any resources being used.
+ ///
+ protected override void Dispose( bool disposing )
+ {
+ if( disposing )
+ {
+ if (components != null)
+ {
+ components.Dispose();
+ }
+ }
+ base.Dispose( disposing );
+ }
+
+ #region Windows Form Designer generated code
+ ///
+ /// Required method for Designer support - do not modify
+ /// the contents of this method with the code editor.
+ ///
+ private void InitializeComponent()
+ {
+ System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm));
+ this.line7Switch = new NationalInstruments.UI.WindowsForms.Switch();
+ this.line7Led = new NationalInstruments.UI.WindowsForms.Led();
+ this.writeGroupBox = new System.Windows.Forms.GroupBox();
+ this.switchLine7Label = new System.Windows.Forms.Label();
+ this.switchLine0Label = new System.Windows.Forms.Label();
+ this.infoLabel = new System.Windows.Forms.Label();
+ this.writeLabel = new System.Windows.Forms.Label();
+ this.writeComboBox = new System.Windows.Forms.ComboBox();
+ this.line6Switch = new NationalInstruments.UI.WindowsForms.Switch();
+ this.line5Switch = new NationalInstruments.UI.WindowsForms.Switch();
+ this.line4Switch = new NationalInstruments.UI.WindowsForms.Switch();
+ this.line3Switch = new NationalInstruments.UI.WindowsForms.Switch();
+ this.line2Switch = new NationalInstruments.UI.WindowsForms.Switch();
+ this.line1Switch = new NationalInstruments.UI.WindowsForms.Switch();
+ this.line0Switch = new NationalInstruments.UI.WindowsForms.Switch();
+ this.readGroupBox = new System.Windows.Forms.GroupBox();
+ this.ledLine7Label = new System.Windows.Forms.Label();
+ this.ledLine0Label = new System.Windows.Forms.Label();
+ this.readIndoLabel = new System.Windows.Forms.Label();
+ this.readLabel = new System.Windows.Forms.Label();
+ this.readComboBox = new System.Windows.Forms.ComboBox();
+ this.readButton = new System.Windows.Forms.Button();
+ this.line6Led = new NationalInstruments.UI.WindowsForms.Led();
+ this.line5Led = new NationalInstruments.UI.WindowsForms.Led();
+ this.line4Led = new NationalInstruments.UI.WindowsForms.Led();
+ this.line3Led = new NationalInstruments.UI.WindowsForms.Led();
+ this.line2Led = new NationalInstruments.UI.WindowsForms.Led();
+ this.line1Led = new NationalInstruments.UI.WindowsForms.Led();
+ this.line0Led = new NationalInstruments.UI.WindowsForms.Led();
+ ((System.ComponentModel.ISupportInitialize)(this.line7Switch)).BeginInit();
+ ((System.ComponentModel.ISupportInitialize)(this.line7Led)).BeginInit();
+ this.writeGroupBox.SuspendLayout();
+ ((System.ComponentModel.ISupportInitialize)(this.line6Switch)).BeginInit();
+ ((System.ComponentModel.ISupportInitialize)(this.line5Switch)).BeginInit();
+ ((System.ComponentModel.ISupportInitialize)(this.line4Switch)).BeginInit();
+ ((System.ComponentModel.ISupportInitialize)(this.line3Switch)).BeginInit();
+ ((System.ComponentModel.ISupportInitialize)(this.line2Switch)).BeginInit();
+ ((System.ComponentModel.ISupportInitialize)(this.line1Switch)).BeginInit();
+ ((System.ComponentModel.ISupportInitialize)(this.line0Switch)).BeginInit();
+ this.readGroupBox.SuspendLayout();
+ ((System.ComponentModel.ISupportInitialize)(this.line6Led)).BeginInit();
+ ((System.ComponentModel.ISupportInitialize)(this.line5Led)).BeginInit();
+ ((System.ComponentModel.ISupportInitialize)(this.line4Led)).BeginInit();
+ ((System.ComponentModel.ISupportInitialize)(this.line3Led)).BeginInit();
+ ((System.ComponentModel.ISupportInitialize)(this.line2Led)).BeginInit();
+ ((System.ComponentModel.ISupportInitialize)(this.line1Led)).BeginInit();
+ ((System.ComponentModel.ISupportInitialize)(this.line0Led)).BeginInit();
+ this.SuspendLayout();
+ //
+ // line7Switch
+ //
+ this.line7Switch.Location = new System.Drawing.Point(16, 73);
+ this.line7Switch.Name = "line7Switch";
+ this.line7Switch.Size = new System.Drawing.Size(40, 70);
+ this.line7Switch.SwitchStyle = NationalInstruments.UI.SwitchStyle.VerticalToggle3D;
+ this.line7Switch.TabIndex = 0;
+ this.line7Switch.StateChanged += new NationalInstruments.UI.ActionEventHandler(this.lineSwitch_StateChanged);
+ //
+ // line7Led
+ //
+ this.line7Led.LedStyle = NationalInstruments.UI.LedStyle.Round3D;
+ this.line7Led.Location = new System.Drawing.Point(16, 94);
+ this.line7Led.Name = "line7Led";
+ this.line7Led.Size = new System.Drawing.Size(35, 35);
+ this.line7Led.TabIndex = 1;
+ //
+ // writeGroupBox
+ //
+ this.writeGroupBox.Controls.Add(this.switchLine7Label);
+ this.writeGroupBox.Controls.Add(this.switchLine0Label);
+ this.writeGroupBox.Controls.Add(this.infoLabel);
+ this.writeGroupBox.Controls.Add(this.writeLabel);
+ this.writeGroupBox.Controls.Add(this.writeComboBox);
+ this.writeGroupBox.Controls.Add(this.line7Switch);
+ this.writeGroupBox.Controls.Add(this.line6Switch);
+ this.writeGroupBox.Controls.Add(this.line5Switch);
+ this.writeGroupBox.Controls.Add(this.line4Switch);
+ this.writeGroupBox.Controls.Add(this.line3Switch);
+ this.writeGroupBox.Controls.Add(this.line2Switch);
+ this.writeGroupBox.Controls.Add(this.line1Switch);
+ this.writeGroupBox.Controls.Add(this.line0Switch);
+ this.writeGroupBox.FlatStyle = System.Windows.Forms.FlatStyle.System;
+ this.writeGroupBox.Location = new System.Drawing.Point(40, 16);
+ this.writeGroupBox.Name = "writeGroupBox";
+ this.writeGroupBox.Size = new System.Drawing.Size(745, 156);
+ this.writeGroupBox.TabIndex = 2;
+ this.writeGroupBox.TabStop = false;
+ this.writeGroupBox.Text = "Digital Write";
+ //
+ // switchLine7Label
+ //
+ this.switchLine7Label.AutoSize = true;
+ this.switchLine7Label.Location = new System.Drawing.Point(30, 136);
+ this.switchLine7Label.Name = "switchLine7Label";
+ this.switchLine7Label.Size = new System.Drawing.Size(10, 16);
+ this.switchLine7Label.TabIndex = 8;
+ this.switchLine7Label.Text = "7";
+ //
+ // switchLine0Label
+ //
+ this.switchLine0Label.AutoSize = true;
+ this.switchLine0Label.Location = new System.Drawing.Point(422, 137);
+ this.switchLine0Label.Name = "switchLine0Label";
+ this.switchLine0Label.Size = new System.Drawing.Size(10, 16);
+ this.switchLine0Label.TabIndex = 7;
+ this.switchLine0Label.Text = "0";
+ //
+ // infoLabel
+ //
+ this.infoLabel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
+ this.infoLabel.FlatStyle = System.Windows.Forms.FlatStyle.System;
+ this.infoLabel.Location = new System.Drawing.Point(475, 32);
+ this.infoLabel.Name = "infoLabel";
+ this.infoLabel.Size = new System.Drawing.Size(264, 96);
+ this.infoLabel.TabIndex = 6;
+ this.infoLabel.Text = @"Before running this application, make sure you have a USB device and an on demand digital port output task in MAX. The GlobalDigitalPortOutput_USB.nce file in the example directory contains a simulated USB device and a task that you can import to MAX. Double-click the .nce file to launch MAX and then follow the installation directions.";
+ //
+ // writeLabel
+ //
+ this.writeLabel.AutoSize = true;
+ this.writeLabel.FlatStyle = System.Windows.Forms.FlatStyle.System;
+ this.writeLabel.Location = new System.Drawing.Point(21, 40);
+ this.writeLabel.Name = "writeLabel";
+ this.writeLabel.Size = new System.Drawing.Size(61, 16);
+ this.writeLabel.TabIndex = 3;
+ this.writeLabel.Text = "Write Task:";
+ //
+ // writeComboBox
+ //
+ this.writeComboBox.Location = new System.Drawing.Point(103, 32);
+ this.writeComboBox.Name = "writeComboBox";
+ this.writeComboBox.Size = new System.Drawing.Size(172, 21);
+ this.writeComboBox.TabIndex = 2;
+ this.writeComboBox.SelectedIndexChanged += new System.EventHandler(this.writeComboBox_SelectedIndexChanged);
+ //
+ // line6Switch
+ //
+ this.line6Switch.Location = new System.Drawing.Point(72, 73);
+ this.line6Switch.Name = "line6Switch";
+ this.line6Switch.Size = new System.Drawing.Size(40, 70);
+ this.line6Switch.SwitchStyle = NationalInstruments.UI.SwitchStyle.VerticalToggle3D;
+ this.line6Switch.TabIndex = 0;
+ this.line6Switch.StateChanged += new NationalInstruments.UI.ActionEventHandler(this.lineSwitch_StateChanged);
+ //
+ // line5Switch
+ //
+ this.line5Switch.Location = new System.Drawing.Point(128, 73);
+ this.line5Switch.Name = "line5Switch";
+ this.line5Switch.Size = new System.Drawing.Size(40, 70);
+ this.line5Switch.SwitchStyle = NationalInstruments.UI.SwitchStyle.VerticalToggle3D;
+ this.line5Switch.TabIndex = 0;
+ this.line5Switch.StateChanged += new NationalInstruments.UI.ActionEventHandler(this.lineSwitch_StateChanged);
+ //
+ // line4Switch
+ //
+ this.line4Switch.Location = new System.Drawing.Point(184, 73);
+ this.line4Switch.Name = "line4Switch";
+ this.line4Switch.Size = new System.Drawing.Size(40, 70);
+ this.line4Switch.SwitchStyle = NationalInstruments.UI.SwitchStyle.VerticalToggle3D;
+ this.line4Switch.TabIndex = 0;
+ this.line4Switch.StateChanged += new NationalInstruments.UI.ActionEventHandler(this.lineSwitch_StateChanged);
+ //
+ // line3Switch
+ //
+ this.line3Switch.Location = new System.Drawing.Point(240, 73);
+ this.line3Switch.Name = "line3Switch";
+ this.line3Switch.Size = new System.Drawing.Size(40, 70);
+ this.line3Switch.SwitchStyle = NationalInstruments.UI.SwitchStyle.VerticalToggle3D;
+ this.line3Switch.TabIndex = 0;
+ this.line3Switch.StateChanged += new NationalInstruments.UI.ActionEventHandler(this.lineSwitch_StateChanged);
+ //
+ // line2Switch
+ //
+ this.line2Switch.Location = new System.Drawing.Point(296, 73);
+ this.line2Switch.Name = "line2Switch";
+ this.line2Switch.Size = new System.Drawing.Size(40, 70);
+ this.line2Switch.SwitchStyle = NationalInstruments.UI.SwitchStyle.VerticalToggle3D;
+ this.line2Switch.TabIndex = 0;
+ this.line2Switch.StateChanged += new NationalInstruments.UI.ActionEventHandler(this.lineSwitch_StateChanged);
+ //
+ // line1Switch
+ //
+ this.line1Switch.Location = new System.Drawing.Point(352, 73);
+ this.line1Switch.Name = "line1Switch";
+ this.line1Switch.Size = new System.Drawing.Size(40, 70);
+ this.line1Switch.SwitchStyle = NationalInstruments.UI.SwitchStyle.VerticalToggle3D;
+ this.line1Switch.TabIndex = 0;
+ this.line1Switch.StateChanged += new NationalInstruments.UI.ActionEventHandler(this.lineSwitch_StateChanged);
+ //
+ // line0Switch
+ //
+ this.line0Switch.Location = new System.Drawing.Point(408, 73);
+ this.line0Switch.Name = "line0Switch";
+ this.line0Switch.Size = new System.Drawing.Size(40, 70);
+ this.line0Switch.SwitchStyle = NationalInstruments.UI.SwitchStyle.VerticalToggle3D;
+ this.line0Switch.TabIndex = 0;
+ this.line0Switch.StateChanged += new NationalInstruments.UI.ActionEventHandler(this.lineSwitch_StateChanged);
+ //
+ // readGroupBox
+ //
+ this.readGroupBox.Controls.Add(this.ledLine7Label);
+ this.readGroupBox.Controls.Add(this.ledLine0Label);
+ this.readGroupBox.Controls.Add(this.readIndoLabel);
+ this.readGroupBox.Controls.Add(this.readLabel);
+ this.readGroupBox.Controls.Add(this.readComboBox);
+ this.readGroupBox.Controls.Add(this.readButton);
+ this.readGroupBox.Controls.Add(this.line7Led);
+ this.readGroupBox.Controls.Add(this.line6Led);
+ this.readGroupBox.Controls.Add(this.line5Led);
+ this.readGroupBox.Controls.Add(this.line4Led);
+ this.readGroupBox.Controls.Add(this.line3Led);
+ this.readGroupBox.Controls.Add(this.line2Led);
+ this.readGroupBox.Controls.Add(this.line1Led);
+ this.readGroupBox.Controls.Add(this.line0Led);
+ this.readGroupBox.FlatStyle = System.Windows.Forms.FlatStyle.System;
+ this.readGroupBox.Location = new System.Drawing.Point(40, 243);
+ this.readGroupBox.Name = "readGroupBox";
+ this.readGroupBox.Size = new System.Drawing.Size(745, 156);
+ this.readGroupBox.TabIndex = 3;
+ this.readGroupBox.TabStop = false;
+ this.readGroupBox.Text = "Digital Read";
+ //
+ // ledLine7Label
+ //
+ this.ledLine7Label.AutoSize = true;
+ this.ledLine7Label.Location = new System.Drawing.Point(27, 130);
+ this.ledLine7Label.Name = "ledLine7Label";
+ this.ledLine7Label.Size = new System.Drawing.Size(10, 16);
+ this.ledLine7Label.TabIndex = 8;
+ this.ledLine7Label.Text = "7";
+ //
+ // ledLine0Label
+ //
+ this.ledLine0Label.AutoSize = true;
+ this.ledLine0Label.Location = new System.Drawing.Point(419, 130);
+ this.ledLine0Label.Name = "ledLine0Label";
+ this.ledLine0Label.Size = new System.Drawing.Size(10, 16);
+ this.ledLine0Label.TabIndex = 7;
+ this.ledLine0Label.Text = "0";
+ //
+ // readIndoLabel
+ //
+ this.readIndoLabel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
+ this.readIndoLabel.FlatStyle = System.Windows.Forms.FlatStyle.System;
+ this.readIndoLabel.Location = new System.Drawing.Point(475, 33);
+ this.readIndoLabel.Name = "readIndoLabel";
+ this.readIndoLabel.Size = new System.Drawing.Size(264, 96);
+ this.readIndoLabel.TabIndex = 6;
+ this.readIndoLabel.Text = @"Before running this application, make sure you have a USB device and an on demand digital port input task in MAX. The GlobalDigitalPortInput_USB.nce file in the example directory contains a simulated USB device and a task that you can import to MAX. Double-click the .nce file to launch MAX and then follow the installation directions.";
+ //
+ // readLabel
+ //
+ this.readLabel.AutoSize = true;
+ this.readLabel.FlatStyle = System.Windows.Forms.FlatStyle.System;
+ this.readLabel.Location = new System.Drawing.Point(21, 46);
+ this.readLabel.Name = "readLabel";
+ this.readLabel.Size = new System.Drawing.Size(62, 16);
+ this.readLabel.TabIndex = 3;
+ this.readLabel.Text = "Read Task:";
+ //
+ // readComboBox
+ //
+ this.readComboBox.Location = new System.Drawing.Point(103, 38);
+ this.readComboBox.Name = "readComboBox";
+ this.readComboBox.Size = new System.Drawing.Size(172, 21);
+ this.readComboBox.TabIndex = 2;
+ this.readComboBox.SelectedIndexChanged += new System.EventHandler(this.readComboBox_SelectedIndexChanged);
+ //
+ // readButton
+ //
+ this.readButton.FlatStyle = System.Windows.Forms.FlatStyle.System;
+ this.readButton.Location = new System.Drawing.Point(317, 38);
+ this.readButton.Name = "readButton";
+ this.readButton.TabIndex = 2;
+ this.readButton.Text = "Read";
+ this.readButton.Click += new System.EventHandler(this.readButton_Click);
+ //
+ // line6Led
+ //
+ this.line6Led.LedStyle = NationalInstruments.UI.LedStyle.Round3D;
+ this.line6Led.Location = new System.Drawing.Point(72, 94);
+ this.line6Led.Name = "line6Led";
+ this.line6Led.Size = new System.Drawing.Size(35, 35);
+ this.line6Led.TabIndex = 1;
+ //
+ // line5Led
+ //
+ this.line5Led.LedStyle = NationalInstruments.UI.LedStyle.Round3D;
+ this.line5Led.Location = new System.Drawing.Point(128, 94);
+ this.line5Led.Name = "line5Led";
+ this.line5Led.Size = new System.Drawing.Size(35, 35);
+ this.line5Led.TabIndex = 1;
+ //
+ // line4Led
+ //
+ this.line4Led.LedStyle = NationalInstruments.UI.LedStyle.Round3D;
+ this.line4Led.Location = new System.Drawing.Point(184, 94);
+ this.line4Led.Name = "line4Led";
+ this.line4Led.Size = new System.Drawing.Size(35, 35);
+ this.line4Led.TabIndex = 1;
+ //
+ // line3Led
+ //
+ this.line3Led.LedStyle = NationalInstruments.UI.LedStyle.Round3D;
+ this.line3Led.Location = new System.Drawing.Point(240, 94);
+ this.line3Led.Name = "line3Led";
+ this.line3Led.Size = new System.Drawing.Size(35, 35);
+ this.line3Led.TabIndex = 1;
+ //
+ // line2Led
+ //
+ this.line2Led.LedStyle = NationalInstruments.UI.LedStyle.Round3D;
+ this.line2Led.Location = new System.Drawing.Point(296, 94);
+ this.line2Led.Name = "line2Led";
+ this.line2Led.Size = new System.Drawing.Size(35, 35);
+ this.line2Led.TabIndex = 1;
+ //
+ // line1Led
+ //
+ this.line1Led.LedStyle = NationalInstruments.UI.LedStyle.Round3D;
+ this.line1Led.Location = new System.Drawing.Point(352, 94);
+ this.line1Led.Name = "line1Led";
+ this.line1Led.Size = new System.Drawing.Size(35, 35);
+ this.line1Led.TabIndex = 1;
+ //
+ // line0Led
+ //
+ this.line0Led.LedStyle = NationalInstruments.UI.LedStyle.Round3D;
+ this.line0Led.Location = new System.Drawing.Point(408, 94);
+ this.line0Led.Name = "line0Led";
+ this.line0Led.Size = new System.Drawing.Size(35, 35);
+ this.line0Led.TabIndex = 1;
+ //
+ // MainForm
+ //
+ this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
+ this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
+ this.ClientSize = new System.Drawing.Size(822, 445);
+ this.Controls.Add(this.readGroupBox);
+ this.Controls.Add(this.writeGroupBox);
+ this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
+ this.Name = "MainForm";
+ this.Text = "Global Digital Port IO - USB";
+ ((System.ComponentModel.ISupportInitialize)(this.line7Switch)).EndInit();
+ ((System.ComponentModel.ISupportInitialize)(this.line7Led)).EndInit();
+ this.writeGroupBox.ResumeLayout(false);
+ ((System.ComponentModel.ISupportInitialize)(this.line6Switch)).EndInit();
+ ((System.ComponentModel.ISupportInitialize)(this.line5Switch)).EndInit();
+ ((System.ComponentModel.ISupportInitialize)(this.line4Switch)).EndInit();
+ ((System.ComponentModel.ISupportInitialize)(this.line3Switch)).EndInit();
+ ((System.ComponentModel.ISupportInitialize)(this.line2Switch)).EndInit();
+ ((System.ComponentModel.ISupportInitialize)(this.line1Switch)).EndInit();
+ ((System.ComponentModel.ISupportInitialize)(this.line0Switch)).EndInit();
+ this.readGroupBox.ResumeLayout(false);
+ ((System.ComponentModel.ISupportInitialize)(this.line6Led)).EndInit();
+ ((System.ComponentModel.ISupportInitialize)(this.line5Led)).EndInit();
+ ((System.ComponentModel.ISupportInitialize)(this.line4Led)).EndInit();
+ ((System.ComponentModel.ISupportInitialize)(this.line3Led)).EndInit();
+ ((System.ComponentModel.ISupportInitialize)(this.line2Led)).EndInit();
+ ((System.ComponentModel.ISupportInitialize)(this.line1Led)).EndInit();
+ ((System.ComponentModel.ISupportInitialize)(this.line0Led)).EndInit();
+ this.ResumeLayout(false);
+
+ }
+ #endregion
+
+ ///
+ /// The main entry point for the application.
+ ///
+ [STAThread]
+ static void Main()
+ {
+ Application.Run(new MainForm());
+ }
+
+ private void lineSwitch_StateChanged(object sender, NationalInstruments.UI.ActionEventArgs e)
+ {
+ if (!resettingSwitches)
+ {
+ try
+ {
+ // Get the task name and load from MAX
+ string taskName = writeComboBox.SelectedItem.ToString();
+
+ using (Task digitalWriteTask = DaqSystem.Local.LoadTask(taskName))
+ {
+ // Get switch values
+ int[] dataArray = new int[8];
+ dataArray[0] = Convert.ToInt32(line0Switch.Value);
+ dataArray[1] = Convert.ToInt32(line1Switch.Value);
+ dataArray[2] = Convert.ToInt32(line2Switch.Value);
+ dataArray[3] = Convert.ToInt32(line3Switch.Value);
+ dataArray[4] = Convert.ToInt32(line4Switch.Value);
+ dataArray[5] = Convert.ToInt32(line5Switch.Value);
+ dataArray[6] = Convert.ToInt32(line6Switch.Value);
+ dataArray[7] = Convert.ToInt32(line7Switch.Value);
+
+ int dataValue = 0;
+
+ // Convert switch values (0/1) into a decimal value
+ for (int i = 0; i < 8; i++)
+ {
+ if (dataArray[i] == 1)
+ dataValue += Convert.ToInt32(Math.Pow(2, (double)i));
+ }
+
+ // Write data to the port
+ DigitalSingleChannelWriter writer = new DigitalSingleChannelWriter(digitalWriteTask.Stream);
+ writer.WriteSingleSamplePort(true, dataValue);
+
+ }
+ }
+ catch (DaqException ex)
+ {
+ MessageBox.Show(ex.Message);
+ ResetSwitches();
+ }
+ }
+ }
+
+ private void readButton_Click(object sender, EventArgs e)
+ {
+ try
+ {
+ // Get the task name and load from MAX
+ string taskName = readComboBox.SelectedItem.ToString();
+
+ using (Task digitalReadTask = DaqSystem.Local.LoadTask(taskName))
+ {
+ // Read data from the port
+ DigitalSingleChannelReader reader = new DigitalSingleChannelReader(digitalReadTask.Stream);
+ int dataValueRead = reader.ReadSingleSamplePortInt32();
+
+
+ // Check which bits of the read value are set to 1
+ bool[] dataArray = new bool[8];
+
+ for (int i = 0; i < 8; i++)
+ {
+ if (((dataValueRead >> i) & 1) == 1)
+ dataArray[i] = true;
+ }
+
+ // Display set bits
+ line0Led.Value = dataArray[0];
+ line1Led.Value = dataArray[1];
+ line2Led.Value = dataArray[2];
+ line3Led.Value = dataArray[3];
+ line4Led.Value = dataArray[4];
+ line5Led.Value = dataArray[5];
+ line6Led.Value = dataArray[6];
+ line7Led.Value = dataArray[7];
+ }
+ }
+ catch (DaqException ex)
+ {
+ MessageBox.Show(ex.Message);
+ ResetLeds();
+ }
+ }
+
+ private void writeComboBox_SelectedIndexChanged(object sender, EventArgs e)
+ {
+ ResetSwitches();
+ }
+
+ private void readComboBox_SelectedIndexChanged(object sender, EventArgs e)
+ {
+ ResetLeds();
+ }
+
+ private void ResetSwitches()
+ {
+ resettingSwitches = true;
+
+ line0Switch.Value = false;
+ line1Switch.Value = false;
+ line2Switch.Value = false;
+ line3Switch.Value = false;
+ line4Switch.Value = false;
+ line5Switch.Value = false;
+ line6Switch.Value = false;
+ line7Switch.Value = false;
+
+ resettingSwitches = false;
+ }
+
+ private void ResetLeds()
+ {
+ line0Led.Value = false;
+ line1Led.Value = false;
+ line2Led.Value = false;
+ line3Led.Value = false;
+ line4Led.Value = false;
+ line5Led.Value = false;
+ line6Led.Value = false;
+ line7Led.Value = false;
+ }
+ }
+}
diff --git a/Axel-digit/MainWindow.xaml b/Axel-digit/MainWindow.xaml
new file mode 100644
index 00000000..5885d68b
--- /dev/null
+++ b/Axel-digit/MainWindow.xaml
@@ -0,0 +1,53 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/Axel-digit/MainWindow.xaml.cs b/Axel-digit/MainWindow.xaml.cs
new file mode 100644
index 00000000..a6c53356
--- /dev/null
+++ b/Axel-digit/MainWindow.xaml.cs
@@ -0,0 +1,654 @@
+using System;
+using System.Collections;
+using System.Collections.Generic;
+using System.Windows.Controls.Primitives;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+using System.Windows;
+using System.Windows.Controls;
+using System.Windows.Data;
+using System.Windows.Documents;
+using System.Windows.Input;
+using System.Windows.Media;
+using System.Windows.Media.Imaging;
+using System.Windows.Navigation;
+using System.Windows.Shapes;
+using System.Timers;
+using System.Windows.Threading;
+using NationalInstruments.ModularInstruments.Interop;
+using Newtonsoft.Json;
+using Newtonsoft.Json.Converters;
+using Newtonsoft.Json.Linq;
+
+using UtilsNS;
+
+namespace Axel_digit
+{
+ ///
+ /// Interaction logic for MainWindow.xaml
+ ///
+ public partial class MainWindow : Window
+ {
+ niHSDIO hsTaskIn, hsTaskOut;
+ List namedDIO; bool nLock = false; // Lock is on when internal change
+ List allDIO;
+ List byteDIO; bool aLock = false;
+ DispatcherTimer dTimer;
+ readonly bool debugMode;
+ bool hardwareSet = false;
+
+ public MainWindow()
+ {
+ InitializeComponent();
+ debugMode = false;
+ readConfig();
+ if (!configHardware(true))
+ {
+ if (Utils.TheosComputer()) ErrorMsg("Simulation");
+ else ErrorMsg("Hardware problem");
+ }
+ }
+
+ #region COMMON
+ string configFile = Utils.basePath + "\\config.json";
+ Dictionary config;
+ public void readConfig()
+ {
+ string json = System.IO.File.ReadAllText(configFile);
+ config = JsonConvert.DeserializeObject< Dictionary>(json);
+
+ var namedData = (JArray)config["named"];
+ namedDIO = namedData.ToObject>();
+
+ byteDIO = new List();
+ var allData = (JArray)config["all"];
+ allDIO = allData.ToObject>();
+ all2byte();
+ }
+ private void frmAxelDigit_Loaded(object sender, RoutedEventArgs e)
+ {
+ chkLog.IsChecked = Convert.ToBoolean(config["log"]); tbDvc.Text = Convert.ToString(config["device"]);
+
+ Left = Convert.ToInt32(config["Left"]); Top = Convert.ToInt32(config["Top"]);
+ Width = Convert.ToInt32(config["Width"]); Height = Convert.ToInt32(config["Height"]);
+ tcMain.Tag = -1; // lock
+ tcMain.SelectedIndex = Convert.ToInt32(config["tab"]);
+ tcMain.Tag = 1; // unlock
+ }
+
+ private void frmAxelDigit_Closing(object sender, System.ComponentModel.CancelEventArgs e)
+ {
+ config["log"] = chkLog.IsChecked.Value; config["device"] = tbDvc.Text;
+
+ config["Left"] = Left; config["Top"] = Top;
+ config["Width"] = Width; config["Height"] = Height;
+
+ config["tab"] = tcMain.SelectedIndex;
+ config["named"] = namedDIO;
+ byte2all();
+ config["all"] = allDIO;
+ string json = JsonConvert.SerializeObject(config);
+ System.IO.File.WriteAllText(configFile, json);
+ }
+
+ public void addTextCol(DataGrid dg, string col)
+ {
+ DataGridTextColumn textcol = new DataGridTextColumn();
+ //Create a Binding object to define the path to the DataGrid.ItemsSource property
+ Binding b = new Binding(col);
+ //Set the properties on the new column
+ b.UpdateSourceTrigger = UpdateSourceTrigger.PropertyChanged;
+ textcol.Binding = b;
+ textcol.Header = col;
+ dg.Columns.Add(textcol);
+ }
+ public void addCheckCol(DataGrid dg, string col)
+ {
+ DataGridCheckBoxColumn checkcol = new DataGridCheckBoxColumn();
+ //Create a Binding object to define the path to the DataGrid.ItemsSource property
+ Binding b = new Binding(col);
+ //Set the properties on the new column
+ b.UpdateSourceTrigger = UpdateSourceTrigger.PropertyChanged;
+ checkcol.Binding = b;
+ checkcol.Header = col;
+ dg.Columns.Add(checkcol);
+ }
+ public string boolArr2string(bool[] bArray)
+ {
+ string rslt = "";
+ for (int i = 0; i < bArray.Length; i++)
+ {
+ if (bArray[i])
+ rslt += '1';
+ else
+ rslt += '0';
+ }
+ return rslt;
+ }
+ private uint BoolArrayToUInt(bool[] bArray)
+ {
+ string rsltStr = boolArr2string(bArray);
+ return System.Convert.ToUInt32(rsltStr, 2);
+ }
+ public delegate void CheckChangeHandler(object sender, int ID, bool check);
+ protected void OnCheckChange(object sender, int ID, bool check)
+ {
+ if (nLock || aLock) return;
+ Utils.log(tbLog, "change #"+ID.ToString() + " to " + check.ToString(),Brushes.Maroon);
+ if (chkAutoUpdate.IsChecked.Value)
+ {
+ if (Utils.isNull(dTimer))
+ {
+ dTimer = new DispatcherTimer();
+ dTimer.Tick += new EventHandler(dTimer_Tick);
+ dTimer.Interval = new TimeSpan(500 * 10000);
+ }
+ dTimer.Start();
+ Utils.DoEvents();
+ }
+ }
+ private void dTimer_Tick(object sender, EventArgs e)
+ {
+ btnWriteOut_Click(null, null); dTimer.Stop();
+ }
+
+ public void dLog(string msg)
+ {
+ if (debugMode) Utils.log(tbLog, msg, Brushes.Teal);
+ }
+ #endregion COMMON
+
+ #region NamedDIO
+ public class NamedDIO
+ {
+ public event CheckChangeHandler OnCheckChange;
+ protected void CheckChange(object sender, int ID, bool check)
+ {
+ if (OnCheckChange != null) OnCheckChange(sender, ID, check);
+ }
+
+ public string DIO { get; set; } public string Name { get; set; } public bool Enabled { get; set; } public bool ReadIn { get; set; }
+ private bool bb;
+ public bool WriteOut
+ {
+ get { return bb; }
+ set
+ {
+ bb = value; int idx;
+ if (!Int32.TryParse(DIO, out idx))
+ Utils.TimedMessageBox("Wrong DIO format for named channel " + Name, "Warning", 2500);
+ else
+ if (Enabled) CheckChange((object)this, idx, bb);
+ }
+ }
+
+ }
+ public bool UpdateNamed(bool[] dt, bool inclOut) // "ReadIn" column and optionally Out
+ {
+ if (dt.Length != 32) return false;
+ int idx;
+ for (int i = 0; i < namedDIO.Count; i++)
+ {
+ if(!Int32.TryParse(namedDIO[i].DIO, out idx))
+ {
+ ErrorMsg("Wrong DIO format for named channel " + namedDIO[i].Name);
+ return false;
+ }
+ if (!Utils.InRange(idx, 0, 31))
+ {
+ ErrorMsg("Index out of range for named channel " + namedDIO[i].Name);
+ return false;
+ }
+ namedDIO[i].ReadIn = dt[idx];
+ nLock = true;
+ if (inclOut) namedDIO[i].WriteOut = dt[idx];
+ nLock = false;
+ }
+ dgNamedDIO.CommitEdit(); dgNamedDIO.CommitEdit();
+ dgNamedDIO.Items.Refresh();
+ return true;
+ }
+ private void dgNamedDIO_Loaded(object sender, RoutedEventArgs e)
+ {
+ if (dgNamedDIO.Columns.Count > 0) return; // after first call ignored
+
+ dgNamedDIO.ItemsSource = namedDIO;
+
+ addTextCol(dgNamedDIO, "DIO");
+ addTextCol(dgNamedDIO, "Name");
+ addCheckCol(dgNamedDIO, "Enabled");
+ addCheckCol(dgNamedDIO, "ReadIn");
+ addCheckCol(dgNamedDIO, "WriteOut");
+
+ dgNamedDIO.Columns[3].Header = "[ReadIn]";
+ dgNamedDIO.Columns[3].IsReadOnly = true;
+
+ for (int i = 0; i< namedDIO.Count; i++)
+ {
+ namedDIO[i].OnCheckChange += new CheckChangeHandler(OnCheckChange);
+ }
+ bool[] dt;
+ ReadIn(out dt);
+ UpdateNamed(dt, false);
+ dgNamedDIO.Items.Refresh();
+ }
+ #endregion NamedDIO
+
+ #region AllDIO
+ public class SingleDIO
+ {
+
+ public string DIO { get; set; }
+ public bool Enabled { get; set; }
+ public bool ReadIn { get; set; }
+ public bool WriteOut { get; set; }
+ }
+ private void dgAllDIO_Loaded(object sender, RoutedEventArgs e)
+ {
+ if (dgAllDIO.Columns.Count > 0) return; // after first call ignored
+
+ dgAllDIO.ItemsSource = byteDIO;
+ for (int i=0; i<4; i++)
+ {
+ addTextCol(dgAllDIO, "DIO" + i.ToString());
+ addCheckCol(dgAllDIO, "Enb" + i.ToString());
+ addCheckCol(dgAllDIO, "In" + i.ToString());
+ addCheckCol(dgAllDIO, "Out" + i.ToString());
+ }
+
+ dgAllDIO.Columns[0].IsReadOnly = true;
+ dgAllDIO.Columns[2].Header = "[In0]";
+ dgAllDIO.Columns[2].IsReadOnly = true;
+
+ dgAllDIO.Columns[4].IsReadOnly = true;
+ dgAllDIO.Columns[6].Header = "[In1]";
+ dgAllDIO.Columns[6].IsReadOnly = true;
+
+ dgAllDIO.Columns[8].IsReadOnly = true;
+ dgAllDIO.Columns[10].Header = "[In2]";
+ dgAllDIO.Columns[10].IsReadOnly = true;
+
+ dgAllDIO.Columns[12].IsReadOnly = true;
+ dgAllDIO.Columns[14].Header = "[In2]";
+ dgAllDIO.Columns[14].IsReadOnly = true;
+
+ bool[] dt;
+ ReadIn(out dt);
+ UpdateAll(dt, false);
+ all2byte();
+ }
+
+ public class ByteDIO
+ {
+ public event CheckChangeHandler OnCheckChange;
+ protected void CheckChange(object sender, int ID, bool check)
+ {
+ if (OnCheckChange != null) OnCheckChange(sender, ID, check);
+ }
+ public string DIO0 { get; set; }
+ public bool Enb0 { get; set; }
+ public bool In0 { get; set; }
+ private bool bb0;
+ public bool Out0
+ {
+ get { return bb0; }
+ set
+ {
+ bb0 = value;
+ if (Enb0) CheckChange((object)this, Convert.ToInt32(DIO0), bb0);
+ }
+ }
+ public string DIO1 { get; set; }
+ public bool Enb1 { get; set; }
+ public bool In1 { get; set; }
+ private bool bb1;
+ public bool Out1
+ {
+ get { return bb1; }
+ set
+ {
+ bb1 = value;
+ if (Enb1) CheckChange((object)this, Convert.ToInt32(DIO1), bb1);
+ }
+ }
+ public string DIO2 { get; set; }
+ public bool Enb2 { get; set; }
+ public bool In2 { get; set; }
+ private bool bb2;
+ public bool Out2
+ {
+ get { return bb2; }
+ set
+ {
+ bb2 = value;
+ if (Enb2) CheckChange((object)this, Convert.ToInt32(DIO2), bb2);
+ }
+ }
+ public string DIO3 { get; set; }
+ public bool Enb3 { get; set; }
+ public bool In3 { get; set; }
+ private bool bb3;
+ public bool Out3
+ {
+ get { return bb3; }
+ set
+ {
+ bb3 = value;
+ if (Enb3) CheckChange((object)this, Convert.ToInt32(DIO3), bb3);
+ }
+ }
+ }
+
+ public void UpdateAll(bool[] dt, bool inclOut) // "In*" columns and optionally Out to allDIO
+ {
+ if (dt.Length != 32) return;
+ for (int i = 0; i < 32; i++)
+ {
+ allDIO[i].ReadIn = dt[i];
+ if (inclOut) allDIO[i].WriteOut = dt[i];
+ }
+ all2byte();
+ dgAllDIO.CommitEdit(); dgAllDIO.CommitEdit();
+ dgAllDIO.Items.Refresh();
+ }
+
+ private void byte2all()
+ {
+ allDIO.Clear();
+ for (int i = 0; i < 8; i++)
+ allDIO.Add(new SingleDIO() { DIO = byteDIO[i].DIO0, Enabled = byteDIO[i].Enb0, ReadIn = byteDIO[i].In0, WriteOut = byteDIO[i].Out0 });
+ for (int i = 0; i < 8; i++)
+ allDIO.Add(new SingleDIO() { DIO = byteDIO[i].DIO1, Enabled = byteDIO[i].Enb1, ReadIn = byteDIO[i].In1, WriteOut = byteDIO[i].Out1 });
+ for (int i = 0; i < 8; i++)
+ allDIO.Add(new SingleDIO() { DIO = byteDIO[i].DIO2, Enabled = byteDIO[i].Enb2, ReadIn = byteDIO[i].In2, WriteOut = byteDIO[i].Out2 });
+ for (int i = 0; i < 8; i++)
+ allDIO.Add(new SingleDIO() { DIO = byteDIO[i].DIO3, Enabled = byteDIO[i].Enb3, ReadIn = byteDIO[i].In3, WriteOut = byteDIO[i].Out3 });
+ }
+ private void all2byte()
+ {
+ aLock = true;
+ byteDIO.Clear();
+ for (int i = 0; i < 8; i++)
+ {
+ byteDIO.Add(new ByteDIO()
+ {
+ DIO0 = i.ToString(), Enb0 = allDIO[i].Enabled, In0 = allDIO[i].ReadIn, Out0 = allDIO[i].WriteOut,
+ DIO1 = (i + 8).ToString(), Enb1 = allDIO[i + 8].Enabled, In1 = allDIO[i + 8].ReadIn, Out1 = allDIO[i + 8].WriteOut,
+ DIO2 = (i + 16).ToString(), Enb2 = allDIO[i + 16].Enabled, In2 = allDIO[i + 16].ReadIn, Out2 = allDIO[i + 16].WriteOut,
+ DIO3 = (i + 24).ToString(), Enb3 = allDIO[i + 24].Enabled, In3 = allDIO[i + 24].ReadIn, Out3 = allDIO[i + 24].WriteOut,
+ });
+ byteDIO[i].OnCheckChange += new CheckChangeHandler(OnCheckChange);
+ }
+ aLock = false;
+ }
+ #endregion AllDIO
+
+ #region Trans tabs
+ public void all2named()
+ {
+ int idx;
+ for (int i = 0; i < namedDIO.Count; i++)
+ {
+ if ((namedDIO[i].DIO == "") && (i == namedDIO.Count-1)) continue;
+ if (!Int32.TryParse(namedDIO[i].DIO, out idx))
+ {
+ ErrorMsg("Wrong DIO format for named channel " + namedDIO[i].Name);
+ continue;
+ }
+ if (!Utils.InRange(idx, 0, 31))
+ {
+ ErrorMsg("Index out of range for named channel " + namedDIO[i].Name);
+ continue;
+ }
+ namedDIO[i].Enabled = allDIO[idx].Enabled;
+ namedDIO[i].ReadIn = allDIO[idx].ReadIn;
+ nLock = true;
+ namedDIO[i].WriteOut = allDIO[idx].WriteOut;
+ nLock = false;
+ }
+ }
+ public void named2all()
+ {
+ int idx;
+ for (int i = 0; i < namedDIO.Count; i++)
+ {
+ if ((namedDIO[i].DIO == "") && (i == namedDIO.Count-1)) continue;
+ if (!Int32.TryParse(namedDIO[i].DIO, out idx))
+ {
+ ErrorMsg("Wrong DIO format for named channel " + namedDIO[i].Name);
+ continue;
+ }
+ if (!Utils.InRange(idx, 0, 31))
+ {
+ ErrorMsg("Index out of range for named channel " + namedDIO[i].Name);
+ continue;
+ }
+ allDIO[idx].Enabled = namedDIO[i].Enabled;
+ allDIO[idx].ReadIn = namedDIO[i].ReadIn;
+ allDIO[idx].WriteOut = namedDIO[i].WriteOut;
+ }
+ }
+ private void tcMain_SelectionChanged(object sender, SelectionChangedEventArgs e)
+ {
+ if (Convert.ToInt32(tcMain.Tag) < 0) return;
+ switch (tcMain.SelectedIndex)
+ {
+ case 0: // from all to named
+ byte2all();
+ all2named();
+ dgNamedDIO.Items.Refresh();
+ break;
+ case 1: // from named to all
+ named2all();
+ all2byte();
+ dgAllDIO.Items.Refresh();
+ break;
+ }
+ }
+ #endregion
+
+ #region hardware
+ public bool configHardware(bool forced = false) // if false look for hardwareSet; if true - do it
+ {
+ string ChannelList = "0-31";
+ string dvc = (string)config["device"];
+ if ((dvc == "") || Utils.TheosComputer()) return false;
+ if (!forced && hardwareSet) return true;
+ hsTaskIn = null; hsTaskOut = null;
+ // read in
+ hsTaskIn = niHSDIO.InitAcquisitionSession(dvc, false, false, "");
+ hsTaskIn.AssignStaticChannels(ChannelList);
+ hsTaskIn.ConfigureDataVoltageLogicFamily(ChannelList, niHSDIOConstants._33vLogic);
+ // write out
+ hsTaskOut = niHSDIO.InitGenerationSession(dvc, false, false, "");
+ hsTaskOut.AssignStaticChannels(ChannelList);
+ hsTaskOut.ConfigureDataVoltageLogicFamily(ChannelList, niHSDIOConstants._33vLogic);
+ hardwareSet = true;
+ Utils.log(tbLog, "! Hardware ("+dvc+") initialized" , Brushes.Coral);
+ return true;
+ }
+ public bool ReadIn(out bool[] dt)
+ {
+ configHardware(false);
+ dt = new bool[32];
+ uint dataRead;
+ if (!Utils.isNull(hsTaskOut))
+ {
+ hsTaskIn.ReadStaticU32(out dataRead);
+ var bitArray = new BitArray(BitConverter.GetBytes(dataRead));
+ bitArray.CopyTo(dt, 0);
+ }
+ if (chkLog.IsChecked.Value) Utils.log(tbLog, "< " + boolArr2string(dt), Brushes.DarkGreen);
+ return true;
+ }
+ public bool WriteOut(bool[] dt, bool[] mask)
+ {
+ configHardware(false);
+ if ((dt.Length != 32) || (mask.Length != 32)) return false;
+ uint dataOut = BoolArrayToUInt(dt); uint uMask = BoolArrayToUInt(mask);
+ if (!Utils.isNull(hsTaskOut)) hsTaskOut.WriteStaticU32(dataOut, uMask);
+ if (chkLog.IsChecked.Value)
+ {
+ Utils.log(tbLog, "> " + boolArr2string(mask), Brushes.BlueViolet);
+ Utils.log(tbLog, "> " + boolArr2string(dt), Brushes.Blue);
+ }
+ return true;
+ }
+ #endregion hw
+
+ #region GUI
+ bool[] lastIn;
+ private void btnReadIn_Click(object sender, RoutedEventArgs e)
+ {
+ bool[] dt;
+ ReadIn(out dt);
+ switch (tcMain.SelectedIndex)
+ {
+ case 0:
+ if (!UpdateNamed(dt, false)) return;
+ break;
+ case 1:
+ byte2all();
+ UpdateAll(dt, false);
+ all2byte();
+ break;
+ }
+ if (Utils.isNull(lastIn)) lastIn = new bool[32];
+ dt.CopyTo(lastIn, 0);
+ }
+
+ private void btnWriteOut_Click(object sender, RoutedEventArgs e)
+ {
+ bool[] dt = new bool[32]; bool[] mask = new bool[32];
+ //ReadIn(out dt);
+ for (int i = 0; i < 32; i++) dt[i] = false;
+ switch (tcMain.SelectedIndex)
+ {
+ case 0:
+ UpdateNamed(dt, false);
+ mask = NamedBoolCol(1); dt = NamedBoolCol(3);
+ break;
+ case 1:
+ //UpdateAll(dt, false);
+ byte2all();
+ for (int i = 0; i < 32; i++)
+ {
+ if (allDIO[i].Enabled) dt[i] = allDIO[i].WriteOut;
+ }
+ mask = AllBoolCol(1);
+ break;
+ }
+ if (Utils.TheosComputer())
+ {
+ for (int i = 0; i < 32; i++) dt[i] = false;
+ dt[29] = true; dt[30] = true; dt[31] = true;
+ }
+ WriteOut(dt,mask);
+ //btnReadIn_Click(null, null); string ss = boolArr2string(dt);
+ //if (boolArr2string(lastIn) != ss) ErrorMsg("In/Out mismatch."); !!!
+ }
+ private void btnLogClear_Click(object sender, RoutedEventArgs e)
+ {
+ tbLog.Document.Blocks.Clear();
+ }
+ public void ErrorMsg(string msg)
+ {
+ if (chkLog.IsChecked.Value) Utils.log(tbLog, msg, Brushes.Red);
+ else Utils.TimedMessageBox(msg, "Warning", 2500);
+ }
+ private void chkLog_Checked(object sender, RoutedEventArgs e)
+ {
+ int shift = 270;
+ if (chkLog.IsChecked.Value)
+ {
+ cdLog.Width = new GridLength(shift);
+ Width = Width + shift;
+ }
+ else
+ {
+ cdLog.Width = new GridLength(0);
+ Width = Width - shift;
+ }
+ }
+ private void chkAutoUpdate_Checked(object sender, RoutedEventArgs e)
+ {
+ //allDIO[3].ReadIn = chkAutoUpdate.IsChecked.Value;
+ //all2byte();
+ }
+ #endregion GUI
+ public bool[] NamedBoolCol(int idx) // same col. idx as AllBoolCol
+ {
+ bool[] rslt = new bool[32];
+ for (int i = 0; i < 32; i++) rslt[i] = false;
+ int j;
+ for (int i = 0; i < namedDIO.Count; i++)
+ {
+ if ((namedDIO[i].DIO == "") && (i == namedDIO.Count - 1)) continue;
+ if (!Int32.TryParse(namedDIO[i].DIO, out j))
+ {
+ ErrorMsg("Wrong DIO format for named channel " + namedDIO[i].Name);
+ continue;
+ }
+ if (!Utils.InRange(j, 0, 31))
+ {
+ ErrorMsg("Index out of range for named channel " + namedDIO[i].Name);
+ continue;
+ }
+ switch (idx)
+ {
+ case 1:
+ rslt[j] = namedDIO[i].Enabled;
+ break;
+ case 2:
+ rslt[j] = namedDIO[i].ReadIn;
+ break;
+ case 3:
+ rslt[j] = namedDIO[i].WriteOut;
+ break;
+ }
+ }
+ return rslt;
+ }
+
+ public bool[] AllBoolCol(int idx) // column index
+ {
+ bool[] rslt = new bool[32];
+ for (int i = 0; i < 32; i++)
+ switch (idx)
+ {
+ case 1:
+ rslt[i] = allDIO[i].Enabled;
+ break;
+ case 2:
+ rslt[i] = allDIO[i].ReadIn;
+ break;
+ case 3:
+ rslt[i] = allDIO[i].WriteOut;
+ break;
+ }
+ return rslt;
+ }
+
+ private void dgNamedDIO_UnloadingRow(object sender, DataGridRowEventArgs e)
+ {
+ dLog("unloading " + namedDIO.Count.ToString());
+ }
+
+ private void dgNamedDIO_LoadingRow(object sender, DataGridRowEventArgs e)
+ {
+ dLog("loading "+ namedDIO.Count.ToString());
+ }
+
+ private void dgNamedDIO_SelectionChanged(object sender, SelectionChangedEventArgs e)
+ {
+ e.Handled = true;
+ }
+
+ private void tbDvc_TextChanged(object sender, TextChangedEventArgs e)
+ {
+ hardwareSet = false;
+ if (!Utils.isNull(config)) config["device"] = tbDvc.Text;
+ }
+ }
+}
diff --git a/Axel-digit/Properties/AssemblyInfo.cs b/Axel-digit/Properties/AssemblyInfo.cs
new file mode 100644
index 00000000..19c4bd9e
--- /dev/null
+++ b/Axel-digit/Properties/AssemblyInfo.cs
@@ -0,0 +1,55 @@
+using System.Reflection;
+using System.Resources;
+using System.Runtime.CompilerServices;
+using System.Runtime.InteropServices;
+using System.Windows;
+
+// General Information about an assembly is controlled through the following
+// set of attributes. Change these attribute values to modify the information
+// associated with an assembly.
+[assembly: AssemblyTitle("Axel-digit")]
+[assembly: AssemblyDescription("Manual control of PXI 6541 DIO module, replacement of NI-MAX test panel")]
+[assembly: AssemblyConfiguration("")]
+[assembly: AssemblyCompany("Imperial College")]
+[assembly: AssemblyProduct("Axel-digit")]
+[assembly: AssemblyCopyright("Copyright © 2020 Teodor Krastev for Imperial College")]
+[assembly: AssemblyTrademark("")]
+[assembly: AssemblyCulture("")]
+
+// Setting ComVisible to false makes the types in this assembly not visible
+// to COM components. If you need to access a type in this assembly from
+// COM, set the ComVisible attribute to true on that type.
+[assembly: ComVisible(false)]
+
+//In order to begin building localizable applications, set
+//CultureYouAreCodingWith in your .csproj file
+//inside a . For example, if you are using US english
+//in your source files, set the to en-US. Then uncomment
+//the NeutralResourceLanguage attribute below. Update the "en-US" in
+//the line below to match the UICulture setting in the project file.
+
+//[assembly: NeutralResourcesLanguage("en-US", UltimateResourceFallbackLocation.Satellite)]
+
+
+[assembly: ThemeInfo(
+ ResourceDictionaryLocation.None, //where theme specific resource dictionaries are located
+ //(used if a resource is not found in the page,
+ // or application resource dictionaries)
+ ResourceDictionaryLocation.SourceAssembly //where the generic resource dictionary is located
+ //(used if a resource is not found in the page,
+ // app, or any theme specific resource dictionaries)
+)]
+
+
+// Version information for an assembly consists of the following four values:
+//
+// Major Version
+// Minor Version
+// Build Number
+// Revision
+//
+// You can specify all the values or you can default the Build and Revision Numbers
+// by using the '*' as shown below:
+// [assembly: AssemblyVersion("1.0.*")]
+[assembly: AssemblyVersion("1.0.0.3")]
+[assembly: AssemblyFileVersion("1.0.0.3")]
diff --git a/Axel-digit/Properties/Delete1.bmp b/Axel-digit/Properties/Delete1.bmp
new file mode 100644
index 00000000..6f6b6478
Binary files /dev/null and b/Axel-digit/Properties/Delete1.bmp differ
diff --git a/Axel-digit/Properties/Resources.Designer.cs b/Axel-digit/Properties/Resources.Designer.cs
new file mode 100644
index 00000000..4386c61f
--- /dev/null
+++ b/Axel-digit/Properties/Resources.Designer.cs
@@ -0,0 +1,71 @@
+//------------------------------------------------------------------------------
+//
+// This code was generated by a tool.
+// Runtime Version:4.0.30319.42000
+//
+// Changes to this file may cause incorrect behavior and will be lost if
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+
+namespace Axel_digit.Properties
+{
+
+
+ ///
+ /// A strongly-typed resource class, for looking up localized strings, etc.
+ ///
+ // This class was auto-generated by the StronglyTypedResourceBuilder
+ // class via a tool like ResGen or Visual Studio.
+ // To add or remove a member, edit your .ResX file then rerun ResGen
+ // with the /str option, or rebuild your VS project.
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
+ internal class Resources
+ {
+
+ private static global::System.Resources.ResourceManager resourceMan;
+
+ private static global::System.Globalization.CultureInfo resourceCulture;
+
+ [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
+ internal Resources()
+ {
+ }
+
+ ///
+ /// Returns the cached ResourceManager instance used by this class.
+ ///
+ [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
+ internal static global::System.Resources.ResourceManager ResourceManager
+ {
+ get
+ {
+ if ((resourceMan == null))
+ {
+ global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("Axel_digit.Properties.Resources", typeof(Resources).Assembly);
+ resourceMan = temp;
+ }
+ return resourceMan;
+ }
+ }
+
+ ///
+ /// Overrides the current thread's CurrentUICulture property for all
+ /// resource lookups using this strongly typed resource class.
+ ///
+ [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
+ internal static global::System.Globalization.CultureInfo Culture
+ {
+ get
+ {
+ return resourceCulture;
+ }
+ set
+ {
+ resourceCulture = value;
+ }
+ }
+ }
+}
diff --git a/Axel-digit/Properties/Resources.resx b/Axel-digit/Properties/Resources.resx
new file mode 100644
index 00000000..af7dbebb
--- /dev/null
+++ b/Axel-digit/Properties/Resources.resx
@@ -0,0 +1,117 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
\ No newline at end of file
diff --git a/Axel-digit/Properties/Settings.Designer.cs b/Axel-digit/Properties/Settings.Designer.cs
new file mode 100644
index 00000000..bb43f7dd
--- /dev/null
+++ b/Axel-digit/Properties/Settings.Designer.cs
@@ -0,0 +1,30 @@
+//------------------------------------------------------------------------------
+//
+// This code was generated by a tool.
+// Runtime Version:4.0.30319.42000
+//
+// Changes to this file may cause incorrect behavior and will be lost if
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+
+namespace Axel_digit.Properties
+{
+
+
+ [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "11.0.0.0")]
+ internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase
+ {
+
+ private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings())));
+
+ public static Settings Default
+ {
+ get
+ {
+ return defaultInstance;
+ }
+ }
+ }
+}
diff --git a/Axel-digit/Properties/Settings.settings b/Axel-digit/Properties/Settings.settings
new file mode 100644
index 00000000..033d7a5e
--- /dev/null
+++ b/Axel-digit/Properties/Settings.settings
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Axel-hub/Axel-hub/Properties/TripleBar.bmp b/Axel-digit/Properties/TripleBar.bmp
similarity index 100%
rename from Axel-hub/Axel-hub/Properties/TripleBar.bmp
rename to Axel-digit/Properties/TripleBar.bmp
diff --git a/Axel-digit/Properties/hnet.com-image.ico b/Axel-digit/Properties/hnet.com-image.ico
new file mode 100644
index 00000000..d685950d
Binary files /dev/null and b/Axel-digit/Properties/hnet.com-image.ico differ
diff --git a/Axel-digit/Properties/square_pulse-green-black.png b/Axel-digit/Properties/square_pulse-green-black.png
new file mode 100644
index 00000000..29e41769
Binary files /dev/null and b/Axel-digit/Properties/square_pulse-green-black.png differ
diff --git a/Axel-digit/Properties/square_pulse-green.png b/Axel-digit/Properties/square_pulse-green.png
new file mode 100644
index 00000000..667ad6e0
Binary files /dev/null and b/Axel-digit/Properties/square_pulse-green.png differ
diff --git a/Axel-digit/Properties/square_pulse.png b/Axel-digit/Properties/square_pulse.png
new file mode 100644
index 00000000..6eb82e2a
Binary files /dev/null and b/Axel-digit/Properties/square_pulse.png differ
diff --git a/Axel-digit/config.json b/Axel-digit/config.json
new file mode 100644
index 00000000..6e581696
--- /dev/null
+++ b/Axel-digit/config.json
@@ -0,0 +1 @@
+{"log":true,"device":"Dev3","Left":862.17721518987344,"Top":227.84810126582281,"Width":890.7341772151899,"Height":334.78481012658227,"named":[{"DIO":"1","Name":"chn 1","Enabled":true,"ReadIn":false,"WriteOut":false},{"DIO":"2","Name":"chn 45","Enabled":true,"ReadIn":false,"WriteOut":true},{"DIO":"3","Name":"chn 13","Enabled":true,"ReadIn":false,"WriteOut":true},{"DIO":"8","Name":"qq","Enabled":true,"ReadIn":false,"WriteOut":false},{"DIO":"9","Name":"www","Enabled":true,"ReadIn":false,"WriteOut":true},{"DIO":"12","Name":"yyy","Enabled":false,"ReadIn":false,"WriteOut":false}],"all":[{"DIO":"0","Enabled":true,"ReadIn":false,"WriteOut":false},{"DIO":"1","Enabled":true,"ReadIn":false,"WriteOut":false},{"DIO":"2","Enabled":true,"ReadIn":false,"WriteOut":true},{"DIO":"3","Enabled":true,"ReadIn":false,"WriteOut":true},{"DIO":"4","Enabled":false,"ReadIn":false,"WriteOut":false},{"DIO":"5","Enabled":true,"ReadIn":false,"WriteOut":false},{"DIO":"6","Enabled":true,"ReadIn":false,"WriteOut":false},{"DIO":"7","Enabled":true,"ReadIn":false,"WriteOut":false},{"DIO":"8","Enabled":true,"ReadIn":false,"WriteOut":false},{"DIO":"9","Enabled":true,"ReadIn":false,"WriteOut":true},{"DIO":"10","Enabled":false,"ReadIn":false,"WriteOut":false},{"DIO":"11","Enabled":false,"ReadIn":false,"WriteOut":false},{"DIO":"12","Enabled":false,"ReadIn":false,"WriteOut":false},{"DIO":"13","Enabled":true,"ReadIn":false,"WriteOut":false},{"DIO":"14","Enabled":false,"ReadIn":false,"WriteOut":false},{"DIO":"15","Enabled":false,"ReadIn":false,"WriteOut":false},{"DIO":"16","Enabled":true,"ReadIn":false,"WriteOut":false},{"DIO":"17","Enabled":false,"ReadIn":false,"WriteOut":false},{"DIO":"18","Enabled":false,"ReadIn":false,"WriteOut":false},{"DIO":"19","Enabled":false,"ReadIn":false,"WriteOut":false},{"DIO":"20","Enabled":false,"ReadIn":false,"WriteOut":false},{"DIO":"21","Enabled":false,"ReadIn":false,"WriteOut":false},{"DIO":"22","Enabled":false,"ReadIn":false,"WriteOut":false},{"DIO":"23","Enabled":false,"ReadIn":false,"WriteOut":false},{"DIO":"24","Enabled":true,"ReadIn":false,"WriteOut":false},{"DIO":"25","Enabled":false,"ReadIn":false,"WriteOut":false},{"DIO":"26","Enabled":false,"ReadIn":false,"WriteOut":false},{"DIO":"27","Enabled":false,"ReadIn":false,"WriteOut":false},{"DIO":"28","Enabled":false,"ReadIn":false,"WriteOut":false},{"DIO":"29","Enabled":false,"ReadIn":false,"WriteOut":false},{"DIO":"30","Enabled":true,"ReadIn":false,"WriteOut":true},{"DIO":"31","Enabled":true,"ReadIn":false,"WriteOut":true}],"tab":0}
\ No newline at end of file
diff --git a/Axel-digit/config0.json b/Axel-digit/config0.json
new file mode 100644
index 00000000..70dd2645
--- /dev/null
+++ b/Axel-digit/config0.json
@@ -0,0 +1 @@
+{"log":true,"device":"Dev3","Left":814.78481012658233,"Top":249.72151898734177,"Width":1060.8607594936709,"Height":334.78481012658227,"named":[{"DIO":1,"Name":"chn 1","Enabled":true,"ReadIn":false,"WriteOut":false},{"DIO":2,"Name":"chn 45","Enabled":true,"ReadIn":true,"WriteOut":true},{"DIO":3,"Name":"chn 13","Enabled":true,"ReadIn":false,"WriteOut":false},{"DIO":4,"Name":"chn 4","Enabled":false,"ReadIn":true,"WriteOut":true}],"all":[{"DIO":0,"Enabled":true,"ReadIn":true,"WriteOut":true},{"DIO":1,"Enabled":true,"ReadIn":false,"WriteOut":false},{"DIO":2,"Enabled":true,"ReadIn":true,"WriteOut":true},{"DIO":3,"Enabled":true,"ReadIn":false,"WriteOut":false},{"DIO":4,"Enabled":false,"ReadIn":true,"WriteOut":true},{"DIO":5,"Enabled":true,"ReadIn":false,"WriteOut":false},{"DIO":6,"Enabled":true,"ReadIn":true,"WriteOut":true},{"DIO":7,"Enabled":true,"ReadIn":false,"WriteOut":false},{"DIO":8,"Enabled":true,"ReadIn":true,"WriteOut":true},{"DIO":9,"Enabled":true,"ReadIn":false,"WriteOut":false},{"DIO":10,"Enabled":false,"ReadIn":true,"WriteOut":true},{"DIO":11,"Enabled":false,"ReadIn":false,"WriteOut":false},{"DIO":12,"Enabled":false,"ReadIn":true,"WriteOut":true},{"DIO":13,"Enabled":false,"ReadIn":false,"WriteOut":false},{"DIO":14,"Enabled":false,"ReadIn":true,"WriteOut":true},{"DIO":15,"Enabled":false,"ReadIn":false,"WriteOut":false},{"DIO":16,"Enabled":false,"ReadIn":true,"WriteOut":true},{"DIO":17,"Enabled":false,"ReadIn":false,"WriteOut":false},{"DIO":18,"Enabled":false,"ReadIn":true,"WriteOut":true},{"DIO":19,"Enabled":false,"ReadIn":false,"WriteOut":false},{"DIO":20,"Enabled":false,"ReadIn":true,"WriteOut":true},{"DIO":21,"Enabled":false,"ReadIn":false,"WriteOut":false},{"DIO":22,"Enabled":false,"ReadIn":true,"WriteOut":true},{"DIO":23,"Enabled":false,"ReadIn":false,"WriteOut":false},{"DIO":24,"Enabled":false,"ReadIn":true,"WriteOut":true},{"DIO":25,"Enabled":false,"ReadIn":false,"WriteOut":false},{"DIO":26,"Enabled":false,"ReadIn":true,"WriteOut":true},{"DIO":27,"Enabled":false,"ReadIn":false,"WriteOut":false},{"DIO":28,"Enabled":false,"ReadIn":true,"WriteOut":true},{"DIO":29,"Enabled":false,"ReadIn":false,"WriteOut":false},{"DIO":30,"Enabled":false,"ReadIn":true,"WriteOut":true},{"DIO":31,"Enabled":false,"ReadIn":false,"WriteOut":false}],"tab":1}
\ No newline at end of file
diff --git a/Axel-digit/niHSDIO.cs b/Axel-digit/niHSDIO.cs
new file mode 100644
index 00000000..33bbddfc
--- /dev/null
+++ b/Axel-digit/niHSDIO.cs
@@ -0,0 +1,11242 @@
+//------------------------------------------------------------------------------
+//
+// This code was generated by Measurement Studio for NI-HSDIO 15.0.
+//
+// Documentation is available at Start»Programs»National Instruments»NI-HSDIO»Documentation>>NI Digital Waveform Generator/Analyzer Help.
+//
+// Changes to this file may cause incorrect behavior and will be lost if
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+
+using System;
+using System.Runtime.InteropServices;
+using System.Text;
+
+namespace NationalInstruments.ModularInstruments.Interop
+{
+ ///
+ ///
+ ///
+ public class niHSDIO : object, System.IDisposable
+ {
+ private System.IntPtr _handle;
+ private bool _disposed = true;
+ ///
+ ///
+ ///
+ public struct nihsdio_wfminfo
+ {
+ ///
+ ///
+ ///
+ public System.Int64 absoluteTimestamp;
+ ///
+ ///
+ ///
+ public System.Int64 relativeTimestamp;
+ ///
+ ///
+ ///
+ public System.Int64 dt;
+ ///
+ ///
+ ///
+ public int actualSamplesRead;
+ ///
+ ///
+ ///
+ public System.Int64 reserved1;
+ ///
+ ///
+ ///
+ public System.Int64 reserved2;
+ }
+ private niHSDIO(System.IntPtr handle)
+ {
+ this._handle = handle;
+ this._disposed = false;
+ }
+
+ ///
+ /// Creates a new acquisition session. You can perform static and dynamic acquisition operations with this session.
+ ///
+ /// Creating a new session does not automatically tristate your front panel terminals or channels that might be driving voltages from previous sessions (refer to the niHSDIO_close function for more information on lines left driving after closing a session).
+ ///
+ /// Pass VI_TRUE to the Reset_Instrument parameter to place your device in a known start-up when creating a new session. This action is equivalent to calling niHSDIO_reset, and it tristates the front panel terminals and channels.
+ ///
+ ///
+ ///
+ ///
+ /// Specifies the device name, for example, "Dev1" where "Dev1" is a device name assigned by Measurement and Automation Explorer.
+ ///
+ ///
+ ///
+ /// Specifies whether the driver performs an ID query on the device. When this parameter is set to VI_TRUE, NI-HSDIO ensures compatibility between the device and the driver.
+ ///
+ /// Defined Values:
+ /// - VI_TRUE(1) Perform ID query
+ /// - VI_FALSE(0) Skip ID query
+ ///
+ ///
+ ///
+ /// Specifies whether the driver resets the device during initialization of the session. Refer to the niHSDIO_reset function for more information on what happens during a device reset.
+ ///
+ /// Defined Values:
+ /// - VI_FALSE(0) - Do not reset device
+ /// - VI_TRUE(1) - Reset device
+ ///
+ /// NOTE: Resetting your device resets the ENTIRE device. Acquisition or generation operations in progress are aborted and cleared.
+ ///
+ ///
+ ///
+ /// Currently unused. Set this string to "".
+ ///
+ public static niHSDIO InitAcquisitionSession(string Resource_Name, bool ID_Query, bool Reset_Instrument, string Option_String)
+ {
+ System.IntPtr handle;
+ int pInvokeResult = PInvoke.InitAcquisitionSession(Resource_Name, System.Convert.ToUInt16(ID_Query), System.Convert.ToUInt16(Reset_Instrument), Option_String, out handle);
+ PInvoke.TestForError(System.IntPtr.Zero, pInvokeResult);
+ try
+ {
+ return new niHSDIO(handle);
+ }
+ catch (System.Exception e)
+ {
+ PInvoke.close(handle);
+ throw e;
+ }
+ }
+
+ ///
+ ///Creates a new generation session. You can perform static and dynamic generation operations with this session.
+ ///
+ ///Creating a new session does not automatically tristate your front panel terminals or channels that might be driving voltages from previous sessions (refer to the niHSDIO_close function for more information on lines left driving after closing a session).
+ ///
+ ///Pass VI_TRUE to the resetInstrument parameter to place your device in a known start-up state when creating a new session. This action is equivalent to calling niHSDIO_reset, and it tristates the front panel terminals and channels.
+ ///
+ ///
+ ///
+ ///Specifies the device name, for example "Dev1" where "Dev1" is a device name assigned by Measurement and Automation Explorer.
+ ///
+ ///
+ ///Specifies whether the driver performs an ID query upon the device. When this parameter is set to VI_TRUE, the driver ensures compatibility between the device and driver.
+ ///
+ ///Defined Values:
+ ///- VI_TRUE(1) Perform ID query
+ ///- VI_FALSE(0) Skip ID query
+ ///
+ ///
+ ///
+ ///Specifies whether the driver resets the device during initialization of the session. Refer to the niHSDIO_reset function for more information on what happens during a device reset.
+ ///
+ ///Defined Values:
+ ///- VI_FALSE(0) - Do not reset device.
+ ///- VI_TRUE(1) - Reset device.
+ ///
+ ///NOTE: Resetting your device resets the ENTIRE device. Acquisition or generation operations in progress are aborted and cleared.
+ ///
+ ///
+ ///
+ ///
+ ///Currently unused. Set this string to "".
+ ///
+ public static niHSDIO InitGenerationSession(string Resource_Name, bool ID_Query, bool Reset_Instrument, string Option_String)
+ {
+ System.IntPtr handle;
+ int pInvokeResult = PInvoke.InitGenerationSession(Resource_Name, System.Convert.ToUInt16(ID_Query), System.Convert.ToUInt16(Reset_Instrument), Option_String, out handle);
+ PInvoke.TestForError(System.IntPtr.Zero, pInvokeResult);
+ try
+ {
+ return new niHSDIO(handle);
+ }
+ catch (System.Exception e)
+ {
+ PInvoke.close(handle);
+ throw e;
+ }
+ }
+
+ ///
+ ///Creates and initializes a special NI-HSDIO external calibration session. The ViSession returned is an NI-HSDIO session that can be used during the calibration session.
+ ///
+ ///Multiple calls to this function return the same session ID. Calibration sessions are mutually exclusive with acquisition and generation sessions.
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///The calibration password required to open an external calibration session to the device.
+ ///
+ ///Default Value: ""
+ ///
+ public static niHSDIO InitExtCal(string Resource_Name, string Password)
+ {
+ System.IntPtr handle;
+ int pInvokeResult = PInvoke.InitExtCal(Resource_Name, Password, out handle);
+ PInvoke.TestForError(System.IntPtr.Zero, pInvokeResult);
+ try
+ {
+ return new niHSDIO(handle);
+ }
+ catch (System.Exception e)
+ {
+ PInvoke.close(handle);
+ throw e;
+ }
+ }
+
+ ///
+ ///Configures the voltage levels for the data channels using a logic family.
+ ///
+ ///NOTE: Refer to the device documentation for descriptions of logic families and possible voltage restrictions.
+ ///
+ ///
+ ///
+ ///Identifies channels to apply settings. Use "" or VI_NULL to specify all channels.
+ ///
+ ///
+ ///Specifies the logic family for the data voltage levels.
+ ///
+ ///Defined Values:
+ ///
+ ///-NIHSDIO_VAL_1_8V_LOGIC
+ ///-NIHSDIO_VAL_2_5V_LOGIC
+ ///-NIHSDIO_VAL_3_3V_LOGIC
+ ///-NIHSDIO_VAL_5_0V_LOGIC
+ ///
+ ///
+ ///Reports the status of this operation. To obtain a text description of the status code, call niHSDIO_error_message. To obtain additional information concerning the error condition, use niHSDIO_GetError and niHSDIO_ClearError.
+ ///
+ ///The general meaning of the status code is as follows:
+ ///
+ ///Value Meaning
+ ///-------------------------------
+ ///0 Success
+ ///Positive Values Warnings
+ ///Negative Values Errors
+ ///
+ ///
+ public int ConfigureDataVoltageLogicFamily(string Channel_List, int Logic_Family)
+ {
+ int pInvokeResult = PInvoke.ConfigureDataVoltageLogicFamily(this._handle, Channel_List, Logic_Family);
+ PInvoke.TestForError(this._handle, pInvokeResult);
+ return pInvokeResult;
+ }
+
+ ///
+ ///Configures the voltage levels of the data channels using the specified high and low levels.
+ ///
+ ///NOTE: Refer to the device documentation for possible voltage restrictions.
+ ///
+ ///NOTE: If you are using an NI 654x device for generation sessions, set High_Level to the appropriate logic family value and set How_Level to 0. For acquisition sessions with the
+ ///NI 654x, select the same value for High_Level and Low_Level from the following list: 0.9 V, 1.25 V, or 1.65 V.
+ ///
+ ///
+ ///
+ ///Identifies channels to apply settings. Use "" or VI_NULL to specify all channels.
+ ///
+ ///
+ ///Specifies what voltage identifies logic low level.
+ ///
+ ///
+ ///
+ ///Specifies what voltage identifies logic high level.
+ ///
+ ///
+ ///
+ ///Reports the status of this operation. To obtain a text description of the status code, call niHSDIO_error_message. To obtain additional information concerning the error condition, use niHSDIO_GetError and niHSDIO_ClearError.
+ ///
+ ///The general meaning of the status code is as follows:
+ ///
+ ///Value Meaning
+ ///-------------------------------
+ ///0 Success
+ ///Positive Values Warnings
+ ///Negative Values Errors
+ ///
+ ///
+ public int ConfigureDataVoltageCustomLevels(string Channel_List, double Low_Level, double High_Level)
+ {
+ int pInvokeResult = PInvoke.ConfigureDataVoltageCustomLevels(this._handle, Channel_List, Low_Level, High_Level);
+ PInvoke.TestForError(this._handle, pInvokeResult);
+ return pInvokeResult;
+ }
+
+ ///
+ ///Configures the voltage levels for the trigger channels using a logic family.
+ ///
+ ///NOTE: Refer to the device documentation for descriptions of logic families and possible voltage restrictions.
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///Specifies the logic family for the trigger voltage levels.
+ ///
+ ///Defined Values:
+ ///
+ ///-NIHSDIO_VAL_5_0V_LOGIC
+ ///-NIHSDIO_VAL_3_3V_LOGIC
+ ///-NIHSDIO_VAL_2_5V_LOGIC
+ ///-NIHSDIO_VAL_1_8V_LOGIC
+ ///
+ ///
+ ///Reports the status of this operation. To obtain a text description of the status code, call niHSDIO_error_message. To obtain additional information concerning the error condition, use niHSDIO_GetError and niHSDIO_ClearError.
+ ///
+ ///The general meaning of the status code is as follows:
+ ///
+ ///Value Meaning
+ ///-------------------------------
+ ///0 Success
+ ///Positive Values Warnings
+ ///Negative Values Errors
+ ///
+ ///
+ public int ConfigureTriggerVoltageLogicFamily(int Logic_Family)
+ {
+ int pInvokeResult = PInvoke.ConfigureTriggerVoltageLogicFamily(this._handle, Logic_Family);
+ PInvoke.TestForError(this._handle, pInvokeResult);
+ return pInvokeResult;
+ }
+
+ ///
+ ///Configures the voltage levels of the trigger channels using user-defined high and low levels.
+ ///
+ ///NOTE: Refer to the device documentation for possible voltage restrictions.
+ ///
+ ///NOTE: If you are using an NI 654x device for generation sessions, set High_Level to the appropriate logic family value and set How_Level to 0. For acquisition sessions with the
+ ///NI 654x, select the same value for High_Level and Low_Level from the following list: 0.9 V, 1.25 V, or 1.65 V.
+ ///
+ ///
+ ///
+ ///
+ ///Specifies what voltage identifies logic low level.
+ ///
+ ///
+ ///
+ ///Specifies what voltage identifies logic high level.
+ ///
+ ///
+ ///
+ ///Reports the status of this operation. To obtain a text description of the status code, call niHSDIO_error_message. To obtain additional information concerning the error condition, use niHSDIO_GetError and niHSDIO_ClearError.
+ ///
+ ///The general meaning of the status code is as follows:
+ ///
+ ///Value Meaning
+ ///-------------------------------
+ ///0 Success
+ ///Positive Values Warnings
+ ///Negative Values Errors
+ ///
+ ///
+ public int ConfigureTriggerVoltageCustomLevels(double Low_Level, double High_Level)
+ {
+ int pInvokeResult = PInvoke.ConfigureTriggerVoltageCustomLevels(this._handle, Low_Level, High_Level);
+ PInvoke.TestForError(this._handle, pInvokeResult);
+ return pInvokeResult;
+ }
+
+ ///
+ ///Configures the voltage levels for the event channels using a logic family.
+ ///
+ ///NOTE: Refer to the device documentation for descriptions of logic families and possible voltage restrictions.
+ ///
+ ///
+ ///Specifies the logic family for the event voltage levels.
+ ///
+ ///Defined Values:
+ ///
+ ///-NIHSDIO_VAL_1_8V_LOGIC
+ ///-NIHSDIO_VAL_2_5V_LOGIC
+ ///-NIHSDIO_VAL_3_3V_LOGIC
+ ///-NIHSDIO_VAL_5_0V_LOGIC
+ ///
+ ///
+ ///Reports the status of this operation. To obtain a text description of the status code, call niHSDIO_error_message. To obtain additional information concerning the error condition, use niHSDIO_GetError and niHSDIO_ClearError.
+ ///
+ ///The general meaning of the status code is as follows:
+ ///
+ ///Value Meaning
+ ///-------------------------------
+ ///0 Success
+ ///Positive Values Warnings
+ ///Negative Values Errors
+ ///
+ ///
+ public int ConfigureEventVoltageLogicFamily(int Logic_Family)
+ {
+ int pInvokeResult = PInvoke.ConfigureEventVoltageLogicFamily(this._handle, Logic_Family);
+ PInvoke.TestForError(this._handle, pInvokeResult);
+ return pInvokeResult;
+ }
+
+ ///
+ ///Configures the voltage levels of the event channels using user-defined high and low levels.
+ ///
+ ///NOTE: Refer to the device documentation for possible voltage restrictions.
+ ///
+ ///NOTE: If you are using an NI 654x device for generation sessions, set High_Level to the appropriate logic family value and set How_Level to 0. For acquisition sessions with the
+ ///NI 654x, select the same value for High_Level and Low_Level from the following list: 0.9 V, 1.25 V, or 1.65 V.
+ ///
+ ///
+ ///
+ ///Specifies what voltage identifies logic low level.
+ ///
+ ///
+ ///
+ ///Specifies what voltage identifies logic high level.
+ ///
+ ///
+ ///
+ ///Reports the status of this operation. To obtain a text description of the status code, call niHSDIO_error_message. To obtain additional information concerning the error condition, use niHSDIO_GetError and niHSDIO_ClearError.
+ ///
+ ///The general meaning of the status code is as follows:
+ ///
+ ///Value Meaning
+ ///-------------------------------
+ ///0 Success
+ ///Positive Values Warnings
+ ///Negative Values Errors
+ ///
+ ///
+ public int ConfigureEventVoltageCustomLevels(double Low_Level, double High_Level)
+ {
+ int pInvokeResult = PInvoke.ConfigureEventVoltageCustomLevels(this._handle, Low_Level, High_Level);
+ PInvoke.TestForError(this._handle, pInvokeResult);
+ return pInvokeResult;
+ }
+
+ ///
+ ///Configures channels for dynamic acquisition (if vi is an acquisition session) or dynamic generation (if vi is a generation session).
+ ///
+ ///NOTE: A channel cannot be assigned to static generation and dynamic generation at the same time.
+ ///
+ ///
+ ///This string identifies which channels are reserved for dynamic operation.
+ ///
+ ///Valid Syntax:
+ ///"0-19" or "0-15,16-19" or "0-18,19"
+ ///"" (empty string) or VI_NULL to specify all channels
+ ///"none" to unassign all channels
+ ///
+ ///
+ ///
+ ///Reports the status of this operation. To obtain a text description of the status code, call niHSDIO_error_message. To obtain additional information concerning the error condition, use niHSDIO_GetError and niHSDIO_ClearError.
+ ///
+ ///The general meaning of the status code is as follows:
+ ///
+ ///Value Meaning
+ ///-------------------------------
+ ///0 Success
+ ///Positive Values Warnings
+ ///Negative Values Errors
+ ///
+ ///
+ public int AssignDynamicChannels(string Channel_List)
+ {
+ int pInvokeResult = PInvoke.AssignDynamicChannels(this._handle, Channel_List);
+ PInvoke.TestForError(this._handle, pInvokeResult);
+ return pInvokeResult;
+ }
+
+ ///
+ ///Commits any pending attributes to hardware and starts the dynamic operation (refer to niHSDIO_CommitDynamic for more information on committing).
+ ///
+ ///For an generation operation with a Start trigger configured, calling niHSDIO_Initiate causes the channels to go to their Initial states (refer to niHSDIO_ConfigureInitialState for more information on Initial states).
+ ///
+ ///This function is valid only for dynamic operations (acquisition or generation). It is not valid for static operations.
+ ///
+ ///
+ ///
+ ///
+ ///Reports the status of this operation. To obtain a text description of the status code, call niHSDIO_error_message. To obtain additional information concerning the error condition, use niHSDIO_GetError and niHSDIO_ClearError.
+ ///
+ ///The general meaning of the status code is as follows:
+ ///
+ ///Value Meaning
+ ///-------------------------------
+ ///0 Success
+ ///Positive Values Warnings
+ ///Negative Values Errors
+ ///
+ ///
+ public int Initiate()
+ {
+ int pInvokeResult = PInvoke.Initiate(this._handle);
+ PInvoke.TestForError(this._handle, pInvokeResult);
+ return pInvokeResult;
+ }
+
+ ///
+ ///Call this function to pause execution of your program until the dynamic data operation is completed or the function returns a timeout error. niHSDIO_WaitUntilDone is a blocking function that periodically checks the operation status. It returns control to the calling program if the operation completes successfully or an error occurs (including a timeout error).
+ ///
+ ///This function is most useful for finite data operations that you expect to complete within a certain time.
+ ///
+ ///
+ ///
+ ///This parameter specifies the number of milliseconds to allow the function to complete before returning. If the specified time elapses before the data operation has completed, the function returns a timeout error.
+ ///
+ ///- Setting a value of 0 causes the function to return immediately. This setting can be useful to manually poll for hardware errors after a data operation has been initiated. If no other error has occurred and the data operation is still not complete, the function returns a timeout error.
+ ///
+ ///- Setting a value of -1 causes the function to never timeout. Be careful not to use this value during a continuous operation, as it will never return unless a HW error occurs. Perform a manual device reset from Measurement and Automation Explorer if you get stuck in this state or use niHSDIO_reset or niHSDIO_ResetDevice from the other session of the device.
+ ///
+ ///
+ ///
+ ///
+ ///Reports the status of this operation. To obtain a text description of the status code, call niHSDIO_error_message. To obtain additional information concerning the error condition, use niHSDIO_GetError and niHSDIO_ClearError.
+ ///
+ ///The general meaning of the status code is as follows:
+ ///
+ ///Value Meaning
+ ///-------------------------------
+ ///0 Success
+ ///Positive Values Warnings
+ ///Negative Values Errors
+ ///
+ ///
+ public int WaitUntilDone(int Max_Time_Milliseconds)
+ {
+ int pInvokeResult = PInvoke.WaitUntilDone(this._handle, Max_Time_Milliseconds);
+ PInvoke.TestForError(this._handle, pInvokeResult);
+ return pInvokeResult;
+ }
+
+ ///
+ ///Stops a running dynamic session. This function is generally not required on finite data operations, as they complete on their own after the last data point is generated or acquired. This function is generally required for continuous operations or if you wish to interrupt a finite operation before it is completed.
+ ///
+ ///This function is valid for dynamic operations (acquisition or generation) only. It is not valid for static operations.
+ ///
+ ///NOTE: To avoid receiving hardware clocking errors when reconfiguring an external clock, explicitly call the niHSDIO_Abort function after your finite operation has completed before performing any clocking reconfiguration. An external clock that stops sending pulses to the device (even after a finite operation has completed) may cause NI-HSDIO to return an error, stating that the clock became unlocked, if the device has not implicitly aborted yet.
+ ///
+ ///
+ ///
+ ///Reports the status of this operation. To obtain a text description of the status code, call niHSDIO_error_message. To obtain additional information concerning the error condition, use niHSDIO_GetError and niHSDIO_ClearError.
+ ///
+ ///The general meaning of the status code is as follows:
+ ///
+ ///Value Meaning
+ ///-------------------------------
+ ///0 Success
+ ///Positive Values Warnings
+ ///Negative Values Errors
+ ///
+ ///
+ public int Abort()
+ {
+ int pInvokeResult = PInvoke.Abort(this._handle);
+ PInvoke.TestForError(this._handle, pInvokeResult);
+ return pInvokeResult;
+ }
+
+ ///
+ ///Configures the acquisition size, including the number of acquired records and the minimum record size.
+ ///
+ ///
+ ///Sets the number of samples to be acquired per record. If you need pre- and post-trigger points, configure a Reference trigger and specify the number of pretrigger points.
+ ///
+ ///
+ ///Sets how many records are acquired. Currently this value must be set to 1.
+ ///
+ ///
+ ///Reports the status of this operation. To obtain a text description of the status code, call niHSDIO_error_message. To obtain additional information concerning the error condition, use niHSDIO_GetError and niHSDIO_ClearError.
+ ///
+ ///The general meaning of the status code is as follows:
+ ///
+ ///Value Meaning
+ ///-------------------------------
+ ///0 Success
+ ///Positive Values Warnings
+ ///Negative Values Errors
+ ///
+ ///
+ public int ConfigureAcquisitionSize(int Samples_Per_Record, int Number_Of_Records)
+ {
+ int pInvokeResult = PInvoke.ConfigureAcquisitionSize(this._handle, Samples_Per_Record, Number_Of_Records);
+ PInvoke.TestForError(this._handle, pInvokeResult);
+ return pInvokeResult;
+ }
+
+ ///
+ ///Selects between acquiring high/low data or valid/invalid data during a static or dynamic acquisition operation.
+ ///
+ ///Select High or Low mode to get logic high or logic low values. Select Valid or Invalid mode to determine if the signal is within the specified voltage range (above data voltage low level but below data voltage high level) or outside the range (below data voltage low level or above data voltage high level). Refer to the Data Interpretation topic in the NI Digital Waveform Generator/Analyzer Help to understand how data is returned to you.
+ ///
+ ///NOTE: NI 654x/656x devices only support the High or Low mode of data interpretation. NI-HSDIO returns an error if you select Valid or Invalid mode for an acquisition with these devices.
+ ///
+ ///
+ ///Identifies channels to apply settings. Use "" or VI_NULL to specify all channels.
+ ///
+ ///
+ ///Selects the data interpretation mode.
+ ///
+ ///Defined Values:
+ ///
+ ///- NIHSDIO_VAL_HIGH_OR_LOW - Data read represents logical values (logic high or logic low)
+ ///
+ ///- NIHSDIO_VAL_VALID_OR_INVALID - Data read represents whether channel data is within the specified voltage range.
+ ///
+ ///
+ ///
+ ///Reports the status of this operation. To obtain a text description of the status code, call niHSDIO_error_message. To obtain additional information concerning the error condition, use niHSDIO_GetError and niHSDIO_ClearError.
+ ///
+ ///The general meaning of the status code is as follows:
+ ///
+ ///Value Meaning
+ ///-------------------------------
+ ///0 Success
+ ///Positive Values Warnings
+ ///Negative Values Errors
+ ///
+ ///
+ public int ConfigureDataInterpretation(string Channel_List, int Data_Interpretation)
+ {
+ int pInvokeResult = PInvoke.ConfigureDataInterpretation(this._handle, Channel_List, Data_Interpretation);
+ PInvoke.TestForError(this._handle, pInvokeResult);
+ return pInvokeResult;
+ }
+
+ ///
+ ///Initiates a waveform acquisition on channels enabled for dynamic acquisition, waits until it acquires the number of samples in Samples_To_Read, and returns the acquired binary data.
+ ///
+ ///
+ ///Specifies the number of samples to fetch.
+ ///
+ ///
+ ///
+ ///Specifies in milliseconds how long to allow the function to complete before returning a timeout error.
+ ///
+ ///A value of 0 causes the function to return immediately with up to the number of samples specified in Samples_To_Read. If you set Max_Time_Milliseconds to a value other than 0, and timeout occurs before all the samples are acquired, you receive a timeout error. If you specify a value for Samples_To_Read that is greater than the number of samples in the device memory, NI-HSDIO returns the available samples after Max_Time_Milliseconds. A value of -1 causes the function to never time out.
+ ///
+ ///
+ ///
+ ///Returns the number of samples that were successfully fetched and transferred into data[].
+ ///
+ ///
+ ///Returns the preallocated array where acquired samples are written.
+ ///
+ ///
+ ///
+ ///Reports the status of this operation. To obtain a text description of the status code, call niHSDIO_error_message. To obtain additional information concerning the error condition, use niHSDIO_GetError and niHSDIO_ClearError.
+ ///
+ ///The general meaning of the status code is as follows:
+ ///
+ ///Value Meaning
+ ///-------------------------------
+ ///0 Success
+ ///Positive Values Warnings
+ ///Negative Values Errors
+ ///
+ ///
+ public int ReadWaveformU32(int Samples_To_Read, int Max_Time_Milliseconds, out int Number_Of_Samples_Read, uint[] Data)
+ {
+ int pInvokeResult = PInvoke.ReadWaveformU32(this._handle, Samples_To_Read, Max_Time_Milliseconds, out Number_Of_Samples_Read, Data);
+ PInvoke.TestForError(this._handle, pInvokeResult);
+ return pInvokeResult;
+ }
+
+ ///
+ ///Transfers acquired binary data from onboard memory to PC memory. The data was acquired to onboard memory previously by calling the niHSDIO_Initiate function.
+ ///
+ ///If the number of samples specified in Samples_To_Read is still not available after the number of milliseconds specified in Max_Time_Milliseconds, this function returns no data with a timeout error.
+ ///
+ ///The fetch position can be modified by using niHSDIO_SetAttributeViInt32 and the NIHSDIO_ATTR_FETCH_RELATIVE_TO or NIHSDIO_ATTR_FETCH_OFFSET attributes. The default value for NIHSDIO_ATTR_FETCH_RELATIVE_TO is NIHSDIO_VAL_CURRENT_READ_POSITION. The default value for NIHSDIO_ATTR_FETCH_OFFSET is 0.
+ ///
+ ///Calling this function is not necessary if you use the niHSDIO_ReadWaveformU32 function, as the fetch is performed as part of that function.
+ ///
+ ///
+ ///
+ ///Specifies the number of samples to fetch.
+ ///
+ ///
+ ///
+ ///Specifies in milliseconds how long to allow the function to complete before returning a timeout error.
+ ///
+ ///A value of 0 causes the function to return immediately with up to the number of samples specified in Samples_To_Read. If you set Max_Time_Milliseconds to a value other than 0, and timeout occurs before all the samples are acquired, you receive a timeout error. If you specify a value for Samples_To_Read that is greater than the number of samples in the device memory, NI-HSDIO returns the available samples after max time milliseconds. A value of -1 causes the function to never time out.
+ ///
+ ///
+ ///
+ ///Returns the number of samples that were successfully fetched and transferred into data[].
+ ///
+ ///
+ ///Returns the preallocated array where acquired samples are written.
+ ///
+ ///
+ ///
+ ///Reports the status of this operation. To obtain a text description of the status code, call niHSDIO_error_message. To obtain additional information concerning the error condition, use niHSDIO_GetError and niHSDIO_ClearError.
+ ///
+ ///The general meaning of the status code is as follows:
+ ///
+ ///Value Meaning
+ ///-------------------------------
+ ///0 Success
+ ///Positive Values Warnings
+ ///Negative Values Errors
+ ///
+ ///
+ public int FetchWaveformU32(int Samples_To_Read, int Max_Time_Milliseconds, out int Number_Of_Samples_Read, uint[] Data)
+ {
+ int pInvokeResult = PInvoke.FetchWaveformU32(this._handle, Samples_To_Read, Max_Time_Milliseconds, out Number_Of_Samples_Read, Data);
+ PInvoke.TestForError(this._handle, pInvokeResult);
+ return pInvokeResult;
+ }
+
+ ///
+ ///Initiates a waveform acquisition on channels enabled for dynamic acquisition, waits until it acquires the number of samples in Samples_To_Read, and returns the acquired binary data.
+ ///
+ ///
+ ///Specifies the number of samples to fetch.
+ ///
+ ///
+ ///
+ ///Specifies in milliseconds how long to allow the function to complete before returning a timeout error.
+ ///
+ ///A value of 0 causes the function to return immediately with up to the number of samples specified in samples_To_Read. If you set Max_Time_Milliseconds to a value other than 0, and timeout occurs before all the samples are acquired, you receive a timeout error. If you specify a value for Samples_To_Read that is greater than the number of samples in the device memory, NI-HSDIO returns the available samples after Max_Time_Milliseconds. A value of -1 causes the function to never time out.
+ ///
+ ///
+ ///
+ ///Returns the number of samples that were successfully fetched and transferred into data[].
+ ///
+ ///
+ ///Returns the preallocated array where acquired samples are written.
+ ///
+ ///
+ ///
+ ///Reports the status of this operation. To obtain a text description of the status code, call niHSDIO_error_message. To obtain additional information concerning the error condition, use niHSDIO_GetError and niHSDIO_ClearError.
+ ///
+ ///The general meaning of the status code is as follows:
+ ///
+ ///Value Meaning
+ ///-------------------------------
+ ///0 Success
+ ///Positive Values Warnings
+ ///Negative Values Errors
+ ///
+ ///
+ public int ReadWaveformU16(int Samples_To_Read, int Max_Time_Milliseconds, out int Number_Of_Samples_Read, ushort[] Data)
+ {
+ int pInvokeResult = PInvoke.ReadWaveformU16(this._handle, Samples_To_Read, Max_Time_Milliseconds, out Number_Of_Samples_Read, Data);
+ PInvoke.TestForError(this._handle, pInvokeResult);
+ return pInvokeResult;
+ }
+
+ ///
+ ///Transfers acquired binary data from onboard memory to PC memory. The data was acquired to onboard memory previously by calling the niHSDIO_Initiate function.
+ ///
+ ///If the number of samples specified in Samples_To_Read is still not available after the number of milliseconds specified in Max_Time_Milliseconds, this function returns no data with a timeout error.
+ ///
+ ///The fetch position can be modified by using niHSDIO_SetAttributeViInt32 and the NIHSDIO_ATTR_FETCH_RELATIVE_TO or NIHSDIO_ATTR_FETCH_OFFSET attributes. The default value for NIHSDIO_ATTR_FETCH_RELATIVE_TO is NIHSDIO_VAL_CURRENT_READ_POSITION. The default value for NIHSDIO_ATTR_FETCH_OFFSET is 0.
+ ///
+ ///Calling this function is not necessary if you use the niHSDIO_ReadWaveformU16 function, as the fetch is performed as part of that function.
+ ///
+ ///
+ ///
+ ///Specifies the number of samples to fetch.
+ ///
+ ///
+ ///
+ ///Specifies in milliseconds how long to allow the function to complete before returning a timeout error.
+ ///
+ ///A value of 0 causes the function to return immediately with up to the number of samples specified in Samples_To_Read. If you set Max_Time_Milliseconds to a value other than 0, and timeout occurs before all the samples are acquired, you receive a timeout error. If you specify a value for Samples_To_Read that is greater than the number of samples in the device memory, NI-HSDIO returns the available samples after max time milliseconds. A value of -1 causes the function to never time out.
+ ///
+ ///
+ ///
+ ///Returns the number of samples that were successfully fetched and transferred into data[].
+ ///
+ ///
+ ///Returns the preallocated array where acquired samples are written.
+ ///
+ ///
+ ///
+ ///Reports the status of this operation. To obtain a text description of the status code, call niHSDIO_error_message. To obtain additional information concerning the error condition, use niHSDIO_GetError and niHSDIO_ClearError.
+ ///
+ ///The general meaning of the status code is as follows:
+ ///
+ ///Value Meaning
+ ///-------------------------------
+ ///0 Success
+ ///Positive Values Warnings
+ ///Negative Values Errors
+ ///
+ ///
+ public int FetchWaveformU16(int Samples_To_Read, int Max_Time_Milliseconds, out int Number_Of_Samples_Read, ushort[] Data)
+ {
+ int pInvokeResult = PInvoke.FetchWaveformU16(this._handle, Samples_To_Read, Max_Time_Milliseconds, out Number_Of_Samples_Read, Data);
+ PInvoke.TestForError(this._handle, pInvokeResult);
+ return pInvokeResult;
+ }
+
+ ///
+ ///Initiates a waveform acquisition on channels enabled for dynamic acquisition, waits until it acquires the number of samples in Samples_To_Read, and returns the acquired binary data.
+ ///
+ ///
+ ///Specifies the number of samples to fetch.
+ ///
+ ///
+ ///
+ ///Specifies in milliseconds how long to allow the function to complete before returning a timeout error.
+ ///
+ ///A value of 0 causes the function to return immediately with up to the number of samples specified in samples_To_Read. If you set Max_Time_Milliseconds to a value other than 0, and timeout occurs before all the samples are acquired, you receive a timeout error. If you specify a value for Samples_To_Read that is greater than the number of samples in the device memory, NI-HSDIO returns the available samples after Max_Time_Milliseconds. A value of -1 causes the function to never time out.
+ ///
+ ///
+ ///
+ ///Returns the number of samples that were successfully fetched and transferred into data[].
+ ///
+ ///
+ ///Returns the preallocated array where acquired samples are written.
+ ///
+ ///
+ ///
+ ///Reports the status of this operation. To obtain a text description of the status code, call niHSDIO_error_message. To obtain additional information concerning the error condition, use niHSDIO_GetError and niHSDIO_ClearError.
+ ///
+ ///The general meaning of the status code is as follows:
+ ///
+ ///Value Meaning
+ ///-------------------------------
+ ///0 Success
+ ///Positive Values Warnings
+ ///Negative Values Errors
+ ///
+ ///
+ public int ReadWaveformU8(int Samples_To_Read, int Max_Time_Milliseconds, out int Number_Of_Samples_Read, byte[] Data)
+ {
+ int pInvokeResult = PInvoke.ReadWaveformU8(this._handle, Samples_To_Read, Max_Time_Milliseconds, out Number_Of_Samples_Read, Data);
+ PInvoke.TestForError(this._handle, pInvokeResult);
+ return pInvokeResult;
+ }
+
+ ///
+ ///Transfers acquired binary data from onboard memory to PC memory. The data was acquired to onboard memory previously by calling the niHSDIO_Initiate function.
+ ///
+ ///If the number of samples specified in Samples_To_Read is still not available after the number of milliseconds specified in Max_Time_Milliseconds, this function returns no data with a timeout error.
+ ///
+ ///The fetch position can be modified by using niHSDIO_SetAttributeViInt32 and the NIHSDIO_ATTR_FETCH_RELATIVE_TO or NIHSDIO_ATTR_FETCH_OFFSET attributes. The default value for NIHSDIO_ATTR_FETCH_RELATIVE_TO is NIHSDIO_VAL_CURRENT_READ_POSITION. The default value for NIHSDIO_ATTR_FETCH_OFFSET is 0.
+ ///
+ ///Calling this function is not necessary if you use the niHSDIO_ReadWaveformU8 function, as the fetch is performed as part of that function.
+ ///
+ ///
+ ///
+ ///Specifies the number of samples to fetch.
+ ///
+ ///
+ ///
+ ///Specifies in milliseconds how long to allow the function to complete before returning a timeout error.
+ ///
+ ///A value of 0 causes the function to return immediately with up to the number of samples specified in Samples_To_Read. If you set Max_Time_Milliseconds to a value other than 0, and timeout occurs before all the samples are acquired, you receive a timeout error. If you specify a value for Samples_To_Read that is greater than the number of samples in the device memory, NI-HSDIO returns the available samples after max time milliseconds. A value of -1 causes the function to never time out.
+ ///
+ ///
+ ///
+ ///Returns the number of samples that were successfully fetched and transferred into data[].
+ ///
+ ///
+ ///Returns the preallocated array where acquired samples are written.
+ ///
+ ///
+ ///
+ ///Reports the status of this operation. To obtain a text description of the status code, call niHSDIO_error_message. To obtain additional information concerning the error condition, use niHSDIO_GetError and niHSDIO_ClearError.
+ ///
+ ///The general meaning of the status code is as follows:
+ ///
+ ///Value Meaning
+ ///-------------------------------
+ ///0 Success
+ ///Positive Values Warnings
+ ///Negative Values Errors
+ ///
+ ///
+ public int FetchWaveformU8(int Samples_To_Read, int Max_Time_Milliseconds, out int Number_Of_Samples_Read, byte[] Data)
+ {
+ int pInvokeResult = PInvoke.FetchWaveformU8(this._handle, Samples_To_Read, Max_Time_Milliseconds, out Number_Of_Samples_Read, Data);
+ PInvoke.TestForError(this._handle, pInvokeResult);
+ return pInvokeResult;
+ }
+
+ ///
+ ///Initiates a multirecord acquisition and returns the acquired waveform as a two-dimensional array of unsigned 32-bit data.
+ ///
+ ///
+ ///
+ ///
+ ///Specifies the number of samples to fetch.
+ ///
+ ///
+ ///Specifies in milliseconds how long to allow the function to complete before returning a timeout error.
+ ///
+ ///
+ ///Specifies the first record you want to read.
+ ///
+ ///
+ ///The number of records you want to read.
+ ///
+ ///
+ ///Returns the array of waveform data that contains the records to read.
+ ///
+ ///
+ ///Returns information about the records. This parameter includes an absolute timestamp, relative timestamp, the number of samples acquired, and the dT of the waveform.
+ ///
+ ///
+ ///Reports the status of this operation. To obtain a text description of the status code, call niHSDIO_error_message. To obtain additional information concerning the error condition, use niHSDIO_GetError and niHSDIO_ClearError.
+ ///
+ ///The general meaning of the status code is as follows:
+ ///
+ ///Value Meaning
+ ///-------------------------------
+ ///0 Success
+ ///Positive Values Warnings
+ ///Negative Values Errors
+ ///
+ public int ReadMultiRecordU32(int Samples_To_Read, int Max_Time_Milliseconds, int Starting_Record, int Records_To_Read, uint[] Waveform_Data, nihsdio_wfminfo Waveform_Info)
+ {
+ int pInvokeResult = PInvoke.ReadMultiRecordU32(this._handle, Samples_To_Read, Max_Time_Milliseconds, Starting_Record, Records_To_Read, Waveform_Data, Waveform_Info);
+ PInvoke.TestForError(this._handle, pInvokeResult);
+ return pInvokeResult;
+ }
+
+ ///
+ ///Fetches the data as a two-dimensional array of unsigned 32-bit integers and returns the number of samples read.
+ ///
+ ///
+ ///Specifies the number of samples to fetch.
+ ///
+ ///
+ ///Specifies in milliseconds how long to allow the function to complete before returning a timeout error.
+ ///
+ ///
+ ///Specifies the first record you want to read.
+ ///
+ ///
+ ///Specifies the number of records you want to read.
+ ///
+ ///
+ ///Returns the array of waveform data that contains the records to read.
+ ///
+ ///
+ ///Returns information about the records. This parameter includes an absolute timestamp, relative timestamp, the number of samples acquired, and the dT of the waveform.
+ ///
+ ///
+ ///Reports the status of this operation. To obtain a text description of the status code, call niHSDIO_error_message. To obtain additional information concerning the error condition, use niHSDIO_GetError and niHSDIO_ClearError.
+ ///
+ ///The general meaning of the status code is as follows:
+ ///
+ ///Value Meaning
+ ///-------------------------------
+ ///0 Success
+ ///Positive Values Warnings
+ ///Negative Values Errors
+ ///
+ public int FetchMultiRecordU32(int Samples_To_Read, int Max_Time_Milliseconds, int Starting_Record, int Records_To_Read, uint[] Waveform_Data, nihsdio_wfminfo Waveform_Info)
+ {
+ int pInvokeResult = PInvoke.FetchMultiRecordU32(this._handle, Samples_To_Read, Max_Time_Milliseconds, Starting_Record, Records_To_Read, Waveform_Data, Waveform_Info);
+ PInvoke.TestForError(this._handle, pInvokeResult);
+ return pInvokeResult;
+ }
+
+ ///
+ ///Initiates a multirecord acquisition, and returns the acquired waveform as a two-dimensional array of unsigned 16-bit data.
+ ///
+ ///
+ ///
+ ///Specifies in milliseconds how long to allow the function to complete before returning a timeout error.
+ ///
+ ///
+ ///Specifies the number of samples to fetch.
+ ///
+ ///
+ ///Specifies the first record you want to read.
+ ///
+ ///
+ ///Specifies the number of records you want to read.
+ ///
+ ///
+ ///Returns the array of waveform data that contains the records to read.
+ ///
+ ///
+ ///Returns information about the records. This parameter includes an absolute timestamp, relative timestamp, the number of samples acquired, and the dT of the waveform.
+ ///
+ ///
+ ///Reports the status of this operation. To obtain a text description of the status code, call niHSDIO_error_message. To obtain additional information concerning the error condition, use niHSDIO_GetError and niHSDIO_ClearError.
+ ///
+ ///The general meaning of the status code is as follows:
+ ///
+ ///Value Meaning
+ ///-------------------------------
+ ///0 Success
+ ///Positive Values Warnings
+ ///Negative Values Errors
+ ///
+ public int ReadMultiRecordU16(int Max_Time_Milliseconds, int Samples_To_Read, int Starting_Record, int Records_To_Read, ushort[] Waveform_Data, nihsdio_wfminfo Waveform_Info)
+ {
+ int pInvokeResult = PInvoke.ReadMultiRecordU16(this._handle, Max_Time_Milliseconds, Samples_To_Read, Starting_Record, Records_To_Read, Waveform_Data, Waveform_Info);
+ PInvoke.TestForError(this._handle, pInvokeResult);
+ return pInvokeResult;
+ }
+
+ ///
+ ///Fetches the data as a two-dimensional array of unsigned 16-bit integers and returns the number of samples read.
+ ///
+ ///
+ ///Specifies in milliseconds how long to allow the function to complete before returning a timeout error.
+ ///
+ ///
+ ///Specifies the number of samples to fetch.
+ ///
+ ///
+ ///Specifies the first record you want to read.
+ ///
+ ///
+ ///Specifies the number of records you want to read.
+ ///
+ ///
+ ///Returns the array of waveform data that contains the records to read.
+ ///
+ ///
+ ///Returns information about the records. This parameter includes an absolute timestamp, relative timestamp, the number of samples acquired, and the dT of the waveform.
+ ///
+ ///
+ ///Reports the status of this operation. To obtain a text description of the status code, call niHSDIO_error_message. To obtain additional information concerning the error condition, use niHSDIO_GetError and niHSDIO_ClearError.
+ ///
+ ///The general meaning of the status code is as follows:
+ ///
+ ///Value Meaning
+ ///-------------------------------
+ ///0 Success
+ ///Positive Values Warnings
+ ///Negative Values Errors
+ ///
+ public int FetchMultiRecordU16(int Max_Time_Milliseconds, int Samples_To_Read, int Starting_Record, int Records_To_Read, ushort[] Waveform_Data, nihsdio_wfminfo Waveform_Info)
+ {
+ int pInvokeResult = PInvoke.FetchMultiRecordU16(this._handle, Max_Time_Milliseconds, Samples_To_Read, Starting_Record, Records_To_Read, Waveform_Data, Waveform_Info);
+ PInvoke.TestForError(this._handle, pInvokeResult);
+ return pInvokeResult;
+ }
+
+ ///
+ ///Initiates a multirecord acquisition, and returns the acquired waveform as a two-dimensional array of unsigned 8-bit data.
+ ///
+ ///
+ ///
+ ///Specifies the number of samples to fetch.
+ ///
+ ///
+ ///Specifies in milliseconds how long to allow the function to complete before returning a timeout error.
+ ///
+ ///
+ ///Specifies the first record you want to read.
+ ///
+ ///
+ ///Specifies the number of records you want to read.
+ ///
+ ///
+ ///Returns the array of waveform data that contains the records to read.
+ ///
+ ///
+ ///Returns information about the records. This parameter includes an absolute timestamp, relative timestamp, the number of samples acquired, and the dT of the waveform.
+ ///
+ ///
+ ///Reports the status of this operation. To obtain a text description of the status code, call niHSDIO_error_message. To obtain additional information concerning the error condition, use niHSDIO_GetError and niHSDIO_ClearError.
+ ///
+ ///The general meaning of the status code is as follows:
+ ///
+ ///Value Meaning
+ ///-------------------------------
+ ///0 Success
+ ///Positive Values Warnings
+ ///Negative Values Errors
+ ///
+ public int ReadMultiRecordU8(int Samples_To_Read, int Max_Time_Milliseconds, int Starting_Record, int Records_To_Read, byte[] Waveform_Data, nihsdio_wfminfo Waveform_Info)
+ {
+ int pInvokeResult = PInvoke.ReadMultiRecordU8(this._handle, Samples_To_Read, Max_Time_Milliseconds, Starting_Record, Records_To_Read, Waveform_Data, Waveform_Info);
+ PInvoke.TestForError(this._handle, pInvokeResult);
+ return pInvokeResult;
+ }
+
+ ///
+ ///Fetches the data as a two-dimensional array of unsigned 8-bit integers and returns the number of samples read.
+ ///
+ ///
+ ///Specifies the number of samples to fetch.
+ ///
+ ///
+ ///Specifies in milliseconds how long to allow the function to complete before returning a timeout error.
+ ///
+ ///
+ ///Specifies the first record you want to read.
+ ///
+ ///
+ ///Specifies the number of records you want to read.
+ ///
+ ///
+ ///Returns the array of waveform data that contains the records to read.
+ ///
+ ///
+ ///Returns information about the records. This parameter includes an absolute timestamp, relative timestamp, the number of samples acquired, and the dT of the waveform.
+ ///
+ ///
+ ///Reports the status of this operation. To obtain a text description of the status code, call niHSDIO_error_message. To obtain additional information concerning the error condition, use niHSDIO_GetError and niHSDIO_ClearError.
+ ///
+ ///The general meaning of the status code is as follows:
+ ///
+ ///Value Meaning
+ ///-------------------------------
+ ///0 Success
+ ///Positive Values Warnings
+ ///Negative Values Errors
+ ///
+ public int FetchMultiRecordU8(int Samples_To_Read, int Max_Time_Milliseconds, int Starting_Record, int Records_To_Read, byte[] Waveform_Data, nihsdio_wfminfo Waveform_Info)
+ {
+ int pInvokeResult = PInvoke.FetchMultiRecordU8(this._handle, Samples_To_Read, Max_Time_Milliseconds, Starting_Record, Records_To_Read, Waveform_Data, Waveform_Info);
+ PInvoke.TestForError(this._handle, pInvokeResult);
+ return pInvokeResult;
+ }
+
+ ///
+ ///Transfers acquired waveform data from device memory directly to PC memory allocated by a Direct DMA-compatible device.
+ ///
+ ///
+ ///Specifies in milliseconds how long to allow the function to complete before returning a timeout error.
+ ///
+ ///
+ ///Specifies the number of samples to fetch.
+ ///
+ ///
+ ///Specifies the size (in bytes) of the buffer in memory at which to transfer acquired data.
+ ///
+ ///
+ ///Specifies the location of the buffer in memory at which to transfer acquired data.
+ ///
+ ///
+ ///Returns information about the records. This parameter includes an absolute timestamp, relative timestamp, the number of samples acquired, and the dT of the waveform.
+ ///
+ ///
+ ///Returns the offset of the first sample acquired within the specified buffer. Data is transfered from device memory in 128 bytes increments, so the first sample of the acquired data typically occurs at some offset from the start of the buffer when using a Reference trigger.
+ ///
+ ///
+ ///Reports the status of this operation. To obtain a text description of the status code, call niHSDIO_error_message. To obtain additional information concerning the error condition, use niHSDIO_GetError and niHSDIO_ClearError.
+ ///
+ ///The general meaning of the status code is as follows:
+ ///
+ ///Value Meaning
+ ///-------------------------------
+ ///0 Success
+ ///Positive Values Warnings
+ ///Negative Values Errors
+ ///
+ public int FetchWaveformDirectDMA(int Max_Time_Milliseconds, int Samples_To_Read, uint Buffer_Size, System.IntPtr Buffer_Address, nihsdio_wfminfo Waveform_Info, uint Offset_to_First_Sample)
+ {
+ int pInvokeResult = PInvoke.FetchWaveformDirectDMA(this._handle, Max_Time_Milliseconds, Samples_To_Read, Buffer_Size, Buffer_Address, Waveform_Info, Offset_to_First_Sample);
+ PInvoke.TestForError(this._handle, pInvokeResult);
+ return pInvokeResult;
+ }
+
+ ///
+ ///Returns the sample error information from a hardware comparison operation.
+ ///
+ ///
+ ///Specifies the number of sample errors to fetch.
+ ///
+ ///
+ ///Specifies in milliseconds how long to allow the function to complete before returning a timeout error.
+ ///
+ ///A value of 0 causes the function to return immediately with up to the number of samples specified in Samples_To_Read. If you set Max_Time_Milliseconds to a value other than 0, and timeout occurs before all the samples are acquired, you receive a timeout error. If you specify a value for Samples_To_Read that is greater than the number of samples in the device memory, NI-HSDIO returns the available samples after max time milliseconds. A value of -1 causes the function to never timeout.
+ ///
+ ///Default Value: 10000
+ ///
+ ///
+ ///Returns the total number of sample errors read from device memory.
+ ///
+ ///
+ ///Returned array which indicates the number of samples with errors.
+ ///
+ ///
+ ///Returns the bit numbers of the data within the samples with errors. Please note, the sampleNumber[i] and errorBits[i] correspond to one another
+ ///
+ ///
+ ///
+ ///Returns the number of times that error was repeated.
+ ///
+ ///
+ ///Reserved filed. Use NULL.
+ ///
+ ///
+ ///Reserved filed. Use NULL.
+ ///
+ ///
+ ///Reports the status of this operation. To obtain a text description of the status code, call niHSDIO_error_message. To obtain additional information concerning the error condition, use niHSDIO_GetError and niHSDIO_ClearError.
+ ///
+ ///The general meaning of the status code is as follows:
+ ///
+ ///Value Meaning
+ ///-------------------------------
+ ///0 Success
+ ///Positive Values Warnings
+ ///Negative Values Errors
+ ///
+ ///
+ public int HWC_FetchSampleErrors(int Sample_Errors_to_Read, int Max_Time_Milliseconds, out int Number_Of_Samples_Error_Read, double[] Error_Sample_Numbers, uint[] Error_Bits, uint[] Error_Repeat_Counts, out uint Reserved_1, out uint Reserved_2)
+ {
+ int pInvokeResult = PInvoke.HWC_FetchSampleErrors(this._handle, Sample_Errors_to_Read, Max_Time_Milliseconds, out Number_Of_Samples_Error_Read, Error_Sample_Numbers, Error_Bits, Error_Repeat_Counts, out Reserved_1, out Reserved_2);
+ PInvoke.TestForError(this._handle, pInvokeResult);
+ return pInvokeResult;
+ }
+
+ ///
+ ///Transfers waveform data from PC memory to onboard memory. Supported devices for this function depend on the data width for your device, not on the number of assigned dynamic channels. This function may be used when the data width is 4.
+ ///
+ ///If you specify a Waveform_Name not already allocated on the device, the appropriate amount of onboard memory is allocated (if available) and the data is stored in that new location.
+ ///
+ ///Data is always written to memory starting at the current write position of the waveform. A new waveform's write position is the start of the allocated memory. Calling niHSDIO_WriteNamedWaveformU32 moves the next write position to the end of the data just written. Thus, subsequent calls to niHSDIO_WriteNamedWaveformU32 append data to the end of previously written data. You may also manually change the write position by calling niHSDIO_SetNamedWaveformNextWritePosition. If you try to write past the end of the allocated space, NI-HSDIO returns an error.
+ ///
+ ///Waveforms are stored contiguously in onboard memory. You cannot resize an existing named waveform. Instead, delete the existing waveform using niHSDIO_DeleteNamedWaveform and then recreate it with the new size using the same name.
+ ///
+ ///This function calls niHSDIO_CommitDynamic - all pending attributes are committed to hardware.
+ ///
+ ///When you explicitly call niHSDIO_AllocateNamedWaveform and write waveforms using multiple niHSDIO_WriteNamedWaveformU32 calls, each waveform block written must be a multiple of 32 samples for the NI 654x/655x devices or a multiple of 64 samples
+ ///for the NI 656x devices (128 samples if the NI 656x is in
+ ///DDR mode).
+ ///
+ ///
+ ///Specifies a string representing the name to associate with the allocated waveform memory.
+ ///
+ ///
+ ///Specifies the number of samples in data to be written to onboard memory.
+ ///
+ ///
+ ///
+ ///Specifies the waveform data.
+ ///
+ ///If you want to use direct DMA to write your waveform from onboard memory, pass the memory address (pointer value) of the region so that you write within the direct DMA window.
+ ///
+ ///
+ ///Reports the status of this operation. To obtain a text description of the status code, call niHSDIO_error_message. To obtain additional information concerning the error condition, use niHSDIO_GetError and niHSDIO_ClearError.
+ ///
+ ///The general meaning of the status code is as follows:
+ ///
+ ///Value Meaning
+ ///-------------------------------
+ ///0 Success
+ ///Positive Values Warnings
+ ///Negative Values Errors
+ ///
+ ///
+ public int WriteNamedWaveformU32(string Waveform_Name, int Samples_To_Write, uint[] Data)
+ {
+ int pInvokeResult = PInvoke.WriteNamedWaveformU32(this._handle, Waveform_Name, Samples_To_Write, Data);
+ PInvoke.TestForError(this._handle, pInvokeResult);
+ return pInvokeResult;
+ }
+
+ ///
+ ///Transfers waveform data from PC memory to onboard memory. Supported devices for this function depend on the data width for your device, not on the number of assigned dynamic channels. This function may be used when the data width is 2.
+ ///
+ ///If you specify a waveformName not already allocated on the device, the appropriate amount of onboard memory is allocated (if available) and the data is stored in that new location.
+ ///
+ ///Data is always written to memory starting at the current write position of the waveform. A new waveform's write position is the start of the allocated memory. Calling this function moves the next write position to the end of the data just written. Thus, subsequent calls to this function append data to the end of previously written data. You may also manually change the write position by calling niHSDIO_SetNamedWaveformNextWritePosition. If you try to write past the end of the allocated space, NI-HSDIO returns an error.
+ ///
+ ///Waveforms are stored contiguously in onboard memory. You cannot resize an existing named waveform. Instead, delete the existing waveform using niHSDIO_DeleteNamedWaveform and then recreate it with the new size using the same name.
+ ///
+ ///This function calls niHSDIO_CommitDynamic - all pending attributes are committed to hardware.
+ ///
+ ///When you explicitly call niHSDIO_AllocateNamedWaveform and write waveforms using multiple niHSDIO_WriteNamedWaveformU16 calls, each waveform block written must be a multiple of 32 samples for the NI 654X/655X devices or a multiple of 64 samples
+ ///for the NI 656X devices (128 samples if the NI 656X is in
+ ///DDR mode).
+ ///
+ ///
+ ///Specifies a string representing the name to associate with the allocated waveform memory.
+ ///
+ ///
+ ///Specifies the number of samples in data to be written to onboard memory.
+ ///
+ ///
+ ///
+ ///Specifies the waveform data.
+ ///
+ ///If you want to use direct DMA to write your waveform from onboard memory, pass the memory address (pointer value) of the region so that you write within the direct DMA window.
+ ///
+ ///
+ ///Reports the status of this operation. To obtain a text description of the status code, call niHSDIO_error_message. To obtain additional information concerning the error condition, use niHSDIO_GetError and niHSDIO_ClearError.
+ ///
+ ///The general meaning of the status code is as follows:
+ ///
+ ///Value Meaning
+ ///-------------------------------
+ ///0 Success
+ ///Positive Values Warnings
+ ///Negative Values Errors
+ ///
+ ///
+ public int WriteNamedWaveformU16(string Waveform_Name, int Samples_To_Write, ushort[] Data)
+ {
+ int pInvokeResult = PInvoke.WriteNamedWaveformU16(this._handle, Waveform_Name, Samples_To_Write, Data);
+ PInvoke.TestForError(this._handle, pInvokeResult);
+ return pInvokeResult;
+ }
+
+ ///
+ ///Transfers waveform data from PC memory to onboard memory. Supported devices for this function depend on the data width for your device, not on the number of assigned dynamic channels. This function may be used when the data width is 1.
+ ///
+ ///If you specify a waveformName not already allocated on the device, the appropriate amount of onboard memory is allocated (if available) and the data is stored in that new location.
+ ///
+ ///Data is always written to memory starting at the current write position of the waveform. A new waveform's write position is the start of the allocated memory. Calling this function moves the next write position to the end of the data just written. Thus, subsequent calls to this function append data to the end of previously written data. You may also manually change the write position by calling niHSDIO_SetNamedWaveformNextWritePosition. If you try to write past the end of the allocated space, NI-HSDIO returns an error.
+ ///
+ ///Waveforms are stored contiguously in onboard memory. You cannot resize an existing named waveform. Instead, delete the existing waveform using niHSDIO_DeleteNamedWaveform and then recreate it with the new size using the same name.
+ ///
+ ///This function calls niHSDIO_CommitDynamic - all pending attributes are committed to hardware.
+ ///
+ ///When you explicitly call niHSDIO_AllocateNamedWaveform and write waveforms using multiple niHSDIO_WriteNamedWaveformU8 calls, each waveform block written must be a multiple of 32 samples for the NI 654X/655X devices or a multiple of 64 samples
+ ///for the NI 656X devices (128 samples if the NI 656X is in
+ ///DDR mode).
+ ///
+ ///
+ ///Specifies a string representing the name to associate with the allocated waveform memory.
+ ///
+ ///
+ ///Specifies the number of samples in data to be written to onboard memory.
+ ///
+ ///
+ ///
+ ///Specifies the waveform data.
+ ///
+ ///If you want to use direct DMA to write your waveform from onboard memory, pass the memory address (pointer value) of the region so that you write within the direct DMA window.
+ ///
+ ///
+ ///
+ ///Reports the status of this operation. To obtain a text description of the status code, call niHSDIO_error_message. To obtain additional information concerning the error condition, use niHSDIO_GetError and niHSDIO_ClearError.
+ ///
+ ///The general meaning of the status code is as follows:
+ ///
+ ///Value Meaning
+ ///-------------------------------
+ ///0 Success
+ ///Positive Values Warnings
+ ///Negative Values Errors
+ ///
+ ///
+ public int WriteNamedWaveformU8(string Waveform_Name, int Samples_To_Write, byte[] Data)
+ {
+ int pInvokeResult = PInvoke.WriteNamedWaveformU8(this._handle, Waveform_Name, Samples_To_Write, Data);
+ PInvoke.TestForError(this._handle, pInvokeResult);
+ return pInvokeResult;
+ }
+
+ ///
+ ///Transfers multistate digital waveforms from PC memory to onboard memory. Each element of data[] uses one byte per channel per sample. The supported values are defined in niHSDIO.h.
+ ///
+ ///If you specify a waveformName not already allocated on the device, the appropriate amount of onboard memory is allocated (if available), and the data is stored in that new location.
+ ///
+ ///Data is always written to memory starting at the current write position of the waveform. A new waveform's write position is the start of the allocated memory. Calling this function moves the next write position to the end of the data just written. Thus, subsequent calls to this function append data to the end of previously written data. You can manually change the write position by calling niHSDIO_SetNamedWaveformNextWritePosition. If you try to write past the end of the allocated space, NI-HSDIO returns an error.
+ ///
+ ///Waveforms are stored contiguously in onboard memory. You cannot resize an existing named waveform. Instead, delete the existing waveform using niHSDIO_DeleteNamedWaveform and then recreate it with the new size using the same name.
+ ///
+ ///This function calls niHSDIO_CommitDynamic--all pending attributes are committed to hardware.
+ ///
+ ///
+ ///
+ ///Specifies a string representing the name to associate with the allocated waveform memory.
+ ///
+ ///
+ ///Specifies the number of samples in data to be written to onboard memory. This number is not equal to the length of the data[] array, since its size is the number of samples to write times the number of channels.
+ ///
+ ///
+ ///
+ ///Describes the layout of the waveform contained in data[].
+ ///
+ ///Defined Values
+ ///
+ ///NIHSDIO_VAL_GROUP_BY_SAMPLE--specifies that consecutive samples in data[] are such that the array contains the first sample from every signal in the operation, then the second sample from every signal, up to the last sample from every signal.
+ ///
+ ///NIHSDIO_VAL_GROUP_BY_CHANNEL--specifies that consecutive samples in data[] are such that the array contains all the samples from the first signal in the operation, then all the samples from the second signal, up to all samples from the last signal. .
+ ///
+ ///
+ ///Specifies the digital waveform data. Each value on this array defines the state of one channel of one sample. Supported states are defined in niHSDIO.h.
+ ///
+ ///
+ ///Reports the status of this operation. To obtain a text description of the status code, call niHSDIO_error_message. To obtain additional information concerning the error condition, use niHSDIO_GetError and niHSDIO_ClearError.
+ ///
+ ///The general meaning of the status code is as follows:
+ ///
+ ///Value Meaning
+ ///-------------------------------
+ ///0 Success
+ ///Positive Values Warnings
+ ///Negative Values Errors
+ ///
+ ///
+ public int WriteNamedWaveformWDT(string Waveform_Name, int Samples_To_Write, int Data_Layout, byte[] Data)
+ {
+ int pInvokeResult = PInvoke.WriteNamedWaveformWDT(this._handle, Waveform_Name, Samples_To_Write, Data_Layout, Data);
+ PInvoke.TestForError(this._handle, pInvokeResult);
+ return pInvokeResult;
+ }
+
+ ///
+ ///Reads and transfers data from a digital .hws file to onboard memory.
+ ///
+ ///If you specify a Waveform_Name not already allocated on the device, the appropriate amount of onboard memory is allocated (if available), and the data is stored in that new location.
+ ///
+ ///Data is always written to memory starting at the current write position of the waveform. A new waveform's write position is the start of the allocated memory. Calling this function moves the next write position to the end of the data just written. Thus, subsequent calls to this function append data to the end of previously written data. You can manually change the write position by calling niHSDIO_SetNamedWaveformNextWritePosition. If you try to write past the end of the allocated space, NI-HSDIO returns an error.
+ ///
+ ///Waveforms are stored contiguously in onboard memory. You cannot resize an existing named waveform. Instead, delete the existing waveform using niHSDIO_DeleteNamedWaveform and then recreate it with the new size using the same name.
+ ///
+ ///This function calls niHSDIO_CommitDynamic--all pending attributes are committed to hardware.
+ ///
+ ///
+ ///
+ ///
+ ///Specifies a string representing the name to associate with the allocated waveform memory.
+ ///
+ ///
+ ///Specifies the path and file name of the digital .hws file to open. The .hws extension is typically used for .hws files, although using this extension is optional.
+ ///
+ ///
+ ///Controls how the sample rate is computed.
+ ///
+ ///Setting this value to TRUE computes the generation rate from the WDT value. If the sample rate has been configured using niHSDIO_ConfigureSampleClock function, useRateFromWaveform overrides the sample rate.
+ ///
+ ///
+ ///Returns the number of samples contained in the waveform.
+ ///
+ ///
+ ///Reports the status of this operation. To obtain a text description of the status code, call niHSDIO_error_message. To obtain additional information concerning the error condition, use niHSDIO_GetError and niHSDIO_ClearError.
+ ///
+ ///The general meaning of the status code is as follows:
+ ///
+ ///Value Meaning
+ ///-------------------------------
+ ///0 Success
+ ///Positive Values Warnings
+ ///Negative Values Errors
+ ///
+ ///
+ public int WriteNamedWaveformFromFileHWS(string Waveform_Name, string File_Path, bool Use_Rate_From_Waveform, out int Waveform_Size)
+ {
+ int pInvokeResult = PInvoke.WriteNamedWaveformFromFileHWS(this._handle, Waveform_Name, File_Path, System.Convert.ToUInt16(Use_Rate_From_Waveform), out Waveform_Size);
+ PInvoke.TestForError(this._handle, pInvokeResult);
+ return pInvokeResult;
+ }
+
+ ///
+ ///Sets the idle state for a dynamic generation operation. The idle state may be active in a variety of conditions:
+ ///
+ ///- The generation operation completes normally.
+ ///- The generation operation pauses from an active Pause trigger.
+ ///- The generation operation terminates due to an underflow error.
+ ///
+ ///Valid Syntax:
+ ///
+ ///The order of channelList determines the order of the pattern string. For example, the following two examples are equivalent:
+ ///
+ ///niHSDIO_ConfigureIdleState(vi, "19-0", "0000 0XXX XX11 111Z ZZZZ");
+ ///
+ ///niHSDIO_ConfigureIdleState(vi, "0-19", "ZZZZ Z111 11XX XXX0 0000");
+ ///
+ ///Refer to Initial and Idle States in the NI Digital Waveform Generator/Analyzer Help for more information.
+ ///
+ ///
+ ///Specifies which channels will have their idle value set using the Idle_State string. The order of channels in Channel_List determines the order of Idle_State.
+ ///
+ ///
+ ///Describes the idle state of a dynamic generation operation. This expression is composed of characters:
+ ///
+ ///- 'X' or 'x': keeps the previous value
+ ///- '1': sets the channel to logic high
+ ///- '0': sets the channel to logic low
+ ///- 'Z' or 'z': disables the channel (sets it to high-impedance)
+ ///
+ ///The leftmost character in the expression corresponds to the first channel in Channel_List. The number of characters in pattern must equal the number of channels specified in Channel_List or an error is returned.
+ ///
+ ///The default state of a channel is to keep the previous value.
+ ///
+ ///
+ ///
+ ///Reports the status of this operation. To obtain a text description of the status code, call niHSDIO_error_message. To obtain additional information concerning the error condition, use niHSDIO_GetError and niHSDIO_ClearError.
+ ///
+ ///The general meaning of the status code is as follows:
+ ///
+ ///Value Meaning
+ ///-------------------------------
+ ///0 Success
+ ///Positive Values Warnings
+ ///Negative Values Errors
+ ///
+ ///
+ public int ConfigureIdleState(string Channel_List, string Idle_State)
+ {
+ int pInvokeResult = PInvoke.ConfigureIdleState(this._handle, Channel_List, Idle_State);
+ PInvoke.TestForError(this._handle, pInvokeResult);
+ return pInvokeResult;
+ }
+
+ ///
+ ///Sets the idle state for a dynamic generation operation. The idle state may be active in a variety of conditions:
+ ///
+ ///- The generation operation completes normally
+ ///- The generation operation pauses from an active Pause trigger
+ ///- The generation operation terminates due to an underflow error
+ ///
+ ///Unlike niHSDIO_ConfigureIdleState, which uses a string, this function uses a binary format to represent only logic high and low. If you require more choices for your idle state, use the niHSDIO_ConfigureIdleState function.
+ ///
+ ///Refer to the Initial and Idle States topic in the NI Digital Waveform Generator/Analyzer Help for more information.
+ ///
+ ///
+ ///Bit mask representing the idle state. High is specified with a 1, and low is specified with a 0.
+ ///
+ ///
+ ///Reports the status of this operation. To obtain a text description of the status code, call niHSDIO_error_message. To obtain additional information concerning the error condition, use niHSDIO_GetError and niHSDIO_ClearError.
+ ///
+ ///The general meaning of the status code is as follows:
+ ///
+ ///Value Meaning
+ ///-------------------------------
+ ///0 Success
+ ///Positive Values Warnings
+ ///Negative Values Errors
+ ///
+ ///
+ public int ConfigureIdleStateU32(uint Idle_State)
+ {
+ int pInvokeResult = PInvoke.ConfigureIdleStateU32(this._handle, Idle_State);
+ PInvoke.TestForError(this._handle, pInvokeResult);
+ return pInvokeResult;
+ }
+
+ ///
+ ///Sets the initial state for a dynamic generation operation. The initial state of each channel is driven after the session is initiated using niHSDIO_Initiate. Channels remain unchanged until the first waveform sample is generated.
+ ///
+ ///The order of Channel_List determines the order of the pattern string. For example, the following two examples are equivalent:
+ ///
+ ///- niHSDIO_ConfigureInitialState (vi, "19-0", "0000 0XXX XX11 111Z ZZZZ");
+ ///
+ ///- niHSDIO_ConfigureInitialState (vi, "0-19", "ZZZZ Z111 11XX XXX0 0000");
+ ///
+ ///Refer to the Initial and Idle States topic in the NI Digital Waveform Generator/Analyzer Help for more information.
+ ///
+ ///
+ ///Specifies which channels will have their initial value set using the Initial_State string. The order of channels in the list determines the order of the Initial_State string.
+ ///
+ ///
+ ///This string expression describes the initial state of a dynamic generation operation. This expression is composed of characters:
+ ///
+ ///- 'X' or 'x': keeps the previous value
+ ///- '1': sets the channel to logic high
+ ///- '0': sets the channel to logic low
+ ///- 'Z' or 'z': disables the channel or sets it to high-impedance
+ ///
+ ///The leftmost character in the expression corresponds to the first channel in channelList. The number of characters in pattern must equal the number of channels specified in channelList or an error is returned.
+ ///
+ ///The default state of a channel is to keep the previous value.
+ ///
+ ///
+ ///
+ ///Reports the status of this operation. To obtain a text description of the status code, call niHSDIO_error_message. To obtain additional information concerning the error condition, use niHSDIO_GetError and niHSDIO_ClearError.
+ ///
+ ///The general meaning of the status code is as follows:
+ ///
+ ///Value Meaning
+ ///-------------------------------
+ ///0 Success
+ ///Positive Values Warnings
+ ///Negative Values Errors
+ ///
+ ///
+ public int ConfigureInitialState(string Channel_List, string Initial_State)
+ {
+ int pInvokeResult = PInvoke.ConfigureInitialState(this._handle, Channel_List, Initial_State);
+ PInvoke.TestForError(this._handle, pInvokeResult);
+ return pInvokeResult;
+ }
+
+ ///
+ ///Sets the initial state for a dynamic generation operation. The initial state of each channel is driven after the session is initiated using niHSDIO_Initiate. Channels remain unchanged until the first waveform sample is generated.
+ ///
+ ///Unlike niHSDIO_ConfigureInitialState which uses a string, this function uses a binary format to represent only logic high and low. If you require more choices for your initial state, use the niHSDIO_ConfigureInitialState function.
+ ///
+ ///
+ ///
+ ///Bit mask representing the initial state. High is specified with a 1, and low is specified with a 0.
+ ///
+ ///
+ ///Reports the status of this operation. To obtain a text description of the status code, call niHSDIO_error_message. To obtain additional information concerning the error condition, use niHSDIO_GetError and niHSDIO_ClearError.
+ ///
+ ///The general meaning of the status code is as follows:
+ ///
+ ///Value Meaning
+ ///-------------------------------
+ ///0 Success
+ ///Positive Values Warnings
+ ///Negative Values Errors
+ ///
+ ///
+ public int ConfigureInitialStateU32(uint Initial_State)
+ {
+ int pInvokeResult = PInvoke.ConfigureInitialStateU32(this._handle, Initial_State);
+ PInvoke.TestForError(this._handle, pInvokeResult);
+ return pInvokeResult;
+ }
+
+ ///
+ ///Specifies the number of times to generate a waveform or whether to generate it continuously. This function is only valid when the Generation_Mode parameter of niHSDIO_ConfigureGenerationMode is set to NIHSDIO_VAL_WAVEFORM.
+ ///
+ ///
+ ///Specifies the repeat mode to configure:
+ ///
+ ///Defined Values:
+ ///
+ ///- NIHSDIO_VAL_FINITE - Calling niHSDIO_Initiate generates the named waveform a finite number of times. The number of times is specified by the Repeat_Count parameter.
+ ///
+ ///- NIHSDIO_VAL_CONTINUOUS - Calling niHSDIO_Initiate generates the named waveform continuously (until niHSDIO_Abort function is called). Repeat_Count is ignored.
+ ///
+ ///
+ ///
+ ///Specifies the number of times to generate the waveform. This parameter is ignored if Repeat_Mode is NIHSDIO_VAL_CONTINUOUS.
+ ///
+ ///
+ ///Reports the status of this operation. To obtain a text description of the status code, call niHSDIO_error_message. To obtain additional information concerning the error condition, use niHSDIO_GetError and niHSDIO_ClearError.
+ ///
+ ///The general meaning of the status code is as follows:
+ ///
+ ///Value Meaning
+ ///-------------------------------
+ ///0 Success
+ ///Positive Values Warnings
+ ///Negative Values Errors
+ ///
+ ///
+ public int ConfigureGenerationRepeat(int Repeat_Mode, int Repeat_Count)
+ {
+ int pInvokeResult = PInvoke.ConfigureGenerationRepeat(this._handle, Repeat_Mode, Repeat_Count);
+ PInvoke.TestForError(this._handle, pInvokeResult);
+ return pInvokeResult;
+ }
+
+ ///
+ ///Sets the waveform to be generated upon a call to niHSDIO_Initiate when NIHSDIO_ATTR_GENERATION_MODE equals NIHSDIO_VAL_WAVEFORM. This function need only be called if multiple waveforms are present in onboard memory (refer to NIHSDIO_ATTR_WAVEFORM_TO_GENERATE for more information).
+ ///
+ ///
+ ///Specifies which waveform to generate upon calling niHSDIO_Initiate.
+ ///
+ ///
+ ///Reports the status of this operation. To obtain a text description of the status code, call niHSDIO_error_message. To obtain additional information concerning the error condition, use niHSDIO_GetError and niHSDIO_ClearError.
+ ///
+ ///The general meaning of the status code is as follows:
+ ///
+ ///Value Meaning
+ ///-------------------------------
+ ///0 Success
+ ///Positive Values Warnings
+ ///Negative Values Errors
+ ///
+ ///
+ public int ConfigureWaveformToGenerate(string Waveform_Name)
+ {
+ int pInvokeResult = PInvoke.ConfigureWaveformToGenerate(this._handle, Waveform_Name);
+ PInvoke.TestForError(this._handle, pInvokeResult);
+ return pInvokeResult;
+ }
+
+ ///
+ ///Reserves waveform space in onboard memory and associates a waveform name with it. Individual waveforms are stored contiguously in onboard memory.
+ ///
+ ///NOTES:
+ ///- niHSDIO_AllocateNamedWaveform sets aside onboard memory space and associates a string name with that space. The name given to the waveform is the same name used in the write named waveform functions, as well as the name used in scripts.
+ ///
+ ///- If not enough space is available to accommodate a waveform of size sizeInSamples, an error is returned and no memory space is created.
+ ///
+ ///- This function does not change any data on the device itself, but rather adds the named reference in software only. Use the write named waveform functions to fill the onboard memory with waveform data to be generated.
+ ///
+ ///
+ ///
+ ///
+ ///Specifies a string representing the name to associate with the allocated waveform memory.
+ ///
+ ///
+ ///Specifies the number of samples to allocate for the named waveform.
+ ///
+ ///The number of bits in the allocated samples differs depending on the device you are using. Refer to your device documentation for more information.
+ ///
+ ///
+ ///
+ ///Reports the status of this operation. To obtain a text description of the status code, call niHSDIO_error_message. To obtain additional information concerning the error condition, use niHSDIO_GetError and niHSDIO_ClearError.
+ ///
+ ///The general meaning of the status code is as follows:
+ ///
+ ///Value Meaning
+ ///-------------------------------
+ ///0 Success
+ ///Positive Values Warnings
+ ///Negative Values Errors
+ ///
+ ///
+ public int AllocateNamedWaveform(string Waveform_Name, int Size_In_Samples)
+ {
+ int pInvokeResult = PInvoke.AllocateNamedWaveform(this._handle, Waveform_Name, Size_In_Samples);
+ PInvoke.TestForError(this._handle, pInvokeResult);
+ return pInvokeResult;
+ }
+
+ ///
+ ///Modifies where within a named waveform to next write data. Write Named Waveform functions always begins writing at the current write position. Existing data in the waveform is overwritten.
+ ///
+ ///The "position" and "offset" parameters are used together to determine where the next write position will be. The "position" parameter describes an absolute (NIHSDIO_VAL_START_OF_WAVEFORM) or relative (NIHSDIO_VAL_CURRENT_READ_POSITION) move. The "offset" is the number of samples to shift the next write position. You must always set the write position at a position that is a multiple of 32 samples for the NI 654x/655x devices or a multiple of 64 samples for the NI 656x devices (128 samples if the NI 656x is in DDR mode).
+ ///
+ ///Examples of combinations of "position" and "offset"
+ ///-Position: NIHSDIO_VAL_START_OF_WAVEFORM
+ ///-Offset: 0
+ ///-Effect: Write location becomes the start of waveform
+ ///
+ ///-Position: NIHSDIO_VAL_START_OF_WAVEFORM
+ ///-Offset: 5
+ ///-Effect: Write location becomes the sixth sample in waveform
+ ///
+ ///-Position: NIHSDIO_VAL_START_OF_WAVEFORM
+ ///-Offset: -1
+ ///-Effect: ERROR-- The device would try to place the write position before start of waveform.
+ ///
+ ///-Position: NIHSDIO_VAL_CURRENT_READ_POSITION
+ ///-Offset: 0
+ ///-Effect: No effect - leaves next write position unchanged
+ ///
+ ///-Position: NIHSDIO_VAL_CURRENT_POSITION
+ ///-Offset: 10
+ ///-Effect: Shift write position 10 samples ahead from current write location. This position setting is only valid if the current write position plus this offset is in the waveform.
+ ///
+ ///-Position: NIHSDIO_VAL_CURRENT_POSITION
+ ///-Offset: -10
+ ///-Effect: Shift write position 10 samples back from current location. This position setting is only valid if the current write position is greater than 10.
+ ///
+ ///The write position is moved to the end of the most recently written data after each call to a Write Named Waveform function. Thus you do not need to explicitly call niHSDIO_SetNamedWaveformNextWritePosition.
+ ///
+ ///Attempting to set the write position past the end of the allocated space results in an error.
+ ///
+ ///
+ ///
+ ///Specifies a string representing the name to associate with the allocated waveform memory.
+ ///
+ ///
+ ///Specifies where to place the write position (in conjunction with offset):
+ ///
+ ///Defined Values:
+ ///
+ ///- NIHSDIO_VAL_START_OF_WAVEFORM - Offset is relative to the beginning of the waveform.
+ ///- NIHSDIO_VAL_CURRENT_POSITION - Offset is relative to the current write position in the waveform.
+ ///
+ ///
+ ///
+ ///Specifies the write position of the name waveform in conjunction with the mode attribute. Offset is in samples.
+ ///
+ ///
+ ///Reports the status of this operation. To obtain a text description of the status code, call niHSDIO_error_message. To obtain additional information concerning the error condition, use niHSDIO_GetError and niHSDIO_ClearError.
+ ///
+ ///The general meaning of the status code is as follows:
+ ///
+ ///Value Meaning
+ ///-------------------------------
+ ///0 Success
+ ///Positive Values Warnings
+ ///Negative Values Errors
+ ///
+ ///
+ public int SetNamedWaveformNextWritePosition(string Waveform_Name, int Position, int Offset)
+ {
+ int pInvokeResult = PInvoke.SetNamedWaveformNextWritePosition(this._handle, Waveform_Name, Position, Offset);
+ PInvoke.TestForError(this._handle, pInvokeResult);
+ return pInvokeResult;
+ }
+
+ ///
+ ///Frees a named waveform space in onboard memory.
+ ///
+ ///NOTE: This function releases onboard memory space previously allocated by either the niHSDIO_AllocateNamedWaveform or niHSDIO_WriteNamedWaveform functions. Any future reference to the deleted waveform results in an error. However, previously written scripts that still reference the deleted waveform do not generate an error at initiation.
+ ///
+ ///An error is generated if the waveform name is not allocated in onboard memory.
+ ///
+ ///
+ ///
+ ///
+ ///Specifies the name of the waveform to delete.
+ ///
+ ///
+ ///
+ ///Reports the status of this operation. To obtain a text description of the status code, call niHSDIO_error_message. To obtain additional information concerning the error condition, use niHSDIO_GetError and niHSDIO_ClearError.
+ ///
+ ///The general meaning of the status code is as follows:
+ ///
+ ///Value Meaning
+ ///-------------------------------
+ ///0 Success
+ ///Positive Values Warnings
+ ///Negative Values Errors
+ ///
+ ///
+ public int DeleteNamedWaveform(string Waveform_Name)
+ {
+ int pInvokeResult = PInvoke.DeleteNamedWaveform(this._handle, Waveform_Name);
+ PInvoke.TestForError(this._handle, pInvokeResult);
+ return pInvokeResult;
+ }
+
+ ///
+ ///Configures whether to generate the waveform specified in NIHSDIO_ATTR_WAVEFORM_TO_GENERATE or the script specified in NIHSDIO_ATTR_SCRIPT_TO_GENERATE upon calling niHSDIO_Initiate.
+ ///
+ ///
+ ///Specifies the generation mode to configure.
+ ///
+ ///Defined Values:
+ ///
+ ///- NIHSDIO_VAL_WAVEFORM - Calling niHSDIO_Initiate generates the named waveform represented by NIHSDIO_ATTR_WAVEFORM_TO_GENERATE.
+ ///- NIHSDIO_VAL_SCRIPTED - Calling niHSDIO_Initiate generates the script represented by NIHSDIO_ATTR_SCRIPT_TO_GENERATE.
+ ///
+ ///
+ ///
+ ///Reports the status of this operation. To obtain a text description of the status code, call niHSDIO_error_message. To obtain additional information concerning the error condition, use niHSDIO_GetError and niHSDIO_ClearError.
+ ///
+ ///The general meaning of the status code is as follows:
+ ///
+ ///Value Meaning
+ ///-------------------------------
+ ///0 Success
+ ///Positive Values Warnings
+ ///Negative Values Errors
+ ///
+ ///
+ public int ConfigureGenerationMode(int Generation_Mode)
+ {
+ int pInvokeResult = PInvoke.ConfigureGenerationMode(this._handle, Generation_Mode);
+ PInvoke.TestForError(this._handle, pInvokeResult);
+ return pInvokeResult;
+ }
+
+ ///
+ ///Writes a string containing scripts that governs the generation of waveforms. If this function is called repeatedly, previously written scripts with unique names remain loaded. Previously written scripts with identical names to those being written are replaced.
+ ///
+ ///If multiple scripts are loaded when niHSDIO_Initiate is called, then one of the scripts must be designated as the script to generate by setting NIHSDIO_ATTR_SCRIPT_TO_GENERATE to the desired script name. If only one script is in memory, then there is no need to designate the script to generate. All waveforms referenced in the scripts must be written before the script is written.
+ ///
+ ///An error is returned if the script uses incorrect syntax. This function calls niHSDIO_CommitDynamic. All pending attributes are committed to hardware.
+ ///
+ ///
+ ///Specifies a string containing a syntactically correct script.
+ ///
+ ///
+ ///Reports the status of this operation. To obtain a text description of the status code, call niHSDIO_error_message. To obtain additional information concerning the error condition, use niHSDIO_GetError and niHSDIO_ClearError.
+ ///
+ ///The general meaning of the status code is as follows:
+ ///
+ ///Value Meaning
+ ///-------------------------------
+ ///0 Success
+ ///Positive Values Warnings
+ ///Negative Values Errors
+ ///
+ ///
+ public int WriteScript(string Script)
+ {
+ int pInvokeResult = PInvoke.WriteScript(this._handle, Script);
+ PInvoke.TestForError(this._handle, pInvokeResult);
+ return pInvokeResult;
+ }
+
+ ///
+ ///Sets the script to be generated upon a call to the niHSDIO_Initiate function when NIHSDIO_ATTR_GENERATION_MODE is set to NIHSDIO_VAL_SCRIPTED. If there are multiple scripts loaded when niHSDIO_Initiate is called, one script must be designated as the script to generate or NI-HSDIO returns an error. You only need to call this function if multiple scripts are present in onboard memory (refer to NIHSDIO_ATTR_SCRIPT_TO_GENERATE for more information).
+ ///
+ ///
+ ///Specifies which script to generate after calling niHSDIO_Initiate.
+ ///
+ ///
+ ///
+ ///Reports the status of this operation. To obtain a text description of the status code, call niHSDIO_error_message. To obtain additional information concerning the error condition, use niHSDIO_GetError and niHSDIO_ClearError.
+ ///
+ ///The general meaning of the status code is as follows:
+ ///
+ ///Value Meaning
+ ///-------------------------------
+ ///0 Success
+ ///Positive Values Warnings
+ ///Negative Values Errors
+ ///
+ ///
+ public int ConfigureScriptToGenerate(string Script_Name)
+ {
+ int pInvokeResult = PInvoke.ConfigureScriptToGenerate(this._handle, Script_Name);
+ PInvoke.TestForError(this._handle, pInvokeResult);
+ return pInvokeResult;
+ }
+
+ ///
+ ///Configures the Sample clock. This function allows you to specify the clock source and rate for the Sample clock.
+ ///
+ ///If Clock_Source is set to NIHSDIO_VAL_ON_BOARD_CLOCK_STR, NI-HSDIO coerces the rate to a value that is supported by the hardware. Use niHSDIO_GetAttributeViReal64 to get the value for NIHSDIO_ATTR_SAMPLE_CLOCK_RATE to see to what value NI-HSDIO has coerced the Sample clock rate.
+ ///
+ ///Clock_Source can be set to NIHSDIO_VAL_STROBE_STR for acquisition only.
+ ///
+ ///
+ ///
+ ///Specifies the Sample clock source. Refer to NIHSDIO_ATTR_SAMPLE_CLOCK_SOURCE for details.
+ ///
+ ///Defined Values:
+ ///
+ ///-NIHSDIO_VAL_ON_BOARD_CLOCK_STR - The device uses the On Board Clock as the Sample clock source.
+ ///-NIHSDIO_VAL_STROBE_STR - The device uses the signal present on the STROBE channel as the Sample clock source. This choice is only valid for acquisition operations.
+ ///-NIHSDIO_VAL_CLK_IN_STR - The device uses the signal present on the front panel CLK IN SMB jack connector as the Sample clock source.
+ ///-NIHSDIO_VAL_PXI_STAR_STR - The device uses the signal present on the PXI_STAR line as the Sample clock source. This choice is valid for devices in slots that support PXI_STAR.
+ ///
+ ///
+ ///Specifies the Sample clock rate, expressed in Hz. You must set this property even when you supply an external clock because NI-HSDIO uses this property for a number of reasons, including optimal error checking and certain pulse width selections.
+ ///
+ ///
+ ///Reports the status of this operation. To obtain a text description of the status code, call niHSDIO_error_message. To obtain additional information concerning the error condition, use niHSDIO_GetError and niHSDIO_ClearError.
+ ///
+ ///The general meaning of the status code is as follows:
+ ///
+ ///Value Meaning
+ ///-------------------------------
+ ///0 Success
+ ///Positive Values Warnings
+ ///Negative Values Errors
+ ///
+ ///
+ public int ConfigureSampleClock(string Clock_Source, double Clock_Rate)
+ {
+ int pInvokeResult = PInvoke.ConfigureSampleClock(this._handle, Clock_Source, Clock_Rate);
+ PInvoke.TestForError(this._handle, pInvokeResult);
+ return pInvokeResult;
+ }
+
+ ///
+ ///Sets up channels to be clocked in various ways by the sample clock edges. You have three options for data position: rising edge, falling edge, or delayed.
+ ///
+ ///
+ ///Identifies channels to apply settings. Use "" or VI_NULL to specify all channels.
+ ///
+ ///
+ ///Specifies which edge of the Sample clock signal is used to time the operation. You can also configure the device to generate data at a configurable delay past each rising edge of the Sample clock.
+ ///
+ ///Defined Values
+ ///
+ ///NIHSDIO_VAL_SAMPLE_CLOCK_RISING_EDGE - The device samples or generates data on the rising edge of the Sample clock.
+ ///NIHSDIO_VAL_SAMPLE_CLOCK_FALLING_EDGE - The device samples or generates data on the falling edge of the Sample clock.
+ ///NIHSDIO_VAL_DELAY_FROM_SAMPLE_CLOCK_RISING_EDGE - The device samples or generates data with delay from rising edge of the Sample clock. Specify the delay using NIHSDIO_ATTR_DATA_POSITION_DELAY.
+ ///
+ ///NOTES:
+ ///
+ ///NIHSDIO_VAL_DELAY_FROM_SAMPLE_CLOCK_RISING_EDGE has more jitter than the rising or falling edge values.
+ ///
+ ///Certain devices have sample clock frequency limitations when a custom delay is used. Refer to the device documentation for details.
+ ///
+ ///To configure a delay on NI 656x devices,you must delay all channels on the device. NI-HSDIO returns an error if you apply a delay to only a partial channel list.
+ ///
+ ///Default Value: NIHSDIO_VAL_SAMPLE_CLOCK_RISING_EDGE
+ ///
+ ///
+ ///Reports the status of this operation. To obtain a text description of the status code, call niHSDIO_error_message. To obtain additional information concerning the error condition, use niHSDIO_GetError and niHSDIO_ClearError.
+ ///
+ ///The general meaning of the status code is as follows:
+ ///
+ ///Value Meaning
+ ///-------------------------------
+ ///0 Success
+ ///Positive Values Warnings
+ ///Negative Values Errors
+ ///
+ ///
+ public int ConfigureDataPosition(string Channel_List, int Position)
+ {
+ int pInvokeResult = PInvoke.ConfigureDataPosition(this._handle, Channel_List, Position);
+ PInvoke.TestForError(this._handle, pInvokeResult);
+ return pInvokeResult;
+ }
+
+ ///
+ ///Sets up the data delay with respect to the Sample clock.
+ ///
+ ///NOTE: To configure a delay on NI 656x devices, you must delay all channels on the device. NI-HSDIO returns an error if you apply a delay to only a partial channel list.
+ ///
+ ///
+ ///Identifies channels to apply settings. Use "" or VI_NULL to specify all channels.
+ ///
+ ///
+ ///Specifies the delay after the Sample clock rising edge when the device generates or acquires a new data sample. Data delay is expressed as a fraction of the clock period, that is, a fraction of 1/NIHSDIO_ATTR_SAMPLE_CLOCK_RATE. All the channels in the session that use delayed Sample clock to position data must have the same delay value.
+ ///
+ ///
+ ///
+ ///
+ ///Reports the status of this operation. To obtain a text description of the status code, call niHSDIO_error_message. To obtain additional information concerning the error condition, use niHSDIO_GetError and niHSDIO_ClearError.
+ ///
+ ///The general meaning of the status code is as follows:
+ ///
+ ///Value Meaning
+ ///-------------------------------
+ ///0 Success
+ ///Positive Values Warnings
+ ///Negative Values Errors
+ ///
+ ///
+ public int ConfigureDataPositionDelay(string Channel_List, double Delay)
+ {
+ int pInvokeResult = PInvoke.ConfigureDataPositionDelay(this._handle, Channel_List, Delay);
+ PInvoke.TestForError(this._handle, pInvokeResult);
+ return pInvokeResult;
+ }
+
+ ///
+ ///Configures the Reference clock. Use this function when you are using the On Board Clock as a Sample clock, and you want the Sample clock to be phase-locked to a Reference signal. Phase-locking the Sample clock to a Reference clock prevents the Sample clock from "drifting" relative to the Reference clock.
+ ///
+ ///
+ ///Specifies the PLL reference clock source. Refer to NIHSDIO_ATTR_REF_CLOCK_SOURCE for details.
+ ///
+ ///Defined Values:
+ ///
+ ///-NIHSDIO_VAL_NONE_STR - The device will not use a Reference clock.
+ ///-NIHSDIO_VAL_CLK_IN_STR - The device uses the signal present on the front panel CLK IN SMB jack connector as the Reference clock source.
+ ///-NIHSDIO_VAL_PXI_CLK10_STR - The device uses the 10 MHz PXI backplane clock as the Reference clock source. This source is only available for PXI devices.
+ ///-NIHSDIO_VAL_RTSI7_STR - The device uses the signal on RTSI 7 as the Reference clock source. This source is only available for PCI devices.
+ ///
+ ///
+ ///Specifies the Reference clock rate, expressed in Hz.
+ ///
+ ///Defined Values:
+ ///
+ ///Refer to NIHSDIO_ATTR_REF_CLOCK_RATE for details.
+ ///
+ ///Default Value: 10000000
+ ///
+ ///
+ ///Reports the status of this operation. To obtain a text description of the status code, call niHSDIO_error_message. To obtain additional information concerning the error condition, use niHSDIO_GetError and niHSDIO_ClearError.
+ ///
+ ///The general meaning of the status code is as follows:
+ ///
+ ///Value Meaning
+ ///-------------------------------
+ ///0 Success
+ ///Positive Values Warnings
+ ///Negative Values Errors
+ ///
+ ///
+ public int ConfigureRefClock(string Clock_Source, double Clock_Rate)
+ {
+ int pInvokeResult = PInvoke.ConfigureRefClock(this._handle, Clock_Source, Clock_Rate);
+ PInvoke.TestForError(this._handle, pInvokeResult);
+ return pInvokeResult;
+ }
+
+ ///
+ ///Delays the Sample clock relative to the Reference clock. Use this function to align the Sample clock of your device to the Sample clock of another device in your system.
+ ///
+ ///Only call this function after your session is committed. The effect of this function is immediate.
+ ///
+ ///This function generates an error if NIHSDIO_ATTR_REF_CLOCK_SOURCE is set to NIHSDIO_VAL_NONE_STR.
+ ///
+ ///This function can only align the device Sample clock to another Sample clock if the other device is using the same reference clock source.
+ ///
+ ///
+ ///
+ ///
+ ///Specifies the time in seconds to delay the Sample clock. Values range between 0 and the Sample clock period (1/NIHSDIO_ATTR_SAMPLE_CLOCK_RATE).
+ ///
+ ///
+ ///
+ ///Reports the status of this operation. To obtain a text description of the status code, call niHSDIO_error_message. To obtain additional information concerning the error condition, use niHSDIO_GetError and niHSDIO_ClearError.
+ ///
+ ///The general meaning of the status code is as follows:
+ ///
+ ///Value Meaning
+ ///-------------------------------
+ ///0 Success
+ ///Positive Values Warnings
+ ///Negative Values Errors
+ ///
+ ///
+ public int AdjustSampleClockRelativeDelay(double Adjustment_Time)
+ {
+ int pInvokeResult = PInvoke.AdjustSampleClockRelativeDelay(this._handle, Adjustment_Time);
+ PInvoke.TestForError(this._handle, pInvokeResult);
+ return pInvokeResult;
+ }
+
+ ///
+ ///Configures the Start trigger for edge triggering.
+ ///
+ ///
+ ///You may specify any valid source terminal for this trigger. Trigger voltages and positions are only relevant if the source of the trigger is from the front panel connectors.
+ ///
+ ///Defined Values:
+ ///
+ ///Refer to NIHSDIO_ATTR_DIGITAL_EDGE_START_TRIGGER_SOURCE for possible values.
+ ///
+ ///
+ ///Specifies the edge to detect:
+ ///
+ ///Defined Values:
+ ///
+ ///- NIHSDIO_VAL_RISING_EDGE - rising edge trigger
+ ///- NIHSDIO_VAL_FALLING_EDGE - falling edge trigger
+ ///
+ ///
+ ///
+ ///Reports the status of this operation. To obtain a text description of the status code, call niHSDIO_error_message. To obtain additional information concerning the error condition, use niHSDIO_GetError and niHSDIO_ClearError.
+ ///
+ ///The general meaning of the status code is as follows:
+ ///
+ ///Value Meaning
+ ///-------------------------------
+ ///0 Success
+ ///Positive Values Warnings
+ ///Negative Values Errors
+ ///
+ ///
+ public int ConfigureDigitalEdgeStartTrigger(string Source, int Edge)
+ {
+ int pInvokeResult = PInvoke.ConfigureDigitalEdgeStartTrigger(this._handle, Source, Edge);
+ PInvoke.TestForError(this._handle, pInvokeResult);
+ return pInvokeResult;
+ }
+
+ ///
+ ///Configures the start trigger for pattern match triggering. This function is only valid for acquisition operations.
+ ///
+ ///Valid Syntax:
+ ///
+ ///Both of these examples are valid and do the same thing. The order of channelList determines the order of the pattern string.
+ ///
+ ///- niHSDIO_ConfigurePatternMatchStartTrigger (vi, "19-0", "0000 0XXX XX11 1111 1111");
+ ///
+ ///- niHSDIO_ConfigurePatternMatchStartTrigger (vi, "0-19", "1111 1111 11XX XXX0 0000");
+ ///
+ ///NOTE: The logic levels seen by pattern matching are affected by data interpretation.
+ ///
+ ///
+ ///This string specifies which channels will be configured for pattern matching using the pattern string. The order of channels in the list determines the order of the pattern string.
+ ///
+ ///
+ ///This string expression describes the pattern to be matched. This expression is composed of characters:
+ ///
+ ///- 'X' or 'x': ignore the channel
+ ///- '1' : match on a logic 1
+ ///- '0': match on a logic 0
+ ///- 'R' or 'r': match on a rising edge
+ ///- 'F' or 'f': match on a falling edge
+ ///- 'E' or 'e': match on either edge
+ ///
+ ///The first character in the expression corresponds to the first channel in Channel_List. The number of characters in pattern must correspond to the number of channels specified in Channel_List.
+ ///
+ ///
+ ///
+ ///
+ ///Specifies the when the trigger asserts:
+ ///
+ ///Defined Values:
+ ///
+ ///- NIHSDIO_VAL_PATTERN_MATCHES - the trigger activates when the pattern matches
+ ///
+ ///- NIHSDIO_VAL_PATTERN_DOES_NOT_MATCH - the trigger activates when the pattern does not match
+ ///
+ ///
+ ///
+ ///Reports the status of this operation. To obtain a text description of the status code, call niHSDIO_error_message. To obtain additional information concerning the error condition, use niHSDIO_GetError and niHSDIO_ClearError.
+ ///
+ ///The general meaning of the status code is as follows:
+ ///
+ ///Value Meaning
+ ///-------------------------------
+ ///0 Success
+ ///Positive Values Warnings
+ ///Negative Values Errors
+ ///
+ ///
+ public int ConfigurePatternMatchStartTrigger(string Channel_List, string Pattern, int Trigger_When)
+ {
+ int pInvokeResult = PInvoke.ConfigurePatternMatchStartTrigger(this._handle, Channel_List, Pattern, Trigger_When);
+ PInvoke.TestForError(this._handle, pInvokeResult);
+ return pInvokeResult;
+ }
+
+ ///
+ ///Configures the Start trigger for pattern match triggering.
+ ///
+ ///Unlike niHSDIO_ConfigurePatternMatchStartTrigger which uses a string, this function uses a binary format to only represent high and low. If you require more choices for your pattern, use the niHSDIO_ConfigurePatternMatchStartTrigger function.
+ ///
+ ///This function is only valid for acquisition operations.
+ ///
+ ///NOTE: The logic levels seen by pattern matching are affected by data interpretation.
+ ///
+ ///
+ ///This string specifies which channels will be configured for pattern matching using the pattern string. The order of channels in the list determines the order of the pattern string.
+ ///
+ ///
+ ///
+ ///Specifies the binary pattern that activates the pattern match trigger under the conditions specified in Trigger_When.
+ ///
+ ///Bits on channels not specified in Channel_List are ignored.
+ ///
+ ///
+ ///
+ ///Specifies the when the trigger asserts:
+ ///
+ ///Defined Values:
+ ///
+ ///- NIHSDIO_VAL_PATTERN_MATCHES - the trigger activates when the pattern matches
+ ///
+ ///- NIHSDIO_VAL_PATTERN_DOES_NOT_MATCH - the trigger activates when the pattern does not match
+ ///
+ ///
+ ///
+ ///Reports the status of this operation. To obtain a text description of the status code, call niHSDIO_error_message. To obtain additional information concerning the error condition, use niHSDIO_GetError and niHSDIO_ClearError.
+ ///
+ ///The general meaning of the status code is as follows:
+ ///
+ ///Value Meaning
+ ///-------------------------------
+ ///0 Success
+ ///Positive Values Warnings
+ ///Negative Values Errors
+ ///
+ ///
+ public int ConfigurePatternMatchStartTriggerU32(string Channel_List, uint Pattern, int Trigger_When)
+ {
+ int pInvokeResult = PInvoke.ConfigurePatternMatchStartTriggerU32(this._handle, Channel_List, Pattern, Trigger_When);
+ PInvoke.TestForError(this._handle, pInvokeResult);
+ return pInvokeResult;
+ }
+
+ ///
+ ///Configures the Start trigger for software triggering.
+ ///
+ ///
+ ///Refer to niHSDIO_SendSoftwareEdgeTrigger for more information on using the software Start trigger.
+ ///
+ ///
+ ///
+ ///Reports the status of this operation. To obtain a text description of the status code, call niHSDIO_error_message. To obtain additional information concerning the error condition, use niHSDIO_GetError and niHSDIO_ClearError.
+ ///
+ ///The general meaning of the status code is as follows:
+ ///
+ ///Value Meaning
+ ///-------------------------------
+ ///0 Success
+ ///Positive Values Warnings
+ ///Negative Values Errors
+ ///
+ ///
+ public int ConfigureSoftwareStartTrigger()
+ {
+ int pInvokeResult = PInvoke.ConfigureSoftwareStartTrigger(this._handle);
+ PInvoke.TestForError(this._handle, pInvokeResult);
+ return pInvokeResult;
+ }
+
+ ///
+ ///Configures the device to not wait for a Start trigger after the niHSDIO_Initiate function is called. Calling this function is only necessary if you have configured a Start trigger and now want to disable it.
+ ///
+ ///
+ ///Reports the status of this operation. To obtain a text description of the status code, call niHSDIO_error_message. To obtain additional information concerning the error condition, use niHSDIO_GetError and niHSDIO_ClearError.
+ ///
+ ///The general meaning of the status code is as follows:
+ ///
+ ///Value Meaning
+ ///-------------------------------
+ ///0 Success
+ ///Positive Values Warnings
+ ///Negative Values Errors
+ ///
+ ///
+ public int DisableStartTrigger()
+ {
+ int pInvokeResult = PInvoke.DisableStartTrigger(this._handle);
+ PInvoke.TestForError(this._handle, pInvokeResult);
+ return pInvokeResult;
+ }
+
+ ///
+ ///Configures the Reference trigger for edge triggering in an acquisition. If the Reference trigger asserts before all of the pretrigger samples are acquired, then it is ignored. This function is only valid for acquisition operations.
+ ///
+ ///
+ ///You may specify any valid source terminal for this trigger. Trigger voltages and positions are only relevant if the source of the trigger is from the front panel connectors.
+ ///
+ ///Defined Values:
+ ///
+ ///Refer to NIHSDIO_ATTR_DIGITAL_EDGE_REF_TRIGGER_SOURCE for possible values.
+ ///
+ ///
+ ///Specifies the edge to detect.
+ ///
+ ///Defined Values:
+ ///
+ ///- NIHSDIO_VAL_RISING_EDGE - rising edge trigger
+ ///- NIHSDIO_VAL_FALLING_EDGE - falling edge trigger
+ ///
+ ///
+ ///
+ ///Specifies the number of necessary pretrigger samples before the Reference trigger is acknowledged.
+ ///
+ ///Default Value: 500
+ ///
+ ///
+ ///Reports the status of this operation. To obtain a text description of the status code, call niHSDIO_error_message. To obtain additional information concerning the error condition, use niHSDIO_GetError and niHSDIO_ClearError.
+ ///
+ ///The general meaning of the status code is as follows:
+ ///
+ ///Value Meaning
+ ///-------------------------------
+ ///0 Success
+ ///Positive Values Warnings
+ ///Negative Values Errors
+ ///
+ ///
+ public int ConfigureDigitalEdgeRefTrigger(string Source, int Edge, int Pretrigger_Samples)
+ {
+ int pInvokeResult = PInvoke.ConfigureDigitalEdgeRefTrigger(this._handle, Source, Edge, Pretrigger_Samples);
+ PInvoke.TestForError(this._handle, pInvokeResult);
+ return pInvokeResult;
+ }
+
+ ///
+ ///Configures the Reference trigger for pattern match triggering. If the reference trigger asserts before all of the pretrigger samples are acquired, then it is ignored. This function is only valid for acquisition sessions.
+ ///
+ ///Valid Syntax:
+ ///
+ ///Both of these examples are valid and do the same thing. The order of channelList determines the order of the pattern string.
+ ///
+ ///- niHSDIO_ConfigurePatternMatchRefTrigger (vi, "19-0", "0000 0XXX XX11 111Z ZZZZ");
+ ///
+ ///- niHSDIO_ConfigurePatternMatchRefTrigger (vi, "0-19", "ZZZZ Z111 11XX XXX0 0000");
+ ///
+ ///NOTE: The logic levels seen by pattern matching are affected by data interpretation.
+ ///
+ ///
+ ///
+ ///This string specifies which channels are configured for pattern matching using the pattern string. The order of channels in the list determines the order of the pattern string.
+ ///
+ ///
+ ///This string expression describes the pattern to be matched. This expression is composed of characters:
+ ///
+ ///- 'X' or 'x': ignore the channel
+ ///- '1': match on a logic 1
+ ///- '0': match on a logic 0
+ ///- 'R' or 'r': match on a rising edge
+ ///- 'F' or 'f': match on a falling edge
+ ///- 'E' or 'e': match on either edge
+ ///
+ ///The leftmost character in the expression corresponds to the first channel in channelList. The number of characters in pattern must correspond to the number of channels specified in channelList or an error is returned.
+ ///
+ ///
+ ///
+ ///
+ ///Specifies the when the trigger asserts.
+ ///
+ ///Defined Values:
+ ///
+ ///- NIHSDIO_VAL_PATTERN_MATCHES - the trigger activates when the pattern matches
+ ///
+ ///- NIHSDIO_VAL_PATTERN_DOES_NOT_MATCH - the trigger activates when the pattern does not match
+ ///
+ ///
+ ///
+ ///Specifies the number of necessary pretrigger samples before the reference trigger is acknowledged.
+ ///
+ ///Default Value: 500
+ ///
+ ///
+ ///Reports the status of this operation. To obtain a text description of the status code, call niHSDIO_error_message. To obtain additional information concerning the error condition, use niHSDIO_GetError and niHSDIO_ClearError.
+ ///
+ ///The general meaning of the status code is as follows:
+ ///
+ ///Value Meaning
+ ///-------------------------------
+ ///0 Success
+ ///Positive Values Warnings
+ ///Negative Values Errors
+ ///
+ ///
+ public int ConfigurePatternMatchRefTrigger(string Channel_List, string Pattern, int Trigger_When, int Pretrigger_Samples)
+ {
+ int pInvokeResult = PInvoke.ConfigurePatternMatchRefTrigger(this._handle, Channel_List, Pattern, Trigger_When, Pretrigger_Samples);
+ PInvoke.TestForError(this._handle, pInvokeResult);
+ return pInvokeResult;
+ }
+
+ ///
+ ///Configures the Reference trigger for pattern match triggering. If the reference trigger asserts before all of the pretrigger samples are acquired, then it is ignored.
+ ///
+ ///Unlike niHSDIO_ConfigurePatternMatchRefTrigger which uses a string, this function uses a binary format to only represent high and low. If you require more choices for your pattern, use the niHSDIO_ConfigurePatternMatchRefTrigger function.
+ ///
+ ///This function is only valid for acquisition sessions.
+ ///
+ ///NOTE: The logic levels seen by pattern matching are affected by data interpretation.
+ ///
+ ///
+ ///
+ ///This string specifies which channels are configured for pattern matching using the pattern string. The order of channels in the list determines the order of the pattern string.
+ ///
+ ///
+ ///Specifies the binary pattern that activates the pattern match trigger under the conditions specified in Trigger_When.
+ ///
+ ///Bits on channels not specified in Channel_List are ignored.
+ ///
+ ///
+ ///Specifies the when the trigger asserts.
+ ///
+ ///Defined Values:
+ ///
+ ///- NIHSDIO_VAL_PATTERN_MATCHES - the trigger activates when the pattern matches
+ ///
+ ///- NIHSDIO_VAL_PATTERN_DOES_NOT_MATCH - the trigger activates when the pattern does not match
+ ///
+ ///
+ ///
+ ///Specifies the number of necessary pretrigger samples before the reference trigger is acknowledged.
+ ///
+ ///Default Value: 500
+ ///
+ ///
+ ///Reports the status of this operation. To obtain a text description of the status code, call niHSDIO_error_message. To obtain additional information concerning the error condition, use niHSDIO_GetError and niHSDIO_ClearError.
+ ///
+ ///The general meaning of the status code is as follows:
+ ///
+ ///Value Meaning
+ ///-------------------------------
+ ///0 Success
+ ///Positive Values Warnings
+ ///Negative Values Errors
+ ///
+ ///
+ public int ConfigurePatternMatchRefTriggerU32(string Channel_List, uint Pattern, int Trigger_When, int Pretrigger_Samples)
+ {
+ int pInvokeResult = PInvoke.ConfigurePatternMatchRefTriggerU32(this._handle, Channel_List, Pattern, Trigger_When, Pretrigger_Samples);
+ PInvoke.TestForError(this._handle, pInvokeResult);
+ return pInvokeResult;
+ }
+
+ ///
+ ///Configures the reference trigger for software triggering. If the reference trigger asserts before all of the pretrigger samples are acquired, then it is ignored. This function is valid only for acquisition sessions.
+ ///
+ ///Refer to niHSDIO_SendSoftwareEdgeTrigger for more information on the software reference trigger.
+ ///
+ ///
+ ///Specifies the number of necessary pretrigger samples before the reference trigger is acknowledged.
+ ///
+ ///Default Value: 500
+ ///
+ ///
+ ///Reports the status of this operation. To obtain a text description of the status code, call niHSDIO_error_message. To obtain additional information concerning the error condition, use niHSDIO_GetError and niHSDIO_ClearError.
+ ///
+ ///The general meaning of the status code is as follows:
+ ///
+ ///Value Meaning
+ ///-------------------------------
+ ///0 Success
+ ///Positive Values Warnings
+ ///Negative Values Errors
+ ///
+ ///
+ public int ConfigureSoftwareRefTrigger(int Pretrigger_Samples)
+ {
+ int pInvokeResult = PInvoke.ConfigureSoftwareRefTrigger(this._handle, Pretrigger_Samples);
+ PInvoke.TestForError(this._handle, pInvokeResult);
+ return pInvokeResult;
+ }
+
+ ///
+ ///Configures the acquisition operation to have no Reference trigger. Calling this function is only necessary if you have configured a Reference trigger and now want to disable it. This function is valid only for acquisition sessions.
+ ///
+ ///
+ ///Reports the status of this operation. To obtain a text description of the status code, call niHSDIO_error_message. To obtain additional information concerning the error condition, use niHSDIO_GetError and niHSDIO_ClearError.
+ ///
+ ///The general meaning of the status code is as follows:
+ ///
+ ///Value Meaning
+ ///-------------------------------
+ ///0 Success
+ ///Positive Values Warnings
+ ///Negative Values Errors
+ ///
+ ///
+ public int DisableRefTrigger()
+ {
+ int pInvokeResult = PInvoke.DisableRefTrigger(this._handle);
+ PInvoke.TestForError(this._handle, pInvokeResult);
+ return pInvokeResult;
+ }
+
+ ///
+ ///Configures the Advance trigger for edge triggering in an acquisition.
+ ///
+ ///
+ ///You may specify any valid source terminal for this trigger. Trigger voltages and positions are only relevant if the source of the trigger is from the front panel connectors.
+ ///
+ ///Defined Values:
+ ///
+ ///Refer to NIHSDIO_ATTR_DIGITAL_EDGE_ADVANCE_TRIGGER_SOURCE for possible values.
+ ///
+ ///
+ ///Specifies the edge to detect.
+ ///
+ ///Defined Values:
+ ///
+ ///- NIHSDIO_VAL_RISING_EDGE - rising edge trigger
+ ///- NIHSDIO_VAL_FALLING_EDGE - falling edge trigger
+ ///
+ ///
+ ///
+ ///Reports the status of this operation. To obtain a text description of the status code, call niHSDIO_error_message. To obtain additional information concerning the error condition, use niHSDIO_GetError and niHSDIO_ClearError.
+ ///
+ ///The general meaning of the status code is as follows:
+ ///
+ ///Value Meaning
+ ///-------------------------------
+ ///0 Success
+ ///Positive Values Warnings
+ ///Negative Values Errors
+ ///
+ ///
+ public int ConfigureDigitalEdgeAdvanceTrigger(string Source, int Edge)
+ {
+ int pInvokeResult = PInvoke.ConfigureDigitalEdgeAdvanceTrigger(this._handle, Source, Edge);
+ PInvoke.TestForError(this._handle, pInvokeResult);
+ return pInvokeResult;
+ }
+
+ ///
+ ///Configures the Advance trigger for pattern match triggering. This function is only valid for acquisition operations.
+ ///
+ ///Valid Syntax:
+ ///
+ ///Both of these examples are valid and do the same thing. The order of channelList determines the order of the pattern string.
+ ///
+ ///- niHSDIO_ConfigurePatternMatchAdvanceTrigger (vi, "19-0", "0000 0XXX XX11 1111 1111");
+ ///
+ ///- niHSDIO_ConfigurePatternMatchAdvanceTrigger (vi, "0-19", "1111 1111 11XX XXX0 0000");
+ ///
+ ///NOTE: The logic levels seen by pattern matching are affected by data interpretation.
+ ///
+ ///
+ ///This string specifies which channels will be configured for pattern matching using the pattern string. The order of channels in the list determines the order of the pattern string.
+ ///
+ ///
+ ///This string expression describes the pattern to be matched. This expression is composed of characters:
+ ///
+ ///- 'X' or 'x': ignore the channel
+ ///- '1' : match on a logic 1
+ ///- '0': match on a logic 0
+ ///- 'R' or 'r': match on a rising edge
+ ///- 'F' or 'f': match on a falling edge
+ ///- 'E' or 'e': match on either edge
+ ///
+ ///The first character in the expression corresponds to the first channel in Channel_List. The number of characters in pattern must correspond to the number of channels specified in Channel_List.
+ ///
+ ///
+ ///
+ ///
+ ///Specifies the when the trigger asserts:
+ ///
+ ///Defined Values:
+ ///
+ ///- NIHSDIO_VAL_PATTERN_MATCHES - the trigger activates when the pattern matches
+ ///
+ ///- NIHSDIO_VAL_PATTERN_DOES_NOT_MATCH - the trigger activates when the pattern does not match
+ ///
+ ///
+ ///
+ ///Reports the status of this operation. To obtain a text description of the status code, call niHSDIO_error_message. To obtain additional information concerning the error condition, use niHSDIO_GetError and niHSDIO_ClearError.
+ ///
+ ///The general meaning of the status code is as follows:
+ ///
+ ///Value Meaning
+ ///-------------------------------
+ ///0 Success
+ ///Positive Values Warnings
+ ///Negative Values Errors
+ ///
+ ///
+ public int ConfigurePatternMatchAdvanceTrigger(string Channel_List, string Pattern, int Trigger_When)
+ {
+ int pInvokeResult = PInvoke.ConfigurePatternMatchAdvanceTrigger(this._handle, Channel_List, Pattern, Trigger_When);
+ PInvoke.TestForError(this._handle, pInvokeResult);
+ return pInvokeResult;
+ }
+
+ ///
+ ///Configures the Advance trigger for pattern match triggering. This function is only valid for acquisition operations.
+ ///
+ ///Unlike niHSDIO_ConfigurePatternMatchAdvanceTrigger which uses a string, this function uses a binary format to only represent high and low. If you require more choices for your pattern, use the niHSDIO_ConfigurePatternMatchAdvanceTrigger function.
+ ///
+ ///
+ ///NOTE: The logic levels seen by pattern matching are affected by data interpretation.
+ ///
+ ///
+ ///This string specifies which channels will be configured for pattern matching using the pattern string. The order of channels in the list determines the order of the pattern string.
+ ///
+ ///
+ ///Specifies the binary pattern that activates the pattern match trigger under the conditions specified in Trigger_When.
+ ///
+ ///Bits on channels not specified in Channel_List are ignored.
+ ///
+ ///
+ ///
+ ///Specifies the when the trigger asserts:
+ ///
+ ///Defined Values:
+ ///
+ ///- NIHSDIO_VAL_PATTERN_MATCHES - the trigger activates when the pattern matches
+ ///
+ ///- NIHSDIO_VAL_PATTERN_DOES_NOT_MATCH - the trigger activates when the pattern does not match
+ ///
+ ///
+ ///
+ ///Reports the status of this operation. To obtain a text description of the status code, call niHSDIO_error_message. To obtain additional information concerning the error condition, use niHSDIO_GetError and niHSDIO_ClearError.
+ ///
+ ///The general meaning of the status code is as follows:
+ ///
+ ///Value Meaning
+ ///-------------------------------
+ ///0 Success
+ ///Positive Values Warnings
+ ///Negative Values Errors
+ ///
+ ///
+ public int ConfigurePatternMatchAdvanceTriggerU32(string Channel_List, uint Pattern, int Trigger_When)
+ {
+ int pInvokeResult = PInvoke.ConfigurePatternMatchAdvanceTriggerU32(this._handle, Channel_List, Pattern, Trigger_When);
+ PInvoke.TestForError(this._handle, pInvokeResult);
+ return pInvokeResult;
+ }
+
+ ///
+ ///Configures the Advance trigger for software triggering.
+ ///
+ ///
+ ///Refer to niHSDIO_SendSoftwareEdgeTrigger for more information on using the software Advance trigger.
+ ///
+ ///
+ ///
+ ///Reports the status of this operation. To obtain a text description of the status code, call niHSDIO_error_message. To obtain additional information concerning the error condition, use niHSDIO_GetError and niHSDIO_ClearError.
+ ///
+ ///The general meaning of the status code is as follows:
+ ///
+ ///Value Meaning
+ ///-------------------------------
+ ///0 Success
+ ///Positive Values Warnings
+ ///Negative Values Errors
+ ///
+ ///
+ public int ConfigureSoftwareAdvanceTrigger()
+ {
+ int pInvokeResult = PInvoke.ConfigureSoftwareAdvanceTrigger(this._handle);
+ PInvoke.TestForError(this._handle, pInvokeResult);
+ return pInvokeResult;
+ }
+
+ ///
+ ///Configures the acquisition operation to have no Advance trigger. Calling this function is only necessary if you have configured a Advance trigger and now want to disable it. This function is valid only for acquisition sessions.
+ ///
+ ///
+ ///Reports the status of this operation. To obtain a text description of the status code, call niHSDIO_error_message. To obtain additional information concerning the error condition, use niHSDIO_GetError and niHSDIO_ClearError.
+ ///
+ ///The general meaning of the status code is as follows:
+ ///
+ ///Value Meaning
+ ///-------------------------------
+ ///0 Success
+ ///Positive Values Warnings
+ ///Negative Values Errors
+ ///
+ ///
+ public int DisableAdvanceTrigger()
+ {
+ int pInvokeResult = PInvoke.DisableAdvanceTrigger(this._handle);
+ PInvoke.TestForError(this._handle, pInvokeResult);
+ return pInvokeResult;
+ }
+
+ ///
+ ///Configures the Script trigger for edge triggering. This function is only valid for generation sessions that use scripting.
+ ///
+ ///
+ ///Identifies which Script trigger this function configures.
+ ///
+ ///Defined Values:
+ ///
+ ///NIHSDIO_VAL_SCRIPT_TRIGGER0
+ ///NIHSDIO_VAL_SCRIPT_TRIGGER1
+ ///NIHSDIO_VAL_SCRIPT_TRIGGER2
+ ///NIHSDIO_VAL_SCRIPT_TRIGGER3
+ ///
+ ///
+ ///You may specify any valid source terminal for this trigger. Trigger voltages and positions are only relevant if the source of the trigger is from the front panel connectors.
+ ///
+ ///Defined Values:
+ ///
+ ///Refer to NIHSDIO_ATTR_DIGITAL_EDGE_SCRIPT_TRIGGER_SOURCE for possible values.
+ ///
+ ///
+ ///Specifies the edge to detect.
+ ///
+ ///Defined Values:
+ ///
+ ///- NIHSDIO_VAL_RISING_EDGE - rising edge trigger
+ ///- NIHSDIO_VAL_FALLING_EDGE - falling edge trigger
+ ///
+ ///
+ ///
+ ///Reports the status of this operation. To obtain a text description of the status code, call niHSDIO_error_message. To obtain additional information concerning the error condition, use niHSDIO_GetError and niHSDIO_ClearError.
+ ///
+ ///The general meaning of the status code is as follows:
+ ///
+ ///Value Meaning
+ ///-------------------------------
+ ///0 Success
+ ///Positive Values Warnings
+ ///Negative Values Errors
+ ///
+ ///
+ public int ConfigureDigitalEdgeScriptTrigger(string Trigger_ID, string Source, int Edge)
+ {
+ int pInvokeResult = PInvoke.ConfigureDigitalEdgeScriptTrigger(this._handle, Trigger_ID, Source, Edge);
+ PInvoke.TestForError(this._handle, pInvokeResult);
+ return pInvokeResult;
+ }
+
+ ///
+ ///Configures the Script trigger for level triggering. This function is only valid for generation sessions that use scripting.
+ ///
+ ///
+ ///
+ ///Identifies which script trigger this function configures.
+ ///
+ ///Defined Values:
+ ///
+ ///NIHSDIO_VAL_SCRIPT_TRIGGER0
+ ///NIHSDIO_VAL_SCRIPT_TRIGGER1
+ ///NIHSDIO_VAL_SCRIPT_TRIGGER2
+ ///NIHSDIO_VAL_SCRIPT_TRIGGER3
+ ///
+ ///
+ ///You may specify any valid source terminal for this trigger. Trigger voltages and positions are only relevant if the source of the trigger is from the front panel connectors.
+ ///
+ ///Defined Values:
+ ///
+ ///Refer to NIHSDIO_ATTR_DIGITAL_LEVEL_SCRIPT_TRIGGER_SOURCE for possible values.
+ ///
+ ///
+ ///Specifies the active level for the desired trigger.
+ ///
+ ///Defined Values:
+ ///
+ ///- NIHSDIO_VAL_HIGH - trigger is active while its source is high
+ ///
+ ///- NIHSDIO_VAL_LOW - trigger is active while its source is low
+ ///
+ ///
+ ///
+ ///Reports the status of this operation. To obtain a text description of the status code, call niHSDIO_error_message. To obtain additional information concerning the error condition, use niHSDIO_GetError and niHSDIO_ClearError.
+ ///
+ ///The general meaning of the status code is as follows:
+ ///
+ ///Value Meaning
+ ///-------------------------------
+ ///0 Success
+ ///Positive Values Warnings
+ ///Negative Values Errors
+ ///
+ ///
+ public int ConfigureDigitalLevelScriptTrigger(string Trigger_ID, string Source, int Trigger_When)
+ {
+ int pInvokeResult = PInvoke.ConfigureDigitalLevelScriptTrigger(this._handle, Trigger_ID, Source, Trigger_When);
+ PInvoke.TestForError(this._handle, pInvokeResult);
+ return pInvokeResult;
+ }
+
+ ///
+ ///Configures the Script trigger for software triggering. This function is only valid for generation sessions that use scripting.
+ ///
+ ///
+ ///
+ ///Identifies which script trigger this function configures.
+ ///
+ ///Defined Values:
+ ///
+ ///NIHSDIO_VAL_SCRIPT_TRIGGER0
+ ///NIHSDIO_VAL_SCRIPT_TRIGGER1
+ ///NIHSDIO_VAL_SCRIPT_TRIGGER2
+ ///NIHSDIO_VAL_SCRIPT_TRIGGER3
+ ///
+ ///
+ ///Reports the status of this operation. To obtain a text description of the status code, call niHSDIO_error_message. To obtain additional information concerning the error condition, use niHSDIO_GetError and niHSDIO_ClearError.
+ ///
+ ///The general meaning of the status code is as follows:
+ ///
+ ///Value Meaning
+ ///-------------------------------
+ ///0 Success
+ ///Positive Values Warnings
+ ///Negative Values Errors
+ ///
+ ///
+ public int ConfigureSoftwareScriptTrigger(string Trigger_ID)
+ {
+ int pInvokeResult = PInvoke.ConfigureSoftwareScriptTrigger(this._handle, Trigger_ID);
+ PInvoke.TestForError(this._handle, pInvokeResult);
+ return pInvokeResult;
+ }
+
+ ///
+ ///Sets the data operation to not have a Script trigger. Calling this function is only necessary if you have configured a particular Script trigger and now want to disable it. This function is only valid for generation sessions.
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///Identifies which Script trigger this function will configure.
+ ///
+ ///Defined Values:
+ ///
+ ///NIHSDIO_VAL_SCRIPT_TRIGGER0
+ ///NIHSDIO_VAL_SCRIPT_TRIGGER1
+ ///NIHSDIO_VAL_SCRIPT_TRIGGER2
+ ///NIHSDIO_VAL_SCRIPT_TRIGGER3
+ ///
+ ///
+ ///Reports the status of this operation. To obtain a text description of the status code, call niHSDIO_error_message. To obtain additional information concerning the error condition, use niHSDIO_GetError and niHSDIO_ClearError.
+ ///
+ ///The general meaning of the status code is as follows:
+ ///
+ ///Value Meaning
+ ///-------------------------------
+ ///0 Success
+ ///Positive Values Warnings
+ ///Negative Values Errors
+ ///
+ ///
+ public int DisableScriptTrigger(string Trigger_ID)
+ {
+ int pInvokeResult = PInvoke.DisableScriptTrigger(this._handle, Trigger_ID);
+ PInvoke.TestForError(this._handle, pInvokeResult);
+ return pInvokeResult;
+ }
+
+ ///
+ ///Configures the pause trigger for level triggering.
+ ///
+ ///
+ ///
+ ///You may specify any valid source terminal for this trigger. Trigger voltages and positions are only relevant if the source of the trigger is from the front panel connectors.
+ ///
+ ///Defined Values:
+ ///
+ ///Refer to NIHSDIO_ATTR_DIGITAL_LEVEL_PAUSE_TRIGGER_SOURCE for possible values.
+ ///
+ ///
+ ///Specifies the active level for the desired trigger.
+ ///
+ ///Defined Values:
+ ///
+ ///- NIHSDIO_VAL_HIGH - trigger is active while its source is high
+ ///- NIHSDIO_VAL_LOW - trigger is active while its source is low
+ ///
+ ///
+ ///
+ ///Reports the status of this operation. To obtain a text description of the status code, call niHSDIO_error_message. To obtain additional information concerning the error condition, use niHSDIO_GetError and niHSDIO_ClearError.
+ ///
+ ///The general meaning of the status code is as follows:
+ ///
+ ///Value Meaning
+ ///-------------------------------
+ ///0 Success
+ ///Positive Values Warnings
+ ///Negative Values Errors
+ ///
+ ///
+ public int ConfigureDigitalLevelPauseTrigger(string Source, int Trigger_When)
+ {
+ int pInvokeResult = PInvoke.ConfigureDigitalLevelPauseTrigger(this._handle, Source, Trigger_When);
+ PInvoke.TestForError(this._handle, pInvokeResult);
+ return pInvokeResult;
+ }
+
+ ///
+ ///Configures the pause trigger for pattern match triggering. This function is valid only for acquisition sessions.
+ ///
+ ///Valid Syntax:
+ ///
+ ///Both of these examples are valid and do the same thing. The order of channelList determines the order of the pattern string.
+ ///
+ ///- niHSDIO_ConfigurePatternMatchPauseTrigger (vi, "19-0", "0000 0XXX XX11 1111 1111");
+ ///
+ ///- niHSDIO_ConfigurePatternMatchPauseTrigger (vi, "0-19", "1111 1111 11XX XXX0 0000");
+ ///
+ ///NOTE: The values seen by pattern matching is affected by data interpretation.
+ ///
+ ///
+ ///
+ ///This string specifies which channels are configured for pattern matching using the pattern string. The order of channels in the list determines the order of the pattern string. Ex. "0-19" and "19-0" are reverse of one another.
+ ///
+ ///
+ ///This string expression describes the pattern to be matched. This expression is composed of characters:
+ ///
+ ///- 'X' or 'x': ignore the channel
+ ///- '1': match on a logic 1
+ ///- '0': match on a logic 0
+ ///- 'R' or 'r': match on a rising edge
+ ///- 'F' or 'f': match on a falling edge
+ ///- 'E' or 'e': match on either edge
+ ///
+ ///The leftmost character in the expression corresponds to the first channel in channelList. The number of characters in pattern must correspond to the number of channels specified in channelList or an error is returned.
+ ///
+ ///
+ ///
+ ///Specifies the when the trigger asserts.
+ ///
+ ///Defined Values:
+ ///
+ ///- NIHSDIO_VAL_PATTERN_MATCHES - the trigger activates when the pattern matches
+ ///
+ ///- NIHSDIO_VAL_PATTERN_DOES_NOT_MATCH - the trigger activates when the pattern does not match
+ ///
+ ///
+ ///
+ ///Reports the status of this operation. To obtain a text description of the status code, call niHSDIO_error_message. To obtain additional information concerning the error condition, use niHSDIO_GetError and niHSDIO_ClearError.
+ ///
+ ///The general meaning of the status code is as follows:
+ ///
+ ///Value Meaning
+ ///-------------------------------
+ ///0 Success
+ ///Positive Values Warnings
+ ///Negative Values Errors
+ ///
+ ///
+ public int ConfigurePatternMatchPauseTrigger(string Channel_List, string Pattern, int Trigger_When)
+ {
+ int pInvokeResult = PInvoke.ConfigurePatternMatchPauseTrigger(this._handle, Channel_List, Pattern, Trigger_When);
+ PInvoke.TestForError(this._handle, pInvokeResult);
+ return pInvokeResult;
+ }
+
+ ///
+ ///Configures the pause trigger for pattern match triggering. This function is valid only for acquisition sessions.
+ ///
+ ///Unlike niHSDIO_ConfigurePatternMatchPauseTrigger which uses a string, this function uses a binary format to only represent high and low. If you require more choices for your pattern, use the niHSDIO_ConfigurePatternMatchPauseTrigger function.
+ ///
+ ///NOTE: The values seen by pattern matching is affected by data interpretation.
+ ///
+ ///
+ ///
+ ///This string specifies which channels are configured for pattern matching using the pattern string. The order of channels in the list determines the order of the pattern string. Ex. "0-19" and "19-0" are reverse of one another.
+ ///
+ ///
+ ///Specifies the binary pattern that activates the pattern match trigger under the conditions specified in Trigger_When.
+ ///
+ ///Bits on channels not specified in Channel_List are ignored.
+ ///
+ ///
+ ///Specifies the when the trigger asserts.
+ ///
+ ///Defined Values:
+ ///
+ ///- NIHSDIO_VAL_PATTERN_MATCHES - the trigger activates when the pattern matches
+ ///
+ ///- NIHSDIO_VAL_PATTERN_DOES_NOT_MATCH - the trigger activates when the pattern does not match
+ ///
+ ///
+ ///
+ ///Reports the status of this operation. To obtain a text description of the status code, call niHSDIO_error_message. To obtain additional information concerning the error condition, use niHSDIO_GetError and niHSDIO_ClearError.
+ ///
+ ///The general meaning of the status code is as follows:
+ ///
+ ///Value Meaning
+ ///-------------------------------
+ ///0 Success
+ ///Positive Values Warnings
+ ///Negative Values Errors
+ ///
+ ///
+ public int ConfigurePatternMatchPauseTriggerU32(string Channel_List, uint Pattern, int Trigger_When)
+ {
+ int pInvokeResult = PInvoke.ConfigurePatternMatchPauseTriggerU32(this._handle, Channel_List, Pattern, Trigger_When);
+ PInvoke.TestForError(this._handle, pInvokeResult);
+ return pInvokeResult;
+ }
+
+ ///
+ ///Sets the data operation to have no Pause trigger. Calling this function is only necessary if you have configured a Pause trigger and now want to disable it.
+ ///
+ ///
+ ///
+ ///Reports the status of this operation. To obtain a text description of the status code, call niHSDIO_error_message. To obtain additional information concerning the error condition, use niHSDIO_GetError and niHSDIO_ClearError.
+ ///
+ ///The general meaning of the status code is as follows:
+ ///
+ ///Value Meaning
+ ///-------------------------------
+ ///0 Success
+ ///Positive Values Warnings
+ ///Negative Values Errors
+ ///
+ ///
+ public int DisablePauseTrigger()
+ {
+ int pInvokeResult = PInvoke.DisablePauseTrigger(this._handle);
+ PInvoke.TestForError(this._handle, pInvokeResult);
+ return pInvokeResult;
+ }
+
+ ///
+ ///Use this function to force a particular edge-based trigger to occur. This function applies to the Start, Reference, Advance, and Script triggers, and is valid if the particular trigger is configured for edge, pattern match, or software triggering (for edge or pattern match triggers you can use niHSDIO_SendSoftwareEdgeTrigger as a software override).
+ ///
+ ///
+ ///The trigger to assert.
+ ///
+ ///Defined Values:
+ ///
+ ///- NIHSDIO_VAL_START_TRIGGER - Start trigger for dynamic acquisition or generation
+ ///
+ ///- NIHSDIO_VAL_REF_TRIGGER - Reference trigger for dynamic acqusition
+ ///
+ ///- NIHSDIO_VAL_SCRIPT_TRIGGER - Script trigger for dynamic generation
+ ///
+ ///
+ ///
+ ///
+ ///Describes the software trigger. For example, NIHSDIO_VAL_SCRIPT_TRIGGER0 could be the identifier for the Script trigger, or you could have an empty string for the Start and Reference triggers.
+ ///
+ /// - NIHSDIO_VAL_SCRIPT_TRIGGER0
+ /// - NIHSDIO_VAL_SCRIPT_TRIGGER1
+ /// - NIHSDIO_VAL_SCRIPT_TRIGGER2
+ /// - NIHSDIO_VAL_SCRIPT_TRIGGER3
+ /// - "" (empty string) or VI_NULL
+ ///
+ ///
+ ///
+ ///
+ ///Reports the status of this operation. To obtain a text description of the status code, call niHSDIO_error_message. To obtain additional information concerning the error condition, use niHSDIO_GetError and niHSDIO_ClearError.
+ ///
+ ///The general meaning of the status code is as follows:
+ ///
+ ///Value Meaning
+ ///-------------------------------
+ ///0 Success
+ ///Positive Values Warnings
+ ///Negative Values Errors
+ ///
+ ///
+ public int SendSoftwareEdgeTrigger(int Trigger, string Trigger_Identifier)
+ {
+ int pInvokeResult = PInvoke.SendSoftwareEdgeTrigger(this._handle, Trigger, Trigger_Identifier);
+ PInvoke.TestForError(this._handle, pInvokeResult);
+ return pInvokeResult;
+ }
+
+ ///
+ ///Use this function to route signals (clocks, triggers, and events) to the output terminal you specify. Refer to your device documentation for valid signal destinations.
+ ///
+ ///Any routes created within a session persist after the session closes to prevent signal glitching. To unconfigure signal routes created in previous sessions, set the Reset_Instrument parameter in niHSDIO_InitGenerationSession or niHSDIO_InitAcquisitionSession to VI_TRUE or use niHSDIO_reset.
+ ///
+ ///If you export a signal with this function and commit the session, the signal is routed to the output terminal you specify. If you then reconfigure the signal to have a different output terminal, the previous output terminal is tristated after the session is committed. If you change the output terminal to NIHSDIO_VAL_DO_NOT_EXPORT_STR or an empty string when you commit the operation, the previous output terminal is tristated.
+ ///
+ ///
+ ///Signal (clock, trigger, or event) to export.
+ ///
+ ///Defined Values:
+ ///
+ ///- NIHSDIO_VAL_SAMPLE_CLOCK
+ ///- NIHSDIO_VAL_REF_CLOCK
+ ///- NIHSDIO_VAL_START_TRIGGER
+ ///- NIHSDIO_VAL_REF_TRIGGER (dynamic acquisition only)
+ ///- NIHSDIO_VAL_ADVANCE_TRIGGER (dynamic acquisition only)
+ ///- NIHSDIO_VAL_DATA_ACTIVE_EVENT (dynamic generation only)
+ ///- NIHSDIO_VAL_READY_FOR_START_EVENT
+ ///- NIHSDIO_VAL_READY_FOR_ADVANCE_EVENT (dynamic acquisition only)
+ ///- NIHSDIO_VAL_END_OF_RECORD_EVENT (dynamic acquisition only)
+ ///- NIHSDIO_VAL_PAUSE_TRIGGER (dynamic generation only)
+ ///- NIHSDIO_VAL_SCRIPT_TRIGGER (dynamic generation only - requires Signal_Identifier to describe a particular Script trigger)
+ ///- NIHSDIO_VAL_MARKER_EVENT (dynamic generation only - requires Signal_Identifier to describe a particular Marker)
+ ///- NIHSDIO_VAL_ONBOARD_REF_CLOCK PCI devices only) - Calling this function with Signal set to this value sets the
+ ///NIHSDIO_ATTR_EXPORTED_ONBOARD_REF_CLOCK_OUTPUT_TERMINAL attribute
+ ///
+ ///
+ ///
+ ///Describes the signal being exported.
+ ///
+ ///Defined Values:
+ ///
+ /// - NIHSDIO_VAL_SCRIPT_TRIGGER0
+ /// - NIHSDIO_VAL_SCRIPT_TRIGGER1
+ /// - NIHSDIO_VAL_SCRIPT_TRIGGER2
+ /// - NIHSDIO_VAL_SCRIPT_TRIGGER3
+ /// - NIHSDIO_VAL_MARKER_EVENT0
+ /// - NIHSDIO_VAL_MARKER_EVENT1
+ /// - NIHSDIO_VAL_MARKER_EVENT2
+ /// - NIHSDIO_VAL_MARKER_EVENT3
+ /// - "" (empty String) or VI_NULL
+ ///
+ ///
+ ///
+ ///Output terminal where the signal is exported.
+ ///
+ ///Defined Values:
+ ///
+ ///- NIHSDIO_VAL_PFI0_STR - NIHSDIO_VAL_PFI3_STR : PFI connectors
+ ///- NIHSDIO_VAL_PXI_TRIG0_STR - NIHSDIO_VAL_PXI_TRIG7_STR : the PXI trigger backplane
+ ///- NIHSDIO_VAL_CLK_OUT_STR - CLK OUT coaxial connector on the front panel
+ ///- NIHSDIO_VAL_DDC_CLK_OUT_STR - DDC CLK OUT terminal in the Digital Data and Control Connector
+ ///- "" (empty string) or VI_NULL - the signal is not exported
+ ///
+ ///Trigger and event voltages and positions are only relevant if the destination of the event is one of the front panel connectors.
+ ///
+ ///
+ ///
+ ///Reports the status of this operation. To obtain a text description of the status code, call niHSDIO_error_message. To obtain additional information concerning the error condition, use niHSDIO_GetError and niHSDIO_ClearError.
+ ///
+ ///The general meaning of the status code is as follows:
+ ///
+ ///Value Meaning
+ ///-------------------------------
+ ///0 Success
+ ///Positive Values Warnings
+ ///Negative Values Errors
+ ///
+ ///
+ public int ExportSignal(int Signal, string Signal_Identifier, string Output_Terminal)
+ {
+ int pInvokeResult = PInvoke.ExportSignal(this._handle, Signal, Signal_Identifier, Output_Terminal);
+ PInvoke.TestForError(this._handle, pInvokeResult);
+ return pInvokeResult;
+ }
+
+ ///
+ ///Use this function to configure channels for static acquisition (if vi is an acquisition session) or static generation (if vi is a generation session). A channel cannot be simultaneously assigned to a static generation and dynamic generation.
+ ///
+ ///
+ ///This string identifies which channels will be configured as static.
+ ///
+ ///Valid Syntax: "0-19" or "0-15,16-19" or "0-18,19"
+ ///
+ ///Special values:
+ ///- "" (empty string) - configure ALL channels for static
+ ///- "None" - unconfigure all static channels
+ ///
+ ///Channels cannot be configured for both static generation and dynamic generation.
+ ///
+ ///
+ ///
+ ///Reports the status of this operation. To obtain a text description of the status code, call niHSDIO_error_message. To obtain additional information concerning the error condition, use niHSDIO_GetError and niHSDIO_ClearError.
+ ///
+ ///The general meaning of the status code is as follows:
+ ///
+ ///Value Meaning
+ ///-------------------------------
+ ///0 Success
+ ///Positive Values Warnings
+ ///Negative Values Errors
+ ///
+ ///
+ public int AssignStaticChannels(string Channel_List)
+ {
+ int pInvokeResult = PInvoke.AssignStaticChannels(this._handle, Channel_List);
+ PInvoke.TestForError(this._handle, pInvokeResult);
+ return pInvokeResult;
+ }
+
+ ///
+ ///This function immediately reads the digital value on channels configured for static acquisition. Configure a channel for static acquisition using the niHSDIO_AssignStaticChannels function. Channels not configured for static acquisition return a zero.
+ ///
+ ///Values obtained from static read operations are affected by data interpretation.
+ ///
+ ///
+ ///
+ ///Bit-value of data read from channels configured for static acquisition.
+ ///
+ ///The least significant bit of readData corresponds to the lowest physical channel number (for example, readData of 0x00F0 means channels 4-7 are logic one, while the remaining channels are logic zero or are not configured for static acquisition).
+ ///
+ ///
+ ///
+ ///Reports the status of this operation. To obtain a text description of the status code, call niHSDIO_error_message. To obtain additional information concerning the error condition, use niHSDIO_GetError and niHSDIO_ClearError.
+ ///
+ ///The general meaning of the status code is as follows:
+ ///
+ ///Value Meaning
+ ///-------------------------------
+ ///0 Success
+ ///Positive Values Warnings
+ ///Negative Values Errors
+ ///
+ ///
+ public int ReadStaticU32(out uint Read_Data)
+ {
+ int pInvokeResult = PInvoke.ReadStaticU32(this._handle, out Read_Data);
+ PInvoke.TestForError(this._handle, pInvokeResult);
+ return pInvokeResult;
+ }
+
+ ///
+ ///This function writes to channels configured for static generation. You can configure a channel for static generation using the niHSDIO_AssignStaticChannels function.
+ ///
+ ///
+ ///Bit-value of data to drive on channels configured for static generation. 1 corresponds to logic high, 0 corresponds to logic low.
+ ///
+ ///The least significant bit of writeData corresponds to the lowest physical channel number (for example, writeData of 0xFF00 means set the lower 8 channels to 0, while setting the upper 8 channels to logic high.
+ ///
+ ///Data values in writeData corresponding to channels not configured for static generation are ignored.
+ ///
+ ///Static channels explicitly disabled with the niHSDIO_TristateChannels function remain disabled, but the channel data value changes internally. Re-enabling a channel with niHSDIO_TristateChannels causes the channel to drive any value that you have written to it, even while the channel was disabled.
+ ///
+ ///
+ ///
+ ///Bit-value of channels to leave unchanged. 1 means to change the channel to whatever is reflected by writeData. 0 means do not alter the channel, regardless of writeData.
+ ///
+ ///The least significant bit of channelMask corresponds to the lowest physical channel number (e.g. writeData of 0xFFFF and channelMask of 0x0080 means set only channel 7 to 1; all other channels remain unchanged).
+ ///
+ ///
+ ///
+ ///Reports the status of this operation. To obtain a text description of the status code, call niHSDIO_error_message. To obtain additional information concerning the error condition, use niHSDIO_GetError and niHSDIO_ClearError.
+ ///
+ ///The general meaning of the status code is as follows:
+ ///
+ ///Value Meaning
+ ///-------------------------------
+ ///0 Success
+ ///Positive Values Warnings
+ ///Negative Values Errors
+ ///
+ ///
+ public int WriteStaticU32(uint Write_Data, uint Channel_Mask)
+ {
+ int pInvokeResult = PInvoke.WriteStaticU32(this._handle, Write_Data, Channel_Mask);
+ PInvoke.TestForError(this._handle, pInvokeResult);
+ return pInvokeResult;
+ }
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ public int STPMU_SourceVoltage(string channelList, double voltageLevel, int sense, double currentRange)
+ {
+ int pInvokeResult = PInvoke.STPMU_SourceVoltage(this._handle, channelList, voltageLevel, sense, currentRange);
+ PInvoke.TestForError(this._handle, pInvokeResult);
+ return pInvokeResult;
+ }
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ public int STPMU_SourceCurrent(string channelList, double currentLevel, double currentLevelRange, double lowerVoltageLimit, double upperVoltageLimit)
+ {
+ int pInvokeResult = PInvoke.STPMU_SourceCurrent(this._handle, channelList, currentLevel, currentLevelRange, lowerVoltageLimit, upperVoltageLimit);
+ PInvoke.TestForError(this._handle, pInvokeResult);
+ return pInvokeResult;
+ }
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ public int STPMU_DisablePMU(string channelList, int returnState)
+ {
+ int pInvokeResult = PInvoke.STPMU_DisablePMU(this._handle, channelList, returnState);
+ PInvoke.TestForError(this._handle, pInvokeResult);
+ return pInvokeResult;
+ }
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ public int STPMU_MeasureVoltage(string channelList, double apertureTime__4_us_, int sense, double[] measurements, out int numberOfMeasurements)
+ {
+ int pInvokeResult = PInvoke.STPMU_MeasureVoltage(this._handle, channelList, apertureTime__4_us_, sense, measurements, out numberOfMeasurements);
+ PInvoke.TestForError(this._handle, pInvokeResult);
+ return pInvokeResult;
+ }
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ public int STPMU_MeasureCurrent(string channelList, double aperture_time__4_us_, double[] measurements, out int numberOfMeasurements)
+ {
+ int pInvokeResult = PInvoke.STPMU_MeasureCurrent(this._handle, channelList, aperture_time__4_us_, measurements, out numberOfMeasurements);
+ PInvoke.TestForError(this._handle, pInvokeResult);
+ return pInvokeResult;
+ }
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ public int STPMU_ExternalForceControl(string channelList, int action, int connector)
+ {
+ int pInvokeResult = PInvoke.STPMU_ExternalForceControl(this._handle, channelList, action, connector);
+ PInvoke.TestForError(this._handle, pInvokeResult);
+ return pInvokeResult;
+ }
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ public int STPMU_ExternalSenseControl(string channel, int action, int connector)
+ {
+ int pInvokeResult = PInvoke.STPMU_ExternalSenseControl(this._handle, channel, action, connector);
+ PInvoke.TestForError(this._handle, pInvokeResult);
+ return pInvokeResult;
+ }
+ ///
+ ///
+ ///
+ ///
+ public int SelfCal()
+ {
+ int pInvokeResult = PInvoke.SelfCal(this._handle);
+ PInvoke.TestForError(this._handle, pInvokeResult);
+ return pInvokeResult;
+ }
+
+ ///
+ ///Changes the password that is required to initialize an external calibration session. The password may be up to four characters long.
+ ///
+ ///You can call this function from an acquisition, generation, or calibration session.
+ ///
+ ///
+ ///
+ ///The old (current) external calibration password.
+ ///
+ ///
+ ///The new (desired) external calibration password.
+ ///
+ ///
+ ///
+ ///Reports the status of this operation. To obtain a text description of the status code, call niHSDIO_error_message. To obtain additional information concerning the error condition, use niHSDIO_GetError and niHSDIO_ClearError.
+ ///
+ ///The general meaning of the status code is as follows:
+ ///
+ ///Value Meaning
+ ///-------------------------------
+ ///0 Success
+ ///Positive Values Warnings
+ ///Negative Values Errors
+ ///
+ public int ChangeExtCalPassword(string Old_Password, string New_Password)
+ {
+ int pInvokeResult = PInvoke.ChangeExtCalPassword(this._handle, Old_Password, New_Password);
+ PInvoke.TestForError(this._handle, pInvokeResult);
+ return pInvokeResult;
+ }
+
+ ///
+ ///Adjusts the voltage of the selected channel(s). The only errors that can be returned are actual calibration process errors.
+ ///
+ ///NOTES: This function is not supported for the NI 654X/656X devices.
+ ///
+ ///This function runs a static loopback test before adjusting the voltage. You must disconnect the cable from your device to run this function.
+ ///
+ ///
+ ///
+ ///Identifies channels on which voltage will be adjusted.
+ ///
+ ///
+ ///Reports the status of this operation. To obtain a text description of the status code, call niHSDIO_error_message. To obtain additional information concerning the error condition, use niHSDIO_GetError and niHSDIO_ClearError.
+ ///
+ ///The general meaning of the status code is as follows:
+ ///
+ ///Value Meaning
+ ///-------------------------------
+ ///0 Success
+ ///Positive Values Warnings
+ ///Negative Values Errors
+ ///
+ public int CalAdjustChannelVoltage(string Channel)
+ {
+ int pInvokeResult = PInvoke.CalAdjustChannelVoltage(this._handle, Channel);
+ PInvoke.TestForError(this._handle, pInvokeResult);
+ return pInvokeResult;
+ }
+
+ ///
+ ///Closes an NI-HSDIO external calibration session and, if specified, stores the new calibration constants and calibration data in the onboard EEPROM.
+ ///
+ ///NOTE: Whether you commit or cancel, the device is reset and the FPGA is reloaded afterwards.
+ ///
+ ///
+ ///
+ ///The action to perform upon closing.
+ ///
+ ///Defined Values:
+ ///
+ ///NIHSDIO_VAL_EXT_CAL_COMMIT (62) - The new calibration constants and data determined during the external calibration session are stored in the onboard EEPROM, given that the calibration was complete and passed successfully.
+ ///NIHSDIO_VAL_EXT_CAL_CANCEL (63) - No changes are made to the calibration constants and data in the EEPROM.
+ ///
+ ///
+ ///
+ ///Reports the status of this operation. To obtain a text description of the status code, call niHSDIO_error_message. To obtain additional information concerning the error condition, use niHSDIO_GetError and niHSDIO_ClearError.
+ ///
+ ///The general meaning of the status code is as follows:
+ ///
+ ///Value Meaning
+ ///-------------------------------
+ ///0 Success
+ ///Positive Values Warnings
+ ///Negative Values Errors
+ ///
+ public int CloseExtCal(int Action)
+ {
+ int pInvokeResult = PInvoke.CloseExtCal(this._handle, Action);
+ PInvoke.TestForError(this._handle, pInvokeResult);
+ return pInvokeResult;
+ }
+
+ ///
+ ///This function performs a self-test on the device and returns the test results. The self-test function performs a simple series of tests that ensure the device is powered up and responding. Complete functional testing and calibration are not performed by this function.
+ ///
+ ///This function is internal and does not affect external I/O connections or connections between devices.
+ ///
+ ///
+ ///
+ ///
+ ///This control contains the value returned from the device self-test.
+ ///
+ ///Self-test Code Description:
+ ///0 - Self-test passed
+ ///Anything else - Self-test failed
+ ///
+ ///
+ ///
+ ///
+ ///Returns the self-test response string from the device; you must pass a ViChar array at least IVI_MAX_MESSAGE_BUF_SIZE bytes in length
+ ///
+ ///
+ ///
+ ///Reports the status of this operation. To obtain a text description of the status code, call niHSDIO_error_message. To obtain additional information concerning the error condition, use niHSDIO_GetError and niHSDIO_ClearError.
+ ///
+ ///The general meaning of the status code is as follows:
+ ///
+ ///Value Meaning
+ ///-------------------------------
+ ///0 Success
+ ///Positive Values Warnings
+ ///Negative Values Errors
+ ///
+ ///
+ public int self_test(out short Self_Test_Result, System.Text.StringBuilder Self_Test_Message)
+ {
+ int pInvokeResult = PInvoke.self_test(this._handle, out Self_Test_Result, Self_Test_Message);
+ PInvoke.TestForError(this._handle, pInvokeResult);
+ return pInvokeResult;
+ }
+
+ ///
+ ///Call this function to check the hardware to determine if your dynamic data operation has completed. You can also use this function for continuous dynamic data operations to poll for error conditions.
+ ///
+ ///
+ ///
+ ///VI_TRUE is returned if the data operation is complete or an error has occurred.
+ ///
+ ///VI_FALSE is returned if the data operation has not completed.
+ ///
+ ///
+ ///
+ ///
+ ///Reports the status of this operation. To obtain a text description of the status code, call niHSDIO_error_message. To obtain additional information concerning the error condition, use niHSDIO_GetError and niHSDIO_ClearError.
+ ///
+ ///The general meaning of the status code is as follows:
+ ///
+ ///Value Meaning
+ ///-------------------------------
+ ///0 Success
+ ///Positive Values Warnings
+ ///Negative Values Errors
+ ///
+ ///
+ public int IsDone(out bool Done)
+ {
+ ushort DoneAsUShort;
+ int pInvokeResult = PInvoke.IsDone(this._handle, out DoneAsUShort);
+ Done = System.Convert.ToBoolean(DoneAsUShort);
+ PInvoke.TestForError(this._handle, pInvokeResult);
+ return pInvokeResult;
+ }
+
+ ///
+ ///Use this function to force a channel into a high-impedance state. The effect is immediate - it does not require the session be committed. The channel will remain tristated regardless of what other software commands are called. Call this function again and pass VI_FALSE into the Tristate parameter to allow other software commands to control the channel normally.
+ ///
+ ///Channels are kept in a high-impedance state while the session remains open. Closing the session does not affect the high-impedance state of the channel, but future sessions can now control it.
+ ///
+ ///
+ ///
+ ///
+ ///This string identifies which channels will be tristated. Channels not specified in this list are unaffected.
+ ///
+ ///Syntax examples: "2-15" or "0-3, 5, 8-15" or "0, 3, 10"
+ ///
+ ///
+ ///
+ ///
+ ///Defined Values:
+ ///
+ ///VI_TRUE: Force the channels specified in Channel_List to remain tristated, ignoring future software commands.
+ ///
+ ///VI_FALSE: Allow the channels specified in Channel_List to be untristated by future software commands.
+ ///
+ ///
+ ///
+ ///
+ ///Reports the status of this operation. To obtain a text description of the status code, call niHSDIO_error_message. To obtain additional information concerning the error condition, use niHSDIO_GetError and niHSDIO_ClearError.
+ ///
+ ///The general meaning of the status code is as follows:
+ ///
+ ///Value Meaning
+ ///-------------------------------
+ ///0 Success
+ ///Positive Values Warnings
+ ///Negative Values Errors
+ ///
+ ///
+ public int TristateChannels(string Channel_List, bool Tristate)
+ {
+ int pInvokeResult = PInvoke.TristateChannels(this._handle, Channel_List, System.Convert.ToUInt16(Tristate));
+ PInvoke.TestForError(this._handle, pInvokeResult);
+ return pInvokeResult;
+ }
+
+ ///
+ ///Programs the hardware for the dynamic data operation using the attributes you select. Before entering the committed state, most attribute values are stored in software only; these values have not yet been programmed to the hardware. Once the session is committed, the hardware is configured.
+ ///
+ ///For many operations it is not necessary to explicitly call this function because the following functions implicitly commit:
+ ///niHSDIO_Initiate
+ ///niHSDIO_ReadWaveformU32
+ ///niHSDIO_WriteNamedWaveformU32
+ ///niHSDIO_WriteScript
+ ///
+ ///Start the operation with niHSDIO_Initiate. Running this function while a dynamic operation is in progress returns an error. Committing only programs attributes changed since previous commits.
+ ///
+ ///NOTE: Committing some attributes may have immediate effects seen on external instrument connectors. Voltage levels are an example of an attribute with an immediate effect when committed.
+ ///
+ ///Before committing a session that requires an external clock, ensure the external clock is available. Otherwise you receive an error that the device could not find or lock to the external clock.
+ ///
+ ///
+ ///
+ ///
+ ///Reports the status of this operation. To obtain a text description of the status code, call niHSDIO_error_message. To obtain additional information concerning the error condition, use niHSDIO_GetError and niHSDIO_ClearError.
+ ///
+ ///The general meaning of the status code is as follows:
+ ///
+ ///Value Meaning
+ ///-------------------------------
+ ///0 Success
+ ///Positive Values Warnings
+ ///Negative Values Errors
+ ///
+ ///
+ public int CommitDynamic()
+ {
+ int pInvokeResult = PInvoke.CommitDynamic(this._handle);
+ PInvoke.TestForError(this._handle, pInvokeResult);
+ return pInvokeResult;
+ }
+
+ ///
+ ///Programs the hardware for the static data operation using the attributes you select. Before entering the committed state, most attribute values are stored in software only; these values have not yet been programmed to the hardware. Once the session is committed, the hardware is configured.
+ ///
+ ///For most static operations it is not necessary to explicitly call niHSDIO_CommitStatic because the following functions implicitly commit:
+ ///niHSDIO_ReadStaticU32
+ ///niHSDIO_WriteStaticU32
+ ///
+ ///Committing only programs attributes changed since previous commits.
+ ///
+ ///NOTE: Committing some attributes may have immediate effects seen on external instrument connectors. Voltage levels are an example of an attribute with an immediate effect when committed.
+ ///
+ ///
+ ///
+ ///Reports the status of this operation. To obtain a text description of the status code, call niHSDIO_error_message. To obtain additional information concerning the error condition, use niHSDIO_GetError and niHSDIO_ClearError.
+ ///
+ ///The general meaning of the status code is as follows:
+ ///
+ ///Value Meaning
+ ///-------------------------------
+ ///0 Success
+ ///Positive Values Warnings
+ ///Negative Values Errors
+ ///
+ ///
+ public int CommitStatic()
+ {
+ int pInvokeResult = PInvoke.CommitStatic(this._handle);
+ PInvoke.TestForError(this._handle, pInvokeResult);
+ return pInvokeResult;
+ }
+
+ ///
+ ///Call this function to reset the session to its initial state. All channels and front panel terminals are put into a high-impedance state. All software attributes are reset to their initial values.
+ ///
+ ///During a reset, routes of signals between this and other devices are released, regardless of which device created the route. For instance, a trigger signal being exported to a PXI Trigger line and used by another device will no longer be exported.
+ ///
+ ///niHSDIO_reset is applied to the ENTIRE device. If you have both a generation and an acquisition session active, the niHSDIO_reset resets the current session, including attributes, and invalidates the other session if it is committed or running. The other session must be closed.
+ ///
+ ///
+ ///
+ ///Reports the status of this operation. To obtain a text description of the status code, call niHSDIO_error_message. To obtain additional information concerning the error condition, use niHSDIO_GetError and niHSDIO_ClearError.
+ ///
+ ///The general meaning of the status code is as follows:
+ ///
+ ///Value Meaning
+ ///-------------------------------
+ ///0 Success
+ ///Positive Values Warnings
+ ///Negative Values Errors
+ ///
+ ///
+ public int reset()
+ {
+ int pInvokeResult = PInvoke.reset(this._handle);
+ PInvoke.TestForError(this._handle, pInvokeResult);
+ return pInvokeResult;
+ }
+
+ ///
+ ///Call this function to reset the device to its initial state and reload its FPGA. All channels and front panel terminals are put into a high-impedance state. All software attributes are reset to their initial values. The entire contents of the FPGA and EEPROM files are reloaded. Use this function to re-enable your device if it has disabled itself because the device temperature has risen above its optimal operating temperature.
+ ///
+ ///During a device reset, routes of signals between this and other devices are released, regardless of which device created the route. For instance, a trigger signal being exported to a PXI Trigger line and used by another device will no longer be exported.
+ ///
+ ///niHSDIO_ResetDevice is applied to the ENTIRE device. If you have both a generation and an acquisition session active, the niHSDIO_ResetDevice resets the current session, including attributes, and invalidates the other session if it is committed or running. The other session must be closed.
+ ///
+ ///
+ ///Generally, calling niHSDIO_reset is acceptable instead of calling niHSDIO_ResetDevice. niHSDIO_reset executes more quickly.
+ ///
+ ///
+ ///Reports the status of this operation. To obtain a text description of the status code, call niHSDIO_error_message. To obtain additional information concerning the error condition, use niHSDIO_GetError and niHSDIO_ClearError.
+ ///
+ ///The general meaning of the status code is as follows:
+ ///
+ ///Value Meaning
+ ///-------------------------------
+ ///0 Success
+ ///Positive Values Warnings
+ ///Negative Values Errors
+ ///
+ ///
+ public int ResetDevice()
+ {
+ int pInvokeResult = PInvoke.ResetDevice(this._handle);
+ PInvoke.TestForError(this._handle, pInvokeResult);
+ return pInvokeResult;
+ }
+
+ #region SetGetMethods
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ public int SetInt32(niHSDIOProperties propertyId, string repeatedCapabilityOrChannel, int val)
+ {
+ int pInvokeResult = PInvoke.SetAttributeViInt32(this._handle, repeatedCapabilityOrChannel, Convert.ToInt32(propertyId), val);
+ PInvoke.TestForError(this._handle, pInvokeResult);
+ return pInvokeResult;
+ }
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ public int SetInt32(niHSDIOProperties propertyId, int val)
+ {
+ return this.SetInt32(propertyId, "", val);
+ }
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ public int GetInt32(niHSDIOProperties propertyId, string repeatedCapabilityOrChannel, out int val)
+ {
+ int pInvokeResult = PInvoke.GetAttributeViInt32(this._handle, repeatedCapabilityOrChannel, Convert.ToInt32(propertyId), out val);
+ PInvoke.TestForError(this._handle, pInvokeResult);
+ return pInvokeResult;
+ }
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ public int GetInt32(niHSDIOProperties propertyId, out int val)
+ {
+ return this.GetInt32(propertyId, "", out val);
+ }
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ public int SetDouble(niHSDIOProperties propertyId, string repeatedCapabilityOrChannel, double val)
+ {
+ int pInvokeResult = PInvoke.SetAttributeViReal64(this._handle, repeatedCapabilityOrChannel, Convert.ToInt32(propertyId), val);
+ PInvoke.TestForError(this._handle, pInvokeResult);
+ return pInvokeResult;
+ }
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ public int SetDouble(niHSDIOProperties propertyId, double val)
+ {
+ return this.SetDouble(propertyId, "", val);
+ }
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ public int GetDouble(niHSDIOProperties propertyId, string repeatedCapabilityOrChannel, out double val)
+ {
+ int pInvokeResult = PInvoke.GetAttributeViReal64(this._handle, repeatedCapabilityOrChannel, Convert.ToInt32(propertyId), out val);
+ PInvoke.TestForError(this._handle, pInvokeResult);
+ return pInvokeResult;
+ }
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ public int GetDouble(niHSDIOProperties propertyId, out double val)
+ {
+ return this.GetDouble(propertyId, "", out val);
+ }
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ public int SetBoolean(niHSDIOProperties propertyId, string repeatedCapabilityOrChannel, bool val)
+ {
+ int pInvokeResult = PInvoke.SetAttributeViBoolean(this._handle, repeatedCapabilityOrChannel, Convert.ToInt32(propertyId), System.Convert.ToUInt16(val));
+ PInvoke.TestForError(this._handle, pInvokeResult);
+ return pInvokeResult;
+ }
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ public int SetBoolean(niHSDIOProperties propertyId, bool val)
+ {
+ return this.SetBoolean(propertyId, "", val);
+ }
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ public int GetBoolean(niHSDIOProperties propertyId, string repeatedCapabilityOrChannel, out bool val)
+ {
+ ushort boolAsShort;
+ int pInvokeResult = PInvoke.GetAttributeViBoolean(this._handle, repeatedCapabilityOrChannel, Convert.ToInt32(propertyId), out boolAsShort);
+ val = System.Convert.ToBoolean(boolAsShort);
+ PInvoke.TestForError(this._handle, pInvokeResult);
+ return pInvokeResult;
+ }
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ public int GetBoolean(niHSDIOProperties propertyId, out bool val)
+ {
+ return this.GetBoolean(propertyId, "", out val);
+ }
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ public int SetString(niHSDIOProperties propertyId, string repeatedCapabilityOrChannel, string val)
+ {
+ int pInvokeResult = PInvoke.SetAttributeViString(this._handle, repeatedCapabilityOrChannel, Convert.ToInt32(propertyId), val);
+ PInvoke.TestForError(this._handle, pInvokeResult);
+ return pInvokeResult;
+ }
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ public int SetString(niHSDIOProperties propertyId, string val)
+ {
+ return this.SetString(propertyId, "", val);
+ }
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ public int GetString(niHSDIOProperties propertyId, string repeatedCapabilityOrChannel, out string val)
+ {
+ System.Text.StringBuilder newVal = new System.Text.StringBuilder(512);
+ int size = PInvoke.GetAttributeViString(this._handle, repeatedCapabilityOrChannel, Convert.ToInt32(propertyId), 512, newVal);
+ int ret = 0;
+ val = "";
+ if ((size < 0))
+ {
+ return PInvoke.ThrowError(this._handle, size);
+ }
+ else
+ {
+ if ((size > 0))
+ {
+ newVal.Capacity = size;
+ ret = PInvoke.GetAttributeViString(this._handle, repeatedCapabilityOrChannel, Convert.ToInt32(propertyId), size, newVal);
+ val = newVal.ToString();
+ }
+ }
+ return PInvoke.TestForError(this._handle, ret);
+ }
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ public int GetString(niHSDIOProperties propertyId, out string val)
+ {
+ return this.GetString(propertyId, "", out val);
+ }
+
+ #endregion SetGetMethods
+
+
+ #region Property Specific Get/Set
+
+ ///
+ ///Specifies the voltage threshold that causes the driver to switch from sourcing to sinking current. If the incoming voltage is greater than or equal to the commutating voltage level, the device sinks current. Conversely, if the incoming voltage is less than the commutating voltage level, the device sources current.
+ /// Valid values range from –2 V to 7 V.
+ /// The default value is 0 V.
+ /// The units are volts (V).
+ /// You can select the PFI channels and clocks in the Channel_Name input in the Set Attributue function using the following strings: PFI1, PFI2, STROBE, and DDC_CLKOUT. These strings are not case sensitive and can be grouped with the standard input strings separated by commas. The following are examples of valid string syntax: 0, 4, 6, PFI1, 7 or 0-12, STROBE, DDC_CLKOUT.
+ /// Only NI 6556 devices support this attribute.
+ ///
+ ///
+ public int SetActiveLoadCommutatingVoltageLevel(string channel, double value)
+ {
+ return SetDouble(niHSDIOProperties.ActiveLoadCommutatingVoltageLevel, channel, value);
+ }
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ public int GetActiveLoadCommutatingVoltageLevel(string channel, out double value)
+ {
+ return GetDouble(niHSDIOProperties.ActiveLoadCommutatingVoltageLevel, channel, out value);
+ }
+ ///
+ ///Specifies whether the driver should source or sink current instead of being in a high-impedance state. To enable active load functionality, you must first set the NIHSDIO_ATTR_DATA_TRISTATE_MODE or NIHSDIO_ATTR_DATA_TERMINATION_MODE attributes to NIHSDIO_VAL_HIGH_IMPEDANCE. If the NIHSDIO_ATTR_DATA_TRISTATE_MODE or NIHSDIO_ATTR_DATA_TERMINATION_MODE attributes are set to NIHSDIO_VAL_DRIVE_TERMINATION_VOLTAGE, then you must set this attribute to NIHSDIO_VAL_ACTIVE_LOAD_DISABLED, otherwise NI-HSDIO returns an error.
+ /// You must set this property to the same value on a channel in both acquisition and generation sessions, or NI-HSDIO returns an error. If you are using both acquisition and generation sessions in your application, when you select a value for this property in a session, NI-HSDIO automatically sets the same value in the other session. However, NI-HSDIO allows you to change the value only in the original session in which you configured it. For example, if you select NIHSDIO_VAL_ACTIVE_LOAD_DISABLED in your acquisition session, your generation session is configured automatically to the same value. If you want to change the value to NIHSDIO_VAL_ACTIVE_LOAD_ENABLED_WHEN_TRISTATE, you can do so only in the acquisition session until you close the original session.
+ /// You can select the PFI channels and clocks in the channelName input in the set call using the following strings: PFI1, PFI2, STROBE, and DDC_CLKOUT. These strings are not case sensitive and can be grouped with the standard input strings separated by commas. The following are examples of valid string syntax: 0, 4, 6, PFI1, 7 or 0-12, STROBE, DDC_CLKOUT.
+ ///
+ ///
+ public int SetActiveLoadMode(string channel, int value)
+ {
+ return SetInt32(niHSDIOProperties.ActiveLoadMode, channel, value);
+ }
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ public int GetActiveLoadMode(string channel, out int value)
+ {
+ return GetInt32(niHSDIOProperties.ActiveLoadMode, channel, out value);
+ }
+ ///
+ ///Specifies the amount of current for the driver to sink if the input voltage is greater than or equal to the commutating voltage.
+ /// Valid values range from 1.5 mA to 24 mA.
+ /// The default value is 1.5 mA.
+ /// The units are amps (A). This attribute takes effect only if the NIHSDIO_ATTR_ACTIVE_LOAD_MODE attribute is set to NIHSDIO_VAL_ACTIVE_LOAD_ENABLED_WHEN_TRISTATE in the current session.
+ /// You can select the PFI channels and clocks in the Channel_Name input in the Set Attributue function using the following strings: PFI1, PFI2, STROBE, and DDC_CLKOUT. These strings are not case sensitive and can be grouped with the standard input strings separated by commas. The following are examples of valid string syntax: 0, 4, 6, PFI1, 7 or 0-12, STROBE, DDC_CLKOUT.
+ /// Only NI 6556 devices support this attribute.
+ ///
+ ///
+ public int SetActiveLoadSinkingCurrentValue(string channel, double value)
+ {
+ return SetDouble(niHSDIOProperties.ActiveLoadSinkingCurrentValue, channel, value);
+ }
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ public int GetActiveLoadSinkingCurrentValue(string channel, out double value)
+ {
+ return GetDouble(niHSDIOProperties.ActiveLoadSinkingCurrentValue, channel, out value);
+ }
+ ///
+ ///Specifies the amount of current for the driver to source if the input voltage is less than the commutating voltage.
+ /// Valid values range from 1.5 mA to 24 mA.
+ /// The default value is 1.5 mA.
+ /// Units are amps (A).
+ /// This attribute takes effect only if the NIHSDIO_ATTR_ACTIVE_LOAD_MODE attribute is set to NIHSDIO_VAL_ACTIVE_LOAD_ENABLED_WHEN_TRISTATE in the current session.
+ /// You can select the PFI channels and clocks in the Channel_Name input in the Set Attribute function using the following strings: PFI1, PFI2, STROBE, and DDC_CLKOUT. These strings are not case sensitive and can be grouped with the standard input strings separated by commas. The following are examples of valid string syntax: 0, 4, 6, PFI1, 7 or 0-12, STROBE, DDC_CLKOUT.
+ /// Only NI 6556 devices support this attribute.
+ ///
+ ///
+ public int SetActiveLoadSourcingCurrentValue(string channel, double value)
+ {
+ return SetDouble(niHSDIOProperties.ActiveLoadSourcingCurrentValue, channel, value);
+ }
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ public int GetActiveLoadSourcingCurrentValue(string channel, out double value)
+ {
+ return GetDouble(niHSDIOProperties.ActiveLoadSourcingCurrentValue, channel, out value);
+ }
+ ///
+ ///Use this attribute to specify whether you want the Advance trigger to be a digital edge, pattern match, or software trigger. You can also choose NIHSDIO_VAL_NONE as the value for this attribute.
+ ///
+ ///
+ public int SetAdvanceTriggerType(string channel, int value)
+ {
+ return SetInt32(niHSDIOProperties.AdvanceTriggerType, channel, value);
+ }
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ public int GetAdvanceTriggerType(string channel, out int value)
+ {
+ return GetInt32(niHSDIOProperties.AdvanceTriggerType, channel, out value);
+ }
+ ///
+ ///This attribute specifies the voltage above which a clock is considered logic high. The value for this attribute applies to the STROBE terminal in acquisition sessions and to the DDC CLK OUT terminal in generation sessions.
+ /// NOTE: Only NI 6555/6556 devices support this attribute.
+ /// Valid values range from –2 to 7, depending on the range selected with the NIHSDIO_ATTR_CLOCK_VOLTAGE_RANGE attribute. The default value is 3.3 V for generation and 1.7 V for acquisition. Units are in volts.
+ ///
+ ///
+ public int SetClockVoltageHighLevel(string channel, double value)
+ {
+ return SetDouble(niHSDIOProperties.ClockVoltageHighLevel, channel, value);
+ }
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ public int GetClockVoltageHighLevel(string channel, out double value)
+ {
+ return GetDouble(niHSDIOProperties.ClockVoltageHighLevel, channel, out value);
+ }
+ ///
+ ///This attribute specifies the voltage below which a clock is considered logic low. The value for this attribute applies to the STROBE terminal in acquisition sessions and to the DDC CLK OUT terminal in generation sessions.
+ /// NOTE: Only NI 6555/6556 devices support this attribute.
+ /// Valid values range from –2 to 7, depending on the range selected with the NIHSDIO_ATTR_CLOCK_VOLTAGE_RANGE attribute. The default value is 0 V for generation and 1.6 V for acquisition. Units are in volts.
+ ///
+ ///
+ public int SetClockVoltageLowLevel(string channel, double value)
+ {
+ return SetDouble(niHSDIOProperties.ClockVoltageLowLevel, channel, value);
+ }
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ public int GetClockVoltageLowLevel(string channel, out double value)
+ {
+ return GetDouble(niHSDIOProperties.ClockVoltageLowLevel, channel, out value);
+ }
+ ///
+ ///This attribute specifies the voltage range used for all clock voltages on the STROBE terminal (used during acquisition sessions) and on the DDC CLK OUT terminal (used during generation sessions).
+ /// NOTE: Only NI 6555/6556 devices support this attribute.
+ ///
+ ///
+ public int SetClockVoltageRange(string channel, int value)
+ {
+ return SetInt32(niHSDIOProperties.ClockVoltageRange, channel, value);
+ }
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ public int GetClockVoltageRange(string channel, out int value)
+ {
+ return GetInt32(niHSDIOProperties.ClockVoltageRange, channel, out value);
+ }
+ ///
+ ///Specifies the output polarity of the Data Active event.
+ ///
+ ///
+ public int SetDataActiveEventLevelActiveLevel(string channel, int value)
+ {
+ return SetInt32(niHSDIOProperties.DataActiveEventLevelActiveLevel, channel, value);
+ }
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ public int GetDataActiveEventLevelActiveLevel(string channel, out int value)
+ {
+ return GetInt32(niHSDIOProperties.DataActiveEventLevelActiveLevel, channel, out value);
+ }
+ ///
+ ///Specifies the destination terminal for the Data Active event. Event voltages and positions are only relevant if the destination of the event is a front panel connector.
+ /// This attribute is valid only for generation sessions.
+ ///
+ ///
+ public int SetDataActiveEventOutputTerminal(string channel, string value)
+ {
+ return SetString(niHSDIOProperties.DataActiveEventOutputTerminal, channel, value);
+ }
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ public int GetDataActiveEventOutputTerminal(string channel, out string value)
+ {
+ return GetString(niHSDIOProperties.DataActiveEventOutputTerminal, channel, out value);
+ }
+ ///
+ ///Specifies the position of the Data Active event relative to the Sample clock. Event voltages and positions are only relevant if the destination of the event is a front panel connector.
+ ///
+ ///
+ public int SetDataActiveEventPosition(string channel, int value)
+ {
+ return SetInt32(niHSDIOProperties.DataActiveEventPosition, channel, value);
+ }
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ public int GetDataActiveEventPosition(string channel, out int value)
+ {
+ return GetInt32(niHSDIOProperties.DataActiveEventPosition, channel, out value);
+ }
+ ///
+ ///Specifies whether the Data Active event terminal is configured for single-ended or LVDS operation. Valid values for this attribute vary by device. Refer to your device documentation to determine if your hardware supports LVDS operation.
+ ///
+ ///
+ public int SetDataActiveEventTerminalConfiguration(string channel, int value)
+ {
+ return SetInt32(niHSDIOProperties.DataActiveEventTerminalConfiguration, channel, value);
+ }
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ public int GetDataActiveEventTerminalConfiguration(string channel, out int value)
+ {
+ return GetInt32(niHSDIOProperties.DataActiveEventTerminalConfiguration, channel, out value);
+ }
+ ///
+ ///Configures the number of Sample clock cycles to delay the internal Data Active event. Internally routing a delayed version of this event is useful when you want to synchronize an acquisition trigger to the generation operation. Use this coarse delay together with the finer-resolution data delay to compensate for the round trip delay of data in stimulus/response operations.
+ /// You can configure the delayed Data Active event as the source for any acquisition trigger by manually entering DelayedDataActiveEvent as the trigger source parameter in the appropriate trigger configuration function or VI instance.
+ /// This attribute is only applicable in acquisition sessions and cannot be set as the trigger source when using STROBE as the external Sample Clock.
+ /// Valid values for this attribute are 0 to 24. The units are in Sample clock cycles.
+ ///
+ ///
+ public int SetDataActiveInternalRouteDelay(string channel, int value)
+ {
+ return SetInt32(niHSDIOProperties.DataActiveInternalRouteDelay, channel, value);
+ }
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ public int GetDataActiveInternalRouteDelay(string channel, out int value)
+ {
+ return GetInt32(niHSDIOProperties.DataActiveInternalRouteDelay, channel, out value);
+ }
+ ///
+ ///This attribute specifies, per channel, the fixed time delay of acquired or generated data. The value of this attribute is added to the value of the NIHSDIO_ATTR_DATA_POSITION_DELAY attribute to determine the total delay. Unlike the NIHSDIO_ATTR_DATA_POSITION_DELAY attribute, this attribute is specified in seconds. Valid values, in seconds, depend on your clock rate and are represented by the equation –2(1/f) to +3(1/f), where f is the frequency of your clock rate. The default value is 0.
+ /// NOTE: Only NI 6555/6556 devices support this attribute.
+ ///
+ ///
+ public int SetDataDeskew(string channel, double value)
+ {
+ return SetDouble(niHSDIOProperties.DataDeskew, channel, value);
+ }
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ public int GetDataDeskew(string channel, out double value)
+ {
+ return GetDouble(niHSDIOProperties.DataDeskew, channel, out value);
+ }
+ ///
+ ///Use this attribute to select between acquiring high/low data or valid/invalid data during a static or dynamic acquisition operation.
+ /// Select high/low mode to get logic high or logic low values. Use valid/invalid mode to tell if the signal is within the specified voltage range (above data voltage low level but below data voltage high level) or outside the range (below data voltage low level or above data voltage high level).
+ /// Note: NI 654X/656X devices only support the high/low mode of data interpretation. NI-HSDIO returns an error if you select valid/invalid mode for an acquisition with these devices.
+ /// Refer to your specific hardware documentation to understand how data is returned to you. This attribute is valid only for acquisition sessions.
+ ///
+ ///
+ public int SetDataInterpretation(string channel, int value)
+ {
+ return SetInt32(niHSDIOProperties.DataInterpretation, channel, value);
+ }
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ public int GetDataInterpretation(string channel, out int value)
+ {
+ return GetInt32(niHSDIOProperties.DataInterpretation, channel, out value);
+ }
+ ///
+ ///This attribute specifies which edge of the Sample clock signal is used to time the generation or acquisition. You can also configure the device to generate or acquire data at a configurable delay past each rising edge of the Sample clock. When this attribute is set to NIHSDIO_VAL_DELAY_FROM_SAMPLE_CLOCK_RISING_EDGE, use the NIHSDIO_ATTR_DATA_POSITION_DELAY attribute to specify the delay value.
+ /// NOTE: On NI 6555/6556 devices, this attribute is per channel selectable.
+ /// NOTE: To configure a delay on NI 656x devices, you must delay all channels on the device. NI-HSDIO returns an error if you apply a delay to only a partial channel list.
+ /// Refer to the NIHSDIO_ATTR_DATA_POSITION_DELAY attribute for more information about multibank data delay.
+ ///
+ ///
+ public int SetDataPosition(string channel, int value)
+ {
+ return SetInt32(niHSDIOProperties.DataPosition, channel, value);
+ }
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ public int GetDataPosition(string channel, out int value)
+ {
+ return GetInt32(niHSDIOProperties.DataPosition, channel, out value);
+ }
+ ///
+ ///This attribute specifies the delay after the Sample clock rising edge when the device generates or acquires a new data sample. Data delay is expressed as a fraction of the clock period (for example, a fraction of 1/NIHSDIO_ATTR_SAMPLE_CLOCK_RATE). This attribute is relevant only when the NIHSDIO_ATTR_DATA_POSITION attribute is set to NIHSDIO_VAL_DELAY_FROM_SAMPLE_CLOCK_RISING_EDGE.
+ /// The NI 6547/6548 supports multibank data delay. All channels configured to NIHSDIO_VAL_DELAY_FROM_SAMPLE_CLOCK_RISING_EDGE and assigned to the same data delay bank must share a data delay value, even if channels on that bank are configured to NIHSDIO_VAL_SAMPLE_CLOCK_RISING_EDGE or NIHSDIO_VAL_SAMPLE_CLOCK_FALLING_EDGE. NI-HSDIO returns an error if you set different delay values for two channels within the same bank.
+ /// Refer to the multibank data delay topic in the NI Digital Waveform Generator/Analyzer Help file for more information about which channels belong to which banks.
+ /// NOTE: On NI 6555/6556 devices, valid values range from –1 to 2 clock cycles in increments of 0.001 cycles. Delay on NI 6555/6556 devices is configured on a per channel basis.
+ /// NOTE: To configure a delay on NI 656x devices, you must delay all channels on the device. NI-HSDIO returns an error if you apply a delay to only a partial channel list.
+ ///
+ ///
+ public int SetDataPositionDelay(string channel, double value)
+ {
+ return SetDouble(niHSDIOProperties.DataPositionDelay, channel, value);
+ }
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ public int GetDataPositionDelay(string channel, out double value)
+ {
+ return GetDouble(niHSDIOProperties.DataPositionDelay, channel, out value);
+ }
+ ///
+ ///Specifies whether you want the device to acquire or generate in single data rate (SDR) mode or in double data rate (DDR) mode.
+ /// In SDR mode, the device generates or acquires data on a single edge of the Sample clock. Therefore, you can generate or acquire data on the rising or falling edge of every Sample clock pulse or on a delayed version of the rising edge of the Sample clock.
+ /// In DDR mode, the device generates or acquires data on both edges of the Sample clock. Therefore, you can generate or acquire data on every rising and falling edge of the Sample clock. Acquisition and generation sessions can be configured in DDR mode to acquire or generate the first data sample on the rising or falling edge of the clock or on a delayed version of the rising edge of the clock.
+ ///
+ ///
+ public int SetDataRateMultiplier(string channel, int value)
+ {
+ return SetInt32(niHSDIOProperties.DataRateMultiplier, channel, value);
+ }
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ public int GetDataRateMultiplier(string channel, out int value)
+ {
+ return GetInt32(niHSDIOProperties.DataRateMultiplier, channel, out value);
+ }
+ ///
+ ///This attribute specifies the action taken by NI-HSDIO when a channel is tristated. A tristate condition can occur during initial states, idle states, per cycle tristate, and static tristate. Selecting NIHSDIO_VAL_HIGH_IMPEDANCE sets the channel to a high-impedance state when tristated. Selecting NIHSDIO_VAL_DRIVE_TERMINATION_VOLTAGE sets the channel to drive a termination voltage (VTT). This attribute is valid only for acquisition sessions.
+ /// NOTE: If you set the NIHSDIO_ATTR_DATA_TERMINATION_MODE and NIHSDIO_ATTR_DATA_TRISTATE_MODE attributes to different values on the same channel, NI-HSDIO returns an error.
+ /// NOTE: This attribute is supported only on NI 6555/6556 devices.
+ ///
+ ///
+ public int SetDataTerminationMode(string channel, int value)
+ {
+ return SetInt32(niHSDIOProperties.DataTerminationMode, channel, value);
+ }
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ public int GetDataTerminationMode(string channel, out int value)
+ {
+ return GetInt32(niHSDIOProperties.DataTerminationMode, channel, out value);
+ }
+ ///
+ ///This attribute specifies the termination voltage level for the active channels in this session. This attribute applies to static and dynamic data operations in acquisition or generation sessions. Refer to the NIHSDIO_ATTR_DATA_TRISTATE_MODE attribute to drive the termination voltage for a generation session or to the NIHSDIO_ATTR_DATA_TERMINATION_MODE attribute to drive the termination voltage for an acquisition session. Refer to the NI PXIe-6555/6556 Specifications for more information about accuracy.
+ /// NOTE: Only NI 6555/6556 devices support this attribute.
+ /// Valid values range from -2 to 7 V, depending on the range selected with the NIHSDIO_ATTR_DATA_VOLTAGE_RANGE attribute. The default value is 0. Units are in volts.
+ ///
+ ///
+ public int SetDataTerminationVoltageLevel(string channel, double value)
+ {
+ return SetDouble(niHSDIOProperties.DataTerminationVoltageLevel, channel, value);
+ }
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ public int GetDataTerminationVoltageLevel(string channel, out double value)
+ {
+ return GetDouble(niHSDIOProperties.DataTerminationVoltageLevel, channel, out value);
+ }
+ ///
+ ///Specifies the number of samples to download to onboard memory at one time.
+ ///
+ ///
+ public int SetDataTransferBlockSize(string channel, int value)
+ {
+ return SetInt32(niHSDIOProperties.DataTransferBlockSize, channel, value);
+ }
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ public int GetDataTransferBlockSize(string channel, out int value)
+ {
+ return GetInt32(niHSDIOProperties.DataTransferBlockSize, channel, out value);
+ }
+ ///
+ ///Specifies the maximum amount of bus bandwidth (in bytes per second) to use for data transfers. The high-speed digital device limits data transfer speeds on the PCIe bus to the value you specify for this attribute. Set this attribute to optimize bus bandwidth usage for multi-device streaming applications by preventing the high-speed digital device from consuming all of the available bandwidth on a PCIe link when waveforms are being written to the onboard memory of the device.
+ ///
+ ///
+ public int SetDataTransferMaximumBandwidth(string channel, double value)
+ {
+ return SetDouble(niHSDIOProperties.DataTransferMaximumBandwidth, channel, value);
+ }
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ public int GetDataTransferMaximumBandwidth(string channel, out double value)
+ {
+ return GetDouble(niHSDIOProperties.DataTransferMaximumBandwidth, channel, out value);
+ }
+ ///
+ ///Specifies the maximum number of concurrent PCI Express read requests the high-speed digital device can issue.
+ /// When transferring data from computer memory to device onboard memory across the PCI Express bus, the high-speed digital device can issue multiple memory reads at the same time. In general, the larger the number of read requests, the more efficiently the device uses the bus. This efficiency is caused by the multiple read requests that keep data flowing, even in a PCI Express topology that has high latency due to PCI Express switches in the data path. Most NI devices can issue a large number of read requests (typically 8 or 16). By default, this attribute is set to the highest value the high-speed digital device supports.
+ /// If other devices in your system cannot tolerate long data latencies, it may be helpful to decrease the number of in-flight read requests the high-speed digital device issues. This change helps to reduce the amount of data the high-speed digital device reads at one time.
+ ///
+ ///
+ public int SetDataTransferMaximumInFlightReads(string channel, int value)
+ {
+ return SetInt32(niHSDIOProperties.DataTransferMaximumInFlightReads, channel, value);
+ }
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ public int GetDataTransferMaximumInFlightReads(string channel, out int value)
+ {
+ return GetInt32(niHSDIOProperties.DataTransferMaximumInFlightReads, channel, out value);
+ }
+ ///
+ ///Specifies the preferred size of the data field in a PCI Express read request packet. In general, the larger the packet size, the more efficiently the device uses the bus. By default, NI high-speed digital devices use the largest packet size allowed by the system. However, due to different system implementations, some systems may perform better with smaller packet sizes.
+ /// Recommended values for this attribute are powers of two between 64 and 512.
+ /// Note: In some cases, the high-speed digital device generates packets smaller than the preferred size you set with this attribute.
+ ///
+ ///
+ public int SetDataTransferPreferredPacketSize(string channel, int value)
+ {
+ return SetInt32(niHSDIOProperties.DataTransferPreferredPacketSize, channel, value);
+ }
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ public int GetDataTransferPreferredPacketSize(string channel, out int value)
+ {
+ return GetInt32(niHSDIOProperties.DataTransferPreferredPacketSize, channel, out value);
+ }
+ ///
+ ///This attribute specifies the action taken by NI-HSDIO when a channel is tristated. A tristate condition can occur during initial states, idle states, per cycle tristate, and static tristate. Selecting NIHSDIO_VAL_HIGH_IMPEDANCE sets the channel to a high-impedance state when tristated. To drive a termination voltage on a channel in a generation session, select NIHSDIO_VAL_DRIVE_TERMINATION_VOLTAGE. This attribute is valid only for generation sessions.
+ /// NOTE: If you set the NIHSDIO_ATTR_DATA_TERMINATION_MODE and NIHSDIO_ATTR_DATA_TRISTATE_MODE attributes to different values on the same channel, NI-HSDIO returns an error.
+ /// NOTE: This attribute is supported only on NI 6555/6556 devices.
+ ///
+ ///
+ public int SetDataTristateMode(string channel, int value)
+ {
+ return SetInt32(niHSDIOProperties.DataTristateMode, channel, value);
+ }
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ public int GetDataTristateMode(string channel, out int value)
+ {
+ return GetInt32(niHSDIOProperties.DataTristateMode, channel, out value);
+ }
+ ///
+ ///This attribute sets the high data voltage level for the session. For an acquisition session, this sets the Acquisition Voltage High Level. For a generation session, this sets the Generation Voltage High Level. This attribute applies to static and dynamic data operations.
+ /// NOTE: On the NI 6555/6556 devices, this attribute is per channel selectable and valid values range from –2 to 7, depending on the range selected with the NIHSDIO_ATTR_DATA_VOLTAGE_RANGE attribute.
+ /// NOTE: NI 656x devices do not support configuring voltage levels. NI-HSDIO returns an error if you use this attribute when programming those devices.
+ ///
+ ///
+ public int SetDataVoltageHighLevel(string channel, double value)
+ {
+ return SetDouble(niHSDIOProperties.DataVoltageHighLevel, channel, value);
+ }
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ public int GetDataVoltageHighLevel(string channel, out double value)
+ {
+ return GetDouble(niHSDIOProperties.DataVoltageHighLevel, channel, out value);
+ }
+ ///
+ ///This attribute sets the low data voltage level for the session. For an acquisition session, this attribute sets the low voltage threshold. For a generation session, this attribute sets the Generation Voltage Low Level. This attribute applies to static and dynamic data operations.
+ /// NOTE: On the NI 6555/6556 devices, this attribute is per channel selectable and valid values range from –2 to 7, depending on the range selected with the NIHSDIO_ATTR_DATA_VOLTAGE_RANGE attribute.
+ /// NOTE: NI 656x devices do not support configuring voltage levels. NI-HSDIO returns an error if you use this attribute when programming those devices.
+ ///
+ ///
+ public int SetDataVoltageLowLevel(string channel, double value)
+ {
+ return SetDouble(niHSDIOProperties.DataVoltageLowLevel, channel, value);
+ }
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ public int GetDataVoltageLowLevel(string channel, out double value)
+ {
+ return GetDouble(niHSDIOProperties.DataVoltageLowLevel, channel, out value);
+ }
+ ///
+ ///This attribute specifies the voltage range used for all voltages on the selected channel. You must use the same voltage range for all voltages on a channel in both acquisition and generation sessions, or NI-HSDIO returns an error. If you are using both acquisition and generation sessions in your application, when you set a voltage range in a session, NI-HSDIO automatically sets the same range in the other session. However, NI-HSDIO allows you to change the voltage range only in the original session in which you configured the voltage range. For example, if you select NIHSDIO_VAL_MINUS_2_TO_6_VOLTAGE_RANGE in your acquisition session, your generation session is configured automatically to the same range, but if you want to change the range to NIHSDIO_VAL_MINUS_1_TO_7_VOLTAGE_RANGE, you can do so only in the acquisition session. This attribute is valid for generation and acquisition sessions.
+ /// NOTE: Only NI 6555/6556 devices support this attribute.
+ ///
+ ///
+ public int SetDataVoltageRange(string channel, int value)
+ {
+ return SetInt32(niHSDIOProperties.DataVoltageRange, channel, value);
+ }
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ public int GetDataVoltageRange(string channel, out int value)
+ {
+ return GetInt32(niHSDIOProperties.DataVoltageRange, channel, out value);
+ }
+ ///
+ ///Specifies, in bytes, the size of a raw sample from the operation.
+ /// For NI 6544/6545/6547/6548/6555/6556 devices, this attribute is R/W for both acquisition and generation; but for all other NI HSDIO devices this attribute is R/W for acquisition and RO for generation.
+ ///
+ ///
+ public int SetDataWidth(string channel, int value)
+ {
+ return SetInt32(niHSDIOProperties.DataWidth, channel, value);
+ }
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ public int GetDataWidth(string channel, out int value)
+ {
+ return GetInt32(niHSDIOProperties.DataWidth, channel, out value);
+ }
+ ///
+ ///Specifies the active edge for the Advance trigger. This attribute is used only when NIHSDIO_ATTR_ADVANCE_TRIGGER_TYPE is set to NIHSDIO_VAL_DIGITAL_EDGE.
+ ///
+ ///
+ public int SetDigitalEdgeAdvanceTriggerEdge(string channel, int value)
+ {
+ return SetInt32(niHSDIOProperties.DigitalEdgeAdvanceTriggerEdge, channel, value);
+ }
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ public int GetDigitalEdgeAdvanceTriggerEdge(string channel, out int value)
+ {
+ return GetInt32(niHSDIOProperties.DigitalEdgeAdvanceTriggerEdge, channel, out value);
+ }
+ ///
+ ///Specifies the impedance on the channel confiugred for the digital edge Advance trigger. Valid values for this attribute vary by device. Refer to your device documentation for more information about the valid impedance settings.
+ /// This attribute is only set if the trigger is configured to use a PFI channel, and it is ignored if the trigger is configured for any other channel.
+ ///
+ ///
+ public int SetDigitalEdgeAdvanceTriggerImpedance(string channel, double value)
+ {
+ return SetDouble(niHSDIOProperties.DigitalEdgeAdvanceTriggerImpedance, channel, value);
+ }
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ public int GetDigitalEdgeAdvanceTriggerImpedance(string channel, out double value)
+ {
+ return GetDouble(niHSDIOProperties.DigitalEdgeAdvanceTriggerImpedance, channel, out value);
+ }
+ ///
+ ///Specifies the position where the Advance trigger is asserted, relative to the Sample clock. Trigger voltages and positions are only relevant if the trigger source is a front panel connector.
+ ///
+ ///
+ public int SetDigitalEdgeAdvanceTriggerPosition(string channel, int value)
+ {
+ return SetInt32(niHSDIOProperties.DigitalEdgeAdvanceTriggerPosition, channel, value);
+ }
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ public int GetDigitalEdgeAdvanceTriggerPosition(string channel, out int value)
+ {
+ return GetInt32(niHSDIOProperties.DigitalEdgeAdvanceTriggerPosition, channel, out value);
+ }
+ ///
+ ///Specifies the source terminal for the Advance trigger. This attribute is used only when NIHSDIO_ATTR_ADVANCE_TRIGGER_TYPE is set to NIHSDIO_VAL_DIGITAL_EDGE. You may specify any valid source terminal for this attribute. However, trigger voltages and positions are only relevant if the source of the trigger is from the front panel connectors.
+ ///
+ ///
+ public int SetDigitalEdgeAdvanceTriggerSource(string channel, string value)
+ {
+ return SetString(niHSDIOProperties.DigitalEdgeAdvanceTriggerSource, channel, value);
+ }
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ public int GetDigitalEdgeAdvanceTriggerSource(string channel, out string value)
+ {
+ return GetString(niHSDIOProperties.DigitalEdgeAdvanceTriggerSource, channel, out value);
+ }
+ ///
+ ///Specifies whether the Advance trigger terminal is configured for single-ended or LVDS operation. Valid values for this attribute vary by device. Refer to your device documentation to determine if your hardware supports LVDS operation.
+ ///
+ ///
+ public int SetDigitalEdgeAdvanceTriggerTerminalConfiguration(string channel, int value)
+ {
+ return SetInt32(niHSDIOProperties.DigitalEdgeAdvanceTriggerTerminalConfiguration, channel, value);
+ }
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ public int GetDigitalEdgeAdvanceTriggerTerminalConfiguration(string channel, out int value)
+ {
+ return GetInt32(niHSDIOProperties.DigitalEdgeAdvanceTriggerTerminalConfiguration, channel, out value);
+ }
+ ///
+ ///Specifies the active edge for the Reference trigger. This attribute is used when NIHSDIO_ATTR_REF_TRIGGER_TYPE is set to NIHSDIO_VAL_DIGITAL_EDGE.
+ /// This attribute is valid only for acquisition sessions.
+ ///
+ ///
+ public int SetDigitalEdgeRefTriggerEdge(string channel, int value)
+ {
+ return SetInt32(niHSDIOProperties.DigitalEdgeRefTriggerEdge, channel, value);
+ }
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ public int GetDigitalEdgeRefTriggerEdge(string channel, out int value)
+ {
+ return GetInt32(niHSDIOProperties.DigitalEdgeRefTriggerEdge, channel, out value);
+ }
+ ///
+ ///Specifies the impedance on the channel confiugred for the digital edge Reference trigger. Valid values for this attribute vary by device. Refer to your device documentation for more information about the valid impedance settings.
+ /// This attribute is only set if the trigger is configured to use a PFI channel, and it is ignored if the trigger is configured for any other channel.
+ ///
+ ///
+ public int SetDigitalEdgeRefTriggerImpedance(string channel, double value)
+ {
+ return SetDouble(niHSDIOProperties.DigitalEdgeRefTriggerImpedance, channel, value);
+ }
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ public int GetDigitalEdgeRefTriggerImpedance(string channel, out double value)
+ {
+ return GetDouble(niHSDIOProperties.DigitalEdgeRefTriggerImpedance, channel, out value);
+ }
+ ///
+ ///Specifies the position where the Reference trigger is latched, relative to the Sample clock. Trigger voltages and positions are only relevant if the trigger source is a front panel connector.
+ /// This attribute is valid only for acquisition sessions.
+ ///
+ ///
+ public int SetDigitalEdgeRefTriggerPosition(string channel, int value)
+ {
+ return SetInt32(niHSDIOProperties.DigitalEdgeRefTriggerPosition, channel, value);
+ }
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ public int GetDigitalEdgeRefTriggerPosition(string channel, out int value)
+ {
+ return GetInt32(niHSDIOProperties.DigitalEdgeRefTriggerPosition, channel, out value);
+ }
+ ///
+ ///Specifies the source terminal for the Reference trigger. This attribute is used only when NIHSDIO_ATTR_REF_TRIGGER_TYPE is set to NIHSDIO_VAL_DIGITAL_EDGE. You may specify any valid source terminal for this attribute. However, trigger voltages and positions are only relevant if the trigger source is a front panel connector.
+ ///
+ ///
+ public int SetDigitalEdgeRefTriggerSource(string channel, string value)
+ {
+ return SetString(niHSDIOProperties.DigitalEdgeRefTriggerSource, channel, value);
+ }
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ public int GetDigitalEdgeRefTriggerSource(string channel, out string value)
+ {
+ return GetString(niHSDIOProperties.DigitalEdgeRefTriggerSource, channel, out value);
+ }
+ ///
+ ///Specifies whether the Reference trigger terminal is configured for single-ended or LVDS operation. Valid values for this attribute vary by device. Refer to your device documentation to determine if your hardware supports LVDS operation.
+ ///
+ ///
+ public int SetDigitalEdgeRefTriggerTerminalConfiguration(string channel, int value)
+ {
+ return SetInt32(niHSDIOProperties.DigitalEdgeRefTriggerTerminalConfiguration, channel, value);
+ }
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ public int GetDigitalEdgeRefTriggerTerminalConfiguration(string channel, out int value)
+ {
+ return GetInt32(niHSDIOProperties.DigitalEdgeRefTriggerTerminalConfiguration, channel, out value);
+ }
+ ///
+ ///Specifies the active edge for the Script trigger. This attribute is used when NIHSDIO_ATTR_SCRIPT_TRIGGER_TYPE is set to NIHSDIO_VAL_DIGITAL_EDGE.
+ /// This attribute is valid only for generation sessions.
+ ///
+ ///
+ public int SetDigitalEdgeScriptTriggerEdge(string channel, int value)
+ {
+ return SetInt32(niHSDIOProperties.DigitalEdgeScriptTriggerEdge, channel, value);
+ }
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ public int GetDigitalEdgeScriptTriggerEdge(string channel, out int value)
+ {
+ return GetInt32(niHSDIOProperties.DigitalEdgeScriptTriggerEdge, channel, out value);
+ }
+ ///
+ ///Specifies the impedance on the channel configured for the digital edge Script trigger. Valid values for this attribute vary by device. Refer to your device documentation for more information about the valid impedance settings.
+ /// This attribute is only set if the trigger is configured to use a PFI channel, and it is ignored if the trigger is configured for any other channel.
+ ///
+ ///
+ public int SetDigitalEdgeScriptTriggerImpedance(string channel, double value)
+ {
+ return SetDouble(niHSDIOProperties.DigitalEdgeScriptTriggerImpedance, channel, value);
+ }
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ public int GetDigitalEdgeScriptTriggerImpedance(string channel, out double value)
+ {
+ return GetDouble(niHSDIOProperties.DigitalEdgeScriptTriggerImpedance, channel, out value);
+ }
+ ///
+ ///Specifies the source terminal for the Script trigger. This attribute is used when NIHSDIO_ATTR_SCRIPT_TRIGGER_TYPE is set to NIHSDIO_VAL_DIGITAL_EDGE. Trigger voltages and positions are only relevant if the source of the trigger is from the front panel connectors.
+ /// This attribute is valid only for generation sessions.
+ ///
+ ///
+ public int SetDigitalEdgeScriptTriggerSource(string channel, string value)
+ {
+ return SetString(niHSDIOProperties.DigitalEdgeScriptTriggerSource, channel, value);
+ }
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ public int GetDigitalEdgeScriptTriggerSource(string channel, out string value)
+ {
+ return GetString(niHSDIOProperties.DigitalEdgeScriptTriggerSource, channel, out value);
+ }
+ ///
+ ///Specifies whether the Script trigger terminal is configured for single-ended or LVDS operation. Valid values for this attribute vary by device. Refer to your device documentation to determine if your hardware supports LVDS operation.
+ ///
+ ///
+ public int SetDigitalEdgeScriptTriggerTerminalConfiguration(string channel, int value)
+ {
+ return SetInt32(niHSDIOProperties.DigitalEdgeScriptTriggerTerminalConfiguration, channel, value);
+ }
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ public int GetDigitalEdgeScriptTriggerTerminalConfiguration(string channel, out int value)
+ {
+ return GetInt32(niHSDIOProperties.DigitalEdgeScriptTriggerTerminalConfiguration, channel, out value);
+ }
+ ///
+ ///Specifies the active edge for the Start trigger. This attribute is used only when NIHSDIO_ATTR_START_TRIGGER_TYPE is set to NIHSDIO_VAL_DIGITAL_EDGE.
+ ///
+ ///
+ public int SetDigitalEdgeStartTriggerEdge(string channel, int value)
+ {
+ return SetInt32(niHSDIOProperties.DigitalEdgeStartTriggerEdge, channel, value);
+ }
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ public int GetDigitalEdgeStartTriggerEdge(string channel, out int value)
+ {
+ return GetInt32(niHSDIOProperties.DigitalEdgeStartTriggerEdge, channel, out value);
+ }
+ ///
+ ///Specifies the impedance on the channel confiugred for the digital edge Start trigger. Valid values for this attribute vary by device. Refer to your device documentation for more information about the valid impedance settings.
+ /// This attribute is only set if the trigger is configured to use a PFI channel, and it is ignored if the trigger is configured for any other channel.
+ ///
+ ///
+ public int SetDigitalEdgeStartTriggerImpedance(string channel, double value)
+ {
+ return SetDouble(niHSDIOProperties.DigitalEdgeStartTriggerImpedance, channel, value);
+ }
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ public int GetDigitalEdgeStartTriggerImpedance(string channel, out double value)
+ {
+ return GetDouble(niHSDIOProperties.DigitalEdgeStartTriggerImpedance, channel, out value);
+ }
+ ///
+ ///Specifies the position where the Start trigger is asserted, relative to the Sample clock. Trigger voltages and positions are only relevant if the trigger source is a front panel connector.
+ ///
+ ///
+ public int SetDigitalEdgeStartTriggerPosition(string channel, int value)
+ {
+ return SetInt32(niHSDIOProperties.DigitalEdgeStartTriggerPosition, channel, value);
+ }
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ public int GetDigitalEdgeStartTriggerPosition(string channel, out int value)
+ {
+ return GetInt32(niHSDIOProperties.DigitalEdgeStartTriggerPosition, channel, out value);
+ }
+ ///
+ ///Specifies the source terminal for the Start trigger. This attribute is used only when NIHSDIO_ATTR_START_TRIGGER_TYPE is set to NIHSDIO_VAL_DIGITAL_EDGE. You may specify any valid source terminal for this attribute. However, trigger voltages and positions are only relevant if the source of the trigger is from the front panel connectors.
+ ///
+ ///
+ public int SetDigitalEdgeStartTriggerSource(string channel, string value)
+ {
+ return SetString(niHSDIOProperties.DigitalEdgeStartTriggerSource, channel, value);
+ }
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ public int GetDigitalEdgeStartTriggerSource(string channel, out string value)
+ {
+ return GetString(niHSDIOProperties.DigitalEdgeStartTriggerSource, channel, out value);
+ }
+ ///
+ ///Specifies whether the Start trigger terminal is configured for single-ended or LVDS operation. Valid values for this attribute vary by device. Refer to your device documentation to determine if your hardware supports LVDS operation.
+ ///
+ ///
+ public int SetDigitalEdgeStartTriggerTerminalConfiguration(string channel, int value)
+ {
+ return SetInt32(niHSDIOProperties.DigitalEdgeStartTriggerTerminalConfiguration, channel, value);
+ }
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ public int GetDigitalEdgeStartTriggerTerminalConfiguration(string channel, out int value)
+ {
+ return GetInt32(niHSDIOProperties.DigitalEdgeStartTriggerTerminalConfiguration, channel, out value);
+ }
+ ///
+ ///Specifies the active edge for the Stop trigger. This attribute is used only when NIHSDIO_ATTR_STOP_TRIGGER_TYPE is set to NIHSDIO_VAL_DIGITAL_EDGE.
+ /// This attribute is valid only for generation sessions.
+ ///
+ ///
+ public int SetDigitalEdgeStopTriggerEdge(string channel, int value)
+ {
+ return SetInt32(niHSDIOProperties.DigitalEdgeStopTriggerEdge, channel, value);
+ }
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ public int GetDigitalEdgeStopTriggerEdge(string channel, out int value)
+ {
+ return GetInt32(niHSDIOProperties.DigitalEdgeStopTriggerEdge, channel, out value);
+ }
+ ///
+ ///Specifies the impedance on the channel confiugred for the digital edge Stop trigger.
+ /// This attribute is valid only for generation sessions.
+ /// This attribute is only set if the trigger is configured to use a PFI channel, and it is ignored if the trigger is configured for any other channel.
+ ///
+ ///
+ public int SetDigitalEdgeStopTriggerImpedance(string channel, double value)
+ {
+ return SetDouble(niHSDIOProperties.DigitalEdgeStopTriggerImpedance, channel, value);
+ }
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ public int GetDigitalEdgeStopTriggerImpedance(string channel, out double value)
+ {
+ return GetDouble(niHSDIOProperties.DigitalEdgeStopTriggerImpedance, channel, out value);
+ }
+ ///
+ ///Specifies the source terminal for the Stop trigger. This attribute is used only when NIHSDIO_ATTR_STOP_TRIGGER_TYPE is set to NIHSDIO_VAL_DIGITAL_EDGE. You may specify any valid source terminal for this attribute. However, trigger voltages and positions are only relevant if the source of the trigger is from the front panel connectors.
+ /// This attribute is valid only for generation sessions.
+ ///
+ ///
+ public int SetDigitalEdgeStopTriggerSource(string channel, string value)
+ {
+ return SetString(niHSDIOProperties.DigitalEdgeStopTriggerSource, channel, value);
+ }
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ public int GetDigitalEdgeStopTriggerSource(string channel, out string value)
+ {
+ return GetString(niHSDIOProperties.DigitalEdgeStopTriggerSource, channel, out value);
+ }
+ ///
+ ///Specifies that the Stop trigger terminal is configured for single-ended operations. Stop trigger does not support LVDS operations.
+ /// This attribute is valid only for generation sessions.
+ ///
+ ///
+ public int SetDigitalEdgeStopTriggerTerminalConfiguration(string channel, int value)
+ {
+ return SetInt32(niHSDIOProperties.DigitalEdgeStopTriggerTerminalConfiguration, channel, value);
+ }
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ public int GetDigitalEdgeStopTriggerTerminalConfiguration(string channel, out int value)
+ {
+ return GetInt32(niHSDIOProperties.DigitalEdgeStopTriggerTerminalConfiguration, channel, out value);
+ }
+ ///
+ ///Specifies the impedance on the channel confiugred for the digital level Pause trigger. Valid values for this attribute vary by device. Refer to your device documentation for more information about the valid impedance settings.
+ /// This attribute is only set if the trigger is configured to use a PFI channel, and it is ignored if the trigger is configured for any other channel.
+ ///
+ ///
+ public int SetDigitalLevelPauseTriggerImpedance(string channel, double value)
+ {
+ return SetDouble(niHSDIOProperties.DigitalLevelPauseTriggerImpedance, channel, value);
+ }
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ public int GetDigitalLevelPauseTriggerImpedance(string channel, out double value)
+ {
+ return GetDouble(niHSDIOProperties.DigitalLevelPauseTriggerImpedance, channel, out value);
+ }
+ ///
+ ///Specifies the position where the pause trigger is asserted, relative to the Sample clock. Trigger voltages and positions are only relevant if the trigger source is a front panel connector.
+ ///
+ ///
+ public int SetDigitalLevelPauseTriggerPosition(string channel, int value)
+ {
+ return SetInt32(niHSDIOProperties.DigitalLevelPauseTriggerPosition, channel, value);
+ }
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ public int GetDigitalLevelPauseTriggerPosition(string channel, out int value)
+ {
+ return GetInt32(niHSDIOProperties.DigitalLevelPauseTriggerPosition, channel, out value);
+ }
+ ///
+ ///Specifies the source terminal for the Pause trigger.
+ /// This attribute applies only to acquisition operations.
+ ///
+ ///
+ public int SetDigitalLevelPauseTriggerSource(string channel, string value)
+ {
+ return SetString(niHSDIOProperties.DigitalLevelPauseTriggerSource, channel, value);
+ }
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ public int GetDigitalLevelPauseTriggerSource(string channel, out string value)
+ {
+ return GetString(niHSDIOProperties.DigitalLevelPauseTriggerSource, channel, out value);
+ }
+ ///
+ ///Specifies whether the Pause trigger terminal is configured for single-ended or LVDS operation. Valid values for this attribute vary by device. Refer to your device documentation to determine if your hardware supports LVDS operation.
+ ///
+ ///
+ public int SetDigitalLevelPauseTriggerTerminalConfiguration(string channel, int value)
+ {
+ return SetInt32(niHSDIOProperties.DigitalLevelPauseTriggerTerminalConfiguration, channel, value);
+ }
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ public int GetDigitalLevelPauseTriggerTerminalConfiguration(string channel, out int value)
+ {
+ return GetInt32(niHSDIOProperties.DigitalLevelPauseTriggerTerminalConfiguration, channel, out value);
+ }
+ ///
+ ///Specifies the active level for pausing the dynamic operation.
+ ///
+ ///
+ public int SetDigitalLevelPauseTriggerWhen(string channel, int value)
+ {
+ return SetInt32(niHSDIOProperties.DigitalLevelPauseTriggerWhen, channel, value);
+ }
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ public int GetDigitalLevelPauseTriggerWhen(string channel, out int value)
+ {
+ return GetInt32(niHSDIOProperties.DigitalLevelPauseTriggerWhen, channel, out value);
+ }
+ ///
+ ///Specifies the impedance on the channel confiugred for the digital level Script trigger. Valid values for this attribute vary by device. Refer to your device documentation for more information about the valid impedance settings.
+ /// This attribute is only set if the trigger is configured to use a PFI channel, and it is ignored if the trigger is configured for any other channel.
+ ///
+ ///
+ public int SetDigitalLevelScriptTriggerImpedance(string channel, double value)
+ {
+ return SetDouble(niHSDIOProperties.DigitalLevelScriptTriggerImpedance, channel, value);
+ }
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ public int GetDigitalLevelScriptTriggerImpedance(string channel, out double value)
+ {
+ return GetDouble(niHSDIOProperties.DigitalLevelScriptTriggerImpedance, channel, out value);
+ }
+ ///
+ ///Specifies the source terminal for the Script trigger. This attribute is used when NIHSDIO_ATTR_SCRIPT_TRIGGER_TYPE is set to NIHSDIO_VAL_DIGITAL_LEVEL.
+ /// This attribute is valid only for generation sessions.
+ ///
+ ///
+ public int SetDigitalLevelScriptTriggerSource(string channel, string value)
+ {
+ return SetString(niHSDIOProperties.DigitalLevelScriptTriggerSource, channel, value);
+ }
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ public int GetDigitalLevelScriptTriggerSource(string channel, out string value)
+ {
+ return GetString(niHSDIOProperties.DigitalLevelScriptTriggerSource, channel, out value);
+ }
+ ///
+ ///Specifies whether the Script trigger terminal is configured for single-ended or LVDS operation. Valid values for this attribute vary by device. Refer to your device documentation to determine if your hardware supports LVDS operation.
+ ///
+ ///
+ public int SetDigitalLevelScriptTriggerTerminalConfiguration(string channel, int value)
+ {
+ return SetInt32(niHSDIOProperties.DigitalLevelScriptTriggerTerminalConfiguration, channel, value);
+ }
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ public int GetDigitalLevelScriptTriggerTerminalConfiguration(string channel, out int value)
+ {
+ return GetInt32(niHSDIOProperties.DigitalLevelScriptTriggerTerminalConfiguration, channel, out value);
+ }
+ ///
+ ///Specifies the active level for the Script trigger. This attribute is used when NIHSDIO_ATTR_SCRIPT_TRIGGER_TYPE is set to NIHSDIO_VAL_DIGITAL_LEVEL.
+ /// This attribute is valid only for generation sessions.
+ ///
+ ///
+ public int SetDigitalLevelScriptTriggerWhen(string channel, int value)
+ {
+ return SetInt32(niHSDIOProperties.DigitalLevelScriptTriggerWhen, channel, value);
+ }
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ public int GetDigitalLevelScriptTriggerWhen(string channel, out int value)
+ {
+ return GetInt32(niHSDIOProperties.DigitalLevelScriptTriggerWhen, channel, out value);
+ }
+ ///
+ ///Enables the device for Direct DMA writes.
+ /// This attribute is valid only for dynamic generation sessions.
+ ///
+ ///
+ public int SetDirectDmaEnabled(string channel, bool value)
+ {
+ return SetBoolean(niHSDIOProperties.DirectDmaEnabled, channel, value);
+ }
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ public int GetDirectDmaEnabled(string channel, out bool value)
+ {
+ return GetBoolean(niHSDIOProperties.DirectDmaEnabled, channel, out value);
+ }
+ ///
+ ///Specifies the start address for the direct DMA window.
+ ///
+ ///
+ public int SetDirectDmaWindowAddress(string channel, int value)
+ {
+ return SetInt32(niHSDIOProperties.DirectDmaWindowAddress, channel, value);
+ }
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ public int GetDirectDmaWindowAddress(string channel, out int value)
+ {
+ return GetInt32(niHSDIOProperties.DirectDmaWindowAddress, channel, out value);
+ }
+ ///
+ ///Specifies the direct DMA window size (in bytes).
+ ///
+ ///
+ public int SetDirectDmaWindowSize(string channel, int value)
+ {
+ return SetInt32(niHSDIOProperties.DirectDmaWindowSize, channel, value);
+ }
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ public int GetDirectDmaWindowSize(string channel, out int value)
+ {
+ return GetInt32(niHSDIOProperties.DirectDmaWindowSize, channel, out value);
+ }
+ ///
+ ///Specifies the drive type for generation
+ /// 655x and 654x devices can generate data as active drive (drive 0 and drive 1) or open collector data (drive 0 and tristate). This attribute is valid only for generation sessions.
+ ///
+ ///
+ public int SetDriveType(string channel, int value)
+ {
+ return SetInt32(niHSDIOProperties.DriveType, channel, value);
+ }
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ public int GetDriveType(string channel, out int value)
+ {
+ return GetInt32(niHSDIOProperties.DriveType, channel, out value);
+ }
+ ///
+ ///Assigns channels for dynamic operation. The group of dynamic channels is changed each time this attribute is set. For example, setting this attribute to "0-10" and then setting it to "5-8" results in only channels 5-8 being assigned to dynamic. Channels 0-4 and 9-10 are no longer assigned to the dynamic operation by the second configuration.
+ /// Setting an empty string to this attribute configures ALL channels for dynamic. Writing "None" removes all channels from the dynamic operation. The session must be committed before changes to this attribute take affect (refer to niHSDIO_CommitDynamic for more information on committing a session).
+ /// You can configure a channel for more than one simultaneous operation. A channel can be simultaneously configured for the following operations:
+ /// - Dynamic generation and any (static and/or dynamic) acquisition
+ /// - Static generation and any (static and/or dynamic) acquisition
+ /// - Both static and dynamic acquisition
+ /// NOTE: You cannot configure a particular channel for simultaneous dynamic and static generation.
+ /// Unconfiguring a dynamic generation channel frees that channel to be reconfigured for static generation. Unconfiguring a dynamic generation channel does not stop the channel from driving its current value—any value already written to the channel continues to be driven.
+ /// Syntax examples:
+ /// "2-15" or "15-2" set channels 2 through 15 for dynamic operation
+ /// "0, 3, 10" or "3, 10, 0" set channels 0, 3, and 10 for dynamic operation
+ /// "" (empty string) sets all channels for dynamic operation
+ /// "None" removes all channels from dynamic operation.
+ ///
+ ///
+ public int SetDynamicChannels(string channel, string value)
+ {
+ return SetString(niHSDIOProperties.DynamicChannels, channel, value);
+ }
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ public int GetDynamicChannels(string channel, out string value)
+ {
+ return GetString(niHSDIOProperties.DynamicChannels, channel, out value);
+ }
+ ///
+ ///Specifies the destination terminal for the End of Record event. Event voltages and positions are only relevant if the destination of the event is a front panel connector.
+ /// This attribute is valid only for acquisition sessions.
+ ///
+ ///
+ public int SetEndOfRecordEventOutputTerminal(string channel, string value)
+ {
+ return SetString(niHSDIOProperties.EndOfRecordEventOutputTerminal, channel, value);
+ }
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ public int GetEndOfRecordEventOutputTerminal(string channel, out string value)
+ {
+ return GetString(niHSDIOProperties.EndOfRecordEventOutputTerminal, channel, out value);
+ }
+ ///
+ ///Specifies the output polarity of the End of Record event. This attribute is valid only for acquisition sessions.
+ ///
+ ///
+ public int SetEndOfRecordEventPulsePolarity(string channel, int value)
+ {
+ return SetInt32(niHSDIOProperties.EndOfRecordEventPulsePolarity, channel, value);
+ }
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ public int GetEndOfRecordEventPulsePolarity(string channel, out int value)
+ {
+ return GetInt32(niHSDIOProperties.EndOfRecordEventPulsePolarity, channel, out value);
+ }
+ ///
+ ///Specifies whether the End of Record event terminal is configured for single-ended or LVDS operation. Valid values for this attribute vary by device. Refer to your device documentation to determine if your hardware supports LVDS operation.
+ ///
+ ///
+ public int SetEndOfRecordEventTerminalConfiguration(string channel, int value)
+ {
+ return SetInt32(niHSDIOProperties.EndOfRecordEventTerminalConfiguration, channel, value);
+ }
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ public int GetEndOfRecordEventTerminalConfiguration(string channel, out int value)
+ {
+ return GetInt32(niHSDIOProperties.EndOfRecordEventTerminalConfiguration, channel, out value);
+ }
+ ///
+ ///This attribute specifies the delay after the Sample clock rising edge when the device initiates an event. The value of this attribute is added to the value of the NIHSDIO_ATTR_EVENT_POSITION_DELAY attribute to determine the total delay. Unlike the NIHSDIO_ATTR_EVENT_POSITION_DELAY attribute, this attribute is specified in seconds. Valid values, in seconds, depend on your clock rate and are represented by the equation –2(1/f) to +3(1/f), where f is the frequency of your clock rate. The default value is 0.
+ /// NOTE: Only NI 6555/6556 devices support this attribute.
+ ///
+ ///
+ public int SetEventDeskew(string channel, double value)
+ {
+ return SetDouble(niHSDIOProperties.EventDeskew, channel, value);
+ }
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ public int GetEventDeskew(string channel, out double value)
+ {
+ return GetDouble(niHSDIOProperties.EventDeskew, channel, out value);
+ }
+ ///
+ ///This attribute specifies the delay after the Sample clock rising edge when the device initiates an event. Event delay is expressed as a fraction of the clock period (for example, a fraction of 1/Sample clock rate). Valid values range from –1 to 2 clock cycles in increments of 0.001 cycles. The default value is 0.
+ /// NOTE: Only NI 6555/6556 devices support this attribute.
+ ///
+ ///
+ public int SetEventPositionDelay(string channel, double value)
+ {
+ return SetDouble(niHSDIOProperties.EventPositionDelay, channel, value);
+ }
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ public int GetEventPositionDelay(string channel, out double value)
+ {
+ return GetDouble(niHSDIOProperties.EventPositionDelay, channel, out value);
+ }
+ ///
+ ///This attribute sets the high event voltage level for the session. If you do not explicitly set this attribute, NI-HSDIO assumes the same value as NIHSDIO_ATTR_DATA_VOLTAGE_HIGH_LEVEL for the generation session.
+ /// For NI 6555/6556 devices, this attribute is subject to the following restrictions: this attribute is supported only in generation sessions, only PFI 1 and PFI 2 support this attribute (PFI 0, PFI 3, and PFI 24-31 are always set to the 3.3V logic family), valid values range from –2 to 7, depending on the range selected with the NIHSDIO_ATTR_EVENT_VOLTAGE_RANGE attribute, and the default value is 3.3 V.
+ ///
+ ///
+ public int SetEventVoltageHighLevel(string channel, double value)
+ {
+ return SetDouble(niHSDIOProperties.EventVoltageHighLevel, channel, value);
+ }
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ public int GetEventVoltageHighLevel(string channel, out double value)
+ {
+ return GetDouble(niHSDIOProperties.EventVoltageHighLevel, channel, out value);
+ }
+ ///
+ ///This attribute sets the low event voltage level for the session. If you do not explicitly set this attribute, NI-HSDIO assumes the same value as NIHSDIO_ATTR_DATA_VOLTAGE_LOW_LEVEL for the generation session.
+ /// For NI 6555/6556 devices, this attribute is subject to the following restrictions: this attribute is supported only in generation sessions, only PFI 1 and PFI 2 support this attribute (PFI 0, PFI 3, and PFI 24-31 are always set to the 3.3V logic family), valid values range from –2 to 7, depending on the range selected with the NIHSDIO_ATTR_EVENT_VOLTAGE_RANGE attribute, and the default value is 0 V.
+ ///
+ ///
+ public int SetEventVoltageLowLevel(string channel, double value)
+ {
+ return SetDouble(niHSDIOProperties.EventVoltageLowLevel, channel, value);
+ }
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ public int GetEventVoltageLowLevel(string channel, out double value)
+ {
+ return GetDouble(niHSDIOProperties.EventVoltageLowLevel, channel, out value);
+ }
+ ///
+ ///This attribute specifies the voltage range used for all event voltages on all PFI channels that support voltage configuration. Only PFI 1 and PFI 2 support voltage configuration. This attribute is valid only for generation sessions.
+ /// NOTE: Only NI 6555/6556 devices support this attribute.
+ ///
+ ///
+ public int SetEventVoltageRange(string channel, int value)
+ {
+ return SetInt32(niHSDIOProperties.EventVoltageRange, channel, value);
+ }
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ public int GetEventVoltageRange(string channel, out int value)
+ {
+ return GetInt32(niHSDIOProperties.EventVoltageRange, channel, out value);
+ }
+ ///
+ ///Specifies the destination terminal for exporting the Advance trigger. Event voltages and positions are only relevant if the destination of the event is a front panel connector.
+ ///
+ ///
+ public int SetExportedAdvanceTriggerOutputTerminal(string channel, string value)
+ {
+ return SetString(niHSDIOProperties.ExportedAdvanceTriggerOutputTerminal, channel, value);
+ }
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ public int GetExportedAdvanceTriggerOutputTerminal(string channel, out string value)
+ {
+ return GetString(niHSDIOProperties.ExportedAdvanceTriggerOutputTerminal, channel, out value);
+ }
+ ///
+ ///Specifies whether the Advance trigger output terminal is configured for single-ended or LVDS operation. Valid values for this attribute vary by device. Refer to your device documentation to determine if your hardware supports LVDS operation.
+ ///
+ ///
+ public int SetExportedAdvanceTriggerTerminalConfiguration(string channel, int value)
+ {
+ return SetInt32(niHSDIOProperties.ExportedAdvanceTriggerTerminalConfiguration, channel, value);
+ }
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ public int GetExportedAdvanceTriggerTerminalConfiguration(string channel, out int value)
+ {
+ return GetInt32(niHSDIOProperties.ExportedAdvanceTriggerTerminalConfiguration, channel, out value);
+ }
+ ///
+ ///Use this attribute to export the Onboard Reference clock to the specified terminal. This attribute is valid only for PCI devices.
+ ///
+ ///
+ public int SetExportedOnboardRefClockOutputTerminal(string channel, string value)
+ {
+ return SetString(niHSDIOProperties.ExportedOnboardRefClockOutputTerminal, channel, value);
+ }
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ public int GetExportedOnboardRefClockOutputTerminal(string channel, out string value)
+ {
+ return GetString(niHSDIOProperties.ExportedOnboardRefClockOutputTerminal, channel, out value);
+ }
+ ///
+ ///Specifies the destination terminal for the exported Pause trigger. Event voltages and positions are only relevant if the destination of the event is one of the front panel connectors.
+ /// This attribute is valid only for generation sessions.
+ ///
+ ///
+ public int SetExportedPauseTriggerOutputTerminal(string channel, string value)
+ {
+ return SetString(niHSDIOProperties.ExportedPauseTriggerOutputTerminal, channel, value);
+ }
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ public int GetExportedPauseTriggerOutputTerminal(string channel, out string value)
+ {
+ return GetString(niHSDIOProperties.ExportedPauseTriggerOutputTerminal, channel, out value);
+ }
+ ///
+ ///Specifies whether the Pause trigger output terminal is configured for single-ended or LVDS operation. Valid values for this attribute vary by device. Refer to your device documentation to determine if your hardware supports LVDS operation.
+ ///
+ ///
+ public int SetExportedPauseTriggerTerminalConfiguration(string channel, int value)
+ {
+ return SetInt32(niHSDIOProperties.ExportedPauseTriggerTerminalConfiguration, channel, value);
+ }
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ public int GetExportedPauseTriggerTerminalConfiguration(string channel, out int value)
+ {
+ return GetInt32(niHSDIOProperties.ExportedPauseTriggerTerminalConfiguration, channel, out value);
+ }
+ ///
+ ///Use this attribute to export the Reference clock to the specified terminal.
+ ///
+ ///
+ public int SetExportedRefClockOutputTerminal(string channel, string value)
+ {
+ return SetString(niHSDIOProperties.ExportedRefClockOutputTerminal, channel, value);
+ }
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ public int GetExportedRefClockOutputTerminal(string channel, out string value)
+ {
+ return GetString(niHSDIOProperties.ExportedRefClockOutputTerminal, channel, out value);
+ }
+ ///
+ ///Specifies the destination terminal for exporting the Reference trigger. Event voltages and positions are only relevant if the destination of the event is a front panel connector.
+ /// This attribute is valid only for acquisition sessions.
+ ///
+ ///
+ public int SetExportedRefTriggerOutputTerminal(string channel, string value)
+ {
+ return SetString(niHSDIOProperties.ExportedRefTriggerOutputTerminal, channel, value);
+ }
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ public int GetExportedRefTriggerOutputTerminal(string channel, out string value)
+ {
+ return GetString(niHSDIOProperties.ExportedRefTriggerOutputTerminal, channel, out value);
+ }
+ ///
+ ///Specifies whether the exported Reference trigger output terminal is configured for single-ended or LVDS operation. Valid values for this attribute vary by device. Refer to your device documentation to determine if your hardware supports LVDS operation.
+ ///
+ ///
+ public int SetExportedRefTriggerTerminalConfiguration(string channel, int value)
+ {
+ return SetInt32(niHSDIOProperties.ExportedRefTriggerTerminalConfiguration, channel, value);
+ }
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ public int GetExportedRefTriggerTerminalConfiguration(string channel, out int value)
+ {
+ return GetInt32(niHSDIOProperties.ExportedRefTriggerTerminalConfiguration, channel, out value);
+ }
+ ///
+ ///Use this attribute to specify the delay of the exported Sample clock relative to the Sample clock used by the device. This attribute is relevant only when NIHSDIO_ATTR_EXPORTED_SAMPLE_CLOCK_MODE is set to NIHSDIO_VAL_DELAYED. Otherwise, this attribute is ignored. This attribute is specified as fraction of the Sample clock period, that is, as fraction of (1/NIHSDIO_ATTR_SAMPLE_CLOCK_RATE). On NI 6544/6545/6547/6548 devices, this attribute is not supported for acquisition.
+ ///
+ ///
+ public int SetExportedSampleClockDelay(string channel, double value)
+ {
+ return SetDouble(niHSDIOProperties.ExportedSampleClockDelay, channel, value);
+ }
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ public int GetExportedSampleClockDelay(string channel, out double value)
+ {
+ return GetDouble(niHSDIOProperties.ExportedSampleClockDelay, channel, out value);
+ }
+ ///
+ ///Use this attribute to specify the position of the exported Sample clock relative to the Sample clock used by the device. When the Sample clock rate is set to less than 25 MS/s, this attribute must not be set to NIHSDIO_VAL_DELAYED.
+ /// NOTE: NI 6544/6545/6547/6548 devices support delay at any onboard clock rate, and also with external clock rates greater than 20 MHz.
+ ///
+ ///
+ public int SetExportedSampleClockMode(string channel, int value)
+ {
+ return SetInt32(niHSDIOProperties.ExportedSampleClockMode, channel, value);
+ }
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ public int GetExportedSampleClockMode(string channel, out int value)
+ {
+ return GetInt32(niHSDIOProperties.ExportedSampleClockMode, channel, out value);
+ }
+ ///
+ ///Use this attribute to offset the exported clock by a fixed time. Refer to the Dynamic Generation Timing Diagrams for your device for more information about changing this value.
+ /// Valid values for this attribute are 2.5e-9 and 0 for the NI 6541/6542/6551/6552 devices, 1.65e-9 for the NI 6544/6545/6547/6548 devices, 2.4e-9 and 0 for the NI 6555/6556 devices, and 1.6e-9 for the NI 656X devices. The units are in seconds.
+ ///
+ ///
+ public int SetExportedSampleClockOffset(string channel, double value)
+ {
+ return SetDouble(niHSDIOProperties.ExportedSampleClockOffset, channel, value);
+ }
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ public int GetExportedSampleClockOffset(string channel, out double value)
+ {
+ return GetDouble(niHSDIOProperties.ExportedSampleClockOffset, channel, out value);
+ }
+ ///
+ ///Use this attribute to export the Sample clock to the specified terminal.
+ ///
+ ///
+ public int SetExportedSampleClockOutputTerminal(string channel, string value)
+ {
+ return SetString(niHSDIOProperties.ExportedSampleClockOutputTerminal, channel, value);
+ }
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ public int GetExportedSampleClockOutputTerminal(string channel, out string value)
+ {
+ return GetString(niHSDIOProperties.ExportedSampleClockOutputTerminal, channel, out value);
+ }
+ ///
+ ///Use this attribute to specify the output terminals for the exported Script trigger. Setting this attribute to an empty string means that when you commit the session, the signal is removed from the previously configured terminal and, if possible, the terminal is tristated. Event voltages and positions are only relevant if the destination of the event is a front panel connector.
+ /// This attribute is valid only for generation sessions.
+ ///
+ ///
+ public int SetExportedScriptTriggerOutputTerminal(string channel, string value)
+ {
+ return SetString(niHSDIOProperties.ExportedScriptTriggerOutputTerminal, channel, value);
+ }
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ public int GetExportedScriptTriggerOutputTerminal(string channel, out string value)
+ {
+ return GetString(niHSDIOProperties.ExportedScriptTriggerOutputTerminal, channel, out value);
+ }
+ ///
+ ///Specifies whether the Script trigger output terminal is configured for single-ended or LVDS operation. Valid values for this attribute vary by device. Refer to your device documentation to determine if your hardware supports LVDS operation.
+ ///
+ ///
+ public int SetExportedScriptTriggerTerminalConfiguration(string channel, int value)
+ {
+ return SetInt32(niHSDIOProperties.ExportedScriptTriggerTerminalConfiguration, channel, value);
+ }
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ public int GetExportedScriptTriggerTerminalConfiguration(string channel, out int value)
+ {
+ return GetInt32(niHSDIOProperties.ExportedScriptTriggerTerminalConfiguration, channel, out value);
+ }
+ ///
+ ///Specifies the destination terminal for exporting the Start trigger. Event voltages and positions are only relevant if the destination of the event is a front panel connector.
+ ///
+ ///
+ public int SetExportedStartTriggerOutputTerminal(string channel, string value)
+ {
+ return SetString(niHSDIOProperties.ExportedStartTriggerOutputTerminal, channel, value);
+ }
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ public int GetExportedStartTriggerOutputTerminal(string channel, out string value)
+ {
+ return GetString(niHSDIOProperties.ExportedStartTriggerOutputTerminal, channel, out value);
+ }
+ ///
+ ///Specifies the terminal configuration for the exported Start trigger terminal. Valid values for this attribute vary by device. Refer to your device documentation to determine if your hardware supports LVDS operation.
+ ///
+ ///
+ public int SetExportedStartTriggerTerminalConfiguration(string channel, int value)
+ {
+ return SetInt32(niHSDIOProperties.ExportedStartTriggerTerminalConfiguration, channel, value);
+ }
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ public int GetExportedStartTriggerTerminalConfiguration(string channel, out int value)
+ {
+ return GetInt32(niHSDIOProperties.ExportedStartTriggerTerminalConfiguration, channel, out value);
+ }
+ ///
+ ///Specifies the destination terminal for exporting the Stop trigger. Event voltages and positions are only relevant if the destination of the event is a front panel connector.
+ ///
+ ///
+ public int SetExportedStopTriggerOutputTerminal(string channel, string value)
+ {
+ return SetString(niHSDIOProperties.ExportedStopTriggerOutputTerminal, channel, value);
+ }
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ public int GetExportedStopTriggerOutputTerminal(string channel, out string value)
+ {
+ return GetString(niHSDIOProperties.ExportedStopTriggerOutputTerminal, channel, out value);
+ }
+ ///
+ ///Specifies that the Stop trigger output terminal is configured for single-ended operations. This attribute is valid only for generation sessions.
+ ///
+ ///
+ public int SetExportedStopTriggerTerminalConfiguration(string channel, int value)
+ {
+ return SetInt32(niHSDIOProperties.ExportedStopTriggerTerminalConfiguration, channel, value);
+ }
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ public int GetExportedStopTriggerTerminalConfiguration(string channel, out int value)
+ {
+ return GetInt32(niHSDIOProperties.ExportedStopTriggerTerminalConfiguration, channel, out value);
+ }
+ ///
+ ///Use this attribute to query how many acquired samples remain in onboard memory. This attribute is used with NIHSDIO_ATTR_FETCH_OFFSET and NIHSDIO_FETCH_RELATIVE_TO. This attribute returns the number of samples available from the specified relativeTo and offset.
+ /// This attribute is valid only for acquisition sessions.
+ ///
+ ///
+ public int GetFetchBacklog(string channel, out int value)
+ {
+ return GetInt32(niHSDIOProperties.FetchBacklog, channel, out value);
+ }
+ ///
+ ///Offset in samples to start fetching acquired waveform data. The offset is applied relative to the NIHSDIO_ATTR_FETCH_RELATIVE_TO position. Offset can be a positive or negative value.
+ /// If the specified offset would cause the fetch to exceed the end of the waveform, NI-HSDIO returns a data overwrite error. If the selected offset would cause the fetch location to occur before the start of the waveform, the fetch location is coerced to the beginning of the waveform.
+ /// This attribute is valid only for acquisition sessions.
+ ///
+ ///
+ public int SetFetchOffset(string channel, int value)
+ {
+ return SetInt32(niHSDIOProperties.FetchOffset, channel, value);
+ }
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ public int GetFetchOffset(string channel, out int value)
+ {
+ return GetInt32(niHSDIOProperties.FetchOffset, channel, out value);
+ }
+ ///
+ ///Specifies the absolute location within the acquired record from which to begin fetching. The default value is NIHSDIO_VAL_CURRENT_READ_POSITION. If the Reference trigger is enabled, the read position is initially set to the first pretrigger sample. If the Reference trigger is disabled, the read position is initially set to the first sample acquired. After every fetch, the read position moves to the sample immediately after the last fetched sample. Thus, if you call fetch multiple times and NIHSDIO_ATTR_FETCH_RELATIVE_TO is set to NIHSDIO_VAL_CURRENT_READ_POSITION, each fetch retrieves a different part of the record. If NIHSDIO_ATTR_FETCH_RELATIVE_TO is set to any other value, you must modify NIHSDIO_ATTR_FETCH_OFFSET between fetches to fetch different parts of the record.
+ ///
+ ///
+ public int SetFetchRelativeTo(string channel, int value)
+ {
+ return SetInt32(niHSDIOProperties.FetchRelativeTo, channel, value);
+ }
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ public int GetFetchRelativeTo(string channel, out int value)
+ {
+ return GetInt32(niHSDIOProperties.FetchRelativeTo, channel, out value);
+ }
+ ///
+ ///Use this attribute to specify whether to generate the waveform specified by NIHSDIO_ATTR_WAVEFORM_TO_GENERATE or the script specified by NIHSDIO_ATTR_SCRIPT_TO_GENERATE upon calling niHSDIO_Initiate.
+ /// This attribute is valid only for generation sessions.
+ ///
+ ///
+ public int SetGenerationMode(string channel, int value)
+ {
+ return SetInt32(niHSDIOProperties.GenerationMode, channel, value);
+ }
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ public int GetGenerationMode(string channel, out int value)
+ {
+ return GetInt32(niHSDIOProperties.GenerationMode, channel, out value);
+ }
+ ///
+ ///Returns an aggregate bit error mask. If a channel had a hardware compare sample error at any point in the execution, the bit corresponding to that channel is enabled. Use this property to quickly figure out which channel reported a sample error independently of the state of the hardware compare FIFO.
+ ///
+ ///
+ public int GetHwcCumulativeErrorBits(string channel, out int value)
+ {
+ return GetInt32(niHSDIOProperties.HwcCumulativeErrorBits, channel, out value);
+ }
+ ///
+ ///Specifies whether the device stores and counts errors when the same error appears in consecutive samples. If this attribute is set to VI_TRUE, the device only counts distinct errors, which means an error where the actual and expected response are identical. The niHSDIO_HWC_FetchSampleErrors function returns the number of clock cycles for which the repeated error occurred.
+ /// This attribute is helpful if your NI device clock rate is significantly faster than your DUT clock rate. In this case, one error from the DUT could result in several identical errors on the device.
+ ///
+ ///
+ public int SetHwcFilterRepeatedSampleErrors(string channel, bool value)
+ {
+ return SetBoolean(niHSDIOProperties.HwcFilterRepeatedSampleErrors, channel, value);
+ }
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ public int GetHwcFilterRepeatedSampleErrors(string channel, out bool value)
+ {
+ return GetBoolean(niHSDIOProperties.HwcFilterRepeatedSampleErrors, channel, out value);
+ }
+ ///
+ ///Returns the total number of sample errors since the acquisition was initiated. Use this attribute, along with NIHSDIO_ATTR_HWC_SAMPLES_COMPARED, to calculate the sample error rate.
+ ///
+ ///
+ public int GetHwcNumSampleErrors(string channel, out int value)
+ {
+ return GetInt32(niHSDIOProperties.HwcNumSampleErrors, channel, out value);
+ }
+ ///
+ ///Returns the number of sample errors available you can read using the niHSDIO_HWC_FetchSampleErrors function.
+ ///
+ ///
+ public int GetHwcSampleErrorBacklog(string channel, out int value)
+ {
+ return GetInt32(niHSDIOProperties.HwcSampleErrorBacklog, channel, out value);
+ }
+ ///
+ ///Returns whether the buffer used to store sample errors has overflowed. If the buffer overflows, the hardware stops storing error information for further errors, but it continues to compare data and count the sample errors encountered.
+ /// You can remove sample errors from the FIFO using the niHSDIO_HWC_FetchSampleErrors function. Removing sample errors creates room for additional sample errors to be stored in the FIFO.
+ ///
+ ///
+ public int GetHwcSampleErrorBufferOverflowed(string channel, out bool value)
+ {
+ return GetBoolean(niHSDIOProperties.HwcSampleErrorBufferOverflowed, channel, out value);
+ }
+ ///
+ ///Specifies the destination terminal for the Sample Error event. Event voltages and positions are only relevant if the destination of the event is a front panel connector.
+ ///
+ ///
+ public int SetHwcSampleErrorEventOutputTerminal(string channel, string value)
+ {
+ return SetString(niHSDIOProperties.HwcSampleErrorEventOutputTerminal, channel, value);
+ }
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ public int GetHwcSampleErrorEventOutputTerminal(string channel, out string value)
+ {
+ return GetString(niHSDIOProperties.HwcSampleErrorEventOutputTerminal, channel, out value);
+ }
+ ///
+ ///Returns the total number of samples compared since the acquisition was initiated. Use this attribute, along with NIHSDIO_ATTR_HWC_NUM_SAMPLE_ERRORS, to calculate sample error rate.
+ ///
+ ///
+ public int GetHwcSamplesCompared(string channel, out double value)
+ {
+ return GetDouble(niHSDIOProperties.HwcSamplesCompared, channel, out value);
+ }
+ ///
+ ///Specifies the idle state for a channel.
+ /// A dynamic generation operation may be idle when the operation completes normally, when the operation pauses, or when it terminates because of an underflow error.
+ /// This attribute is valid only for generation sessions.
+ ///
+ ///
+ public int SetIdleState(string channel, int value)
+ {
+ return SetInt32(niHSDIOProperties.IdleState, channel, value);
+ }
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ public int GetIdleState(string channel, out int value)
+ {
+ return GetInt32(niHSDIOProperties.IdleState, channel, out value);
+ }
+ ///
+ ///Specifies the channel state after the session is initiated but before the first waveform sample is generated. The channel changes to the Initial state after the data operation has been initiated. When the Start trigger occurs, the Initial state is replaced by the first sample in the waveform.
+ /// This attribute is valid only for generation sessions.
+ ///
+ ///
+ public int SetInitialState(string channel, int value)
+ {
+ return SetInt32(niHSDIOProperties.InitialState, channel, value);
+ }
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ public int GetInitialState(string channel, out int value)
+ {
+ return GetInt32(niHSDIOProperties.InitialState, channel, out value);
+ }
+ ///
+ ///Use this attribute to change input impedance for the data channels. Refer to the device documentation for more information about input impedance.
+ /// Valid values for this attribute vary by device. Refer to your device documentation for more information on the supported impedance values. The units are in ohms.
+ ///
+ ///
+ public int SetInputImpedance(string channel, double value)
+ {
+ return SetDouble(niHSDIOProperties.InputImpedance, channel, value);
+ }
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ public int GetInputImpedance(string channel, out double value)
+ {
+ return GetDouble(niHSDIOProperties.InputImpedance, channel, out value);
+ }
+ ///
+ ///Specifies the destination terminal for the Marker event. Event voltages and positions are only relevant if the destination of the event is a front panel connector.
+ /// This attribute is valid only for generation sessions.
+ ///
+ ///
+ public int SetMarkerEventOutputTerminal(string channel, string value)
+ {
+ return SetString(niHSDIOProperties.MarkerEventOutputTerminal, channel, value);
+ }
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ public int GetMarkerEventOutputTerminal(string channel, out string value)
+ {
+ return GetString(niHSDIOProperties.MarkerEventOutputTerminal, channel, out value);
+ }
+ ///
+ ///Use this attribute to specify the position of the event relative to the Sample clock. Event voltages and positions are only relevant if the destination of the event is a front panel connector.
+ /// This attribute is valid only for generation sessions.
+ ///
+ ///
+ public int SetMarkerEventPosition(string channel, int value)
+ {
+ return SetInt32(niHSDIOProperties.MarkerEventPosition, channel, value);
+ }
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ public int GetMarkerEventPosition(string channel, out int value)
+ {
+ return GetInt32(niHSDIOProperties.MarkerEventPosition, channel, out value);
+ }
+ ///
+ ///Specifies the output polarity of the Marker event.
+ /// This attribute is valid only for generation sessions.
+ ///
+ ///
+ public int SetMarkerEventPulsePolarity(string channel, int value)
+ {
+ return SetInt32(niHSDIOProperties.MarkerEventPulsePolarity, channel, value);
+ }
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ public int GetMarkerEventPulsePolarity(string channel, out int value)
+ {
+ return GetInt32(niHSDIOProperties.MarkerEventPulsePolarity, channel, out value);
+ }
+ ///
+ ///Specifies whether the Marker event terminal is configured for single-ended or LVDS operation. Valid values for this attribute vary by device. Refer to your device documentation to determine if your hardware supports LVDS operation.
+ ///
+ ///
+ public int SetMarkerEventTerminalConfiguration(string channel, int value)
+ {
+ return SetInt32(niHSDIOProperties.MarkerEventTerminalConfiguration, channel, value);
+ }
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ public int GetMarkerEventTerminalConfiguration(string channel, out int value)
+ {
+ return GetInt32(niHSDIOProperties.MarkerEventTerminalConfiguration, channel, out value);
+ }
+ ///
+ ///Specifies the total number of records you want to acquire.
+ ///
+ ///
+ public int SetNumRecords(string channel, int value)
+ {
+ return SetInt32(niHSDIOProperties.NumRecords, channel, value);
+ }
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ public int GetNumRecords(string channel, out int value)
+ {
+ return GetInt32(niHSDIOProperties.NumRecords, channel, out value);
+ }
+ ///
+ ///Use this attribute to phase shift the PLL circuit of the On Board Clock source. You can use this attribute to align the Sample clock of this device with another device that shares the same Reference clock. This attribute is valid if NIHSDIO_ATTR_REF_CLOCK_SOURCE source is not set to NIHSDIO_VAL_NONE_STR.
+ /// For NI 6544/6545/6547/6548 devices, the valid range for this attribute is 0 to 65,535.
+ ///
+ ///
+ public int SetOscillatorPhaseDacValue(string channel, int value)
+ {
+ return SetInt32(niHSDIOProperties.OscillatorPhaseDacValue, channel, value);
+ }
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ public int GetOscillatorPhaseDacValue(string channel, out int value)
+ {
+ return GetInt32(niHSDIOProperties.OscillatorPhaseDacValue, channel, out value);
+ }
+ ///
+ ///Sets the pattern match mask for the Advance trigger. This attribute is used when NIHSDIO_ATTR_ADVANCE_TRIGGER_TYPE is set to NIHSDIO_VAL_PATTERN_MATCH. The pattern is a string of characters representing the entire pattern to be matched. Each character corresponds to a particular channel.
+ /// 'X': Match on any value
+ /// '1': Match on a logic 1
+ /// '0': Match on a logic 0
+ /// 'R' or 'r': Match on a rising edge
+ /// 'F' or 'f': Match on a falling edge
+ /// 'E' or 'e': Match on either edge
+ /// Spaces are ignored, and are useful for readability to segment long patterns. The rightmost character in the expression corresponds to the lowest numbered physical channel.
+ /// For example, "XXXX XXXX XXXX 1111 1100", specifies to match when channels 0 and 1 are '0' and channels 2-7 are '1'. The values seen by pattern matching are affected by NIHSDIO_ATTR_DATA_INTERPRETATION.
+ /// This attribute is valid only for acquisition sessions.
+ ///
+ ///
+ public int SetPatternMatchAdvanceTriggerPattern(string channel, string value)
+ {
+ return SetString(niHSDIOProperties.PatternMatchAdvanceTriggerPattern, channel, value);
+ }
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ public int GetPatternMatchAdvanceTriggerPattern(string channel, out string value)
+ {
+ return GetString(niHSDIOProperties.PatternMatchAdvanceTriggerPattern, channel, out value);
+ }
+ ///
+ ///Specifies whether a pattern match Advance trigger asserts when a particular pattern is matched or not matched.
+ /// This attribute is valid only for acquisition tasks.
+ ///
+ ///
+ public int SetPatternMatchAdvanceTriggerWhen(string channel, int value)
+ {
+ return SetInt32(niHSDIOProperties.PatternMatchAdvanceTriggerWhen, channel, value);
+ }
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ public int GetPatternMatchAdvanceTriggerWhen(string channel, out int value)
+ {
+ return GetInt32(niHSDIOProperties.PatternMatchAdvanceTriggerWhen, channel, out value);
+ }
+ ///
+ ///Sets the pattern match mask for the Pause trigger. This attribute is used when NIHSDIO_ATTR_PAUSE_TRIGGER_TYPE is set to NIHSDIO_VAL_PATTERN_MATCH. The pattern is a string of characters representing the entire pattern to be matched on. Each character corresponds to a particular channel.
+ /// 'X' or 'x': Match on any value
+ /// '1': Match on a logic 1
+ /// '0': Match on a logic 0
+ /// 'R' or 'r': Match on a rising edge
+ /// 'F' or 'f': Match on a falling edge
+ /// 'E' or 'e': Match on either edge
+ /// Spaces are ignored, and are useful for readability to segment long patterns. The rightmost character in the expression corresponds to the lowest numbered physical channel.
+ /// For example, "XXXX XXXX XXXX 1111 1100", specifies to match when channels 0 and 1 are '0' and channels 2-7 are '1'. The values seen by pattern matching are affected by NIHSDIO_ATTR_DATA_INTERPRETATION.
+ /// This attribute is valid only for acquisition sessions.
+ ///
+ ///
+ public int SetPatternMatchPauseTriggerPattern(string channel, string value)
+ {
+ return SetString(niHSDIOProperties.PatternMatchPauseTriggerPattern, channel, value);
+ }
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ public int GetPatternMatchPauseTriggerPattern(string channel, out string value)
+ {
+ return GetString(niHSDIOProperties.PatternMatchPauseTriggerPattern, channel, out value);
+ }
+ ///
+ ///Specifies whether a pattern match Pause trigger asserts when a particular pattern is matched or not matched.
+ /// This attribute is valid only for acquisition sessions.
+ ///
+ ///
+ public int SetPatternMatchPauseTriggerWhen(string channel, int value)
+ {
+ return SetInt32(niHSDIOProperties.PatternMatchPauseTriggerWhen, channel, value);
+ }
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ public int GetPatternMatchPauseTriggerWhen(string channel, out int value)
+ {
+ return GetInt32(niHSDIOProperties.PatternMatchPauseTriggerWhen, channel, out value);
+ }
+ ///
+ ///Sets the pattern match mask for the Reference trigger. This attribute is used when NIHSDIO_ATTR_REF_TRIGGER_TYPE is set to NIHSDIO_VAL_PATTERN_MATCH. The pattern is a string of characters representing the entire pattern to be matched on. Each character corresponds to a particular channel.
+ /// 'X': Match on any value
+ /// '1': Match on a logic 1
+ /// '0': Match on a logic 0
+ /// 'R' or 'r': Match on a rising edge
+ /// 'F' or 'f': Match on a falling edge
+ /// 'E' or 'e': Match on either edge
+ /// Spaces are ignored, and are useful for readability to segment long patterns. The rightmost character in the expression corresponds to the lowest numbered physical channel.
+ /// For example, "XXXX XXXX XXXX 1111 1100", specifies to match when channels 0 and 1 are '0' and channels 2-7 are '1'. The values seen by pattern matching are affected by NIHSDIO_ATTR_DATA_INTERPRETATION.
+ /// This attribute is valid only for acquisition sessions.
+ ///
+ ///
+ public int SetPatternMatchRefTriggerPattern(string channel, string value)
+ {
+ return SetString(niHSDIOProperties.PatternMatchRefTriggerPattern, channel, value);
+ }
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ public int GetPatternMatchRefTriggerPattern(string channel, out string value)
+ {
+ return GetString(niHSDIOProperties.PatternMatchRefTriggerPattern, channel, out value);
+ }
+ ///
+ ///Specifies whether a pattern match Reference trigger asserts when a particular pattern is matched or not matched.
+ /// This attribute is valid only for acquisition sessions.
+ ///
+ ///
+ public int SetPatternMatchRefTriggerWhen(string channel, int value)
+ {
+ return SetInt32(niHSDIOProperties.PatternMatchRefTriggerWhen, channel, value);
+ }
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ public int GetPatternMatchRefTriggerWhen(string channel, out int value)
+ {
+ return GetInt32(niHSDIOProperties.PatternMatchRefTriggerWhen, channel, out value);
+ }
+ ///
+ ///Sets the pattern match mask for the Start trigger. This attribute is used when NIHSDIO_ATTR_START_TRIGGER_TYPE is set to NIHSDIO_VAL_PATTERN_MATCH. The pattern is a string of characters representing the entire pattern to be matched. Each character corresponds to a particular channel.
+ /// 'X': Match on any value
+ /// '1': Match on a logic 1
+ /// '0': Match on a logic 0
+ /// 'R' or 'r': Match on a rising edge
+ /// 'F' or 'f': Match on a falling edge
+ /// 'E' or 'e': Match on either edge
+ /// Spaces are ignored, and are useful for readability to segment long patterns. The rightmost character in the expression corresponds to the lowest numbered physical channel.
+ /// For example, "XXXX XXXX XXXX 1111 1100", specifies to match when channels 0 and 1 are '0' and channels 2-7 are '1'. The values seen by pattern matching are affected by NIHSDIO_ATTR_DATA_INTERPRETATION.
+ /// This attribute is valid only for acquisition sessions.
+ ///
+ ///
+ public int SetPatternMatchStartTriggerPattern(string channel, string value)
+ {
+ return SetString(niHSDIOProperties.PatternMatchStartTriggerPattern, channel, value);
+ }
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ public int GetPatternMatchStartTriggerPattern(string channel, out string value)
+ {
+ return GetString(niHSDIOProperties.PatternMatchStartTriggerPattern, channel, out value);
+ }
+ ///
+ ///Specifies whether a pattern match Start trigger asserts when a particular pattern is matched or not matched.
+ /// This attribute is valid only for acquisition tasks.
+ ///
+ ///
+ public int SetPatternMatchStartTriggerWhen(string channel, int value)
+ {
+ return SetInt32(niHSDIOProperties.PatternMatchStartTriggerWhen, channel, value);
+ }
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ public int GetPatternMatchStartTriggerWhen(string channel, out int value)
+ {
+ return GetInt32(niHSDIOProperties.PatternMatchStartTriggerWhen, channel, out value);
+ }
+ ///
+ ///Specifies the Pause trigger type. Depending upon the value of this attribute, you may need to set more attributes to fully configure the trigger.
+ ///
+ ///
+ public int SetPauseTriggerType(string channel, int value)
+ {
+ return SetInt32(niHSDIOProperties.PauseTriggerType, channel, value);
+ }
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ public int GetPauseTriggerType(string channel, out int value)
+ {
+ return GetInt32(niHSDIOProperties.PauseTriggerType, channel, out value);
+ }
+ ///
+ ///This attribute returns the maximum power your device has consumed since the last time this attribute was queried. Consuming more than 100% power disables the device. You can customize the voltage, data rate, and channel count of your specific application and use this attribute to ensure that the power consumption falls within the specifications listed in the NI 6555/6556 Specifications. To resume normal operation, you must clear the error condition by resetting the device. Valid values range from 0 to 100. Units are expressed as a percentage.
+ /// NOTE: Only NI 6555/6556 devices support this attribute.
+ ///
+ ///
+ public int GetPeakPowerConsumed(string channel, out double value)
+ {
+ return GetDouble(niHSDIOProperties.DevicePeakPowerConsumed, channel, out value);
+ }
+ ///
+ ///This attribute returns the power consumed by your device at the time this attribute is queried. Consuming more than 100% power disables the device. You can customize the voltage, data rate, and channel count of your specific application and use this attribute to ensure that the power consumption falls within the specifications listed in the NI 6555/6556 Specifications. To resume normal operation, you must clear the error condition by resetting the device. Valid values range from 0 to 100. Units are expressed as a percentage.
+ /// NOTE: Only NI 6555/6556 devices support this attribute.
+ ///
+ ///
+ public int GetPowerConsumption(string channel, out double value)
+ {
+ return GetDouble(niHSDIOProperties.DevicePowerConsumption, channel, out value);
+ }
+ ///
+ ///Connects or disconnects, on the fly, all PPMU-capable channels on the DDC connector from the internal device pins. If you set this attribute to NIHSDIO_VAL_DISCONNECT, the PPMU-capable channels remain disconnected from the internal device pins until one of the following conditions occurs:
+ /// -This attribute is set to NIHSDIO_VAL_CONNECT. -The hardware reboots. -The niHSDIO_Reset or the niHSDIO_ResetDevice functions are called. -Self-calibration completes.
+ /// This attribute cannot configure channels on a per pin basis. It always configures all PPMU-capable channels on your device. Only NI 6555/6556 devices support this attribute.
+ ///
+ ///
+ public int SetPpmuCapableIoSwitchControl(string channel, int value)
+ {
+ return SetInt32(niHSDIOProperties.PpmuCapableIoSwitchControl, channel, value);
+ }
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ public int GetPpmuCapableIoSwitchControl(string channel, out int value)
+ {
+ return GetInt32(niHSDIOProperties.PpmuCapableIoSwitchControl, channel, out value);
+ }
+ ///
+ ///Specifies the output polarity of the Ready for Advance event.
+ /// This attribute is valid only for acquisition sessions.
+ ///
+ ///
+ public int SetReadyForAdvanceEventLevelActiveLevel(string channel, int value)
+ {
+ return SetInt32(niHSDIOProperties.ReadyForAdvanceEventLevelActiveLevel, channel, value);
+ }
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ public int GetReadyForAdvanceEventLevelActiveLevel(string channel, out int value)
+ {
+ return GetInt32(niHSDIOProperties.ReadyForAdvanceEventLevelActiveLevel, channel, out value);
+ }
+ ///
+ ///Specifies the destination terminal for the Ready for Advance event. Event voltages and positions are only relevant if the destination of the event is a front panel connector.
+ /// This attribute is valid only for acquisition sessions.
+ ///
+ ///
+ public int SetReadyForAdvanceEventOutputTerminal(string channel, string value)
+ {
+ return SetString(niHSDIOProperties.ReadyForAdvanceEventOutputTerminal, channel, value);
+ }
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ public int GetReadyForAdvanceEventOutputTerminal(string channel, out string value)
+ {
+ return GetString(niHSDIOProperties.ReadyForAdvanceEventOutputTerminal, channel, out value);
+ }
+ ///
+ ///Specifies whether the Ready for Advance event terminal is configured for single-ended or LVDS operation. Valid values for this attribute vary by device. Refer to your device documentation to determine if your hardware supports LVDS operation.
+ ///
+ ///
+ public int SetReadyForAdvanceEventTerminalConfiguration(string channel, int value)
+ {
+ return SetInt32(niHSDIOProperties.ReadyForAdvanceEventTerminalConfiguration, channel, value);
+ }
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ public int GetReadyForAdvanceEventTerminalConfiguration(string channel, out int value)
+ {
+ return GetInt32(niHSDIOProperties.ReadyForAdvanceEventTerminalConfiguration, channel, out value);
+ }
+ ///
+ ///Specifies the output polarity of the Ready for Start event.
+ ///
+ ///
+ public int SetReadyForStartEventLevelActiveLevel(string channel, int value)
+ {
+ return SetInt32(niHSDIOProperties.ReadyForStartEventLevelActiveLevel, channel, value);
+ }
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ public int GetReadyForStartEventLevelActiveLevel(string channel, out int value)
+ {
+ return GetInt32(niHSDIOProperties.ReadyForStartEventLevelActiveLevel, channel, out value);
+ }
+ ///
+ ///Specifies the destination terminal for the Ready for Start Event. Event voltages and positions are only relevant if the destination of the event is a front panel connector.
+ ///
+ ///
+ public int SetReadyForStartEventOutputTerminal(string channel, string value)
+ {
+ return SetString(niHSDIOProperties.ReadyForStartEventOutputTerminal, channel, value);
+ }
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ public int GetReadyForStartEventOutputTerminal(string channel, out string value)
+ {
+ return GetString(niHSDIOProperties.ReadyForStartEventOutputTerminal, channel, out value);
+ }
+ ///
+ ///Specifies whether the Ready for Start event terminal is configured for single-ended or LVDS operation. Valid values for this attribute vary by device. Refer to your device documentation to determine if your hardware supports LVDS operation.
+ ///
+ ///
+ public int SetReadyForStartEventTerminalConfiguration(string channel, int value)
+ {
+ return SetInt32(niHSDIOProperties.ReadyForStartEventTerminalConfiguration, channel, value);
+ }
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ public int GetReadyForStartEventTerminalConfiguration(string channel, out int value)
+ {
+ return GetInt32(niHSDIOProperties.ReadyForStartEventTerminalConfiguration, channel, out value);
+ }
+ ///
+ ///Returns the number of records that have been acquired.
+ ///
+ ///
+ public int GetRecordsDone(string channel, out int value)
+ {
+ return GetInt32(niHSDIOProperties.RecordsDone, channel, out value);
+ }
+ ///
+ ///Use this attribute to set the input impedance of the Reference clock when it is supplied through the front panel. This attribute is expressed in ohms.
+ /// Valid values are 50 or 1000.
+ ///
+ ///
+ public int SetRefClockImpedance(string channel, double value)
+ {
+ return SetDouble(niHSDIOProperties.RefClockImpedance, channel, value);
+ }
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ public int GetRefClockImpedance(string channel, out double value)
+ {
+ return GetDouble(niHSDIOProperties.RefClockImpedance, channel, out value);
+ }
+ ///
+ ///Use this attribute to specify the Reference clock rate. Rate is expressed in Hertz. This attribute is ignored when NIHSDIO_ATTR_REF_CLOCK_SOURCE is set to "None".
+ /// Valid values for NI 6544/6545/6547/6548/6555/6556 devices are from 5 MHz to 100 MHz in 1 MHz steps. All other high-speed digital devices only support 10 MHz as a valid value.
+ ///
+ ///
+ public int SetRefClockRate(string channel, double value)
+ {
+ return SetDouble(niHSDIOProperties.RefClockRate, channel, value);
+ }
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ public int GetRefClockRate(string channel, out double value)
+ {
+ return GetDouble(niHSDIOProperties.RefClockRate, channel, out value);
+ }
+ ///
+ ///Use this attribute to specify the Reference clock source.
+ ///
+ ///
+ public int SetRefClockSource(string channel, string value)
+ {
+ return SetString(niHSDIOProperties.RefClockSource, channel, value);
+ }
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ public int GetRefClockSource(string channel, out string value)
+ {
+ return GetString(niHSDIOProperties.RefClockSource, channel, out value);
+ }
+ ///
+ ///Use this attribute to specify the amount of time until the next record's Reference trigger can be recognized. If the posttrigger time of the current record plus the pretrigger time of the next record (posttrigger record n + pretrigger record n+1 / frequency) is greater than this attribute, the holdoff value is ignored.
+ /// This attribute is especially useful when you want each device in a multidevice situation to recognize the Reference trigger at the same time, though the Reference trigger is shared among devices and each device has a different record size.
+ /// Reference to Reference Trigger Holdoff is expressed in seconds.
+ ///
+ ///
+ public int SetRefToRefTriggerHoldoff(string channel, double value)
+ {
+ return SetDouble(niHSDIOProperties.RefToRefTriggerHoldoff, channel, value);
+ }
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ public int GetRefToRefTriggerHoldoff(string channel, out double value)
+ {
+ return GetDouble(niHSDIOProperties.RefToRefTriggerHoldoff, channel, out value);
+ }
+ ///
+ ///Specifies the number of pretrigger samples to be acquired per record (for example, the samples acquired before the Reference trigger is received). The number of pretrigger samples cannot be greater than the value of NIHSDIO_SAMPLES_PER_RECORD.
+ /// This attribute is valid only for acquisition sessions.
+ ///
+ ///
+ public int SetRefTriggerPretriggerSamples(string channel, int value)
+ {
+ return SetInt32(niHSDIOProperties.RefTriggerPretriggerSamples, channel, value);
+ }
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ public int GetRefTriggerPretriggerSamples(string channel, out int value)
+ {
+ return GetInt32(niHSDIOProperties.RefTriggerPretriggerSamples, channel, out value);
+ }
+ ///
+ ///Specifies the Reference trigger type. Depending on this attribute value, you may need to set more attributes to fully configure the trigger.
+ /// This attribute is valid only for acquisition sessions.
+ ///
+ ///
+ public int SetRefTriggerType(string channel, int value)
+ {
+ return SetInt32(niHSDIOProperties.RefTriggerType, channel, value);
+ }
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ public int GetRefTriggerType(string channel, out int value)
+ {
+ return GetInt32(niHSDIOProperties.RefTriggerType, channel, out value);
+ }
+ ///
+ ///Use this attribute to specify how many times to generate the waveform specified by NIHSDIO_ATTR_WAVEFORM_TO_GENERATE. This attribute is valid only when NIHSDIO_ATTR_REPEAT_MODE is set to NIHSDIO_VAL_FINITE; it is not used when the device is in continuous mode. This attribute is valid only when NIHSDIO_ATTR_GENERATION_MODE is set to NIHSDIO_VAL_WAVEFORM; it is ignored when in scripted mode.
+ /// This attribute is valid only for generation sessions.
+ ///
+ ///
+ public int SetRepeatCount(string channel, int value)
+ {
+ return SetInt32(niHSDIOProperties.RepeatCount, channel, value);
+ }
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ public int GetRepeatCount(string channel, out int value)
+ {
+ return GetInt32(niHSDIOProperties.RepeatCount, channel, out value);
+ }
+ ///
+ ///Use this attribute to specify whether or not to generate a single waveform continuously. This attribute is valid only when NIHSDIO_ATTR_GENERATION_MODE is set to NIHSDIO_VAL_WAVEFORM; it is not used when in scripted mode. If this attribute is set to NIHSDIO_VAL_FINITE, then use the NIHSDIO_ATTR_REPEAT_COUNT attribute to specify how many times the named waveform is generated.
+ /// This attribute is valid only for generation sessions.
+ ///
+ ///
+ public int SetRepeatMode(string channel, int value)
+ {
+ return SetInt32(niHSDIOProperties.RepeatMode, channel, value);
+ }
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ public int GetRepeatMode(string channel, out int value)
+ {
+ return GetInt32(niHSDIOProperties.RepeatMode, channel, out value);
+ }
+ ///
+ ///Use this attribute to program the input impedance of the CLK IN connector when the Sample clock is supplied through the front panel. This attribute is expressed in ohms.
+ ///
+ ///
+ public int SetSampleClockImpedance(string channel, double value)
+ {
+ return SetDouble(niHSDIOProperties.SampleClockImpedance, channel, value);
+ }
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ public int GetSampleClockImpedance(string channel, out double value)
+ {
+ return GetDouble(niHSDIOProperties.SampleClockImpedance, channel, out value);
+ }
+ ///
+ ///Use this attribute to specify the Sample clock rate, which controls the rate at which samples are acquired or generated when you use the Sample clock to time your application. The Sample clock rate is expressed in Hertz.
+ /// You must set this attribute even when you supply an external clock because NI-HSDIO uses this attribute for a number of reasons, including optimal error checking and certain pulse width selections.
+ /// If you have selected NIHSDIO_VAL_ONBOARD_CLOCK_STR as the value for the NIHSDIO_ATTR_SAMPLE_CLOCK_SOURCE attribute, getting this value shows how NI-HSDIO coerced the value.
+ ///
+ ///
+ public int SetSampleClockRate(string channel, double value)
+ {
+ return SetDouble(niHSDIOProperties.SampleClockRate, channel, value);
+ }
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ public int GetSampleClockRate(string channel, out double value)
+ {
+ return GetDouble(niHSDIOProperties.SampleClockRate, channel, out value);
+ }
+ ///
+ ///Use this attribute to specify the Sample clock source.
+ /// STROBE is valid only for acquisition operations.
+ ///
+ ///
+ public int SetSampleClockSource(string channel, string value)
+ {
+ return SetString(niHSDIOProperties.SampleClockSource, channel, value);
+ }
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ public int GetSampleClockSource(string channel, out string value)
+ {
+ return GetString(niHSDIOProperties.SampleClockSource, channel, out value);
+ }
+ ///
+ ///Specifies the number of samples to be acquired per record. If you are using a Reference trigger, this attribute includes both pretrigger and posttrigger samples.
+ /// This attribute is valid only for acquisition sessions.
+ ///
+ ///
+ public int SetSamplesPerRecord(string channel, int value)
+ {
+ return SetInt32(niHSDIOProperties.SamplesPerRecord, channel, value);
+ }
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ public int GetSamplesPerRecord(string channel, out int value)
+ {
+ return GetInt32(niHSDIOProperties.SamplesPerRecord, channel, out value);
+ }
+ ///
+ ///Specifies whether the configured samples per record is finite (TRUE) or infinite (FALSE).
+ /// This attribute is valid only for acquisition sessions.
+ ///
+ ///
+ public int SetSamplesPerRecordIsFinite(string channel, bool value)
+ {
+ return SetBoolean(niHSDIOProperties.SamplesPerRecordIsFinite, channel, value);
+ }
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ public int GetSamplesPerRecordIsFinite(string channel, out bool value)
+ {
+ return GetBoolean(niHSDIOProperties.SamplesPerRecordIsFinite, channel, out value);
+ }
+ ///
+ ///Use this attribute to specify which script in onboard memory is generated upon calling niHSDIO_Initiate when NIHSDIO_ATTR_GENERATION_MODE is NIHSDIO_VAL_SCRIPTED. If this attribute is not set to a valid script and more than one script is in onboard memory, you receive an error upon calling niHSDIO_Initiate. If only one script is in onboard memory and this attribute is set to empty string, you receive an error upon calling niHSDIO_Initiate. This attribute is ignored when NIHSDIO_ATTR_GENERATION_MODE is set to NIHSDIO_VAL_WAVEFORM, since NIHSDIO_ATTR_WAVEFORM_TO_GENERATE defines which waveform to generate.
+ /// This attribute is valid only for generation sessions.
+ ///
+ ///
+ public int SetScriptToGenerate(string channel, string value)
+ {
+ return SetString(niHSDIOProperties.ScriptToGenerate, channel, value);
+ }
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ public int GetScriptToGenerate(string channel, out string value)
+ {
+ return GetString(niHSDIOProperties.ScriptToGenerate, channel, out value);
+ }
+ ///
+ ///Specifies the Script trigger type. Depending upon the value of this attribute, more attributes may be needed to fully configure the trigger. Valid values for this attribute are Digital Edge, Digital Level, and Software.
+ /// This attribute is valid only for generation sessions.
+ ///
+ ///
+ public int SetScriptTriggerType(string channel, int value)
+ {
+ return SetInt32(niHSDIOProperties.ScriptTriggerType, channel, value);
+ }
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ public int GetScriptTriggerType(string channel, out int value)
+ {
+ return GetInt32(niHSDIOProperties.ScriptTriggerType, channel, out value);
+ }
+ ///
+ ///Returns the device serial number.
+ ///
+ ///
+ public int GetSerialNumber(string channel, out string value)
+ {
+ return GetString(niHSDIOProperties.SerialNumber, channel, out value);
+ }
+ ///
+ ///Specifies the space available (in samples) in the streaming waveform for writing new data.
+ /// This attribute is valid only when streaming.
+ ///
+ ///
+ public int GetSpaceAvailableInStreamingWaveform(string channel, out int value)
+ {
+ return GetInt32(niHSDIOProperties.SpaceAvailableInStreamingWaveform, channel, out value);
+ }
+ ///
+ ///Use this attribute to specify the amount of time after a Start trigger before a Reference trigger can be recognized. If the pretrigger time (pretrigger samples / frequency) is greater than this attribute, the holdoff value is ignored.
+ /// This attribute is especially useful when you want each device in a multidevice situation to recognize the Reference trigger at the same time, though the Reference trigger is shared among devices and each device has a different pretrigger count.
+ /// Start to Reference Trigger Holdoff is expressed in seconds.
+ ///
+ ///
+ public int SetStartToRefTriggerHoldoff(string channel, double value)
+ {
+ return SetDouble(niHSDIOProperties.StartToRefTriggerHoldoff, channel, value);
+ }
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ public int GetStartToRefTriggerHoldoff(string channel, out double value)
+ {
+ return GetDouble(niHSDIOProperties.StartToRefTriggerHoldoff, channel, out value);
+ }
+ ///
+ ///Use this attribute to specify whether you want the Start trigger to be a digital edge, pattern match, or software trigger. You can also choose NIHSDIO_VAL_NONE as the value for this attribute.
+ ///
+ ///
+ public int SetStartTriggerType(string channel, int value)
+ {
+ return SetInt32(niHSDIOProperties.StartTriggerType, channel, value);
+ }
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ public int GetStartTriggerType(string channel, out int value)
+ {
+ return GetInt32(niHSDIOProperties.StartTriggerType, channel, out value);
+ }
+ ///
+ ///Assigns channels for static operation. The group of static channels is changed each time this attribute is set. For example, setting this attribute to "0-10" and then setting it to "5-8" results in only channels 5-8 being assigned to static. Channels 0-4 and 9-10 are unconfigured by the second configuration. Writing an empty string to this attribute configures ALL channels for static. Writing the value "None" removes all channels from static operation. The channel is not changed until a call to niHSDIO_ReadStaticU32 (for acquisition sessions) or niHSDIO_WriteStaticU32 (for generation sessions).
+ /// You can configure a channel for more than one simultaneous operation. A channel can be simultaneously configured for the following operations:
+ /// - Dynamic generation and any (static and/or dynamic) acquisition
+ /// - Static generation and any (static and/or dynamic) acquisition
+ /// - Both static and dynamic acquisition
+ /// NOTE: You cannot configure a particular channel for simultaneous dynamic and static generation.
+ /// Unconfiguring a static generation channel frees that channel to be reconfigured for dynamic generation. Unconfiguring a static generation channel does not stop the channel from driving its current value – any static value already written to the channel continues to be driven.
+ /// Syntax examples:
+ /// "2-15" or "15-2" set channels 2 through 15 for static operation
+ /// "0, 3, 10" or "3, 10, 0" set channels 0, 3, and 10 for static operation
+ /// "" (empty string) sets all channels for static operation
+ /// "None" removes all channels from static operation.
+ ///
+ ///
+ public int SetStaticChannels(string channel, string value)
+ {
+ return SetString(niHSDIOProperties.StaticChannels, channel, value);
+ }
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ public int GetStaticChannels(string channel, out string value)
+ {
+ return GetString(niHSDIOProperties.StaticChannels, channel, out value);
+ }
+ ///
+ ///Use this attribute to specify whether you want the Stop trigger to be a digital edge or software trigger. You can also choose NIHSDIO_VAL_NONE as the value for this attribute.
+ /// This attribute is valid only for generation sessions.
+ ///
+ ///
+ public int SetStopTriggerType(string channel, int value)
+ {
+ return SetInt32(niHSDIOProperties.StopTriggerType, channel, value);
+ }
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ public int GetStopTriggerType(string channel, out int value)
+ {
+ return GetInt32(niHSDIOProperties.StopTriggerType, channel, out value);
+ }
+ ///
+ ///Enables streaming of data from host memory to the device.
+ /// This attribute is valid only for dynamic generation sessions.
+ ///
+ ///
+ public int SetStreamingEnabled(string channel, bool value)
+ {
+ return SetBoolean(niHSDIOProperties.StreamingEnabled, channel, value);
+ }
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ public int GetStreamingEnabled(string channel, out bool value)
+ {
+ return GetBoolean(niHSDIOProperties.StreamingEnabled, channel, out value);
+ }
+ ///
+ ///Specifies the name of the waveform for streaming. Use this attribute in conjunction with the NIHSDIO_ATTR_STREAMING_ENABLED attribute.
+ /// NOTE: You cannot stream an unnamed waveform.
+ ///
+ ///
+ public int SetStreamingWaveformName(string channel, string value)
+ {
+ return SetString(niHSDIOProperties.StreamingWaveformName, channel, value);
+ }
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ public int GetStreamingWaveformName(string channel, out string value)
+ {
+ return GetString(niHSDIOProperties.StreamingWaveformName, channel, out value);
+ }
+ ///
+ ///Configures the supported digital data states in a waveform. Use this attribute to enable tristate data generation or real-time hardware compare data. To use the hardware comparison feature you must have an acquisition and a generation session running concurrently. When you select hardware compare data, you must set this attribute to the same value in both sessions.
+ /// NOTE: For NI 6547/6548 devices, when you set this attribute to an extended data mode it reduces the number of channels available for dynamic generation to 24. The top eight channels (24 to 31) are available for dynamic acquisition or static generation, and the lower twenty-four channels (0 to 23) are available for dynamic generation of supported data states.
+ /// When you set this attribute to NIHSDIO_VAL_STATES_L_H_X, all data is configured for comparison. When you set this attribute to NIHSDIO_VAL_STATES_0_1_Z_L_H_X, the software is configured for either driving generation data or comparing data.
+ /// Use the niHSDIO_WriteNamedWaveformWDT function to write expected data to the device. The device drives any values of 0, 1, or Z in the waveform, while values of H, L, or X are treated as expected data values.
+ /// You must set this attribute before you write data or allocate a waveform to the device.
+ ///
+ ///
+ public int SetSupportedDataStates(string channel, int value)
+ {
+ return SetInt32(niHSDIOProperties.SupportedDataStates, channel, value);
+ }
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ public int GetSupportedDataStates(string channel, out int value)
+ {
+ return GetInt32(niHSDIOProperties.SupportedDataStates, channel, out value);
+ }
+ ///
+ ///Returns the total onboard memory size, in samples, for acquiring data. The number of samples is based on the default device data width.
+ /// If you configure your device to use a different data width, the total memory size is actually the value returned by this attribute multiplied by the quotient of the default data width divided by the configured data width. For example, if you configure 1-byte data width for a 2-byte device, the total acquisition memory size is twice the number of samples that is returned by this attribute.
+ ///
+ ///
+ public int GetTotalAcquisitionMemorySize(string channel, out int value)
+ {
+ return GetInt32(niHSDIOProperties.TotalAcquisitionMemorySize, channel, out value);
+ }
+ ///
+ ///Returns the total onboard memory size, in samples, for generating data. The number of samples is based on the default device data width.
+ /// If you configure your device to use a different data width, the total memory size is actually the value returned by this attribute multiplied by the quotient of the default data width divided by the configured data width. For example, if you configure 1-byte data width for a 2-byte device, the total generation memory size is twice the number of samples that is returned by this attribute.
+ ///
+ ///
+ public int GetTotalGenerationMemorySize(string channel, out int value)
+ {
+ return GetInt32(niHSDIOProperties.TotalGenerationMemorySize, channel, out value);
+ }
+ ///
+ ///This attribute specifies, per channel, the fixed time delay after the Sample clock rising edge when the device samples on a trigger. The value of this attribute is added to the value of the NIHSDIO_ATTR_TRIGGER_POSITION_DELAY attribute to determine the total delay. Unlike the NIHSDIO_ATTR_TRIGGER_POSITION_DELAY attribute, this attribute is specified in seconds. Valid values, in seconds, depend on your clock rate and are represented by the equation –2(1/f) to +3(1/f), where f is the frequency of your clock rate. The default value is 0.
+ /// NOTE: Only NI 6555/6556 devices support this attribute.
+ ///
+ ///
+ public int SetTriggerDeskew(string channel, double value)
+ {
+ return SetDouble(niHSDIOProperties.TriggerDeskew, channel, value);
+ }
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ public int GetTriggerDeskew(string channel, out double value)
+ {
+ return GetDouble(niHSDIOProperties.TriggerDeskew, channel, out value);
+ }
+ ///
+ ///This attribute specifies, per channel, the delay after the Sample clock rising edge when the device samples on a trigger. Trigger delay is expressed as a fraction of the clock period (for example, a fraction of 1/Sample clock rate). Valid values range from –1 to 2 clock cycles in increments of 0.001 cycles. The default value is 0.
+ /// NOTE: Only NI 6555/6556 devices support this attribute.
+ ///
+ ///
+ public int SetTriggerPositionDelay(string channel, double value)
+ {
+ return SetDouble(niHSDIOProperties.TriggerPositionDelay, channel, value);
+ }
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ public int GetTriggerPositionDelay(string channel, out double value)
+ {
+ return GetDouble(niHSDIOProperties.TriggerPositionDelay, channel, out value);
+ }
+ ///
+ ///This attribute sets the high trigger voltage level for the session. If you do not explicitly set this attribute, NI-HSDIO assumes the same value as NIHSDIO_ATTR_DATA_VOLTAGE_HIGH_LEVEL for the acquisition session.
+ /// For NI 6555/6556 devices, this attribute is subject to the following restrictions: this attribute is supported only in acquisition sessions, only PFI 1 and PFI 2 support this attribute (PFI 0, PFI 3, and PFI 24-31 are always set to the 3.3V logic family), valid values range from –2 to 7, depending on the range selected with the NIHSDIO_ATTR_TRIGGER_VOLTAGE_RANGE attribute, and the default value is 1.7 V.
+ ///
+ ///
+ public int SetTriggerVoltageHighLevel(string channel, double value)
+ {
+ return SetDouble(niHSDIOProperties.TriggerVoltageHighLevel, channel, value);
+ }
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ public int GetTriggerVoltageHighLevel(string channel, out double value)
+ {
+ return GetDouble(niHSDIOProperties.TriggerVoltageHighLevel, channel, out value);
+ }
+ ///
+ ///This attribute sets the low trigger voltage level for the session. If you do not explicitly set this attribute, NI-HSDIO assumes the same value as NIHSDIO_ATTR_DATA_VOLTAGE_LOW_LEVEL for the acquisition session.
+ /// For NI 6555/6556 devices, this attribute is subject to the following restrictions: this attribute is supported only in acquisition sessions, only PFI 1 and PFI 2 support this attribute (PFI 0, PFI 3, and PFI 24-31 are always set to the 3.3V logic family), valid values range from –2 to 7, depending on the range selected with the NIHSDIO_ATTR_TRIGGER_VOLTAGE_RANGE attribute, and the default value is 1.6 V.
+ ///
+ ///
+ public int SetTriggerVoltageLowLevel(string channel, double value)
+ {
+ return SetDouble(niHSDIOProperties.TriggerVoltageLowLevel, channel, value);
+ }
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ public int GetTriggerVoltageLowLevel(string channel, out double value)
+ {
+ return GetDouble(niHSDIOProperties.TriggerVoltageLowLevel, channel, out value);
+ }
+ ///
+ ///This attribute specifies the voltage range used for all trigger voltages on all PFI channels that support voltage configuration. Only PFI 1 and PFI 2 support voltage configuration. This attribute is valid only for acquisition sessions.
+ /// NOTE: Only NI 6555/6556 devices support this attribute.
+ ///
+ ///
+ public int SetTriggerVoltageRange(string channel, int value)
+ {
+ return SetInt32(niHSDIOProperties.TriggerVoltageRange, channel, value);
+ }
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ public int GetTriggerVoltageRange(string channel, out int value)
+ {
+ return GetInt32(niHSDIOProperties.TriggerVoltageRange, channel, out value);
+ }
+ ///
+ ///Use this attribute to specify which named waveform in onboard memory is generated upon calling niHSDIO_Initiate when NIHSDIO_ATTR_GENERATION_MODE is NIHSDIO_VAL_WAVEFORM. If this attribute is not set to a valid waveform name and more than one waveform is in onboard memory, you receive an error when calling niHSDIO_Initiate. If only one waveform is in onboard memory and this attribute is set to empty string, then that waveform is generated upon calling niHSDIO_Initiate. This attribute is ignored when NIHSDIO_ATTR_GENERATION_MODE is set to NIHSDIO_VAL_SCRIPTED, since NIHSDIO_ATTR_SCRIPT_TO_GENERATE defines the sequence of waveforms to generate.
+ /// This attribute is valid only for generation sessions.
+ ///
+ ///
+ public int SetWaveformToGenerate(string channel, string value)
+ {
+ return SetString(niHSDIOProperties.WaveformToGenerate, channel, value);
+ }
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ public int GetWaveformToGenerate(string channel, out string value)
+ {
+ return GetString(niHSDIOProperties.WaveformToGenerate, channel, out value);
+ }
+
+
+ #endregion
+
+ #region Added in 2.0
+
+
+ ///
+ /// Writes data to PFI channels configured for
+ /// static generation. The least significant bit of writeData corresponds to the
+ /// lowest physical PFI channel number.
+ /// You can configure a channel for static generation using the
+ /// niHSDIO_AssignStaticChannels function.
+ /// Note NI-HSDIO returns an error if an event is already routed to a PFI channel and you try to reserve that same channel for static use with this function.
+ ///
+ ///
+ ///
+ /// Specifies the bit-value of data to drive on channels configured for static generation. 1
+ /// corresponds to logic high, 0 corresponds to logic low.
+ /// The least significant bit of writeData corresponds to the
+ /// lowest physical channel number (for example, writeData
+ /// of 0xFF00 means set the lower eight channels to 0, while setting the upper eight
+ /// channels to logic high.
+ /// Data values in writeData
+ /// corresponding to channels not configured for static generation are ignored.
+ /// Static channels explicitly disabled with the niHSDIO_TristateChannels
+ /// function remain disabled, but the channel data value changes internally. Re-enabling
+ /// a channel with niHSDIO_TristateChannels causes the
+ /// channel to drive any value that you have written to it, even while the channel was
+ /// disabled.
+ ///
+ ///
+ ///
+ /// Specifies the bit-value of PFI channels to leave unchanged. 1 means to change the PFI channel to whatever is reflected by writeData. 0 means do not alter the PFI channel, regardless of writeData.
+ /// The least significant bit of channelMask corresponds to the lowest physical PFI channel number (for example, writeData of 0xFFFF and channelMask of 0x0001 means set only PFI0 to 1; all other channels remain unchanged).
+ ///
+ ///
+ ///
+ ///
+ ///niHSDIO_WriteStaticPFIU32
+ /// ViStatus = niHSDIO_WriteStaticPFIU32 (
+ /// ViSession vi, ViUInt32 writeData,
+ /// ViUInt32 channelMask);
+ /// Purpose
+ /// Writes data to PFI channels configured for
+ /// static generation. The least significant bit of writeData corresponds to the
+ /// lowest physical PFI channel number.
+ /// You can configure a channel for static generation using the
+ /// niHSDIO_AssignStaticChannels function.
+ /// Note NI-HSDIO returns an error if an event is already routed to a PFI channel and you try to reserve that same channel for static use with this function.
+ ///
+ ///
+ public int WriteStaticPFIU32(uint writeData, uint channelMask)
+ {
+ int pInvokeResult = PInvoke.WriteStaticPFIU32(this._handle, writeData, channelMask);
+ PInvoke.TestForError(this._handle, pInvokeResult);
+ return pInvokeResult;
+ }
+
+ ///
+ /// Immediately reads all PFI channels configured for static acquisition. The least significant bit of read data corresponds to the lowest physical PFI channel number. Configure a channel for static acquisition using
+ /// the niHSDIO_AssignStaticChannels function.
+ /// Channels not configured for static acquisition return a zero.Values obtained
+ /// from static read operations are affected by data interpretation.
+ /// Related topics: Acquiring or Generating Static Data
+ ///
+ ///
+ ///
+ /// Specifies the bit-value of data read from PFI channels configured for static acquisition.
+ /// The least significant bit of readData corresponds to the lowest physical channel number. For example, bit 0 corresponds to PFI0, and bit 31 corresponds to PFI31, if that channel exists on the hardware.
+ /// If readData returns a value of 0x000F, channels PFI0 to PFI3 are logic one and the remaining channels are logic zero or are not configured for static acquisition.
+ /// If readData returns a value of 0xFF00 0000, channels PFI24 to PFI31 are logic one and the remaining channels are zero or are not configured for acquisition.
+ ///
+ ///
+ ///
+ ///
+ ///niHSDIO_ReadStaticPFIU32
+ /// ViStatus = niHSDIO_ReadStaticPFIU32 (
+ /// ViSession vi,
+ /// ViUInt32 *readData);
+ /// Purpose
+ /// Immediately reads all PFI channels configured for static acquisition. The least significant bit of read data corresponds to the lowest physical PFI channel number. Configure a channel for static acquisition using
+ /// the niHSDIO_AssignStaticChannels function.
+ /// Channels not configured for static acquisition return a zero.Values obtained
+ /// from static read operations are affected by data interpretation.
+ /// Related topics: Acquiring or Generating Static Data
+ ///
+ ///
+ public int ReadStaticPFIU32(out uint readData)
+ {
+ int pInvokeResult = PInvoke.ReadStaticPFIU32(
+ this._handle,
+ out readData);
+ PInvoke.TestForError(this._handle, pInvokeResult);
+ return pInvokeResult;
+ }
+
+ ///
+ /// Configures the Advance trigger for multi-sample pattern match triggering. You can configure up to 32 channels with patterns of up to 10 samples per channel with this function. For the channels specified in the channelList parameter, the pattern must match each pattern element specified in the pattern parameter on consecutive clock cycles. After the last pattern element in the pattern parameter is matched, the Advance trigger is asserted.
+ /// This function is valid only for acquisition sessions.
+ /// Note This function is only supported for the following devices:
+ /// NI 6544/6545/6547/6548/6555/6556.
+ /// Related topics: Triggers Summary Making Multirecord Acquisitions
+ ///
+ ///
+ ///
+ /// This string specifies which channels are configured for pattern matching
+ /// using the pattern string. The order of channels in the list determines the order of
+ /// the pattern string.
+ ///
+ ///
+ ///
+ /// Specifies the binary multi-sample pattern that activates the pattern match trigger. Samples are separated by commas, and each sample is composed of the following characters:
+ /// X or x: Ignore the channel
+ /// 1: Match on a logic 1
+ /// 0: Match on a logic 0
+ /// R or r: Match on a rising edge
+ /// F or f: Match on a falling edge
+ /// E or e: Match on either edge
+ /// Note R, F, and E are supported only on the first sample.
+ /// The first character in the expression corresponds to the first channel in channelList. The number of characters in each sample must
+ /// correspond to the number of channels specified in channelList or an error is returned.
+ /// For example, the following two examples are valid and achieve the same results:
+ /// channelList = 19-0 and pattern = 0000 0XXX XX11 1111 1111channelList = 0-19 and pattern = 1111 1111 11XX XXX0 0000
+ /// The following example searches for ten consecutive samples on channel 0:
+ /// Sample 0"x,
+ /// Sample 1 1,
+ /// Sample ... ...
+ /// Sample 8 0,
+ /// Sample 91"
+ /// The following example searches for ten consecutive samples on channels 0 to 19:
+ /// Sample 0"0000 0000 0000 0000 0000,
+ /// Sample 1 1111 1111 1111 1111 0000,
+ /// Sample ... ...
+ /// Sample 8 0000 1111 1111 1111 1111,
+ /// Sample 9 1111 1111 11XX XXX0 0000"
+ ///
+ ///
+ ///
+ ///
+ ///niHSDIO_ConfigureMultiSamplePatternMatchAdvanceTrigger
+ /// ViStatus = niHSDIO_ConfigureMultiSamplePatternMatchAdvanceTrigger (
+ /// ViSession vi,
+ /// ViConstString channelList,
+ /// VisConstString pattern);
+ /// Purpose
+ /// Configures the Advance trigger for multi-sample pattern match triggering. You can configure up to 32 channels with patterns of up to 10 samples per channel with this function. For the channels specified in the channelList parameter, the pattern must match each pattern element specified in the pattern parameter on consecutive clock cycles. After the last pattern element in the pattern parameter is matched, the Advance trigger is asserted.
+ /// This function is valid only for acquisition sessions.
+ /// Note This function is only supported for the following devices:
+ /// NI 6544/6545/6547/6548/6555/6556.
+ /// Related topics: Triggers Summary Making Multirecord Acquisitions
+ ///
+ ///
+ public int ConfigureMultiSamplePatternMatchAdvanceTrigger(string channelList, string pattern)
+ {
+ int pInvokeResult = PInvoke.ConfigureMultiSamplePatternMatchAdvanceTrigger(
+ this._handle, channelList, pattern);
+ PInvoke.TestForError(this._handle, pInvokeResult);
+ return pInvokeResult;
+ }
+
+ ///
+ /// Configures the Advance trigger for multi-sample pattern match triggering. You can configure up to 32 channels with patterns of up to 10 samples per channel with this function. For the channels specified in the channelList parameter, the pattern must match each pattern element specified in the patternArray parameter on consecutive clock cycles. After the last pattern element in the patternArray parameter is matched, the Advance trigger is asserted.
+ /// This function is valid only for acquisition sessions.
+ /// Note This function is only supported for the following devices:
+ /// NI 6544/6545/6547/6548/6555/6556.
+ /// Related topics: Triggers Summary Making Multirecord Acquisitions
+ ///
+ ///
+ ///
+ /// This string specifies which channels are configured for pattern matching
+ /// using the pattern string. The order of channels in the list determines the order of
+ /// the patternArray string.
+ ///
+ ///
+ ///
+ /// Specifies the binary multi-sample pattern that activates the pattern match trigger.
+ /// Bits on channels not specified in channelList are ignored.
+ /// The following example searches for ten consecutive samples on channel 0:
+ /// Sample 0
+ /// 0x0
+ /// Sample 1 0x1 Sample ... ...
+ /// Sample 8
+ /// 0x0
+ /// Sample 9
+ /// 0x1
+ /// The following example searches for ten consecutive samples on channels 0 to 19:
+ /// Sample 0 0xABCDE
+ /// Sample 1 0xFFFFF
+ /// Sample ... ...
+ /// Sample 8 0xFFFFF
+ /// Sample 90xABCDE
+ ///
+ ///
+ ///
+ /// Specifies the number of patterns in the patternArray.
+ ///
+ ///
+ ///
+ ///
+ ///niHSDIO_ConfigureMultiSamplePatternMatchAdvanceTriggerU32
+ /// ViStatus = niHSDIO_ConfigureMultiSamplePatternMatchAdvanceTriggerU32 (
+ /// ViSession vi,
+ /// ViConstString channelList,
+ /// ViUInt32 patternArray[],
+ /// ViInt32 numberOfPatterns);
+ /// Purpose
+ /// Configures the Advance trigger for multi-sample pattern match triggering. You can configure up to 32 channels with patterns of up to 10 samples per channel with this function. For the channels specified in the channelList parameter, the pattern must match each pattern element specified in the patternArray parameter on consecutive clock cycles. After the last pattern element in the patternArray parameter is matched, the Advance trigger is asserted.
+ /// This function is valid only for acquisition sessions.
+ /// Note This function is only supported for the following devices:
+ /// NI 6544/6545/6547/6548/6555/6556.
+ /// Related topics: Triggers Summary Making Multirecord Acquisitions
+ ///
+ ///
+ public int ConfigureMultiSamplePatternMatchAdvanceTriggerU32(string channelList, uint[] patternArray, int numberOfPatterns)
+ {
+ int pInvokeResult = PInvoke.ConfigureMultiSamplePatternMatchAdvanceTriggerU32(
+ this._handle, channelList, patternArray, numberOfPatterns);
+ PInvoke.TestForError(this._handle, pInvokeResult);
+ return pInvokeResult;
+ }
+
+ ///
+ /// Configures the Reference trigger
+ /// for multi-sample pattern match triggering. You can configure up to 32 channels with patterns of up to 10 samples per channel with this
+ /// function. For the channels specified in the channelList parameter, the pattern must match each pattern element
+ /// specified in the pattern parameter on consecutive clock cycles. After the last pattern element in the pattern parameter is matched, the Reference trigger is asserted.
+ /// This function is valid only for acquisition sessions.
+ /// Note This function is only supported for the following devices:
+ /// NI 6544/6545/6547/6548/6555/6556.
+ /// Related topics: Triggers Summary
+ ///
+ ///
+ ///
+ /// This string specifies which channels are configured for pattern matching
+ /// using the pattern string. The order of channels in the list determines the order of
+ /// the pattern string.
+ ///
+ ///
+ ///
+ /// Specifies the binary multi-sample pattern that activates the pattern match trigger. Samples are separated by commas, and each sample is composed of the following characters:
+ /// X or x: Ignore the channel
+ /// 1: Match on a logic 1
+ /// 0: Match on a logic 0
+ /// R or r: Match on a rising edge
+ /// F or f: Match on a falling edge
+ /// E or e: Match on either edge
+ /// Note R, F, and E are supported only on the first sample.
+ /// The first character in the expression corresponds to the first channel in channelList. The number of characters in each sample must
+ /// correspond to the number of channels specified in channelList or an error is returned.
+ /// For example, the following two examples are valid and achieve the same results:
+ /// channelList = 19-0 and pattern = 0000 0XXX XX11 1111 1111channelList = 0-19 and pattern = 1111 1111 11XX XXX0 0000
+ /// The following example searches for ten consecutive samples on channel 0:
+ /// Sample 0"x,
+ /// Sample 1 1,
+ /// Sample ... ...
+ /// Sample 8 0,
+ /// Sample 91"
+ /// The following example searches for ten consecutive samples on channels 0 to 19:
+ /// Sample 0"0000 0000 0000 0000 0000,
+ /// Sample 1 1111 1111 1111 1111 0000,
+ /// Sample ... ...
+ /// Sample 8 0000 1111 1111 1111 1111,
+ /// Sample 9 1111 1111 11XX XXX0 0000"
+ ///
+ ///
+ ///
+ /// Specifies the number of necessary pretrigger samples before the Reference trigger is acknowledged.
+ ///
+ ///
+ ///
+ ///
+ ///niHSDIO_ConfigureMultiSamplePatternMatchRefTrigger
+ /// ViStatus = niHSDIO_ConfigureMultiSamplePatternMatchRefTrigger (
+ /// ViSession vi,
+ /// ViConstString channelList,
+ /// ViConstString pattern,
+ /// ViInt32 pretrigSamples);
+ /// Purpose
+ /// Configures the Reference trigger
+ /// for multi-sample pattern match triggering. You can configure up to 32 channels with patterns of up to 10 samples per channel with this
+ /// function. For the channels specified in the channelList parameter, the pattern must match each pattern element
+ /// specified in the pattern parameter on consecutive clock cycles. After the last pattern element in the pattern parameter is matched, the Reference trigger is asserted.
+ /// This function is valid only for acquisition sessions.
+ /// Note This function is only supported for the following devices:
+ /// NI 6544/6545/6547/6548/6555/6556.
+ /// Related topics: Triggers Summary
+ ///
+ ///
+ public int ConfigureMultiSamplePatternMatchRefTrigger(string channelList, string pattern, int pretriggerSamples)
+ {
+ int pInvokeResult = PInvoke.ConfigureMultiSamplePatternMatchRefTrigger(
+ this._handle, channelList, pattern, pretriggerSamples);
+ PInvoke.TestForError(this._handle, pInvokeResult);
+ return pInvokeResult;
+ }
+
+ ///
+ /// Configures the Reference trigger
+ /// for multi-sample pattern match triggering. You can configure up to 32 channels with patterns of up to 10 samples per channel with this
+ /// function. For the channels specified in the channelList parameter, the pattern must match each pattern element
+ /// specified in the patternArray parameter on consecutive clock cycles. After the last pattern element in the
+ /// patternArray parameter is matched, the Reference trigger is asserted.
+ /// This function is valid only for acquisition sessions.
+ /// Note This function is only supported for the following devices:
+ /// NI 6544/6545/6547/6548/6555/6556.
+ /// Related topics: Triggers Summary
+ ///
+ ///
+ ///
+ /// This string specifies which channels are configured for pattern matching
+ /// using the pattern string. The order of channels in the list determines the order of
+ /// the patternArray string.
+ ///
+ ///
+ ///
+ /// Specifies the binary multi-sample pattern that activates the pattern match trigger.
+ /// Bits on channels not specified in channelList are ignored.
+ /// The following example searches for ten consecutive samples on channel 0:
+ /// Sample 0
+ /// 0x0
+ /// Sample 1 0x1 Sample ... ...
+ /// Sample 8
+ /// 0x0
+ /// Sample 9
+ /// 0x1
+ /// The following example searches for ten consecutive samples on channels 0 to 19:
+ /// Sample 0 0xABCDE
+ /// Sample 1 0xFFFFF
+ /// Sample ... ...
+ /// Sample 8 0xFFFFF
+ /// Sample 90xABCDE
+ ///
+ ///
+ ///
+ /// Specifies the number of patterns in the patternArray.
+ ///
+ ///
+ ///
+ /// Specifies the number of necessary pretrigger samples before the Reference trigger is acknowledged.
+ ///
+ ///
+ ///
+ ///
+ ///niHSDIO_ConfigureMultiSamplePatternMatchRefTriggerU32
+ /// ViStatus = niHSDIO_ConfigureMultiSamplePatternMatchRefTriggerU32 (
+ /// ViSession vi,
+ /// ViConstString channelList,
+ /// ViUInt32 patternArray[],
+ /// ViInt32 numberOfPatterns,
+ /// ViInt32 pretrigSamples);
+ /// Purpose
+ /// Configures the Reference trigger
+ /// for multi-sample pattern match triggering. You can configure up to 32 channels with patterns of up to 10 samples per channel with this
+ /// function. For the channels specified in the channelList parameter, the pattern must match each pattern element
+ /// specified in the patternArray parameter on consecutive clock cycles. After the last pattern element in the
+ /// patternArray parameter is matched, the Reference trigger is asserted.
+ /// This function is valid only for acquisition sessions.
+ /// Note This function is only supported for the following devices:
+ /// NI 6544/6545/6547/6548/6555/6556.
+ /// Related topics: Triggers Summary
+ ///
+ ///
+ public int ConfigureMultiSamplePatternMatchRefTriggerU32(string channelList, uint[] patternArray, int numberOfPatterns, int pretriggerSamples)
+ {
+ int pInvokeResult = PInvoke.ConfigureMultiSamplePatternMatchRefTriggerU32(
+ this._handle, channelList, patternArray, numberOfPatterns, pretriggerSamples);
+ PInvoke.TestForError(this._handle, pInvokeResult);
+ return pInvokeResult;
+ }
+
+ ///
+ /// Configures the Start trigger for multi-sample pattern match triggering.
+ /// You can configure up to 32 channels with patterns of up to 10 samples per channel with this function. For the channels specified in the
+ /// channelList parameter, the pattern must match each pattern element specified in the pattern parameter
+ /// on consecutive clock cycles.
+ /// After the last pattern element in the pattern parameter is matched, the Start trigger is asserted.
+ /// This function is valid only for acquisition sessions.
+ /// Note This function is only supported for the following devices:
+ /// NI 6544/6545/6547/6548/6555/6556.
+ /// Related topics: Triggers Summary
+ ///
+ ///
+ ///
+ /// This string specifies which channels are configured for pattern matching
+ /// using the pattern string. The order of channels in the list determines the order of
+ /// the pattern string.
+ ///
+ ///
+ ///
+ /// Specifies the binary multi-sample pattern that activates the pattern match trigger. Samples are separated by commas, and each sample is composed of the following characters:
+ /// X or x: Ignore the channel
+ /// 1: Match on a logic 1
+ /// 0: Match on a logic 0
+ /// R or r: Match on a rising edge
+ /// F or f: Match on a falling edge
+ /// E or e: Match on either edge
+ /// Note R, F, and E are supported only on the first sample.
+ /// The first character in the expression corresponds to the first channel in channelList. The number of characters in each sample must
+ /// correspond to the number of channels specified in channelList or an error is returned.
+ /// For example, the following two examples are valid and achieve the same results:
+ /// channelList = 19-0 and pattern = 0000 0XXX XX11 1111 1111channelList = 0-19 and pattern = 1111 1111 11XX XXX0 0000
+ /// The following example searches for ten consecutive samples on channel 0:
+ /// Sample 0"x,
+ /// Sample 1 1,
+ /// Sample ... ...
+ /// Sample 8 0,
+ /// Sample 91"
+ /// The following example searches for ten consecutive samples on channels 0 to 19:
+ /// Sample 0"0000 0000 0000 0000 0000,
+ /// Sample 1 1111 1111 1111 1111 0000,
+ /// Sample ... ...
+ /// Sample 8 0000 1111 1111 1111 1111,
+ /// Sample 9 1111 1111 11XX XXX0 0000"
+ ///
+ ///
+ ///
+ ///
+ ///niHSDIO_ConfigureMultiSamplePatternMatchStartTrigger
+ /// ViStatus = niHSDIO_ConfigureMultiSamplePatternMatchStartTrigger (
+ /// ViSession vi,
+ /// ViConstString channelList,
+ /// ViConstString pattern);
+ /// Purpose
+ /// Configures the Start trigger for multi-sample pattern match triggering.
+ /// You can configure up to 32 channels with patterns of up to 10 samples per channel with this function. For the channels specified in the
+ /// channelList parameter, the pattern must match each pattern element specified in the pattern parameter
+ /// on consecutive clock cycles.
+ /// After the last pattern element in the pattern parameter is matched, the Start trigger is asserted.
+ /// This function is valid only for acquisition sessions.
+ /// Note This function is only supported for the following devices:
+ /// NI 6544/6545/6547/6548/6555/6556.
+ /// Related topics: Triggers Summary
+ ///
+ ///
+ public int ConfigureMultiSamplePatternMatchStartTrigger(string channelList, string pattern)
+ {
+ int pInvokeResult = PInvoke.ConfigureMultiSamplePatternMatchStartTrigger(
+ this._handle, channelList, pattern);
+ PInvoke.TestForError(this._handle, pInvokeResult);
+ return pInvokeResult;
+ }
+
+ ///
+ /// Configures the Start trigger for multi-sample pattern match triggering. You can configure up to 32 channels with patterns of up to 10 samples per channel with this function. For the channels specified in the channelList parameter, the pattern must match each pattern element specified in the patternArray parameter on consecutive clock cycles. After the last pattern element in the patternArray is asserted.
+ /// This function is valid only for acquisition sessions.
+ /// Note This function is only supported for the following devices:
+ /// NI 6544/6545/6547/6548/6555/6556.
+ ///
+ ///
+ ///
+ /// This string specifies which channels are configured for pattern matching
+ /// using the pattern string. The order of channels in the list determines the order of
+ /// the patternArray string.
+ ///
+ ///
+ ///
+ /// The binary multi-sample pattern that activates the pattern match trigger.
+ /// Bits on channels not specified in channelList are ignored.
+ /// The following example searches for ten consecutive samples on channel 0:
+ /// Sample 0
+ /// 0x0
+ /// Sample 1 0x1 Sample ... ...
+ /// Sample 8
+ /// 0x0
+ /// Sample 9
+ /// 0x1
+ /// The following example searches for ten consecutive samples on channels 0 to 19:
+ /// Sample 0 0xABCDE
+ /// Sample 1 0xFFFFF
+ /// Sample ... ...
+ /// Sample 8 0xFFFFF
+ /// Sample 90xABCDE
+ ///
+ ///
+ ///
+ /// Specifies the number of patterns in the patternArray.
+ ///
+ ///
+ ///
+ ///
+ ///niHSDIO_ConfigureMultiSamplePatternMatchStartTriggerU32
+ /// ViStatus = niHSDIO_ConfigureMultiSamplePatternMatchStartTriggerU32 (
+ /// ViSession vi,
+ /// ViConstString channelList,
+ /// ViUInt32 patternArray[],
+ /// ViInt32 numberOfPatterns);
+ /// Purpose
+ /// Configures the Start trigger for multi-sample pattern match triggering. You can configure up to 32 channels with patterns of up to 10 samples per channel with this function. For the channels specified in the channelList parameter, the pattern must match each pattern element specified in the patternArray parameter on consecutive clock cycles. After the last pattern element in the patternArray is asserted.
+ /// This function is valid only for acquisition sessions.
+ /// Note This function is only supported for the following devices:
+ /// NI 6544/6545/6547/6548/6555/6556.
+ ///
+ ///
+ public int ConfigureMultiSamplePatternMatchStartTriggerU32(string channelList, uint[] patternArray, int numberOfPatterns)
+ {
+ int pInvokeResult = PInvoke.ConfigureMultiSamplePatternMatchStartTriggerU32(
+ this._handle, channelList, patternArray, numberOfPatterns);
+ PInvoke.TestForError(this._handle, pInvokeResult);
+ return pInvokeResult;
+ }
+
+ ///
+ /// Configures the internal routing of the
+ /// specified channel(s) so that you can perform specific calibration steps.
+ ///
+ ///
+ ///
+ /// Identifies the channel on which to modify the internal routing.
+ ///
+ ///
+ ///
+ /// Identifies which section of the external calibration procedure you are trying to execute. Refer to the calibration procedure document for your device for the correct value to use.
+ ///
+ ///
+ ///
+ /// Identifies which internal routing path to configure based on the Calibration Type. Refer to the calibration procedure document for your device for the correct value to use.
+ ///
+ ///
+ ///
+ ///
+ ///niHSDIO_CalConfigureChannelState
+ /// ViStatus = niHSDIO_CalConfigureChannelState (
+ /// ViSession vi,
+ /// ViConstString channel,
+ /// ViUInt32 calibrationType,
+ /// ViUInt32 calibrationReference);
+ /// Purpose
+ /// Configures the internal routing of the
+ /// specified channel(s) so that you can perform specific calibration steps.
+ ///
+ ///
+ public int CalConfigureChannelState(string channel, uint calibrationType, uint calibrationReference)
+ {
+ int pInvokeResult = PInvoke.CalConfigureChannelState(
+ this._handle, channel, calibrationType, calibrationReference);
+ PInvoke.TestForError(this._handle, pInvokeResult);
+ return pInvokeResult;
+ }
+
+ ///
+ /// Configures the internal routing of the device
+ /// so that you can perform specific calibration steps.
+ ///
+ ///
+ ///
+ /// Selects whether to access the PMU pins on the AUX I/O connector or the REMOTE SENSE connector.
+ /// Defined Values
+ /// NIHSDIO_VAL_STPMU_AUX_IO_CONNECTOR (94)—Accesses the PMU pins on the AUX I/O connector. This is the default value.
+ /// NIHSDIO_VAL_STPMU_REMOTE_SENSE_CONNECTOR (95)—Accesses the PMU pins on the REMOTE SENSE connector.
+ ///
+ ///
+ ///
+ /// Identifies which section of the external calibration procedure you are trying to execute. Refer to the calibration procedure document for your device for the correct value to use.
+ ///
+ ///
+ ///
+ /// Identifies which internal routing path to configure based on the Calibration Type. Refer to the calibration procedure document for your device for the correct value to use.
+ ///
+ ///
+ ///
+ ///
+ ///niHSDIO_CalConfigureDeviceState
+ /// ViStatus =niHSDIO_CalConfigureDeviceState (
+ /// ViSession vi,
+ /// ViInt32 connector,
+ /// ViUInt32 calibrationType,
+ /// ViUInt32 calibrationReference);
+ /// Purpose
+ /// Configures the internal routing of the device
+ /// so that you can perform specific calibration steps.
+ ///
+ ///
+ public int CalConfigureDeviceState(int connector, uint calibrationType, uint calibrationReference)
+ {
+ int pInvokeResult = PInvoke.CalConfigureDeviceState(
+ this._handle, connector, calibrationType, calibrationReference);
+ PInvoke.TestForError(this._handle, pInvokeResult);
+ return pInvokeResult;
+ }
+
+ ///
+ /// Takes a single floating point value as input and performs internal calculations based on this value, previous inputs, the Calibration Reference, and the Calibration Type.
+ ///
+ ///
+ ///
+ /// Identifies the channel to adjust.
+ ///
+ ///
+ ///
+ /// Identifies which section of the external calibration procedure you are trying to execute. Refer to the calibration procedure document for your device for the correct value to use.
+ ///
+ ///
+ ///
+ /// Identifies which internal routing path to configure based on the calibration type. Refer to the calibration procedure document for your device for the correct value to use.
+ ///
+ ///
+ ///
+ /// Specifies the floating point value used to perform internal calculations.
+ ///
+ ///
+ ///
+ ///
+ ///niHSDIO_CalAdjustViReal64
+ /// ViStatus = niHSDIO_CalAdjustViReal64 (
+ /// ViSession vi,
+ /// ViConstString channel,
+ /// ViUInt32 calibrationType,
+ /// ViUInt32 calibrationReference,
+ /// ViReal64 value);
+ /// Purpose
+ /// Takes a single floating point value as input and performs internal calculations based on this value, previous inputs, the Calibration Reference, and the Calibration Type.
+ ///
+ ///
+ public int CalAdjustViReal64(string channel, uint calibrationType, uint calibrationReference, double value)
+ {
+ int pInvokeResult = PInvoke.CalAdjustViReal64(
+ this._handle, channel, calibrationType, calibrationReference, value);
+ PInvoke.TestForError(this._handle, pInvokeResult);
+ return pInvokeResult;
+ }
+
+ ///
+ /// Takes an array of floating point values as input and performs internal calculations based on these values, previous inputs, the Calibration Reference, and the Calibration Type.
+ ///
+ ///
+ ///
+ /// Identifies the channel to adjust.
+ ///
+ ///
+ ///
+ /// Identifies which section of the external calibration procedure you are trying to execute. Refer to the calibration procedure document for your device for the correct value to use.
+ ///
+ ///
+ ///
+ /// Identifies which internal routing path to configure based on the calibration type. Refer to the calibration procedure document for your device for the correct value to use.
+ ///
+ ///
+ ///
+ /// The number of values used in the Value array passed into this function.
+ ///
+ ///
+ ///
+ /// specifies the floating point values used to perform internal calculations.
+ ///
+ ///
+ ///
+ ///
+ ///niHSDIO_CalAdjustViReal64Array
+ /// ViStatus = niHSDIO_CalAdjustViReal64Array (
+ /// ViSession vi,
+ /// ViConstString channel,
+ /// ViUInt32 calibrationType,
+ /// ViUInt32 calibrationReference,
+ /// ViInt32 numberOfValues,
+ /// ViReal64 values[]);
+ /// Purpose
+ /// Takes an array of floating point values as input and performs internal calculations based on these values, previous inputs, the Calibration Reference, and the Calibration Type.
+ ///
+ ///
+ public int CalAdjustViReal64Array(string channel, uint calibrationType, uint calibrationReference, int numberofValues, double[] value)
+ {
+ int pInvokeResult = PInvoke.CalAdjustViReal64Array(
+ this._handle, channel, calibrationType, calibrationReference, numberofValues, value);
+ PInvoke.TestForError(this._handle, pInvokeResult);
+ return pInvokeResult;
+ }
+
+ ///
+ /// Restores the internal routing of the device to the default, unconfigured state.
+ ///
+ ///
+ ///
+ ///
+ ///niHSDIO_CalClearState
+ /// ViStatus = niHSDIO_CalClearState (
+ /// ViSession vi);
+ /// Purpose
+ /// Restores the internal routing of the device to the default, unconfigured state.
+ ///
+ ///
+ public int CalClearState()
+ {
+ int pInvokeResult = PInvoke.CalClearState(
+ this._handle);
+ PInvoke.TestForError(this._handle, pInvokeResult);
+ return pInvokeResult;
+ }
+
+ ///
+ /// Closes the child session of the open external calibration session,
+ /// similar to niHSDIO_close.
+ /// If any open child sessions have not been closed when
+ /// niHSDIO_CloseExtCal is called, they are closed implicitly.
+ ///
+ ///
+ ///
+ /// Identifies the niHSDIO Acquisition or Generation session that is created by the calibration session for the purpose of measurement. You can create one acquisition and/or one generation session at a time within the calibration session.
+ ///
+ ///
+ ///
+ ///
+ ///niHSDIO_CalCloseChildSession
+ /// ViStatus = niHSDIO_CalCloseChildSession (
+ /// ViSession vi,
+ /// ViSession child);
+ /// Purpose
+ /// Closes the child session of the open external calibration session,
+ /// similar to niHSDIO_close.
+ /// If any open child sessions have not been closed when
+ /// niHSDIO_CloseExtCal is called, they are closed implicitly.
+ ///
+ ///
+ public int CalCloseChildSession(System.IntPtr childSession)
+ {
+ int pInvokeResult = PInvoke.CalCloseChildSession(
+ this._handle, childSession);
+ PInvoke.TestForError(this._handle, pInvokeResult);
+ return pInvokeResult;
+ }
+
+ ///
+ /// Creates a new acquisition or generation session within an existing External Calibration session, based on the specified session type. This function returns a handle to the new child session.
+ /// Note An error occurs if another child session of the same type is already open.
+ ///
+ ///
+ ///
+ /// The type of session, either Acquisition or Generation.
+ ///
+ ///
+ ///
+ /// Identifies the niHSDIO Acquisition or Generation session that is created by the calibration session for the purpose of measurement. You can create one acquisition and/or one generation session at a time within the calibration session.
+ ///
+ ///
+ ///
+ ///
+ ///niHSDIO_CalInitChildSession
+ /// ViStatus = niHSDIO_CalInitChildSession (
+ /// ViSession vi,
+ /// ViUInt8 sessionType,
+ /// ViSession *childSession);
+ /// Purpose
+ /// Creates a new acquisition or generation session within an existing External Calibration session, based on the specified session type. This function returns a handle to the new child session.
+ /// Note An error occurs if another child session of the same type is already open.
+ ///
+ ///
+ public int CalInitChildSession(byte sessiontype, out IntPtr childsession)
+ {
+ int pInvokeResult = PInvoke.CalInitChildSession(
+ this._handle, sessiontype,
+ out childsession);
+ PInvoke.TestForError(this._handle, pInvokeResult);
+ return pInvokeResult;
+ }
+
+ ///
+ /// Returns the current onboard temperature for the device.
+ ///
+ ///
+ ///
+ /// Retuns the current onboard temperature of the device in degrees Celsius.
+ ///
+ ///
+ ///
+ ///
+ ///niHSDIO_ReadCurrentTemperature
+ /// ViStatus =niHSDIO_ReadCurrentTemperature (
+ /// ViSession vi,
+ /// ViReal64* temp);
+ /// Purpose
+ /// Returns the current onboard temperature for the device.
+ ///
+ ///
+ public int ReadCurrentTemperature(out double temperature)
+ {
+ int pInvokeResult = PInvoke.ReadCurrentTemperature(
+ this._handle,
+ out temperature);
+ PInvoke.TestForError(this._handle, pInvokeResult);
+ return pInvokeResult;
+ }
+
+ #endregion
+
+ #region Added in 15.0
+
+ ///
+ /// Configures the Stop trigger for edge triggering. This function is valid only for generation sessions.
+ ///
+ ///
+ /// You may specify any valid source terminal for this trigger. Trigger voltages and positions are
+ /// only relevant if the source of the trigger is from the front panel connectors.
+ ///
+ ///
+ /// Specifies the edge to detect.
+ ///
+ ///
+ ///
+ ///
+ ///niHSDIO_ConfigureDigitalEdgeStopTrigger
+ ///ViStatus = niHSDIO_ConfigureDigitalEdgeStopTrigger ( ViSession vi, ViConstString source, ViInt32 edge);
+ ///Purpose
+ ///Configures the Stop trigger for edge triggering. This function is valid only for generation sessions.
+ ///
+ ///
+ public int ConfigureDigitalEdgeStopTrigger(string Source, int Edge)
+ {
+ int pInvokeResult = PInvoke.ConfigureDigitalEdgeStopTrigger(
+ this._handle, Source, Edge);
+ PInvoke.TestForError(this._handle, pInvokeResult);
+ return pInvokeResult;
+ }
+
+ ///
+ /// Configures the Stop trigger for software triggering.
+ ///
+ ///
+ /// niHSDIO_ConfigureSoftwareStopTrigger
+ /// ViStatus = niHSDIO_ConfigureSoftwareStopTrigger ( ViSession vi);
+ /// Purpose
+ /// Configures the Stop trigger for software triggering
+ ///
+ public int ConfigureSoftwareStopTrigger()
+ {
+ int pInvokeResult = PInvoke.ConfigureSoftwareStopTrigger(this._handle);
+ PInvoke.TestForError(this._handle, pInvokeResult);
+ return pInvokeResult;
+ }
+
+ ///
+ /// Sets the data operation to have no Stop trigger. Calling this function
+ /// is only necessary if you have configured a Stop trigger and now want to disable it.
+ /// This function is valid only for generation sessions.
+ ///
+ ///
+ /// niHSDIO_DisableStopTrigger
+ /// ViStatus = niHSDIO_DisableStopTrigger ( ViSession vi);
+ /// Purpose
+ /// Sets the data operation to have no Stop trigger. Calling this function is only necessary if you have configured a Stop trigger and now want to disable it. This function is valid only for generation sessions.
+ ///
+ public int DisablStopTrigger()
+ {
+ int pInvokeResult = PInvoke.DisableStopTrigger(this._handle);
+ PInvoke.TestForError(this._handle, pInvokeResult);
+ return pInvokeResult;
+ }
+
+ ///
+ /// Takes the error code returned by the instrument driver functions,
+ /// interprets it, and returns it as a user readable string.
+ ///
+ ///
+ /// The error code returned from the device
+ ///
+ ///
+ /// Returns the message string.
+ ///
+ ///
+ /// niHSDIO_error_message
+ ///ViStatus = niHSDIO_error_message ( ViSession vi, ViStatus errorCode, ViChar errorMessage[256]);
+ ///Purpose
+ ///Takes the error code returned by the instrument driver functions, interprets it, and returns it as a user readable string.
+ ///
+ public int error_message(int Error_Code, System.Text.StringBuilder Error_Message_2)
+ {
+ int pInvokeResult = PInvoke.error_message(this._handle, Error_Code, Error_Message_2);
+ PInvoke.TestForError(this._handle, pInvokeResult);
+ return pInvokeResult;
+ }
+
+ ///
+ /// This function queries the value of a ViSession attribute.
+ /// You can use this function to get the values of device-specific attributes and inherent IVI attributes.
+ ///
+ ///
+ /// If the attribute is channel or instance based, this parameter specifies the name of the channel
+ /// or instance on which to set the value of the attribute; if the attribute is not channel or instance based,
+ /// pass VI_NULL or an empty string.You can pass in multiple channels to this function
+ ///
+ ///
+ /// The ID of an attribute
+ ///
+ ///
+ /// Returns the current value of the attribute; pass the address of a ViSession variable
+ ///
+ ///
+ /// niHSDIO_GetAttributeViSession
+ ///ViStatus = niHSDIO_GetAttributeViSession ( ViSession vi, ViConstString channelName, ViAttr attribute, ViSession *value);
+ ///Purpose
+ ///This function queries the value of a ViSession attribute.
+ ///You can use this function to get the values of device-specific attributes and inherent IVI attributes.
+ ///
+ public int GetSession(string Channel_List, int Attribute_ID, out System.IntPtr Value)
+ {
+ int pInvokeResult = PInvoke.GetAttributeViSession(this._handle, Channel_List, Attribute_ID, out Value);
+ PInvoke.TestForError(this._handle, pInvokeResult);
+ return pInvokeResult;
+ }
+
+ ///
+ /// This function sets the value of a ViSession attribute.
+ /// This is a low-level function that you can use to set the values of
+ /// device-specific attributes and inherent IVI attributes.
+ ///
+ ///
+ /// If the attribute is channel or instance based,
+ /// this parameter specifies the name of the channel or instance on which to set the value of the attribute;
+ /// if the attribute is not channel or instance based, pass VI_NULL or an empty string.
+ /// You can pass in multiple channels to this function.
+ ///
+ ///
+ /// The ID of an attribute.
+ ///
+ ///
+ /// The value to which you want to set the attribute;
+ /// some of the values might not be valid depending on the current settings of the instrument session
+ ///
+ ///
+ /// niHSDIO_SetAttributeViSession
+ ///ViStatus = niHSDIO_SetAttributeViSession ( ViSession vi, ViConstString channelName, ViAttr attribute, ViSession value);
+ ///Purpose
+ ///This function sets the value of a ViSession attribute.
+ ///This is a low-level function that you can use to set the values of device-specific attributes and inherent IVI attributes.
+ ///
+ public int SetSession(string Channel_List, int Attribute_ID, System.IntPtr Value)
+ {
+ int pInvokeResult = PInvoke.SetAttributeViSession(this._handle, Channel_List, Attribute_ID, Value);
+ PInvoke.TestForError(this._handle, pInvokeResult);
+ return pInvokeResult;
+ }
+
+ ///
+ /// This function obtains the multithreaded lock on the instrument session.
+ /// Before doing so, the function waits until all other execution threads have released the lock on the instrument session.
+ ///
+ ///
+ /// This parameter serves as a convenience.
+ /// You can use this parameter in complex functions to track lock status and the need to unlock the session. Pass the address of a local boolean variable in the declaration of the local variable and initialize it to FALSE.
+ ///
+ ///
+ /// niHSDIO_LockSession
+ /// ViStatus = niHSDIO_LockSession ( ViSession vi, ViBoolean *callerHasLock);
+ /// Purpose
+ /// This function obtains the multithreaded lock on the instrument session.
+ /// Before doing so, the function waits until all other execution threads have released the lock on the instrument session.
+ /// Other threads might have obtained the lock on this session in the following ways
+ /// Your application called niHSDIO_LockSession
+ /// A call to the instrument driver locked the session
+ /// A call to the IVI engine locked the session
+ /// After the call to niHSDIO_LockSession returns successfully,
+ /// no other threads can access the instrument session until you call niHSDIO_UnlockSession.
+ /// Use niHSDIO_LockSession and niHSDIO_UnlockSession around a sequence of calls to instrument driver functions if you require exclusive access through the end of the sequence.
+ /// You can safely make nested calls to niHSDIO_LockSession within the same thread.
+ /// To completely unlock the session, you must balance each call to niHSDIO_LockSession with a call to niHSDIO_UnlockSession. If, however, you use the callerHasLock parameter in all calls to niHSDIO_LockSession and niHSDIO_UnlockSession within a function, the IVI Library locks the session only once within the function, regardless of the number of calls you make to niHSDIO_LockSession. This functionality allows you to call niHSDIO_UnlockSession just once at the end of the function.
+ ///
+ public int LockSession(out bool callerHasLock)
+ {
+ ushort callerLock;
+ int pInvokeResult = PInvoke.LockSession(this._handle, out callerLock);
+ callerHasLock = Convert.ToBoolean(callerLock);
+ PInvoke.TestForError(this._handle, pInvokeResult);
+ return pInvokeResult;
+ }
+
+ ///
+ /// This function releases a lock that you acquired on an instrument session using the LockSession function.
+ ///
+ ///
+ /// This parameter serves as a convenience. If you do not want to use this parameter,
+ /// pass VI_NULL. You can use this parameter in complex functions to track lock status and the need to unlock the session.
+ /// Pass the address of a local ViBoolean variable in the declaration of the local variable
+ /// and initialize it to VI_FALSE.
+ ///
+ ///
+ /// niHSDIO_UnlockSession
+ ///ViStatus = niHSDIO_UnlockSession ( ViSession vi, ViBoolean *callerHasLock);
+ ///Purpose
+ ///This function releases a lock that you acquired on an instrument session using the niHSDIO_LockSession function
+ ///
+ public int UnlockSession(out bool callerHasLock)
+ {
+ ushort callerLock;
+ int pInvokeResult = PInvoke.UnlockSession(this._handle, out callerLock);
+ callerHasLock = Convert.ToBoolean(callerLock);
+ PInvoke.TestForError(this._handle, pInvokeResult);
+ return pInvokeResult;
+ }
+
+ ///
+ /// Clears the error information for the current execution thread and the IVI session you specify.
+ /// If you pass VI_NULL for the vi parameter, this function clears the error information only for the current execution thread.
+ ///
+ ///
+ /// niHSDIO_ClearError
+ ///ViStatus = niHSDIO_ClearError ( ViSession vi);
+ ///Purpose
+ ///Clears the error information for the current execution thread and the IVI session you specify. If you pass VI_NULL for the vi parameter, this function clears the error information only for the current execution thread.
+ ///
+ public int ClearError()
+ {
+ int pInvokeResult = PInvoke.ClearError(this._handle);
+ PInvoke.TestForError(this._handle, pInvokeResult);
+ return pInvokeResult;
+ }
+
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ public int ResetAttribute(string Channel_Name, int attributeId)
+ {
+ int pInvokeResult = PInvoke.ResetAttribute(this._handle, Channel_Name, attributeId);
+ PInvoke.TestForError(this._handle, pInvokeResult);
+ return pInvokeResult;
+ }
+
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ public int GetFetchBackLog(int recordNumber, out int backLog)
+ {
+ int pInvokeResult = PInvoke.GetFetchBacklog(this._handle, recordNumber, out backLog);
+ PInvoke.TestForError(this._handle, pInvokeResult);
+ return pInvokeResult;
+ }
+
+ ///
+ ///
+ ///
+ ///
+ ///
+ public int GetSelfCalSupported(out bool callerHasLock)
+ {
+ ushort callerLock;
+ int pInvokeResult = PInvoke.GetSelfCalSupported(this._handle, out callerLock);
+ callerHasLock = Convert.ToBoolean(callerLock);
+ PInvoke.TestForError(this._handle, pInvokeResult);
+ return pInvokeResult;
+ }
+
+ ///
+ ///
+ ///
+ ///
+ ///
+ public int SetCalUserDefinedInfo(string info)
+ {
+ int pInvokeResult = PInvoke.SetCalUserDefinedInfo(this._handle, info);
+ PInvoke.TestForError(this._handle, pInvokeResult);
+ return pInvokeResult;
+ }
+
+ ///
+ ///
+ ///
+ ///
+ ///
+ public int GetCalUserDefinedInfo(out string info)
+ {
+ int pInvokeResult = PInvoke.GetCalUserDefinedInfo(this._handle, out info);
+ PInvoke.TestForError(this._handle, pInvokeResult);
+ return pInvokeResult;
+ }
+
+ ///
+ ///
+ ///
+ ///
+ ///
+ public int GetCalUserDefinedInfoMaxSize(out int size)
+ {
+ int pInvokeResult = PInvoke.GetCalUserDefinedInfoMaxSize(this._handle, out size);
+ PInvoke.TestForError(this._handle, pInvokeResult);
+ return pInvokeResult;
+ }
+
+ ///
+ /// Returns the date and time of the most recent successful self-calibration.
+ ///
+ ///
+ /// The year in which the device was last calibrated.
+ ///
+ ///
+ /// The month in which the device was last calibrated.
+ ///
+ ///
+ /// The day the device was last calibrated.
+ ///
+ ///
+ /// The hour the device was last calibrated.
+ ///
+ ///
+ /// The minute the device was last calibrated.
+ ///
+ ///
+ public int GetSelfCalLastDateAndTime(out int year, out int month, out int day, out int hour, out int minute)
+ {
+ int pInvokeResult = PInvoke.GetSelfCalLastDateAndTime(this._handle, out year, out month, out day, out hour, out minute);
+ PInvoke.TestForError(this._handle, pInvokeResult);
+ return pInvokeResult;
+ }
+
+ ///
+ /// Returns the date and time of the most recent successful external calibration.
+ ///
+ ///
+ /// The year in which the device was last calibrated.
+ ///
+ ///
+ /// The month in which the device was last calibrated.
+ ///
+ ///
+ /// The day the device was last calibrated.
+ ///
+ ///
+ /// The hour the device was last calibrated.
+ ///
+ ///
+ /// The minute the device was last calibrated.
+ ///
+ ///
+ public int GetExtCalLastDateAndTime(out int year, out int month, out int day, out int hour, out int minute)
+ {
+ int pInvokeResult = PInvoke.GetExtCalLastDateAndTime(this._handle, out year, out month, out day, out hour, out minute);
+ PInvoke.TestForError(this._handle, pInvokeResult);
+ return pInvokeResult;
+ }
+
+ ///
+ /// Returns the onboard temperature of the device in degrees Celsius during the last successful self-calibration.
+ ///
+ ///
+ /// The onboard temperature of the device (in degrees Celsius) during the last successful self-calibration.
+ ///
+ ///
+ /// niHSDIO_GetSelfCalLastTemp
+ ///ViStatus = niHSDIO_GetSelfCalLastTemp ( ViSession vi, ViReal64* temp);
+ ///Purpose
+ ///Returns the onboard temperature of the device in degrees Celsius during the last successful self-calibration.
+ ///
+ public int GetSelfCalLastTemp(out double temp)
+ {
+ int pInvokeResult = PInvoke.GetSelfCalLastTemp(this._handle, out temp);
+ PInvoke.TestForError(this._handle, pInvokeResult);
+ return pInvokeResult;
+ }
+
+
+ ///
+ /// Returns the onboard temperature of the device in degrees Celsius during the last successful external-calibration.
+ ///
+ ///
+ /// The onboard temperature of the device (in degrees Celsius) during the last successful external-calibration.
+ ///
+ ///
+ /// niHSDIO_GetExtCalLastTemp
+ ///ViStatus = niHSDIO_GetExtCalLastTemp ( ViSession vi, ViReal64* temp);
+ ///Purpose
+ ///Returns the onboard temperature of the device in degrees Celsius during the last successful external calibration.
+ ///
+ public int GetExtCalLastTemp(out double temp)
+ {
+ int pInvokeResult = PInvoke.GetExtCalLastTemp(this._handle, out temp);
+ PInvoke.TestForError(this._handle, pInvokeResult);
+ return pInvokeResult;
+ }
+
+ ///
+ /// Returns the recommended number of months between external calibrations.
+ ///
+ ///
+ /// Identifies the recommended maximum interval, in months, between external calibrations
+ ///
+ ///
+ /// niHSDIO_GetExtCalRecommendedInterval
+ ///ViStatus = niHSDIO_GetExtCalRecommendedInterval ( ViSession vi, ViInt32* interval);
+ ///Purpose
+ ///Returns the recommended number of months between external calibrations.
+ ///
+ public int GetExtCalRecommendedInterval(out int interval)
+ {
+ int pInvokeResult = PInvoke.GetExtCalRecommendedInterval(this._handle, out interval);
+ PInvoke.TestForError(this._handle, pInvokeResult);
+ return pInvokeResult;
+ }
+ #endregion
+
+ ///
+ ///
+ ///
+ public void Dispose()
+ {
+ this.Dispose(true);
+ System.GC.SuppressFinalize(this);
+ }
+ private void Dispose(bool disposing)
+ {
+ if ((this._disposed == false))
+ {
+ PInvoke.close(this._handle);
+ this._handle = System.IntPtr.Zero;
+ }
+ this._disposed = true;
+ }
+ ///
+ ///
+ ///
+ ~niHSDIO()
+ {
+ Dispose(false);
+ }
+
+ private class PInvoke
+ {
+
+ private const string hsdioModuleName32 = "niHSDIO.dll";
+ private const string hsdioModuleName64 = "niHSDIO_64.dll";
+
+ // Define the readonly field to check for process' bitness.
+ private static readonly bool Is64BitProcess = (IntPtr.Size == 8);
+
+
+ [DllImport(hsdioModuleName32, EntryPoint = "niHSDIO_InitAcquisitionSession", CallingConvention = CallingConvention.StdCall)]
+ public static extern int InitAcquisitionSession_32(string Resource_Name, ushort ID_Query, ushort Reset_Instrument, string Option_String, out System.IntPtr Instrument_Handle);
+ [DllImport(hsdioModuleName64, EntryPoint = "niHSDIO_InitAcquisitionSession", CallingConvention = CallingConvention.StdCall)]
+ public static extern int InitAcquisitionSession_64(string Resource_Name, ushort ID_Query, ushort Reset_Instrument, string Option_String, out System.IntPtr Instrument_Handle);
+ public static int InitAcquisitionSession(string Resource_Name, ushort ID_Query, ushort Reset_Instrument, string Option_String, out System.IntPtr Instrument_Handle)
+ {
+ if (Is64BitProcess)
+ return InitAcquisitionSession_64(Resource_Name, ID_Query, Reset_Instrument, Option_String, out Instrument_Handle);
+ else
+ return InitAcquisitionSession_32(Resource_Name, ID_Query, Reset_Instrument, Option_String, out Instrument_Handle);
+ }
+
+ [DllImport(hsdioModuleName32, EntryPoint = "niHSDIO_InitGenerationSession", CallingConvention = CallingConvention.StdCall)]
+ public static extern int InitGenerationSession_32(string Resource_Name, ushort ID_Query, ushort Reset_Instrument, string Option_String, out System.IntPtr Instrument_Handle);
+ [DllImport(hsdioModuleName64, EntryPoint = "niHSDIO_InitGenerationSession", CallingConvention = CallingConvention.StdCall)]
+ public static extern int InitGenerationSession_64(string Resource_Name, ushort ID_Query, ushort Reset_Instrument, string Option_String, out System.IntPtr Instrument_Handle);
+ public static int InitGenerationSession(string Resource_Name, ushort ID_Query, ushort Reset_Instrument, string Option_String, out System.IntPtr Instrument_Handle)
+ {
+ if (Is64BitProcess)
+ return InitGenerationSession_64(Resource_Name, ID_Query, Reset_Instrument, Option_String, out Instrument_Handle);
+ else
+ return InitGenerationSession_32(Resource_Name, ID_Query, Reset_Instrument, Option_String, out Instrument_Handle);
+ }
+
+ [DllImport(hsdioModuleName32, EntryPoint = "niHSDIO_InitExtCal", CallingConvention = CallingConvention.StdCall)]
+ public static extern int InitExtCal_32(string Resource_Name, string Password, out System.IntPtr Instrument_Handle);
+ [DllImport(hsdioModuleName64, EntryPoint = "niHSDIO_InitExtCal", CallingConvention = CallingConvention.StdCall)]
+ public static extern int InitExtCal_64(string Resource_Name, string Password, out System.IntPtr Instrument_Handle);
+ public static int InitExtCal(string Resource_Name, string Password, out System.IntPtr Instrument_Handle)
+ {
+ if (Is64BitProcess)
+ return InitExtCal_64(Resource_Name, Password, out Instrument_Handle);
+ else
+ return InitExtCal_32(Resource_Name, Password, out Instrument_Handle);
+ }
+
+ [DllImport(hsdioModuleName32, EntryPoint = "niHSDIO_ConfigureDataVoltageLogicFamily", CallingConvention = CallingConvention.StdCall)]
+ public static extern int ConfigureDataVoltageLogicFamily_32(System.IntPtr Instrument_Handle, string Channel_List, int Logic_Family);
+ [DllImport(hsdioModuleName64, EntryPoint = "niHSDIO_ConfigureDataVoltageLogicFamily", CallingConvention = CallingConvention.StdCall)]
+ public static extern int ConfigureDataVoltageLogicFamily_64(System.IntPtr Instrument_Handle, string Channel_List, int Logic_Family);
+ public static int ConfigureDataVoltageLogicFamily(System.IntPtr Instrument_Handle, string Channel_List, int Logic_Family)
+ {
+ if (Is64BitProcess)
+ return ConfigureDataVoltageLogicFamily_64(Instrument_Handle, Channel_List, Logic_Family);
+ else
+ return ConfigureDataVoltageLogicFamily_32(Instrument_Handle, Channel_List, Logic_Family);
+ }
+
+ [DllImport(hsdioModuleName32, EntryPoint = "niHSDIO_ConfigureDataVoltageCustomLevels", CallingConvention = CallingConvention.StdCall)]
+ public static extern int ConfigureDataVoltageCustomLevels_32(System.IntPtr Instrument_Handle, string Channel_List, double Low_Level, double High_Level);
+ [DllImport(hsdioModuleName64, EntryPoint = "niHSDIO_ConfigureDataVoltageCustomLevels", CallingConvention = CallingConvention.StdCall)]
+ public static extern int ConfigureDataVoltageCustomLevels_64(System.IntPtr Instrument_Handle, string Channel_List, double Low_Level, double High_Level);
+ public static int ConfigureDataVoltageCustomLevels(System.IntPtr Instrument_Handle, string Channel_List, double Low_Level, double High_Level)
+ {
+ if (Is64BitProcess)
+ return ConfigureDataVoltageCustomLevels_64(Instrument_Handle, Channel_List, Low_Level, High_Level);
+ else
+ return ConfigureDataVoltageCustomLevels_32(Instrument_Handle, Channel_List, Low_Level, High_Level);
+ }
+
+ [DllImport(hsdioModuleName32, EntryPoint = "niHSDIO_ConfigureTriggerVoltageLogicFamily", CallingConvention = CallingConvention.StdCall)]
+ public static extern int ConfigureTriggerVoltageLogicFamily_32(System.IntPtr Instrument_Handle, int Logic_Family);
+ [DllImport(hsdioModuleName64, EntryPoint = "niHSDIO_ConfigureTriggerVoltageLogicFamily", CallingConvention = CallingConvention.StdCall)]
+ public static extern int ConfigureTriggerVoltageLogicFamily_64(System.IntPtr Instrument_Handle, int Logic_Family);
+ public static int ConfigureTriggerVoltageLogicFamily(System.IntPtr Instrument_Handle, int Logic_Family)
+ {
+ if (Is64BitProcess)
+ return ConfigureTriggerVoltageLogicFamily_64(Instrument_Handle, Logic_Family);
+ else
+ return ConfigureTriggerVoltageLogicFamily_32(Instrument_Handle, Logic_Family);
+ }
+
+ [DllImport(hsdioModuleName32, EntryPoint = "niHSDIO_ConfigureTriggerVoltageCustomLevels", CallingConvention = CallingConvention.StdCall)]
+ public static extern int ConfigureTriggerVoltageCustomLevels_32(System.IntPtr Instrument_Handle, double Low_Level, double High_Level);
+ [DllImport(hsdioModuleName64, EntryPoint = "niHSDIO_ConfigureTriggerVoltageCustomLevels", CallingConvention = CallingConvention.StdCall)]
+ public static extern int ConfigureTriggerVoltageCustomLevels_64(System.IntPtr Instrument_Handle, double Low_Level, double High_Level);
+ public static int ConfigureTriggerVoltageCustomLevels(System.IntPtr Instrument_Handle, double Low_Level, double High_Level)
+ {
+ if (Is64BitProcess)
+ return ConfigureTriggerVoltageCustomLevels_64(Instrument_Handle, Low_Level, High_Level);
+ else
+ return ConfigureTriggerVoltageCustomLevels_32(Instrument_Handle, Low_Level, High_Level);
+ }
+
+ [DllImport(hsdioModuleName32, EntryPoint = "niHSDIO_ConfigureEventVoltageLogicFamily", CallingConvention = CallingConvention.StdCall)]
+ public static extern int ConfigureEventVoltageLogicFamily_32(System.IntPtr Instrument_Handle, int Logic_Family);
+ [DllImport(hsdioModuleName64, EntryPoint = "niHSDIO_ConfigureEventVoltageLogicFamily", CallingConvention = CallingConvention.StdCall)]
+ public static extern int ConfigureEventVoltageLogicFamily_64(System.IntPtr Instrument_Handle, int Logic_Family);
+ public static int ConfigureEventVoltageLogicFamily(System.IntPtr Instrument_Handle, int Logic_Family)
+ {
+ if (Is64BitProcess)
+ return ConfigureEventVoltageLogicFamily_64(Instrument_Handle, Logic_Family);
+ else
+ return ConfigureEventVoltageLogicFamily_32(Instrument_Handle, Logic_Family);
+ }
+
+ [DllImport(hsdioModuleName32, EntryPoint = "niHSDIO_ConfigureEventVoltageCustomLevels", CallingConvention = CallingConvention.StdCall)]
+ public static extern int ConfigureEventVoltageCustomLevels_32(System.IntPtr Instrument_Handle, double Low_Level, double High_Level);
+ [DllImport(hsdioModuleName64, EntryPoint = "niHSDIO_ConfigureEventVoltageCustomLevels", CallingConvention = CallingConvention.StdCall)]
+ public static extern int ConfigureEventVoltageCustomLevels_64(System.IntPtr Instrument_Handle, double Low_Level, double High_Level);
+ public static int ConfigureEventVoltageCustomLevels(System.IntPtr Instrument_Handle, double Low_Level, double High_Level)
+ {
+ if (Is64BitProcess)
+ return ConfigureEventVoltageCustomLevels_64(Instrument_Handle, Low_Level, High_Level);
+ else
+ return ConfigureEventVoltageCustomLevels_32(Instrument_Handle, Low_Level, High_Level);
+ }
+
+ [DllImport(hsdioModuleName32, EntryPoint = "niHSDIO_AssignDynamicChannels", CallingConvention = CallingConvention.StdCall)]
+ public static extern int AssignDynamicChannels_32(System.IntPtr Instrument_Handle, string Channel_List);
+ [DllImport(hsdioModuleName64, EntryPoint = "niHSDIO_AssignDynamicChannels", CallingConvention = CallingConvention.StdCall)]
+ public static extern int AssignDynamicChannels_64(System.IntPtr Instrument_Handle, string Channel_List);
+ public static int AssignDynamicChannels(System.IntPtr Instrument_Handle, string Channel_List)
+ {
+ if (Is64BitProcess)
+ return AssignDynamicChannels_64(Instrument_Handle, Channel_List);
+ else
+ return AssignDynamicChannels_32(Instrument_Handle, Channel_List);
+ }
+
+ [DllImport(hsdioModuleName32, EntryPoint = "niHSDIO_Initiate", CallingConvention = CallingConvention.StdCall)]
+ public static extern int Initiate_32(System.IntPtr Instrument_Handle);
+ [DllImport(hsdioModuleName64, EntryPoint = "niHSDIO_Initiate", CallingConvention = CallingConvention.StdCall)]
+ public static extern int Initiate_64(System.IntPtr Instrument_Handle);
+ public static int Initiate(System.IntPtr Instrument_Handle)
+ {
+ if (Is64BitProcess)
+ return Initiate_64(Instrument_Handle);
+ else
+ return Initiate_32(Instrument_Handle);
+ }
+
+ [DllImport(hsdioModuleName32, EntryPoint = "niHSDIO_WaitUntilDone", CallingConvention = CallingConvention.StdCall)]
+ public static extern int WaitUntilDone_32(System.IntPtr Instrument_Handle, int Max_Time_Milliseconds);
+ [DllImport(hsdioModuleName64, EntryPoint = "niHSDIO_WaitUntilDone", CallingConvention = CallingConvention.StdCall)]
+ public static extern int WaitUntilDone_64(System.IntPtr Instrument_Handle, int Max_Time_Milliseconds);
+ public static int WaitUntilDone(System.IntPtr Instrument_Handle, int Max_Time_Milliseconds)
+ {
+ if (Is64BitProcess)
+ return WaitUntilDone_64(Instrument_Handle, Max_Time_Milliseconds);
+ else
+ return WaitUntilDone_32(Instrument_Handle, Max_Time_Milliseconds);
+ }
+
+ [DllImport(hsdioModuleName32, EntryPoint = "niHSDIO_Abort", CallingConvention = CallingConvention.StdCall)]
+ public static extern int Abort_32(System.IntPtr Instrument_Handle);
+ [DllImport(hsdioModuleName64, EntryPoint = "niHSDIO_Abort", CallingConvention = CallingConvention.StdCall)]
+ public static extern int Abort_64(System.IntPtr Instrument_Handle);
+ public static int Abort(System.IntPtr Instrument_Handle)
+ {
+ if (Is64BitProcess)
+ return Abort_64(Instrument_Handle);
+ else
+ return Abort_32(Instrument_Handle);
+ }
+
+ [DllImport(hsdioModuleName32, EntryPoint = "niHSDIO_ConfigureAcquisitionSize", CallingConvention = CallingConvention.StdCall)]
+ public static extern int ConfigureAcquisitionSize_32(System.IntPtr Instrument_Handle, int Samples_Per_Record, int Number_Of_Records);
+ [DllImport(hsdioModuleName64, EntryPoint = "niHSDIO_ConfigureAcquisitionSize", CallingConvention = CallingConvention.StdCall)]
+ public static extern int ConfigureAcquisitionSize_64(System.IntPtr Instrument_Handle, int Samples_Per_Record, int Number_Of_Records);
+ public static int ConfigureAcquisitionSize(System.IntPtr Instrument_Handle, int Samples_Per_Record, int Number_Of_Records)
+ {
+ if (Is64BitProcess)
+ return ConfigureAcquisitionSize_64(Instrument_Handle, Samples_Per_Record, Number_Of_Records);
+ else
+ return ConfigureAcquisitionSize_32(Instrument_Handle, Samples_Per_Record, Number_Of_Records);
+ }
+
+ [DllImport(hsdioModuleName32, EntryPoint = "niHSDIO_ConfigureDataInterpretation", CallingConvention = CallingConvention.StdCall)]
+ public static extern int ConfigureDataInterpretation_32(System.IntPtr Instrument_Handle, string Channel_List, int Data_Interpretation);
+ [DllImport(hsdioModuleName64, EntryPoint = "niHSDIO_ConfigureDataInterpretation", CallingConvention = CallingConvention.StdCall)]
+ public static extern int ConfigureDataInterpretation_64(System.IntPtr Instrument_Handle, string Channel_List, int Data_Interpretation);
+ public static int ConfigureDataInterpretation(System.IntPtr Instrument_Handle, string Channel_List, int Data_Interpretation)
+ {
+ if (Is64BitProcess)
+ return ConfigureDataInterpretation_64(Instrument_Handle, Channel_List, Data_Interpretation);
+ else
+ return ConfigureDataInterpretation_32(Instrument_Handle, Channel_List, Data_Interpretation);
+ }
+
+ [DllImport(hsdioModuleName32, EntryPoint = "niHSDIO_ReadWaveformU32", CallingConvention = CallingConvention.StdCall)]
+ public static extern int ReadWaveformU32_32(System.IntPtr Instrument_Handle, int Samples_To_Read, int Max_Time_Milliseconds, out int Number_Of_Samples_Read, [In(), Out()] uint[] Data);
+ [DllImport(hsdioModuleName64, EntryPoint = "niHSDIO_ReadWaveformU32", CallingConvention = CallingConvention.StdCall)]
+ public static extern int ReadWaveformU32_64(System.IntPtr Instrument_Handle, int Samples_To_Read, int Max_Time_Milliseconds, out int Number_Of_Samples_Read, [In(), Out()] uint[] Data);
+ public static int ReadWaveformU32(System.IntPtr Instrument_Handle, int Samples_To_Read, int Max_Time_Milliseconds, out int Number_Of_Samples_Read, [In(), Out()] uint[] Data)
+ {
+ if (Is64BitProcess)
+ return ReadWaveformU32_64(Instrument_Handle, Samples_To_Read, Max_Time_Milliseconds, out Number_Of_Samples_Read, Data);
+ else
+ return ReadWaveformU32_32(Instrument_Handle, Samples_To_Read, Max_Time_Milliseconds, out Number_Of_Samples_Read, Data);
+ }
+
+ [DllImport(hsdioModuleName32, EntryPoint = "niHSDIO_FetchWaveformU32", CallingConvention = CallingConvention.StdCall)]
+ public static extern int FetchWaveformU32_32(System.IntPtr Instrument_Handle, int Samples_To_Read, int Max_Time_Milliseconds, out int Number_Of_Samples_Read, [In(), Out()] uint[] Data);
+ [DllImport(hsdioModuleName64, EntryPoint = "niHSDIO_FetchWaveformU32", CallingConvention = CallingConvention.StdCall)]
+ public static extern int FetchWaveformU32_64(System.IntPtr Instrument_Handle, int Samples_To_Read, int Max_Time_Milliseconds, out int Number_Of_Samples_Read, [In(), Out()] uint[] Data);
+ public static int FetchWaveformU32(System.IntPtr Instrument_Handle, int Samples_To_Read, int Max_Time_Milliseconds, out int Number_Of_Samples_Read, [In(), Out()] uint[] Data)
+ {
+ if (Is64BitProcess)
+ return FetchWaveformU32_64(Instrument_Handle, Samples_To_Read, Max_Time_Milliseconds, out Number_Of_Samples_Read, Data);
+ else
+ return FetchWaveformU32_32(Instrument_Handle, Samples_To_Read, Max_Time_Milliseconds, out Number_Of_Samples_Read, Data);
+ }
+
+ [DllImport(hsdioModuleName32, EntryPoint = "niHSDIO_ReadWaveformU16", CallingConvention = CallingConvention.StdCall)]
+ public static extern int ReadWaveformU16_32(System.IntPtr Instrument_Handle, int Samples_To_Read, int Max_Time_Milliseconds, out int Number_Of_Samples_Read, [In(), Out()] ushort[] Data);
+ [DllImport(hsdioModuleName64, EntryPoint = "niHSDIO_ReadWaveformU16", CallingConvention = CallingConvention.StdCall)]
+ public static extern int ReadWaveformU16_64(System.IntPtr Instrument_Handle, int Samples_To_Read, int Max_Time_Milliseconds, out int Number_Of_Samples_Read, [In(), Out()] ushort[] Data);
+ public static int ReadWaveformU16(System.IntPtr Instrument_Handle, int Samples_To_Read, int Max_Time_Milliseconds, out int Number_Of_Samples_Read, [In(), Out()] ushort[] Data)
+ {
+ if (Is64BitProcess)
+ return ReadWaveformU16_64(Instrument_Handle, Samples_To_Read, Max_Time_Milliseconds, out Number_Of_Samples_Read, Data);
+ else
+ return ReadWaveformU16_32(Instrument_Handle, Samples_To_Read, Max_Time_Milliseconds, out Number_Of_Samples_Read, Data);
+ }
+
+ [DllImport(hsdioModuleName32, EntryPoint = "niHSDIO_FetchWaveformU16", CallingConvention = CallingConvention.StdCall)]
+ public static extern int FetchWaveformU16_32(System.IntPtr Instrument_Handle, int Samples_To_Read, int Max_Time_Milliseconds, out int Number_Of_Samples_Read, [In(), Out()] ushort[] Data);
+ [DllImport(hsdioModuleName64, EntryPoint = "niHSDIO_FetchWaveformU16", CallingConvention = CallingConvention.StdCall)]
+ public static extern int FetchWaveformU16_64(System.IntPtr Instrument_Handle, int Samples_To_Read, int Max_Time_Milliseconds, out int Number_Of_Samples_Read, [In(), Out()] ushort[] Data);
+ public static int FetchWaveformU16(System.IntPtr Instrument_Handle, int Samples_To_Read, int Max_Time_Milliseconds, out int Number_Of_Samples_Read, [In(), Out()] ushort[] Data)
+ {
+ if (Is64BitProcess)
+ return FetchWaveformU16_64(Instrument_Handle, Samples_To_Read, Max_Time_Milliseconds, out Number_Of_Samples_Read, Data);
+ else
+ return FetchWaveformU16_32(Instrument_Handle, Samples_To_Read, Max_Time_Milliseconds, out Number_Of_Samples_Read, Data);
+ }
+
+ [DllImport(hsdioModuleName32, EntryPoint = "niHSDIO_ReadWaveformU8", CallingConvention = CallingConvention.StdCall)]
+ public static extern int ReadWaveformU8_32(System.IntPtr Instrument_Handle, int Samples_To_Read, int Max_Time_Milliseconds, out int Number_Of_Samples_Read, [In(), Out()] byte[] Data);
+ [DllImport(hsdioModuleName64, EntryPoint = "niHSDIO_ReadWaveformU8", CallingConvention = CallingConvention.StdCall)]
+ public static extern int ReadWaveformU8_64(System.IntPtr Instrument_Handle, int Samples_To_Read, int Max_Time_Milliseconds, out int Number_Of_Samples_Read, [In(), Out()] byte[] Data);
+ public static int ReadWaveformU8(System.IntPtr Instrument_Handle, int Samples_To_Read, int Max_Time_Milliseconds, out int Number_Of_Samples_Read, [In(), Out()] byte[] Data)
+ {
+ if (Is64BitProcess)
+ return ReadWaveformU8_64(Instrument_Handle, Samples_To_Read, Max_Time_Milliseconds, out Number_Of_Samples_Read, Data);
+ else
+ return ReadWaveformU8_32(Instrument_Handle, Samples_To_Read, Max_Time_Milliseconds, out Number_Of_Samples_Read, Data);
+ }
+
+ [DllImport(hsdioModuleName32, EntryPoint = "niHSDIO_FetchWaveformU8", CallingConvention = CallingConvention.StdCall)]
+ public static extern int FetchWaveformU8_32(System.IntPtr Instrument_Handle, int Samples_To_Read, int Max_Time_Milliseconds, out int Number_Of_Samples_Read, [In(), Out()] byte[] Data);
+ [DllImport(hsdioModuleName64, EntryPoint = "niHSDIO_FetchWaveformU8", CallingConvention = CallingConvention.StdCall)]
+ public static extern int FetchWaveformU8_64(System.IntPtr Instrument_Handle, int Samples_To_Read, int Max_Time_Milliseconds, out int Number_Of_Samples_Read, [In(), Out()] byte[] Data);
+ public static int FetchWaveformU8(System.IntPtr Instrument_Handle, int Samples_To_Read, int Max_Time_Milliseconds, out int Number_Of_Samples_Read, [In(), Out()] byte[] Data)
+ {
+ if (Is64BitProcess)
+ return FetchWaveformU8_64(Instrument_Handle, Samples_To_Read, Max_Time_Milliseconds, out Number_Of_Samples_Read, Data);
+ else
+ return FetchWaveformU8_32(Instrument_Handle, Samples_To_Read, Max_Time_Milliseconds, out Number_Of_Samples_Read, Data);
+ }
+
+ [DllImport(hsdioModuleName32, EntryPoint = "niHSDIO_ReadMultiRecordU32", CallingConvention = CallingConvention.StdCall)]
+ public static extern int ReadMultiRecordU32_32(System.IntPtr Instrument_Handle, int Samples_To_Read, int Max_Time_Milliseconds, int Starting_Record, int Number_of_Records, uint[] Data, nihsdio_wfminfo Waveform_Info);
+ [DllImport(hsdioModuleName64, EntryPoint = "niHSDIO_ReadMultiRecordU32", CallingConvention = CallingConvention.StdCall)]
+ public static extern int ReadMultiRecordU32_64(System.IntPtr Instrument_Handle, int Samples_To_Read, int Max_Time_Milliseconds, int Starting_Record, int Number_of_Records, uint[] Data, nihsdio_wfminfo Waveform_Info);
+ public static int ReadMultiRecordU32(System.IntPtr Instrument_Handle, int Samples_To_Read, int Max_Time_Milliseconds, int Starting_Record, int Number_of_Records, uint[] Data, nihsdio_wfminfo Waveform_Info)
+ {
+ if (Is64BitProcess)
+ return ReadMultiRecordU32_64(Instrument_Handle, Samples_To_Read, Max_Time_Milliseconds, Starting_Record, Number_of_Records, Data, Waveform_Info);
+ else
+ return ReadMultiRecordU32_32(Instrument_Handle, Samples_To_Read, Max_Time_Milliseconds, Starting_Record, Number_of_Records, Data, Waveform_Info);
+ }
+
+ [DllImport(hsdioModuleName32, EntryPoint = "niHSDIO_FetchMultiRecordU32", CallingConvention = CallingConvention.StdCall)]
+ public static extern int FetchMultiRecordU32_32(System.IntPtr Instrument_Handle, int Samples_To_Read, int Max_Time_Milliseconds, int Starting_Record, int Number_of_Records, uint[] Data, nihsdio_wfminfo Waveform_Info);
+ [DllImport(hsdioModuleName64, EntryPoint = "niHSDIO_FetchMultiRecordU32", CallingConvention = CallingConvention.StdCall)]
+ public static extern int FetchMultiRecordU32_64(System.IntPtr Instrument_Handle, int Samples_To_Read, int Max_Time_Milliseconds, int Starting_Record, int Number_of_Records, uint[] Data, nihsdio_wfminfo Waveform_Info);
+ public static int FetchMultiRecordU32(System.IntPtr Instrument_Handle, int Samples_To_Read, int Max_Time_Milliseconds, int Starting_Record, int Number_of_Records, uint[] Data, nihsdio_wfminfo Waveform_Info)
+ {
+ if (Is64BitProcess)
+ return FetchMultiRecordU32_64(Instrument_Handle, Samples_To_Read, Max_Time_Milliseconds, Starting_Record, Number_of_Records, Data, Waveform_Info);
+ else
+ return FetchMultiRecordU32_32(Instrument_Handle, Samples_To_Read, Max_Time_Milliseconds, Starting_Record, Number_of_Records, Data, Waveform_Info);
+ }
+
+ [DllImport(hsdioModuleName32, EntryPoint = "niHSDIO_ReadMultiRecordU16", CallingConvention = CallingConvention.StdCall)]
+ public static extern int ReadMultiRecordU16_32(System.IntPtr Instrument_Handle, int Max_Time_Milliseconds, int Samples_To_Read, int Starting_Record, int Number_of_Records, ushort[] Data, nihsdio_wfminfo Waveform_Info);
+ [DllImport(hsdioModuleName64, EntryPoint = "niHSDIO_ReadMultiRecordU16", CallingConvention = CallingConvention.StdCall)]
+ public static extern int ReadMultiRecordU16_64(System.IntPtr Instrument_Handle, int Max_Time_Milliseconds, int Samples_To_Read, int Starting_Record, int Number_of_Records, ushort[] Data, nihsdio_wfminfo Waveform_Info);
+ public static int ReadMultiRecordU16(System.IntPtr Instrument_Handle, int Max_Time_Milliseconds, int Samples_To_Read, int Starting_Record, int Number_of_Records, ushort[] Data, nihsdio_wfminfo Waveform_Info)
+ {
+ if (Is64BitProcess)
+ return ReadMultiRecordU16_64(Instrument_Handle, Max_Time_Milliseconds, Samples_To_Read, Starting_Record, Number_of_Records, Data, Waveform_Info);
+ else
+ return ReadMultiRecordU16_32(Instrument_Handle, Max_Time_Milliseconds, Samples_To_Read, Starting_Record, Number_of_Records, Data, Waveform_Info);
+ }
+
+ [DllImport(hsdioModuleName32, EntryPoint = "niHSDIO_FetchMultiRecordU16", CallingConvention = CallingConvention.StdCall)]
+ public static extern int FetchMultiRecordU16_32(System.IntPtr Instrument_Handle, int Max_Time_Milliseconds, int Samples_To_Read, int Starting_Record, int Number_of_Records, ushort[] Data, nihsdio_wfminfo Waveform_Info);
+ [DllImport(hsdioModuleName64, EntryPoint = "niHSDIO_FetchMultiRecordU16", CallingConvention = CallingConvention.StdCall)]
+ public static extern int FetchMultiRecordU16_64(System.IntPtr Instrument_Handle, int Max_Time_Milliseconds, int Samples_To_Read, int Starting_Record, int Number_of_Records, ushort[] Data, nihsdio_wfminfo Waveform_Info);
+ public static int FetchMultiRecordU16(System.IntPtr Instrument_Handle, int Max_Time_Milliseconds, int Samples_To_Read, int Starting_Record, int Number_of_Records, ushort[] Data, nihsdio_wfminfo Waveform_Info)
+ {
+ if (Is64BitProcess)
+ return FetchMultiRecordU16_64(Instrument_Handle, Max_Time_Milliseconds, Samples_To_Read, Starting_Record, Number_of_Records, Data, Waveform_Info);
+ else
+ return FetchMultiRecordU16_32(Instrument_Handle, Max_Time_Milliseconds, Samples_To_Read, Starting_Record, Number_of_Records, Data, Waveform_Info);
+ }
+
+ [DllImport(hsdioModuleName32, EntryPoint = "niHSDIO_ReadMultiRecordU8", CallingConvention = CallingConvention.StdCall)]
+ public static extern int ReadMultiRecordU8_32(System.IntPtr Instrument_Handle, int Samples_To_Read, int Max_Time_Milliseconds, int Starting_Record, int Number_of_Records, byte[] Data, nihsdio_wfminfo Waveform_Info);
+ [DllImport(hsdioModuleName64, EntryPoint = "niHSDIO_ReadMultiRecordU8", CallingConvention = CallingConvention.StdCall)]
+ public static extern int ReadMultiRecordU8_64(System.IntPtr Instrument_Handle, int Samples_To_Read, int Max_Time_Milliseconds, int Starting_Record, int Number_of_Records, byte[] Data, nihsdio_wfminfo Waveform_Info);
+ public static int ReadMultiRecordU8(System.IntPtr Instrument_Handle, int Samples_To_Read, int Max_Time_Milliseconds, int Starting_Record, int Number_of_Records, byte[] Data, nihsdio_wfminfo Waveform_Info)
+ {
+ if (Is64BitProcess)
+ return ReadMultiRecordU8_64(Instrument_Handle, Samples_To_Read, Max_Time_Milliseconds, Starting_Record, Number_of_Records, Data, Waveform_Info);
+ else
+ return ReadMultiRecordU8_32(Instrument_Handle, Samples_To_Read, Max_Time_Milliseconds, Starting_Record, Number_of_Records, Data, Waveform_Info);
+ }
+
+ [DllImport(hsdioModuleName32, EntryPoint = "niHSDIO_FetchMultiRecordU8", CallingConvention = CallingConvention.StdCall)]
+ public static extern int FetchMultiRecordU8_32(System.IntPtr Instrument_Handle, int Samples_To_Read, int Max_Time_Milliseconds, int Starting_Record, int Number_of_Records, byte[] Data, nihsdio_wfminfo Waveform_Info);
+ [DllImport(hsdioModuleName64, EntryPoint = "niHSDIO_FetchMultiRecordU8", CallingConvention = CallingConvention.StdCall)]
+ public static extern int FetchMultiRecordU8_64(System.IntPtr Instrument_Handle, int Samples_To_Read, int Max_Time_Milliseconds, int Starting_Record, int Number_of_Records, byte[] Data, nihsdio_wfminfo Waveform_Info);
+ public static int FetchMultiRecordU8(System.IntPtr Instrument_Handle, int Samples_To_Read, int Max_Time_Milliseconds, int Starting_Record, int Number_of_Records, byte[] Data, nihsdio_wfminfo Waveform_Info)
+ {
+ if (Is64BitProcess)
+ return FetchMultiRecordU8_64(Instrument_Handle, Samples_To_Read, Max_Time_Milliseconds, Starting_Record, Number_of_Records, Data, Waveform_Info);
+ else
+ return FetchMultiRecordU8_32(Instrument_Handle, Samples_To_Read, Max_Time_Milliseconds, Starting_Record, Number_of_Records, Data, Waveform_Info);
+ }
+
+ [DllImport(hsdioModuleName32, EntryPoint = "niHSDIO_FetchWaveformDirectDMA", CallingConvention = CallingConvention.StdCall)]
+ public static extern int FetchWaveformDirectDMA_32(System.IntPtr Instrument_Handle, int Max_Time_Milliseconds, int Samples_To_Read, uint Buffer_Size, System.IntPtr Buffer_Address, nihsdio_wfminfo Waveform_Info, uint Offset_to_First_Sample);
+ [DllImport(hsdioModuleName64, EntryPoint = "niHSDIO_FetchWaveformDirectDMA", CallingConvention = CallingConvention.StdCall)]
+ public static extern int FetchWaveformDirectDMA_64(System.IntPtr Instrument_Handle, int Max_Time_Milliseconds, int Samples_To_Read, uint Buffer_Size, System.IntPtr Buffer_Address, nihsdio_wfminfo Waveform_Info, uint Offset_to_First_Sample);
+ public static int FetchWaveformDirectDMA(System.IntPtr Instrument_Handle, int Max_Time_Milliseconds, int Samples_To_Read, uint Buffer_Size, System.IntPtr Buffer_Address, nihsdio_wfminfo Waveform_Info, uint Offset_to_First_Sample)
+ {
+ if (Is64BitProcess)
+ return FetchWaveformDirectDMA_64(Instrument_Handle, Max_Time_Milliseconds, Samples_To_Read, Buffer_Size, Buffer_Address, Waveform_Info, Offset_to_First_Sample);
+ else
+ return FetchWaveformDirectDMA_32(Instrument_Handle, Max_Time_Milliseconds, Samples_To_Read, Buffer_Size, Buffer_Address, Waveform_Info, Offset_to_First_Sample);
+ }
+
+ [DllImport(hsdioModuleName32, EntryPoint = "niHSDIO_HWC_FetchSampleErrors", CallingConvention = CallingConvention.StdCall)]
+ public static extern int HWC_FetchSampleErrors_32(System.IntPtr Instrument_Handle, int Number_of_Sample_Errors_to_Read, int Max_Time_Milliseconds, out int Number_Of_Sample_Errors_Read, [In, Out] double[] Sample_Number, [In, Out] uint[] Error_Bits, [In, Out] uint[] Error_Repeat_Counts, out uint Reserved_1, out uint Reserved_2);
+ [DllImport(hsdioModuleName64, EntryPoint = "niHSDIO_HWC_FetchSampleErrors", CallingConvention = CallingConvention.StdCall)]
+ public static extern int HWC_FetchSampleErrors_64(System.IntPtr Instrument_Handle, int Number_of_Sample_Errors_to_Read, int Max_Time_Milliseconds, out int Number_Of_Sample_Errors_Read, [In, Out] double[] Sample_Number, [In, Out] uint[] Error_Bits, [In, Out] uint[] Error_Repeat_Counts, out uint Reserved_1, out uint Reserved_2);
+ public static int HWC_FetchSampleErrors(System.IntPtr Instrument_Handle, int Number_of_Sample_Errors_to_Read, int Max_Time_Milliseconds, out int Number_Of_Sample_Errors_Read, [In, Out] double[] Sample_Number, [In, Out] uint[] Error_Bits, [In, Out] uint[] Error_Repeat_Counts, out uint Reserved_1, out uint Reserved_2)
+ {
+ if (Is64BitProcess)
+ return HWC_FetchSampleErrors_32(Instrument_Handle, Number_of_Sample_Errors_to_Read, Max_Time_Milliseconds, out Number_Of_Sample_Errors_Read, Sample_Number, Error_Bits, Error_Repeat_Counts, out Reserved_1, out Reserved_2);
+ else
+ return HWC_FetchSampleErrors_64(Instrument_Handle, Number_of_Sample_Errors_to_Read, Max_Time_Milliseconds, out Number_Of_Sample_Errors_Read, Sample_Number, Error_Bits, Error_Repeat_Counts, out Reserved_1, out Reserved_2);
+ }
+
+ [DllImport(hsdioModuleName32, EntryPoint = "niHSDIO_WriteNamedWaveformU32", CallingConvention = CallingConvention.StdCall)]
+ public static extern int WriteNamedWaveformU32_32(System.IntPtr Instrument_Handle, string Waveform_Name, int Samples_To_Write, uint[] Data);
+ [DllImport(hsdioModuleName64, EntryPoint = "niHSDIO_WriteNamedWaveformU32", CallingConvention = CallingConvention.StdCall)]
+ public static extern int WriteNamedWaveformU32_64(System.IntPtr Instrument_Handle, string Waveform_Name, int Samples_To_Write, uint[] Data);
+ public static int WriteNamedWaveformU32(System.IntPtr Instrument_Handle, string Waveform_Name, int Samples_To_Write, uint[] Data)
+ {
+ if (Is64BitProcess)
+ return WriteNamedWaveformU32_64(Instrument_Handle, Waveform_Name, Samples_To_Write, Data);
+ else
+ return WriteNamedWaveformU32_32(Instrument_Handle, Waveform_Name, Samples_To_Write, Data);
+ }
+
+ [DllImport(hsdioModuleName32, EntryPoint = "niHSDIO_WriteNamedWaveformU16", CallingConvention = CallingConvention.StdCall)]
+ public static extern int WriteNamedWaveformU16_32(System.IntPtr Instrument_Handle, string Waveform_Name, int Samples_To_Write, ushort[] Data);
+ [DllImport(hsdioModuleName64, EntryPoint = "niHSDIO_WriteNamedWaveformU16", CallingConvention = CallingConvention.StdCall)]
+ public static extern int WriteNamedWaveformU16_64(System.IntPtr Instrument_Handle, string Waveform_Name, int Samples_To_Write, ushort[] Data);
+ public static int WriteNamedWaveformU16(System.IntPtr Instrument_Handle, string Waveform_Name, int Samples_To_Write, ushort[] Data)
+ {
+ if (Is64BitProcess)
+ return WriteNamedWaveformU16_64(Instrument_Handle, Waveform_Name, Samples_To_Write, Data);
+ else
+ return WriteNamedWaveformU16_32(Instrument_Handle, Waveform_Name, Samples_To_Write, Data);
+ }
+
+ [DllImport(hsdioModuleName32, EntryPoint = "niHSDIO_WriteNamedWaveformU8", CallingConvention = CallingConvention.StdCall)]
+ public static extern int WriteNamedWaveformU8_32(System.IntPtr Instrument_Handle, string Waveform_Name, int Samples_To_Write, byte[] Data);
+ [DllImport(hsdioModuleName64, EntryPoint = "niHSDIO_WriteNamedWaveformU8", CallingConvention = CallingConvention.StdCall)]
+ public static extern int WriteNamedWaveformU8_64(System.IntPtr Instrument_Handle, string Waveform_Name, int Samples_To_Write, byte[] Data);
+ public static int WriteNamedWaveformU8(System.IntPtr Instrument_Handle, string Waveform_Name, int Samples_To_Write, byte[] Data)
+ {
+ if (Is64BitProcess)
+ return WriteNamedWaveformU8_64(Instrument_Handle, Waveform_Name, Samples_To_Write, Data);
+ else
+ return WriteNamedWaveformU8_32(Instrument_Handle, Waveform_Name, Samples_To_Write, Data);
+ }
+
+ [DllImport(hsdioModuleName32, EntryPoint = "niHSDIO_WriteNamedWaveformWDT", CallingConvention = CallingConvention.StdCall)]
+ public static extern int WriteNamedWaveformWDT_32(System.IntPtr Instrument_Handle, string Waveform_Name, int Samples_To_Write, int Data_Layout, byte[] Data);
+ [DllImport(hsdioModuleName64, EntryPoint = "niHSDIO_WriteNamedWaveformWDT", CallingConvention = CallingConvention.StdCall)]
+ public static extern int WriteNamedWaveformWDT_64(System.IntPtr Instrument_Handle, string Waveform_Name, int Samples_To_Write, int Data_Layout, byte[] Data);
+ public static int WriteNamedWaveformWDT(System.IntPtr Instrument_Handle, string Waveform_Name, int Samples_To_Write, int Data_Layout, byte[] Data)
+ {
+ if (Is64BitProcess)
+ return WriteNamedWaveformWDT_64(Instrument_Handle, Waveform_Name, Samples_To_Write, Data_Layout, Data);
+ else
+ return WriteNamedWaveformWDT_32(Instrument_Handle, Waveform_Name, Samples_To_Write, Data_Layout, Data);
+ }
+
+ [DllImport(hsdioModuleName32, EntryPoint = "niHSDIO_WriteNamedWaveformFromFileHWS", CallingConvention = CallingConvention.StdCall)]
+ public static extern int WriteNamedWaveformFromFileHWS_32(System.IntPtr Instrument_Handle, string Waveform_Name, string File_Path, ushort Use_Rate_From_Waveform, out int Waveform_Size);
+ [DllImport(hsdioModuleName64, EntryPoint = "niHSDIO_WriteNamedWaveformFromFileHWS", CallingConvention = CallingConvention.StdCall)]
+ public static extern int WriteNamedWaveformFromFileHWS_64(System.IntPtr Instrument_Handle, string Waveform_Name, string File_Path, ushort Use_Rate_From_Waveform, out int Waveform_Size);
+ public static int WriteNamedWaveformFromFileHWS(System.IntPtr Instrument_Handle, string Waveform_Name, string File_Path, ushort Use_Rate_From_Waveform, out int Waveform_Size)
+ {
+ if (Is64BitProcess)
+ return WriteNamedWaveformFromFileHWS_64(Instrument_Handle, Waveform_Name, File_Path, Use_Rate_From_Waveform, out Waveform_Size);
+ else
+ return WriteNamedWaveformFromFileHWS_32(Instrument_Handle, Waveform_Name, File_Path, Use_Rate_From_Waveform, out Waveform_Size);
+ }
+
+ [DllImport(hsdioModuleName32, EntryPoint = "niHSDIO_ConfigureIdleState", CallingConvention = CallingConvention.StdCall)]
+ public static extern int ConfigureIdleState_32(System.IntPtr Instrument_Handle, string Channel_List, string Idle_State);
+ [DllImport(hsdioModuleName64, EntryPoint = "niHSDIO_ConfigureIdleState", CallingConvention = CallingConvention.StdCall)]
+ public static extern int ConfigureIdleState_64(System.IntPtr Instrument_Handle, string Channel_List, string Idle_State);
+ public static int ConfigureIdleState(System.IntPtr Instrument_Handle, string Channel_List, string Idle_State)
+ {
+ if (Is64BitProcess)
+ return ConfigureIdleState_64(Instrument_Handle, Channel_List, Idle_State);
+ else
+ return ConfigureIdleState_32(Instrument_Handle, Channel_List, Idle_State);
+ }
+
+ [DllImport(hsdioModuleName32, EntryPoint = "niHSDIO_ConfigureIdleStateU32", CallingConvention = CallingConvention.StdCall)]
+ public static extern int ConfigureIdleStateU32_32(System.IntPtr Instrument_Handle, uint Idle_State);
+ [DllImport(hsdioModuleName64, EntryPoint = "niHSDIO_ConfigureIdleStateU32", CallingConvention = CallingConvention.StdCall)]
+ public static extern int ConfigureIdleStateU32_64(System.IntPtr Instrument_Handle, uint Idle_State);
+ public static int ConfigureIdleStateU32(System.IntPtr Instrument_Handle, uint Idle_State)
+ {
+ if (Is64BitProcess)
+ return ConfigureIdleStateU32_64(Instrument_Handle, Idle_State);
+ else
+ return ConfigureIdleStateU32_32(Instrument_Handle, Idle_State);
+ }
+
+ [DllImport(hsdioModuleName32, EntryPoint = "niHSDIO_ConfigureInitialState", CallingConvention = CallingConvention.StdCall)]
+ public static extern int ConfigureInitialState_32(System.IntPtr Instrument_Handle, string Channel_List, string Initial_State);
+ [DllImport(hsdioModuleName64, EntryPoint = "niHSDIO_ConfigureInitialState", CallingConvention = CallingConvention.StdCall)]
+ public static extern int ConfigureInitialState_64(System.IntPtr Instrument_Handle, string Channel_List, string Initial_State);
+ public static int ConfigureInitialState(System.IntPtr Instrument_Handle, string Channel_List, string Initial_State)
+ {
+ if (Is64BitProcess)
+ return ConfigureInitialState_64(Instrument_Handle, Channel_List, Initial_State);
+ else
+ return ConfigureInitialState_32(Instrument_Handle, Channel_List, Initial_State);
+ }
+
+ [DllImport(hsdioModuleName32, EntryPoint = "niHSDIO_ConfigureInitialStateU32", CallingConvention = CallingConvention.StdCall)]
+ public static extern int ConfigureInitialStateU32_32(System.IntPtr Instrument_Handle, uint Initial_State);
+ [DllImport(hsdioModuleName64, EntryPoint = "niHSDIO_ConfigureInitialStateU32", CallingConvention = CallingConvention.StdCall)]
+ public static extern int ConfigureInitialStateU32_64(System.IntPtr Instrument_Handle, uint Initial_State);
+ public static int ConfigureInitialStateU32(System.IntPtr Instrument_Handle, uint Initial_State)
+ {
+ if (Is64BitProcess)
+ return ConfigureInitialStateU32_64(Instrument_Handle, Initial_State);
+ else
+ return ConfigureInitialStateU32_32(Instrument_Handle, Initial_State);
+ }
+
+ [DllImport(hsdioModuleName32, EntryPoint = "niHSDIO_ConfigureGenerationRepeat", CallingConvention = CallingConvention.StdCall)]
+ public static extern int ConfigureGenerationRepeat_32(System.IntPtr Instrument_Handle, int Repeat_Mode, int Repeat_Count);
+ [DllImport(hsdioModuleName64, EntryPoint = "niHSDIO_ConfigureGenerationRepeat", CallingConvention = CallingConvention.StdCall)]
+ public static extern int ConfigureGenerationRepeat_64(System.IntPtr Instrument_Handle, int Repeat_Mode, int Repeat_Count);
+ public static int ConfigureGenerationRepeat(System.IntPtr Instrument_Handle, int Repeat_Mode, int Repeat_Count)
+ {
+ if (Is64BitProcess)
+ return ConfigureGenerationRepeat_64(Instrument_Handle, Repeat_Mode, Repeat_Count);
+ else
+ return ConfigureGenerationRepeat_32(Instrument_Handle, Repeat_Mode, Repeat_Count);
+ }
+
+ [DllImport(hsdioModuleName32, EntryPoint = "niHSDIO_ConfigureWaveformToGenerate", CallingConvention = CallingConvention.StdCall)]
+ public static extern int ConfigureWaveformToGenerate_32(System.IntPtr Instrument_Handle, string Waveform_Name);
+ [DllImport(hsdioModuleName64, EntryPoint = "niHSDIO_ConfigureWaveformToGenerate", CallingConvention = CallingConvention.StdCall)]
+ public static extern int ConfigureWaveformToGenerate_64(System.IntPtr Instrument_Handle, string Waveform_Name);
+ public static int ConfigureWaveformToGenerate(System.IntPtr Instrument_Handle, string Waveform_Name)
+ {
+ if (Is64BitProcess)
+ return ConfigureWaveformToGenerate_64(Instrument_Handle, Waveform_Name);
+ else
+ return ConfigureWaveformToGenerate_32(Instrument_Handle, Waveform_Name);
+ }
+
+ [DllImport(hsdioModuleName32, EntryPoint = "niHSDIO_AllocateNamedWaveform", CallingConvention = CallingConvention.StdCall)]
+ public static extern int AllocateNamedWaveform_32(System.IntPtr Instrument_Handle, string Waveform_Name, int Size_In_Samples);
+ [DllImport(hsdioModuleName64, EntryPoint = "niHSDIO_AllocateNamedWaveform", CallingConvention = CallingConvention.StdCall)]
+ public static extern int AllocateNamedWaveform_64(System.IntPtr Instrument_Handle, string Waveform_Name, int Size_In_Samples);
+ public static int AllocateNamedWaveform(System.IntPtr Instrument_Handle, string Waveform_Name, int Size_In_Samples)
+ {
+ if (Is64BitProcess)
+ return AllocateNamedWaveform_64(Instrument_Handle, Waveform_Name, Size_In_Samples);
+ else
+ return AllocateNamedWaveform_32(Instrument_Handle, Waveform_Name, Size_In_Samples);
+ }
+
+ [DllImport(hsdioModuleName32, EntryPoint = "niHSDIO_SetNamedWaveformNextWritePosition", CallingConvention = CallingConvention.StdCall)]
+ public static extern int SetNamedWaveformNextWritePosition_32(System.IntPtr Instrument_Handle, string Waveform_Name, int Position, int Offset);
+ [DllImport(hsdioModuleName64, EntryPoint = "niHSDIO_SetNamedWaveformNextWritePosition", CallingConvention = CallingConvention.StdCall)]
+ public static extern int SetNamedWaveformNextWritePosition_64(System.IntPtr Instrument_Handle, string Waveform_Name, int Position, int Offset);
+ public static int SetNamedWaveformNextWritePosition(System.IntPtr Instrument_Handle, string Waveform_Name, int Position, int Offset)
+ {
+ if (Is64BitProcess)
+ return SetNamedWaveformNextWritePosition_64(Instrument_Handle, Waveform_Name, Position, Offset);
+ else
+ return SetNamedWaveformNextWritePosition_32(Instrument_Handle, Waveform_Name, Position, Offset);
+ }
+
+ [DllImport(hsdioModuleName32, EntryPoint = "niHSDIO_DeleteNamedWaveform", CallingConvention = CallingConvention.StdCall)]
+ public static extern int DeleteNamedWaveform_32(System.IntPtr Instrument_Handle, string Waveform_Name);
+ [DllImport(hsdioModuleName64, EntryPoint = "niHSDIO_DeleteNamedWaveform", CallingConvention = CallingConvention.StdCall)]
+ public static extern int DeleteNamedWaveform_64(System.IntPtr Instrument_Handle, string Waveform_Name);
+ public static int DeleteNamedWaveform(System.IntPtr Instrument_Handle, string Waveform_Name)
+ {
+ if (Is64BitProcess)
+ return DeleteNamedWaveform_64(Instrument_Handle, Waveform_Name);
+ else
+ return DeleteNamedWaveform_32(Instrument_Handle, Waveform_Name);
+ }
+
+ [DllImport(hsdioModuleName32, EntryPoint = "niHSDIO_ConfigureGenerationMode", CallingConvention = CallingConvention.StdCall)]
+ public static extern int ConfigureGenerationMode_32(System.IntPtr Instrument_Handle, int Generation_Mode);
+ [DllImport(hsdioModuleName64, EntryPoint = "niHSDIO_ConfigureGenerationMode", CallingConvention = CallingConvention.StdCall)]
+ public static extern int ConfigureGenerationMode_64(System.IntPtr Instrument_Handle, int Generation_Mode);
+ public static int ConfigureGenerationMode(System.IntPtr Instrument_Handle, int Generation_Mode)
+ {
+ if (Is64BitProcess)
+ return ConfigureGenerationMode_64(Instrument_Handle, Generation_Mode);
+ else
+ return ConfigureGenerationMode_32(Instrument_Handle, Generation_Mode);
+ }
+
+ [DllImport(hsdioModuleName32, EntryPoint = "niHSDIO_WriteScript", CallingConvention = CallingConvention.StdCall)]
+ public static extern int WriteScript_32(System.IntPtr Instrument_Handle, string Script);
+ [DllImport(hsdioModuleName64, EntryPoint = "niHSDIO_WriteScript", CallingConvention = CallingConvention.StdCall)]
+ public static extern int WriteScript_64(System.IntPtr Instrument_Handle, string Script);
+ public static int WriteScript(System.IntPtr Instrument_Handle, string Script)
+ {
+ if (Is64BitProcess)
+ return WriteScript_64(Instrument_Handle, Script);
+ else
+ return WriteScript_32(Instrument_Handle, Script);
+ }
+
+ [DllImport(hsdioModuleName32, EntryPoint = "niHSDIO_ConfigureScriptToGenerate", CallingConvention = CallingConvention.StdCall)]
+ public static extern int ConfigureScriptToGenerate_32(System.IntPtr Instrument_Handle, string Script_Name);
+ [DllImport(hsdioModuleName64, EntryPoint = "niHSDIO_ConfigureScriptToGenerate", CallingConvention = CallingConvention.StdCall)]
+ public static extern int ConfigureScriptToGenerate_64(System.IntPtr Instrument_Handle, string Script_Name);
+ public static int ConfigureScriptToGenerate(System.IntPtr Instrument_Handle, string Script_Name)
+ {
+ if (Is64BitProcess)
+ return ConfigureScriptToGenerate_64(Instrument_Handle, Script_Name);
+ else
+ return ConfigureScriptToGenerate_32(Instrument_Handle, Script_Name);
+ }
+
+ [DllImport(hsdioModuleName32, EntryPoint = "niHSDIO_ConfigureSampleClock", CallingConvention = CallingConvention.StdCall)]
+ public static extern int ConfigureSampleClock_32(System.IntPtr Instrument_Handle, string Clock_Source, double Clock_Rate);
+ [DllImport(hsdioModuleName64, EntryPoint = "niHSDIO_ConfigureSampleClock", CallingConvention = CallingConvention.StdCall)]
+ public static extern int ConfigureSampleClock_64(System.IntPtr Instrument_Handle, string Clock_Source, double Clock_Rate);
+ public static int ConfigureSampleClock(System.IntPtr Instrument_Handle, string Clock_Source, double Clock_Rate)
+ {
+ if (Is64BitProcess)
+ return ConfigureSampleClock_64(Instrument_Handle, Clock_Source, Clock_Rate);
+ else
+ return ConfigureSampleClock_32(Instrument_Handle, Clock_Source, Clock_Rate);
+ }
+
+ [DllImport(hsdioModuleName32, EntryPoint = "niHSDIO_ConfigureDataPosition", CallingConvention = CallingConvention.StdCall)]
+ public static extern int ConfigureDataPosition_32(System.IntPtr Instrument_Handle, string Channel_List, int Position);
+ [DllImport(hsdioModuleName64, EntryPoint = "niHSDIO_ConfigureDataPosition", CallingConvention = CallingConvention.StdCall)]
+ public static extern int ConfigureDataPosition_64(System.IntPtr Instrument_Handle, string Channel_List, int Position);
+ public static int ConfigureDataPosition(System.IntPtr Instrument_Handle, string Channel_List, int Position)
+ {
+ if (Is64BitProcess)
+ return ConfigureDataPosition_64(Instrument_Handle, Channel_List, Position);
+ else
+ return ConfigureDataPosition_32(Instrument_Handle, Channel_List, Position);
+ }
+
+ [DllImport(hsdioModuleName32, EntryPoint = "niHSDIO_ConfigureDataPositionDelay", CallingConvention = CallingConvention.StdCall)]
+ public static extern int ConfigureDataPositionDelay_32(System.IntPtr Instrument_Handle, string Channel_List, double Delay);
+ [DllImport(hsdioModuleName64, EntryPoint = "niHSDIO_ConfigureDataPositionDelay", CallingConvention = CallingConvention.StdCall)]
+ public static extern int ConfigureDataPositionDelay_64(System.IntPtr Instrument_Handle, string Channel_List, double Delay);
+ public static int ConfigureDataPositionDelay(System.IntPtr Instrument_Handle, string Channel_List, double Delay)
+ {
+ if (Is64BitProcess)
+ return ConfigureDataPositionDelay_64(Instrument_Handle, Channel_List, Delay);
+ else
+ return ConfigureDataPositionDelay_32(Instrument_Handle, Channel_List, Delay);
+ }
+
+ [DllImport(hsdioModuleName32, EntryPoint = "niHSDIO_ConfigureRefClock", CallingConvention = CallingConvention.StdCall)]
+ public static extern int ConfigureRefClock_32(System.IntPtr Instrument_Handle, string Clock_Source, double Clock_Rate);
+ [DllImport(hsdioModuleName64, EntryPoint = "niHSDIO_ConfigureRefClock", CallingConvention = CallingConvention.StdCall)]
+ public static extern int ConfigureRefClock_64(System.IntPtr Instrument_Handle, string Clock_Source, double Clock_Rate);
+ public static int ConfigureRefClock(System.IntPtr Instrument_Handle, string Clock_Source, double Clock_Rate)
+ {
+ if (Is64BitProcess)
+ return ConfigureRefClock_64(Instrument_Handle, Clock_Source, Clock_Rate);
+ else
+ return ConfigureRefClock_32(Instrument_Handle, Clock_Source, Clock_Rate);
+ }
+
+ [DllImport(hsdioModuleName32, EntryPoint = "niHSDIO_AdjustSampleClockRelativeDelay", CallingConvention = CallingConvention.StdCall)]
+ public static extern int AdjustSampleClockRelativeDelay_32(System.IntPtr Instrument_Handle, double Adjustment_Time);
+ [DllImport(hsdioModuleName64, EntryPoint = "niHSDIO_AdjustSampleClockRelativeDelay", CallingConvention = CallingConvention.StdCall)]
+ public static extern int AdjustSampleClockRelativeDelay_64(System.IntPtr Instrument_Handle, double Adjustment_Time);
+ public static int AdjustSampleClockRelativeDelay(System.IntPtr Instrument_Handle, double Adjustment_Time)
+ {
+ if (Is64BitProcess)
+ return AdjustSampleClockRelativeDelay_64(Instrument_Handle, Adjustment_Time);
+ else
+ return AdjustSampleClockRelativeDelay_32(Instrument_Handle, Adjustment_Time);
+ }
+
+ [DllImport(hsdioModuleName32, EntryPoint = "niHSDIO_ConfigureDigitalEdgeStartTrigger", CallingConvention = CallingConvention.StdCall)]
+ public static extern int ConfigureDigitalEdgeStartTrigger_32(System.IntPtr Instrument_Handle, string Source, int Edge);
+ [DllImport(hsdioModuleName64, EntryPoint = "niHSDIO_ConfigureDigitalEdgeStartTrigger", CallingConvention = CallingConvention.StdCall)]
+ public static extern int ConfigureDigitalEdgeStartTrigger_64(System.IntPtr Instrument_Handle, string Source, int Edge);
+ public static int ConfigureDigitalEdgeStartTrigger(System.IntPtr Instrument_Handle, string Source, int Edge)
+ {
+ if (Is64BitProcess)
+ return ConfigureDigitalEdgeStartTrigger_64(Instrument_Handle, Source, Edge);
+ else
+ return ConfigureDigitalEdgeStartTrigger_32(Instrument_Handle, Source, Edge);
+ }
+
+ [DllImport(hsdioModuleName32, EntryPoint = "niHSDIO_ConfigurePatternMatchStartTrigger", CallingConvention = CallingConvention.StdCall)]
+ public static extern int ConfigurePatternMatchStartTrigger_32(System.IntPtr Instrument_Handle, string Channel_List, string Pattern, int Trigger_When);
+ [DllImport(hsdioModuleName64, EntryPoint = "niHSDIO_ConfigurePatternMatchStartTrigger", CallingConvention = CallingConvention.StdCall)]
+ public static extern int ConfigurePatternMatchStartTrigger_64(System.IntPtr Instrument_Handle, string Channel_List, string Pattern, int Trigger_When);
+ public static int ConfigurePatternMatchStartTrigger(System.IntPtr Instrument_Handle, string Channel_List, string Pattern, int Trigger_When)
+ {
+ if (Is64BitProcess)
+ return ConfigurePatternMatchStartTrigger_64(Instrument_Handle, Channel_List, Pattern, Trigger_When);
+ else
+ return ConfigurePatternMatchStartTrigger_32(Instrument_Handle, Channel_List, Pattern, Trigger_When);
+ }
+
+ [DllImport(hsdioModuleName32, EntryPoint = "niHSDIO_ConfigurePatternMatchStartTriggerU32", CallingConvention = CallingConvention.StdCall)]
+ public static extern int ConfigurePatternMatchStartTriggerU32_32(System.IntPtr Instrument_Handle, string Channel_List, uint Pattern, int Trigger_When);
+ [DllImport(hsdioModuleName64, EntryPoint = "niHSDIO_ConfigurePatternMatchStartTriggerU32", CallingConvention = CallingConvention.StdCall)]
+ public static extern int ConfigurePatternMatchStartTriggerU32_64(System.IntPtr Instrument_Handle, string Channel_List, uint Pattern, int Trigger_When);
+ public static int ConfigurePatternMatchStartTriggerU32(System.IntPtr Instrument_Handle, string Channel_List, uint Pattern, int Trigger_When)
+ {
+ if (Is64BitProcess)
+ return ConfigurePatternMatchStartTriggerU32_64(Instrument_Handle, Channel_List, Pattern, Trigger_When);
+ else
+ return ConfigurePatternMatchStartTriggerU32_32(Instrument_Handle, Channel_List, Pattern, Trigger_When);
+ }
+
+ [DllImport(hsdioModuleName32, EntryPoint = "niHSDIO_ConfigureSoftwareStartTrigger", CallingConvention = CallingConvention.StdCall)]
+ public static extern int ConfigureSoftwareStartTrigger_32(System.IntPtr Instrument_Handle);
+ [DllImport(hsdioModuleName64, EntryPoint = "niHSDIO_ConfigureSoftwareStartTrigger", CallingConvention = CallingConvention.StdCall)]
+ public static extern int ConfigureSoftwareStartTrigger_64(System.IntPtr Instrument_Handle);
+ public static int ConfigureSoftwareStartTrigger(System.IntPtr Instrument_Handle)
+ {
+ if (Is64BitProcess)
+ return ConfigureSoftwareStartTrigger_64(Instrument_Handle);
+ else
+ return ConfigureSoftwareStartTrigger_32(Instrument_Handle);
+ }
+
+ [DllImport(hsdioModuleName32, EntryPoint = "niHSDIO_DisableStartTrigger", CallingConvention = CallingConvention.StdCall)]
+ public static extern int DisableStartTrigger_32(System.IntPtr Instrument_Handle);
+ [DllImport(hsdioModuleName64, EntryPoint = "niHSDIO_DisableStartTrigger", CallingConvention = CallingConvention.StdCall)]
+ public static extern int DisableStartTrigger_64(System.IntPtr Instrument_Handle);
+ public static int DisableStartTrigger(System.IntPtr Instrument_Handle)
+ {
+ if (Is64BitProcess)
+ return DisableStartTrigger_64(Instrument_Handle);
+ else
+ return DisableStartTrigger_32(Instrument_Handle);
+ }
+
+ [DllImport(hsdioModuleName32, EntryPoint = "niHSDIO_ConfigureDigitalEdgeRefTrigger", CallingConvention = CallingConvention.StdCall)]
+ public static extern int ConfigureDigitalEdgeRefTrigger_32(System.IntPtr Instrument_Handle, string Source, int Edge, int Pretrigger_Samples);
+ [DllImport(hsdioModuleName64, EntryPoint = "niHSDIO_ConfigureDigitalEdgeRefTrigger", CallingConvention = CallingConvention.StdCall)]
+ public static extern int ConfigureDigitalEdgeRefTrigger_64(System.IntPtr Instrument_Handle, string Source, int Edge, int Pretrigger_Samples);
+ public static int ConfigureDigitalEdgeRefTrigger(System.IntPtr Instrument_Handle, string Source, int Edge, int Pretrigger_Samples)
+ {
+ if (Is64BitProcess)
+ return ConfigureDigitalEdgeRefTrigger_64(Instrument_Handle, Source, Edge, Pretrigger_Samples);
+ else
+ return ConfigureDigitalEdgeRefTrigger_32(Instrument_Handle, Source, Edge, Pretrigger_Samples);
+ }
+
+ [DllImport(hsdioModuleName32, EntryPoint = "niHSDIO_ConfigurePatternMatchRefTrigger", CallingConvention = CallingConvention.StdCall)]
+ public static extern int ConfigurePatternMatchRefTrigger_32(System.IntPtr Instrument_Handle, string Channel_List, string Pattern, int Trigger_When, int Pretrigger_Samples);
+ [DllImport(hsdioModuleName64, EntryPoint = "niHSDIO_ConfigurePatternMatchRefTrigger", CallingConvention = CallingConvention.StdCall)]
+ public static extern int ConfigurePatternMatchRefTrigger_64(System.IntPtr Instrument_Handle, string Channel_List, string Pattern, int Trigger_When, int Pretrigger_Samples);
+ public static int ConfigurePatternMatchRefTrigger(System.IntPtr Instrument_Handle, string Channel_List, string Pattern, int Trigger_When, int Pretrigger_Samples)
+ {
+ if (Is64BitProcess)
+ return ConfigurePatternMatchRefTrigger_64(Instrument_Handle, Channel_List, Pattern, Trigger_When, Pretrigger_Samples);
+ else
+ return ConfigurePatternMatchRefTrigger_32(Instrument_Handle, Channel_List, Pattern, Trigger_When, Pretrigger_Samples);
+ }
+
+ [DllImport(hsdioModuleName32, EntryPoint = "niHSDIO_ConfigurePatternMatchRefTriggerU32", CallingConvention = CallingConvention.StdCall)]
+ public static extern int ConfigurePatternMatchRefTriggerU32_32(System.IntPtr Instrument_Handle, string Channel_List, uint Pattern, int Trigger_When, int Pretrigger_Samples);
+ [DllImport(hsdioModuleName64, EntryPoint = "niHSDIO_ConfigurePatternMatchRefTriggerU32", CallingConvention = CallingConvention.StdCall)]
+ public static extern int ConfigurePatternMatchRefTriggerU32_64(System.IntPtr Instrument_Handle, string Channel_List, uint Pattern, int Trigger_When, int Pretrigger_Samples);
+ public static int ConfigurePatternMatchRefTriggerU32(System.IntPtr Instrument_Handle, string Channel_List, uint Pattern, int Trigger_When, int Pretrigger_Samples)
+ {
+ if (Is64BitProcess)
+ return ConfigurePatternMatchRefTriggerU32_64(Instrument_Handle, Channel_List, Pattern, Trigger_When, Pretrigger_Samples);
+ else
+ return ConfigurePatternMatchRefTriggerU32_32(Instrument_Handle, Channel_List, Pattern, Trigger_When, Pretrigger_Samples);
+ }
+
+ [DllImport(hsdioModuleName32, EntryPoint = "niHSDIO_ConfigureSoftwareRefTrigger", CallingConvention = CallingConvention.StdCall)]
+ public static extern int ConfigureSoftwareRefTrigger_32(System.IntPtr Instrument_Handle, int Pretrigger_Samples);
+ [DllImport(hsdioModuleName64, EntryPoint = "niHSDIO_ConfigureSoftwareRefTrigger", CallingConvention = CallingConvention.StdCall)]
+ public static extern int ConfigureSoftwareRefTrigger_64(System.IntPtr Instrument_Handle, int Pretrigger_Samples);
+ public static int ConfigureSoftwareRefTrigger(System.IntPtr Instrument_Handle, int Pretrigger_Samples)
+ {
+ if (Is64BitProcess)
+ return ConfigureSoftwareRefTrigger_64(Instrument_Handle, Pretrigger_Samples);
+ else
+ return ConfigureSoftwareRefTrigger_32(Instrument_Handle, Pretrigger_Samples);
+ }
+
+ [DllImport(hsdioModuleName32, EntryPoint = "niHSDIO_DisableRefTrigger", CallingConvention = CallingConvention.StdCall)]
+ public static extern int DisableRefTrigger_32(System.IntPtr Instrument_Handle);
+ [DllImport(hsdioModuleName64, EntryPoint = "niHSDIO_DisableRefTrigger", CallingConvention = CallingConvention.StdCall)]
+ public static extern int DisableRefTrigger_64(System.IntPtr Instrument_Handle);
+ public static int DisableRefTrigger(System.IntPtr Instrument_Handle)
+ {
+ if (Is64BitProcess)
+ return DisableRefTrigger_64(Instrument_Handle);
+ else
+ return DisableRefTrigger_32(Instrument_Handle);
+ }
+
+ [DllImport(hsdioModuleName32, EntryPoint = "niHSDIO_ConfigureDigitalEdgeAdvanceTrigger", CallingConvention = CallingConvention.StdCall)]
+ public static extern int ConfigureDigitalEdgeAdvanceTrigger_32(System.IntPtr Instrument_Handle, string Source, int Edge);
+ [DllImport(hsdioModuleName64, EntryPoint = "niHSDIO_ConfigureDigitalEdgeAdvanceTrigger", CallingConvention = CallingConvention.StdCall)]
+ public static extern int ConfigureDigitalEdgeAdvanceTrigger_64(System.IntPtr Instrument_Handle, string Source, int Edge);
+ public static int ConfigureDigitalEdgeAdvanceTrigger(System.IntPtr Instrument_Handle, string Source, int Edge)
+ {
+ if (Is64BitProcess)
+ return ConfigureDigitalEdgeAdvanceTrigger_64(Instrument_Handle, Source, Edge);
+ else
+ return ConfigureDigitalEdgeAdvanceTrigger_32(Instrument_Handle, Source, Edge);
+ }
+
+ [DllImport(hsdioModuleName32, EntryPoint = "niHSDIO_ConfigurePatternMatchAdvanceTrigger", CallingConvention = CallingConvention.StdCall)]
+ public static extern int ConfigurePatternMatchAdvanceTrigger_32(System.IntPtr Instrument_Handle, string Channel_List, string Pattern, int Trigger_When);
+ [DllImport(hsdioModuleName64, EntryPoint = "niHSDIO_ConfigurePatternMatchAdvanceTrigger", CallingConvention = CallingConvention.StdCall)]
+ public static extern int ConfigurePatternMatchAdvanceTrigger_64(System.IntPtr Instrument_Handle, string Channel_List, string Pattern, int Trigger_When);
+ public static int ConfigurePatternMatchAdvanceTrigger(System.IntPtr Instrument_Handle, string Channel_List, string Pattern, int Trigger_When)
+ {
+ if (Is64BitProcess)
+ return ConfigurePatternMatchAdvanceTrigger_64(Instrument_Handle, Channel_List, Pattern, Trigger_When);
+ else
+ return ConfigurePatternMatchAdvanceTrigger_32(Instrument_Handle, Channel_List, Pattern, Trigger_When);
+ }
+
+ [DllImport(hsdioModuleName32, EntryPoint = "niHSDIO_ConfigurePatternMatchAdvanceTriggerU32", CallingConvention = CallingConvention.StdCall)]
+ public static extern int ConfigurePatternMatchAdvanceTriggerU32_32(System.IntPtr Instrument_Handle, string Channel_List, uint Pattern, int Trigger_When);
+ [DllImport(hsdioModuleName64, EntryPoint = "niHSDIO_ConfigurePatternMatchAdvanceTriggerU32", CallingConvention = CallingConvention.StdCall)]
+ public static extern int ConfigurePatternMatchAdvanceTriggerU32_64(System.IntPtr Instrument_Handle, string Channel_List, uint Pattern, int Trigger_When);
+ public static int ConfigurePatternMatchAdvanceTriggerU32(System.IntPtr Instrument_Handle, string Channel_List, uint Pattern, int Trigger_When)
+ {
+ if (Is64BitProcess)
+ return ConfigurePatternMatchAdvanceTriggerU32_64(Instrument_Handle, Channel_List, Pattern, Trigger_When);
+ else
+ return ConfigurePatternMatchAdvanceTriggerU32_32(Instrument_Handle, Channel_List, Pattern, Trigger_When);
+ }
+
+ [DllImport(hsdioModuleName32, EntryPoint = "niHSDIO_ConfigureSoftwareAdvanceTrigger", CallingConvention = CallingConvention.StdCall)]
+ public static extern int ConfigureSoftwareAdvanceTrigger_32(System.IntPtr Instrument_Handle);
+ [DllImport(hsdioModuleName64, EntryPoint = "niHSDIO_ConfigureSoftwareAdvanceTrigger", CallingConvention = CallingConvention.StdCall)]
+ public static extern int ConfigureSoftwareAdvanceTrigger_64(System.IntPtr Instrument_Handle);
+ public static int ConfigureSoftwareAdvanceTrigger(System.IntPtr Instrument_Handle)
+ {
+ if (Is64BitProcess)
+ return ConfigureSoftwareAdvanceTrigger_64(Instrument_Handle);
+ else
+ return ConfigureSoftwareAdvanceTrigger_32(Instrument_Handle);
+ }
+
+ [DllImport(hsdioModuleName32, EntryPoint = "niHSDIO_DisableAdvanceTrigger", CallingConvention = CallingConvention.StdCall)]
+ public static extern int DisableAdvanceTrigger_32(System.IntPtr Instrument_Handle);
+ [DllImport(hsdioModuleName64, EntryPoint = "niHSDIO_DisableAdvanceTrigger", CallingConvention = CallingConvention.StdCall)]
+ public static extern int DisableAdvanceTrigger_64(System.IntPtr Instrument_Handle);
+ public static int DisableAdvanceTrigger(System.IntPtr Instrument_Handle)
+ {
+ if (Is64BitProcess)
+ return DisableAdvanceTrigger_64(Instrument_Handle);
+ else
+ return DisableAdvanceTrigger_32(Instrument_Handle);
+ }
+
+ [DllImport(hsdioModuleName32, EntryPoint = "niHSDIO_ConfigureDigitalEdgeScriptTrigger", CallingConvention = CallingConvention.StdCall)]
+ public static extern int ConfigureDigitalEdgeScriptTrigger_32(System.IntPtr Instrument_Handle, string Trigger_ID, string Source, int Edge);
+ [DllImport(hsdioModuleName64, EntryPoint = "niHSDIO_ConfigureDigitalEdgeScriptTrigger", CallingConvention = CallingConvention.StdCall)]
+ public static extern int ConfigureDigitalEdgeScriptTrigger_64(System.IntPtr Instrument_Handle, string Trigger_ID, string Source, int Edge);
+ public static int ConfigureDigitalEdgeScriptTrigger(System.IntPtr Instrument_Handle, string Trigger_ID, string Source, int Edge)
+ {
+ if (Is64BitProcess)
+ return ConfigureDigitalEdgeScriptTrigger_64(Instrument_Handle, Trigger_ID, Source, Edge);
+ else
+ return ConfigureDigitalEdgeScriptTrigger_32(Instrument_Handle, Trigger_ID, Source, Edge);
+ }
+
+ [DllImport(hsdioModuleName32, EntryPoint = "niHSDIO_ConfigureDigitalLevelScriptTrigger", CallingConvention = CallingConvention.StdCall)]
+ public static extern int ConfigureDigitalLevelScriptTrigger_32(System.IntPtr Instrument_Handle, string Trigger_ID, string Source, int Level);
+ [DllImport(hsdioModuleName64, EntryPoint = "niHSDIO_ConfigureDigitalLevelScriptTrigger", CallingConvention = CallingConvention.StdCall)]
+ public static extern int ConfigureDigitalLevelScriptTrigger_64(System.IntPtr Instrument_Handle, string Trigger_ID, string Source, int Level);
+ public static int ConfigureDigitalLevelScriptTrigger(System.IntPtr Instrument_Handle, string Trigger_ID, string Source, int Level)
+ {
+ if (Is64BitProcess)
+ return ConfigureDigitalLevelScriptTrigger_64(Instrument_Handle, Trigger_ID, Source, Level);
+ else
+ return ConfigureDigitalLevelScriptTrigger_32(Instrument_Handle, Trigger_ID, Source, Level);
+ }
+
+ [DllImport(hsdioModuleName32, EntryPoint = "niHSDIO_ConfigureSoftwareScriptTrigger", CallingConvention = CallingConvention.StdCall)]
+ public static extern int ConfigureSoftwareScriptTrigger_32(System.IntPtr Instrument_Handle, string Trigger_ID);
+ [DllImport(hsdioModuleName64, EntryPoint = "niHSDIO_ConfigureSoftwareScriptTrigger", CallingConvention = CallingConvention.StdCall)]
+ public static extern int ConfigureSoftwareScriptTrigger_64(System.IntPtr Instrument_Handle, string Trigger_ID);
+ public static int ConfigureSoftwareScriptTrigger(System.IntPtr Instrument_Handle, string Trigger_ID)
+ {
+ if (Is64BitProcess)
+ return ConfigureSoftwareScriptTrigger_64(Instrument_Handle, Trigger_ID);
+ else
+ return ConfigureSoftwareScriptTrigger_32(Instrument_Handle, Trigger_ID);
+ }
+
+ [DllImport(hsdioModuleName32, EntryPoint = "niHSDIO_DisableScriptTrigger", CallingConvention = CallingConvention.StdCall)]
+ public static extern int DisableScriptTrigger_32(System.IntPtr Instrument_Handle, string Trigger_ID);
+ [DllImport(hsdioModuleName64, EntryPoint = "niHSDIO_DisableScriptTrigger", CallingConvention = CallingConvention.StdCall)]
+ public static extern int DisableScriptTrigger_64(System.IntPtr Instrument_Handle, string Trigger_ID);
+ public static int DisableScriptTrigger(System.IntPtr Instrument_Handle, string Trigger_ID)
+ {
+ if (Is64BitProcess)
+ return DisableScriptTrigger_64(Instrument_Handle, Trigger_ID);
+ else
+ return DisableScriptTrigger_32(Instrument_Handle, Trigger_ID);
+ }
+
+ [DllImport(hsdioModuleName32, EntryPoint = "niHSDIO_ConfigureDigitalLevelPauseTrigger", CallingConvention = CallingConvention.StdCall)]
+ public static extern int ConfigureDigitalLevelPauseTrigger_32(System.IntPtr Instrument_Handle, string Source, int Level);
+ [DllImport(hsdioModuleName64, EntryPoint = "niHSDIO_ConfigureDigitalLevelPauseTrigger", CallingConvention = CallingConvention.StdCall)]
+ public static extern int ConfigureDigitalLevelPauseTrigger_64(System.IntPtr Instrument_Handle, string Source, int Level);
+ public static int ConfigureDigitalLevelPauseTrigger(System.IntPtr Instrument_Handle, string Source, int Level)
+ {
+ if (Is64BitProcess)
+ return ConfigureDigitalLevelPauseTrigger_64(Instrument_Handle, Source, Level);
+ else
+ return ConfigureDigitalLevelPauseTrigger_32(Instrument_Handle, Source, Level);
+ }
+
+ [DllImport(hsdioModuleName32, EntryPoint = "niHSDIO_ConfigurePatternMatchPauseTrigger", CallingConvention = CallingConvention.StdCall)]
+ public static extern int ConfigurePatternMatchPauseTrigger_32(System.IntPtr Instrument_Handle, string Channel_List, string Pattern, int Trigger_When);
+ [DllImport(hsdioModuleName64, EntryPoint = "niHSDIO_ConfigurePatternMatchPauseTrigger", CallingConvention = CallingConvention.StdCall)]
+ public static extern int ConfigurePatternMatchPauseTrigger_64(System.IntPtr Instrument_Handle, string Channel_List, string Pattern, int Trigger_When);
+ public static int ConfigurePatternMatchPauseTrigger(System.IntPtr Instrument_Handle, string Channel_List, string Pattern, int Trigger_When)
+ {
+ if (Is64BitProcess)
+ return ConfigurePatternMatchPauseTrigger_64(Instrument_Handle, Channel_List, Pattern, Trigger_When);
+ else
+ return ConfigurePatternMatchPauseTrigger_32(Instrument_Handle, Channel_List, Pattern, Trigger_When);
+ }
+
+ [DllImport(hsdioModuleName32, EntryPoint = "niHSDIO_ConfigurePatternMatchPauseTriggerU32", CallingConvention = CallingConvention.StdCall)]
+ public static extern int ConfigurePatternMatchPauseTriggerU32_32(System.IntPtr Instrument_Handle, string Channel_List, uint Pattern, int Trigger_When);
+ [DllImport(hsdioModuleName64, EntryPoint = "niHSDIO_ConfigurePatternMatchPauseTriggerU32", CallingConvention = CallingConvention.StdCall)]
+ public static extern int ConfigurePatternMatchPauseTriggerU32_64(System.IntPtr Instrument_Handle, string Channel_List, uint Pattern, int Trigger_When);
+ public static int ConfigurePatternMatchPauseTriggerU32(System.IntPtr Instrument_Handle, string Channel_List, uint Pattern, int Trigger_When)
+ {
+ if (Is64BitProcess)
+ return ConfigurePatternMatchPauseTriggerU32_64(Instrument_Handle, Channel_List, Pattern, Trigger_When);
+ else
+ return ConfigurePatternMatchPauseTriggerU32_32(Instrument_Handle, Channel_List, Pattern, Trigger_When);
+ }
+
+ [DllImport(hsdioModuleName32, EntryPoint = "niHSDIO_DisablePauseTrigger", CallingConvention = CallingConvention.StdCall)]
+ public static extern int DisablePauseTrigger_32(System.IntPtr Instrument_Handle);
+ [DllImport(hsdioModuleName64, EntryPoint = "niHSDIO_DisablePauseTrigger", CallingConvention = CallingConvention.StdCall)]
+ public static extern int DisablePauseTrigger_64(System.IntPtr Instrument_Handle);
+ public static int DisablePauseTrigger(System.IntPtr Instrument_Handle)
+ {
+ if (Is64BitProcess)
+ return DisablePauseTrigger_64(Instrument_Handle);
+ else
+ return DisablePauseTrigger_32(Instrument_Handle);
+ }
+
+ [DllImport(hsdioModuleName32, EntryPoint = "niHSDIO_ConfigureDigitalEdgeStopTrigger", CallingConvention = CallingConvention.StdCall)]
+ public static extern int ConfigureDigitalEdgeStopTrigger_32(System.IntPtr Instrument_Handle, string Source, int Edge);
+ [DllImport(hsdioModuleName64, EntryPoint = "niHSDIO_ConfigureDigitalEdgeStopTrigger", CallingConvention = CallingConvention.StdCall)]
+ public static extern int ConfigureDigitalEdgeStopTrigger_64(System.IntPtr Instrument_Handle, string Source, int Edge);
+ public static int ConfigureDigitalEdgeStopTrigger(System.IntPtr Instrument_Handle, string Source, int Edge)
+ {
+ if (Is64BitProcess)
+ return ConfigureDigitalEdgeStopTrigger_64(Instrument_Handle, Source, Edge);
+ else
+ return ConfigureDigitalEdgeStopTrigger_32(Instrument_Handle, Source, Edge);
+ }
+
+ [DllImport(hsdioModuleName32, EntryPoint = "niHSDIO_ConfigureSoftwareStopTrigger", CallingConvention = CallingConvention.StdCall)]
+ public static extern int ConfigureSoftwareStopTrigger_32(System.IntPtr Instrument_Handle);
+ [DllImport(hsdioModuleName64, EntryPoint = "niHSDIO_ConfigureSoftwareStopTrigger", CallingConvention = CallingConvention.StdCall)]
+ public static extern int ConfigureSoftwareStopTrigger_64(System.IntPtr Instrument_Handle);
+ public static int ConfigureSoftwareStopTrigger(System.IntPtr Instrument_Handle)
+ {
+ if (Is64BitProcess)
+ return ConfigureSoftwareStopTrigger_64(Instrument_Handle);
+ else
+ return ConfigureSoftwareStopTrigger_32(Instrument_Handle);
+ }
+
+ [DllImport(hsdioModuleName32, EntryPoint = "niHSDIO_DisableStopTrigger", CallingConvention = CallingConvention.StdCall)]
+ public static extern int DisableStopTrigger_32(System.IntPtr Instrument_Handle);
+ [DllImport(hsdioModuleName64, EntryPoint = "niHSDIO_DisableStopTrigger", CallingConvention = CallingConvention.StdCall)]
+ public static extern int DisableStopTrigger_64(System.IntPtr Instrument_Handle);
+ public static int DisableStopTrigger(System.IntPtr Instrument_Handle)
+ {
+ if (Is64BitProcess)
+ return DisableStopTrigger_64(Instrument_Handle);
+ else
+ return DisableStopTrigger_32(Instrument_Handle);
+ }
+
+ [DllImport(hsdioModuleName32, EntryPoint = "niHSDIO_SendSoftwareEdgeTrigger", CallingConvention = CallingConvention.StdCall)]
+ public static extern int SendSoftwareEdgeTrigger_32(System.IntPtr Instrument_Handle, int Trigger, string Trigger_Identifier);
+ [DllImport(hsdioModuleName64, EntryPoint = "niHSDIO_SendSoftwareEdgeTrigger", CallingConvention = CallingConvention.StdCall)]
+ public static extern int SendSoftwareEdgeTrigger_64(System.IntPtr Instrument_Handle, int Trigger, string Trigger_Identifier);
+ public static int SendSoftwareEdgeTrigger(System.IntPtr Instrument_Handle, int Trigger, string Trigger_Identifier)
+ {
+ if (Is64BitProcess)
+ return SendSoftwareEdgeTrigger_64(Instrument_Handle, Trigger, Trigger_Identifier);
+ else
+ return SendSoftwareEdgeTrigger_32(Instrument_Handle, Trigger, Trigger_Identifier);
+ }
+
+ [DllImport(hsdioModuleName32, EntryPoint = "niHSDIO_ExportSignal", CallingConvention = CallingConvention.StdCall)]
+ public static extern int ExportSignal_32(System.IntPtr Instrument_Handle, int Signal, string Signal_Identifier, string Output_Terminal);
+ [DllImport(hsdioModuleName64, EntryPoint = "niHSDIO_ExportSignal", CallingConvention = CallingConvention.StdCall)]
+ public static extern int ExportSignal_64(System.IntPtr Instrument_Handle, int Signal, string Signal_Identifier, string Output_Terminal);
+ public static int ExportSignal(System.IntPtr Instrument_Handle, int Signal, string Signal_Identifier, string Output_Terminal)
+ {
+ if (Is64BitProcess)
+ return ExportSignal_64(Instrument_Handle, Signal, Signal_Identifier, Output_Terminal);
+ else
+ return ExportSignal_32(Instrument_Handle, Signal, Signal_Identifier, Output_Terminal);
+ }
+
+ [DllImport(hsdioModuleName32, EntryPoint = "niHSDIO_AssignStaticChannels", CallingConvention = CallingConvention.StdCall)]
+ public static extern int AssignStaticChannels_32(System.IntPtr Instrument_Handle, string Channel_List);
+ [DllImport(hsdioModuleName64, EntryPoint = "niHSDIO_AssignStaticChannels", CallingConvention = CallingConvention.StdCall)]
+ public static extern int AssignStaticChannels_64(System.IntPtr Instrument_Handle, string Channel_List);
+ public static int AssignStaticChannels(System.IntPtr Instrument_Handle, string Channel_List)
+ {
+ if (Is64BitProcess)
+ return AssignStaticChannels_64(Instrument_Handle, Channel_List);
+ else
+ return AssignStaticChannels_32(Instrument_Handle, Channel_List);
+ }
+
+ [DllImport(hsdioModuleName32, EntryPoint = "niHSDIO_ReadStaticU32", CallingConvention = CallingConvention.StdCall)]
+ public static extern int ReadStaticU32_32(System.IntPtr Instrument_Handle, out uint Read_Data);
+ [DllImport(hsdioModuleName64, EntryPoint = "niHSDIO_ReadStaticU32", CallingConvention = CallingConvention.StdCall)]
+ public static extern int ReadStaticU32_64(System.IntPtr Instrument_Handle, out uint Read_Data);
+ public static int ReadStaticU32(System.IntPtr Instrument_Handle, out uint Read_Data)
+ {
+ if (Is64BitProcess)
+ return ReadStaticU32_64(Instrument_Handle, out Read_Data);
+ else
+ return ReadStaticU32_32(Instrument_Handle, out Read_Data);
+ }
+
+ [DllImport(hsdioModuleName32, EntryPoint = "niHSDIO_WriteStaticU32", CallingConvention = CallingConvention.StdCall)]
+ public static extern int WriteStaticU32_32(System.IntPtr Instrument_Handle, uint Write_Data, uint Channel_Mask);
+ [DllImport(hsdioModuleName64, EntryPoint = "niHSDIO_WriteStaticU32", CallingConvention = CallingConvention.StdCall)]
+ public static extern int WriteStaticU32_64(System.IntPtr Instrument_Handle, uint Write_Data, uint Channel_Mask);
+ public static int WriteStaticU32(System.IntPtr Instrument_Handle, uint Write_Data, uint Channel_Mask)
+ {
+ if (Is64BitProcess)
+ return WriteStaticU32_64(Instrument_Handle, Write_Data, Channel_Mask);
+ else
+ return WriteStaticU32_32(Instrument_Handle, Write_Data, Channel_Mask);
+ }
+
+ [DllImport(hsdioModuleName32, EntryPoint = "niHSDIO_STPMU_SourceVoltage", CallingConvention = CallingConvention.StdCall)]
+ public static extern int STPMU_SourceVoltage_32(System.IntPtr Instrument_Handle, string channelList, double voltageLevel, int sense, double currentRange);
+ [DllImport(hsdioModuleName64, EntryPoint = "niHSDIO_STPMU_SourceVoltage", CallingConvention = CallingConvention.StdCall)]
+ public static extern int STPMU_SourceVoltage_64(System.IntPtr Instrument_Handle, string channelList, double voltageLevel, int sense, double currentRange);
+ public static int STPMU_SourceVoltage(System.IntPtr Instrument_Handle, string channelList, double voltageLevel, int sense, double currentRange)
+ {
+ if (Is64BitProcess)
+ return STPMU_SourceVoltage_64(Instrument_Handle, channelList, voltageLevel, sense, currentRange);
+ else
+ return STPMU_SourceVoltage_32(Instrument_Handle, channelList, voltageLevel, sense, currentRange);
+ }
+
+ [DllImport(hsdioModuleName32, EntryPoint = "niHSDIO_STPMU_SourceCurrent", CallingConvention = CallingConvention.StdCall)]
+ public static extern int STPMU_SourceCurrent_32(System.IntPtr Instrument_Handle, string channelList, double currentLevel, double currentLevelRange, double lowerVoltageLimit, double upperVoltageLimit);
+ [DllImport(hsdioModuleName64, EntryPoint = "niHSDIO_STPMU_SourceCurrent", CallingConvention = CallingConvention.StdCall)]
+ public static extern int STPMU_SourceCurrent_64(System.IntPtr Instrument_Handle, string channelList, double currentLevel, double currentLevelRange, double lowerVoltageLimit, double upperVoltageLimit);
+ public static int STPMU_SourceCurrent(System.IntPtr Instrument_Handle, string channelList, double currentLevel, double currentLevelRange, double lowerVoltageLimit, double upperVoltageLimit)
+ {
+ if (Is64BitProcess)
+ return STPMU_SourceCurrent_64(Instrument_Handle, channelList, currentLevel, currentLevelRange, lowerVoltageLimit, upperVoltageLimit);
+ else
+ return STPMU_SourceCurrent_32(Instrument_Handle, channelList, currentLevel, currentLevelRange, lowerVoltageLimit, upperVoltageLimit);
+ }
+
+ [DllImport(hsdioModuleName32, EntryPoint = "niHSDIO_STPMU_DisablePMU", CallingConvention = CallingConvention.StdCall)]
+ public static extern int STPMU_DisablePMU_32(System.IntPtr Instrument_Handle, string channelList, int returnState);
+ [DllImport(hsdioModuleName64, EntryPoint = "niHSDIO_STPMU_DisablePMU", CallingConvention = CallingConvention.StdCall)]
+ public static extern int STPMU_DisablePMU_64(System.IntPtr Instrument_Handle, string channelList, int returnState);
+ public static int STPMU_DisablePMU(System.IntPtr Instrument_Handle, string channelList, int returnState)
+ {
+ if (Is64BitProcess)
+ return STPMU_DisablePMU_64(Instrument_Handle, channelList, returnState);
+ else
+ return STPMU_DisablePMU_32(Instrument_Handle, channelList, returnState);
+ }
+
+ [DllImport(hsdioModuleName32, EntryPoint = "niHSDIO_STPMU_MeasureVoltage", CallingConvention = CallingConvention.StdCall)]
+ public static extern int STPMU_MeasureVoltage_32(System.IntPtr Instrument_Handle, string channelList, double apertureTime__4_us_, int sense, [In(), Out()] double[] measurements, out int numberOfMeasurements);
+ [DllImport(hsdioModuleName64, EntryPoint = "niHSDIO_STPMU_MeasureVoltage", CallingConvention = CallingConvention.StdCall)]
+ public static extern int STPMU_MeasureVoltage_64(System.IntPtr Instrument_Handle, string channelList, double apertureTime__4_us_, int sense, [In(), Out()] double[] measurements, out int numberOfMeasurements);
+ public static int STPMU_MeasureVoltage(System.IntPtr Instrument_Handle, string channelList, double apertureTime__4_us_, int sense, [In(), Out()] double[] measurements, out int numberOfMeasurements)
+ {
+ if (Is64BitProcess)
+ return STPMU_MeasureVoltage_64(Instrument_Handle, channelList, apertureTime__4_us_, sense, measurements, out numberOfMeasurements);
+ else
+ return STPMU_MeasureVoltage_32(Instrument_Handle, channelList, apertureTime__4_us_, sense, measurements, out numberOfMeasurements);
+ }
+
+ [DllImport(hsdioModuleName32, EntryPoint = "niHSDIO_STPMU_MeasureCurrent", CallingConvention = CallingConvention.StdCall)]
+ public static extern int STPMU_MeasureCurrent_32(System.IntPtr Instrument_Handle, string channelList, double aperture_time__4_us_, [In(), Out()] double[] measurements, out int numberOfMeasurements);
+ [DllImport(hsdioModuleName64, EntryPoint = "niHSDIO_STPMU_MeasureCurrent", CallingConvention = CallingConvention.StdCall)]
+ public static extern int STPMU_MeasureCurrent_64(System.IntPtr Instrument_Handle, string channelList, double aperture_time__4_us_, [In(), Out()] double[] measurements, out int numberOfMeasurements);
+ public static int STPMU_MeasureCurrent(System.IntPtr Instrument_Handle, string channelList, double aperture_time__4_us_, [In(), Out()] double[] measurements, out int numberOfMeasurements)
+ {
+ if (Is64BitProcess)
+ return STPMU_MeasureCurrent_64(Instrument_Handle, channelList, aperture_time__4_us_, measurements, out numberOfMeasurements);
+ else
+ return STPMU_MeasureCurrent_32(Instrument_Handle, channelList, aperture_time__4_us_, measurements, out numberOfMeasurements);
+ }
+
+ [DllImport(hsdioModuleName32, EntryPoint = "niHSDIO_STPMU_ExternalForceControl", CallingConvention = CallingConvention.StdCall)]
+ public static extern int STPMU_ExternalForceControl_32(System.IntPtr Instrument_Handle, string channelList, int action, int connector);
+ [DllImport(hsdioModuleName64, EntryPoint = "niHSDIO_STPMU_ExternalForceControl", CallingConvention = CallingConvention.StdCall)]
+ public static extern int STPMU_ExternalForceControl_64(System.IntPtr Instrument_Handle, string channelList, int action, int connector);
+ public static int STPMU_ExternalForceControl(System.IntPtr Instrument_Handle, string channelList, int action, int connector)
+ {
+ if (Is64BitProcess)
+ return STPMU_ExternalForceControl_64(Instrument_Handle, channelList, action, connector);
+ else
+ return STPMU_ExternalForceControl_32(Instrument_Handle, channelList, action, connector);
+ }
+
+ [DllImport(hsdioModuleName32, EntryPoint = "niHSDIO_STPMU_ExternalSenseControl", CallingConvention = CallingConvention.StdCall)]
+ public static extern int STPMU_ExternalSenseControl_32(System.IntPtr Instrument_Handle, string channel, int action, int connector);
+ [DllImport(hsdioModuleName64, EntryPoint = "niHSDIO_STPMU_ExternalSenseControl", CallingConvention = CallingConvention.StdCall)]
+ public static extern int STPMU_ExternalSenseControl_64(System.IntPtr Instrument_Handle, string channel, int action, int connector);
+ public static int STPMU_ExternalSenseControl(System.IntPtr Instrument_Handle, string channel, int action, int connector)
+ {
+ if (Is64BitProcess)
+ return STPMU_ExternalSenseControl_64(Instrument_Handle, channel, action, connector);
+ else
+ return STPMU_ExternalSenseControl_32(Instrument_Handle, channel, action, connector);
+ }
+
+ [DllImport(hsdioModuleName32, EntryPoint = "niHSDIO_SelfCal", CallingConvention = CallingConvention.StdCall)]
+ public static extern int SelfCal_32(System.IntPtr Instrument_Handle);
+ [DllImport(hsdioModuleName64, EntryPoint = "niHSDIO_SelfCal", CallingConvention = CallingConvention.StdCall)]
+ public static extern int SelfCal_64(System.IntPtr Instrument_Handle);
+ public static int SelfCal(System.IntPtr Instrument_Handle)
+ {
+ if (Is64BitProcess)
+ return SelfCal_64(Instrument_Handle);
+ else
+ return SelfCal_32(Instrument_Handle);
+ }
+
+ [DllImport(hsdioModuleName32, EntryPoint = "niHSDIO_ChangeExtCalPassword", CallingConvention = CallingConvention.StdCall)]
+ public static extern int ChangeExtCalPassword_32(System.IntPtr Instrument_Handle, string Old_Password, string New_Password);
+ [DllImport(hsdioModuleName64, EntryPoint = "niHSDIO_ChangeExtCalPassword", CallingConvention = CallingConvention.StdCall)]
+ public static extern int ChangeExtCalPassword_64(System.IntPtr Instrument_Handle, string Old_Password, string New_Password);
+ public static int ChangeExtCalPassword(System.IntPtr Instrument_Handle, string Old_Password, string New_Password)
+ {
+ if (Is64BitProcess)
+ return ChangeExtCalPassword_64(Instrument_Handle, Old_Password, New_Password);
+ else
+ return ChangeExtCalPassword_32(Instrument_Handle, Old_Password, New_Password);
+ }
+
+ [DllImport(hsdioModuleName32, EntryPoint = "niHSDIO_CalAdjustChannelVoltage", CallingConvention = CallingConvention.StdCall)]
+ public static extern int CalAdjustChannelVoltage_32(System.IntPtr Instrument_Handle, string Channel);
+ [DllImport(hsdioModuleName64, EntryPoint = "niHSDIO_CalAdjustChannelVoltage", CallingConvention = CallingConvention.StdCall)]
+ public static extern int CalAdjustChannelVoltage_64(System.IntPtr Instrument_Handle, string Channel);
+ public static int CalAdjustChannelVoltage(System.IntPtr Instrument_Handle, string Channel)
+ {
+ if (Is64BitProcess)
+ return CalAdjustChannelVoltage_64(Instrument_Handle, Channel);
+ else
+ return CalAdjustChannelVoltage_32(Instrument_Handle, Channel);
+ }
+
+ [DllImport(hsdioModuleName32, EntryPoint = "niHSDIO_CloseExtCal", CallingConvention = CallingConvention.StdCall)]
+ public static extern int CloseExtCal_32(System.IntPtr Instrument_Handle, int Action);
+ [DllImport(hsdioModuleName64, EntryPoint = "niHSDIO_CloseExtCal", CallingConvention = CallingConvention.StdCall)]
+ public static extern int CloseExtCal_64(System.IntPtr Instrument_Handle, int Action);
+ public static int CloseExtCal(System.IntPtr Instrument_Handle, int Action)
+ {
+ if (Is64BitProcess)
+ return CloseExtCal_64(Instrument_Handle, Action);
+ else
+ return CloseExtCal_32(Instrument_Handle, Action);
+ }
+
+ [DllImport(hsdioModuleName32, EntryPoint = "niHSDIO_self_test", CallingConvention = CallingConvention.StdCall)]
+ public static extern int self_test_32(System.IntPtr Instrument_Handle, out short Self_Test_Result, System.Text.StringBuilder Self_Test_Message);
+ [DllImport(hsdioModuleName64, EntryPoint = "niHSDIO_self_test", CallingConvention = CallingConvention.StdCall)]
+ public static extern int self_test_64(System.IntPtr Instrument_Handle, out short Self_Test_Result, System.Text.StringBuilder Self_Test_Message);
+ public static int self_test(System.IntPtr Instrument_Handle, out short Self_Test_Result, System.Text.StringBuilder Self_Test_Message)
+ {
+ if (Is64BitProcess)
+ return self_test_64(Instrument_Handle, out Self_Test_Result, Self_Test_Message);
+ else
+ return self_test_32(Instrument_Handle, out Self_Test_Result, Self_Test_Message);
+ }
+
+ [DllImport(hsdioModuleName32, EntryPoint = "niHSDIO_IsDone", CallingConvention = CallingConvention.StdCall)]
+ public static extern int IsDone_32(System.IntPtr Instrument_Handle, out ushort Done);
+ [DllImport(hsdioModuleName64, EntryPoint = "niHSDIO_IsDone", CallingConvention = CallingConvention.StdCall)]
+ public static extern int IsDone_64(System.IntPtr Instrument_Handle, out ushort Done);
+ public static int IsDone(System.IntPtr Instrument_Handle, out ushort Done)
+ {
+ if (Is64BitProcess)
+ return IsDone_64(Instrument_Handle, out Done);
+ else
+ return IsDone_32(Instrument_Handle, out Done);
+ }
+
+ [DllImport(hsdioModuleName32, EntryPoint = "niHSDIO_TristateChannels", CallingConvention = CallingConvention.StdCall)]
+ public static extern int TristateChannels_32(System.IntPtr Instrument_Handle, string Channel_List, ushort Tristate);
+ [DllImport(hsdioModuleName64, EntryPoint = "niHSDIO_TristateChannels", CallingConvention = CallingConvention.StdCall)]
+ public static extern int TristateChannels_64(System.IntPtr Instrument_Handle, string Channel_List, ushort Tristate);
+ public static int TristateChannels(System.IntPtr Instrument_Handle, string Channel_List, ushort Tristate)
+ {
+ if (Is64BitProcess)
+ return TristateChannels_64(Instrument_Handle, Channel_List, Tristate);
+ else
+ return TristateChannels_32(Instrument_Handle, Channel_List, Tristate);
+ }
+
+ [DllImport(hsdioModuleName32, EntryPoint = "niHSDIO_CommitDynamic", CallingConvention = CallingConvention.StdCall)]
+ public static extern int CommitDynamic_32(System.IntPtr Instrument_Handle);
+ [DllImport(hsdioModuleName64, EntryPoint = "niHSDIO_CommitDynamic", CallingConvention = CallingConvention.StdCall)]
+ public static extern int CommitDynamic_64(System.IntPtr Instrument_Handle);
+ public static int CommitDynamic(System.IntPtr Instrument_Handle)
+ {
+ if (Is64BitProcess)
+ return CommitDynamic_64(Instrument_Handle);
+ else
+ return CommitDynamic_32(Instrument_Handle);
+ }
+
+ [DllImport(hsdioModuleName32, EntryPoint = "niHSDIO_CommitStatic", CallingConvention = CallingConvention.StdCall)]
+ public static extern int CommitStatic_32(System.IntPtr Instrument_Handle);
+ [DllImport(hsdioModuleName64, EntryPoint = "niHSDIO_CommitStatic", CallingConvention = CallingConvention.StdCall)]
+ public static extern int CommitStatic_64(System.IntPtr Instrument_Handle);
+ public static int CommitStatic(System.IntPtr Instrument_Handle)
+ {
+ if (Is64BitProcess)
+ return CommitStatic_64(Instrument_Handle);
+ else
+ return CommitStatic_32(Instrument_Handle);
+ }
+
+ [DllImport(hsdioModuleName32, EntryPoint = "niHSDIO_reset", CallingConvention = CallingConvention.StdCall)]
+ public static extern int reset_32(System.IntPtr Instrument_Handle);
+ [DllImport(hsdioModuleName64, EntryPoint = "niHSDIO_reset", CallingConvention = CallingConvention.StdCall)]
+ public static extern int reset_64(System.IntPtr Instrument_Handle);
+ public static int reset(System.IntPtr Instrument_Handle)
+ {
+ if (Is64BitProcess)
+ return reset_64(Instrument_Handle);
+ else
+ return reset_32(Instrument_Handle);
+ }
+
+ [DllImport(hsdioModuleName32, EntryPoint = "niHSDIO_ResetDevice", CallingConvention = CallingConvention.StdCall)]
+ public static extern int ResetDevice_32(System.IntPtr Instrument_Handle);
+ [DllImport(hsdioModuleName64, EntryPoint = "niHSDIO_ResetDevice", CallingConvention = CallingConvention.StdCall)]
+ public static extern int ResetDevice_64(System.IntPtr Instrument_Handle);
+ public static int ResetDevice(System.IntPtr Instrument_Handle)
+ {
+ if (Is64BitProcess)
+ return ResetDevice_64(Instrument_Handle);
+ else
+ return ResetDevice_32(Instrument_Handle);
+ }
+
+ [DllImport(hsdioModuleName32, EntryPoint = "niHSDIO_close", CallingConvention = CallingConvention.StdCall)]
+ public static extern int close_32(System.IntPtr Instrument_Handle);
+ [DllImport(hsdioModuleName64, EntryPoint = "niHSDIO_close", CallingConvention = CallingConvention.StdCall)]
+ public static extern int close_64(System.IntPtr Instrument_Handle);
+ public static int close(System.IntPtr Instrument_Handle)
+ {
+ if (Is64BitProcess)
+ return close_64(Instrument_Handle);
+ else
+ return close_32(Instrument_Handle);
+ }
+
+ [DllImport(hsdioModuleName32, EntryPoint = "niHSDIO_error_message", CallingConvention = CallingConvention.StdCall)]
+ public static extern int error_message_32(System.IntPtr Instrument_Handle, int Error_Code, System.Text.StringBuilder Error_Message_2);
+ [DllImport(hsdioModuleName64, EntryPoint = "niHSDIO_error_message", CallingConvention = CallingConvention.StdCall)]
+ public static extern int error_message_64(System.IntPtr Instrument_Handle, int Error_Code, System.Text.StringBuilder Error_Message_2);
+ public static int error_message(System.IntPtr Instrument_Handle, int Error_Code, System.Text.StringBuilder Error_Message_2)
+ {
+ if (Is64BitProcess)
+ return error_message_64(Instrument_Handle, Error_Code, Error_Message_2);
+ else
+ return error_message_32(Instrument_Handle, Error_Code, Error_Message_2);
+ }
+
+ [DllImport(hsdioModuleName32, EntryPoint = "niHSDIO_GetAttributeViBoolean", CallingConvention = CallingConvention.StdCall)]
+ public static extern int GetAttributeViBoolean_32(System.IntPtr Instrument_Handle, string Channel_List, int Attribute_ID, out ushort Value);
+ [DllImport(hsdioModuleName64, EntryPoint = "niHSDIO_GetAttributeViBoolean", CallingConvention = CallingConvention.StdCall)]
+ public static extern int GetAttributeViBoolean_64(System.IntPtr Instrument_Handle, string Channel_List, int Attribute_ID, out ushort Value);
+ public static int GetAttributeViBoolean(System.IntPtr Instrument_Handle, string Channel_List, int Attribute_ID, out ushort Value)
+ {
+ if (Is64BitProcess)
+ return GetAttributeViBoolean_64(Instrument_Handle, Channel_List, Attribute_ID, out Value);
+ else
+ return GetAttributeViBoolean_32(Instrument_Handle, Channel_List, Attribute_ID, out Value);
+ }
+
+ [DllImport(hsdioModuleName32, EntryPoint = "niHSDIO_GetAttributeViInt32", CallingConvention = CallingConvention.StdCall)]
+ public static extern int GetAttributeViInt32_32(System.IntPtr Instrument_Handle, string Channel_List, int Attribute_ID, out int Value);
+ [DllImport(hsdioModuleName64, EntryPoint = "niHSDIO_GetAttributeViInt32", CallingConvention = CallingConvention.StdCall)]
+ public static extern int GetAttributeViInt32_64(System.IntPtr Instrument_Handle, string Channel_List, int Attribute_ID, out int Value);
+ public static int GetAttributeViInt32(System.IntPtr Instrument_Handle, string Channel_List, int Attribute_ID, out int Value)
+ {
+ if (Is64BitProcess)
+ return GetAttributeViInt32_64(Instrument_Handle, Channel_List, Attribute_ID, out Value);
+ else
+ return GetAttributeViInt32_32(Instrument_Handle, Channel_List, Attribute_ID, out Value);
+ }
+
+ [DllImport(hsdioModuleName32, EntryPoint = "niHSDIO_GetAttributeViReal64", CallingConvention = CallingConvention.StdCall)]
+ public static extern int GetAttributeViReal64_32(System.IntPtr Instrument_Handle, string Channel_List, int Attribute_ID, out double Value);
+ [DllImport(hsdioModuleName64, EntryPoint = "niHSDIO_GetAttributeViReal64", CallingConvention = CallingConvention.StdCall)]
+ public static extern int GetAttributeViReal64_64(System.IntPtr Instrument_Handle, string Channel_List, int Attribute_ID, out double Value);
+ public static int GetAttributeViReal64(System.IntPtr Instrument_Handle, string Channel_List, int Attribute_ID, out double Value)
+ {
+ if (Is64BitProcess)
+ return GetAttributeViReal64_64(Instrument_Handle, Channel_List, Attribute_ID, out Value);
+ else
+ return GetAttributeViReal64_32(Instrument_Handle, Channel_List, Attribute_ID, out Value);
+ }
+
+ [DllImport(hsdioModuleName32, EntryPoint = "niHSDIO_GetAttributeViSession", CallingConvention = CallingConvention.StdCall)]
+ public static extern int GetAttributeViSession_32(System.IntPtr Instrument_Handle, string Channel_List, int Attribute_ID, out System.IntPtr Value);
+ [DllImport(hsdioModuleName64, EntryPoint = "niHSDIO_GetAttributeViSession", CallingConvention = CallingConvention.StdCall)]
+ public static extern int GetAttributeViSession_64(System.IntPtr Instrument_Handle, string Channel_List, int Attribute_ID, out System.IntPtr Value);
+ public static int GetAttributeViSession(System.IntPtr Instrument_Handle, string Channel_List, int Attribute_ID, out System.IntPtr Value)
+ {
+ if (Is64BitProcess)
+ return GetAttributeViSession_64(Instrument_Handle, Channel_List, Attribute_ID, out Value);
+ else
+ return GetAttributeViSession_32(Instrument_Handle, Channel_List, Attribute_ID, out Value);
+ }
+
+ [DllImport(hsdioModuleName32, EntryPoint = "niHSDIO_GetAttributeViString", CallingConvention = CallingConvention.StdCall)]
+ public static extern int GetAttributeViString_32(System.IntPtr Instrument_Handle, string Channel_List, int Attribute_ID, int Buf_Size, System.Text.StringBuilder Value);
+ [DllImport(hsdioModuleName64, EntryPoint = "niHSDIO_GetAttributeViString", CallingConvention = CallingConvention.StdCall)]
+ public static extern int GetAttributeViString_64(System.IntPtr Instrument_Handle, string Channel_List, int Attribute_ID, int Buf_Size, System.Text.StringBuilder Value);
+ public static int GetAttributeViString(System.IntPtr Instrument_Handle, string Channel_List, int Attribute_ID, int Buf_Size, System.Text.StringBuilder Value)
+ {
+ if (Is64BitProcess)
+ return GetAttributeViString_64(Instrument_Handle, Channel_List, Attribute_ID, Buf_Size, Value);
+ else
+ return GetAttributeViString_32(Instrument_Handle, Channel_List, Attribute_ID, Buf_Size, Value);
+ }
+
+ [DllImport(hsdioModuleName32, EntryPoint = "niHSDIO_SetAttributeViBoolean", CallingConvention = CallingConvention.StdCall)]
+ public static extern int SetAttributeViBoolean_32(System.IntPtr Instrument_Handle, string Channel_List, int Attribute_ID, ushort Value);
+ [DllImport(hsdioModuleName64, EntryPoint = "niHSDIO_SetAttributeViBoolean", CallingConvention = CallingConvention.StdCall)]
+ public static extern int SetAttributeViBoolean_64(System.IntPtr Instrument_Handle, string Channel_List, int Attribute_ID, ushort Value);
+ public static int SetAttributeViBoolean(System.IntPtr Instrument_Handle, string Channel_List, int Attribute_ID, ushort Value)
+ {
+ if (Is64BitProcess)
+ return SetAttributeViBoolean_64(Instrument_Handle, Channel_List, Attribute_ID, Value);
+ else
+ return SetAttributeViBoolean_32(Instrument_Handle, Channel_List, Attribute_ID, Value);
+ }
+
+ [DllImport(hsdioModuleName32, EntryPoint = "niHSDIO_SetAttributeViInt32", CallingConvention = CallingConvention.StdCall)]
+ public static extern int SetAttributeViInt32_32(System.IntPtr Instrument_Handle, string Channel_List, int Attribute_ID, int Value);
+ [DllImport(hsdioModuleName64, EntryPoint = "niHSDIO_SetAttributeViInt32", CallingConvention = CallingConvention.StdCall)]
+ public static extern int SetAttributeViInt32_64(System.IntPtr Instrument_Handle, string Channel_List, int Attribute_ID, int Value);
+ public static int SetAttributeViInt32(System.IntPtr Instrument_Handle, string Channel_List, int Attribute_ID, int Value)
+ {
+ if (Is64BitProcess)
+ return SetAttributeViInt32_64(Instrument_Handle, Channel_List, Attribute_ID, Value);
+ else
+ return SetAttributeViInt32_32(Instrument_Handle, Channel_List, Attribute_ID, Value);
+ }
+
+ [DllImport(hsdioModuleName32, EntryPoint = "niHSDIO_SetAttributeViReal64", CallingConvention = CallingConvention.StdCall)]
+ public static extern int SetAttributeViReal64_32(System.IntPtr Instrument_Handle, string Channel_List, int Attribute_ID, double Value);
+ [DllImport(hsdioModuleName64, EntryPoint = "niHSDIO_SetAttributeViReal64", CallingConvention = CallingConvention.StdCall)]
+ public static extern int SetAttributeViReal64_64(System.IntPtr Instrument_Handle, string Channel_List, int Attribute_ID, double Value);
+ public static int SetAttributeViReal64(System.IntPtr Instrument_Handle, string Channel_List, int Attribute_ID, double Value)
+ {
+ if (Is64BitProcess)
+ return SetAttributeViReal64_64(Instrument_Handle, Channel_List, Attribute_ID, Value);
+ else
+ return SetAttributeViReal64_32(Instrument_Handle, Channel_List, Attribute_ID, Value);
+ }
+
+ [DllImport(hsdioModuleName32, EntryPoint = "niHSDIO_SetAttributeViSession", CallingConvention = CallingConvention.StdCall)]
+ public static extern int SetAttributeViSession_32(System.IntPtr Instrument_Handle, string Channel_List, int Attribute_ID, System.IntPtr Value);
+ [DllImport(hsdioModuleName64, EntryPoint = "niHSDIO_SetAttributeViSession", CallingConvention = CallingConvention.StdCall)]
+ public static extern int SetAttributeViSession_64(System.IntPtr Instrument_Handle, string Channel_List, int Attribute_ID, System.IntPtr Value);
+ public static int SetAttributeViSession(System.IntPtr Instrument_Handle, string Channel_List, int Attribute_ID, System.IntPtr Value)
+ {
+ if (Is64BitProcess)
+ return SetAttributeViSession_64(Instrument_Handle, Channel_List, Attribute_ID, Value);
+ else
+ return SetAttributeViSession_32(Instrument_Handle, Channel_List, Attribute_ID, Value);
+ }
+
+ [DllImport(hsdioModuleName32, EntryPoint = "niHSDIO_SetAttributeViString", CallingConvention = CallingConvention.StdCall)]
+ public static extern int SetAttributeViString_32(System.IntPtr Instrument_Handle, string Channel_List, int Attribute_ID, string Value);
+ [DllImport(hsdioModuleName64, EntryPoint = "niHSDIO_SetAttributeViString", CallingConvention = CallingConvention.StdCall)]
+ public static extern int SetAttributeViString_64(System.IntPtr Instrument_Handle, string Channel_List, int Attribute_ID, string Value);
+ public static int SetAttributeViString(System.IntPtr Instrument_Handle, string Channel_List, int Attribute_ID, string Value)
+ {
+ if (Is64BitProcess)
+ return SetAttributeViString_64(Instrument_Handle, Channel_List, Attribute_ID, Value);
+ else
+ return SetAttributeViString_32(Instrument_Handle, Channel_List, Attribute_ID, Value);
+ }
+
+ [DllImport(hsdioModuleName32, EntryPoint = "niHSDIO_GetError", CallingConvention = CallingConvention.StdCall)]
+ public static extern int GetError_32(System.IntPtr Instrument_Handle, out int Error_Code, int Error_Description_Buffer_Size, System.Text.StringBuilder Error_Description);
+ [DllImport(hsdioModuleName64, EntryPoint = "niHSDIO_GetError", CallingConvention = CallingConvention.StdCall)]
+ public static extern int GetError_64(System.IntPtr Instrument_Handle, out int Error_Code, int Error_Description_Buffer_Size, System.Text.StringBuilder Error_Description);
+ public static int GetError(System.IntPtr Instrument_Handle, out int Error_Code, int Error_Description_Buffer_Size, System.Text.StringBuilder Error_Description)
+ {
+ if (Is64BitProcess)
+ return GetError_64(Instrument_Handle, out Error_Code, Error_Description_Buffer_Size, Error_Description);
+ else
+ return GetError_32(Instrument_Handle, out Error_Code, Error_Description_Buffer_Size, Error_Description);
+ }
+
+ #region Added in 2.0
+
+ [DllImport(hsdioModuleName32, EntryPoint = "niHSDIO_WriteStaticPFIU32", CallingConvention = CallingConvention.StdCall)]
+ public static extern int WriteStaticPFIU3232(System.IntPtr vi, uint writeData, uint channelMask);
+
+ [DllImport(hsdioModuleName64, EntryPoint = "niHSDIO_WriteStaticPFIU32", CallingConvention = CallingConvention.StdCall)]
+ public static extern int WriteStaticPFIU3264(System.IntPtr vi, uint writeData, uint channelMask);
+
+ public static int WriteStaticPFIU32(System.IntPtr vi, uint writeData, uint channelMask)
+ {
+ if (Is64BitProcess)
+ return WriteStaticPFIU3264(vi, writeData, channelMask);
+ else
+ return WriteStaticPFIU3232(vi, writeData, channelMask);
+ }
+
+ [DllImport(hsdioModuleName32, EntryPoint = "niHSDIO_ReadStaticPFIU32", CallingConvention = CallingConvention.StdCall)]
+ public static extern int ReadStaticPFIU3232(System.IntPtr vi, out uint readData);
+
+ [DllImport(hsdioModuleName64, EntryPoint = "niHSDIO_ReadStaticPFIU32", CallingConvention = CallingConvention.StdCall)]
+ public static extern int ReadStaticPFIU3264(System.IntPtr vi, out uint readData);
+
+ public static int ReadStaticPFIU32(System.IntPtr vi, out uint readData)
+ {
+ if (Is64BitProcess)
+ return ReadStaticPFIU3264(vi, out readData);
+ else
+ return ReadStaticPFIU3232(vi, out readData);
+ }
+
+ [DllImport(hsdioModuleName32, EntryPoint = "niHSDIO_ConfigureMultiSamplePatternMatchStartTrigger", CallingConvention = CallingConvention.StdCall)]
+ public static extern int ConfigureMultiSamplePatternMatchStartTrigger32(System.IntPtr vi, string channelList, string pattern);
+
+ [DllImport(hsdioModuleName64, EntryPoint = "niHSDIO_ConfigureMultiSamplePatternMatchStartTrigger", CallingConvention = CallingConvention.StdCall)]
+ public static extern int ConfigureMultiSamplePatternMatchStartTrigger64(System.IntPtr vi, string channelList, string pattern);
+
+ public static int ConfigureMultiSamplePatternMatchStartTrigger(System.IntPtr vi, string channelList, string pattern)
+ {
+ if (Is64BitProcess)
+ return ConfigureMultiSamplePatternMatchStartTrigger64(vi, channelList, pattern);
+ else
+ return ConfigureMultiSamplePatternMatchStartTrigger32(vi, channelList, pattern);
+ }
+
+ [DllImport(hsdioModuleName32, EntryPoint = "niHSDIO_ConfigureMultiSamplePatternMatchStartTriggerU32", CallingConvention = CallingConvention.StdCall)]
+ public static extern int ConfigureMultiSamplePatternMatchStartTriggerU3232(System.IntPtr vi, string channelList, uint[] patternArray, int numberOfPatterns);
+
+ [DllImport(hsdioModuleName64, EntryPoint = "niHSDIO_ConfigureMultiSamplePatternMatchStartTriggerU32", CallingConvention = CallingConvention.StdCall)]
+ public static extern int ConfigureMultiSamplePatternMatchStartTriggerU3264(System.IntPtr vi, string channelList, uint[] patternArray, int numberOfPatterns);
+
+ public static int ConfigureMultiSamplePatternMatchStartTriggerU32(System.IntPtr vi, string channelList, uint[] patternArray, int numberOfPatterns)
+ {
+ if (Is64BitProcess)
+ return ConfigureMultiSamplePatternMatchStartTriggerU3264(vi, channelList, patternArray, numberOfPatterns);
+ else
+ return ConfigureMultiSamplePatternMatchStartTriggerU3232(vi, channelList, patternArray, numberOfPatterns);
+ }
+
+ [DllImport(hsdioModuleName32, EntryPoint = "niHSDIO_ConfigureMultiSamplePatternMatchAdvanceTrigger", CallingConvention = CallingConvention.StdCall)]
+ public static extern int ConfigureMultiSamplePatternMatchAdvanceTrigger32(System.IntPtr vi, string channelList, string pattern);
+
+ [DllImport(hsdioModuleName64, EntryPoint = "niHSDIO_ConfigureMultiSamplePatternMatchAdvanceTrigger", CallingConvention = CallingConvention.StdCall)]
+ public static extern int ConfigureMultiSamplePatternMatchAdvanceTrigger64(System.IntPtr vi, string channelList, string pattern);
+
+ public static int ConfigureMultiSamplePatternMatchAdvanceTrigger(System.IntPtr vi, string channelList, string pattern)
+ {
+ if (Is64BitProcess)
+ return ConfigureMultiSamplePatternMatchAdvanceTrigger64(vi, channelList, pattern);
+ else
+ return ConfigureMultiSamplePatternMatchAdvanceTrigger32(vi, channelList, pattern);
+ }
+
+ [DllImport(hsdioModuleName32, EntryPoint = "niHSDIO_ConfigureMultiSamplePatternMatchAdvanceTriggerU32", CallingConvention = CallingConvention.StdCall)]
+ public static extern int ConfigureMultiSamplePatternMatchAdvanceTriggerU3232(System.IntPtr vi, string channelList, uint[] patternArray, int numberOfPatterns);
+
+ [DllImport(hsdioModuleName64, EntryPoint = "niHSDIO_ConfigureMultiSamplePatternMatchAdvanceTriggerU32", CallingConvention = CallingConvention.StdCall)]
+ public static extern int ConfigureMultiSamplePatternMatchAdvanceTriggerU3264(System.IntPtr vi, string channelList, uint[] patternArray, int numberOfPatterns);
+
+ public static int ConfigureMultiSamplePatternMatchAdvanceTriggerU32(System.IntPtr vi, string channelList, uint[] patternArray, int numberOfPatterns)
+ {
+ if (Is64BitProcess)
+ return ConfigureMultiSamplePatternMatchAdvanceTriggerU3264(vi, channelList, patternArray, numberOfPatterns);
+ else
+ return ConfigureMultiSamplePatternMatchAdvanceTriggerU3232(vi, channelList, patternArray, numberOfPatterns);
+ }
+
+ [DllImport(hsdioModuleName32, EntryPoint = "niHSDIO_ConfigureMultiSamplePatternMatchRefTrigger", CallingConvention = CallingConvention.StdCall)]
+ public static extern int ConfigureMultiSamplePatternMatchRefTrigger32(System.IntPtr vi, string channelList, string pattern, int pretriggerSamples);
+
+ [DllImport(hsdioModuleName64, EntryPoint = "niHSDIO_ConfigureMultiSamplePatternMatchRefTrigger", CallingConvention = CallingConvention.StdCall)]
+ public static extern int ConfigureMultiSamplePatternMatchRefTrigger64(System.IntPtr vi, string channelList, string pattern, int pretriggerSamples);
+
+ public static int ConfigureMultiSamplePatternMatchRefTrigger(System.IntPtr vi, string channelList, string pattern, int pretriggerSamples)
+ {
+ if (Is64BitProcess)
+ return ConfigureMultiSamplePatternMatchRefTrigger64(vi, channelList, pattern, pretriggerSamples);
+ else
+ return ConfigureMultiSamplePatternMatchRefTrigger32(vi, channelList, pattern, pretriggerSamples);
+ }
+
+ [DllImport(hsdioModuleName32, EntryPoint = "niHSDIO_ConfigureMultiSamplePatternMatchRefTriggerU32", CallingConvention = CallingConvention.StdCall)]
+ public static extern int ConfigureMultiSamplePatternMatchRefTriggerU3232(System.IntPtr vi, string channelList, uint[] patternArray, int numberOfPatterns, int pretriggerSamples);
+
+ [DllImport(hsdioModuleName64, EntryPoint = "niHSDIO_ConfigureMultiSamplePatternMatchRefTriggerU32", CallingConvention = CallingConvention.StdCall)]
+ public static extern int ConfigureMultiSamplePatternMatchRefTriggerU3264(System.IntPtr vi, string channelList, uint[] patternArray, int numberOfPatterns, int pretriggerSamples);
+
+ public static int ConfigureMultiSamplePatternMatchRefTriggerU32(System.IntPtr vi, string channelList, uint[] patternArray, int numberOfPatterns, int pretriggerSamples)
+ {
+ if (Is64BitProcess)
+ return ConfigureMultiSamplePatternMatchRefTriggerU3264(vi, channelList, patternArray, numberOfPatterns, pretriggerSamples);
+ else
+ return ConfigureMultiSamplePatternMatchRefTriggerU3232(vi, channelList, patternArray, numberOfPatterns, pretriggerSamples);
+ }
+
+ [DllImport(hsdioModuleName32, EntryPoint = "niHSDIO_CalConfigureChannelState", CallingConvention = CallingConvention.StdCall)]
+ public static extern int CalConfigureChannelState32(System.IntPtr vi, string channel, uint calibrationType, uint calibrationReference);
+
+ [DllImport(hsdioModuleName64, EntryPoint = "niHSDIO_CalConfigureChannelState", CallingConvention = CallingConvention.StdCall)]
+ public static extern int CalConfigureChannelState64(System.IntPtr vi, string channel, uint calibrationType, uint calibrationReference);
+
+ public static int CalConfigureChannelState(System.IntPtr vi, string channel, uint calibrationType, uint calibrationReference)
+ {
+ if (Is64BitProcess)
+ return CalConfigureChannelState64(vi, channel, calibrationType, calibrationReference);
+ else
+ return CalConfigureChannelState32(vi, channel, calibrationType, calibrationReference);
+ }
+
+ [DllImport(hsdioModuleName32, EntryPoint = "niHSDIO_CalConfigureDeviceState", CallingConvention = CallingConvention.StdCall)]
+ public static extern int CalConfigureDeviceState32(System.IntPtr vi, int connector, uint calibrationType, uint calibrationReference);
+
+ [DllImport(hsdioModuleName64, EntryPoint = "niHSDIO_CalConfigureDeviceState", CallingConvention = CallingConvention.StdCall)]
+ public static extern int CalConfigureDeviceState64(System.IntPtr vi, int connector, uint calibrationType, uint calibrationReference);
+
+ public static int CalConfigureDeviceState(System.IntPtr vi, int connector, uint calibrationType, uint calibrationReference)
+ {
+ if (Is64BitProcess)
+ return CalConfigureDeviceState64(vi, connector, calibrationType, calibrationReference);
+ else
+ return CalConfigureDeviceState32(vi, connector, calibrationType, calibrationReference);
+ }
+
+ [DllImport(hsdioModuleName32, EntryPoint = "niHSDIO_CalAdjustViReal64", CallingConvention = CallingConvention.StdCall)]
+ public static extern int CalAdjustViReal6432(System.IntPtr vi, string channel, uint calibrationType, uint calibrationReference, double value);
+
+ [DllImport(hsdioModuleName64, EntryPoint = "niHSDIO_CalAdjustViReal64", CallingConvention = CallingConvention.StdCall)]
+ public static extern int CalAdjustViReal6464(System.IntPtr vi, string channel, uint calibrationType, uint calibrationReference, double value);
+
+ public static int CalAdjustViReal64(System.IntPtr vi, string channel, uint calibrationType, uint calibrationReference, double value)
+ {
+ if (Is64BitProcess)
+ return CalAdjustViReal6464(vi, channel, calibrationType, calibrationReference, value);
+ else
+ return CalAdjustViReal6432(vi, channel, calibrationType, calibrationReference, value);
+ }
+
+ [DllImport(hsdioModuleName32, EntryPoint = "niHSDIO_CalAdjustViReal64Array", CallingConvention = CallingConvention.StdCall)]
+ public static extern int CalAdjustViReal64Array32(System.IntPtr vi, string channel, uint calibrationType, uint calibrationReference, int numberofValues, double[] value);
+
+ [DllImport(hsdioModuleName64, EntryPoint = "niHSDIO_CalAdjustViReal64Array", CallingConvention = CallingConvention.StdCall)]
+ public static extern int CalAdjustViReal64Array64(System.IntPtr vi, string channel, uint calibrationType, uint calibrationReference, int numberofValues, double[] value);
+
+ public static int CalAdjustViReal64Array(System.IntPtr vi, string channel, uint calibrationType, uint calibrationReference, int numberofValues, double[] value)
+ {
+ if (Is64BitProcess)
+ return CalAdjustViReal64Array64(vi, channel, calibrationType, calibrationReference, numberofValues, value);
+ else
+ return CalAdjustViReal64Array32(vi, channel, calibrationType, calibrationReference, numberofValues, value);
+ }
+
+ [DllImport(hsdioModuleName32, EntryPoint = "niHSDIO_CalClearState", CallingConvention = CallingConvention.StdCall)]
+ public static extern int CalClearState32(System.IntPtr vi);
+
+ [DllImport(hsdioModuleName64, EntryPoint = "niHSDIO_CalClearState", CallingConvention = CallingConvention.StdCall)]
+ public static extern int CalClearState64(System.IntPtr vi);
+
+ public static int CalClearState(System.IntPtr vi)
+ {
+ if (Is64BitProcess)
+ return CalClearState64(vi);
+ else
+ return CalClearState32(vi);
+ }
+
+ [DllImport(hsdioModuleName32, EntryPoint = "niHSDIO_CalInitChildSession", CallingConvention = CallingConvention.StdCall)]
+ public static extern int CalInitChildSession32(System.IntPtr vi, byte sessiontype, out System.IntPtr childsession);
+
+ [DllImport(hsdioModuleName64, EntryPoint = "niHSDIO_CalInitChildSession", CallingConvention = CallingConvention.StdCall)]
+ public static extern int CalInitChildSession64(System.IntPtr vi, byte sessiontype, out System.IntPtr childsession);
+
+ public static int CalInitChildSession(System.IntPtr vi, byte sessiontype, out System.IntPtr childsession)
+ {
+ if (Is64BitProcess)
+ return CalInitChildSession64(vi, sessiontype, out childsession);
+ else
+ return CalInitChildSession32(vi, sessiontype, out childsession);
+ }
+
+ [DllImport(hsdioModuleName32, EntryPoint = "niHSDIO_CalCloseChildSession", CallingConvention = CallingConvention.StdCall)]
+ public static extern int CalCloseChildSession32(System.IntPtr vi, System.IntPtr childsession);
+
+ [DllImport(hsdioModuleName64, EntryPoint = "niHSDIO_CalCloseChildSession", CallingConvention = CallingConvention.StdCall)]
+ public static extern int CalCloseChildSession64(System.IntPtr vi, System.IntPtr childsession);
+
+ public static int CalCloseChildSession(System.IntPtr vi, System.IntPtr childsession)
+ {
+ if (Is64BitProcess)
+ return CalCloseChildSession64(vi, childsession);
+ else
+ return CalCloseChildSession32(vi, childsession);
+ }
+
+ [DllImport(hsdioModuleName32, EntryPoint = "niHSDIO_ReadCurrentTemperature", CallingConvention = CallingConvention.StdCall)]
+ public static extern int ReadCurrentTemperature32(System.IntPtr vi, out double temperature);
+
+ [DllImport(hsdioModuleName64, EntryPoint = "niHSDIO_ReadCurrentTemperature", CallingConvention = CallingConvention.StdCall)]
+ public static extern int ReadCurrentTemperature64(System.IntPtr vi, out double temperature);
+
+ public static int ReadCurrentTemperature(System.IntPtr vi, out double temperature)
+ {
+ if (Is64BitProcess)
+ return ReadCurrentTemperature64(vi, out temperature);
+ else
+ return ReadCurrentTemperature32(vi, out temperature);
+ }
+
+ #endregion
+
+ #region Added in 15.0
+
+ [DllImport(hsdioModuleName32, EntryPoint = "niHSDIO_LockSession", CallingConvention = CallingConvention.StdCall)]
+ public static extern int LockSession_32(System.IntPtr Instrument_Handle, out ushort callerHasLock);
+
+ [DllImport(hsdioModuleName64, EntryPoint = "niHSDIO_LockSession", CallingConvention = CallingConvention.StdCall)]
+ public static extern int LockSession_64(System.IntPtr Instrument_Handle, out ushort callerHasLock);
+ public static int LockSession(System.IntPtr Instrument_Handle, out ushort callerHasLock)
+ {
+ if (Is64BitProcess)
+ return LockSession_64(Instrument_Handle, out callerHasLock);
+ else
+ return LockSession_32(Instrument_Handle, out callerHasLock);
+ }
+
+
+ [DllImport(hsdioModuleName32, EntryPoint = "niHSDIO_UnlockSession", CallingConvention = CallingConvention.StdCall)]
+ public static extern int UnlockSession_32(System.IntPtr Instrument_Handle, out ushort callerHasLock);
+ [DllImport(hsdioModuleName64, EntryPoint = "niHSDIO_UnlockSession", CallingConvention = CallingConvention.StdCall)]
+ public static extern int UnlockSession_64(System.IntPtr Instrument_Handle, out ushort callerHasLock);
+ public static int UnlockSession(System.IntPtr Instrument_Handle, out ushort callerHasLock)
+ {
+ if (Is64BitProcess)
+ return UnlockSession_64(Instrument_Handle, out callerHasLock);
+ else
+ return UnlockSession_32(Instrument_Handle, out callerHasLock);
+ }
+
+
+ [DllImport(hsdioModuleName32, EntryPoint = "niHSDIO_ClearError", CallingConvention = CallingConvention.StdCall)]
+ public static extern int ClearError_32(System.IntPtr Instrument_Handle);
+ [DllImport(hsdioModuleName64, EntryPoint = "niHSDIO_ClearError", CallingConvention = CallingConvention.StdCall)]
+ public static extern int ClearError_64(System.IntPtr Instrument_Handle);
+ public static int ClearError(System.IntPtr Instrument_Handle)
+ {
+ if (Is64BitProcess)
+ return ClearError_64(Instrument_Handle);
+ else
+ return ClearError_32(Instrument_Handle);
+ }
+
+ [DllImport(hsdioModuleName32, EntryPoint = "niHSDIO_ResetAttribute", CallingConvention = CallingConvention.StdCall)]
+ public static extern int ResetAttribute_32(System.IntPtr Instrument_Handle, string Channel_Name, int attributeId);
+ [DllImport(hsdioModuleName64, EntryPoint = "niHSDIO_ResetAttribute", CallingConvention = CallingConvention.StdCall)]
+ public static extern int ResetAttribute_64(System.IntPtr Instrument_Handle, string Channel_Name, int attributeId);
+ public static int ResetAttribute(System.IntPtr Instrument_Handle, string Channel_Name, int attributeId)
+ {
+ if (Is64BitProcess)
+ return ResetAttribute_64(Instrument_Handle, Channel_Name, attributeId);
+ else
+ return ResetAttribute_32(Instrument_Handle, Channel_Name, attributeId);
+ }
+
+ [DllImport(hsdioModuleName32, EntryPoint = "niHSDIO_GetFetchBacklog", CallingConvention = CallingConvention.StdCall)]
+ public static extern int GetFetchBacklog_32(System.IntPtr Instrument_Handle, int recordNumber, out int backLog);
+ [DllImport(hsdioModuleName64, EntryPoint = "niHSDIO_GetFetchBacklog", CallingConvention = CallingConvention.StdCall)]
+ public static extern int GetFetchBacklog_64(System.IntPtr Instrument_Handle, int recordNumber, out int backLog);
+ public static int GetFetchBacklog(System.IntPtr Instrument_Handle, int recordNumber, out int backLog)
+ {
+ if (Is64BitProcess)
+ return GetFetchBacklog_64(Instrument_Handle, recordNumber, out backLog);
+ else
+ return GetFetchBacklog_32(Instrument_Handle, recordNumber, out backLog);
+ }
+
+ [DllImport(hsdioModuleName32, EntryPoint = "niHSDIO_GetSelfCalSupported", CallingConvention = CallingConvention.StdCall)]
+ public static extern int GetSelfCalSupported_32(System.IntPtr Instrument_Handle, out ushort callerHasLock);
+ [DllImport(hsdioModuleName64, EntryPoint = "niHSDIO_GetSelfCalSupported", CallingConvention = CallingConvention.StdCall)]
+ public static extern int GetSelfCalSupported_64(System.IntPtr Instrument_Handle, out ushort callerHasLock);
+ public static int GetSelfCalSupported(System.IntPtr Instrument_Handle, out ushort callerHasLock)
+ {
+ if (Is64BitProcess)
+ return GetSelfCalSupported_64(Instrument_Handle, out callerHasLock);
+ else
+ return GetSelfCalSupported_32(Instrument_Handle, out callerHasLock);
+ }
+
+
+ [DllImport(hsdioModuleName32, EntryPoint = "niHSDIO_GetSelfCalLastDateAndTime", CallingConvention = CallingConvention.StdCall)]
+ public static extern int GetSelfCalLastDateAndTime_32(System.IntPtr Instrument_Handle, out int year, out int month, out int day, out int hour, out int minute);
+ [DllImport(hsdioModuleName64, EntryPoint = "niHSDIO_GetSelfCalLastDateAndTime", CallingConvention = CallingConvention.StdCall)]
+ public static extern int GetSelfCalLastDateAndTime_64(System.IntPtr Instrument_Handle, out int year, out int month, out int day, out int hour, out int minute);
+ public static int GetSelfCalLastDateAndTime(System.IntPtr Instrument_Handle, out int year, out int month, out int day, out int hour, out int minute)
+ {
+ if (Is64BitProcess)
+ return GetSelfCalLastDateAndTime_64(Instrument_Handle, out year, out month, out day, out hour, out minute);
+ else
+ return GetSelfCalLastDateAndTime_32(Instrument_Handle, out year, out month, out day, out hour, out minute);
+ }
+
+ [DllImport(hsdioModuleName32, EntryPoint = "niHSDIO_GetExtCalLastDateAndTime", CallingConvention = CallingConvention.StdCall)]
+ public static extern int GetExtCalLastDateAndTime_32(System.IntPtr Instrument_Handle, out int year, out int month, out int day, out int hour, out int minute);
+ [DllImport(hsdioModuleName64, EntryPoint = "niHSDIO_GetExtCalLastDateAndTime", CallingConvention = CallingConvention.StdCall)]
+ public static extern int GetExtCalLastDateAndTime_64(System.IntPtr Instrument_Handle, out int year, out int month, out int day, out int hour, out int minute);
+ public static int GetExtCalLastDateAndTime(System.IntPtr Instrument_Handle, out int year, out int month, out int day, out int hour, out int minute)
+ {
+ if (Is64BitProcess)
+ return GetExtCalLastDateAndTime_64(Instrument_Handle, out year, out month, out day, out hour, out minute);
+ else
+ return GetExtCalLastDateAndTime_32(Instrument_Handle, out year, out month, out day, out hour, out minute);
+ }
+
+ [DllImport(hsdioModuleName32, EntryPoint = "niHSDIO_GetSelfCalLastTemp", CallingConvention = CallingConvention.StdCall)]
+ public static extern int GetSelfCalLastTemp_32(System.IntPtr Instrument_Handle, out double temp);
+
+ [DllImport(hsdioModuleName64, EntryPoint = "niHSDIO_GetSelfCalLastTemp", CallingConvention = CallingConvention.StdCall)]
+ public static extern int GetSelfCalLastTemp_64(System.IntPtr Instrument_Handle, out double temp);
+ public static int GetSelfCalLastTemp(System.IntPtr Instrument_Handle, out double temp)
+ {
+ if (Is64BitProcess)
+ return GetSelfCalLastTemp_64(Instrument_Handle, out temp);
+ else
+ return GetSelfCalLastTemp_32(Instrument_Handle, out temp);
+ }
+
+
+ [DllImport(hsdioModuleName32, EntryPoint = "niHSDIO_GetExtCalLastTemp", CallingConvention = CallingConvention.StdCall)]
+ public static extern int GetExtCalLastTemp_32(System.IntPtr Instrument_Handle, out double temp);
+
+ [DllImport(hsdioModuleName64, EntryPoint = "niHSDIO_GetExtCalLastTemp", CallingConvention = CallingConvention.StdCall)]
+ public static extern int GetExtCalLastTemp_64(System.IntPtr Instrument_Handle, out double temp);
+ public static int GetExtCalLastTemp(System.IntPtr Instrument_Handle, out double temp)
+ {
+ if (Is64BitProcess)
+ return GetExtCalLastTemp_64(Instrument_Handle, out temp);
+ else
+ return GetExtCalLastTemp_32(Instrument_Handle, out temp);
+ }
+
+
+ [DllImport(hsdioModuleName32, EntryPoint = "niHSDIO_GetExtCalRecommendedInterval", CallingConvention = CallingConvention.StdCall)]
+ public static extern int GetExtCalRecommendedInterval_32(System.IntPtr Instrument_Handle, out int temp);
+
+ [DllImport(hsdioModuleName64, EntryPoint = "niHSDIO_GetExtCalRecommendedInterval", CallingConvention = CallingConvention.StdCall)]
+ public static extern int GetExtCalRecommendedInterval_64(System.IntPtr Instrument_Handle, out int temp);
+ public static int GetExtCalRecommendedInterval(System.IntPtr Instrument_Handle, out int temp)
+ {
+ if (Is64BitProcess)
+ return GetExtCalRecommendedInterval_64(Instrument_Handle, out temp);
+ else
+ return GetExtCalRecommendedInterval_32(Instrument_Handle, out temp);
+ }
+
+ [DllImport(hsdioModuleName32, EntryPoint = "niHSDIO_GetCalUserDefinedInfoMaxSize", CallingConvention = CallingConvention.StdCall)]
+ public static extern int GetCalUserDefinedInfoMaxSize_32(System.IntPtr Instrument_Handle, out int temp);
+
+ [DllImport(hsdioModuleName64, EntryPoint = "niHSDIO_GetCalUserDefinedInfoMaxSize", CallingConvention = CallingConvention.StdCall)]
+ public static extern int GetCalUserDefinedInfoMaxSize_64(System.IntPtr Instrument_Handle, out int temp);
+ public static int GetCalUserDefinedInfoMaxSize(System.IntPtr Instrument_Handle, out int temp)
+ {
+ if (Is64BitProcess)
+ return GetCalUserDefinedInfoMaxSize_64(Instrument_Handle, out temp);
+ else
+ return GetCalUserDefinedInfoMaxSize_32(Instrument_Handle, out temp);
+ }
+
+ [DllImport(hsdioModuleName32, EntryPoint = "niHSDIO_SetCalUserDefinedInfo", CallingConvention = CallingConvention.StdCall)]
+ public static extern int SetCalUserDefinedInfo32(System.IntPtr vi, string info);
+
+ [DllImport(hsdioModuleName64, EntryPoint = "niHSDIO_SetCalUserDefinedInfo", CallingConvention = CallingConvention.StdCall)]
+ public static extern int SetCalUserDefinedInfo64(System.IntPtr vi, string info);
+
+ public static int SetCalUserDefinedInfo(System.IntPtr vi, string info)
+ {
+ if (Is64BitProcess)
+ return SetCalUserDefinedInfo64(vi, info);
+ else
+ return SetCalUserDefinedInfo32(vi, info);
+ }
+
+ [DllImport(hsdioModuleName32, EntryPoint = "niHSDIO_GetCalUserDefinedInfo", CallingConvention = CallingConvention.StdCall)]
+ private static extern int GetCalUserDefinedInfo32(System.IntPtr vi, StringBuilder userdefinedinfo);
+
+ [DllImport(hsdioModuleName64, EntryPoint = "niHSDIO_GetCalUserDefinedInfo", CallingConvention = CallingConvention.StdCall)]
+ private static extern int GetCalUserDefinedInfo64(System.IntPtr vi, StringBuilder userdefinedinfo);
+
+ internal static int GetCalUserDefinedInfo(System.IntPtr vi, out string userdefinedinfo)
+ {
+ if (Is64BitProcess)
+ {
+ int userDefinedInfoBufferSize;
+ GetCalUserDefinedInfoMaxSize(vi, out userDefinedInfoBufferSize);
+ StringBuilder userdefinedinfoBuilder = new StringBuilder(userDefinedInfoBufferSize);
+ int val = GetCalUserDefinedInfo64(vi, userdefinedinfoBuilder);
+ userdefinedinfo = userdefinedinfoBuilder.ToString();
+ return val;
+ }
+ else
+ {
+ int userDefinedInfoBufferSize;
+ GetCalUserDefinedInfoMaxSize(vi, out userDefinedInfoBufferSize);
+ StringBuilder userdefinedinfoBuilder = new StringBuilder(userDefinedInfoBufferSize);
+ int val = GetCalUserDefinedInfo32(vi, userdefinedinfoBuilder);
+ userdefinedinfo = userdefinedinfoBuilder.ToString();
+ return val;
+ }
+ }
+
+ #endregion
+
+ public static int TestForError(System.IntPtr handle, int status)
+ {
+ if ((status < 0))
+ {
+ PInvoke.ThrowError(handle, status);
+ }
+ return status;
+ }
+ public static int ThrowError(System.IntPtr handle, int code)
+ {
+ int status = 0;
+ int size = PInvoke.GetError(handle, out status, 0, null);
+ System.Text.StringBuilder msg = new System.Text.StringBuilder();
+ if ((size >= 0))
+ {
+ msg.Capacity = size;
+ PInvoke.GetError(handle, out status, size, msg);
+ }
+
+ throw new System.Runtime.InteropServices.ExternalException(msg.ToString(), code);
+ }
+ }
+ }
+ ///
+ ///
+ ///
+ public enum niHSDIOProperties
+ {
+
+ ///
+ /// System.int
+ ///
+ LogicalName = 1050305,
+ ///
+ /// System.int
+ ///
+ DynamicChannels = 1150002,
+ ///
+ /// System.int
+ ///
+ StaticChannels = 1150003,
+ ///
+ /// System.int
+ ///
+ TotalAcquisitionMemorySize = 1150073,
+ ///
+ /// System.int
+ ///
+ TotalGenerationMemorySize = 1150074,
+ ///
+ /// System.int
+ ///
+ SerialNumber = 1150096,
+ ///
+ /// System.int
+ ///
+ PpmuCapableIoSwitchControl = 1150180,
+ ///
+ /// System.int
+ ///
+ AttributeCommittalStrategy = 1150182,
+ ///
+ /// System.int
+ ///
+ DataVoltageLowLevel = 1150006,
+ ///
+ /// System.int
+ ///
+ DataVoltageHighLevel = 1150007,
+ ///
+ /// System.int
+ ///
+ DataTerminationVoltageLevel = 1150161,
+ ///
+ /// System.int
+ ///
+ DataVoltageRange = 1150163,
+ ///
+ /// System.int
+ ///
+ TriggerVoltageLowLevel = 1150008,
+ ///
+ /// System.int
+ ///
+ TriggerVoltageHighLevel = 1150009,
+ ///
+ /// System.int
+ ///
+ EventVoltageLowLevel = 1150079,
+ ///
+ /// System.int
+ ///
+ EventVoltageHighLevel = 1150080,
+ ///
+ /// System.int
+ ///
+ DataInterpretation = 1150010,
+ ///
+ /// System.int
+ ///
+ InputImpedance = 1150070,
+ ///
+ /// System.int
+ ///
+ DriveType = 1150139,
+ ///
+ /// System.int
+ ///
+ DataTristateMode = 1150160,
+ ///
+ /// System.int
+ ///
+ DataTerminationMode = 1150175,
+ ///
+ /// System.int
+ ///
+ ActiveLoadMode = 1150176,
+ ///
+ /// System.int
+ ///
+ ActiveLoadSourcingCurrentValue = 1150177,
+ ///
+ /// System.int
+ ///
+ ActiveLoadSinkingCurrentValue = 1150178,
+ ///
+ /// System.int
+ ///
+ ActiveLoadCommutatingVoltageLevel = 1150179,
+ ///
+ /// System.int
+ ///
+ RefClockSource = 1150011,
+ ///
+ /// System.int
+ ///
+ RefClockRate = 1150012,
+ ///
+ /// System.int
+ ///
+ RefClockImpedance = 1150058,
+ ///
+ /// System.int
+ ///
+ ExportedRefClockOutputTerminal = 1150059,
+ ///
+ /// System.int
+ ///
+ SampleClockSource = 1150013,
+ ///
+ /// System.int
+ ///
+ SampleClockRate = 1150014,
+ ///
+ /// System.int
+ ///
+ SampleClockImpedance = 1150060,
+ ///
+ /// System.int
+ ///
+ ExportedSampleClockMode = 1150061,
+ ///
+ /// System.int
+ ///
+ ExportedSampleClockDelay = 1150062,
+ ///
+ /// System.int
+ ///
+ ExportedSampleClockOutputTerminal = 1150063,
+ ///
+ /// System.int
+ ///
+ ExportedSampleClockOffset = 1150083,
+ ///
+ /// System.int
+ ///
+ ExportedOnboardRefClockOutputTerminal = 1150085,
+ ///
+ /// System.int
+ ///
+ StartTriggerType = 1150032,
+ ///
+ /// System.int
+ ///
+ DigitalEdgeStartTriggerSource = 1150033,
+ ///
+ /// System.int
+ ///
+ DigitalEdgeStartTriggerEdge = 1150034,
+ ///
+ /// System.int
+ ///
+ DigitalEdgeStartTriggerImpedance = 1150001,
+ ///
+ /// System.int
+ ///
+ DigitalEdgeStartTriggerPosition = 1150075,
+ ///
+ /// System.int
+ ///
+ DigitalEdgeStartTriggerTerminalConfiguration = 1150098,
+ ///
+ /// System.int
+ ///
+ PatternMatchStartTriggerPattern = 1150035,
+ ///
+ /// System.int
+ ///
+ PatternMatchStartTriggerWhen = 1150036,
+ ///
+ /// System.int
+ ///
+ ExportedStartTriggerOutputTerminal = 1150037,
+ ///
+ /// System.int
+ ///
+ ExportedStartTriggerTerminalConfiguration = 1150118,
+ ///
+ /// System.int
+ ///
+ RefTriggerType = 1150038,
+ ///
+ /// System.int
+ ///
+ DigitalEdgeRefTriggerSource = 1150039,
+ ///
+ /// System.int
+ ///
+ DigitalEdgeRefTriggerEdge = 1150040,
+ ///
+ /// System.int
+ ///
+ DigitalEdgeRefTriggerImpedance = 1150004,
+ ///
+ /// System.int
+ ///
+ DigitalEdgeRefTriggerPosition = 1150077,
+ ///
+ /// System.int
+ ///
+ DigitalEdgeRefTriggerTerminalConfiguration = 1150099,
+ ///
+ /// System.int
+ ///
+ PatternMatchRefTriggerPattern = 1150041,
+ ///
+ /// System.int
+ ///
+ PatternMatchRefTriggerWhen = 1150042,
+ ///
+ /// System.int
+ ///
+ ExportedRefTriggerOutputTerminal = 1150043,
+ ///
+ /// System.int
+ ///
+ ExportedRefTriggerTerminalConfiguration = 1150119,
+ ///
+ /// System.int
+ ///
+ StartToRefTriggerHoldoff = 1150086,
+ ///
+ /// System.int
+ ///
+ RefToRefTriggerHoldoff = 1150129,
+ ///
+ /// System.int
+ ///
+ ScriptTriggerType = 1150044,
+ ///
+ /// System.int
+ ///
+ DigitalEdgeScriptTriggerSource = 1150045,
+ ///
+ /// System.int
+ ///
+ DigitalEdgeScriptTriggerEdge = 1150046,
+ ///
+ /// System.int
+ ///
+ DigitalEdgeScriptTriggerImpedance = 1150005,
+ ///
+ /// System.int
+ ///
+ DigitalEdgeScriptTriggerTerminalConfiguration = 1150100,
+ ///
+ /// System.int
+ ///
+ DigitalLevelScriptTriggerSource = 1150047,
+ ///
+ /// System.int
+ ///
+ DigitalLevelScriptTriggerWhen = 1150048,
+ ///
+ /// System.int
+ ///
+ DigitalLevelScriptTriggerImpedance = 1150105,
+ ///
+ /// System.int
+ ///
+ DigitalLevelScriptTriggerTerminalConfiguration = 1150106,
+ ///
+ /// System.int
+ ///
+ ExportedScriptTriggerOutputTerminal = 1150049,
+ ///
+ /// System.int
+ ///
+ ExportedScriptTriggerTerminalConfiguration = 1150120,
+ ///
+ /// System.int
+ ///
+ PauseTriggerType = 1150050,
+ ///
+ /// System.int
+ ///
+ DigitalLevelPauseTriggerSource = 1150051,
+ ///
+ /// System.int
+ ///
+ DigitalLevelPauseTriggerWhen = 1150052,
+ ///
+ /// System.int
+ ///
+ DigitalLevelPauseTriggerImpedance = 1150015,
+ ///
+ /// System.int
+ ///
+ DigitalLevelPauseTriggerPosition = 1150087,
+ ///
+ /// System.int
+ ///
+ DigitalLevelPauseTriggerTerminalConfiguration = 1150101,
+ ///
+ /// System.int
+ ///
+ PatternMatchPauseTriggerPattern = 1150053,
+ ///
+ /// System.int
+ ///
+ PatternMatchPauseTriggerWhen = 1150054,
+ ///
+ /// System.int
+ ///
+ ExportedPauseTriggerOutputTerminal = 1150055,
+ ///
+ /// System.int
+ ///
+ ExportedPauseTriggerTerminalConfiguration = 1150121,
+ ///
+ /// System.int
+ ///
+ AdvanceTriggerType = 1150088,
+ ///
+ /// System.int
+ ///
+ DigitalEdgeAdvanceTriggerSource = 1150089,
+ ///
+ /// System.int
+ ///
+ DigitalEdgeAdvanceTriggerEdge = 1150090,
+ ///
+ /// System.int
+ ///
+ DigitalEdgeAdvanceTriggerImpedance = 1150095,
+ ///
+ /// System.int
+ ///
+ DigitalEdgeAdvanceTriggerPosition = 1150093,
+ ///
+ /// System.int
+ ///
+ DigitalEdgeAdvanceTriggerTerminalConfiguration = 1150107,
+ ///
+ /// System.int
+ ///
+ PatternMatchAdvanceTriggerPattern = 1150091,
+ ///
+ /// System.int
+ ///
+ PatternMatchAdvanceTriggerWhen = 1150092,
+ ///
+ /// System.int
+ ///
+ ExportedAdvanceTriggerOutputTerminal = 1150094,
+ ///
+ /// System.int
+ ///
+ ExportedAdvanceTriggerTerminalConfiguration = 1150122,
+ ///
+ /// System.int
+ ///
+ StopTriggerType = 1150152,
+ ///
+ /// System.int
+ ///
+ DigitalEdgeStopTriggerSource = 1150153,
+ ///
+ /// System.int
+ ///
+ DigitalEdgeStopTriggerEdge = 1150154,
+ ///
+ /// System.int
+ ///
+ DigitalEdgeStopTriggerTerminalConfiguration = 1150155,
+ ///
+ /// System.int
+ ///
+ DigitalEdgeStopTriggerImpedance = 1150156,
+ ///
+ /// System.int
+ ///
+ ExportedStopTriggerOutputTerminal = 1150157,
+ ///
+ /// System.int
+ ///
+ ExportedStopTriggerTerminalConfiguration = 1150158,
+ ///
+ /// System.int
+ ///
+ ReadyForStartEventOutputTerminal = 1150016,
+ ///
+ /// System.int
+ ///
+ ReadyForStartEventLevelActiveLevel = 1150017,
+ ///
+ /// System.int
+ ///
+ ReadyForStartEventTerminalConfiguration = 1150102,
+ ///
+ /// System.int
+ ///
+ DataActiveEventOutputTerminal = 1150019,
+ ///
+ /// System.int
+ ///
+ DataActiveEventLevelActiveLevel = 1150020,
+ ///
+ /// System.int
+ ///
+ DataActiveEventPosition = 1150081,
+ ///
+ /// System.int
+ ///
+ DataActiveEventTerminalConfiguration = 1150103,
+ ///
+ /// System.int
+ ///
+ MarkerEventOutputTerminal = 1150022,
+ ///
+ /// System.int
+ ///
+ MarkerEventPulsePolarity = 1150023,
+ ///
+ /// System.int
+ ///
+ MarkerEventPosition = 1150082,
+ ///
+ /// System.int
+ ///
+ MarkerEventTerminalConfiguration = 1150104,
+ ///
+ /// System.int
+ ///
+ ReadyForAdvanceEventOutputTerminal = 1150109,
+ ///
+ /// System.int
+ ///
+ ReadyForAdvanceEventLevelActiveLevel = 1150110,
+ ///
+ /// System.int
+ ///
+ ReadyForAdvanceEventTerminalConfiguration = 1150111,
+ ///
+ /// System.int
+ ///
+ EndOfRecordEventOutputTerminal = 1150112,
+ ///
+ /// System.int
+ ///
+ EndOfRecordEventPulsePolarity = 1150113,
+ ///
+ /// System.int
+ ///
+ EndOfRecordEventTerminalConfiguration = 1150114,
+ ///
+ /// System.int
+ ///
+ HwcSampleErrorEventOutputTerminal = 1150136,
+ ///
+ /// System.int
+ ///
+ GenerationMode = 1150025,
+ ///
+ /// System.int
+ ///
+ RepeatMode = 1150026,
+ ///
+ /// System.int
+ ///
+ RepeatCount = 1150071,
+ ///
+ /// System.int
+ ///
+ WaveformToGenerate = 1150027,
+ ///
+ /// System.int
+ ///
+ ScriptToGenerate = 1150028,
+ ///
+ /// System.int
+ ///
+ InitialState = 1150064,
+ ///
+ /// System.int
+ ///
+ IdleState = 1150065,
+ ///
+ /// System.int
+ ///
+ DataTransferBlockSize = 1150144,
+ ///
+ /// System.int
+ ///
+ SamplesPerRecord = 1150029,
+ ///
+ /// System.int
+ ///
+ NumRecords = 1150126,
+ ///
+ /// System.int
+ ///
+ RefTriggerPretriggerSamples = 1150030,
+ ///
+ /// System.int
+ ///
+ FetchBacklog = 1150031,
+ ///
+ /// System.int
+ ///
+ FetchRelativeTo = 1150067,
+ ///
+ /// System.int
+ ///
+ FetchOffset = 1150068,
+ ///
+ /// System.int
+ ///
+ RecordsDone = 1150125,
+ ///
+ /// System.int
+ ///
+ DataActiveInternalRouteDelay = 1150138,
+ ///
+ /// System.int
+ ///
+ SamplesPerRecordIsFinite = 1150159,
+ ///
+ /// System.int
+ ///
+ DataPosition = 1150056,
+ ///
+ /// System.int
+ ///
+ DataPositionDelay = 1150057,
+ ///
+ /// System.int
+ ///
+ DataDeskew = 1150162,
+ ///
+ /// System.int
+ ///
+ TriggerPositionDelay = 1150164,
+ ///
+ /// System.int
+ ///
+ TriggerDeskew = 1150165,
+ ///
+ /// System.int
+ ///
+ EventPositionDelay = 1150166,
+ ///
+ /// System.int
+ ///
+ EventDeskew = 1150167,
+ ///
+ /// System.int
+ ///
+ DataWidth = 1150108,
+ ///
+ /// System.int
+ ///
+ DataRateMultiplier = 1150128,
+ ///
+ /// System.int
+ ///
+ SupportedDataStates = 1150130,
+ ///
+ /// System.int
+ ///
+ OscillatorPhaseDacValue = 1150072,
+ ///
+ /// System.int
+ ///
+ HwcSampleErrorBacklog = 1150132,
+ ///
+ /// System.int
+ ///
+ HwcNumSampleErrors = 1150133,
+ ///
+ /// System.int
+ ///
+ HwcSamplesCompared = 1150134,
+ ///
+ /// System.int
+ ///
+ HwcCumulativeErrorBits = 1150181,
+ ///
+ /// System.int
+ ///
+ HwcFilterRepeatedSampleErrors = 1150140,
+ ///
+ /// System.int
+ ///
+ HwcSampleErrorBufferOverflowed = 1150135,
+ ///
+ /// System.int
+ ///
+ SpaceAvailableInStreamingWaveform = 1150141,
+ ///
+ /// System.int
+ ///
+ StreamingWaveformName = 1150142,
+ ///
+ /// System.int
+ ///
+ StreamingEnabled = 1150143,
+ ///
+ /// System.int
+ ///
+ DirectDmaEnabled = 1150146,
+ ///
+ /// System.int
+ ///
+ DirectDmaWindowSize = 1150147,
+ ///
+ /// System.int
+ ///
+ DirectDmaWindowAddress = 1150148,
+ ///
+ /// System.int
+ ///
+ DataTransferMaximumBandwidth = 1150149,
+ ///
+ /// System.int
+ ///
+ DataTransferPreferredPacketSize = 1150150,
+ ///
+ /// System.int
+ ///
+ DataTransferMaximumInFlightReads = 1150151,
+ ///
+ /// System.int
+ ///
+ DevicePowerConsumption = 1150170,
+ ///
+ /// System.int
+ ///
+ DevicePeakPowerConsumed = 1150171,
+ ///
+ /// System.int
+ ///
+ DeviceSerialNumber = 1150084,
+ ///
+ /// System.int
+ ///
+ StartTriggerImpedance = 1150001,
+ ///
+ /// System.int
+ ///
+ RefTriggerImpedance = 1150004,
+ ///
+ /// System.int
+ ///
+ ScriptTriggerImpedance = 1150005,
+ ///
+ /// System.int
+ ///
+ PauseTriggerImpedance = 1150015,
+ ///
+ /// System.int
+ ///
+ AdvanceTriggerImpedance = 1150095,
+ ///
+ /// System.int
+ ///
+ StartTriggerPosition = 1150075,
+ ///
+ /// System.int
+ ///
+ RefTriggerPosition = 1150077,
+ ///
+ /// System.int
+ ///
+ PauseTriggerPosition = 1150087,
+ ///
+ /// System.int
+ ///
+ AdvanceTriggerPosition = 1150093,
+ ///
+ /// System.int
+ ///
+ HwcHardwareCompareMode = 1150130,
+ ///
+ /// System.int
+ ///
+ DaqmxTask = 1150069,
+ ///
+ /// System.int
+ ///
+ TriggerVoltageRange = 1150172,
+ ///
+ /// System.int
+ ///
+ EventVoltageRange = 1150173,
+ ///
+ /// System.int
+ ///
+ ClockVoltageRange = 1150174,
+ ///
+ /// System.int
+ ///
+ ClockVoltageLowLevel = 1150168,
+ ///
+ /// System.int
+ ///
+ ClockVoltageHighLevel = 1150169
+ }
+ ///
+ ///
+ ///
+ public class niHSDIOConstants
+ {
+ ///
+ ///
+ ///
+ public const int _50vLogic = 5;
+ ///
+ ///
+ ///
+ public const int _33vLogic = 6;
+ ///
+ ///
+ ///
+ public const int _25vLogic = 7;
+ ///
+ ///
+ ///
+ public const int _18vLogic = 8;
+ ///
+ ///
+ ///
+ public const int _15vLogic = 80;
+ ///
+ ///
+ ///
+ public const int _12vLogic = 81;
+ ///
+ ///
+ ///
+ public const int HighOrLow = 3;
+ ///
+ ///
+ ///
+ public const int ValidOrInvalid = 4;
+ ///
+ ///
+ ///
+ public const int GroupBySample = 71;
+ ///
+ ///
+ ///
+ public const int GroupByChannel = 72;
+ ///
+ ///
+ ///
+ public const int Finite = 16;
+ ///
+ ///
+ ///
+ public const int Continuous = 17;
+ ///
+ ///
+ ///
+ public const int CurrentPosition = 45;
+ ///
+ ///
+ ///
+ public const int StartOfWaveform = 44;
+ ///
+ ///
+ ///
+ public const int Waveform = 14;
+ ///
+ ///
+ ///
+ public const int Scripted = 15;
+ ///
+ ///
+ ///
+ public const string OnBoardClockStr = "OnBoardClock";
+ ///
+ ///
+ ///
+ public const string ClkInStr = "ClkIn";
+ ///
+ ///
+ ///
+ public const string PxiStarStr = "PXI_STAR";
+ ///
+ ///
+ ///
+ public const string StrobeStr = "STROBE";
+ ///
+ ///
+ ///
+ public const int SampleClockRisingEdge = 18;
+ ///
+ ///
+ ///
+ public const int SampleClockFallingEdge = 19;
+ ///
+ ///
+ ///
+ public const int DelayFromSampleClockRisingEdge = 20;
+ ///
+ ///
+ ///
+ public const string NoneStr = "None";
+ ///
+ ///
+ ///
+ public const string PxiClk10Str = "PXI_CLK10";
+ ///
+ ///
+ ///
+ public const string PxiClkStr = "PXI_CLK";
+ ///
+ ///
+ ///
+ public const string Rtsi7Str = "RTSI7";
+ ///
+ ///
+ ///
+ public const string Pfi0Str = "PFI0";
+ ///
+ ///
+ ///
+ public const string Pfi1Str = "PFI1";
+ ///
+ ///
+ ///
+ public const string Pfi2Str = "PFI2";
+ ///
+ ///
+ ///
+ public const string Pfi3Str = "PFI3";
+ ///
+ ///
+ ///
+ public const string PxiTrig0Str = "PXI_Trig0";
+ ///
+ ///
+ ///
+ public const string PxiTrig1Str = "PXI_Trig1";
+ ///
+ ///
+ ///
+ public const string PxiTrig2Str = "PXI_Trig2";
+ ///
+ ///
+ ///
+ public const string PxiTrig3Str = "PXI_Trig3";
+ ///
+ ///
+ ///
+ public const string PxiTrig4Str = "PXI_Trig4";
+ ///
+ ///
+ ///
+ public const string PxiTrig5Str = "PXI_Trig5";
+ ///
+ ///
+ ///
+ public const string PxiTrig6Str = "PXI_Trig6";
+ ///
+ ///
+ ///
+ public const string PxiTrig7Str = "PXI_Trig7";
+ ///
+ ///
+ ///
+ public const int RisingEdge = 12;
+ ///
+ ///
+ ///
+ public const int FallingEdge = 13;
+ ///
+ ///
+ ///
+ public const int PatternMatches = 36;
+ ///
+ ///
+ ///
+ public const int PatternDoesNotMatch = 37;
+ ///
+ ///
+ ///
+ public const string ScriptTrigger0 = "scriptTrigger0";
+ ///
+ ///
+ ///
+ public const string ScriptTrigger1 = "scriptTrigger1";
+ ///
+ ///
+ ///
+ public const string ScriptTrigger2 = "scriptTrigger2";
+ ///
+ ///
+ ///
+ public const string ScriptTrigger3 = "scriptTrigger3";
+ ///
+ ///
+ ///
+ public const int High = 34;
+ ///
+ ///
+ ///
+ public const int Low = 35;
+ ///
+ ///
+ ///
+ public const int StartTrigger = 53;
+ ///
+ ///
+ ///
+ public const int RefTrigger = 54;
+ ///
+ ///
+ ///
+ public const int AdvanceTrigger = 61;
+ ///
+ ///
+ ///
+ public const int ScriptTrigger = 58;
+ ///
+ ///
+ ///
+ public const int StopTrigger = 82;
+ ///
+ ///
+ ///
+ public const int SampleClock = 51;
+ ///
+ ///
+ ///
+ public const int RefClock = 52;
+ ///
+ ///
+ ///
+ public const int PauseTrigger = 57;
+ ///
+ ///
+ ///
+ public const int DataActiveEvent = 55;
+ ///
+ ///
+ ///
+ public const int MarkerEvent = 59;
+ ///
+ ///
+ ///
+ public const int ReadyForStartEvent = 56;
+ ///
+ ///
+ ///
+ public const int ReadyForAdvanceEvent = 66;
+ ///
+ ///
+ ///
+ public const int EndOfRecordEvent = 68;
+ ///
+ ///
+ ///
+ public const int OnboardRefClock = 60;
+ ///
+ ///
+ ///
+ public const string DoNotExportStr = "";
+ ///
+ ///
+ ///
+ public const string ClkOutStr = "ClkOut";
+ ///
+ ///
+ ///
+ public const string DdcClkOutStr = "DDC_ClkOut";
+ ///
+ ///
+ ///
+ public const string MarkerEvent0 = "marker0";
+ ///
+ ///
+ ///
+ public const string MarkerEvent1 = "marker1";
+ ///
+ ///
+ ///
+ public const string MarkerEvent2 = "marker2";
+ ///
+ ///
+ ///
+ public const string MarkerEvent3 = "marker3";
+ ///
+ ///
+ ///
+ public const int StpmuLocalSense = 88;
+ ///
+ ///
+ ///
+ public const int StpmuRemoteSense = 89;
+ ///
+ ///
+ ///
+ public const int StpmuReturnToTristate = 90;
+ ///
+ ///
+ ///
+ public const int StpmuReturnToPrevious = 91;
+ ///
+ ///
+ ///
+ public const int StpmuConnectExternal = 92;
+ ///
+ ///
+ ///
+ public const int StpmuDisconnectExternal = 93;
+ ///
+ ///
+ ///
+ public const int StpmuAuxIoConnector = 94;
+ ///
+ ///
+ ///
+ public const int StpmuRemoteSenseConnector = 95;
+ ///
+ ///
+ ///
+ public const int ExtCalCommit = 62;
+ ///
+ ///
+ ///
+ public const int ExtCalCancel = 63;
+
+ #region Added in 2.0
+ ///
+ ///
+ ///
+ public const int ActiveLoadDisabled = 96;
+ ///
+ ///
+ ///
+ public const int ActiveLoadEnabledWhenTristate = 97;
+ ///
+ ///
+ ///
+ public const int Connect = 98;
+ ///
+ ///
+ ///
+ public const int Disconnect = 99;
+ ///
+ ///
+ ///
+ public const int CalibrationChildSessionTypeAcquisition = 0;
+ ///
+ ///
+ ///
+ public const int CalibrationChildSessionTypeGeneration = 1;
+ ///
+ ///
+ ///
+ public const int CalibrationTypeUnconfigured = 0;
+ ///
+ ///
+ ///
+ public const int CalibrationTypeVoltageReferenceAdjust = 1;
+ ///
+ ///
+ ///
+ public const int CalibrationTypeSourceResisterAdjust = 2;
+ ///
+ ///
+ ///
+ public const int CalibrationTypeSinkResisterAdjust = 3;
+ ///
+ ///
+ ///
+ public const int CalibrationTypeCaliberationPulseAdjust = 4;
+ ///
+ ///
+ ///
+ public const int CalibrationTypeInputChannelSkewAccuracyVerify = 5;
+ ///
+ ///
+ ///
+ public const int CalibrationTypeOutputChannelSkewAccuracyVerify = 6;
+ ///
+ ///
+ ///
+ public const int CalibrationTypeInputVoltageAccuracyVerify = 7;
+ ///
+ ///
+ ///
+ public const int CalibrationTypeOutputVoltageAccuracyVerify = 8;
+ ///
+ ///
+ ///
+ public const int CalibrationTypeInputChannelSkewAdjust = 9;
+ ///
+ ///
+ ///
+ public const int CalibrationTypeOutputChannelSkewAdjust = 10;
+ ///
+ ///
+ ///
+ public const int DefferedUntilCommit = 0;
+ ///
+ ///
+ ///
+ public const int ImmediatelyUponSetVoltage = 1;
+ ///
+ ///
+ ///
+ public const string PFI4Str = "PFI4";
+ ///
+ ///
+ ///
+ public const string PFI5Str = "PFI5";
+ ///
+ ///
+ ///
+ public const string PFI24Str = "PFI24";
+ ///
+ ///
+ ///
+ public const string PFI25Str = "PFI25";
+ ///
+ ///
+ ///
+ public const string PFI26Str = "PFI26";
+ ///
+ ///
+ ///
+ public const string PFI27Str = "PFI27";
+ ///
+ ///
+ ///
+ public const string PFI28Str = "PFI28";
+ ///
+ ///
+ ///
+ public const string PFI29Str = "PFI29";
+ ///
+ ///
+ ///
+ public const string PFI30Str = "PFI30";
+ ///
+ ///
+ ///
+ public const string PFI31Str = "PFI31";
+
+ #endregion
+
+ #region Missing Constants Added
+ ///
+ ///
+ ///
+ public const int ActiveDrive = 75;
+ ///
+ ///
+ ///
+ public const int OpenCollector = 76;
+ ///
+ ///
+ ///
+ public const int Minus2To6VoltageRange = 86;
+ ///
+ ///
+ ///
+ public const int Minus1To7VoltageRange = 87;
+ ///
+ ///
+ ///
+ public const int HighImpedance = 84;
+ ///
+ ///
+ ///
+ public const int DriveTerminationVoltage = 85;
+ ///
+ ///
+ ///
+ public const int MatchLow = 0;
+ ///
+ ///
+ ///
+ public const int MatchHigh = 1;
+ ///
+ ///
+ ///
+ public const int Ignore = 33;
+ ///
+ ///
+ ///
+ public const int ActiveHigh = 10;
+ ///
+ ///
+ ///
+ public const int ActiveLow = 11;
+ ///
+ ///
+ ///
+ public const int Noninverted = 21;
+ ///
+ ///
+ ///
+ public const int Inverted = 22;
+ ///
+ ///
+ ///
+ public const int Delayed = 23;
+ ///
+ ///
+ ///
+ public const int Tristate = 24;
+ ///
+ ///
+ ///
+ public const int LogicHigh = 1;
+ ///
+ ///
+ ///
+ public const int LogicLow = 0;
+ ///
+ ///
+ ///
+ public const int HoldLastValue = 27;
+ ///
+ ///
+ ///
+ public const int None = 28;
+ ///
+ ///
+ ///
+ public const int DigitalEdge = 29;
+ ///
+ ///
+ ///
+ public const int DigitalLevel = 30;
+ ///
+ ///
+ ///
+ public const int Software = 32;
+ ///
+ ///
+ ///
+ public const int PatternMatch = 31;
+ ///
+ ///
+ ///
+ public const int MostRecentSample = 46;
+ ///
+ ///
+ ///
+ public const int FirstSample = 47;
+ ///
+ ///
+ ///
+ public const int ReferenceTrigger = 48;
+ ///
+ ///
+ ///
+ public const int FirstPretriggerSample = 49;
+ ///
+ ///
+ ///
+ public const int CurrentReadPosition = 50;
+ ///
+ ///
+ ///
+ public const int TimestampAbsolute = 69;
+ ///
+ ///
+ ///
+ public const int TimestampRelative = 70;
+ ///
+ ///
+ ///
+ public const int Lvds = 64;
+ ///
+ ///
+ ///
+ public const int SingleEnded = 65;
+ ///
+ ///
+ ///
+ public const int SingleDataRate = 1;
+ ///
+ ///
+ ///
+ public const int DoubleDataRate = 2;
+ ///
+ ///
+ ///
+ public const int States01 = 77;
+ ///
+ ///
+ ///
+ public const int States01Z = 83;
+ ///
+ ///
+ ///
+ public const int States01ZLHX = 78;
+ ///
+ ///
+ ///
+ public const int StatesLHX = 79;
+ ///
+ ///
+ ///
+ public const string Rtsi0Str = "RTSI0";
+ ///
+ ///
+ ///
+ public const string Rtsi1Str = "RTSI1";
+ ///
+ ///
+ ///
+ public const string Rtsi2Str = "RTSI2";
+ ///
+ ///
+ ///
+ public const string Rtsi3Str = "RTSI3";
+ ///
+ ///
+ ///
+ public const string Rtsi4Str = "RTSI4";
+ ///
+ ///
+ ///
+ public const string Rtsi5Str = "RTSI5";
+ ///
+ ///
+ ///
+ public const string RtsiStr = "RTSI6";
+ ///
+ ///
+ ///
+ public const string PxieDstarbStr = "PXIe_DStarB";
+
+ #endregion
+ }
+}
diff --git a/Axel-digit/packages.config b/Axel-digit/packages.config
new file mode 100644
index 00000000..5eaa239b
--- /dev/null
+++ b/Axel-digit/packages.config
@@ -0,0 +1,4 @@
+
+
+
+
\ No newline at end of file
diff --git a/Axel-digit/square_pulse-green-black.png b/Axel-digit/square_pulse-green-black.png
new file mode 100644
index 00000000..29e41769
Binary files /dev/null and b/Axel-digit/square_pulse-green-black.png differ
diff --git a/Axel-hub/Axel-hub/App.xaml.cs b/Axel-hub/Axel-hub/App.xaml.cs
index 4eb0de45..81b43b32 100644
--- a/Axel-hub/Axel-hub/App.xaml.cs
+++ b/Axel-hub/Axel-hub/App.xaml.cs
@@ -13,5 +13,24 @@ namespace Axel_hub
///
public partial class App : Application
{
- }
+ private static System.Threading.Mutex _mutex = null;
+ protected override void OnStartup(StartupEventArgs e)
+ {
+ //string mutexId = ((System.Runtime.InteropServices.GuidAttribute)System.Reflection.Assembly.GetExecutingAssembly().GetCustomAttributes(typeof(System.Runtime.InteropServices.GuidAttribute), false).GetValue(0)).Value.ToString();
+ _mutex = new System.Threading.Mutex(true, "{8F6F0AC4-B9A1-45fd-A8CF-72F04E6BDE8E}", out bool createdNew);
+ if (!createdNew)
+ {
+ MessageBox.Show("Previous instance of Axel-hub is still running.", "Application Halted");
+ Current.Shutdown();
+ }
+ else Exit += CloseMutexHandler;
+ base.OnStartup(e);
+ }
+ protected virtual void CloseMutexHandler(object sender, EventArgs e)
+ {
+ _mutex?.Close();
+ }
+
+ }
+
}
diff --git a/Axel-hub/Axel-hub/AssemblyInfo.cs b/Axel-hub/Axel-hub/AssemblyInfo.cs
index 2863ca4f..92b443d8 100644
--- a/Axel-hub/Axel-hub/AssemblyInfo.cs
+++ b/Axel-hub/Axel-hub/AssemblyInfo.cs
@@ -7,11 +7,11 @@
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
-[assembly: AssemblyTitle("Axel_hub")]
-[assembly: AssemblyDescription("Data acquisition and visuals for MEMS and MotMaster2")]
+[assembly: AssemblyTitle("Axel Hub")]
+[assembly: AssemblyDescription("Data visualization and processing with data from MotMaster2")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("Teodor Krastev for Imperial College, London, UK")]
-[assembly: AssemblyProduct("Axel_hub")]
+[assembly: AssemblyProduct("Axel Hub")]
[assembly: AssemblyCopyright("Teodor Krastev for Imperial College, London, UK")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
@@ -51,5 +51,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
-[assembly: AssemblyVersion("2.3.0.17")]
-[assembly: AssemblyFileVersion("2.3.0.17")]
+[assembly: AssemblyVersion("3.8.0.61")]
+[assembly: AssemblyFileVersion("3.8.0.61")]
diff --git a/Axel-hub/Axel-hub/Axel-hub.csproj b/Axel-hub/Axel-hub/Axel-hub.csproj
index aea9d3e2..66f9ed23 100644
--- a/Axel-hub/Axel-hub/Axel-hub.csproj
+++ b/Axel-hub/Axel-hub/Axel-hub.csproj
@@ -1,5 +1,5 @@

-
+
Debug
x86
@@ -10,7 +10,7 @@
Properties
Axel_hub
Axel-hub
- v4.5
+ v4.7.2
512
@@ -27,7 +27,7 @@
false
false
true
- 0
+ 17
2.2.0.%2a
false
true
@@ -58,34 +58,58 @@
Properties\rocket1.ico
+
+ ..\..\packages\csnumerics.1.0.1.50806\lib\portable-net4+sl5+netcore45+wpa81+wp8\CSNumerics.dll
+
..\..\..\EDMSuite\MotMaster2\bin\Nav\DataStructures.dll
-
-
-
-
-
-
-
-
+
+ ..\..\packages\dotMath.1.5.2\lib\netstandard2.0\dotMath.dll
+
+
+ ..\..\packages\MathNet.Numerics.4.15.0\lib\net461\MathNet.Numerics.dll
+
+
+ False
+
+
+ False
+
+
+ False
+
+
+ False
+
+
+ False
+
+
+ False
+
+
+
False
-
-
-
-
-
-
+
+ False
+
+
+ ..\..\packages\NumUtils\bin\Debug\NelderMeadSimplex.dll
+
+
False
- ..\..\packages\Newtonsoft.Json.dll
+ ..\..\packages\Newtonsoft.Json.13.0.1\lib\net45\Newtonsoft.Json.dll
-
- True
- ..\..\packages\Microsoft.Tpl.Dataflow.4.5.24\lib\portable-net45+win8+wpa81\System.Threading.Tasks.Dataflow.dll
+
+
+
+ False
+ C:\Program Files (x86)\Microsoft Visual Studio 12.0\Data\system.threading.tasks.dataflow.dll
@@ -96,10 +120,6 @@
4.0
-
- False
- ..\..\Utils\bin\UtilsLib.dll
-
@@ -109,30 +129,57 @@
MSBuild:Compile
Designer
+
+ RemoteMessaging.cs
+
+
+ UtilsLib.cs
+
AxelAxisUC.xaml
-
+
AxelChartUC.xaml
+
+ MultiScanUC.xaml
+
+
+ OptimGridScanUC.xaml
+
+
+ OptimSeqScanUC.xaml
+
+
+ OptimSimplexUC.xaml
+
+
+ OptimUC.xaml
+
scanUC.xaml
-
+
signalUC.xaml
-
+
strobesUC.xaml
+
+ ShowcaseUC.xaml
+
+
+ WindowShowcase.xaml
+
Designer
MSBuild:Compile
-
+
Designer
MSBuild:Compile
@@ -152,15 +199,43 @@
Designer
MSBuild:Compile
+
+ Designer
+ MSBuild:Compile
+
+
+ Designer
+ MSBuild:Compile
+
+
+ Designer
+ MSBuild:Compile
+
+
+ Designer
+ MSBuild:Compile
+
+
+ Designer
+ MSBuild:Compile
+
MSBuild:Compile
Designer
-
+
Designer
MSBuild:Compile
-
+
+ Designer
+ MSBuild:Compile
+
+
+ Designer
+ MSBuild:Compile
+
+
Designer
MSBuild:Compile
@@ -188,6 +263,8 @@
ResXFileCodeGenerator
Resources.Designer.cs
+
+
SettingsSingleFileGenerator
Settings.Designer.cs
@@ -214,15 +291,22 @@
-
-
-
+
+
+
+
+
+
+
+
+
+
-
+
@@ -69,7 +69,7 @@
-
+
@@ -97,7 +97,7 @@
-
+
@@ -145,7 +145,7 @@
-
+
@@ -157,8 +157,8 @@
-
-
+
+
@@ -169,23 +169,23 @@
-
+
-
-
+
+
-
+
-
-
+
+
-
-
+
+
@@ -234,7 +234,7 @@
-
+
diff --git a/Axel-hub/Axel-hub/AxelChartUC.xaml.cs b/Axel-hub/Axel-hub/PanelsUC/AxelChartUC.xaml.cs
similarity index 89%
rename from Axel-hub/Axel-hub/AxelChartUC.xaml.cs
rename to Axel-hub/Axel-hub/PanelsUC/AxelChartUC.xaml.cs
index 188fe220..28a95a2f 100644
--- a/Axel-hub/Axel-hub/AxelChartUC.xaml.cs
+++ b/Axel-hub/Axel-hub/PanelsUC/AxelChartUC.xaml.cs
@@ -21,7 +21,6 @@
using System.Windows.Controls.Primitives;
using System.Threading.Tasks.Dataflow;
-using NationalInstruments.Net;
using NationalInstruments;
using NationalInstruments.NetworkVariable;
using NationalInstruments.NetworkVariable.WindowsForms;
@@ -75,6 +74,8 @@ public void InitOptions(ref GeneralOptions _genOptions, ref Modes _modes, ref Ax
{
if (Utils.isNull(_genOptions)) Utils.TimedMessageBox("Non-existant options");
else genOptions = _genOptions;
+ OnOptionsChange(genOptions);
+ genOptions.OnChange += new GeneralOptions.ChangeHandler(OnOptionsChange);
modes = _modes;
prefix = _prefix;
axelMems = _axelMems;
@@ -90,15 +91,22 @@ public void InitOptions(ref GeneralOptions _genOptions, ref Modes _modes, ref Ax
Waveform.OnRefresh += new DataStack.RefreshHandler(Refresh);
Waveform.TimeSeriesMode = !rbPoints.IsChecked.Value;
- resultStack = new DataStack(1000,prefix); resultStack.visualCountLimit = -1;
+ resultStack = new DataStack(1000,prefix); resultStack.visualCountLimit = -1;
+
Refresh();
}
public DataStack resultStack;
public int GetStackDepth() { return (int)seStackDepth.Value; }
- public void SetHWfile(string fl)
- {
- if (fl.Equals("")) lbHWfile.Content = "Hardware: (default)";
- else lbHWfile.Content = "Hardware: "+fl;
+
+ public void OnOptionsChange(GeneralOptions opts)
+ {
+ string fl = "HW: ";
+ if (genOptions.memsInJumbo.Equals(GeneralOptions.MemsInJumbo.USB9251))
+ fl += genOptions.MemsHw;
+ if (genOptions.memsInJumbo.Equals(GeneralOptions.MemsInJumbo.PXI4462))
+ fl += "PXI-4461";
+ if (genOptions.Diagnostics) fl += "; diagnostics";
+ lbHWfile.Content = fl;
}
private int IncomingBufferSize = 1000;
public void SetIncomingBufferSize(int bf)
@@ -117,11 +125,25 @@ public void SetIncomingBufferSize(int bf)
public double convertV2mg(double accelV, double temperV = double.NaN)
{
double rslt = double.NaN; bool tempComp = genOptions.TemperatureEnabled && genOptions.TemperatureCompensation && !temperV.Equals(double.NaN);
- if (prefix.Equals("X")) rslt = axelMems.memsX.accel(accelV, temperV, tempComp);
- if (prefix.Equals("Y")) rslt = axelMems.memsY.accel(accelV, temperV, tempComp);
+ if (prefix.Equals("X")) rslt = axelMems.memsX.accelMg(accelV, temperV, tempComp);
+ if (prefix.Equals("Y")) rslt = axelMems.memsY.accelMg(accelV, temperV, tempComp);
return rslt;
}
+ public DataStack convertV2mg(DataStack accelV, double temperV = double.NaN)
+ {
+ DataStack rslt = new DataStack(accelV.Depth, accelV.prefix);
+ for (int i = 0; i < accelV.Count; i++ )
+ {
+ rslt.AddPoint(convertV2mg(accelV[i].Y, temperV), accelV[i].X);
+ }
+ return rslt;
+ }
+
+ public DataStack TimePortionMg(double fromTime, double toTime, double temperV = double.NaN)
+ {
+ return convertV2mg(Waveform.TimePortion(fromTime, toTime), temperV);
+ }
///
/// Clear all the data and visual components
///
@@ -159,6 +181,37 @@ public void SetWaveformDepth(int depth)
public DataStack Waveform { get; set; }
+ private bool _Active;
+ ///
+ /// intermediate level to Running; if Running it always Active; but if not Running it could be Active or not
+ ///
+ public bool Active
+ {
+ get
+ {
+ if (Running) return true;
+ else return _Active;
+ }
+
+ set
+ {
+ _Active = value;
+ if (value)
+ {
+ Waveform.TimeSeriesMode = !rbPoints.IsChecked.Value;
+ Waveform.visualCountLimit = (int)seStackDepth.Value;
+ Waveform.Depth = (int)seStackDepth.Value;
+ totalCount = 0;
+ }
+ else
+ {
+ btnPause.Visibility = Visibility.Hidden;
+ Waveform.logger.Enabled = false;
+ Refresh(null, null);
+ }
+ }
+ }
+
private bool _Running;
///
/// Some actions when the acquisition start/stop
@@ -177,6 +230,7 @@ public bool Running
Waveform.visualCountLimit = (int)seStackDepth.Value;
Waveform.Depth = (int)seStackDepth.Value;
totalCount = 0;
+ memsTemperature = Double.NaN;
}
else
{
@@ -288,8 +342,9 @@ private void Refresh(object sender, RoutedEventArgs e)
totalCount++;
lbi = (ListBoxItem)lbMean.Items[3]; lbi.Content = "# " + totalCount.ToString();
- lbi = (ListBoxItem)lbStDev.Items[3]; lbi.Content = (Waveform.stopWatch.ElapsedMilliseconds / 1000.0).ToString("G5"); //resultStack.pointSDev().Y.ToString("G7"); // # and StDev
-
+ lbi = (ListBoxItem)lbStDev.Items[3];
+ if (theTime.isTimeRunning) lbi.Content = theTime.elapsedTime.ToString("G5"); //resultStack.pointSDev().Y.ToString("G7"); // # and StDev
+ else lbi.Content = "Time's up";
if (genOptions.TemperatureEnabled)
{
lbi = (ListBoxItem)lbMean.Items[4]; lbi.Content = (mV * memsTemperature).ToString("G7");
@@ -303,8 +358,12 @@ private void Refresh(object sender, RoutedEventArgs e)
numTimeSlice.Background = Brushes.White;
}));
}
- lbErrorStatus.Content = "Error status: "+Waveform.lastError;
-
+ if (genOptions.memsInJumbo.Equals(GeneralOptions.MemsInJumbo.USB9251))
+ lbErrorStatus.Content = axelMems.tracer.message() + ((Waveform.lastError == "") ? "" : " Err: ") + Waveform.lastError;
+ if (genOptions.memsInJumbo.Equals(GeneralOptions.MemsInJumbo.PXI4462))
+ lbErrorStatus.Content = "";
+
+
if (!chkChartUpdate.IsChecked.Value) return;
//Console.WriteLine("refresh at " + (Waveform.stopWatch.ElapsedMillseconds/1000.0).ToString());
lblRange.Content = "Vis.Range = " + curRange.ToString() + " pnts";
@@ -593,9 +652,9 @@ public void modesFromVisual()
{
if(Utils.isNull(modes)) return;
- modes.RollMean = (int)seRollMean.Value;
+ modes.RollMean = seRollMean.Value;
modes.ShowFreq = (int)seShowFreq.Value;
- modes.StackDepth = (int)seStackDepth.Value;
+ modes.StackDepth = seStackDepth.Value;
modes.ChartUpdate = (bool)chkChartUpdate.IsChecked.Value;
modes.TblUpdate = (bool)chkTblUpdate.IsChecked.Value;
modes.PowerCoeff = nbPowerCoeff.Value;
@@ -836,6 +895,32 @@ private void chkAutoScale_Checked(object sender, RoutedEventArgs e)
}
scrollPlot.AdjustVerticalScale = chkAutoScale.IsChecked.Value;
}
+ ///
+ /// prepare for active/inactive
+ ///
+ ///
+ ///
+ ///
+ public void set2active(bool start, double samplingPeriod, int InnerBufferSize = 0)
+ {
+ if (!start) // user cancel
+ {
+ Active = false;
+ Waveform.logger.Enabled = false;
+ return;
+ }
+ Clear();
+ Active = true;
+ Waveform.StackMode = true;
+ SamplingPeriod = samplingPeriod;
+ if (InnerBufferSize > 0)
+ {
+ SetWaveformDepth(InnerBufferSize);
+ Waveform.visualCountLimit = InnerBufferSize;
+ }
+ SetInfo("freq: " + (1 / SamplingPeriod).ToString("G6") + ", aqcPnt: " + Waveform.visualCountLimit.ToString());
+ Waveform.logger.Enabled = false;
+ }
///
/// Start/Stop ADC24 acquisition
@@ -851,7 +936,7 @@ public void set2startADC24(bool down, double samplingPeriod, int InnerBufferSize
Waveform.logger.Enabled = false;
return;
}
- if (Running) Running = false; //
+ if (Running) Running = false; // ???
Clear();
Waveform.StackMode = true;
SetWaveformDepth(InnerBufferSize);
diff --git a/Axel-hub/Axel-hub/PanelsUC/MultiScanUC.xaml b/Axel-hub/Axel-hub/PanelsUC/MultiScanUC.xaml
new file mode 100644
index 00000000..4ca428d5
--- /dev/null
+++ b/Axel-hub/Axel-hub/PanelsUC/MultiScanUC.xaml
@@ -0,0 +1,78 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/Axel-hub/Axel-hub/PanelsUC/MultiScanUC.xaml.cs b/Axel-hub/Axel-hub/PanelsUC/MultiScanUC.xaml.cs
new file mode 100644
index 00000000..cf5af4ec
--- /dev/null
+++ b/Axel-hub/Axel-hub/PanelsUC/MultiScanUC.xaml.cs
@@ -0,0 +1,103 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+using System.Windows;
+using System.Windows.Controls;
+using System.Windows.Data;
+using System.Windows.Documents;
+using System.Windows.Input;
+using System.Windows.Media;
+using System.Windows.Media.Imaging;
+using System.Windows.Navigation;
+using System.Windows.Shapes;
+using NationalInstruments.Controls;
+using dotMath;
+using UtilsNS;
+
+namespace Axel_hub.PanelsUC
+{
+ ///
+ /// Interaction logic for MultiScanUC.xaml
+ ///
+ public partial class MultiScanUC : UserControl
+ {
+ public MultiScanUC()
+ {
+ InitializeComponent();
+
+ }
+ private void graphFringes_MouseDoubleClick(object sender, MouseButtonEventArgs e)
+ {
+ (sender as Graph).ResetZoomPan();
+ }
+ DictFileLogger logger;
+ List scans;
+ DataStack srsY1, srsY2;
+ public void Init(MMexec mme)
+ {
+ List ls = new List();
+ // script it
+ scans = new List();
+ for (int i = 1; i < 6; i++)
+ {
+ string p = "P"+i.ToString();
+ if (mme.prms.ContainsKey(p)) scans.Add(new baseMMscan(Convert.ToString(mme.prms[p])));
+ else continue;
+ ls.Add(scans[i - 1].sParam);
+ }
+ srsY1 = new DataStack(); srsY2 = new DataStack();
+ ls.Add("Xvalue");
+ if (chkY1.IsChecked.Value) ls.Add("Y1value"); if (chkY2.IsChecked.Value) ls.Add("Y2value");
+ logger = new DictFileLogger(ls.ToArray()); logger.defaultExt = ".msn";
+ }
+ public void Clear() // clear all but expressions
+ {
+ logger.Enabled = false;
+ scans.Clear();
+ srsY1.Clear(); srsY2.Clear();
+ graphFringes.Data[0] = null; graphFringes.Data[1] = null;
+ lbInfo.Content = "Info:";
+ lbY1value.Content = "- - -"; lbY2value.Content = "- - -"; lbXvalue.Content = "- - -";
+ }
+ public void NextShot(MMexec mme)
+ {
+ var compilerX = new EquationCompiler(tbX.Text);
+ string sh = "Info: ";
+ Dictionary ddct = new Dictionary();
+ for (int i = 1; i < 6; i++)
+ {
+ if (Utils.InRange(i, 1,scans.Count)) break;
+ string p = "P" + i.ToString();
+ if (mme.prms.ContainsKey(p)) scans[i - 1].Value = Convert.ToDouble(mme.prms[p]);
+ else continue;
+ sh += scans[i - 1].sParam + " = " + scans[i - 1].Value + " ; ";
+ compilerX.SetVariable(p, scans[i - 1].Value);
+ compilerX.SetVariable(scans[i - 1].sParam, scans[i - 1].Value);
+ ddct[scans[i - 1].sParam] = scans[i - 1].Value;
+ }
+ lbInfo.Content = sh;
+
+ double Xvalue = compilerX.Calculate(); lbXvalue.Content = Xvalue.ToString("G7"); ddct["Xvalue"] = Xvalue;
+
+ var compilerY1 = new EquationCompiler(tbY1.Text); var compilerY2 = new EquationCompiler(tbY2.Text);
+ Dictionary dct = MMDataConverter.AverageShotSegments(mme, true);
+ foreach (string dc in dct.Keys)
+ {
+ compilerY1.SetVariable(dc, dct[dc]); compilerY2.SetVariable(dc, dct[dc]);
+ }
+ if (chkY1.IsChecked.Value)
+ {
+ double Y1value = compilerY1.Calculate(); lbY1value.Content = Y1value.ToString("G7");
+ srsY1.AddPoint(Y1value, Xvalue); graphFringes.Data[0] = srsY1; ddct["Y1value"] = Y1value;
+ }
+ if (chkY2.IsChecked.Value)
+ {
+ double Y2value = compilerY2.Calculate(); lbY2value.Content = Y2value.ToString("G7");
+ srsY1.AddPoint(Y2value, Xvalue); graphFringes.Data[1] = srsY2; ddct["Y2value"] = Y2value;
+ }
+ logger.dictLog(ddct);
+ }
+ }
+}
diff --git a/Axel-hub/Axel-hub/PanelsUC/OptimGridScanUC.xaml b/Axel-hub/Axel-hub/PanelsUC/OptimGridScanUC.xaml
new file mode 100644
index 00000000..1a083614
--- /dev/null
+++ b/Axel-hub/Axel-hub/PanelsUC/OptimGridScanUC.xaml
@@ -0,0 +1,64 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/Axel-hub/Axel-hub/PanelsUC/OptimGridScanUC.xaml.cs b/Axel-hub/Axel-hub/PanelsUC/OptimGridScanUC.xaml.cs
new file mode 100644
index 00000000..0774a94c
--- /dev/null
+++ b/Axel-hub/Axel-hub/PanelsUC/OptimGridScanUC.xaml.cs
@@ -0,0 +1,292 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+using System.Windows;
+using System.Windows.Controls;
+using System.Windows.Data;
+using System.Windows.Documents;
+using System.Windows.Input;
+using System.Windows.Media;
+using System.Windows.Media.Media3D;
+using System.Windows.Media.Imaging;
+using System.Windows.Navigation;
+using System.Windows.Shapes;
+using NationalInstruments.Controls;
+using NationalInstruments.Analysis.Dsp.Filters;
+using UtilsNS;
+
+namespace Axel_hub.PanelsUC
+{
+ ///
+ /// Interaction logic for OptimGridScanUC.xaml
+ ///
+ public partial class OptimGridScanUC : UserControl, IOptimization
+ {
+ public OptimGridScanUC()
+ {
+ InitializeComponent();
+ }
+ #region Common
+ public Dictionary opts { get; set; }
+ public void Init(Dictionary _opts)
+ {
+ if (Utils.isNull(_opts)) return;
+ opts = new Dictionary(_opts);
+ if (opts.Count.Equals(0)) return;
+ if (opts.ContainsKey("numSGdegree")) numSGdegree.Value = Convert.ToInt32(opts["numSGdegree"]);
+ if (opts.ContainsKey("numSGframe")) numSGframe.Value = Convert.ToInt32(opts["numSGframe"]);
+ if (opts.ContainsKey("numZRmin")) numZRmin.Value = opts["numZRmin"];
+ if (opts.ContainsKey("numZRmax")) numZRmax.Value = opts["numZRmax"];
+ }
+ public void Final()
+ {
+ if (Utils.isNull(opts)) opts = new Dictionary();
+ opts["moduleIdx"] = 1;
+ opts["numSGdegree"] = numSGdegree.Value;
+ opts["numSGframe"] = numSGframe.Value;
+ opts["numZRmin"] = numZRmin.Value;
+ opts["numZRmax"] = numZRmax.Value;
+ }
+ #region Events
+ public event EventHandler ParamSetEvent;
+ protected virtual void OnParamSet(OptimEventArgs e)
+ {
+ ParamSetEvent?.Invoke(this, e);
+ }
+ public event CostEventHandler TakeAShotEvent;
+ protected virtual double OnTakeAShot(OptimEventArgs e)
+ {
+ if (Utils.isNull(TakeAShotEvent)) return Double.NaN;
+ return TakeAShotEvent.Invoke(this, e);
+ }
+ public event EventHandler LogEvent;
+ protected virtual void OnLog(OptimEventArgs e)
+ {
+ LogEvent?.Invoke(this, e);
+ }
+ public void log(string txt, bool detail)
+ {
+ OnLog(new OptimEventArgs("", detail ? -1 : 1, txt));
+ }
+ public event EventHandler EndOptimEvent;
+ protected virtual void OnEndOptim(OptimEventArgs e)
+ {
+ EndOptimEvent?.Invoke(this, e);
+ }
+ #endregion Events
+ public optimState state { get; set; }
+ public List scans { get; set; }
+ private void Clear()
+ {
+ d0 = 0; d1 = 0; xAxis.Label = ""; yAxis.Label = "";
+ if (!Utils.isNull(scans)) scans.Clear();
+ raw = null; proc = null;
+ if (!Utils.isNull(pnts3)) pnts3.Clear();
+ theMax = new Point3D(Double.NaN, Double.NaN, Double.NaN);
+ crsMax.Visibility = Visibility.Collapsed;
+ }
+ public string report(bool lastIter)
+ {
+ if (Utils.isNull(theMax)) return "";
+ OnParamSet(new OptimEventArgs(scans[0].sParam, theMax.Y, "optimized (slow index) - X"));
+ OnTakeAShot(new OptimEventArgs(scans[1].sParam, theMax.X, "optimized (fast index) - Y"));
+ return scans[0].sParam+" : "+theMax.Y.ToString("G5") + " ; " + scans[1].sParam + " : " + theMax.X.ToString("G5")
+ + " ; obj.function : " + theMax.Z.ToString("G5");
+ }
+ public void Optimize(bool? start, List _scans, Dictionary opts)
+ {
+ if (!_scans.Count.Equals(2)) { log("Err: the present implementaion of grid optimization accepts only 2 parameters.", false); OnEndOptim(null); return; }
+ scans = new List(_scans);
+ if (Utils.isNull(start)) { log("Err: wrong branch.", false); OnEndOptim(null); return; }
+ if ((bool)start)
+ {
+ state = optimState.running; Clear();
+ scans = new List();
+ foreach (baseMMscan mms in _scans)
+ scans.Add(new baseMMscan(mms.getAsString()));
+ graphIntensity.DataSource = null;
+ xAxis.Label = scans[1].sParam; yAxis.Label = scans[0].sParam;
+ xAxis.Range = new Range(scans[1].sFrom - scans[1].sBy / 2, scans[1].sTo + scans[1].sBy / 2); // slow idx
+ yAxis.Range = new Range(scans[0].sFrom - scans[0].sBy / 2, scans[0].sTo + scans[0].sBy / 2); // fast idx
+ d0 = 1 + Convert.ToInt32((scans[1].sTo - scans[1].sFrom) / scans[1].sBy); // slow
+ d1 = 1 + Convert.ToInt32((scans[0].sTo - scans[0].sFrom) / scans[0].sBy); // fast
+ if (DoubleScan()) UpdateVis();
+ }
+ else state = optimState.cancelRequest;
+ OnEndOptim(new OptimEventArgs("", Double.NaN, report(false)));
+ }
+ #endregion Common
+ int d0, d1; // dimentions (slow - x; fast - y) of the array
+ double[,] raw, proc; // [slow, fast]
+ List pnts3;
+ Point3D theMax;
+ private bool DoubleScan()
+ {
+ raw = new double[d0, d1]; pnts3 = new List();
+ for (int i = 0; i < d0; i++) // slow (x)
+ {
+ double v = scans[1].sFrom + i * scans[1].sBy;
+ OnParamSet(new OptimEventArgs(scans[1].sParam, v, "scanning (slow index) - X"));
+ for (int j = 0; j < d1; j++) // fast (y)
+ {
+ if (state.Equals(optimState.cancelRequest)) return false;
+ double w = scans[0].sFrom + j * scans[0].sBy;
+ raw[i, j] = OnTakeAShot(new OptimEventArgs(scans[0].sParam, w, "scanning (fast index) - Y"));
+ pnts3.Add(new Point3D(v, w, raw[i, j]));
+ }
+ graphIntensity.DataSource = null; Utils.DoEvents();
+ graphIntensity.DataSource = pnts3; Utils.DoEvents();
+ }
+ return true;
+ }
+ private List Map3D(double[,] map)
+ {
+ var r = new List(); double x, y;
+ for (int i = 0; i < d0; i++)
+ {
+ x = scans[1].sFrom + i * scans[1].sBy;
+ for (int j = 0; j < d1; j++)
+ {
+ y = scans[0].sFrom + j * scans[0].sBy;
+ r.Add(new Point3D(x,y, map[i, j]));
+ }
+ }
+ return r;
+ }
+ #region filter
+ protected double[] extractVector(int dm, double[,] mat, int idx)
+ {
+ if (!Utils.InRange(dm, 0, 1)) { log("Err: wrong dim. "+dm.ToString(), false); return null; }
+ int np = mat.GetLength(dm);
+ double[] vec = new double[np];
+ if (dm.Equals(0))
+ {
+ if (!Utils.InRange(idx, 0, mat.GetLength(1))) { log("Err: wrong index. " + idx.ToString(), false); return null; }
+ for (int i = 0; i < np; i++) vec[i] = mat[i, idx];
+ }
+ if (dm.Equals(1))
+ {
+ if (!Utils.InRange(idx, 0, mat.GetLength(0))) { log("Err: wrong index. " + idx.ToString(), false); return null; }
+ for (int i = 0; i < np; i++) vec[i] = mat[idx, i];
+ }
+ return vec;
+ }
+ protected double[,] replaceVector(int dm, double[,] mat, int idx, double[] vec)
+ {
+ if (!Utils.InRange(dm, 0, 1)) { log("Err: wrong dim. " + dm.ToString(), false); return null; }
+ int np = mat.GetLength(dm);
+ if (!vec.Length.Equals(np)) { log("Err: wrong vector size. " + dm.ToString(), false); return null; }
+ var prc = (double[,])mat.Clone();
+
+ if (dm.Equals(0))
+ {
+ if (!Utils.InRange(idx, 0, mat.GetLength(1))) { log("Err: wrong index. " + idx.ToString(), false); return null; }
+ for (int i = 0; i < np; i++) prc[i, idx] = vec[i];
+ }
+ if (dm.Equals(1))
+ {
+ if (!Utils.InRange(idx, 0, mat.GetLength(0))) { log("Err: wrong index. " + idx.ToString(), false); return null; }
+ for (int i = 0; i < np; i++) prc[idx, i] = vec[i];
+ }
+ return prc;
+ }
+ public double[] SGfilter1(double[] ds)
+ {
+ double[] r = new double[ds.Length]; // empty to return in case of error
+ if (numSGdegree.Value > (2 * numSGframe.Value + 1)) { log("Err: increase Sidepoints", false); return r; }
+ if (ds.Length == 0) { log("Err: No data points to S-G filter", false); return r; }
+ if (ds.Length < (2 * numSGframe.Value + 1)) { log("Err: Too few data points to S-G filter", false); return r; }
+ double[] ra = SavitzkyGolay.Filter(ds, numSGdegree.Value, numSGframe.Value);
+ if (ra.Length != ds.Length) { log("Err: vector sizes mismatch", false); return r; }
+ return ra;
+ }
+ protected double[,] pseudo2dSV(double[,] mat)
+ {
+ List prc = new List();
+ prc.Add((double[,])mat.Clone()); prc.Add((double[,])mat.Clone());
+ double[] vec;
+ for (int j = 0; j < prc.Count; j++)
+ {
+ int adm = (j == 0) ? mat.GetLength(1) : mat.GetLength(0);
+ for (int i = 0; i < adm; i++)
+ {
+ vec = SGfilter1(extractVector(j, mat, i));
+ prc[j] = replaceVector(j, prc[j], i, vec);
+ }
+ }
+ var r = (double[,])mat.Clone();
+ for (int i = 0; i < d0; i++)
+ {
+ for (int j = 0; j < d1; j++)
+ {
+ r[i,j] = (prc[0][i, j] + prc[1][i, j]) / 2;
+ }
+ }
+ return r;
+ }
+ private bool Filter(double[,] map = null)
+ {
+ if (Utils.isNull(map) && Utils.isNull(raw)) return false;
+ if (Utils.isNull(map)) map = raw;
+ if ((raw.GetLength(0) != d0) || (raw.GetLength(1) != d1)) return false;
+ proc = pseudo2dSV(raw);
+ return !Utils.isNull(proc);
+ }
+ #endregion filter
+ private void UpdateVis()
+ {
+ if (Utils.isNull(raw)) { graphIntensity.DataSource = null; return; }
+ if (bcbFilter.Value)
+ if (!Filter(raw)) return;
+ theMax = (bcbFilter.Value) ? FindMax(proc) : FindMax(raw);
+ OnParamSet(new OptimEventArgs(scans[0].sParam, theMax.Y, "optimized")); // fast
+ OnParamSet(new OptimEventArgs(scans[1].sParam, theMax.X, "optimized")); // slow
+
+ List map = ((bcbFilter.Value) ? Map3D(proc) : Map3D(raw));
+ graphIntensity.DataSource = map;
+ }
+ private Point3D FindMax(double[,] map)
+ {
+ var r = new Point3D(); double m = -1e6;
+ for (int i = 0; i < d0; i++) // slow x
+ {
+ for (int j = 0; j < d1; j++) // fast y
+ {
+ if (map[i, j] > m)
+ {
+ m = map[i, j];
+ r = new Point3D(scans[1].sFrom + i * scans[1].sBy,scans[0].sFrom + j * scans[0].sBy, m);
+ }
+ }
+ }
+ List psn = new List(); psn.Add(r.X); psn.Add(r.Y);
+ crsMax.SetDataPosition(psn);
+ crsMax.Visibility = Visibility.Visible;
+ return r;
+ }
+ private void numZRmin_ValueChanged(object sender, ValueChangedEventArgs e)
+ {
+ if (Utils.isNull(numZRmin) || Utils.isNull(numZRmax) || Utils.isNull(intGraphColorScale)) return;
+ if (numZRmax.Value <= numZRmin.Value) { log("Err: wrong color limits.", false); return; }
+ int nm = intGraphColorScale.Markers.Count;
+ for (int i = 0; i < nm; i++)
+ {
+ double m = numZRmin.Value + i * (numZRmax.Value - numZRmin.Value) / (nm - 1);
+ intGraphColorScale.Markers[i] = new ColorScaleMarker(m, intGraphColorScale.Markers[i].Color);
+ }
+ }
+ private void numSGdegree_ValueChanged(object sender, NationalInstruments.Controls.ValueChangedEventArgs e)
+ {
+ if (Utils.isNull(graphIntensity)) return;
+ if (bcbFilter.Value) UpdateVis();
+ }
+
+ private void bcbFilter_Click(object sender, RoutedEventArgs e)
+ {
+ bcbFilter.Value = !bcbFilter.Value;
+ UpdateVis();
+ }
+ }
+}
diff --git a/Axel-hub/Axel-hub/PanelsUC/OptimSeqScanUC.xaml b/Axel-hub/Axel-hub/PanelsUC/OptimSeqScanUC.xaml
new file mode 100644
index 00000000..633aeae7
--- /dev/null
+++ b/Axel-hub/Axel-hub/PanelsUC/OptimSeqScanUC.xaml
@@ -0,0 +1,69 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/Axel-hub/Axel-hub/PanelsUC/OptimSeqScanUC.xaml.cs b/Axel-hub/Axel-hub/PanelsUC/OptimSeqScanUC.xaml.cs
new file mode 100644
index 00000000..398f213e
--- /dev/null
+++ b/Axel-hub/Axel-hub/PanelsUC/OptimSeqScanUC.xaml.cs
@@ -0,0 +1,227 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading;
+using System.Threading.Tasks;
+using System.Windows;
+using System.Windows.Controls;
+using System.Windows.Data;
+using System.Windows.Documents;
+using System.Windows.Input;
+using System.Windows.Media;
+using System.Windows.Media.Imaging;
+using System.Windows.Navigation;
+using System.Windows.Shapes;
+using NationalInstruments.Controls;
+using NationalInstruments.Analysis.Dsp.Filters;
+using UtilsNS;
+
+namespace Axel_hub.PanelsUC
+{
+
+ ///
+ /// Interaction logic for OptimSeqScan.xaml
+ ///
+ public partial class OptimSeqScanUC : UserControl, IOptimization
+ {
+ public OptimSeqScanUC()
+ {
+ InitializeComponent();
+ state = optimState.idle;
+ }
+ #region Common
+ public Dictionary opts { get; set; }
+ public void Init(Dictionary _opts)
+ {
+ if (Utils.isNull(_opts)) return;
+ opts = new Dictionary(_opts);
+ if (opts.Count.Equals(0)) return;
+ if (opts.ContainsKey("numSGdegree")) numSGdegree.Value = Convert.ToInt32(opts["numSGdegree"]);
+ if (opts.ContainsKey("numSGframe")) numSGframe.Value = Convert.ToInt32(opts["numSGframe"]);
+ if (opts.ContainsKey("numIters")) numIters.Value = Convert.ToInt32(opts["numIters"]);
+ //IEnumerable collection = mainGrid.Children.OfType();
+ }
+ public void Final()
+ {
+ if (Utils.isNull(opts)) opts = new Dictionary();
+ opts["moduleIdx"] = 0;
+ opts["numSGdegree"] = numSGdegree.Value;
+ opts["numSGframe"] = numSGframe.Value;
+ opts["numIters"] = numIters.Value;
+ }
+
+ #region Events
+ public event EventHandler ParamSetEvent;
+ protected virtual void OnParamSet(OptimEventArgs e)
+ {
+ ParamSetEvent?.Invoke(this, e);
+ }
+ public event CostEventHandler TakeAShotEvent;
+ protected virtual double OnTakeAShot(OptimEventArgs e)
+ {
+ if (Utils.isNull(TakeAShotEvent)) return Double.NaN;
+ return TakeAShotEvent.Invoke(this, e);
+ }
+ public event EventHandler LogEvent;
+ protected virtual void OnLog(OptimEventArgs e)
+ {
+ LogEvent?.Invoke(this, e);
+ }
+ public void log(string txt, bool detail)
+ {
+ OnLog(new OptimEventArgs("", detail ? -1: 1, txt));
+ }
+ public event EventHandler EndOptimEvent;
+ protected virtual void OnEndOptim(OptimEventArgs e)
+ {
+ EndOptimEvent?.Invoke(this, e);
+ }
+ #endregion Events
+ public optimState state { get; set; }
+ public List scans { get; set; }
+ public baseMMscan actScan { get; set; }
+ public string report(bool lastIter)
+ {
+ string ss = "";
+ int ni = optims.Count(); int np = scans.Count(); int ip = ni % np;
+ if (ni.Equals(0)) return "";
+ int idx = 0; int stIdx = 0; double d = -1e6;
+ if (lastIter) stIdx = ni - np;
+ for (int i = stIdx; i < ni; i++)
+ {
+ if (optims[i].Item3 > d) { d = optims[i].Item3; idx = i; }
+ }
+ int iw = idx / np; // iteration winner
+ int iws = iw * np;
+ if (lastIter) ss = "> iteration #"+(ni/np).ToString() + " with max obj.function = "+d.ToString("G5");
+ else
+ {
+ for (int i = iws; i < (iws + np); i++)
+ {
+ ss += " "+optims[i].Item2.ToString() + ";";
+ }
+ ss = ss.Substring(0, ss.Length - 1);
+ }
+ return ss;
+ }
+ List> optims = new List>(); // log of results
+
+ public void Optimize(bool? start, List _scans, Dictionary opts)
+ {
+ if (Utils.isNull(start)) // SingleScan
+ {
+ if (state.Equals(optimState.cancelRequest)) return;
+ if (state.Equals(optimState.paused)) { log("Err: Wrong state order.", false); return; }
+ int ni = optims.Count(); // if (ni.Equals(0)) { log("Err: no optims.", false); return; }
+ int np = scans.Count(); if (np.Equals(0)) { log("Err: no scans.", false); return; }
+ int ip = ni % np; Point pt;
+ if (ip.Equals(0) && (optims.Count() != 0)) log(report(true), false);
+ if (ni.Equals(np*numIters.Value))
+ {
+ state = optimState.idle;
+ OnEndOptim(new OptimEventArgs("", Double.NaN, report(false))); return;
+ }
+ actScan = scans[ip]; state = optimState.running;
+ proc = SingleScan(actScan);
+ if (state.Equals(optimState.cancelRequest)) { state = optimState.idle; return; }
+ pt = maximum(proc); if (!Double.IsNaN(pt.X)) crsMaxProc.AxisValue = pt.X;
+ if (bcbPause.Value) { state = optimState.paused; return; }
+ OnParamSet(new OptimEventArgs(actScan.sParam, pt.X, "optimized"));
+ log("param/max obj.function = " + pt.X.ToString("G5") + " / " + pt.Y.ToString("G5"), false);
+ optims.Add(new Tuple(actScan.sParam, pt.X, pt.Y));
+
+ Optimize(null, null, null); // recursive till state == optimState.cancelRequest
+ }
+ else
+ {
+ if ((bool)start)
+ {
+ bcbPause.Value = false;
+ state = optimState.running;
+ scans = new List();
+ foreach (baseMMscan mms in _scans)
+ scans.Add(new baseMMscan(mms.getAsString()));
+ optims.Clear(); graphProc.Data[1] = null;
+ Optimize(null, null, null);
+ }
+ else state = optimState.cancelRequest;
+ }
+ }
+ #endregion Common
+
+ List raw, proc;
+ public List SingleScan(baseMMscan scan)
+ {
+ raw = new List();
+ OnParamSet(new OptimEventArgs(scan.sParam, scan.sFrom, "scanning..."));
+ scanXaxis.Range = new Range(scan.sFrom, scan.sTo);
+
+ double r, d = scan.sFrom;
+ while ((d < scan.sTo * 1.0001) && !state.Equals(optimState.cancelRequest))
+ {
+ r = OnTakeAShot(new OptimEventArgs(scan.sParam, d, ""));
+ raw.Add(new Point(d, r)); graphScan.Data[0] = raw;
+ //double eps = Math.Abs(prm.sTo - prm.sFrom) * 0.0001; bool bb = Utils.InRange(d, prm.sFrom * 0.999, prm.sTo * 1.0001);
+ d += scan.sBy;
+ }
+ OnParamSet(new OptimEventArgs(scan.sParam, scan.sFrom, "scanning..."));
+ var pr = SGfilter(raw);
+ if (pr.Count.Equals(0)) { log("Err: Savitzky-Gloay filter problem", false); return raw; }
+ procXaxis.Range = new Range(pr[0].X, pr[pr.Count-1].X);
+ graphProc.Data[1] = pr; Utils.DoEvents();
+
+ return pr;
+ }
+ private Point maximum(List ps)
+ {
+ Point pt = new Point(Double.NaN, -1e6);
+ foreach (Point pn in ps)
+ {
+ if (pn.Y > pt.Y) pt = new Point(pn.X,pn.Y);
+ }
+ return pt;
+ }
+ // filters MS-NI
+ // https://zone.ni.com/reference/en-XX/help/372636F-01/mstudiowebhelp/html/eedecfb6/
+ public List SGfilter(List ps)
+ {
+ List r = new List();
+ DataStack ds = new DataStack(); ds.AddRange(ps);
+ if (numSGdegree.Value > (2 * numSGframe.Value +1)) { log("Err: increase Sidepoints", false); return r; }
+ if (ds.Count==0) { log("Err: No data points to S-G filter", false); return r; }
+ if (ds.Count < (2 * numSGframe.Value + 1)) { log("Err: Too few data points to S-G filter", false); return r; }
+ double[] ra = SavitzkyGolay.Filter(ds.pointYs(), numSGdegree.Value, numSGframe.Value);
+ if (ra.Length != ps.Count) { log("Err: vector sizes mismatch", false); return r; }
+ for (int i = 0; i < ps.Count; i++)
+ r.Add(new Point(ps[i].X, ra[i]));
+ return r;
+ }
+ private void numSGdegree_ValueChanged(object sender, ValueChangedEventArgs e)
+ {
+ if (Utils.isNull(bcbPause)) return;
+ if (!state.Equals(optimState.paused)) return;
+ proc = SGfilter(raw);
+ if (proc.Count.Equals(0)) return;
+ procXaxis.Range = new Range(proc[0].X, proc[proc.Count-1].X);
+ graphProc.Data[1] = proc; Utils.DoEvents();
+ Point pt = maximum(proc); crsMaxProc.AxisValue = pt.X;
+ }
+
+ private void bcbPause_Click(object sender, RoutedEventArgs e)
+ {
+ bcbPause.Value = !bcbPause.Value;
+ if (!bcbPause.Value && state.Equals(optimState.paused))
+ {
+ state = optimState.running;
+ Point pt = maximum(proc); if (!Double.IsNaN(pt.X)) crsMaxProc.AxisValue = pt.X;
+ OnParamSet(new OptimEventArgs(actScan.sParam, pt.X, "optimized"));
+ log("param/max obj.function = " + pt.X.ToString("G5") + " / " + pt.Y.ToString("G5"), false);
+ optims.Add(new Tuple(actScan.sParam, pt.X, pt.Y));
+
+ Optimize(null, null, null);
+ }
+ }
+
+ }
+}
diff --git a/Axel-hub/Axel-hub/PanelsUC/OptimSimplexUC.xaml b/Axel-hub/Axel-hub/PanelsUC/OptimSimplexUC.xaml
new file mode 100644
index 00000000..46411d34
--- /dev/null
+++ b/Axel-hub/Axel-hub/PanelsUC/OptimSimplexUC.xaml
@@ -0,0 +1,75 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/Axel-hub/Axel-hub/PanelsUC/OptimSimplexUC.xaml.cs b/Axel-hub/Axel-hub/PanelsUC/OptimSimplexUC.xaml.cs
new file mode 100644
index 00000000..b9fc21a8
--- /dev/null
+++ b/Axel-hub/Axel-hub/PanelsUC/OptimSimplexUC.xaml.cs
@@ -0,0 +1,244 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+using System.Windows;
+using System.Windows.Controls;
+using System.Windows.Data;
+using System.Windows.Documents;
+using System.Windows.Input;
+using System.Windows.Media;
+using System.Windows.Media.Imaging;
+using System.Windows.Navigation;
+using System.Windows.Shapes;
+using NumUtils.NelderMeadSimplex;
+using Cureos.Numerics.Optimizers;
+using NationalInstruments.Controls;
+using UtilsNS;
+
+namespace Axel_hub.PanelsUC
+{
+ ///
+ /// Interaction logic for OptimSimplexUC.xaml
+ ///
+ public partial class OptimSimplexUC : UserControl, IOptimization
+ {
+ private bool simulation = Utils.TheosComputer(); // local
+ enum OptimMethod { NedlerMead, Powell}
+ OptimMethod optimMethod
+ {
+ get
+ {
+ switch (cbOptimMethod.SelectedIndex)
+ {
+ case 1: return OptimMethod.Powell;
+ default: return OptimMethod.NedlerMead;
+ }
+ }
+ }
+ public optimState state { get; set; }
+ public List scans { get; set; }
+
+ SimplexConstant[] initVals;
+ ObjectiveFunctionDelegate NMobjFunction;
+ BobyqaObjectiveFunctionDelegate PowellObjFunction;
+ RegressionResult NMresult;
+ OptimizationSummary powellResult;
+
+ List iters, meta;
+ List> srsPrms;
+ ///
+ /// set parameters from scns limited to scns sFrom and sTo
+ /// and takes a shot; return signal
+ ///
+ ///
+ ///
+ private double setPrmsAndShot(List scns)
+ {
+ double[] vals = new double[scns.Count];
+ for (int i = 0; i < scns.Count; i++)
+ vals[i] = Utils.EnsureRange(scns[i].Value, scans[i].sFrom, scans[i].sTo);
+
+ OptimEventArgs ex;
+ for (int i = 1; i < scans.Count; i++)
+ {
+ ex = new OptimEventArgs(scns[i].sParam, vals[i], "scanning");
+ OnParamSet(ex);
+ }
+ ex = new OptimEventArgs(scans[0].sParam, vals[0], "scanning");
+ return OnTakeAShot(ex);
+ }
+
+ private double _NMobjFunction1(double[] prms)
+ {
+ if (prms.Length.Equals(0)) throw new Exception("No parameters to optimize");
+ if (!prms.Length.Equals(scans.Count)) { log("Error: parameters mismatch", false); return 0; }
+ double[] ps = new double[prms.Length];
+
+ for (int i = 0; i < prms.Length; i++)
+ ps[i] = Utils.EnsureRange(prms[i], scans[i].sFrom, scans[i].sTo);
+
+ OptimEventArgs ex; string ss = "iters: " + (iters.Count+1).ToString() + "; " + scans[0].sParam+"= " + ps[0].ToString("G6") + "; ";
+ for (int i = 1; i < scans.Count; i++)
+ {
+ ex = new OptimEventArgs(scans[i].sParam, ps[i], "scanning"); scans[i].Value = ps[i];
+ ss += scans[i].sParam + "= " + ps[i].ToString("G6") + "; ";
+ OnParamSet(ex);
+ }
+ ex = new OptimEventArgs(scans[0].sParam, ps[0], "scanning"); scans[0].Value = ps[0];
+ double rslt = OnTakeAShot(ex); // setPrmsAndShot(scans);
+ log(ss + " Obj.Value = "+rslt.ToString("G6"), true);
+ iters.Add(new Point(iters.Count, rslt)); graphScan.Data[0] = iters;
+ if (prms.Length.Equals(scans.Count))
+ for (int i = 0; i < prms.Length; i++)
+ {
+ srsPrms[i].Add(new Point(iters.Count, ps[i]));
+ graphProc.Data[i] = srsPrms[i];
+ }
+ return -rslt; // reverse for minimum value
+ }
+
+ private double _PowellObjectiveFunction(int n, double[] x) // n is ignored
+ {
+ return _NMobjFunction1(x);
+ }
+ public OptimSimplexUC()
+ {
+ InitializeComponent();
+ state = optimState.idle;
+ srsPrms = new List>() ;
+ }
+ #region Common
+ public Dictionary opts { get; set; }
+ public void Init(Dictionary _opts)
+ {
+ if (Utils.isNull(_opts)) return;
+ opts = new Dictionary(_opts);
+ if (opts.Count.Equals(0)) return;
+ NMobjFunction = new ObjectiveFunctionDelegate(_NMobjFunction1);
+ PowellObjFunction = new BobyqaObjectiveFunctionDelegate(_PowellObjectiveFunction);
+ if (opts.ContainsKey("optimMethod")) cbOptimMethod.SelectedIndex = Convert.ToInt32(opts["optimMethod"]);
+ if (opts.ContainsKey("numIters")) numIters.Value = Convert.ToInt32(opts["numIters"]);
+ iters = new List(); meta = new List();
+ NMresult = null; powellResult = null;
+ }
+ public void Final()
+ {
+ if (Utils.isNull(opts)) opts = new Dictionary();
+ opts["optimMethod"] = cbOptimMethod.SelectedIndex;
+ opts["numIters"] = numIters.Value;
+ opts["moduleIdx"] = 2;
+ }
+ #region Events
+ public event EventHandler ParamSetEvent;
+ protected virtual void OnParamSet(OptimEventArgs e)
+ {
+ ParamSetEvent?.Invoke(this, e);
+ }
+ public event CostEventHandler TakeAShotEvent;
+ protected virtual double OnTakeAShot(OptimEventArgs e)
+ {
+ if (Utils.isNull(TakeAShotEvent)) return Double.NaN;
+ return TakeAShotEvent.Invoke(this, e);
+ }
+ public event EventHandler LogEvent;
+ protected virtual void OnLog(OptimEventArgs e)
+ {
+ LogEvent?.Invoke(this, e);
+ }
+ public void log(string txt, bool detail)
+ {
+ OnLog(new OptimEventArgs("", detail ? 1 : -1, txt));
+ }
+ public event EventHandler EndOptimEvent;
+ protected virtual void OnEndOptim(OptimEventArgs e)
+ {
+ EndOptimEvent?.Invoke(this, e);
+ }
+ #endregion Events
+ public string report(bool lastIter)
+ {
+ string ss = "No results";
+ switch (optimMethod)
+ {
+ case OptimMethod.NedlerMead:
+ if (Utils.isNull(NMresult)) return ss;
+ if (state == optimState.cancelRequest)
+ ss = "termination: UserCancelation; iters: " + iters.Count.ToString() + "; obj.value: " + (-NMresult.ErrorValue).ToString("G6");
+ else
+ ss = "termination: " + NMresult.TerminationReason.ToString() + "; iters: " + NMresult.EvaluationCount.ToString() + "; obj.value: " + (-NMresult.ErrorValue).ToString("G6");
+ break;
+ case OptimMethod.Powell:
+ if (Utils.isNull(powellResult)) return ss;
+ if (state == optimState.cancelRequest)
+ ss = "termination: UserCancelation; iters: " + iters.Count.ToString() + "; obj.value: " + (-powellResult.F).ToString("G6");
+ else
+ ss = "termination: " + powellResult.Status.ToString() + "; iters: " + powellResult.Evals.ToString() + "; obj.value: " + (-powellResult.F).ToString("G6");
+ break;
+ }
+ return ss;
+ }
+
+ private void Clear()
+ {
+ iters.Clear(); srsPrms.Clear(); graphProc.Plots.Clear();
+ }
+ double scale = 5;
+ public void Optimize(bool? start, List _scans, Dictionary _opts)
+ {
+ scans = new List();
+ foreach (baseMMscan mms in _scans)
+ scans.Add(new baseMMscan(mms.getAsString()));
+ if ((bool)start)
+ {
+ state = optimState.running; Clear();
+ for (int i = 0; i < scans.Count; i++)
+ {
+ srsPrms.Add(new List()); graphProc.Plots.Add(new Plot(scans[i].sParam));
+ }
+ if (simulation) // for simulation -> equal int conditions
+ {
+ scans[0].Value = 1; scans[1].Value = -1; scans[2].Value = 1;
+ }
+
+ int sCount = scans.Count;
+ double cp = _opts.ContainsKey("ConvPrec") ? _opts["ConvPrec"] : 0.1; opts["ConvPrec"] = cp;
+ opts["numIters"] = numIters.Value;
+ switch (optimMethod)
+ {
+ case OptimMethod.NedlerMead:
+ initVals = new SimplexConstant[sCount];
+ for (int i = 0; i < sCount; i++)
+ initVals[i] = new SimplexConstant(scans[i].Value, 0.1 + scale*scans[i].Value);
+ NMresult = NelderMeadSimplex.Regress(initVals, cp, numIters.Value, NMobjFunction);
+ break;
+ case OptimMethod.Powell:
+ double[] xl = new double[sCount]; double[] xu = new double[sCount]; double[] x0 = new double[sCount];
+ for (int i = 0; i < sCount; i++)
+ {
+ xl[i] = scans[i].sFrom; xu[i] = scans[i].sTo; x0[i] = scans[i].Value;
+ }
+ var optimizer = new Bobyqa(sCount, PowellObjFunction, xl, xu);
+ optimizer.MaximumFunctionCalls = numIters.Value;
+ optimizer.TrustRegionRadiusStart = cp*1000; //optimizer.Logger = Console.Out;
+ optimizer.TrustRegionRadiusEnd = cp; //*1e-5
+ powellResult = optimizer.FindMinimum(x0);
+ break;
+ }
+ for (int i = 0; i e)
+ {
+ if (Utils.isNull(opts)) return;
+ opts["numIters"] = numIters.Value;
+ }
+
+ }
+}
diff --git a/Axel-hub/Axel-hub/PanelsUC/OptimUC.xaml b/Axel-hub/Axel-hub/PanelsUC/OptimUC.xaml
new file mode 100644
index 00000000..81d1baf2
--- /dev/null
+++ b/Axel-hub/Axel-hub/PanelsUC/OptimUC.xaml
@@ -0,0 +1,130 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/Axel-hub/Axel-hub/PanelsUC/OptimUC.xaml.cs b/Axel-hub/Axel-hub/PanelsUC/OptimUC.xaml.cs
new file mode 100644
index 00000000..cdc11673
--- /dev/null
+++ b/Axel-hub/Axel-hub/PanelsUC/OptimUC.xaml.cs
@@ -0,0 +1,450 @@
+using System;
+using System.Collections.Generic;
+using System.IO;
+using System.Linq;
+using System.Text;
+using System.Threading;
+using System.Threading.Tasks;
+using System.Windows;
+using System.Windows.Controls;
+using System.Windows.Data;
+using System.Windows.Documents;
+using System.Windows.Input;
+using System.Windows.Media;
+using System.Windows.Navigation;
+using System.Windows.Shapes;
+using System.Data;
+using System.ComponentModel;
+using System.Collections.ObjectModel;
+using Newtonsoft.Json;
+using Newtonsoft.Json.Linq;
+using dotMath;
+using UtilsNS;
+
+namespace Axel_hub.PanelsUC
+{
+ public delegate double CostEventHandler(object sender, EventArgs e);
+ public enum optimState { idle, running, cancelRequest, paused }
+ public interface IOptimization
+ {
+ Dictionary opts { get; set; }
+ void Init(Dictionary _opts);
+ void Final();
+ optimState state { get; set; }
+
+ event EventHandler ParamSetEvent;
+ event CostEventHandler TakeAShotEvent;
+ event EventHandler LogEvent;
+ event EventHandler EndOptimEvent;
+ void log(string txt, bool detail);
+ List scans { get; set; }
+ string report(bool lastIter);
+ void Optimize(bool? start, List _prms, Dictionary opts);
+ }
+
+ public class OptimEventArgs : EventArgs
+ {
+ public string Prm;
+ public double Value;
+ public string Text;
+ public OptimEventArgs(string _Prm, double _Value, string _Text)
+ {
+ Prm = _Prm; Value = _Value; Text = _Text;
+ }
+ }
+
+ public class EnabledMMscan : baseMMscan
+ {
+ public EnabledMMscan()
+ {
+ Enabled = true; // default
+ }
+ public EnabledMMscan(string inStr, bool _Enabled = true)
+ {
+ base.setAsString(inStr);
+ Enabled = _Enabled; // default
+ }
+ public bool Enabled { get; set; }
+ public EnabledMMscan clone()
+ {
+ return new EnabledMMscan(getAsString(), Enabled);
+ }
+ }
+ public class OptimSetting
+ {
+ public List sParams;
+ public string objFunc;
+ public Dictionary convOpts;
+ public List> procOpts;
+ public OptimSetting()
+ {
+ sParams = new List();
+ convOpts = new Dictionary();
+ procOpts = new List>();
+ }
+ }
+ ///
+ /// Interaction logic for simplexUC.xaml
+ ///
+ public partial class OptimUC_Class : UserControl
+ {
+ public bool simulation = Utils.TheosComputer();
+
+ Dictionary mmParams;
+ public OptimSetting os;
+ List optimProcs;
+ string SettingFile = "";
+ public OptimUC_Class()
+ {
+ InitializeComponent();
+ os = new OptimSetting();
+
+ optimProcs = new List();
+ optimProcs.Add(SeqScanUC);
+ optimProcs.Add(GridScanUC);
+ optimProcs.Add(OptSimplexUC);
+ foreach(IOptimization io in optimProcs)
+ {
+ io.LogEvent += new EventHandler(LogEvent);
+ io.ParamSetEvent += new EventHandler(ParamSetEvent);
+ io.TakeAShotEvent += new CostEventHandler(TakeAShotEvent);
+ io.EndOptimEvent += new EventHandler(EndOptimEvent);
+ }
+ if (simulation) Init(new Dictionary());
+ }
+ #region Settings
+ public void Init(Dictionary _mmParams)
+ {
+ if (Utils.isNull(_mmParams)) { log("Err: Cannot load parameters (check connection to MM2)."); IsEnabled = false; return; }
+ if (!simulation && !_mmParams.ContainsKey("params")) { log("Err: Cannot load parameters (params are missing)."); IsEnabled = false; return; }
+ IsEnabled = true; paramList = new ObservableCollection();
+ OpenSetting();
+ if (simulation)
+ {
+ mmParams = new Dictionary();
+ mmParams.Add("DetAttn", 1.11);
+ mmParams.Add("DetFreq", 2.22);
+ mmParams.Add("3DCoil", 3.33);
+
+ rowSimul.Height = new GridLength(30);
+ string[] pl = { "DetAttn", "DetFreq", "3DCoil" };
+ paramList = new ObservableCollection(pl);
+ }
+ else mmParams = ((JObject)_mmParams["params"]).ToObject>();
+
+ if (_mmParams.ContainsKey("scanPrms"))
+ {
+ string[] _paramList = ((JArray)_mmParams["scanPrms"]).ToObject();
+ paramList = new ObservableCollection(_paramList);
+ }
+
+ updateDataTable(os.sParams);
+ this.DataContext = this;
+ if (os.procOpts.Count.Equals(0)) return;
+ cbObjectiveFunc.Text = os.objFunc;
+ if (os.convOpts.ContainsKey("ConvPrec")) numConvPrec.Value = os.convOpts["ConvPrec"];
+
+ if (os.convOpts.ContainsKey("OptimMode")) tcOptimProcs.SelectedIndex = Convert.ToInt32(os.convOpts["OptimMode"]);
+ if (optimProcs.Count != os.procOpts.Count) { log("Err: some optimization options missing."); return; }
+ for (int i = 0; i < optimProcs.Count; i++)
+ optimProcs[i].Init(os.procOpts[i]);
+ }
+ public void Final()
+ {
+ if (!IsEnabled || SettingFile.Equals("")) return;
+ ClearStatus();
+ os.objFunc = cbObjectiveFunc.Text;
+ os.convOpts["ConvPrec"] = numConvPrec.Value;
+
+ os.convOpts["OptimMode"] = tcOptimProcs.SelectedIndex;
+ foreach (IOptimization io in optimProcs)
+ io.Final();
+ if (Utils.isNull(os.procOpts)) os.procOpts = new List>();
+ else os.procOpts.Clear();
+ for (int i = 0; i < optimProcs.Count; i++)
+ os.procOpts.Add(new Dictionary(optimProcs[i].opts));
+ SaveSetting();
+ }
+ public void OpenSetting(string fn = "")
+ {
+ if (fn.Equals("")) SettingFile = Utils.configPath + "Optim.CFG";
+ else SettingFile = fn;
+ if (!File.Exists(SettingFile)) { log("Err: No file <" + SettingFile + ">"); return; }
+ string json = File.ReadAllText(SettingFile);
+ os = JsonConvert.DeserializeObject(json);
+ }
+
+ public void SaveSetting(string fn = "")
+ {
+ if (fn.Equals(""))
+ fn = SettingFile.Equals("") ? Utils.configPath + "Optim.CFG" : SettingFile;
+ UpdateParamsFromTable();
+ string fileJson = JsonConvert.SerializeObject(os);
+ File.WriteAllText(fn, fileJson);
+ }
+ #endregion Setting
+
+ public int sParamIdx(string prmName) // idx from dt
+ {
+ var rslt = -1;
+ for (int i = 0; i < dt.Rows.Count; i++)
+ {
+ if (prmName.Equals(dt.Rows[i].ItemArray[1]))
+ {
+ rslt = i; break;
+ }
+ }
+ return rslt;
+ }
+
+ #region Events
+ protected void LogEvent(object sender, EventArgs e)
+ {
+ OptimEventArgs ex = (OptimEventArgs)e;
+ if (ex.Value > 0) log(ex.Text, Brushes.DarkBlue);
+ else
+ if (chkDetails.IsChecked.Value) log(ex.Text, Brushes.DarkGreen);
+ }
+
+ protected void log(string txt, SolidColorBrush clr = null)
+ {
+ if (txt.Substring(0, 3).Equals("Err")) { Utils.log(richLog, txt, Brushes.Red); return; } // errors always
+ if (chkLog.IsChecked.Value) Utils.log(richLog, txt, clr);
+ }
+ protected void ParamSetEvent(object sender, EventArgs e) // update visual (dt) and internal (os.sParams)
+ {
+ OptimEventArgs ex = (OptimEventArgs)e;
+ int j = sParamIdx(ex.Prm);
+ if (j == -1)
+ {
+ log("Err: No such parameter (" + ex.Prm + ")"); return;
+ }
+ var tr = dt.Rows[j].ItemArray;
+ if (!Double.IsNaN(ex.Value))
+ {
+ os.sParams[j].Value = ex.Value; tr[5] = ex.Value; //log("set value of " + ex.Prm + " at " + ex.Value.ToString("G4"));
+ mmParams[ex.Prm] = ex.Value;
+ }
+ if (!ex.Text.Equals(""))
+ {
+ os.sParams[j].comment = ex.Text; tr[6] = ex.Text; // for no text "---"
+ }
+ dt.Rows[j].ItemArray = tr;
+ //this.DataContext = this;
+ RaisePropertyChanged("dt");
+ }
+
+ public void ClearStatus()
+ {
+ foreach (EnabledMMscan prm in os.sParams)
+ {
+ ParamSetEvent(this, new OptimEventArgs(prm.sParam, Double.NaN, "---"));
+ }
+ }
+ public delegate MMexec SendMMexecHandler(MMexec mme);
+ public event SendMMexecHandler SendMMexecEvent;
+ protected virtual MMexec OnSendMMexec(MMexec mme)
+ {
+ return SendMMexecEvent?.Invoke(mme);
+ }
+ protected double TakeAShotEvent(object sender, EventArgs e) // e is OptimEventArgs
+ {
+ double d, rslt = Double.NaN; OptimEventArgs ex = (OptimEventArgs)e;
+ ParamSetEvent(sender, e); Thread.Sleep(100); Utils.DoEvents(); // update prm (here & in MM)
+
+ if (simulation)
+ {
+ switch (cbSimulFunction.SelectedIndex)
+ {
+ case 0: // quadratic
+ rslt = 0; int j = -1;
+ foreach (EnabledMMscan prm in os.sParams)
+ {
+ if (prm.Enabled)
+ {
+ d = prm.Value + 2 * j;
+ rslt += d * d; j++;
+ }
+ }
+ rslt = Utils.NextGaussian(150 - rslt, numGaussNoise.Value);
+ break;
+ }
+ }
+ else
+ {
+ MMexec mme = TakeAShotMM();
+ if (Utils.isNull(mme)) { log("Error: no replay from MM2."); return Double.NaN; }
+ Dictionary dct = MMDataConverter.AverageShotSegments(mme,true);
+ // script it
+ var compiler = new EquationCompiler(Utils.skimRem(cbObjectiveFunc.Text));
+ var vns = compiler.GetVariableNames();
+ foreach (string vn in vns)
+ {
+ if (!dct.ContainsKey(vn)) { log("Err: No variable <" + vn + "> in stats"); return Double.NaN; }
+ compiler.SetVariable(vn, dct[vn]);
+ }
+ rslt = compiler.Calculate();
+ }
+ if (chkDetails.IsChecked.Value) log("obj.function = " + rslt.ToString("G5")+" at "+ex.Prm+" = "+ex.Value.ToString("G5"), Brushes.Navy);
+ return rslt;
+ }
+
+ protected MMexec TakeAShotMM() // arg not used; params taken from os.sParams
+ {
+ MMexec mme = new MMexec("", "Axel-hub", "shoot"); //mme.prms[Param] = Value;
+ foreach(var os1 in os.sParams)
+ {
+ if (os1.Enabled)
+ mme.prms[os1.sParam] = os1.Value; // take pair from os
+ }
+ return OnSendMMexec(mme);
+ }
+ protected void EndOptimEvent(object sender, EventArgs e)
+ {
+ bcbOptimize.Value = false;
+ if (!Utils.isNull(e))
+ {
+ OptimEventArgs ex = (OptimEventArgs)e;
+ log("...and the optimization result is -> " + ex.Text, Brushes.Maroon);
+ }
+ }
+ #endregion Events
+
+ #region table stuff
+ private DataTable _dt;
+ public DataTable dt
+ {
+ get { return _dt; }
+ set
+ {
+ _dt = value;
+ RaisePropertyChanged("dt");
+ }
+ }
+
+ public ObservableCollection paramList { get; set; }
+
+ public event PropertyChangedEventHandler PropertyChanged;
+
+ public void RaisePropertyChanged(string propertyName)
+ {
+ PropertyChangedEventHandler handler = PropertyChanged;
+ if (handler != null)
+ {
+ handler(this, new PropertyChangedEventArgs(propertyName));
+ }
+ double h = topGrid.RowDefinitions[0].Height.Value + (dt.Rows.Count + 1) * dgParams.RowHeight + 10 + topGrid.RowDefinitions[2].Height.Value;
+ topRow.Height = new GridLength(h);
+ }
+
+ protected DataTable updateDataTable(List prms)
+ {
+ _dt = new DataTable();
+ _dt.Columns.Add("Enabled", typeof(bool));
+ _dt.Columns.Add("Parameter", typeof(string));
+ _dt.Columns.Add("From", typeof(double));
+ _dt.Columns.Add("To", typeof(double));
+ _dt.Columns.Add("By", typeof(double));
+ _dt.Columns.Add("Value", typeof(double));
+ _dt.Columns.Add("Status", typeof(string));
+
+ foreach (EnabledMMscan prm in prms)
+ {
+ _dt.Rows.Add(new object[] { prm.Enabled, prm.sParam, prm.sFrom, prm.sTo, prm.sBy, prm.Value, prm.comment });
+ }
+ RaisePropertyChanged("dt");
+ return _dt;
+ }
+
+ public bool UpdateParamsFromTable() // return validation check
+ {
+ DataView view = (DataView)dgParams.ItemsSource;
+ if (Utils.isNull(view)) return false;
+ DataTable dataTable = view.Table.Clone(); bool bb = true;
+ os.sParams.Clear(); EnabledMMscan mms;
+ foreach (DataRowView dataRowView in view)
+ {
+ DataRow dr = dataRowView.Row;
+ mms = new EnabledMMscan();
+ mms.Enabled = Convert.ToBoolean(dr.ItemArray[0]);
+ mms.sParam = Convert.ToString(dr.ItemArray[1]);
+ if (mms.sParam.Equals("")) { log("Err: Parameter name is missing"); bb = false; continue; }
+ mms.sFrom = Convert.ToDouble(dr.ItemArray[2]);
+ mms.sTo = Convert.ToDouble(dr.ItemArray[3]);
+ if (mms.sFrom > mms.sTo) { log("Err: Wrong order of limits"); bb = false; continue; }
+ mms.sBy = Convert.ToDouble(dr.ItemArray[4]);
+ int np = Convert.ToInt32((mms.sTo - mms.sFrom) / mms.sBy);
+ if (np < 2) { log("Err: Too few points -> "+np.ToString()); bb = false; continue; }
+ if (np > 1000) { log("Err: Too many (max=1000) points -> " + np.ToString()); bb = false; continue; }
+ mms.Value = Convert.ToDouble(dr.ItemArray[5]);
+ mms.comment = Convert.ToString(dr.ItemArray[6]);
+ os.sParams.Add(mms);
+ }
+ return bb;
+ }
+ private void btnAdd_Click(object sender, RoutedEventArgs e)
+ {
+ if (sender == btnAdd)
+ {
+ DataRow newRow = dt.NewRow();
+ // Insert code to fill the row with values. (optional)
+
+ // Add the row to the DataRowCollection.
+ dt.Rows.Add(newRow);
+ }
+ else
+ {
+ int idx = dgParams.SelectedIndex;
+ if (idx > -1) dt.Rows.RemoveAt(idx);
+ }
+ RaisePropertyChanged("dt");
+ }
+ private void btnUp_Click(object sender, RoutedEventArgs e)
+ {
+ if (dgParams.SelectedIndex == -1) { log("Err: No row selected"); return; }
+ int idx = dgParams.SelectedIndex;
+ int np = (sender == btnUp) ? idx - 1 : idx + 1;
+ if (!Utils.InRange(np, 0,dt.Rows.Count-1)) { log("Err: Moving out of range"); return; }
+ DataRow selectedRow = dt.Rows[idx];
+ DataRow newRow = dt.NewRow();
+ newRow.ItemArray = selectedRow.ItemArray; // copy data
+ dt.Rows.Remove(selectedRow);
+ dt.Rows.InsertAt(newRow, np);
+ }
+ #endregion table stuff
+ private void bcbOptimize_Click(object sender, RoutedEventArgs e)
+ {
+ if (Utils.isNull(cbObjectiveFunc.Text)) { log("Err: No objective function"); return; }
+ if (cbObjectiveFunc.Text.Equals("")) { log("Err: No objective function"); return; }
+ bool oldOptimizeValue = bcbOptimize.Value;
+ bcbOptimize.Value = !bcbOptimize.Value;
+ List sPrms = new List(); var opts = new Dictionary();
+ if (bcbOptimize.Value)
+ {
+ if (!UpdateParamsFromTable()) { bcbOptimize.Value = false; return; }
+ ClearStatus();
+ foreach (EnabledMMscan mms in os.sParams)
+ {
+ if (mms.Enabled) sPrms.Add(new baseMMscan(mms.getAsString()));
+ }
+ opts["ConvPrec"] = numConvPrec.Value;
+ }
+ int idx = tcOptimProcs.SelectedIndex;
+ optimProcs[idx].Optimize(bcbOptimize.Value, sPrms, opts);
+ if (oldOptimizeValue && !bcbOptimize.Value && optimProcs[idx].state.Equals(optimState.cancelRequest))
+ {
+ log("User interruption !!!", Brushes.Tomato);
+ }
+ }
+ private void btnClear_Click(object sender, RoutedEventArgs e)
+ {
+ richLog.Document.Blocks.Clear();
+ }
+
+ private void dgParams_SelectionChanged(object sender, SelectionChangedEventArgs e)
+ {
+ btnDel.IsEnabled = (dgParams.SelectedIndex > -1);
+ btnDown.IsEnabled = btnDel.IsEnabled; btnUp.IsEnabled = btnDel.IsEnabled;
+ }
+ }
+}
diff --git a/Axel-hub/Axel-hub/PanelsUC/iters.vs.scale-0.5.png b/Axel-hub/Axel-hub/PanelsUC/iters.vs.scale-0.5.png
new file mode 100644
index 00000000..1bca27f4
Binary files /dev/null and b/Axel-hub/Axel-hub/PanelsUC/iters.vs.scale-0.5.png differ
diff --git a/Axel-hub/Axel-hub/PanelsUC/iters.vs.scale.png b/Axel-hub/Axel-hub/PanelsUC/iters.vs.scale.png
new file mode 100644
index 00000000..4b8167aa
Binary files /dev/null and b/Axel-hub/Axel-hub/PanelsUC/iters.vs.scale.png differ
diff --git a/Axel-hub/Axel-hub/signalUC.xaml b/Axel-hub/Axel-hub/PanelsUC/signalUC.xaml
similarity index 73%
rename from Axel-hub/Axel-hub/signalUC.xaml
rename to Axel-hub/Axel-hub/PanelsUC/signalUC.xaml
index 335e5478..5aeeec39 100644
--- a/Axel-hub/Axel-hub/signalUC.xaml
+++ b/Axel-hub/Axel-hub/PanelsUC/signalUC.xaml
@@ -9,7 +9,7 @@
-
+
@@ -22,11 +22,14 @@
-
+
+
+
-
+
+
@@ -70,6 +73,19 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
@@ -81,7 +97,7 @@
-
+
@@ -103,18 +119,21 @@
-
-
+
+
-
-
-
+
+
+
+
+
+
diff --git a/Axel-hub/Axel-hub/signalUC.xaml.cs b/Axel-hub/Axel-hub/PanelsUC/signalUC.xaml.cs
similarity index 55%
rename from Axel-hub/Axel-hub/signalUC.xaml.cs
rename to Axel-hub/Axel-hub/PanelsUC/signalUC.xaml.cs
index e98f3ff0..ee72eaf7 100644
--- a/Axel-hub/Axel-hub/signalUC.xaml.cs
+++ b/Axel-hub/Axel-hub/PanelsUC/signalUC.xaml.cs
@@ -1,5 +1,4 @@
-using NationalInstruments.Net;
-using NationalInstruments.Analysis;
+using NationalInstruments.Analysis;
using NationalInstruments.Analysis.Conversion;
using NationalInstruments.Analysis.Dsp;
using NationalInstruments.Analysis.Dsp.Filters;
@@ -40,6 +39,12 @@
namespace Axel_hub
{
+ public enum inArrays
+ {
+ N1, N2, RN1, RN2, NTot, B2, BTot, Bg, Interferometer
+ }
+ enum Animals { Dog, Cat }
+ enum AnimalsExt { Dog = Animals.Dog, Cat = Animals.Cat, MyOther } // consider for raw and proc inArrays
///
/// Interaction logic for signalUC.xaml
/// visualize the raw signal and signal trends {"N1", "N2", "RN1", "RN2", "NTot", "B2", "Btot"}
@@ -47,12 +52,16 @@ namespace Axel_hub
///
public partial class signalClass : UserControl
{
- private const int dd = 1000; // default depth
+ private const int dd = 5000; // default depth
+ private const bool writeHeadersFlag = false;
DataStack stackN1 = new DataStack(dd);
DataStack stackN2 = new DataStack(dd);
DataStack stackRN1 = new DataStack(dd);
DataStack stackRN2 = new DataStack(dd);
DataStack stackNtot = new DataStack(dd);
+ DataStack stackB2 = new DataStack(dd);
+ DataStack stackBtot = new DataStack(dd);
+
DataStack stackNtot_std = new DataStack(dd);
DataStack stackN2_std = new DataStack(dd);
DataStack stackN2_int = new DataStack(dd);
@@ -65,7 +74,7 @@ public partial class signalClass : UserControl
private int runID;
public MMscan lastScan;
- public DictFileLogger logger;
+ public DictFileLogger logger, SDlog; public FileLogger rawDataLog, Aux1DataLog, Aux2DataLog;
private double NsYmin = 10, NsYmax = -10, signalYmin = 10, signalYmax = -10;
///
@@ -73,11 +82,12 @@ public partial class signalClass : UserControl
///
public signalClass()
{
- InitializeComponent();
+ InitializeComponent();
}
GeneralOptions genOptions = null;
Modes genModes = null;
+ AxelMems axelMems = null;
public string prefix { get; private set; }
///
/// Initialization with options from Options dialog and modes from last used ones
@@ -85,26 +95,44 @@ public signalClass()
/// from Options dialog
/// last used ones
/// X/Y
- public void InitOptions(ref GeneralOptions _genOptions, ref Modes _genModes, string _prefix = "")
+ public void Init(ref GeneralOptions _genOptions, ref Modes _genModes, ref AxelMems _axelMems, string _prefix = "")
{
- genOptions = _genOptions; genModes = _genModes; prefix = _prefix;
- logger = new DictFileLogger(new string[]{ "XAxis", "N1", "N2", "RN1", "RN2", "NTot", "B2", "Btot" }, prefix);
+ genOptions = _genOptions; genModes = _genModes; axelMems = _axelMems; prefix = _prefix;
}
-
+ string timeName;
///
/// Call when new series starts
///
///
- public void Init(MMexec GrpMme) //
+ public void Init(MMexec GrpMme, MMexec mm2status) //
{
grpMme = GrpMme.Clone();
+ if (!Utils.isNull(mm2status))
+ {
+ grpMme.prms["params"] = mm2status.prms["params"]; grpMme.prms["steps"] = mm2status.prms["steps"];
+ }
+
scanMode = grpMme.cmd.Equals("scan");
repeatMode = grpMme.cmd.Equals("repeat");
-
+
+ timeName = Utils.dataPath + Utils.timeName();
+ logger = new DictFileLogger(new string[] {"Index", "XAxis", "N1", "N2", "RN1", "RN2", "NTot", "B2", "BTot", "Bg", "Interferometer" }, prefix, timeName);
+ logger.Enabled = false;
logger.setMMexecAsHeader(grpMme.Clone());
logger.defaultExt = ".ahs";
logger.Enabled = genModes.SignalLog;
- writeHeaders(logger);
+ writeHeaders(logger);
+
+ SDlog = new DictFileLogger(new string[] { "XAxis","N2_std","NTot_std" ,"B2_std","BTot_std", "Bg_std" }, prefix, timeName);
+ SDlog.Enabled = false;
+ SDlog.setMMexecAsHeader(grpMme.Clone());
+ SDlog.defaultExt = ".asd";
+ SDlog.Enabled = chkSDSave.IsChecked.Value;
+
+ rawDataLog = new FileLogger(prefix, timeName);
+ rawDataLog.Enabled = false;
+ rawDataLog.defaultExt = ".rws";
+ rawDataLog.Enabled = chkRawSave.IsChecked.Value;
}
///
@@ -113,7 +141,8 @@ public void Init(MMexec GrpMme) //
///
private void writeHeaders(FileLogger logg)
{
- FileLogger fl = new FileLogger(logg.prefix, System.IO.Path.ChangeExtension(logg.LogFilename,".ahh"));
+ if (!writeHeadersFlag) return;
+ FileLogger fl = new FileLogger(logg.prefix, System.IO.Path.ChangeExtension(logg.LogFilename, ".ahh"));
fl.header = logg.header;
fl.subheaders.AddRange(logg.subheaders);
fl.Enabled = logg.Enabled;
@@ -127,9 +156,10 @@ public void Clear()
{
stackN1.Clear(); stackN2.Clear();
stackRN1.Clear(); stackRN2.Clear();
+ stackB2.Clear(); stackBtot.Clear();
stackNtot.Clear(); stackNtot_std.Clear();
stackN2_std.Clear(); stackN2_int.Clear();
- graphNs.Data[0] = stackN1; graphNs.Data[1] = stackN2;
+ graphNs.Data[0] = stackN1; graphNs.Data[1] = stackN2;
graphNs.Data[2] = stackRN1; graphNs.Data[3] = stackRN2;
graphNs.Data[4] = stackNtot;
NsYmin = 10; NsYmax = -10;
@@ -141,76 +171,39 @@ public void Clear()
lboxNB.Items.Clear();
}
- ///
- /// Import a shot with unpacked arrays and update signal/trends
- ///
- /// shot with unpacked arrays
- /// Last horiz coordinate
- /// Asymetry calculated
- public void Update(MMexec mme, out double currX, out double A) //
- {
- runID = Convert.ToInt32(mme.prms["runID"]);
- Dictionary avgs = MMDataConverter.AverageShotSegments(mme, genOptions.intN2, chkStdDev.IsChecked.Value);
- if (Showing)
- {
- lboxNB.Items.Clear();
- foreach (var item in avgs)
- {
- ListBoxItem lbi = new ListBoxItem();
- lbi.Content = string.Format("{0}: {1:" + genOptions.SignalTablePrec + "}", item.Key, item.Value);
- if (item.Key.IndexOf("_std") > 0) lbi.Foreground = Brushes.Green;
- else lbi.Foreground = Brushes.Blue;
- lboxNB.Items.Add(lbi);
- }
- }
- double asymmetry = MMDataConverter.Asymmetry(avgs, chkBackgroung.IsChecked.Value, chkDarkcurrent.IsChecked.Value);
- //
- // signal chart (rigth)
+ private void ShowOscilo(MMexec mme) // oscilo-signal chart (rigth)
+ {
if (Utils.isNull(signalDataStack)) signalDataStack = new DataStack();
else signalDataStack.Clear();
if (Utils.isNull(backgroundDataStack)) backgroundDataStack = new DataStack();
else backgroundDataStack.Clear();
- int xVal = 0; double N2 = avgs["N2"];
- if (Showing)
- foreach (double yVal in (double[])mme.prms["N2"])
- {
- signalDataStack.Add(new Point(xVal, yVal));
- xVal++;
- }
- double NTot = avgs["NTot"];
- if (Showing)
- foreach (double yVal in (double[])mme.prms["NTot"])
- {
- signalDataStack.Add(new Point(xVal, yVal));
- xVal++;
- }
-
- xVal = 0; double B2 = avgs["B2"];
- if (Showing)
- foreach (double yVal in (double[])mme.prms["B2"])
- {
- backgroundDataStack.Add(new Point(xVal, yVal));
- xVal++;
- }
- double BTot = avgs["BTot"];
- if (Showing)
- foreach (double yVal in (double[])mme.prms["BTot"])
- {
- backgroundDataStack.Add(new Point(xVal, yVal));
- xVal++;
- }
- if (Showing) // skip the show
+ int xVal = 0;
+ foreach (double yVal in (double[])mme.prms["N2"])
{
- /* Application.Current.Dispatcher.BeginInvoke(DispatcherPriority.Background,
- new Action(() =>
- {*/
- graphSignal.Data[0] = signalDataStack.Compress(genOptions.RawSignalAvg);
- graphSignal.Data[1] = backgroundDataStack.Compress(genOptions.RawSignalAvg);
- // }));
+ signalDataStack.Add(new Point(xVal, yVal));
+ xVal++;
}
- // readjust Y axis
- if (chkAutoScaleMiddle.IsChecked.Value && Showing) // signal auto-Y-limits
+ foreach (double yVal in (double[])mme.prms["NTot"])
+ {
+ signalDataStack.Add(new Point(xVal, yVal));
+ xVal++;
+ }
+ xVal = 0;
+ foreach (double yVal in (double[])mme.prms["B2"])
+ {
+ backgroundDataStack.Add(new Point(xVal, yVal));
+ xVal++;
+ }
+ foreach (double yVal in (double[])mme.prms["BTot"])
+ {
+ backgroundDataStack.Add(new Point(xVal, yVal));
+ xVal++;
+ }
+ graphSignal.Data[0] = signalDataStack.Compress(genOptions.RawSignalAvg);
+ graphSignal.Data[1] = backgroundDataStack.Compress(genOptions.RawSignalAvg);
+
+ if (chkAutoScaleMiddle.IsChecked.Value) // signal auto-Y-limits
{
double d = Math.Min(signalDataStack.pointYs().Min(), backgroundDataStack.pointYs().Min());
d = Math.Floor(10 * d) / 10;
@@ -218,55 +211,57 @@ public void Update(MMexec mme, out double currX, out double A) //
d = Math.Max(signalDataStack.pointYs().Max(), backgroundDataStack.pointYs().Max());
d = Math.Ceiling(10 * d) / 10;
signalYmax = Math.Max(d, signalYmax);
- d = (signalYmax - signalYmin) * 0.02;
+ d = signalYmax == signalYmin ? 0.5 : (signalYmax - signalYmin) * 0.02;
signalYaxis.Range = new Range(signalYmin - d, signalYmax + d);
}
- //
- // Ns chart (left)
+ }
- // corrected with background
- double cNtot = NTot - BTot; double cN2 = N2 - B2; double cN1 = cNtot - cN2;
- //double A = cN2 / cNtot;//(N2 - B2) / (NTot - BTot); //
- A = 1 - 2 * (N2 - B2) / (NTot - BTot);
- currX = 1; double cN2_std = 1, cNtot_std = 1;
- if (chkStdDev.IsChecked.Value)
- {
- cN2_std = Math.Sqrt(Math.Pow(avgs["N2_std"], 2) + Math.Pow(avgs["B2_std"], 2));
- cNtot_std = Math.Sqrt(Math.Pow(avgs["NTot_std"], 2) + Math.Pow(avgs["BTot_std"], 2));
- }
- double cinitN2 = avgs["initN2"] - B2;
-
- if (scanMode) currX = lastScan.sFrom + runID * lastScan.sBy;
- if (repeatMode) currX = runID;
-
- stackN1.Add(new Point(currX, cN1)); stackN2.Add(new Point(currX, cN2)); stackNtot.Add(new Point(currX, cNtot));
- stackRN1.Add(new Point(currX, cN1 / cNtot)); stackRN2.Add(new Point(currX, cN2 / cNtot));
- if (chkStdDev.IsChecked.Value)
- {
- stackN2_std.Add(new Point(currX, cN2_std)); stackNtot_std.Add(new Point(currX, cNtot_std));
- }
- stackN2_int.Add(new Point(currX, cinitN2));
+ private void ShowNs(double currX, Dictionary avgs)
+ {
+ Dictionary cavgs = MMDataConverter.SignalCorrected(avgs, chkDarkcurrent.IsChecked.Value);
+
+ avgs["Index"] = runID; avgs["XAxis"] = currX; if (!Utils.isNull(SDlog)) SDlog.dictLog(avgs, genOptions.SaveFilePrec);
+ //stackN1.Add(new Point(currX, cN1)); stackN2.Add(new Point(currX, cN2)); stackNtot.Add(new Point(currX, cNtot));
+ //stackRN1.Add(new Point(currX, cN1 / cNtot)); stackRN2.Add(new Point(currX, cN2 / cNtot));
+
+ stackN1.Add(new Point(currX, cavgs["N1"])); stackN2.Add(new Point(currX, cavgs["N2"])); stackNtot.Add(new Point(currX, cavgs["NTot"]));
+ stackRN1.Add(new Point(currX, cavgs["RN1"])); stackRN2.Add(new Point(currX, cavgs["RN2"]));
+ stackB2.Add(new Point(currX, cavgs["B2"])); stackBtot.Add(new Point(currX, cavgs["BTot"]));
if (chkAutoScaleMiddle.IsChecked.Value) // Ns auto-Y-limits
{
List ld = new List();
- ld.Add(stackN1.pointYs().Min()); ld.Add(stackN2.pointYs().Min()); ld.Add(stackNtot.pointYs().Min());
- ld.Add(stackRN1.pointYs().Min()); ld.Add(stackRN2.pointYs().Min());
+
+ if (chkN1.IsChecked.Value) ld.Add(stackN1.pointYs().Min());
+ if (chkN2.IsChecked.Value) ld.Add(stackN2.pointYs().Min());
+ if (chkRN1.IsChecked.Value) ld.Add(stackRN1.pointYs().Min());
+ if (chkRN2.IsChecked.Value) ld.Add(stackRN2.pointYs().Min());
+ if (chkNtot.IsChecked.Value) ld.Add(stackNtot.pointYs().Min());
+ if (chkB2.IsChecked.Value) ld.Add(stackB2.pointYs().Min());
+ if (chkBtot.IsChecked.Value) ld.Add(stackBtot.pointYs().Min());
double d = ld.Min();
d = Math.Floor(10 * d) / 10;
NsYmin = Math.Min(d, NsYmin);
+
ld.Clear();
- ld.Add(stackN1.pointYs().Max()); ld.Add(stackN2.pointYs().Max()); ld.Add(stackNtot.pointYs().Max());
- ld.Add(stackRN1.pointYs().Max()); ld.Add(stackRN2.pointYs().Max());
+ if (chkN1.IsChecked.Value) ld.Add(stackN1.pointYs().Max());
+ if (chkN2.IsChecked.Value) ld.Add(stackN2.pointYs().Max());
+ if (chkRN1.IsChecked.Value) ld.Add(stackRN1.pointYs().Max());
+ if (chkRN2.IsChecked.Value) ld.Add(stackRN2.pointYs().Max());
+ if (chkNtot.IsChecked.Value) ld.Add(stackNtot.pointYs().Max());
+ if (chkB2.IsChecked.Value) ld.Add(stackB2.pointYs().Max());
+ if (chkBtot.IsChecked.Value) ld.Add(stackBtot.pointYs().Max());
d = ld.Max();
d = Math.Ceiling(10 * d) / 10;
NsYmax = Math.Max(d, NsYmax);
+
d = (NsYmax - NsYmin) * 0.02;
- NsYaxis.Range = new Range(NsYmin - d, NsYmax + d);
+ if (!Double.IsNaN(NsYmin) && !Double.IsNaN(NsYmax) && !Double.IsNaN(d))
+ NsYaxis.Range = new Range(NsYmin - d, NsYmax + d);
}
if (Showing)
{
- Application.Current.Dispatcher.BeginInvoke( DispatcherPriority.Background,
+ Application.Current.Dispatcher.BeginInvoke(DispatcherPriority.Background,
new Action(() =>
{
graphNs.Data[0] = stackN1.Portion(genOptions.TrendSignalLen);
@@ -274,18 +269,108 @@ public void Update(MMexec mme, out double currX, out double A) //
graphNs.Data[2] = stackRN1.Portion(genOptions.TrendSignalLen);
graphNs.Data[3] = stackRN2.Portion(genOptions.TrendSignalLen);
graphNs.Data[4] = stackNtot.Portion(genOptions.TrendSignalLen);
+ graphNs.Data[5] = stackB2.Portion(genOptions.TrendSignalLen);
+ graphNs.Data[6] = stackBtot.Portion(genOptions.TrendSignalLen);
}));
}
- if (stackN1.Count > 0)
+ if (stackN2.Count > 0)
{
- Dictionary row = new Dictionary();
- row["XAxis"] = currX; row["N1"] = stackN1.Last.Y; row["N2"] = stackN2.Last.Y;
- row["RN1"] = stackRN1.Last.Y; row["RN2"] = stackRN2.Last.Y; row["NTot"] = stackNtot.Last.Y;
- row["B2"] = B2; row["Btot"] = BTot;
- logger.dictLog(row,genOptions.SaveFilePrec);
+ logger.dictLog(avgs, genOptions.SaveFilePrec);
}
}
+ ///
+ /// Import a shot with unpacked arrays and update signal/trends
+ ///
+ /// shot with unpacked arrays
+ /// Last horiz coordinate
+ /// Asymetry calculated
+ public void NextShot(MMexec mme, out double currX, out double A, out double mems_V) //
+ {
+ if (!Utils.isNull(rawDataLog)) rawDataLog.log(JsonConvert.SerializeObject(mme));
+ runID = Convert.ToInt32(mme.prms["runID"]);
+ Dictionary avgs = MMDataConverter.AverageShotSegments(mme, chkStdDev.IsChecked.Value);
+ if (avgs.ContainsKey(inArrays.Interferometer.ToString())) mems_V = avgs[inArrays.Interferometer.ToString()];
+ else mems_V = Double.NaN;
+ if (Showing)
+ {
+ lboxNB.Items.Clear();
+ foreach (var item in avgs)
+ {
+ ListBoxItem lbi = new ListBoxItem();
+ lbi.Content = string.Format("{0}: {1:" + genOptions.SignalTablePrec + "}", item.Key, item.Value);
+ if (item.Key.IndexOf("_std") > 0) lbi.Foreground = Brushes.Green;
+ else lbi.Foreground = Brushes.Blue;
+ lboxNB.Items.Add(lbi);
+ }
+ }
+ double asymmetry = MMDataConverter.Asymmetry(avgs, false, chkDarkcurrent.IsChecked.Value);
+
+ double N2 = avgs[inArrays.N2.ToString()]; double NTot = avgs[inArrays.NTot.ToString()];
+ double B2 = avgs[inArrays.B2.ToString()]; double BTot = avgs[inArrays.BTot.ToString()];
+ if (Showing) ShowOscilo(mme); // right side
+
+ // corrected with background
+ //double cNtot = NTot - BTot; double cN2 = N2 - B2; double cN1 = cNtot - cN2; double N1 = NTot - N2;
+ //double A = cN2 / cNtot;//(N2 - B2) / (NTot - BTot); //
+ A = 1 - 2 * (N2 - B2) / (NTot - BTot);
+ currX = 1; //double cN2_std = 1, cNtot_std = 1;
+
+ /*if (chkStdDev.IsChecked.Value)
+ {
+ cN2_std = Math.Sqrt(Math.Pow(avgs["N2_std"], 2) + Math.Pow(avgs["B2_std"], 2));
+ cNtot_std = Math.Sqrt(Math.Pow(avgs["NTot_std"], 2) + Math.Pow(avgs["BTot_std"], 2));
+ }*/
+ double cinitN2 = 0;
+ if (avgs.ContainsKey("initN2")) cinitN2 = avgs["initN2"] - B2;
+
+ if (scanMode) currX = lastScan.sFrom + runID * lastScan.sBy;
+ if (repeatMode)
+ { // remote time; if not - the default is axelChart.axelMems.TimeElapsed() from nextMeasure method
+ if (mme.prms.ContainsKey("iTime")) // remote time
+ {
+ if (!theTime.isTimeRunning) theTime.startTime();
+ if (grpMme.getWhichSender().Equals(MMexec.SenderType.AxelHub)) // jumbo
+ {
+ double sh = 0; if (mme.prms.ContainsKey("bTime") && mme.prms.ContainsKey("samplingRate")) sh = Convert.ToDouble(mme.prms["bTime"]) / Convert.ToDouble(mme.prms["samplingRate"]);
+ currX = theTime.relativeTime(((long)Convert.ToInt64(mme.prms["iTime"]))) + sh; // in sec
+ }
+ else // simple repeat
+ {
+ currX = theTime.relativeTime(((long)Convert.ToInt64(mme.prms["iTime"]))); // in sec
+ }
+ double samplingRate = mme.prms.ContainsKey("samplingRate") ? Convert.ToDouble(mme.prms["samplingRate"]) : 200000;
+ if (mme.prms.ContainsKey("Aux1"))
+ {
+ if (runID.Equals(0))
+ {
+ Aux1DataLog = new FileLogger("1", timeName);
+ Aux1DataLog.Enabled = false;
+ Aux1DataLog.defaultExt = ".aux";
+ Aux1DataLog.Enabled = true;
+ }
+ Aux1DataLog.log(MMDataConverter.aux2json(runID, currX, 1/ samplingRate, (double[])mme.prms["Aux1"], genOptions.LogFilePrec));
+ mme.prms.Remove("Aux1");
+ }
+ if (mme.prms.ContainsKey("Aux2"))
+ {
+ if (runID.Equals(0))
+ {
+ Aux2DataLog = new FileLogger("2", timeName);
+ Aux2DataLog.Enabled = false;
+ Aux2DataLog.defaultExt = ".aux";
+ Aux2DataLog.Enabled = true;
+ }
+ Aux2DataLog.log(MMDataConverter.aux2json(runID, currX, 1/ samplingRate, (double[])mme.prms["Aux2"], genOptions.LogFilePrec));
+ mme.prms.Remove("Aux2");
+ }
+
+ }
+ else currX = runID;
+ }
+ ShowNs(currX, avgs); // left side
+ }
+
///
/// Open table text file with trends {"N1", "N2", "RN1", "RN2", "NTot"}
///
@@ -296,8 +381,8 @@ public bool OpenSignal(string fn, out string rem)
{
rem = ""; Clear();
if (!File.Exists(fn)) throw new Exception("File <" + fn + "> does not exist.");
- DictFileReader dlog = new DictFileReader(fn, new string[] { "XAxis", "N1", "N2", "RN1", "RN2", "NTot" });
- if(dlog.header.StartsWith("{")) grpMme = JsonConvert.DeserializeObject(dlog.header);
+ DictFileReader dlog = new DictFileReader(fn, new string[] { "XAxis", "N1", "N2", "RN1", "RN2", "NTot", "B2", "BTot", "Bg" });
+ if (dlog.header.StartsWith("{")) grpMme = JsonConvert.DeserializeObject(dlog.header);
if (dlog.subheaders.Count > 0)
{
string sh = dlog.subheaders[0];
@@ -314,9 +399,12 @@ public bool OpenSignal(string fn, out string rem)
if (row.ContainsKey("RN1")) stackRN1.Add(new Point(x, row["RN1"]));
if (row.ContainsKey("RN2")) stackRN2.Add(new Point(x, row["RN2"]));
if (row.ContainsKey("Ntot")) stackNtot.Add(new Point(x, row["Ntot"]));
+ if (row.ContainsKey("B2")) stackRN2.Add(new Point(x, row["B2"]));
+ if (row.ContainsKey("Btot")) stackNtot.Add(new Point(x, row["Btot"]));
}
graphNs.Data[0] = stackN1; graphNs.Data[1] = stackN2;
- graphNs.Data[2] = stackRN1; graphNs.Data[3] = stackRN2; graphNs.Data[4] = stackNtot;
+ graphNs.Data[2] = stackRN1; graphNs.Data[3] = stackRN2; graphNs.Data[4] = stackNtot;
+ graphNs.Data[5] = stackB2; graphNs.Data[6] = stackBtot;
return true;
}
@@ -332,7 +420,7 @@ public void SaveSignal(string fn, string rem)
MessageBox.Show("Error: No signal data to be saved");
return;
}
- DictFileLogger dlog = new DictFileLogger(new string[] { "XAxis", "N1", "N2", "RN1", "RN2", "NTot"}, prefix, fn);
+ DictFileLogger dlog = new DictFileLogger(new string[] { "XAxis", "N1", "N2", "RN1", "RN2", "NTot", "B2", "BTot" }, prefix, fn);
dlog.setMMexecAsHeader(grpMme.Clone());
if (!String.IsNullOrEmpty(rem)) dlog.subheaders.Add("Rem=" + rem);
dlog.Enabled = true;
@@ -342,8 +430,9 @@ public void SaveSignal(string fn, string rem)
Dictionary row = new Dictionary();
row["XAxis"] = stackN1[i].X; row["N1"] = stackN1[i].Y; row["N2"] = stackN2[i].Y;
row["RN1"] = stackRN1[i].Y; row["RN2"] = stackRN2[i].Y; row["NTot"] = stackNtot[i].Y;
- dlog.dictLog(row, genOptions.SaveFilePrec);
- }
+ row["B2"] = stackB2[i].Y; row["BTot"] = stackBtot[i].Y;
+ dlog.dictLog(row, genOptions.SaveFilePrec);
+ }
dlog.Enabled = false;
}
@@ -351,9 +440,8 @@ public void SaveSignal(string fn, string rem)
/// Update visuals modes from internal ones
///
public void OpenDefaultModes()
- {
+ {
chkAutoScaleMiddle.IsChecked = genModes.AutoScaleMiddle;
- chkBackgroung.IsChecked = genModes.Background;
chkDarkcurrent.IsChecked = genModes.DarkCurrent;
chkStdDev.IsChecked = genModes.StdDev;
chkN1.IsChecked = genModes.N1;
@@ -361,6 +449,8 @@ public void OpenDefaultModes()
chkRN1.IsChecked = genModes.RN1;
chkRN2.IsChecked = genModes.RN2;
chkNtot.IsChecked = genModes.Ntot;
+ chkB2.IsChecked = genModes.B2;
+ chkBtot.IsChecked = genModes.Btot;
}
///
@@ -369,7 +459,6 @@ public void OpenDefaultModes()
public void SaveDefaultModes()
{
genModes.AutoScaleMiddle = chkAutoScaleMiddle.IsChecked.Value;
- genModes.Background = chkBackgroung.IsChecked.Value;
genModes.DarkCurrent = chkDarkcurrent.IsChecked.Value;
genModes.StdDev = chkStdDev.IsChecked.Value;
genModes.N1 = chkN1.IsChecked.Value;
@@ -377,6 +466,8 @@ public void SaveDefaultModes()
genModes.RN1 = chkRN1.IsChecked.Value;
genModes.RN2 = chkRN2.IsChecked.Value;
genModes.Ntot = chkNtot.IsChecked.Value;
+ genModes.B2 = chkB2.IsChecked.Value;
+ genModes.Btot = chkBtot.IsChecked.Value;
}
///
@@ -440,6 +531,16 @@ public void chkN1_Checked(object sender, RoutedEventArgs e)
if (chkNtot.IsChecked.Value) plotNtot.Visibility = System.Windows.Visibility.Visible;
else plotNtot.Visibility = System.Windows.Visibility.Hidden;
}
+ if (plotB2 != null)
+ {
+ if (chkB2.IsChecked.Value) plotB2.Visibility = System.Windows.Visibility.Visible;
+ else plotB2.Visibility = System.Windows.Visibility.Hidden;
+ }
+ if (plotBtot != null)
+ {
+ if (chkBtot.IsChecked.Value) plotBtot.Visibility = System.Windows.Visibility.Visible;
+ else plotBtot.Visibility = System.Windows.Visibility.Hidden;
+ }
}
}
}
diff --git a/Axel-hub/Axel-hub/strobesUC.xaml b/Axel-hub/Axel-hub/PanelsUC/strobesUC.xaml
similarity index 94%
rename from Axel-hub/Axel-hub/strobesUC.xaml
rename to Axel-hub/Axel-hub/PanelsUC/strobesUC.xaml
index e403574b..95c3ad3d 100644
--- a/Axel-hub/Axel-hub/strobesUC.xaml
+++ b/Axel-hub/Axel-hub/PanelsUC/strobesUC.xaml
@@ -32,12 +32,12 @@
-
+
-
+
@@ -54,10 +54,10 @@
-
+
-
+
diff --git a/Axel-hub/Axel-hub/strobesUC.xaml.cs b/Axel-hub/Axel-hub/PanelsUC/strobesUC.xaml.cs
similarity index 82%
rename from Axel-hub/Axel-hub/strobesUC.xaml.cs
rename to Axel-hub/Axel-hub/PanelsUC/strobesUC.xaml.cs
index 2ccc7728..f2649aef 100644
--- a/Axel-hub/Axel-hub/strobesUC.xaml.cs
+++ b/Axel-hub/Axel-hub/PanelsUC/strobesUC.xaml.cs
@@ -17,6 +17,7 @@
using Newtonsoft.Json;
using Newtonsoft.Json.Converters;
+using OptionsNS;
using UtilsNS;
namespace Axel_hub
@@ -110,20 +111,15 @@ public partial class strobesUC : UserControl
{
private const string dPrec = "G4";
private MMexec grpMME, lastMMEin, lastMMEout;
+ GeneralOptions genOptions;
- private bool _PID_Enabled;
///
- /// PID follow the strobe position
+ /// PID follow the strobe position; now only for show
///
- public bool PID_Enabled
+ public void SetPID_Enabled(bool pid)
{
- get { return _PID_Enabled; }
- set
- {
- _PID_Enabled = value;
- if (value) lbTitle.Content = "PID - ON";
- else lbTitle.Content = "PID - OFF";
- }
+ if (pid) lbTitle.Content = "PID - ON";
+ else lbTitle.Content = "PID - OFF";
}
private bool LogPID { get { return chkPIDlog.IsChecked.Value; } }
private bool Rpr2file { get { return chkRpr2file.IsChecked.Value; } }
@@ -186,13 +182,32 @@ public void Flip() // flip Down and Up
/// Initiate strobe from file settings
///
///
- public void Init(string _prefix)
+ public void Init(string _prefix, ref GeneralOptions _genOptions)
{
prefix = _prefix;
+ genOptions = _genOptions;
configFile = Utils.configPath + "PID_" + prefix + ".cfg";
OpenConfigFile();
}
-
+ ///
+ /// calculate Up/Down from fit coefficients
+ /// signal(x) = scale[0] * cos(K[1]*x + phi0[2]) + offset[3] -> idx in cf (coeffs)
+ ///
+ /// fit coeff.
+ public void calcStrobesFromFit(double[] cf)
+ {
+ double signal(double phi)
+ {
+ return cf[0] * Math.Cos(cf[1] * phi + cf[2]) + cf[3];
+ }
+ if (!cf.Length.Equals(4)) return;
+ double u, d, phi0 = cf[2];
+ if (phi0 > Math.PI) phi0 -= 2*Math.PI;
+ d = 0.5 * Math.PI / cf[1] - phi0; // 0.5 and 1.5 PI are zeros of cos function
+ u = 1.5 * Math.PI / cf[1] - phi0;
+ Down.X = d; Down.Y = signal(d);
+ Up.X = u; Up.Y = signal(u);
+ }
///
/// Call this before each Jumbo Repeat for group MMexec and modes synchronization
///
@@ -200,7 +215,7 @@ public void Init(string _prefix)
///
///
///
- public void OnJumboRepeat(double _fringeScale, double _fringeShift, MMexec _grpMME, double contrastV) //
+ public void OnJumboRepeat(double _fringeScale, double _fringeShift, MMexec _grpMME, double contrastV)
{
if (!Double.IsNaN(_fringeScale)) fringeScale = _fringeScale;
if (!Double.IsNaN(_fringeShift)) fringeShift = _fringeShift;
@@ -226,10 +241,10 @@ public void OnJumboRepeat(double _fringeScale, double _fringeShift, MMexec _grpM
///
///
///
- public delegate void LogHandler(string txt, Color? clr = null);
+ public delegate void LogHandler(string txt, SolidColorBrush clr = null);
public event LogHandler OnLog;
- public void LogEvent(string txt, Color? clr = null)
+ public void LogEvent(string txt, SolidColorBrush clr = null)
{
if (!Utils.isNull(OnLog)) OnLog(txt, clr);
}
@@ -254,7 +269,7 @@ public double calcContrast(double A)
}
///
- /// Calculating zeroFringe - similar to centreFring but woth phase shift compensation
+ /// Calculating zeroFringe - similar to centreFring but with phase shift locked in [-pi..pi]
///
/// Calculated zeroFringe [rad] [-pi..pi]
public double zeroFringe()
@@ -272,9 +287,11 @@ public Dictionary deconstructAccel(double accel, double mems)
{
// zeroFringe[rad] - from PID follow; factor [mg/rad]
Dictionary da = new Dictionary(); double resid;
+
+ // R for reference
if (!Double.IsNaN(accel))
{
- da["accel.R"] = accel; // R for reference
+ da["accel.R"] = accel;
double orderR = calcAccel.accelOrder(accel, fringeScale, out resid);
da["order.R"] = orderR;
da["resid.R"] = resid; // [rad] residual for atomic interferometer
@@ -321,10 +338,10 @@ public double nextShot(int runID, double asymmetry, out double correction) //
else { Up.Y = asymmetry; }
disbalance = Up.Y - Down.Y;
disbalNorm = (disbalance / fringeScale) / 2; // normilized disbalance over fringeScale (vert.)
- Color clr1 = Brushes.MediumSeaGreen.Color;
- if (Math.Abs(disbalNorm) > 0.8) clr1 = Brushes.Red.Color;
+ SolidColorBrush clr1 = Brushes.MediumSeaGreen;
+ if (Math.Abs(disbalNorm) > 0.8) clr1 = Brushes.Coral;
double corr = 0, piCorr = 0;
- if (PID_Enabled)
+ if (genOptions.followPID)
{
corr = PID(disbalNorm); // [rad]
if (PiWeight > 1)
@@ -341,7 +358,7 @@ public double nextShot(int runID, double asymmetry, out double correction) //
}
double npw = PiWeight/100;
if (Math.Abs(corr - piCorr) < (Math.PI / 3)) corr = piCorr * npw + corr * (1 - npw);
- else { LogEvent("SKIP piCorr=" + piCorr.ToString("G4") + "; corr= " + corr.ToString("G4"), Brushes.Red.Color); }
+ else { LogEvent("SKIP piCorr=" + piCorr.ToString("G4") + "; corr= " + corr.ToString("G4"), Brushes.Red); }
}
}
if ((runID % 2) == 0) //MMDataConverter.Restrict2twoPI(
@@ -370,49 +387,59 @@ public MMexec backMME(int runID, double asymmetry, MMexec mme = null)
accelSet.Clear(); lastMMEin = null;
if (!Utils.isNull(mme))
{
- if (mme.sender.Equals("Axel-probe")) // take MEMS if probeMode
- {
- lastMMEin = mme.Clone();
- double mems = 0;
- if (mme.prms.ContainsKey("MEMS")) mems = Convert.ToDouble(mme.prms["MEMS"]);
- double accel = mems;
- if (mme.prms.ContainsKey("accel")) accel = Convert.ToDouble(mme.prms["accel"]); // the noiseless accel, only to compare
- accelSet = deconstructAccel(accel, mems);
- }
+ double accel_R = mme.prms.ContainsKey("accel") ? accel_R = Convert.ToDouble(mme.prms["accel"]) : Double.NaN; // modeled (reference) quantum acceleration from Axel-Probe
+ double mems_R = mme.prms.ContainsKey("MEMS") ? mems_R = Convert.ToDouble(mme.prms["MEMS"]) : Double.NaN; // modeled (reference) MEMS acceleration from Axel-Probe
+ double mems = Double.NaN;
+ if (mme.prms.ContainsKey("Interferometer") && genOptions.memsInJumbo.Equals(GeneralOptions.MemsInJumbo.PXI4462))
+ mems = ((double[])mme.prms["Interferometer"]).Average();
+ else mems = mems_R;
+
+ if (!genOptions.Diagnostics) accelSet = deconstructAccel(accel_R, mems);
+ if (!Double.IsNaN(accel_R)) accelSet["accel.R"] = accel_R;
+ if (!Double.IsNaN(mems_R)) accelSet["mems.R"] = mems_R;
+
+ lastMMEin = mme.Clone();
}
MMexec mmeOut = null;
// mmeOut.mmexec is "downhill" : "uphill" : "contrastCheck" only for probe
// for MM2 only runID counts -> even:odd:-1
// runID
- double newPhase = 0;
- bool bb = !FreqContrast.Equals(0) && !Utils.isNull(lastMMEout);
- if (bb) FreqContrast = Utils.EnsureRange(FreqContrast, 10, 1000);
- if (bb) bb &= (runID % FreqContrast).Equals(0) && (runID > 0); //!lastMMEout.mmexec.Equals("");
- if (bb) // contrastCheck !!!
- {
- mmeOut = new MMexec("contrastCheck", "Axel-hub", "phaseAdjust");
- mmeOut.prms.Clear();
- mmeOut.prms["runID"] = -1;
- newPhase = centreFringe();
- if (Down.X > Up.X) newPhase += Math.PI; // (centreFringe() > 0) ? centreFringe() - Math.PI : centreFringe() + Math.PI;
- mmeOut.prms["phase." + prefix] = newPhase.ToString("G6");
- }
- else // regular phaseAdjust
+ if (genOptions.Diagnostics)
{
- mmeOut = new MMexec((runID % 2).Equals(0) ? "downhill" : "uphill", "Axel-hub", "phaseAdjust");
+ mmeOut = new MMexec("diagnostics", "Axel-hub", "phaseAdjust");
mmeOut.prms.Clear();
mmeOut.prms["runID"] = runID;
- double correction = 0;
- newPhase = nextShot(runID, asymmetry, out correction);
- if (newPhase > -10)
+ }
+ else
+ {
+ double newPhase = 0;
+ bool bb = !FreqContrast.Equals(0) && !Utils.isNull(lastMMEout);
+ if (bb) FreqContrast = Utils.EnsureRange(FreqContrast, 10, 1000);
+ if (bb) bb &= (runID % FreqContrast).Equals(0) && (runID > 0); //!lastMMEout.mmexec.Equals("");
+ if (bb) // contrastCheck !!!
{
- mmeOut.prms["phase." + prefix] = newPhase.ToString("G6");
- mmeOut.prms["corr." + prefix] = correction.ToString("G6");
+ mmeOut = new MMexec("contrastCheck", "Axel-hub", "phaseAdjust");
+ mmeOut.prms.Clear();
+ mmeOut.prms["runID"] = -1;
+ newPhase = centreFringe();
+ if (Down.X > Up.X) newPhase += Math.PI; // (centreFringe() > 0) ? centreFringe() - Math.PI : centreFringe() + Math.PI;
+ mmeOut.prms["phase." + prefix] = newPhase.ToString("G6");
}
- }
- lastMMEout = mmeOut.Clone(); return mmeOut;
- //if (newPhase > -10)
- //else return null;
+ else // regular phaseAdjust
+ {
+ mmeOut = new MMexec((runID % 2).Equals(0) ? "downhill" : "uphill", "Axel-hub", "phaseAdjust");
+ mmeOut.prms.Clear();
+ mmeOut.prms["runID"] = runID;
+ double correction = 0;
+ newPhase = nextShot(runID, asymmetry, out correction);
+ if (newPhase > -10)
+ {
+ mmeOut.prms["phase." + prefix] = newPhase.ToString("G6");
+ mmeOut.prms["corr." + prefix] = correction.ToString("G6");
+ }
+ }
+ }
+ lastMMEout = mmeOut.Clone(); return mmeOut;
}
string[] Titles = { "runI", "tP", "tI", "tD", "Down.X", "Up.X", "disbal", "corr", "iSD-R", "contrast" };
@@ -489,9 +516,9 @@ public double PID(double disbalance) // normalized disbalance
fillReport(rpr);
if (LogPID)
{
- LogEvent("PID> " + pTerm.ToString("G3") + " " + iTerm.ToString("G3") + " " + dTerm.ToString("G3"), Brushes.Navy.Color);
+ LogEvent("PID> " + pTerm.ToString("G3") + " " + iTerm.ToString("G3") + " " + dTerm.ToString("G3"), Brushes.Navy);
// PID X correction and Y value after the correction
- LogEvent("+corr " + cr.ToString(dPrec) + " DB " + disbalance.ToString(dPrec) + " iSD " + rpr["iSD-R"].ToString(dPrec), Brushes.Navy.Color);
+ LogEvent("+corr " + cr.ToString(dPrec) + " DB " + disbalance.ToString(dPrec) + " iSD " + rpr["iSD-R"].ToString(dPrec), Brushes.Navy);
}
return cr;
}
diff --git a/Axel-hub/Axel-hub/Properties/Resources.Designer.cs b/Axel-hub/Axel-hub/Properties/Resources.Designer.cs
index bfa258f9..8b0b9dab 100644
--- a/Axel-hub/Axel-hub/Properties/Resources.Designer.cs
+++ b/Axel-hub/Axel-hub/Properties/Resources.Designer.cs
@@ -19,7 +19,7 @@ namespace Axel_hub.Properties {
// class via a tool like ResGen or Visual Studio.
// To add or remove a member, edit your .ResX file then rerun ResGen
// with the /str option, or rebuild your VS project.
- [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "16.0.0.0")]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
internal class Resources {
diff --git a/Axel-hub/Axel-hub/Properties/Settings.Designer.cs b/Axel-hub/Axel-hub/Properties/Settings.Designer.cs
index e8714efe..2c5123c7 100644
--- a/Axel-hub/Axel-hub/Properties/Settings.Designer.cs
+++ b/Axel-hub/Axel-hub/Properties/Settings.Designer.cs
@@ -12,7 +12,7 @@ namespace Axel_hub.Properties {
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
- [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "12.0.0.0")]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "16.8.1.0")]
internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase {
private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings())));
diff --git a/Axel-hub/Axel-hub/Properties/TripleBarRusty.bmp b/Axel-hub/Axel-hub/Properties/TripleBarRusty.bmp
new file mode 100644
index 00000000..5edd1cd9
Binary files /dev/null and b/Axel-hub/Axel-hub/Properties/TripleBarRusty.bmp differ
diff --git a/Axel-hub/Axel-hub/Properties/licenses.0.licx b/Axel-hub/Axel-hub/Properties/licenses.0.licx
new file mode 100644
index 00000000..2aef7531
--- /dev/null
+++ b/Axel-hub/Axel-hub/Properties/licenses.0.licx
@@ -0,0 +1,16 @@
+# The following section of this file was auto-generated by Measurement Studio. Do not edit or remove this file from the project.
+# This file is used for licensing Measurement Studio components.
+# Begin Measurement Studio licenses
+NationalInstruments.Tdms.TdmsLicenser, NationalInstruments.Tdms, Version=19.0.45.49153, Culture=neutral, PublicKeyToken=4febd62461bf11a4
+NationalInstruments.NetworkVariable.WindowsForms.NetworkVariableBrowserDialog, NationalInstruments.NetworkVariable, Version=19.0.45.49153, Culture=neutral, PublicKeyToken=4febd62461bf11a4
+NationalInstruments.NetworkVariable.NetworkVariableLicenser, NationalInstruments.NetworkVariable, Version=19.0.45.49153, Culture=neutral, PublicKeyToken=4febd62461bf11a4
+NationalInstruments.NetworkVariable.WindowsForms.NetworkVariableDataSource, NationalInstruments.NetworkVariable, Version=19.0.45.49153, Culture=neutral, PublicKeyToken=4febd62461bf11a4
+NationalInstruments.NetworkVariable.WebForms.NetworkVariableDataSource, NationalInstruments.NetworkVariable, Version=19.0.45.49153, Culture=neutral, PublicKeyToken=4febd62461bf11a4
+NationalInstruments.Net.DataSocketSource, NationalInstruments.Net, Version=15.0.45.49153, Culture=neutral, PublicKeyToken=4febd62461bf11a4
+NationalInstruments.Net.DataSocketServer, NationalInstruments.Net, Version=15.0.45.49153, Culture=neutral, PublicKeyToken=4febd62461bf11a4
+NationalInstruments.Net.DataSocket, NationalInstruments.Net, Version=15.0.45.49153, Culture=neutral, PublicKeyToken=4febd62461bf11a4
+NationalInstruments.Controls.Internal.WpfEnterpriseLicenser, NationalInstruments.Controls, Version=19.0.45.54571, Culture=neutral, PublicKeyToken=4febd62461bf11a4
+NationalInstruments.Controls.Internal.WpfProfessionalLicenser, NationalInstruments.Controls, Version=19.0.45.54571, Culture=neutral, PublicKeyToken=4febd62461bf11a4
+NationalInstruments.Controls.Internal.WpfStandardLicenser, NationalInstruments.Controls, Version=19.0.45.54571, Culture=neutral, PublicKeyToken=4febd62461bf11a4
+NationalInstruments.Restricted.AnalysisLicenser, NationalInstruments.Analysis.Enterprise, Version=19.0.45.49152, Culture=neutral, PublicKeyToken=4febd62461bf11a4
+# End Measurement Studio licenses
diff --git a/Axel-hub/Axel-hub/Properties/licenses.licx b/Axel-hub/Axel-hub/Properties/licenses.licx
index da797933..6fb4f164 100644
--- a/Axel-hub/Axel-hub/Properties/licenses.licx
+++ b/Axel-hub/Axel-hub/Properties/licenses.licx
@@ -1,16 +1,13 @@
# The following section of this file was auto-generated by Measurement Studio. Do not edit or remove this file from the project.
# This file is used for licensing Measurement Studio components.
# Begin Measurement Studio licenses
-NationalInstruments.Net.DataSocketSource, NationalInstruments.Net, Version=15.0.45.49153, Culture=neutral, PublicKeyToken=4febd62461bf11a4
-NationalInstruments.Net.DataSocketServer, NationalInstruments.Net, Version=15.0.45.49153, Culture=neutral, PublicKeyToken=4febd62461bf11a4
-NationalInstruments.Net.DataSocket, NationalInstruments.Net, Version=15.0.45.49153, Culture=neutral, PublicKeyToken=4febd62461bf11a4
-NationalInstruments.Controls.Internal.WpfEnterpriseLicenser, NationalInstruments.Controls, Version=15.0.45.3898, Culture=neutral, PublicKeyToken=4febd62461bf11a4
-NationalInstruments.Controls.Internal.WpfProfessionalLicenser, NationalInstruments.Controls, Version=15.0.45.3898, Culture=neutral, PublicKeyToken=4febd62461bf11a4
-NationalInstruments.Controls.Internal.WpfStandardLicenser, NationalInstruments.Controls, Version=15.0.45.3898, Culture=neutral, PublicKeyToken=4febd62461bf11a4
-NationalInstruments.Tdms.TdmsLicenser, NationalInstruments.Tdms, Version=15.0.45.49153, Culture=neutral, PublicKeyToken=4febd62461bf11a4
-NationalInstruments.NetworkVariable.WindowsForms.NetworkVariableBrowserDialog, NationalInstruments.NetworkVariable, Version=15.0.45.49153, Culture=neutral, PublicKeyToken=4febd62461bf11a4
-NationalInstruments.NetworkVariable.NetworkVariableLicenser, NationalInstruments.NetworkVariable, Version=15.0.45.49153, Culture=neutral, PublicKeyToken=4febd62461bf11a4
-NationalInstruments.NetworkVariable.WindowsForms.NetworkVariableDataSource, NationalInstruments.NetworkVariable, Version=15.0.45.49153, Culture=neutral, PublicKeyToken=4febd62461bf11a4
-NationalInstruments.NetworkVariable.WebForms.NetworkVariableDataSource, NationalInstruments.NetworkVariable, Version=15.0.45.49153, Culture=neutral, PublicKeyToken=4febd62461bf11a4
-NationalInstruments.Restricted.AnalysisLicenser, NationalInstruments.Analysis.Enterprise, Version=15.0.45.49153, Culture=neutral, PublicKeyToken=4febd62461bf11a4
+NationalInstruments.Tdms.TdmsLicenser, NationalInstruments.Tdms, Version=19.0.45.49153, Culture=neutral, PublicKeyToken=4febd62461bf11a4
+NationalInstruments.NetworkVariable.WindowsForms.NetworkVariableBrowserDialog, NationalInstruments.NetworkVariable, Version=19.0.45.49153, Culture=neutral, PublicKeyToken=4febd62461bf11a4
+NationalInstruments.NetworkVariable.NetworkVariableLicenser, NationalInstruments.NetworkVariable, Version=19.0.45.49153, Culture=neutral, PublicKeyToken=4febd62461bf11a4
+NationalInstruments.NetworkVariable.WindowsForms.NetworkVariableDataSource, NationalInstruments.NetworkVariable, Version=19.0.45.49153, Culture=neutral, PublicKeyToken=4febd62461bf11a4
+NationalInstruments.NetworkVariable.WebForms.NetworkVariableDataSource, NationalInstruments.NetworkVariable, Version=19.0.45.49153, Culture=neutral, PublicKeyToken=4febd62461bf11a4
+NationalInstruments.Controls.Internal.WpfEnterpriseLicenser, NationalInstruments.Controls, Version=19.0.45.54571, Culture=neutral, PublicKeyToken=4febd62461bf11a4
+NationalInstruments.Controls.Internal.WpfProfessionalLicenser, NationalInstruments.Controls, Version=19.0.45.54571, Culture=neutral, PublicKeyToken=4febd62461bf11a4
+NationalInstruments.Controls.Internal.WpfStandardLicenser, NationalInstruments.Controls, Version=19.0.45.54571, Culture=neutral, PublicKeyToken=4febd62461bf11a4
+NationalInstruments.Restricted.AnalysisLicenser, NationalInstruments.Analysis.Enterprise, Version=19.0.45.49152, Culture=neutral, PublicKeyToken=4febd62461bf11a4
# End Measurement Studio licenses
diff --git a/Axel-hub/Axel-hub/Showcase/ImperialCollege.png b/Axel-hub/Axel-hub/Showcase/ImperialCollege.png
new file mode 100644
index 00000000..c2eb14ba
Binary files /dev/null and b/Axel-hub/Axel-hub/Showcase/ImperialCollege.png differ
diff --git a/Axel-hub/Axel-hub/Showcase/M2_Imperial.png b/Axel-hub/Axel-hub/Showcase/M2_Imperial.png
new file mode 100644
index 00000000..fc6023ef
Binary files /dev/null and b/Axel-hub/Axel-hub/Showcase/M2_Imperial.png differ
diff --git a/Axel-hub/Axel-hub/Showcase/Msquared.png b/Axel-hub/Axel-hub/Showcase/Msquared.png
new file mode 100644
index 00000000..31bb5b2b
Binary files /dev/null and b/Axel-hub/Axel-hub/Showcase/Msquared.png differ
diff --git a/Axel-hub/Axel-hub/Showcase/ShowcaseUC.xaml b/Axel-hub/Axel-hub/Showcase/ShowcaseUC.xaml
new file mode 100644
index 00000000..c2f4676f
--- /dev/null
+++ b/Axel-hub/Axel-hub/Showcase/ShowcaseUC.xaml
@@ -0,0 +1,30 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/Axel-hub/Axel-hub/Showcase/ShowcaseUC.xaml.cs b/Axel-hub/Axel-hub/Showcase/ShowcaseUC.xaml.cs
new file mode 100644
index 00000000..6b7699e1
--- /dev/null
+++ b/Axel-hub/Axel-hub/Showcase/ShowcaseUC.xaml.cs
@@ -0,0 +1,208 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+using System.Windows;
+using System.Windows.Controls;
+using System.Windows.Threading;
+using System.Windows.Data;
+using System.Windows.Documents;
+using System.Windows.Input;
+using System.Windows.Media;
+using System.Windows.Media.Imaging;
+using System.Windows.Navigation;
+using System.Windows.Shapes;
+using NationalInstruments.Controls;
+using UtilsNS;
+
+
+namespace Axel_hub.Showcase
+{
+ ///
+ /// Interaction logic for ShowcaseUC.xaml
+ ///
+ public partial class ShowcaseClass : UserControl
+ {
+ public ShowcaseClass()
+ {
+ InitializeComponent();
+ showcaseState = ShowcaseStates.closed;
+ }
+ const double gMems = 9.81792; // m/s^2
+ const bool simulation = false;
+ private DispatcherTimer dTimer;
+ public ShowcaseClassWindow Showcase;
+ public bool IsShowcaseShowing
+ {
+ get
+ {
+ if (Utils.isNull(Showcase)) return false;
+ return Showcase.IsVisible;
+ }
+ }
+ public event ShowcaseClassWindow.ShowcaseEventHandler OnShowcaseUCEvent;
+ private void btnShowcaseDemo_Click(object sender, RoutedEventArgs e)
+ {
+ if (!Utils.isNull(Showcase) && showcaseState != ShowcaseStates.closed)
+ {
+ if (!Showcase.IsVisible)
+ {
+ Showcase.Show();
+ }
+
+ if (Showcase.WindowState == WindowState.Minimized)
+ {
+ Showcase.WindowState = WindowState.Normal;
+ }
+
+ Showcase.Activate();
+ Showcase.Topmost = true; // important
+ Showcase.Topmost = false; // important
+ Showcase.Focus(); // important
+ return;
+ }
+ Showcase = new ShowcaseClassWindow();
+ Showcase.OnShowcaseEvent += new ShowcaseClassWindow.ShowcaseEventHandler(ShowcaseAction);
+ Showcase.Show();
+
+ dTimer = new DispatcherTimer(DispatcherPriority.Send);
+ dTimer.Tick += new EventHandler(dispatcherTimer_Tick);
+ dTimer.Interval = new TimeSpan(0, 0, 1);
+
+ showcaseState = ShowcaseStates.idle;
+ }
+ public enum ShowcaseStates { closed, idle, scan, run };
+ private ShowcaseStates _showcaseState;
+ public ShowcaseStates showcaseState
+ {
+ get { return _showcaseState; }
+ set
+ {
+ switch (value)
+ {
+ case (ShowcaseStates.idle):
+ //if (_showcaseState.Equals(ShowcaseStates.scan)) ShowcaseAction("Scan:end");
+ Showcase.btnScan.IsEnabled = true; Showcase.btnAcceptStrobes.IsEnabled = true;
+ if (Utils.isNull(Showcase.scanSrs))
+ {
+ Showcase.btnRun.IsEnabled = false; Showcase.btnAcceptStrobes.IsEnabled = false;
+ }
+ else Showcase.btnRun.IsEnabled = Showcase.scanSrs.Count > 0;
+ Showcase.btnStop.IsEnabled = Showcase.btnRun.IsEnabled;
+ break;
+ case (ShowcaseStates.scan):
+ Showcase.btnRun.IsEnabled = false; Showcase.btnAcceptStrobes.IsEnabled = true;
+ break;
+ case (ShowcaseStates.run):
+ Showcase.btnScan.IsEnabled = false; Showcase.btnAcceptStrobes.IsEnabled = false;
+ Showcase.btnRun.IsEnabled = false;
+ break;
+ case (ShowcaseStates.closed):
+
+ break;
+ }
+ _showcaseState = value;
+ }
+ }
+ public bool ShowcaseAction(string msg) // coming from ShowcaseClassWindow
+ {
+ switch (msg)
+ {
+ case "Scan":
+ ShowcaseAction("Stop");
+ showcaseState = ShowcaseStates.scan;
+ if (simulation)
+ {
+ baseMMscan scan = new baseMMscan();
+ scan.sFrom = 0; scan.sTo = 6.4; scan.sBy = 0.2;
+ Showcase.InitScan(scan);
+ dTimer.Start(); scCount = 0;
+ }
+ break;
+ case "Run":
+ ShowcaseAction("Stop");
+ showcaseState = ShowcaseStates.run;
+ if (simulation)
+ {
+ Showcase.InitRun();
+ dTimer.Start(); scCount = 0;
+ }
+ break;
+ case "Stop":
+ showcaseState = ShowcaseStates.idle;
+ if (simulation) dTimer.Stop();
+ break;
+ case "Closed":
+ showcaseState = ShowcaseStates.closed;
+ if (simulation) dTimer.Stop();
+ break;
+ }
+ if ((OnShowcaseUCEvent != null)) return OnShowcaseUCEvent(msg); // && !simulation
+ else return false;
+ }
+ public void InitRun(int depth)
+ {
+ if (!IsShowcaseShowing) return;
+ if (rbMS2.IsChecked.Value) Showcase.axisYrun.Label = "acceleration [m/s^2]";
+ if (rbMg.IsChecked.Value) Showcase.axisYrun.Label = "acceleration [mg]";
+
+ Showcase.InitRun(depth);
+ }
+ public void ShowcaseNextScanPoint(double xVl, double A)
+ {
+ if (!IsShowcaseShowing) return;
+ if (showcaseState.Equals(ShowcaseStates.scan)) Showcase.nextScanPoint(xVl, A);
+ }
+ public void ShowcaseNextRunPoint(double xVl, Dictionary dp)
+ {
+ if (!IsShowcaseShowing) return;
+ double mg2ms2(double mg) // 1000 mg = 1 gMems
+ {
+ return gMems * (mg / 1000);
+ }
+ if (showcaseState.Equals(ShowcaseStates.run))
+ {
+ if (rbMS2.IsChecked.Value)
+ {
+ if (dp.ContainsKey("PhiMg"))
+ dp["PhiMg"] = mg2ms2(dp["PhiMg"]);
+
+ if (dp.ContainsKey("MEMS"))
+ dp["MEMS"] = mg2ms2(dp["MEMS"]);
+
+ if (dp.ContainsKey("Accel"))
+ dp["Accel"] = mg2ms2(dp["Accel"]);
+ }
+ Showcase.nextRunPoint(xVl, dp);
+ }
+ }
+ private int scCount;
+ private void dispatcherTimer_Tick(object sender, EventArgs e)
+ {
+ if (!IsShowcaseShowing) return;
+ switch (showcaseState)
+ {
+ case ShowcaseStates.idle:
+ dTimer.Stop();
+ break;
+ case ShowcaseStates.scan:
+ ShowcaseNextScanPoint(scCount, Math.Sin(0.1 * scCount));
+ scCount++;
+ break;
+ case ShowcaseStates.run:
+ Dictionary dp = new Dictionary();
+ dp["PhiMg"] = Math.Sin(0.1 * scCount);
+ dp["MEMS"] = Math.Sin(0.1 * scCount) + 0.4;
+ dp["Accel"] = Math.Sin(0.1 * scCount) - 0.2;
+ ShowcaseNextRunPoint(scCount, dp);
+ scCount++;
+ break;
+ }
+ }
+ public void Final()
+ {
+ if (!Utils.isNull(Showcase)) Showcase.Close();
+ }
+ }
+}
diff --git a/Axel-hub/Axel-hub/Showcase/WindowShowcase.xaml b/Axel-hub/Axel-hub/Showcase/WindowShowcase.xaml
new file mode 100644
index 00000000..d3a826fb
--- /dev/null
+++ b/Axel-hub/Axel-hub/Showcase/WindowShowcase.xaml
@@ -0,0 +1,91 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/Axel-hub/Axel-hub/Showcase/WindowShowcase.xaml.cs b/Axel-hub/Axel-hub/Showcase/WindowShowcase.xaml.cs
new file mode 100644
index 00000000..393529f8
--- /dev/null
+++ b/Axel-hub/Axel-hub/Showcase/WindowShowcase.xaml.cs
@@ -0,0 +1,125 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+using System.Windows;
+using System.Windows.Threading;
+using System.Windows.Controls;
+using System.Windows.Data;
+using System.Windows.Documents;
+using System.Windows.Input;
+using System.Windows.Media;
+using System.Windows.Media.Imaging;
+using System.Windows.Shapes;
+using NationalInstruments.Controls.Primitives;
+using NationalInstruments.Controls;
+using UtilsNS;
+
+namespace Axel_hub
+{
+ ///
+ /// Showcase addition g from MEMS = 9.81792; acoording to International Service of Weights and Measures 9.80665
+ ///
+ public partial class ShowcaseClassWindow : Window
+ {
+ public ShowcaseClassWindow()
+ {
+ InitializeComponent();
+ }
+ public DataStack scanSrs;
+ public void InitScan(baseMMscan scan)
+ {
+ int k = Convert.ToInt32((scan.sTo - scan.sFrom) / scan.sBy) + 2;
+ scanSrs = new DataStack(2*k+10);
+ axisXscan.Range = new Range(scan.sFrom, scan.sTo);
+ graphScan.Data[0] = null;
+ btnAcceptStrobes.Value = false; btnAcceptStrobes_Click(null, null);
+ }
+ public int nextScanPoint(double xVl, double A)
+ {
+ scanSrs.AddPoint(A, xVl);
+ graphScan.Data[0] = scanSrs;
+ return scanSrs.Count;
+ }
+ protected DataStack quantSrs, memsSrs, accelSrs, diffSrs;
+ public void InitRun(int depth = 60)
+ {
+ axisXrun.Range = new Range(0, depth);
+ quantSrs = new DataStack(3*depth); graphRun.Data[0] = null;
+ memsSrs = new DataStack(3*depth); graphRun.Data[1] = null;
+ accelSrs = new DataStack(3*depth); graphRun.Data[2] = null;
+ diffSrs = new DataStack(3*depth); graphRun.Data[3] = null;
+ }
+ public int nextRunPoint(double xVl, Dictionary dp)
+ {
+ if (btnPause.Value) return quantSrs.Count;
+ Application.Current.Dispatcher.BeginInvoke(DispatcherPriority.Send,
+ new Action(() =>
+ {
+ if (dp.ContainsKey("PhiMg"))
+ {
+ quantSrs.AddPoint(dp["PhiMg"], xVl);
+ graphRun.Data[0] = quantSrs;
+ }
+ if (dp.ContainsKey("MEMS"))
+ {
+ memsSrs.AddPoint(dp["MEMS"], xVl);
+ graphRun.Data[1] = memsSrs;
+ }
+ if (dp.ContainsKey("Accel"))
+ {
+ accelSrs.AddPoint(dp["Accel"], xVl);
+ graphRun.Data[2] = accelSrs;
+ }
+
+ }));
+ /*if (dp.ContainsKey("Diff"))
+ {
+ Application.Current.Dispatcher.BeginInvoke(DispatcherPriority.Background,
+ new Action(() =>
+ {
+ diffSrs.AddPoint(dp["Diff"], xVl); graphRun.Data[3] = diffSrs;
+ }));
+ }*/
+ return quantSrs.Count;
+ }
+ public delegate bool ShowcaseEventHandler(string msg);
+ public event ShowcaseEventHandler OnShowcaseEvent;
+ protected bool ShowcaseEvent(string msg)
+ {
+ if (OnShowcaseEvent != null) return OnShowcaseEvent(msg);
+ else return false;
+ }
+ private void btnAcceptStrobes_Click(object sender, RoutedEventArgs e)
+ {
+ if (!Utils.isNull(sender)) btnAcceptStrobes.Value = !btnAcceptStrobes.Value; // comming from vis.control
+ if (btnAcceptStrobes.Value)
+ {
+ ShowcaseEvent("Accept Strobes:"+crsUpStrobe.AxisValue.ToString()+","+ crsDownStrobe.AxisValue.ToString());
+ crsUpStrobe.Visibility = Visibility.Hidden; crsDownStrobe.Visibility = Visibility.Hidden;
+ }
+ else
+ {
+ crsUpStrobe.Visibility = Visibility.Visible; crsDownStrobe.Visibility = Visibility.Visible;
+ }
+ }
+ private void btnPause_Click(object sender, RoutedEventArgs e)
+ {
+ btnPause.Value = !btnPause.Value;
+ }
+
+ private void btnScan_Click(object sender, RoutedEventArgs e)
+ {
+ if (sender is BooleanButton)
+ {
+ string title = ((BooleanButton)sender).Content.ToString();
+ ShowcaseEvent(title);
+ }
+ }
+ private void ShowcaseWindow_Closing(object sender, System.ComponentModel.CancelEventArgs e)
+ {
+ ShowcaseEvent("Stop"); ShowcaseEvent("Closed");
+ }
+ }
+}
\ No newline at end of file
diff --git a/Axel-hub/Axel-hub/Showcase/changes.txt b/Axel-hub/Axel-hub/Showcase/changes.txt
new file mode 100644
index 00000000..d137ead7
--- /dev/null
+++ b/Axel-hub/Axel-hub/Showcase/changes.txt
@@ -0,0 +1,10 @@
+- Imperial/M2 Logo on top left and double the height
+- We will add title at a later date
+- More white space around the edges of the screen. At the moment the edges of the graphs are too close to the borders of the screen. Also the legend on the right hand graph clips outside the edge of the graph border
+- All text and axes scales etc 1.5x bigger
+- Darker colours on the right hand graph
+- Remove the “Difference” in the legend on the right hand graph
+- Need the same number of significant figures on the whole of the y axes. At the moment we have 0.05 on the same axis as 0.1. Instead it should be 0.05 and 0.10
+- All letters on the axes should be lower case. So laser phase not Laser phase
+- Make the gridlines on the right hand graph equally spaced. At the moment there are some lines closer together than others
+
\ No newline at end of file
diff --git a/Axel-hub/Axel-hub/ToDoList.txt b/Axel-hub/Axel-hub/ToDoList.txt
index a8144218..5654b658 100644
--- a/Axel-hub/Axel-hub/ToDoList.txt
+++ b/Axel-hub/Axel-hub/ToDoList.txt
@@ -1,19 +1,9 @@
To Do In MotMaster2
===================
-IMMEDIATE
-- scan to change both (X/Y) phases in sequence (alternating), e.g. 0..5;0.5 -> phX=0; phY=0.5; phX=1...
-
-- Jumbo Repeat will accept
-
-IN SOME POSSIBLE FUTURE
-- scan will offer to scan individually X or Y or both alternating
-
-
AxelHub
==================
-- count the disbalance into the quant. accel.
-- log Raw Mems data for sampling rate under ???
-- StackMode of DataStack ?
-- S.G.Filter in Diff term in PID
\ No newline at end of file
+
+AO29 phase control
+
diff --git a/Axel-hub/Axel-hub/app.config b/Axel-hub/Axel-hub/app.config
new file mode 100644
index 00000000..7a838c03
--- /dev/null
+++ b/Axel-hub/Axel-hub/app.config
@@ -0,0 +1,12 @@
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/Axel-hub/Axel-hub/packages.config b/Axel-hub/Axel-hub/packages.config
new file mode 100644
index 00000000..5187f1b9
--- /dev/null
+++ b/Axel-hub/Axel-hub/packages.config
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Axel-hub/Axel-hub/scanUC.xaml b/Axel-hub/Axel-hub/scanUC.xaml
index 948d2d03..49eef2b5 100644
--- a/Axel-hub/Axel-hub/scanUC.xaml
+++ b/Axel-hub/Axel-hub/scanUC.xaml
@@ -4,54 +4,54 @@
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:ni="http://schemas.ni.com/controls/2009/xaml/presentation"
- mc:Ignorable="d" Width="261.714" Height="270.285" Loaded="UserControl_Loaded">
-
+ mc:Ignorable="d" Width="261.714" Height="280" Loaded="UserControl_Loaded">
+
-
-
-
-
+
+
+
+
-
-
-
-
+
+
+
+
-
+
-
+
-
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
+
@@ -70,7 +70,7 @@
-
+
diff --git a/Axel-hub/Axel-hub/scanUC.xaml.cs b/Axel-hub/Axel-hub/scanUC.xaml.cs
index fef5479a..27072468 100644
--- a/Axel-hub/Axel-hub/scanUC.xaml.cs
+++ b/Axel-hub/Axel-hub/scanUC.xaml.cs
@@ -43,11 +43,10 @@ public struct FringeParams
///
public partial class scanClass : UserControl
{
- private double realSampling;
private string ArrangedPartner = ""; //MOTMaster2";Axel Probe";
TimeSpan totalTime, currentTime;
- public DispatcherTimer dTimer;
+ public DispatcherTimer dTimer; // progress visualization
///
/// Class constructor - set defaults
@@ -60,6 +59,12 @@ public scanClass()
dTimer.Tick += new EventHandler(dispatcherTimer_Tick);
dTimer.Interval = new TimeSpan(0, 0, 1);
+ remote = new RemoteMessaging();
+ remote.Enabled = false;
+ remote.OnReceive += new RemoteMessaging.ReceiveHandler(OnReceive);
+ remote.OnActiveComm += new RemoteMessaging.ActiveCommHandler(OnActiveComm);
+ remote.OnAsyncSent += new RemoteMessaging.AsyncSentHandler(OnAsyncSend);
+
_remoteMode = RemoteMode.Disconnected;
tabControl.SelectedIndex = 0;
jumboButton = false;
@@ -80,10 +85,8 @@ public void InitOptions(ref GeneralOptions _genOptions, ref ScanModes _scanModes
SetSamplingRate(scanModes.SamplingFreq);
if (scanModes.TimeLimitMode) cbTimeEndless.SelectedIndex = 1;
else cbTimeEndless.SelectedIndex = 0;
- tbTimeLimit.Text = scanModes.TimeLimit.ToString();
- if (scanModes.SizeLimitMode) cbSizeEndless.SelectedIndex = 1;
- else cbSizeEndless.SelectedIndex = 0;
- tbBifferSize.Text = scanModes.SizeLimit.ToString();
+ numTimeLimit.Value = scanModes.TimeLimit;
+ numBifferSize.Value = scanModes.SizeLimit;
}
///
@@ -91,11 +94,10 @@ public void InitOptions(ref GeneralOptions _genOptions, ref ScanModes _scanModes
///
public void UpdateModes()
{
- scanModes.SamplingFreq = (int)Math.Round(1 / GetSamplingPeriod());
+ scanModes.SamplingFreq = (int)GetSamplingFreq(true);
scanModes.TimeLimitMode = cbTimeEndless.SelectedIndex == 1;
- scanModes.TimeLimit = Convert.ToInt32(tbTimeLimit.Text);
- scanModes.SizeLimitMode = cbSizeEndless.SelectedIndex == 1;
- scanModes.SizeLimit = Convert.ToInt32(tbBifferSize.Text);
+ scanModes.TimeLimit = numTimeLimit.Value;
+ scanModes.SizeLimit =numBifferSize.Value;
}
///
@@ -119,9 +121,8 @@ public void SetActivity(string act)
public void SetSamplingRate(int rate) // rate is in Hz
{
cbSamplingMode.SelectedIndex = 0;
- tbSamplingRate.Text = rate.ToString();
+ numSamplingRate.Value = rate;
}
-
///
/// Show fringes params
///
@@ -131,12 +132,6 @@ public void SetFringeParams(FringeParams fp)
lbActivity.Content = "Fringe Prm: per= " + fp.period.ToString() + "; phase= " + fp.phase.ToString() + "; off= " + fp.offset.ToString();
}
- public void OnRealSampling(double _realSampling)
- {
- realSampling = _realSampling;
- groupDigit.Header = " Conversion rate (" + realSampling.ToString() + " [Hz])";
- }
-
///
/// Shows visual progress of ADC24 acquisition
///
@@ -193,7 +188,6 @@ public bool Running
_Running = value;
}
}
-
///
/// Continuois mode
///
@@ -203,8 +197,7 @@ public bool EndlessMode()
switch (tabControl.SelectedIndex)
{
case 0: return (cbTimeEndless.SelectedIndex == 1);
- case 1: return (cbSizeEndless.SelectedIndex == 1);
- case 2: return true;
+ case 1: return true;
default: return false;
}
}
@@ -219,7 +212,7 @@ public RemoteMode remoteMode
set
{
lbMode.Content = "Oper.Mode: " + value.ToString();
- if (value == RemoteMode.Simple_Repeat || value == RemoteMode.Simple_Scan || value == RemoteMode.Disconnected) bbtnStart.Visibility = System.Windows.Visibility.Collapsed;
+ if (value == RemoteMode.Simple_Repeat || value == RemoteMode.Simple_Scan) bbtnStart.Visibility = System.Windows.Visibility.Collapsed;
else bbtnStart.Visibility = System.Windows.Visibility.Visible;
RemoteMode tempRemoteMode = _remoteMode; _remoteMode = value; scanModes.remoteMode = value;
if (!tempRemoteMode.Equals(value)) RemoteModeEvent(tempRemoteMode, value);
@@ -233,7 +226,7 @@ protected void RemoteModeEvent(RemoteMode oldMode, RemoteMode newMode)
if (!Utils.isNull(OnRemoteMode)) OnRemoteMode(oldMode, newMode);
}
- public RemoteMessaging remote { get; set; }
+ public RemoteMessaging remote;
///
/// Incomming from MM2/Axel-probe message
///
@@ -284,9 +277,9 @@ protected void RemoteEvent(string msg)
///
///
///
- public delegate void LogHandler(string txt, Color? clr = null);
+ public delegate void LogHandler(string txt, SolidColorBrush clr = null);
public event LogHandler OnLog;
- protected void LogEvent(string txt, Color? clr = null)
+ protected void LogEvent(string txt, SolidColorBrush clr = null)
{
if (OnLog != null) OnLog(txt, clr);
}
@@ -298,41 +291,37 @@ protected void LogEvent(string txt, Color? clr = null)
///
protected void OnAsyncSend(bool OK, string json2send)
{
- if (!OK) LogEvent("Error sending -> " + json2send, Brushes.Red.Color);
+ if (!OK) LogEvent("Error sending -> " + json2send, Brushes.Red);
//else LogEvent("sending OK -> " + json2send);
}
private void Image_MouseDown(object sender, MouseButtonEventArgs e)
{
- string ver = System.Diagnostics.FileVersionInfo.GetVersionInfo(Assembly.GetExecutingAssembly().Location).ProductVersion.ToString();
- MessageBox.Show(" Axel Hub v" + ver + "\n by Teodor Krastev \nfor Imperial College, London, UK\n\n visit: http://axelsuite.com", "About");
+ MessageBox.Show(" Axel Hub v" + Utils.getAppFileVersion + "\n by Teodor Krastev \nfor Imperial College, London, UK\n\n visit: http://axelsuite.com", "About");
}
///
/// Get the sampling period regardless the units
///
/// [s]
- public double GetSamplingPeriod()
+ public double GetSamplingFreq(bool actual)
{
+ if (Utils.isNull(numSamplingRate)) return Double.NaN;
double freq = 1; // in seconds
- double vl = 0;
switch (cbSamplingMode.SelectedIndex)
{
- case 0: if (!double.TryParse(tbSamplingRate.Text, out vl)) throw new Exception("Not number for digit. value"); // Hz
- freq = vl;
+ case 0: freq = numSamplingRate.Value; // Hz
break;
- case 1: if (!double.TryParse(tbSamplingRate.Text, out vl)) throw new Exception("Not number for digit. value"); // kHz
- freq = 1000 * vl;
+ case 1: freq = 1000 * numSamplingRate.Value; // kHz
break;
- case 2: if (!double.TryParse(tbSamplingRate.Text, out vl)) throw new Exception("Not number for digit. value"); // s
- freq = 1 / vl;
+ case 2: freq = 1 / numSamplingRate.Value; // s
break;
- case 3: if (!double.TryParse(tbSamplingRate.Text, out vl)) throw new Exception("Not number for digit. value"); // ms
- freq = 1000 / vl;
+ case 3: freq = 1000 / numSamplingRate.Value; // ms
break;
case 4: throw new Exception("Not implemented yet");
}
- return 1 / Utils.EnsureRange(freq, 0.001, 1e6);
+ if (actual) freq = MEMSmodel.RealConvRate(freq);
+ return Utils.EnsureRange(freq,MEMSmodel.FixConvRate[41], MEMSmodel.FixConvRate[0]);
}
///
@@ -341,17 +330,15 @@ public double GetSamplingPeriod()
///
public int GetBufferSize()
{
+ if (Utils.isNull(tcTimeBuffer)) return 1;
int sizeLimit = 0; // [s]
- double Limit = 1;
- switch (tabControl.SelectedIndex)
+ switch (tcTimeBuffer.SelectedIndex)
{
- case 0: case 2:
- if (!double.TryParse(tbTimeLimit.Text, out Limit)) throw new Exception("Not number for Time limit");
- sizeLimit = (int)(Limit / GetSamplingPeriod());
+ case 0:
+ sizeLimit = (int)(numTimeLimit.Value * GetSamplingFreq(true));
break;
case 1:
- if (!double.TryParse(tbBifferSize.Text, out Limit)) throw new Exception("Not number for Buffer size");
- sizeLimit = (int)Limit;
+ sizeLimit = numBifferSize.Value;
break;
}
return Utils.EnsureRange(sizeLimit, 2, 1000000);
@@ -377,8 +364,8 @@ private bool jumboButton
}
else
{
- bbtnStart.TrueContent = "Cancel";
- bbtnStart.FalseContent = "Start";
+ bbtnStart.TrueContent = "Cancel MEMS";
+ bbtnStart.FalseContent = "Start MEMS";
bbtnStart.FalseBrush = Brushes.LightBlue;
bbtnStart.TrueBrush = Brushes.Orange;
}
@@ -396,9 +383,9 @@ public void bbtnStart_Click(object sender, RoutedEventArgs e)
if (OnStart == null) return;
bbtnStart.Value = !bbtnStart.Value;
Running = bbtnStart.Value;
- if (!bbtnStart.Value) Abort(true);
+ if (!bbtnStart.Value) Abort(true); // send out abort
- double period = GetSamplingPeriod(); // sampling rate in sec
+ double period = 1 / GetSamplingFreq(true); // sampling rate in sec
if (EndlessMode())
{
@@ -422,16 +409,18 @@ public void bbtnStart_Click(object sender, RoutedEventArgs e)
public void Abort(bool local)
{
bool jumbo = (remoteMode == RemoteMode.Jumbo_Scan) || (remoteMode == RemoteMode.Jumbo_Repeat);
- remoteMode = RemoteMode.Ready_To_Remote;
- jumboButton = (tabControl.SelectedIndex == 2); // remote tab
+ if (remote.Connected) remoteMode = RemoteMode.Ready_To_Remote;
+ else remoteMode = RemoteMode.Disconnected;
+ jumboButton = (tabControl.SelectedIndex == 1); // remote tab
Running = false;
bbtnStart.Value = false;
- if (local)
+ if (local && remote.Connected)
{
MMexec mme = new MMexec();
SendJson(mme.Abort("Axel-hub"));
}
else OnStart(jumbo, false, 0, 0);
+ theTime.stopTime();
}
///
@@ -441,17 +430,19 @@ public void Abort(bool local)
///
private void tabControl_SelectionChanged(object sender, SelectionChangedEventArgs e)
{
- if (remote != null) remote.Enabled = (tabControl.SelectedIndex == 2);
- if (tabControl.SelectedIndex == 2)
+ if (remote != null) remote.Enabled = (tabControl.SelectedIndex == 1);
+ if (tabControl.SelectedIndex == 1) // remote
{
jumboButton = remote.CheckConnection(true);
}
- else
+ else // MEMS
{
bbtnStart.Visibility = System.Windows.Visibility.Visible;
Status("Ready to go ");
jumboButton = false;
- }
+ _remoteMode = RemoteMode.Disconnected;
+ cbSamplingMode_SelectionChanged(sender, e);
+ }
ActiveRemote(jumboButton);
}
@@ -468,30 +459,45 @@ protected void ActiveRemote(bool active)
///
private void OnActiveComm(bool active, bool forced)
{
- if (tabControl.SelectedIndex != 2) return;
+ if (tabControl.SelectedIndex != 1) return;
ledRemote.Value = active;
if (active)
{
Status("Ready to remote <->");
- bbtnStart.Visibility = System.Windows.Visibility.Visible;
+ //bbtnStart.Visibility = System.Windows.Visibility.Visible;
jumboButton = true;
remoteMode = RemoteMode.Ready_To_Remote;
}
else
{
Status("Disconnected -X-");
- bbtnStart.Visibility = System.Windows.Visibility.Hidden;
+ //bbtnStart.Visibility = System.Windows.Visibility.Hidden;
remoteMode = RemoteMode.Disconnected;
}
ActiveRemote(active);
}
-
+
+ private void numTimeLimit_ValueChanged(object sender, NationalInstruments.Controls.ValueChangedEventArgs e)
+ {
+ groupDigit.Header = "MEMS s.rate (" + GetSamplingFreq(true).ToString() + " [Hz]) / buffer (" + GetBufferSize().ToString() + ") ";
+ }
+
+ private void cbSamplingMode_SelectionChanged(object sender, SelectionChangedEventArgs e)
+ {
+ numTimeLimit_ValueChanged(sender, null);
+ }
+
+ private void numBifferSize_ValueChanged(object sender, NationalInstruments.Controls.ValueChangedEventArgs e)
+ {
+ numTimeLimit_ValueChanged(sender, null);
+ }
+
///
/// Some secondary to contructor initialilzations
///
///
///
- private void UserControl_Loaded(object sender, RoutedEventArgs e)
+ private void UserControl_Loaded(object sender, RoutedEventArgs e)
{
string callingPartner = ""; bool bRemote = false;
string[] args = Environment.GetCommandLineArgs();
@@ -509,21 +515,18 @@ private void UserControl_Loaded(object sender, RoutedEventArgs e)
}
string computerName = (string)System.Environment.GetEnvironmentVariables()["COMPUTERNAME"];
string partner = ArrangedPartner; // default
- if(!callingPartner.Equals("")) partner = callingPartner; //highest priority
- if(partner == "")
+ if (!callingPartner.Equals("")) partner = callingPartner; //highest priority
+ if (partner == "")
switch (computerName)
{
case "NAVIGATOR-ANAL":
case "DESKTOP-IHEEQUU": partner = "MOTMaster2"; break;
- case "DESKTOP-U334RMA": partner = "Axel Probe"; break; //"MOTMaster2"
+ case "DESKTOP-U334RMA": partner = "Axel Probe"; break; //"Axel Probe"
+ default: partner = "MOTMaster2"; break;
}
- remote = new RemoteMessaging(partner);
- remote.Enabled = false;
- remote.OnReceive += new RemoteMessaging.ReceiveHandler(OnReceive);
- remote.OnActiveComm += new RemoteMessaging.ActiveCommHandler(OnActiveComm);
- remote.OnAsyncSent += new RemoteMessaging.AsyncSentHandler(OnAsyncSend);
+ remote.Connect(partner);
- if(bRemote) tabControl.SelectedIndex = 2;
+ if (bRemote) tabControl.SelectedIndex = 1;
}
}
}
diff --git a/Axel-hub/DATA/19-10-08_16-01-42_X.jlg b/Axel-hub/DATA/19-10-08_16-01-42_X.jlg
deleted file mode 100644
index 6f900fd7..00000000
--- a/Axel-hub/DATA/19-10-08_16-01-42_X.jlg
+++ /dev/null
@@ -1,3036 +0,0 @@
-#{"K":0.4,"phi0":0.0,"scale":1.0,"offset":0.0}
-{"quant":[3.37287,-2.987E-05],"mems":[[3.2752693,-3.1967E-05],[3.278788,-3.2998E-05],[3.2823067,-2.9904E-05],[3.2858253,-2.7842E-05],[3.289344,-2.9904E-05],[3.2928627,-2.9904E-05],[3.2963813,-3.042E-05],[3.2999,-2.9389E-05],[3.3034187,-2.9389E-05],[3.3069373,-3.1451E-05],[3.310456,-3.1451E-05],[3.3139747,-2.9904E-05],[3.3174933,-2.6811E-05],[3.321012,-2.8873E-05],[3.3245307,-3.1451E-05],[3.3280493,-3.1451E-05],[3.331568,-3.0935E-05],[3.3350867,-2.9389E-05],[3.3386053,-2.9389E-05],[3.342124,-3.042E-05],[3.3456427,-2.9389E-05],[3.3491613,-3.042E-05],[3.35268,-3.0935E-05],[3.3561987,-3.1451E-05],[3.3597173,-2.8873E-05],[3.363236,-2.4748E-05],[3.3667547,-2.8873E-05],[3.3702733,-3.0935E-05],[3.373792,-3.1967E-05],[3.3773107,-3.2482E-05],[3.3808293,-2.7326E-05],[3.384348,-2.5779E-05],[3.3878667,-2.6295E-05],[3.3913853,-2.7326E-05],[3.394904,-2.9904E-05],[3.3984227,-2.8873E-05],[3.4019413,-2.9389E-05],[3.40546,-3.1967E-05],[3.4089787,-2.8873E-05],[3.4124973,-3.2482E-05],[3.416016,-3.7122E-05],[3.4195347,-3.0935E-05],[3.4230533,-2.8873E-05],[3.426572,-3.2482E-05],[3.4300907,-3.1967E-05],[3.4336093,-2.6295E-05],[3.437128,-2.7326E-05],[3.4406467,-3.042E-05],[3.4441653,-3.042E-05],[3.447684,-2.8873E-05],[3.4512027,-3.3513E-05],[3.4547213,-3.506E-05],[3.45824,-2.6295E-05],[3.4617587,-2.7326E-05],[3.4652773,-2.8357E-05],[3.468796,-2.8357E-05],[3.4723147,-2.9904E-05],[3.4758333,-2.9904E-05],[3.479352,-2.9904E-05],[3.4828707,-2.9904E-05],[3.4863893,-2.6811E-05],[3.489908,-2.4748E-05],[3.4934267,-3.042E-05],[3.4969453,-2.4233E-05],[3.500464,-2.4748E-05],[3.5039827,-3.0935E-05],[3.5075013,-2.7842E-05],[3.51102,-3.1967E-05],[3.5145387,-2.9904E-05],[3.5180573,-2.8873E-05],[3.521576,-2.7842E-05],[3.5250947,-2.6295E-05],[3.5286133,-3.2482E-05],[3.532132,-3.1451E-05],[3.5356507,-3.1451E-05],[3.5391693,-2.9389E-05],[3.542688,-3.042E-05],[3.5462067,-2.8873E-05],[3.5497253,-2.5264E-05],[3.553244,-2.9904E-05],[3.5567627,-2.7842E-05],[3.5602813,-2.5264E-05],[3.5638,-2.7842E-05],[3.5673187,-2.7842E-05],[3.5708373,-3.042E-05],[3.574356,-3.506E-05]]}
-{"quant":[3.76805,-3.0526E-05],"mems":[[3.66936,-2.7842E-05],[3.6728787,-2.5264E-05],[3.6763973,-2.8357E-05],[3.679916,-2.9389E-05],[3.6834347,-3.2482E-05],[3.6869533,-3.1451E-05],[3.690472,-2.6811E-05],[3.6939907,-2.4233E-05],[3.6975093,-2.1655E-05],[3.701028,-2.7326E-05],[3.7045467,-2.9389E-05],[3.7080653,-2.6295E-05],[3.711584,-2.9904E-05],[3.7151027,-2.8357E-05],[3.7186213,-2.8873E-05],[3.72214,-2.8873E-05],[3.7256587,-2.3202E-05],[3.7291773,-2.7326E-05],[3.732696,-2.9904E-05],[3.7362147,-2.8357E-05],[3.7397333,-3.1967E-05],[3.743252,-3.3513E-05],[3.7467707,-2.8873E-05],[3.7502893,-2.5264E-05],[3.753808,-3.2998E-05],[3.7573267,-3.9185E-05],[3.7608453,-3.3513E-05],[3.764364,-2.9904E-05],[3.7678827,-3.0935E-05],[3.7714013,-3.2998E-05],[3.77492,-3.4544E-05],[3.7784387,-3.0935E-05],[3.7819573,-3.3513E-05],[3.785476,-3.3513E-05],[3.7889947,-3.042E-05],[3.7925133,-2.7326E-05],[3.796032,-2.8357E-05],[3.7995507,-3.6607E-05],[3.8030693,-3.4029E-05],[3.806588,-2.8873E-05],[3.8101067,-2.8357E-05],[3.8136253,-2.6295E-05],[3.817144,-2.9389E-05],[3.8206627,-2.7842E-05],[3.8241813,-2.6811E-05],[3.8277,-3.1967E-05],[3.8312187,-2.7842E-05],[3.8347373,-3.1451E-05],[3.838256,-3.7638E-05],[3.8417747,-3.0935E-05],[3.8452933,-3.042E-05],[3.848812,-3.042E-05],[3.8523307,-2.8357E-05],[3.8558493,-2.4748E-05],[3.859368,-2.9389E-05],[3.8628867,-3.2998E-05],[3.8664053,-2.8357E-05],[3.869924,-3.0935E-05],[3.8734427,-2.9389E-05],[3.8769613,-3.0935E-05],[3.88048,-3.3513E-05],[3.8839987,-3.506E-05],[3.8875173,-2.9904E-05],[3.891036,-2.217E-05],[3.8945547,-2.8873E-05],[3.8980733,-2.9389E-05],[3.901592,-2.9389E-05],[3.9051107,-3.2482E-05],[3.9086293,-2.9904E-05],[3.912148,-3.042E-05],[3.9156667,-3.1967E-05],[3.9191853,-2.9904E-05],[3.922704,-2.6811E-05],[3.9262227,-3.0935E-05],[3.9297413,-3.2482E-05],[3.93326,-2.9904E-05],[3.9367787,-2.5779E-05],[3.9402973,-2.4748E-05],[3.943816,-3.4544E-05],[3.9473347,-3.2998E-05],[3.9508533,-2.4233E-05],[3.954372,-2.4748E-05],[3.9578907,-2.8873E-05],[3.9614093,-2.6295E-05],[3.964928,-3.042E-05],[3.9684467,-3.2482E-05]]}
-{"quant":[4.23079,-3.0384E-05],"mems":[[4.133824,-3.042E-05],[4.1373427,-2.9904E-05],[4.1408613,-3.0935E-05],[4.14438,-2.9389E-05],[4.1478987,-2.8873E-05],[4.1514173,-2.6811E-05],[4.154936,-2.8357E-05],[4.1584547,-2.9389E-05],[4.1619733,-2.7842E-05],[4.165492,-3.4029E-05],[4.1690107,-3.1967E-05],[4.1725293,-3.0935E-05],[4.176048,-3.2482E-05],[4.1795667,-3.0935E-05],[4.1830853,-2.9389E-05],[4.186604,-2.8873E-05],[4.1901227,-3.0935E-05],[4.1936413,-2.6295E-05],[4.19716,-2.7326E-05],[4.2006787,-2.9389E-05],[4.2041973,-2.7842E-05],[4.207716,-2.8873E-05],[4.2112347,-2.5264E-05],[4.2147533,-2.6811E-05],[4.218272,-2.5779E-05],[4.2217907,-2.5779E-05],[4.2253093,-2.8357E-05],[4.228828,-2.7326E-05],[4.2323467,-2.9389E-05],[4.2358653,-2.6295E-05],[4.239384,-2.9389E-05],[4.2429027,-3.1967E-05],[4.2464213,-3.1451E-05],[4.24994,-3.506E-05],[4.2534587,-3.0935E-05],[4.2569773,-3.0935E-05],[4.260496,-2.8357E-05],[4.2640147,-2.4233E-05],[4.2675333,-2.8873E-05],[4.271052,-2.8873E-05],[4.2745707,-3.4544E-05],[4.2780893,-3.506E-05],[4.281608,-2.6811E-05],[4.2851267,-2.7326E-05],[4.2886453,-2.9904E-05],[4.292164,-3.3513E-05],[4.2956827,-3.2998E-05],[4.2992013,-3.2482E-05],[4.30272,-2.9904E-05],[4.3062387,-2.6295E-05],[4.3097573,-3.3513E-05],[4.313276,-3.2998E-05],[4.3167947,-3.042E-05],[4.3203133,-3.2482E-05],[4.323832,-2.8873E-05],[4.3273507,-2.8357E-05],[4.3308693,-2.9904E-05],[4.334388,-2.8357E-05],[4.3379067,-2.8873E-05],[4.3414253,-2.9904E-05],[4.344944,-2.6811E-05],[4.3484627,-3.042E-05],[4.3519813,-3.4029E-05],[4.3555,-3.2482E-05],[4.3590187,-3.042E-05],[4.3625373,-2.5779E-05],[4.366056,-2.6295E-05],[4.3695747,-3.0935E-05],[4.3730933,-2.8873E-05],[4.376612,-2.8357E-05],[4.3801307,-2.8873E-05],[4.3836493,-2.6811E-05],[4.387168,-2.6295E-05],[4.3906867,-2.8357E-05],[4.3942053,-3.2998E-05],[4.397724,-3.1451E-05],[4.4012427,-2.7326E-05],[4.4047613,-2.4748E-05],[4.40828,-2.5264E-05],[4.4117987,-3.2482E-05],[4.4153173,-3.0935E-05],[4.418836,-2.7842E-05],[4.4223547,-3.3513E-05],[4.4258733,-2.6811E-05],[4.429392,-2.5264E-05],[4.4329107,-3.1451E-05]]}
-{"quant":[4.76262,-2.9303E-05],"mems":[[4.6651427,-2.8357E-05],[4.6686613,-2.9389E-05],[4.67218,-2.7326E-05],[4.6756987,-3.042E-05],[4.6792173,-3.8154E-05],[4.682736,-3.3513E-05],[4.6862547,-3.0935E-05],[4.6897733,-3.042E-05],[4.693292,-2.4233E-05],[4.6968107,-2.6295E-05],[4.7003293,-2.9904E-05],[4.703848,-2.8357E-05],[4.7073667,-2.7842E-05],[4.7108853,-2.9904E-05],[4.714404,-2.9389E-05],[4.7179227,-2.5779E-05],[4.7214413,-2.9904E-05],[4.72496,-3.2482E-05],[4.7284787,-3.1967E-05],[4.7319973,-2.8873E-05],[4.735516,-2.9904E-05],[4.7390347,-3.1967E-05],[4.7425533,-2.7842E-05],[4.746072,-2.9389E-05],[4.7495907,-2.9389E-05],[4.7531093,-2.9904E-05],[4.756628,-3.042E-05],[4.7601467,-2.9389E-05],[4.7636653,-2.7842E-05],[4.767184,-2.8357E-05],[4.7707027,-2.8357E-05],[4.7742213,-2.5779E-05],[4.77774,-2.7326E-05],[4.7812587,-3.0935E-05],[4.7847773,-3.3513E-05],[4.788296,-2.8357E-05],[4.7918147,-2.9389E-05],[4.7953333,-3.1967E-05],[4.798852,-3.1451E-05],[4.8023707,-3.1451E-05],[4.8058893,-2.5779E-05],[4.809408,-2.8873E-05],[4.8129267,-2.8357E-05],[4.8164453,-2.4233E-05],[4.819964,-2.5779E-05],[4.8234827,-2.7326E-05],[4.8270013,-2.5779E-05],[4.83052,-2.5264E-05],[4.8340387,-2.9389E-05],[4.8375573,-2.6811E-05],[4.841076,-2.9904E-05],[4.8445947,-3.1967E-05],[4.8481133,-3.1451E-05],[4.851632,-3.2998E-05],[4.8551507,-2.9389E-05],[4.8586693,-3.2998E-05],[4.862188,-3.4029E-05],[4.8657067,-3.4029E-05],[4.8692253,-3.5576E-05],[4.872744,-3.5576E-05],[4.8762627,-3.2482E-05],[4.8797813,-2.7842E-05],[4.8833,-3.1451E-05],[4.8868187,-2.9904E-05],[4.8903373,-2.9904E-05],[4.893856,-3.2998E-05],[4.8973747,-2.9904E-05],[4.9008933,-3.1451E-05],[4.904412,-2.7842E-05],[4.9079307,-2.8357E-05],[4.9114493,-3.1451E-05],[4.914968,-2.5779E-05],[4.9184867,-2.8357E-05],[4.9220053,-2.9389E-05],[4.925524,-2.8873E-05],[4.9290427,-3.2998E-05],[4.9325613,-2.8873E-05],[4.93608,-3.2998E-05],[4.9395987,-3.5576E-05],[4.9431173,-2.7842E-05],[4.946636,-3.1451E-05],[4.9501547,-2.9904E-05],[4.9536733,-2.6295E-05],[4.957192,-2.7842E-05],[4.9607107,-2.7326E-05],[4.9642293,-2.9904E-05]]}
-{"quant":[5.23448,-3.0076E-05],"mems":[[5.136644,-3.1451E-05],[5.1401627,-2.7842E-05],[5.1436813,-2.9904E-05],[5.1472,-3.042E-05],[5.1507187,-3.1451E-05],[5.1542373,-3.1967E-05],[5.157756,-3.1451E-05],[5.1612747,-2.8873E-05],[5.1647933,-2.3202E-05],[5.168312,-2.8357E-05],[5.1718307,-3.042E-05],[5.1753493,-3.3513E-05],[5.178868,-3.506E-05],[5.1823867,-2.9389E-05],[5.1859053,-3.2482E-05],[5.189424,-3.1451E-05],[5.1929427,-2.7326E-05],[5.1964613,-2.7326E-05],[5.19998,-3.2482E-05],[5.2034987,-3.0935E-05],[5.2070173,-2.5779E-05],[5.210536,-2.9904E-05],[5.2140547,-2.8357E-05],[5.2175733,-3.1451E-05],[5.221092,-3.1451E-05],[5.2246107,-2.7326E-05],[5.2281293,-3.4029E-05],[5.231648,-3.1451E-05],[5.2351667,-3.0935E-05],[5.2386853,-3.2482E-05],[5.242204,-3.042E-05],[5.2457227,-3.1451E-05],[5.2492413,-2.8357E-05],[5.25276,-2.9904E-05],[5.2562787,-2.5779E-05],[5.2597973,-2.7326E-05],[5.263316,-3.1967E-05],[5.2668347,-2.5779E-05],[5.2703533,-2.6295E-05],[5.273872,-3.1451E-05],[5.2773907,-3.506E-05],[5.2809093,-3.2998E-05],[5.284428,-2.6295E-05],[5.2879467,-2.4748E-05],[5.2914653,-3.1451E-05],[5.294984,-3.042E-05],[5.2985027,-3.0935E-05],[5.3020213,-3.506E-05],[5.30554,-3.042E-05],[5.3090587,-2.7842E-05],[5.3125773,-3.042E-05],[5.316096,-3.1451E-05],[5.3196147,-3.2482E-05],[5.3231333,-3.1451E-05],[5.326652,-2.7326E-05],[5.3301707,-2.8873E-05],[5.3336893,-3.0935E-05],[5.337208,-3.1967E-05],[5.3407267,-2.7842E-05],[5.3442453,-2.3717E-05],[5.347764,-2.6811E-05],[5.3512827,-2.6811E-05],[5.3548013,-2.8873E-05],[5.35832,-2.6811E-05],[5.3618387,-2.5264E-05],[5.3653573,-3.1967E-05],[5.368876,-2.9904E-05],[5.3723947,-2.8873E-05],[5.3759133,-3.1451E-05],[5.379432,-3.1451E-05],[5.3829507,-2.9389E-05],[5.3864693,-2.3202E-05],[5.389988,-2.9389E-05],[5.3935067,-3.506E-05],[5.3970253,-3.1451E-05],[5.400544,-3.2998E-05],[5.4040627,-3.042E-05],[5.4075813,-2.6811E-05],[5.4111,-2.7842E-05],[5.4146187,-3.1451E-05],[5.4181373,-2.8873E-05],[5.421656,-2.9389E-05],[5.4251747,-2.9904E-05],[5.4286933,-2.3717E-05],[5.432212,-2.5264E-05],[5.4357307,-2.4233E-05]]}
-{"quant":[5.67908,0.73084],"mems":[[5.785132,-3.0935E-05],[5.7884693,-3.0935E-05],[5.7918067,-2.7842E-05],[5.795144,-2.7842E-05],[5.7984813,-2.8873E-05],[5.8018187,-2.9389E-05],[5.805156,-3.3513E-05],[5.8084933,-2.9389E-05],[5.8118307,-2.4748E-05],[5.815168,-2.9904E-05],[5.8185053,-2.9904E-05],[5.8218427,-3.1451E-05],[5.82518,-3.2482E-05],[5.8285173,-2.2686E-05],[5.8318547,-2.3717E-05],[5.835192,-3.1451E-05],[5.8385293,-2.7326E-05],[5.8418667,-2.7842E-05],[5.845204,-3.1451E-05],[5.8485413,-2.9389E-05],[5.8518787,-2.8873E-05],[5.855216,-3.2998E-05],[5.8585533,-3.4544E-05],[5.8618907,-3.506E-05],[5.865228,-3.5576E-05],[5.8685653,-3.0935E-05],[5.8719027,-3.1451E-05],[5.87524,-3.2482E-05],[5.8785773,-2.9389E-05],[5.8819147,-3.042E-05],[5.885252,-2.5264E-05],[5.8885893,-2.4748E-05],[5.8919267,-3.1967E-05],[5.895264,-2.8873E-05],[5.8986013,-2.9389E-05],[5.9019387,-3.2482E-05],[5.905276,-3.1451E-05],[5.9086133,-3.3513E-05],[5.9119507,-3.0935E-05],[5.915288,-3.2482E-05],[5.9186253,-3.8154E-05],[5.9219627,-3.0935E-05],[5.9253,-2.3717E-05],[5.9286373,-2.8873E-05],[5.9319747,-3.2482E-05],[5.935312,-3.0935E-05],[5.9386493,-2.8357E-05],[5.9419867,-3.0935E-05],[5.945324,-2.8873E-05],[5.9486613,-2.7842E-05],[5.9519987,-3.1451E-05],[5.955336,-3.2482E-05],[5.9586733,-3.2998E-05],[5.9620107,-3.042E-05],[5.965348,-2.8357E-05],[5.9686853,-2.9389E-05],[5.9720227,-3.042E-05],[5.97536,-2.7842E-05],[5.9786973,-2.6811E-05],[5.9820347,-3.042E-05],[5.985372,-2.5779E-05],[5.9887093,-2.5264E-05],[5.9920467,-2.7326E-05],[5.995384,-2.9389E-05],[5.9987213,-3.2482E-05],[6.0020587,-2.4748E-05],[6.005396,-2.5779E-05],[6.0087333,-3.1967E-05],[6.0120707,-2.9904E-05],[6.015408,-2.9389E-05],[6.0187453,-2.6811E-05],[6.0220827,-2.9904E-05],[6.02542,-2.6811E-05],[6.0287573,-2.6295E-05],[6.0320947,-2.9904E-05],[6.035432,-2.5779E-05],[6.0387693,-2.7326E-05],[6.0421067,-2.8357E-05],[6.045444,-2.9904E-05],[6.0487813,-3.4544E-05],[6.0521187,-3.1451E-05],[6.055456,-2.9904E-05],[6.0587933,-2.9904E-05]]}
-{"quant":[6.14326,-2.9372E-05],"mems":[[6.045444,-2.9904E-05],[6.0487813,-3.4544E-05],[6.0521187,-3.1451E-05],[6.055456,-2.9904E-05],[6.0587933,-2.9904E-05],[6.0621307,-2.5264E-05],[6.065468,-2.8873E-05],[6.0688053,-3.2998E-05],[6.0721427,-2.6295E-05],[6.07548,-2.6295E-05],[6.0788173,-3.0935E-05],[6.0821547,-3.3513E-05],[6.085492,-3.4029E-05],[6.0888293,-3.1967E-05],[6.0921667,-3.1967E-05],[6.095504,-2.9389E-05],[6.0988413,-3.042E-05],[6.1021787,-3.4544E-05],[6.105516,-2.9389E-05],[6.1088533,-2.9904E-05],[6.1121907,-3.4029E-05],[6.115528,-3.1451E-05],[6.1188653,-3.0935E-05],[6.1222027,-2.8873E-05],[6.12554,-3.1451E-05],[6.1288773,-3.1967E-05],[6.1322147,-2.8357E-05],[6.135552,-2.9389E-05],[6.1388893,-2.9389E-05],[6.1422267,-2.8873E-05],[6.145564,-2.9389E-05],[6.1489013,-2.7842E-05],[6.1522387,-2.8357E-05],[6.155576,-3.042E-05],[6.1589133,-3.0935E-05],[6.1622507,-3.042E-05],[6.165588,-2.6811E-05],[6.1689253,-2.9904E-05],[6.1722627,-2.7326E-05],[6.1756,-2.3717E-05],[6.1789373,-2.3717E-05],[6.1822747,-2.6295E-05],[6.185612,-3.1967E-05],[6.1889493,-2.9389E-05],[6.1922867,-2.7842E-05],[6.195624,-2.8357E-05],[6.1989613,-3.042E-05],[6.2022987,-3.4029E-05],[6.205636,-3.1967E-05],[6.2089733,-3.2998E-05],[6.2123107,-3.506E-05],[6.215648,-3.042E-05],[6.2189853,-2.6811E-05],[6.2223227,-2.8357E-05],[6.22566,-2.8873E-05],[6.2289973,-3.1967E-05],[6.2323347,-3.2998E-05],[6.235672,-3.0935E-05],[6.2390093,-2.4233E-05],[6.2423467,-2.6295E-05],[6.245684,-3.2482E-05],[6.2490213,-3.042E-05],[6.2523587,-3.1451E-05],[6.255696,-2.9389E-05],[6.2590333,-2.7326E-05],[6.2623707,-2.8873E-05],[6.265708,-3.2482E-05],[6.2690453,-3.1967E-05],[6.2723827,-2.6811E-05],[6.27572,-2.7326E-05],[6.2790573,-3.1967E-05],[6.2823947,-3.2998E-05],[6.285732,-2.9389E-05],[6.2890693,-3.1451E-05],[6.2924067,-2.8873E-05],[6.295744,-2.4748E-05],[6.2990813,-3.3513E-05],[6.3024187,-3.1967E-05],[6.305756,-2.7842E-05],[6.3090933,-2.9389E-05],[6.3124307,-2.7842E-05],[6.315768,-2.8873E-05],[6.3191053,-3.2482E-05],[6.3224427,-3.4029E-05],[6.32578,-3.1451E-05],[6.3291173,-3.2482E-05],[6.3324547,-3.2482E-05],[6.335792,-2.8357E-05],[6.3391293,-3.042E-05],[6.3424667,-3.042E-05],[6.345804,-2.7842E-05]]}
-{"quant":[6.60299,-2.8457E-05],"mems":[[6.505996,-2.8357E-05],[6.5093333,-3.0935E-05],[6.5126707,-3.3513E-05],[6.516008,-3.4544E-05],[6.5193453,-2.9389E-05],[6.5226827,-2.8873E-05],[6.52602,-2.8357E-05],[6.5293573,-2.7326E-05],[6.5326947,-2.8357E-05],[6.536032,-2.9389E-05],[6.5393693,-3.2482E-05],[6.5427067,-3.0935E-05],[6.546044,-2.6811E-05],[6.5493813,-2.6811E-05],[6.5527187,-3.4544E-05],[6.556056,-3.8154E-05],[6.5593933,-3.1451E-05],[6.5627307,-3.2482E-05],[6.566068,-2.9389E-05],[6.5694053,-2.7326E-05],[6.5727427,-2.7842E-05],[6.57608,-2.9389E-05],[6.5794173,-3.506E-05],[6.5827547,-2.6295E-05],[6.586092,-2.8357E-05],[6.5894293,-3.3513E-05],[6.5927667,-2.8357E-05],[6.596104,-2.7842E-05],[6.5994413,-2.6295E-05],[6.6027787,-2.9389E-05],[6.606116,-2.8873E-05],[6.6094533,-2.9389E-05],[6.6127907,-2.8873E-05],[6.616128,-2.9904E-05],[6.6194653,-3.3513E-05],[6.6228027,-2.3717E-05],[6.62614,-2.3202E-05],[6.6294773,-3.0935E-05],[6.6328147,-2.6811E-05],[6.636152,-2.4748E-05],[6.6394893,-2.6811E-05],[6.6428267,-2.5779E-05],[6.646164,-2.8873E-05],[6.6495013,-3.0935E-05],[6.6528387,-2.9904E-05],[6.656176,-2.9389E-05],[6.6595133,-2.9904E-05],[6.6628507,-2.7842E-05],[6.666188,-2.9389E-05],[6.6695253,-3.1967E-05],[6.6728627,-3.0935E-05],[6.6762,-3.3513E-05],[6.6795373,-2.7326E-05],[6.6828747,-2.4233E-05],[6.686212,-2.8873E-05],[6.6895493,-2.6811E-05],[6.6928867,-2.7842E-05],[6.696224,-2.9389E-05],[6.6995613,-2.9904E-05],[6.7028987,-2.5779E-05],[6.706236,-2.6811E-05],[6.7095733,-3.4029E-05],[6.7129107,-3.4544E-05],[6.716248,-2.8873E-05],[6.7195853,-2.4233E-05],[6.7229227,-2.7842E-05],[6.72626,-3.3513E-05],[6.7295973,-3.0935E-05],[6.7329347,-2.7326E-05],[6.736272,-2.5264E-05],[6.7396093,-2.6295E-05],[6.7429467,-2.9389E-05],[6.746284,-2.9389E-05],[6.7496213,-2.7326E-05],[6.7529587,-2.8873E-05],[6.756296,-3.1967E-05],[6.7596333,-3.2998E-05],[6.7629707,-2.8873E-05],[6.766308,-2.4748E-05],[6.7696453,-2.7842E-05],[6.7729827,-3.042E-05],[6.77632,-3.1451E-05],[6.7796573,-2.9904E-05],[6.7829947,-3.042E-05],[6.786332,-3.2998E-05],[6.7896693,-2.9904E-05],[6.7930067,-2.7326E-05],[6.796344,-3.042E-05],[6.7996813,-2.9904E-05],[6.8030187,-2.8357E-05]]}
-{"quant":[7.04382,-2.9638E-05],"mems":[[6.946524,-2.9389E-05],[6.9498613,-3.0935E-05],[6.9531987,-2.6811E-05],[6.956536,-2.7842E-05],[6.9598733,-2.8873E-05],[6.9632107,-2.8357E-05],[6.966548,-3.3513E-05],[6.9698853,-3.0935E-05],[6.9732227,-2.7326E-05],[6.97656,-2.6811E-05],[6.9798973,-2.7326E-05],[6.9832347,-3.1451E-05],[6.986572,-2.5264E-05],[6.9899093,-2.6295E-05],[6.9932467,-3.2998E-05],[6.996584,-3.2998E-05],[6.9999213,-2.9904E-05],[7.0032587,-2.8873E-05],[7.006596,-3.1451E-05],[7.0099333,-2.6295E-05],[7.0132707,-2.6295E-05],[7.016608,-3.1967E-05],[7.0199453,-3.2998E-05],[7.0232827,-3.4029E-05],[7.02662,-3.1967E-05],[7.0299573,-2.9904E-05],[7.0332947,-2.7326E-05],[7.036632,-2.6811E-05],[7.0399693,-2.9389E-05],[7.0433067,-2.8357E-05],[7.046644,-2.8873E-05],[7.0499813,-3.042E-05],[7.0533187,-2.6811E-05],[7.056656,-2.7842E-05],[7.0599933,-2.9904E-05],[7.0633307,-2.8357E-05],[7.066668,-2.8357E-05],[7.0700053,-2.8357E-05],[7.0733427,-2.8357E-05],[7.07668,-3.1967E-05],[7.0800173,-3.1967E-05],[7.0833547,-2.7842E-05],[7.086692,-3.0935E-05],[7.0900293,-2.7842E-05],[7.0933667,-2.7842E-05],[7.096704,-3.4544E-05],[7.1000413,-3.1451E-05],[7.1033787,-2.9904E-05],[7.106716,-2.9389E-05],[7.1100533,-2.7842E-05],[7.1133907,-3.3513E-05],[7.116728,-3.1451E-05],[7.1200653,-2.9389E-05],[7.1234027,-3.3513E-05],[7.12674,-2.9904E-05],[7.1300773,-2.7842E-05],[7.1334147,-2.8357E-05],[7.136752,-3.1451E-05],[7.1400893,-3.0935E-05],[7.1434267,-2.6295E-05],[7.146764,-2.7326E-05],[7.1501013,-2.6295E-05],[7.1534387,-3.1967E-05],[7.156776,-3.4029E-05],[7.1601133,-2.8357E-05],[7.1634507,-3.0935E-05],[7.166788,-2.8873E-05],[7.1701253,-2.7842E-05],[7.1734627,-3.2482E-05],[7.1768,-2.8357E-05],[7.1801373,-2.5779E-05],[7.1834747,-2.8873E-05],[7.186812,-2.8357E-05],[7.1901493,-2.8357E-05],[7.1934867,-3.042E-05],[7.196824,-3.0935E-05],[7.2001613,-3.1451E-05],[7.2034987,-2.7326E-05],[7.206836,-2.5264E-05],[7.2101733,-2.9389E-05],[7.2135107,-3.1451E-05],[7.216848,-2.8873E-05],[7.2201853,-2.5264E-05],[7.2235227,-2.7326E-05],[7.22686,-2.3717E-05],[7.2301973,-2.6295E-05],[7.2335347,-3.1451E-05],[7.236872,-3.1451E-05],[7.2402093,-3.1451E-05],[7.2435467,-2.7326E-05],[7.246884,-3.042E-05]]}
-{"quant":[7.48542,-3.052E-05],"mems":[[7.387052,-2.8873E-05],[7.3903893,-2.8357E-05],[7.3937267,-2.4748E-05],[7.397064,-2.3202E-05],[7.4004013,-2.5264E-05],[7.4037387,-2.5779E-05],[7.407076,-2.4233E-05],[7.4104133,-2.9389E-05],[7.4137507,-3.2998E-05],[7.417088,-2.8357E-05],[7.4204253,-2.4233E-05],[7.4237627,-2.8357E-05],[7.4271,-3.4544E-05],[7.4304373,-3.1967E-05],[7.4337747,-3.042E-05],[7.437112,-2.8873E-05],[7.4404493,-2.6295E-05],[7.4437867,-2.6295E-05],[7.447124,-2.9904E-05],[7.4504613,-3.4544E-05],[7.4537987,-3.1967E-05],[7.457136,-3.042E-05],[7.4604733,-2.7842E-05],[7.4638107,-2.7842E-05],[7.467148,-3.1967E-05],[7.4704853,-2.8873E-05],[7.4738227,-3.042E-05],[7.47716,-2.7326E-05],[7.4804973,-2.6811E-05],[7.4838347,-2.9389E-05],[7.487172,-3.1451E-05],[7.4905093,-3.2998E-05],[7.4938467,-2.5779E-05],[7.497184,-2.1655E-05],[7.5005213,-2.6295E-05],[7.5038587,-3.4029E-05],[7.507196,-3.4544E-05],[7.5105333,-3.1451E-05],[7.5138707,-3.2482E-05],[7.517208,-3.4029E-05],[7.5205453,-3.1451E-05],[7.5238827,-3.3513E-05],[7.52722,-3.1451E-05],[7.5305573,-2.8873E-05],[7.5338947,-3.1967E-05],[7.537232,-2.8357E-05],[7.5405693,-2.9389E-05],[7.5439067,-2.8873E-05],[7.547244,-2.8357E-05],[7.5505813,-3.1967E-05],[7.5539187,-3.1451E-05],[7.557256,-3.2482E-05],[7.5605933,-3.1451E-05],[7.5639307,-3.1451E-05],[7.567268,-3.3513E-05],[7.5706053,-2.9904E-05],[7.5739427,-2.7326E-05],[7.57728,-2.8357E-05],[7.5806173,-2.9389E-05],[7.5839547,-3.0935E-05],[7.587292,-3.0935E-05],[7.5906293,-2.8873E-05],[7.5939667,-2.8873E-05],[7.597304,-2.9904E-05],[7.6006413,-2.8357E-05],[7.6039787,-2.8357E-05],[7.607316,-2.8873E-05],[7.6106533,-2.7326E-05],[7.6139907,-2.5779E-05],[7.617328,-2.4748E-05],[7.6206653,-2.6811E-05],[7.6240027,-2.9904E-05],[7.62734,-2.7326E-05],[7.6306773,-2.3717E-05],[7.6340147,-2.4233E-05],[7.637352,-3.042E-05],[7.6406893,-3.3513E-05],[7.6440267,-3.0935E-05],[7.647364,-3.1967E-05],[7.6507013,-2.9389E-05],[7.6540387,-2.6295E-05],[7.657376,-3.042E-05],[7.6607133,-2.9904E-05],[7.6640507,-2.9904E-05],[7.667388,-3.1967E-05],[7.6707253,-2.5779E-05],[7.6740627,-2.5779E-05],[7.6774,-2.9389E-05],[7.6807373,-3.0935E-05],[7.6840747,-3.2998E-05],[7.687412,-2.4748E-05]]}
-{"quant":[7.91953,-2.9638E-05],"mems":[[7.8209053,-2.7326E-05],[7.8242427,-2.8357E-05],[7.82758,-2.7326E-05],[7.8309173,-3.4544E-05],[7.8342547,-3.8154E-05],[7.837592,-3.042E-05],[7.8409293,-2.6295E-05],[7.8442667,-2.7842E-05],[7.847604,-2.6811E-05],[7.8509413,-2.5264E-05],[7.8542787,-2.8873E-05],[7.857616,-3.0935E-05],[7.8609533,-3.1967E-05],[7.8642907,-2.8873E-05],[7.867628,-2.6295E-05],[7.8709653,-3.042E-05],[7.8743027,-2.8873E-05],[7.87764,-2.5779E-05],[7.8809773,-2.6811E-05],[7.8843147,-2.6811E-05],[7.887652,-2.9904E-05],[7.8909893,-3.042E-05],[7.8943267,-3.1967E-05],[7.897664,-3.2998E-05],[7.9010013,-2.8357E-05],[7.9043387,-2.5264E-05],[7.907676,-2.7842E-05],[7.9110133,-3.042E-05],[7.9143507,-3.0935E-05],[7.917688,-3.0935E-05],[7.9210253,-2.9904E-05],[7.9243627,-2.7842E-05],[7.9277,-2.8357E-05],[7.9310373,-3.6607E-05],[7.9343747,-3.506E-05],[7.937712,-2.7842E-05],[7.9410493,-2.7842E-05],[7.9443867,-2.6295E-05],[7.947724,-2.7326E-05],[7.9510613,-3.0935E-05],[7.9543987,-3.1451E-05],[7.957736,-2.8357E-05],[7.9610733,-3.0935E-05],[7.9644107,-2.9904E-05],[7.967748,-2.7326E-05],[7.9710853,-2.8873E-05],[7.9744227,-2.7326E-05],[7.97776,-2.8873E-05],[7.9810973,-2.9389E-05],[7.9844347,-2.6295E-05],[7.987772,-2.9389E-05],[7.9911093,-3.042E-05],[7.9944467,-2.7326E-05],[7.997784,-2.8357E-05],[8.0011213,-2.7326E-05],[8.0044587,-2.7842E-05],[8.007796,-3.1451E-05],[8.0111333,-3.042E-05],[8.0144707,-3.4544E-05],[8.017808,-3.4544E-05],[8.0211453,-3.042E-05],[8.0244827,-2.9389E-05],[8.02782,-3.0935E-05],[8.0311573,-3.2998E-05],[8.0344947,-2.9904E-05],[8.037832,-3.2482E-05],[8.0411693,-3.506E-05],[8.0445067,-3.1967E-05],[8.047844,-2.9904E-05],[8.0511813,-3.0935E-05],[8.0545187,-3.1967E-05],[8.057856,-2.5779E-05],[8.0611933,-2.6295E-05],[8.0645307,-3.2482E-05],[8.067868,-2.9904E-05],[8.0712053,-2.9389E-05],[8.0745427,-3.2482E-05],[8.07788,-2.6811E-05],[8.0812173,-2.6295E-05],[8.0845547,-2.7326E-05],[8.087892,-2.6295E-05],[8.0912293,-3.506E-05],[8.0945667,-3.1967E-05],[8.097904,-2.8357E-05],[8.1012413,-2.6811E-05],[8.1045787,-2.5779E-05],[8.107916,-3.2482E-05],[8.1112533,-3.2482E-05],[8.1145907,-3.3513E-05],[8.117928,-3.0935E-05],[8.1212653,-3.2482E-05]]}
-{"quant":[8.36811,-3.0455E-05],"mems":[[8.2702827,-3.042E-05],[8.273832,-2.6295E-05],[8.2773813,-2.4233E-05],[8.2809307,-3.042E-05],[8.28448,-3.4029E-05],[8.2880293,-3.6091E-05],[8.2915787,-2.7842E-05],[8.295128,-2.8357E-05],[8.2986773,-2.9389E-05],[8.3022267,-2.6811E-05],[8.305776,-3.2482E-05],[8.3093253,-3.1967E-05],[8.3128747,-3.1967E-05],[8.316424,-3.2482E-05],[8.3199733,-2.9904E-05],[8.3235227,-2.9389E-05],[8.327072,-2.8357E-05],[8.3306213,-2.5264E-05],[8.3341707,-2.5779E-05],[8.33772,-2.9904E-05],[8.3412693,-2.7326E-05],[8.3448187,-2.7326E-05],[8.348368,-2.8357E-05],[8.3519173,-3.1967E-05],[8.3554667,-3.2482E-05],[8.359016,-2.7842E-05],[8.3625653,-3.1451E-05],[8.3661147,-2.8357E-05],[8.369664,-3.042E-05],[8.3732133,-3.3513E-05],[8.3767627,-3.1451E-05],[8.380312,-3.1967E-05],[8.3838613,-2.4748E-05],[8.3874107,-2.6811E-05],[8.39096,-2.8873E-05],[8.3945093,-2.8873E-05],[8.3980587,-3.1451E-05],[8.401608,-2.7842E-05],[8.4051573,-3.0935E-05],[8.4087067,-3.2482E-05],[8.412256,-3.042E-05],[8.4158053,-3.1451E-05],[8.4193547,-3.1967E-05],[8.422904,-3.1451E-05],[8.4264533,-3.2998E-05],[8.4300027,-2.9904E-05],[8.433552,-2.7842E-05],[8.4371013,-3.1451E-05],[8.4406507,-2.9904E-05],[8.4442,-2.7842E-05],[8.4477493,-3.1967E-05],[8.4512987,-3.4544E-05],[8.454848,-2.7842E-05],[8.4583973,-2.9389E-05],[8.4619467,-3.3513E-05],[8.465496,-3.0935E-05],[8.4690453,-3.042E-05],[8.4725947,-2.5779E-05],[8.476144,-2.5264E-05],[8.4796933,-2.8873E-05],[8.4832427,-2.8357E-05],[8.486792,-2.6811E-05],[8.4903413,-2.9904E-05],[8.4938907,-3.3513E-05],[8.49744,-2.9389E-05],[8.5009893,-2.9904E-05],[8.5045387,-2.8357E-05],[8.508088,-2.4748E-05],[8.5116373,-3.042E-05],[8.5151867,-3.1451E-05],[8.518736,-3.1451E-05],[8.5222853,-3.0935E-05],[8.5258347,-2.5779E-05],[8.529384,-2.9904E-05],[8.5329333,-3.4029E-05],[8.5364827,-3.2482E-05],[8.540032,-3.042E-05],[8.5435813,-2.9389E-05],[8.5471307,-3.042E-05],[8.55068,-2.8357E-05],[8.5542293,-3.1967E-05],[8.5577787,-3.506E-05],[8.561328,-3.042E-05],[8.5648773,-2.9389E-05],[8.5684267,-2.7326E-05]]}
-{"quant":[8.91349,-3.0473E-05],"mems":[[8.81688,-3.042E-05],[8.8204293,-2.6811E-05],[8.8239787,-2.6811E-05],[8.827528,-3.1967E-05],[8.8310773,-2.9904E-05],[8.8346267,-2.5264E-05],[8.838176,-2.8873E-05],[8.8417253,-3.0935E-05],[8.8452747,-3.2998E-05],[8.848824,-3.1451E-05],[8.8523733,-2.6295E-05],[8.8559227,-2.9904E-05],[8.859472,-2.7842E-05],[8.8630213,-2.9904E-05],[8.8665707,-3.1967E-05],[8.87012,-2.8873E-05],[8.8736693,-3.3513E-05],[8.8772187,-2.9389E-05],[8.880768,-2.9389E-05],[8.8843173,-3.3513E-05],[8.8878667,-3.042E-05],[8.891416,-3.042E-05],[8.8949653,-2.5779E-05],[8.8985147,-2.6811E-05],[8.902064,-3.1451E-05],[8.9056133,-3.0935E-05],[8.9091627,-3.042E-05],[8.912712,-3.0935E-05],[8.9162613,-2.9389E-05],[8.9198107,-2.4748E-05],[8.92336,-3.042E-05],[8.9269093,-3.6607E-05],[8.9304587,-3.0935E-05],[8.934008,-2.7326E-05],[8.9375573,-3.042E-05],[8.9411067,-2.7842E-05],[8.944656,-2.8357E-05],[8.9482053,-3.042E-05],[8.9517547,-2.9904E-05],[8.955304,-2.9904E-05],[8.9588533,-2.8357E-05],[8.9624027,-2.9389E-05],[8.965952,-3.1451E-05],[8.9695013,-3.2998E-05],[8.9730507,-3.1451E-05],[8.9766,-2.8873E-05],[8.9801493,-3.1451E-05],[8.9836987,-3.2998E-05],[8.987248,-3.2482E-05],[8.9907973,-3.3513E-05],[8.9943467,-3.2998E-05],[8.997896,-2.9389E-05],[9.0014453,-2.5779E-05],[9.0049947,-2.8873E-05],[9.008544,-3.0935E-05],[9.0120933,-3.2482E-05],[9.0156427,-3.4029E-05],[9.019192,-2.7842E-05],[9.0227413,-2.7842E-05],[9.0262907,-3.2482E-05],[9.02984,-3.1967E-05],[9.0333893,-2.9904E-05],[9.0369387,-3.1967E-05],[9.040488,-3.0935E-05],[9.0440373,-2.9389E-05],[9.0475867,-3.2998E-05],[9.051136,-3.1451E-05],[9.0546853,-2.9389E-05],[9.0582347,-3.2482E-05],[9.061784,-3.0935E-05],[9.0653333,-2.6811E-05],[9.0688827,-3.1967E-05],[9.072432,-3.6607E-05],[9.0759813,-3.4544E-05],[9.0795307,-2.9389E-05],[9.08308,-2.0624E-05],[9.0866293,-2.7326E-05],[9.0901787,-3.0935E-05],[9.093728,-3.0935E-05],[9.0972773,-3.2482E-05],[9.1008267,-2.5264E-05],[9.104376,-3.1451E-05],[9.1079253,-3.2482E-05],[9.1114747,-2.9389E-05],[9.115024,-3.1451E-05]]}
-{"quant":[9.34793,-3.0793E-05],"mems":[[9.2498987,-2.7326E-05],[9.253448,-2.8357E-05],[9.2569973,-3.2482E-05],[9.2605467,-3.1451E-05],[9.264096,-3.4029E-05],[9.2676453,-3.2998E-05],[9.2711947,-3.1967E-05],[9.274744,-3.2482E-05],[9.2782933,-2.9389E-05],[9.2818427,-2.9904E-05],[9.285392,-2.9389E-05],[9.2889413,-3.0935E-05],[9.2924907,-3.2998E-05],[9.29604,-3.506E-05],[9.2995893,-3.042E-05],[9.3031387,-2.8357E-05],[9.306688,-3.1967E-05],[9.3102373,-3.1451E-05],[9.3137867,-2.9904E-05],[9.317336,-2.7842E-05],[9.3208853,-2.9389E-05],[9.3244347,-3.1967E-05],[9.327984,-2.7842E-05],[9.3315333,-2.8357E-05],[9.3350827,-3.0935E-05],[9.338632,-3.1451E-05],[9.3421813,-3.2482E-05],[9.3457307,-3.1451E-05],[9.34928,-2.9389E-05],[9.3528293,-3.042E-05],[9.3563787,-2.9904E-05],[9.359928,-2.9904E-05],[9.3634773,-3.4029E-05],[9.3670267,-2.8357E-05],[9.370576,-2.4748E-05],[9.3741253,-3.0935E-05],[9.3776747,-3.1967E-05],[9.381224,-3.6607E-05],[9.3847733,-3.7638E-05],[9.3883227,-3.042E-05],[9.391872,-2.6811E-05],[9.3954213,-3.042E-05],[9.3989707,-3.4544E-05],[9.40252,-2.9904E-05],[9.4060693,-2.9389E-05],[9.4096187,-3.1451E-05],[9.413168,-2.7326E-05],[9.4167173,-2.6811E-05],[9.4202667,-2.8873E-05],[9.423816,-2.9389E-05],[9.4273653,-3.042E-05],[9.4309147,-3.1451E-05],[9.434464,-3.4544E-05],[9.4380133,-3.4544E-05],[9.4415627,-3.0935E-05],[9.445112,-3.0935E-05],[9.4486613,-3.0935E-05],[9.4522107,-2.8873E-05],[9.45576,-2.6295E-05],[9.4593093,-2.9389E-05],[9.4628587,-3.1967E-05],[9.466408,-2.8873E-05],[9.4699573,-2.7326E-05],[9.4735067,-2.8873E-05],[9.477056,-3.4029E-05],[9.4806053,-3.2998E-05],[9.4841547,-3.1967E-05],[9.487704,-3.6607E-05],[9.4912533,-3.2998E-05],[9.4948027,-2.9904E-05],[9.498352,-2.9904E-05],[9.5019013,-3.2482E-05],[9.5054507,-3.1967E-05],[9.509,-2.8357E-05],[9.5125493,-3.042E-05],[9.5160987,-3.042E-05],[9.519648,-2.6295E-05],[9.5231973,-2.6295E-05],[9.5267467,-2.8357E-05],[9.530296,-2.7842E-05],[9.5338453,-2.6295E-05],[9.5373947,-2.2686E-05],[9.540944,-2.8873E-05],[9.5444933,-3.5576E-05],[9.5480427,-2.9904E-05]]}
-{"quant":[9.81485,-2.9815E-05],"mems":[[9.7148613,-3.3513E-05],[9.7184107,-3.1451E-05],[9.72196,-2.8873E-05],[9.7255093,-2.9389E-05],[9.7290587,-3.1451E-05],[9.732608,-3.2482E-05],[9.7361573,-3.1967E-05],[9.7397067,-3.1451E-05],[9.743256,-3.0935E-05],[9.7468053,-3.0935E-05],[9.7503547,-2.8873E-05],[9.753904,-2.7326E-05],[9.7574533,-2.7842E-05],[9.7610027,-2.9904E-05],[9.764552,-3.0935E-05],[9.7681013,-3.2482E-05],[9.7716507,-3.4029E-05],[9.7752,-3.1451E-05],[9.7787493,-3.0935E-05],[9.7822987,-3.2998E-05],[9.785848,-3.2482E-05],[9.7893973,-2.9904E-05],[9.7929467,-2.9389E-05],[9.796496,-3.506E-05],[9.8000453,-3.6091E-05],[9.8035947,-2.9904E-05],[9.807144,-3.1967E-05],[9.8106933,-2.8873E-05],[9.8142427,-3.4029E-05],[9.817792,-3.6091E-05],[9.8213413,-2.4233E-05],[9.8248907,-3.042E-05],[9.82844,-2.9904E-05],[9.8319893,-2.6295E-05],[9.8355387,-3.1451E-05],[9.839088,-3.042E-05],[9.8426373,-2.5779E-05],[9.8461867,-2.6811E-05],[9.849736,-3.0935E-05],[9.8532853,-3.0935E-05],[9.8568347,-3.0935E-05],[9.860384,-3.1967E-05],[9.8639333,-3.2998E-05],[9.8674827,-3.1451E-05],[9.871032,-2.7842E-05],[9.8745813,-2.8873E-05],[9.8781307,-3.042E-05],[9.88168,-2.5779E-05],[9.8852293,-2.5264E-05],[9.8887787,-2.8357E-05],[9.892328,-2.9904E-05],[9.8958773,-3.1451E-05],[9.8994267,-2.9389E-05],[9.902976,-3.2482E-05],[9.9065253,-2.8357E-05],[9.9100747,-2.7842E-05],[9.913624,-3.4544E-05],[9.9171733,-3.3513E-05],[9.9207227,-3.1451E-05],[9.924272,-3.042E-05],[9.9278213,-2.9904E-05],[9.9313707,-3.4029E-05],[9.93492,-2.7842E-05],[9.9384693,-2.5779E-05],[9.9420187,-3.8154E-05],[9.945568,-2.8873E-05],[9.9491173,-2.2686E-05],[9.9526667,-3.1967E-05],[9.956216,-3.1967E-05],[9.9597653,-3.1967E-05],[9.9633147,-2.8873E-05],[9.966864,-2.7326E-05],[9.9704133,-2.3202E-05],[9.9739627,-2.5264E-05],[9.977512,-3.4029E-05],[9.9810613,-2.9904E-05],[9.9846107,-2.7326E-05],[9.98816,-2.6811E-05],[9.9917093,-2.6811E-05],[9.9952587,-3.1451E-05],[9.998808,-3.4029E-05],[10.002357,-3.3513E-05],[10.005907,-3.2998E-05],[10.009456,-3.2482E-05],[10.013005,-3.0935E-05],[10.016555,-2.8357E-05]]}
-{"quant":[10.2746,-2.8393E-05],"mems":[[10.176275,-2.4748E-05],[10.179824,-2.9904E-05],[10.183373,-2.8873E-05],[10.186923,-2.7842E-05],[10.190472,-2.7842E-05],[10.194021,-3.042E-05],[10.197571,-2.8873E-05],[10.20112,-2.9389E-05],[10.204669,-3.1967E-05],[10.208219,-2.7842E-05],[10.211768,-2.8357E-05],[10.215317,-3.4544E-05],[10.218867,-3.0935E-05],[10.222416,-2.7842E-05],[10.225965,-3.4029E-05],[10.229515,-2.9389E-05],[10.233064,-2.6295E-05],[10.236613,-2.6811E-05],[10.240163,-2.7326E-05],[10.243712,-2.6811E-05],[10.247261,-2.6295E-05],[10.250811,-3.1967E-05],[10.25436,-2.8357E-05],[10.257909,-2.9389E-05],[10.261459,-2.8357E-05],[10.265008,-3.042E-05],[10.268557,-3.6607E-05],[10.272107,-2.6295E-05],[10.275656,-2.3717E-05],[10.279205,-2.5779E-05],[10.282755,-2.5264E-05],[10.286304,-2.6811E-05],[10.289853,-2.4748E-05],[10.293403,-2.9389E-05],[10.296952,-2.8357E-05],[10.300501,-2.6295E-05],[10.304051,-3.4029E-05],[10.3076,-3.2482E-05],[10.311149,-2.7842E-05],[10.314699,-2.7326E-05],[10.318248,-2.5264E-05],[10.321797,-2.5779E-05],[10.325347,-2.6811E-05],[10.328896,-2.7842E-05],[10.332445,-3.0935E-05],[10.335995,-2.9389E-05],[10.339544,-2.8357E-05],[10.343093,-3.0935E-05],[10.346643,-2.9389E-05],[10.350192,-2.7326E-05],[10.353741,-3.0935E-05],[10.357291,-3.042E-05],[10.36084,-2.3202E-05],[10.364389,-2.8357E-05],[10.367939,-3.506E-05],[10.371488,-3.042E-05],[10.375037,-3.0935E-05],[10.378587,-2.9904E-05],[10.382136,-2.7842E-05],[10.385685,-2.8873E-05],[10.389235,-2.8873E-05],[10.392784,-2.9904E-05],[10.396333,-2.6811E-05],[10.399883,-2.4748E-05],[10.403432,-2.6811E-05],[10.406981,-3.042E-05],[10.410531,-3.3513E-05],[10.41408,-2.9904E-05],[10.417629,-2.6811E-05],[10.421179,-2.6295E-05],[10.424728,-2.5264E-05],[10.428277,-2.7326E-05],[10.431827,-2.4748E-05],[10.435376,-2.8357E-05],[10.438925,-3.1451E-05],[10.442475,-2.4748E-05],[10.446024,-2.7326E-05],[10.449573,-2.8357E-05],[10.453123,-2.9904E-05],[10.456672,-3.042E-05],[10.460221,-2.6295E-05],[10.463771,-2.7326E-05],[10.46732,-2.9904E-05],[10.470869,-3.1451E-05],[10.474419,-3.1967E-05],[10.477968,-3.1451E-05]]}
-{"quant":[10.7294,-0.23922],"mems":[[10.722872,-3.042E-05],[10.726421,-2.8873E-05],[10.729971,-2.9389E-05],[10.73352,-3.2998E-05],[10.737069,-3.0935E-05],[10.740619,-2.6295E-05],[10.744168,-2.5264E-05],[10.747717,-3.2998E-05],[10.751267,-2.9904E-05],[10.754816,-2.3717E-05],[10.758365,-3.0935E-05],[10.761915,-3.1451E-05],[10.765464,-3.0935E-05],[10.769013,-3.1451E-05],[10.772563,-2.7842E-05],[10.776112,-2.6811E-05],[10.779661,-2.4233E-05],[10.783211,-2.9904E-05],[10.78676,-3.4029E-05],[10.790309,-2.9389E-05],[10.793859,-2.8357E-05],[10.797408,-2.5779E-05],[10.800957,-2.9389E-05],[10.804507,-3.2482E-05],[10.808056,-2.8357E-05],[10.811605,-2.7326E-05],[10.815155,-2.5264E-05],[10.818704,-2.4748E-05],[10.822253,-2.5779E-05],[10.825803,-2.9904E-05],[10.829352,-3.2998E-05],[10.832901,-3.042E-05],[10.836451,-2.6811E-05],[10.84,-2.4233E-05],[10.843448,-2.6295E-05],[10.846896,-2.8873E-05],[10.850344,-3.0935E-05],[10.853792,-3.2998E-05],[10.85724,-2.7842E-05],[10.860688,-2.6811E-05],[10.864136,-3.0935E-05],[10.867584,-3.1967E-05],[10.871032,-3.0935E-05],[10.87448,-2.7842E-05],[10.877928,-2.8357E-05],[10.881376,-2.7842E-05],[10.884824,-3.042E-05],[10.888272,-3.042E-05],[10.89172,-2.5264E-05],[10.895168,-2.7326E-05],[10.898616,-2.8873E-05],[10.902064,-2.9904E-05],[10.905512,-2.9389E-05],[10.90896,-2.8873E-05],[10.912408,-3.042E-05],[10.915856,-2.6295E-05],[10.919304,-2.8873E-05],[10.922752,-3.2482E-05],[10.9262,-2.9904E-05],[10.929648,-2.9389E-05],[10.933096,-3.042E-05],[10.936544,-3.042E-05],[10.939992,-2.7842E-05],[10.94344,-3.0935E-05],[10.946888,-3.1451E-05],[10.950336,-3.0935E-05],[10.953784,-3.042E-05],[10.957232,-2.6295E-05],[10.96068,-3.042E-05],[10.964128,-3.042E-05],[10.967576,-3.1451E-05],[10.971024,-3.042E-05],[10.974472,-2.5264E-05],[10.97792,-2.6295E-05],[10.981368,-2.9904E-05],[10.984816,-3.3513E-05],[10.988264,-2.9389E-05],[10.991712,-2.9904E-05],[10.99516,-3.2998E-05],[10.998608,-2.8873E-05],[11.002056,-2.6295E-05],[11.005504,-2.8357E-05],[11.008952,-3.0935E-05],[11.0124,-2.7326E-05],[11.015848,-2.2686E-05]]}
-{"quant":[11.2116,-2.8426E-05],"mems":[[11.112392,-3.3513E-05],[11.11584,-3.4029E-05],[11.119288,-3.1967E-05],[11.122736,-2.9904E-05],[11.126184,-3.1451E-05],[11.129632,-2.9389E-05],[11.13308,-2.9389E-05],[11.136528,-3.042E-05],[11.139976,-2.7842E-05],[11.143424,-2.7842E-05],[11.146872,-2.9389E-05],[11.15032,-2.9904E-05],[11.153768,-2.6811E-05],[11.157216,-2.7842E-05],[11.160664,-2.9904E-05],[11.164112,-2.8357E-05],[11.16756,-2.6811E-05],[11.171008,-3.1451E-05],[11.174456,-3.2482E-05],[11.177904,-3.0935E-05],[11.181352,-3.1451E-05],[11.1848,-2.9389E-05],[11.188248,-3.042E-05],[11.191696,-2.9389E-05],[11.195144,-3.042E-05],[11.198592,-3.2998E-05],[11.20204,-3.1451E-05],[11.205488,-3.3513E-05],[11.208936,-3.1967E-05],[11.212384,-2.4233E-05],[11.215832,-2.5264E-05],[11.21928,-2.8873E-05],[11.222728,-3.042E-05],[11.226176,-3.1967E-05],[11.229624,-2.6295E-05],[11.233072,-2.5779E-05],[11.23652,-2.8357E-05],[11.239968,-2.8357E-05],[11.243416,-3.1967E-05],[11.246864,-3.2482E-05],[11.250312,-2.9904E-05],[11.25376,-2.6811E-05],[11.257208,-2.5264E-05],[11.260656,-3.042E-05],[11.264104,-3.3513E-05],[11.267552,-3.042E-05],[11.271,-2.8357E-05],[11.274448,-2.4748E-05],[11.277896,-2.7326E-05],[11.281344,-2.9904E-05],[11.284792,-2.4233E-05],[11.28824,-2.6295E-05],[11.291688,-3.0935E-05],[11.295136,-2.6811E-05],[11.298584,-2.3717E-05],[11.302032,-2.9389E-05],[11.30548,-3.2482E-05],[11.308928,-2.9389E-05],[11.312376,-2.8873E-05],[11.315824,-2.6295E-05],[11.319272,-2.6811E-05],[11.32272,-3.4029E-05],[11.326168,-3.506E-05],[11.329616,-2.9389E-05],[11.333064,-2.5779E-05],[11.336512,-2.6295E-05],[11.33996,-2.6811E-05],[11.343408,-2.8873E-05],[11.346856,-3.1967E-05],[11.350304,-3.1967E-05],[11.353752,-2.5779E-05],[11.3572,-2.5779E-05],[11.360648,-3.2998E-05],[11.364096,-3.0935E-05],[11.367544,-2.7326E-05],[11.370992,-2.9389E-05],[11.37444,-2.5779E-05],[11.377888,-2.3717E-05],[11.381336,-3.0935E-05],[11.384784,-3.1451E-05],[11.388232,-2.9389E-05],[11.39168,-3.042E-05],[11.395128,-2.7842E-05],[11.398576,-2.8873E-05],[11.402024,-2.9904E-05],[11.405472,-3.0935E-05],[11.40892,-3.0935E-05],[11.412368,-2.8357E-05]]}
-{"quant":[11.9188,-2.92E-05],"mems":[[11.819232,-2.4233E-05],[11.82268,-2.9904E-05],[11.826128,-3.5576E-05],[11.829576,-3.2998E-05],[11.833024,-2.7842E-05],[11.836472,-2.8357E-05],[11.83992,-2.6295E-05],[11.843368,-2.7326E-05],[11.846816,-2.5779E-05],[11.850264,-2.5264E-05],[11.853712,-2.8873E-05],[11.85716,-2.8873E-05],[11.860608,-2.6811E-05],[11.864056,-2.9904E-05],[11.867504,-3.4544E-05],[11.870952,-2.7326E-05],[11.8744,-2.7842E-05],[11.877848,-2.7842E-05],[11.881296,-2.5779E-05],[11.884744,-3.0935E-05],[11.888192,-3.0935E-05],[11.89164,-2.7842E-05],[11.895088,-2.5264E-05],[11.898536,-2.7842E-05],[11.901984,-2.7326E-05],[11.905432,-2.6295E-05],[11.90888,-3.2998E-05],[11.912328,-3.2482E-05],[11.915776,-3.1451E-05],[11.919224,-2.8873E-05],[11.922672,-2.6295E-05],[11.92612,-3.2998E-05],[11.929568,-3.2482E-05],[11.933016,-2.9389E-05],[11.936464,-2.9389E-05],[11.939912,-2.8873E-05],[11.94336,-3.0935E-05],[11.946808,-2.9389E-05],[11.950256,-2.8357E-05],[11.953704,-2.6295E-05],[11.957152,-2.7326E-05],[11.9606,-3.0935E-05],[11.964048,-2.6811E-05],[11.967496,-2.7842E-05],[11.970944,-3.2998E-05],[11.974392,-2.8873E-05],[11.97784,-2.6295E-05],[11.981288,-3.1967E-05],[11.984736,-3.2482E-05],[11.988184,-2.9904E-05],[11.991632,-3.042E-05],[11.99508,-3.042E-05],[11.998528,-2.6811E-05],[12.001976,-2.5264E-05],[12.005424,-2.6811E-05],[12.008872,-2.7842E-05],[12.01232,-3.042E-05],[12.015768,-3.042E-05],[12.019216,-2.8873E-05],[12.022664,-3.3513E-05],[12.026112,-3.506E-05],[12.02956,-2.8873E-05],[12.033008,-2.5264E-05],[12.036456,-2.5264E-05],[12.039904,-2.9904E-05],[12.043352,-2.9904E-05],[12.0468,-2.8357E-05],[12.050248,-2.6295E-05],[12.053696,-2.6295E-05],[12.057144,-2.9389E-05],[12.060592,-2.7842E-05],[12.06404,-3.2998E-05],[12.067488,-3.506E-05],[12.070936,-3.2482E-05],[12.074384,-3.2482E-05],[12.077832,-3.1451E-05],[12.08128,-2.8873E-05],[12.084728,-3.042E-05],[12.088176,-2.9904E-05],[12.091624,-2.6295E-05],[12.095072,-3.2998E-05],[12.09852,-2.8873E-05],[12.101968,-2.6811E-05],[12.105416,-3.1967E-05],[12.108864,-2.9904E-05],[12.112312,-2.9389E-05],[12.11576,-2.7842E-05],[12.119208,-3.1451E-05]]}
-{"quant":[12.3805,-2.8598E-05],"mems":[[12.281264,-2.5779E-05],[12.284712,-2.6811E-05],[12.28816,-2.7842E-05],[12.291608,-3.4029E-05],[12.295056,-3.7122E-05],[12.298504,-2.7842E-05],[12.301952,-2.7842E-05],[12.3054,-3.2482E-05],[12.308848,-2.8873E-05],[12.312296,-2.6811E-05],[12.315744,-3.4029E-05],[12.319192,-3.3513E-05],[12.32264,-2.8357E-05],[12.326088,-3.1967E-05],[12.329536,-3.2482E-05],[12.332984,-2.8873E-05],[12.336432,-2.3202E-05],[12.33988,-2.7326E-05],[12.343328,-3.1967E-05],[12.346776,-3.1967E-05],[12.350224,-2.7842E-05],[12.353672,-2.3717E-05],[12.35712,-3.042E-05],[12.360568,-2.8873E-05],[12.364016,-3.0935E-05],[12.367464,-2.9904E-05],[12.370912,-2.5779E-05],[12.37436,-3.0935E-05],[12.377808,-2.7842E-05],[12.381256,-2.5779E-05],[12.384704,-2.5779E-05],[12.388152,-2.8873E-05],[12.3916,-3.3513E-05],[12.395048,-2.9904E-05],[12.398496,-2.7326E-05],[12.401944,-2.7326E-05],[12.405392,-2.5779E-05],[12.40884,-2.5779E-05],[12.412288,-3.0935E-05],[12.415736,-3.1451E-05],[12.419184,-2.7842E-05],[12.422632,-2.7326E-05],[12.42608,-2.4748E-05],[12.429528,-2.5779E-05],[12.432976,-2.8357E-05],[12.436424,-2.8873E-05],[12.439872,-3.1967E-05],[12.44332,-2.8357E-05],[12.446768,-2.6295E-05],[12.450216,-2.7842E-05],[12.453664,-2.5264E-05],[12.457112,-2.9389E-05],[12.46056,-3.4029E-05],[12.464008,-3.4544E-05],[12.467456,-2.8357E-05],[12.470904,-2.8357E-05],[12.474352,-3.2998E-05],[12.4778,-2.6811E-05],[12.481248,-2.8357E-05],[12.484696,-3.0935E-05],[12.488144,-2.9904E-05],[12.491592,-3.1967E-05],[12.49504,-3.042E-05],[12.498488,-2.6295E-05],[12.501936,-2.6811E-05],[12.505384,-2.7326E-05],[12.508832,-2.6295E-05],[12.51228,-3.2998E-05],[12.515728,-3.042E-05],[12.519176,-3.042E-05],[12.522624,-3.4029E-05],[12.526072,-2.9389E-05],[12.52952,-3.042E-05],[12.532968,-2.5779E-05],[12.536416,-2.5264E-05],[12.539864,-2.7842E-05],[12.543312,-2.6295E-05],[12.54676,-3.2482E-05],[12.550208,-3.4544E-05],[12.553656,-3.042E-05],[12.557104,-2.6811E-05],[12.560552,-2.8357E-05],[12.564,-3.1451E-05],[12.567448,-2.9904E-05],[12.570896,-3.1451E-05],[12.574344,-3.0935E-05],[12.577792,-2.6811E-05],[12.58124,-2.8357E-05]]}
-{"quant":[12.8633,-2.9543E-05],"mems":[[12.763984,-2.7326E-05],[12.767432,-3.3513E-05],[12.77088,-3.0935E-05],[12.774328,-2.5264E-05],[12.777776,-2.7326E-05],[12.781224,-2.3717E-05],[12.784672,-2.9904E-05],[12.78812,-2.6811E-05],[12.791568,-2.7326E-05],[12.795016,-3.042E-05],[12.798464,-2.3202E-05],[12.801912,-2.6811E-05],[12.80536,-2.8357E-05],[12.808808,-2.6811E-05],[12.812256,-2.6811E-05],[12.815704,-2.8357E-05],[12.819152,-2.6811E-05],[12.8226,-2.6295E-05],[12.826048,-2.9904E-05],[12.829496,-2.6811E-05],[12.832944,-2.9389E-05],[12.836392,-2.8873E-05],[12.83984,-2.7326E-05],[12.843288,-2.5264E-05],[12.846736,-2.7842E-05],[12.850184,-3.2482E-05],[12.853632,-2.7326E-05],[12.85708,-3.0935E-05],[12.860528,-3.4029E-05],[12.863976,-3.0935E-05],[12.867424,-2.9389E-05],[12.870872,-3.3513E-05],[12.87432,-3.4029E-05],[12.877768,-2.8873E-05],[12.881216,-2.7326E-05],[12.884664,-2.8357E-05],[12.888112,-3.0935E-05],[12.89156,-2.9389E-05],[12.895008,-2.7842E-05],[12.898456,-2.7326E-05],[12.901904,-3.042E-05],[12.905352,-3.1967E-05],[12.9088,-2.7326E-05],[12.912248,-2.7326E-05],[12.915696,-2.9904E-05],[12.919144,-2.9389E-05],[12.922592,-2.9904E-05],[12.92604,-3.042E-05],[12.929488,-2.7326E-05],[12.932936,-2.7842E-05],[12.936384,-2.7326E-05],[12.939832,-2.7842E-05],[12.94328,-3.042E-05],[12.946728,-3.042E-05],[12.950176,-3.0935E-05],[12.953624,-2.9904E-05],[12.957072,-3.042E-05],[12.96052,-2.8873E-05],[12.963968,-3.042E-05],[12.967416,-3.1967E-05],[12.970864,-2.7326E-05],[12.974312,-2.4748E-05],[12.97776,-2.5264E-05],[12.981208,-3.1967E-05],[12.984656,-3.3513E-05],[12.988104,-3.0935E-05],[12.991552,-2.9389E-05],[12.995,-2.8357E-05],[12.998448,-2.7326E-05],[13.001896,-2.8873E-05],[13.005344,-3.2482E-05],[13.008792,-3.0935E-05],[13.01224,-3.042E-05],[13.015688,-2.5779E-05],[13.019136,-2.3202E-05],[13.022584,-2.6811E-05],[13.026032,-2.8873E-05],[13.02948,-3.0935E-05],[13.032928,-2.9904E-05],[13.036376,-2.7326E-05],[13.039824,-2.8357E-05],[13.043272,-3.0935E-05],[13.04672,-2.7842E-05],[13.050168,-3.042E-05],[13.053616,-3.042E-05],[13.057064,-2.5779E-05],[13.060512,-2.7842E-05],[13.06396,-3.0935E-05]]}
-{"quant":[13.3204,0.38685],"mems":[[13.32256,-3.042E-05],[13.326008,-2.9904E-05],[13.329456,-2.9904E-05],[13.332904,-2.8873E-05],[13.336352,-3.2998E-05],[13.3398,-3.1967E-05],[13.343248,-3.042E-05],[13.346696,-3.1451E-05],[13.350144,-3.042E-05],[13.353592,-2.8357E-05],[13.35704,-2.7842E-05],[13.360488,-2.9389E-05],[13.363936,-2.9904E-05],[13.367384,-3.1451E-05],[13.370832,-2.7326E-05],[13.37428,-2.5779E-05],[13.377728,-2.4233E-05],[13.381176,-2.7842E-05],[13.384624,-3.2998E-05],[13.388072,-2.6811E-05],[13.39152,-3.042E-05],[13.394968,-2.7842E-05],[13.398416,-2.217E-05],[13.401864,-2.7326E-05],[13.405312,-2.8873E-05],[13.40876,-2.9389E-05],[13.412208,-2.8357E-05],[13.415656,-3.1967E-05],[13.419104,-3.2998E-05],[13.422552,-3.0935E-05],[13.426,-3.2998E-05],[13.429411,-2.8357E-05],[13.432821,-2.9904E-05],[13.436232,-3.0935E-05],[13.439643,-2.6811E-05],[13.443053,-2.7326E-05],[13.446464,-3.042E-05],[13.449875,-3.2998E-05],[13.453285,-2.8873E-05],[13.456696,-2.8357E-05],[13.460107,-2.6811E-05],[13.463517,-2.7842E-05],[13.466928,-3.4029E-05],[13.470339,-3.042E-05],[13.473749,-3.2482E-05],[13.47716,-3.3513E-05],[13.480571,-2.8873E-05],[13.483981,-2.8357E-05],[13.487392,-3.042E-05],[13.490803,-3.1451E-05],[13.494213,-2.7842E-05],[13.497624,-2.7326E-05],[13.501035,-2.7842E-05],[13.504445,-3.2998E-05],[13.507856,-3.4029E-05],[13.511267,-2.8873E-05],[13.514677,-3.1967E-05],[13.518088,-2.9389E-05],[13.521499,-2.8873E-05],[13.524909,-2.9389E-05],[13.52832,-2.6295E-05],[13.531731,-2.9904E-05],[13.535141,-3.1967E-05],[13.538552,-3.042E-05],[13.541963,-3.0935E-05],[13.545373,-2.9389E-05],[13.548784,-2.5264E-05],[13.552195,-3.0935E-05],[13.555605,-3.3513E-05],[13.559016,-2.6295E-05],[13.562427,-2.4748E-05],[13.565837,-2.9389E-05],[13.569248,-3.1451E-05],[13.572659,-2.9904E-05],[13.576069,-3.0935E-05],[13.57948,-2.8357E-05],[13.582891,-2.9389E-05],[13.586301,-3.1451E-05],[13.589712,-2.5264E-05],[13.593123,-2.6295E-05],[13.596533,-2.7326E-05],[13.599944,-2.2686E-05],[13.603355,-2.6295E-05],[13.606765,-2.8873E-05],[13.610176,-2.6295E-05]]}
-{"quant":[13.8151,-2.865E-05],"mems":[[13.715907,-3.1451E-05],[13.719317,-2.8873E-05],[13.722728,-2.4233E-05],[13.726139,-2.6295E-05],[13.729549,-2.9904E-05],[13.73296,-3.1451E-05],[13.736371,-2.9389E-05],[13.739781,-2.9389E-05],[13.743192,-3.042E-05],[13.746603,-2.4748E-05],[13.750013,-2.1655E-05],[13.753424,-2.4748E-05],[13.756835,-2.5779E-05],[13.760245,-2.8873E-05],[13.763656,-3.2482E-05],[13.767067,-3.1967E-05],[13.770477,-2.7842E-05],[13.773888,-2.6295E-05],[13.777299,-2.7326E-05],[13.780709,-2.217E-05],[13.78412,-2.7326E-05],[13.787531,-3.2482E-05],[13.790941,-3.042E-05],[13.794352,-2.9904E-05],[13.797763,-2.4748E-05],[13.801173,-3.1967E-05],[13.804584,-3.1451E-05],[13.807995,-2.5779E-05],[13.811405,-2.8873E-05],[13.814816,-2.5779E-05],[13.818227,-2.8357E-05],[13.821637,-2.9389E-05],[13.825048,-2.9389E-05],[13.828459,-3.0935E-05],[13.831869,-3.042E-05],[13.83528,-2.8873E-05],[13.838691,-2.7326E-05],[13.842101,-2.4748E-05],[13.845512,-2.6295E-05],[13.848923,-2.9904E-05],[13.852333,-2.6811E-05],[13.855744,-2.5779E-05],[13.859155,-2.7842E-05],[13.862565,-2.9904E-05],[13.865976,-2.9904E-05],[13.869387,-2.9904E-05],[13.872797,-3.042E-05],[13.876208,-2.7326E-05],[13.879619,-2.7842E-05],[13.883029,-2.8873E-05],[13.88644,-2.9904E-05],[13.889851,-3.1451E-05],[13.893261,-3.2482E-05],[13.896672,-2.9389E-05],[13.900083,-2.4748E-05],[13.903493,-2.7842E-05],[13.906904,-3.0935E-05],[13.910315,-2.6811E-05],[13.913725,-2.6811E-05],[13.917136,-2.8873E-05],[13.920547,-2.7326E-05],[13.923957,-2.8357E-05],[13.927368,-2.9904E-05],[13.930779,-2.6295E-05],[13.934189,-2.3202E-05],[13.9376,-2.4233E-05],[13.941011,-2.5264E-05],[13.944421,-3.042E-05],[13.947832,-3.042E-05],[13.951243,-2.6811E-05],[13.954653,-2.7842E-05],[13.958064,-2.3202E-05],[13.961475,-2.5264E-05],[13.964885,-2.8357E-05],[13.968296,-2.6811E-05],[13.971707,-2.7842E-05],[13.975117,-3.042E-05],[13.978528,-3.3513E-05],[13.981939,-2.9389E-05],[13.985349,-2.6811E-05],[13.98876,-2.7842E-05],[13.992171,-2.5779E-05],[13.995581,-2.9389E-05],[13.998992,-2.9389E-05],[14.002403,-2.8873E-05],[14.005813,-3.1967E-05],[14.009224,-2.6811E-05],[14.012635,-2.6811E-05],[14.016045,-2.7842E-05]]}
-{"quant":[14.4171,-2.901E-05],"mems":[[14.319595,-3.1967E-05],[14.323005,-3.042E-05],[14.326416,-2.9904E-05],[14.329827,-3.042E-05],[14.333237,-2.8873E-05],[14.336648,-2.9904E-05],[14.340059,-2.9389E-05],[14.343469,-3.4029E-05],[14.34688,-3.0935E-05],[14.350291,-2.4233E-05],[14.353701,-2.6811E-05],[14.357112,-2.8873E-05],[14.360523,-3.1451E-05],[14.363933,-3.1451E-05],[14.367344,-3.1451E-05],[14.370755,-3.042E-05],[14.374165,-2.6811E-05],[14.377576,-2.5779E-05],[14.380987,-2.6811E-05],[14.384397,-3.1451E-05],[14.387808,-2.6811E-05],[14.391219,-2.3717E-05],[14.394629,-2.6811E-05],[14.39804,-2.7842E-05],[14.401451,-2.8873E-05],[14.404861,-2.7326E-05],[14.408272,-3.1451E-05],[14.411683,-2.7842E-05],[14.415093,-2.4233E-05],[14.418504,-2.9389E-05],[14.421915,-2.8357E-05],[14.425325,-2.8873E-05],[14.428736,-2.7842E-05],[14.432147,-2.5779E-05],[14.435557,-3.1451E-05],[14.438968,-3.2998E-05],[14.442379,-3.042E-05],[14.445789,-3.1967E-05],[14.4492,-2.6811E-05],[14.452611,-2.5779E-05],[14.456021,-3.1451E-05],[14.459432,-2.8357E-05],[14.462843,-3.1967E-05],[14.466253,-2.8873E-05],[14.469664,-2.5779E-05],[14.473075,-3.4029E-05],[14.476485,-3.2482E-05],[14.479896,-2.7842E-05],[14.483307,-2.8357E-05],[14.486717,-2.9389E-05],[14.490128,-3.042E-05],[14.493539,-3.0935E-05],[14.496949,-3.0935E-05],[14.50036,-2.8357E-05],[14.503771,-2.4233E-05],[14.507181,-2.3717E-05],[14.510592,-2.5779E-05],[14.514003,-2.8357E-05],[14.517413,-2.9389E-05],[14.520824,-3.042E-05],[14.524235,-3.0935E-05],[14.527645,-2.6811E-05],[14.531056,-2.8357E-05],[14.534467,-3.6091E-05],[14.537877,-3.3513E-05],[14.541288,-3.1451E-05],[14.544699,-3.4544E-05],[14.548109,-3.1451E-05],[14.55152,-2.7842E-05],[14.554931,-2.8873E-05],[14.558341,-2.9389E-05],[14.561752,-2.9389E-05],[14.565163,-2.6811E-05],[14.568573,-2.5779E-05],[14.571984,-2.5779E-05],[14.575395,-2.1139E-05],[14.578805,-2.5779E-05],[14.582216,-2.8873E-05],[14.585627,-2.6295E-05],[14.589037,-2.7326E-05],[14.592448,-2.9904E-05],[14.595859,-2.8357E-05],[14.599269,-2.5264E-05],[14.60268,-2.6295E-05],[14.606091,-2.7842E-05],[14.609501,-2.7326E-05],[14.612912,-2.9389E-05],[14.616323,-3.1967E-05],[14.619733,-2.8357E-05]]}
-{"quant":[14.9106,-2.9664E-05],"mems":[[14.810731,-2.6295E-05],[14.814141,-2.5779E-05],[14.817552,-2.7842E-05],[14.820963,-2.7842E-05],[14.824373,-2.5779E-05],[14.827784,-2.8357E-05],[14.831195,-3.042E-05],[14.834605,-2.5779E-05],[14.838016,-2.6295E-05],[14.841427,-2.7842E-05],[14.844837,-2.7842E-05],[14.848248,-2.6811E-05],[14.851659,-3.0935E-05],[14.855069,-2.9904E-05],[14.85848,-2.7326E-05],[14.861891,-3.1967E-05],[14.865301,-2.7842E-05],[14.868712,-2.8873E-05],[14.872123,-3.042E-05],[14.875533,-2.8873E-05],[14.878944,-2.8357E-05],[14.882355,-2.5264E-05],[14.885765,-2.4233E-05],[14.889176,-2.4748E-05],[14.892587,-2.7326E-05],[14.895997,-2.7842E-05],[14.899408,-2.7326E-05],[14.902819,-3.042E-05],[14.906229,-2.8873E-05],[14.90964,-2.9904E-05],[14.913051,-2.8873E-05],[14.916461,-2.5779E-05],[14.919872,-2.9389E-05],[14.923283,-2.7326E-05],[14.926693,-2.9904E-05],[14.930104,-3.4544E-05],[14.933515,-2.8357E-05],[14.936925,-2.9904E-05],[14.940336,-3.0935E-05],[14.943747,-3.042E-05],[14.947157,-3.1451E-05],[14.950568,-3.0935E-05],[14.953979,-2.9904E-05],[14.957389,-2.5264E-05],[14.9608,-2.6295E-05],[14.964211,-2.6295E-05],[14.967621,-2.7842E-05],[14.971032,-2.7842E-05],[14.974443,-2.9389E-05],[14.977853,-3.2998E-05],[14.981264,-3.1451E-05],[14.984675,-3.042E-05],[14.988085,-2.4748E-05],[14.991496,-2.8873E-05],[14.994907,-3.1451E-05],[14.998317,-2.6295E-05],[15.001728,-2.8873E-05],[15.005139,-3.3513E-05],[15.008549,-3.7122E-05],[15.01196,-3.3513E-05],[15.015371,-3.1967E-05],[15.018781,-3.0935E-05],[15.022192,-2.9389E-05],[15.025603,-2.7326E-05],[15.029013,-2.6295E-05],[15.032424,-3.1967E-05],[15.035835,-2.8873E-05],[15.039245,-2.5779E-05],[15.042656,-2.7842E-05],[15.046067,-2.8873E-05],[15.049477,-3.042E-05],[15.052888,-2.9389E-05],[15.056299,-3.1451E-05],[15.059709,-2.9389E-05],[15.06312,-2.4748E-05],[15.066531,-2.217E-05],[15.069941,-2.5779E-05],[15.073352,-3.042E-05],[15.076763,-2.6811E-05],[15.080173,-2.9389E-05],[15.083584,-2.9904E-05],[15.086995,-2.6295E-05],[15.090405,-2.8873E-05],[15.093816,-2.9904E-05],[15.097227,-3.3513E-05],[15.100637,-3.0935E-05],[15.104048,-2.3717E-05],[15.107459,-2.6811E-05],[15.110869,-2.6811E-05]]}
-{"quant":[15.4233,-2.9492E-05],"mems":[[15.325741,-2.5779E-05],[15.329152,-3.042E-05],[15.332563,-3.4544E-05],[15.335973,-3.3513E-05],[15.339384,-2.4748E-05],[15.342795,-2.7842E-05],[15.346205,-2.8357E-05],[15.349616,-2.4748E-05],[15.353027,-2.6295E-05],[15.356437,-2.5779E-05],[15.359848,-2.7842E-05],[15.363259,-2.5779E-05],[15.366669,-2.6811E-05],[15.37008,-3.1451E-05],[15.373491,-3.1451E-05],[15.376901,-2.6811E-05],[15.380312,-2.7326E-05],[15.383723,-2.7326E-05],[15.387133,-2.5779E-05],[15.390544,-3.2482E-05],[15.393955,-3.0935E-05],[15.397365,-2.9389E-05],[15.400776,-2.8873E-05],[15.404187,-2.3202E-05],[15.407597,-2.5264E-05],[15.411008,-2.6295E-05],[15.414419,-2.8873E-05],[15.417829,-2.7326E-05],[15.42124,-2.6295E-05],[15.424651,-2.8873E-05],[15.428061,-2.9389E-05],[15.431472,-3.3513E-05],[15.434883,-3.1451E-05],[15.438293,-3.2482E-05],[15.441704,-3.0935E-05],[15.445115,-2.5779E-05],[15.448525,-3.042E-05],[15.451936,-2.8873E-05],[15.455347,-2.7842E-05],[15.458757,-2.8357E-05],[15.462168,-2.6295E-05],[15.465579,-2.8357E-05],[15.468989,-3.1967E-05],[15.4724,-3.2998E-05],[15.475811,-2.8357E-05],[15.479221,-2.6295E-05],[15.482632,-2.4748E-05],[15.486043,-2.7326E-05],[15.489453,-2.8357E-05],[15.492864,-2.9904E-05],[15.496275,-3.1451E-05],[15.499685,-2.6811E-05],[15.503096,-3.1967E-05],[15.506507,-3.2482E-05],[15.509917,-2.9904E-05],[15.513328,-3.1967E-05],[15.516739,-2.7326E-05],[15.520149,-2.9904E-05],[15.52356,-3.042E-05],[15.526971,-2.6811E-05],[15.530381,-2.8357E-05],[15.533792,-3.1451E-05],[15.537203,-3.0935E-05],[15.540613,-2.8873E-05],[15.544024,-2.8873E-05],[15.547435,-2.6295E-05],[15.550845,-2.6295E-05],[15.554256,-2.8357E-05],[15.557667,-2.6295E-05],[15.561077,-2.4233E-05],[15.564488,-2.5779E-05],[15.567899,-2.9389E-05],[15.571309,-2.8873E-05],[15.57472,-2.9389E-05],[15.578131,-2.7842E-05],[15.581541,-2.5264E-05],[15.584952,-2.9904E-05],[15.588363,-3.0935E-05],[15.591773,-2.6295E-05],[15.595184,-2.8873E-05],[15.598595,-2.8873E-05],[15.602005,-2.5779E-05],[15.605416,-2.9389E-05],[15.608827,-3.2482E-05],[15.612237,-3.2998E-05],[15.615648,-3.042E-05],[15.619059,-2.6811E-05],[15.622469,-2.7842E-05],[15.62588,-3.1451E-05]]}
-{"quant":[15.891,0.95847],"mems":[[15.922608,-2.6811E-05],[15.926019,-2.8873E-05],[15.929429,-2.8873E-05],[15.93284,-3.3513E-05],[15.936251,-3.2998E-05],[15.939661,-2.8873E-05],[15.943072,-3.0935E-05],[15.946483,-3.4544E-05],[15.949893,-3.042E-05],[15.953304,-2.4748E-05],[15.956715,-2.6295E-05],[15.960125,-3.042E-05],[15.963536,-2.9389E-05],[15.966947,-2.6811E-05],[15.970357,-2.6811E-05],[15.973768,-2.5264E-05],[15.977179,-2.5779E-05],[15.980589,-2.9389E-05],[15.984,-2.7326E-05],[15.98734,-2.8873E-05],[15.99068,-3.3513E-05],[15.99402,-3.2482E-05],[15.99736,-2.8873E-05],[16.0007,-2.8357E-05],[16.00404,-2.7842E-05],[16.00738,-3.042E-05],[16.01072,-3.1451E-05],[16.01406,-2.5779E-05],[16.0174,-2.9389E-05],[16.02074,-3.2482E-05],[16.02408,-2.9389E-05],[16.02742,-2.8873E-05],[16.03076,-3.1451E-05],[16.0341,-2.8357E-05],[16.03744,-2.8357E-05],[16.04078,-3.3513E-05],[16.04412,-2.7326E-05],[16.04746,-2.9904E-05],[16.0508,-2.8873E-05],[16.05414,-2.9389E-05],[16.05748,-3.4029E-05],[16.06082,-3.0935E-05],[16.06416,-3.3513E-05],[16.0675,-3.3513E-05],[16.07084,-3.2998E-05],[16.07418,-2.9389E-05],[16.07752,-3.2998E-05],[16.08086,-3.2998E-05],[16.0842,-2.8357E-05],[16.08754,-3.042E-05],[16.09088,-2.4748E-05],[16.09422,-2.6811E-05],[16.09756,-2.6295E-05],[16.1009,-3.042E-05],[16.10424,-3.5576E-05],[16.10758,-2.8357E-05],[16.11092,-2.8357E-05],[16.11426,-2.8357E-05],[16.1176,-2.8357E-05],[16.12094,-3.4544E-05],[16.12428,-3.4029E-05],[16.12762,-2.6811E-05],[16.13096,-2.3717E-05],[16.1343,-2.4748E-05],[16.13764,-3.042E-05],[16.14098,-3.042E-05],[16.14432,-2.9904E-05],[16.14766,-2.9389E-05],[16.151,-2.5779E-05],[16.15434,-2.7326E-05],[16.15768,-2.7326E-05],[16.16102,-3.2482E-05],[16.16436,-3.4029E-05],[16.1677,-3.3513E-05],[16.17104,-3.0935E-05],[16.17438,-2.6811E-05],[16.17772,-2.8873E-05],[16.18106,-2.6811E-05],[16.1844,-2.7326E-05],[16.18774,-2.8873E-05],[16.19108,-2.9389E-05],[16.19442,-3.2482E-05],[16.19776,-2.8873E-05],[16.2011,-2.8357E-05],[16.20444,-3.2998E-05],[16.20778,-3.1967E-05]]}
-{"quant":[16.3463,-2.894E-05],"mems":[[16.24786,-2.5779E-05],[16.2512,-3.042E-05],[16.25454,-3.1451E-05],[16.25788,-3.0935E-05],[16.26122,-3.506E-05],[16.26456,-3.4544E-05],[16.2679,-3.3513E-05],[16.27124,-2.9389E-05],[16.27458,-2.9389E-05],[16.27792,-3.506E-05],[16.28126,-3.2482E-05],[16.2846,-2.7842E-05],[16.28794,-3.042E-05],[16.29128,-2.9904E-05],[16.29462,-2.8357E-05],[16.29796,-3.1967E-05],[16.3013,-3.2998E-05],[16.30464,-2.9389E-05],[16.30798,-2.8873E-05],[16.31132,-2.9389E-05],[16.31466,-2.8357E-05],[16.318,-2.9904E-05],[16.32134,-3.042E-05],[16.32468,-2.8357E-05],[16.32802,-3.0935E-05],[16.33136,-3.042E-05],[16.3347,-3.042E-05],[16.33804,-2.9904E-05],[16.34138,-2.7842E-05],[16.34472,-2.7326E-05],[16.34806,-2.5264E-05],[16.3514,-2.8357E-05],[16.35474,-2.9904E-05],[16.35808,-2.7842E-05],[16.36142,-2.9904E-05],[16.36476,-2.6295E-05],[16.3681,-2.8873E-05],[16.37144,-3.2998E-05],[16.37478,-3.1451E-05],[16.37812,-3.2482E-05],[16.38146,-2.7326E-05],[16.3848,-2.6295E-05],[16.38814,-2.8873E-05],[16.39148,-3.042E-05],[16.39482,-2.7842E-05],[16.39816,-2.4233E-05],[16.4015,-2.7326E-05],[16.40484,-2.5264E-05],[16.40818,-2.6295E-05],[16.41152,-3.1967E-05],[16.41486,-3.1967E-05],[16.4182,-3.1451E-05],[16.42154,-2.8357E-05],[16.42488,-2.5779E-05],[16.42822,-3.0935E-05],[16.43156,-3.506E-05],[16.4349,-2.9389E-05],[16.43824,-2.8873E-05],[16.44158,-2.8873E-05],[16.44492,-2.7842E-05],[16.44826,-2.9389E-05],[16.4516,-3.1967E-05],[16.45494,-3.2482E-05],[16.45828,-2.7842E-05],[16.46162,-3.042E-05],[16.46496,-3.042E-05],[16.4683,-3.2998E-05],[16.47164,-3.4544E-05],[16.47498,-2.8357E-05],[16.47832,-2.9904E-05],[16.48166,-2.7326E-05],[16.485,-2.7326E-05],[16.48834,-3.4544E-05],[16.49168,-3.2482E-05],[16.49502,-2.7326E-05],[16.49836,-2.8873E-05],[16.5017,-2.8873E-05],[16.50504,-3.042E-05],[16.50838,-3.1451E-05],[16.51172,-3.042E-05],[16.51506,-2.9389E-05],[16.5184,-2.5264E-05],[16.52174,-2.5779E-05],[16.52508,-2.8357E-05],[16.52842,-2.7842E-05],[16.53176,-3.042E-05],[16.5351,-3.0935E-05],[16.53844,-2.6295E-05],[16.54178,-2.6811E-05],[16.54512,-2.7842E-05],[16.54846,-2.9389E-05]]}
-{"quant":[16.9213,-2.9788E-05],"mems":[[16.82234,-2.9904E-05],[16.82568,-2.9389E-05],[16.82902,-2.4233E-05],[16.83236,-2.8873E-05],[16.8357,-3.042E-05],[16.83904,-2.8873E-05],[16.84238,-3.1451E-05],[16.84572,-2.5779E-05],[16.84906,-2.5779E-05],[16.8524,-3.1967E-05],[16.85574,-2.7842E-05],[16.85908,-2.7326E-05],[16.86242,-3.2998E-05],[16.86576,-2.9389E-05],[16.8691,-2.7326E-05],[16.87244,-2.8357E-05],[16.87578,-2.9389E-05],[16.87912,-3.042E-05],[16.88246,-2.9904E-05],[16.8858,-3.1451E-05],[16.88914,-2.9904E-05],[16.89248,-2.8357E-05],[16.89582,-3.042E-05],[16.89916,-3.0935E-05],[16.9025,-2.9389E-05],[16.90584,-2.6811E-05],[16.90918,-2.6811E-05],[16.91252,-2.9904E-05],[16.91586,-2.6811E-05],[16.9192,-2.6295E-05],[16.92254,-3.1451E-05],[16.92588,-2.8873E-05],[16.92922,-2.2686E-05],[16.93256,-2.8873E-05],[16.9359,-3.8154E-05],[16.93924,-3.6607E-05],[16.94258,-3.042E-05],[16.94592,-2.4233E-05],[16.94926,-2.7326E-05],[16.9526,-2.9904E-05],[16.95594,-2.7842E-05],[16.95928,-2.6811E-05],[16.96262,-2.5779E-05],[16.96596,-2.7326E-05],[16.9693,-2.9389E-05],[16.97264,-3.2482E-05],[16.97598,-3.5576E-05],[16.97932,-3.2998E-05],[16.98266,-2.7842E-05],[16.986,-2.8357E-05],[16.98934,-3.3513E-05],[16.99268,-3.2482E-05],[16.99602,-3.042E-05],[16.99936,-2.9389E-05],[17.0027,-2.6811E-05],[17.00604,-2.8357E-05],[17.00938,-3.1451E-05],[17.01272,-3.1451E-05],[17.01606,-2.8357E-05],[17.0194,-2.8357E-05],[17.02274,-2.9904E-05],[17.02608,-2.8873E-05],[17.02942,-2.9904E-05],[17.03276,-3.042E-05],[17.0361,-3.2482E-05],[17.03944,-3.0935E-05],[17.04278,-2.6811E-05],[17.04612,-2.8357E-05],[17.04946,-3.0935E-05],[17.0528,-3.1451E-05],[17.05614,-3.3513E-05],[17.05948,-3.042E-05],[17.06282,-2.4748E-05],[17.06616,-2.8357E-05],[17.0695,-3.0935E-05],[17.07284,-2.9904E-05],[17.07618,-3.1967E-05],[17.07952,-3.1451E-05],[17.08286,-2.7842E-05],[17.0862,-2.9904E-05],[17.08954,-3.3513E-05],[17.09288,-3.1451E-05],[17.09622,-3.0935E-05],[17.09956,-3.1451E-05],[17.1029,-3.1967E-05],[17.10624,-3.2998E-05],[17.10958,-3.042E-05],[17.11292,-3.4029E-05],[17.11626,-3.1967E-05],[17.1196,-2.7842E-05],[17.12294,-2.8873E-05]]}
-{"quant":[17.3701,-2.8574E-05],"mems":[[17.27324,-3.506E-05],[17.27658,-2.4748E-05],[17.27992,-2.5779E-05],[17.28326,-2.8357E-05],[17.2866,-2.5264E-05],[17.28994,-3.0935E-05],[17.29328,-2.7842E-05],[17.29662,-2.4233E-05],[17.29996,-2.9389E-05],[17.3033,-2.9389E-05],[17.30664,-2.9904E-05],[17.30998,-3.042E-05],[17.31332,-2.6811E-05],[17.31666,-2.8873E-05],[17.32,-3.2998E-05],[17.32334,-3.3513E-05],[17.32668,-2.8873E-05],[17.33002,-2.5264E-05],[17.33336,-2.8873E-05],[17.3367,-2.7326E-05],[17.34004,-2.8357E-05],[17.34338,-3.2482E-05],[17.34672,-2.9389E-05],[17.35006,-2.7842E-05],[17.3534,-2.9389E-05],[17.35674,-2.8357E-05],[17.36008,-2.9904E-05],[17.36342,-3.042E-05],[17.36676,-2.7326E-05],[17.3701,-3.042E-05],[17.37344,-3.2482E-05],[17.37678,-2.8873E-05],[17.38012,-2.7326E-05],[17.38346,-2.9904E-05],[17.3868,-2.8357E-05],[17.39014,-2.7842E-05],[17.39348,-2.8357E-05],[17.39682,-2.5264E-05],[17.40016,-2.8873E-05],[17.4035,-3.0935E-05],[17.40684,-2.8873E-05],[17.41018,-2.7842E-05],[17.41352,-2.3717E-05],[17.41686,-2.6811E-05],[17.4202,-3.0935E-05],[17.42354,-3.0935E-05],[17.42688,-2.9389E-05],[17.43022,-2.4748E-05],[17.43356,-2.4233E-05],[17.4369,-2.7326E-05],[17.44024,-3.042E-05],[17.44358,-3.2998E-05],[17.44692,-3.1451E-05],[17.45026,-2.9389E-05],[17.4536,-2.8357E-05],[17.45694,-2.9904E-05],[17.46028,-2.6811E-05],[17.46362,-2.6811E-05],[17.46696,-2.9904E-05],[17.4703,-2.6295E-05],[17.47364,-2.7326E-05],[17.47698,-2.7842E-05],[17.48032,-2.5779E-05],[17.48366,-3.042E-05],[17.487,-2.8873E-05],[17.49034,-2.8357E-05],[17.49368,-3.042E-05],[17.49702,-2.7326E-05],[17.50036,-2.6811E-05],[17.5037,-2.9904E-05],[17.50704,-2.9904E-05],[17.51038,-3.0935E-05],[17.51372,-3.2998E-05],[17.51706,-3.2998E-05],[17.5204,-3.1967E-05],[17.52374,-2.8357E-05],[17.52708,-2.5264E-05],[17.53042,-2.9389E-05],[17.53376,-3.1967E-05],[17.5371,-3.1967E-05],[17.54044,-3.4029E-05],[17.54378,-3.042E-05],[17.54712,-2.7326E-05],[17.55046,-2.6811E-05],[17.5538,-2.7842E-05],[17.55714,-3.1451E-05],[17.56048,-3.1967E-05],[17.56382,-3.0935E-05],[17.56716,-2.6811E-05],[17.5705,-2.4233E-05]]}
-{"quant":[17.8626,-2.9305E-05],"mems":[[17.76422,-2.8873E-05],[17.76756,-2.8357E-05],[17.7709,-3.042E-05],[17.77424,-3.2482E-05],[17.77758,-3.1451E-05],[17.78092,-2.7842E-05],[17.78426,-2.4233E-05],[17.7876,-2.6295E-05],[17.79094,-2.9904E-05],[17.79428,-2.9904E-05],[17.79762,-2.8357E-05],[17.80096,-2.9904E-05],[17.8043,-2.7842E-05],[17.80764,-2.6811E-05],[17.81098,-2.9904E-05],[17.81432,-2.6295E-05],[17.81766,-2.8357E-05],[17.821,-2.7326E-05],[17.82434,-3.2482E-05],[17.82768,-3.6607E-05],[17.83102,-2.9389E-05],[17.83436,-3.2998E-05],[17.8377,-3.2482E-05],[17.84104,-2.7326E-05],[17.84438,-2.6811E-05],[17.84772,-2.8357E-05],[17.85106,-2.7842E-05],[17.8544,-2.7326E-05],[17.85774,-3.1451E-05],[17.86108,-3.042E-05],[17.86442,-3.042E-05],[17.86776,-2.8357E-05],[17.8711,-2.5779E-05],[17.87444,-2.6811E-05],[17.87778,-2.5779E-05],[17.88112,-2.9389E-05],[17.88446,-2.8873E-05],[17.8878,-2.8357E-05],[17.89114,-2.7842E-05],[17.89448,-2.9389E-05],[17.89782,-2.9904E-05],[17.90116,-2.7326E-05],[17.9045,-2.8873E-05],[17.90784,-3.042E-05],[17.91118,-3.1451E-05],[17.91452,-2.7842E-05],[17.91786,-2.9904E-05],[17.9212,-3.4029E-05],[17.92454,-3.0935E-05],[17.92788,-3.042E-05],[17.93122,-3.4544E-05],[17.93456,-3.4544E-05],[17.9379,-2.7326E-05],[17.94124,-2.6811E-05],[17.94458,-3.1451E-05],[17.94792,-3.0935E-05],[17.95126,-2.6811E-05],[17.9546,-2.6295E-05],[17.95794,-2.7326E-05],[17.96128,-2.9904E-05],[17.96462,-3.042E-05],[17.96796,-2.8873E-05],[17.9713,-2.8873E-05],[17.97464,-2.4233E-05],[17.97798,-2.4748E-05],[17.98132,-3.3513E-05],[17.98466,-3.1967E-05],[17.988,-2.7842E-05],[17.99134,-2.8357E-05],[17.99468,-2.3717E-05],[17.99802,-2.7842E-05],[18.00136,-3.1967E-05],[18.0047,-3.042E-05],[18.00804,-3.2482E-05],[18.01138,-3.042E-05],[18.01472,-3.0935E-05],[18.01806,-3.4029E-05],[18.0214,-3.2998E-05],[18.02474,-2.9904E-05],[18.02808,-3.1967E-05],[18.03142,-2.8357E-05],[18.03476,-2.2686E-05],[18.0381,-2.8873E-05],[18.04144,-2.7326E-05],[18.04478,-3.042E-05],[18.04812,-3.6091E-05],[18.05146,-3.1451E-05],[18.0548,-2.9904E-05],[18.05814,-3.1967E-05],[18.06148,-2.5264E-05],[18.06482,-2.5264E-05]]}
-{"quant":[18.3436,-1.0803],"mems":[[18.30196,-3.1451E-05],[18.3053,-3.2482E-05],[18.30864,-3.1451E-05],[18.31198,-2.8873E-05],[18.31532,-2.6295E-05],[18.31866,-2.7842E-05],[18.322,-2.8357E-05],[18.32534,-2.8357E-05],[18.32868,-2.7842E-05],[18.33202,-2.6811E-05],[18.33536,-2.9904E-05],[18.3387,-2.7842E-05],[18.34204,-2.8357E-05],[18.34538,-2.8873E-05],[18.34872,-2.8873E-05],[18.35206,-3.3513E-05],[18.3554,-2.7842E-05],[18.35874,-2.6295E-05],[18.36208,-2.6811E-05],[18.36542,-2.4233E-05],[18.36876,-2.6811E-05],[18.3721,-3.042E-05],[18.37544,-3.1451E-05],[18.37878,-2.7326E-05],[18.38212,-2.8873E-05],[18.38546,-3.1967E-05],[18.3888,-3.1451E-05],[18.39214,-3.042E-05],[18.39548,-2.3202E-05],[18.39882,-2.3202E-05],[18.40216,-2.3717E-05],[18.4055,-2.1139E-05],[18.40884,-3.042E-05],[18.41218,-2.8873E-05],[18.41552,-2.4748E-05],[18.41886,-3.2482E-05],[18.4222,-3.1967E-05],[18.42554,-2.7326E-05],[18.42888,-2.7842E-05],[18.43222,-2.8357E-05],[18.43556,-2.7842E-05],[18.4389,-2.7326E-05],[18.44224,-2.5264E-05],[18.44558,-2.6295E-05],[18.44892,-2.8873E-05],[18.45226,-2.7842E-05],[18.4556,-2.8357E-05],[18.45894,-2.9389E-05],[18.46228,-3.1967E-05],[18.46562,-2.8873E-05],[18.46896,-2.6295E-05],[18.4723,-2.8357E-05],[18.47564,-2.7326E-05],[18.47898,-2.5779E-05],[18.48232,-2.4233E-05],[18.48566,-2.7326E-05],[18.489,-3.2482E-05],[18.492439,-3.1451E-05],[18.495877,-2.8873E-05],[18.499316,-2.8357E-05],[18.502755,-2.4233E-05],[18.506193,-2.9389E-05],[18.509632,-2.9389E-05],[18.513071,-2.5264E-05],[18.516509,-3.4544E-05],[18.519948,-3.1967E-05],[18.523387,-2.8873E-05],[18.526825,-3.1967E-05],[18.530264,-2.7326E-05],[18.533703,-2.8357E-05],[18.537141,-3.2998E-05],[18.54058,-3.1967E-05],[18.544019,-3.2998E-05],[18.547457,-3.2998E-05],[18.550896,-2.8873E-05],[18.554335,-3.0935E-05],[18.557773,-3.2482E-05],[18.561212,-2.8873E-05],[18.564651,-2.6295E-05],[18.568089,-3.2482E-05],[18.571528,-3.4544E-05],[18.574967,-2.7842E-05],[18.578405,-2.7842E-05],[18.581844,-2.9389E-05],[18.585283,-3.2482E-05],[18.588721,-3.2998E-05]]}
-{"quant":[18.8015,-2.92E-05],"mems":[[18.702197,-2.5264E-05],[18.705636,-2.9389E-05],[18.709075,-3.1967E-05],[18.712513,-3.4029E-05],[18.715952,-3.0935E-05],[18.719391,-2.5779E-05],[18.722829,-2.8357E-05],[18.726268,-3.042E-05],[18.729707,-2.6811E-05],[18.733145,-2.5779E-05],[18.736584,-2.7842E-05],[18.740023,-2.8873E-05],[18.743461,-3.042E-05],[18.7469,-3.2482E-05],[18.750339,-3.4029E-05],[18.753777,-2.9904E-05],[18.757216,-3.0935E-05],[18.760655,-2.8357E-05],[18.764093,-2.5264E-05],[18.767532,-2.6295E-05],[18.770971,-2.4233E-05],[18.774409,-2.6295E-05],[18.777848,-2.7326E-05],[18.781287,-2.9904E-05],[18.784725,-2.9389E-05],[18.788164,-3.3513E-05],[18.791603,-3.7122E-05],[18.795041,-3.2482E-05],[18.79848,-3.042E-05],[18.801919,-2.7326E-05],[18.805357,-2.8873E-05],[18.808796,-3.0935E-05],[18.812235,-3.1451E-05],[18.815673,-2.7326E-05],[18.819112,-2.5779E-05],[18.822551,-2.8873E-05],[18.825989,-2.6295E-05],[18.829428,-2.6811E-05],[18.832867,-2.8357E-05],[18.836305,-2.7326E-05],[18.839744,-2.8357E-05],[18.843183,-2.9904E-05],[18.846621,-3.1451E-05],[18.85006,-3.0935E-05],[18.853499,-3.042E-05],[18.856937,-2.8873E-05],[18.860376,-2.5779E-05],[18.863815,-3.1451E-05],[18.867253,-3.506E-05],[18.870692,-3.3513E-05],[18.874131,-3.506E-05],[18.877569,-3.0935E-05],[18.881008,-2.8873E-05],[18.884447,-2.9904E-05],[18.887885,-2.5779E-05],[18.891324,-2.6295E-05],[18.894763,-2.7842E-05],[18.898201,-2.7842E-05],[18.90164,-2.8357E-05],[18.905079,-2.9389E-05],[18.908517,-3.0935E-05],[18.911956,-3.042E-05],[18.915395,-3.0935E-05],[18.918833,-3.042E-05],[18.922272,-2.7842E-05],[18.925711,-2.8357E-05],[18.929149,-3.4029E-05],[18.932588,-3.1967E-05],[18.936027,-2.6811E-05],[18.939465,-2.9904E-05],[18.942904,-3.2482E-05],[18.946343,-3.1451E-05],[18.949781,-2.9904E-05],[18.95322,-2.8357E-05],[18.956659,-2.5779E-05],[18.960097,-2.4748E-05],[18.963536,-2.8357E-05],[18.966975,-3.1451E-05],[18.970413,-3.0935E-05],[18.973852,-2.6811E-05],[18.977291,-2.6811E-05],[18.980729,-2.9904E-05],[18.984168,-3.1451E-05],[18.987607,-2.9389E-05],[18.991045,-2.7842E-05],[18.994484,-2.9389E-05],[18.997923,-2.6295E-05],[19.001361,-2.6811E-05],[19.0048,-3.042E-05]]}
-{"quant":[19.3992,-2.9475E-05],"mems":[[19.300525,-2.8873E-05],[19.303964,-3.042E-05],[19.307403,-3.042E-05],[19.310841,-3.2482E-05],[19.31428,-3.042E-05],[19.317719,-3.0935E-05],[19.321157,-2.9904E-05],[19.324596,-2.6295E-05],[19.328035,-2.6295E-05],[19.331473,-3.1451E-05],[19.334912,-3.3513E-05],[19.338351,-2.3717E-05],[19.341789,-2.4748E-05],[19.345228,-2.9389E-05],[19.348667,-2.8873E-05],[19.352105,-2.9904E-05],[19.355544,-3.4029E-05],[19.358983,-3.2998E-05],[19.362421,-3.1967E-05],[19.36586,-3.4544E-05],[19.369299,-2.9904E-05],[19.372737,-2.5264E-05],[19.376176,-2.1655E-05],[19.379615,-2.3717E-05],[19.383053,-3.2482E-05],[19.386492,-3.2998E-05],[19.389931,-3.2998E-05],[19.393369,-3.2998E-05],[19.396808,-2.9389E-05],[19.400247,-3.0935E-05],[19.403685,-2.9389E-05],[19.407124,-3.2482E-05],[19.410563,-3.7122E-05],[19.414001,-3.1451E-05],[19.41744,-3.1451E-05],[19.420879,-2.8873E-05],[19.424317,-2.3717E-05],[19.427756,-2.7326E-05],[19.431195,-3.2482E-05],[19.434633,-2.8873E-05],[19.438072,-2.6295E-05],[19.441511,-2.7326E-05],[19.444949,-2.6811E-05],[19.448388,-3.1967E-05],[19.451827,-2.8873E-05],[19.455265,-2.5779E-05],[19.458704,-2.8873E-05],[19.462143,-2.9389E-05],[19.465581,-2.8357E-05],[19.46902,-3.042E-05],[19.472459,-3.1967E-05],[19.475897,-2.9389E-05],[19.479336,-2.8873E-05],[19.482775,-2.8357E-05],[19.486213,-3.2482E-05],[19.489652,-3.1451E-05],[19.493091,-2.8873E-05],[19.496529,-2.8873E-05],[19.499968,-2.5779E-05],[19.503407,-3.042E-05],[19.506845,-3.1967E-05],[19.510284,-2.9904E-05],[19.513723,-3.1451E-05],[19.517161,-2.9389E-05],[19.5206,-2.7842E-05],[19.524039,-2.8357E-05],[19.527477,-3.042E-05],[19.530916,-3.1967E-05],[19.534355,-2.7842E-05],[19.537793,-2.5264E-05],[19.541232,-3.0935E-05],[19.544671,-3.2998E-05],[19.548109,-2.9904E-05],[19.551548,-2.8873E-05],[19.554987,-3.042E-05],[19.558425,-3.042E-05],[19.561864,-3.1451E-05],[19.565303,-3.3513E-05],[19.568741,-3.4544E-05],[19.57218,-3.6091E-05],[19.575619,-3.042E-05],[19.579057,-2.7842E-05],[19.582496,-2.9389E-05],[19.585935,-2.8873E-05],[19.589373,-3.4029E-05],[19.592812,-3.3513E-05],[19.596251,-2.9389E-05],[19.599689,-3.0935E-05]]}
-{"quant":[19.9021,-3.0087E-05],"mems":[[19.802571,-2.5264E-05],[19.806009,-2.6811E-05],[19.809448,-2.5779E-05],[19.812887,-2.7842E-05],[19.816325,-2.217E-05],[19.819764,-2.2686E-05],[19.823203,-2.9389E-05],[19.826641,-3.2998E-05],[19.83008,-3.6091E-05],[19.833519,-3.0935E-05],[19.836957,-2.7842E-05],[19.840396,-2.4748E-05],[19.843835,-2.4748E-05],[19.847273,-3.1451E-05],[19.850712,-2.8873E-05],[19.854151,-2.8873E-05],[19.857589,-2.7326E-05],[19.861028,-2.6295E-05],[19.864467,-2.8357E-05],[19.867905,-2.9904E-05],[19.871344,-3.3513E-05],[19.874783,-3.042E-05],[19.878221,-2.7326E-05],[19.88166,-2.7326E-05],[19.885099,-2.9389E-05],[19.888537,-3.1451E-05],[19.891976,-2.9904E-05],[19.895415,-3.0935E-05],[19.898853,-2.7326E-05],[19.902292,-2.5779E-05],[19.905731,-3.042E-05],[19.909169,-2.9904E-05],[19.912608,-2.7842E-05],[19.916047,-2.7842E-05],[19.919485,-3.042E-05],[19.922924,-3.3513E-05],[19.926363,-3.1451E-05],[19.929801,-3.1451E-05],[19.93324,-3.2482E-05],[19.936679,-2.7842E-05],[19.940117,-2.9389E-05],[19.943556,-3.3513E-05],[19.946995,-3.4544E-05],[19.950433,-3.3513E-05],[19.953872,-3.1451E-05],[19.957311,-2.6295E-05],[19.960749,-2.7842E-05],[19.964188,-3.1451E-05],[19.967627,-3.042E-05],[19.971065,-3.506E-05],[19.974504,-3.4544E-05],[19.977943,-2.9904E-05],[19.981381,-2.8357E-05],[19.98482,-2.8873E-05],[19.988259,-3.042E-05],[19.991697,-2.8873E-05],[19.995136,-3.042E-05],[19.998575,-2.8357E-05],[20.002013,-2.5264E-05],[20.005452,-2.5264E-05],[20.008891,-2.9389E-05],[20.012329,-3.4029E-05],[20.015768,-2.8873E-05],[20.019207,-2.6295E-05],[20.022645,-3.042E-05],[20.026084,-3.4029E-05],[20.029523,-3.4029E-05],[20.032961,-3.4029E-05],[20.0364,-3.2482E-05],[20.039839,-2.6811E-05],[20.043277,-2.9389E-05],[20.046716,-2.9389E-05],[20.050155,-2.7326E-05],[20.053593,-2.9904E-05],[20.057032,-2.9389E-05],[20.060471,-2.7326E-05],[20.063909,-2.9904E-05],[20.067348,-3.0935E-05],[20.070787,-3.0935E-05],[20.074225,-2.9904E-05],[20.077664,-2.7842E-05],[20.081103,-2.6295E-05],[20.084541,-3.042E-05],[20.08798,-3.506E-05],[20.091419,-3.2998E-05],[20.094857,-3.4544E-05],[20.098296,-3.4029E-05],[20.101735,-2.9904E-05],[20.105173,-3.0935E-05]]}
-{"quant":[20.3638,-3.1279E-05],"mems":[[20.266791,-3.042E-05],[20.270229,-3.2482E-05],[20.273668,-3.3513E-05],[20.277107,-2.7326E-05],[20.280545,-2.7842E-05],[20.283984,-2.9389E-05],[20.287423,-3.0935E-05],[20.290861,-3.2998E-05],[20.2943,-3.6091E-05],[20.297739,-3.3513E-05],[20.301177,-2.6295E-05],[20.304616,-2.5779E-05],[20.308055,-2.9389E-05],[20.311493,-3.0935E-05],[20.314932,-2.8873E-05],[20.318371,-2.3717E-05],[20.321809,-2.5779E-05],[20.325248,-3.1451E-05],[20.328687,-3.042E-05],[20.332125,-3.2482E-05],[20.335564,-3.4029E-05],[20.339003,-3.0935E-05],[20.342441,-2.7842E-05],[20.34588,-3.042E-05],[20.349319,-3.1967E-05],[20.352757,-2.6295E-05],[20.356196,-2.8357E-05],[20.359635,-2.7326E-05],[20.363073,-2.8873E-05],[20.366512,-3.6091E-05],[20.369951,-3.1451E-05],[20.373389,-2.8873E-05],[20.376828,-3.042E-05],[20.380267,-2.5264E-05],[20.383705,-2.4233E-05],[20.387144,-3.1967E-05],[20.390583,-3.4544E-05],[20.394021,-3.6607E-05],[20.39746,-3.7638E-05],[20.400899,-3.042E-05],[20.404337,-3.1967E-05],[20.407776,-3.2482E-05],[20.411215,-2.9904E-05],[20.414653,-3.1967E-05],[20.418092,-3.4029E-05],[20.421531,-3.3513E-05],[20.424969,-3.2998E-05],[20.428408,-3.042E-05],[20.431847,-2.9389E-05],[20.435285,-3.2998E-05],[20.438724,-3.0935E-05],[20.442163,-2.8873E-05],[20.445601,-3.2998E-05],[20.44904,-3.506E-05],[20.452479,-3.2482E-05],[20.455917,-2.6811E-05],[20.459356,-2.7842E-05],[20.462795,-2.8873E-05],[20.466233,-2.7326E-05],[20.469672,-2.9389E-05],[20.473111,-3.042E-05],[20.476549,-3.1967E-05],[20.479988,-3.2482E-05],[20.483427,-3.0935E-05],[20.486865,-2.7326E-05],[20.490304,-2.7842E-05],[20.493743,-3.1451E-05],[20.497181,-2.7842E-05],[20.50062,-2.8357E-05],[20.504059,-3.0935E-05],[20.507497,-3.1967E-05],[20.510936,-3.2482E-05],[20.514375,-2.6811E-05],[20.517813,-3.042E-05],[20.521252,-3.2482E-05],[20.524691,-2.7326E-05],[20.528129,-3.042E-05],[20.531568,-2.8357E-05],[20.535007,-3.1451E-05],[20.538445,-3.1967E-05],[20.541884,-2.8873E-05],[20.545323,-3.5576E-05],[20.548761,-3.3513E-05],[20.5522,-2.9389E-05],[20.555639,-2.6295E-05],[20.559077,-2.4748E-05],[20.562516,-2.6811E-05],[20.565955,-2.9904E-05]]}
-{"quant":[20.8315,-3.0059E-05],"mems":[[20.734449,-2.7842E-05],[20.737888,-2.6811E-05],[20.741327,-2.8357E-05],[20.744765,-3.0935E-05],[20.748204,-3.2998E-05],[20.751643,-3.6091E-05],[20.755081,-3.4544E-05],[20.75852,-2.8357E-05],[20.761959,-2.6811E-05],[20.765397,-2.9389E-05],[20.768836,-2.9904E-05],[20.772275,-2.5264E-05],[20.775713,-2.7842E-05],[20.779152,-3.042E-05],[20.782591,-2.8357E-05],[20.786029,-2.8357E-05],[20.789468,-3.042E-05],[20.792907,-3.6607E-05],[20.796345,-3.4544E-05],[20.799784,-2.9904E-05],[20.803223,-3.1451E-05],[20.806661,-3.4544E-05],[20.8101,-3.6607E-05],[20.813539,-3.3513E-05],[20.816977,-3.1967E-05],[20.820416,-3.8154E-05],[20.823855,-3.5576E-05],[20.827293,-3.0935E-05],[20.830732,-3.4029E-05],[20.834171,-3.2998E-05],[20.837609,-2.7842E-05],[20.841048,-2.9389E-05],[20.844487,-3.2482E-05],[20.847925,-3.1967E-05],[20.851364,-3.2482E-05],[20.854803,-3.2998E-05],[20.858241,-2.9904E-05],[20.86168,-2.8357E-05],[20.865119,-3.3513E-05],[20.868557,-3.2998E-05],[20.871996,-2.9389E-05],[20.875435,-3.042E-05],[20.878873,-2.9389E-05],[20.882312,-2.8873E-05],[20.885751,-3.042E-05],[20.889189,-2.9389E-05],[20.892628,-2.6811E-05],[20.896067,-2.7842E-05],[20.899505,-2.9389E-05],[20.902944,-3.1451E-05],[20.906383,-3.1967E-05],[20.909821,-3.0935E-05],[20.91326,-2.8873E-05],[20.916699,-2.6295E-05],[20.920137,-2.9389E-05],[20.923576,-3.0935E-05],[20.927015,-2.8357E-05],[20.930453,-2.8357E-05],[20.933892,-2.8357E-05],[20.937331,-2.7842E-05],[20.940769,-2.8873E-05],[20.944208,-3.2482E-05],[20.947647,-3.1451E-05],[20.951085,-3.2482E-05],[20.954524,-3.042E-05],[20.957963,-2.4748E-05],[20.961401,-2.7842E-05],[20.96484,-3.1451E-05],[20.968279,-3.2482E-05],[20.971717,-3.2482E-05],[20.975156,-2.9389E-05],[20.978595,-2.8357E-05],[20.982033,-2.8357E-05],[20.985472,-2.7842E-05],[20.988911,-3.042E-05],[20.992349,-3.1451E-05],[20.995788,-3.042E-05],[20.999227,-2.8873E-05],[21.002665,-2.5779E-05],[21.006104,-2.7326E-05],[21.009543,-3.0935E-05],[21.012981,-3.0935E-05],[21.01642,-2.9904E-05],[21.019859,-2.6295E-05],[21.023297,-2.6811E-05],[21.026736,-3.1967E-05],[21.030175,-3.1451E-05],[21.033613,-2.8873E-05]]}
-{"quant":[21.3295,-3.0867E-05],"mems":[[21.229617,-2.9389E-05],[21.233056,-2.6295E-05],[21.236495,-2.8357E-05],[21.239933,-2.8357E-05],[21.243372,-2.9389E-05],[21.246811,-2.8357E-05],[21.250249,-2.4233E-05],[21.253688,-2.5264E-05],[21.257127,-2.5779E-05],[21.260565,-2.6811E-05],[21.264004,-3.2998E-05],[21.267443,-3.1967E-05],[21.270881,-3.1967E-05],[21.27432,-3.1451E-05],[21.277759,-2.7842E-05],[21.281197,-3.0935E-05],[21.284636,-2.9389E-05],[21.288075,-2.9389E-05],[21.291513,-3.4544E-05],[21.294952,-3.4029E-05],[21.298391,-2.6811E-05],[21.301829,-2.6295E-05],[21.305268,-2.9904E-05],[21.308707,-3.1451E-05],[21.312145,-3.2998E-05],[21.315584,-2.9904E-05],[21.319023,-3.0935E-05],[21.322461,-2.7326E-05],[21.3259,-2.6811E-05],[21.329339,-3.3513E-05],[21.332777,-3.2998E-05],[21.336216,-3.506E-05],[21.339655,-2.9389E-05],[21.343093,-2.9904E-05],[21.346532,-3.5576E-05],[21.349971,-3.2482E-05],[21.353409,-3.1451E-05],[21.356848,-2.9904E-05],[21.360287,-2.9389E-05],[21.363725,-2.6295E-05],[21.367164,-3.1451E-05],[21.370603,-3.4029E-05],[21.374041,-3.1967E-05],[21.37748,-3.1967E-05],[21.380919,-2.6295E-05],[21.384357,-3.3513E-05],[21.387796,-3.506E-05],[21.391235,-2.8357E-05],[21.394673,-3.042E-05],[21.398112,-2.8873E-05],[21.401551,-3.042E-05],[21.404989,-3.1451E-05],[21.408428,-2.8873E-05],[21.411867,-2.9904E-05],[21.415305,-2.9389E-05],[21.418744,-2.7326E-05],[21.422183,-2.8357E-05],[21.425621,-3.2998E-05],[21.42906,-3.4029E-05],[21.432499,-2.8873E-05],[21.435937,-2.6811E-05],[21.439376,-2.6295E-05],[21.442815,-2.8357E-05],[21.446253,-3.4544E-05],[21.449692,-3.4029E-05],[21.453131,-2.8873E-05],[21.456569,-3.0935E-05],[21.460008,-3.042E-05],[21.463447,-2.5779E-05],[21.466885,-3.042E-05],[21.470324,-3.1967E-05],[21.473763,-2.7326E-05],[21.477201,-2.9904E-05],[21.48064,-2.8873E-05],[21.484079,-2.7842E-05],[21.487517,-2.9389E-05],[21.490956,-2.5779E-05],[21.494395,-3.0935E-05],[21.497833,-3.4029E-05],[21.501272,-2.8873E-05],[21.504711,-3.0935E-05],[21.508149,-3.5576E-05],[21.511588,-3.2998E-05],[21.515027,-3.0935E-05],[21.518465,-3.0935E-05],[21.521904,-2.5779E-05],[21.525343,-2.9389E-05],[21.528781,-2.9904E-05],[21.53222,-2.8873E-05]]}
-{"quant":[21.8793,-2.9605E-05],"mems":[[21.779804,-2.4233E-05],[21.783243,-2.9904E-05],[21.786681,-3.2482E-05],[21.79012,-3.3513E-05],[21.793559,-3.1967E-05],[21.796997,-2.8873E-05],[21.800436,-2.9904E-05],[21.803875,-2.8357E-05],[21.807313,-2.8873E-05],[21.810752,-3.2482E-05],[21.814191,-3.2482E-05],[21.817629,-3.042E-05],[21.821068,-3.1967E-05],[21.824507,-3.3513E-05],[21.827945,-2.9389E-05],[21.831384,-2.7842E-05],[21.834823,-2.7326E-05],[21.838261,-2.5779E-05],[21.8417,-2.8873E-05],[21.845139,-3.2482E-05],[21.848577,-2.8873E-05],[21.852016,-2.6295E-05],[21.855455,-2.9904E-05],[21.858893,-2.8357E-05],[21.862332,-2.7326E-05],[21.865771,-2.8873E-05],[21.869209,-2.7326E-05],[21.872648,-3.1967E-05],[21.876087,-3.2482E-05],[21.879525,-2.6295E-05],[21.882964,-2.9389E-05],[21.886403,-3.042E-05],[21.889841,-3.3513E-05],[21.89328,-3.2998E-05],[21.896719,-2.4748E-05],[21.900157,-2.7326E-05],[21.903596,-3.042E-05],[21.907035,-3.2998E-05],[21.910473,-2.9904E-05],[21.913912,-2.7326E-05],[21.917351,-3.042E-05],[21.920789,-2.9389E-05],[21.924228,-3.2482E-05],[21.927667,-3.6607E-05],[21.931105,-3.2482E-05],[21.934544,-2.6811E-05],[21.937983,-2.6811E-05],[21.941421,-2.7326E-05],[21.94486,-2.8357E-05],[21.948299,-3.042E-05],[21.951737,-2.7842E-05],[21.955176,-2.9389E-05],[21.958615,-3.0935E-05],[21.962053,-2.8357E-05],[21.965492,-3.042E-05],[21.968931,-2.7842E-05],[21.972369,-2.6295E-05],[21.975808,-2.9389E-05],[21.979247,-2.9389E-05],[21.982685,-3.1451E-05],[21.986124,-3.2998E-05],[21.989563,-3.2482E-05],[21.993001,-3.4029E-05],[21.99644,-3.4544E-05],[21.999879,-2.7326E-05],[22.003317,-2.4233E-05],[22.006756,-3.1451E-05],[22.010195,-3.1451E-05],[22.013633,-3.2482E-05],[22.017072,-2.8357E-05],[22.020511,-2.2686E-05],[22.023949,-2.6295E-05],[22.027388,-3.042E-05],[22.030827,-3.7122E-05],[22.034265,-3.042E-05],[22.037704,-2.7326E-05],[22.041143,-3.4544E-05],[22.044581,-2.9389E-05],[22.04802,-2.7842E-05],[22.051459,-2.6811E-05],[22.054897,-3.042E-05],[22.058336,-2.9389E-05],[22.061775,-2.5779E-05],[22.065213,-2.8873E-05],[22.068652,-3.1451E-05],[22.072091,-2.9904E-05],[22.075529,-2.5779E-05],[22.078968,-3.1967E-05],[22.082407,-3.042E-05]]}
-{"quant":[22.3614,-2.9303E-05],"mems":[[22.264656,-3.1967E-05],[22.268095,-2.9904E-05],[22.271533,-3.042E-05],[22.274972,-2.8873E-05],[22.278411,-2.6295E-05],[22.281849,-2.9904E-05],[22.285288,-3.0935E-05],[22.288727,-3.2998E-05],[22.292165,-3.6091E-05],[22.295604,-3.1451E-05],[22.299043,-2.9389E-05],[22.302481,-2.9904E-05],[22.30592,-2.7842E-05],[22.309359,-2.6295E-05],[22.312797,-2.6811E-05],[22.316236,-2.7842E-05],[22.319675,-2.6811E-05],[22.323113,-2.8357E-05],[22.326552,-2.9389E-05],[22.329991,-2.8357E-05],[22.333429,-2.9389E-05],[22.336868,-2.7326E-05],[22.340307,-2.6811E-05],[22.343745,-3.0935E-05],[22.347184,-3.0935E-05],[22.350623,-3.0935E-05],[22.354061,-2.5264E-05],[22.3575,-2.1139E-05],[22.360939,-2.6811E-05],[22.364377,-2.7842E-05],[22.367816,-2.9389E-05],[22.371255,-3.1451E-05],[22.374693,-2.7326E-05],[22.378132,-2.7326E-05],[22.381571,-2.8357E-05],[22.385009,-3.042E-05],[22.388448,-2.8873E-05],[22.391887,-2.9389E-05],[22.395325,-3.0935E-05],[22.398764,-2.7842E-05],[22.402203,-2.8873E-05],[22.405641,-2.8873E-05],[22.40908,-3.042E-05],[22.412519,-3.042E-05],[22.415957,-2.7842E-05],[22.419396,-2.9904E-05],[22.422835,-3.042E-05],[22.426273,-2.9904E-05],[22.429712,-2.7842E-05],[22.433151,-2.9904E-05],[22.436589,-2.7326E-05],[22.440028,-2.8357E-05],[22.443467,-3.506E-05],[22.446905,-2.9904E-05],[22.450344,-3.0935E-05],[22.453783,-2.8357E-05],[22.457221,-2.4233E-05],[22.46066,-2.9389E-05],[22.464099,-3.1967E-05],[22.467537,-3.4544E-05],[22.470976,-3.3513E-05],[22.474415,-2.9389E-05],[22.477853,-2.7842E-05],[22.481292,-3.0935E-05],[22.484731,-3.2482E-05],[22.488169,-2.8357E-05],[22.491608,-2.7326E-05],[22.495047,-2.5779E-05],[22.498485,-2.7326E-05],[22.501924,-2.9904E-05],[22.505363,-2.8873E-05],[22.508801,-3.1967E-05],[22.51224,-2.9904E-05],[22.515679,-2.3202E-05],[22.519117,-2.5779E-05],[22.522556,-3.3513E-05],[22.525995,-3.4544E-05],[22.529433,-3.1967E-05],[22.532872,-3.1451E-05],[22.536311,-3.042E-05],[22.539749,-3.1451E-05],[22.543188,-3.6091E-05],[22.546627,-3.5576E-05],[22.550065,-3.1967E-05],[22.553504,-2.8357E-05],[22.556943,-2.9389E-05],[22.560381,-2.9904E-05],[22.56382,-2.6295E-05]]}
-{"quant":[22.8531,-2.9131E-05],"mems":[[22.756385,-3.0935E-05],[22.759824,-3.042E-05],[22.763263,-2.9389E-05],[22.766701,-3.2482E-05],[22.77014,-3.2482E-05],[22.773579,-2.7842E-05],[22.777017,-3.042E-05],[22.780456,-3.042E-05],[22.783895,-3.042E-05],[22.787333,-3.9185E-05],[22.790772,-3.4029E-05],[22.794211,-2.6295E-05],[22.797649,-2.1655E-05],[22.801088,-2.6295E-05],[22.804527,-3.4544E-05],[22.807965,-3.1967E-05],[22.811404,-3.1451E-05],[22.814843,-2.9904E-05],[22.818281,-2.5779E-05],[22.82172,-2.3202E-05],[22.825159,-2.6811E-05],[22.828597,-2.9904E-05],[22.832036,-2.6811E-05],[22.835475,-2.7326E-05],[22.838913,-2.8357E-05],[22.842352,-2.8357E-05],[22.845791,-2.6295E-05],[22.849229,-2.6811E-05],[22.852668,-2.9904E-05],[22.856107,-2.7842E-05],[22.859545,-2.5264E-05],[22.862984,-2.8357E-05],[22.866423,-3.042E-05],[22.869861,-2.8357E-05],[22.8733,-2.7842E-05],[22.876739,-2.9389E-05],[22.880177,-2.8873E-05],[22.883616,-3.1967E-05],[22.887055,-3.0935E-05],[22.890493,-2.7326E-05],[22.893932,-2.7842E-05],[22.897371,-2.4748E-05],[22.900809,-2.7326E-05],[22.904248,-2.9389E-05],[22.907687,-2.7842E-05],[22.911125,-3.1451E-05],[22.914564,-2.8873E-05],[22.918003,-2.6811E-05],[22.921441,-3.042E-05],[22.92488,-3.042E-05],[22.928319,-3.042E-05],[22.931757,-3.042E-05],[22.935196,-2.7842E-05],[22.938635,-2.7326E-05],[22.942073,-2.9389E-05],[22.945512,-3.0935E-05],[22.948951,-2.9904E-05],[22.952389,-3.2998E-05],[22.955828,-3.2998E-05],[22.959267,-3.6607E-05],[22.962705,-3.7122E-05],[22.966144,-2.6811E-05],[22.969583,-2.9904E-05],[22.973021,-3.2482E-05],[22.97646,-2.9904E-05],[22.979899,-3.2998E-05],[22.983337,-3.506E-05],[22.986776,-3.042E-05],[22.990215,-2.6811E-05],[22.993653,-2.8357E-05],[22.997092,-2.6811E-05],[23.000531,-2.7842E-05],[23.003969,-3.2998E-05],[23.007408,-3.2998E-05],[23.010847,-2.9904E-05],[23.014285,-2.9904E-05],[23.017724,-2.9904E-05],[23.021163,-2.9904E-05],[23.024601,-3.1451E-05],[23.02804,-2.9904E-05],[23.031479,-2.8873E-05],[23.034917,-3.042E-05],[23.038356,-2.8873E-05],[23.041795,-2.6295E-05],[23.045233,-2.9389E-05],[23.048672,-3.1451E-05],[23.052111,-2.9389E-05],[23.055549,-2.8873E-05]]}
-{"quant":[23.2993,-2.8667E-05],"mems":[[23.199973,-2.7326E-05],[23.203412,-2.7326E-05],[23.206851,-3.0935E-05],[23.210289,-2.6811E-05],[23.213728,-2.9389E-05],[23.217167,-3.2482E-05],[23.220605,-2.6811E-05],[23.224044,-3.2482E-05],[23.227483,-3.2482E-05],[23.230921,-3.5576E-05],[23.23436,-3.0935E-05],[23.237799,-2.5264E-05],[23.241237,-3.2998E-05],[23.244676,-2.8873E-05],[23.248115,-2.7842E-05],[23.251553,-2.8357E-05],[23.254992,-2.7326E-05],[23.258431,-3.0935E-05],[23.261869,-3.1967E-05],[23.265308,-3.2482E-05],[23.268747,-2.7842E-05],[23.272185,-2.5779E-05],[23.275624,-2.4748E-05],[23.279063,-2.1139E-05],[23.282501,-2.5779E-05],[23.28594,-3.2998E-05],[23.289379,-3.1451E-05],[23.292817,-2.9389E-05],[23.296256,-2.9904E-05],[23.299695,-2.5264E-05],[23.303133,-2.3202E-05],[23.306572,-2.9389E-05],[23.310011,-3.2998E-05],[23.313449,-2.8357E-05],[23.316888,-2.6295E-05],[23.320327,-3.042E-05],[23.323765,-2.7326E-05],[23.327204,-2.9904E-05],[23.330643,-2.8357E-05],[23.334081,-2.5264E-05],[23.33752,-3.0935E-05],[23.340959,-2.9904E-05],[23.344397,-3.3513E-05],[23.347836,-3.2482E-05],[23.351275,-2.9904E-05],[23.354713,-2.7842E-05],[23.358152,-2.6295E-05],[23.361591,-2.9904E-05],[23.365029,-3.042E-05],[23.368468,-3.0935E-05],[23.371907,-2.7842E-05],[23.375345,-2.8357E-05],[23.378784,-2.6295E-05],[23.382223,-2.5779E-05],[23.385661,-2.8357E-05],[23.3891,-2.6811E-05],[23.392539,-2.9389E-05],[23.395977,-2.8357E-05],[23.399416,-2.9904E-05],[23.402855,-3.1967E-05],[23.406293,-3.1451E-05],[23.409732,-3.4029E-05],[23.413171,-2.9389E-05],[23.416609,-2.217E-05],[23.420048,-2.5779E-05],[23.423487,-2.9389E-05],[23.426925,-3.0935E-05],[23.430364,-3.1967E-05],[23.433803,-2.8873E-05],[23.437241,-3.042E-05],[23.44068,-3.2998E-05],[23.444119,-3.2998E-05],[23.447557,-3.4029E-05],[23.450996,-3.5576E-05],[23.454435,-3.042E-05],[23.457873,-2.7842E-05],[23.461312,-3.1967E-05],[23.464751,-3.1967E-05],[23.468189,-3.1967E-05],[23.471628,-3.0935E-05],[23.475067,-2.7842E-05],[23.478505,-2.4748E-05],[23.481944,-2.6295E-05],[23.485383,-2.9389E-05],[23.488821,-3.1451E-05],[23.49226,-2.9389E-05],[23.495699,-2.8873E-05],[23.499137,-3.1967E-05],[23.502576,-3.0935E-05]]}
-{"quant":[23.7691,-3.0313E-05],"mems":[[23.67136,-3.2998E-05],[23.67484,-3.1451E-05],[23.67832,-2.6295E-05],[23.6818,-2.6295E-05],[23.68528,-3.2998E-05],[23.68876,-2.8357E-05],[23.69224,-2.8357E-05],[23.69572,-2.6811E-05],[23.6992,-2.7326E-05],[23.70268,-3.2482E-05],[23.70616,-3.2998E-05],[23.70964,-3.042E-05],[23.71312,-2.1655E-05],[23.7166,-2.3717E-05],[23.72008,-2.7326E-05],[23.72356,-3.042E-05],[23.72704,-3.1967E-05],[23.73052,-3.3513E-05],[23.734,-3.1967E-05],[23.73748,-2.3717E-05],[23.74096,-2.7326E-05],[23.74444,-3.1967E-05],[23.74792,-3.2998E-05],[23.7514,-2.9904E-05],[23.75488,-2.6295E-05],[23.75836,-3.2482E-05],[23.76184,-3.6091E-05],[23.76532,-3.3513E-05],[23.7688,-3.506E-05],[23.77228,-3.2998E-05],[23.77576,-2.5779E-05],[23.77924,-3.0935E-05],[23.78272,-3.2998E-05],[23.7862,-2.7326E-05],[23.78968,-3.0935E-05],[23.79316,-3.0935E-05],[23.79664,-2.6811E-05],[23.80012,-2.6295E-05],[23.8036,-2.7842E-05],[23.80708,-2.7842E-05],[23.81056,-2.8357E-05],[23.81404,-3.042E-05],[23.81752,-3.0935E-05],[23.821,-3.3513E-05],[23.82448,-3.3513E-05],[23.82796,-3.2998E-05],[23.83144,-3.2482E-05],[23.83492,-2.9389E-05],[23.8384,-2.9389E-05],[23.84188,-3.1451E-05],[23.84536,-3.1451E-05],[23.84884,-2.8357E-05],[23.85232,-2.9904E-05],[23.8558,-2.9389E-05],[23.85928,-2.8873E-05],[23.86276,-3.2998E-05],[23.86624,-3.1451E-05],[23.86972,-3.3513E-05],[23.8732,-3.506E-05],[23.87668,-3.1967E-05],[23.88016,-2.9904E-05],[23.88364,-2.9904E-05],[23.88712,-3.2482E-05],[23.8906,-3.2482E-05],[23.89408,-3.2482E-05],[23.89756,-2.9904E-05],[23.90104,-3.042E-05],[23.90452,-2.9904E-05],[23.908,-2.6811E-05],[23.91148,-3.2998E-05],[23.91496,-3.042E-05],[23.91844,-2.7326E-05],[23.92192,-3.1451E-05],[23.9254,-2.9389E-05],[23.92888,-2.8357E-05],[23.93236,-3.0935E-05],[23.93584,-2.7842E-05],[23.93932,-2.8873E-05],[23.9428,-2.9389E-05],[23.94628,-2.6295E-05],[23.94976,-3.1451E-05],[23.95324,-3.042E-05],[23.95672,-2.6295E-05],[23.9602,-2.6295E-05],[23.96368,-2.6295E-05],[23.96716,-3.042E-05],[23.97064,-2.7842E-05]]}
-{"quant":[24.3415,-2.9303E-05],"mems":[[24.24208,-3.042E-05],[24.24556,-2.4233E-05],[24.24904,-2.6295E-05],[24.25252,-3.1967E-05],[24.256,-3.0935E-05],[24.25948,-2.8873E-05],[24.26296,-2.7326E-05],[24.26644,-2.3717E-05],[24.26992,-3.0935E-05],[24.2734,-3.2998E-05],[24.27688,-2.6811E-05],[24.28036,-2.6811E-05],[24.28384,-2.5264E-05],[24.28732,-2.7842E-05],[24.2908,-3.6091E-05],[24.29428,-3.3513E-05],[24.29776,-2.9389E-05],[24.30124,-2.8357E-05],[24.30472,-2.8357E-05],[24.3082,-2.7842E-05],[24.31168,-2.5264E-05],[24.31516,-2.8357E-05],[24.31864,-2.7842E-05],[24.32212,-2.6811E-05],[24.3256,-3.1451E-05],[24.32908,-3.1967E-05],[24.33256,-2.9904E-05],[24.33604,-3.2998E-05],[24.33952,-3.0935E-05],[24.343,-2.6811E-05],[24.34648,-3.1967E-05],[24.34996,-3.2482E-05],[24.35344,-3.042E-05],[24.35692,-2.5779E-05],[24.3604,-2.5779E-05],[24.36388,-2.9389E-05],[24.36736,-3.042E-05],[24.37084,-3.1967E-05],[24.37432,-2.6811E-05],[24.3778,-3.4544E-05],[24.38128,-3.4544E-05],[24.38476,-2.3202E-05],[24.38824,-2.5264E-05],[24.39172,-2.7326E-05],[24.3952,-3.1451E-05],[24.39868,-3.042E-05],[24.40216,-2.2686E-05],[24.40564,-2.5779E-05],[24.40912,-2.7326E-05],[24.4126,-3.1451E-05],[24.41608,-3.4029E-05],[24.41956,-2.9904E-05],[24.42304,-2.8873E-05],[24.42652,-2.7326E-05],[24.43,-3.0935E-05],[24.43348,-3.2482E-05],[24.43696,-3.1451E-05],[24.44044,-3.2998E-05],[24.44392,-2.5264E-05],[24.4474,-2.6295E-05],[24.45088,-3.0935E-05],[24.45436,-2.7842E-05],[24.45784,-3.1451E-05],[24.46132,-2.8873E-05],[24.4648,-2.2686E-05],[24.46828,-2.3202E-05],[24.47176,-2.9389E-05],[24.47524,-3.2998E-05],[24.47872,-2.7842E-05],[24.4822,-2.6295E-05],[24.48568,-2.3717E-05],[24.48916,-2.3717E-05],[24.49264,-2.9904E-05],[24.49612,-2.9389E-05],[24.4996,-2.8873E-05],[24.50308,-3.4029E-05],[24.50656,-3.506E-05],[24.51004,-2.8873E-05],[24.51352,-2.7326E-05],[24.517,-3.1967E-05],[24.52048,-3.0935E-05],[24.52396,-2.9389E-05],[24.52744,-3.2998E-05],[24.53092,-3.1451E-05],[24.5344,-3.2998E-05],[24.53788,-3.042E-05],[24.54136,-2.4748E-05],[24.54484,-2.8357E-05]]}
-{"quant":[24.803,-2.9584E-05],"mems":[[24.70492,-2.8873E-05],[24.7084,-2.6295E-05],[24.71188,-2.5264E-05],[24.71536,-3.0935E-05],[24.71884,-3.4544E-05],[24.72232,-3.4544E-05],[24.7258,-2.9389E-05],[24.72928,-2.9904E-05],[24.73276,-3.2482E-05],[24.73624,-2.8873E-05],[24.73972,-2.8357E-05],[24.7432,-3.0935E-05],[24.74668,-3.042E-05],[24.75016,-2.6295E-05],[24.75364,-2.6295E-05],[24.75712,-3.042E-05],[24.7606,-3.3513E-05],[24.76408,-2.9389E-05],[24.76756,-2.6295E-05],[24.77104,-2.6811E-05],[24.77452,-3.3513E-05],[24.778,-3.3513E-05],[24.78148,-3.042E-05],[24.78496,-3.4544E-05],[24.78844,-2.9904E-05],[24.79192,-2.7326E-05],[24.7954,-2.7842E-05],[24.79888,-2.5779E-05],[24.80236,-2.9389E-05],[24.80584,-2.7326E-05],[24.80932,-2.4233E-05],[24.8128,-2.8873E-05],[24.81628,-3.3513E-05],[24.81976,-3.3513E-05],[24.82324,-3.0935E-05],[24.82672,-2.9904E-05],[24.8302,-2.8357E-05],[24.83368,-2.8873E-05],[24.83716,-3.1451E-05],[24.84064,-3.1451E-05],[24.84412,-2.9904E-05],[24.8476,-2.8357E-05],[24.85108,-2.7326E-05],[24.85456,-3.0935E-05],[24.85804,-3.042E-05],[24.86152,-2.5779E-05],[24.865,-2.7326E-05],[24.86848,-3.0935E-05],[24.87196,-3.1451E-05],[24.87544,-3.0935E-05],[24.87892,-2.6811E-05],[24.8824,-2.8357E-05],[24.88588,-3.4544E-05],[24.88936,-2.8873E-05],[24.89284,-2.2686E-05],[24.89632,-2.9389E-05],[24.8998,-3.2998E-05],[24.90328,-3.2482E-05],[24.90676,-3.2482E-05],[24.91024,-2.4748E-05],[24.91372,-2.7326E-05],[24.9172,-3.5576E-05],[24.92068,-3.2998E-05],[24.92416,-3.506E-05],[24.92764,-2.8357E-05],[24.93112,-2.6811E-05],[24.9346,-3.2998E-05],[24.93808,-2.4748E-05],[24.94156,-2.9904E-05],[24.94504,-3.506E-05],[24.94852,-2.9904E-05],[24.952,-2.9904E-05],[24.95548,-2.7842E-05],[24.95896,-2.9389E-05],[24.96244,-3.1451E-05],[24.96592,-3.1451E-05],[24.9694,-3.2482E-05],[24.97288,-2.9389E-05],[24.97636,-2.9389E-05],[24.97984,-2.9389E-05],[24.98332,-2.8357E-05],[24.9868,-3.2482E-05],[24.99028,-3.1967E-05],[24.99376,-3.0935E-05],[24.99724,-3.1967E-05],[25.00072,-3.3513E-05],[25.0042,-3.4544E-05]]}
-{"quant":[25.2717,-2.9578E-05],"mems":[[25.17472,-2.3717E-05],[25.1782,-2.5264E-05],[25.18168,-2.9904E-05],[25.18516,-2.5264E-05],[25.18864,-2.4233E-05],[25.19212,-2.9389E-05],[25.1956,-3.0935E-05],[25.19908,-2.9389E-05],[25.20256,-3.1967E-05],[25.20604,-3.1967E-05],[25.20952,-2.9904E-05],[25.213,-2.9389E-05],[25.21648,-3.0935E-05],[25.21996,-3.2998E-05],[25.22344,-3.3513E-05],[25.22692,-2.8873E-05],[25.2304,-2.5779E-05],[25.23388,-2.8873E-05],[25.23736,-2.8873E-05],[25.24084,-2.7842E-05],[25.24432,-2.8873E-05],[25.2478,-3.2998E-05],[25.25128,-3.0935E-05],[25.25476,-2.7842E-05],[25.25824,-2.9904E-05],[25.26172,-2.7842E-05],[25.2652,-3.1451E-05],[25.26868,-3.1451E-05],[25.27216,-2.7842E-05],[25.27564,-2.6811E-05],[25.27912,-3.0935E-05],[25.2826,-3.5576E-05],[25.28608,-2.9904E-05],[25.28956,-3.2482E-05],[25.29304,-3.2482E-05],[25.29652,-3.1451E-05],[25.3,-3.4029E-05],[25.30348,-3.1451E-05],[25.30696,-2.9904E-05],[25.31044,-2.4748E-05],[25.31392,-2.9389E-05],[25.3174,-2.9904E-05],[25.32088,-2.5779E-05],[25.32436,-2.6295E-05],[25.32784,-2.2686E-05],[25.33132,-2.7326E-05],[25.3348,-3.1451E-05],[25.33828,-3.2482E-05],[25.34176,-3.1451E-05],[25.34524,-2.9389E-05],[25.34872,-3.042E-05],[25.3522,-2.7842E-05],[25.35568,-3.1451E-05],[25.35916,-3.1451E-05],[25.36264,-2.7842E-05],[25.36612,-3.2998E-05],[25.3696,-2.7842E-05],[25.37308,-2.3717E-05],[25.37656,-2.7842E-05],[25.38004,-2.5779E-05],[25.38352,-3.4029E-05],[25.387,-3.3513E-05],[25.39048,-2.6295E-05],[25.39396,-2.8357E-05],[25.39744,-2.217E-05],[25.40092,-2.4233E-05],[25.4044,-3.042E-05],[25.40788,-2.9389E-05],[25.41136,-3.2482E-05],[25.41484,-2.8873E-05],[25.41832,-2.8873E-05],[25.4218,-3.0935E-05],[25.42528,-2.5779E-05],[25.42876,-2.8357E-05],[25.43224,-3.0935E-05],[25.43572,-2.9904E-05],[25.4392,-3.0935E-05],[25.44268,-3.2482E-05],[25.44616,-3.6091E-05],[25.44964,-3.4029E-05],[25.45312,-2.9904E-05],[25.4566,-3.042E-05],[25.46008,-3.0935E-05],[25.46356,-3.2482E-05],[25.46704,-2.9389E-05],[25.47052,-2.8357E-05],[25.474,-3.1967E-05]]}
-{"quant":[25.7683,-2.9784E-05],"mems":[[25.66888,-3.4029E-05],[25.67236,-2.9904E-05],[25.67584,-2.7326E-05],[25.67932,-2.6295E-05],[25.6828,-2.9904E-05],[25.68628,-3.7638E-05],[25.68976,-3.2482E-05],[25.69324,-2.7842E-05],[25.69672,-3.042E-05],[25.7002,-2.7326E-05],[25.70368,-3.042E-05],[25.70716,-3.4544E-05],[25.71064,-3.2998E-05],[25.71412,-3.2482E-05],[25.7176,-2.9389E-05],[25.72108,-2.9904E-05],[25.72456,-3.6091E-05],[25.72804,-3.3513E-05],[25.73152,-3.0935E-05],[25.735,-3.1451E-05],[25.73848,-3.1967E-05],[25.74196,-3.1451E-05],[25.74544,-2.9904E-05],[25.74892,-3.042E-05],[25.7524,-2.8873E-05],[25.75588,-2.9389E-05],[25.75936,-3.042E-05],[25.76284,-2.8873E-05],[25.76632,-2.6295E-05],[25.7698,-2.5779E-05],[25.77328,-3.042E-05],[25.77676,-2.9904E-05],[25.78024,-2.8357E-05],[25.78372,-3.1451E-05],[25.7872,-3.0935E-05],[25.79068,-2.6811E-05],[25.79416,-2.6811E-05],[25.79764,-2.7842E-05],[25.80112,-2.6295E-05],[25.8046,-2.7842E-05],[25.80808,-3.2998E-05],[25.81156,-3.2482E-05],[25.81504,-2.9389E-05],[25.81852,-2.8873E-05],[25.822,-2.8357E-05],[25.82548,-3.042E-05],[25.82896,-3.0935E-05],[25.83244,-3.0935E-05],[25.83592,-3.2998E-05],[25.8394,-3.0935E-05],[25.84288,-2.9389E-05],[25.84636,-2.6295E-05],[25.84984,-2.4748E-05],[25.85332,-3.2482E-05],[25.8568,-3.506E-05],[25.86028,-3.042E-05],[25.86376,-2.9904E-05],[25.86724,-3.3513E-05],[25.87072,-3.0935E-05],[25.8742,-2.8873E-05],[25.87768,-2.7326E-05],[25.88116,-2.4233E-05],[25.88464,-2.9389E-05],[25.88812,-3.042E-05],[25.8916,-3.042E-05],[25.89508,-3.042E-05],[25.89856,-2.8357E-05],[25.90204,-3.042E-05],[25.90552,-3.2482E-05],[25.909,-3.4029E-05],[25.91248,-3.3513E-05],[25.91596,-2.9904E-05],[25.91944,-2.8873E-05],[25.92292,-3.1451E-05],[25.9264,-3.0935E-05],[25.92988,-3.4544E-05],[25.93336,-2.9389E-05],[25.93684,-2.4748E-05],[25.94032,-3.2998E-05],[25.9438,-3.2482E-05],[25.94728,-3.1967E-05],[25.95076,-3.4544E-05],[25.95424,-2.8357E-05],[25.95772,-2.6811E-05],[25.9612,-3.4544E-05],[25.96468,-2.9904E-05],[25.96816,-2.7326E-05],[25.97164,-2.8873E-05]]}
-{"quant":[26.248,-0.23191],"mems":[[26.21524,-3.3513E-05],[26.21872,-3.2482E-05],[26.2222,-3.0935E-05],[26.22568,-3.3513E-05],[26.22916,-3.2998E-05],[26.23264,-3.1451E-05],[26.23612,-3.506E-05],[26.2396,-3.0935E-05],[26.24308,-2.4748E-05],[26.24656,-2.6811E-05],[26.25004,-3.042E-05],[26.25352,-2.7326E-05],[26.257,-2.8873E-05],[26.260393,-2.9904E-05],[26.263787,-2.6295E-05],[26.26718,-3.0935E-05],[26.270573,-3.2482E-05],[26.273967,-3.2482E-05],[26.27736,-3.1967E-05],[26.280753,-2.5779E-05],[26.284147,-2.8357E-05],[26.28754,-3.1451E-05],[26.290933,-3.1451E-05],[26.294327,-3.1967E-05],[26.29772,-2.9904E-05],[26.301113,-2.9389E-05],[26.304507,-3.1451E-05],[26.3079,-2.6295E-05],[26.311293,-2.5264E-05],[26.314687,-2.6295E-05],[26.31808,-2.6811E-05],[26.321473,-2.9904E-05],[26.324867,-2.9389E-05],[26.32826,-3.2998E-05],[26.331653,-3.2482E-05],[26.335047,-2.7842E-05],[26.33844,-2.6811E-05],[26.341833,-2.7842E-05],[26.345227,-2.6295E-05],[26.34862,-2.7326E-05],[26.352013,-3.4544E-05],[26.355407,-3.2998E-05],[26.3588,-3.042E-05],[26.362193,-3.2998E-05],[26.365587,-3.2998E-05],[26.36898,-2.9389E-05],[26.372373,-3.3513E-05],[26.375767,-3.1967E-05],[26.37916,-3.2482E-05],[26.382553,-3.7638E-05],[26.385947,-2.9389E-05],[26.38934,-3.042E-05],[26.392733,-3.2998E-05],[26.396127,-3.1451E-05],[26.39952,-2.5264E-05],[26.402913,-2.3202E-05],[26.406307,-3.2482E-05],[26.4097,-3.2482E-05],[26.413093,-3.3513E-05],[26.416487,-3.2482E-05],[26.41988,-2.9389E-05],[26.423273,-2.8873E-05],[26.426667,-3.042E-05],[26.43006,-3.2998E-05],[26.433453,-3.2998E-05],[26.436847,-3.4544E-05],[26.44024,-2.9389E-05],[26.443633,-2.6295E-05],[26.447027,-2.7842E-05],[26.45042,-3.042E-05],[26.453813,-3.2482E-05],[26.457207,-3.0935E-05],[26.4606,-3.3513E-05],[26.463993,-3.0935E-05],[26.467387,-2.9904E-05],[26.47078,-3.2482E-05],[26.474173,-3.1967E-05],[26.477567,-3.042E-05],[26.48096,-2.8873E-05],[26.484353,-2.9389E-05],[26.487747,-3.2482E-05],[26.49114,-3.4029E-05],[26.494533,-2.9904E-05],[26.497927,-2.8873E-05],[26.50132,-2.7842E-05],[26.504713,-2.7326E-05],[26.508107,-2.8357E-05]]}
-{"quant":[26.711,-2.9322E-05],"mems":[[26.6133,-3.2998E-05],[26.616693,-3.4029E-05],[26.620087,-2.9904E-05],[26.62348,-2.7842E-05],[26.626873,-3.042E-05],[26.630267,-3.0935E-05],[26.63366,-2.8873E-05],[26.637053,-2.8357E-05],[26.640447,-2.5264E-05],[26.64384,-2.6811E-05],[26.647233,-3.042E-05],[26.650627,-2.9904E-05],[26.65402,-3.4544E-05],[26.657413,-3.3513E-05],[26.660807,-2.9904E-05],[26.6642,-3.2998E-05],[26.667593,-3.042E-05],[26.670987,-2.5264E-05],[26.67438,-2.6295E-05],[26.677773,-2.7326E-05],[26.681167,-2.9389E-05],[26.68456,-2.9389E-05],[26.687953,-2.7326E-05],[26.691347,-2.7842E-05],[26.69474,-3.2998E-05],[26.698133,-3.6091E-05],[26.701527,-3.3513E-05],[26.70492,-3.3513E-05],[26.708313,-2.9904E-05],[26.711707,-2.6811E-05],[26.7151,-2.6811E-05],[26.718493,-2.7326E-05],[26.721887,-2.9904E-05],[26.72528,-3.1451E-05],[26.728673,-3.2482E-05],[26.732067,-2.9904E-05],[26.73546,-2.6811E-05],[26.738853,-2.6295E-05],[26.742247,-2.9904E-05],[26.74564,-2.8357E-05],[26.749033,-2.7842E-05],[26.752427,-2.7842E-05],[26.75582,-2.4748E-05],[26.759213,-2.8357E-05],[26.762607,-3.0935E-05],[26.766,-3.0935E-05],[26.769393,-2.9389E-05],[26.772787,-2.8357E-05],[26.77618,-3.1967E-05],[26.779573,-2.8873E-05],[26.782967,-2.9389E-05],[26.78636,-3.2998E-05],[26.789753,-2.7326E-05],[26.793147,-2.5264E-05],[26.79654,-2.8873E-05],[26.799933,-3.2998E-05],[26.803327,-3.4544E-05],[26.80672,-3.0935E-05],[26.810113,-3.042E-05],[26.813507,-3.0935E-05],[26.8169,-2.8873E-05],[26.820293,-3.1451E-05],[26.823687,-3.7638E-05],[26.82708,-3.4029E-05],[26.830473,-2.9389E-05],[26.833867,-3.1451E-05],[26.83726,-2.7842E-05],[26.840653,-3.0935E-05],[26.844047,-3.6091E-05],[26.84744,-3.1967E-05],[26.850833,-2.8873E-05],[26.854227,-2.8357E-05],[26.85762,-2.5779E-05],[26.861013,-2.7842E-05],[26.864407,-3.0935E-05],[26.8678,-2.7326E-05],[26.871193,-2.9904E-05],[26.874587,-3.2482E-05],[26.87798,-2.8873E-05],[26.881373,-2.9389E-05],[26.884767,-3.0935E-05],[26.88816,-3.2998E-05],[26.891553,-2.9904E-05],[26.894947,-2.8357E-05],[26.89834,-3.042E-05],[26.901733,-2.9904E-05],[26.905127,-2.8357E-05],[26.90852,-2.5264E-05],[26.911913,-2.7326E-05]]}
-{"quant":[27.1985,-2.9423E-05],"mems":[[27.098547,-3.0935E-05],[27.10194,-2.7326E-05],[27.105333,-3.042E-05],[27.108727,-2.9389E-05],[27.11212,-2.9389E-05],[27.115513,-2.8357E-05],[27.118907,-2.5264E-05],[27.1223,-3.0935E-05],[27.125693,-3.0935E-05],[27.129087,-2.7326E-05],[27.13248,-2.5779E-05],[27.135873,-2.5779E-05],[27.139267,-2.4233E-05],[27.14266,-2.9904E-05],[27.146053,-3.4029E-05],[27.149447,-3.042E-05],[27.15284,-2.8873E-05],[27.156233,-2.9904E-05],[27.159627,-3.5576E-05],[27.16302,-2.8357E-05],[27.166413,-2.9389E-05],[27.169807,-3.5576E-05],[27.1732,-2.5779E-05],[27.176593,-2.9389E-05],[27.179987,-3.4029E-05],[27.18338,-2.9904E-05],[27.186773,-2.7842E-05],[27.190167,-3.2998E-05],[27.19356,-3.4544E-05],[27.196953,-2.8873E-05],[27.200347,-3.1451E-05],[27.20374,-3.3513E-05],[27.207133,-3.1967E-05],[27.210527,-2.8873E-05],[27.21392,-2.6811E-05],[27.217313,-3.1967E-05],[27.220707,-3.1967E-05],[27.2241,-2.9389E-05],[27.227493,-2.9904E-05],[27.230887,-2.8357E-05],[27.23428,-2.9389E-05],[27.237673,-2.9904E-05],[27.241067,-2.8357E-05],[27.24446,-2.8357E-05],[27.247853,-2.9389E-05],[27.251247,-2.6811E-05],[27.25464,-2.6295E-05],[27.258033,-3.1451E-05],[27.261427,-2.8873E-05],[27.26482,-2.6295E-05],[27.268213,-2.8357E-05],[27.271607,-3.042E-05],[27.275,-3.1451E-05],[27.278393,-3.1967E-05],[27.281787,-3.042E-05],[27.28518,-2.5264E-05],[27.288573,-2.6811E-05],[27.291967,-2.8357E-05],[27.29536,-2.8357E-05],[27.298753,-3.1967E-05],[27.302147,-2.9389E-05],[27.30554,-2.9389E-05],[27.308933,-2.7326E-05],[27.312327,-2.6295E-05],[27.31572,-3.042E-05],[27.319113,-2.8873E-05],[27.322507,-2.9904E-05],[27.3259,-2.8357E-05],[27.329293,-2.4748E-05],[27.332687,-2.8357E-05],[27.33608,-3.042E-05],[27.339473,-2.9389E-05],[27.342867,-2.7842E-05],[27.34626,-3.1967E-05],[27.349653,-2.8357E-05],[27.353047,-2.4748E-05],[27.35644,-2.8873E-05],[27.359833,-3.1451E-05],[27.363227,-3.042E-05],[27.36662,-2.4748E-05],[27.370013,-2.6811E-05],[27.373407,-2.7842E-05],[27.3768,-2.6811E-05],[27.380193,-2.8873E-05],[27.383587,-2.8357E-05],[27.38698,-3.2482E-05],[27.390373,-3.506E-05],[27.393767,-3.3513E-05],[27.39716,-3.1967E-05],[27.400553,-2.9904E-05]]}
-{"quant":[27.6616,-2.9505E-05],"mems":[[27.563433,-3.1451E-05],[27.566827,-3.0935E-05],[27.57022,-3.3513E-05],[27.573613,-2.5779E-05],[27.577007,-2.8873E-05],[27.5804,-3.2998E-05],[27.583793,-2.9389E-05],[27.587187,-2.9389E-05],[27.59058,-2.9904E-05],[27.593973,-3.1451E-05],[27.597367,-2.9904E-05],[27.60076,-2.5779E-05],[27.604153,-2.8357E-05],[27.607547,-3.042E-05],[27.61094,-2.8873E-05],[27.614333,-3.2998E-05],[27.617727,-3.1967E-05],[27.62112,-2.6295E-05],[27.624513,-2.6295E-05],[27.627907,-3.042E-05],[27.6313,-3.2482E-05],[27.634693,-2.9389E-05],[27.638087,-3.0935E-05],[27.64148,-3.4029E-05],[27.644873,-3.042E-05],[27.648267,-3.1451E-05],[27.65166,-3.506E-05],[27.655053,-3.3513E-05],[27.658447,-3.1967E-05],[27.66184,-2.8357E-05],[27.665233,-2.9389E-05],[27.668627,-3.3513E-05],[27.67202,-2.7842E-05],[27.675413,-2.6811E-05],[27.678807,-2.8873E-05],[27.6822,-3.0935E-05],[27.685593,-3.1451E-05],[27.688987,-2.9389E-05],[27.69238,-3.042E-05],[27.695773,-3.0935E-05],[27.699167,-3.0935E-05],[27.70256,-2.6295E-05],[27.705953,-2.6811E-05],[27.709347,-2.9904E-05],[27.71274,-3.042E-05],[27.716133,-3.2998E-05],[27.719527,-2.6295E-05],[27.72292,-2.3717E-05],[27.726313,-2.4748E-05],[27.729707,-2.9904E-05],[27.7331,-3.4544E-05],[27.736493,-2.9904E-05],[27.739887,-3.042E-05],[27.74328,-2.9904E-05],[27.746673,-2.8357E-05],[27.750067,-3.1967E-05],[27.75346,-3.042E-05],[27.756853,-2.9904E-05],[27.760247,-3.0935E-05],[27.76364,-2.8357E-05],[27.767033,-2.6811E-05],[27.770427,-2.9904E-05],[27.77382,-3.6091E-05],[27.777213,-3.2482E-05],[27.780607,-2.7326E-05],[27.784,-3.2482E-05],[27.787393,-3.042E-05],[27.790787,-3.042E-05],[27.79418,-3.2482E-05],[27.797573,-3.1451E-05],[27.800967,-3.1451E-05],[27.80436,-2.7842E-05],[27.807753,-2.7842E-05],[27.811147,-2.6811E-05],[27.81454,-2.7842E-05],[27.817933,-2.6295E-05],[27.821327,-2.4748E-05],[27.82472,-2.7842E-05],[27.828113,-2.9389E-05],[27.831507,-3.2998E-05],[27.8349,-3.2998E-05],[27.838293,-3.042E-05],[27.841687,-3.1451E-05],[27.84508,-3.4029E-05],[27.848473,-3.3513E-05],[27.851867,-3.2482E-05],[27.85526,-3.042E-05],[27.858653,-2.7842E-05],[27.862047,-2.5779E-05]]}
-{"quant":[28.1216,-2.9526E-05],"mems":[[28.024927,-2.9904E-05],[28.02832,-2.9389E-05],[28.031713,-3.1967E-05],[28.035107,-3.7122E-05],[28.0385,-2.7842E-05],[28.041893,-2.7326E-05],[28.045287,-3.1451E-05],[28.04868,-2.9904E-05],[28.052073,-2.8357E-05],[28.055467,-2.6295E-05],[28.05886,-2.7326E-05],[28.062253,-2.8357E-05],[28.065647,-3.042E-05],[28.06904,-3.0935E-05],[28.072433,-2.9904E-05],[28.075827,-2.8873E-05],[28.07922,-2.6295E-05],[28.082613,-2.8357E-05],[28.086007,-3.506E-05],[28.0894,-2.9904E-05],[28.092793,-2.7842E-05],[28.096187,-3.2998E-05],[28.09958,-3.042E-05],[28.102973,-3.2482E-05],[28.106367,-3.4029E-05],[28.10976,-3.1451E-05],[28.113153,-3.0935E-05],[28.116547,-3.1967E-05],[28.11994,-3.1451E-05],[28.123333,-2.9389E-05],[28.126727,-2.9904E-05],[28.13012,-2.6295E-05],[28.133513,-2.217E-05],[28.136907,-2.5779E-05],[28.1403,-3.1451E-05],[28.143693,-3.2482E-05],[28.147087,-3.3513E-05],[28.15048,-3.1451E-05],[28.153873,-2.9389E-05],[28.157267,-2.4748E-05],[28.16066,-2.7326E-05],[28.164053,-3.1451E-05],[28.167447,-2.6295E-05],[28.17084,-2.8873E-05],[28.174233,-3.1967E-05],[28.177627,-2.8357E-05],[28.18102,-3.4029E-05],[28.184413,-3.1967E-05],[28.187807,-2.7326E-05],[28.1912,-3.2482E-05],[28.194593,-3.2482E-05],[28.197987,-3.1451E-05],[28.20138,-3.1451E-05],[28.204773,-3.1451E-05],[28.208167,-3.1967E-05],[28.21156,-3.042E-05],[28.214953,-2.9904E-05],[28.218347,-2.4748E-05],[28.22174,-2.5264E-05],[28.225133,-3.5576E-05],[28.228527,-3.506E-05],[28.23192,-3.4029E-05],[28.235313,-3.4544E-05],[28.238707,-3.042E-05],[28.2421,-2.9904E-05],[28.245493,-2.9389E-05],[28.248887,-3.3513E-05],[28.25228,-3.2998E-05],[28.255673,-2.6811E-05],[28.259067,-3.0935E-05],[28.26246,-3.1967E-05],[28.265853,-3.0935E-05],[28.269247,-3.0935E-05],[28.27264,-2.9389E-05],[28.276033,-2.7842E-05],[28.279427,-2.9389E-05],[28.28282,-3.042E-05],[28.286213,-2.7326E-05],[28.289607,-2.8873E-05],[28.293,-2.6811E-05],[28.296393,-3.1451E-05],[28.299787,-3.2482E-05],[28.30318,-3.0935E-05],[28.306573,-3.4029E-05],[28.309967,-3.0935E-05],[28.31336,-3.042E-05],[28.316753,-2.8357E-05],[28.320147,-3.2482E-05],[28.32354,-3.2998E-05]]}
-{"quant":[28.5872,-2.9222E-05],"mems":[[28.489813,-2.3717E-05],[28.493207,-3.2998E-05],[28.4966,-3.0935E-05],[28.499993,-2.8873E-05],[28.503387,-3.2998E-05],[28.50678,-2.9389E-05],[28.510173,-2.5779E-05],[28.513567,-2.6295E-05],[28.51696,-3.0935E-05],[28.520353,-3.042E-05],[28.523747,-2.9389E-05],[28.52714,-2.6811E-05],[28.530533,-2.6295E-05],[28.533927,-2.9389E-05],[28.53732,-3.1451E-05],[28.540713,-3.042E-05],[28.544107,-2.9904E-05],[28.5475,-3.042E-05],[28.550893,-2.4233E-05],[28.554287,-2.7842E-05],[28.55768,-3.2482E-05],[28.561073,-2.7326E-05],[28.564467,-3.1451E-05],[28.56786,-3.0935E-05],[28.571253,-2.6811E-05],[28.574647,-2.8357E-05],[28.57804,-2.7842E-05],[28.581433,-3.3513E-05],[28.584827,-3.4029E-05],[28.58822,-2.9389E-05],[28.591613,-3.042E-05],[28.595007,-2.8873E-05],[28.5984,-3.4029E-05],[28.601793,-3.5576E-05],[28.605187,-3.042E-05],[28.60858,-2.9904E-05],[28.611973,-2.7326E-05],[28.615367,-3.1451E-05],[28.61876,-3.506E-05],[28.622153,-3.4029E-05],[28.625547,-2.5779E-05],[28.62894,-2.5779E-05],[28.632333,-3.3513E-05],[28.635727,-2.9389E-05],[28.63912,-2.8873E-05],[28.642513,-2.8873E-05],[28.645907,-2.6295E-05],[28.6493,-2.4748E-05],[28.652693,-2.217E-05],[28.656087,-2.7326E-05],[28.65948,-2.9904E-05],[28.662873,-2.9904E-05],[28.666267,-2.8357E-05],[28.66966,-2.2686E-05],[28.673053,-2.4233E-05],[28.676447,-3.042E-05],[28.67984,-3.0935E-05],[28.683233,-3.0935E-05],[28.686627,-3.1451E-05],[28.69002,-2.7842E-05],[28.693413,-2.7842E-05],[28.696807,-3.2482E-05],[28.7002,-3.6091E-05],[28.703593,-3.1967E-05],[28.706987,-2.9904E-05],[28.71038,-3.0935E-05],[28.713773,-2.6295E-05],[28.717167,-2.7326E-05],[28.72056,-3.1967E-05],[28.723953,-2.8357E-05],[28.727347,-2.7326E-05],[28.73074,-2.7842E-05],[28.734133,-2.8357E-05],[28.737527,-2.9389E-05],[28.74092,-2.7326E-05],[28.744313,-2.5779E-05],[28.747707,-2.6811E-05],[28.7511,-2.8357E-05],[28.754493,-2.9389E-05],[28.757887,-3.042E-05],[28.76128,-2.8873E-05],[28.764673,-2.8357E-05],[28.768067,-3.1451E-05],[28.77146,-2.8873E-05],[28.774853,-2.8357E-05],[28.778247,-3.042E-05],[28.78164,-2.8873E-05],[28.785033,-3.2998E-05],[28.788427,-3.2482E-05]]}
-{"quant":[29.0637,-2.8581E-05],"mems":[[28.967056,-2.8873E-05],[28.970495,-2.6811E-05],[28.973933,-3.1451E-05],[28.977372,-3.4029E-05],[28.980811,-3.042E-05],[28.984249,-3.1451E-05],[28.987688,-2.8873E-05],[28.991127,-2.7842E-05],[28.994565,-3.506E-05],[28.998004,-3.2482E-05],[29.001443,-3.2482E-05],[29.004881,-3.2482E-05],[29.00832,-2.6811E-05],[29.011759,-2.6295E-05],[29.015197,-2.5264E-05],[29.018636,-2.9389E-05],[29.022075,-3.2482E-05],[29.025513,-3.042E-05],[29.028952,-2.8357E-05],[29.032391,-3.042E-05],[29.035829,-3.3513E-05],[29.039268,-3.1967E-05],[29.042707,-3.3513E-05],[29.046145,-2.7326E-05],[29.049584,-2.9389E-05],[29.053023,-3.3513E-05],[29.056461,-2.6295E-05],[29.0599,-2.8357E-05],[29.063339,-2.7842E-05],[29.066777,-2.9389E-05],[29.070216,-2.9389E-05],[29.073655,-2.7326E-05],[29.077093,-3.0935E-05],[29.080532,-2.9389E-05],[29.083971,-2.9904E-05],[29.087409,-2.7842E-05],[29.090848,-2.6295E-05],[29.094287,-2.8873E-05],[29.097725,-2.7326E-05],[29.101164,-2.6295E-05],[29.104603,-2.9389E-05],[29.108041,-2.7326E-05],[29.11148,-2.5264E-05],[29.114919,-2.7842E-05],[29.118357,-2.7842E-05],[29.121796,-2.7842E-05],[29.125235,-2.4233E-05],[29.128673,-2.5779E-05],[29.132112,-2.8873E-05],[29.135551,-2.7326E-05],[29.138989,-2.8357E-05],[29.142428,-2.8357E-05],[29.145867,-3.2482E-05],[29.149305,-3.1451E-05],[29.152744,-2.7842E-05],[29.156183,-3.1451E-05],[29.159621,-3.1451E-05],[29.16306,-3.0935E-05],[29.166499,-3.042E-05],[29.169937,-2.6295E-05],[29.173376,-2.6295E-05],[29.176815,-2.9904E-05],[29.180253,-3.1967E-05],[29.183692,-3.1967E-05],[29.187131,-2.7326E-05],[29.190569,-2.9389E-05],[29.194008,-3.2482E-05],[29.197447,-3.0935E-05],[29.200885,-3.1967E-05],[29.204324,-3.4029E-05],[29.207763,-3.1451E-05],[29.211201,-2.8357E-05],[29.21464,-3.2998E-05],[29.218079,-2.8873E-05],[29.221517,-2.4233E-05],[29.224956,-2.9904E-05],[29.228395,-2.7842E-05],[29.231833,-2.9389E-05],[29.235272,-3.042E-05],[29.238711,-2.3717E-05],[29.242149,-2.6811E-05],[29.245588,-3.0935E-05],[29.249027,-2.6811E-05],[29.252465,-2.7326E-05],[29.255904,-3.2998E-05],[29.259343,-3.3513E-05],[29.262781,-3.0935E-05],[29.26622,-2.6295E-05]]}
-{"quant":[29.619,-2.81E-05],"mems":[[29.520681,-3.1451E-05],[29.52412,-2.6811E-05],[29.527559,-2.4748E-05],[29.530997,-2.7326E-05],[29.534436,-2.9389E-05],[29.537875,-2.9904E-05],[29.541313,-2.9904E-05],[29.544752,-2.8357E-05],[29.548191,-2.5779E-05],[29.551629,-2.8357E-05],[29.555068,-3.0935E-05],[29.558507,-3.1967E-05],[29.561945,-3.1967E-05],[29.565384,-2.8873E-05],[29.568823,-2.4233E-05],[29.572261,-2.9389E-05],[29.5757,-3.1967E-05],[29.579139,-3.042E-05],[29.582577,-2.7842E-05],[29.586016,-2.4748E-05],[29.589455,-2.5779E-05],[29.592893,-2.6295E-05],[29.596332,-3.0935E-05],[29.599771,-2.8357E-05],[29.603209,-2.7326E-05],[29.606648,-2.9904E-05],[29.610087,-2.6295E-05],[29.613525,-2.7326E-05],[29.616964,-2.8357E-05],[29.620403,-2.9389E-05],[29.623841,-2.7326E-05],[29.62728,-2.8357E-05],[29.630719,-3.0935E-05],[29.634157,-2.9904E-05],[29.637596,-3.0935E-05],[29.641035,-3.0935E-05],[29.644473,-2.8873E-05],[29.647912,-2.3202E-05],[29.651351,-2.7842E-05],[29.654789,-3.0935E-05],[29.658228,-2.8357E-05],[29.661667,-2.9389E-05],[29.665105,-2.8873E-05],[29.668544,-2.6295E-05],[29.671983,-2.9389E-05],[29.675421,-3.042E-05],[29.67886,-2.8357E-05],[29.682299,-3.042E-05],[29.685737,-2.4233E-05],[29.689176,-2.1655E-05],[29.692615,-2.6811E-05],[29.696053,-2.4748E-05],[29.699492,-2.217E-05],[29.702931,-2.5779E-05],[29.706369,-2.6811E-05],[29.709808,-2.8873E-05],[29.713247,-3.2482E-05],[29.716685,-2.9389E-05],[29.720124,-2.9904E-05],[29.723563,-3.042E-05],[29.727001,-2.7326E-05],[29.73044,-2.7326E-05],[29.733879,-2.7326E-05],[29.737317,-2.3717E-05],[29.740756,-2.4233E-05],[29.744195,-2.9389E-05],[29.747633,-2.7326E-05],[29.751072,-2.7842E-05],[29.754511,-3.042E-05],[29.757949,-2.9389E-05],[29.761388,-3.1967E-05],[29.764827,-2.7842E-05],[29.768265,-2.5264E-05],[29.771704,-3.042E-05],[29.775143,-2.9389E-05],[29.778581,-3.1967E-05],[29.78202,-3.0935E-05],[29.785459,-2.5779E-05],[29.788897,-3.1451E-05],[29.792336,-2.7842E-05],[29.795775,-2.5264E-05],[29.799213,-3.0935E-05],[29.802652,-2.8873E-05],[29.806091,-2.6295E-05],[29.809529,-2.8357E-05],[29.812968,-3.0935E-05],[29.816407,-3.0935E-05],[29.819845,-2.9904E-05]]}
-{"quant":[30.0724,-3.0334E-05],"mems":[[29.974585,-3.042E-05],[29.978024,-2.5779E-05],[29.981463,-2.7326E-05],[29.984901,-3.042E-05],[29.98834,-2.5779E-05],[29.991779,-2.8873E-05],[29.995217,-2.9904E-05],[29.998656,-2.8873E-05],[30.002095,-2.9389E-05],[30.005533,-2.7326E-05],[30.008972,-2.8873E-05],[30.012411,-3.2998E-05],[30.015849,-2.9389E-05],[30.019288,-2.8357E-05],[30.022727,-2.8873E-05],[30.026165,-3.1451E-05],[30.029604,-3.506E-05],[30.033043,-3.1451E-05],[30.036481,-3.0935E-05],[30.03992,-2.7842E-05],[30.043359,-2.7842E-05],[30.046797,-2.8873E-05],[30.050236,-2.8357E-05],[30.053675,-2.9904E-05],[30.057113,-2.8357E-05],[30.060552,-2.5779E-05],[30.063991,-2.7326E-05],[30.067429,-2.6811E-05],[30.070868,-2.8357E-05],[30.074307,-3.4544E-05],[30.077745,-3.042E-05],[30.081184,-2.8873E-05],[30.084623,-3.0935E-05],[30.088061,-2.9904E-05],[30.0915,-2.9904E-05],[30.094939,-2.6811E-05],[30.098377,-2.7842E-05],[30.101816,-2.7326E-05],[30.105255,-2.9904E-05],[30.108693,-3.4029E-05],[30.112132,-3.3513E-05],[30.115571,-2.9904E-05],[30.119009,-2.9904E-05],[30.122448,-3.4029E-05],[30.125887,-2.7842E-05],[30.129325,-2.6295E-05],[30.132764,-2.7326E-05],[30.136203,-3.1967E-05],[30.139641,-3.2482E-05],[30.14308,-2.8357E-05],[30.146519,-2.8873E-05],[30.149957,-2.8873E-05],[30.153396,-3.6091E-05],[30.156835,-3.2482E-05],[30.160273,-3.2482E-05],[30.163712,-3.0935E-05],[30.167151,-2.4233E-05],[30.170589,-3.1451E-05],[30.174028,-3.2482E-05],[30.177467,-3.0935E-05],[30.180905,-2.9904E-05],[30.184344,-2.7842E-05],[30.187783,-2.9904E-05],[30.191221,-2.9904E-05],[30.19466,-2.7842E-05],[30.198099,-2.6811E-05],[30.201537,-3.1967E-05],[30.204976,-3.1967E-05],[30.208415,-2.3717E-05],[30.211853,-2.6295E-05],[30.215292,-2.8873E-05],[30.218731,-2.8357E-05],[30.222169,-3.042E-05],[30.225608,-2.7326E-05],[30.229047,-2.7842E-05],[30.232485,-2.8873E-05],[30.235924,-2.4748E-05],[30.239363,-2.5264E-05],[30.242801,-2.9904E-05],[30.24624,-2.9904E-05],[30.249679,-2.8873E-05],[30.253117,-2.6811E-05],[30.256556,-2.6295E-05],[30.259995,-2.9389E-05],[30.263433,-2.6811E-05],[30.266872,-2.5264E-05],[30.270311,-2.7326E-05],[30.273749,-2.9389E-05]]}
-{"quant":[30.5687,-2.8684E-05],"mems":[[30.469753,-2.5779E-05],[30.473192,-3.0935E-05],[30.476631,-2.8357E-05],[30.480069,-2.9904E-05],[30.483508,-2.7842E-05],[30.486947,-2.2686E-05],[30.490385,-2.8873E-05],[30.493824,-3.1967E-05],[30.497263,-3.3513E-05],[30.500701,-3.1967E-05],[30.50414,-2.7842E-05],[30.507579,-2.9904E-05],[30.511017,-3.1451E-05],[30.514456,-3.1451E-05],[30.517895,-3.1967E-05],[30.521333,-3.5576E-05],[30.524772,-3.1451E-05],[30.528211,-2.6811E-05],[30.531649,-2.8357E-05],[30.535088,-2.7842E-05],[30.538527,-3.1967E-05],[30.541965,-2.8357E-05],[30.545404,-2.4748E-05],[30.548843,-2.8357E-05],[30.552281,-2.9904E-05],[30.55572,-3.042E-05],[30.559159,-2.9389E-05],[30.562597,-3.042E-05],[30.566036,-2.8357E-05],[30.569475,-2.4748E-05],[30.572913,-3.1967E-05],[30.576352,-3.7122E-05],[30.579791,-2.9389E-05],[30.583229,-2.6295E-05],[30.586668,-3.042E-05],[30.590107,-2.7326E-05],[30.593545,-2.3717E-05],[30.596984,-2.8357E-05],[30.600423,-3.0935E-05],[30.603861,-2.6295E-05],[30.6073,-2.7326E-05],[30.610739,-3.0935E-05],[30.614177,-3.1967E-05],[30.617616,-3.3513E-05],[30.621055,-3.042E-05],[30.624493,-2.7842E-05],[30.627932,-2.8357E-05],[30.631371,-2.2686E-05],[30.634809,-2.3202E-05],[30.638248,-2.9904E-05],[30.641687,-2.9389E-05],[30.645125,-2.7326E-05],[30.648564,-2.6295E-05],[30.652003,-2.9904E-05],[30.655441,-3.4544E-05],[30.65888,-3.1451E-05],[30.662319,-2.5264E-05],[30.665757,-2.3717E-05],[30.669196,-2.9904E-05],[30.672635,-3.1967E-05],[30.676073,-3.1451E-05],[30.679512,-3.1967E-05],[30.682951,-2.4748E-05],[30.686389,-2.6295E-05],[30.689828,-3.1451E-05],[30.693267,-2.9904E-05],[30.696705,-3.1451E-05],[30.700144,-2.9904E-05],[30.703583,-2.8873E-05],[30.707021,-2.8357E-05],[30.71046,-2.5779E-05],[30.713899,-2.9904E-05],[30.717337,-3.4544E-05],[30.720776,-2.9389E-05],[30.724215,-2.7842E-05],[30.727653,-2.7842E-05],[30.731092,-2.8357E-05],[30.734531,-3.4544E-05],[30.737969,-3.042E-05],[30.741408,-2.9389E-05],[30.744847,-2.9904E-05],[30.748285,-2.6295E-05],[30.751724,-3.042E-05],[30.755163,-3.1451E-05],[30.758601,-3.4544E-05],[30.76204,-3.6091E-05],[30.765479,-2.6811E-05],[30.768917,-2.7326E-05]]}
-{"quant":[31.0326,-2.9354E-05],"mems":[[30.933973,-3.4029E-05],[30.937412,-3.1967E-05],[30.940851,-2.9389E-05],[30.944289,-3.042E-05],[30.947728,-2.9389E-05],[30.951167,-2.6811E-05],[30.954605,-2.6295E-05],[30.958044,-3.042E-05],[30.961483,-3.2998E-05],[30.964921,-3.0935E-05],[30.96836,-2.8357E-05],[30.971799,-2.6295E-05],[30.975237,-2.5264E-05],[30.978676,-2.5779E-05],[30.982115,-2.5264E-05],[30.985553,-2.217E-05],[30.988992,-2.5264E-05],[30.992431,-2.5779E-05],[30.995869,-2.7842E-05],[30.999308,-3.042E-05],[31.002747,-3.2482E-05],[31.006185,-2.7842E-05],[31.009624,-2.2686E-05],[31.013063,-3.1967E-05],[31.016501,-2.6811E-05],[31.01994,-2.217E-05],[31.023379,-2.8873E-05],[31.026817,-3.042E-05],[31.030256,-3.0935E-05],[31.033695,-2.9904E-05],[31.037133,-3.042E-05],[31.040572,-2.9389E-05],[31.044011,-2.8873E-05],[31.047449,-2.6811E-05],[31.050888,-2.9389E-05],[31.054327,-3.6607E-05],[31.057765,-2.6811E-05],[31.061204,-2.4233E-05],[31.064643,-3.0935E-05],[31.068081,-2.7842E-05],[31.07152,-2.9389E-05],[31.074959,-2.8873E-05],[31.078397,-2.7842E-05],[31.081836,-2.6811E-05],[31.085275,-2.4748E-05],[31.088713,-2.8873E-05],[31.092152,-2.7326E-05],[31.095591,-3.1451E-05],[31.099029,-3.2998E-05],[31.102468,-2.7326E-05],[31.105907,-3.042E-05],[31.109345,-3.1967E-05],[31.112784,-3.4544E-05],[31.116223,-3.1967E-05],[31.119661,-2.8357E-05],[31.1231,-2.7326E-05],[31.126539,-2.7326E-05],[31.129977,-3.0935E-05],[31.133416,-3.0935E-05],[31.136855,-3.2482E-05],[31.140293,-2.9904E-05],[31.143732,-2.5779E-05],[31.147171,-2.5264E-05],[31.150609,-2.6295E-05],[31.154048,-3.3513E-05],[31.157487,-3.2482E-05],[31.160925,-2.6295E-05],[31.164364,-2.8873E-05],[31.167803,-2.8873E-05],[31.171241,-2.5264E-05],[31.17468,-2.8873E-05],[31.178119,-2.9904E-05],[31.181557,-2.8873E-05],[31.184996,-2.8873E-05],[31.188435,-2.8873E-05],[31.191873,-3.1967E-05],[31.195312,-2.9904E-05],[31.198751,-3.1451E-05],[31.202189,-3.042E-05],[31.205628,-3.042E-05],[31.209067,-2.8873E-05],[31.212505,-2.6811E-05],[31.215944,-3.3513E-05],[31.219383,-3.0935E-05],[31.222821,-2.7326E-05],[31.22626,-2.3717E-05],[31.229699,-2.4748E-05],[31.233137,-2.7326E-05]]}
-{"quant":[31.504,-3.0265E-05],"mems":[[31.405621,-2.9904E-05],[31.409139,-2.8873E-05],[31.412656,-3.0935E-05],[31.416173,-3.2482E-05],[31.419691,-2.9904E-05],[31.423208,-2.7842E-05],[31.426725,-2.8357E-05],[31.430243,-2.7842E-05],[31.43376,-2.8873E-05],[31.437277,-2.8873E-05],[31.440795,-2.7842E-05],[31.444312,-2.5779E-05],[31.447829,-2.5264E-05],[31.451347,-2.9389E-05],[31.454864,-2.5264E-05],[31.458381,-2.4748E-05],[31.461899,-3.0935E-05],[31.465416,-3.1451E-05],[31.468933,-3.042E-05],[31.472451,-2.6295E-05],[31.475968,-2.6811E-05],[31.479485,-3.1451E-05],[31.483003,-2.6811E-05],[31.48652,-2.4233E-05],[31.490037,-2.5264E-05],[31.493555,-3.042E-05],[31.497072,-2.8873E-05],[31.500589,-2.9389E-05],[31.504107,-3.4544E-05],[31.507624,-2.8873E-05],[31.511141,-2.9904E-05],[31.514659,-3.1967E-05],[31.518176,-3.0935E-05],[31.521693,-3.2998E-05],[31.525211,-2.7326E-05],[31.528728,-2.7326E-05],[31.532245,-2.8357E-05],[31.535763,-3.2482E-05],[31.53928,-3.3513E-05],[31.542797,-2.9904E-05],[31.546315,-3.042E-05],[31.549832,-2.9389E-05],[31.553349,-3.4544E-05],[31.556867,-3.5576E-05],[31.560384,-2.6811E-05],[31.563901,-2.6811E-05],[31.567419,-2.7842E-05],[31.570936,-2.6811E-05],[31.574453,-2.6811E-05],[31.577971,-3.0935E-05],[31.581488,-3.2998E-05],[31.585005,-3.042E-05],[31.588523,-2.8873E-05],[31.59204,-2.9904E-05],[31.595557,-3.4029E-05],[31.599075,-2.8357E-05],[31.602592,-2.5264E-05],[31.606109,-3.4029E-05],[31.609627,-3.2482E-05],[31.613144,-3.042E-05],[31.616661,-3.0935E-05],[31.620179,-2.9389E-05],[31.623696,-3.0935E-05],[31.627213,-3.0935E-05],[31.630731,-2.8357E-05],[31.634248,-2.5779E-05],[31.637765,-3.1967E-05],[31.641283,-3.4029E-05],[31.6448,-2.9389E-05],[31.648317,-3.1451E-05],[31.651835,-3.042E-05],[31.655352,-2.8357E-05],[31.658869,-3.1451E-05],[31.662387,-3.2482E-05],[31.665904,-3.2998E-05],[31.669421,-3.2482E-05],[31.672939,-3.0935E-05],[31.676456,-3.0935E-05],[31.679973,-2.9389E-05],[31.683491,-2.9389E-05],[31.687008,-3.0935E-05],[31.690525,-3.042E-05],[31.694043,-2.9389E-05],[31.69756,-2.8873E-05],[31.701077,-3.0935E-05],[31.704595,-3.1967E-05]]}
-{"quant":[32.0793,-3.0491E-05],"mems":[[31.982464,-2.9389E-05],[31.985981,-2.9904E-05],[31.989499,-2.6811E-05],[31.993016,-2.9389E-05],[31.996533,-3.1451E-05],[32.000051,-2.8873E-05],[32.003568,-2.3202E-05],[32.007085,-3.042E-05],[32.010603,-3.7122E-05],[32.01412,-2.8357E-05],[32.017637,-2.7326E-05],[32.021155,-2.9904E-05],[32.024672,-2.5264E-05],[32.028189,-2.6811E-05],[32.031707,-2.9904E-05],[32.035224,-3.2482E-05],[32.038741,-3.3513E-05],[32.042259,-2.9904E-05],[32.045776,-2.9389E-05],[32.049293,-3.2998E-05],[32.052811,-3.6607E-05],[32.056328,-3.1451E-05],[32.059845,-2.7842E-05],[32.063363,-2.8873E-05],[32.06688,-3.042E-05],[32.070397,-3.5576E-05],[32.073915,-3.042E-05],[32.077432,-2.6811E-05],[32.080949,-2.7326E-05],[32.084467,-2.8873E-05],[32.087984,-3.1451E-05],[32.091501,-2.9904E-05],[32.095019,-3.4544E-05],[32.098536,-3.042E-05],[32.102053,-2.6811E-05],[32.105571,-2.8873E-05],[32.109088,-2.8357E-05],[32.112605,-3.3513E-05],[32.116123,-3.1451E-05],[32.11964,-2.8357E-05],[32.123157,-2.7842E-05],[32.126675,-2.8357E-05],[32.130192,-2.8873E-05],[32.133709,-2.9389E-05],[32.137227,-3.2998E-05],[32.140744,-2.9904E-05],[32.144261,-3.2482E-05],[32.147779,-3.4544E-05],[32.151296,-3.0935E-05],[32.154813,-3.2482E-05],[32.158331,-3.0935E-05],[32.161848,-2.4748E-05],[32.165365,-2.6811E-05],[32.168883,-3.1967E-05],[32.1724,-3.4029E-05],[32.175917,-3.506E-05],[32.179435,-3.2998E-05],[32.182952,-3.3513E-05],[32.186469,-3.0935E-05],[32.189987,-3.0935E-05],[32.193504,-2.9389E-05],[32.197021,-2.4748E-05],[32.200539,-2.9904E-05],[32.204056,-2.9904E-05],[32.207573,-2.4748E-05],[32.211091,-2.3202E-05],[32.214608,-2.6811E-05],[32.218125,-3.042E-05],[32.221643,-2.8873E-05],[32.22516,-2.8873E-05],[32.228677,-3.042E-05],[32.232195,-3.2998E-05],[32.235712,-2.9904E-05],[32.239229,-2.6295E-05],[32.242747,-2.7842E-05],[32.246264,-2.3202E-05],[32.249781,-2.5779E-05],[32.253299,-3.2482E-05],[32.256816,-2.6811E-05],[32.260333,-2.7842E-05],[32.263851,-2.9389E-05],[32.267368,-2.7842E-05],[32.270885,-3.2482E-05],[32.274403,-3.506E-05],[32.27792,-3.2998E-05],[32.281437,-2.7842E-05]]}
-{"quant":[32.537,-2.9457E-05],"mems":[[32.439717,-2.8357E-05],[32.443235,-3.1451E-05],[32.446752,-3.0935E-05],[32.450269,-2.6295E-05],[32.453787,-2.8873E-05],[32.457304,-3.1967E-05],[32.460821,-3.0935E-05],[32.464339,-3.1967E-05],[32.467856,-2.9904E-05],[32.471373,-2.7326E-05],[32.474891,-3.2998E-05],[32.478408,-3.0935E-05],[32.481925,-2.6811E-05],[32.485443,-2.8873E-05],[32.48896,-2.9904E-05],[32.492477,-2.7326E-05],[32.495995,-2.8357E-05],[32.499512,-2.9904E-05],[32.503029,-3.042E-05],[32.506547,-3.2998E-05],[32.510064,-2.8873E-05],[32.513581,-2.7842E-05],[32.517099,-2.8357E-05],[32.520616,-2.7842E-05],[32.524133,-3.2482E-05],[32.527651,-3.1451E-05],[32.531168,-2.5264E-05],[32.534685,-2.1139E-05],[32.538203,-2.6295E-05],[32.54172,-3.042E-05],[32.545237,-2.9904E-05],[32.548755,-2.9904E-05],[32.552272,-2.9904E-05],[32.555789,-3.1967E-05],[32.559307,-3.1451E-05],[32.562824,-2.7842E-05],[32.566341,-2.6811E-05],[32.569859,-2.7326E-05],[32.573376,-2.9904E-05],[32.576893,-3.0935E-05],[32.580411,-3.042E-05],[32.583928,-3.2482E-05],[32.587445,-2.9904E-05],[32.590963,-2.6295E-05],[32.59448,-2.6811E-05],[32.597997,-2.9904E-05],[32.601515,-3.042E-05],[32.605032,-2.8357E-05],[32.608549,-3.2998E-05],[32.612067,-3.042E-05],[32.615584,-2.8357E-05],[32.619101,-2.8873E-05],[32.622619,-2.7326E-05],[32.626136,-2.9904E-05],[32.629653,-3.0935E-05],[32.633171,-2.9389E-05],[32.636688,-2.8873E-05],[32.640205,-2.9389E-05],[32.643723,-3.2998E-05],[32.64724,-3.1967E-05],[32.650757,-2.7326E-05],[32.654275,-2.7326E-05],[32.657792,-2.8357E-05],[32.661309,-2.9904E-05],[32.664827,-3.2998E-05],[32.668344,-3.6091E-05],[32.671861,-3.3513E-05],[32.675379,-3.1967E-05],[32.678896,-2.9904E-05],[32.682413,-2.9389E-05],[32.685931,-3.3513E-05],[32.689448,-2.8873E-05],[32.692965,-3.042E-05],[32.696483,-2.5264E-05],[32.7,-2.6295E-05],[32.703517,-3.5576E-05],[32.707035,-2.5779E-05],[32.710552,-2.6295E-05],[32.714069,-3.4029E-05],[32.717587,-2.9904E-05],[32.721104,-2.6811E-05],[32.724621,-3.1451E-05],[32.728139,-3.2998E-05],[32.731656,-2.9389E-05],[32.735173,-2.9389E-05],[32.738691,-2.7326E-05]]}
-{"quant":[33.0018,-2.9767E-05],"mems":[[32.904005,-2.8873E-05],[32.907523,-2.8873E-05],[32.91104,-2.9904E-05],[32.914557,-2.9389E-05],[32.918075,-2.8873E-05],[32.921592,-2.9389E-05],[32.925109,-3.042E-05],[32.928627,-3.0935E-05],[32.932144,-3.2998E-05],[32.935661,-3.5576E-05],[32.939179,-3.2482E-05],[32.942696,-2.7326E-05],[32.946213,-3.3513E-05],[32.949731,-3.7638E-05],[32.953248,-3.1967E-05],[32.956765,-2.9389E-05],[32.960283,-2.7326E-05],[32.9638,-2.8873E-05],[32.967317,-2.9389E-05],[32.970835,-2.6295E-05],[32.974352,-2.7326E-05],[32.977869,-2.8873E-05],[32.981387,-2.7842E-05],[32.984904,-2.9904E-05],[32.988421,-3.506E-05],[32.991939,-3.3513E-05],[32.995456,-3.2998E-05],[32.998973,-3.1967E-05],[33.002491,-3.042E-05],[33.006008,-3.4544E-05],[33.009525,-3.1451E-05],[33.013043,-3.4544E-05],[33.01656,-3.4544E-05],[33.020077,-2.6811E-05],[33.023595,-2.7842E-05],[33.027112,-2.7842E-05],[33.030629,-2.9389E-05],[33.034147,-2.9389E-05],[33.037664,-3.0935E-05],[33.041181,-3.2482E-05],[33.044699,-3.042E-05],[33.048216,-3.1967E-05],[33.051733,-3.4029E-05],[33.055251,-3.2482E-05],[33.058768,-2.8873E-05],[33.062285,-2.9389E-05],[33.065803,-2.5264E-05],[33.06932,-2.3202E-05],[33.072837,-2.6295E-05],[33.076355,-2.9389E-05],[33.079872,-3.4029E-05],[33.083389,-2.8873E-05],[33.086907,-2.7842E-05],[33.090424,-3.1451E-05],[33.093941,-2.7326E-05],[33.097459,-2.6811E-05],[33.100976,-2.7326E-05],[33.104493,-2.7842E-05],[33.108011,-2.7842E-05],[33.111528,-2.9389E-05],[33.115045,-3.1967E-05],[33.118563,-2.5779E-05],[33.12208,-2.7326E-05],[33.125597,-2.8357E-05],[33.129115,-2.7842E-05],[33.132632,-2.8873E-05],[33.136149,-2.8357E-05],[33.139667,-3.042E-05],[33.143184,-2.6811E-05],[33.146701,-2.9904E-05],[33.150219,-3.4544E-05],[33.153736,-2.8873E-05],[33.157253,-2.5264E-05],[33.160771,-2.5779E-05],[33.164288,-2.6811E-05],[33.167805,-2.6295E-05],[33.171323,-2.8873E-05],[33.17484,-3.042E-05],[33.178357,-2.8873E-05],[33.181875,-3.042E-05],[33.185392,-2.9389E-05],[33.188909,-3.1451E-05],[33.192427,-3.1451E-05],[33.195944,-3.1451E-05],[33.199461,-3.4029E-05],[33.202979,-3.1967E-05]]}
-{"quant":[33.4457,-2.946E-05],"mems":[[33.347189,-2.8357E-05],[33.350707,-2.7842E-05],[33.354224,-3.042E-05],[33.357741,-3.2482E-05],[33.361259,-3.042E-05],[33.364776,-3.0935E-05],[33.368293,-2.9904E-05],[33.371811,-2.8357E-05],[33.375328,-3.3513E-05],[33.378845,-3.4029E-05],[33.382363,-3.1451E-05],[33.38588,-2.9904E-05],[33.389397,-2.4748E-05],[33.392915,-2.6295E-05],[33.396432,-3.1451E-05],[33.399949,-2.9904E-05],[33.403467,-2.7842E-05],[33.406984,-2.7842E-05],[33.410501,-2.9389E-05],[33.414019,-2.7326E-05],[33.417536,-2.5779E-05],[33.421053,-2.8357E-05],[33.424571,-2.8873E-05],[33.428088,-3.042E-05],[33.431605,-3.1451E-05],[33.435123,-3.0935E-05],[33.43864,-3.2998E-05],[33.442157,-3.3513E-05],[33.445675,-3.4544E-05],[33.449192,-3.3513E-05],[33.452709,-2.9904E-05],[33.456227,-2.8357E-05],[33.459744,-2.9389E-05],[33.463261,-2.7842E-05],[33.466779,-2.7326E-05],[33.470296,-2.6811E-05],[33.473813,-2.7326E-05],[33.477331,-2.7842E-05],[33.480848,-2.3717E-05],[33.484365,-2.8357E-05],[33.487883,-3.4544E-05],[33.4914,-3.4544E-05],[33.494917,-3.1967E-05],[33.498435,-3.2998E-05],[33.501952,-3.2998E-05],[33.505469,-2.9904E-05],[33.508987,-3.1967E-05],[33.512504,-3.2482E-05],[33.516021,-2.8873E-05],[33.519539,-2.7326E-05],[33.523056,-2.8357E-05],[33.526573,-2.5264E-05],[33.530091,-2.5264E-05],[33.533608,-2.7326E-05],[33.537125,-2.6811E-05],[33.540643,-3.042E-05],[33.54416,-3.1967E-05],[33.547677,-3.0935E-05],[33.551195,-2.8357E-05],[33.554712,-2.5264E-05],[33.558229,-3.042E-05],[33.561747,-3.0935E-05],[33.565264,-3.2998E-05],[33.568781,-3.3513E-05],[33.572299,-3.2998E-05],[33.575816,-3.4029E-05],[33.579333,-2.7326E-05],[33.582851,-2.7842E-05],[33.586368,-3.042E-05],[33.589885,-3.2998E-05],[33.593403,-3.042E-05],[33.59692,-2.8357E-05],[33.600437,-3.2482E-05],[33.603955,-2.8357E-05],[33.607472,-2.7326E-05],[33.610989,-2.6295E-05],[33.614507,-2.8357E-05],[33.618024,-3.0935E-05],[33.621541,-2.8873E-05],[33.625059,-3.2482E-05],[33.628576,-2.8357E-05],[33.632093,-2.4748E-05],[33.635611,-3.042E-05],[33.639128,-3.1451E-05],[33.642645,-3.0935E-05],[33.646163,-3.1967E-05]]}
-{"quant":[33.9123,-0.62846],"mems":[[33.895893,-3.042E-05],[33.899411,-2.7842E-05],[33.902928,-2.8357E-05],[33.906445,-2.9904E-05],[33.909963,-3.2998E-05],[33.91348,-3.1967E-05],[33.916997,-2.7326E-05],[33.920515,-2.9904E-05],[33.924032,-2.9904E-05],[33.927549,-3.042E-05],[33.931067,-3.1451E-05],[33.934584,-3.5576E-05],[33.938101,-3.042E-05],[33.941619,-2.5264E-05],[33.945136,-2.7842E-05],[33.948653,-2.9389E-05],[33.952171,-3.2482E-05],[33.955688,-2.9389E-05],[33.959205,-3.0935E-05],[33.962723,-2.8873E-05],[33.96624,-2.8873E-05],[33.969757,-3.7122E-05],[33.973275,-3.1967E-05],[33.976792,-2.8357E-05],[33.980309,-2.8873E-05],[33.983827,-3.0935E-05],[33.987344,-3.2998E-05],[33.990861,-3.042E-05],[33.994379,-2.8357E-05],[33.997896,-3.0935E-05],[34.001413,-3.0935E-05],[34.004931,-2.8357E-05],[34.008448,-2.9389E-05],[34.011965,-2.8357E-05],[34.015483,-3.0935E-05],[34.019,-2.8873E-05],[34.022357,-2.8357E-05],[34.025715,-2.9389E-05],[34.029072,-3.042E-05],[34.032429,-3.5576E-05],[34.035787,-3.2482E-05],[34.039144,-2.9904E-05],[34.042501,-2.8873E-05],[34.045859,-3.042E-05],[34.049216,-3.4544E-05],[34.052573,-3.042E-05],[34.055931,-2.6295E-05],[34.059288,-3.042E-05],[34.062645,-3.1451E-05],[34.066003,-3.0935E-05],[34.06936,-3.2998E-05],[34.072717,-3.2482E-05],[34.076075,-3.042E-05],[34.079432,-3.042E-05],[34.082789,-2.9389E-05],[34.086147,-2.6811E-05],[34.089504,-3.1451E-05],[34.092861,-2.9904E-05],[34.096219,-2.8873E-05],[34.099576,-3.0935E-05],[34.102933,-2.9389E-05],[34.106291,-3.1451E-05],[34.109648,-3.4029E-05],[34.113005,-3.6607E-05],[34.116363,-3.042E-05],[34.11972,-2.7842E-05],[34.123077,-2.8873E-05],[34.126435,-2.5779E-05],[34.129792,-3.0935E-05],[34.133149,-3.3513E-05],[34.136507,-3.0935E-05],[34.139864,-2.6295E-05],[34.143221,-2.5779E-05],[34.146579,-2.8357E-05],[34.149936,-2.8873E-05],[34.153293,-3.1451E-05],[34.156651,-3.1451E-05],[34.160008,-3.1967E-05],[34.163365,-3.506E-05],[34.166723,-3.506E-05],[34.17008,-3.1967E-05],[34.173437,-3.1451E-05],[34.176795,-2.8873E-05],[34.180152,-2.6811E-05],[34.183509,-3.1967E-05],[34.186867,-2.8873E-05],[34.190224,-2.7842E-05]]}
-{"quant":[34.4014,-2.9788E-05],"mems":[[34.304373,-2.9904E-05],[34.307731,-3.0935E-05],[34.311088,-3.4544E-05],[34.314445,-2.8873E-05],[34.317803,-2.7842E-05],[34.32116,-2.9904E-05],[34.324517,-2.8873E-05],[34.327875,-3.042E-05],[34.331232,-2.9904E-05],[34.334589,-2.7842E-05],[34.337947,-2.9904E-05],[34.341304,-3.506E-05],[34.344661,-3.506E-05],[34.348019,-3.042E-05],[34.351376,-2.9904E-05],[34.354733,-3.1967E-05],[34.358091,-2.8357E-05],[34.361448,-3.1967E-05],[34.364805,-3.3513E-05],[34.368163,-2.7326E-05],[34.37152,-3.0935E-05],[34.374877,-3.3513E-05],[34.378235,-2.8357E-05],[34.381592,-2.6295E-05],[34.384949,-2.7842E-05],[34.388307,-2.7842E-05],[34.391664,-2.4748E-05],[34.395021,-2.4748E-05],[34.398379,-2.8357E-05],[34.401736,-3.2998E-05],[34.405093,-3.2998E-05],[34.408451,-3.0935E-05],[34.411808,-2.9389E-05],[34.415165,-2.8357E-05],[34.418523,-2.9904E-05],[34.42188,-3.2482E-05],[34.425237,-3.1967E-05],[34.428595,-2.9904E-05],[34.431952,-3.4029E-05],[34.435309,-3.4544E-05],[34.438667,-3.2998E-05],[34.442024,-3.1967E-05],[34.445381,-2.9389E-05],[34.448739,-2.7326E-05],[34.452096,-2.7842E-05],[34.455453,-2.9904E-05],[34.458811,-2.9389E-05],[34.462168,-2.7842E-05],[34.465525,-2.5779E-05],[34.468883,-2.7842E-05],[34.47224,-2.7326E-05],[34.475597,-2.5264E-05],[34.478955,-2.6811E-05],[34.482312,-2.8357E-05],[34.485669,-3.1451E-05],[34.489027,-2.9904E-05],[34.492384,-2.9904E-05],[34.495741,-3.0935E-05],[34.499099,-2.7326E-05],[34.502456,-2.8357E-05],[34.505813,-2.9904E-05],[34.509171,-2.8357E-05],[34.512528,-3.042E-05],[34.515885,-2.9904E-05],[34.519243,-3.042E-05],[34.5226,-3.3513E-05],[34.525957,-2.9904E-05],[34.529315,-2.8357E-05],[34.532672,-2.6295E-05],[34.536029,-2.5264E-05],[34.539387,-2.8357E-05],[34.542744,-3.0935E-05],[34.546101,-3.042E-05],[34.549459,-2.6811E-05],[34.552816,-2.8873E-05],[34.556173,-3.2482E-05],[34.559531,-3.4029E-05],[34.562888,-3.4544E-05],[34.566245,-3.042E-05],[34.569603,-2.8357E-05],[34.57296,-2.9904E-05],[34.576317,-2.9389E-05],[34.579675,-3.1967E-05],[34.583032,-3.2998E-05],[34.586389,-2.7842E-05],[34.589747,-2.7842E-05],[34.593104,-2.8357E-05],[34.596461,-3.0935E-05],[34.599819,-3.2482E-05],[34.603176,-2.8357E-05]]}
-{"quant":[34.8961,-3.027E-05],"mems":[[34.797901,-2.9389E-05],[34.801259,-2.7326E-05],[34.804616,-2.7326E-05],[34.807973,-3.1451E-05],[34.811331,-3.4544E-05],[34.814688,-3.5576E-05],[34.818045,-3.2998E-05],[34.821403,-2.9904E-05],[34.82476,-2.8357E-05],[34.828117,-2.9904E-05],[34.831475,-3.4544E-05],[34.834832,-3.4544E-05],[34.838189,-2.9904E-05],[34.841547,-3.042E-05],[34.844904,-2.9904E-05],[34.848261,-2.9904E-05],[34.851619,-2.8873E-05],[34.854976,-2.3717E-05],[34.858333,-2.5779E-05],[34.861691,-2.9389E-05],[34.865048,-3.3513E-05],[34.868405,-3.1451E-05],[34.871763,-3.2482E-05],[34.87512,-3.2482E-05],[34.878477,-2.7842E-05],[34.881835,-2.8357E-05],[34.885192,-2.6811E-05],[34.888549,-3.042E-05],[34.891907,-3.1967E-05],[34.895264,-3.042E-05],[34.898621,-3.042E-05],[34.901979,-2.8873E-05],[34.905336,-2.8873E-05],[34.908693,-2.9904E-05],[34.912051,-3.2482E-05],[34.915408,-3.0935E-05],[34.918765,-2.8357E-05],[34.922123,-3.2482E-05],[34.92548,-3.4544E-05],[34.928837,-3.042E-05],[34.932195,-3.0935E-05],[34.935552,-3.2998E-05],[34.938909,-3.1451E-05],[34.942267,-2.6811E-05],[34.945624,-3.042E-05],[34.948981,-3.1967E-05],[34.952339,-2.7842E-05],[34.955696,-2.7842E-05],[34.959053,-2.6811E-05],[34.962411,-3.2482E-05],[34.965768,-3.506E-05],[34.969125,-2.8873E-05],[34.972483,-2.8873E-05],[34.97584,-3.1451E-05],[34.979197,-3.1967E-05],[34.982555,-3.0935E-05],[34.985912,-3.042E-05],[34.989269,-3.042E-05],[34.992627,-2.8873E-05],[34.995984,-2.6811E-05],[34.999341,-2.7842E-05],[35.002699,-3.042E-05],[35.006056,-3.2482E-05],[35.009413,-3.3513E-05],[35.012771,-3.1451E-05],[35.016128,-2.9389E-05],[35.019485,-2.8873E-05],[35.022843,-2.5779E-05],[35.0262,-3.0935E-05],[35.029557,-3.4544E-05],[35.032915,-2.9904E-05],[35.036272,-2.7326E-05],[35.039629,-2.1655E-05],[35.042987,-2.3717E-05],[35.046344,-3.1967E-05],[35.049701,-2.9904E-05],[35.053059,-3.042E-05],[35.056416,-3.2482E-05],[35.059773,-2.8357E-05],[35.063131,-2.8357E-05],[35.066488,-2.9389E-05],[35.069845,-3.042E-05],[35.073203,-2.8873E-05],[35.07656,-2.6811E-05],[35.079917,-2.7842E-05],[35.083275,-2.9389E-05],[35.086632,-3.0935E-05],[35.089989,-3.0935E-05],[35.093347,-3.0935E-05],[35.096704,-2.7842E-05]]}
-{"quant":[35.3798,-2.9638E-05],"mems":[[35.281357,-2.7326E-05],[35.284715,-2.4233E-05],[35.288072,-3.042E-05],[35.291429,-3.2482E-05],[35.294787,-2.9904E-05],[35.298144,-2.8357E-05],[35.301501,-3.2482E-05],[35.304859,-3.0935E-05],[35.308216,-2.5264E-05],[35.311573,-2.9389E-05],[35.314931,-3.042E-05],[35.318288,-2.8873E-05],[35.321645,-2.9389E-05],[35.325003,-2.8357E-05],[35.32836,-2.9904E-05],[35.331717,-3.042E-05],[35.335075,-3.042E-05],[35.338432,-2.9389E-05],[35.341789,-2.7326E-05],[35.345147,-2.8873E-05],[35.348504,-3.0935E-05],[35.351861,-2.7326E-05],[35.355219,-2.7326E-05],[35.358576,-3.2482E-05],[35.361933,-3.1967E-05],[35.365291,-2.9389E-05],[35.368648,-2.7326E-05],[35.372005,-2.6295E-05],[35.375363,-3.4029E-05],[35.37872,-3.2998E-05],[35.382077,-2.7842E-05],[35.385435,-2.9904E-05],[35.388792,-2.9904E-05],[35.392149,-3.2482E-05],[35.395507,-3.1451E-05],[35.398864,-3.042E-05],[35.402221,-3.2482E-05],[35.405579,-2.9389E-05],[35.408936,-2.9904E-05],[35.412293,-3.4544E-05],[35.415651,-3.4029E-05],[35.419008,-3.042E-05],[35.422365,-2.9904E-05],[35.425723,-3.1451E-05],[35.42908,-3.2482E-05],[35.432437,-3.3513E-05],[35.435795,-3.042E-05],[35.439152,-2.7842E-05],[35.442509,-2.9904E-05],[35.445867,-2.8873E-05],[35.449224,-2.7326E-05],[35.452581,-2.4748E-05],[35.455939,-2.5264E-05],[35.459296,-2.9904E-05],[35.462653,-3.042E-05],[35.466011,-2.5264E-05],[35.469368,-2.5264E-05],[35.472725,-3.042E-05],[35.476083,-2.9389E-05],[35.47944,-2.6811E-05],[35.482797,-2.6811E-05],[35.486155,-3.0935E-05],[35.489512,-3.4029E-05],[35.492869,-3.1967E-05],[35.496227,-2.8357E-05],[35.499584,-2.6811E-05],[35.502941,-2.9389E-05],[35.506299,-2.9904E-05],[35.509656,-2.4748E-05],[35.513013,-2.5264E-05],[35.516371,-2.9904E-05],[35.519728,-3.3513E-05],[35.523085,-3.1451E-05],[35.526443,-2.5779E-05],[35.5298,-3.3513E-05],[35.533157,-3.2998E-05],[35.536515,-2.7842E-05],[35.539872,-3.1451E-05],[35.543229,-3.0935E-05],[35.546587,-2.9389E-05],[35.549944,-2.9904E-05],[35.553301,-3.1967E-05],[35.556659,-2.9389E-05],[35.560016,-2.6811E-05],[35.563373,-2.5779E-05],[35.566731,-2.8873E-05],[35.570088,-3.506E-05],[35.573445,-3.506E-05],[35.576803,-3.1967E-05],[35.58016,-2.8873E-05]]}
-{"quant":[35.8475,-2.9671E-05],"mems":[[35.748027,-3.1967E-05],[35.751384,-2.9904E-05],[35.754741,-2.9904E-05],[35.758099,-2.8873E-05],[35.761456,-2.6295E-05],[35.764813,-3.4029E-05],[35.768171,-3.2998E-05],[35.771528,-3.2482E-05],[35.774885,-3.1967E-05],[35.778243,-2.9904E-05],[35.7816,-3.1451E-05],[35.784957,-2.9389E-05],[35.788315,-3.1451E-05],[35.791672,-3.0935E-05],[35.795029,-2.8357E-05],[35.798387,-2.7326E-05],[35.801744,-3.3513E-05],[35.805101,-3.4544E-05],[35.808459,-2.9904E-05],[35.811816,-3.2482E-05],[35.815173,-2.7326E-05],[35.818531,-2.0624E-05],[35.821888,-2.3717E-05],[35.825245,-2.9389E-05],[35.828603,-2.9904E-05],[35.83196,-2.7842E-05],[35.835317,-2.6811E-05],[35.838675,-2.5264E-05],[35.842032,-2.7842E-05],[35.845389,-3.042E-05],[35.848747,-2.9389E-05],[35.852104,-2.5264E-05],[35.855461,-2.4748E-05],[35.858819,-2.7842E-05],[35.862176,-3.3513E-05],[35.865533,-3.7638E-05],[35.868891,-2.9389E-05],[35.872248,-2.8873E-05],[35.875605,-3.1967E-05],[35.878963,-2.4233E-05],[35.88232,-2.6811E-05],[35.885677,-3.1451E-05],[35.889035,-3.2998E-05],[35.892392,-3.1967E-05],[35.895749,-3.042E-05],[35.899107,-2.9904E-05],[35.902464,-2.7326E-05],[35.905821,-3.0935E-05],[35.909179,-3.2482E-05],[35.912536,-2.9389E-05],[35.915893,-3.1451E-05],[35.919251,-3.0935E-05],[35.922608,-2.9389E-05],[35.925965,-3.1451E-05],[35.929323,-3.042E-05],[35.93268,-2.5779E-05],[35.936037,-2.7326E-05],[35.939395,-2.9389E-05],[35.942752,-3.0935E-05],[35.946109,-2.9904E-05],[35.949467,-2.6295E-05],[35.952824,-2.7842E-05],[35.956181,-2.3717E-05],[35.959539,-2.5779E-05],[35.962896,-3.4029E-05],[35.966253,-3.1451E-05],[35.969611,-2.7326E-05],[35.972968,-2.6295E-05],[35.976325,-2.7842E-05],[35.979683,-3.042E-05],[35.98304,-2.9904E-05],[35.986397,-2.6811E-05],[35.989755,-2.8357E-05],[35.993112,-2.9389E-05],[35.996469,-2.4748E-05],[35.999827,-3.0935E-05],[36.003184,-3.5576E-05],[36.006541,-2.9904E-05],[36.009899,-2.8873E-05],[36.013256,-2.9389E-05],[36.016613,-3.0935E-05],[36.019971,-3.0935E-05],[36.023328,-3.0935E-05],[36.026685,-3.7638E-05],[36.030043,-3.506E-05],[36.0334,-2.8873E-05],[36.036757,-3.0935E-05],[36.040115,-2.9904E-05],[36.043472,-2.8357E-05],[36.046829,-3.0935E-05],[36.050187,-3.042E-05]]}
-{"quant":[36.2993,-2.9406E-05],"mems":[[36.201267,-3.0935E-05],[36.204624,-2.7842E-05],[36.207981,-2.8357E-05],[36.211339,-2.5264E-05],[36.214696,-3.1967E-05],[36.218053,-2.7842E-05],[36.221411,-2.5779E-05],[36.224768,-2.6295E-05],[36.228125,-2.3717E-05],[36.231483,-2.7326E-05],[36.23484,-2.6295E-05],[36.238197,-3.042E-05],[36.241555,-3.2998E-05],[36.244912,-2.8873E-05],[36.248269,-2.6295E-05],[36.251627,-3.042E-05],[36.254984,-3.1967E-05],[36.258341,-2.8357E-05],[36.261699,-2.9904E-05],[36.265056,-2.9389E-05],[36.268413,-2.8357E-05],[36.271771,-2.7842E-05],[36.275128,-3.042E-05],[36.278485,-3.2482E-05],[36.281843,-2.7842E-05],[36.2852,-2.8873E-05],[36.288557,-2.6295E-05],[36.291915,-2.217E-05],[36.295272,-2.9904E-05],[36.298629,-3.2482E-05],[36.301987,-2.6811E-05],[36.305344,-2.4233E-05],[36.308701,-2.4233E-05],[36.312059,-3.042E-05],[36.315416,-3.5576E-05],[36.318773,-3.3513E-05],[36.322131,-2.9389E-05],[36.325488,-2.6295E-05],[36.328845,-2.7326E-05],[36.332203,-2.7842E-05],[36.33556,-2.7842E-05],[36.338917,-2.9904E-05],[36.342275,-3.042E-05],[36.345632,-3.0935E-05],[36.348989,-3.4544E-05],[36.352347,-3.1451E-05],[36.355704,-2.8873E-05],[36.359061,-3.0935E-05],[36.362419,-3.0935E-05],[36.365776,-2.9389E-05],[36.369133,-2.7326E-05],[36.372491,-2.9389E-05],[36.375848,-3.2482E-05],[36.379205,-2.8873E-05],[36.382563,-2.6295E-05],[36.38592,-2.5779E-05],[36.389277,-2.9389E-05],[36.392635,-3.2482E-05],[36.395992,-2.9389E-05],[36.399349,-2.9904E-05],[36.402707,-3.1967E-05],[36.406064,-2.8873E-05],[36.409421,-2.9904E-05],[36.412779,-3.1967E-05],[36.416136,-2.9389E-05],[36.419493,-2.9904E-05],[36.422851,-2.6295E-05],[36.426208,-2.5264E-05],[36.429565,-3.042E-05],[36.432923,-3.1451E-05],[36.43628,-3.2482E-05],[36.439637,-3.1967E-05],[36.442995,-3.2482E-05],[36.446352,-2.9904E-05],[36.449709,-2.8873E-05],[36.453067,-3.3513E-05],[36.456424,-3.2482E-05],[36.459781,-3.2482E-05],[36.463139,-3.1967E-05],[36.466496,-2.8357E-05],[36.469853,-3.1451E-05],[36.473211,-3.2482E-05],[36.476568,-3.2998E-05],[36.479925,-3.1967E-05],[36.483283,-2.5779E-05],[36.48664,-3.1451E-05],[36.489997,-3.1451E-05],[36.493355,-3.042E-05],[36.496712,-3.042E-05],[36.500069,-2.5779E-05]]}
-{"quant":[36.7547,-2.8873E-05],"mems":[[36.657307,-2.5264E-05],[36.660744,-2.9904E-05],[36.664181,-3.042E-05],[36.667619,-2.3717E-05],[36.671056,-2.7326E-05],[36.674493,-2.9389E-05],[36.677931,-2.9389E-05],[36.681368,-2.9904E-05],[36.684805,-2.8357E-05],[36.688243,-2.7842E-05],[36.69168,-2.9389E-05],[36.695117,-2.8357E-05],[36.698555,-2.6811E-05],[36.701992,-2.7842E-05],[36.705429,-2.4748E-05],[36.708867,-2.8357E-05],[36.712304,-2.7326E-05],[36.715741,-2.8357E-05],[36.719179,-2.8873E-05],[36.722616,-2.6295E-05],[36.726053,-3.1967E-05],[36.729491,-3.506E-05],[36.732928,-3.2482E-05],[36.736365,-2.7326E-05],[36.739803,-2.7326E-05],[36.74324,-2.8873E-05],[36.746677,-3.042E-05],[36.750115,-2.6811E-05],[36.753552,-2.7842E-05],[36.756989,-2.8873E-05],[36.760427,-2.3717E-05],[36.763864,-2.8873E-05],[36.767301,-3.4029E-05],[36.770739,-3.042E-05],[36.774176,-2.7842E-05],[36.777613,-3.0935E-05],[36.781051,-2.8873E-05],[36.784488,-2.8873E-05],[36.787925,-2.8873E-05],[36.791363,-2.8873E-05],[36.7948,-3.1451E-05],[36.798237,-2.7842E-05],[36.801675,-2.6811E-05],[36.805112,-2.3202E-05],[36.808549,-2.4748E-05],[36.811987,-2.9904E-05],[36.815424,-2.7842E-05],[36.818861,-2.8357E-05],[36.822299,-2.7326E-05],[36.825736,-3.042E-05],[36.829173,-3.4544E-05],[36.832611,-2.8873E-05],[36.836048,-2.5779E-05],[36.839485,-2.6811E-05],[36.842923,-2.6811E-05],[36.84636,-2.9389E-05],[36.849797,-3.1451E-05],[36.853235,-3.1967E-05],[36.856672,-3.2482E-05],[36.860109,-2.8873E-05],[36.863547,-2.8873E-05],[36.866984,-3.042E-05],[36.870421,-2.6811E-05],[36.873859,-2.7842E-05],[36.877296,-2.7842E-05],[36.880733,-2.7326E-05],[36.884171,-3.042E-05],[36.887608,-2.8357E-05],[36.891045,-2.8357E-05],[36.894483,-2.9904E-05],[36.89792,-2.6295E-05],[36.901357,-2.9904E-05],[36.904795,-3.1451E-05],[36.908232,-2.7842E-05],[36.911669,-2.7842E-05],[36.915107,-2.7326E-05],[36.918544,-2.6295E-05],[36.921981,-2.7326E-05],[36.925419,-3.3513E-05],[36.928856,-3.506E-05],[36.932293,-3.3513E-05],[36.935731,-3.4029E-05],[36.939168,-2.6811E-05],[36.942605,-2.8357E-05],[36.946043,-2.9389E-05],[36.94948,-2.7326E-05],[36.952917,-3.1967E-05],[36.956355,-2.8357E-05]]}
-{"quant":[37.367,-2.9681E-05],"mems":[[37.269152,-3.1451E-05],[37.272589,-3.0935E-05],[37.276027,-2.5779E-05],[37.279464,-2.5264E-05],[37.282901,-2.7326E-05],[37.286339,-2.9904E-05],[37.289776,-2.9389E-05],[37.293213,-2.4233E-05],[37.296651,-2.6811E-05],[37.300088,-3.1967E-05],[37.303525,-3.4029E-05],[37.306963,-3.0935E-05],[37.3104,-2.9904E-05],[37.313837,-3.2482E-05],[37.317275,-2.7842E-05],[37.320712,-2.5779E-05],[37.324149,-2.6811E-05],[37.327587,-3.042E-05],[37.331024,-3.3513E-05],[37.334461,-2.5779E-05],[37.337899,-2.6295E-05],[37.341336,-2.8357E-05],[37.344773,-2.8873E-05],[37.348211,-2.8873E-05],[37.351648,-2.8873E-05],[37.355085,-3.1451E-05],[37.358523,-2.8357E-05],[37.36196,-2.7842E-05],[37.365397,-3.1967E-05],[37.368835,-3.4029E-05],[37.372272,-3.4029E-05],[37.375709,-3.3513E-05],[37.379147,-2.9904E-05],[37.382584,-2.9904E-05],[37.386021,-2.8873E-05],[37.389459,-2.9389E-05],[37.392896,-3.0935E-05],[37.396333,-2.8873E-05],[37.399771,-2.8873E-05],[37.403208,-2.4748E-05],[37.406645,-2.7842E-05],[37.410083,-3.0935E-05],[37.41352,-2.7842E-05],[37.416957,-2.9904E-05],[37.420395,-2.9389E-05],[37.423832,-2.9904E-05],[37.427269,-3.1451E-05],[37.430707,-3.4029E-05],[37.434144,-3.1967E-05],[37.437581,-2.9904E-05],[37.441019,-2.8873E-05],[37.444456,-2.4748E-05],[37.447893,-2.6295E-05],[37.451331,-2.8357E-05],[37.454768,-2.7842E-05],[37.458205,-2.8873E-05],[37.461643,-2.8357E-05],[37.46508,-2.8873E-05],[37.468517,-3.1967E-05],[37.471955,-2.9389E-05],[37.475392,-2.7842E-05],[37.478829,-2.8873E-05],[37.482267,-2.7326E-05],[37.485704,-2.8357E-05],[37.489141,-3.2482E-05],[37.492579,-3.1967E-05],[37.496016,-2.7842E-05],[37.499453,-2.6295E-05],[37.502891,-2.5264E-05],[37.506328,-2.9389E-05],[37.509765,-3.1451E-05],[37.513203,-3.1451E-05],[37.51664,-3.042E-05],[37.520077,-2.4748E-05],[37.523515,-2.7842E-05],[37.526952,-3.042E-05],[37.530389,-2.7326E-05],[37.533827,-2.8357E-05],[37.537264,-2.7842E-05],[37.540701,-2.3202E-05],[37.544139,-2.8357E-05],[37.547576,-3.1967E-05],[37.551013,-2.9389E-05],[37.554451,-3.0935E-05],[37.557888,-2.7326E-05],[37.561325,-2.4748E-05],[37.564763,-2.9389E-05],[37.5682,-3.1451E-05]]}
-{"quant":[37.8564,-2.9131E-05],"mems":[[37.757253,-3.042E-05],[37.760691,-2.5264E-05],[37.764128,-2.6295E-05],[37.767565,-2.9389E-05],[37.771003,-3.1451E-05],[37.77444,-2.8873E-05],[37.777877,-2.7842E-05],[37.781315,-2.6295E-05],[37.784752,-2.5264E-05],[37.788189,-3.042E-05],[37.791627,-3.2482E-05],[37.795064,-3.4544E-05],[37.798501,-3.1451E-05],[37.801939,-3.1451E-05],[37.805376,-3.4029E-05],[37.808813,-2.9389E-05],[37.812251,-2.9389E-05],[37.815688,-2.9389E-05],[37.819125,-2.8873E-05],[37.822563,-3.042E-05],[37.826,-3.4544E-05],[37.829437,-3.6091E-05],[37.832875,-3.1967E-05],[37.836312,-3.1451E-05],[37.839749,-2.9904E-05],[37.843187,-2.8357E-05],[37.846624,-2.7326E-05],[37.850061,-2.8873E-05],[37.853499,-3.0935E-05],[37.856936,-2.8357E-05],[37.860373,-2.8873E-05],[37.863811,-3.042E-05],[37.867248,-3.1967E-05],[37.870685,-2.7326E-05],[37.874123,-2.3202E-05],[37.87756,-2.8873E-05],[37.880997,-2.7842E-05],[37.884435,-2.9904E-05],[37.887872,-3.042E-05],[37.891309,-2.5264E-05],[37.894747,-3.1967E-05],[37.898184,-2.7326E-05],[37.901621,-2.4748E-05],[37.905059,-2.8873E-05],[37.908496,-2.7326E-05],[37.911933,-3.1451E-05],[37.915371,-2.7842E-05],[37.918808,-2.9904E-05],[37.922245,-3.1451E-05],[37.925683,-2.8873E-05],[37.92912,-3.2998E-05],[37.932557,-3.042E-05],[37.935995,-2.5779E-05],[37.939432,-2.5779E-05],[37.942869,-2.8873E-05],[37.946307,-3.2998E-05],[37.949744,-3.4029E-05],[37.953181,-3.1451E-05],[37.956619,-2.9389E-05],[37.960056,-2.6295E-05],[37.963493,-2.3717E-05],[37.966931,-3.0935E-05],[37.970368,-3.2482E-05],[37.973805,-2.6811E-05],[37.977243,-2.5264E-05],[37.98068,-2.8873E-05],[37.984117,-3.1967E-05],[37.987555,-3.1451E-05],[37.990992,-2.8357E-05],[37.994429,-2.8873E-05],[37.997867,-2.9389E-05],[38.001304,-2.8873E-05],[38.004741,-2.7842E-05],[38.008179,-2.8873E-05],[38.011616,-3.0935E-05],[38.015053,-2.8873E-05],[38.018491,-2.7842E-05],[38.021928,-2.4748E-05],[38.025365,-2.8873E-05],[38.028803,-3.6091E-05],[38.03224,-3.3513E-05],[38.035677,-2.7326E-05],[38.039115,-2.4748E-05],[38.042552,-2.9904E-05],[38.045989,-2.9389E-05],[38.049427,-3.0935E-05],[38.052864,-3.3513E-05],[38.056301,-3.042E-05],[38.059739,-2.9389E-05]]}
-{"quant":[38.3153,-3.0059E-05],"mems":[[38.217856,-2.6811E-05],[38.221293,-2.9389E-05],[38.224731,-2.8873E-05],[38.228168,-3.1967E-05],[38.231605,-3.0935E-05],[38.235043,-3.0935E-05],[38.23848,-3.0935E-05],[38.241917,-2.4748E-05],[38.245355,-2.9389E-05],[38.248792,-2.7326E-05],[38.252229,-2.6295E-05],[38.255667,-3.042E-05],[38.259104,-2.5779E-05],[38.262541,-2.8873E-05],[38.265979,-2.9904E-05],[38.269416,-2.8873E-05],[38.272853,-2.7842E-05],[38.276291,-2.9904E-05],[38.279728,-3.0935E-05],[38.283165,-2.6811E-05],[38.286603,-2.9904E-05],[38.29004,-2.5264E-05],[38.293477,-2.8357E-05],[38.296915,-2.9904E-05],[38.300352,-2.3717E-05],[38.303789,-2.7326E-05],[38.307227,-2.9389E-05],[38.310664,-2.9904E-05],[38.314101,-3.0935E-05],[38.317539,-3.2482E-05],[38.320976,-2.9389E-05],[38.324413,-2.3202E-05],[38.327851,-3.0935E-05],[38.331288,-3.3513E-05],[38.334725,-2.7842E-05],[38.338163,-2.9389E-05],[38.3416,-2.8357E-05],[38.345037,-3.0935E-05],[38.348475,-3.4029E-05],[38.351912,-3.2998E-05],[38.355349,-3.0935E-05],[38.358787,-2.6811E-05],[38.362224,-2.9904E-05],[38.365661,-2.9389E-05],[38.369099,-2.9389E-05],[38.372536,-3.6091E-05],[38.375973,-3.0935E-05],[38.379411,-2.5779E-05],[38.382848,-3.1967E-05],[38.386285,-3.1967E-05],[38.389723,-3.3513E-05],[38.39316,-3.1451E-05],[38.396597,-2.3202E-05],[38.400035,-2.8357E-05],[38.403472,-2.9904E-05],[38.406909,-2.6811E-05],[38.410347,-2.9904E-05],[38.413784,-2.9389E-05],[38.417221,-3.2998E-05],[38.420659,-3.1451E-05],[38.424096,-2.7326E-05],[38.427533,-2.9904E-05],[38.430971,-2.7326E-05],[38.434408,-2.8357E-05],[38.437845,-2.9389E-05],[38.441283,-3.1451E-05],[38.44472,-2.8357E-05],[38.448157,-2.6811E-05],[38.451595,-3.5576E-05],[38.455032,-3.2482E-05],[38.458469,-2.6295E-05],[38.461907,-2.6811E-05],[38.465344,-2.8873E-05],[38.468781,-3.0935E-05],[38.472219,-3.0935E-05],[38.475656,-2.9904E-05],[38.479093,-2.5264E-05],[38.482531,-2.8357E-05],[38.485968,-3.0935E-05],[38.489405,-2.8873E-05],[38.492843,-3.4544E-05],[38.49628,-3.1967E-05],[38.499717,-2.7842E-05],[38.503155,-3.0935E-05],[38.506592,-2.6811E-05],[38.510029,-2.5264E-05],[38.513467,-3.042E-05],[38.516904,-2.8873E-05]]}
-{"quant":[38.801,-2.9285E-05],"mems":[[38.70252,-3.0935E-05],[38.705957,-3.1967E-05],[38.709395,-2.6295E-05],[38.712832,-2.7842E-05],[38.716269,-2.6295E-05],[38.719707,-2.4748E-05],[38.723144,-2.6811E-05],[38.726581,-2.6811E-05],[38.730019,-3.1967E-05],[38.733456,-3.2482E-05],[38.736893,-2.9389E-05],[38.740331,-3.1967E-05],[38.743768,-2.7842E-05],[38.747205,-2.7842E-05],[38.750643,-3.2482E-05],[38.75408,-3.0935E-05],[38.757517,-2.9904E-05],[38.760955,-3.4029E-05],[38.764392,-3.4544E-05],[38.767829,-3.1967E-05],[38.771267,-3.3513E-05],[38.774704,-3.1967E-05],[38.778141,-2.9904E-05],[38.781579,-3.0935E-05],[38.785016,-2.9389E-05],[38.788453,-2.9389E-05],[38.791891,-3.1967E-05],[38.795328,-2.9904E-05],[38.798765,-2.7842E-05],[38.802203,-2.6811E-05],[38.80564,-2.7326E-05],[38.809077,-2.8357E-05],[38.812515,-2.8357E-05],[38.815952,-2.7842E-05],[38.819389,-3.1451E-05],[38.822827,-3.4544E-05],[38.826264,-2.9904E-05],[38.829701,-3.1451E-05],[38.833139,-3.2998E-05],[38.836576,-2.8873E-05],[38.840013,-2.7842E-05],[38.843451,-3.1967E-05],[38.846888,-3.3513E-05],[38.850325,-2.9389E-05],[38.853763,-2.8357E-05],[38.8572,-2.5779E-05],[38.860637,-2.6811E-05],[38.864075,-2.9389E-05],[38.867512,-3.1451E-05],[38.870949,-3.1451E-05],[38.874387,-2.7326E-05],[38.877824,-2.8873E-05],[38.881261,-3.042E-05],[38.884699,-3.3513E-05],[38.888136,-3.1967E-05],[38.891573,-2.6811E-05],[38.895011,-2.6811E-05],[38.898448,-2.1655E-05],[38.901885,-2.7326E-05],[38.905323,-3.4029E-05],[38.90876,-2.8357E-05],[38.912197,-2.6811E-05],[38.915635,-2.8873E-05],[38.919072,-2.7842E-05],[38.922509,-3.042E-05],[38.925947,-3.1451E-05],[38.929384,-3.042E-05],[38.932821,-3.042E-05],[38.936259,-2.9904E-05],[38.939696,-2.9389E-05],[38.943133,-3.0935E-05],[38.946571,-3.1967E-05],[38.950008,-3.2482E-05],[38.953445,-3.042E-05],[38.956883,-2.6811E-05],[38.96032,-3.042E-05],[38.963757,-3.2482E-05],[38.967195,-3.0935E-05],[38.970632,-3.506E-05],[38.974069,-3.506E-05],[38.977507,-2.5779E-05],[38.980944,-2.8357E-05],[38.984381,-3.4029E-05],[38.987819,-2.6295E-05],[38.991256,-2.8873E-05],[38.994693,-3.0935E-05],[38.998131,-2.8357E-05],[39.001568,-3.042E-05]]}
-{"quant":[39.2605,-2.9495E-05],"mems":[[39.160656,-2.6811E-05],[39.164168,-2.9904E-05],[39.16768,-2.7842E-05],[39.171192,-2.6295E-05],[39.174704,-2.7326E-05],[39.178216,-2.3202E-05],[39.181728,-2.3717E-05],[39.18524,-2.8357E-05],[39.188752,-3.042E-05],[39.192264,-2.7842E-05],[39.195776,-2.4233E-05],[39.199288,-2.5779E-05],[39.2028,-2.9904E-05],[39.206312,-2.7842E-05],[39.209824,-2.6811E-05],[39.213336,-3.3513E-05],[39.216848,-3.4029E-05],[39.22036,-2.7842E-05],[39.223872,-2.9904E-05],[39.227384,-3.4029E-05],[39.230896,-3.1451E-05],[39.234408,-2.8357E-05],[39.23792,-2.4748E-05],[39.241432,-2.2686E-05],[39.244944,-2.5779E-05],[39.248456,-2.8873E-05],[39.251968,-3.042E-05],[39.25548,-3.2998E-05],[39.258992,-3.3513E-05],[39.262504,-2.8357E-05],[39.266016,-3.0935E-05],[39.269528,-3.6091E-05],[39.27304,-3.2998E-05],[39.276552,-2.9904E-05],[39.280064,-2.5779E-05],[39.283576,-2.6811E-05],[39.287088,-3.1967E-05],[39.2906,-3.0935E-05],[39.294112,-2.9389E-05],[39.297624,-2.6295E-05],[39.301136,-2.7326E-05],[39.304648,-3.1451E-05],[39.30816,-2.5264E-05],[39.311672,-2.7326E-05],[39.315184,-3.2482E-05],[39.318696,-3.0935E-05],[39.322208,-2.9904E-05],[39.32572,-2.8357E-05],[39.329232,-3.1967E-05],[39.332744,-3.0935E-05],[39.336256,-2.7842E-05],[39.339768,-2.7326E-05],[39.34328,-2.8873E-05],[39.346792,-2.7842E-05],[39.350304,-2.9904E-05],[39.353816,-3.2482E-05],[39.357328,-2.6811E-05],[39.36084,-2.8873E-05],[39.364352,-2.9904E-05],[39.367864,-3.042E-05],[39.371376,-3.506E-05],[39.374888,-3.0935E-05],[39.3784,-3.042E-05],[39.381912,-2.8873E-05],[39.385424,-2.7842E-05],[39.388936,-3.4029E-05],[39.392448,-3.2998E-05],[39.39596,-3.2482E-05],[39.399472,-3.4029E-05],[39.402984,-2.8873E-05],[39.406496,-2.9389E-05],[39.410008,-3.2998E-05],[39.41352,-2.7842E-05],[39.417032,-2.6811E-05],[39.420544,-3.2482E-05],[39.424056,-2.9904E-05],[39.427568,-2.8873E-05],[39.43108,-2.8873E-05],[39.434592,-2.8873E-05],[39.438104,-3.2998E-05],[39.441616,-3.1967E-05],[39.445128,-2.7326E-05],[39.44864,-2.5264E-05],[39.452152,-3.1967E-05],[39.455664,-3.4544E-05],[39.459176,-2.8873E-05],[39.462688,-3.042E-05]]}
-{"quant":[39.8323,-2.9584E-05],"mems":[[39.733112,-3.1451E-05],[39.736624,-3.2482E-05],[39.740136,-3.5576E-05],[39.743648,-3.6091E-05],[39.74716,-3.1967E-05],[39.750672,-2.9904E-05],[39.754184,-2.7842E-05],[39.757696,-3.1967E-05],[39.761208,-3.1967E-05],[39.76472,-2.8357E-05],[39.768232,-2.8357E-05],[39.771744,-2.8357E-05],[39.775256,-3.1967E-05],[39.778768,-3.2998E-05],[39.78228,-3.2998E-05],[39.785792,-3.1451E-05],[39.789304,-2.5779E-05],[39.792816,-2.5779E-05],[39.796328,-3.4544E-05],[39.79984,-3.4029E-05],[39.803352,-2.9389E-05],[39.806864,-3.4029E-05],[39.810376,-3.042E-05],[39.813888,-2.8873E-05],[39.8174,-3.2482E-05],[39.820912,-3.3513E-05],[39.824424,-3.4029E-05],[39.827936,-2.9389E-05],[39.831448,-2.8873E-05],[39.83496,-2.8357E-05],[39.838472,-2.9389E-05],[39.841984,-3.1967E-05],[39.845496,-3.2482E-05],[39.849008,-3.0935E-05],[39.85252,-2.6295E-05],[39.856032,-2.3202E-05],[39.859544,-2.2686E-05],[39.863056,-2.6811E-05],[39.866568,-2.7842E-05],[39.87008,-2.6811E-05],[39.873592,-2.4748E-05],[39.877104,-2.4748E-05],[39.880616,-3.0935E-05],[39.884128,-3.7122E-05],[39.88764,-3.5576E-05],[39.891152,-2.9389E-05],[39.894664,-2.6811E-05],[39.898176,-2.7842E-05],[39.901688,-3.3513E-05],[39.9052,-3.3513E-05],[39.908712,-2.8357E-05],[39.912224,-3.0935E-05],[39.915736,-2.8357E-05],[39.919248,-3.1967E-05],[39.92276,-3.8154E-05],[39.926272,-3.1967E-05],[39.929784,-3.042E-05],[39.933296,-2.6811E-05],[39.936808,-2.8873E-05],[39.94032,-3.3513E-05],[39.943832,-2.7842E-05],[39.947344,-2.9904E-05],[39.950856,-3.1451E-05],[39.954368,-2.8357E-05],[39.95788,-2.9904E-05],[39.961392,-3.1967E-05],[39.964904,-3.1967E-05],[39.968416,-2.8873E-05],[39.971928,-2.6811E-05],[39.97544,-2.6295E-05],[39.978952,-2.8873E-05],[39.982464,-3.2482E-05],[39.985976,-3.2482E-05],[39.989488,-3.042E-05],[39.993,-3.1967E-05],[39.996512,-2.9389E-05],[40.000024,-2.8357E-05],[40.003536,-3.2482E-05],[40.007048,-2.9389E-05],[40.01056,-3.1451E-05],[40.014072,-3.0935E-05],[40.017584,-2.8357E-05],[40.021096,-3.1451E-05],[40.024608,-2.9904E-05],[40.02812,-3.042E-05],[40.031632,-2.9389E-05],[40.035144,-2.8357E-05]]}
-{"quant":[40.3043,-2.8821E-05],"mems":[[40.207232,-3.1967E-05],[40.210744,-2.8873E-05],[40.214256,-2.7842E-05],[40.217768,-3.6607E-05],[40.22128,-3.1451E-05],[40.224792,-2.9389E-05],[40.228304,-3.1451E-05],[40.231816,-2.9389E-05],[40.235328,-3.042E-05],[40.23884,-3.1451E-05],[40.242352,-2.6811E-05],[40.245864,-3.042E-05],[40.249376,-3.506E-05],[40.252888,-3.2482E-05],[40.2564,-3.1451E-05],[40.259912,-2.7326E-05],[40.263424,-2.9389E-05],[40.266936,-2.7842E-05],[40.270448,-2.5779E-05],[40.27396,-2.9389E-05],[40.277472,-2.8873E-05],[40.280984,-3.2482E-05],[40.284496,-2.8873E-05],[40.288008,-2.7326E-05],[40.29152,-3.1451E-05],[40.295032,-3.042E-05],[40.298544,-3.1967E-05],[40.302056,-2.7842E-05],[40.305568,-2.7842E-05],[40.30908,-3.042E-05],[40.312592,-2.7326E-05],[40.316104,-3.042E-05],[40.319616,-2.8357E-05],[40.323128,-2.8357E-05],[40.32664,-3.0935E-05],[40.330152,-3.0935E-05],[40.333664,-3.0935E-05],[40.337176,-2.8357E-05],[40.340688,-2.7842E-05],[40.3442,-2.3202E-05],[40.347712,-2.6295E-05],[40.351224,-2.9389E-05],[40.354736,-2.6295E-05],[40.358248,-3.3513E-05],[40.36176,-3.2998E-05],[40.365272,-2.6811E-05],[40.368784,-2.9389E-05],[40.372296,-3.1967E-05],[40.375808,-2.9389E-05],[40.37932,-2.8873E-05],[40.382832,-2.6295E-05],[40.386344,-2.7326E-05],[40.389856,-3.1967E-05],[40.393368,-2.9389E-05],[40.39688,-2.8357E-05],[40.400392,-3.042E-05],[40.403904,-2.6295E-05],[40.407416,-2.4748E-05],[40.410928,-2.7842E-05],[40.41444,-3.1451E-05],[40.417952,-3.2998E-05],[40.421464,-2.7326E-05],[40.424976,-2.4233E-05],[40.428488,-2.9904E-05],[40.432,-2.9904E-05],[40.435512,-2.6811E-05],[40.439024,-2.9904E-05],[40.442536,-2.9904E-05],[40.446048,-2.9904E-05],[40.44956,-2.8357E-05],[40.453072,-2.3717E-05],[40.456584,-3.1451E-05],[40.460096,-2.9389E-05],[40.463608,-2.4748E-05],[40.46712,-2.9389E-05],[40.470632,-2.9904E-05],[40.474144,-3.4029E-05],[40.477656,-3.0935E-05],[40.481168,-2.8873E-05],[40.48468,-3.1967E-05],[40.488192,-2.7326E-05],[40.491704,-2.8357E-05],[40.495216,-2.9389E-05],[40.498728,-2.8357E-05],[40.50224,-2.7842E-05],[40.505752,-2.6295E-05]]}
-{"quant":[40.7697,-2.9229E-05],"mems":[[40.670816,-2.5264E-05],[40.674328,-3.1451E-05],[40.67784,-3.1451E-05],[40.681352,-2.8357E-05],[40.684864,-3.1451E-05],[40.688376,-3.042E-05],[40.691888,-2.3717E-05],[40.6954,-2.7842E-05],[40.698912,-3.3513E-05],[40.702424,-3.0935E-05],[40.705936,-3.0935E-05],[40.709448,-2.9904E-05],[40.71296,-2.6295E-05],[40.716472,-2.5264E-05],[40.719984,-2.9389E-05],[40.723496,-3.042E-05],[40.727008,-2.7326E-05],[40.73052,-2.8357E-05],[40.734032,-2.8357E-05],[40.737544,-3.4029E-05],[40.741056,-3.2998E-05],[40.744568,-2.7842E-05],[40.74808,-2.8357E-05],[40.751592,-2.6811E-05],[40.755104,-2.8357E-05],[40.758616,-3.042E-05],[40.762128,-3.4029E-05],[40.76564,-3.1451E-05],[40.769152,-3.2482E-05],[40.772664,-3.506E-05],[40.776176,-2.6811E-05],[40.779688,-3.0935E-05],[40.7832,-3.2482E-05],[40.786712,-2.7842E-05],[40.790224,-2.8873E-05],[40.793736,-2.7842E-05],[40.797248,-3.042E-05],[40.80076,-2.7326E-05],[40.804272,-2.4233E-05],[40.807784,-2.9389E-05],[40.811296,-2.8357E-05],[40.814808,-2.9389E-05],[40.81832,-3.3513E-05],[40.821832,-2.8357E-05],[40.825344,-2.7326E-05],[40.828856,-3.2482E-05],[40.832368,-3.3513E-05],[40.83588,-3.3513E-05],[40.839392,-3.2482E-05],[40.842904,-2.9904E-05],[40.846416,-3.0935E-05],[40.849928,-2.9389E-05],[40.85344,-3.042E-05],[40.856952,-3.4029E-05],[40.860464,-2.3202E-05],[40.863976,-2.2686E-05],[40.867488,-2.6295E-05],[40.871,-2.0624E-05],[40.874512,-2.5264E-05],[40.878024,-2.6295E-05],[40.881536,-2.7326E-05],[40.885048,-3.042E-05],[40.88856,-2.7326E-05],[40.892072,-2.9389E-05],[40.895584,-2.8873E-05],[40.899096,-3.2998E-05],[40.902608,-3.6607E-05],[40.90612,-2.9389E-05],[40.909632,-2.8357E-05],[40.913144,-2.7326E-05],[40.916656,-2.4748E-05],[40.920168,-2.7842E-05],[40.92368,-2.8357E-05],[40.927192,-3.0935E-05],[40.930704,-2.9389E-05],[40.934216,-2.6811E-05],[40.937728,-2.9904E-05],[40.94124,-2.9904E-05],[40.944752,-3.1967E-05],[40.948264,-3.0935E-05],[40.951776,-3.042E-05],[40.955288,-3.042E-05],[40.9588,-3.0935E-05],[40.962312,-3.4544E-05],[40.965824,-3.1967E-05],[40.969336,-2.8357E-05],[40.972848,-2.9389E-05]]}
-{"quant":[41.2491,-2.9629E-05],"mems":[[41.15196,-2.4233E-05],[41.155472,-2.8357E-05],[41.158984,-2.8357E-05],[41.162496,-3.1451E-05],[41.166008,-3.1967E-05],[41.16952,-3.0935E-05],[41.173032,-3.1451E-05],[41.176544,-2.9389E-05],[41.180056,-2.5264E-05],[41.183568,-2.6295E-05],[41.18708,-3.3513E-05],[41.190592,-3.2482E-05],[41.194104,-2.7326E-05],[41.197616,-2.7326E-05],[41.201128,-2.7326E-05],[41.20464,-2.7326E-05],[41.208152,-2.7842E-05],[41.211664,-2.7326E-05],[41.215176,-2.5779E-05],[41.218688,-2.8357E-05],[41.2222,-2.9389E-05],[41.225712,-2.9389E-05],[41.229224,-3.0935E-05],[41.232736,-2.9904E-05],[41.236248,-3.4029E-05],[41.23976,-3.2998E-05],[41.243272,-2.9904E-05],[41.246784,-2.9389E-05],[41.250296,-2.6811E-05],[41.253808,-3.1967E-05],[41.25732,-2.8873E-05],[41.260832,-2.5779E-05],[41.264344,-2.9389E-05],[41.267856,-2.7326E-05],[41.271368,-2.9389E-05],[41.27488,-2.7326E-05],[41.278392,-3.0935E-05],[41.281904,-3.4544E-05],[41.285416,-2.9904E-05],[41.288928,-3.4544E-05],[41.29244,-3.506E-05],[41.295952,-3.0935E-05],[41.299464,-2.9904E-05],[41.302976,-3.042E-05],[41.306488,-2.7842E-05],[41.31,-2.3717E-05],[41.313512,-2.9904E-05],[41.317024,-3.0935E-05],[41.320536,-2.5264E-05],[41.324048,-2.6811E-05],[41.32756,-3.3513E-05],[41.331072,-3.4544E-05],[41.334584,-3.2998E-05],[41.338096,-3.1451E-05],[41.341608,-2.5779E-05],[41.34512,-2.5264E-05],[41.348632,-2.7842E-05],[41.352144,-2.9904E-05],[41.355656,-3.3513E-05],[41.359168,-3.0935E-05],[41.36268,-2.7326E-05],[41.366192,-2.8357E-05],[41.369704,-2.9389E-05],[41.373216,-3.1967E-05],[41.376728,-3.1967E-05],[41.38024,-3.042E-05],[41.383752,-3.1967E-05],[41.387264,-2.8873E-05],[41.390776,-3.042E-05],[41.394288,-3.4029E-05],[41.3978,-3.0935E-05],[41.401312,-2.8873E-05],[41.404824,-2.7842E-05],[41.408336,-2.9904E-05],[41.411848,-3.0935E-05],[41.41536,-3.0935E-05],[41.418872,-3.3513E-05],[41.422384,-3.0935E-05],[41.425896,-3.1451E-05],[41.429408,-3.7122E-05],[41.43292,-3.4029E-05],[41.436432,-2.8873E-05],[41.439944,-2.9389E-05],[41.443456,-3.042E-05],[41.446968,-2.6295E-05],[41.45048,-2.5264E-05]]}
-{"quant":[41.7359,0.43482],"mems":[[41.710368,-2.6811E-05],[41.71388,-3.042E-05],[41.717392,-3.2482E-05],[41.720904,-2.7842E-05],[41.724416,-2.9904E-05],[41.727928,-2.9904E-05],[41.73144,-2.7842E-05],[41.734952,-2.9389E-05],[41.738464,-3.0935E-05],[41.741976,-3.0935E-05],[41.745488,-3.1967E-05],[41.749,-3.0935E-05],[41.752364,-3.042E-05],[41.755728,-2.8357E-05],[41.759092,-2.6295E-05],[41.762456,-3.042E-05],[41.76582,-3.1967E-05],[41.769184,-2.8873E-05],[41.772548,-2.7842E-05],[41.775912,-2.9904E-05],[41.779276,-2.8357E-05],[41.78264,-2.8357E-05],[41.786004,-2.7326E-05],[41.789368,-2.6811E-05],[41.792732,-2.9389E-05],[41.796096,-2.6811E-05],[41.79946,-3.1967E-05],[41.802824,-3.1967E-05],[41.806188,-3.1451E-05],[41.809552,-2.9904E-05],[41.812916,-2.4748E-05],[41.81628,-3.4029E-05],[41.819644,-3.5576E-05],[41.823008,-3.4544E-05],[41.826372,-2.8873E-05],[41.829736,-2.6811E-05],[41.8331,-3.1967E-05],[41.836464,-2.9389E-05],[41.839828,-3.1451E-05],[41.843192,-2.7842E-05],[41.846556,-2.7326E-05],[41.84992,-2.6811E-05],[41.853284,-2.4233E-05],[41.856648,-3.2482E-05],[41.860012,-3.0935E-05],[41.863376,-2.9389E-05],[41.86674,-2.7326E-05],[41.870104,-2.2686E-05],[41.873468,-2.8357E-05],[41.876832,-2.9389E-05],[41.880196,-2.9389E-05],[41.88356,-2.9904E-05],[41.886924,-3.042E-05],[41.890288,-2.7842E-05],[41.893652,-2.7842E-05],[41.897016,-3.2482E-05],[41.90038,-3.1967E-05],[41.903744,-3.042E-05],[41.907108,-3.0935E-05],[41.910472,-2.9904E-05],[41.913836,-3.042E-05],[41.9172,-3.3513E-05],[41.920564,-3.042E-05],[41.923928,-2.9904E-05],[41.927292,-3.0935E-05],[41.930656,-3.1451E-05],[41.93402,-3.1967E-05],[41.937384,-2.9904E-05],[41.940748,-3.1967E-05],[41.944112,-3.042E-05],[41.947476,-3.042E-05],[41.95084,-3.2998E-05],[41.954204,-2.9904E-05],[41.957568,-2.8357E-05],[41.960932,-3.2998E-05],[41.964296,-3.2998E-05],[41.96766,-2.7842E-05],[41.971024,-2.9904E-05],[41.974388,-2.9904E-05],[41.977752,-2.9904E-05],[41.981116,-3.2482E-05],[41.98448,-2.6811E-05],[41.987844,-2.6811E-05],[41.991208,-3.0935E-05],[41.994572,-3.1967E-05],[41.997936,-3.1451E-05],[42.0013,-3.1451E-05]]}
-{"quant":[42.2286,-2.9389E-05],"mems":[[42.129132,-3.3513E-05],[42.132496,-2.7842E-05],[42.13586,-2.5264E-05],[42.139224,-2.7326E-05],[42.142588,-2.7326E-05],[42.145952,-2.6295E-05],[42.149316,-3.0935E-05],[42.15268,-2.7842E-05],[42.156044,-2.4233E-05],[42.159408,-3.0935E-05],[42.162772,-2.7326E-05],[42.166136,-3.0935E-05],[42.1695,-3.1967E-05],[42.172864,-2.6811E-05],[42.176228,-2.6295E-05],[42.179592,-2.3717E-05],[42.182956,-2.7326E-05],[42.18632,-2.6295E-05],[42.189684,-2.6295E-05],[42.193048,-3.3513E-05],[42.196412,-3.5576E-05],[42.199776,-2.9389E-05],[42.20314,-3.042E-05],[42.206504,-3.6607E-05],[42.209868,-3.1451E-05],[42.213232,-2.9904E-05],[42.216596,-2.7326E-05],[42.21996,-2.5264E-05],[42.223324,-2.5264E-05],[42.226688,-2.4748E-05],[42.230052,-2.8873E-05],[42.233416,-3.506E-05],[42.23678,-3.506E-05],[42.240144,-2.9389E-05],[42.243508,-2.9904E-05],[42.246872,-2.9389E-05],[42.250236,-2.8873E-05],[42.2536,-3.2482E-05],[42.256964,-3.1451E-05],[42.260328,-2.4748E-05],[42.263692,-2.6811E-05],[42.267056,-3.4029E-05],[42.27042,-2.9904E-05],[42.273784,-2.9389E-05],[42.277148,-3.3513E-05],[42.280512,-3.0935E-05],[42.283876,-3.0935E-05],[42.28724,-2.8357E-05],[42.290604,-2.9389E-05],[42.293968,-3.042E-05],[42.297332,-2.5264E-05],[42.300696,-2.3717E-05],[42.30406,-2.6811E-05],[42.307424,-3.042E-05],[42.310788,-2.8873E-05],[42.314152,-2.8873E-05],[42.317516,-2.8357E-05],[42.32088,-2.7326E-05],[42.324244,-2.7326E-05],[42.327608,-2.5779E-05],[42.330972,-2.9389E-05],[42.334336,-2.7842E-05],[42.3377,-2.7842E-05],[42.341064,-3.1967E-05],[42.344428,-2.9389E-05],[42.347792,-2.8357E-05],[42.351156,-2.9389E-05],[42.35452,-2.7326E-05],[42.357884,-2.5264E-05],[42.361248,-2.5779E-05],[42.364612,-2.7842E-05],[42.367976,-2.7326E-05],[42.37134,-2.8873E-05],[42.374704,-3.042E-05],[42.378068,-2.6811E-05],[42.381432,-3.2998E-05],[42.384796,-3.506E-05],[42.38816,-3.1967E-05],[42.391524,-3.7122E-05],[42.394888,-3.2482E-05],[42.398252,-2.6811E-05],[42.401616,-3.042E-05],[42.40498,-2.9389E-05],[42.408344,-2.4233E-05],[42.411708,-2.8873E-05],[42.415072,-2.6295E-05],[42.418436,-2.217E-05],[42.4218,-3.1451E-05],[42.425164,-3.4029E-05],[42.428528,-3.2998E-05],[42.431892,-2.7842E-05]]}
-{"quant":[42.696,-2.9888E-05],"mems":[[42.596728,-2.8357E-05],[42.600092,-3.4544E-05],[42.603456,-3.5576E-05],[42.60682,-3.1967E-05],[42.610184,-2.5779E-05],[42.613548,-2.7842E-05],[42.616912,-2.9389E-05],[42.620276,-2.7842E-05],[42.62364,-3.3513E-05],[42.627004,-3.0935E-05],[42.630368,-2.8873E-05],[42.633732,-2.7842E-05],[42.637096,-2.7326E-05],[42.64046,-3.4544E-05],[42.643824,-3.1451E-05],[42.647188,-3.0935E-05],[42.650552,-3.2482E-05],[42.653916,-2.9389E-05],[42.65728,-3.3513E-05],[42.660644,-3.2998E-05],[42.664008,-3.1451E-05],[42.667372,-3.2482E-05],[42.670736,-2.7842E-05],[42.6741,-2.7326E-05],[42.677464,-3.2482E-05],[42.680828,-3.0935E-05],[42.684192,-2.1139E-05],[42.687556,-2.2686E-05],[42.69092,-2.8357E-05],[42.694284,-3.2482E-05],[42.697648,-3.6091E-05],[42.701012,-2.7842E-05],[42.704376,-2.6295E-05],[42.70774,-2.7842E-05],[42.711104,-2.7842E-05],[42.714468,-3.1967E-05],[42.717832,-2.8873E-05],[42.721196,-2.9904E-05],[42.72456,-2.9389E-05],[42.727924,-2.5779E-05],[42.731288,-3.2482E-05],[42.734652,-3.2998E-05],[42.738016,-2.8873E-05],[42.74138,-2.9904E-05],[42.744744,-3.1967E-05],[42.748108,-2.9389E-05],[42.751472,-2.7326E-05],[42.754836,-3.0935E-05],[42.7582,-3.2482E-05],[42.761564,-3.4029E-05],[42.764928,-3.0935E-05],[42.768292,-2.8873E-05],[42.771656,-3.042E-05],[42.77502,-2.9389E-05],[42.778384,-3.2482E-05],[42.781748,-3.1967E-05],[42.785112,-3.1967E-05],[42.788476,-3.0935E-05],[42.79184,-2.6295E-05],[42.795204,-2.7326E-05],[42.798568,-2.3717E-05],[42.801932,-2.3202E-05],[42.805296,-2.8873E-05],[42.80866,-3.042E-05],[42.812024,-2.9389E-05],[42.815388,-2.9389E-05],[42.818752,-3.0935E-05],[42.822116,-2.9389E-05],[42.82548,-2.6811E-05],[42.828844,-2.7842E-05],[42.832208,-3.042E-05],[42.835572,-2.7326E-05],[42.838936,-2.6811E-05],[42.8423,-2.7842E-05],[42.845664,-2.7326E-05],[42.849028,-2.6295E-05],[42.852392,-2.8357E-05],[42.855756,-3.1451E-05],[42.85912,-3.4544E-05],[42.862484,-3.3513E-05],[42.865848,-2.9389E-05],[42.869212,-2.8357E-05],[42.872576,-2.7842E-05],[42.87594,-3.2998E-05],[42.879304,-3.1967E-05],[42.882668,-2.8873E-05],[42.886032,-2.6811E-05],[42.889396,-2.4748E-05],[42.89276,-2.9904E-05],[42.896124,-2.5779E-05]]}
-{"quant":[43.1988,-3.0569E-05],"mems":[[43.101328,-2.4748E-05],[43.104692,-2.6811E-05],[43.108056,-3.1967E-05],[43.11142,-3.506E-05],[43.114784,-3.2482E-05],[43.118148,-2.8873E-05],[43.121512,-2.8873E-05],[43.124876,-2.6295E-05],[43.12824,-3.0935E-05],[43.131604,-2.6811E-05],[43.134968,-2.5779E-05],[43.138332,-3.0935E-05],[43.141696,-3.0935E-05],[43.14506,-3.2998E-05],[43.148424,-2.9389E-05],[43.151788,-2.7326E-05],[43.155152,-2.8357E-05],[43.158516,-2.7326E-05],[43.16188,-2.6811E-05],[43.165244,-2.8357E-05],[43.168608,-2.9389E-05],[43.171972,-3.0935E-05],[43.175336,-3.1451E-05],[43.1787,-3.0935E-05],[43.182064,-3.1967E-05],[43.185428,-2.9389E-05],[43.188792,-2.9389E-05],[43.192156,-2.7842E-05],[43.19552,-2.3202E-05],[43.198884,-2.5264E-05],[43.202248,-2.8357E-05],[43.205612,-2.9389E-05],[43.208976,-2.8873E-05],[43.21234,-3.1451E-05],[43.215704,-3.1967E-05],[43.219068,-2.8873E-05],[43.222432,-3.4029E-05],[43.225796,-3.6091E-05],[43.22916,-3.2482E-05],[43.232524,-3.2482E-05],[43.235888,-3.0935E-05],[43.239252,-3.1451E-05],[43.242616,-3.0935E-05],[43.24598,-3.1451E-05],[43.249344,-3.2482E-05],[43.252708,-2.6811E-05],[43.256072,-2.7326E-05],[43.259436,-2.9389E-05],[43.2628,-2.8357E-05],[43.266164,-3.0935E-05],[43.269528,-3.0935E-05],[43.272892,-3.042E-05],[43.276256,-2.7842E-05],[43.27962,-2.7326E-05],[43.282984,-3.0935E-05],[43.286348,-3.4029E-05],[43.289712,-3.2998E-05],[43.293076,-3.2482E-05],[43.29644,-3.1451E-05],[43.299804,-2.9904E-05],[43.303168,-3.0935E-05],[43.306532,-3.3513E-05],[43.309896,-3.4029E-05],[43.31326,-2.9904E-05],[43.316624,-2.5264E-05],[43.319988,-2.4748E-05],[43.323352,-2.9389E-05],[43.326716,-3.0935E-05],[43.33008,-2.9389E-05],[43.333444,-2.9389E-05],[43.336808,-3.042E-05],[43.340172,-3.042E-05],[43.343536,-2.8357E-05],[43.3469,-2.8873E-05],[43.350264,-2.6295E-05],[43.353628,-2.6811E-05],[43.356992,-2.8357E-05],[43.360356,-2.9904E-05],[43.36372,-3.506E-05],[43.367084,-2.9904E-05],[43.370448,-2.9904E-05],[43.373812,-3.2482E-05],[43.377176,-2.9389E-05],[43.38054,-3.042E-05],[43.383904,-3.2998E-05],[43.387268,-3.5576E-05],[43.390632,-3.4029E-05],[43.393996,-3.0935E-05],[43.39736,-2.9389E-05],[43.400724,-3.042E-05]]}
-{"quant":[43.6436,-3.0024E-05],"mems":[[43.545376,-2.8873E-05],[43.54874,-2.6295E-05],[43.552104,-2.6811E-05],[43.555468,-3.2998E-05],[43.558832,-3.0935E-05],[43.562196,-2.7326E-05],[43.56556,-2.8873E-05],[43.568924,-2.217E-05],[43.572288,-2.5779E-05],[43.575652,-2.8873E-05],[43.579016,-2.9389E-05],[43.58238,-2.9389E-05],[43.585744,-3.0935E-05],[43.589108,-3.2482E-05],[43.592472,-2.6295E-05],[43.595836,-2.9904E-05],[43.5992,-3.1451E-05],[43.602564,-2.6811E-05],[43.605928,-3.0935E-05],[43.609292,-3.042E-05],[43.612656,-2.7842E-05],[43.61602,-3.0935E-05],[43.619384,-3.042E-05],[43.622748,-3.2998E-05],[43.626112,-3.0935E-05],[43.629476,-2.7842E-05],[43.63284,-3.1967E-05],[43.636204,-3.4029E-05],[43.639568,-2.8357E-05],[43.642932,-2.3717E-05],[43.646296,-3.0935E-05],[43.64966,-3.1967E-05],[43.653024,-2.9389E-05],[43.656388,-2.9389E-05],[43.659752,-2.7842E-05],[43.663116,-3.2998E-05],[43.66648,-3.2998E-05],[43.669844,-2.8873E-05],[43.673208,-3.042E-05],[43.676572,-3.2998E-05],[43.679936,-3.0935E-05],[43.6833,-2.4748E-05],[43.686664,-2.6295E-05],[43.690028,-3.4544E-05],[43.693392,-3.7122E-05],[43.696756,-3.6091E-05],[43.70012,-3.506E-05],[43.703484,-3.0935E-05],[43.706848,-2.7326E-05],[43.710212,-2.7842E-05],[43.713576,-2.9389E-05],[43.71694,-3.0935E-05],[43.720304,-2.8357E-05],[43.723668,-2.5779E-05],[43.727032,-2.5779E-05],[43.730396,-2.7842E-05],[43.73376,-3.1967E-05],[43.737124,-3.042E-05],[43.740488,-2.6811E-05],[43.743852,-2.4748E-05],[43.747216,-2.3717E-05],[43.75058,-2.4748E-05],[43.753944,-2.6295E-05],[43.757308,-3.2482E-05],[43.760672,-3.2482E-05],[43.764036,-3.042E-05],[43.7674,-3.3513E-05],[43.770764,-2.8357E-05],[43.774128,-2.8357E-05],[43.777492,-3.1451E-05],[43.780856,-2.9389E-05],[43.78422,-2.8873E-05],[43.787584,-2.6811E-05],[43.790948,-2.9389E-05],[43.794312,-2.7842E-05],[43.797676,-2.8357E-05],[43.80104,-2.9904E-05],[43.804404,-2.8357E-05],[43.807768,-3.1451E-05],[43.811132,-3.1967E-05],[43.814496,-3.042E-05],[43.81786,-3.0935E-05],[43.821224,-3.2482E-05],[43.824588,-3.2482E-05],[43.827952,-3.2482E-05],[43.831316,-3.2998E-05],[43.83468,-3.042E-05],[43.838044,-2.6295E-05],[43.841408,-2.6811E-05],[43.844772,-2.9389E-05]]}
-{"quant":[44.1,-0.1959],"mems":[[44.00288,-3.2998E-05],[44.006244,-3.2482E-05],[44.009608,-2.8873E-05],[44.012972,-3.3513E-05],[44.016336,-3.6091E-05],[44.0197,-2.5779E-05],[44.023064,-2.5264E-05],[44.026428,-3.2998E-05],[44.029792,-3.1451E-05],[44.033156,-3.2482E-05],[44.03652,-3.2482E-05],[44.039884,-2.9389E-05],[44.043248,-2.8873E-05],[44.046612,-3.042E-05],[44.049976,-2.7842E-05],[44.05334,-2.8357E-05],[44.056704,-3.1967E-05],[44.060068,-2.7842E-05],[44.063432,-2.7842E-05],[44.066796,-3.042E-05],[44.07016,-3.2998E-05],[44.073524,-3.3513E-05],[44.076888,-2.3202E-05],[44.080252,-2.3717E-05],[44.083616,-2.9389E-05],[44.08698,-2.8357E-05],[44.090344,-3.1451E-05],[44.093708,-3.1451E-05],[44.097072,-2.7842E-05],[44.100436,-2.5264E-05],[44.1038,-2.7842E-05],[44.107164,-3.2998E-05],[44.110528,-3.2482E-05],[44.113892,-2.8873E-05],[44.117256,-2.6811E-05],[44.12062,-2.6295E-05],[44.123984,-2.6811E-05],[44.127348,-3.1451E-05],[44.130712,-3.1451E-05],[44.134076,-2.7842E-05],[44.13744,-2.8357E-05],[44.140804,-2.8357E-05],[44.144168,-2.8357E-05],[44.147532,-3.2998E-05],[44.150896,-3.506E-05],[44.15426,-2.7326E-05],[44.157624,-2.5779E-05],[44.160988,-3.2482E-05],[44.164352,-3.042E-05],[44.167716,-2.8357E-05],[44.17108,-2.6295E-05],[44.174444,-2.6811E-05],[44.177808,-2.7842E-05],[44.181172,-2.7842E-05],[44.184536,-3.042E-05],[44.1879,-2.8873E-05],[44.191264,-2.9904E-05],[44.194628,-2.9389E-05],[44.197992,-3.1451E-05],[44.201356,-3.6091E-05],[44.20472,-3.2482E-05],[44.208084,-2.6811E-05],[44.211448,-2.8873E-05],[44.214812,-3.2998E-05],[44.218176,-2.9904E-05],[44.22154,-2.7326E-05],[44.224904,-3.1451E-05],[44.228268,-3.2482E-05],[44.231632,-2.7842E-05],[44.234996,-2.9389E-05],[44.23836,-3.1451E-05],[44.241724,-2.9389E-05],[44.245088,-2.8357E-05],[44.248452,-2.8873E-05],[44.251816,-2.9389E-05],[44.25518,-2.9904E-05],[44.258544,-3.1967E-05],[44.261908,-3.4544E-05],[44.265272,-3.4544E-05],[44.268636,-3.2998E-05],[44.272,-2.7326E-05],[44.275549,-2.8357E-05],[44.279099,-3.2998E-05],[44.282648,-3.1451E-05],[44.286197,-3.042E-05],[44.289747,-3.0935E-05],[44.293296,-2.8873E-05],[44.296845,-2.6811E-05],[44.300395,-2.9904E-05]]}
-{"quant":[44.5449,-2.9285E-05],"mems":[[44.445917,-3.1967E-05],[44.449467,-3.4029E-05],[44.453016,-2.8873E-05],[44.456565,-2.6295E-05],[44.460115,-2.6295E-05],[44.463664,-2.7842E-05],[44.467213,-2.9904E-05],[44.470763,-2.7842E-05],[44.474312,-2.7326E-05],[44.477861,-2.8873E-05],[44.481411,-2.7326E-05],[44.48496,-2.5779E-05],[44.488509,-2.8357E-05],[44.492059,-3.0935E-05],[44.495608,-2.8873E-05],[44.499157,-2.7326E-05],[44.502707,-2.7842E-05],[44.506256,-2.9389E-05],[44.509805,-3.4544E-05],[44.513355,-3.1451E-05],[44.516904,-2.6811E-05],[44.520453,-3.1451E-05],[44.524003,-3.2998E-05],[44.527552,-3.0935E-05],[44.531101,-3.1967E-05],[44.534651,-3.0935E-05],[44.5382,-2.9389E-05],[44.541749,-2.9904E-05],[44.545299,-3.1451E-05],[44.548848,-3.4544E-05],[44.552397,-3.2998E-05],[44.555947,-3.042E-05],[44.559496,-3.1451E-05],[44.563045,-2.8873E-05],[44.566595,-3.1967E-05],[44.570144,-3.4029E-05],[44.573693,-3.0935E-05],[44.577243,-3.1451E-05],[44.580792,-2.6295E-05],[44.584341,-2.5779E-05],[44.587891,-2.8357E-05],[44.59144,-2.7842E-05],[44.594989,-2.7326E-05],[44.598539,-3.1451E-05],[44.602088,-3.2482E-05],[44.605637,-2.5779E-05],[44.609187,-2.7326E-05],[44.612736,-2.7842E-05],[44.616285,-2.6811E-05],[44.619835,-2.3717E-05],[44.623384,-2.4748E-05],[44.626933,-3.1451E-05],[44.630483,-2.9389E-05],[44.634032,-3.1967E-05],[44.637581,-2.9904E-05],[44.641131,-2.6295E-05],[44.64468,-2.7326E-05],[44.648229,-2.8357E-05],[44.651779,-2.9389E-05],[44.655328,-2.9904E-05],[44.658877,-3.4544E-05],[44.662427,-3.042E-05],[44.665976,-2.8357E-05],[44.669525,-3.042E-05],[44.673075,-2.8357E-05],[44.676624,-2.9389E-05],[44.680173,-3.1967E-05],[44.683723,-3.042E-05],[44.687272,-2.7842E-05],[44.690821,-3.1451E-05],[44.694371,-2.9904E-05],[44.69792,-2.6811E-05],[44.701469,-2.7842E-05],[44.705019,-2.5264E-05],[44.708568,-2.7326E-05],[44.712117,-3.2482E-05],[44.715667,-3.042E-05],[44.719216,-3.0935E-05],[44.722765,-3.2482E-05],[44.726315,-2.7326E-05],[44.729864,-3.0935E-05],[44.733413,-3.0935E-05],[44.736963,-2.6295E-05],[44.740512,-3.1967E-05],[44.744061,-2.9389E-05],[44.747611,-2.7842E-05]]}
-{"quant":[45.0915,-2.9801E-05],"mems":[[44.992515,-3.1451E-05],[44.996064,-2.6295E-05],[44.999613,-3.0935E-05],[45.003163,-3.1967E-05],[45.006712,-2.4233E-05],[45.010261,-2.8873E-05],[45.013811,-2.9389E-05],[45.01736,-2.8357E-05],[45.020909,-3.1967E-05],[45.024459,-3.042E-05],[45.028008,-3.042E-05],[45.031557,-3.2998E-05],[45.035107,-2.8873E-05],[45.038656,-2.8357E-05],[45.042205,-3.1967E-05],[45.045755,-3.4029E-05],[45.049304,-3.4029E-05],[45.052853,-3.042E-05],[45.056403,-3.042E-05],[45.059952,-3.0935E-05],[45.063501,-3.1451E-05],[45.067051,-3.5576E-05],[45.0706,-3.2482E-05],[45.074149,-2.4748E-05],[45.077699,-2.6295E-05],[45.081248,-3.2482E-05],[45.084797,-3.1451E-05],[45.088347,-2.7842E-05],[45.091896,-3.042E-05],[45.095445,-2.9904E-05],[45.098995,-2.7842E-05],[45.102544,-3.042E-05],[45.106093,-3.1967E-05],[45.109643,-3.3513E-05],[45.113192,-3.1967E-05],[45.116741,-2.7326E-05],[45.120291,-2.9904E-05],[45.12384,-3.042E-05],[45.127389,-3.1451E-05],[45.130939,-3.4029E-05],[45.134488,-2.9389E-05],[45.138037,-2.7842E-05],[45.141587,-2.7842E-05],[45.145136,-2.9904E-05],[45.148685,-2.9904E-05],[45.152235,-3.2482E-05],[45.155784,-3.042E-05],[45.159333,-2.217E-05],[45.162883,-2.7842E-05],[45.166432,-3.042E-05],[45.169981,-2.8357E-05],[45.173531,-3.1451E-05],[45.17708,-3.4029E-05],[45.180629,-2.9904E-05],[45.184179,-2.8357E-05],[45.187728,-2.7326E-05],[45.191277,-2.6811E-05],[45.194827,-3.042E-05],[45.198376,-3.0935E-05],[45.201925,-3.2482E-05],[45.205475,-3.3513E-05],[45.209024,-3.3513E-05],[45.212573,-3.1967E-05],[45.216123,-2.6811E-05],[45.219672,-2.7326E-05],[45.223221,-2.8357E-05],[45.226771,-2.9389E-05],[45.23032,-3.3513E-05],[45.233869,-3.042E-05],[45.237419,-2.9389E-05],[45.240968,-3.1967E-05],[45.244517,-3.0935E-05],[45.248067,-3.4029E-05],[45.251616,-3.042E-05],[45.255165,-3.1967E-05],[45.258715,-3.1451E-05],[45.262264,-2.7326E-05],[45.265813,-3.0935E-05],[45.269363,-2.7326E-05],[45.272912,-3.0935E-05],[45.276461,-3.2482E-05],[45.280011,-3.042E-05],[45.28356,-3.042E-05],[45.287109,-2.9904E-05],[45.290659,-3.5576E-05],[45.294208,-2.9389E-05]]}
-{"quant":[45.5517,-2.9673E-05],"mems":[[45.453928,-2.8873E-05],[45.457477,-3.1967E-05],[45.461027,-3.1451E-05],[45.464576,-2.8357E-05],[45.468125,-2.5779E-05],[45.471675,-2.5779E-05],[45.475224,-3.1967E-05],[45.478773,-3.1967E-05],[45.482323,-2.9389E-05],[45.485872,-2.9389E-05],[45.489421,-2.5264E-05],[45.492971,-2.4748E-05],[45.49652,-2.6295E-05],[45.500069,-2.7842E-05],[45.503619,-3.2482E-05],[45.507168,-2.8873E-05],[45.510717,-2.5779E-05],[45.514267,-2.8873E-05],[45.517816,-2.8873E-05],[45.521365,-2.9904E-05],[45.524915,-2.9389E-05],[45.528464,-3.1451E-05],[45.532013,-2.9389E-05],[45.535563,-2.7842E-05],[45.539112,-3.1451E-05],[45.542661,-2.9904E-05],[45.546211,-3.2998E-05],[45.54976,-3.4029E-05],[45.553309,-2.9904E-05],[45.556859,-3.0935E-05],[45.560408,-3.1967E-05],[45.563957,-3.2998E-05],[45.567507,-3.4029E-05],[45.571056,-2.8873E-05],[45.574605,-2.6295E-05],[45.578155,-3.1451E-05],[45.581704,-3.1451E-05],[45.585253,-2.9389E-05],[45.588803,-2.7326E-05],[45.592352,-3.042E-05],[45.595901,-2.9904E-05],[45.599451,-2.8873E-05],[45.603,-3.1451E-05],[45.606549,-2.9389E-05],[45.610099,-2.9389E-05],[45.613648,-2.7326E-05],[45.617197,-2.9389E-05],[45.620747,-3.042E-05],[45.624296,-2.7842E-05],[45.627845,-3.1451E-05],[45.631395,-2.7326E-05],[45.634944,-2.2686E-05],[45.638493,-2.9904E-05],[45.642043,-3.506E-05],[45.645592,-3.1451E-05],[45.649141,-2.8873E-05],[45.652691,-2.4748E-05],[45.65624,-2.6295E-05],[45.659789,-3.0935E-05],[45.663339,-3.2998E-05],[45.666888,-3.2998E-05],[45.670437,-2.8873E-05],[45.673987,-3.042E-05],[45.677536,-3.042E-05],[45.681085,-3.1451E-05],[45.684635,-3.1451E-05],[45.688184,-2.9904E-05],[45.691733,-3.6091E-05],[45.695283,-2.9389E-05],[45.698832,-2.7842E-05],[45.702381,-3.0935E-05],[45.705931,-3.042E-05],[45.70948,-3.1967E-05],[45.713029,-2.6811E-05],[45.716579,-2.8357E-05],[45.720128,-2.8873E-05],[45.723677,-3.2998E-05],[45.727227,-3.3513E-05],[45.730776,-2.9904E-05],[45.734325,-2.9389E-05],[45.737875,-2.4233E-05],[45.741424,-2.5779E-05],[45.744973,-2.6811E-05],[45.748523,-3.1451E-05],[45.752072,-3.0935E-05]]}
-{"quant":[46.0031,-2.914E-05],"mems":[[45.904693,-3.1451E-05],[45.908243,-3.1967E-05],[45.911792,-3.4544E-05],[45.915341,-3.2482E-05],[45.918891,-2.8873E-05],[45.92244,-2.7842E-05],[45.925989,-2.9389E-05],[45.929539,-2.9904E-05],[45.933088,-2.9904E-05],[45.936637,-2.6295E-05],[45.940187,-2.7842E-05],[45.943736,-3.1967E-05],[45.947285,-2.8357E-05],[45.950835,-3.2482E-05],[45.954384,-3.0935E-05],[45.957933,-2.9389E-05],[45.961483,-3.4544E-05],[45.965032,-2.8357E-05],[45.968581,-2.6811E-05],[45.972131,-2.9389E-05],[45.97568,-3.1967E-05],[45.979229,-2.9389E-05],[45.982779,-2.4233E-05],[45.986328,-2.3202E-05],[45.989877,-2.6811E-05],[45.993427,-3.2482E-05],[45.996976,-3.042E-05],[46.000525,-2.7326E-05],[46.004075,-2.6811E-05],[46.007624,-3.2998E-05],[46.011173,-3.4029E-05],[46.014723,-2.9904E-05],[46.018272,-3.0935E-05],[46.021821,-3.1451E-05],[46.025371,-2.9904E-05],[46.02892,-2.9389E-05],[46.032469,-3.2482E-05],[46.036019,-2.9389E-05],[46.039568,-2.4233E-05],[46.043117,-2.6295E-05],[46.046667,-3.2998E-05],[46.050216,-3.0935E-05],[46.053765,-2.6811E-05],[46.057315,-3.1967E-05],[46.060864,-2.7326E-05],[46.064413,-2.6811E-05],[46.067963,-2.9389E-05],[46.071512,-2.4748E-05],[46.075061,-2.3717E-05],[46.078611,-2.8357E-05],[46.08216,-3.4029E-05],[46.085709,-3.0935E-05],[46.089259,-2.7326E-05],[46.092808,-2.6295E-05],[46.096357,-2.7842E-05],[46.099907,-2.8357E-05],[46.103456,-2.9389E-05],[46.107005,-2.9389E-05],[46.110555,-2.8873E-05],[46.114104,-3.1451E-05],[46.117653,-3.1967E-05],[46.121203,-3.1451E-05],[46.124752,-2.9904E-05],[46.128301,-3.042E-05],[46.131851,-3.506E-05],[46.1354,-3.1967E-05],[46.138949,-2.7326E-05],[46.142499,-3.2998E-05],[46.146048,-3.506E-05],[46.149597,-3.3513E-05],[46.153147,-3.2482E-05],[46.156696,-2.9904E-05],[46.160245,-2.9389E-05],[46.163795,-2.5779E-05],[46.167344,-2.8873E-05],[46.170893,-2.9389E-05],[46.174443,-2.3202E-05],[46.177992,-3.2998E-05],[46.181541,-3.5576E-05],[46.185091,-2.6811E-05],[46.18864,-3.1451E-05],[46.192189,-3.4029E-05],[46.195739,-2.9904E-05],[46.199288,-2.7326E-05],[46.202837,-3.042E-05],[46.206387,-3.5576E-05]]}
-{"quant":[46.4505,-3.0313E-05],"mems":[[46.351909,-2.6811E-05],[46.355459,-2.9389E-05],[46.359008,-3.1451E-05],[46.362557,-2.9904E-05],[46.366107,-3.2482E-05],[46.369656,-3.0935E-05],[46.373205,-2.5779E-05],[46.376755,-2.4233E-05],[46.380304,-2.6811E-05],[46.383853,-2.8873E-05],[46.387403,-2.9389E-05],[46.390952,-2.6295E-05],[46.394501,-2.6295E-05],[46.398051,-2.8873E-05],[46.4016,-2.7842E-05],[46.405149,-2.5264E-05],[46.408699,-2.7842E-05],[46.412248,-3.042E-05],[46.415797,-2.8873E-05],[46.419347,-3.2482E-05],[46.422896,-3.1967E-05],[46.426445,-2.8357E-05],[46.429995,-2.6811E-05],[46.433544,-2.7326E-05],[46.437093,-3.0935E-05],[46.440643,-2.9389E-05],[46.444192,-3.1451E-05],[46.447741,-3.1967E-05],[46.451291,-3.0935E-05],[46.45484,-3.3513E-05],[46.458389,-3.4029E-05],[46.461939,-3.0935E-05],[46.465488,-2.5779E-05],[46.469037,-2.8357E-05],[46.472587,-2.7326E-05],[46.476136,-2.8873E-05],[46.479685,-3.2998E-05],[46.483235,-3.0935E-05],[46.486784,-3.1967E-05],[46.490333,-3.1451E-05],[46.493883,-3.4029E-05],[46.497432,-3.4544E-05],[46.500981,-2.9904E-05],[46.504531,-3.042E-05],[46.50808,-3.1967E-05],[46.511629,-3.506E-05],[46.515179,-3.5576E-05],[46.518728,-2.6295E-05],[46.522277,-2.4748E-05],[46.525827,-3.1967E-05],[46.529376,-3.1967E-05],[46.532925,-2.7842E-05],[46.536475,-3.042E-05],[46.540024,-3.0935E-05],[46.543573,-2.5779E-05],[46.547123,-2.5264E-05],[46.550672,-2.5264E-05],[46.554221,-2.9389E-05],[46.557771,-2.8873E-05],[46.56132,-2.8357E-05],[46.564869,-2.9904E-05],[46.568419,-2.8357E-05],[46.571968,-3.0935E-05],[46.575517,-2.7326E-05],[46.579067,-2.7326E-05],[46.582616,-2.8357E-05],[46.586165,-2.7326E-05],[46.589715,-2.9389E-05],[46.593264,-2.5779E-05],[46.596813,-2.6295E-05],[46.600363,-3.042E-05],[46.603912,-2.5779E-05],[46.607461,-2.3717E-05],[46.611011,-2.6295E-05],[46.61456,-2.217E-05],[46.618109,-2.4233E-05],[46.621659,-3.4029E-05],[46.625208,-3.1967E-05],[46.628757,-3.0935E-05],[46.632307,-3.042E-05],[46.635856,-3.042E-05],[46.639405,-3.2998E-05],[46.642955,-2.5779E-05],[46.646504,-2.4748E-05],[46.650053,-2.8357E-05],[46.653603,-2.9904E-05]]}
-{"quant":[46.9128,-1.0373],"mems":[[46.863013,-3.042E-05],[46.866563,-3.0935E-05],[46.870112,-3.0935E-05],[46.873661,-3.1451E-05],[46.877211,-3.1967E-05],[46.88076,-3.1451E-05],[46.884309,-2.9389E-05],[46.887859,-2.7326E-05],[46.891408,-2.8873E-05],[46.894957,-2.8873E-05],[46.898507,-2.7326E-05],[46.902056,-3.042E-05],[46.905605,-2.9389E-05],[46.909155,-2.7326E-05],[46.912704,-2.7842E-05],[46.916253,-2.7842E-05],[46.919803,-3.1451E-05],[46.923352,-2.8873E-05],[46.926901,-2.9389E-05],[46.930451,-3.042E-05],[46.934,-2.3202E-05],[46.937392,-2.9389E-05],[46.940784,-3.1451E-05],[46.944176,-3.3513E-05],[46.947568,-2.9904E-05],[46.95096,-2.4233E-05],[46.954352,-2.9389E-05],[46.957744,-2.4233E-05],[46.961136,-2.6811E-05],[46.964528,-3.1451E-05],[46.96792,-2.7326E-05],[46.971312,-3.042E-05],[46.974704,-3.3513E-05],[46.978096,-3.1967E-05],[46.981488,-3.042E-05],[46.98488,-3.2482E-05],[46.988272,-3.0935E-05],[46.991664,-2.9389E-05],[46.995056,-3.042E-05],[46.998448,-2.9904E-05],[47.00184,-3.2482E-05],[47.005232,-3.2482E-05],[47.008624,-3.1967E-05],[47.012016,-3.2482E-05],[47.015408,-2.9389E-05],[47.0188,-3.1451E-05],[47.022192,-3.2482E-05],[47.025584,-2.6811E-05],[47.028976,-2.7326E-05],[47.032368,-2.7326E-05],[47.03576,-2.3717E-05],[47.039152,-2.7326E-05],[47.042544,-3.4544E-05],[47.045936,-3.4029E-05],[47.049328,-2.7326E-05],[47.05272,-2.217E-05],[47.056112,-2.9389E-05],[47.059504,-3.3513E-05],[47.062896,-2.7326E-05],[47.066288,-2.6295E-05],[47.06968,-2.7326E-05],[47.073072,-2.7842E-05],[47.076464,-2.9389E-05],[47.079856,-2.9904E-05],[47.083248,-3.1451E-05],[47.08664,-3.2998E-05],[47.090032,-3.2998E-05],[47.093424,-2.8357E-05],[47.096816,-2.9389E-05],[47.100208,-3.2998E-05],[47.1036,-2.8873E-05],[47.106992,-2.7326E-05],[47.110384,-2.5264E-05],[47.113776,-2.5779E-05],[47.117168,-2.9389E-05],[47.12056,-2.9389E-05],[47.123952,-2.8873E-05],[47.127344,-2.6811E-05],[47.130736,-2.8873E-05],[47.134128,-3.0935E-05],[47.13752,-3.1451E-05],[47.140912,-3.1967E-05],[47.144304,-3.2998E-05],[47.147696,-3.2482E-05],[47.151088,-2.9389E-05],[47.15448,-2.9904E-05],[47.157872,-2.8873E-05],[47.161264,-2.7842E-05]]}
-{"quant":[47.4114,-2.9671E-05],"mems":[[47.313904,-3.1451E-05],[47.317296,-3.2998E-05],[47.320688,-2.5264E-05],[47.32408,-2.9389E-05],[47.327472,-3.4544E-05],[47.330864,-2.8873E-05],[47.334256,-2.6295E-05],[47.337648,-3.1451E-05],[47.34104,-3.4029E-05],[47.344432,-3.0935E-05],[47.347824,-3.0935E-05],[47.351216,-2.9389E-05],[47.354608,-3.0935E-05],[47.358,-3.4029E-05],[47.361392,-3.2998E-05],[47.364784,-3.1451E-05],[47.368176,-2.9389E-05],[47.371568,-3.2482E-05],[47.37496,-3.1451E-05],[47.378352,-2.9389E-05],[47.381744,-3.1967E-05],[47.385136,-3.042E-05],[47.388528,-3.0935E-05],[47.39192,-3.2998E-05],[47.395312,-3.3513E-05],[47.398704,-3.2482E-05],[47.402096,-3.1451E-05],[47.405488,-2.9904E-05],[47.40888,-2.7326E-05],[47.412272,-2.8873E-05],[47.415664,-2.8357E-05],[47.419056,-2.7842E-05],[47.422448,-3.042E-05],[47.42584,-2.9904E-05],[47.429232,-2.9389E-05],[47.432624,-3.042E-05],[47.436016,-3.2482E-05],[47.439408,-3.2482E-05],[47.4428,-3.0935E-05],[47.446192,-2.7326E-05],[47.449584,-2.6295E-05],[47.452976,-3.0935E-05],[47.456368,-2.9904E-05],[47.45976,-2.6295E-05],[47.463152,-2.7842E-05],[47.466544,-2.9389E-05],[47.469936,-2.9389E-05],[47.473328,-3.042E-05],[47.47672,-2.9389E-05],[47.480112,-3.1451E-05],[47.483504,-2.9389E-05],[47.486896,-2.8873E-05],[47.490288,-3.2998E-05],[47.49368,-3.1451E-05],[47.497072,-2.7842E-05],[47.500464,-2.8357E-05],[47.503856,-3.1967E-05],[47.507248,-2.9904E-05],[47.51064,-2.9389E-05],[47.514032,-2.9904E-05],[47.517424,-3.042E-05],[47.520816,-3.0935E-05],[47.524208,-2.7326E-05],[47.5276,-2.7326E-05],[47.530992,-2.8357E-05],[47.534384,-2.9904E-05],[47.537776,-2.8873E-05],[47.541168,-3.042E-05],[47.54456,-3.042E-05],[47.547952,-3.1967E-05],[47.551344,-3.2998E-05],[47.554736,-2.4748E-05],[47.558128,-3.042E-05],[47.56152,-3.4029E-05],[47.564912,-2.7326E-05],[47.568304,-2.5779E-05],[47.571696,-3.042E-05],[47.575088,-3.5576E-05],[47.57848,-2.8357E-05],[47.581872,-2.7842E-05],[47.585264,-3.2998E-05],[47.588656,-2.9389E-05],[47.592048,-3.1967E-05],[47.59544,-3.2482E-05],[47.598832,-3.2482E-05],[47.602224,-3.0935E-05],[47.605616,-2.8357E-05],[47.609008,-3.042E-05],[47.6124,-3.1967E-05]]}
-{"quant":[47.9531,-3.0712E-05],"mems":[[47.853232,-3.2998E-05],[47.856624,-3.0935E-05],[47.860016,-2.8357E-05],[47.863408,-2.7842E-05],[47.8668,-2.6811E-05],[47.870192,-2.8357E-05],[47.873584,-2.8357E-05],[47.876976,-2.6295E-05],[47.880368,-2.4748E-05],[47.88376,-2.5779E-05],[47.887152,-3.1967E-05],[47.890544,-2.9389E-05],[47.893936,-2.7842E-05],[47.897328,-2.5264E-05],[47.90072,-2.6295E-05],[47.904112,-3.4029E-05],[47.907504,-2.8357E-05],[47.910896,-2.9389E-05],[47.914288,-3.3513E-05],[47.91768,-2.9904E-05],[47.921072,-2.9389E-05],[47.924464,-2.9904E-05],[47.927856,-3.2482E-05],[47.931248,-3.4029E-05],[47.93464,-3.1967E-05],[47.938032,-2.6811E-05],[47.941424,-2.9389E-05],[47.944816,-3.0935E-05],[47.948208,-2.9389E-05],[47.9516,-3.1967E-05],[47.954992,-3.506E-05],[47.958384,-3.4029E-05],[47.961776,-2.9389E-05],[47.965168,-3.2482E-05],[47.96856,-3.4029E-05],[47.971952,-3.0935E-05],[47.975344,-2.9904E-05],[47.978736,-3.042E-05],[47.982128,-2.8873E-05],[47.98552,-2.8873E-05],[47.988912,-3.2482E-05],[47.992304,-3.1967E-05],[47.995696,-2.8873E-05],[47.999088,-3.042E-05],[48.00248,-2.9904E-05],[48.005872,-2.5779E-05],[48.009264,-2.9904E-05],[48.012656,-3.2998E-05],[48.016048,-3.4029E-05],[48.01944,-3.1451E-05],[48.022832,-2.8357E-05],[48.026224,-2.8873E-05],[48.029616,-2.6811E-05],[48.033008,-3.1967E-05],[48.0364,-3.1967E-05],[48.039792,-2.7842E-05],[48.043184,-3.2998E-05],[48.046576,-3.2998E-05],[48.049968,-2.9904E-05],[48.05336,-2.7842E-05],[48.056752,-2.4233E-05],[48.060144,-2.4233E-05],[48.063536,-2.8873E-05],[48.066928,-3.042E-05],[48.07032,-2.9904E-05],[48.073712,-2.7842E-05],[48.077104,-2.5264E-05],[48.080496,-2.6811E-05],[48.083888,-2.9904E-05],[48.08728,-3.0935E-05],[48.090672,-3.2998E-05],[48.094064,-3.1451E-05],[48.097456,-2.4748E-05],[48.100848,-2.8357E-05],[48.10424,-2.8357E-05],[48.107632,-2.8873E-05],[48.111024,-3.3513E-05],[48.114416,-2.8873E-05],[48.117808,-2.8873E-05],[48.1212,-3.042E-05],[48.124592,-3.3513E-05],[48.127984,-3.1967E-05],[48.131376,-2.7842E-05],[48.134768,-2.6811E-05],[48.13816,-2.9389E-05],[48.141552,-3.1451E-05],[48.144944,-3.042E-05],[48.148336,-3.2998E-05],[48.151728,-3.4029E-05],[48.15512,-3.1451E-05]]}
-{"quant":[48.4205,-3.0385E-05],"mems":[[48.321328,-3.4544E-05],[48.32472,-2.9904E-05],[48.328112,-2.2686E-05],[48.331504,-2.6811E-05],[48.334896,-2.8357E-05],[48.338288,-2.8873E-05],[48.34168,-3.0935E-05],[48.345072,-3.042E-05],[48.348464,-2.9389E-05],[48.351856,-2.8357E-05],[48.355248,-2.7326E-05],[48.35864,-2.6295E-05],[48.362032,-2.7842E-05],[48.365424,-3.2482E-05],[48.368816,-3.3513E-05],[48.372208,-2.7842E-05],[48.3756,-2.6811E-05],[48.378992,-3.2482E-05],[48.382384,-3.042E-05],[48.385776,-2.9389E-05],[48.389168,-3.506E-05],[48.39256,-2.8873E-05],[48.395952,-2.7842E-05],[48.399344,-3.2482E-05],[48.402736,-2.8357E-05],[48.406128,-2.9904E-05],[48.40952,-2.5264E-05],[48.412912,-2.4748E-05],[48.416304,-3.0935E-05],[48.419696,-3.1451E-05],[48.423088,-3.4544E-05],[48.42648,-3.2998E-05],[48.429872,-2.8873E-05],[48.433264,-2.9389E-05],[48.436656,-3.2482E-05],[48.440048,-3.0935E-05],[48.44344,-2.7842E-05],[48.446832,-2.9904E-05],[48.450224,-2.9389E-05],[48.453616,-2.5264E-05],[48.457008,-3.0935E-05],[48.4604,-3.2998E-05],[48.463792,-3.1967E-05],[48.467184,-3.0935E-05],[48.470576,-2.9389E-05],[48.473968,-3.2998E-05],[48.47736,-3.4029E-05],[48.480752,-3.1451E-05],[48.484144,-2.8357E-05],[48.487536,-3.2998E-05],[48.490928,-2.9904E-05],[48.49432,-2.7842E-05],[48.497712,-3.5576E-05],[48.501104,-3.2482E-05],[48.504496,-3.0935E-05],[48.507888,-2.7842E-05],[48.51128,-2.3717E-05],[48.514672,-2.7842E-05],[48.518064,-2.8873E-05],[48.521456,-2.8873E-05],[48.524848,-3.0935E-05],[48.52824,-2.6811E-05],[48.531632,-2.3717E-05],[48.535024,-2.9389E-05],[48.538416,-3.4544E-05],[48.541808,-3.1967E-05],[48.5452,-2.8873E-05],[48.548592,-3.1967E-05],[48.551984,-2.9904E-05],[48.555376,-2.7842E-05],[48.558768,-2.7326E-05],[48.56216,-2.7326E-05],[48.565552,-3.042E-05],[48.568944,-2.6811E-05],[48.572336,-3.0935E-05],[48.575728,-3.042E-05],[48.57912,-3.1451E-05],[48.582512,-3.2482E-05],[48.585904,-2.5779E-05],[48.589296,-2.7326E-05],[48.592688,-2.4748E-05],[48.59608,-2.7326E-05],[48.599472,-3.2482E-05],[48.602864,-3.042E-05],[48.606256,-2.8357E-05],[48.609648,-2.7842E-05],[48.61304,-3.1451E-05],[48.616432,-3.042E-05],[48.619824,-2.7842E-05],[48.623216,-2.7326E-05]]}
-{"quant":[48.8831,-2.9705E-05],"mems":[[48.786032,-2.9904E-05],[48.789424,-2.9904E-05],[48.792816,-2.7842E-05],[48.796208,-2.7326E-05],[48.7996,-2.8357E-05],[48.802992,-2.5264E-05],[48.806384,-2.9904E-05],[48.809776,-2.8357E-05],[48.813168,-2.5264E-05],[48.81656,-2.8873E-05],[48.819952,-2.9904E-05],[48.823344,-3.1967E-05],[48.826736,-3.042E-05],[48.830128,-2.9904E-05],[48.83352,-3.4544E-05],[48.836912,-3.4544E-05],[48.840304,-3.1967E-05],[48.843696,-3.042E-05],[48.847088,-2.9904E-05],[48.85048,-3.0935E-05],[48.853872,-3.1451E-05],[48.857264,-3.0935E-05],[48.860656,-3.0935E-05],[48.864048,-3.0935E-05],[48.86744,-2.6811E-05],[48.870832,-2.8873E-05],[48.874224,-3.4029E-05],[48.877616,-3.2482E-05],[48.881008,-3.1967E-05],[48.8844,-2.8357E-05],[48.887792,-2.8357E-05],[48.891184,-3.1451E-05],[48.894576,-2.9904E-05],[48.897968,-3.042E-05],[48.90136,-3.042E-05],[48.904752,-3.0935E-05],[48.908144,-3.0935E-05],[48.911536,-3.042E-05],[48.914928,-2.8873E-05],[48.91832,-2.8357E-05],[48.921712,-3.1451E-05],[48.925104,-2.9904E-05],[48.928496,-2.7326E-05],[48.931888,-3.2482E-05],[48.93528,-3.506E-05],[48.938672,-2.8873E-05],[48.942064,-2.8873E-05],[48.945456,-2.9904E-05],[48.948848,-2.9904E-05],[48.95224,-3.4029E-05],[48.955632,-3.2482E-05],[48.959024,-2.8357E-05],[48.962416,-2.7842E-05],[48.965808,-2.4233E-05],[48.9692,-2.7326E-05],[48.972592,-3.5576E-05],[48.975984,-2.9904E-05],[48.979376,-2.4233E-05],[48.982768,-2.7842E-05],[48.98616,-2.6811E-05],[48.989552,-2.6811E-05],[48.992944,-2.8357E-05],[48.996336,-2.5779E-05],[48.999728,-2.6295E-05],[49.00312,-2.7326E-05],[49.006512,-3.042E-05],[49.009904,-3.2998E-05],[49.013296,-3.2998E-05],[49.016688,-3.1451E-05],[49.02008,-2.9389E-05],[49.023472,-2.8357E-05],[49.026864,-2.7842E-05],[49.030256,-3.3513E-05],[49.033648,-3.2482E-05],[49.03704,-3.042E-05],[49.040432,-2.9904E-05],[49.043824,-2.5779E-05],[49.047216,-2.6811E-05],[49.050608,-2.9389E-05],[49.054,-3.4544E-05],[49.057392,-3.6607E-05],[49.060784,-3.0935E-05],[49.064176,-3.1967E-05],[49.067568,-2.9389E-05],[49.07096,-2.6811E-05],[49.074352,-3.1451E-05],[49.077744,-3.042E-05],[49.081136,-2.6295E-05],[49.084528,-2.7842E-05]]}
-{"quant":[49.3677,0.74934],"mems":[[49.335536,-2.7326E-05],[49.338928,-2.6295E-05],[49.34232,-2.6811E-05],[49.345712,-2.8873E-05],[49.349104,-3.4544E-05],[49.352496,-3.1451E-05],[49.355888,-2.9389E-05],[49.35928,-3.042E-05],[49.362672,-2.5264E-05],[49.366064,-2.6295E-05],[49.369456,-3.1451E-05],[49.372848,-2.7326E-05],[49.37624,-2.5264E-05],[49.379632,-2.7326E-05],[49.383024,-2.6811E-05],[49.386416,-3.0935E-05],[49.389808,-3.0935E-05],[49.3932,-2.7326E-05],[49.396592,-2.6811E-05],[49.399984,-2.3202E-05],[49.403376,-2.9904E-05],[49.406768,-3.0935E-05],[49.41016,-2.7842E-05],[49.413552,-3.1451E-05],[49.416944,-2.4748E-05],[49.420336,-2.7326E-05],[49.423728,-3.042E-05],[49.42712,-3.0935E-05],[49.430512,-3.1451E-05],[49.433904,-2.7842E-05],[49.437296,-3.2998E-05],[49.440688,-2.8873E-05],[49.44408,-2.8873E-05],[49.447472,-3.1451E-05],[49.450864,-2.4748E-05],[49.454256,-2.7842E-05],[49.457648,-3.0935E-05],[49.46104,-2.8873E-05],[49.464432,-2.6295E-05],[49.467824,-3.042E-05],[49.471216,-3.0935E-05],[49.474608,-3.0935E-05],[49.478,-3.2998E-05],[49.481369,-3.0935E-05],[49.484739,-3.042E-05],[49.488108,-3.1451E-05],[49.491477,-3.6091E-05],[49.494847,-3.1967E-05],[49.498216,-2.6295E-05],[49.501585,-2.6811E-05],[49.504955,-2.6295E-05],[49.508324,-2.8873E-05],[49.511693,-2.6295E-05],[49.515063,-2.4233E-05],[49.518432,-2.7326E-05],[49.521801,-2.9904E-05],[49.525171,-2.8873E-05],[49.52854,-2.4233E-05],[49.531909,-2.3202E-05],[49.535279,-2.7842E-05],[49.538648,-2.7326E-05],[49.542017,-2.8357E-05],[49.545387,-3.1451E-05],[49.548756,-3.1451E-05],[49.552125,-3.1967E-05],[49.555495,-2.9904E-05],[49.558864,-3.3513E-05],[49.562233,-3.4029E-05],[49.565603,-3.1967E-05],[49.568972,-3.3513E-05],[49.572341,-2.9389E-05],[49.575711,-3.042E-05],[49.57908,-3.2482E-05],[49.582449,-3.042E-05],[49.585819,-2.7326E-05],[49.589188,-2.8357E-05],[49.592557,-3.1451E-05],[49.595927,-2.7842E-05],[49.599296,-3.3513E-05],[49.602665,-3.7122E-05],[49.606035,-2.8873E-05],[49.609404,-2.9389E-05],[49.612773,-3.1967E-05],[49.616143,-2.8873E-05],[49.619512,-3.0935E-05],[49.622881,-3.0935E-05],[49.626251,-2.6295E-05],[49.62962,-2.6811E-05]]}
-{"quant":[49.845,-2.9156E-05],"mems":[[49.747547,-2.7842E-05],[49.750916,-2.7842E-05],[49.754285,-2.5779E-05],[49.757655,-2.9904E-05],[49.761024,-3.3513E-05],[49.764393,-3.4544E-05],[49.767763,-2.8873E-05],[49.771132,-2.9904E-05],[49.774501,-3.3513E-05],[49.777871,-3.1967E-05],[49.78124,-3.4029E-05],[49.784609,-2.8357E-05],[49.787979,-2.6295E-05],[49.791348,-2.6295E-05],[49.794717,-2.8357E-05],[49.798087,-3.042E-05],[49.801456,-2.7842E-05],[49.804825,-3.0935E-05],[49.808195,-2.4748E-05],[49.811564,-2.2686E-05],[49.814933,-2.9389E-05],[49.818303,-2.9904E-05],[49.821672,-2.8873E-05],[49.825041,-2.6811E-05],[49.828411,-2.7842E-05],[49.83178,-3.4029E-05],[49.835149,-2.8873E-05],[49.838519,-2.7842E-05],[49.841888,-3.2998E-05],[49.845257,-2.9389E-05],[49.848627,-2.9389E-05],[49.851996,-2.7842E-05],[49.855365,-2.8873E-05],[49.858735,-2.7842E-05],[49.862104,-2.6811E-05],[49.865473,-2.9904E-05],[49.868843,-2.7842E-05],[49.872212,-2.9389E-05],[49.875581,-3.2482E-05],[49.878951,-3.042E-05],[49.88232,-2.7326E-05],[49.885689,-2.7842E-05],[49.889059,-2.7326E-05],[49.892428,-2.8357E-05],[49.895797,-3.042E-05],[49.899167,-3.0935E-05],[49.902536,-3.1451E-05],[49.905905,-2.9904E-05],[49.909275,-2.7842E-05],[49.912644,-2.6295E-05],[49.916013,-3.042E-05],[49.919383,-3.0935E-05],[49.922752,-2.6295E-05],[49.926121,-2.7326E-05],[49.929491,-3.0935E-05],[49.93286,-3.2482E-05],[49.936229,-2.4233E-05],[49.939599,-3.0935E-05],[49.942968,-3.6091E-05],[49.946337,-2.6295E-05],[49.949707,-2.6811E-05],[49.953076,-2.8873E-05],[49.956445,-3.1451E-05],[49.959815,-3.2482E-05],[49.963184,-3.0935E-05],[49.966553,-2.9389E-05],[49.969923,-2.6295E-05],[49.973292,-2.5779E-05],[49.976661,-2.7326E-05],[49.980031,-2.9389E-05],[49.9834,-2.8873E-05],[49.986769,-2.8873E-05],[49.990139,-2.9389E-05],[49.993508,-3.2998E-05],[49.996877,-3.1967E-05],[50.000247,-3.2482E-05],[50.003616,-3.2998E-05],[50.006985,-2.6811E-05],[50.010355,-3.0935E-05],[50.013724,-3.2482E-05],[50.017093,-2.7842E-05],[50.020463,-2.7326E-05],[50.023832,-2.9904E-05],[50.027201,-3.2482E-05],[50.030571,-2.8873E-05],[50.03394,-2.8873E-05],[50.037309,-3.0935E-05],[50.040679,-2.9389E-05],[50.044048,-2.5779E-05],[50.047417,-2.5779E-05]]}
-{"quant":[50.4203,-2.9522E-05],"mems":[[50.320333,-2.5779E-05],[50.323703,-3.042E-05],[50.327072,-2.9904E-05],[50.330441,-2.5264E-05],[50.333811,-2.8357E-05],[50.33718,-3.042E-05],[50.340549,-2.8357E-05],[50.343919,-3.042E-05],[50.347288,-3.2998E-05],[50.350657,-3.3513E-05],[50.354027,-3.042E-05],[50.357396,-2.6811E-05],[50.360765,-2.6811E-05],[50.364135,-2.7842E-05],[50.367504,-2.8873E-05],[50.370873,-2.8873E-05],[50.374243,-2.6295E-05],[50.377612,-2.8873E-05],[50.380981,-3.1967E-05],[50.384351,-2.8357E-05],[50.38772,-2.7842E-05],[50.391089,-3.2998E-05],[50.394459,-3.0935E-05],[50.397828,-2.7326E-05],[50.401197,-2.8873E-05],[50.404567,-2.7842E-05],[50.407936,-2.7842E-05],[50.411305,-2.9904E-05],[50.414675,-2.9389E-05],[50.418044,-2.8873E-05],[50.421413,-2.5779E-05],[50.424783,-2.9389E-05],[50.428152,-3.5576E-05],[50.431521,-3.1967E-05],[50.434891,-2.8357E-05],[50.43826,-2.6295E-05],[50.441629,-2.9904E-05],[50.444999,-3.1451E-05],[50.448368,-2.5264E-05],[50.451737,-3.042E-05],[50.455107,-2.7842E-05],[50.458476,-2.4748E-05],[50.461845,-3.2482E-05],[50.465215,-2.7842E-05],[50.468584,-2.6811E-05],[50.471953,-3.1451E-05],[50.475323,-2.8873E-05],[50.478692,-2.9904E-05],[50.482061,-3.1451E-05],[50.485431,-3.042E-05],[50.4888,-3.4029E-05],[50.492169,-3.1967E-05],[50.495539,-2.6811E-05],[50.498908,-2.6295E-05],[50.502277,-2.8357E-05],[50.505647,-3.042E-05],[50.509016,-3.1967E-05],[50.512385,-3.0935E-05],[50.515755,-2.7326E-05],[50.519124,-2.7842E-05],[50.522493,-3.2998E-05],[50.525863,-3.2482E-05],[50.529232,-2.9904E-05],[50.532601,-2.7326E-05],[50.535971,-2.6811E-05],[50.53934,-2.5779E-05],[50.542709,-2.5264E-05],[50.546079,-3.1967E-05],[50.549448,-3.1451E-05],[50.552817,-2.8873E-05],[50.556187,-2.9389E-05],[50.559556,-2.8357E-05],[50.562925,-3.2482E-05],[50.566295,-3.1451E-05],[50.569664,-2.7842E-05],[50.573033,-2.4748E-05],[50.576403,-2.4748E-05],[50.579772,-2.7842E-05],[50.583141,-2.5264E-05],[50.586511,-2.7842E-05],[50.58988,-3.6091E-05],[50.593249,-3.2482E-05],[50.596619,-3.042E-05],[50.599988,-3.2482E-05],[50.603357,-2.8873E-05],[50.606727,-3.1967E-05],[50.610096,-3.2482E-05],[50.613465,-2.8873E-05],[50.616835,-2.7326E-05],[50.620204,-3.1451E-05],[50.623573,-3.6607E-05]]}
-{"quant":[50.8864,-3.0248E-05],"mems":[[50.788671,-3.0935E-05],[50.79204,-2.9904E-05],[50.795409,-3.0935E-05],[50.798779,-3.2482E-05],[50.802148,-2.9389E-05],[50.805517,-2.7842E-05],[50.808887,-3.1451E-05],[50.812256,-2.9389E-05],[50.815625,-3.042E-05],[50.818995,-3.0935E-05],[50.822364,-3.1451E-05],[50.825733,-3.2998E-05],[50.829103,-2.6811E-05],[50.832472,-3.1967E-05],[50.835841,-3.7122E-05],[50.839211,-3.1967E-05],[50.84258,-3.2482E-05],[50.845949,-2.9389E-05],[50.849319,-2.5779E-05],[50.852688,-3.042E-05],[50.856057,-3.1967E-05],[50.859427,-2.8873E-05],[50.862796,-3.1967E-05],[50.866165,-3.2482E-05],[50.869535,-3.1451E-05],[50.872904,-3.1451E-05],[50.876273,-2.9389E-05],[50.879643,-2.9904E-05],[50.883012,-3.042E-05],[50.886381,-2.8873E-05],[50.889751,-2.8873E-05],[50.89312,-3.4544E-05],[50.896489,-3.1451E-05],[50.899859,-2.6295E-05],[50.903228,-2.9904E-05],[50.906597,-2.9389E-05],[50.909967,-2.8873E-05],[50.913336,-3.0935E-05],[50.916705,-3.1967E-05],[50.920075,-3.2998E-05],[50.923444,-3.1967E-05],[50.926813,-2.8873E-05],[50.930183,-3.0935E-05],[50.933552,-3.506E-05],[50.936921,-2.7842E-05],[50.940291,-2.6295E-05],[50.94366,-2.9389E-05],[50.947029,-2.4748E-05],[50.950399,-2.9389E-05],[50.953768,-3.042E-05],[50.957137,-3.1967E-05],[50.960507,-3.4029E-05],[50.963876,-2.5779E-05],[50.967245,-3.042E-05],[50.970615,-3.2482E-05],[50.973984,-2.9904E-05],[50.977353,-3.2998E-05],[50.980723,-2.9389E-05],[50.984092,-3.042E-05],[50.987461,-2.9904E-05],[50.990831,-3.1451E-05],[50.9942,-3.3513E-05],[50.997569,-3.3513E-05],[51.000939,-3.0935E-05],[51.004308,-2.8873E-05],[51.007677,-3.2482E-05],[51.011047,-2.8873E-05],[51.014416,-3.0935E-05],[51.017785,-3.3513E-05],[51.021155,-2.8873E-05],[51.024524,-2.8357E-05],[51.027893,-2.9389E-05],[51.031263,-3.1967E-05],[51.034632,-2.9389E-05],[51.038001,-3.3513E-05],[51.041371,-3.8669E-05],[51.04474,-3.3513E-05],[51.048109,-2.9389E-05],[51.051479,-3.1451E-05],[51.054848,-3.6607E-05],[51.058217,-3.3513E-05],[51.061587,-3.2998E-05],[51.064956,-2.9904E-05],[51.068325,-2.8873E-05],[51.071695,-2.6295E-05],[51.075064,-2.217E-05],[51.078433,-2.9389E-05],[51.081803,-2.6811E-05],[51.085172,-3.0935E-05],[51.088541,-3.8154E-05]]}
-{"quant":[51.3508,-2.9488E-05],"mems":[[51.253639,-2.6811E-05],[51.257008,-2.5779E-05],[51.260377,-2.8873E-05],[51.263747,-2.8357E-05],[51.267116,-2.6811E-05],[51.270485,-3.1967E-05],[51.273855,-2.9904E-05],[51.277224,-2.7326E-05],[51.280593,-2.7326E-05],[51.283963,-2.9904E-05],[51.287332,-3.042E-05],[51.290701,-2.8873E-05],[51.294071,-2.8873E-05],[51.29744,-2.3717E-05],[51.300809,-2.6295E-05],[51.304179,-2.9904E-05],[51.307548,-3.2482E-05],[51.310917,-3.042E-05],[51.314287,-2.9389E-05],[51.317656,-2.8357E-05],[51.321025,-2.4233E-05],[51.324395,-2.9904E-05],[51.327764,-3.1967E-05],[51.331133,-3.2998E-05],[51.334503,-2.8357E-05],[51.337872,-2.1139E-05],[51.341241,-2.5779E-05],[51.344611,-3.0935E-05],[51.34798,-2.9389E-05],[51.351349,-2.4748E-05],[51.354719,-2.3717E-05],[51.358088,-2.6811E-05],[51.361457,-3.2998E-05],[51.364827,-3.2482E-05],[51.368196,-2.7326E-05],[51.371565,-2.7326E-05],[51.374935,-2.7326E-05],[51.378304,-3.042E-05],[51.381673,-3.506E-05],[51.385043,-3.2998E-05],[51.388412,-2.8357E-05],[51.391781,-2.9904E-05],[51.395151,-2.9389E-05],[51.39852,-2.6811E-05],[51.401889,-2.8873E-05],[51.405259,-3.1451E-05],[51.408628,-2.9904E-05],[51.411997,-2.7326E-05],[51.415367,-2.8873E-05],[51.418736,-3.1451E-05],[51.422105,-3.2482E-05],[51.425475,-2.8357E-05],[51.428844,-2.8873E-05],[51.432213,-3.1451E-05],[51.435583,-2.9904E-05],[51.438952,-2.7326E-05],[51.442321,-2.9389E-05],[51.445691,-3.2998E-05],[51.44906,-2.7842E-05],[51.452429,-3.1967E-05],[51.455799,-3.0935E-05],[51.459168,-2.4233E-05],[51.462537,-3.2482E-05],[51.465907,-3.2482E-05],[51.469276,-2.7326E-05],[51.472645,-2.8873E-05],[51.476015,-2.8873E-05],[51.479384,-2.8357E-05],[51.482753,-3.0935E-05],[51.486123,-3.2998E-05],[51.489492,-3.1967E-05],[51.492861,-3.042E-05],[51.496231,-2.7842E-05],[51.4996,-2.8873E-05],[51.502969,-3.2482E-05],[51.506339,-2.8357E-05],[51.509708,-2.9904E-05],[51.513077,-3.1967E-05],[51.516447,-3.042E-05],[51.519816,-3.5576E-05],[51.523185,-3.5576E-05],[51.526555,-3.5576E-05],[51.529924,-3.2998E-05],[51.533293,-2.9389E-05],[51.536663,-2.6811E-05],[51.540032,-2.7326E-05],[51.543401,-3.1967E-05],[51.546771,-2.7842E-05],[51.55014,-2.8357E-05],[51.553509,-2.8873E-05]]}
-{"quant":[51.8028,0.027154],"mems":[[51.725345,-2.7326E-05],[51.728715,-2.3717E-05],[51.732084,-2.4748E-05],[51.735453,-3.042E-05],[51.738823,-3.4544E-05],[51.742192,-3.1967E-05],[51.745561,-2.8873E-05],[51.748931,-2.7326E-05],[51.7523,-2.8873E-05],[51.755669,-3.1967E-05],[51.759039,-3.0935E-05],[51.762408,-3.1451E-05],[51.765777,-2.9904E-05],[51.769147,-2.8357E-05],[51.772516,-2.7842E-05],[51.775885,-3.042E-05],[51.779255,-3.4544E-05],[51.782624,-3.2998E-05],[51.785993,-2.7842E-05],[51.789363,-2.3717E-05],[51.792732,-2.8357E-05],[51.796101,-3.2998E-05],[51.799471,-2.7842E-05],[51.80284,-2.9389E-05],[51.806209,-3.042E-05],[51.809579,-2.5779E-05],[51.812948,-3.1451E-05],[51.816317,-2.8873E-05],[51.819687,-2.3202E-05],[51.823056,-3.0935E-05],[51.826425,-2.8357E-05],[51.829795,-2.8873E-05],[51.833164,-3.506E-05],[51.836533,-2.9389E-05],[51.839903,-2.8357E-05],[51.843272,-3.1451E-05],[51.846641,-3.2482E-05],[51.850011,-3.1451E-05],[51.85338,-3.042E-05],[51.856749,-3.2482E-05],[51.860119,-3.5576E-05],[51.863488,-3.042E-05],[51.866857,-3.042E-05],[51.870227,-3.2998E-05],[51.873596,-3.1451E-05],[51.876965,-3.4544E-05],[51.880335,-2.7326E-05],[51.883704,-2.8873E-05],[51.887073,-3.2998E-05],[51.890443,-2.7326E-05],[51.893812,-2.9389E-05],[51.897181,-3.042E-05],[51.900551,-3.0935E-05],[51.90392,-2.9389E-05],[51.907289,-3.042E-05],[51.910659,-3.2482E-05],[51.914028,-3.0935E-05],[51.917397,-2.7842E-05],[51.920767,-2.9389E-05],[51.924136,-3.3513E-05],[51.927505,-3.042E-05],[51.930875,-3.1451E-05],[51.934244,-3.0935E-05],[51.937613,-3.0935E-05],[51.940983,-3.3513E-05],[51.944352,-3.2482E-05],[51.947721,-2.9904E-05],[51.951091,-2.4748E-05],[51.95446,-2.4748E-05],[51.957829,-2.8357E-05],[51.961199,-2.9904E-05],[51.964568,-3.0935E-05],[51.967937,-3.042E-05],[51.971307,-2.6811E-05],[51.974676,-3.1451E-05],[51.978045,-2.9904E-05],[51.981415,-2.3202E-05],[51.984784,-2.9904E-05],[51.988153,-2.8357E-05],[51.991523,-2.9904E-05],[51.994892,-3.4544E-05],[51.998261,-3.042E-05],[52.001631,-2.6811E-05],[52.005,-2.4748E-05],[52.008437,-2.7842E-05],[52.011875,-3.042E-05],[52.015312,-2.9389E-05]]}
-{"quant":[52.2655,-2.9629E-05],"mems":[[52.166555,-2.8357E-05],[52.169992,-3.042E-05],[52.173429,-3.1451E-05],[52.176867,-3.2482E-05],[52.180304,-2.7842E-05],[52.183741,-3.1451E-05],[52.187179,-3.4029E-05],[52.190616,-2.8357E-05],[52.194053,-3.042E-05],[52.197491,-3.2998E-05],[52.200928,-3.1451E-05],[52.204365,-2.6811E-05],[52.207803,-2.9904E-05],[52.21124,-3.5576E-05],[52.214677,-3.2482E-05],[52.218115,-3.4029E-05],[52.221552,-3.4544E-05],[52.224989,-3.042E-05],[52.228427,-2.9389E-05],[52.231864,-2.8873E-05],[52.235301,-2.5779E-05],[52.238739,-2.7326E-05],[52.242176,-3.1451E-05],[52.245613,-2.8873E-05],[52.249051,-2.9389E-05],[52.252488,-2.9389E-05],[52.255925,-2.8873E-05],[52.259363,-2.7842E-05],[52.2628,-2.5779E-05],[52.266237,-2.7326E-05],[52.269675,-2.7842E-05],[52.273112,-2.9904E-05],[52.276549,-3.2482E-05],[52.279987,-3.1451E-05],[52.283424,-2.6811E-05],[52.286861,-2.9389E-05],[52.290299,-3.3513E-05],[52.293736,-3.1451E-05],[52.297173,-3.0935E-05],[52.300611,-3.042E-05],[52.304048,-3.1451E-05],[52.307485,-2.8873E-05],[52.310923,-2.8873E-05],[52.31436,-2.9389E-05],[52.317797,-2.7326E-05],[52.321235,-2.9904E-05],[52.324672,-2.8873E-05],[52.328109,-2.8873E-05],[52.331547,-3.1967E-05],[52.334984,-3.042E-05],[52.338421,-2.4748E-05],[52.341859,-2.4748E-05],[52.345296,-2.9389E-05],[52.348733,-3.042E-05],[52.352171,-3.4029E-05],[52.355608,-3.1967E-05],[52.359045,-3.0935E-05],[52.362483,-3.042E-05],[52.36592,-2.4748E-05],[52.369357,-3.042E-05],[52.372795,-3.042E-05],[52.376232,-3.1451E-05],[52.379669,-3.4544E-05],[52.383107,-2.7326E-05],[52.386544,-2.8873E-05],[52.389981,-3.1967E-05],[52.393419,-2.9389E-05],[52.396856,-2.4748E-05],[52.400293,-2.4748E-05],[52.403731,-2.7326E-05],[52.407168,-2.5779E-05],[52.410605,-2.8357E-05],[52.414043,-2.8873E-05],[52.41748,-2.6811E-05],[52.420917,-2.6811E-05],[52.424355,-2.7326E-05],[52.427792,-3.042E-05],[52.431229,-3.6091E-05],[52.434667,-3.7122E-05],[52.438104,-2.7326E-05],[52.441541,-2.6811E-05],[52.444979,-2.8357E-05],[52.448416,-2.5264E-05],[52.451853,-3.042E-05],[52.455291,-3.2482E-05],[52.458728,-3.042E-05],[52.462165,-2.8873E-05],[52.465603,-2.7842E-05]]}
-{"quant":[52.8145,-3.1176E-05],"mems":[[52.716528,-2.5779E-05],[52.719965,-3.042E-05],[52.723403,-3.2482E-05],[52.72684,-3.2482E-05],[52.730277,-3.2482E-05],[52.733715,-3.1451E-05],[52.737152,-3.0935E-05],[52.740589,-3.042E-05],[52.744027,-2.9389E-05],[52.747464,-2.6295E-05],[52.750901,-2.7326E-05],[52.754339,-3.2998E-05],[52.757776,-2.9389E-05],[52.761213,-2.6295E-05],[52.764651,-3.0935E-05],[52.768088,-3.042E-05],[52.771525,-2.7842E-05],[52.774963,-2.9904E-05],[52.7784,-3.4029E-05],[52.781837,-3.2482E-05],[52.785275,-2.9389E-05],[52.788712,-3.2998E-05],[52.792149,-3.1967E-05],[52.795587,-2.8357E-05],[52.799024,-3.1451E-05],[52.802461,-2.7842E-05],[52.805899,-2.9904E-05],[52.809336,-3.6091E-05],[52.812773,-2.8357E-05],[52.816211,-3.2482E-05],[52.819648,-3.3513E-05],[52.823085,-2.7326E-05],[52.826523,-3.4029E-05],[52.82996,-3.6607E-05],[52.833397,-3.6091E-05],[52.836835,-3.506E-05],[52.840272,-3.042E-05],[52.843709,-2.8873E-05],[52.847147,-2.8357E-05],[52.850584,-3.0935E-05],[52.854021,-3.3513E-05],[52.857459,-2.9904E-05],[52.860896,-2.6295E-05],[52.864333,-3.042E-05],[52.867771,-3.1451E-05],[52.871208,-3.1451E-05],[52.874645,-3.2998E-05],[52.878083,-2.9389E-05],[52.88152,-2.6811E-05],[52.884957,-3.1451E-05],[52.888395,-3.4029E-05],[52.891832,-2.8873E-05],[52.895269,-2.7842E-05],[52.898707,-3.1967E-05],[52.902144,-3.1451E-05],[52.905581,-3.2482E-05],[52.909019,-3.0935E-05],[52.912456,-2.9904E-05],[52.915893,-3.042E-05],[52.919331,-2.6811E-05],[52.922768,-2.7842E-05],[52.926205,-2.7842E-05],[52.929643,-2.5779E-05],[52.93308,-3.1967E-05],[52.936517,-3.506E-05],[52.939955,-2.7842E-05],[52.943392,-2.6295E-05],[52.946829,-2.5779E-05],[52.950267,-2.5264E-05],[52.953704,-3.042E-05],[52.957141,-2.7326E-05],[52.960579,-2.5779E-05],[52.964016,-3.1967E-05],[52.967453,-3.506E-05],[52.970891,-3.1967E-05],[52.974328,-2.7842E-05],[52.977765,-2.8873E-05],[52.981203,-3.1451E-05],[52.98464,-2.9389E-05],[52.988077,-2.5779E-05],[52.991515,-2.9904E-05],[52.994952,-3.1967E-05],[52.998389,-3.0935E-05],[53.001827,-2.7842E-05],[53.005264,-2.9904E-05],[53.008701,-3.4029E-05],[53.012139,-2.8873E-05],[53.015576,-3.3513E-05]]}
-{"quant":[53.2924,-2.9784E-05],"mems":[[53.194317,-3.1967E-05],[53.197755,-3.042E-05],[53.201192,-2.7842E-05],[53.204629,-2.9389E-05],[53.208067,-3.0935E-05],[53.211504,-3.1451E-05],[53.214941,-3.3513E-05],[53.218379,-3.1451E-05],[53.221816,-2.9904E-05],[53.225253,-2.8873E-05],[53.228691,-2.8357E-05],[53.232128,-2.9389E-05],[53.235565,-2.7842E-05],[53.239003,-3.1967E-05],[53.24244,-3.1967E-05],[53.245877,-2.9389E-05],[53.249315,-3.2482E-05],[53.252752,-3.3513E-05],[53.256189,-2.9904E-05],[53.259627,-2.6811E-05],[53.263064,-3.042E-05],[53.266501,-3.4544E-05],[53.269939,-3.2998E-05],[53.273376,-3.1451E-05],[53.276813,-3.3513E-05],[53.280251,-2.9389E-05],[53.283688,-2.5779E-05],[53.287125,-2.8357E-05],[53.290563,-2.5264E-05],[53.294,-2.9389E-05],[53.297437,-2.9389E-05],[53.300875,-2.5264E-05],[53.304312,-3.0935E-05],[53.307749,-3.1451E-05],[53.311187,-2.9904E-05],[53.314624,-3.0935E-05],[53.318061,-2.7842E-05],[53.321499,-2.8873E-05],[53.324936,-2.8873E-05],[53.328373,-2.7326E-05],[53.331811,-3.0935E-05],[53.335248,-3.2482E-05],[53.338685,-2.8873E-05],[53.342123,-2.6811E-05],[53.34556,-3.2998E-05],[53.348997,-3.2998E-05],[53.352435,-3.042E-05],[53.355872,-3.506E-05],[53.359309,-2.9904E-05],[53.362747,-2.4233E-05],[53.366184,-2.9389E-05],[53.369621,-2.9389E-05],[53.373059,-2.5779E-05],[53.376496,-2.8357E-05],[53.379933,-2.7842E-05],[53.383371,-2.9389E-05],[53.386808,-3.4544E-05],[53.390245,-3.4544E-05],[53.393683,-2.9389E-05],[53.39712,-2.5264E-05],[53.400557,-2.7842E-05],[53.403995,-3.0935E-05],[53.407432,-3.1967E-05],[53.410869,-3.2998E-05],[53.414307,-3.4029E-05],[53.417744,-3.1451E-05],[53.421181,-2.9389E-05],[53.424619,-3.042E-05],[53.428056,-3.1451E-05],[53.431493,-3.0935E-05],[53.434931,-2.8873E-05],[53.438368,-2.6811E-05],[53.441805,-2.8873E-05],[53.445243,-2.8357E-05],[53.44868,-2.9389E-05],[53.452117,-3.1967E-05],[53.455555,-2.6295E-05],[53.458992,-2.5779E-05],[53.462429,-2.9389E-05],[53.465867,-3.2482E-05],[53.469304,-3.1967E-05],[53.472741,-2.7326E-05],[53.476179,-2.8873E-05],[53.479616,-2.6811E-05],[53.483053,-2.9389E-05],[53.486491,-3.1451E-05],[53.489928,-2.8873E-05],[53.493365,-3.5576E-05]]}
-{"quant":[53.7969,-2.8873E-05],"mems":[[53.699605,-2.7326E-05],[53.703043,-3.1967E-05],[53.70648,-3.4029E-05],[53.709917,-2.9389E-05],[53.713355,-2.7842E-05],[53.716792,-2.9389E-05],[53.720229,-2.5779E-05],[53.723667,-2.8873E-05],[53.727104,-3.3513E-05],[53.730541,-2.9904E-05],[53.733979,-2.8873E-05],[53.737416,-3.2482E-05],[53.740853,-3.2482E-05],[53.744291,-2.7842E-05],[53.747728,-2.8873E-05],[53.751165,-3.4544E-05],[53.754603,-3.1967E-05],[53.75804,-2.8873E-05],[53.761477,-3.2482E-05],[53.764915,-3.1967E-05],[53.768352,-2.8357E-05],[53.771789,-2.8357E-05],[53.775227,-2.7326E-05],[53.778664,-2.6811E-05],[53.782101,-2.9389E-05],[53.785539,-2.9904E-05],[53.788976,-2.7842E-05],[53.792413,-2.8357E-05],[53.795851,-3.1967E-05],[53.799288,-3.1451E-05],[53.802725,-2.9904E-05],[53.806163,-2.7842E-05],[53.8096,-2.6295E-05],[53.813037,-3.2482E-05],[53.816475,-3.1451E-05],[53.819912,-2.6295E-05],[53.823349,-2.7842E-05],[53.826787,-2.7326E-05],[53.830224,-2.7842E-05],[53.833661,-3.3513E-05],[53.837099,-3.3513E-05],[53.840536,-2.9904E-05],[53.843973,-2.6295E-05],[53.847411,-2.3202E-05],[53.850848,-2.9389E-05],[53.854285,-2.9389E-05],[53.857723,-2.4233E-05],[53.86116,-2.8873E-05],[53.864597,-3.1967E-05],[53.868035,-2.9389E-05],[53.871472,-2.7326E-05],[53.874909,-2.8357E-05],[53.878347,-2.9389E-05],[53.881784,-2.5264E-05],[53.885221,-2.2686E-05],[53.888659,-3.042E-05],[53.892096,-3.1967E-05],[53.895533,-2.8873E-05],[53.898971,-3.3513E-05],[53.902408,-2.8873E-05],[53.905845,-2.3717E-05],[53.909283,-3.1451E-05],[53.91272,-3.2998E-05],[53.916157,-2.8873E-05],[53.919595,-3.1967E-05],[53.923032,-2.8357E-05],[53.926469,-2.6295E-05],[53.929907,-3.0935E-05],[53.933344,-2.8873E-05],[53.936781,-2.7842E-05],[53.940219,-3.2998E-05],[53.943656,-3.2482E-05],[53.947093,-3.0935E-05],[53.950531,-3.4029E-05],[53.953968,-3.0935E-05],[53.957405,-2.8873E-05],[53.960843,-3.042E-05],[53.96428,-3.0935E-05],[53.967717,-3.4029E-05],[53.971155,-3.0935E-05],[53.974592,-2.8357E-05],[53.978029,-2.8357E-05],[53.981467,-2.7326E-05],[53.984904,-2.9904E-05],[53.988341,-3.0935E-05],[53.991779,-2.5779E-05],[53.995216,-2.2686E-05],[53.998653,-2.6811E-05]]}
-{"quant":[54.2785,-2.9285E-05],"mems":[[54.180832,-2.8357E-05],[54.184269,-3.1451E-05],[54.187707,-3.3513E-05],[54.191144,-3.2482E-05],[54.194581,-3.2998E-05],[54.198019,-3.2482E-05],[54.201456,-3.2482E-05],[54.204893,-3.3513E-05],[54.208331,-3.2482E-05],[54.211768,-3.042E-05],[54.215205,-3.4544E-05],[54.218643,-3.2998E-05],[54.22208,-2.8357E-05],[54.225517,-3.2482E-05],[54.228955,-3.4029E-05],[54.232392,-3.042E-05],[54.235829,-3.042E-05],[54.239267,-2.9904E-05],[54.242704,-2.8357E-05],[54.246141,-2.7842E-05],[54.249579,-2.7842E-05],[54.253016,-2.8357E-05],[54.256453,-2.8873E-05],[54.259891,-2.9904E-05],[54.263328,-2.9904E-05],[54.266765,-2.9389E-05],[54.270203,-2.7842E-05],[54.27364,-2.8357E-05],[54.277077,-3.1967E-05],[54.280515,-2.8873E-05],[54.283952,-2.8357E-05],[54.287389,-3.042E-05],[54.290827,-3.1451E-05],[54.294264,-2.9904E-05],[54.297701,-2.8357E-05],[54.301139,-2.8357E-05],[54.304576,-2.6811E-05],[54.308013,-3.0935E-05],[54.311451,-2.9904E-05],[54.314888,-2.4748E-05],[54.318325,-2.7842E-05],[54.321763,-2.6295E-05],[54.3252,-2.4233E-05],[54.328637,-2.7842E-05],[54.332075,-3.2482E-05],[54.335512,-3.506E-05],[54.338949,-2.9389E-05],[54.342387,-2.4748E-05],[54.345824,-2.9389E-05],[54.349261,-3.2998E-05],[54.352699,-3.1967E-05],[54.356136,-3.1451E-05],[54.359573,-2.8873E-05],[54.363011,-2.9389E-05],[54.366448,-3.1451E-05],[54.369885,-2.9389E-05],[54.373323,-2.9904E-05],[54.37676,-3.042E-05],[54.380197,-2.7326E-05],[54.383635,-3.1451E-05],[54.387072,-3.2482E-05],[54.390509,-2.9389E-05],[54.393947,-3.0935E-05],[54.397384,-2.9389E-05],[54.400821,-3.1451E-05],[54.404259,-2.9389E-05],[54.407696,-2.8357E-05],[54.411133,-3.506E-05],[54.414571,-3.1967E-05],[54.418008,-2.6295E-05],[54.421445,-2.3202E-05],[54.424883,-2.7842E-05],[54.42832,-3.4544E-05],[54.431757,-3.0935E-05],[54.435195,-3.042E-05],[54.438632,-2.9389E-05],[54.442069,-2.5779E-05],[54.445507,-2.9904E-05],[54.448944,-3.3513E-05],[54.452381,-3.2482E-05],[54.455819,-2.7326E-05],[54.459256,-3.1451E-05],[54.462693,-3.2482E-05],[54.466131,-2.9389E-05],[54.469568,-3.3513E-05],[54.473005,-3.3513E-05],[54.476443,-3.2998E-05],[54.47988,-3.2482E-05]]}
-{"quant":[54.7736,-3.0196E-05],"mems":[[54.675808,-3.2998E-05],[54.679245,-2.7842E-05],[54.682683,-2.5779E-05],[54.68612,-2.8357E-05],[54.689557,-3.042E-05],[54.692995,-2.8873E-05],[54.696432,-2.6295E-05],[54.699869,-2.4748E-05],[54.703307,-2.9904E-05],[54.706744,-3.042E-05],[54.710181,-3.0935E-05],[54.713619,-3.042E-05],[54.717056,-2.8357E-05],[54.720493,-3.042E-05],[54.723931,-2.9904E-05],[54.727368,-3.2998E-05],[54.730805,-3.2482E-05],[54.734243,-3.1451E-05],[54.73768,-3.1451E-05],[54.741117,-2.7326E-05],[54.744555,-3.2482E-05],[54.747992,-3.6091E-05],[54.751429,-3.6607E-05],[54.754867,-3.9185E-05],[54.758304,-3.0935E-05],[54.761741,-2.7842E-05],[54.765179,-3.1451E-05],[54.768616,-3.4029E-05],[54.772053,-3.6091E-05],[54.775491,-3.1967E-05],[54.778928,-2.9904E-05],[54.782365,-2.8873E-05],[54.785803,-3.1451E-05],[54.78924,-3.4544E-05],[54.792677,-2.9389E-05],[54.796115,-2.6811E-05],[54.799552,-2.8873E-05],[54.802989,-3.0935E-05],[54.806427,-3.0935E-05],[54.809864,-3.1967E-05],[54.813301,-2.9389E-05],[54.816739,-2.8357E-05],[54.820176,-3.0935E-05],[54.823613,-2.8873E-05],[54.827051,-2.7326E-05],[54.830488,-2.9904E-05],[54.833925,-3.1967E-05],[54.837363,-2.6811E-05],[54.8408,-2.7842E-05],[54.844237,-3.3513E-05],[54.847675,-3.3513E-05],[54.851112,-3.2482E-05],[54.854549,-3.2482E-05],[54.857987,-2.8357E-05],[54.861424,-2.6811E-05],[54.864861,-3.042E-05],[54.868299,-2.9389E-05],[54.871736,-3.042E-05],[54.875173,-3.1451E-05],[54.878611,-2.7842E-05],[54.882048,-2.9904E-05],[54.885485,-3.042E-05],[54.888923,-3.0935E-05],[54.89236,-3.3513E-05],[54.895797,-2.9389E-05],[54.899235,-2.7842E-05],[54.902672,-3.042E-05],[54.906109,-3.2998E-05],[54.909547,-3.1967E-05],[54.912984,-3.0935E-05],[54.916421,-3.506E-05],[54.919859,-2.9389E-05],[54.923296,-2.7842E-05],[54.926733,-3.5576E-05],[54.930171,-3.3513E-05],[54.933608,-2.9389E-05],[54.937045,-2.7842E-05],[54.940483,-2.6811E-05],[54.94392,-2.8873E-05],[54.947357,-2.9904E-05],[54.950795,-3.1451E-05],[54.954232,-3.3513E-05],[54.957669,-3.3513E-05],[54.961107,-2.7842E-05],[54.964544,-2.6811E-05],[54.967981,-2.7842E-05],[54.971419,-2.6811E-05],[54.974856,-2.6295E-05]]}
-{"quant":[55.4481,-3.1881E-05],"mems":[[55.349525,-2.9389E-05],[55.352963,-2.9904E-05],[55.3564,-3.0935E-05],[55.359837,-2.9389E-05],[55.363275,-2.7842E-05],[55.366712,-3.2482E-05],[55.370149,-3.2482E-05],[55.373587,-2.6811E-05],[55.377024,-3.0935E-05],[55.380461,-3.2482E-05],[55.383899,-2.9904E-05],[55.387336,-3.2482E-05],[55.390773,-3.1451E-05],[55.394211,-2.7842E-05],[55.397648,-2.5779E-05],[55.401085,-3.0935E-05],[55.404523,-3.2998E-05],[55.40796,-2.8873E-05],[55.411397,-2.7326E-05],[55.414835,-2.9389E-05],[55.418272,-3.1967E-05],[55.421709,-2.6811E-05],[55.425147,-2.8873E-05],[55.428584,-3.042E-05],[55.432021,-2.9904E-05],[55.435459,-3.4544E-05],[55.438896,-3.1967E-05],[55.442333,-3.042E-05],[55.445771,-3.7638E-05],[55.449208,-3.6607E-05],[55.452645,-3.2998E-05],[55.456083,-3.8669E-05],[55.45952,-3.4544E-05],[55.462957,-3.3513E-05],[55.466395,-3.6607E-05],[55.469832,-3.1967E-05],[55.473269,-3.0935E-05],[55.476707,-3.1967E-05],[55.480144,-2.9389E-05],[55.483581,-2.9904E-05],[55.487019,-3.4029E-05],[55.490456,-3.1451E-05],[55.493893,-3.1451E-05],[55.497331,-3.4544E-05],[55.500768,-3.1967E-05],[55.504205,-3.3513E-05],[55.507643,-3.2482E-05],[55.51108,-2.9389E-05],[55.514517,-3.042E-05],[55.517955,-2.6811E-05],[55.521392,-2.8357E-05],[55.524829,-3.1967E-05],[55.528267,-3.042E-05],[55.531704,-3.0935E-05],[55.535141,-3.0935E-05],[55.538579,-2.9389E-05],[55.542016,-3.1967E-05],[55.545453,-3.2482E-05],[55.548891,-2.6811E-05],[55.552328,-2.7842E-05],[55.555765,-2.8873E-05],[55.559203,-2.6295E-05],[55.56264,-2.8357E-05],[55.566077,-3.1967E-05],[55.569515,-3.3513E-05],[55.572952,-2.9904E-05],[55.576389,-2.9904E-05],[55.579827,-3.1967E-05],[55.583264,-3.1451E-05],[55.586701,-3.1451E-05],[55.590139,-3.2998E-05],[55.593576,-3.4544E-05],[55.597013,-3.4029E-05],[55.600451,-3.0935E-05],[55.603888,-3.042E-05],[55.607325,-3.0935E-05],[55.610763,-3.0935E-05],[55.6142,-3.042E-05],[55.617637,-2.6811E-05],[55.621075,-2.7842E-05],[55.624512,-3.042E-05],[55.627949,-2.8873E-05],[55.631387,-2.9904E-05],[55.634824,-3.2482E-05],[55.638261,-2.9389E-05],[55.641699,-2.6295E-05],[55.645136,-3.1451E-05],[55.648573,-3.5576E-05]]}
-{"quant":[55.9461,-2.9423E-05],"mems":[[55.847939,-3.2482E-05],[55.851376,-3.2998E-05],[55.854813,-2.7842E-05],[55.858251,-2.7326E-05],[55.861688,-3.1451E-05],[55.865125,-2.6811E-05],[55.868563,-3.3513E-05],[55.872,-3.6607E-05],[55.875437,-2.6295E-05],[55.878875,-2.7326E-05],[55.882312,-3.5576E-05],[55.885749,-3.4544E-05],[55.889187,-3.042E-05],[55.892624,-3.0935E-05],[55.896061,-2.6295E-05],[55.899499,-2.1139E-05],[55.902936,-2.4748E-05],[55.906373,-2.9389E-05],[55.909811,-3.1967E-05],[55.913248,-3.1451E-05],[55.916685,-2.6811E-05],[55.920123,-2.6295E-05],[55.92356,-3.1967E-05],[55.926997,-3.3513E-05],[55.930435,-3.2482E-05],[55.933872,-2.7842E-05],[55.937309,-2.8357E-05],[55.940747,-3.2998E-05],[55.944184,-2.7326E-05],[55.947621,-2.8357E-05],[55.951059,-3.0935E-05],[55.954496,-2.9904E-05],[55.957933,-3.042E-05],[55.961371,-2.5264E-05],[55.964808,-2.7842E-05],[55.968245,-3.1967E-05],[55.971683,-2.8873E-05],[55.97512,-3.0935E-05],[55.978557,-2.8357E-05],[55.981995,-2.7842E-05],[55.985432,-3.042E-05],[55.988869,-2.6811E-05],[55.992307,-3.1967E-05],[55.995744,-3.4029E-05],[55.999181,-3.1451E-05],[56.002619,-3.3513E-05],[56.006056,-3.1451E-05],[56.009493,-2.9389E-05],[56.012931,-2.8357E-05],[56.016368,-2.6295E-05],[56.019805,-2.6811E-05],[56.023243,-2.8357E-05],[56.02668,-2.5264E-05],[56.030117,-2.3202E-05],[56.033555,-2.9904E-05],[56.036992,-3.1451E-05],[56.040429,-2.9904E-05],[56.043867,-3.1451E-05],[56.047304,-3.1967E-05],[56.050741,-2.8357E-05],[56.054179,-2.8873E-05],[56.057616,-3.042E-05],[56.061053,-2.9904E-05],[56.064491,-2.8357E-05],[56.067928,-2.6811E-05],[56.071365,-2.8357E-05],[56.074803,-2.8357E-05],[56.07824,-2.9904E-05],[56.081677,-2.7326E-05],[56.085115,-2.8873E-05],[56.088552,-3.1967E-05],[56.091989,-3.042E-05],[56.095427,-3.1967E-05],[56.098864,-2.8357E-05],[56.102301,-2.7326E-05],[56.105739,-2.7842E-05],[56.109176,-3.042E-05],[56.112613,-3.0935E-05],[56.116051,-2.7326E-05],[56.119488,-2.7326E-05],[56.122925,-2.7842E-05],[56.126363,-3.3513E-05],[56.1298,-2.9904E-05],[56.133237,-2.8873E-05],[56.136675,-2.9904E-05],[56.140112,-2.1139E-05],[56.143549,-2.7326E-05],[56.146987,-3.1967E-05]]}
-{"quant":[56.4332,-2.9062E-05],"mems":[[56.33604,-2.8357E-05],[56.339477,-2.6811E-05],[56.342915,-2.9904E-05],[56.346352,-2.9904E-05],[56.349789,-2.7326E-05],[56.353227,-2.6295E-05],[56.356664,-2.4233E-05],[56.360101,-2.4748E-05],[56.363539,-2.8357E-05],[56.366976,-3.2482E-05],[56.370413,-3.0935E-05],[56.373851,-3.042E-05],[56.377288,-2.7842E-05],[56.380725,-2.3717E-05],[56.384163,-3.0935E-05],[56.3876,-3.1967E-05],[56.391037,-2.8873E-05],[56.394475,-2.6811E-05],[56.397912,-2.8357E-05],[56.401349,-2.9904E-05],[56.404787,-2.8357E-05],[56.408224,-2.7842E-05],[56.411661,-2.5264E-05],[56.415099,-2.6811E-05],[56.418536,-2.9389E-05],[56.421973,-3.0935E-05],[56.425411,-2.8357E-05],[56.428848,-2.7326E-05],[56.432285,-2.9904E-05],[56.435723,-2.7842E-05],[56.43916,-2.8357E-05],[56.442597,-2.9904E-05],[56.446035,-2.6811E-05],[56.449472,-2.7842E-05],[56.452909,-3.042E-05],[56.456347,-2.5779E-05],[56.459784,-2.7326E-05],[56.463221,-3.506E-05],[56.466659,-3.0935E-05],[56.470096,-2.7842E-05],[56.473533,-3.3513E-05],[56.476971,-3.4029E-05],[56.480408,-3.2998E-05],[56.483845,-3.0935E-05],[56.487283,-2.9389E-05],[56.49072,-2.9904E-05],[56.494157,-2.8357E-05],[56.497595,-2.7326E-05],[56.501032,-2.9904E-05],[56.504469,-3.0935E-05],[56.507907,-2.4233E-05],[56.511344,-2.5264E-05],[56.514781,-2.9904E-05],[56.518219,-2.8873E-05],[56.521656,-2.8873E-05],[56.525093,-2.6811E-05],[56.528531,-2.7842E-05],[56.531968,-2.8357E-05],[56.535405,-2.6295E-05],[56.538843,-2.9389E-05],[56.54228,-3.0935E-05],[56.545717,-2.8873E-05],[56.549155,-2.9904E-05],[56.552592,-3.042E-05],[56.556029,-2.5779E-05],[56.559467,-2.8357E-05],[56.562904,-3.1451E-05],[56.566341,-3.042E-05],[56.569779,-3.4029E-05],[56.573216,-3.1967E-05],[56.576653,-2.5264E-05],[56.580091,-2.2686E-05],[56.583528,-2.7326E-05],[56.586965,-3.042E-05],[56.590403,-2.8357E-05],[56.59384,-2.9389E-05],[56.597277,-2.9904E-05],[56.600715,-2.5779E-05],[56.604152,-2.7326E-05],[56.607589,-3.042E-05],[56.611027,-3.0935E-05],[56.614464,-2.9389E-05],[56.617901,-2.5779E-05],[56.621339,-2.7842E-05],[56.624776,-2.9904E-05],[56.628213,-3.0935E-05],[56.631651,-3.042E-05],[56.635088,-3.1967E-05]]}
-{"quant":[56.9074,-2.9096E-05],"mems":[[56.810392,-3.0935E-05],[56.813829,-2.9389E-05],[56.817267,-2.9389E-05],[56.820704,-2.8873E-05],[56.824141,-3.4029E-05],[56.827579,-3.1451E-05],[56.831016,-3.0935E-05],[56.834453,-3.1451E-05],[56.837891,-3.2482E-05],[56.841328,-3.4029E-05],[56.844765,-2.8873E-05],[56.848203,-3.4029E-05],[56.85164,-3.506E-05],[56.855077,-2.9904E-05],[56.858515,-2.7842E-05],[56.861952,-2.7842E-05],[56.865389,-3.4029E-05],[56.868827,-3.1451E-05],[56.872264,-2.5779E-05],[56.875701,-2.6811E-05],[56.879139,-2.3202E-05],[56.882576,-2.7326E-05],[56.886013,-3.4029E-05],[56.889451,-3.5576E-05],[56.892888,-3.6091E-05],[56.896325,-3.042E-05],[56.899763,-3.042E-05],[56.9032,-3.4544E-05],[56.906637,-3.1967E-05],[56.910075,-2.8873E-05],[56.913512,-2.5779E-05],[56.916949,-2.5264E-05],[56.920387,-2.8357E-05],[56.923824,-2.8873E-05],[56.927261,-2.7842E-05],[56.930699,-2.5779E-05],[56.934136,-2.6811E-05],[56.937573,-2.9389E-05],[56.941011,-2.7326E-05],[56.944448,-2.6811E-05],[56.947885,-3.0935E-05],[56.951323,-3.2998E-05],[56.95476,-2.9389E-05],[56.958197,-2.8357E-05],[56.961635,-2.8873E-05],[56.965072,-3.2482E-05],[56.968509,-3.2998E-05],[56.971947,-2.7326E-05],[56.975384,-3.0935E-05],[56.978821,-2.9904E-05],[56.982259,-2.9904E-05],[56.985696,-3.2482E-05],[56.989133,-3.0935E-05],[56.992571,-2.8873E-05],[56.996008,-2.1655E-05],[56.999445,-2.7842E-05],[57.002883,-3.2998E-05],[57.00632,-2.9904E-05],[57.009757,-3.2998E-05],[57.013195,-2.9904E-05],[57.016632,-2.9389E-05],[57.020069,-2.8357E-05],[57.023507,-2.4748E-05],[57.026944,-3.042E-05],[57.030381,-3.1451E-05],[57.033819,-2.9389E-05],[57.037256,-3.0935E-05],[57.040693,-2.7326E-05],[57.044131,-3.1451E-05],[57.047568,-3.2998E-05],[57.051005,-2.8357E-05],[57.054443,-3.1451E-05],[57.05788,-3.1967E-05],[57.061317,-2.8873E-05],[57.064755,-3.042E-05],[57.068192,-3.1451E-05],[57.071629,-3.1967E-05],[57.075067,-2.9389E-05],[57.078504,-2.8357E-05],[57.081941,-2.8357E-05],[57.085379,-2.8873E-05],[57.088816,-3.042E-05],[57.092253,-3.042E-05],[57.095691,-3.0935E-05],[57.099128,-2.9904E-05],[57.102565,-3.0935E-05],[57.106003,-3.3513E-05],[57.10944,-3.2998E-05]]}
-{"quant":[57.393,-3.0781E-05],"mems":[[57.295108,-2.7326E-05],[57.298547,-3.1967E-05],[57.301985,-3.0935E-05],[57.305424,-2.8873E-05],[57.308863,-3.0935E-05],[57.312301,-3.4029E-05],[57.31574,-2.8357E-05],[57.319179,-2.5779E-05],[57.322617,-2.9904E-05],[57.326056,-3.042E-05],[57.329495,-3.3513E-05],[57.332933,-3.4544E-05],[57.336372,-2.9904E-05],[57.339811,-2.8357E-05],[57.343249,-2.7842E-05],[57.346688,-2.7842E-05],[57.350127,-3.1967E-05],[57.353565,-3.1967E-05],[57.357004,-3.042E-05],[57.360443,-2.9389E-05],[57.363881,-2.7326E-05],[57.36732,-3.4544E-05],[57.370759,-3.0935E-05],[57.374197,-2.6295E-05],[57.377636,-3.2482E-05],[57.381075,-3.2482E-05],[57.384513,-3.4544E-05],[57.387952,-3.4029E-05],[57.391391,-3.1967E-05],[57.394829,-3.1967E-05],[57.398268,-2.9389E-05],[57.401707,-3.1451E-05],[57.405145,-3.3513E-05],[57.408584,-3.0935E-05],[57.412023,-3.042E-05],[57.415461,-2.9904E-05],[57.4189,-2.8357E-05],[57.422339,-2.9389E-05],[57.425777,-2.8357E-05],[57.429216,-2.9389E-05],[57.432655,-2.9904E-05],[57.436093,-2.8357E-05],[57.439532,-2.8357E-05],[57.442971,-3.1967E-05],[57.446409,-3.5576E-05],[57.449848,-3.2482E-05],[57.453287,-3.7122E-05],[57.456725,-3.2998E-05],[57.460164,-2.6295E-05],[57.463603,-3.0935E-05],[57.467041,-2.8873E-05],[57.47048,-3.2998E-05],[57.473919,-2.8873E-05],[57.477357,-2.5779E-05],[57.480796,-3.2998E-05],[57.484235,-3.0935E-05],[57.487673,-3.1451E-05],[57.491112,-3.1967E-05],[57.494551,-3.2482E-05],[57.497989,-3.2482E-05],[57.501428,-2.6295E-05],[57.504867,-2.8357E-05],[57.508305,-3.4029E-05],[57.511744,-3.1451E-05],[57.515183,-3.1451E-05],[57.518621,-3.042E-05],[57.52206,-2.6811E-05],[57.525499,-3.0935E-05],[57.528937,-3.3513E-05],[57.532376,-2.9389E-05],[57.535815,-2.7326E-05],[57.539253,-2.3717E-05],[57.542692,-2.7842E-05],[57.546131,-3.4544E-05],[57.549569,-3.2482E-05],[57.553008,-2.9904E-05],[57.556447,-2.7326E-05],[57.559885,-2.9389E-05],[57.563324,-3.2998E-05],[57.566763,-3.4544E-05],[57.570201,-2.9904E-05],[57.57364,-2.8357E-05],[57.577079,-3.042E-05],[57.580517,-2.6295E-05],[57.583956,-3.2998E-05],[57.587395,-3.3513E-05],[57.590833,-2.7326E-05],[57.594272,-2.7842E-05]]}
-{"quant":[58.02,-3.0403E-05],"mems":[[57.920945,-3.1967E-05],[57.924384,-2.9904E-05],[57.927823,-3.4029E-05],[57.931261,-2.9904E-05],[57.9347,-2.4233E-05],[57.938139,-2.6811E-05],[57.941577,-3.042E-05],[57.945016,-3.0935E-05],[57.948455,-3.1967E-05],[57.951893,-3.506E-05],[57.955332,-2.9389E-05],[57.958771,-3.0935E-05],[57.962209,-3.4029E-05],[57.965648,-2.8873E-05],[57.969087,-2.9904E-05],[57.972525,-3.1967E-05],[57.975964,-2.9904E-05],[57.979403,-2.9389E-05],[57.982841,-3.1451E-05],[57.98628,-3.1451E-05],[57.989719,-2.9904E-05],[57.993157,-2.8873E-05],[57.996596,-2.8357E-05],[58.000035,-2.8873E-05],[58.003473,-2.8873E-05],[58.006912,-2.7326E-05],[58.010351,-3.0935E-05],[58.013789,-2.6811E-05],[58.017228,-2.2686E-05],[58.020667,-2.9389E-05],[58.024105,-3.0935E-05],[58.027544,-2.9389E-05],[58.030983,-2.9904E-05],[58.034421,-3.4544E-05],[58.03786,-3.2482E-05],[58.041299,-2.5264E-05],[58.044737,-3.1967E-05],[58.048176,-3.506E-05],[58.051615,-2.9904E-05],[58.055053,-3.1451E-05],[58.058492,-3.042E-05],[58.061931,-2.9904E-05],[58.065369,-3.2998E-05],[58.068808,-3.1451E-05],[58.072247,-2.6811E-05],[58.075685,-2.9389E-05],[58.079124,-3.042E-05],[58.082563,-3.042E-05],[58.086001,-3.2998E-05],[58.08944,-3.0935E-05],[58.092879,-2.8873E-05],[58.096317,-2.9389E-05],[58.099756,-2.9904E-05],[58.103195,-2.8873E-05],[58.106633,-3.042E-05],[58.110072,-2.9904E-05],[58.113511,-2.8357E-05],[58.116949,-2.9389E-05],[58.120388,-3.0935E-05],[58.123827,-2.9389E-05],[58.127265,-2.8873E-05],[58.130704,-3.3513E-05],[58.134143,-2.8873E-05],[58.137581,-2.4233E-05],[58.14102,-2.4233E-05],[58.144459,-2.4748E-05],[58.147897,-2.8873E-05],[58.151336,-2.7842E-05],[58.154775,-2.6295E-05],[58.158213,-2.8873E-05],[58.161652,-3.0935E-05],[58.165091,-3.1967E-05],[58.168529,-3.3513E-05],[58.171968,-3.0935E-05],[58.175407,-2.7842E-05],[58.178845,-2.7842E-05],[58.182284,-3.1451E-05],[58.185723,-3.4544E-05],[58.189161,-3.042E-05],[58.1926,-2.8357E-05],[58.196039,-3.042E-05],[58.199477,-2.9904E-05],[58.202916,-2.9389E-05],[58.206355,-3.1967E-05],[58.209793,-2.9389E-05],[58.213232,-2.9389E-05],[58.216671,-2.8873E-05],[58.220109,-2.8357E-05]]}
-{"quant":[58.4926,-2.9114E-05],"mems":[[58.395481,-2.9904E-05],[58.39892,-2.5264E-05],[58.402359,-3.042E-05],[58.405797,-3.1451E-05],[58.409236,-3.2482E-05],[58.412675,-3.0935E-05],[58.416113,-2.7326E-05],[58.419552,-2.8873E-05],[58.422991,-2.9389E-05],[58.426429,-2.7842E-05],[58.429868,-2.9389E-05],[58.433307,-3.042E-05],[58.436745,-2.6295E-05],[58.440184,-2.4748E-05],[58.443623,-2.4748E-05],[58.447061,-3.1451E-05],[58.4505,-3.4544E-05],[58.453939,-2.9389E-05],[58.457377,-2.8873E-05],[58.460816,-2.7842E-05],[58.464255,-3.2482E-05],[58.467693,-3.5576E-05],[58.471132,-2.8873E-05],[58.474571,-2.3717E-05],[58.478009,-2.5264E-05],[58.481448,-2.9389E-05],[58.484887,-3.0935E-05],[58.488325,-2.8357E-05],[58.491764,-2.5264E-05],[58.495203,-2.9904E-05],[58.498641,-3.3513E-05],[58.50208,-2.7326E-05],[58.505519,-2.9904E-05],[58.508957,-3.2482E-05],[58.512396,-2.6295E-05],[58.515835,-2.9904E-05],[58.519273,-2.6811E-05],[58.522712,-2.7326E-05],[58.526151,-3.0935E-05],[58.529589,-2.7326E-05],[58.533028,-3.1451E-05],[58.536467,-2.7842E-05],[58.539905,-2.4748E-05],[58.543344,-2.9389E-05],[58.546783,-2.8873E-05],[58.550221,-2.7842E-05],[58.55366,-3.0935E-05],[58.557099,-2.8873E-05],[58.560537,-2.8357E-05],[58.563976,-2.8873E-05],[58.567415,-2.5779E-05],[58.570853,-2.9389E-05],[58.574292,-3.0935E-05],[58.577731,-2.8357E-05],[58.581169,-2.6295E-05],[58.584608,-2.8357E-05],[58.588047,-3.4029E-05],[58.591485,-3.0935E-05],[58.594924,-3.042E-05],[58.598363,-3.042E-05],[58.601801,-2.8873E-05],[58.60524,-3.2998E-05],[58.608679,-3.4029E-05],[58.612117,-3.2482E-05],[58.615556,-3.1451E-05],[58.618995,-2.8873E-05],[58.622433,-3.0935E-05],[58.625872,-3.2998E-05],[58.629311,-3.0935E-05],[58.632749,-3.3513E-05],[58.636188,-3.2998E-05],[58.639627,-3.042E-05],[58.643065,-3.2482E-05],[58.646504,-3.4029E-05],[58.649943,-2.7842E-05],[58.653381,-2.7842E-05],[58.65682,-2.8357E-05],[58.660259,-2.5264E-05],[58.663697,-3.0935E-05],[58.667136,-2.5779E-05],[58.670575,-2.8357E-05],[58.674013,-3.3513E-05],[58.677452,-2.8357E-05],[58.680891,-3.2482E-05],[58.684329,-3.1451E-05],[58.687768,-2.8357E-05],[58.691207,-2.8357E-05],[58.694645,-2.9389E-05]]}
-{"quant":[58.9817,-2.9698E-05],"mems":[[58.883772,-3.2482E-05],[58.887211,-3.4029E-05],[58.890649,-2.7326E-05],[58.894088,-2.7842E-05],[58.897527,-2.8357E-05],[58.900965,-2.6811E-05],[58.904404,-2.7842E-05],[58.907843,-2.7326E-05],[58.911281,-3.1967E-05],[58.91472,-3.2482E-05],[58.918159,-2.6295E-05],[58.921597,-3.042E-05],[58.925036,-3.2998E-05],[58.928475,-3.3513E-05],[58.931913,-3.3513E-05],[58.935352,-3.2998E-05],[58.938791,-3.2482E-05],[58.942229,-2.8357E-05],[58.945668,-2.8873E-05],[58.949107,-3.1967E-05],[58.952545,-2.7326E-05],[58.955984,-2.6811E-05],[58.959423,-3.2482E-05],[58.962861,-2.9389E-05],[58.9663,-2.9389E-05],[58.969739,-3.0935E-05],[58.973177,-2.8873E-05],[58.976616,-3.042E-05],[58.980055,-3.2482E-05],[58.983493,-3.2998E-05],[58.986932,-3.0935E-05],[58.990371,-2.9389E-05],[58.993809,-3.042E-05],[58.997248,-2.7326E-05],[59.000687,-2.6295E-05],[59.004125,-2.9904E-05],[59.007564,-3.1451E-05],[59.011003,-3.1967E-05],[59.014441,-2.6295E-05],[59.01788,-2.3717E-05],[59.021319,-3.1967E-05],[59.024757,-3.1967E-05],[59.028196,-2.8873E-05],[59.031635,-2.7842E-05],[59.035073,-2.6295E-05],[59.038512,-2.5779E-05],[59.041951,-2.8873E-05],[59.045389,-3.1967E-05],[59.048828,-3.042E-05],[59.052267,-3.3513E-05],[59.055705,-2.9904E-05],[59.059144,-2.6295E-05],[59.062583,-2.9389E-05],[59.066021,-3.042E-05],[59.06946,-3.3513E-05],[59.072899,-3.0935E-05],[59.076337,-2.9389E-05],[59.079776,-3.2482E-05],[59.083215,-3.042E-05],[59.086653,-2.7842E-05],[59.090092,-2.9389E-05],[59.093531,-3.042E-05],[59.096969,-2.7842E-05],[59.100408,-2.6295E-05],[59.103847,-2.9904E-05],[59.107285,-3.2998E-05],[59.110724,-3.042E-05],[59.114163,-3.1967E-05],[59.117601,-3.1451E-05],[59.12104,-3.1967E-05],[59.124479,-3.3513E-05],[59.127917,-3.2482E-05],[59.131356,-3.3513E-05],[59.134795,-2.7326E-05],[59.138233,-2.4748E-05],[59.141672,-2.8357E-05],[59.145111,-3.042E-05],[59.148549,-3.1967E-05],[59.151988,-3.042E-05],[59.155427,-2.6811E-05],[59.158865,-2.7326E-05],[59.162304,-3.0935E-05],[59.165743,-2.9389E-05],[59.169181,-3.1967E-05],[59.17262,-3.2998E-05],[59.176059,-2.8873E-05],[59.179497,-2.9389E-05],[59.182936,-2.8873E-05]]}
-{"quant":[59.4642,-3.0488E-05],"mems":[[59.365185,-2.9389E-05],[59.368624,-3.2482E-05],[59.372063,-3.4544E-05],[59.375501,-3.1451E-05],[59.37894,-3.1967E-05],[59.382379,-2.7842E-05],[59.385817,-3.0935E-05],[59.389256,-3.6607E-05],[59.392695,-3.2482E-05],[59.396133,-2.8873E-05],[59.399572,-2.9389E-05],[59.403011,-3.0935E-05],[59.406449,-3.1451E-05],[59.409888,-3.2482E-05],[59.413327,-2.8357E-05],[59.416765,-2.3717E-05],[59.420204,-2.8357E-05],[59.423643,-3.4029E-05],[59.427081,-3.4029E-05],[59.43052,-3.1967E-05],[59.433959,-3.0935E-05],[59.437397,-3.1451E-05],[59.440836,-2.7842E-05],[59.444275,-2.4748E-05],[59.447713,-3.042E-05],[59.451152,-2.9904E-05],[59.454591,-2.7326E-05],[59.458029,-2.7842E-05],[59.461468,-3.0935E-05],[59.464907,-3.4029E-05],[59.468345,-3.4544E-05],[59.471784,-3.3513E-05],[59.475223,-3.1967E-05],[59.478661,-3.042E-05],[59.4821,-2.9904E-05],[59.485539,-2.9389E-05],[59.488977,-3.2998E-05],[59.492416,-2.9389E-05],[59.495855,-2.7842E-05],[59.499293,-3.5576E-05],[59.502732,-3.1967E-05],[59.506171,-2.7326E-05],[59.509609,-3.1967E-05],[59.513048,-3.6607E-05],[59.516487,-2.9389E-05],[59.519925,-2.8357E-05],[59.523364,-3.4029E-05],[59.526803,-3.042E-05],[59.530241,-3.1451E-05],[59.53368,-2.9389E-05],[59.537119,-2.8357E-05],[59.540557,-3.1967E-05],[59.543996,-2.9389E-05],[59.547435,-3.1451E-05],[59.550873,-2.9904E-05],[59.554312,-2.4233E-05],[59.557751,-2.7326E-05],[59.561189,-2.8357E-05],[59.564628,-2.3202E-05],[59.568067,-2.7842E-05],[59.571505,-3.4544E-05],[59.574944,-3.1967E-05],[59.578383,-2.9389E-05],[59.581821,-2.7326E-05],[59.58526,-3.2482E-05],[59.588699,-3.506E-05],[59.592137,-3.1967E-05],[59.595576,-3.3513E-05],[59.599015,-3.1967E-05],[59.602453,-3.1451E-05],[59.605892,-3.042E-05],[59.609331,-3.2482E-05],[59.612769,-3.5576E-05],[59.616208,-2.7842E-05],[59.619647,-2.8357E-05],[59.623085,-3.4544E-05],[59.626524,-3.4544E-05],[59.629963,-3.4029E-05],[59.633401,-2.9389E-05],[59.63684,-2.5779E-05],[59.640279,-3.1967E-05],[59.643717,-3.7122E-05],[59.647156,-3.1451E-05],[59.650595,-2.8873E-05],[59.654033,-3.4029E-05],[59.657472,-3.1451E-05],[59.660911,-3.2482E-05],[59.664349,-3.8669E-05]]}
-{"quant":[59.9355,-3.0471E-05],"mems":[[59.838336,-3.1451E-05],[59.841848,-3.5576E-05],[59.84536,-3.2998E-05],[59.848872,-2.9904E-05],[59.852384,-3.0935E-05],[59.855896,-2.9904E-05],[59.859408,-2.7326E-05],[59.86292,-2.8873E-05],[59.866432,-3.1967E-05],[59.869944,-3.1967E-05],[59.873456,-3.4029E-05],[59.876968,-3.2482E-05],[59.88048,-2.7326E-05],[59.883992,-3.042E-05],[59.887504,-3.1967E-05],[59.891016,-2.8873E-05],[59.894528,-3.042E-05],[59.89804,-2.6811E-05],[59.901552,-2.6295E-05],[59.905064,-2.8357E-05],[59.908576,-2.7326E-05],[59.912088,-2.8357E-05],[59.9156,-3.0935E-05],[59.919112,-3.2998E-05],[59.922624,-2.8357E-05],[59.926136,-2.9389E-05],[59.929648,-3.1967E-05],[59.93316,-2.8873E-05],[59.936672,-3.3513E-05],[59.940184,-3.3513E-05],[59.943696,-2.8873E-05],[59.947208,-3.2998E-05],[59.95072,-3.506E-05],[59.954232,-3.5576E-05],[59.957744,-3.4029E-05],[59.961256,-2.9904E-05],[59.964768,-2.7326E-05],[59.96828,-2.9904E-05],[59.971792,-3.042E-05],[59.975304,-2.6811E-05],[59.978816,-2.9389E-05],[59.982328,-2.6295E-05],[59.98584,-2.7842E-05],[59.989352,-3.506E-05],[59.992864,-2.8357E-05],[59.996376,-2.6811E-05],[59.999888,-3.1967E-05],[60.0034,-2.8357E-05],[60.006912,-2.8873E-05],[60.010424,-2.9904E-05],[60.013936,-2.7842E-05],[60.017448,-2.8357E-05],[60.02096,-2.8873E-05],[60.024472,-2.8357E-05],[60.027984,-3.1967E-05],[60.031496,-3.5576E-05],[60.035008,-2.8873E-05],[60.03852,-3.3513E-05],[60.042032,-3.1967E-05],[60.045544,-2.9389E-05],[60.049056,-3.4544E-05],[60.052568,-2.7842E-05],[60.05608,-3.042E-05],[60.059592,-2.9389E-05],[60.063104,-2.4748E-05],[60.066616,-2.7326E-05],[60.070128,-2.7326E-05],[60.07364,-3.042E-05],[60.077152,-2.7326E-05],[60.080664,-2.7842E-05],[60.084176,-2.6295E-05],[60.087688,-2.6295E-05],[60.0912,-3.0935E-05],[60.094712,-2.8357E-05],[60.098224,-3.1451E-05],[60.101736,-3.0935E-05],[60.105248,-3.0935E-05],[60.10876,-3.1967E-05],[60.112272,-3.042E-05],[60.115784,-3.2998E-05],[60.119296,-3.1967E-05],[60.122808,-2.9389E-05],[60.12632,-2.6295E-05],[60.129832,-2.8357E-05],[60.133344,-3.1967E-05],[60.136856,-3.042E-05]]}
-{"quant":[60.4853,-2.9851E-05],"mems":[[60.386208,-2.9389E-05],[60.38972,-2.8873E-05],[60.393232,-3.1451E-05],[60.396744,-2.8357E-05],[60.400256,-2.8873E-05],[60.403768,-3.3513E-05],[60.40728,-2.6811E-05],[60.410792,-2.4748E-05],[60.414304,-2.8357E-05],[60.417816,-2.9904E-05],[60.421328,-3.042E-05],[60.42484,-3.4029E-05],[60.428352,-3.0935E-05],[60.431864,-2.6295E-05],[60.435376,-3.0935E-05],[60.438888,-3.1967E-05],[60.4424,-3.1451E-05],[60.445912,-2.9389E-05],[60.449424,-3.042E-05],[60.452936,-3.4544E-05],[60.456448,-3.5576E-05],[60.45996,-3.3513E-05],[60.463472,-2.7842E-05],[60.466984,-2.8357E-05],[60.470496,-2.7842E-05],[60.474008,-2.8873E-05],[60.47752,-3.4029E-05],[60.481032,-3.1451E-05],[60.484544,-2.9904E-05],[60.488056,-2.8873E-05],[60.491568,-2.4748E-05],[60.49508,-2.6811E-05],[60.498592,-2.8873E-05],[60.502104,-3.0935E-05],[60.505616,-3.2998E-05],[60.509128,-2.8357E-05],[60.51264,-2.7326E-05],[60.516152,-2.7842E-05],[60.519664,-2.9904E-05],[60.523176,-3.1451E-05],[60.526688,-2.9904E-05],[60.5302,-3.042E-05],[60.533712,-2.9904E-05],[60.537224,-3.0935E-05],[60.540736,-3.2482E-05],[60.544248,-2.8873E-05],[60.54776,-2.7326E-05],[60.551272,-3.042E-05],[60.554784,-3.1967E-05],[60.558296,-2.9904E-05],[60.561808,-3.1967E-05],[60.56532,-3.506E-05],[60.568832,-2.8357E-05],[60.572344,-2.4748E-05],[60.575856,-2.9904E-05],[60.579368,-2.7842E-05],[60.58288,-3.2482E-05],[60.586392,-3.506E-05],[60.589904,-3.1967E-05],[60.593416,-3.1451E-05],[60.596928,-2.7326E-05],[60.60044,-2.8357E-05],[60.603952,-2.8873E-05],[60.607464,-2.5779E-05],[60.610976,-2.7326E-05],[60.614488,-2.6811E-05],[60.618,-2.3717E-05],[60.621512,-2.8873E-05],[60.625024,-3.3513E-05],[60.628536,-3.2998E-05],[60.632048,-2.8357E-05],[60.63556,-2.7842E-05],[60.639072,-3.1451E-05],[60.642584,-2.7842E-05],[60.646096,-3.042E-05],[60.649608,-3.1451E-05],[60.65312,-3.2998E-05],[60.656632,-3.2482E-05],[60.660144,-2.6811E-05],[60.663656,-2.8873E-05],[60.667168,-2.8873E-05],[60.67068,-3.1451E-05],[60.674192,-2.7842E-05],[60.677704,-2.5264E-05],[60.681216,-2.7842E-05],[60.684728,-2.7842E-05],[60.68824,-3.042E-05]]}
-{"quant":[60.9301,-2.8598E-05],"mems":[[60.832232,-3.1451E-05],[60.835744,-3.2482E-05],[60.839256,-2.5779E-05],[60.842768,-2.5264E-05],[60.84628,-2.8357E-05],[60.849792,-2.8357E-05],[60.853304,-2.9904E-05],[60.856816,-3.0935E-05],[60.860328,-2.8357E-05],[60.86384,-3.042E-05],[60.867352,-3.1967E-05],[60.870864,-2.9389E-05],[60.874376,-3.2482E-05],[60.877888,-2.7842E-05],[60.8814,-2.6295E-05],[60.884912,-2.9389E-05],[60.888424,-3.1967E-05],[60.891936,-3.5576E-05],[60.895448,-2.8357E-05],[60.89896,-2.9904E-05],[60.902472,-3.3513E-05],[60.905984,-3.1451E-05],[60.909496,-3.4029E-05],[60.913008,-3.2998E-05],[60.91652,-3.1451E-05],[60.920032,-2.8873E-05],[60.923544,-2.7842E-05],[60.927056,-3.1967E-05],[60.930568,-3.1451E-05],[60.93408,-2.9389E-05],[60.937592,-2.8873E-05],[60.941104,-2.6295E-05],[60.944616,-2.4748E-05],[60.948128,-2.7326E-05],[60.95164,-3.0935E-05],[60.955152,-3.042E-05],[60.958664,-2.6295E-05],[60.962176,-2.7326E-05],[60.965688,-3.0935E-05],[60.9692,-2.7326E-05],[60.972712,-2.9389E-05],[60.976224,-3.506E-05],[60.979736,-3.0935E-05],[60.983248,-2.6295E-05],[60.98676,-2.5779E-05],[60.990272,-2.9904E-05],[60.993784,-3.1967E-05],[60.997296,-3.1451E-05],[61.000808,-2.8873E-05],[61.00432,-2.5264E-05],[61.007832,-2.8357E-05],[61.011344,-3.042E-05],[61.014856,-2.8873E-05],[61.018368,-2.6811E-05],[61.02188,-2.5779E-05],[61.025392,-2.5779E-05],[61.028904,-2.6295E-05],[61.032416,-2.9389E-05],[61.035928,-3.2998E-05],[61.03944,-2.9904E-05],[61.042952,-3.0935E-05],[61.046464,-3.4029E-05],[61.049976,-2.9904E-05],[61.053488,-3.1967E-05],[61.057,-3.042E-05],[61.060512,-2.8873E-05],[61.064024,-3.0935E-05],[61.067536,-2.9904E-05],[61.071048,-3.2482E-05],[61.07456,-3.3513E-05],[61.078072,-2.9389E-05],[61.081584,-2.8873E-05],[61.085096,-2.9904E-05],[61.088608,-2.9389E-05],[61.09212,-2.8357E-05],[61.095632,-2.8873E-05],[61.099144,-3.1451E-05],[61.102656,-3.1967E-05],[61.106168,-2.8873E-05],[61.10968,-3.3513E-05],[61.113192,-3.4544E-05],[61.116704,-2.6811E-05],[61.120216,-2.9389E-05],[61.123728,-2.9904E-05],[61.12724,-2.6811E-05],[61.130752,-2.8357E-05]]}
-{"quant":[61.434,-2.9815E-05],"mems":[[61.334448,-2.6811E-05],[61.33796,-2.9389E-05],[61.341472,-2.9904E-05],[61.344984,-2.8873E-05],[61.348496,-2.9389E-05],[61.352008,-3.1967E-05],[61.35552,-3.0935E-05],[61.359032,-3.042E-05],[61.362544,-3.1967E-05],[61.366056,-2.9904E-05],[61.369568,-2.7842E-05],[61.37308,-3.1451E-05],[61.376592,-3.2482E-05],[61.380104,-2.8873E-05],[61.383616,-3.1451E-05],[61.387128,-3.1451E-05],[61.39064,-2.6811E-05],[61.394152,-3.1451E-05],[61.397664,-3.506E-05],[61.401176,-3.3513E-05],[61.404688,-3.506E-05],[61.4082,-3.042E-05],[61.411712,-2.6811E-05],[61.415224,-3.0935E-05],[61.418736,-2.9904E-05],[61.422248,-2.9904E-05],[61.42576,-3.2998E-05],[61.429272,-3.0935E-05],[61.432784,-2.8873E-05],[61.436296,-2.7326E-05],[61.439808,-2.7326E-05],[61.44332,-3.042E-05],[61.446832,-3.1451E-05],[61.450344,-3.1451E-05],[61.453856,-3.1451E-05],[61.457368,-3.1967E-05],[61.46088,-3.1451E-05],[61.464392,-2.4748E-05],[61.467904,-3.0935E-05],[61.471416,-2.9389E-05],[61.474928,-2.2686E-05],[61.47844,-2.8873E-05],[61.481952,-2.7842E-05],[61.485464,-3.2998E-05],[61.488976,-3.4544E-05],[61.492488,-2.7842E-05],[61.496,-2.9389E-05],[61.499512,-2.9904E-05],[61.503024,-2.7842E-05],[61.506536,-2.9389E-05],[61.510048,-3.1967E-05],[61.51356,-2.8357E-05],[61.517072,-2.7326E-05],[61.520584,-3.1967E-05],[61.524096,-3.7638E-05],[61.527608,-3.4544E-05],[61.53112,-2.5779E-05],[61.534632,-2.7842E-05],[61.538144,-3.3513E-05],[61.541656,-3.506E-05],[61.545168,-3.506E-05],[61.54868,-3.0935E-05],[61.552192,-2.7326E-05],[61.555704,-2.9389E-05],[61.559216,-3.2482E-05],[61.562728,-3.1967E-05],[61.56624,-3.1967E-05],[61.569752,-3.1967E-05],[61.573264,-2.8357E-05],[61.576776,-3.0935E-05],[61.580288,-3.3513E-05],[61.5838,-2.8873E-05],[61.587312,-3.1967E-05],[61.590824,-3.4029E-05],[61.594336,-3.0935E-05],[61.597848,-3.0935E-05],[61.60136,-3.0935E-05],[61.604872,-3.2482E-05],[61.608384,-3.4029E-05],[61.611896,-3.2482E-05],[61.615408,-2.8357E-05],[61.61892,-2.8357E-05],[61.622432,-3.1451E-05],[61.625944,-3.1451E-05],[61.629456,-3.506E-05],[61.632968,-3.2482E-05],[61.63648,-2.6295E-05]]}
-{"quant":[61.9025,-3.0763E-05],"mems":[[61.805056,-3.1967E-05],[61.808568,-2.8357E-05],[61.81208,-2.9389E-05],[61.815592,-2.9389E-05],[61.819104,-2.6811E-05],[61.822616,-2.9389E-05],[61.826128,-2.8873E-05],[61.82964,-2.8873E-05],[61.833152,-2.6811E-05],[61.836664,-2.7326E-05],[61.840176,-2.7326E-05],[61.843688,-2.6811E-05],[61.8472,-2.7842E-05],[61.850712,-2.6811E-05],[61.854224,-2.7326E-05],[61.857736,-3.0935E-05],[61.861248,-3.1967E-05],[61.86476,-2.9389E-05],[61.868272,-3.0935E-05],[61.871784,-2.9904E-05],[61.875296,-2.5779E-05],[61.878808,-2.7842E-05],[61.88232,-2.4233E-05],[61.885832,-2.2686E-05],[61.889344,-2.9904E-05],[61.892856,-2.8357E-05],[61.896368,-2.6811E-05],[61.89988,-2.8873E-05],[61.903392,-2.3202E-05],[61.906904,-2.9389E-05],[61.910416,-3.1451E-05],[61.913928,-2.6811E-05],[61.91744,-3.1967E-05],[61.920952,-2.7842E-05],[61.924464,-2.8873E-05],[61.927976,-3.3513E-05],[61.931488,-3.2482E-05],[61.935,-3.5576E-05],[61.938512,-3.1451E-05],[61.942024,-2.7842E-05],[61.945536,-3.1967E-05],[61.949048,-3.2998E-05],[61.95256,-3.042E-05],[61.956072,-3.2482E-05],[61.959584,-3.1451E-05],[61.963096,-2.9389E-05],[61.966608,-2.9389E-05],[61.97012,-2.9904E-05],[61.973632,-3.6091E-05],[61.977144,-3.6091E-05],[61.980656,-3.1451E-05],[61.984168,-2.7842E-05],[61.98768,-2.9389E-05],[61.991192,-3.2482E-05],[61.994704,-2.8357E-05],[61.998216,-3.1967E-05],[62.001728,-3.2998E-05],[62.00524,-2.7842E-05],[62.008752,-3.1451E-05],[62.012264,-3.1967E-05],[62.015776,-3.1967E-05],[62.019288,-2.8873E-05],[62.0228,-2.7842E-05],[62.026312,-3.2998E-05],[62.029824,-2.9904E-05],[62.033336,-2.9389E-05],[62.036848,-3.2998E-05],[62.04036,-3.506E-05],[62.043872,-3.5576E-05],[62.047384,-3.1451E-05],[62.050896,-2.9904E-05],[62.054408,-2.9904E-05],[62.05792,-2.8357E-05],[62.061432,-2.7326E-05],[62.064944,-2.9389E-05],[62.068456,-3.1451E-05],[62.071968,-3.4029E-05],[62.07548,-3.2998E-05],[62.078992,-2.7326E-05],[62.082504,-2.9904E-05],[62.086016,-3.4544E-05],[62.089528,-3.1451E-05],[62.09304,-2.6811E-05],[62.096552,-2.7326E-05],[62.100064,-3.0935E-05],[62.103576,-2.4748E-05]]}
-{"quant":[62.3678,-0.43362],"mems":[[62.300248,-3.4544E-05],[62.30376,-3.1451E-05],[62.307272,-2.8873E-05],[62.310784,-3.1451E-05],[62.314296,-3.2482E-05],[62.317808,-3.506E-05],[62.32132,-3.2998E-05],[62.324832,-3.1451E-05],[62.328344,-3.0935E-05],[62.331856,-2.7842E-05],[62.335368,-2.9389E-05],[62.33888,-3.0935E-05],[62.342392,-3.3513E-05],[62.345904,-3.4029E-05],[62.349416,-3.0935E-05],[62.352928,-3.042E-05],[62.35644,-3.0935E-05],[62.359952,-2.9389E-05],[62.363464,-2.8873E-05],[62.366976,-3.042E-05],[62.370488,-2.9389E-05],[62.374,-3.0935E-05],[62.377408,-3.2998E-05],[62.380816,-3.6091E-05],[62.384224,-3.1967E-05],[62.387632,-2.4233E-05],[62.39104,-2.4748E-05],[62.394448,-3.0935E-05],[62.397856,-3.3513E-05],[62.401264,-3.1967E-05],[62.404672,-3.4544E-05],[62.40808,-3.3513E-05],[62.411488,-2.9904E-05],[62.414896,-3.2482E-05],[62.418304,-3.506E-05],[62.421712,-3.4544E-05],[62.42512,-2.8357E-05],[62.428528,-2.9904E-05],[62.431936,-3.1451E-05],[62.435344,-2.7326E-05],[62.438752,-3.1451E-05],[62.44216,-3.3513E-05],[62.445568,-3.1451E-05],[62.448976,-2.7842E-05],[62.452384,-2.7842E-05],[62.455792,-3.6091E-05],[62.4592,-3.506E-05],[62.462608,-3.042E-05],[62.466016,-2.8873E-05],[62.469424,-2.5779E-05],[62.472832,-2.7842E-05],[62.47624,-2.8873E-05],[62.479648,-3.1451E-05],[62.483056,-3.1967E-05],[62.486464,-2.7842E-05],[62.489872,-2.8357E-05],[62.49328,-2.8357E-05],[62.496688,-3.2998E-05],[62.500096,-3.3513E-05],[62.503504,-3.0935E-05],[62.506912,-2.6811E-05],[62.51032,-2.3717E-05],[62.513728,-3.1967E-05],[62.517136,-3.2998E-05],[62.520544,-3.1451E-05],[62.523952,-2.9389E-05],[62.52736,-2.5779E-05],[62.530768,-2.8357E-05],[62.534176,-3.2482E-05],[62.537584,-3.2482E-05],[62.540992,-3.2482E-05],[62.5444,-3.2482E-05],[62.547808,-2.7326E-05],[62.551216,-2.8873E-05],[62.554624,-2.7326E-05],[62.558032,-2.4748E-05],[62.56144,-3.042E-05],[62.564848,-2.7326E-05],[62.568256,-2.7326E-05],[62.571664,-3.2482E-05],[62.575072,-3.1451E-05],[62.57848,-3.2482E-05],[62.581888,-3.2998E-05],[62.585296,-2.9389E-05],[62.588704,-2.8357E-05],[62.592112,-3.0935E-05],[62.59552,-2.6811E-05],[62.598928,-2.7326E-05]]}
-{"quant":[62.8616,-2.9664E-05],"mems":[[62.762512,-2.8357E-05],[62.76592,-2.9389E-05],[62.769328,-3.0935E-05],[62.772736,-2.5779E-05],[62.776144,-2.8357E-05],[62.779552,-3.042E-05],[62.78296,-2.9389E-05],[62.786368,-2.5779E-05],[62.789776,-2.6811E-05],[62.793184,-3.042E-05],[62.796592,-3.1451E-05],[62.8,-3.3513E-05],[62.803408,-3.1967E-05],[62.806816,-3.2998E-05],[62.810224,-3.2998E-05],[62.813632,-3.2998E-05],[62.81704,-2.7326E-05],[62.820448,-2.3717E-05],[62.823856,-2.7842E-05],[62.827264,-2.6295E-05],[62.830672,-3.0935E-05],[62.83408,-3.4029E-05],[62.837488,-3.2482E-05],[62.840896,-3.1967E-05],[62.844304,-2.9389E-05],[62.847712,-2.9904E-05],[62.85112,-3.2998E-05],[62.854528,-3.1967E-05],[62.857936,-2.9389E-05],[62.861344,-3.0935E-05],[62.864752,-2.8357E-05],[62.86816,-3.1451E-05],[62.871568,-3.0935E-05],[62.874976,-3.042E-05],[62.878384,-3.3513E-05],[62.881792,-2.9904E-05],[62.8852,-2.8873E-05],[62.888608,-2.8357E-05],[62.892016,-3.3513E-05],[62.895424,-3.2998E-05],[62.898832,-2.6295E-05],[62.90224,-2.7326E-05],[62.905648,-2.6295E-05],[62.909056,-2.4748E-05],[62.912464,-2.6295E-05],[62.915872,-3.0935E-05],[62.91928,-3.042E-05],[62.922688,-2.9389E-05],[62.926096,-2.8873E-05],[62.929504,-2.4233E-05],[62.932912,-2.5779E-05],[62.93632,-2.9904E-05],[62.939728,-3.1451E-05],[62.943136,-3.1967E-05],[62.946544,-2.9389E-05],[62.949952,-3.042E-05],[62.95336,-3.3513E-05],[62.956768,-3.042E-05],[62.960176,-2.9389E-05],[62.963584,-3.4544E-05],[62.966992,-3.2482E-05],[62.9704,-3.2482E-05],[62.973808,-3.6091E-05],[62.977216,-3.2482E-05],[62.980624,-3.1451E-05],[62.984032,-3.1967E-05],[62.98744,-3.042E-05],[62.990848,-2.7842E-05],[62.994256,-2.8873E-05],[62.997664,-3.0935E-05],[63.001072,-3.1967E-05],[63.00448,-3.2482E-05],[63.007888,-2.7326E-05],[63.011296,-3.4029E-05],[63.014704,-3.5576E-05],[63.018112,-3.042E-05],[63.02152,-3.6091E-05],[63.024928,-2.9389E-05],[63.028336,-2.9389E-05],[63.031744,-3.7122E-05],[63.035152,-3.2998E-05],[63.03856,-3.2482E-05],[63.041968,-3.3513E-05],[63.045376,-3.0935E-05],[63.048784,-3.1451E-05],[63.052192,-3.042E-05],[63.0556,-2.7842E-05],[63.059008,-3.2482E-05],[63.062416,-3.1451E-05]]}
-{"quant":[63.3716,-3.0204E-05],"mems":[[63.273712,-3.0935E-05],[63.27712,-2.7842E-05],[63.280528,-2.7326E-05],[63.283936,-2.9904E-05],[63.287344,-2.7842E-05],[63.290752,-3.1967E-05],[63.29416,-3.1967E-05],[63.297568,-2.5779E-05],[63.300976,-2.7842E-05],[63.304384,-2.8873E-05],[63.307792,-2.7326E-05],[63.3112,-2.7842E-05],[63.314608,-2.7326E-05],[63.318016,-2.9389E-05],[63.321424,-2.8357E-05],[63.324832,-2.8873E-05],[63.32824,-3.1967E-05],[63.331648,-3.2482E-05],[63.335056,-3.5576E-05],[63.338464,-2.9904E-05],[63.341872,-2.7842E-05],[63.34528,-3.2482E-05],[63.348688,-2.9389E-05],[63.352096,-2.9904E-05],[63.355504,-3.042E-05],[63.358912,-2.7326E-05],[63.36232,-2.9904E-05],[63.365728,-3.3513E-05],[63.369136,-3.5576E-05],[63.372544,-3.4544E-05],[63.375952,-3.2998E-05],[63.37936,-3.1967E-05],[63.382768,-3.506E-05],[63.386176,-3.5576E-05],[63.389584,-2.9389E-05],[63.392992,-2.8873E-05],[63.3964,-3.2482E-05],[63.399808,-3.1967E-05],[63.403216,-3.1967E-05],[63.406624,-3.0935E-05],[63.410032,-2.8873E-05],[63.41344,-3.1967E-05],[63.416848,-3.3513E-05],[63.420256,-2.8873E-05],[63.423664,-2.4233E-05],[63.427072,-2.6811E-05],[63.43048,-3.042E-05],[63.433888,-3.0935E-05],[63.437296,-2.9904E-05],[63.440704,-2.5779E-05],[63.444112,-2.5264E-05],[63.44752,-3.2482E-05],[63.450928,-2.7326E-05],[63.454336,-2.5264E-05],[63.457744,-3.2998E-05],[63.461152,-2.7842E-05],[63.46456,-2.6295E-05],[63.467968,-2.6811E-05],[63.471376,-3.0935E-05],[63.474784,-3.4029E-05],[63.478192,-2.5264E-05],[63.4816,-2.6295E-05],[63.485008,-2.8357E-05],[63.488416,-2.9389E-05],[63.491824,-3.0935E-05],[63.495232,-2.8873E-05],[63.49864,-2.7326E-05],[63.502048,-2.7842E-05],[63.505456,-3.1451E-05],[63.508864,-3.2482E-05],[63.512272,-3.2998E-05],[63.51568,-2.9904E-05],[63.519088,-2.9389E-05],[63.522496,-2.8873E-05],[63.525904,-2.6295E-05],[63.529312,-2.8357E-05],[63.53272,-3.0935E-05],[63.536128,-3.3513E-05],[63.539536,-3.1451E-05],[63.542944,-3.042E-05],[63.546352,-3.4029E-05],[63.54976,-3.3513E-05],[63.553168,-2.8357E-05],[63.556576,-2.7842E-05],[63.559984,-2.9904E-05],[63.563392,-3.1451E-05],[63.5668,-3.4544E-05],[63.570208,-3.1967E-05],[63.573616,-3.2998E-05]]}
-{"quant":[63.8245,-3.0179E-05],"mems":[[63.726976,-2.9904E-05],[63.730384,-2.8357E-05],[63.733792,-2.5264E-05],[63.7372,-2.3717E-05],[63.740608,-2.7326E-05],[63.744016,-2.9904E-05],[63.747424,-2.9904E-05],[63.750832,-3.0935E-05],[63.75424,-3.042E-05],[63.757648,-2.8873E-05],[63.761056,-2.7842E-05],[63.764464,-2.7842E-05],[63.767872,-2.9904E-05],[63.77128,-3.2482E-05],[63.774688,-3.0935E-05],[63.778096,-2.9389E-05],[63.781504,-2.8357E-05],[63.784912,-2.6811E-05],[63.78832,-3.1451E-05],[63.791728,-3.506E-05],[63.795136,-3.1451E-05],[63.798544,-2.8873E-05],[63.801952,-2.9389E-05],[63.80536,-2.8357E-05],[63.808768,-2.7326E-05],[63.812176,-2.9389E-05],[63.815584,-3.042E-05],[63.818992,-3.1967E-05],[63.8224,-2.8873E-05],[63.825808,-2.7326E-05],[63.829216,-2.9389E-05],[63.832624,-2.7326E-05],[63.836032,-3.042E-05],[63.83944,-2.9389E-05],[63.842848,-2.7842E-05],[63.846256,-3.0935E-05],[63.849664,-3.1451E-05],[63.853072,-3.4029E-05],[63.85648,-3.506E-05],[63.859888,-3.0935E-05],[63.863296,-3.2998E-05],[63.866704,-3.3513E-05],[63.870112,-2.6811E-05],[63.87352,-3.042E-05],[63.876928,-3.0935E-05],[63.880336,-3.1451E-05],[63.883744,-3.7122E-05],[63.887152,-3.2998E-05],[63.89056,-2.7326E-05],[63.893968,-2.3202E-05],[63.897376,-2.6295E-05],[63.900784,-3.0935E-05],[63.904192,-3.042E-05],[63.9076,-2.9389E-05],[63.911008,-2.9389E-05],[63.914416,-2.9904E-05],[63.917824,-2.5779E-05],[63.921232,-2.7842E-05],[63.92464,-3.4544E-05],[63.928048,-3.1967E-05],[63.931456,-2.7326E-05],[63.934864,-3.1451E-05],[63.938272,-3.0935E-05],[63.94168,-3.042E-05],[63.945088,-2.8873E-05],[63.948496,-2.4748E-05],[63.951904,-2.6811E-05],[63.955312,-2.8357E-05],[63.95872,-2.9904E-05],[63.962128,-2.9904E-05],[63.965536,-2.9389E-05],[63.968944,-3.2482E-05],[63.972352,-3.042E-05],[63.97576,-2.7326E-05],[63.979168,-3.1451E-05],[63.982576,-3.1967E-05],[63.985984,-2.9389E-05],[63.989392,-3.1451E-05],[63.9928,-3.3513E-05],[63.996208,-2.9904E-05],[63.999616,-2.6295E-05],[64.003024,-2.7842E-05],[64.006432,-3.1967E-05],[64.00984,-3.4544E-05],[64.013248,-3.0935E-05],[64.016656,-2.9389E-05],[64.020064,-2.9389E-05],[64.023472,-2.9389E-05],[64.02688,-3.2998E-05]]}
-{"quant":[64.3005,-2.987E-05],"mems":[[64.200688,-3.0935E-05],[64.204096,-2.6811E-05],[64.207504,-3.1451E-05],[64.210912,-3.0935E-05],[64.21432,-3.042E-05],[64.217728,-2.6811E-05],[64.221136,-2.9904E-05],[64.224544,-3.2998E-05],[64.227952,-3.1451E-05],[64.23136,-3.2482E-05],[64.234768,-2.9904E-05],[64.238176,-2.9904E-05],[64.241584,-2.5779E-05],[64.244992,-2.7326E-05],[64.2484,-3.2482E-05],[64.251808,-2.9904E-05],[64.255216,-3.1451E-05],[64.258624,-3.1451E-05],[64.262032,-3.2482E-05],[64.26544,-3.1967E-05],[64.268848,-3.1967E-05],[64.272256,-3.1967E-05],[64.275664,-2.8357E-05],[64.279072,-3.042E-05],[64.28248,-2.9904E-05],[64.285888,-2.7842E-05],[64.289296,-2.8357E-05],[64.292704,-2.6295E-05],[64.296112,-2.8357E-05],[64.29952,-3.2482E-05],[64.302928,-3.506E-05],[64.306336,-3.2998E-05],[64.309744,-3.042E-05],[64.313152,-2.8873E-05],[64.31656,-2.6295E-05],[64.319968,-2.3717E-05],[64.323376,-2.8357E-05],[64.326784,-3.4029E-05],[64.330192,-2.8873E-05],[64.3336,-2.4748E-05],[64.337008,-2.5779E-05],[64.340416,-3.042E-05],[64.343824,-3.2482E-05],[64.347232,-2.9389E-05],[64.35064,-3.0935E-05],[64.354048,-2.9389E-05],[64.357456,-2.4748E-05],[64.360864,-3.1451E-05],[64.364272,-3.3513E-05],[64.36768,-2.8357E-05],[64.371088,-2.7842E-05],[64.374496,-2.8873E-05],[64.377904,-3.2482E-05],[64.381312,-3.1451E-05],[64.38472,-3.1967E-05],[64.388128,-3.3513E-05],[64.391536,-2.8873E-05],[64.394944,-2.9904E-05],[64.398352,-3.1967E-05],[64.40176,-2.9389E-05],[64.405168,-2.8873E-05],[64.408576,-2.8873E-05],[64.411984,-2.7842E-05],[64.415392,-2.7842E-05],[64.4188,-3.042E-05],[64.422208,-2.9904E-05],[64.425616,-2.9904E-05],[64.429024,-3.4029E-05],[64.432432,-2.9389E-05],[64.43584,-3.1967E-05],[64.439248,-3.8154E-05],[64.442656,-3.2998E-05],[64.446064,-3.2482E-05],[64.449472,-3.1451E-05],[64.45288,-3.042E-05],[64.456288,-3.4029E-05],[64.459696,-3.0935E-05],[64.463104,-2.7842E-05],[64.466512,-3.042E-05],[64.46992,-3.1967E-05],[64.473328,-3.0935E-05],[64.476736,-3.1451E-05],[64.480144,-3.4029E-05],[64.483552,-3.1967E-05],[64.48696,-2.9904E-05],[64.490368,-3.0935E-05],[64.493776,-3.1451E-05],[64.497184,-3.2482E-05],[64.500592,-2.8357E-05]]}
-{"quant":[64.7945,-0.98484],"mems":[[64.74256,-2.6811E-05],[64.745968,-2.4233E-05],[64.749376,-2.8357E-05],[64.752784,-3.042E-05],[64.756192,-2.9389E-05],[64.7596,-2.9904E-05],[64.763008,-3.1967E-05],[64.766416,-3.1451E-05],[64.769824,-3.2482E-05],[64.773232,-2.9389E-05],[64.77664,-2.6295E-05],[64.780048,-3.4029E-05],[64.783456,-3.0935E-05],[64.786864,-2.6811E-05],[64.790272,-2.8357E-05],[64.79368,-2.7326E-05],[64.797088,-2.6811E-05],[64.800496,-2.7326E-05],[64.803904,-3.042E-05],[64.807312,-2.5779E-05],[64.81072,-2.6295E-05],[64.814128,-3.2482E-05],[64.817536,-3.0935E-05],[64.820944,-2.9389E-05],[64.824352,-2.8873E-05],[64.82776,-3.4029E-05],[64.831168,-3.2998E-05],[64.834576,-3.2482E-05],[64.837984,-3.4544E-05],[64.841392,-2.8873E-05],[64.8448,-2.5779E-05],[64.848208,-2.6295E-05],[64.851616,-3.1451E-05],[64.855024,-3.042E-05],[64.858432,-2.8873E-05],[64.86184,-3.2998E-05],[64.865248,-2.9389E-05],[64.868656,-2.9389E-05],[64.872064,-3.042E-05],[64.875472,-3.1451E-05],[64.87888,-3.2482E-05],[64.882288,-2.7326E-05],[64.885696,-2.7326E-05],[64.889104,-3.1451E-05],[64.892512,-3.2482E-05],[64.89592,-3.2998E-05],[64.899328,-3.1451E-05],[64.902736,-2.9904E-05],[64.906144,-3.042E-05],[64.909552,-3.1451E-05],[64.91296,-3.3513E-05],[64.916368,-3.0935E-05],[64.919776,-3.3513E-05],[64.923184,-3.2998E-05],[64.926592,-2.7842E-05],[64.93,-3.2482E-05],[64.933392,-3.4029E-05],[64.936784,-2.9904E-05],[64.940176,-2.4748E-05],[64.943568,-2.5779E-05],[64.94696,-2.6295E-05],[64.950352,-2.2686E-05],[64.953744,-3.2482E-05],[64.957136,-3.5576E-05],[64.960528,-3.0935E-05],[64.96392,-3.2998E-05],[64.967312,-3.4029E-05],[64.970704,-3.1451E-05],[64.974096,-2.8873E-05],[64.977488,-3.1451E-05],[64.98088,-2.6811E-05],[64.984272,-2.2686E-05],[64.987664,-2.7326E-05],[64.991056,-2.8357E-05],[64.994448,-3.1451E-05],[64.99784,-3.042E-05],[65.001232,-2.8357E-05],[65.004624,-2.9904E-05],[65.008016,-2.9904E-05],[65.011408,-2.8357E-05],[65.0148,-2.5264E-05],[65.018192,-3.0935E-05],[65.021584,-3.2482E-05],[65.024976,-2.1655E-05],[65.028368,-2.3202E-05],[65.03176,-2.9904E-05],[65.035152,-2.9904E-05]]}
-{"quant":[65.2941,-2.9698E-05],"mems":[[65.194576,-3.2482E-05],[65.197968,-2.9389E-05],[65.20136,-2.6811E-05],[65.204752,-3.2482E-05],[65.208144,-3.4029E-05],[65.211536,-3.4544E-05],[65.214928,-3.5576E-05],[65.21832,-3.5576E-05],[65.221712,-3.0935E-05],[65.225104,-2.7842E-05],[65.228496,-3.2482E-05],[65.231888,-3.042E-05],[65.23528,-3.2998E-05],[65.238672,-3.1451E-05],[65.242064,-2.5779E-05],[65.245456,-2.7326E-05],[65.248848,-2.4233E-05],[65.25224,-3.0935E-05],[65.255632,-3.0935E-05],[65.259024,-2.5264E-05],[65.262416,-2.4748E-05],[65.265808,-2.6295E-05],[65.2692,-3.2482E-05],[65.272592,-2.5779E-05],[65.275984,-2.5264E-05],[65.279376,-3.0935E-05],[65.282768,-3.0935E-05],[65.28616,-3.1451E-05],[65.289552,-2.9389E-05],[65.292944,-2.8873E-05],[65.296336,-2.6811E-05],[65.299728,-3.4544E-05],[65.30312,-3.2998E-05],[65.306512,-2.8873E-05],[65.309904,-3.4029E-05],[65.313296,-3.042E-05],[65.316688,-2.8357E-05],[65.32008,-3.042E-05],[65.323472,-3.2482E-05],[65.326864,-3.2998E-05],[65.330256,-2.9389E-05],[65.333648,-2.9904E-05],[65.33704,-3.1967E-05],[65.340432,-2.9389E-05],[65.343824,-2.8357E-05],[65.347216,-2.9904E-05],[65.350608,-3.2998E-05],[65.354,-2.6811E-05],[65.357392,-2.5264E-05],[65.360784,-3.042E-05],[65.364176,-2.5779E-05],[65.367568,-2.7326E-05],[65.37096,-3.1967E-05],[65.374352,-3.042E-05],[65.377744,-2.5779E-05],[65.381136,-2.6811E-05],[65.384528,-2.9389E-05],[65.38792,-2.9389E-05],[65.391312,-2.7326E-05],[65.394704,-3.042E-05],[65.398096,-3.2998E-05],[65.401488,-2.7842E-05],[65.40488,-2.9389E-05],[65.408272,-2.6295E-05],[65.411664,-2.5779E-05],[65.415056,-2.6811E-05],[65.418448,-2.6295E-05],[65.42184,-2.7842E-05],[65.425232,-2.7326E-05],[65.428624,-3.1451E-05],[65.432016,-2.9904E-05],[65.435408,-2.8357E-05],[65.4388,-2.8357E-05],[65.442192,-3.2998E-05],[65.445584,-3.1967E-05],[65.448976,-2.6811E-05],[65.452368,-2.7842E-05],[65.45576,-2.5264E-05],[65.459152,-2.9389E-05],[65.462544,-3.7122E-05],[65.465936,-3.3513E-05],[65.469328,-2.9904E-05],[65.47272,-2.9904E-05],[65.476112,-2.6295E-05],[65.479504,-2.8357E-05],[65.482896,-3.4029E-05],[65.486288,-3.2998E-05],[65.48968,-2.8873E-05],[65.493072,-3.1451E-05],[65.496464,-3.0935E-05]]}
-{"quant":[65.9372,-2.859E-05],"mems":[[65.839056,-2.7842E-05],[65.842448,-2.6295E-05],[65.84584,-2.6811E-05],[65.849232,-2.6811E-05],[65.852624,-2.8357E-05],[65.856016,-3.2482E-05],[65.859408,-3.042E-05],[65.8628,-2.9904E-05],[65.866192,-3.506E-05],[65.869584,-3.042E-05],[65.872976,-2.4233E-05],[65.876368,-2.8357E-05],[65.87976,-3.2482E-05],[65.883152,-3.1967E-05],[65.886544,-2.7326E-05],[65.889936,-2.6811E-05],[65.893328,-2.8357E-05],[65.89672,-2.9389E-05],[65.900112,-3.1967E-05],[65.903504,-2.8873E-05],[65.906896,-2.5264E-05],[65.910288,-2.3717E-05],[65.91368,-2.5779E-05],[65.917072,-3.506E-05],[65.920464,-3.4029E-05],[65.923856,-2.9904E-05],[65.927248,-3.1451E-05],[65.93064,-3.2998E-05],[65.934032,-3.4029E-05],[65.937424,-2.8357E-05],[65.940816,-2.5779E-05],[65.944208,-2.7842E-05],[65.9476,-2.9389E-05],[65.950992,-2.8873E-05],[65.954384,-2.8357E-05],[65.957776,-3.0935E-05],[65.961168,-2.9904E-05],[65.96456,-2.4233E-05],[65.967952,-2.0108E-05],[65.971344,-2.1139E-05],[65.974736,-2.6811E-05],[65.978128,-3.0935E-05],[65.98152,-2.9389E-05],[65.984912,-2.9389E-05],[65.988304,-3.1967E-05],[65.991696,-2.7842E-05],[65.995088,-2.8357E-05],[65.99848,-3.4029E-05],[66.001872,-3.042E-05],[66.005264,-2.8357E-05],[66.008656,-2.8357E-05],[66.012048,-2.7842E-05],[66.01544,-3.2482E-05],[66.018832,-2.8873E-05],[66.022224,-3.1451E-05],[66.025616,-3.2482E-05],[66.029008,-2.6295E-05],[66.0324,-2.7842E-05],[66.035792,-2.8357E-05],[66.039184,-2.9904E-05],[66.042576,-3.0935E-05],[66.045968,-3.0935E-05],[66.04936,-3.0935E-05],[66.052752,-3.1967E-05],[66.056144,-3.506E-05],[66.059536,-3.2482E-05],[66.062928,-2.8357E-05],[66.06632,-2.6295E-05],[66.069712,-2.5779E-05],[66.073104,-2.6811E-05],[66.076496,-3.1451E-05],[66.079888,-3.7638E-05],[66.08328,-3.4544E-05],[66.086672,-3.1451E-05],[66.090064,-3.0935E-05],[66.093456,-2.7842E-05],[66.096848,-3.042E-05],[66.10024,-3.7122E-05],[66.103632,-3.6607E-05],[66.107024,-2.8357E-05],[66.110416,-2.8873E-05],[66.113808,-3.1451E-05],[66.1172,-2.9389E-05],[66.120592,-2.9389E-05],[66.123984,-2.7842E-05],[66.127376,-2.7842E-05],[66.130768,-2.7326E-05],[66.13416,-2.7842E-05],[66.137552,-3.506E-05]]}
-{"quant":[66.4112,-3.022E-05],"mems":[[66.313936,-3.2998E-05],[66.317328,-3.0935E-05],[66.32072,-2.4748E-05],[66.324112,-2.4748E-05],[66.327504,-2.5779E-05],[66.330896,-2.2686E-05],[66.334288,-3.1967E-05],[66.33768,-3.1967E-05],[66.341072,-2.4748E-05],[66.344464,-2.4748E-05],[66.347856,-2.6295E-05],[66.351248,-3.042E-05],[66.35464,-3.3513E-05],[66.358032,-3.4544E-05],[66.361424,-3.1451E-05],[66.364816,-2.7326E-05],[66.368208,-2.5264E-05],[66.3716,-2.3717E-05],[66.374992,-2.3717E-05],[66.378384,-2.8357E-05],[66.381776,-2.8357E-05],[66.385168,-2.5264E-05],[66.38856,-3.042E-05],[66.391952,-3.2482E-05],[66.395344,-3.2482E-05],[66.398736,-3.042E-05],[66.402128,-2.7326E-05],[66.40552,-2.8873E-05],[66.408912,-3.0935E-05],[66.412304,-3.042E-05],[66.415696,-2.9389E-05],[66.419088,-2.9904E-05],[66.42248,-2.7326E-05],[66.425872,-2.9389E-05],[66.429264,-3.3513E-05],[66.432656,-2.8357E-05],[66.436048,-3.1967E-05],[66.43944,-3.2482E-05],[66.442832,-2.7326E-05],[66.446224,-2.8873E-05],[66.449616,-2.7842E-05],[66.453008,-3.2482E-05],[66.4564,-3.042E-05],[66.459792,-2.7842E-05],[66.463184,-3.2482E-05],[66.466576,-2.8873E-05],[66.469968,-3.042E-05],[66.47336,-3.3513E-05],[66.476752,-3.0935E-05],[66.480144,-3.4544E-05],[66.483536,-2.9904E-05],[66.486928,-2.2686E-05],[66.49032,-2.8357E-05],[66.493712,-3.0935E-05],[66.497104,-3.042E-05],[66.500496,-3.1451E-05],[66.503888,-2.7842E-05],[66.50728,-2.8357E-05],[66.510672,-3.506E-05],[66.514064,-3.3513E-05],[66.517456,-3.0935E-05],[66.520848,-3.0935E-05],[66.52424,-2.7326E-05],[66.527632,-3.2482E-05],[66.531024,-3.4029E-05],[66.534416,-2.9904E-05],[66.537808,-2.9904E-05],[66.5412,-2.5264E-05],[66.544592,-2.8357E-05],[66.547984,-3.042E-05],[66.551376,-2.6295E-05],[66.554768,-2.7842E-05],[66.55816,-2.5264E-05],[66.561552,-2.7842E-05],[66.564944,-3.0935E-05],[66.568336,-2.9904E-05],[66.571728,-2.9904E-05],[66.57512,-2.6811E-05],[66.578512,-2.9389E-05],[66.581904,-2.7842E-05],[66.585296,-2.8873E-05],[66.588688,-2.9904E-05],[66.59208,-2.6295E-05],[66.595472,-3.1967E-05],[66.598864,-3.3513E-05],[66.602256,-2.8873E-05],[66.605648,-3.1451E-05],[66.60904,-3.0935E-05],[66.612432,-3.042E-05]]}
-{"quant":[66.8724,-2.9389E-05],"mems":[[66.775248,-2.8357E-05],[66.77864,-2.5779E-05],[66.782032,-3.0935E-05],[66.785424,-3.2482E-05],[66.788816,-3.1451E-05],[66.792208,-2.7842E-05],[66.7956,-2.7326E-05],[66.798992,-2.5779E-05],[66.802384,-2.7326E-05],[66.805776,-3.6607E-05],[66.809168,-3.1967E-05],[66.81256,-2.7326E-05],[66.815952,-3.0935E-05],[66.819344,-2.9904E-05],[66.822736,-2.6811E-05],[66.826128,-2.7842E-05],[66.82952,-3.2482E-05],[66.832912,-3.0935E-05],[66.836304,-3.0935E-05],[66.839696,-3.1451E-05],[66.843088,-2.8357E-05],[66.84648,-3.1451E-05],[66.849872,-3.3513E-05],[66.853264,-3.4544E-05],[66.856656,-3.506E-05],[66.860048,-2.9904E-05],[66.86344,-2.9389E-05],[66.866832,-3.1451E-05],[66.870224,-3.1967E-05],[66.873616,-3.1967E-05],[66.877008,-2.6811E-05],[66.8804,-2.4748E-05],[66.883792,-2.8357E-05],[66.887184,-2.8873E-05],[66.890576,-2.9389E-05],[66.893968,-2.6811E-05],[66.89736,-2.6811E-05],[66.900752,-2.6295E-05],[66.904144,-2.4233E-05],[66.907536,-3.2482E-05],[66.910928,-3.0935E-05],[66.91432,-2.8357E-05],[66.917712,-3.1967E-05],[66.921104,-2.9389E-05],[66.924496,-3.4029E-05],[66.927888,-3.5576E-05],[66.93128,-2.8357E-05],[66.934672,-2.8873E-05],[66.938064,-3.042E-05],[66.941456,-2.9389E-05],[66.944848,-2.9904E-05],[66.94824,-3.2482E-05],[66.951632,-3.2482E-05],[66.955024,-3.042E-05],[66.958416,-2.9389E-05],[66.961808,-2.6295E-05],[66.9652,-2.8357E-05],[66.968592,-2.8357E-05],[66.971984,-2.7326E-05],[66.975376,-3.1967E-05],[66.978768,-2.6295E-05],[66.98216,-2.6295E-05],[66.985552,-3.2998E-05],[66.988944,-3.0935E-05],[66.992336,-2.9904E-05],[66.995728,-2.7326E-05],[66.99912,-3.042E-05],[67.002512,-3.0935E-05],[67.005904,-2.8873E-05],[67.009296,-3.1967E-05],[67.012688,-3.042E-05],[67.01608,-2.9904E-05],[67.019472,-2.9904E-05],[67.022864,-3.1967E-05],[67.026256,-3.506E-05],[67.029648,-3.1451E-05],[67.03304,-2.5779E-05],[67.036432,-2.7842E-05],[67.039824,-2.8873E-05],[67.043216,-2.7842E-05],[67.046608,-2.9904E-05],[67.05,-2.8357E-05],[67.053392,-2.6811E-05],[67.056784,-2.7326E-05],[67.060176,-2.8357E-05],[67.063568,-2.9389E-05],[67.06696,-2.9904E-05],[67.070352,-2.8357E-05],[67.073744,-2.6295E-05]]}
-{"quant":[67.3402,1.0497],"mems":[[67.25352,-2.7842E-05],[67.256912,-2.5779E-05],[67.260304,-2.9389E-05],[67.263696,-3.1451E-05],[67.267088,-2.9904E-05],[67.27048,-2.9904E-05],[67.273872,-2.5779E-05],[67.277264,-2.5779E-05],[67.280656,-2.9904E-05],[67.284048,-2.7842E-05],[67.28744,-2.9389E-05],[67.290832,-2.9904E-05],[67.294224,-2.5779E-05],[67.297616,-2.7842E-05],[67.301008,-2.7326E-05],[67.3044,-3.2998E-05],[67.307792,-3.7122E-05],[67.311184,-2.7842E-05],[67.314576,-2.9904E-05],[67.317968,-3.0935E-05],[67.32136,-2.9389E-05],[67.324752,-2.8873E-05],[67.328144,-2.5264E-05],[67.331536,-2.8873E-05],[67.334928,-2.9389E-05],[67.33832,-3.042E-05],[67.341712,-3.1967E-05],[67.345104,-2.6811E-05],[67.348496,-2.7326E-05],[67.351888,-3.042E-05],[67.35528,-3.1451E-05],[67.358672,-3.1967E-05],[67.362064,-2.7842E-05],[67.365456,-2.9389E-05],[67.368848,-2.8873E-05],[67.37224,-2.8873E-05],[67.375632,-3.4544E-05],[67.379024,-3.1967E-05],[67.382416,-3.1451E-05],[67.385808,-2.6811E-05],[67.3892,-2.7842E-05],[67.392592,-3.4029E-05],[67.395984,-3.042E-05],[67.399376,-3.0935E-05],[67.402768,-3.042E-05],[67.40616,-2.6811E-05],[67.409552,-2.3717E-05],[67.412944,-2.7326E-05],[67.416336,-3.1967E-05],[67.419728,-3.042E-05],[67.42312,-2.9904E-05],[67.426512,-3.042E-05],[67.429904,-3.2998E-05],[67.433296,-2.9389E-05],[67.436688,-2.8873E-05],[67.44008,-3.0935E-05],[67.443472,-2.8873E-05],[67.446864,-3.0935E-05],[67.450256,-2.6811E-05],[67.453648,-2.7842E-05],[67.45704,-3.7122E-05],[67.460432,-3.4544E-05],[67.463824,-2.8357E-05],[67.467216,-3.0935E-05],[67.470608,-3.1451E-05],[67.474,-2.8357E-05],[67.477439,-3.2998E-05],[67.480877,-2.6295E-05],[67.484316,-2.4233E-05],[67.487755,-3.1967E-05],[67.491193,-2.9904E-05],[67.494632,-3.042E-05],[67.498071,-3.1967E-05],[67.501509,-3.2482E-05],[67.504948,-2.8873E-05],[67.508387,-2.8873E-05],[67.511825,-3.042E-05],[67.515264,-2.7842E-05],[67.518703,-3.4029E-05],[67.522141,-3.4544E-05],[67.52558,-3.1967E-05],[67.529019,-3.0935E-05],[67.532457,-2.8357E-05],[67.535896,-2.9389E-05],[67.539335,-2.8873E-05],[67.542773,-2.8357E-05],[67.546212,-3.0935E-05],[67.549651,-3.0935E-05]]}
-{"quant":[67.8053,-3.1021E-05],"mems":[[67.707829,-2.5264E-05],[67.711268,-2.5264E-05],[67.714707,-2.8357E-05],[67.718145,-3.1967E-05],[67.721584,-3.1967E-05],[67.725023,-2.8873E-05],[67.728461,-3.0935E-05],[67.7319,-3.4029E-05],[67.735339,-3.4544E-05],[67.738777,-3.3513E-05],[67.742216,-2.7842E-05],[67.745655,-2.8357E-05],[67.749093,-3.3513E-05],[67.752532,-3.2998E-05],[67.755971,-3.4029E-05],[67.759409,-3.4544E-05],[67.762848,-3.2998E-05],[67.766287,-3.6091E-05],[67.769725,-3.042E-05],[67.773164,-2.4748E-05],[67.776603,-3.2998E-05],[67.780041,-3.2998E-05],[67.78348,-2.8873E-05],[67.786919,-2.8873E-05],[67.790357,-3.0935E-05],[67.793796,-3.3513E-05],[67.797235,-2.9389E-05],[67.800673,-2.7842E-05],[67.804112,-2.7842E-05],[67.807551,-3.0935E-05],[67.810989,-2.6295E-05],[67.814428,-2.8357E-05],[67.817867,-3.6091E-05],[67.821305,-2.9389E-05],[67.824744,-2.9904E-05],[67.828183,-3.1967E-05],[67.831621,-2.9389E-05],[67.83506,-3.1967E-05],[67.838499,-3.2482E-05],[67.841937,-3.042E-05],[67.845376,-2.6295E-05],[67.848815,-2.9389E-05],[67.852253,-2.8873E-05],[67.855692,-2.7842E-05],[67.859131,-3.4544E-05],[67.862569,-3.1967E-05],[67.866008,-3.4544E-05],[67.869447,-3.506E-05],[67.872885,-3.042E-05],[67.876324,-3.1967E-05],[67.879763,-2.9904E-05],[67.883201,-3.2998E-05],[67.88664,-3.4544E-05],[67.890079,-2.5264E-05],[67.893517,-2.4748E-05],[67.896956,-3.1967E-05],[67.900395,-3.2998E-05],[67.903833,-3.6091E-05],[67.907272,-3.4029E-05],[67.910711,-2.9389E-05],[67.914149,-3.1451E-05],[67.917588,-3.2998E-05],[67.921027,-3.7122E-05],[67.924465,-3.5576E-05],[67.927904,-2.6811E-05],[67.931343,-2.8357E-05],[67.934781,-3.1451E-05],[67.93822,-3.1967E-05],[67.941659,-3.506E-05],[67.945097,-2.8873E-05],[67.948536,-2.6295E-05],[67.951975,-3.042E-05],[67.955413,-2.9389E-05],[67.958852,-2.9904E-05],[67.962291,-2.8357E-05],[67.965729,-2.9389E-05],[67.969168,-3.2482E-05],[67.972607,-3.2998E-05],[67.976045,-3.4029E-05],[67.979484,-2.9389E-05],[67.982923,-2.6811E-05],[67.986361,-2.6811E-05],[67.9898,-2.5779E-05],[67.993239,-3.1967E-05],[67.996677,-3.4544E-05],[68.000116,-2.9904E-05],[68.003555,-2.8357E-05],[68.006993,-3.2482E-05]]}
-{"quant":[68.3907,-2.9303E-05],"mems":[[68.292403,-2.3202E-05],[68.295841,-2.6295E-05],[68.29928,-3.4029E-05],[68.302719,-3.5576E-05],[68.306157,-3.506E-05],[68.309596,-3.1967E-05],[68.313035,-3.1451E-05],[68.316473,-2.9904E-05],[68.319912,-2.9389E-05],[68.323351,-3.2998E-05],[68.326789,-3.1451E-05],[68.330228,-2.6811E-05],[68.333667,-2.8357E-05],[68.337105,-3.042E-05],[68.340544,-3.1451E-05],[68.343983,-2.9904E-05],[68.347421,-2.6295E-05],[68.35086,-3.042E-05],[68.354299,-2.9904E-05],[68.357737,-2.7842E-05],[68.361176,-2.7326E-05],[68.364615,-2.9389E-05],[68.368053,-2.8873E-05],[68.371492,-2.3717E-05],[68.374931,-2.8873E-05],[68.378369,-2.8873E-05],[68.381808,-2.9904E-05],[68.385247,-3.3513E-05],[68.388685,-2.8357E-05],[68.392124,-2.8357E-05],[68.395563,-3.042E-05],[68.399001,-2.8357E-05],[68.40244,-2.9904E-05],[68.405879,-2.6811E-05],[68.409317,-2.3717E-05],[68.412756,-2.9389E-05],[68.416195,-3.0935E-05],[68.419633,-3.042E-05],[68.423072,-3.042E-05],[68.426511,-2.4748E-05],[68.429949,-2.6295E-05],[68.433388,-3.042E-05],[68.436827,-2.8357E-05],[68.440265,-2.9389E-05],[68.443704,-2.7842E-05],[68.447143,-2.7842E-05],[68.450581,-2.9904E-05],[68.45402,-2.7326E-05],[68.457459,-2.9904E-05],[68.460897,-3.2998E-05],[68.464336,-3.2998E-05],[68.467775,-2.6295E-05],[68.471213,-3.042E-05],[68.474652,-3.506E-05],[68.478091,-2.8873E-05],[68.481529,-3.2998E-05],[68.484968,-3.1967E-05],[68.488407,-2.6811E-05],[68.491845,-2.9904E-05],[68.495284,-2.8873E-05],[68.498723,-2.7326E-05],[68.502161,-2.6295E-05],[68.5056,-2.7326E-05],[68.509039,-2.8357E-05],[68.512477,-2.6295E-05],[68.515916,-2.8357E-05],[68.519355,-3.2482E-05],[68.522793,-3.2482E-05],[68.526232,-3.0935E-05],[68.529671,-3.2482E-05],[68.533109,-3.4029E-05],[68.536548,-3.0935E-05],[68.539987,-3.1451E-05],[68.543425,-3.2998E-05],[68.546864,-3.0935E-05],[68.550303,-3.2482E-05],[68.553741,-3.6091E-05],[68.55718,-2.8873E-05],[68.560619,-2.5264E-05],[68.564057,-3.1967E-05],[68.567496,-3.4544E-05],[68.570935,-3.5576E-05],[68.574373,-2.8873E-05],[68.577812,-3.042E-05],[68.581251,-3.2998E-05],[68.584689,-2.8873E-05],[68.588128,-2.7842E-05],[68.591567,-2.6811E-05]]}
-{"quant":[68.8476,-3.1038E-05],"mems":[[68.749745,-2.8873E-05],[68.753184,-3.1451E-05],[68.756623,-3.2998E-05],[68.760061,-3.1967E-05],[68.7635,-3.3513E-05],[68.766939,-3.2998E-05],[68.770377,-3.042E-05],[68.773816,-2.9389E-05],[68.777255,-2.8873E-05],[68.780693,-3.3513E-05],[68.784132,-3.1967E-05],[68.787571,-3.1967E-05],[68.791009,-3.5576E-05],[68.794448,-2.9904E-05],[68.797887,-3.1967E-05],[68.801325,-3.2998E-05],[68.804764,-2.9904E-05],[68.808203,-2.8873E-05],[68.811641,-2.6811E-05],[68.81508,-2.7842E-05],[68.818519,-2.8873E-05],[68.821957,-3.1967E-05],[68.825396,-3.1967E-05],[68.828835,-2.8873E-05],[68.832273,-3.042E-05],[68.835712,-2.9904E-05],[68.839151,-3.1451E-05],[68.842589,-3.2482E-05],[68.846028,-2.5264E-05],[68.849467,-3.0935E-05],[68.852905,-3.1451E-05],[68.856344,-2.5779E-05],[68.859783,-2.9389E-05],[68.863221,-3.4029E-05],[68.86666,-3.4029E-05],[68.870099,-2.9389E-05],[68.873537,-3.2482E-05],[68.876976,-3.0935E-05],[68.880415,-3.3513E-05],[68.883853,-3.7122E-05],[68.887292,-2.7326E-05],[68.890731,-2.9904E-05],[68.894169,-3.1967E-05],[68.897608,-3.1967E-05],[68.901047,-3.4029E-05],[68.904485,-3.4029E-05],[68.907924,-3.0935E-05],[68.911363,-3.0935E-05],[68.914801,-3.2998E-05],[68.91824,-2.8357E-05],[68.921679,-2.9389E-05],[68.925117,-2.7842E-05],[68.928556,-2.5264E-05],[68.931995,-2.9389E-05],[68.935433,-3.2998E-05],[68.938872,-3.506E-05],[68.942311,-3.2998E-05],[68.945749,-2.9389E-05],[68.949188,-2.7326E-05],[68.952627,-3.0935E-05],[68.956065,-3.0935E-05],[68.959504,-2.8357E-05],[68.962943,-3.042E-05],[68.966381,-2.9389E-05],[68.96982,-2.6811E-05],[68.973259,-3.1967E-05],[68.976697,-3.2998E-05],[68.980136,-2.9389E-05],[68.983575,-3.0935E-05],[68.987013,-3.2998E-05],[68.990452,-2.9389E-05],[68.993891,-2.7842E-05],[68.997329,-3.0935E-05],[69.000768,-3.1967E-05],[69.004207,-3.042E-05],[69.007645,-2.6811E-05],[69.011084,-2.7842E-05],[69.014523,-2.9904E-05],[69.017961,-2.7326E-05],[69.0214,-2.7326E-05],[69.024839,-2.9389E-05],[69.028277,-2.8357E-05],[69.031716,-3.042E-05],[69.035155,-3.3513E-05],[69.038593,-3.0935E-05],[69.042032,-3.2998E-05],[69.045471,-3.2482E-05],[69.048909,-3.2482E-05]]}
-{"quant":[69.318,-3.0815E-05],"mems":[[69.220843,-3.3513E-05],[69.224281,-3.5576E-05],[69.22772,-2.6295E-05],[69.231159,-2.8357E-05],[69.234597,-3.1967E-05],[69.238036,-2.7326E-05],[69.241475,-2.7326E-05],[69.244913,-2.7326E-05],[69.248352,-2.7326E-05],[69.251791,-2.8873E-05],[69.255229,-3.2998E-05],[69.258668,-3.0935E-05],[69.262107,-2.9904E-05],[69.265545,-3.0935E-05],[69.268984,-3.2482E-05],[69.272423,-3.042E-05],[69.275861,-3.1451E-05],[69.2793,-3.4544E-05],[69.282739,-2.7842E-05],[69.286177,-2.6811E-05],[69.289616,-2.7326E-05],[69.293055,-2.7326E-05],[69.296493,-3.2998E-05],[69.299932,-3.1967E-05],[69.303371,-3.1451E-05],[69.306809,-2.9904E-05],[69.310248,-2.4748E-05],[69.313687,-2.8357E-05],[69.317125,-2.8357E-05],[69.320564,-2.9904E-05],[69.324003,-3.2998E-05],[69.327441,-2.9904E-05],[69.33088,-3.0935E-05],[69.334319,-3.2482E-05],[69.337757,-3.2482E-05],[69.341196,-2.9389E-05],[69.344635,-3.1451E-05],[69.348073,-3.0935E-05],[69.351512,-2.7842E-05],[69.354951,-3.2482E-05],[69.358389,-2.9904E-05],[69.361828,-2.9389E-05],[69.365267,-3.4029E-05],[69.368705,-3.0935E-05],[69.372144,-3.042E-05],[69.375583,-3.1451E-05],[69.379021,-3.1451E-05],[69.38246,-2.8357E-05],[69.385899,-2.8873E-05],[69.389337,-3.3513E-05],[69.392776,-3.0935E-05],[69.396215,-3.1451E-05],[69.399653,-2.9904E-05],[69.403092,-3.0935E-05],[69.406531,-3.042E-05],[69.409969,-2.5779E-05],[69.413408,-3.2998E-05],[69.416847,-3.4029E-05],[69.420285,-2.8873E-05],[69.423724,-2.9389E-05],[69.427163,-3.1967E-05],[69.430601,-3.2482E-05],[69.43404,-2.9904E-05],[69.437479,-3.1451E-05],[69.440917,-3.4544E-05],[69.444356,-3.042E-05],[69.447795,-2.9904E-05],[69.451233,-3.4544E-05],[69.454672,-3.0935E-05],[69.458111,-2.7326E-05],[69.461549,-2.8873E-05],[69.464988,-2.9389E-05],[69.468427,-2.7326E-05],[69.471865,-2.8873E-05],[69.475304,-2.9389E-05],[69.478743,-2.7842E-05],[69.482181,-3.0935E-05],[69.48562,-2.9904E-05],[69.489059,-2.6811E-05],[69.492497,-3.042E-05],[69.495936,-3.1451E-05],[69.499375,-3.4029E-05],[69.502813,-3.4029E-05],[69.506252,-2.6811E-05],[69.509691,-2.5264E-05],[69.513129,-2.9389E-05],[69.516568,-3.0935E-05],[69.520007,-2.8873E-05]]}
-{"quant":[69.7795,-3.0145E-05],"mems":[[69.681624,-2.9389E-05],[69.685063,-3.2998E-05],[69.688501,-3.1451E-05],[69.69194,-2.9904E-05],[69.695379,-2.9389E-05],[69.698817,-2.7326E-05],[69.702256,-3.1451E-05],[69.705695,-3.1967E-05],[69.709133,-2.6811E-05],[69.712572,-2.3717E-05],[69.716011,-2.9904E-05],[69.719449,-3.042E-05],[69.722888,-3.042E-05],[69.726327,-3.1451E-05],[69.729765,-2.7326E-05],[69.733204,-2.8357E-05],[69.736643,-2.8873E-05],[69.740081,-2.5779E-05],[69.74352,-3.1451E-05],[69.746959,-3.2998E-05],[69.750397,-2.6295E-05],[69.753836,-3.042E-05],[69.757275,-3.3513E-05],[69.760713,-3.4544E-05],[69.764152,-3.042E-05],[69.767591,-2.7842E-05],[69.771029,-3.1967E-05],[69.774468,-2.8357E-05],[69.777907,-2.9904E-05],[69.781345,-3.2998E-05],[69.784784,-2.8357E-05],[69.788223,-2.4233E-05],[69.791661,-2.6295E-05],[69.7951,-2.6811E-05],[69.798539,-3.0935E-05],[69.801977,-2.9389E-05],[69.805416,-2.7842E-05],[69.808855,-3.0935E-05],[69.812293,-3.0935E-05],[69.815732,-3.2482E-05],[69.819171,-3.042E-05],[69.822609,-3.3513E-05],[69.826048,-3.4544E-05],[69.829487,-2.6295E-05],[69.832925,-2.8873E-05],[69.836364,-3.042E-05],[69.839803,-2.8873E-05],[69.843241,-3.2482E-05],[69.84668,-3.0935E-05],[69.850119,-2.8873E-05],[69.853557,-3.0935E-05],[69.856996,-3.2482E-05],[69.860435,-3.1967E-05],[69.863873,-2.8873E-05],[69.867312,-2.8357E-05],[69.870751,-3.0935E-05],[69.874189,-3.0935E-05],[69.877628,-3.1451E-05],[69.881067,-3.1967E-05],[69.884505,-3.042E-05],[69.887944,-3.1967E-05],[69.891383,-2.7842E-05],[69.894821,-3.042E-05],[69.89826,-3.3513E-05],[69.901699,-2.5264E-05],[69.905137,-3.2482E-05],[69.908576,-3.4544E-05],[69.912015,-2.8873E-05],[69.915453,-2.9389E-05],[69.918892,-2.8357E-05],[69.922331,-3.2482E-05],[69.925769,-3.0935E-05],[69.929208,-2.5264E-05],[69.932647,-2.6811E-05],[69.936085,-3.2482E-05],[69.939524,-3.2998E-05],[69.942963,-3.0935E-05],[69.946401,-2.7326E-05],[69.94984,-2.7326E-05],[69.953279,-2.9389E-05],[69.956717,-3.2998E-05],[69.960156,-3.7122E-05],[69.963595,-2.9904E-05],[69.967033,-2.7842E-05],[69.970472,-2.7842E-05],[69.973911,-2.8357E-05],[69.977349,-2.9904E-05],[69.980788,-2.7842E-05]]}
-{"quant":[70.2508,-2.8821E-05],"mems":[[70.152605,-3.042E-05],[70.15604,-3.4029E-05],[70.159475,-3.6607E-05],[70.162909,-3.4544E-05],[70.166344,-2.6811E-05],[70.169779,-2.3202E-05],[70.173213,-2.3717E-05],[70.176648,-2.6295E-05],[70.180083,-3.1967E-05],[70.183517,-2.8357E-05],[70.186952,-2.6295E-05],[70.190387,-2.5779E-05],[70.193821,-2.4748E-05],[70.197256,-3.2482E-05],[70.200691,-3.1967E-05],[70.204125,-2.6811E-05],[70.20756,-2.8357E-05],[70.210995,-2.9904E-05],[70.214429,-3.0935E-05],[70.217864,-3.4029E-05],[70.221299,-3.5576E-05],[70.224733,-3.4029E-05],[70.228168,-3.042E-05],[70.231603,-3.1967E-05],[70.235037,-3.3513E-05],[70.238472,-3.042E-05],[70.241907,-3.042E-05],[70.245341,-3.0935E-05],[70.248776,-3.0935E-05],[70.252211,-2.8873E-05],[70.255645,-2.9904E-05],[70.25908,-2.6295E-05],[70.262515,-2.7842E-05],[70.265949,-3.2482E-05],[70.269384,-3.1451E-05],[70.272819,-3.2482E-05],[70.276253,-2.9904E-05],[70.279688,-3.1451E-05],[70.283123,-2.9389E-05],[70.286557,-2.4748E-05],[70.289992,-2.8357E-05],[70.293427,-2.8357E-05],[70.296861,-2.9904E-05],[70.300296,-3.0935E-05],[70.303731,-2.7842E-05],[70.307165,-2.5779E-05],[70.3106,-2.4233E-05],[70.314035,-2.7326E-05],[70.317469,-2.8873E-05],[70.320904,-3.3513E-05],[70.324339,-3.2998E-05],[70.327773,-2.5779E-05],[70.331208,-2.9904E-05],[70.334643,-2.9904E-05],[70.338077,-2.6811E-05],[70.341512,-2.4748E-05],[70.344947,-2.5779E-05],[70.348381,-2.8873E-05],[70.351816,-2.9904E-05],[70.355251,-3.1451E-05],[70.358685,-2.9904E-05],[70.36212,-3.1967E-05],[70.365555,-2.6811E-05],[70.368989,-2.3717E-05],[70.372424,-3.0935E-05],[70.375859,-3.2482E-05],[70.379293,-3.4029E-05],[70.382728,-3.1451E-05],[70.386163,-2.8357E-05],[70.389597,-2.4748E-05],[70.393032,-2.3202E-05],[70.396467,-2.9389E-05],[70.399901,-2.9389E-05],[70.403336,-2.6811E-05],[70.406771,-2.7326E-05],[70.410205,-3.2482E-05],[70.41364,-3.2482E-05],[70.417075,-2.7326E-05],[70.420509,-3.042E-05],[70.423944,-2.7842E-05],[70.427379,-2.6811E-05],[70.430813,-3.1967E-05],[70.434248,-3.4544E-05],[70.437683,-3.4544E-05],[70.441117,-2.9904E-05],[70.444552,-2.5779E-05],[70.447987,-2.5779E-05],[70.451421,-3.1451E-05]]}
-{"quant":[70.9396,-2.932E-05],"mems":[[70.842973,-2.8357E-05],[70.846408,-2.9389E-05],[70.849843,-2.9389E-05],[70.853277,-3.042E-05],[70.856712,-3.2998E-05],[70.860147,-2.9389E-05],[70.863581,-2.3202E-05],[70.867016,-2.9389E-05],[70.870451,-3.2998E-05],[70.873885,-2.9904E-05],[70.87732,-2.7842E-05],[70.880755,-3.042E-05],[70.884189,-3.1967E-05],[70.887624,-3.0935E-05],[70.891059,-3.042E-05],[70.894493,-2.8873E-05],[70.897928,-2.7326E-05],[70.901363,-3.042E-05],[70.904797,-3.1451E-05],[70.908232,-2.8873E-05],[70.911667,-3.1967E-05],[70.915101,-2.9904E-05],[70.918536,-2.6295E-05],[70.921971,-3.042E-05],[70.925405,-3.0935E-05],[70.92884,-2.5264E-05],[70.932275,-2.8357E-05],[70.935709,-3.042E-05],[70.939144,-3.3513E-05],[70.942579,-3.7122E-05],[70.946013,-3.0935E-05],[70.949448,-2.8873E-05],[70.952883,-2.8357E-05],[70.956317,-2.8357E-05],[70.959752,-2.8357E-05],[70.963187,-3.042E-05],[70.966621,-3.0935E-05],[70.970056,-2.6811E-05],[70.973491,-2.8873E-05],[70.976925,-2.8357E-05],[70.98036,-3.0935E-05],[70.983795,-3.0935E-05],[70.987229,-2.5779E-05],[70.990664,-2.8357E-05],[70.994099,-3.2998E-05],[70.997533,-3.506E-05],[71.000968,-3.1451E-05],[71.004403,-2.8873E-05],[71.007837,-2.3717E-05],[71.011272,-2.3202E-05],[71.014707,-2.9904E-05],[71.018141,-3.042E-05],[71.021576,-2.9904E-05],[71.025011,-2.8357E-05],[71.028445,-2.9389E-05],[71.03188,-2.9389E-05],[71.035315,-2.7326E-05],[71.038749,-2.9389E-05],[71.042184,-2.6811E-05],[71.045619,-2.9389E-05],[71.049053,-3.1451E-05],[71.052488,-3.042E-05],[71.055923,-3.5576E-05],[71.059357,-3.506E-05],[71.062792,-2.7842E-05],[71.066227,-2.6295E-05],[71.069661,-3.2482E-05],[71.073096,-2.7842E-05],[71.076531,-2.5779E-05],[71.079965,-3.042E-05],[71.0834,-2.8873E-05],[71.086835,-3.2998E-05],[71.090269,-3.2998E-05],[71.093704,-2.7842E-05],[71.097139,-3.1451E-05],[71.100573,-3.5576E-05],[71.104008,-3.506E-05],[71.107443,-2.8873E-05],[71.110877,-2.6295E-05],[71.114312,-3.1451E-05],[71.117747,-3.1451E-05],[71.121181,-2.8873E-05],[71.124616,-2.8873E-05],[71.128051,-2.8357E-05],[71.131485,-3.1451E-05],[71.13492,-2.8873E-05],[71.138355,-2.7842E-05],[71.141789,-3.4544E-05]]}
-{"quant":[71.4016,-2.944E-05],"mems":[[71.303219,-3.4544E-05],[71.306653,-3.042E-05],[71.310088,-3.3513E-05],[71.313523,-3.4029E-05],[71.316957,-2.9389E-05],[71.320392,-2.6811E-05],[71.323827,-2.6811E-05],[71.327261,-2.9389E-05],[71.330696,-2.7842E-05],[71.334131,-2.9904E-05],[71.337565,-2.9904E-05],[71.341,-2.8873E-05],[71.344435,-2.9389E-05],[71.347869,-2.4233E-05],[71.351304,-3.042E-05],[71.354739,-3.4029E-05],[71.358173,-3.1967E-05],[71.361608,-3.2998E-05],[71.365043,-2.8357E-05],[71.368477,-2.8873E-05],[71.371912,-3.2482E-05],[71.375347,-3.0935E-05],[71.378781,-3.1451E-05],[71.382216,-2.9904E-05],[71.385651,-2.8357E-05],[71.389085,-2.7842E-05],[71.39252,-2.4233E-05],[71.395955,-2.9904E-05],[71.399389,-2.9389E-05],[71.402824,-2.6295E-05],[71.406259,-2.9389E-05],[71.409693,-2.7326E-05],[71.413128,-3.3513E-05],[71.416563,-3.2998E-05],[71.419997,-2.7842E-05],[71.423432,-2.7842E-05],[71.426867,-2.5264E-05],[71.430301,-3.042E-05],[71.433736,-3.2482E-05],[71.437171,-3.042E-05],[71.440605,-2.7326E-05],[71.44404,-2.6811E-05],[71.447475,-3.2998E-05],[71.450909,-2.8873E-05],[71.454344,-2.8873E-05],[71.457779,-3.0935E-05],[71.461213,-2.9904E-05],[71.464648,-3.0935E-05],[71.468083,-2.6295E-05],[71.471517,-2.5779E-05],[71.474952,-3.1451E-05],[71.478387,-3.5576E-05],[71.481821,-3.2482E-05],[71.485256,-3.1451E-05],[71.488691,-2.9389E-05],[71.492125,-2.6295E-05],[71.49556,-2.6811E-05],[71.498995,-2.7842E-05],[71.502429,-2.9389E-05],[71.505864,-2.7842E-05],[71.509299,-2.9904E-05],[71.512733,-2.8873E-05],[71.516168,-3.2998E-05],[71.519603,-3.042E-05],[71.523037,-2.4233E-05],[71.526472,-2.7326E-05],[71.529907,-2.8873E-05],[71.533341,-3.0935E-05],[71.536776,-2.8357E-05],[71.540211,-2.8357E-05],[71.543645,-2.6295E-05],[71.54708,-2.6811E-05],[71.550515,-2.8873E-05],[71.553949,-2.7326E-05],[71.557384,-3.1451E-05],[71.560819,-2.8357E-05],[71.564253,-2.6811E-05],[71.567688,-2.9904E-05],[71.571123,-2.9389E-05],[71.574557,-2.8873E-05],[71.577992,-3.2998E-05],[71.581427,-3.2998E-05],[71.584861,-2.5779E-05],[71.588296,-3.042E-05],[71.591731,-3.6607E-05],[71.595165,-3.4544E-05],[71.5986,-2.8873E-05],[71.602035,-2.7842E-05]]}
-{"quant":[71.8848,-2.8856E-05],"mems":[[71.787507,-2.7842E-05],[71.790941,-2.7842E-05],[71.794376,-2.6295E-05],[71.797811,-2.9389E-05],[71.801245,-3.4029E-05],[71.80468,-3.1967E-05],[71.808115,-3.2482E-05],[71.811549,-3.506E-05],[71.814984,-3.5576E-05],[71.818419,-3.2482E-05],[71.821853,-2.9389E-05],[71.825288,-2.7842E-05],[71.828723,-2.8873E-05],[71.832157,-3.1451E-05],[71.835592,-3.042E-05],[71.839027,-3.3513E-05],[71.842461,-3.1451E-05],[71.845896,-2.9904E-05],[71.849331,-3.2482E-05],[71.852765,-3.042E-05],[71.8562,-3.042E-05],[71.859635,-2.9389E-05],[71.863069,-2.5779E-05],[71.866504,-2.8873E-05],[71.869939,-3.0935E-05],[71.873373,-2.6811E-05],[71.876808,-2.8357E-05],[71.880243,-3.042E-05],[71.883677,-2.9904E-05],[71.887112,-2.9389E-05],[71.890547,-2.8357E-05],[71.893981,-2.8357E-05],[71.897416,-2.8873E-05],[71.900851,-2.7326E-05],[71.904285,-2.3202E-05],[71.90772,-3.042E-05],[71.911155,-3.3513E-05],[71.914589,-2.8873E-05],[71.918024,-3.0935E-05],[71.921459,-2.9904E-05],[71.924893,-2.6295E-05],[71.928328,-2.4233E-05],[71.931763,-2.9904E-05],[71.935197,-3.1451E-05],[71.938632,-2.8357E-05],[71.942067,-2.6295E-05],[71.945501,-2.3202E-05],[71.948936,-2.8873E-05],[71.952371,-3.1451E-05],[71.955805,-2.7842E-05],[71.95924,-2.4748E-05],[71.962675,-2.7326E-05],[71.966109,-2.9389E-05],[71.969544,-2.7326E-05],[71.972979,-3.2998E-05],[71.976413,-3.506E-05],[71.979848,-3.0935E-05],[71.983283,-2.9904E-05],[71.986717,-3.0935E-05],[71.990152,-3.3513E-05],[71.993587,-3.1967E-05],[71.997021,-2.6811E-05],[72.000456,-2.7326E-05],[72.003891,-2.6295E-05],[72.007325,-2.6295E-05],[72.01076,-3.1967E-05],[72.014195,-3.2998E-05],[72.017629,-3.1451E-05],[72.021064,-2.6811E-05],[72.024499,-2.7326E-05],[72.027933,-2.7842E-05],[72.031368,-2.7326E-05],[72.034803,-2.9389E-05],[72.038237,-2.7326E-05],[72.041672,-2.6295E-05],[72.045107,-2.5264E-05],[72.048541,-2.8873E-05],[72.051976,-3.1451E-05],[72.055411,-2.9389E-05],[72.058845,-2.8873E-05],[72.06228,-2.4233E-05],[72.065715,-2.4233E-05],[72.069149,-2.5264E-05],[72.072584,-3.042E-05],[72.076019,-3.3513E-05],[72.079453,-2.9904E-05],[72.082888,-3.042E-05],[72.086323,-3.1451E-05]]}
-{"quant":[72.3569,-2.9423E-05],"mems":[[72.258056,-2.6811E-05],[72.261491,-3.2482E-05],[72.264925,-2.5264E-05],[72.26836,-2.5779E-05],[72.271795,-2.9389E-05],[72.275229,-3.042E-05],[72.278664,-2.8873E-05],[72.282099,-2.3202E-05],[72.285533,-2.7326E-05],[72.288968,-3.0935E-05],[72.292403,-3.1451E-05],[72.295837,-2.9904E-05],[72.299272,-2.3202E-05],[72.302707,-2.6811E-05],[72.306141,-3.042E-05],[72.309576,-2.6295E-05],[72.313011,-3.042E-05],[72.316445,-3.1967E-05],[72.31988,-2.7842E-05],[72.323315,-3.1451E-05],[72.326749,-3.0935E-05],[72.330184,-3.042E-05],[72.333619,-2.7842E-05],[72.337053,-2.8873E-05],[72.340488,-3.4544E-05],[72.343923,-2.4748E-05],[72.347357,-2.9904E-05],[72.350792,-3.6091E-05],[72.354227,-3.042E-05],[72.357661,-2.9389E-05],[72.361096,-2.9389E-05],[72.364531,-2.9389E-05],[72.367965,-2.6295E-05],[72.3714,-3.0935E-05],[72.374835,-3.2998E-05],[72.378269,-3.1451E-05],[72.381704,-3.6091E-05],[72.385139,-3.1967E-05],[72.388573,-2.6295E-05],[72.392008,-3.0935E-05],[72.395443,-3.1967E-05],[72.398877,-2.7842E-05],[72.402312,-2.8873E-05],[72.405747,-2.8357E-05],[72.409181,-2.6295E-05],[72.412616,-3.042E-05],[72.416051,-3.1451E-05],[72.419485,-2.7842E-05],[72.42292,-2.4748E-05],[72.426355,-2.6295E-05],[72.429789,-2.8357E-05],[72.433224,-2.8873E-05],[72.436659,-3.2998E-05],[72.440093,-2.9389E-05],[72.443528,-2.7326E-05],[72.446963,-2.6811E-05],[72.450397,-2.6295E-05],[72.453832,-3.2998E-05],[72.457267,-3.042E-05],[72.460701,-2.8357E-05],[72.464136,-3.1451E-05],[72.467571,-3.0935E-05],[72.471005,-3.0935E-05],[72.47444,-3.1451E-05],[72.477875,-3.2482E-05],[72.481309,-2.7842E-05],[72.484744,-2.3717E-05],[72.488179,-2.4748E-05],[72.491613,-2.8357E-05],[72.495048,-2.7842E-05],[72.498483,-2.9389E-05],[72.501917,-3.1967E-05],[72.505352,-2.8357E-05],[72.508787,-3.0935E-05],[72.512221,-3.1451E-05],[72.515656,-3.506E-05],[72.519091,-3.506E-05],[72.522525,-2.7326E-05],[72.52596,-2.6811E-05],[72.529395,-2.7842E-05],[72.532829,-2.9904E-05],[72.536264,-2.9389E-05],[72.539699,-2.9904E-05],[72.543133,-2.8873E-05],[72.546568,-2.8873E-05],[72.550003,-3.1451E-05],[72.553437,-3.0935E-05],[72.556872,-2.9904E-05],[72.560307,-2.8357E-05]]}
-{"quant":[72.8116,-2.994E-05],"mems":[[72.714216,-3.1451E-05],[72.717767,-3.6091E-05],[72.721317,-3.4544E-05],[72.724868,-2.8357E-05],[72.728419,-2.7842E-05],[72.731969,-3.1451E-05],[72.73552,-3.2998E-05],[72.739071,-3.042E-05],[72.742621,-2.7842E-05],[72.746172,-3.042E-05],[72.749723,-2.9389E-05],[72.753273,-3.0935E-05],[72.756824,-3.6091E-05],[72.760375,-3.0935E-05],[72.763925,-2.6811E-05],[72.767476,-2.7842E-05],[72.771027,-2.9389E-05],[72.774577,-3.1967E-05],[72.778128,-2.9904E-05],[72.781679,-2.7842E-05],[72.785229,-2.8357E-05],[72.78878,-2.9904E-05],[72.792331,-3.2482E-05],[72.795881,-3.4029E-05],[72.799432,-3.2998E-05],[72.802983,-2.9904E-05],[72.806533,-2.8873E-05],[72.810084,-3.0935E-05],[72.813635,-3.3513E-05],[72.817185,-3.042E-05],[72.820736,-2.7842E-05],[72.824287,-3.0935E-05],[72.827837,-2.8357E-05],[72.831388,-2.6295E-05],[72.834939,-3.0935E-05],[72.838489,-2.9904E-05],[72.84204,-2.5779E-05],[72.845591,-2.6811E-05],[72.849141,-2.9904E-05],[72.852692,-3.1451E-05],[72.856243,-3.4544E-05],[72.859793,-3.4029E-05],[72.863344,-2.9904E-05],[72.866895,-3.0935E-05],[72.870445,-2.5779E-05],[72.873996,-2.5779E-05],[72.877547,-3.0935E-05],[72.881097,-2.6295E-05],[72.884648,-3.042E-05],[72.888199,-3.4029E-05],[72.891749,-3.1451E-05],[72.8953,-3.2482E-05],[72.898851,-3.042E-05],[72.902401,-3.1967E-05],[72.905952,-3.042E-05],[72.909503,-2.6811E-05],[72.913053,-2.9904E-05],[72.916604,-2.8357E-05],[72.920155,-2.7842E-05],[72.923705,-2.7326E-05],[72.927256,-2.5264E-05],[72.930807,-2.7326E-05],[72.934357,-2.9389E-05],[72.937908,-2.9904E-05],[72.941459,-2.8357E-05],[72.945009,-3.1451E-05],[72.94856,-3.2482E-05],[72.952111,-2.9389E-05],[72.955661,-3.1451E-05],[72.959212,-3.042E-05],[72.962763,-3.042E-05],[72.966313,-2.9389E-05],[72.969864,-3.1451E-05],[72.973415,-3.2998E-05],[72.976965,-2.6811E-05],[72.980516,-3.1451E-05],[72.984067,-3.3513E-05],[72.987617,-2.9389E-05],[72.991168,-2.6295E-05],[72.994719,-2.8873E-05],[72.998269,-3.1451E-05],[73.00182,-3.1451E-05],[73.005371,-3.2482E-05],[73.008921,-2.6295E-05],[73.012472,-2.8357E-05]]}
-{"quant":[73.3678,-3.026E-05],"mems":[[73.26812,-3.2998E-05],[73.271671,-3.3513E-05],[73.275221,-2.7326E-05],[73.278772,-2.9904E-05],[73.282323,-3.506E-05],[73.285873,-3.1451E-05],[73.289424,-3.5576E-05],[73.292975,-3.3513E-05],[73.296525,-3.042E-05],[73.300076,-3.1451E-05],[73.303627,-3.2482E-05],[73.307177,-3.2482E-05],[73.310728,-3.4544E-05],[73.314279,-3.4029E-05],[73.317829,-2.7326E-05],[73.32138,-2.7842E-05],[73.324931,-2.8357E-05],[73.328481,-2.8873E-05],[73.332032,-2.9389E-05],[73.335583,-2.7842E-05],[73.339133,-3.042E-05],[73.342684,-3.1967E-05],[73.346235,-3.0935E-05],[73.349785,-2.4748E-05],[73.353336,-2.4748E-05],[73.356887,-3.3513E-05],[73.360437,-3.1967E-05],[73.363988,-3.042E-05],[73.367539,-3.5576E-05],[73.371089,-3.1967E-05],[73.37464,-2.7842E-05],[73.378191,-2.5779E-05],[73.381741,-2.6811E-05],[73.385292,-3.0935E-05],[73.388843,-2.7842E-05],[73.392393,-2.8873E-05],[73.395944,-3.4029E-05],[73.399495,-3.3513E-05],[73.403045,-2.9904E-05],[73.406596,-2.8357E-05],[73.410147,-3.042E-05],[73.413697,-3.2482E-05],[73.417248,-3.3513E-05],[73.420799,-3.2482E-05],[73.424349,-2.8873E-05],[73.4279,-2.7842E-05],[73.431451,-2.8873E-05],[73.435001,-2.6811E-05],[73.438552,-2.8357E-05],[73.442103,-2.9904E-05],[73.445653,-2.9904E-05],[73.449204,-3.1967E-05],[73.452755,-2.9904E-05],[73.456305,-2.9389E-05],[73.459856,-3.2998E-05],[73.463407,-3.2998E-05],[73.466957,-3.2482E-05],[73.470508,-3.2482E-05],[73.474059,-3.506E-05],[73.477609,-3.2482E-05],[73.48116,-2.8873E-05],[73.484711,-3.0935E-05],[73.488261,-2.7842E-05],[73.491812,-2.7326E-05],[73.495363,-3.1451E-05],[73.498913,-3.4029E-05],[73.502464,-3.1451E-05],[73.506015,-2.8873E-05],[73.509565,-3.042E-05],[73.513116,-2.9389E-05],[73.516667,-2.9389E-05],[73.520217,-3.1451E-05],[73.523768,-3.4029E-05],[73.527319,-3.2998E-05],[73.530869,-2.8357E-05],[73.53442,-2.8873E-05],[73.537971,-3.1967E-05],[73.541521,-3.0935E-05],[73.545072,-3.2482E-05],[73.548623,-3.4544E-05],[73.552173,-3.042E-05],[73.555724,-3.042E-05],[73.559275,-3.4029E-05],[73.562825,-3.0935E-05],[73.566376,-2.9389E-05],[73.569927,-2.9904E-05]]}
-{"quant":[73.8287,-2.9165E-05],"mems":[[73.729707,-2.9389E-05],[73.733257,-2.6811E-05],[73.736808,-2.5779E-05],[73.740359,-2.7842E-05],[73.743909,-3.042E-05],[73.74746,-3.0935E-05],[73.751011,-2.9389E-05],[73.754561,-3.042E-05],[73.758112,-3.0935E-05],[73.761663,-3.1967E-05],[73.765213,-3.042E-05],[73.768764,-3.1451E-05],[73.772315,-3.042E-05],[73.775865,-3.1451E-05],[73.779416,-3.0935E-05],[73.782967,-2.5779E-05],[73.786517,-3.2998E-05],[73.790068,-3.0935E-05],[73.793619,-2.6811E-05],[73.797169,-2.7842E-05],[73.80072,-2.6811E-05],[73.804271,-3.1451E-05],[73.807821,-2.9389E-05],[73.811372,-3.042E-05],[73.814923,-3.1451E-05],[73.818473,-2.7326E-05],[73.822024,-2.5779E-05],[73.825575,-2.7842E-05],[73.829125,-2.9904E-05],[73.832676,-2.8357E-05],[73.836227,-2.7842E-05],[73.839777,-2.7326E-05],[73.843328,-2.6295E-05],[73.846879,-3.1451E-05],[73.850429,-3.4544E-05],[73.85398,-3.1451E-05],[73.857531,-2.7326E-05],[73.861081,-2.4748E-05],[73.864632,-2.8873E-05],[73.868183,-3.2482E-05],[73.871733,-2.7326E-05],[73.875284,-2.6295E-05],[73.878835,-2.5779E-05],[73.882385,-2.7842E-05],[73.885936,-3.1451E-05],[73.889487,-2.6295E-05],[73.893037,-3.0935E-05],[73.896588,-3.4544E-05],[73.900139,-2.9904E-05],[73.903689,-2.5779E-05],[73.90724,-2.7842E-05],[73.910791,-3.1451E-05],[73.914341,-2.8357E-05],[73.917892,-3.3513E-05],[73.921443,-3.2482E-05],[73.924993,-2.5264E-05],[73.928544,-3.042E-05],[73.932095,-2.8873E-05],[73.935645,-2.9389E-05],[73.939196,-3.2482E-05],[73.942747,-2.8873E-05],[73.946297,-2.8357E-05],[73.949848,-2.7842E-05],[73.953399,-2.6811E-05],[73.956949,-2.7326E-05],[73.9605,-2.9389E-05],[73.964051,-2.8873E-05],[73.967601,-2.8357E-05],[73.971152,-3.1451E-05],[73.974703,-3.4544E-05],[73.978253,-3.4544E-05],[73.981804,-3.042E-05],[73.985355,-3.1451E-05],[73.988905,-2.5779E-05],[73.992456,-2.6811E-05],[73.996007,-3.5576E-05],[73.999557,-3.3513E-05],[74.003108,-3.2998E-05],[74.006659,-2.9389E-05],[74.010209,-3.042E-05],[74.01376,-2.9904E-05],[74.017311,-2.9904E-05],[74.020861,-3.2998E-05],[74.024412,-2.6295E-05],[74.027963,-2.5779E-05],[74.031513,-2.8357E-05]]}
-{"quant":[74.2831,-2.8821E-05],"mems":[[74.184192,-2.9904E-05],[74.187743,-2.9904E-05],[74.191293,-3.042E-05],[74.194844,-3.2482E-05],[74.198395,-2.9904E-05],[74.201945,-2.9904E-05],[74.205496,-3.5576E-05],[74.209047,-3.1451E-05],[74.212597,-2.7842E-05],[74.216148,-3.1967E-05],[74.219699,-3.2998E-05],[74.223249,-3.2998E-05],[74.2268,-2.8873E-05],[74.230351,-2.9389E-05],[74.233901,-3.042E-05],[74.237452,-3.0935E-05],[74.241003,-3.0935E-05],[74.244553,-2.5264E-05],[74.248104,-2.6811E-05],[74.251655,-2.8873E-05],[74.255205,-3.1451E-05],[74.258756,-3.1967E-05],[74.262307,-2.7842E-05],[74.265857,-3.2482E-05],[74.269408,-3.4544E-05],[74.272959,-2.9904E-05],[74.276509,-3.042E-05],[74.28006,-3.042E-05],[74.283611,-3.0935E-05],[74.287161,-3.4029E-05],[74.290712,-3.1451E-05],[74.294263,-2.6811E-05],[74.297813,-2.6811E-05],[74.301364,-2.7842E-05],[74.304915,-2.7326E-05],[74.308465,-2.4748E-05],[74.312016,-2.3202E-05],[74.315567,-2.5264E-05],[74.319117,-2.8873E-05],[74.322668,-2.9904E-05],[74.326219,-2.6811E-05],[74.329769,-2.8357E-05],[74.33332,-3.0935E-05],[74.336871,-2.9389E-05],[74.340421,-3.2998E-05],[74.343972,-3.1967E-05],[74.347523,-2.8357E-05],[74.351073,-2.8873E-05],[74.354624,-2.5264E-05],[74.358175,-2.7842E-05],[74.361725,-3.042E-05],[74.365276,-3.042E-05],[74.368827,-3.2998E-05],[74.372377,-3.0935E-05],[74.375928,-2.9904E-05],[74.379479,-2.7842E-05],[74.383029,-2.4748E-05],[74.38658,-2.9389E-05],[74.390131,-3.1967E-05],[74.393681,-2.4748E-05],[74.397232,-2.5779E-05],[74.400783,-2.9904E-05],[74.404333,-2.8873E-05],[74.407884,-3.2482E-05],[74.411435,-3.2482E-05],[74.414985,-3.2482E-05],[74.418536,-2.7326E-05],[74.422087,-2.4233E-05],[74.425637,-3.4544E-05],[74.429188,-3.2998E-05],[74.432739,-3.042E-05],[74.436289,-3.1451E-05],[74.43984,-2.6295E-05],[74.443391,-3.1451E-05],[74.446941,-3.6607E-05],[74.450492,-3.1967E-05],[74.454043,-3.0935E-05],[74.457593,-3.0935E-05],[74.461144,-2.5264E-05],[74.464695,-2.7326E-05],[74.468245,-3.2998E-05],[74.471796,-3.042E-05],[74.475347,-2.8873E-05],[74.478897,-3.1451E-05],[74.482448,-2.9904E-05],[74.485999,-3.3513E-05]]}
-{"quant":[74.7455,-3.0526E-05],"mems":[[74.645779,-2.9904E-05],[74.649329,-2.9389E-05],[74.65288,-2.9389E-05],[74.656431,-2.9904E-05],[74.659981,-3.1451E-05],[74.663532,-2.7842E-05],[74.667083,-2.8873E-05],[74.670633,-2.7842E-05],[74.674184,-3.0935E-05],[74.677735,-3.506E-05],[74.681285,-3.042E-05],[74.684836,-3.0935E-05],[74.688387,-2.8357E-05],[74.691937,-2.6295E-05],[74.695488,-3.042E-05],[74.699039,-3.042E-05],[74.702589,-2.8357E-05],[74.70614,-2.6295E-05],[74.709691,-2.8357E-05],[74.713241,-3.2998E-05],[74.716792,-2.9904E-05],[74.720343,-2.7842E-05],[74.723893,-2.5264E-05],[74.727444,-2.4233E-05],[74.730995,-3.3513E-05],[74.734545,-3.2482E-05],[74.738096,-2.6295E-05],[74.741647,-2.9389E-05],[74.745197,-2.8873E-05],[74.748748,-2.8873E-05],[74.752299,-2.9904E-05],[74.755849,-3.1451E-05],[74.7594,-3.506E-05],[74.762951,-3.2998E-05],[74.766501,-3.1967E-05],[74.770052,-2.9904E-05],[74.773603,-2.8357E-05],[74.777153,-3.0935E-05],[74.780704,-2.9389E-05],[74.784255,-2.8357E-05],[74.787805,-2.9389E-05],[74.791356,-2.9389E-05],[74.794907,-3.042E-05],[74.798457,-3.2482E-05],[74.802008,-3.4029E-05],[74.805559,-3.1967E-05],[74.809109,-2.9389E-05],[74.81266,-2.9904E-05],[74.816211,-2.8873E-05],[74.819761,-2.9904E-05],[74.823312,-3.1451E-05],[74.826863,-2.8357E-05],[74.830413,-3.042E-05],[74.833964,-2.9904E-05],[74.837515,-2.8357E-05],[74.841065,-3.2998E-05],[74.844616,-3.0935E-05],[74.848167,-2.9904E-05],[74.851717,-2.7842E-05],[74.855268,-2.6811E-05],[74.858819,-3.042E-05],[74.862369,-2.9389E-05],[74.86592,-3.2482E-05],[74.869471,-3.2482E-05],[74.873021,-3.0935E-05],[74.876572,-3.1451E-05],[74.880123,-3.0935E-05],[74.883673,-3.1451E-05],[74.887224,-3.042E-05],[74.890775,-2.7842E-05],[74.894325,-2.3202E-05],[74.897876,-2.8873E-05],[74.901427,-3.1967E-05],[74.904977,-2.9904E-05],[74.908528,-3.1451E-05],[74.912079,-2.9389E-05],[74.915629,-2.7326E-05],[74.91918,-3.042E-05],[74.922731,-3.1967E-05],[74.926281,-3.1451E-05],[74.929832,-3.1967E-05],[74.933383,-2.8873E-05],[74.936933,-2.8873E-05],[74.940484,-2.9389E-05],[74.944035,-3.2482E-05],[74.947585,-3.5576E-05]]}
-{"quant":[75.202,0.22694],"mems":[[75.189031,-2.9904E-05],[75.192581,-2.8873E-05],[75.196132,-2.9904E-05],[75.199683,-2.8873E-05],[75.203233,-2.8357E-05],[75.206784,-3.0935E-05],[75.210335,-3.042E-05],[75.213885,-3.042E-05],[75.217436,-3.0935E-05],[75.220987,-3.042E-05],[75.224537,-2.8357E-05],[75.228088,-2.4748E-05],[75.231639,-2.8357E-05],[75.235189,-2.9389E-05],[75.23874,-2.7326E-05],[75.242291,-2.6295E-05],[75.245841,-2.4233E-05],[75.249392,-2.8873E-05],[75.252943,-3.2482E-05],[75.256493,-3.2998E-05],[75.260044,-2.8357E-05],[75.263595,-2.217E-05],[75.267145,-2.7326E-05],[75.270696,-2.7842E-05],[75.274247,-2.6295E-05],[75.277797,-2.217E-05],[75.281348,-2.0624E-05],[75.284899,-2.6811E-05],[75.288449,-2.6295E-05],[75.292,-2.9389E-05],[75.295327,-2.8357E-05],[75.298653,-2.6811E-05],[75.30198,-2.9904E-05],[75.305307,-2.9389E-05],[75.308633,-3.0935E-05],[75.31196,-3.042E-05],[75.315287,-2.9389E-05],[75.318613,-2.8357E-05],[75.32194,-2.8873E-05],[75.325267,-2.7842E-05],[75.328593,-2.7326E-05],[75.33192,-3.1451E-05],[75.335247,-3.2482E-05],[75.338573,-3.2998E-05],[75.3419,-2.8873E-05],[75.345227,-3.0935E-05],[75.348553,-3.5576E-05],[75.35188,-2.9389E-05],[75.355207,-2.7326E-05],[75.358533,-2.6811E-05],[75.36186,-2.5779E-05],[75.365187,-2.3202E-05],[75.368513,-2.6295E-05],[75.37184,-3.2482E-05],[75.375167,-3.0935E-05],[75.378493,-3.042E-05],[75.38182,-2.9904E-05],[75.385147,-2.9904E-05],[75.388473,-3.042E-05],[75.3918,-3.042E-05],[75.395127,-2.7842E-05],[75.398453,-2.6811E-05],[75.40178,-2.7842E-05],[75.405107,-2.9904E-05],[75.408433,-3.4029E-05],[75.41176,-3.042E-05],[75.415087,-3.4544E-05],[75.418413,-3.3513E-05],[75.42174,-3.042E-05],[75.425067,-3.6091E-05],[75.428393,-3.2482E-05],[75.43172,-3.042E-05],[75.435047,-3.042E-05],[75.438373,-2.6295E-05],[75.4417,-2.7326E-05],[75.445027,-2.9904E-05],[75.448353,-3.042E-05],[75.45168,-3.042E-05],[75.455007,-3.2998E-05],[75.458333,-2.8873E-05],[75.46166,-2.6295E-05],[75.464987,-2.8873E-05],[75.468313,-2.7842E-05],[75.47164,-2.8357E-05],[75.474967,-3.2482E-05],[75.478293,-3.3513E-05],[75.48162,-2.8873E-05],[75.484947,-2.6811E-05]]}
-{"quant":[75.6603,-2.9505E-05],"mems":[[75.56146,-3.1967E-05],[75.564787,-3.5576E-05],[75.568113,-3.042E-05],[75.57144,-2.9904E-05],[75.574767,-2.8873E-05],[75.578093,-3.2998E-05],[75.58142,-3.2998E-05],[75.584747,-2.9904E-05],[75.588073,-3.0935E-05],[75.5914,-2.9389E-05],[75.594727,-2.8357E-05],[75.598053,-2.9389E-05],[75.60138,-2.9904E-05],[75.604707,-2.7842E-05],[75.608033,-2.8873E-05],[75.61136,-2.6295E-05],[75.614687,-2.4748E-05],[75.618013,-2.9904E-05],[75.62134,-2.5779E-05],[75.624667,-2.8873E-05],[75.627993,-3.3513E-05],[75.63132,-2.7326E-05],[75.634647,-2.7326E-05],[75.637973,-2.4233E-05],[75.6413,-2.6295E-05],[75.644627,-3.1451E-05],[75.647953,-2.6295E-05],[75.65128,-2.7842E-05],[75.654607,-2.6811E-05],[75.657933,-2.5264E-05],[75.66126,-3.1451E-05],[75.664587,-2.7842E-05],[75.667913,-2.5264E-05],[75.67124,-3.042E-05],[75.674567,-2.9389E-05],[75.677893,-3.1451E-05],[75.68122,-3.2482E-05],[75.684547,-2.9389E-05],[75.687873,-2.6811E-05],[75.6912,-2.4233E-05],[75.694527,-2.7326E-05],[75.697853,-2.9904E-05],[75.70118,-2.9389E-05],[75.704507,-3.1451E-05],[75.707833,-2.8873E-05],[75.71116,-2.7842E-05],[75.714487,-3.042E-05],[75.717813,-3.0935E-05],[75.72114,-3.0935E-05],[75.724467,-2.9389E-05],[75.727793,-2.9389E-05],[75.73112,-2.9389E-05],[75.734447,-2.9389E-05],[75.737773,-3.1967E-05],[75.7411,-2.6811E-05],[75.744427,-2.6295E-05],[75.747753,-3.042E-05],[75.75108,-3.0935E-05],[75.754407,-3.1451E-05],[75.757733,-2.9904E-05],[75.76106,-3.3513E-05],[75.764387,-3.042E-05],[75.767713,-2.3717E-05],[75.77104,-2.6811E-05],[75.774367,-2.9389E-05],[75.777693,-2.6295E-05],[75.78102,-2.9389E-05],[75.784347,-2.8873E-05],[75.787673,-2.7842E-05],[75.791,-2.9904E-05],[75.794327,-2.6811E-05],[75.797653,-2.7842E-05],[75.80098,-2.7842E-05],[75.804307,-3.0935E-05],[75.807633,-3.2482E-05],[75.81096,-2.8357E-05],[75.814287,-2.8873E-05],[75.817613,-2.7842E-05],[75.82094,-2.8873E-05],[75.824267,-3.1451E-05],[75.827593,-2.4748E-05],[75.83092,-2.3717E-05],[75.834247,-3.042E-05],[75.837573,-3.2998E-05],[75.8409,-2.9389E-05],[75.844227,-2.6295E-05],[75.847553,-2.6295E-05],[75.85088,-2.9389E-05],[75.854207,-3.1451E-05],[75.857533,-2.8357E-05],[75.86086,-2.7842E-05]]}
-{"quant":[76.1657,-2.9555E-05],"mems":[[76.067113,-2.8357E-05],[76.07044,-2.7842E-05],[76.073767,-3.3513E-05],[76.077093,-2.8873E-05],[76.08042,-2.6811E-05],[76.083747,-3.1451E-05],[76.087073,-3.0935E-05],[76.0904,-3.3513E-05],[76.093727,-3.1967E-05],[76.097053,-2.7842E-05],[76.10038,-2.9389E-05],[76.103707,-2.9904E-05],[76.107033,-2.9904E-05],[76.11036,-3.0935E-05],[76.113687,-3.1451E-05],[76.117013,-3.042E-05],[76.12034,-2.9389E-05],[76.123667,-3.1967E-05],[76.126993,-3.2998E-05],[76.13032,-3.042E-05],[76.133647,-2.7326E-05],[76.136973,-2.5264E-05],[76.1403,-2.8357E-05],[76.143627,-3.042E-05],[76.146953,-3.042E-05],[76.15028,-3.042E-05],[76.153607,-3.2482E-05],[76.156933,-3.1451E-05],[76.16026,-2.8357E-05],[76.163587,-2.9389E-05],[76.166913,-2.7326E-05],[76.17024,-2.8357E-05],[76.173567,-3.2998E-05],[76.176893,-3.0935E-05],[76.18022,-2.9904E-05],[76.183547,-2.9904E-05],[76.186873,-2.6811E-05],[76.1902,-2.9389E-05],[76.193527,-2.8873E-05],[76.196853,-2.3717E-05],[76.20018,-2.8873E-05],[76.203507,-3.0935E-05],[76.206833,-2.9389E-05],[76.21016,-2.6811E-05],[76.213487,-2.4748E-05],[76.216813,-3.042E-05],[76.22014,-3.2482E-05],[76.223467,-3.2998E-05],[76.226793,-3.1967E-05],[76.23012,-2.5779E-05],[76.233447,-2.7842E-05],[76.236773,-2.9904E-05],[76.2401,-2.7326E-05],[76.243427,-3.042E-05],[76.246753,-2.7326E-05],[76.25008,-2.9389E-05],[76.253407,-3.3513E-05],[76.256733,-3.1967E-05],[76.26006,-3.1451E-05],[76.263387,-3.0935E-05],[76.266713,-3.3513E-05],[76.27004,-3.0935E-05],[76.273367,-2.5264E-05],[76.276693,-2.7842E-05],[76.28002,-2.9389E-05],[76.283347,-2.9389E-05],[76.286673,-3.042E-05],[76.29,-3.042E-05],[76.293327,-3.2482E-05],[76.296653,-2.7842E-05],[76.29998,-2.5779E-05],[76.303307,-2.9389E-05],[76.306633,-2.7842E-05],[76.30996,-3.0935E-05],[76.313287,-3.2482E-05],[76.316613,-3.042E-05],[76.31994,-3.3513E-05],[76.323267,-3.506E-05],[76.326593,-3.2998E-05],[76.32992,-3.1967E-05],[76.333247,-3.042E-05],[76.336573,-3.042E-05],[76.3399,-2.6295E-05],[76.343227,-2.7326E-05],[76.346553,-2.9904E-05],[76.34988,-2.9904E-05],[76.353207,-3.0935E-05],[76.356533,-2.8357E-05],[76.35986,-2.8873E-05],[76.363187,-2.9904E-05],[76.366513,-3.2482E-05]]}
-{"quant":[76.6295,-2.9172E-05],"mems":[[76.52952,-3.042E-05],[76.532847,-3.2482E-05],[76.536173,-2.8873E-05],[76.5395,-2.8873E-05],[76.542827,-2.7326E-05],[76.546153,-2.7326E-05],[76.54948,-3.0935E-05],[76.552807,-3.042E-05],[76.556133,-3.0935E-05],[76.55946,-2.9389E-05],[76.562787,-2.6811E-05],[76.566113,-2.5264E-05],[76.56944,-2.7326E-05],[76.572767,-2.8357E-05],[76.576093,-2.7842E-05],[76.57942,-2.8873E-05],[76.582747,-2.7842E-05],[76.586073,-3.1967E-05],[76.5894,-3.506E-05],[76.592727,-3.2482E-05],[76.596053,-2.6295E-05],[76.59938,-2.5779E-05],[76.602707,-2.9389E-05],[76.606033,-2.6811E-05],[76.60936,-2.5264E-05],[76.612687,-2.4748E-05],[76.616013,-2.4233E-05],[76.61934,-2.3202E-05],[76.622667,-2.217E-05],[76.625993,-2.5264E-05],[76.62932,-2.7326E-05],[76.632647,-2.8357E-05],[76.635973,-2.7842E-05],[76.6393,-2.7326E-05],[76.642627,-2.9389E-05],[76.645953,-3.0935E-05],[76.64928,-3.2482E-05],[76.652607,-3.042E-05],[76.655933,-2.6295E-05],[76.65926,-2.3717E-05],[76.662587,-2.6295E-05],[76.665913,-3.2482E-05],[76.66924,-3.0935E-05],[76.672567,-3.0935E-05],[76.675893,-3.1451E-05],[76.67922,-2.8873E-05],[76.682547,-2.7842E-05],[76.685873,-2.8357E-05],[76.6892,-2.6295E-05],[76.692527,-2.6811E-05],[76.695853,-3.1967E-05],[76.69918,-2.9389E-05],[76.702507,-2.9904E-05],[76.705833,-3.2482E-05],[76.70916,-3.042E-05],[76.712487,-2.6811E-05],[76.715813,-2.8873E-05],[76.71914,-3.042E-05],[76.722467,-2.5779E-05],[76.725793,-2.7842E-05],[76.72912,-3.1967E-05],[76.732447,-3.1451E-05],[76.735773,-3.1451E-05],[76.7391,-3.0935E-05],[76.742427,-3.1451E-05],[76.745753,-3.042E-05],[76.74908,-2.9389E-05],[76.752407,-2.8873E-05],[76.755733,-2.5779E-05],[76.75906,-2.9389E-05],[76.762387,-3.2998E-05],[76.765713,-2.7842E-05],[76.76904,-2.7326E-05],[76.772367,-2.7326E-05],[76.775693,-2.6811E-05],[76.77902,-3.2482E-05],[76.782347,-2.9904E-05],[76.785673,-2.6811E-05],[76.789,-2.8357E-05],[76.792327,-2.5779E-05],[76.795653,-2.6811E-05],[76.79898,-2.8357E-05],[76.802307,-3.0935E-05],[76.805633,-3.3513E-05],[76.80896,-2.9389E-05],[76.812287,-2.6811E-05],[76.815613,-3.042E-05],[76.81894,-3.2998E-05],[76.822267,-3.4029E-05],[76.825593,-3.1451E-05],[76.82892,-2.8873E-05],[76.832247,-2.8873E-05]]}
-{"quant":[77.0835,-2.8723E-05],"mems":[[76.985273,-3.042E-05],[76.9886,-2.8873E-05],[76.991927,-3.0935E-05],[76.995253,-2.9389E-05],[76.99858,-2.6295E-05],[77.001907,-2.5264E-05],[77.005233,-2.4748E-05],[77.00856,-2.8873E-05],[77.011887,-3.042E-05],[77.015213,-2.7326E-05],[77.01854,-3.0935E-05],[77.021867,-2.6295E-05],[77.025193,-2.5779E-05],[77.02852,-3.0935E-05],[77.031847,-2.8873E-05],[77.035173,-2.8873E-05],[77.0385,-2.9904E-05],[77.041827,-3.0935E-05],[77.045153,-2.8357E-05],[77.04848,-2.8873E-05],[77.051807,-3.5576E-05],[77.055133,-3.506E-05],[77.05846,-3.0935E-05],[77.061787,-2.9389E-05],[77.065113,-2.8357E-05],[77.06844,-2.8357E-05],[77.071767,-2.9904E-05],[77.075093,-2.4748E-05],[77.07842,-2.5264E-05],[77.081747,-2.9904E-05],[77.085073,-2.6295E-05],[77.0884,-2.9904E-05],[77.091727,-3.0935E-05],[77.095053,-2.7326E-05],[77.09838,-2.8357E-05],[77.101707,-2.8357E-05],[77.105033,-2.8873E-05],[77.10836,-2.9389E-05],[77.111687,-2.9904E-05],[77.115013,-3.1967E-05],[77.11834,-3.1451E-05],[77.121667,-2.5779E-05],[77.124993,-2.4233E-05],[77.12832,-3.042E-05],[77.131647,-3.0935E-05],[77.134973,-3.042E-05],[77.1383,-2.8357E-05],[77.141627,-2.3202E-05],[77.144953,-2.5264E-05],[77.14828,-2.6811E-05],[77.151607,-2.8873E-05],[77.154933,-3.1451E-05],[77.15826,-2.6811E-05],[77.161587,-2.8357E-05],[77.164913,-2.9389E-05],[77.16824,-2.7326E-05],[77.171567,-2.8873E-05],[77.174893,-2.8873E-05],[77.17822,-3.042E-05],[77.181547,-3.0935E-05],[77.184873,-3.0935E-05],[77.1882,-2.8873E-05],[77.191527,-2.7842E-05],[77.194853,-3.3513E-05],[77.19818,-3.042E-05],[77.201507,-2.9904E-05],[77.204833,-2.9904E-05],[77.20816,-2.5264E-05],[77.211487,-3.0935E-05],[77.214813,-3.1451E-05],[77.21814,-2.6811E-05],[77.221467,-2.6811E-05],[77.224793,-2.8357E-05],[77.22812,-3.2482E-05],[77.231447,-3.1451E-05],[77.234773,-3.0935E-05],[77.2381,-2.8357E-05],[77.241427,-2.8873E-05],[77.244753,-2.8357E-05],[77.24808,-2.7842E-05],[77.251407,-3.2482E-05],[77.254733,-2.9389E-05],[77.25806,-2.8873E-05],[77.261387,-2.9389E-05],[77.264713,-3.1451E-05],[77.26804,-2.9904E-05],[77.271367,-2.5779E-05],[77.274693,-2.9389E-05],[77.27802,-2.8873E-05],[77.281347,-2.6811E-05],[77.284673,-2.2686E-05]]}
-{"quant":[77.5242,-2.9206E-05],"mems":[[77.424393,-2.7842E-05],[77.42772,-2.9904E-05],[77.431047,-3.042E-05],[77.434373,-2.9904E-05],[77.4377,-3.042E-05],[77.441027,-3.4544E-05],[77.444353,-3.2482E-05],[77.44768,-3.1967E-05],[77.451007,-3.1967E-05],[77.454333,-3.1967E-05],[77.45766,-3.6091E-05],[77.460987,-3.1451E-05],[77.464313,-2.8873E-05],[77.46764,-3.0935E-05],[77.470967,-2.7326E-05],[77.474293,-2.7842E-05],[77.47762,-2.8873E-05],[77.480947,-2.7842E-05],[77.484273,-3.1451E-05],[77.4876,-3.1451E-05],[77.490927,-3.1967E-05],[77.494253,-3.1967E-05],[77.49758,-2.9389E-05],[77.500907,-2.8357E-05],[77.504233,-2.6811E-05],[77.50756,-2.9904E-05],[77.510887,-3.1967E-05],[77.514213,-3.0935E-05],[77.51754,-3.0935E-05],[77.520867,-3.4029E-05],[77.524193,-2.7842E-05],[77.52752,-2.5779E-05],[77.530847,-3.0935E-05],[77.534173,-2.7326E-05],[77.5375,-2.7326E-05],[77.540827,-3.1451E-05],[77.544153,-2.8873E-05],[77.54748,-2.4233E-05],[77.550807,-2.7842E-05],[77.554133,-2.9904E-05],[77.55746,-2.7842E-05],[77.560787,-2.9904E-05],[77.564113,-2.7842E-05],[77.56744,-2.5779E-05],[77.570767,-2.7326E-05],[77.574093,-2.7326E-05],[77.57742,-2.9904E-05],[77.580747,-3.2482E-05],[77.584073,-3.1451E-05],[77.5874,-2.9389E-05],[77.590727,-2.6811E-05],[77.594053,-3.0935E-05],[77.59738,-3.3513E-05],[77.600707,-3.0935E-05],[77.604033,-2.8357E-05],[77.60736,-2.7842E-05],[77.610687,-2.8357E-05],[77.614013,-3.1451E-05],[77.61734,-3.5576E-05],[77.620667,-2.8873E-05],[77.623993,-2.9904E-05],[77.62732,-2.9904E-05],[77.630647,-2.6811E-05],[77.633973,-3.1451E-05],[77.6373,-3.0935E-05],[77.640627,-3.2998E-05],[77.643953,-3.1967E-05],[77.64728,-2.7326E-05],[77.650607,-2.7842E-05],[77.653933,-2.7842E-05],[77.65726,-2.8873E-05],[77.660587,-2.9904E-05],[77.663913,-3.0935E-05],[77.66724,-2.7842E-05],[77.670567,-2.7842E-05],[77.673893,-2.9904E-05],[77.67722,-2.3717E-05],[77.680547,-2.5264E-05],[77.683873,-2.6295E-05],[77.6872,-2.8357E-05],[77.690527,-3.5576E-05],[77.693853,-3.506E-05],[77.69718,-3.4544E-05],[77.700507,-3.1967E-05],[77.703833,-2.8873E-05],[77.70716,-2.8357E-05],[77.710487,-2.7842E-05],[77.713813,-2.8873E-05],[77.71714,-3.042E-05],[77.720467,-3.2482E-05],[77.723793,-3.0935E-05],[77.72712,-2.6295E-05]]}
-{"quant":[77.9759,-2.9389E-05],"mems":[[77.876405,-3.0935E-05],[77.879844,-2.7842E-05],[77.883283,-2.7842E-05],[77.886721,-3.0935E-05],[77.89016,-2.7326E-05],[77.893599,-2.5264E-05],[77.897037,-2.6811E-05],[77.900476,-2.7842E-05],[77.903915,-2.8873E-05],[77.907353,-2.9904E-05],[77.910792,-3.1967E-05],[77.914231,-3.1451E-05],[77.917669,-3.042E-05],[77.921108,-2.9904E-05],[77.924547,-3.1451E-05],[77.927985,-3.2482E-05],[77.931424,-3.1967E-05],[77.934863,-2.7326E-05],[77.938301,-2.5779E-05],[77.94174,-2.7326E-05],[77.945179,-2.7326E-05],[77.948617,-2.8873E-05],[77.952056,-2.8873E-05],[77.955495,-2.9389E-05],[77.958933,-2.9389E-05],[77.962372,-2.6295E-05],[77.965811,-2.7326E-05],[77.969249,-2.7842E-05],[77.972688,-2.6811E-05],[77.976127,-3.042E-05],[77.979565,-2.6295E-05],[77.983004,-2.3717E-05],[77.986443,-2.7326E-05],[77.989881,-2.6295E-05],[77.99332,-3.2998E-05],[77.996759,-3.1967E-05],[78.000197,-2.5779E-05],[78.003636,-2.6295E-05],[78.007075,-2.8873E-05],[78.010513,-3.0935E-05],[78.013952,-2.7842E-05],[78.017391,-3.042E-05],[78.020829,-3.3513E-05],[78.024268,-3.1451E-05],[78.027707,-3.3513E-05],[78.031145,-2.9904E-05],[78.034584,-2.9904E-05],[78.038023,-3.1967E-05],[78.041461,-2.6295E-05],[78.0449,-2.8873E-05],[78.048339,-3.2482E-05],[78.051777,-2.7326E-05],[78.055216,-2.4748E-05],[78.058655,-2.7842E-05],[78.062093,-2.8873E-05],[78.065532,-3.042E-05],[78.068971,-3.506E-05],[78.072409,-3.2998E-05],[78.075848,-2.9904E-05],[78.079287,-2.6811E-05],[78.082725,-2.7842E-05],[78.086164,-3.3513E-05],[78.089603,-3.042E-05],[78.093041,-3.1967E-05],[78.09648,-3.1967E-05],[78.099919,-2.8873E-05],[78.103357,-3.3513E-05],[78.106796,-3.1451E-05],[78.110235,-2.7326E-05],[78.113673,-2.6811E-05],[78.117112,-2.7842E-05],[78.120551,-2.9389E-05],[78.123989,-2.7842E-05],[78.127428,-2.5779E-05],[78.130867,-2.8357E-05],[78.134305,-2.7842E-05],[78.137744,-2.7842E-05],[78.141183,-2.9904E-05],[78.144621,-3.042E-05],[78.14806,-3.0935E-05],[78.151499,-2.8873E-05],[78.154937,-3.042E-05],[78.158376,-3.1451E-05],[78.161815,-2.9904E-05],[78.165253,-3.1451E-05],[78.168692,-3.0935E-05],[78.172131,-2.8873E-05],[78.175569,-2.6811E-05],[78.179008,-2.7842E-05]]}
-{"quant":[78.6505,-3.0093E-05],"mems":[[78.553823,-2.9904E-05],[78.557261,-2.5264E-05],[78.5607,-2.4748E-05],[78.564139,-2.9904E-05],[78.567577,-2.6295E-05],[78.571016,-2.5779E-05],[78.574455,-2.8357E-05],[78.577893,-2.8873E-05],[78.581332,-2.9389E-05],[78.584771,-2.7842E-05],[78.588209,-2.6295E-05],[78.591648,-2.7326E-05],[78.595087,-2.7842E-05],[78.598525,-2.4748E-05],[78.601964,-2.7842E-05],[78.605403,-3.1451E-05],[78.608841,-2.9904E-05],[78.61228,-2.8873E-05],[78.615719,-2.9389E-05],[78.619157,-2.9904E-05],[78.622596,-2.7326E-05],[78.626035,-3.042E-05],[78.629473,-3.0935E-05],[78.632912,-2.8873E-05],[78.636351,-2.8873E-05],[78.639789,-2.7326E-05],[78.643228,-2.7326E-05],[78.646667,-2.6295E-05],[78.650105,-2.7842E-05],[78.653544,-3.042E-05],[78.656983,-2.8873E-05],[78.660421,-2.8873E-05],[78.66386,-2.8357E-05],[78.667299,-2.7326E-05],[78.670737,-3.4544E-05],[78.674176,-3.4544E-05],[78.677615,-2.8873E-05],[78.681053,-2.9389E-05],[78.684492,-3.1451E-05],[78.687931,-3.2482E-05],[78.691369,-3.2998E-05],[78.694808,-3.4029E-05],[78.698247,-3.1451E-05],[78.701685,-2.9389E-05],[78.705124,-3.1967E-05],[78.708563,-2.7842E-05],[78.712001,-3.042E-05],[78.71544,-3.2998E-05],[78.718879,-2.3717E-05],[78.722317,-2.4748E-05],[78.725756,-2.6811E-05],[78.729195,-2.9904E-05],[78.732633,-3.3513E-05],[78.736072,-2.7842E-05],[78.739511,-2.7842E-05],[78.742949,-3.0935E-05],[78.746388,-3.042E-05],[78.749827,-3.042E-05],[78.753265,-3.042E-05],[78.756704,-2.7842E-05],[78.760143,-2.8357E-05],[78.763581,-2.9904E-05],[78.76702,-3.1451E-05],[78.770459,-3.2482E-05],[78.773897,-2.8873E-05],[78.777336,-2.8357E-05],[78.780775,-3.042E-05],[78.784213,-3.1451E-05],[78.787652,-3.1451E-05],[78.791091,-2.9389E-05],[78.794529,-2.4233E-05],[78.797968,-2.5264E-05],[78.801407,-3.2998E-05],[78.804845,-3.1451E-05],[78.808284,-2.7842E-05],[78.811723,-2.7842E-05],[78.815161,-2.9389E-05],[78.8186,-3.1451E-05],[78.822039,-2.9904E-05],[78.825477,-2.7326E-05],[78.828916,-2.8873E-05],[78.832355,-3.0935E-05],[78.835793,-2.7326E-05],[78.839232,-2.5779E-05],[78.842671,-2.7326E-05],[78.846109,-3.042E-05],[78.849548,-3.3513E-05],[78.852987,-3.2998E-05]]}
-{"quant":[79.118,-2.9629E-05],"mems":[[79.018043,-2.9389E-05],[79.021481,-2.8873E-05],[79.02492,-2.7842E-05],[79.028359,-2.5264E-05],[79.031797,-2.9389E-05],[79.035236,-2.9389E-05],[79.038675,-2.5264E-05],[79.042113,-2.4748E-05],[79.045552,-2.8873E-05],[79.048991,-2.8873E-05],[79.052429,-2.7326E-05],[79.055868,-2.6811E-05],[79.059307,-2.2686E-05],[79.062745,-2.6295E-05],[79.066184,-2.6811E-05],[79.069623,-2.9389E-05],[79.073061,-2.8357E-05],[79.0765,-2.5779E-05],[79.079939,-3.1967E-05],[79.083377,-2.4748E-05],[79.086816,-2.9904E-05],[79.090255,-3.4544E-05],[79.093693,-2.5779E-05],[79.097132,-2.5264E-05],[79.100571,-2.6295E-05],[79.104009,-2.5779E-05],[79.107448,-2.5779E-05],[79.110887,-2.9904E-05],[79.114325,-3.0935E-05],[79.117764,-2.8873E-05],[79.121203,-3.1451E-05],[79.124641,-3.2482E-05],[79.12808,-3.1967E-05],[79.131519,-2.8357E-05],[79.134957,-2.8873E-05],[79.138396,-2.8873E-05],[79.141835,-2.5779E-05],[79.145273,-3.1451E-05],[79.148712,-3.3513E-05],[79.152151,-2.7842E-05],[79.155589,-2.4233E-05],[79.159028,-2.7326E-05],[79.162467,-2.9904E-05],[79.165905,-3.042E-05],[79.169344,-3.2482E-05],[79.172783,-3.0935E-05],[79.176221,-2.7842E-05],[79.17966,-2.7326E-05],[79.183099,-3.0935E-05],[79.186537,-3.2482E-05],[79.189976,-3.2482E-05],[79.193415,-2.9904E-05],[79.196853,-2.5779E-05],[79.200292,-2.6295E-05],[79.203731,-3.1451E-05],[79.207169,-3.4029E-05],[79.210608,-3.0935E-05],[79.214047,-2.9389E-05],[79.217485,-2.8357E-05],[79.220924,-2.5779E-05],[79.224363,-2.7326E-05],[79.227801,-3.2998E-05],[79.23124,-3.4029E-05],[79.234679,-2.7326E-05],[79.238117,-2.5779E-05],[79.241556,-3.1451E-05],[79.244995,-3.1967E-05],[79.248433,-3.2482E-05],[79.251872,-3.3513E-05],[79.255311,-3.042E-05],[79.258749,-2.7842E-05],[79.262188,-2.6811E-05],[79.265627,-2.8873E-05],[79.269065,-2.8873E-05],[79.272504,-2.8873E-05],[79.275943,-2.8357E-05],[79.279381,-3.0935E-05],[79.28282,-2.8873E-05],[79.286259,-2.8357E-05],[79.289697,-2.9904E-05],[79.293136,-2.7842E-05],[79.296575,-2.9389E-05],[79.300013,-2.4233E-05],[79.303452,-2.8357E-05],[79.306891,-3.4544E-05],[79.310329,-2.8357E-05],[79.313768,-2.7842E-05],[79.317207,-2.4748E-05],[79.320645,-2.6295E-05]]}
-{"quant":[79.6401,-3.0437E-05],"mems":[[79.54072,-3.042E-05],[79.544159,-3.2998E-05],[79.547597,-3.1967E-05],[79.551036,-2.9904E-05],[79.554475,-2.9389E-05],[79.557913,-2.5779E-05],[79.561352,-2.6295E-05],[79.564791,-3.042E-05],[79.568229,-2.9389E-05],[79.571668,-2.8357E-05],[79.575107,-2.7326E-05],[79.578545,-2.7326E-05],[79.581984,-3.3513E-05],[79.585423,-3.2998E-05],[79.588861,-3.042E-05],[79.5923,-3.042E-05],[79.595739,-2.7326E-05],[79.599177,-3.3513E-05],[79.602616,-3.1451E-05],[79.606055,-2.9389E-05],[79.609493,-3.3513E-05],[79.612932,-2.9389E-05],[79.616371,-2.8357E-05],[79.619809,-2.1139E-05],[79.623248,-2.5779E-05],[79.626687,-3.1967E-05],[79.630125,-2.7326E-05],[79.633564,-3.2482E-05],[79.637003,-2.9389E-05],[79.640441,-2.7326E-05],[79.64388,-3.1451E-05],[79.647319,-3.042E-05],[79.650757,-3.2482E-05],[79.654196,-3.1967E-05],[79.657635,-2.8873E-05],[79.661073,-2.9389E-05],[79.664512,-3.2482E-05],[79.667951,-3.1451E-05],[79.671389,-3.1967E-05],[79.674828,-3.2998E-05],[79.678267,-2.8873E-05],[79.681705,-2.9904E-05],[79.685144,-2.7326E-05],[79.688583,-2.6811E-05],[79.692021,-3.1967E-05],[79.69546,-3.0935E-05],[79.698899,-2.7326E-05],[79.702337,-2.8357E-05],[79.705776,-2.8873E-05],[79.709215,-3.2482E-05],[79.712653,-3.6091E-05],[79.716092,-2.7326E-05],[79.719531,-2.6811E-05],[79.722969,-3.2482E-05],[79.726408,-3.1967E-05],[79.729847,-3.3513E-05],[79.733285,-3.042E-05],[79.736724,-2.9904E-05],[79.740163,-3.0935E-05],[79.743601,-2.9389E-05],[79.74704,-3.042E-05],[79.750479,-2.8873E-05],[79.753917,-3.042E-05],[79.757356,-2.9389E-05],[79.760795,-2.8873E-05],[79.764233,-2.9389E-05],[79.767672,-2.7842E-05],[79.771111,-2.8873E-05],[79.774549,-2.8357E-05],[79.777988,-2.9904E-05],[79.781427,-2.9904E-05],[79.784865,-2.9904E-05],[79.788304,-3.042E-05],[79.791743,-2.5779E-05],[79.795181,-2.4233E-05],[79.79862,-2.6295E-05],[79.802059,-2.8357E-05],[79.805497,-2.8357E-05],[79.808936,-2.8873E-05],[79.812375,-3.0935E-05],[79.815813,-3.042E-05],[79.819252,-2.6295E-05],[79.822691,-3.042E-05],[79.826129,-3.7638E-05],[79.829568,-3.1967E-05],[79.833007,-3.2998E-05],[79.836445,-3.3513E-05],[79.839884,-2.7326E-05],[79.843323,-2.9389E-05]]}
-{"quant":[80.1293,-2.8426E-05],"mems":[[80.032449,-2.5264E-05],[80.035888,-2.7326E-05],[80.039327,-2.7842E-05],[80.042765,-2.6295E-05],[80.046204,-3.1451E-05],[80.049643,-3.0935E-05],[80.053081,-3.042E-05],[80.05652,-3.0935E-05],[80.059959,-3.0935E-05],[80.063397,-2.9904E-05],[80.066836,-3.1451E-05],[80.070275,-3.1967E-05],[80.073713,-3.1967E-05],[80.077152,-3.0935E-05],[80.080591,-2.8873E-05],[80.084029,-3.1967E-05],[80.087468,-2.8357E-05],[80.090907,-2.6811E-05],[80.094345,-2.8357E-05],[80.097784,-2.4748E-05],[80.101223,-2.9904E-05],[80.104661,-3.4544E-05],[80.1081,-3.4029E-05],[80.111539,-2.8357E-05],[80.114977,-2.5264E-05],[80.118416,-2.9389E-05],[80.121855,-2.6811E-05],[80.125293,-3.1967E-05],[80.128732,-3.5576E-05],[80.132171,-2.6811E-05],[80.135609,-2.4233E-05],[80.139048,-2.7842E-05],[80.142487,-3.042E-05],[80.145925,-3.0935E-05],[80.149364,-2.9389E-05],[80.152803,-2.6811E-05],[80.156241,-2.5264E-05],[80.15968,-2.6811E-05],[80.163119,-3.1451E-05],[80.166557,-3.3513E-05],[80.169996,-3.2998E-05],[80.173435,-2.8873E-05],[80.176873,-2.5779E-05],[80.180312,-2.9904E-05],[80.183751,-3.0935E-05],[80.187189,-2.6295E-05],[80.190628,-2.5779E-05],[80.194067,-2.9904E-05],[80.197505,-2.8357E-05],[80.200944,-2.5779E-05],[80.204383,-2.7326E-05],[80.207821,-3.042E-05],[80.21126,-2.9389E-05],[80.214699,-2.217E-05],[80.218137,-2.6811E-05],[80.221576,-2.7842E-05],[80.225015,-2.6295E-05],[80.228453,-3.2998E-05],[80.231892,-3.1451E-05],[80.235331,-3.1451E-05],[80.238769,-2.9904E-05],[80.242208,-2.5779E-05],[80.245647,-2.7842E-05],[80.249085,-2.9389E-05],[80.252524,-3.0935E-05],[80.255963,-2.8357E-05],[80.259401,-2.6295E-05],[80.26284,-3.2482E-05],[80.266279,-3.3513E-05],[80.269717,-3.0935E-05],[80.273156,-3.0935E-05],[80.276595,-2.6811E-05],[80.280033,-2.7842E-05],[80.283472,-3.0935E-05],[80.286911,-3.042E-05],[80.290349,-2.8873E-05],[80.293788,-2.7326E-05],[80.297227,-2.6295E-05],[80.300665,-2.4748E-05],[80.304104,-2.7326E-05],[80.307543,-2.5264E-05],[80.310981,-3.042E-05],[80.31442,-3.4544E-05],[80.317859,-2.3717E-05],[80.321297,-2.3202E-05],[80.324736,-2.9389E-05],[80.328175,-3.042E-05],[80.331613,-3.0935E-05]]}
-{"quant":[80.6438,-2.9268E-05],"mems":[[80.544741,-2.8357E-05],[80.548179,-2.6295E-05],[80.551616,-2.6811E-05],[80.555053,-2.5779E-05],[80.558491,-2.5264E-05],[80.561928,-2.6295E-05],[80.565365,-3.042E-05],[80.568803,-2.9904E-05],[80.57224,-2.7326E-05],[80.575677,-2.9389E-05],[80.579115,-2.4233E-05],[80.582552,-2.4748E-05],[80.585989,-3.1967E-05],[80.589427,-3.1967E-05],[80.592864,-2.7842E-05],[80.596301,-2.7326E-05],[80.599739,-2.8873E-05],[80.603176,-2.8357E-05],[80.606613,-2.8873E-05],[80.610051,-2.6811E-05],[80.613488,-2.7326E-05],[80.616925,-2.7842E-05],[80.620363,-2.5264E-05],[80.6238,-2.4233E-05],[80.627237,-2.8357E-05],[80.630675,-3.2998E-05],[80.634112,-3.042E-05],[80.637549,-2.8357E-05],[80.640987,-3.042E-05],[80.644424,-2.9904E-05],[80.647861,-3.1967E-05],[80.651299,-3.1967E-05],[80.654736,-2.6295E-05],[80.658173,-2.8873E-05],[80.661611,-3.1451E-05],[80.665048,-3.1967E-05],[80.668485,-3.042E-05],[80.671923,-2.6811E-05],[80.67536,-2.9904E-05],[80.678797,-2.6811E-05],[80.682235,-3.0935E-05],[80.685672,-3.2482E-05],[80.689109,-2.8873E-05],[80.692547,-3.0935E-05],[80.695984,-2.8873E-05],[80.699421,-3.0935E-05],[80.702859,-3.1967E-05],[80.706296,-2.8873E-05],[80.709733,-2.6295E-05],[80.713171,-2.4748E-05],[80.716608,-2.4748E-05],[80.720045,-2.9389E-05],[80.723483,-3.2998E-05],[80.72692,-3.1451E-05],[80.730357,-2.6811E-05],[80.733795,-2.5264E-05],[80.737232,-2.4233E-05],[80.740669,-2.6811E-05],[80.744107,-3.506E-05],[80.747544,-3.3513E-05],[80.750981,-3.0935E-05],[80.754419,-2.8357E-05],[80.757856,-2.6811E-05],[80.761293,-3.2482E-05],[80.764731,-3.2998E-05],[80.768168,-3.1451E-05],[80.771605,-3.3513E-05],[80.775043,-2.8873E-05],[80.77848,-2.4233E-05],[80.781917,-2.6811E-05],[80.785355,-2.8873E-05],[80.788792,-2.7842E-05],[80.792229,-3.042E-05],[80.795667,-2.7326E-05],[80.799104,-2.8357E-05],[80.802541,-3.042E-05],[80.805979,-2.3717E-05],[80.809416,-2.6811E-05],[80.812853,-2.7842E-05],[80.816291,-2.4748E-05],[80.819728,-3.1451E-05],[80.823165,-3.7122E-05],[80.826603,-3.2482E-05],[80.83004,-3.1451E-05],[80.833477,-3.0935E-05],[80.836915,-2.7326E-05],[80.840352,-3.0935E-05],[80.843789,-2.9389E-05],[80.847227,-2.9904E-05]]}
-{"quant":[81.2019,-2.956E-05],"mems":[[81.105027,-3.042E-05],[81.108464,-2.7842E-05],[81.111901,-2.8357E-05],[81.115339,-2.6295E-05],[81.118776,-3.1967E-05],[81.122213,-3.1451E-05],[81.125651,-2.7842E-05],[81.129088,-3.2482E-05],[81.132525,-3.2482E-05],[81.135963,-3.1451E-05],[81.1394,-3.042E-05],[81.142837,-3.3513E-05],[81.146275,-3.0935E-05],[81.149712,-2.6295E-05],[81.153149,-2.8357E-05],[81.156587,-2.5779E-05],[81.160024,-2.5779E-05],[81.163461,-2.9904E-05],[81.166899,-3.042E-05],[81.170336,-2.7326E-05],[81.173773,-2.8357E-05],[81.177211,-3.2482E-05],[81.180648,-3.2482E-05],[81.184085,-2.9389E-05],[81.187523,-3.2998E-05],[81.19096,-3.042E-05],[81.194397,-2.7842E-05],[81.197835,-2.9389E-05],[81.201272,-2.7326E-05],[81.204709,-2.9904E-05],[81.208147,-2.8873E-05],[81.211584,-2.6811E-05],[81.215021,-2.5264E-05],[81.218459,-2.9389E-05],[81.221896,-3.4029E-05],[81.225333,-2.8357E-05],[81.228771,-3.042E-05],[81.232208,-3.2998E-05],[81.235645,-3.042E-05],[81.239083,-2.7842E-05],[81.24252,-2.9389E-05],[81.245957,-3.0935E-05],[81.249395,-2.9389E-05],[81.252832,-3.1967E-05],[81.256269,-3.1451E-05],[81.259707,-2.7842E-05],[81.263144,-2.9904E-05],[81.266581,-3.0935E-05],[81.270019,-3.2998E-05],[81.273456,-3.4029E-05],[81.276893,-2.8873E-05],[81.280331,-2.7842E-05],[81.283768,-3.0935E-05],[81.287205,-3.1451E-05],[81.290643,-2.9904E-05],[81.29408,-2.6295E-05],[81.297517,-2.4233E-05],[81.300955,-2.6295E-05],[81.304392,-2.7842E-05],[81.307829,-2.9904E-05],[81.311267,-2.9389E-05],[81.314704,-2.7842E-05],[81.318141,-2.7326E-05],[81.321579,-2.8357E-05],[81.325016,-3.1967E-05],[81.328453,-2.5779E-05],[81.331891,-2.7842E-05],[81.335328,-3.1451E-05],[81.338765,-2.7842E-05],[81.342203,-3.4029E-05],[81.34564,-3.0935E-05],[81.349077,-2.8357E-05],[81.352515,-2.7326E-05],[81.355952,-2.5779E-05],[81.359389,-3.1451E-05],[81.362827,-2.9389E-05],[81.366264,-2.8357E-05],[81.369701,-2.6295E-05],[81.373139,-2.1139E-05],[81.376576,-2.5264E-05],[81.380013,-2.8357E-05],[81.383451,-2.5779E-05],[81.386888,-2.5264E-05],[81.390325,-3.1451E-05],[81.393763,-2.8873E-05],[81.3972,-2.6295E-05],[81.400637,-2.8873E-05],[81.404075,-2.7842E-05]]}
-{"quant":[81.6988,-3.0059E-05],"mems":[[81.600003,-2.7842E-05],[81.60344,-3.1451E-05],[81.606877,-3.1967E-05],[81.610315,-2.7326E-05],[81.613752,-2.9389E-05],[81.617189,-2.9904E-05],[81.620627,-2.6295E-05],[81.624064,-2.8357E-05],[81.627501,-2.9389E-05],[81.630939,-2.8357E-05],[81.634376,-2.7842E-05],[81.637813,-2.6811E-05],[81.641251,-2.6811E-05],[81.644688,-3.2998E-05],[81.648125,-2.8357E-05],[81.651563,-2.3202E-05],[81.655,-2.8873E-05],[81.658437,-2.6811E-05],[81.661875,-2.9904E-05],[81.665312,-3.2482E-05],[81.668749,-2.7842E-05],[81.672187,-2.7326E-05],[81.675624,-2.8357E-05],[81.679061,-2.8873E-05],[81.682499,-2.9389E-05],[81.685936,-3.506E-05],[81.689373,-3.0935E-05],[81.692811,-2.7842E-05],[81.696248,-3.4029E-05],[81.699685,-2.9389E-05],[81.703123,-2.9389E-05],[81.70656,-3.1451E-05],[81.709997,-2.9904E-05],[81.713435,-3.1451E-05],[81.716872,-2.9904E-05],[81.720309,-3.2482E-05],[81.723747,-3.3513E-05],[81.727184,-2.9904E-05],[81.730621,-3.0935E-05],[81.734059,-2.9904E-05],[81.737496,-2.3717E-05],[81.740933,-2.4233E-05],[81.744371,-2.5264E-05],[81.747808,-2.7326E-05],[81.751245,-2.8873E-05],[81.754683,-2.9904E-05],[81.75812,-3.2998E-05],[81.761557,-2.9904E-05],[81.764995,-3.2998E-05],[81.768432,-3.2998E-05],[81.771869,-3.1451E-05],[81.775307,-2.8873E-05],[81.778744,-2.6811E-05],[81.782181,-3.1451E-05],[81.785619,-2.9389E-05],[81.789056,-3.0935E-05],[81.792493,-3.0935E-05],[81.795931,-3.2482E-05],[81.799368,-3.2998E-05],[81.802805,-3.0935E-05],[81.806243,-3.1967E-05],[81.80968,-3.0935E-05],[81.813117,-3.1967E-05],[81.816555,-2.7326E-05],[81.819992,-2.8357E-05],[81.823429,-3.1451E-05],[81.826867,-3.042E-05],[81.830304,-3.2482E-05],[81.833741,-2.9904E-05],[81.837179,-2.7842E-05],[81.840616,-2.9389E-05],[81.844053,-2.9389E-05],[81.847491,-2.9389E-05],[81.850928,-3.2998E-05],[81.854365,-2.9389E-05],[81.857803,-2.8873E-05],[81.86124,-3.4544E-05],[81.864677,-3.042E-05],[81.868115,-2.8357E-05],[81.871552,-3.1967E-05],[81.874989,-3.1967E-05],[81.878427,-3.042E-05],[81.881864,-2.8357E-05],[81.885301,-3.0935E-05],[81.888739,-3.042E-05],[81.892176,-2.7326E-05],[81.895613,-2.7326E-05],[81.899051,-3.1451E-05]]}
-{"quant":[82.1772,-2.8956E-05],"mems":[[82.077792,-2.6811E-05],[82.081229,-2.9904E-05],[82.084667,-3.7122E-05],[82.088104,-3.4544E-05],[82.091541,-2.8873E-05],[82.094979,-3.042E-05],[82.098416,-2.8873E-05],[82.101853,-2.6295E-05],[82.105291,-2.8357E-05],[82.108728,-2.9904E-05],[82.112165,-2.8873E-05],[82.115603,-2.8357E-05],[82.11904,-2.7842E-05],[82.122477,-2.7842E-05],[82.125915,-2.9904E-05],[82.129352,-3.1451E-05],[82.132789,-2.8357E-05],[82.136227,-2.7842E-05],[82.139664,-2.9904E-05],[82.143101,-2.8873E-05],[82.146539,-3.042E-05],[82.149976,-3.2998E-05],[82.153413,-2.9904E-05],[82.156851,-2.6295E-05],[82.160288,-2.8873E-05],[82.163725,-2.9389E-05],[82.167163,-2.6811E-05],[82.1706,-2.7326E-05],[82.174037,-3.042E-05],[82.177475,-2.6811E-05],[82.180912,-2.3717E-05],[82.184349,-3.1451E-05],[82.187787,-3.0935E-05],[82.191224,-2.8357E-05],[82.194661,-3.042E-05],[82.198099,-2.8357E-05],[82.201536,-2.8357E-05],[82.204973,-3.0935E-05],[82.208411,-3.0935E-05],[82.211848,-2.6811E-05],[82.215285,-2.9904E-05],[82.218723,-3.042E-05],[82.22216,-2.9904E-05],[82.225597,-3.0935E-05],[82.229035,-2.8357E-05],[82.232472,-3.1967E-05],[82.235909,-2.8357E-05],[82.239347,-2.4748E-05],[82.242784,-2.6811E-05],[82.246221,-3.1451E-05],[82.249659,-3.1967E-05],[82.253096,-2.2686E-05],[82.256533,-3.1451E-05],[82.259971,-3.6607E-05],[82.263408,-3.1967E-05],[82.266845,-3.1451E-05],[82.270283,-2.8357E-05],[82.27372,-2.6295E-05],[82.277157,-2.0624E-05],[82.280595,-2.6295E-05],[82.284032,-3.1967E-05],[82.287469,-2.9389E-05],[82.290907,-2.8357E-05],[82.294344,-2.4748E-05],[82.297781,-2.5264E-05],[82.301219,-2.6295E-05],[82.304656,-2.4233E-05],[82.308093,-2.8357E-05],[82.311531,-3.3513E-05],[82.314968,-2.7842E-05],[82.318405,-2.5779E-05],[82.321843,-2.8357E-05],[82.32528,-3.1451E-05],[82.328717,-2.9904E-05],[82.332155,-2.5779E-05],[82.335592,-2.6811E-05],[82.339029,-2.6811E-05],[82.342467,-3.2998E-05],[82.345904,-3.0935E-05],[82.349341,-2.9389E-05],[82.352779,-2.6295E-05],[82.356216,-2.4233E-05],[82.359653,-3.2482E-05],[82.363091,-3.2482E-05],[82.366528,-3.4544E-05],[82.369965,-2.9389E-05],[82.373403,-2.4748E-05],[82.37684,-2.7326E-05],[82.380277,-2.5779E-05]]}
-{"quant":[82.6445,-2.9114E-05],"mems":[[82.545269,-2.7326E-05],[82.548707,-3.3513E-05],[82.552144,-2.8873E-05],[82.555581,-2.4748E-05],[82.559019,-2.4748E-05],[82.562456,-2.7842E-05],[82.565893,-3.506E-05],[82.569331,-3.042E-05],[82.572768,-2.5779E-05],[82.576205,-2.6811E-05],[82.579643,-3.1967E-05],[82.58308,-2.8357E-05],[82.586517,-2.7326E-05],[82.589955,-2.8357E-05],[82.593392,-2.5264E-05],[82.596829,-2.7326E-05],[82.600267,-2.5779E-05],[82.603704,-2.7326E-05],[82.607141,-2.8873E-05],[82.610579,-2.7842E-05],[82.614016,-2.7326E-05],[82.617453,-2.9904E-05],[82.620891,-3.5576E-05],[82.624328,-3.1967E-05],[82.627765,-2.9389E-05],[82.631203,-2.7842E-05],[82.63464,-3.042E-05],[82.638077,-3.1451E-05],[82.641515,-2.5264E-05],[82.644952,-2.6295E-05],[82.648389,-2.7842E-05],[82.651827,-2.9389E-05],[82.655264,-3.1451E-05],[82.658701,-3.1967E-05],[82.662139,-3.2998E-05],[82.665576,-3.2998E-05],[82.669013,-3.3513E-05],[82.672451,-3.042E-05],[82.675888,-2.2686E-05],[82.679325,-2.5779E-05],[82.682763,-3.042E-05],[82.6862,-2.7326E-05],[82.689637,-2.5264E-05],[82.693075,-2.6295E-05],[82.696512,-2.9389E-05],[82.699949,-2.5779E-05],[82.703387,-2.3717E-05],[82.706824,-3.1451E-05],[82.710261,-2.9904E-05],[82.713699,-2.4748E-05],[82.717136,-2.8357E-05],[82.720573,-2.8873E-05],[82.724011,-2.8873E-05],[82.727448,-3.2482E-05],[82.730885,-3.1451E-05],[82.734323,-2.9389E-05],[82.73776,-2.7842E-05],[82.741197,-3.0935E-05],[82.744635,-3.5576E-05],[82.748072,-3.1451E-05],[82.751509,-2.4748E-05],[82.754947,-2.3202E-05],[82.758384,-2.6295E-05],[82.761821,-2.7842E-05],[82.765259,-2.9904E-05],[82.768696,-3.2998E-05],[82.772133,-3.042E-05],[82.775571,-2.7326E-05],[82.779008,-2.8873E-05],[82.782445,-2.8357E-05],[82.785883,-2.6811E-05],[82.78932,-2.9904E-05],[82.792757,-2.9389E-05],[82.796195,-2.9904E-05],[82.799632,-2.9389E-05],[82.803069,-2.6811E-05],[82.806507,-2.6295E-05],[82.809944,-2.7842E-05],[82.813381,-2.8873E-05],[82.816819,-2.4748E-05],[82.820256,-2.1655E-05],[82.823693,-2.8873E-05],[82.827131,-3.2482E-05],[82.830568,-3.042E-05],[82.834005,-2.7842E-05],[82.837443,-2.4748E-05],[82.84088,-3.0935E-05],[82.844317,-3.1967E-05],[82.847755,-2.7842E-05]]}
-{"quant":[83.1365,-2.8546E-05],"mems":[[83.036772,-2.6295E-05],[83.040208,-3.0935E-05],[83.043644,-2.4233E-05],[83.04708,-2.6811E-05],[83.050516,-2.9389E-05],[83.053952,-2.6811E-05],[83.057388,-3.1967E-05],[83.060824,-3.1451E-05],[83.06426,-3.3513E-05],[83.067696,-3.6091E-05],[83.071132,-2.5264E-05],[83.074568,-2.1139E-05],[83.078004,-2.8357E-05],[83.08144,-2.9904E-05],[83.084876,-2.7842E-05],[83.088312,-2.7842E-05],[83.091748,-2.8873E-05],[83.095184,-2.7842E-05],[83.09862,-2.9904E-05],[83.102056,-2.8357E-05],[83.105492,-2.7326E-05],[83.108928,-3.1451E-05],[83.112364,-2.5779E-05],[83.1158,-2.6295E-05],[83.119236,-3.0935E-05],[83.122672,-3.042E-05],[83.126108,-3.1451E-05],[83.129544,-2.7326E-05],[83.13298,-2.7326E-05],[83.136416,-2.6811E-05],[83.139852,-2.6811E-05],[83.143288,-2.8357E-05],[83.146724,-2.6811E-05],[83.15016,-2.7326E-05],[83.153596,-2.5264E-05],[83.157032,-2.8357E-05],[83.160468,-3.1451E-05],[83.163904,-3.0935E-05],[83.16734,-3.1451E-05],[83.170776,-2.9904E-05],[83.174212,-2.8357E-05],[83.177648,-2.5264E-05],[83.181084,-2.8873E-05],[83.18452,-3.4029E-05],[83.187956,-2.9904E-05],[83.191392,-2.8357E-05],[83.194828,-2.7842E-05],[83.198264,-2.4748E-05],[83.2017,-2.7326E-05],[83.205136,-3.042E-05],[83.208572,-2.9389E-05],[83.212008,-2.8357E-05],[83.215444,-2.6811E-05],[83.21888,-2.9904E-05],[83.222316,-3.1967E-05],[83.225752,-2.7842E-05],[83.229188,-2.6811E-05],[83.232624,-2.7842E-05],[83.23606,-2.8357E-05],[83.239496,-2.7326E-05],[83.242932,-2.9389E-05],[83.246368,-3.6091E-05],[83.249804,-3.4029E-05],[83.25324,-3.4029E-05],[83.256676,-3.1967E-05],[83.260112,-2.9904E-05],[83.263548,-3.506E-05],[83.266984,-3.2482E-05],[83.27042,-3.2482E-05],[83.273856,-2.9389E-05],[83.277292,-2.6811E-05],[83.280728,-2.8357E-05],[83.284164,-2.3717E-05],[83.2876,-2.8873E-05],[83.291036,-3.3513E-05],[83.294472,-3.042E-05],[83.297908,-2.8873E-05],[83.301344,-2.7842E-05],[83.30478,-3.0935E-05],[83.308216,-2.8873E-05],[83.311652,-2.3202E-05],[83.315088,-2.6295E-05],[83.318524,-2.9904E-05],[83.32196,-3.042E-05],[83.325396,-3.4544E-05],[83.328832,-3.3513E-05],[83.332268,-2.7326E-05],[83.335704,-2.5264E-05],[83.33914,-2.9389E-05]]}
-{"quant":[83.6886,-2.9681E-05],"mems":[[83.589968,-2.9904E-05],[83.593404,-2.9904E-05],[83.59684,-2.9389E-05],[83.600276,-3.042E-05],[83.603712,-3.506E-05],[83.607148,-3.1451E-05],[83.610584,-3.3513E-05],[83.61402,-2.9389E-05],[83.617456,-2.5779E-05],[83.620892,-3.4029E-05],[83.624328,-2.9904E-05],[83.627764,-2.6295E-05],[83.6312,-2.7326E-05],[83.634636,-3.042E-05],[83.638072,-3.0935E-05],[83.641508,-3.1967E-05],[83.644944,-3.2998E-05],[83.64838,-2.8873E-05],[83.651816,-2.9389E-05],[83.655252,-2.7842E-05],[83.658688,-2.8357E-05],[83.662124,-2.9904E-05],[83.66556,-3.042E-05],[83.668996,-3.1967E-05],[83.672432,-2.6295E-05],[83.675868,-2.7842E-05],[83.679304,-3.2482E-05],[83.68274,-2.8357E-05],[83.686176,-3.0935E-05],[83.689612,-3.042E-05],[83.693048,-2.9389E-05],[83.696484,-2.7842E-05],[83.69992,-2.7326E-05],[83.703356,-2.9389E-05],[83.706792,-2.7842E-05],[83.710228,-3.3513E-05],[83.713664,-3.042E-05],[83.7171,-2.8357E-05],[83.720536,-2.9389E-05],[83.723972,-2.7842E-05],[83.727408,-2.9389E-05],[83.730844,-2.9389E-05],[83.73428,-3.2998E-05],[83.737716,-3.4029E-05],[83.741152,-3.2998E-05],[83.744588,-2.9904E-05],[83.748024,-2.9389E-05],[83.75146,-3.4029E-05],[83.754896,-2.9904E-05],[83.758332,-2.6295E-05],[83.761768,-2.7326E-05],[83.765204,-2.7842E-05],[83.76864,-3.2482E-05],[83.772076,-3.2998E-05],[83.775512,-2.6811E-05],[83.778948,-2.7326E-05],[83.782384,-3.042E-05],[83.78582,-2.8357E-05],[83.789256,-2.6811E-05],[83.792692,-2.5779E-05],[83.796128,-2.8357E-05],[83.799564,-3.506E-05],[83.803,-3.2998E-05],[83.806436,-2.7842E-05],[83.809872,-2.8873E-05],[83.813308,-2.5779E-05],[83.816744,-2.6295E-05],[83.82018,-3.042E-05],[83.823616,-2.9389E-05],[83.827052,-3.042E-05],[83.830488,-3.0935E-05],[83.833924,-2.7326E-05],[83.83736,-2.5779E-05],[83.840796,-2.9389E-05],[83.844232,-3.0935E-05],[83.847668,-2.5264E-05],[83.851104,-2.4233E-05],[83.85454,-2.8873E-05],[83.857976,-2.9904E-05],[83.861412,-3.0935E-05],[83.864848,-3.0935E-05],[83.868284,-3.0935E-05],[83.87172,-3.0935E-05],[83.875156,-2.9389E-05],[83.878592,-3.3513E-05],[83.882028,-3.042E-05],[83.885464,-2.6811E-05],[83.8889,-2.9904E-05]]}
-{"quant":[84.1901,-2.8925E-05],"mems":[[84.091624,-3.1451E-05],[84.09506,-3.2998E-05],[84.098496,-2.9389E-05],[84.101932,-2.8873E-05],[84.105368,-3.1451E-05],[84.108804,-2.7842E-05],[84.11224,-2.7842E-05],[84.115676,-2.8873E-05],[84.119112,-2.9904E-05],[84.122548,-2.9389E-05],[84.125984,-2.9389E-05],[84.12942,-2.7326E-05],[84.132856,-2.5264E-05],[84.136292,-2.7326E-05],[84.139728,-2.6295E-05],[84.143164,-2.8873E-05],[84.1466,-3.0935E-05],[84.150036,-2.5264E-05],[84.153472,-2.4748E-05],[84.156908,-2.8873E-05],[84.160344,-2.8873E-05],[84.16378,-2.9389E-05],[84.167216,-2.8357E-05],[84.170652,-2.6295E-05],[84.174088,-2.6811E-05],[84.177524,-2.5264E-05],[84.18096,-2.8357E-05],[84.184396,-3.2482E-05],[84.187832,-2.9904E-05],[84.191268,-2.7326E-05],[84.194704,-2.9904E-05],[84.19814,-3.2482E-05],[84.201576,-2.9389E-05],[84.205012,-2.6295E-05],[84.208448,-2.8357E-05],[84.211884,-2.7842E-05],[84.21532,-3.042E-05],[84.218756,-3.1967E-05],[84.222192,-3.042E-05],[84.225628,-2.6811E-05],[84.229064,-2.5779E-05],[84.2325,-2.8357E-05],[84.235936,-2.6295E-05],[84.239372,-2.8357E-05],[84.242808,-2.8357E-05],[84.246244,-2.9904E-05],[84.24968,-2.9389E-05],[84.253116,-2.5779E-05],[84.256552,-2.8873E-05],[84.259988,-2.6811E-05],[84.263424,-3.1451E-05],[84.26686,-3.1967E-05],[84.270296,-2.8357E-05],[84.273732,-3.1967E-05],[84.277168,-2.9904E-05],[84.280604,-3.0935E-05],[84.28404,-2.9389E-05],[84.287476,-2.5264E-05],[84.290912,-2.9389E-05],[84.294348,-3.1451E-05],[84.297784,-3.042E-05],[84.30122,-3.0935E-05],[84.304656,-2.9389E-05],[84.308092,-2.6295E-05],[84.311528,-2.4233E-05],[84.314964,-2.7842E-05],[84.3184,-2.6811E-05],[84.321836,-2.8873E-05],[84.325272,-3.0935E-05],[84.328708,-2.6811E-05],[84.332144,-2.6295E-05],[84.33558,-2.6295E-05],[84.339016,-2.6811E-05],[84.342452,-2.9904E-05],[84.345888,-3.3513E-05],[84.349324,-2.9389E-05],[84.35276,-2.9904E-05],[84.356196,-3.1967E-05],[84.359632,-2.9904E-05],[84.363068,-3.042E-05],[84.366504,-3.042E-05],[84.36994,-3.2482E-05],[84.373376,-2.8357E-05],[84.376812,-2.6295E-05],[84.380248,-2.9389E-05],[84.383684,-2.6811E-05],[84.38712,-2.8357E-05],[84.390556,-2.8357E-05]]}
-{"quant":[84.6618,-2.9023E-05],"mems":[[84.562356,-3.6091E-05],[84.565792,-3.042E-05],[84.569228,-2.6811E-05],[84.572664,-2.217E-05],[84.5761,-2.6295E-05],[84.579536,-2.9389E-05],[84.582972,-3.1451E-05],[84.586408,-3.0935E-05],[84.589844,-2.7842E-05],[84.59328,-3.3513E-05],[84.596716,-3.3513E-05],[84.600152,-2.6811E-05],[84.603588,-2.9904E-05],[84.607024,-3.2482E-05],[84.61046,-2.9389E-05],[84.613896,-2.8873E-05],[84.617332,-2.8357E-05],[84.620768,-2.9389E-05],[84.624204,-2.8357E-05],[84.62764,-2.7326E-05],[84.631076,-2.9389E-05],[84.634512,-2.8873E-05],[84.637948,-2.7326E-05],[84.641384,-2.8873E-05],[84.64482,-3.1451E-05],[84.648256,-3.1451E-05],[84.651692,-2.8873E-05],[84.655128,-3.1451E-05],[84.658564,-3.1451E-05],[84.662,-2.9389E-05],[84.665436,-3.1451E-05],[84.668872,-3.1451E-05],[84.672308,-2.7842E-05],[84.675744,-2.6295E-05],[84.67918,-2.8873E-05],[84.682616,-2.8873E-05],[84.686052,-2.9389E-05],[84.689488,-3.1967E-05],[84.692924,-2.9389E-05],[84.69636,-2.9389E-05],[84.699796,-3.0935E-05],[84.703232,-2.9389E-05],[84.706668,-2.7326E-05],[84.710104,-2.8873E-05],[84.71354,-3.042E-05],[84.716976,-2.5779E-05],[84.720412,-2.9904E-05],[84.723848,-3.3513E-05],[84.727284,-3.1967E-05],[84.73072,-2.6295E-05],[84.734156,-2.3717E-05],[84.737592,-3.042E-05],[84.741028,-2.6811E-05],[84.744464,-2.7326E-05],[84.7479,-2.8357E-05],[84.751336,-2.6295E-05],[84.754772,-2.6811E-05],[84.758208,-3.0935E-05],[84.761644,-3.4029E-05],[84.76508,-2.6295E-05],[84.768516,-2.5264E-05],[84.771952,-2.6811E-05],[84.775388,-2.6811E-05],[84.778824,-3.2482E-05],[84.78226,-2.9389E-05],[84.785696,-2.7842E-05],[84.789132,-3.0935E-05],[84.792568,-2.9904E-05],[84.796004,-2.8873E-05],[84.79944,-2.8873E-05],[84.802876,-2.9389E-05],[84.806312,-2.7842E-05],[84.809748,-2.8873E-05],[84.813184,-2.9904E-05],[84.81662,-2.5779E-05],[84.820056,-2.8873E-05],[84.823492,-2.8873E-05],[84.826928,-2.8357E-05],[84.830364,-2.9904E-05],[84.8338,-2.5779E-05],[84.837236,-2.6811E-05],[84.840672,-2.5264E-05],[84.844108,-2.8357E-05],[84.847544,-3.042E-05],[84.85098,-2.8873E-05],[84.854416,-3.2482E-05],[84.857852,-3.0935E-05],[84.861288,-2.8873E-05],[84.864724,-2.9389E-05]]}
-{"quant":[85.1397,-2.9612E-05],"mems":[[85.03996,-2.7326E-05],[85.043396,-2.8873E-05],[85.046832,-2.9389E-05],[85.050268,-2.8873E-05],[85.053704,-2.5264E-05],[85.05714,-3.042E-05],[85.060576,-3.2482E-05],[85.064012,-2.7326E-05],[85.067448,-2.8357E-05],[85.070884,-2.6811E-05],[85.07432,-2.4233E-05],[85.077756,-2.8873E-05],[85.081192,-2.7842E-05],[85.084628,-2.4233E-05],[85.088064,-2.8873E-05],[85.0915,-2.7842E-05],[85.094936,-2.5264E-05],[85.098372,-2.9389E-05],[85.101808,-2.8357E-05],[85.105244,-2.9389E-05],[85.10868,-2.7842E-05],[85.112116,-2.6295E-05],[85.115552,-3.042E-05],[85.118988,-3.1451E-05],[85.122424,-3.1967E-05],[85.12586,-3.0935E-05],[85.129296,-2.8357E-05],[85.132732,-2.5264E-05],[85.136168,-2.4748E-05],[85.139604,-2.4748E-05],[85.14304,-2.8357E-05],[85.146476,-3.0935E-05],[85.149912,-2.7842E-05],[85.153348,-2.4748E-05],[85.156784,-2.217E-05],[85.16022,-3.0935E-05],[85.163656,-3.4544E-05],[85.167092,-2.9389E-05],[85.170528,-2.8357E-05],[85.173964,-2.6295E-05],[85.1774,-3.1451E-05],[85.180836,-3.1967E-05],[85.184272,-2.7842E-05],[85.187708,-3.042E-05],[85.191144,-2.8357E-05],[85.19458,-3.042E-05],[85.198016,-3.4544E-05],[85.201452,-3.1451E-05],[85.204888,-2.9389E-05],[85.208324,-2.8873E-05],[85.21176,-3.1967E-05],[85.215196,-3.2998E-05],[85.218632,-3.3513E-05],[85.222068,-3.1451E-05],[85.225504,-2.9389E-05],[85.22894,-3.1967E-05],[85.232376,-2.7326E-05],[85.235812,-2.6295E-05],[85.239248,-2.8357E-05],[85.242684,-2.6811E-05],[85.24612,-2.8873E-05],[85.249556,-2.8873E-05],[85.252992,-2.7326E-05],[85.256428,-2.8357E-05],[85.259864,-2.7326E-05],[85.2633,-2.5779E-05],[85.266736,-2.8873E-05],[85.270172,-2.6295E-05],[85.273608,-2.7842E-05],[85.277044,-3.1451E-05],[85.28048,-2.9904E-05],[85.283916,-3.2998E-05],[85.287352,-2.6295E-05],[85.290788,-2.5264E-05],[85.294224,-2.8873E-05],[85.29766,-2.9904E-05],[85.301096,-3.4029E-05],[85.304532,-3.4029E-05],[85.307968,-3.2998E-05],[85.311404,-2.8873E-05],[85.31484,-2.8357E-05],[85.318276,-3.2998E-05],[85.321712,-3.1451E-05],[85.325148,-2.8873E-05],[85.328584,-2.7326E-05],[85.33202,-2.2686E-05],[85.335456,-2.5264E-05],[85.338892,-2.8873E-05],[85.342328,-2.7326E-05]]}
-{"quant":[85.6516,-2.9285E-05],"mems":[[85.552032,-2.6295E-05],[85.55548,-2.8873E-05],[85.558928,-3.3513E-05],[85.562376,-2.9389E-05],[85.565824,-3.2998E-05],[85.569272,-2.6811E-05],[85.57272,-2.2686E-05],[85.576168,-2.9389E-05],[85.579616,-2.8873E-05],[85.583064,-2.9389E-05],[85.586512,-2.8873E-05],[85.58996,-2.6811E-05],[85.593408,-2.4233E-05],[85.596856,-3.2998E-05],[85.600304,-3.4544E-05],[85.603752,-2.5779E-05],[85.6072,-2.7842E-05],[85.610648,-2.8357E-05],[85.614096,-2.7326E-05],[85.617544,-2.9904E-05],[85.620992,-2.9904E-05],[85.62444,-2.8357E-05],[85.627888,-2.6811E-05],[85.631336,-2.5264E-05],[85.634784,-2.9904E-05],[85.638232,-2.9389E-05],[85.64168,-2.7842E-05],[85.645128,-3.1451E-05],[85.648576,-2.8357E-05],[85.652024,-2.6295E-05],[85.655472,-2.6811E-05],[85.65892,-3.042E-05],[85.662368,-3.1967E-05],[85.665816,-3.042E-05],[85.669264,-2.8357E-05],[85.672712,-2.5779E-05],[85.67616,-2.7326E-05],[85.679608,-2.7326E-05],[85.683056,-2.9389E-05],[85.686504,-2.7326E-05],[85.689952,-2.6295E-05],[85.6934,-3.0935E-05],[85.696848,-2.6811E-05],[85.700296,-2.6295E-05],[85.703744,-2.6295E-05],[85.707192,-2.7842E-05],[85.71064,-2.8357E-05],[85.714088,-3.042E-05],[85.717536,-3.7122E-05],[85.720984,-3.7122E-05],[85.724432,-3.4544E-05],[85.72788,-2.8357E-05],[85.731328,-2.8873E-05],[85.734776,-2.8357E-05],[85.738224,-2.6811E-05],[85.741672,-3.1451E-05],[85.74512,-3.042E-05],[85.748568,-3.0935E-05],[85.752016,-2.9904E-05],[85.755464,-2.7842E-05],[85.758912,-2.6811E-05],[85.76236,-2.6295E-05],[85.765808,-2.8357E-05],[85.769256,-2.9389E-05],[85.772704,-2.8873E-05],[85.776152,-3.2482E-05],[85.7796,-3.2482E-05],[85.783048,-2.7842E-05],[85.786496,-2.8873E-05],[85.789944,-2.7326E-05],[85.793392,-2.7842E-05],[85.79684,-2.9389E-05],[85.800288,-2.6295E-05],[85.803736,-2.7326E-05],[85.807184,-2.6811E-05],[85.810632,-2.7326E-05],[85.81408,-3.042E-05],[85.817528,-2.6811E-05],[85.820976,-3.1451E-05],[85.824424,-3.3513E-05],[85.827872,-2.9389E-05],[85.83132,-2.9904E-05],[85.834768,-2.6811E-05],[85.838216,-3.042E-05],[85.841664,-3.6091E-05],[85.845112,-3.3513E-05],[85.84856,-3.0935E-05],[85.852008,-3.042E-05]]}
-{"quant":[86.4833,-2.9492E-05],"mems":[[86.386448,-2.7842E-05],[86.389896,-3.1967E-05],[86.393344,-3.0935E-05],[86.396792,-3.0935E-05],[86.40024,-3.5576E-05],[86.403688,-3.6091E-05],[86.407136,-3.042E-05],[86.410584,-2.3202E-05],[86.414032,-2.5779E-05],[86.41748,-2.5779E-05],[86.420928,-2.8357E-05],[86.424376,-3.042E-05],[86.427824,-2.8873E-05],[86.431272,-2.9389E-05],[86.43472,-2.8357E-05],[86.438168,-3.3513E-05],[86.441616,-3.1451E-05],[86.445064,-2.4748E-05],[86.448512,-2.5264E-05],[86.45196,-2.8873E-05],[86.455408,-2.7842E-05],[86.458856,-2.3717E-05],[86.462304,-2.9389E-05],[86.465752,-3.0935E-05],[86.4692,-3.042E-05],[86.472648,-3.1967E-05],[86.476096,-3.042E-05],[86.479544,-3.2482E-05],[86.482992,-3.042E-05],[86.48644,-3.0935E-05],[86.489888,-3.3513E-05],[86.493336,-3.4544E-05],[86.496784,-3.0935E-05],[86.500232,-2.8873E-05],[86.50368,-3.4544E-05],[86.507128,-2.8357E-05],[86.510576,-3.042E-05],[86.514024,-3.5576E-05],[86.517472,-2.7842E-05],[86.52092,-2.9389E-05],[86.524368,-2.9904E-05],[86.527816,-2.9904E-05],[86.531264,-2.8357E-05],[86.534712,-2.6811E-05],[86.53816,-3.042E-05],[86.541608,-2.7842E-05],[86.545056,-2.9904E-05],[86.548504,-2.9389E-05],[86.551952,-2.6811E-05],[86.5554,-2.7326E-05],[86.558848,-3.042E-05],[86.562296,-3.2482E-05],[86.565744,-2.6811E-05],[86.569192,-2.8357E-05],[86.57264,-2.3717E-05],[86.576088,-2.5264E-05],[86.579536,-2.9389E-05],[86.582984,-2.4748E-05],[86.586432,-3.1967E-05],[86.58988,-2.9389E-05],[86.593328,-2.6811E-05],[86.596776,-3.042E-05],[86.600224,-2.5779E-05],[86.603672,-3.0935E-05],[86.60712,-2.8357E-05],[86.610568,-2.3717E-05],[86.614016,-2.8357E-05],[86.617464,-3.0935E-05],[86.620912,-3.2482E-05],[86.62436,-3.2998E-05],[86.627808,-3.4544E-05],[86.631256,-2.7326E-05],[86.634704,-2.7326E-05],[86.638152,-3.0935E-05],[86.6416,-2.7326E-05],[86.645048,-3.1451E-05],[86.648496,-3.1451E-05],[86.651944,-2.7326E-05],[86.655392,-2.8357E-05],[86.65884,-2.9389E-05],[86.662288,-3.0935E-05],[86.665736,-2.8357E-05],[86.669184,-2.4748E-05],[86.672632,-2.2686E-05],[86.67608,-2.4748E-05],[86.679528,-3.2998E-05],[86.682976,-2.7326E-05],[86.686424,-2.3202E-05]]}
-{"quant":[87.0112,-2.9749E-05],"mems":[[86.913992,-2.8357E-05],[86.91744,-2.7326E-05],[86.920888,-3.2998E-05],[86.924336,-3.1967E-05],[86.927784,-2.7326E-05],[86.931232,-2.5779E-05],[86.93468,-2.9389E-05],[86.938128,-3.0935E-05],[86.941576,-2.7326E-05],[86.945024,-2.8873E-05],[86.948472,-2.7326E-05],[86.95192,-2.5779E-05],[86.955368,-2.9389E-05],[86.958816,-3.0935E-05],[86.962264,-2.9904E-05],[86.965712,-2.7326E-05],[86.96916,-2.7842E-05],[86.972608,-2.7326E-05],[86.976056,-2.6811E-05],[86.979504,-2.9389E-05],[86.982952,-2.8873E-05],[86.9864,-3.1967E-05],[86.989848,-2.8357E-05],[86.993296,-2.7842E-05],[86.996744,-3.1451E-05],[87.000192,-3.042E-05],[87.00364,-2.9389E-05],[87.007088,-3.042E-05],[87.010536,-2.8357E-05],[87.013984,-2.4748E-05],[87.017432,-2.8873E-05],[87.02088,-3.2998E-05],[87.024328,-3.4544E-05],[87.027776,-3.0935E-05],[87.031224,-2.7842E-05],[87.034672,-2.8357E-05],[87.03812,-2.9389E-05],[87.041568,-3.3513E-05],[87.045016,-2.8357E-05],[87.048464,-2.7842E-05],[87.051912,-2.8873E-05],[87.05536,-2.6811E-05],[87.058808,-2.9389E-05],[87.062256,-2.8873E-05],[87.065704,-2.8357E-05],[87.069152,-2.4748E-05],[87.0726,-2.8357E-05],[87.076048,-3.4029E-05],[87.079496,-3.1967E-05],[87.082944,-3.042E-05],[87.086392,-2.9904E-05],[87.08984,-3.0935E-05],[87.093288,-3.1451E-05],[87.096736,-2.8873E-05],[87.100184,-2.8873E-05],[87.103632,-3.2482E-05],[87.10708,-2.8357E-05],[87.110528,-2.9904E-05],[87.113976,-3.2482E-05],[87.117424,-3.0935E-05],[87.120872,-3.0935E-05],[87.12432,-2.6295E-05],[87.127768,-3.0935E-05],[87.131216,-2.8357E-05],[87.134664,-2.5779E-05],[87.138112,-2.8357E-05],[87.14156,-2.7842E-05],[87.145008,-3.3513E-05],[87.148456,-2.8357E-05],[87.151904,-2.6811E-05],[87.155352,-2.8873E-05],[87.1588,-2.7326E-05],[87.162248,-2.9389E-05],[87.165696,-2.6295E-05],[87.169144,-2.5779E-05],[87.172592,-2.6811E-05],[87.17604,-2.9904E-05],[87.179488,-3.1967E-05],[87.182936,-2.9904E-05],[87.186384,-3.1451E-05],[87.189832,-3.2482E-05],[87.19328,-2.9389E-05],[87.196728,-2.3202E-05],[87.200176,-2.8873E-05],[87.203624,-3.2482E-05],[87.207072,-2.8873E-05],[87.21052,-3.1967E-05],[87.213968,-2.9904E-05]]}
-{"quant":[87.5068,-2.8271E-05],"mems":[[87.407056,-3.1967E-05],[87.410504,-2.5779E-05],[87.413952,-2.1655E-05],[87.4174,-2.3202E-05],[87.420848,-2.6811E-05],[87.424296,-3.042E-05],[87.427744,-3.0935E-05],[87.431192,-2.6295E-05],[87.43464,-2.7326E-05],[87.438088,-2.9904E-05],[87.441536,-2.7842E-05],[87.444984,-2.6811E-05],[87.448432,-2.4748E-05],[87.45188,-2.7326E-05],[87.455328,-2.8873E-05],[87.458776,-2.8357E-05],[87.462224,-2.7326E-05],[87.465672,-2.6295E-05],[87.46912,-2.8357E-05],[87.472568,-2.7842E-05],[87.476016,-2.5779E-05],[87.479464,-2.5264E-05],[87.482912,-2.9389E-05],[87.48636,-3.0935E-05],[87.489808,-2.9389E-05],[87.493256,-2.9904E-05],[87.496704,-2.7842E-05],[87.500152,-2.7326E-05],[87.5036,-2.9389E-05],[87.507048,-3.1967E-05],[87.510496,-2.8357E-05],[87.513944,-2.1139E-05],[87.517392,-2.6295E-05],[87.52084,-3.0935E-05],[87.524288,-2.8873E-05],[87.527736,-2.6811E-05],[87.531184,-2.5779E-05],[87.534632,-2.8873E-05],[87.53808,-3.042E-05],[87.541528,-2.9904E-05],[87.544976,-3.0935E-05],[87.548424,-3.042E-05],[87.551872,-2.6295E-05],[87.55532,-2.217E-05],[87.558768,-2.8873E-05],[87.562216,-3.042E-05],[87.565664,-2.6811E-05],[87.569112,-3.2482E-05],[87.57256,-2.9904E-05],[87.576008,-2.4748E-05],[87.579456,-2.6295E-05],[87.582904,-2.8873E-05],[87.586352,-3.1451E-05],[87.5898,-2.8873E-05],[87.593248,-2.9904E-05],[87.596696,-3.042E-05],[87.600144,-2.9904E-05],[87.603592,-2.7842E-05],[87.60704,-2.217E-05],[87.610488,-2.8873E-05],[87.613936,-3.1451E-05],[87.617384,-2.8357E-05],[87.620832,-2.9389E-05],[87.62428,-2.8873E-05],[87.627728,-2.9389E-05],[87.631176,-2.5264E-05],[87.634624,-2.8357E-05],[87.638072,-2.8873E-05],[87.64152,-3.1451E-05],[87.644968,-3.6091E-05],[87.648416,-2.6811E-05],[87.651864,-2.9389E-05],[87.655312,-3.1967E-05],[87.65876,-2.7326E-05],[87.662208,-3.0935E-05],[87.665656,-3.1451E-05],[87.669104,-3.042E-05],[87.672552,-2.9389E-05],[87.676,-2.7842E-05],[87.679448,-2.6811E-05],[87.682896,-3.042E-05],[87.686344,-3.042E-05],[87.689792,-2.8357E-05],[87.69324,-2.9389E-05],[87.696688,-2.8873E-05],[87.700136,-3.4544E-05],[87.703584,-3.3513E-05],[87.707032,-2.7326E-05]]}
-{"quant":[87.984,-1.1993],"mems":[[87.896672,-2.6295E-05],[87.90012,-3.0935E-05],[87.903568,-3.1451E-05],[87.907016,-2.7842E-05],[87.910464,-2.6811E-05],[87.913912,-2.8357E-05],[87.91736,-2.7842E-05],[87.920808,-3.042E-05],[87.924256,-2.8873E-05],[87.927704,-3.1451E-05],[87.931152,-3.1451E-05],[87.9346,-2.6811E-05],[87.938048,-2.9904E-05],[87.941496,-2.6295E-05],[87.944944,-2.2686E-05],[87.948392,-2.5264E-05],[87.95184,-2.8873E-05],[87.955288,-3.1451E-05],[87.958736,-3.1451E-05],[87.962184,-3.1451E-05],[87.965632,-3.042E-05],[87.96908,-2.9904E-05],[87.972528,-2.8357E-05],[87.975976,-2.5779E-05],[87.979424,-2.4748E-05],[87.982872,-3.042E-05],[87.98632,-2.9904E-05],[87.989768,-3.042E-05],[87.993216,-2.8357E-05],[87.996664,-2.3717E-05],[88.000112,-2.8873E-05],[88.00356,-2.6295E-05],[88.007008,-2.8357E-05],[88.010456,-2.9904E-05],[88.013904,-2.7842E-05],[88.017352,-3.1451E-05],[88.0208,-3.1967E-05],[88.024248,-3.4029E-05],[88.027696,-2.9389E-05],[88.031144,-2.4748E-05],[88.034592,-2.7842E-05],[88.03804,-3.2482E-05],[88.041488,-3.3513E-05],[88.044936,-2.7842E-05],[88.048384,-2.8357E-05],[88.051832,-3.042E-05],[88.05528,-2.9904E-05],[88.058728,-3.2482E-05],[88.062176,-2.8873E-05],[88.065624,-3.0935E-05],[88.069072,-2.9904E-05],[88.07252,-2.6811E-05],[88.075968,-2.8873E-05],[88.079416,-2.5779E-05],[88.082864,-2.8357E-05],[88.086312,-2.9904E-05],[88.08976,-2.9904E-05],[88.093208,-3.0935E-05],[88.096656,-2.8873E-05],[88.100104,-2.8357E-05],[88.103552,-2.8873E-05],[88.107,-2.9904E-05],[88.110428,-2.4233E-05],[88.113856,-2.3202E-05],[88.117284,-2.6295E-05],[88.120712,-2.5264E-05],[88.12414,-2.8357E-05],[88.127568,-3.2482E-05],[88.130996,-3.2482E-05],[88.134424,-3.042E-05],[88.137852,-2.8873E-05],[88.14128,-2.6811E-05],[88.144708,-2.7326E-05],[88.148136,-2.5264E-05],[88.151564,-2.7842E-05],[88.154992,-3.2482E-05],[88.15842,-2.6295E-05],[88.161848,-3.042E-05],[88.165276,-3.042E-05],[88.168704,-2.6811E-05],[88.172132,-2.8873E-05],[88.17556,-2.3202E-05],[88.178988,-2.7842E-05],[88.182416,-3.3513E-05],[88.185844,-3.0935E-05],[88.189272,-3.0935E-05],[88.1927,-3.1967E-05],[88.196128,-2.8873E-05]]}
-{"quant":[88.4726,-2.9062E-05],"mems":[[88.374384,-2.9904E-05],[88.377812,-3.4544E-05],[88.38124,-3.2998E-05],[88.384668,-2.8873E-05],[88.388096,-3.1967E-05],[88.391524,-2.9904E-05],[88.394952,-2.9904E-05],[88.39838,-2.9904E-05],[88.401808,-2.8873E-05],[88.405236,-3.1451E-05],[88.408664,-2.9904E-05],[88.412092,-2.7326E-05],[88.41552,-2.9904E-05],[88.418948,-3.2482E-05],[88.422376,-3.0935E-05],[88.425804,-3.042E-05],[88.429232,-3.042E-05],[88.43266,-2.8357E-05],[88.436088,-2.8357E-05],[88.439516,-2.9904E-05],[88.442944,-2.8873E-05],[88.446372,-3.1451E-05],[88.4498,-2.7842E-05],[88.453228,-2.4748E-05],[88.456656,-2.9389E-05],[88.460084,-3.0935E-05],[88.463512,-3.2998E-05],[88.46694,-3.6091E-05],[88.470368,-3.2482E-05],[88.473796,-2.9389E-05],[88.477224,-2.9904E-05],[88.480652,-3.1451E-05],[88.48408,-3.3513E-05],[88.487508,-3.2482E-05],[88.490936,-2.9389E-05],[88.494364,-2.5779E-05],[88.497792,-2.8873E-05],[88.50122,-3.3513E-05],[88.504648,-3.042E-05],[88.508076,-2.6295E-05],[88.511504,-2.5779E-05],[88.514932,-2.9904E-05],[88.51836,-3.3513E-05],[88.521788,-2.9904E-05],[88.525216,-2.5779E-05],[88.528644,-2.6811E-05],[88.532072,-2.7326E-05],[88.5355,-2.6811E-05],[88.538928,-2.6295E-05],[88.542356,-2.9389E-05],[88.545784,-2.9389E-05],[88.549212,-2.6295E-05],[88.55264,-2.9904E-05],[88.556068,-2.9904E-05],[88.559496,-3.042E-05],[88.562924,-3.3513E-05],[88.566352,-2.9904E-05],[88.56978,-2.5264E-05],[88.573208,-2.4748E-05],[88.576636,-2.9904E-05],[88.580064,-3.6607E-05],[88.583492,-3.4544E-05],[88.58692,-2.5264E-05],[88.590348,-2.4748E-05],[88.593776,-2.7326E-05],[88.597204,-2.7326E-05],[88.600632,-2.9904E-05],[88.60406,-2.9389E-05],[88.607488,-2.6811E-05],[88.610916,-2.7326E-05],[88.614344,-2.7842E-05],[88.617772,-2.8357E-05],[88.6212,-2.8357E-05],[88.624628,-2.8873E-05],[88.628056,-2.8357E-05],[88.631484,-2.2686E-05],[88.634912,-2.7842E-05],[88.63834,-3.2998E-05],[88.641768,-2.9904E-05],[88.645196,-3.042E-05],[88.648624,-2.8873E-05],[88.652052,-3.2482E-05],[88.65548,-3.1451E-05],[88.658908,-2.7326E-05],[88.662336,-2.8873E-05],[88.665764,-2.7326E-05],[88.669192,-2.4233E-05],[88.67262,-2.7842E-05]]}
-{"quant":[89.0068,-2.8564E-05],"mems":[[88.909152,-3.0935E-05],[88.91258,-2.3202E-05],[88.916008,-2.8873E-05],[88.919436,-3.7122E-05],[88.922864,-3.1451E-05],[88.926292,-2.8357E-05],[88.92972,-2.6811E-05],[88.933148,-2.6295E-05],[88.936576,-2.8357E-05],[88.940004,-2.8357E-05],[88.943432,-2.9904E-05],[88.94686,-3.0935E-05],[88.950288,-3.1967E-05],[88.953716,-2.9389E-05],[88.957144,-2.7842E-05],[88.960572,-2.7326E-05],[88.964,-2.7326E-05],[88.967428,-2.7842E-05],[88.970856,-2.6295E-05],[88.974284,-2.7326E-05],[88.977712,-2.6295E-05],[88.98114,-2.6811E-05],[88.984568,-2.8357E-05],[88.987996,-2.6811E-05],[88.991424,-2.8873E-05],[88.994852,-2.8873E-05],[88.99828,-3.0935E-05],[89.001708,-3.4544E-05],[89.005136,-3.042E-05],[89.008564,-3.1967E-05],[89.011992,-3.2482E-05],[89.01542,-2.9389E-05],[89.018848,-2.8357E-05],[89.022276,-2.4748E-05],[89.025704,-2.4233E-05],[89.029132,-2.6295E-05],[89.03256,-3.042E-05],[89.035988,-3.1967E-05],[89.039416,-2.8357E-05],[89.042844,-2.8873E-05],[89.046272,-2.7842E-05],[89.0497,-2.6811E-05],[89.053128,-2.6811E-05],[89.056556,-2.7842E-05],[89.059984,-2.8873E-05],[89.063412,-2.5264E-05],[89.06684,-2.8873E-05],[89.070268,-3.042E-05],[89.073696,-3.0935E-05],[89.077124,-3.2482E-05],[89.080552,-2.7842E-05],[89.08398,-2.8873E-05],[89.087408,-2.7842E-05],[89.090836,-2.5779E-05],[89.094264,-2.7326E-05],[89.097692,-2.8357E-05],[89.10112,-2.7326E-05],[89.104548,-2.8873E-05],[89.107976,-3.1451E-05],[89.111404,-2.6811E-05],[89.114832,-2.8357E-05],[89.11826,-2.9904E-05],[89.121688,-3.042E-05],[89.125116,-3.1967E-05],[89.128544,-2.5264E-05],[89.131972,-2.6295E-05],[89.1354,-2.6811E-05],[89.138828,-2.9389E-05],[89.142256,-2.9904E-05],[89.145684,-2.6811E-05],[89.149112,-2.9904E-05],[89.15254,-2.8357E-05],[89.155968,-3.1451E-05],[89.159396,-2.8357E-05],[89.162824,-2.6295E-05],[89.166252,-3.2482E-05],[89.16968,-2.8357E-05],[89.173108,-2.8357E-05],[89.176536,-2.8873E-05],[89.179964,-2.7326E-05],[89.183392,-3.1451E-05],[89.18682,-3.2482E-05],[89.190248,-3.2998E-05],[89.193676,-3.0935E-05],[89.197104,-2.9904E-05],[89.200532,-2.8873E-05],[89.20396,-2.8357E-05],[89.207388,-2.7326E-05]]}
-{"quant":[89.4619,-2.944E-05],"mems":[[89.365076,-3.042E-05],[89.368504,-3.0935E-05],[89.371932,-2.7842E-05],[89.37536,-2.8873E-05],[89.378788,-2.9904E-05],[89.382216,-2.8873E-05],[89.385644,-2.5264E-05],[89.389072,-2.9389E-05],[89.3925,-3.1451E-05],[89.395928,-2.8873E-05],[89.399356,-2.8873E-05],[89.402784,-2.9904E-05],[89.406212,-3.506E-05],[89.40964,-2.9904E-05],[89.413068,-2.7842E-05],[89.416496,-3.0935E-05],[89.419924,-3.0935E-05],[89.423352,-3.2482E-05],[89.42678,-2.8357E-05],[89.430208,-3.2998E-05],[89.433636,-3.4029E-05],[89.437064,-3.2482E-05],[89.440492,-3.4029E-05],[89.44392,-3.2482E-05],[89.447348,-3.2998E-05],[89.450776,-2.7326E-05],[89.454204,-2.7842E-05],[89.457632,-3.1967E-05],[89.46106,-3.1451E-05],[89.464488,-3.1451E-05],[89.467916,-2.8357E-05],[89.471344,-3.1967E-05],[89.474772,-3.4029E-05],[89.4782,-2.9904E-05],[89.481628,-3.042E-05],[89.485056,-2.8357E-05],[89.488484,-2.8357E-05],[89.491912,-3.1967E-05],[89.49534,-3.2482E-05],[89.498768,-3.042E-05],[89.502196,-2.9904E-05],[89.505624,-2.8357E-05],[89.509052,-2.9904E-05],[89.51248,-2.9389E-05],[89.515908,-2.8873E-05],[89.519336,-3.3513E-05],[89.522764,-3.2482E-05],[89.526192,-2.9904E-05],[89.52962,-2.6811E-05],[89.533048,-2.6811E-05],[89.536476,-3.0935E-05],[89.539904,-2.7326E-05],[89.543332,-2.4748E-05],[89.54676,-2.5779E-05],[89.550188,-2.3717E-05],[89.553616,-2.5779E-05],[89.557044,-3.3513E-05],[89.560472,-3.042E-05],[89.5639,-2.7326E-05],[89.567328,-3.2482E-05],[89.570756,-2.8873E-05],[89.574184,-2.8357E-05],[89.577612,-3.042E-05],[89.58104,-3.042E-05],[89.584468,-3.4029E-05],[89.587896,-2.7326E-05],[89.591324,-2.217E-05],[89.594752,-2.3717E-05],[89.59818,-2.8357E-05],[89.601608,-3.2482E-05],[89.605036,-2.6295E-05],[89.608464,-2.8873E-05],[89.611892,-3.042E-05],[89.61532,-2.7842E-05],[89.618748,-3.1451E-05],[89.622176,-3.1967E-05],[89.625604,-3.1967E-05],[89.629032,-2.6295E-05],[89.63246,-2.4233E-05],[89.635888,-2.7842E-05],[89.639316,-2.9904E-05],[89.642744,-2.9904E-05],[89.646172,-2.7326E-05],[89.6496,-2.8357E-05],[89.653028,-3.042E-05],[89.656456,-3.3513E-05],[89.659884,-3.1967E-05],[89.663312,-2.7842E-05]]}
-{"quant":[89.9221,-2.932E-05],"mems":[[89.824428,-2.6295E-05],[89.827856,-2.8873E-05],[89.831284,-2.8357E-05],[89.834712,-2.5264E-05],[89.83814,-2.6811E-05],[89.841568,-2.7842E-05],[89.844996,-2.6295E-05],[89.848424,-3.0935E-05],[89.851852,-3.2998E-05],[89.85528,-3.2482E-05],[89.858708,-3.4029E-05],[89.862136,-3.2482E-05],[89.865564,-3.1967E-05],[89.868992,-2.8357E-05],[89.87242,-2.7326E-05],[89.875848,-3.042E-05],[89.879276,-3.1451E-05],[89.882704,-3.0935E-05],[89.886132,-2.5264E-05],[89.88956,-3.042E-05],[89.892988,-3.6607E-05],[89.896416,-2.7842E-05],[89.899844,-2.9389E-05],[89.903272,-3.4544E-05],[89.9067,-2.8873E-05],[89.910128,-2.9904E-05],[89.913556,-3.4544E-05],[89.916984,-3.1967E-05],[89.920412,-3.042E-05],[89.92384,-3.0935E-05],[89.927268,-2.6811E-05],[89.930696,-2.8873E-05],[89.934124,-2.9904E-05],[89.937552,-3.1451E-05],[89.94098,-3.2482E-05],[89.944408,-2.7842E-05],[89.947836,-2.7326E-05],[89.951264,-2.6811E-05],[89.954692,-3.0935E-05],[89.95812,-2.8357E-05],[89.961548,-2.217E-05],[89.964976,-2.8873E-05],[89.968404,-3.042E-05],[89.971832,-2.6295E-05],[89.97526,-2.8357E-05],[89.978688,-3.042E-05],[89.982116,-3.1967E-05],[89.985544,-2.9389E-05],[89.988972,-2.7326E-05],[89.9924,-2.9904E-05],[89.995828,-3.042E-05],[89.999256,-3.4029E-05],[90.002684,-3.4029E-05],[90.006112,-3.042E-05],[90.00954,-2.8873E-05],[90.012968,-2.7842E-05],[90.016396,-3.042E-05],[90.019824,-2.9904E-05],[90.023252,-2.6811E-05],[90.02668,-2.7842E-05],[90.030108,-3.1451E-05],[90.033536,-3.1451E-05],[90.036964,-2.6295E-05],[90.040392,-3.042E-05],[90.04382,-3.506E-05],[90.047248,-2.7842E-05],[90.050676,-3.1451E-05],[90.054104,-3.4029E-05],[90.057532,-2.6295E-05],[90.06096,-2.9904E-05],[90.064388,-2.8357E-05],[90.067816,-2.7326E-05],[90.071244,-3.2482E-05],[90.074672,-2.8873E-05],[90.0781,-2.8357E-05],[90.081528,-2.7326E-05],[90.084956,-2.217E-05],[90.088384,-2.7842E-05],[90.091812,-2.7326E-05],[90.09524,-2.6295E-05],[90.098668,-3.3513E-05],[90.102096,-3.042E-05],[90.105524,-2.9389E-05],[90.108952,-3.1967E-05],[90.11238,-3.2998E-05],[90.115808,-2.8357E-05],[90.119236,-2.7326E-05],[90.122664,-3.042E-05]]}
-{"quant":[90.368,-2.92E-05],"mems":[[90.270068,-2.7326E-05],[90.273496,-2.7842E-05],[90.276924,-2.6811E-05],[90.280352,-2.8357E-05],[90.28378,-3.0935E-05],[90.287208,-2.8357E-05],[90.290636,-2.7326E-05],[90.294064,-3.042E-05],[90.297492,-3.4544E-05],[90.30092,-2.8357E-05],[90.304348,-2.4233E-05],[90.307776,-3.042E-05],[90.311204,-2.7842E-05],[90.314632,-2.5779E-05],[90.31806,-2.8873E-05],[90.321488,-2.8357E-05],[90.324916,-2.7326E-05],[90.328344,-2.6811E-05],[90.331772,-2.9904E-05],[90.3352,-3.1451E-05],[90.338628,-3.2482E-05],[90.342056,-2.9904E-05],[90.345484,-2.6811E-05],[90.348912,-3.042E-05],[90.35234,-3.2482E-05],[90.355768,-3.1967E-05],[90.359196,-3.2482E-05],[90.362624,-2.9904E-05],[90.366052,-2.4233E-05],[90.36948,-2.8873E-05],[90.372908,-3.4544E-05],[90.376336,-2.8873E-05],[90.379764,-2.8357E-05],[90.383192,-2.4748E-05],[90.38662,-2.5264E-05],[90.390048,-3.1451E-05],[90.393476,-3.506E-05],[90.396904,-3.2998E-05],[90.400332,-2.6295E-05],[90.40376,-3.1451E-05],[90.407188,-3.0935E-05],[90.410616,-2.8873E-05],[90.414044,-3.0935E-05],[90.417472,-2.9389E-05],[90.4209,-3.1967E-05],[90.424328,-2.8357E-05],[90.427756,-2.9389E-05],[90.431184,-2.9389E-05],[90.434612,-2.7842E-05],[90.43804,-2.9904E-05],[90.441468,-2.6295E-05],[90.444896,-2.7842E-05],[90.448324,-2.6295E-05],[90.451752,-2.8357E-05],[90.45518,-3.1967E-05],[90.458608,-2.8873E-05],[90.462036,-2.6811E-05],[90.465464,-2.5264E-05],[90.468892,-2.9389E-05],[90.47232,-2.9904E-05],[90.475748,-2.6295E-05],[90.479176,-2.6811E-05],[90.482604,-2.3202E-05],[90.486032,-2.9389E-05],[90.48946,-3.3513E-05],[90.492888,-3.1967E-05],[90.496316,-3.3513E-05],[90.499744,-2.8357E-05],[90.503172,-2.6295E-05],[90.5066,-2.7842E-05],[90.510028,-2.8873E-05],[90.513456,-3.3513E-05],[90.516884,-2.9389E-05],[90.520312,-2.9904E-05],[90.52374,-3.1451E-05],[90.527168,-2.8873E-05],[90.530596,-3.506E-05],[90.534024,-2.8873E-05],[90.537452,-2.2686E-05],[90.54088,-2.6295E-05],[90.544308,-2.9389E-05],[90.547736,-2.9389E-05],[90.551164,-2.7326E-05],[90.554592,-2.8357E-05],[90.55802,-2.5264E-05],[90.561448,-2.7326E-05],[90.564876,-3.0935E-05],[90.568304,-2.8873E-05]]}
-{"quant":[90.8445,-2.9526E-05],"mems":[[90.74672,-2.6811E-05],[90.750156,-3.1967E-05],[90.753592,-2.9904E-05],[90.757028,-3.6091E-05],[90.760464,-3.1967E-05],[90.7639,-2.5779E-05],[90.767336,-3.042E-05],[90.770772,-3.2482E-05],[90.774208,-3.4544E-05],[90.777644,-2.7326E-05],[90.78108,-2.6811E-05],[90.784516,-2.7842E-05],[90.787952,-2.5779E-05],[90.791388,-3.1451E-05],[90.794824,-2.9904E-05],[90.79826,-3.0935E-05],[90.801696,-3.1451E-05],[90.805132,-2.9389E-05],[90.808568,-2.9904E-05],[90.812004,-2.8873E-05],[90.81544,-3.0935E-05],[90.818876,-2.9389E-05],[90.822312,-2.4748E-05],[90.825748,-2.4748E-05],[90.829184,-2.9389E-05],[90.83262,-3.042E-05],[90.836056,-2.7326E-05],[90.839492,-2.5264E-05],[90.842928,-2.5264E-05],[90.846364,-2.9904E-05],[90.8498,-3.1967E-05],[90.853236,-3.4544E-05],[90.856672,-3.4029E-05],[90.860108,-2.8357E-05],[90.863544,-2.6295E-05],[90.86698,-3.1967E-05],[90.870416,-3.3513E-05],[90.873852,-3.1451E-05],[90.877288,-3.4029E-05],[90.880724,-3.2998E-05],[90.88416,-3.0935E-05],[90.887596,-2.7326E-05],[90.891032,-3.042E-05],[90.894468,-3.042E-05],[90.897904,-2.217E-05],[90.90134,-2.7842E-05],[90.904776,-2.6295E-05],[90.908212,-2.7326E-05],[90.911648,-3.2998E-05],[90.915084,-2.6295E-05],[90.91852,-3.0935E-05],[90.921956,-2.8873E-05],[90.925392,-2.4233E-05],[90.928828,-2.8873E-05],[90.932264,-2.9389E-05],[90.9357,-2.9389E-05],[90.939136,-2.8357E-05],[90.942572,-2.5779E-05],[90.946008,-2.8873E-05],[90.949444,-2.9389E-05],[90.95288,-2.4748E-05],[90.956316,-2.9389E-05],[90.959752,-3.042E-05],[90.963188,-2.8357E-05],[90.966624,-2.7326E-05],[90.97006,-2.4748E-05],[90.973496,-2.7326E-05],[90.976932,-2.9904E-05],[90.980368,-2.7326E-05],[90.983804,-2.5264E-05],[90.98724,-2.3202E-05],[90.990676,-2.5779E-05],[90.994112,-3.2482E-05],[90.997548,-2.6811E-05],[91.000984,-2.4748E-05],[91.00442,-2.6295E-05],[91.007856,-2.3202E-05],[91.011292,-3.0935E-05],[91.014728,-3.1451E-05],[91.018164,-2.5779E-05],[91.0216,-2.4748E-05],[91.025036,-2.9389E-05],[91.028472,-2.8357E-05],[91.031908,-2.4748E-05],[91.035344,-3.1451E-05],[91.03878,-2.6811E-05],[91.042216,-2.9904E-05],[91.045652,-3.5576E-05]]}
-{"quant":[91.5452,-2.9475E-05],"mems":[[91.447664,-2.9389E-05],[91.4511,-2.7842E-05],[91.454536,-2.6295E-05],[91.457972,-2.7326E-05],[91.461408,-2.5779E-05],[91.464844,-2.5264E-05],[91.46828,-2.8357E-05],[91.471716,-3.0935E-05],[91.475152,-3.2998E-05],[91.478588,-2.6295E-05],[91.482024,-2.9904E-05],[91.48546,-3.2998E-05],[91.488896,-2.6811E-05],[91.492332,-2.7842E-05],[91.495768,-2.5264E-05],[91.499204,-2.7842E-05],[91.50264,-2.8873E-05],[91.506076,-2.8357E-05],[91.509512,-3.2482E-05],[91.512948,-2.7326E-05],[91.516384,-2.9389E-05],[91.51982,-2.9904E-05],[91.523256,-2.6295E-05],[91.526692,-3.1451E-05],[91.530128,-3.1967E-05],[91.533564,-3.1451E-05],[91.537,-3.0935E-05],[91.540436,-2.6295E-05],[91.543872,-2.3717E-05],[91.547308,-2.4233E-05],[91.550744,-2.9904E-05],[91.55418,-3.2998E-05],[91.557616,-2.7842E-05],[91.561052,-2.6295E-05],[91.564488,-2.6295E-05],[91.567924,-2.5264E-05],[91.57136,-2.6811E-05],[91.574796,-2.9904E-05],[91.578232,-3.506E-05],[91.581668,-3.2482E-05],[91.585104,-2.8873E-05],[91.58854,-3.6091E-05],[91.591976,-3.4544E-05],[91.595412,-3.042E-05],[91.598848,-2.9904E-05],[91.602284,-2.8357E-05],[91.60572,-3.0935E-05],[91.609156,-3.1451E-05],[91.612592,-3.0935E-05],[91.616028,-2.6811E-05],[91.619464,-3.042E-05],[91.6229,-3.042E-05],[91.626336,-2.4748E-05],[91.629772,-3.1451E-05],[91.633208,-3.1967E-05],[91.636644,-2.8873E-05],[91.64008,-2.4748E-05],[91.643516,-2.4748E-05],[91.646952,-3.1451E-05],[91.650388,-3.1967E-05],[91.653824,-2.7326E-05],[91.65726,-2.5779E-05],[91.660696,-2.6811E-05],[91.664132,-2.3717E-05],[91.667568,-2.8357E-05],[91.671004,-3.0935E-05],[91.67444,-2.8873E-05],[91.677876,-3.1967E-05],[91.681312,-3.2482E-05],[91.684748,-2.9904E-05],[91.688184,-2.8357E-05],[91.69162,-2.9904E-05],[91.695056,-3.0935E-05],[91.698492,-3.2998E-05],[91.701928,-2.7842E-05],[91.705364,-2.4233E-05],[91.7088,-2.9904E-05],[91.712236,-3.1967E-05],[91.715672,-3.1451E-05],[91.719108,-2.7842E-05],[91.722544,-2.9904E-05],[91.72598,-3.2482E-05],[91.729416,-2.9904E-05],[91.732852,-2.8873E-05],[91.736288,-2.7842E-05],[91.739724,-3.1451E-05],[91.74316,-2.9904E-05],[91.746596,-2.8357E-05]]}
-{"quant":[92.1107,-3.0386E-05],"mems":[[92.011168,-3.2998E-05],[92.014604,-3.2998E-05],[92.01804,-2.3202E-05],[92.021476,-2.3717E-05],[92.024912,-2.8357E-05],[92.028348,-2.9904E-05],[92.031784,-2.6811E-05],[92.03522,-2.5264E-05],[92.038656,-2.7842E-05],[92.042092,-2.7326E-05],[92.045528,-2.6295E-05],[92.048964,-3.1451E-05],[92.0524,-3.4544E-05],[92.055836,-2.9904E-05],[92.059272,-3.2998E-05],[92.062708,-3.0935E-05],[92.066144,-3.042E-05],[92.06958,-3.0935E-05],[92.073016,-2.8357E-05],[92.076452,-3.1967E-05],[92.079888,-2.7326E-05],[92.083324,-2.8873E-05],[92.08676,-3.6607E-05],[92.090196,-3.1967E-05],[92.093632,-2.8357E-05],[92.097068,-2.9904E-05],[92.100504,-2.7842E-05],[92.10394,-2.8357E-05],[92.107376,-3.2482E-05],[92.110812,-3.042E-05],[92.114248,-2.9389E-05],[92.117684,-2.9389E-05],[92.12112,-2.8357E-05],[92.124556,-2.6811E-05],[92.127992,-2.7326E-05],[92.131428,-3.1451E-05],[92.134864,-3.2482E-05],[92.1383,-3.7122E-05],[92.141736,-3.1967E-05],[92.145172,-2.7842E-05],[92.148608,-3.4544E-05],[92.152044,-3.3513E-05],[92.15548,-2.9389E-05],[92.158916,-2.9904E-05],[92.162352,-2.9904E-05],[92.165788,-2.7326E-05],[92.169224,-2.8357E-05],[92.17266,-2.9904E-05],[92.176096,-2.9904E-05],[92.179532,-2.9904E-05],[92.182968,-2.9904E-05],[92.186404,-3.042E-05],[92.18984,-3.4029E-05],[92.193276,-3.4029E-05],[92.196712,-3.0935E-05],[92.200148,-3.042E-05],[92.203584,-2.8357E-05],[92.20702,-3.0935E-05],[92.210456,-2.9389E-05],[92.213892,-2.8357E-05],[92.217328,-3.1451E-05],[92.220764,-2.8357E-05],[92.2242,-2.8357E-05],[92.227636,-2.8873E-05],[92.231072,-3.2482E-05],[92.234508,-3.1451E-05],[92.237944,-3.042E-05],[92.24138,-3.4029E-05],[92.244816,-2.9904E-05],[92.248252,-3.042E-05],[92.251688,-3.2998E-05],[92.255124,-2.9904E-05],[92.25856,-2.9389E-05],[92.261996,-2.5779E-05],[92.265432,-2.7842E-05],[92.268868,-2.7842E-05],[92.272304,-2.7842E-05],[92.27574,-3.4544E-05],[92.279176,-3.0935E-05],[92.282612,-2.7326E-05],[92.286048,-2.6811E-05],[92.289484,-2.8357E-05],[92.29292,-3.2998E-05],[92.296356,-2.9389E-05],[92.299792,-2.7326E-05],[92.303228,-2.8357E-05],[92.306664,-3.4544E-05],[92.3101,-3.6607E-05],[92.313536,-2.8357E-05]]}
-{"quant":[92.5944,-2.9114E-05],"mems":[[92.495644,-3.4544E-05],[92.49908,-3.1967E-05],[92.502516,-2.7326E-05],[92.505952,-2.8873E-05],[92.509388,-2.7842E-05],[92.512824,-3.1451E-05],[92.51626,-3.0935E-05],[92.519696,-2.8357E-05],[92.523132,-2.8357E-05],[92.526568,-2.7842E-05],[92.530004,-3.042E-05],[92.53344,-3.1967E-05],[92.536876,-2.9389E-05],[92.540312,-2.7326E-05],[92.543748,-2.8357E-05],[92.547184,-3.0935E-05],[92.55062,-3.4544E-05],[92.554056,-3.1451E-05],[92.557492,-2.9904E-05],[92.560928,-3.1451E-05],[92.564364,-2.6811E-05],[92.5678,-2.9389E-05],[92.571236,-3.2482E-05],[92.574672,-3.1967E-05],[92.578108,-3.2482E-05],[92.581544,-2.6295E-05],[92.58498,-2.6811E-05],[92.588416,-2.9904E-05],[92.591852,-2.6295E-05],[92.595288,-2.7842E-05],[92.598724,-2.8873E-05],[92.60216,-2.8873E-05],[92.605596,-2.8357E-05],[92.609032,-2.8873E-05],[92.612468,-2.6295E-05],[92.615904,-2.7326E-05],[92.61934,-3.0935E-05],[92.622776,-2.7842E-05],[92.626212,-3.042E-05],[92.629648,-3.4029E-05],[92.633084,-3.4029E-05],[92.63652,-3.042E-05],[92.639956,-2.7842E-05],[92.643392,-3.1967E-05],[92.646828,-3.2482E-05],[92.650264,-2.9389E-05],[92.6537,-2.6295E-05],[92.657136,-2.5264E-05],[92.660572,-2.3202E-05],[92.664008,-2.9389E-05],[92.667444,-3.1451E-05],[92.67088,-2.8873E-05],[92.674316,-3.042E-05],[92.677752,-2.6295E-05],[92.681188,-2.7326E-05],[92.684624,-2.7842E-05],[92.68806,-2.7326E-05],[92.691496,-3.2998E-05],[92.694932,-3.0935E-05],[92.698368,-2.9389E-05],[92.701804,-3.2482E-05],[92.70524,-3.1451E-05],[92.708676,-3.2998E-05],[92.712112,-3.2482E-05],[92.715548,-2.6295E-05],[92.718984,-2.8873E-05],[92.72242,-3.2998E-05],[92.725856,-2.7842E-05],[92.729292,-2.9389E-05],[92.732728,-3.042E-05],[92.736164,-2.7326E-05],[92.7396,-2.8873E-05],[92.743036,-2.8873E-05],[92.746472,-2.9904E-05],[92.749908,-3.1967E-05],[92.753344,-3.2998E-05],[92.75678,-2.6295E-05],[92.760216,-2.2686E-05],[92.763652,-2.4748E-05],[92.767088,-2.6811E-05],[92.770524,-3.042E-05],[92.77396,-3.0935E-05],[92.777396,-3.0935E-05],[92.780832,-2.5779E-05],[92.784268,-2.6295E-05],[92.787704,-2.8357E-05],[92.79114,-2.7326E-05],[92.794576,-2.9904E-05]]}
-{"quant":[93.06,-0.10355],"mems":[[92.96294,-3.0935E-05],[92.966376,-2.8873E-05],[92.969812,-3.1967E-05],[92.973248,-3.042E-05],[92.976684,-2.8357E-05],[92.98012,-3.0935E-05],[92.983556,-2.4748E-05],[92.986992,-3.042E-05],[92.990428,-3.4029E-05],[92.993864,-2.5779E-05],[92.9973,-2.6811E-05],[93.000736,-2.9904E-05],[93.004172,-3.042E-05],[93.007608,-3.3513E-05],[93.011044,-3.4029E-05],[93.01448,-3.1451E-05],[93.017916,-2.7326E-05],[93.021352,-2.6811E-05],[93.024788,-3.1967E-05],[93.028224,-3.2998E-05],[93.03166,-3.1967E-05],[93.035096,-2.9904E-05],[93.038532,-2.5264E-05],[93.041968,-2.8873E-05],[93.045404,-3.506E-05],[93.04884,-3.042E-05],[93.052276,-2.8357E-05],[93.055712,-2.9389E-05],[93.059148,-2.8357E-05],[93.062584,-3.1451E-05],[93.06602,-3.6607E-05],[93.069456,-3.1967E-05],[93.072892,-3.0935E-05],[93.076328,-3.6091E-05],[93.079764,-3.042E-05],[93.0832,-2.8357E-05],[93.086636,-2.9389E-05],[93.090072,-2.9389E-05],[93.093508,-3.042E-05],[93.096944,-2.8357E-05],[93.10038,-2.7842E-05],[93.103816,-2.5779E-05],[93.107252,-2.9904E-05],[93.110688,-3.1451E-05],[93.114124,-3.0935E-05],[93.11756,-2.9389E-05],[93.120996,-2.5779E-05],[93.124432,-3.0935E-05],[93.127868,-3.1967E-05],[93.131304,-3.042E-05],[93.13474,-2.8873E-05],[93.138176,-2.5264E-05],[93.141612,-3.0935E-05],[93.145048,-3.1451E-05],[93.148484,-3.042E-05],[93.15192,-3.2482E-05],[93.155356,-2.8873E-05],[93.158792,-2.8357E-05],[93.162228,-2.9904E-05],[93.165664,-2.9904E-05],[93.1691,-3.2482E-05],[93.172536,-3.2998E-05],[93.175972,-3.0935E-05],[93.179408,-3.042E-05],[93.182844,-3.0935E-05],[93.18628,-3.1967E-05],[93.189716,-3.1967E-05],[93.193152,-3.4029E-05],[93.196588,-3.042E-05],[93.200024,-2.5779E-05],[93.20346,-2.6811E-05],[93.206896,-2.4748E-05],[93.210332,-2.9389E-05],[93.213768,-3.2998E-05],[93.217204,-2.9389E-05],[93.22064,-3.042E-05],[93.224076,-3.1967E-05],[93.227512,-3.3513E-05],[93.230948,-2.9389E-05],[93.234384,-2.6295E-05],[93.23782,-3.2998E-05],[93.241256,-3.1451E-05],[93.244692,-2.8873E-05],[93.248128,-3.4544E-05],[93.251564,-2.8357E-05],[93.255,-2.6295E-05],[93.258441,-2.6811E-05],[93.261883,-2.5264E-05]]}
-{"quant":[93.5389,-2.8443E-05],"mems":[[93.440832,-2.5264E-05],[93.444273,-3.2482E-05],[93.447715,-3.2482E-05],[93.451156,-3.2482E-05],[93.454597,-3.506E-05],[93.458039,-3.506E-05],[93.46148,-2.9389E-05],[93.464921,-2.5779E-05],[93.468363,-2.9904E-05],[93.471804,-2.7326E-05],[93.475245,-2.6811E-05],[93.478687,-3.1967E-05],[93.482128,-3.042E-05],[93.485569,-3.1967E-05],[93.489011,-3.5576E-05],[93.492452,-3.5576E-05],[93.495893,-3.4029E-05],[93.499335,-2.9904E-05],[93.502776,-2.6295E-05],[93.506217,-2.7326E-05],[93.509659,-3.1967E-05],[93.5131,-2.9904E-05],[93.516541,-2.7842E-05],[93.519983,-2.9389E-05],[93.523424,-3.1967E-05],[93.526865,-3.1451E-05],[93.530307,-2.4233E-05],[93.533748,-2.6811E-05],[93.537189,-2.9904E-05],[93.540631,-2.6295E-05],[93.544072,-2.6811E-05],[93.547513,-2.7842E-05],[93.550955,-3.042E-05],[93.554396,-2.4233E-05],[93.557837,-2.4233E-05],[93.561279,-2.9389E-05],[93.56472,-2.7326E-05],[93.568161,-3.1451E-05],[93.571603,-3.0935E-05],[93.575044,-2.5779E-05],[93.578485,-2.3717E-05],[93.581927,-2.5264E-05],[93.585368,-2.9904E-05],[93.588809,-2.9389E-05],[93.592251,-2.8873E-05],[93.595692,-2.8357E-05],[93.599133,-2.8873E-05],[93.602575,-3.1451E-05],[93.606016,-2.8357E-05],[93.609457,-2.7842E-05],[93.612899,-2.7842E-05],[93.61634,-2.6811E-05],[93.619781,-2.7842E-05],[93.623223,-2.9904E-05],[93.626664,-3.2482E-05],[93.630105,-3.4544E-05],[93.633547,-2.9389E-05],[93.636988,-2.7326E-05],[93.640429,-3.042E-05],[93.643871,-2.8357E-05],[93.647312,-2.8873E-05],[93.650753,-2.8873E-05],[93.654195,-2.7842E-05],[93.657636,-2.8873E-05],[93.661077,-2.9904E-05],[93.664519,-3.1967E-05],[93.66796,-3.042E-05],[93.671401,-2.9389E-05],[93.674843,-3.042E-05],[93.678284,-2.9389E-05],[93.681725,-2.9904E-05],[93.685167,-3.042E-05],[93.688608,-2.7326E-05],[93.692049,-2.7842E-05],[93.695491,-3.042E-05],[93.698932,-2.5779E-05],[93.702373,-2.5779E-05],[93.705815,-3.042E-05],[93.709256,-3.2482E-05],[93.712697,-3.3513E-05],[93.716139,-2.9904E-05],[93.71958,-2.7326E-05],[93.723021,-2.8873E-05],[93.726463,-3.2998E-05],[93.729904,-2.9904E-05],[93.733345,-2.5779E-05],[93.736787,-2.9389E-05],[93.740228,-2.8357E-05]]}
-{"quant":[94.1746,-2.8443E-05],"mems":[[94.077479,-2.4233E-05],[94.08092,-2.6295E-05],[94.084361,-3.042E-05],[94.087803,-2.6811E-05],[94.091244,-3.0935E-05],[94.094685,-2.9904E-05],[94.098127,-2.3717E-05],[94.101568,-2.6295E-05],[94.105009,-2.8357E-05],[94.108451,-2.9389E-05],[94.111892,-2.9904E-05],[94.115333,-3.1451E-05],[94.118775,-2.7326E-05],[94.122216,-2.8873E-05],[94.125657,-3.6607E-05],[94.129099,-3.1451E-05],[94.13254,-2.8873E-05],[94.135981,-2.7326E-05],[94.139423,-2.5264E-05],[94.142864,-2.8873E-05],[94.146305,-3.1967E-05],[94.149747,-2.9389E-05],[94.153188,-2.9389E-05],[94.156629,-3.042E-05],[94.160071,-2.6295E-05],[94.163512,-2.9904E-05],[94.166953,-3.1967E-05],[94.170395,-3.042E-05],[94.173836,-2.8873E-05],[94.177277,-2.7842E-05],[94.180719,-2.8357E-05],[94.18416,-2.5264E-05],[94.187601,-2.8873E-05],[94.191043,-2.8873E-05],[94.194484,-2.8357E-05],[94.197925,-2.8873E-05],[94.201367,-2.9904E-05],[94.204808,-3.4029E-05],[94.208249,-2.9389E-05],[94.211691,-2.9389E-05],[94.215132,-2.7326E-05],[94.218573,-2.5779E-05],[94.222015,-2.6295E-05],[94.225456,-2.6811E-05],[94.228897,-3.1967E-05],[94.232339,-2.8357E-05],[94.23578,-2.5779E-05],[94.239221,-2.5264E-05],[94.242663,-2.7326E-05],[94.246104,-2.9389E-05],[94.249545,-2.9904E-05],[94.252987,-3.2482E-05],[94.256428,-2.8357E-05],[94.259869,-2.4233E-05],[94.263311,-2.7842E-05],[94.266752,-2.7326E-05],[94.270193,-2.8357E-05],[94.273635,-3.3513E-05],[94.277076,-2.7842E-05],[94.280517,-2.6811E-05],[94.283959,-2.7842E-05],[94.2874,-3.1451E-05],[94.290841,-3.4544E-05],[94.294283,-2.7842E-05],[94.297724,-2.4748E-05],[94.301165,-2.5779E-05],[94.304607,-2.9904E-05],[94.308048,-3.506E-05],[94.311489,-3.1967E-05],[94.314931,-2.6811E-05],[94.318372,-2.5779E-05],[94.321813,-2.7326E-05],[94.325255,-2.8873E-05],[94.328696,-2.9389E-05],[94.332137,-2.8357E-05],[94.335579,-2.8873E-05],[94.33902,-2.7842E-05],[94.342461,-3.042E-05],[94.345903,-2.8873E-05],[94.349344,-2.5264E-05],[94.352785,-3.042E-05],[94.356227,-2.6811E-05],[94.359668,-2.2686E-05],[94.363109,-2.7842E-05],[94.366551,-2.9904E-05],[94.369992,-2.8873E-05],[94.373433,-2.6811E-05],[94.376875,-2.9904E-05]]}
-{"quant":[94.6817,-2.8976E-05],"mems":[[94.583355,-3.0935E-05],[94.586796,-3.6607E-05],[94.590237,-2.9389E-05],[94.593679,-2.8873E-05],[94.59712,-3.0935E-05],[94.600561,-2.6295E-05],[94.604003,-2.1655E-05],[94.607444,-2.6295E-05],[94.610885,-3.042E-05],[94.614327,-2.8357E-05],[94.617768,-2.9389E-05],[94.621209,-2.6811E-05],[94.624651,-2.9904E-05],[94.628092,-2.9904E-05],[94.631533,-2.4233E-05],[94.634975,-2.9389E-05],[94.638416,-2.9389E-05],[94.641857,-2.9389E-05],[94.645299,-3.1967E-05],[94.64874,-3.0935E-05],[94.652181,-2.8357E-05],[94.655623,-2.6811E-05],[94.659064,-2.6295E-05],[94.662505,-2.4233E-05],[94.665947,-2.8357E-05],[94.669388,-3.0935E-05],[94.672829,-2.7326E-05],[94.676271,-2.4748E-05],[94.679712,-2.6295E-05],[94.683153,-2.6295E-05],[94.686595,-2.5264E-05],[94.690036,-3.2998E-05],[94.693477,-3.1451E-05],[94.696919,-2.6295E-05],[94.70036,-3.1967E-05],[94.703801,-3.2998E-05],[94.707243,-3.1451E-05],[94.710684,-3.506E-05],[94.714125,-3.3513E-05],[94.717567,-2.9389E-05],[94.721008,-2.8873E-05],[94.724449,-2.5779E-05],[94.727891,-2.8873E-05],[94.731332,-3.4544E-05],[94.734773,-3.0935E-05],[94.738215,-2.7842E-05],[94.741656,-2.7326E-05],[94.745097,-2.7842E-05],[94.748539,-2.8357E-05],[94.75198,-2.7326E-05],[94.755421,-2.6295E-05],[94.758863,-2.5779E-05],[94.762304,-2.3717E-05],[94.765745,-2.8357E-05],[94.769187,-3.2482E-05],[94.772628,-2.9389E-05],[94.776069,-2.8873E-05],[94.779511,-2.4748E-05],[94.782952,-2.5264E-05],[94.786393,-2.9389E-05],[94.789835,-2.7842E-05],[94.793276,-2.7326E-05],[94.796717,-2.6811E-05],[94.800159,-2.5779E-05],[94.8036,-2.7842E-05],[94.807041,-2.9904E-05],[94.810483,-2.5779E-05],[94.813924,-3.042E-05],[94.817365,-2.8873E-05],[94.820807,-2.4748E-05],[94.824248,-3.2482E-05],[94.827689,-2.9389E-05],[94.831131,-2.8357E-05],[94.834572,-2.9389E-05],[94.838013,-2.7842E-05],[94.841455,-2.8357E-05],[94.844896,-2.5779E-05],[94.848337,-2.7326E-05],[94.851779,-3.1451E-05],[94.85522,-2.8357E-05],[94.858661,-2.5779E-05],[94.862103,-3.0935E-05],[94.865544,-3.1451E-05],[94.868985,-3.042E-05],[94.872427,-2.8873E-05],[94.875868,-2.6295E-05],[94.879309,-2.7842E-05],[94.882751,-2.9904E-05]]}
-{"quant":[95.1885,-2.8873E-05],"mems":[[95.089231,-3.1451E-05],[95.092672,-2.8357E-05],[95.096113,-2.6295E-05],[95.099555,-2.7326E-05],[95.102996,-3.1451E-05],[95.106437,-3.1967E-05],[95.109879,-2.9904E-05],[95.11332,-3.042E-05],[95.116761,-2.4748E-05],[95.120203,-2.5264E-05],[95.123644,-2.4748E-05],[95.127085,-2.7842E-05],[95.130527,-3.0935E-05],[95.133968,-2.7326E-05],[95.137409,-2.9389E-05],[95.140851,-2.9389E-05],[95.144292,-3.0935E-05],[95.147733,-3.1967E-05],[95.151175,-2.5264E-05],[95.154616,-2.3717E-05],[95.158057,-2.6295E-05],[95.161499,-2.4748E-05],[95.16494,-2.4748E-05],[95.168381,-2.3717E-05],[95.171823,-2.4748E-05],[95.175264,-2.6811E-05],[95.178705,-2.7842E-05],[95.182147,-3.2482E-05],[95.185588,-3.0935E-05],[95.189029,-2.7326E-05],[95.192471,-2.6811E-05],[95.195912,-2.6295E-05],[95.199353,-2.3202E-05],[95.202795,-2.6295E-05],[95.206236,-2.9904E-05],[95.209677,-3.1967E-05],[95.213119,-3.2998E-05],[95.21656,-2.4748E-05],[95.220001,-2.7326E-05],[95.223443,-3.3513E-05],[95.226884,-3.1451E-05],[95.230325,-3.0935E-05],[95.233767,-2.9904E-05],[95.237208,-2.7842E-05],[95.240649,-2.4748E-05],[95.244091,-2.8357E-05],[95.247532,-2.7842E-05],[95.250973,-2.4748E-05],[95.254415,-2.6811E-05],[95.257856,-3.042E-05],[95.261297,-3.1451E-05],[95.264739,-3.1451E-05],[95.26818,-3.042E-05],[95.271621,-2.9904E-05],[95.275063,-3.2998E-05],[95.278504,-3.1451E-05],[95.281945,-2.8357E-05],[95.285387,-2.5779E-05],[95.288828,-3.0935E-05],[95.292269,-3.1967E-05],[95.295711,-2.6295E-05],[95.299152,-3.0935E-05],[95.302593,-2.9389E-05],[95.306035,-2.5264E-05],[95.309476,-2.6295E-05],[95.312917,-2.7842E-05],[95.316359,-3.0935E-05],[95.3198,-2.7326E-05],[95.323241,-2.8873E-05],[95.326683,-3.6091E-05],[95.330124,-3.2482E-05],[95.333565,-2.7326E-05],[95.337007,-2.8873E-05],[95.340448,-3.0935E-05],[95.343889,-3.1451E-05],[95.347331,-3.1967E-05],[95.350772,-3.2482E-05],[95.354213,-3.042E-05],[95.357655,-2.9904E-05],[95.361096,-2.9389E-05],[95.364537,-2.6811E-05],[95.367979,-2.7326E-05],[95.37142,-2.9389E-05],[95.374861,-3.0935E-05],[95.378303,-2.9389E-05],[95.381744,-2.7326E-05],[95.385185,-2.7326E-05],[95.388627,-2.9904E-05]]}
-{"quant":[95.6731,0.5598],"mems":[[95.581341,-2.4748E-05],[95.584783,-2.3717E-05],[95.588224,-3.042E-05],[95.591665,-3.2482E-05],[95.595107,-2.9904E-05],[95.598548,-2.6811E-05],[95.601989,-2.4748E-05],[95.605431,-3.1451E-05],[95.608872,-3.1967E-05],[95.612313,-2.217E-05],[95.615755,-2.3717E-05],[95.619196,-2.8357E-05],[95.622637,-2.7842E-05],[95.626079,-3.0935E-05],[95.62952,-3.2482E-05],[95.632961,-3.042E-05],[95.636403,-2.8873E-05],[95.639844,-2.7842E-05],[95.643285,-2.9904E-05],[95.646727,-3.0935E-05],[95.650168,-3.2482E-05],[95.653609,-2.7842E-05],[95.657051,-2.5779E-05],[95.660492,-3.0935E-05],[95.663933,-2.7326E-05],[95.667375,-2.5779E-05],[95.670816,-2.8873E-05],[95.674257,-2.6811E-05],[95.677699,-2.5264E-05],[95.68114,-2.6811E-05],[95.684581,-2.9389E-05],[95.688023,-3.1451E-05],[95.691464,-2.8357E-05],[95.694905,-2.4233E-05],[95.698347,-2.5779E-05],[95.701788,-2.7842E-05],[95.705229,-3.0935E-05],[95.708671,-3.4029E-05],[95.712112,-2.9904E-05],[95.715553,-2.6295E-05],[95.718995,-2.9904E-05],[95.722436,-3.3513E-05],[95.725877,-2.9389E-05],[95.729319,-2.8873E-05],[95.73276,-3.4544E-05],[95.736201,-3.2482E-05],[95.739643,-2.7326E-05],[95.743084,-2.7326E-05],[95.746525,-2.8873E-05],[95.749967,-2.6295E-05],[95.753408,-2.6811E-05],[95.756849,-2.7326E-05],[95.760291,-2.6295E-05],[95.763732,-3.042E-05],[95.767173,-3.2482E-05],[95.770615,-3.042E-05],[95.774056,-3.2998E-05],[95.777497,-3.1967E-05],[95.780939,-2.9904E-05],[95.78438,-3.1967E-05],[95.787821,-3.042E-05],[95.791263,-3.5576E-05],[95.794704,-3.3513E-05],[95.798145,-2.8357E-05],[95.801587,-3.1967E-05],[95.805028,-2.9389E-05],[95.808469,-2.9389E-05],[95.811911,-3.3513E-05],[95.815352,-3.5576E-05],[95.818793,-2.8873E-05],[95.822235,-2.8357E-05],[95.825676,-3.0935E-05],[95.829117,-2.8357E-05],[95.832559,-2.7842E-05],[95.836,-2.5779E-05],[95.839436,-3.0935E-05],[95.842872,-2.8873E-05],[95.846308,-2.6295E-05],[95.849744,-2.8357E-05],[95.85318,-2.5779E-05],[95.856616,-2.8357E-05],[95.860052,-3.042E-05],[95.863488,-3.042E-05],[95.866924,-2.8357E-05],[95.87036,-3.042E-05],[95.873796,-2.9904E-05],[95.877232,-2.5779E-05]]}
-{"quant":[96.1497,-2.9251E-05],"mems":[[96.052468,-3.0935E-05],[96.055904,-2.5264E-05],[96.05934,-2.9904E-05],[96.062776,-3.042E-05],[96.066212,-3.1967E-05],[96.069648,-3.1451E-05],[96.073084,-2.9389E-05],[96.07652,-3.042E-05],[96.079956,-2.7842E-05],[96.083392,-3.042E-05],[96.086828,-3.2482E-05],[96.090264,-3.1967E-05],[96.0937,-3.2482E-05],[96.097136,-2.8873E-05],[96.100572,-2.5779E-05],[96.104008,-2.7326E-05],[96.107444,-3.4029E-05],[96.11088,-3.4029E-05],[96.114316,-3.042E-05],[96.117752,-3.3513E-05],[96.121188,-3.4029E-05],[96.124624,-3.4544E-05],[96.12806,-3.2482E-05],[96.131496,-2.8873E-05],[96.134932,-2.7326E-05],[96.138368,-2.6295E-05],[96.141804,-2.9389E-05],[96.14524,-3.2482E-05],[96.148676,-2.8873E-05],[96.152112,-2.7842E-05],[96.155548,-2.9389E-05],[96.158984,-2.8873E-05],[96.16242,-2.7842E-05],[96.165856,-3.042E-05],[96.169292,-3.6607E-05],[96.172728,-3.5576E-05],[96.176164,-2.9389E-05],[96.1796,-2.8873E-05],[96.183036,-2.8873E-05],[96.186472,-2.7326E-05],[96.189908,-2.5779E-05],[96.193344,-2.9904E-05],[96.19678,-2.8357E-05],[96.200216,-2.4233E-05],[96.203652,-2.9389E-05],[96.207088,-3.1451E-05],[96.210524,-2.8357E-05],[96.21396,-2.5264E-05],[96.217396,-2.4748E-05],[96.220832,-3.0935E-05],[96.224268,-3.4544E-05],[96.227704,-3.1451E-05],[96.23114,-3.042E-05],[96.234576,-3.0935E-05],[96.238012,-2.4748E-05],[96.241448,-2.4233E-05],[96.244884,-2.9904E-05],[96.24832,-3.1451E-05],[96.251756,-3.042E-05],[96.255192,-3.1451E-05],[96.258628,-2.8873E-05],[96.262064,-2.8873E-05],[96.2655,-2.8873E-05],[96.268936,-2.8873E-05],[96.272372,-3.506E-05],[96.275808,-2.8873E-05],[96.279244,-2.5779E-05],[96.28268,-3.1451E-05],[96.286116,-2.7842E-05],[96.289552,-2.7326E-05],[96.292988,-3.1451E-05],[96.296424,-2.9389E-05],[96.29986,-2.9904E-05],[96.303296,-3.0935E-05],[96.306732,-2.9389E-05],[96.310168,-2.8357E-05],[96.313604,-3.0935E-05],[96.31704,-3.1451E-05],[96.320476,-2.3202E-05],[96.323912,-2.9904E-05],[96.327348,-3.6607E-05],[96.330784,-3.1451E-05],[96.33422,-2.8357E-05],[96.337656,-2.5264E-05],[96.341092,-3.042E-05],[96.344528,-2.8357E-05],[96.347964,-3.042E-05],[96.3514,-3.1967E-05]]}
-{"quant":[96.8025,-2.8787E-05],"mems":[[96.705308,-3.0935E-05],[96.708744,-3.1967E-05],[96.71218,-2.9389E-05],[96.715616,-3.1451E-05],[96.719052,-3.042E-05],[96.722488,-3.042E-05],[96.725924,-3.042E-05],[96.72936,-2.9389E-05],[96.732796,-2.9389E-05],[96.736232,-3.042E-05],[96.739668,-2.6295E-05],[96.743104,-2.4233E-05],[96.74654,-2.8357E-05],[96.749976,-2.4233E-05],[96.753412,-2.1655E-05],[96.756848,-2.7842E-05],[96.760284,-2.6295E-05],[96.76372,-2.8873E-05],[96.767156,-3.0935E-05],[96.770592,-2.5264E-05],[96.774028,-3.2482E-05],[96.777464,-3.0935E-05],[96.7809,-3.042E-05],[96.784336,-3.4029E-05],[96.787772,-2.7842E-05],[96.791208,-3.4029E-05],[96.794644,-3.3513E-05],[96.79808,-2.7842E-05],[96.801516,-2.8873E-05],[96.804952,-3.042E-05],[96.808388,-3.0935E-05],[96.811824,-2.8873E-05],[96.81526,-2.8873E-05],[96.818696,-3.042E-05],[96.822132,-3.0935E-05],[96.825568,-2.7842E-05],[96.829004,-2.6295E-05],[96.83244,-2.7842E-05],[96.835876,-2.8357E-05],[96.839312,-2.6811E-05],[96.842748,-2.7326E-05],[96.846184,-3.4544E-05],[96.84962,-3.4544E-05],[96.853056,-2.6811E-05],[96.856492,-2.4233E-05],[96.859928,-2.4748E-05],[96.863364,-2.8357E-05],[96.8668,-2.9904E-05],[96.870236,-2.9389E-05],[96.873672,-3.042E-05],[96.877108,-2.6811E-05],[96.880544,-2.7842E-05],[96.88398,-2.6811E-05],[96.887416,-2.7326E-05],[96.890852,-3.3513E-05],[96.894288,-2.7842E-05],[96.897724,-2.3717E-05],[96.90116,-3.1451E-05],[96.904596,-3.042E-05],[96.908032,-2.5779E-05],[96.911468,-3.0935E-05],[96.914904,-3.1967E-05],[96.91834,-2.8873E-05],[96.921776,-2.8873E-05],[96.925212,-2.9904E-05],[96.928648,-3.3513E-05],[96.932084,-3.1451E-05],[96.93552,-2.5779E-05],[96.938956,-2.7326E-05],[96.942392,-3.042E-05],[96.945828,-3.3513E-05],[96.949264,-3.1967E-05],[96.9527,-2.7842E-05],[96.956136,-2.9904E-05],[96.959572,-2.8873E-05],[96.963008,-2.9389E-05],[96.966444,-3.3513E-05],[96.96988,-3.042E-05],[96.973316,-2.5779E-05],[96.976752,-2.3202E-05],[96.980188,-2.6811E-05],[96.983624,-3.0935E-05],[96.98706,-2.8357E-05],[96.990496,-2.7326E-05],[96.993932,-2.7842E-05],[96.997368,-2.4748E-05],[97.000804,-2.4233E-05],[97.00424,-3.1967E-05]]}
-{"quant":[97.281,-2.8512E-05],"mems":[[97.182912,-3.1967E-05],[97.186348,-2.8873E-05],[97.189784,-2.9389E-05],[97.19322,-2.7326E-05],[97.196656,-2.8357E-05],[97.200092,-3.1451E-05],[97.203528,-2.9389E-05],[97.206964,-3.0935E-05],[97.2104,-3.0935E-05],[97.213836,-2.5779E-05],[97.217272,-2.2686E-05],[97.220708,-2.3717E-05],[97.224144,-2.6295E-05],[97.22758,-2.8357E-05],[97.231016,-3.1451E-05],[97.234452,-2.7842E-05],[97.237888,-2.217E-05],[97.241324,-2.8357E-05],[97.24476,-3.2998E-05],[97.248196,-2.6295E-05],[97.251632,-2.6295E-05],[97.255068,-2.7842E-05],[97.258504,-2.6811E-05],[97.26194,-2.9389E-05],[97.265376,-2.6811E-05],[97.268812,-2.6811E-05],[97.272248,-2.4748E-05],[97.275684,-2.3202E-05],[97.27912,-2.8873E-05],[97.282556,-2.9389E-05],[97.285992,-2.7842E-05],[97.289428,-2.4748E-05],[97.292864,-2.2686E-05],[97.2963,-2.1655E-05],[97.299736,-2.2686E-05],[97.303172,-2.9904E-05],[97.306608,-2.9904E-05],[97.310044,-3.042E-05],[97.31348,-3.0935E-05],[97.316916,-2.7842E-05],[97.320352,-3.2482E-05],[97.323788,-2.9904E-05],[97.327224,-2.8357E-05],[97.33066,-3.3513E-05],[97.334096,-2.9904E-05],[97.337532,-2.7842E-05],[97.340968,-2.9904E-05],[97.344404,-2.9389E-05],[97.34784,-3.042E-05],[97.351276,-2.9904E-05],[97.354712,-2.8357E-05],[97.358148,-2.6295E-05],[97.361584,-2.8357E-05],[97.36502,-3.1451E-05],[97.368456,-2.6295E-05],[97.371892,-2.7842E-05],[97.375328,-3.042E-05],[97.378764,-2.6811E-05],[97.3822,-2.9904E-05],[97.385636,-3.2998E-05],[97.389072,-3.1451E-05],[97.392508,-2.8873E-05],[97.395944,-2.6295E-05],[97.39938,-2.5779E-05],[97.402816,-2.9904E-05],[97.406252,-3.3513E-05],[97.409688,-3.1967E-05],[97.413124,-2.5779E-05],[97.41656,-2.217E-05],[97.419996,-2.4748E-05],[97.423432,-3.1451E-05],[97.426868,-2.9904E-05],[97.430304,-2.5779E-05],[97.43374,-2.9904E-05],[97.437176,-3.0935E-05],[97.440612,-3.2998E-05],[97.444048,-3.6091E-05],[97.447484,-3.0935E-05],[97.45092,-2.9389E-05],[97.454356,-3.0935E-05],[97.457792,-2.9904E-05],[97.461228,-3.0935E-05],[97.464664,-2.8873E-05],[97.4681,-2.7842E-05],[97.471536,-2.5264E-05],[97.474972,-2.5264E-05],[97.478408,-3.1451E-05],[97.481844,-2.8357E-05]]}
-{"quant":[97.782,-2.92E-05],"mems":[[97.684568,-3.1451E-05],[97.688004,-2.9904E-05],[97.69144,-2.7326E-05],[97.694876,-3.3513E-05],[97.698312,-2.9904E-05],[97.701748,-2.7326E-05],[97.705184,-2.7326E-05],[97.70862,-2.6295E-05],[97.712056,-2.8357E-05],[97.715492,-2.6295E-05],[97.718928,-2.7842E-05],[97.722364,-3.2998E-05],[97.7258,-3.1967E-05],[97.729236,-3.0935E-05],[97.732672,-3.1967E-05],[97.736108,-3.1967E-05],[97.739544,-3.2482E-05],[97.74298,-3.1967E-05],[97.746416,-3.1451E-05],[97.749852,-2.7842E-05],[97.753288,-2.7842E-05],[97.756724,-2.8873E-05],[97.76016,-2.5264E-05],[97.763596,-2.4748E-05],[97.767032,-2.5264E-05],[97.770468,-3.1967E-05],[97.773904,-3.0935E-05],[97.77734,-2.6811E-05],[97.780776,-2.7842E-05],[97.784212,-2.6811E-05],[97.787648,-2.8357E-05],[97.791084,-2.7326E-05],[97.79452,-2.5779E-05],[97.797956,-2.4233E-05],[97.801392,-3.1967E-05],[97.804828,-3.506E-05],[97.808264,-2.9389E-05],[97.8117,-3.0935E-05],[97.815136,-2.8357E-05],[97.818572,-2.6811E-05],[97.822008,-3.1451E-05],[97.825444,-3.2482E-05],[97.82888,-2.9389E-05],[97.832316,-2.6295E-05],[97.835752,-2.4748E-05],[97.839188,-2.4748E-05],[97.842624,-2.9389E-05],[97.84606,-3.1451E-05],[97.849496,-3.1451E-05],[97.852932,-3.2998E-05],[97.856368,-3.042E-05],[97.859804,-2.8873E-05],[97.86324,-2.9389E-05],[97.866676,-2.9389E-05],[97.870112,-3.0935E-05],[97.873548,-2.7842E-05],[97.876984,-2.7326E-05],[97.88042,-3.0935E-05],[97.883856,-3.1451E-05],[97.887292,-3.7638E-05],[97.890728,-3.4544E-05],[97.894164,-2.6295E-05],[97.8976,-2.7326E-05],[97.901036,-2.8357E-05],[97.904472,-2.8873E-05],[97.907908,-2.9904E-05],[97.911344,-3.2998E-05],[97.91478,-2.8873E-05],[97.918216,-2.6295E-05],[97.921652,-3.042E-05],[97.925088,-2.8873E-05],[97.928524,-2.8357E-05],[97.93196,-3.0935E-05],[97.935396,-2.9389E-05],[97.938832,-2.9389E-05],[97.942268,-2.9904E-05],[97.945704,-2.8357E-05],[97.94914,-3.1451E-05],[97.952576,-3.4544E-05],[97.956012,-2.9904E-05],[97.959448,-2.7326E-05],[97.962884,-2.6295E-05],[97.96632,-3.3513E-05],[97.969756,-3.6607E-05],[97.973192,-2.6811E-05],[97.976628,-2.6811E-05],[97.980064,-2.9904E-05],[97.9835,-3.0935E-05]]}
-{"quant":[98.2362,-1.2294],"mems":[[98.141556,-2.9389E-05],[98.144992,-3.4544E-05],[98.148428,-3.0935E-05],[98.151864,-2.7842E-05],[98.1553,-2.7842E-05],[98.158736,-2.9904E-05],[98.162172,-3.1451E-05],[98.165608,-3.0935E-05],[98.169044,-3.1967E-05],[98.17248,-2.8357E-05],[98.175916,-2.7326E-05],[98.179352,-2.8873E-05],[98.182788,-2.9904E-05],[98.186224,-3.1451E-05],[98.18966,-2.9389E-05],[98.193096,-2.8873E-05],[98.196532,-2.6811E-05],[98.199968,-2.3202E-05],[98.203404,-2.9389E-05],[98.20684,-3.4544E-05],[98.210276,-2.8357E-05],[98.213712,-2.7326E-05],[98.217148,-2.9389E-05],[98.220584,-2.8873E-05],[98.22402,-3.0935E-05],[98.227456,-3.1451E-05],[98.230892,-3.1451E-05],[98.234328,-3.4029E-05],[98.237764,-3.4544E-05],[98.2412,-3.5576E-05],[98.244636,-3.506E-05],[98.248072,-3.1451E-05],[98.251508,-3.1967E-05],[98.254944,-2.8873E-05],[98.25838,-2.8357E-05],[98.261816,-3.1451E-05],[98.265252,-2.7842E-05],[98.268688,-3.0935E-05],[98.272124,-2.8873E-05],[98.27556,-2.8357E-05],[98.278996,-3.2482E-05],[98.282432,-3.1967E-05],[98.285868,-3.5576E-05],[98.289304,-3.3513E-05],[98.29274,-2.8873E-05],[98.296176,-2.6295E-05],[98.299612,-2.7842E-05],[98.303048,-3.506E-05],[98.306484,-3.0935E-05],[98.30992,-3.042E-05],[98.313356,-3.0935E-05],[98.316792,-2.8357E-05],[98.320228,-3.1451E-05],[98.323664,-2.8357E-05],[98.3271,-2.8357E-05],[98.330536,-2.7842E-05],[98.333972,-2.9389E-05],[98.337408,-2.9904E-05],[98.340844,-2.9389E-05],[98.34428,-3.2482E-05],[98.347716,-3.042E-05],[98.351152,-3.1451E-05],[98.354588,-3.1451E-05],[98.358024,-2.7326E-05],[98.36146,-2.9904E-05],[98.364896,-3.3513E-05],[98.368332,-3.042E-05],[98.371768,-2.4233E-05],[98.375204,-3.042E-05],[98.37864,-3.0935E-05],[98.382076,-2.7326E-05],[98.385512,-3.3513E-05],[98.388948,-3.0935E-05],[98.392384,-3.1967E-05],[98.39582,-3.4029E-05],[98.399256,-3.1967E-05],[98.402692,-3.6607E-05],[98.406128,-3.0935E-05],[98.409564,-3.0935E-05],[98.413,-3.3513E-05],[98.416437,-2.5779E-05],[98.419875,-2.7326E-05],[98.423312,-3.1451E-05],[98.426749,-2.9389E-05],[98.430187,-2.8873E-05],[98.433624,-3.0935E-05],[98.437061,-2.8357E-05],[98.440499,-2.6295E-05]]}
-{"quant":[98.6814,-3.1159E-05],"mems":[[98.581429,-3.2482E-05],[98.584867,-3.3513E-05],[98.588304,-2.9904E-05],[98.591741,-2.9904E-05],[98.595179,-3.0935E-05],[98.598616,-3.2482E-05],[98.602053,-3.0935E-05],[98.605491,-3.2998E-05],[98.608928,-3.2482E-05],[98.612365,-3.0935E-05],[98.615803,-3.1967E-05],[98.61924,-3.2998E-05],[98.622677,-3.1967E-05],[98.626115,-2.7326E-05],[98.629552,-2.9389E-05],[98.632989,-2.9904E-05],[98.636427,-2.7842E-05],[98.639864,-2.6295E-05],[98.643301,-2.6295E-05],[98.646739,-3.1967E-05],[98.650176,-3.3513E-05],[98.653613,-3.042E-05],[98.657051,-2.7326E-05],[98.660488,-3.2482E-05],[98.663925,-3.4029E-05],[98.667363,-2.6811E-05],[98.6708,-2.9904E-05],[98.674237,-2.7326E-05],[98.677675,-2.6295E-05],[98.681112,-3.3513E-05],[98.684549,-3.3513E-05],[98.687987,-3.1967E-05],[98.691424,-2.7326E-05],[98.694861,-2.9389E-05],[98.698299,-3.2482E-05],[98.701736,-3.0935E-05],[98.705173,-3.3513E-05],[98.708611,-3.042E-05],[98.712048,-2.7326E-05],[98.715485,-2.9904E-05],[98.718923,-3.0935E-05],[98.72236,-3.4029E-05],[98.725797,-3.6091E-05],[98.729235,-2.9389E-05],[98.732672,-2.8873E-05],[98.736109,-3.3513E-05],[98.739547,-3.042E-05],[98.742984,-3.506E-05],[98.746421,-3.506E-05],[98.749859,-3.4029E-05],[98.753296,-3.506E-05],[98.756733,-2.6811E-05],[98.760171,-2.8357E-05],[98.763608,-3.2998E-05],[98.767045,-3.2998E-05],[98.770483,-2.8357E-05],[98.77392,-2.7326E-05],[98.777357,-2.7842E-05],[98.780795,-2.7842E-05],[98.784232,-3.2998E-05],[98.787669,-2.8357E-05],[98.791107,-3.1451E-05],[98.794544,-3.1967E-05],[98.797981,-2.8357E-05],[98.801419,-3.0935E-05],[98.804856,-2.9904E-05],[98.808293,-3.4544E-05],[98.811731,-3.3513E-05],[98.815168,-3.042E-05],[98.818605,-2.8357E-05],[98.822043,-3.1451E-05],[98.82548,-3.506E-05],[98.828917,-2.8357E-05],[98.832355,-2.6811E-05],[98.835792,-2.7842E-05],[98.839229,-3.0935E-05],[98.842667,-2.8873E-05],[98.846104,-3.042E-05],[98.849541,-3.2998E-05],[98.852979,-2.8873E-05],[98.856416,-3.4029E-05],[98.859853,-2.9389E-05],[98.863291,-3.1451E-05],[98.866728,-3.4544E-05],[98.870165,-2.8357E-05],[98.873603,-2.6811E-05],[98.87704,-2.3202E-05],[98.880477,-2.8873E-05],[98.883915,-3.042E-05]]}
-{"quant":[99.3043,-2.8546E-05],"mems":[[99.207024,-3.0935E-05],[99.210461,-3.1451E-05],[99.213899,-3.2482E-05],[99.217336,-2.9904E-05],[99.220773,-2.6295E-05],[99.224211,-3.1451E-05],[99.227648,-3.042E-05],[99.231085,-3.0935E-05],[99.234523,-2.9389E-05],[99.23796,-2.7326E-05],[99.241397,-2.9904E-05],[99.244835,-3.042E-05],[99.248272,-2.6295E-05],[99.251709,-2.6295E-05],[99.255147,-2.9389E-05],[99.258584,-2.9904E-05],[99.262021,-3.3513E-05],[99.265459,-2.8357E-05],[99.268896,-3.0935E-05],[99.272333,-3.2482E-05],[99.275771,-2.6295E-05],[99.279208,-3.4029E-05],[99.282645,-3.7638E-05],[99.286083,-3.042E-05],[99.28952,-2.5779E-05],[99.292957,-2.9904E-05],[99.296395,-3.042E-05],[99.299832,-2.6811E-05],[99.303269,-2.8873E-05],[99.306707,-2.8357E-05],[99.310144,-2.5779E-05],[99.313581,-2.6811E-05],[99.317019,-2.8357E-05],[99.320456,-2.9904E-05],[99.323893,-2.8357E-05],[99.327331,-3.1967E-05],[99.330768,-3.042E-05],[99.334205,-2.3717E-05],[99.337643,-2.5779E-05],[99.34108,-2.6811E-05],[99.344517,-2.8357E-05],[99.347955,-2.9389E-05],[99.351392,-2.9904E-05],[99.354829,-3.0935E-05],[99.358267,-2.7842E-05],[99.361704,-2.8357E-05],[99.365141,-2.5779E-05],[99.368579,-2.8357E-05],[99.372016,-3.1967E-05],[99.375453,-2.6295E-05],[99.378891,-2.5264E-05],[99.382328,-2.7326E-05],[99.385765,-3.2998E-05],[99.389203,-3.3513E-05],[99.39264,-2.8357E-05],[99.396077,-2.6295E-05],[99.399515,-2.7326E-05],[99.402952,-3.0935E-05],[99.406389,-3.0935E-05],[99.409827,-2.5779E-05],[99.413264,-2.4233E-05],[99.416701,-3.042E-05],[99.420139,-3.2482E-05],[99.423576,-3.042E-05],[99.427013,-3.1451E-05],[99.430451,-3.1451E-05],[99.433888,-2.8357E-05],[99.437325,-2.6295E-05],[99.440763,-3.042E-05],[99.4442,-3.1451E-05],[99.447637,-3.0935E-05],[99.451075,-2.8357E-05],[99.454512,-2.5779E-05],[99.457949,-2.9904E-05],[99.461387,-2.9389E-05],[99.464824,-2.8873E-05],[99.468261,-3.0935E-05],[99.471699,-2.7842E-05],[99.475136,-2.8873E-05],[99.478573,-3.4029E-05],[99.482011,-3.0935E-05],[99.485448,-2.9904E-05],[99.488885,-3.3513E-05],[99.492323,-2.6811E-05],[99.49576,-2.6811E-05],[99.499197,-2.9389E-05],[99.502635,-3.042E-05],[99.506072,-3.2998E-05]]}
-{"quant":[99.7715,-2.9492E-05],"mems":[[99.674501,-2.9904E-05],[99.677939,-2.8873E-05],[99.681376,-2.8873E-05],[99.684813,-2.9904E-05],[99.688251,-3.042E-05],[99.691688,-3.1967E-05],[99.695125,-3.1967E-05],[99.698563,-3.0935E-05],[99.702,-3.0935E-05],[99.705437,-3.4544E-05],[99.708875,-2.6295E-05],[99.712312,-2.4748E-05],[99.715749,-3.1967E-05],[99.719187,-2.6811E-05],[99.722624,-2.8357E-05],[99.726061,-3.0935E-05],[99.729499,-3.0935E-05],[99.732936,-3.2998E-05],[99.736373,-2.9389E-05],[99.739811,-3.3513E-05],[99.743248,-3.2482E-05],[99.746685,-3.0935E-05],[99.750123,-3.1451E-05],[99.75356,-2.6811E-05],[99.756997,-2.8357E-05],[99.760435,-3.1451E-05],[99.763872,-2.6811E-05],[99.767309,-2.1139E-05],[99.770747,-2.2686E-05],[99.774184,-2.6295E-05],[99.777621,-3.3513E-05],[99.781059,-3.1967E-05],[99.784496,-2.9904E-05],[99.787933,-3.2482E-05],[99.791371,-2.7326E-05],[99.794808,-2.8873E-05],[99.798245,-2.9904E-05],[99.801683,-2.6811E-05],[99.80512,-2.7842E-05],[99.808557,-2.8357E-05],[99.811995,-2.9389E-05],[99.815432,-3.0935E-05],[99.818869,-3.2482E-05],[99.822307,-3.042E-05],[99.825744,-3.0935E-05],[99.829181,-2.9904E-05],[99.832619,-2.6811E-05],[99.836056,-3.1967E-05],[99.839493,-3.0935E-05],[99.842931,-2.7326E-05],[99.846368,-2.9904E-05],[99.849805,-2.7326E-05],[99.853243,-2.7326E-05],[99.85668,-2.9389E-05],[99.860117,-2.9904E-05],[99.863555,-3.1967E-05],[99.866992,-2.7842E-05],[99.870429,-2.6811E-05],[99.873867,-2.9904E-05],[99.877304,-3.1451E-05],[99.880741,-3.1967E-05],[99.884179,-3.0935E-05],[99.887616,-2.9389E-05],[99.891053,-2.8873E-05],[99.894491,-2.8357E-05],[99.897928,-2.5779E-05],[99.901365,-2.8357E-05],[99.904803,-3.1451E-05],[99.90824,-3.1967E-05],[99.911677,-2.9904E-05],[99.915115,-2.5779E-05],[99.918552,-2.9389E-05],[99.921989,-3.042E-05],[99.925427,-2.8357E-05],[99.928864,-2.7326E-05],[99.932301,-2.6295E-05],[99.935739,-2.217E-05],[99.939176,-2.8873E-05],[99.942613,-3.3513E-05],[99.946051,-2.4748E-05],[99.949488,-2.6811E-05],[99.952925,-2.5779E-05],[99.956363,-2.8873E-05],[99.9598,-3.1967E-05],[99.963237,-2.9389E-05],[99.966675,-3.1451E-05],[99.970112,-2.9389E-05],[99.973549,-2.9904E-05]]}
-{"quant":[100.239,-2.9251E-05],"mems":[[100.14198,-3.042E-05],[100.14542,-3.2998E-05],[100.14885,-3.042E-05],[100.15229,-2.6295E-05],[100.15573,-2.8357E-05],[100.15917,-2.8873E-05],[100.1626,-3.4029E-05],[100.16604,-3.042E-05],[100.16948,-2.4233E-05],[100.17291,-3.2482E-05],[100.17635,-3.2482E-05],[100.17979,-2.9389E-05],[100.18323,-3.042E-05],[100.18666,-3.0935E-05],[100.1901,-3.042E-05],[100.19354,-2.8357E-05],[100.19698,-3.042E-05],[100.20041,-2.9904E-05],[100.20385,-2.8873E-05],[100.20729,-3.2998E-05],[100.21073,-3.0935E-05],[100.21416,-2.7326E-05],[100.2176,-2.9904E-05],[100.22104,-2.9389E-05],[100.22447,-2.8873E-05],[100.22791,-2.6811E-05],[100.23135,-2.5264E-05],[100.23479,-2.9904E-05],[100.23822,-2.7326E-05],[100.24166,-2.7842E-05],[100.2451,-2.8873E-05],[100.24854,-2.6811E-05],[100.25197,-2.9389E-05],[100.25541,-2.8873E-05],[100.25885,-2.6811E-05],[100.26229,-3.0935E-05],[100.26572,-3.6091E-05],[100.26916,-2.7842E-05],[100.2726,-2.3202E-05],[100.27603,-3.1967E-05],[100.27947,-3.0935E-05],[100.28291,-3.2482E-05],[100.28635,-3.7122E-05],[100.28978,-3.2998E-05],[100.29322,-2.9389E-05],[100.29666,-2.9389E-05],[100.3001,-2.7842E-05],[100.30353,-2.9389E-05],[100.30697,-3.1967E-05],[100.31041,-2.7326E-05],[100.31385,-2.6811E-05],[100.31728,-2.9389E-05],[100.32072,-2.7842E-05],[100.32416,-2.8357E-05],[100.32759,-2.7842E-05],[100.33103,-2.4748E-05],[100.33447,-2.8357E-05],[100.33791,-2.8873E-05],[100.34134,-2.7842E-05],[100.34478,-3.1451E-05],[100.34822,-3.042E-05],[100.35166,-2.6811E-05],[100.35509,-2.4233E-05],[100.35853,-3.042E-05],[100.36197,-3.8669E-05],[100.36541,-3.2998E-05],[100.36884,-2.3202E-05],[100.37228,-2.6811E-05],[100.37572,-2.9904E-05],[100.37915,-2.6295E-05],[100.38259,-2.9389E-05],[100.38603,-2.9389E-05],[100.38947,-2.7326E-05],[100.3929,-2.8873E-05],[100.39634,-2.8873E-05],[100.39978,-2.9389E-05],[100.40322,-2.9904E-05],[100.40665,-3.0935E-05],[100.41009,-2.9904E-05],[100.41353,-2.9904E-05],[100.41697,-2.8357E-05],[100.4204,-2.6295E-05],[100.42384,-2.5779E-05],[100.42728,-2.5779E-05],[100.43071,-2.7326E-05],[100.43415,-2.4233E-05],[100.43759,-2.9389E-05],[100.44103,-3.1451E-05]]}
-{"quant":[100.691,-2.9578E-05],"mems":[[100.59227,-3.1451E-05],[100.59571,-3.4029E-05],[100.59914,-2.8357E-05],[100.60258,-2.8873E-05],[100.60602,-3.4544E-05],[100.60946,-3.4029E-05],[100.61289,-2.7842E-05],[100.61633,-2.5264E-05],[100.61977,-2.8873E-05],[100.62321,-2.7842E-05],[100.62664,-2.8357E-05],[100.63008,-3.1451E-05],[100.63352,-3.1967E-05],[100.63695,-2.9904E-05],[100.64039,-2.8357E-05],[100.64383,-3.1451E-05],[100.64727,-3.0935E-05],[100.6507,-3.0935E-05],[100.65414,-3.2998E-05],[100.65758,-3.2482E-05],[100.66102,-3.1451E-05],[100.66445,-2.8357E-05],[100.66789,-2.3717E-05],[100.67133,-2.1655E-05],[100.67477,-2.8357E-05],[100.6782,-3.3513E-05],[100.68164,-3.2482E-05],[100.68508,-3.1967E-05],[100.68851,-2.7842E-05],[100.69195,-2.5779E-05],[100.69539,-2.7326E-05],[100.69883,-3.2482E-05],[100.70226,-3.4029E-05],[100.7057,-2.7326E-05],[100.70914,-2.4233E-05],[100.71258,-2.6811E-05],[100.71601,-2.7326E-05],[100.71945,-2.6811E-05],[100.72289,-3.0935E-05],[100.72633,-3.2482E-05],[100.72976,-2.7326E-05],[100.7332,-2.7842E-05],[100.73664,-2.9389E-05],[100.74007,-3.042E-05],[100.74351,-3.4544E-05],[100.74695,-2.8357E-05],[100.75039,-2.7326E-05],[100.75382,-2.8873E-05],[100.75726,-3.0935E-05],[100.7607,-3.7638E-05],[100.76414,-3.0935E-05],[100.76757,-2.8357E-05],[100.77101,-3.2482E-05],[100.77445,-3.2998E-05],[100.77789,-3.042E-05],[100.78132,-2.8357E-05],[100.78476,-3.1967E-05],[100.7882,-2.8357E-05],[100.79163,-2.5264E-05],[100.79507,-2.7842E-05],[100.79851,-2.7842E-05],[100.80195,-2.7326E-05],[100.80538,-3.1451E-05],[100.80882,-3.3513E-05],[100.81226,-3.1967E-05],[100.8157,-2.9904E-05],[100.81913,-2.6811E-05],[100.82257,-3.2482E-05],[100.82601,-3.0935E-05],[100.82945,-2.4748E-05],[100.83288,-3.042E-05],[100.83632,-3.1967E-05],[100.83976,-3.2998E-05],[100.84319,-3.2998E-05],[100.84663,-2.9389E-05],[100.85007,-2.9904E-05],[100.85351,-3.042E-05],[100.85694,-3.2482E-05],[100.86038,-3.2998E-05],[100.86382,-2.9904E-05],[100.86726,-2.7326E-05],[100.87069,-2.9389E-05],[100.87413,-2.7326E-05],[100.87757,-2.8357E-05],[100.88101,-3.6091E-05],[100.88444,-3.1451E-05],[100.88788,-2.8357E-05],[100.89132,-3.2482E-05]]}
-{"quant":[101.184,-2.9646E-05],"mems":[[101.08728,-3.4544E-05],[101.09072,-2.6811E-05],[101.09416,-2.217E-05],[101.0976,-2.8357E-05],[101.10104,-3.0935E-05],[101.10448,-3.2482E-05],[101.10791,-3.1967E-05],[101.11135,-2.7326E-05],[101.11479,-2.9904E-05],[101.11823,-3.1451E-05],[101.12167,-3.2998E-05],[101.12511,-3.0935E-05],[101.12855,-3.0935E-05],[101.13199,-2.8873E-05],[101.13542,-2.3717E-05],[101.13886,-3.042E-05],[101.1423,-3.1967E-05],[101.14574,-3.2482E-05],[101.14918,-3.2998E-05],[101.15262,-2.8873E-05],[101.15606,-2.9904E-05],[101.15949,-3.042E-05],[101.16293,-2.8357E-05],[101.16637,-3.0935E-05],[101.16981,-3.042E-05],[101.17325,-2.7842E-05],[101.17669,-2.9904E-05],[101.18013,-3.0935E-05],[101.18357,-3.3513E-05],[101.187,-3.1967E-05],[101.19044,-2.7842E-05],[101.19388,-2.9389E-05],[101.19732,-2.9904E-05],[101.20076,-3.2482E-05],[101.2042,-3.506E-05],[101.20764,-3.1451E-05],[101.21107,-2.6295E-05],[101.21451,-2.9389E-05],[101.21795,-3.4029E-05],[101.22139,-2.9389E-05],[101.22483,-2.9389E-05],[101.22827,-2.9389E-05],[101.23171,-3.0935E-05],[101.23515,-3.5576E-05],[101.23858,-3.2482E-05],[101.24202,-3.2482E-05],[101.24546,-2.7842E-05],[101.2489,-2.217E-05],[101.25234,-2.7842E-05],[101.25578,-2.8357E-05],[101.25922,-2.7842E-05],[101.26265,-2.9904E-05],[101.26609,-2.7842E-05],[101.26953,-2.6295E-05],[101.27297,-2.7842E-05],[101.27641,-3.4029E-05],[101.27985,-3.4029E-05],[101.28329,-2.3717E-05],[101.28673,-2.4233E-05],[101.29016,-2.9904E-05],[101.2936,-2.6295E-05],[101.29704,-2.6811E-05],[101.30048,-3.1451E-05],[101.30392,-3.0935E-05],[101.30736,-2.9389E-05],[101.3108,-2.7326E-05],[101.31423,-2.6811E-05],[101.31767,-2.8873E-05],[101.32111,-3.0935E-05],[101.32455,-2.9389E-05],[101.32799,-2.6811E-05],[101.33143,-2.8873E-05],[101.33487,-2.9904E-05],[101.33831,-2.7326E-05],[101.34174,-2.8873E-05],[101.34518,-2.9904E-05],[101.34862,-2.9904E-05],[101.35206,-2.8357E-05],[101.3555,-2.6295E-05],[101.35894,-2.8357E-05],[101.36238,-3.042E-05],[101.36581,-2.9389E-05],[101.36925,-2.5264E-05],[101.37269,-2.6295E-05],[101.37613,-3.1967E-05],[101.37957,-3.4544E-05],[101.38301,-3.2998E-05],[101.38645,-3.0935E-05]]}
-{"quant":[101.96,-3.0574E-05],"mems":[[101.86098,-3.0935E-05],[101.86442,-3.2998E-05],[101.86786,-3.1967E-05],[101.8713,-2.8873E-05],[101.87474,-2.8357E-05],[101.87818,-2.9389E-05],[101.88161,-2.9389E-05],[101.88505,-2.8873E-05],[101.88849,-3.1967E-05],[101.89193,-2.6295E-05],[101.89537,-2.4233E-05],[101.89881,-3.1451E-05],[101.90225,-2.8357E-05],[101.90569,-2.7326E-05],[101.90912,-2.9389E-05],[101.91256,-2.5779E-05],[101.916,-2.5779E-05],[101.91944,-2.9904E-05],[101.92288,-3.0935E-05],[101.92632,-2.7842E-05],[101.92976,-2.6295E-05],[101.93319,-2.9904E-05],[101.93663,-3.1451E-05],[101.94007,-2.9904E-05],[101.94351,-3.1451E-05],[101.94695,-2.7842E-05],[101.95039,-2.7842E-05],[101.95383,-3.0935E-05],[101.95727,-2.7326E-05],[101.9607,-2.6295E-05],[101.96414,-2.6811E-05],[101.96758,-3.1967E-05],[101.97102,-3.4029E-05],[101.97446,-2.8873E-05],[101.9779,-2.8873E-05],[101.98134,-2.9904E-05],[101.98477,-2.9389E-05],[101.98821,-3.1967E-05],[101.99165,-2.9904E-05],[101.99509,-2.7326E-05],[101.99853,-2.9389E-05],[102.00197,-2.8873E-05],[102.00541,-3.0935E-05],[102.00885,-3.1967E-05],[102.01228,-2.7326E-05],[102.01572,-2.8873E-05],[102.01916,-3.1967E-05],[102.0226,-3.2482E-05],[102.02604,-3.4544E-05],[102.02948,-3.4544E-05],[102.03292,-3.3513E-05],[102.03635,-3.6091E-05],[102.03979,-3.506E-05],[102.04323,-3.2998E-05],[102.04667,-3.1967E-05],[102.05011,-2.6295E-05],[102.05355,-2.3717E-05],[102.05699,-2.7842E-05],[102.06043,-3.3513E-05],[102.06386,-3.0935E-05],[102.0673,-2.5264E-05],[102.07074,-2.6811E-05],[102.07418,-2.7326E-05],[102.07762,-2.6295E-05],[102.08106,-2.4233E-05],[102.0845,-2.4748E-05],[102.08793,-3.0935E-05],[102.09137,-3.0935E-05],[102.09481,-3.042E-05],[102.09825,-3.4029E-05],[102.10169,-2.9904E-05],[102.10513,-2.5264E-05],[102.10857,-2.7326E-05],[102.11201,-2.7842E-05],[102.11544,-2.7842E-05],[102.11888,-2.8873E-05],[102.12232,-2.9904E-05],[102.12576,-3.0935E-05],[102.1292,-2.6811E-05],[102.13264,-2.8357E-05],[102.13608,-2.9389E-05],[102.13951,-3.0935E-05],[102.14295,-3.506E-05],[102.14639,-2.7326E-05],[102.14983,-2.8357E-05],[102.15327,-2.6811E-05],[102.15671,-2.8357E-05],[102.16015,-3.2998E-05]]}
-{"quant":[102.45,-2.8598E-05],"mems":[[102.35271,-3.042E-05],[102.35615,-2.9389E-05],[102.35959,-2.9389E-05],[102.36303,-3.1967E-05],[102.36647,-3.2998E-05],[102.36991,-2.9389E-05],[102.37334,-2.9904E-05],[102.37678,-3.042E-05],[102.38022,-2.8873E-05],[102.38366,-2.8357E-05],[102.3871,-2.5779E-05],[102.39054,-2.5779E-05],[102.39398,-2.5779E-05],[102.39741,-2.7842E-05],[102.40085,-2.7842E-05],[102.40429,-3.2482E-05],[102.40773,-3.3513E-05],[102.41117,-2.6811E-05],[102.41461,-3.0935E-05],[102.41805,-3.6607E-05],[102.42149,-3.4029E-05],[102.42492,-2.9389E-05],[102.42836,-2.5264E-05],[102.4318,-2.6295E-05],[102.43524,-3.2482E-05],[102.43868,-3.2998E-05],[102.44212,-2.9904E-05],[102.44556,-2.9904E-05],[102.44899,-2.5264E-05],[102.45243,-2.6295E-05],[102.45587,-2.6295E-05],[102.45931,-2.7842E-05],[102.46275,-3.1967E-05],[102.46619,-3.0935E-05],[102.46963,-3.042E-05],[102.47307,-2.6811E-05],[102.4765,-2.7842E-05],[102.47994,-2.8357E-05],[102.48338,-2.5779E-05],[102.48682,-2.7842E-05],[102.49026,-2.7842E-05],[102.4937,-2.9389E-05],[102.49714,-2.7326E-05],[102.50057,-2.5779E-05],[102.50401,-2.8357E-05],[102.50745,-2.5779E-05],[102.51089,-2.217E-05],[102.51433,-2.5264E-05],[102.51777,-3.0935E-05],[102.52121,-3.2998E-05],[102.52465,-3.042E-05],[102.52808,-2.5264E-05],[102.53152,-2.5779E-05],[102.53496,-2.9389E-05],[102.5384,-2.8357E-05],[102.54184,-3.3513E-05],[102.54528,-3.7122E-05],[102.54872,-3.042E-05],[102.55215,-3.1451E-05],[102.55559,-3.1967E-05],[102.55903,-2.9389E-05],[102.56247,-3.2998E-05],[102.56591,-2.9389E-05],[102.56935,-2.9904E-05],[102.57279,-3.6091E-05],[102.57623,-3.4029E-05],[102.57966,-3.042E-05],[102.5831,-2.9904E-05],[102.58654,-2.7842E-05],[102.58998,-2.6811E-05],[102.59342,-3.1967E-05],[102.59686,-3.1451E-05],[102.6003,-3.0935E-05],[102.60373,-3.506E-05],[102.60717,-3.4029E-05],[102.61061,-2.8873E-05],[102.61405,-2.7326E-05],[102.61749,-3.0935E-05],[102.62093,-3.042E-05],[102.62437,-2.8357E-05],[102.62781,-2.7326E-05],[102.63124,-2.7842E-05],[102.63468,-2.9389E-05],[102.63812,-3.4029E-05],[102.64156,-3.1451E-05],[102.645,-2.8357E-05],[102.64844,-2.5779E-05],[102.65188,-2.5264E-05]]}
-{"quant":[102.946,-2.9337E-05],"mems":[[102.84788,-2.8357E-05],[102.85132,-2.8357E-05],[102.85476,-3.0935E-05],[102.8582,-3.0935E-05],[102.86163,-2.8357E-05],[102.86507,-3.1451E-05],[102.86851,-3.042E-05],[102.87195,-2.8873E-05],[102.87539,-3.506E-05],[102.87883,-3.1967E-05],[102.88227,-3.042E-05],[102.88571,-3.2998E-05],[102.88914,-3.1451E-05],[102.89258,-3.042E-05],[102.89602,-2.6811E-05],[102.89946,-2.8873E-05],[102.9029,-2.8873E-05],[102.90634,-2.5779E-05],[102.90978,-2.7842E-05],[102.91321,-2.8357E-05],[102.91665,-3.042E-05],[102.92009,-3.042E-05],[102.92353,-2.5264E-05],[102.92697,-2.8357E-05],[102.93041,-2.8873E-05],[102.93385,-2.3202E-05],[102.93729,-2.4748E-05],[102.94072,-2.6295E-05],[102.94416,-2.8873E-05],[102.9476,-3.1967E-05],[102.95104,-2.9389E-05],[102.95448,-2.8873E-05],[102.95792,-2.6811E-05],[102.96136,-2.8357E-05],[102.96479,-3.2482E-05],[102.96823,-3.1451E-05],[102.97167,-2.8357E-05],[102.97511,-2.9904E-05],[102.97855,-2.6295E-05],[102.98199,-2.5264E-05],[102.98543,-3.1967E-05],[102.98887,-2.6811E-05],[102.9923,-2.6811E-05],[102.99574,-2.7842E-05],[102.99918,-2.5264E-05],[103.00262,-2.8357E-05],[103.00606,-2.5779E-05],[103.0095,-2.8873E-05],[103.01294,-3.1451E-05],[103.01637,-3.4544E-05],[103.01981,-3.5576E-05],[103.02325,-2.9904E-05],[103.02669,-3.0935E-05],[103.03013,-3.042E-05],[103.03357,-3.4029E-05],[103.03701,-3.2482E-05],[103.04045,-2.7842E-05],[103.04388,-2.8873E-05],[103.04732,-2.3202E-05],[103.05076,-2.8357E-05],[103.0542,-3.1967E-05],[103.05764,-2.8357E-05],[103.06108,-3.042E-05],[103.06452,-3.042E-05],[103.06795,-2.9389E-05],[103.07139,-2.5264E-05],[103.07483,-2.4748E-05],[103.07827,-2.5779E-05],[103.08171,-2.7842E-05],[103.08515,-3.3513E-05],[103.08859,-2.9904E-05],[103.09203,-2.6295E-05],[103.09546,-2.8357E-05],[103.0989,-2.9904E-05],[103.10234,-2.9904E-05],[103.10578,-2.9904E-05],[103.10922,-3.1451E-05],[103.11266,-3.2482E-05],[103.1161,-3.1967E-05],[103.11953,-2.8873E-05],[103.12297,-2.9904E-05],[103.12641,-2.7326E-05],[103.12985,-2.7326E-05],[103.13329,-3.1451E-05],[103.13673,-2.8873E-05],[103.14017,-2.6295E-05],[103.14361,-2.8357E-05],[103.14704,-2.7842E-05]]}
-{"quant":[103.428,0.24825],"mems":[[103.33617,-3.1967E-05],[103.33961,-3.2998E-05],[103.34305,-3.1451E-05],[103.34649,-3.1451E-05],[103.34993,-2.8873E-05],[103.35336,-2.8873E-05],[103.3568,-3.042E-05],[103.36024,-2.9389E-05],[103.36368,-2.7326E-05],[103.36712,-2.8357E-05],[103.37056,-2.7842E-05],[103.374,-2.9904E-05],[103.37743,-3.3513E-05],[103.38087,-3.1451E-05],[103.38431,-3.0935E-05],[103.38775,-2.8873E-05],[103.39119,-2.9389E-05],[103.39463,-3.4029E-05],[103.39807,-3.3513E-05],[103.40151,-2.9389E-05],[103.40494,-2.4748E-05],[103.40838,-2.5779E-05],[103.41182,-2.8357E-05],[103.41526,-3.1451E-05],[103.4187,-3.1967E-05],[103.42214,-2.9904E-05],[103.42558,-3.0935E-05],[103.42901,-2.4233E-05],[103.43245,-2.4748E-05],[103.43589,-3.1451E-05],[103.43933,-2.8357E-05],[103.44277,-3.2998E-05],[103.44621,-2.6295E-05],[103.44965,-2.0624E-05],[103.45309,-2.9389E-05],[103.45652,-2.9389E-05],[103.45996,-2.7326E-05],[103.4634,-2.7326E-05],[103.46684,-2.9389E-05],[103.47028,-2.7326E-05],[103.47372,-2.9389E-05],[103.47716,-3.506E-05],[103.48059,-3.1967E-05],[103.48403,-3.2998E-05],[103.48747,-2.7326E-05],[103.49091,-2.2686E-05],[103.49435,-2.9389E-05],[103.49779,-2.8357E-05],[103.50123,-2.7842E-05],[103.50467,-3.0935E-05],[103.5081,-2.9389E-05],[103.51154,-2.9904E-05],[103.51498,-2.8357E-05],[103.51842,-2.9389E-05],[103.52186,-3.042E-05],[103.5253,-2.9904E-05],[103.52874,-3.4029E-05],[103.53217,-2.7842E-05],[103.53561,-2.8873E-05],[103.53905,-3.2998E-05],[103.54249,-3.1451E-05],[103.54593,-3.2482E-05],[103.54937,-2.8357E-05],[103.55281,-2.9904E-05],[103.55625,-3.0935E-05],[103.55968,-2.9904E-05],[103.56312,-3.1967E-05],[103.56656,-3.2482E-05],[103.57,-3.1451E-05],[103.57343,-3.2998E-05],[103.57687,-3.2998E-05],[103.5803,-3.042E-05],[103.58374,-3.0935E-05],[103.58717,-3.3513E-05],[103.59061,-2.5779E-05],[103.59404,-2.3202E-05],[103.59748,-3.2482E-05],[103.60091,-2.9904E-05],[103.60435,-2.9389E-05],[103.60778,-2.9389E-05],[103.61122,-2.4233E-05],[103.61465,-2.7842E-05],[103.61809,-2.6811E-05],[103.62152,-2.7842E-05],[103.62495,-2.7842E-05],[103.62839,-2.5264E-05],[103.63182,-2.8357E-05],[103.63526,-2.8873E-05]]}
-{"quant":[103.937,-2.9853E-05],"mems":[[103.8379,-2.7842E-05],[103.84134,-3.042E-05],[103.84477,-3.042E-05],[103.84821,-2.5264E-05],[103.85164,-2.7326E-05],[103.85508,-3.1967E-05],[103.85851,-3.1967E-05],[103.86195,-2.9389E-05],[103.86538,-2.5779E-05],[103.86882,-2.6295E-05],[103.87225,-2.7842E-05],[103.87569,-2.7842E-05],[103.87912,-3.0935E-05],[103.88255,-3.1967E-05],[103.88599,-2.9389E-05],[103.88942,-2.5779E-05],[103.89286,-2.7326E-05],[103.89629,-3.042E-05],[103.89973,-2.8357E-05],[103.90316,-3.042E-05],[103.9066,-2.8357E-05],[103.91003,-2.7326E-05],[103.91347,-3.0935E-05],[103.9169,-3.2482E-05],[103.92034,-3.2482E-05],[103.92377,-2.6295E-05],[103.92721,-2.5264E-05],[103.93064,-2.7842E-05],[103.93407,-2.9389E-05],[103.93751,-3.042E-05],[103.94094,-2.5779E-05],[103.94438,-2.8357E-05],[103.94781,-2.9904E-05],[103.95125,-3.1451E-05],[103.95468,-3.5576E-05],[103.95812,-2.8873E-05],[103.96155,-3.2482E-05],[103.96499,-3.2998E-05],[103.96842,-2.5779E-05],[103.97186,-3.0935E-05],[103.97529,-3.0935E-05],[103.97873,-3.1451E-05],[103.98216,-3.4029E-05],[103.98559,-2.8357E-05],[103.98903,-2.2686E-05],[103.99246,-2.4748E-05],[103.9959,-2.9904E-05],[103.99933,-2.9389E-05],[104.00277,-2.9904E-05],[104.0062,-2.9904E-05],[104.00964,-2.8357E-05],[104.01307,-2.8873E-05],[104.01651,-3.042E-05],[104.01994,-2.8873E-05],[104.02338,-2.9904E-05],[104.02681,-2.8873E-05],[104.03025,-2.9904E-05],[104.03368,-3.506E-05],[104.03711,-3.1451E-05],[104.04055,-3.042E-05],[104.04398,-2.8873E-05],[104.04742,-2.5779E-05],[104.05085,-2.7842E-05],[104.05429,-2.9389E-05],[104.05772,-3.1451E-05],[104.06116,-3.042E-05],[104.06459,-2.9389E-05],[104.06803,-2.6295E-05],[104.07146,-2.3202E-05],[104.0749,-2.4233E-05],[104.07833,-2.9904E-05],[104.08177,-3.3513E-05],[104.0852,-2.8357E-05],[104.08863,-2.6295E-05],[104.09207,-2.8357E-05],[104.0955,-2.7842E-05],[104.09894,-2.8873E-05],[104.10237,-3.042E-05],[104.10581,-2.4748E-05],[104.10924,-2.7842E-05],[104.11268,-3.0935E-05],[104.11611,-2.8357E-05],[104.11955,-2.9904E-05],[104.12298,-2.9904E-05],[104.12642,-3.3513E-05],[104.12985,-2.9389E-05],[104.13329,-2.8873E-05],[104.13672,-3.2482E-05],[104.14015,-3.1451E-05]]}
-{"quant":[104.838,-2.9165E-05],"mems":[[104.74122,-3.0935E-05],[104.74466,-2.9389E-05],[104.74809,-2.5264E-05],[104.75153,-2.8873E-05],[104.75496,-3.2998E-05],[104.75839,-2.9904E-05],[104.76183,-2.9904E-05],[104.76526,-2.9904E-05],[104.7687,-2.6811E-05],[104.77213,-3.042E-05],[104.77557,-2.8357E-05],[104.779,-2.7326E-05],[104.78244,-3.042E-05],[104.78587,-2.6811E-05],[104.78931,-2.8357E-05],[104.79274,-3.2482E-05],[104.79618,-3.2998E-05],[104.79961,-3.042E-05],[104.80305,-2.9904E-05],[104.80648,-2.9904E-05],[104.80991,-2.7326E-05],[104.81335,-2.8873E-05],[104.81678,-2.9389E-05],[104.82022,-3.3513E-05],[104.82365,-3.1967E-05],[104.82709,-2.7842E-05],[104.83052,-3.2482E-05],[104.83396,-3.5576E-05],[104.83739,-3.506E-05],[104.84083,-2.7842E-05],[104.84426,-2.4748E-05],[104.8477,-2.8873E-05],[104.85113,-3.2482E-05],[104.85457,-3.042E-05],[104.858,-2.9904E-05],[104.86143,-3.042E-05],[104.86487,-2.7842E-05],[104.8683,-2.9389E-05],[104.87174,-2.9389E-05],[104.87517,-3.042E-05],[104.87861,-3.2482E-05],[104.88204,-2.7842E-05],[104.88548,-2.7326E-05],[104.88891,-2.6811E-05],[104.89235,-2.2686E-05],[104.89578,-2.8357E-05],[104.89922,-2.9904E-05],[104.90265,-2.6295E-05],[104.90609,-2.9389E-05],[104.90952,-2.9389E-05],[104.91295,-2.6295E-05],[104.91639,-2.7842E-05],[104.91982,-3.1451E-05],[104.92326,-3.0935E-05],[104.92669,-2.7326E-05],[104.93013,-2.9389E-05],[104.93356,-3.4029E-05],[104.937,-3.3513E-05],[104.94043,-3.1967E-05],[104.94387,-3.1967E-05],[104.9473,-2.7326E-05],[104.95074,-2.8873E-05],[104.95417,-3.4544E-05],[104.95761,-3.2998E-05],[104.96104,-3.0935E-05],[104.96447,-3.1967E-05],[104.96791,-3.1451E-05],[104.97134,-2.6295E-05],[104.97478,-2.9389E-05],[104.97821,-2.9389E-05],[104.98165,-2.4233E-05],[104.98508,-3.042E-05],[104.98852,-3.2482E-05],[104.99195,-2.8357E-05],[104.99539,-3.1967E-05],[104.99882,-3.4029E-05],[105.00226,-3.1967E-05],[105.00569,-2.8357E-05],[105.00913,-2.6295E-05],[105.01256,-3.0935E-05],[105.01599,-2.8873E-05],[105.01943,-2.5779E-05],[105.02286,-3.042E-05],[105.0263,-2.6811E-05],[105.02973,-2.8873E-05],[105.03317,-3.042E-05],[105.0366,-2.217E-05],[105.04004,-2.5779E-05]]}
-{"quant":[105.322,-2.8735E-05],"mems":[[105.22207,-2.6295E-05],[105.22551,-2.9389E-05],[105.22894,-2.6811E-05],[105.23238,-2.7326E-05],[105.23581,-2.8357E-05],[105.23925,-3.1967E-05],[105.24268,-3.3513E-05],[105.24612,-2.6295E-05],[105.24955,-2.5779E-05],[105.25299,-2.5264E-05],[105.25642,-2.5264E-05],[105.25986,-2.8873E-05],[105.26329,-2.8357E-05],[105.26673,-2.7842E-05],[105.27016,-2.8357E-05],[105.27359,-2.8873E-05],[105.27703,-2.7842E-05],[105.28046,-2.7842E-05],[105.2839,-3.042E-05],[105.28733,-2.8873E-05],[105.29077,-2.8357E-05],[105.2942,-3.0935E-05],[105.29764,-3.4029E-05],[105.30107,-3.4029E-05],[105.30451,-2.6811E-05],[105.30794,-2.6295E-05],[105.31138,-3.1967E-05],[105.31481,-2.8357E-05],[105.31825,-2.5264E-05],[105.32168,-2.7842E-05],[105.32511,-2.7842E-05],[105.32855,-2.8357E-05],[105.33198,-3.4029E-05],[105.33542,-3.0935E-05],[105.33885,-2.5779E-05],[105.34229,-2.8873E-05],[105.34572,-2.7326E-05],[105.34916,-2.6811E-05],[105.35259,-3.1451E-05],[105.35603,-2.9389E-05],[105.35946,-2.7842E-05],[105.3629,-2.9904E-05],[105.36633,-2.6295E-05],[105.36977,-2.6295E-05],[105.3732,-2.9389E-05],[105.37663,-2.7842E-05],[105.38007,-3.1451E-05],[105.3835,-2.8357E-05],[105.38694,-2.4748E-05],[105.39037,-2.8873E-05],[105.39381,-2.7842E-05],[105.39724,-2.7842E-05],[105.40068,-2.9389E-05],[105.40411,-2.8357E-05],[105.40755,-2.5779E-05],[105.41098,-2.9904E-05],[105.41442,-3.2998E-05],[105.41785,-2.7842E-05],[105.42129,-2.9389E-05],[105.42472,-3.0935E-05],[105.42815,-2.7326E-05],[105.43159,-2.9389E-05],[105.43502,-2.8873E-05],[105.43846,-2.8357E-05],[105.44189,-2.9389E-05],[105.44533,-2.9904E-05],[105.44876,-2.9389E-05],[105.4522,-2.7842E-05],[105.45563,-3.1967E-05],[105.45907,-3.506E-05],[105.4625,-2.8357E-05],[105.46594,-2.5779E-05],[105.46937,-2.4748E-05],[105.47281,-2.5264E-05],[105.47624,-2.9904E-05],[105.47967,-2.6295E-05],[105.48311,-2.7842E-05],[105.48654,-3.3513E-05],[105.48998,-3.3513E-05],[105.49341,-3.4029E-05],[105.49685,-3.3513E-05],[105.50028,-3.1967E-05],[105.50372,-2.8357E-05],[105.50715,-2.5779E-05],[105.51059,-2.6811E-05],[105.51402,-3.1451E-05],[105.51746,-3.4029E-05],[105.52089,-2.9389E-05],[105.52433,-3.1967E-05]]}
-{"quant":[105.831,-2.9853E-05],"mems":[[105.73384,-3.3513E-05],[105.73727,-3.0935E-05],[105.74071,-3.0935E-05],[105.74414,-2.7326E-05],[105.74758,-2.7842E-05],[105.75101,-2.5779E-05],[105.75445,-2.2686E-05],[105.75788,-2.7326E-05],[105.76132,-2.6295E-05],[105.76475,-2.3717E-05],[105.76819,-2.8873E-05],[105.77162,-3.4544E-05],[105.77506,-3.042E-05],[105.77849,-3.0935E-05],[105.78193,-3.0935E-05],[105.78536,-2.7842E-05],[105.78879,-3.1967E-05],[105.79223,-3.042E-05],[105.79566,-2.6811E-05],[105.7991,-2.8873E-05],[105.80253,-3.2482E-05],[105.80597,-3.2998E-05],[105.8094,-2.9389E-05],[105.81284,-3.0935E-05],[105.81627,-3.2482E-05],[105.81971,-3.1451E-05],[105.82314,-2.8357E-05],[105.82658,-2.5264E-05],[105.83001,-2.7326E-05],[105.83345,-2.5264E-05],[105.83688,-2.5779E-05],[105.84031,-2.9904E-05],[105.84375,-2.9389E-05],[105.84718,-2.5779E-05],[105.85062,-2.6295E-05],[105.85405,-3.4544E-05],[105.85749,-3.4544E-05],[105.86092,-3.042E-05],[105.86436,-3.0935E-05],[105.86779,-2.9904E-05],[105.87123,-2.9904E-05],[105.87466,-3.042E-05],[105.8781,-3.0935E-05],[105.88153,-2.9904E-05],[105.88497,-2.7842E-05],[105.8884,-2.4748E-05],[105.89183,-2.3717E-05],[105.89527,-2.9904E-05],[105.8987,-3.2998E-05],[105.90214,-2.9904E-05],[105.90557,-2.9904E-05],[105.90901,-3.042E-05],[105.91244,-3.1967E-05],[105.91588,-3.506E-05],[105.91931,-3.2482E-05],[105.92275,-3.1967E-05],[105.92618,-3.1451E-05],[105.92962,-2.6811E-05],[105.93305,-3.2482E-05],[105.93649,-3.6091E-05],[105.93992,-3.2998E-05],[105.94335,-2.7842E-05],[105.94679,-2.6811E-05],[105.95022,-3.2482E-05],[105.95366,-3.2998E-05],[105.95709,-2.7842E-05],[105.96053,-2.5779E-05],[105.96396,-2.9389E-05],[105.9674,-2.8873E-05],[105.97083,-3.2998E-05],[105.97427,-3.3513E-05],[105.9777,-2.7842E-05],[105.98114,-2.8873E-05],[105.98457,-2.8357E-05],[105.98801,-2.8357E-05],[105.99144,-3.1451E-05],[105.99487,-3.1967E-05],[105.99831,-3.0935E-05],[106.00174,-2.9389E-05],[106.00518,-2.7842E-05],[106.00861,-2.9904E-05],[106.01205,-3.1967E-05],[106.01548,-3.1967E-05],[106.01892,-2.9904E-05],[106.02235,-3.1967E-05],[106.02579,-2.9904E-05],[106.02922,-2.5779E-05],[106.03266,-2.9904E-05]]}
-{"quant":[106.36,-2.9595E-05],"mems":[[106.26287,-2.9389E-05],[106.26631,-2.4748E-05],[106.26974,-3.0935E-05],[106.27318,-3.1967E-05],[106.27662,-3.1967E-05],[106.28006,-3.3513E-05],[106.28349,-2.8873E-05],[106.28693,-3.0935E-05],[106.29037,-2.7326E-05],[106.29381,-2.4748E-05],[106.29724,-2.9904E-05],[106.30068,-2.7842E-05],[106.30412,-2.7842E-05],[106.30755,-2.8357E-05],[106.31099,-2.7842E-05],[106.31443,-3.042E-05],[106.31787,-2.9389E-05],[106.3213,-2.8357E-05],[106.32474,-2.5264E-05],[106.32818,-2.4748E-05],[106.33162,-2.8873E-05],[106.33505,-2.7842E-05],[106.33849,-2.8873E-05],[106.34193,-3.1451E-05],[106.34537,-2.8873E-05],[106.3488,-2.6811E-05],[106.35224,-2.6811E-05],[106.35568,-3.042E-05],[106.35911,-3.4544E-05],[106.36255,-3.1451E-05],[106.36599,-2.7842E-05],[106.36943,-2.8873E-05],[106.37286,-2.5779E-05],[106.3763,-3.0935E-05],[106.37974,-3.2998E-05],[106.38318,-2.7326E-05],[106.38661,-3.042E-05],[106.39005,-3.1451E-05],[106.39349,-2.8357E-05],[106.39693,-2.7326E-05],[106.40036,-2.5264E-05],[106.4038,-2.8873E-05],[106.40724,-3.042E-05],[106.41067,-2.8357E-05],[106.41411,-3.1451E-05],[106.41755,-3.3513E-05],[106.42099,-3.2482E-05],[106.42442,-2.5779E-05],[106.42786,-2.5779E-05],[106.4313,-3.4029E-05],[106.43474,-3.2482E-05],[106.43817,-2.9389E-05],[106.44161,-3.042E-05],[106.44505,-2.8357E-05],[106.44849,-2.6295E-05],[106.45192,-2.8357E-05],[106.45536,-3.1451E-05],[106.4588,-3.1967E-05],[106.46223,-3.042E-05],[106.46567,-3.0935E-05],[106.46911,-3.1451E-05],[106.47255,-2.6295E-05],[106.47598,-2.5779E-05],[106.47942,-2.7326E-05],[106.48286,-2.2686E-05],[106.4863,-2.5779E-05],[106.48973,-3.1451E-05],[106.49317,-3.0935E-05],[106.49661,-3.1451E-05],[106.50005,-2.6295E-05],[106.50348,-2.4233E-05],[106.50692,-2.6811E-05],[106.51036,-2.8357E-05],[106.51379,-2.8357E-05],[106.51723,-2.7842E-05],[106.52067,-3.042E-05],[106.52411,-2.8873E-05],[106.52754,-2.7842E-05],[106.53098,-2.9389E-05],[106.53442,-3.4544E-05],[106.53786,-3.2998E-05],[106.54129,-2.7842E-05],[106.54473,-2.8873E-05],[106.54817,-2.9389E-05],[106.55161,-2.9904E-05],[106.55504,-2.7842E-05],[106.55848,-2.6295E-05],[106.56192,-2.8357E-05]]}
-{"quant":[107.203,-2.9285E-05],"mems":[[107.10502,-2.4748E-05],[107.10845,-2.5264E-05],[107.11189,-3.1967E-05],[107.11533,-3.1967E-05],[107.11877,-3.042E-05],[107.1222,-2.6295E-05],[107.12564,-2.9389E-05],[107.12908,-2.4748E-05],[107.13251,-2.5779E-05],[107.13595,-3.0935E-05],[107.13939,-2.7842E-05],[107.14283,-2.8873E-05],[107.14626,-2.6811E-05],[107.1497,-2.8357E-05],[107.15314,-2.5779E-05],[107.15658,-2.9904E-05],[107.16001,-3.3513E-05],[107.16345,-2.7326E-05],[107.16689,-3.042E-05],[107.17033,-3.6091E-05],[107.17376,-3.5576E-05],[107.1772,-2.8873E-05],[107.18064,-2.7842E-05],[107.18407,-2.9904E-05],[107.18751,-2.7842E-05],[107.19095,-2.7326E-05],[107.19439,-3.1967E-05],[107.19782,-2.6295E-05],[107.20126,-2.7326E-05],[107.2047,-2.9389E-05],[107.20814,-2.4233E-05],[107.21157,-3.6607E-05],[107.21501,-3.4544E-05],[107.21845,-3.042E-05],[107.22189,-3.0935E-05],[107.22532,-2.6295E-05],[107.22876,-3.0935E-05],[107.2322,-3.2482E-05],[107.23563,-3.042E-05],[107.23907,-3.042E-05],[107.24251,-2.6295E-05],[107.24595,-2.3202E-05],[107.24938,-2.4748E-05],[107.25282,-2.9904E-05],[107.25626,-3.4029E-05],[107.2597,-2.8357E-05],[107.26313,-2.5779E-05],[107.26657,-2.7842E-05],[107.27001,-2.5264E-05],[107.27345,-2.7842E-05],[107.27688,-3.3513E-05],[107.28032,-3.2482E-05],[107.28376,-2.8873E-05],[107.28719,-2.8873E-05],[107.29063,-2.4748E-05],[107.29407,-3.042E-05],[107.29751,-3.4029E-05],[107.30094,-2.7326E-05],[107.30438,-2.8357E-05],[107.30782,-2.6811E-05],[107.31126,-3.042E-05],[107.31469,-3.042E-05],[107.31813,-2.8357E-05],[107.32157,-3.042E-05],[107.32501,-2.6811E-05],[107.32844,-2.8873E-05],[107.33188,-3.2482E-05],[107.33532,-3.2998E-05],[107.33875,-2.9904E-05],[107.34219,-2.4233E-05],[107.34563,-2.6811E-05],[107.34907,-2.8357E-05],[107.3525,-3.4544E-05],[107.35594,-3.4544E-05],[107.35938,-2.4748E-05],[107.36282,-2.8873E-05],[107.36625,-2.9389E-05],[107.36969,-2.7326E-05],[107.37313,-3.042E-05],[107.37657,-2.8357E-05],[107.38,-2.9904E-05],[107.38344,-2.9904E-05],[107.38688,-2.9389E-05],[107.39031,-2.6295E-05],[107.39375,-2.5264E-05],[107.39719,-2.9389E-05],[107.40063,-3.1451E-05],[107.40406,-3.1451E-05]]}
-{"quant":[107.74,-2.9664E-05],"mems":[[107.64124,-3.042E-05],[107.64468,-3.0935E-05],[107.64811,-2.9904E-05],[107.65155,-2.9389E-05],[107.65499,-2.9389E-05],[107.65843,-3.042E-05],[107.66186,-3.042E-05],[107.6653,-2.9904E-05],[107.66874,-3.0935E-05],[107.67218,-3.042E-05],[107.67561,-2.8873E-05],[107.67905,-2.8873E-05],[107.68249,-2.7326E-05],[107.68593,-2.8873E-05],[107.68936,-2.8357E-05],[107.6928,-2.1655E-05],[107.69624,-2.6295E-05],[107.69967,-2.6295E-05],[107.70311,-2.217E-05],[107.70655,-2.8357E-05],[107.70999,-2.8873E-05],[107.71342,-3.1967E-05],[107.71686,-3.4029E-05],[107.7203,-2.8873E-05],[107.72374,-3.042E-05],[107.72717,-2.8873E-05],[107.73061,-2.9904E-05],[107.73405,-3.4029E-05],[107.73749,-2.8357E-05],[107.74092,-2.8873E-05],[107.74436,-2.7842E-05],[107.7478,-2.8873E-05],[107.75123,-3.6091E-05],[107.75467,-3.3513E-05],[107.75811,-2.9904E-05],[107.76155,-2.4748E-05],[107.76498,-2.5779E-05],[107.76842,-3.1451E-05],[107.77186,-2.9389E-05],[107.7753,-3.1967E-05],[107.77873,-3.2998E-05],[107.78217,-2.8357E-05],[107.78561,-2.8873E-05],[107.78905,-2.6295E-05],[107.79248,-2.7842E-05],[107.79592,-2.9904E-05],[107.79936,-2.6811E-05],[107.80279,-2.9389E-05],[107.80623,-2.8357E-05],[107.80967,-2.8357E-05],[107.81311,-2.6295E-05],[107.81654,-2.5779E-05],[107.81998,-3.0935E-05],[107.82342,-2.9389E-05],[107.82686,-3.2998E-05],[107.83029,-3.5576E-05],[107.83373,-3.4029E-05],[107.83717,-2.8357E-05],[107.84061,-3.0935E-05],[107.84404,-3.3513E-05],[107.84748,-2.9389E-05],[107.85092,-3.1451E-05],[107.85435,-3.1451E-05],[107.85779,-3.3513E-05],[107.86123,-2.8873E-05],[107.86467,-2.6295E-05],[107.8681,-2.6295E-05],[107.87154,-2.5264E-05],[107.87498,-3.0935E-05],[107.87842,-2.9904E-05],[107.88185,-2.7326E-05],[107.88529,-2.3202E-05],[107.88873,-2.7842E-05],[107.89217,-3.2998E-05],[107.8956,-2.8873E-05],[107.89904,-3.1967E-05],[107.90248,-2.7326E-05],[107.90591,-2.4748E-05],[107.90935,-3.042E-05],[107.91279,-3.0935E-05],[107.91623,-3.0935E-05],[107.91966,-3.042E-05],[107.9231,-2.6295E-05],[107.92654,-2.5779E-05],[107.92998,-3.1967E-05],[107.93341,-3.0935E-05],[107.93685,-2.9389E-05],[107.94029,-2.8357E-05]]}
-{"quant":[108.291,-2.9457E-05],"mems":[[108.19121,-3.042E-05],[108.19465,-3.042E-05],[108.19809,-3.0935E-05],[108.20153,-2.7326E-05],[108.20496,-2.6811E-05],[108.2084,-2.9389E-05],[108.21184,-2.9904E-05],[108.21527,-2.9904E-05],[108.21871,-2.6295E-05],[108.22215,-2.4233E-05],[108.22559,-2.7842E-05],[108.22902,-2.7326E-05],[108.23246,-2.9389E-05],[108.2359,-3.1967E-05],[108.23934,-2.5779E-05],[108.24277,-2.4233E-05],[108.24621,-2.7842E-05],[108.24965,-2.9389E-05],[108.25309,-3.2998E-05],[108.25652,-3.3513E-05],[108.25996,-3.0935E-05],[108.2634,-3.3513E-05],[108.26683,-3.1967E-05],[108.27027,-2.9389E-05],[108.27371,-2.9389E-05],[108.27715,-2.7842E-05],[108.28058,-2.8357E-05],[108.28402,-2.9389E-05],[108.28746,-3.042E-05],[108.2909,-3.0935E-05],[108.29433,-2.7842E-05],[108.29777,-2.4233E-05],[108.30121,-2.4748E-05],[108.30465,-2.9904E-05],[108.30808,-2.8873E-05],[108.31152,-2.9389E-05],[108.31496,-3.2998E-05],[108.31839,-3.2482E-05],[108.32183,-3.0935E-05],[108.32527,-2.8357E-05],[108.32871,-2.9904E-05],[108.33214,-2.9389E-05],[108.33558,-2.9904E-05],[108.33902,-2.9904E-05],[108.34246,-2.8357E-05],[108.34589,-2.9904E-05],[108.34933,-3.3513E-05],[108.35277,-3.7122E-05],[108.35621,-3.4029E-05],[108.35964,-3.042E-05],[108.36308,-2.5264E-05],[108.36652,-2.4233E-05],[108.36995,-3.1451E-05],[108.37339,-3.2998E-05],[108.37683,-2.9904E-05],[108.38027,-2.5264E-05],[108.3837,-2.6811E-05],[108.38714,-2.6811E-05],[108.39058,-2.7326E-05],[108.39402,-3.1451E-05],[108.39745,-2.9389E-05],[108.40089,-2.6295E-05],[108.40433,-2.7842E-05],[108.40777,-3.1451E-05],[108.4112,-3.3513E-05],[108.41464,-3.4029E-05],[108.41808,-3.1451E-05],[108.42151,-2.9389E-05],[108.42495,-2.9904E-05],[108.42839,-2.8873E-05],[108.43183,-2.9389E-05],[108.43526,-2.9389E-05],[108.4387,-2.9904E-05],[108.44214,-2.5264E-05],[108.44558,-2.4233E-05],[108.44901,-3.042E-05],[108.45245,-2.8357E-05],[108.45589,-3.1451E-05],[108.45933,-2.7842E-05],[108.46276,-2.1139E-05],[108.4662,-2.8357E-05],[108.46964,-2.7842E-05],[108.47307,-2.5779E-05],[108.47651,-2.9389E-05],[108.47995,-3.0935E-05],[108.48339,-3.1451E-05],[108.48682,-3.0935E-05],[108.49026,-3.2998E-05],[108.4937,-3.5576E-05]]}
-{"quant":[108.82,-0.95042],"mems":[[108.72056,-3.042E-05],[108.724,-3.0935E-05],[108.72749,-2.9904E-05],[108.73098,-2.9389E-05],[108.73447,-3.1451E-05],[108.73796,-2.7326E-05],[108.74145,-2.7326E-05],[108.74494,-3.1967E-05],[108.74843,-3.042E-05],[108.75191,-2.4233E-05],[108.7554,-2.7842E-05],[108.75889,-3.1967E-05],[108.76238,-3.0935E-05],[108.76587,-2.8357E-05],[108.76936,-3.4544E-05],[108.77285,-3.6091E-05],[108.77634,-2.9389E-05],[108.77983,-2.8873E-05],[108.78332,-2.3202E-05],[108.78681,-2.6295E-05],[108.7903,-3.1451E-05],[108.79379,-2.7326E-05],[108.79728,-2.9389E-05],[108.80077,-2.8357E-05],[108.80425,-2.4748E-05],[108.80774,-2.8357E-05],[108.81123,-2.7842E-05],[108.81472,-2.7326E-05],[108.81821,-3.3513E-05],[108.8217,-2.8357E-05],[108.82519,-2.6811E-05],[108.82868,-3.1967E-05],[108.83217,-3.1967E-05],[108.83566,-3.4544E-05],[108.83915,-3.1967E-05],[108.84264,-2.8357E-05],[108.84613,-2.6811E-05],[108.84962,-2.6295E-05],[108.85311,-3.0935E-05],[108.85659,-3.1451E-05],[108.86008,-3.042E-05],[108.86357,-2.8357E-05],[108.86706,-2.6811E-05],[108.87055,-3.2998E-05],[108.87404,-3.1451E-05],[108.87753,-2.5779E-05],[108.88102,-3.1451E-05],[108.88451,-3.2482E-05],[108.888,-3.1451E-05],[108.89149,-3.1967E-05],[108.89498,-2.7842E-05],[108.89847,-2.9389E-05],[108.90196,-2.9389E-05],[108.90545,-2.6811E-05],[108.90893,-2.7326E-05],[108.91242,-2.9904E-05],[108.91591,-3.1967E-05],[108.9194,-3.0935E-05],[108.92289,-3.0935E-05],[108.92638,-3.1451E-05],[108.92987,-2.9904E-05],[108.93336,-2.7326E-05],[108.93685,-2.6295E-05],[108.94034,-2.8873E-05],[108.94383,-2.7326E-05],[108.94732,-2.6811E-05],[108.95081,-3.1451E-05],[108.9543,-2.8357E-05],[108.95779,-2.5779E-05],[108.96127,-2.6295E-05],[108.96476,-2.5779E-05],[108.96825,-3.1451E-05],[108.97174,-3.0935E-05],[108.97523,-2.8873E-05],[108.97872,-3.4029E-05],[108.98221,-3.4029E-05],[108.9857,-3.2482E-05],[108.98919,-3.2998E-05],[108.99268,-3.2998E-05],[108.99617,-3.1967E-05],[108.99966,-3.0935E-05],[109.00315,-3.1967E-05],[109.00664,-2.9389E-05],[109.01013,-2.8357E-05],[109.01361,-3.0935E-05],[109.0171,-2.9389E-05],[109.02059,-3.0935E-05]]}
-{"quant":[109.322,-2.9079E-05],"mems":[[109.22297,-2.8873E-05],[109.22646,-3.042E-05],[109.22995,-2.8873E-05],[109.23344,-2.9904E-05],[109.23693,-2.9389E-05],[109.24042,-2.9389E-05],[109.24391,-2.8357E-05],[109.2474,-2.7326E-05],[109.25089,-2.8873E-05],[109.25438,-2.8873E-05],[109.25787,-3.0935E-05],[109.26136,-3.042E-05],[109.26485,-2.9904E-05],[109.26834,-3.0935E-05],[109.27183,-3.0935E-05],[109.27531,-3.4029E-05],[109.2788,-3.2998E-05],[109.28229,-3.1967E-05],[109.28578,-3.1451E-05],[109.28927,-2.6811E-05],[109.29276,-2.8873E-05],[109.29625,-2.8873E-05],[109.29974,-2.6295E-05],[109.30323,-2.9389E-05],[109.30672,-2.9904E-05],[109.31021,-2.8873E-05],[109.3137,-2.6811E-05],[109.31719,-2.6811E-05],[109.32068,-3.0935E-05],[109.32417,-2.8357E-05],[109.32765,-2.7842E-05],[109.33114,-2.8873E-05],[109.33463,-3.0935E-05],[109.33812,-3.1451E-05],[109.34161,-2.8357E-05],[109.3451,-2.7842E-05],[109.34859,-2.4748E-05],[109.35208,-2.217E-05],[109.35557,-2.5779E-05],[109.35906,-3.1967E-05],[109.36255,-3.4029E-05],[109.36604,-3.2482E-05],[109.36953,-2.7842E-05],[109.37302,-2.6295E-05],[109.37651,-3.2998E-05],[109.37999,-3.1967E-05],[109.38348,-2.7326E-05],[109.38697,-2.9904E-05],[109.39046,-3.0935E-05],[109.39395,-2.5779E-05],[109.39744,-2.4748E-05],[109.40093,-2.8873E-05],[109.40442,-2.9389E-05],[109.40791,-3.3513E-05],[109.4114,-3.1451E-05],[109.41489,-2.4748E-05],[109.41838,-2.8357E-05],[109.42187,-3.2998E-05],[109.42536,-3.042E-05],[109.42885,-2.7326E-05],[109.43233,-3.0935E-05],[109.43582,-2.7326E-05],[109.43931,-2.5779E-05],[109.4428,-2.8873E-05],[109.44629,-2.7842E-05],[109.44978,-2.7842E-05],[109.45327,-2.6811E-05],[109.45676,-2.7326E-05],[109.46025,-2.9389E-05],[109.46374,-2.8357E-05],[109.46723,-2.9389E-05],[109.47072,-2.8357E-05],[109.47421,-2.5779E-05],[109.4777,-2.7326E-05],[109.48119,-2.9389E-05],[109.48467,-3.042E-05],[109.48816,-2.9389E-05],[109.49165,-3.0935E-05],[109.49514,-2.9904E-05],[109.49863,-2.8873E-05],[109.50212,-2.9904E-05],[109.50561,-3.1967E-05],[109.5091,-2.9904E-05],[109.51259,-2.7326E-05],[109.51608,-2.9389E-05],[109.51957,-2.5779E-05],[109.52306,-2.7842E-05]]}
-{"quant":[109.896,-2.9612E-05],"mems":[[109.79871,-3.3513E-05],[109.8022,-3.042E-05],[109.80569,-3.0935E-05],[109.80918,-3.4544E-05],[109.81267,-3.2482E-05],[109.81616,-2.9904E-05],[109.81965,-2.7326E-05],[109.82314,-2.9389E-05],[109.82663,-2.8873E-05],[109.83012,-2.8873E-05],[109.83361,-2.9389E-05],[109.8371,-2.9904E-05],[109.84059,-3.2482E-05],[109.84408,-3.2482E-05],[109.84757,-3.7638E-05],[109.85105,-3.042E-05],[109.85454,-2.3202E-05],[109.85803,-2.6295E-05],[109.86152,-2.6295E-05],[109.86501,-2.8873E-05],[109.8685,-3.2998E-05],[109.87199,-3.1967E-05],[109.87548,-3.042E-05],[109.87897,-2.7326E-05],[109.88246,-2.6811E-05],[109.88595,-3.1451E-05],[109.88944,-3.1451E-05],[109.89293,-3.1967E-05],[109.89642,-3.2998E-05],[109.89991,-3.1967E-05],[109.90339,-3.2482E-05],[109.90688,-3.2482E-05],[109.91037,-3.2482E-05],[109.91386,-2.8873E-05],[109.91735,-2.4233E-05],[109.92084,-2.5264E-05],[109.92433,-3.2482E-05],[109.92782,-3.2998E-05],[109.93131,-3.2998E-05],[109.9348,-3.2482E-05],[109.93829,-2.6295E-05],[109.94178,-2.9389E-05],[109.94527,-3.2998E-05],[109.94876,-3.2482E-05],[109.95225,-2.8357E-05],[109.95573,-3.2998E-05],[109.95922,-3.506E-05],[109.96271,-2.9389E-05],[109.9662,-2.9904E-05],[109.96969,-2.217E-05],[109.97318,-2.217E-05],[109.97667,-2.7842E-05],[109.98016,-2.5779E-05],[109.98365,-2.8873E-05],[109.98714,-3.042E-05],[109.99063,-2.8357E-05],[109.99412,-2.6811E-05],[109.99761,-2.7326E-05],[110.0011,-2.3717E-05],[110.00459,-2.2686E-05],[110.00807,-3.0935E-05],[110.01156,-3.1451E-05],[110.01505,-2.8873E-05],[110.01854,-2.9389E-05],[110.02203,-3.042E-05],[110.02552,-2.9904E-05],[110.02901,-3.1967E-05],[110.0325,-3.4544E-05],[110.03599,-3.1451E-05],[110.03948,-3.0935E-05],[110.04297,-2.6811E-05],[110.04646,-2.7842E-05],[110.04995,-3.1967E-05],[110.05344,-2.6295E-05],[110.05693,-2.8873E-05],[110.06041,-2.8873E-05],[110.0639,-3.0935E-05],[110.06739,-3.6091E-05],[110.07088,-2.6295E-05],[110.07437,-2.6295E-05],[110.07786,-3.1967E-05],[110.08135,-2.8357E-05],[110.08484,-2.8873E-05],[110.08833,-2.8873E-05],[110.09182,-3.1451E-05],[110.09531,-3.2998E-05],[110.0988,-2.9389E-05]]}
-{"quant":[110.378,-2.8926E-05],"mems":[[110.28024,-3.1451E-05],[110.28373,-2.8873E-05],[110.28722,-2.7326E-05],[110.29071,-2.8357E-05],[110.2942,-2.8873E-05],[110.29769,-2.9389E-05],[110.30118,-2.6295E-05],[110.30467,-2.7326E-05],[110.30816,-3.1451E-05],[110.31165,-2.9389E-05],[110.31514,-2.5264E-05],[110.31863,-2.7842E-05],[110.32211,-2.6811E-05],[110.3256,-2.6811E-05],[110.32909,-3.1967E-05],[110.33258,-3.042E-05],[110.33607,-2.7842E-05],[110.33956,-2.6811E-05],[110.34305,-2.7842E-05],[110.34654,-2.5779E-05],[110.35003,-2.6295E-05],[110.35352,-2.8873E-05],[110.35701,-2.7842E-05],[110.3605,-2.9389E-05],[110.36399,-2.8873E-05],[110.36748,-3.042E-05],[110.37097,-3.4029E-05],[110.37445,-3.1451E-05],[110.37794,-2.7842E-05],[110.38143,-2.6295E-05],[110.38492,-2.6811E-05],[110.38841,-3.1451E-05],[110.3919,-3.4544E-05],[110.39539,-2.9389E-05],[110.39888,-2.7326E-05],[110.40237,-2.6295E-05],[110.40586,-2.9389E-05],[110.40935,-3.4029E-05],[110.41284,-2.8357E-05],[110.41633,-2.7842E-05],[110.41982,-2.8357E-05],[110.42331,-2.8873E-05],[110.42679,-2.6811E-05],[110.43028,-2.5264E-05],[110.43377,-3.0935E-05],[110.43726,-2.8873E-05],[110.44075,-2.5779E-05],[110.44424,-2.8357E-05],[110.44773,-2.8357E-05],[110.45122,-2.8873E-05],[110.45471,-2.6811E-05],[110.4582,-2.8873E-05],[110.46169,-3.1967E-05],[110.46518,-2.8357E-05],[110.46867,-2.7842E-05],[110.47216,-2.7326E-05],[110.47565,-3.0935E-05],[110.47913,-3.4544E-05],[110.48262,-3.042E-05],[110.48611,-3.0935E-05],[110.4896,-3.3513E-05],[110.49309,-3.2482E-05],[110.49658,-3.042E-05],[110.50007,-3.042E-05],[110.50356,-3.0935E-05],[110.50705,-2.6811E-05],[110.51054,-2.6811E-05],[110.51403,-3.5576E-05],[110.51752,-3.0935E-05],[110.52101,-2.5264E-05],[110.5245,-2.7842E-05],[110.52799,-2.7326E-05],[110.53147,-2.8873E-05],[110.53496,-2.8873E-05],[110.53845,-3.1967E-05],[110.54194,-3.0935E-05],[110.54543,-2.9389E-05],[110.54892,-2.9904E-05],[110.55241,-3.0935E-05],[110.5559,-3.506E-05],[110.55939,-2.8357E-05],[110.56288,-2.8357E-05],[110.56637,-2.9389E-05],[110.56986,-2.5779E-05],[110.57335,-2.9389E-05],[110.57684,-2.7326E-05],[110.58033,-2.4748E-05]]}
-{"quant":[110.86,-3.0278E-05],"mems":[[110.76177,-3.0935E-05],[110.76526,-2.9389E-05],[110.76875,-2.9389E-05],[110.77224,-3.0935E-05],[110.77573,-3.1451E-05],[110.77922,-3.3513E-05],[110.78271,-3.1451E-05],[110.7862,-2.7842E-05],[110.78969,-3.042E-05],[110.79317,-2.7842E-05],[110.79666,-3.1451E-05],[110.80015,-3.4029E-05],[110.80364,-3.2482E-05],[110.80713,-3.042E-05],[110.81062,-2.0624E-05],[110.81411,-2.4748E-05],[110.8176,-3.1451E-05],[110.82109,-2.8873E-05],[110.82458,-3.1967E-05],[110.82807,-3.1967E-05],[110.83156,-2.7842E-05],[110.83505,-2.6811E-05],[110.83854,-3.506E-05],[110.84203,-3.4544E-05],[110.84551,-2.4748E-05],[110.849,-2.3202E-05],[110.85249,-2.6295E-05],[110.85598,-2.9904E-05],[110.85947,-3.1967E-05],[110.86296,-2.9389E-05],[110.86645,-2.8357E-05],[110.86994,-2.7842E-05],[110.87343,-2.6295E-05],[110.87692,-2.5264E-05],[110.88041,-2.5264E-05],[110.8839,-2.9904E-05],[110.88739,-3.1967E-05],[110.89088,-2.7326E-05],[110.89437,-2.6811E-05],[110.89785,-2.8873E-05],[110.90134,-2.9389E-05],[110.90483,-3.4544E-05],[110.90832,-3.2998E-05],[110.91181,-2.7842E-05],[110.9153,-3.1967E-05],[110.91879,-3.1451E-05],[110.92228,-2.8873E-05],[110.92577,-3.042E-05],[110.92926,-2.7842E-05],[110.93275,-2.8873E-05],[110.93624,-3.6091E-05],[110.93973,-3.7638E-05],[110.94322,-3.2998E-05],[110.94671,-2.8357E-05],[110.95019,-2.8873E-05],[110.95368,-3.2482E-05],[110.95717,-3.6607E-05],[110.96066,-3.3513E-05],[110.96415,-3.0935E-05],[110.96764,-3.1451E-05],[110.97113,-2.8873E-05],[110.97462,-2.7842E-05],[110.97811,-2.6295E-05],[110.9816,-2.7842E-05],[110.98509,-2.7842E-05],[110.98858,-2.4748E-05],[110.99207,-2.9904E-05],[110.99556,-2.7842E-05],[110.99905,-2.8873E-05],[111.00253,-2.9389E-05],[111.00602,-2.2686E-05],[111.00951,-3.042E-05],[111.013,-3.0935E-05],[111.01649,-2.5264E-05],[111.01998,-3.4029E-05],[111.02347,-3.8154E-05],[111.02696,-3.2998E-05],[111.03045,-2.8873E-05],[111.03394,-2.7842E-05],[111.03743,-2.9389E-05],[111.04092,-3.042E-05],[111.04441,-2.9389E-05],[111.0479,-2.8357E-05],[111.05139,-2.9389E-05],[111.05487,-2.6295E-05],[111.05836,-2.7326E-05],[111.06185,-3.1967E-05]]}
-{"quant":[111.325,-0.20405],"mems":[[111.22585,-2.6295E-05],[111.22934,-3.2482E-05],[111.23283,-3.042E-05],[111.23632,-2.7326E-05],[111.23981,-2.9904E-05],[111.2433,-3.042E-05],[111.24679,-2.9904E-05],[111.25028,-2.8357E-05],[111.25377,-2.5264E-05],[111.25726,-3.042E-05],[111.26075,-2.8357E-05],[111.26423,-2.6295E-05],[111.26772,-2.9389E-05],[111.27121,-2.7842E-05],[111.2747,-2.8873E-05],[111.27819,-3.042E-05],[111.28168,-3.042E-05],[111.28517,-3.2998E-05],[111.28866,-3.4029E-05],[111.29215,-2.9389E-05],[111.29564,-2.6811E-05],[111.29913,-2.8357E-05],[111.30262,-3.1451E-05],[111.30611,-3.1967E-05],[111.3096,-2.7842E-05],[111.31309,-2.8873E-05],[111.31657,-3.1967E-05],[111.32006,-2.9904E-05],[111.32355,-3.1967E-05],[111.32704,-3.1967E-05],[111.33053,-3.0935E-05],[111.33402,-3.1451E-05],[111.33751,-2.3717E-05],[111.341,-2.6811E-05],[111.34444,-3.1451E-05],[111.34788,-2.9389E-05],[111.35132,-3.1451E-05],[111.35475,-2.7326E-05],[111.35819,-2.5264E-05],[111.36163,-2.8357E-05],[111.36507,-2.9389E-05],[111.36851,-2.9904E-05],[111.37195,-2.9904E-05],[111.37539,-3.0935E-05],[111.37883,-3.1967E-05],[111.38226,-3.042E-05],[111.3857,-3.1967E-05],[111.38914,-2.9389E-05],[111.39258,-2.5779E-05],[111.39602,-3.042E-05],[111.39946,-2.5264E-05],[111.4029,-2.4233E-05],[111.40633,-2.8873E-05],[111.40977,-3.1967E-05],[111.41321,-3.2998E-05],[111.41665,-3.1451E-05],[111.42009,-3.3513E-05],[111.42353,-3.042E-05],[111.42697,-3.042E-05],[111.43041,-3.506E-05],[111.43384,-3.5576E-05],[111.43728,-3.1967E-05],[111.44072,-2.7842E-05],[111.44416,-2.6811E-05],[111.4476,-2.6295E-05],[111.45104,-2.4748E-05],[111.45448,-2.6811E-05],[111.45791,-2.9904E-05],[111.46135,-2.6295E-05],[111.46479,-2.6295E-05],[111.46823,-2.8357E-05],[111.47167,-3.2482E-05],[111.47511,-3.2998E-05],[111.47855,-2.7842E-05],[111.48199,-2.4748E-05],[111.48542,-2.5779E-05],[111.48886,-3.0935E-05],[111.4923,-2.6295E-05],[111.49574,-2.5779E-05],[111.49918,-2.8873E-05],[111.50262,-2.8357E-05],[111.50606,-3.3513E-05],[111.50949,-3.2998E-05],[111.51293,-3.1967E-05],[111.51637,-2.9389E-05],[111.51981,-2.6295E-05],[111.52325,-3.042E-05],[111.52669,-3.2998E-05]]}
-{"quant":[111.788,-2.9372E-05],"mems":[[111.68831,-2.9904E-05],[111.69174,-2.9904E-05],[111.69518,-2.3202E-05],[111.69862,-2.217E-05],[111.70206,-2.8357E-05],[111.7055,-2.9389E-05],[111.70894,-2.6295E-05],[111.71238,-2.8873E-05],[111.71581,-3.042E-05],[111.71925,-2.7842E-05],[111.72269,-2.7326E-05],[111.72613,-2.9389E-05],[111.72957,-3.3513E-05],[111.73301,-2.9389E-05],[111.73645,-2.6811E-05],[111.73989,-2.9389E-05],[111.74332,-3.1967E-05],[111.74676,-2.8357E-05],[111.7502,-2.4233E-05],[111.75364,-2.8873E-05],[111.75708,-2.9389E-05],[111.76052,-2.9389E-05],[111.76396,-3.2482E-05],[111.76739,-3.042E-05],[111.77083,-3.042E-05],[111.77427,-2.5779E-05],[111.77771,-2.8873E-05],[111.78115,-3.506E-05],[111.78459,-2.7842E-05],[111.78803,-2.6295E-05],[111.79147,-2.7326E-05],[111.7949,-2.9389E-05],[111.79834,-2.8357E-05],[111.80178,-2.9389E-05],[111.80522,-3.4544E-05],[111.80866,-3.042E-05],[111.8121,-3.506E-05],[111.81554,-3.042E-05],[111.81897,-2.5264E-05],[111.82241,-3.0935E-05],[111.82585,-3.042E-05],[111.82929,-3.2482E-05],[111.83273,-3.042E-05],[111.83617,-2.7842E-05],[111.83961,-2.4233E-05],[111.84305,-2.5264E-05],[111.84648,-2.9904E-05],[111.84992,-2.9904E-05],[111.85336,-2.9904E-05],[111.8568,-2.9389E-05],[111.86024,-2.7842E-05],[111.86368,-2.8873E-05],[111.86712,-3.2482E-05],[111.87055,-3.3513E-05],[111.87399,-3.2482E-05],[111.87743,-2.8357E-05],[111.88087,-2.7842E-05],[111.88431,-2.7326E-05],[111.88775,-2.7326E-05],[111.89119,-2.7326E-05],[111.89463,-2.8873E-05],[111.89806,-3.1451E-05],[111.9015,-2.9389E-05],[111.90494,-3.042E-05],[111.90838,-2.9389E-05],[111.91182,-2.9389E-05],[111.91526,-3.2482E-05],[111.9187,-2.8357E-05],[111.92213,-2.7326E-05],[111.92557,-3.1451E-05],[111.92901,-3.1967E-05],[111.93245,-2.9389E-05],[111.93589,-2.5264E-05],[111.93933,-2.3202E-05],[111.94277,-2.5779E-05],[111.94621,-2.8357E-05],[111.94964,-2.9904E-05],[111.95308,-3.042E-05],[111.95652,-2.8357E-05],[111.95996,-2.8357E-05],[111.9634,-2.9904E-05],[111.96684,-2.9389E-05],[111.97028,-3.0935E-05],[111.97371,-3.0935E-05],[111.97715,-3.042E-05],[111.98059,-2.9904E-05],[111.98403,-2.9904E-05],[111.98747,-3.2482E-05],[111.99091,-2.8357E-05]]}
-{"quant":[112.402,-2.9114E-05],"mems":[[112.30383,-2.8873E-05],[112.30727,-3.042E-05],[112.3107,-3.3513E-05],[112.31414,-2.7842E-05],[112.31758,-2.5264E-05],[112.32102,-2.6811E-05],[112.32446,-2.8357E-05],[112.3279,-2.7326E-05],[112.33134,-2.8873E-05],[112.33477,-2.9904E-05],[112.33821,-2.8357E-05],[112.34165,-2.8357E-05],[112.34509,-2.8357E-05],[112.34853,-2.9389E-05],[112.35197,-3.1451E-05],[112.35541,-3.1967E-05],[112.35885,-3.0935E-05],[112.36228,-3.1451E-05],[112.36572,-3.1967E-05],[112.36916,-3.3513E-05],[112.3726,-2.9904E-05],[112.37604,-2.7842E-05],[112.37948,-2.9904E-05],[112.38292,-2.8873E-05],[112.38635,-3.2998E-05],[112.38979,-2.7326E-05],[112.39323,-2.6811E-05],[112.39667,-3.1451E-05],[112.40011,-2.6295E-05],[112.40355,-2.9389E-05],[112.40699,-3.2482E-05],[112.41043,-3.042E-05],[112.41386,-2.9389E-05],[112.4173,-2.8357E-05],[112.42074,-2.5264E-05],[112.42418,-2.8873E-05],[112.42762,-3.1967E-05],[112.43106,-2.9389E-05],[112.4345,-3.0935E-05],[112.43793,-2.8873E-05],[112.44137,-3.1967E-05],[112.44481,-3.2998E-05],[112.44825,-2.9904E-05],[112.45169,-3.0935E-05],[112.45513,-3.042E-05],[112.45857,-3.4029E-05],[112.46201,-3.1451E-05],[112.46544,-2.6295E-05],[112.46888,-2.8357E-05],[112.47232,-2.8873E-05],[112.47576,-2.7326E-05],[112.4792,-2.9904E-05],[112.48264,-2.5779E-05],[112.48608,-2.5264E-05],[112.48951,-2.9389E-05],[112.49295,-2.5779E-05],[112.49639,-2.7842E-05],[112.49983,-2.6295E-05],[112.50327,-2.5264E-05],[112.50671,-3.1451E-05],[112.51015,-3.0935E-05],[112.51359,-2.7842E-05],[112.51702,-2.7326E-05],[112.52046,-3.1451E-05],[112.5239,-3.1451E-05],[112.52734,-2.5779E-05],[112.53078,-2.6295E-05],[112.53422,-2.6811E-05],[112.53766,-2.5779E-05],[112.54109,-2.7842E-05],[112.54453,-2.8357E-05],[112.54797,-3.1967E-05],[112.55141,-3.1451E-05],[112.55485,-2.8873E-05],[112.55829,-2.9904E-05],[112.56173,-2.8873E-05],[112.56517,-2.8873E-05],[112.5686,-2.9389E-05],[112.57204,-2.8357E-05],[112.57548,-2.9389E-05],[112.57892,-3.042E-05],[112.58236,-2.7842E-05],[112.5858,-2.8873E-05],[112.58924,-3.0935E-05],[112.59267,-2.7326E-05],[112.59611,-2.5264E-05],[112.59955,-2.8873E-05],[112.60299,-3.1967E-05]]}
-{"quant":[112.913,-2.8495E-05],"mems":[[112.81619,-2.8357E-05],[112.81963,-2.7842E-05],[112.82307,-2.9904E-05],[112.8265,-2.6295E-05],[112.82994,-3.0935E-05],[112.83338,-2.9904E-05],[112.83682,-2.9389E-05],[112.84026,-3.506E-05],[112.8437,-2.8873E-05],[112.84714,-2.8357E-05],[112.85057,-2.4233E-05],[112.85401,-2.6811E-05],[112.85745,-3.2482E-05],[112.86089,-2.6811E-05],[112.86433,-2.9389E-05],[112.86777,-3.2482E-05],[112.87121,-2.9904E-05],[112.87465,-2.7326E-05],[112.87808,-2.8357E-05],[112.88152,-3.0935E-05],[112.88496,-2.8357E-05],[112.8884,-2.9904E-05],[112.89184,-3.1967E-05],[112.89528,-2.5779E-05],[112.89872,-2.6811E-05],[112.90215,-3.1451E-05],[112.90559,-2.9389E-05],[112.90903,-2.9389E-05],[112.91247,-2.6811E-05],[112.91591,-2.6811E-05],[112.91935,-3.2998E-05],[112.92279,-3.1451E-05],[112.92623,-2.7326E-05],[112.92966,-2.8873E-05],[112.9331,-2.9389E-05],[112.93654,-2.7326E-05],[112.93998,-2.4748E-05],[112.94342,-2.7326E-05],[112.94686,-2.7842E-05],[112.9503,-2.4233E-05],[112.95373,-2.6811E-05],[112.95717,-2.7326E-05],[112.96061,-2.8873E-05],[112.96405,-3.2482E-05],[112.96749,-2.8873E-05],[112.97093,-2.7326E-05],[112.97437,-2.8873E-05],[112.97781,-2.9389E-05],[112.98124,-2.7842E-05],[112.98468,-3.2998E-05],[112.98812,-3.4544E-05],[112.99156,-2.5779E-05],[112.995,-2.4748E-05],[112.99844,-2.6811E-05],[113.00188,-2.7326E-05],[113.00531,-3.1451E-05],[113.00875,-2.8873E-05],[113.01219,-2.7842E-05],[113.01563,-2.8357E-05],[113.01907,-2.217E-05],[113.02251,-2.5779E-05],[113.02595,-3.2482E-05],[113.02939,-2.8357E-05],[113.03282,-2.8873E-05],[113.03626,-3.2998E-05],[113.0397,-2.6811E-05],[113.04314,-2.5264E-05],[113.04658,-2.8357E-05],[113.05002,-2.5264E-05],[113.05346,-2.7842E-05],[113.05689,-2.7326E-05],[113.06033,-2.5779E-05],[113.06377,-2.9389E-05],[113.06721,-2.7326E-05],[113.07065,-2.8873E-05],[113.07409,-2.9389E-05],[113.07753,-2.5264E-05],[113.08097,-2.8873E-05],[113.0844,-3.3513E-05],[113.08784,-2.8873E-05],[113.09128,-2.3202E-05],[113.09472,-2.8873E-05],[113.09816,-3.042E-05],[113.1016,-2.9904E-05],[113.10504,-2.9904E-05],[113.10847,-2.9389E-05],[113.11191,-3.2482E-05],[113.11535,-2.8357E-05]]}
-{"quant":[113.392,-2.8409E-05],"mems":[[113.29416,-3.0935E-05],[113.2976,-2.9904E-05],[113.30104,-2.7842E-05],[113.30448,-2.9389E-05],[113.30792,-2.9389E-05],[113.31136,-3.0935E-05],[113.31479,-2.6811E-05],[113.31823,-2.5264E-05],[113.32167,-3.1451E-05],[113.32511,-2.8873E-05],[113.32855,-3.1967E-05],[113.33199,-3.1967E-05],[113.33543,-2.8873E-05],[113.33887,-2.9904E-05],[113.3423,-2.6295E-05],[113.34574,-2.8357E-05],[113.34918,-2.9904E-05],[113.35262,-3.0935E-05],[113.35606,-3.2482E-05],[113.3595,-2.8873E-05],[113.36294,-3.1451E-05],[113.36637,-3.042E-05],[113.36981,-2.8357E-05],[113.37325,-3.042E-05],[113.37669,-2.5264E-05],[113.38013,-2.3202E-05],[113.38357,-2.6295E-05],[113.38701,-2.9389E-05],[113.39045,-2.9389E-05],[113.39388,-2.5779E-05],[113.39732,-2.3717E-05],[113.40076,-2.8873E-05],[113.4042,-2.9389E-05],[113.40764,-2.7842E-05],[113.41108,-3.1967E-05],[113.41452,-2.7842E-05],[113.41795,-2.5779E-05],[113.42139,-2.5779E-05],[113.42483,-2.6811E-05],[113.42827,-2.8873E-05],[113.43171,-2.6811E-05],[113.43515,-2.8357E-05],[113.43859,-2.217E-05],[113.44203,-2.1655E-05],[113.44546,-2.9389E-05],[113.4489,-2.9904E-05],[113.45234,-3.0935E-05],[113.45578,-2.7842E-05],[113.45922,-2.6811E-05],[113.46266,-3.2482E-05],[113.4661,-3.042E-05],[113.46953,-2.9389E-05],[113.47297,-3.2998E-05],[113.47641,-2.9389E-05],[113.47985,-2.9904E-05],[113.48329,-3.1451E-05],[113.48673,-3.0935E-05],[113.49017,-2.8873E-05],[113.49361,-2.9904E-05],[113.49704,-2.9904E-05],[113.50048,-2.5779E-05],[113.50392,-2.8357E-05],[113.50736,-3.042E-05],[113.5108,-3.1967E-05],[113.51424,-2.7842E-05],[113.51768,-2.7326E-05],[113.52111,-3.4029E-05],[113.52455,-3.506E-05],[113.52799,-3.4544E-05],[113.53143,-2.8357E-05],[113.53487,-2.7842E-05],[113.53831,-2.9904E-05],[113.54175,-3.2482E-05],[113.54519,-3.6607E-05],[113.54862,-3.2998E-05],[113.55206,-3.042E-05],[113.5555,-2.6811E-05],[113.55894,-2.7326E-05],[113.56238,-3.1967E-05],[113.56582,-3.042E-05],[113.56926,-3.2998E-05],[113.57269,-2.9389E-05],[113.57613,-2.6295E-05],[113.57957,-2.9389E-05],[113.58301,-3.1451E-05],[113.58645,-3.3513E-05],[113.58989,-2.9389E-05],[113.59333,-3.1451E-05]]}
-{"quant":[113.883,0.3665],"mems":[[113.82716,-3.1451E-05],[113.83059,-3.042E-05],[113.83403,-2.7326E-05],[113.83747,-2.8873E-05],[113.84091,-2.6811E-05],[113.84435,-2.5264E-05],[113.84779,-2.9389E-05],[113.85123,-3.1967E-05],[113.85467,-2.9904E-05],[113.8581,-3.1451E-05],[113.86154,-2.8873E-05],[113.86498,-2.5779E-05],[113.86842,-2.7842E-05],[113.87186,-2.4233E-05],[113.8753,-2.8873E-05],[113.87874,-3.3513E-05],[113.88217,-3.0935E-05],[113.88561,-3.1967E-05],[113.88905,-3.0935E-05],[113.89249,-2.8357E-05],[113.89593,-2.6811E-05],[113.89937,-2.9389E-05],[113.90281,-3.0935E-05],[113.90625,-2.9389E-05],[113.90968,-3.1451E-05],[113.91312,-2.7842E-05],[113.91656,-2.217E-05],[113.92,-2.6811E-05],[113.92338,-2.8357E-05],[113.92677,-2.8357E-05],[113.93015,-2.7842E-05],[113.93353,-2.8357E-05],[113.93691,-3.1451E-05],[113.9403,-2.7326E-05],[113.94368,-2.9389E-05],[113.94706,-2.7842E-05],[113.95044,-2.6811E-05],[113.95383,-3.1967E-05],[113.95721,-2.7842E-05],[113.96059,-3.1451E-05],[113.96397,-3.1451E-05],[113.96736,-2.6811E-05],[113.97074,-2.9904E-05],[113.97412,-2.7842E-05],[113.97751,-2.8873E-05],[113.98089,-2.9389E-05],[113.98427,-2.7326E-05],[113.98765,-3.0935E-05],[113.99104,-3.2482E-05],[113.99442,-2.9389E-05],[113.9978,-2.6811E-05],[114.00118,-2.8357E-05],[114.00457,-2.9389E-05],[114.00795,-2.6811E-05],[114.01133,-2.8873E-05],[114.01471,-2.6811E-05],[114.0181,-2.1655E-05],[114.02148,-2.8873E-05],[114.02486,-2.7842E-05],[114.02825,-2.5264E-05],[114.03163,-2.7326E-05],[114.03501,-2.6811E-05],[114.03839,-3.0935E-05],[114.04178,-2.7842E-05],[114.04516,-2.8873E-05],[114.04854,-2.6811E-05],[114.05192,-2.5779E-05],[114.05531,-2.8873E-05],[114.05869,-2.8873E-05],[114.06207,-3.0935E-05],[114.06545,-3.042E-05],[114.06884,-2.9389E-05],[114.07222,-2.8873E-05],[114.0756,-3.042E-05],[114.07899,-2.9904E-05],[114.08237,-2.8873E-05],[114.08575,-3.1451E-05],[114.08913,-2.9389E-05],[114.09252,-2.5779E-05],[114.0959,-2.6811E-05],[114.09928,-2.8357E-05],[114.10266,-2.6811E-05],[114.10605,-2.9389E-05],[114.10943,-2.8357E-05],[114.11281,-2.7326E-05],[114.11619,-2.7842E-05],[114.11958,-2.7842E-05],[114.12296,-3.4029E-05]]}
-{"quant":[114.396,-3.0736E-05],"mems":[[114.29886,-3.0935E-05],[114.30224,-3.1967E-05],[114.30562,-2.5264E-05],[114.30901,-2.6295E-05],[114.31239,-2.9389E-05],[114.31577,-3.1451E-05],[114.31915,-3.0935E-05],[114.32254,-2.9904E-05],[114.32592,-2.9389E-05],[114.3293,-2.5264E-05],[114.33269,-2.8357E-05],[114.33607,-2.8357E-05],[114.33945,-2.9904E-05],[114.34283,-3.0935E-05],[114.34622,-2.6295E-05],[114.3496,-2.5264E-05],[114.35298,-2.6295E-05],[114.35636,-3.1451E-05],[114.35975,-3.2482E-05],[114.36313,-2.8357E-05],[114.36651,-2.9904E-05],[114.36989,-2.9389E-05],[114.37328,-2.4748E-05],[114.37666,-2.8357E-05],[114.38004,-3.2482E-05],[114.38343,-3.2482E-05],[114.38681,-3.1451E-05],[114.39019,-3.042E-05],[114.39357,-3.1451E-05],[114.39696,-2.9389E-05],[114.40034,-2.9389E-05],[114.40372,-2.9904E-05],[114.4071,-3.042E-05],[114.41049,-3.1451E-05],[114.41387,-2.8357E-05],[114.41725,-3.1967E-05],[114.42063,-3.2998E-05],[114.42402,-2.8357E-05],[114.4274,-2.8357E-05],[114.43078,-2.7842E-05],[114.43417,-2.8357E-05],[114.43755,-3.1451E-05],[114.44093,-3.506E-05],[114.44431,-3.6091E-05],[114.4477,-2.9389E-05],[114.45108,-2.4748E-05],[114.45446,-2.9904E-05],[114.45784,-3.6091E-05],[114.46123,-3.506E-05],[114.46461,-3.1967E-05],[114.46799,-3.4029E-05],[114.47137,-3.1451E-05],[114.47476,-2.8873E-05],[114.47814,-3.3513E-05],[114.48152,-2.9904E-05],[114.48491,-2.3717E-05],[114.48829,-2.9389E-05],[114.49167,-3.2482E-05],[114.49505,-2.9389E-05],[114.49844,-3.3513E-05],[114.50182,-3.2998E-05],[114.5052,-3.042E-05],[114.50858,-3.1967E-05],[114.51197,-2.7326E-05],[114.51535,-2.8357E-05],[114.51873,-3.4029E-05],[114.52211,-3.3513E-05],[114.5255,-2.7842E-05],[114.52888,-2.6295E-05],[114.53226,-3.3513E-05],[114.53565,-3.4544E-05],[114.53903,-2.9904E-05],[114.54241,-3.1967E-05],[114.54579,-2.8357E-05],[114.54918,-2.7326E-05],[114.55256,-3.4029E-05],[114.55594,-3.1967E-05],[114.55932,-3.2482E-05],[114.56271,-3.1451E-05],[114.56609,-2.7842E-05],[114.56947,-3.2482E-05],[114.57285,-3.4544E-05],[114.57624,-3.506E-05],[114.57962,-3.6091E-05],[114.583,-3.1451E-05],[114.58639,-2.8873E-05],[114.58977,-3.1451E-05],[114.59315,-2.8357E-05],[114.59653,-2.8873E-05]]}
-{"quant":[115.037,-2.889E-05],"mems":[[114.93818,-2.8873E-05],[114.94157,-3.2482E-05],[114.94495,-3.2482E-05],[114.94833,-2.8873E-05],[114.95171,-2.6811E-05],[114.9551,-2.8357E-05],[114.95848,-3.3513E-05],[114.96186,-2.9904E-05],[114.96524,-2.7326E-05],[114.96863,-2.8873E-05],[114.97201,-2.7842E-05],[114.97539,-3.3513E-05],[114.97877,-2.9904E-05],[114.98216,-2.5779E-05],[114.98554,-3.1967E-05],[114.98892,-3.042E-05],[114.99231,-3.2998E-05],[114.99569,-3.1451E-05],[114.99907,-2.8357E-05],[115.00245,-3.0935E-05],[115.00584,-3.1967E-05],[115.00922,-2.7842E-05],[115.0126,-2.4233E-05],[115.01598,-2.8873E-05],[115.01937,-2.9389E-05],[115.02275,-2.8357E-05],[115.02613,-3.4544E-05],[115.02951,-3.4029E-05],[115.0329,-3.042E-05],[115.03628,-3.1451E-05],[115.03966,-3.1451E-05],[115.04305,-2.9389E-05],[115.04643,-3.1967E-05],[115.04981,-3.1451E-05],[115.05319,-2.9389E-05],[115.05658,-2.9389E-05],[115.05996,-2.8873E-05],[115.06334,-3.1451E-05],[115.06672,-2.8873E-05],[115.07011,-2.9904E-05],[115.07349,-3.042E-05],[115.07687,-2.6811E-05],[115.08025,-2.9389E-05],[115.08364,-2.9389E-05],[115.08702,-2.8873E-05],[115.0904,-2.8357E-05],[115.09379,-2.9904E-05],[115.09717,-2.5264E-05],[115.10055,-2.3202E-05],[115.10393,-2.6295E-05],[115.10732,-2.4233E-05],[115.1107,-2.8873E-05],[115.11408,-2.9389E-05],[115.11746,-3.042E-05],[115.12085,-3.1451E-05],[115.12423,-2.8873E-05],[115.12761,-2.7326E-05],[115.13099,-3.0935E-05],[115.13438,-3.0935E-05],[115.13776,-2.4233E-05],[115.14114,-2.7842E-05],[115.14453,-3.1451E-05],[115.14791,-3.0935E-05],[115.15129,-2.8873E-05],[115.15467,-2.9389E-05],[115.15806,-2.9389E-05],[115.16144,-2.9389E-05],[115.16482,-3.6607E-05],[115.1682,-3.1451E-05],[115.17159,-2.7842E-05],[115.17497,-2.6811E-05],[115.17835,-2.7842E-05],[115.18173,-2.9389E-05],[115.18512,-2.9389E-05],[115.1885,-3.0935E-05],[115.19188,-2.8357E-05],[115.19527,-3.0935E-05],[115.19865,-2.8873E-05],[115.20203,-2.9904E-05],[115.20541,-3.2482E-05],[115.2088,-2.7842E-05],[115.21218,-3.042E-05],[115.21556,-3.2998E-05],[115.21894,-3.3513E-05],[115.22233,-3.042E-05],[115.22571,-2.9389E-05],[115.22909,-3.1967E-05],[115.23247,-3.042E-05],[115.23586,-2.7842E-05],[115.23924,-2.8873E-05]]}
-{"quant":[115.6,-2.9771E-05],"mems":[[115.50309,-3.042E-05],[115.50647,-2.8873E-05],[115.50985,-2.5779E-05],[115.51324,-2.8357E-05],[115.51662,-2.7326E-05],[115.52,-2.5264E-05],[115.52338,-3.2482E-05],[115.52677,-2.9904E-05],[115.53015,-2.6295E-05],[115.53353,-2.7842E-05],[115.53691,-3.1967E-05],[115.5403,-3.4029E-05],[115.54368,-3.3513E-05],[115.54706,-3.2482E-05],[115.55045,-3.1967E-05],[115.55383,-3.042E-05],[115.55721,-2.4748E-05],[115.56059,-2.9389E-05],[115.56398,-3.042E-05],[115.56736,-2.9904E-05],[115.57074,-2.9389E-05],[115.57412,-2.7326E-05],[115.57751,-2.8357E-05],[115.58089,-2.6811E-05],[115.58427,-3.2482E-05],[115.58765,-2.6811E-05],[115.59104,-2.5264E-05],[115.59442,-3.2998E-05],[115.5978,-2.9904E-05],[115.60119,-2.9389E-05],[115.60457,-2.9904E-05],[115.60795,-2.8357E-05],[115.61133,-2.9904E-05],[115.61472,-3.0935E-05],[115.6181,-3.042E-05],[115.62148,-3.1967E-05],[115.62486,-2.9389E-05],[115.62825,-2.7842E-05],[115.63163,-2.6811E-05],[115.63501,-2.9389E-05],[115.63839,-3.1967E-05],[115.64178,-2.6295E-05],[115.64516,-2.7842E-05],[115.64854,-3.2482E-05],[115.65193,-3.0935E-05],[115.65531,-3.3513E-05],[115.65869,-3.2998E-05],[115.66207,-2.7326E-05],[115.66546,-3.0935E-05],[115.66884,-3.1967E-05],[115.67222,-2.9389E-05],[115.6756,-2.8357E-05],[115.67899,-2.8873E-05],[115.68237,-3.1967E-05],[115.68575,-2.8873E-05],[115.68913,-2.8873E-05],[115.69252,-2.9904E-05],[115.6959,-2.9904E-05],[115.69928,-2.9904E-05],[115.70267,-2.6295E-05],[115.70605,-2.6295E-05],[115.70943,-2.5779E-05],[115.71281,-2.6811E-05],[115.7162,-2.8357E-05],[115.71958,-3.042E-05],[115.72296,-3.2998E-05],[115.72634,-2.9389E-05],[115.72973,-2.8873E-05],[115.73311,-3.2998E-05],[115.73649,-3.1967E-05],[115.73987,-2.7326E-05],[115.74326,-2.8357E-05],[115.74664,-3.0935E-05],[115.75002,-3.1451E-05],[115.75341,-3.3513E-05],[115.75679,-2.7842E-05],[115.76017,-2.8873E-05],[115.76355,-2.9904E-05],[115.76694,-2.6295E-05],[115.77032,-3.1451E-05],[115.7737,-3.0935E-05],[115.77708,-3.2998E-05],[115.78047,-3.1967E-05],[115.78385,-2.6811E-05],[115.78723,-2.9389E-05],[115.79061,-2.6811E-05],[115.794,-2.4233E-05],[115.79738,-2.5779E-05],[115.80076,-2.4233E-05]]}
-{"quant":[116.093,-2.9182E-05],"mems":[[115.99357,-3.042E-05],[115.99696,-2.9389E-05],[116.00034,-2.9389E-05],[116.00372,-3.2482E-05],[116.00711,-3.1451E-05],[116.01049,-3.0935E-05],[116.01387,-2.9389E-05],[116.01725,-2.8357E-05],[116.02064,-3.042E-05],[116.02402,-2.7326E-05],[116.0274,-2.8357E-05],[116.03078,-3.3513E-05],[116.03417,-3.1451E-05],[116.03755,-3.042E-05],[116.04093,-3.042E-05],[116.04431,-2.4748E-05],[116.0477,-2.7842E-05],[116.05108,-3.0935E-05],[116.05446,-3.0935E-05],[116.05785,-3.042E-05],[116.06123,-2.8873E-05],[116.06461,-3.3513E-05],[116.06799,-3.0935E-05],[116.07138,-3.042E-05],[116.07476,-2.8357E-05],[116.07814,-2.6295E-05],[116.08152,-2.9389E-05],[116.08491,-2.4233E-05],[116.08829,-2.6295E-05],[116.09167,-2.6295E-05],[116.09505,-2.6811E-05],[116.09844,-2.9904E-05],[116.10182,-2.8873E-05],[116.1052,-3.7122E-05],[116.10859,-3.3513E-05],[116.11197,-2.4748E-05],[116.11535,-3.042E-05],[116.11873,-2.6811E-05],[116.12212,-2.4233E-05],[116.1255,-2.8873E-05],[116.12888,-2.7326E-05],[116.13226,-2.5264E-05],[116.13565,-2.3717E-05],[116.13903,-2.5779E-05],[116.14241,-2.5779E-05],[116.14579,-2.9904E-05],[116.14918,-3.6607E-05],[116.15256,-3.2482E-05],[116.15594,-2.5264E-05],[116.15933,-2.7326E-05],[116.16271,-3.2482E-05],[116.16609,-3.0935E-05],[116.16947,-3.1967E-05],[116.17286,-3.042E-05],[116.17624,-2.8357E-05],[116.17962,-2.7842E-05],[116.183,-2.8357E-05],[116.18639,-3.2998E-05],[116.18977,-3.042E-05],[116.19315,-3.0935E-05],[116.19653,-3.0935E-05],[116.19992,-3.042E-05],[116.2033,-3.1451E-05],[116.20668,-2.9389E-05],[116.21007,-2.8357E-05],[116.21345,-2.9904E-05],[116.21683,-3.2482E-05],[116.22021,-2.6811E-05],[116.2236,-2.9904E-05],[116.22698,-3.3513E-05],[116.23036,-3.2482E-05],[116.23374,-3.2998E-05],[116.23713,-2.9904E-05],[116.24051,-3.0935E-05],[116.24389,-2.8357E-05],[116.24727,-2.8357E-05],[116.25066,-2.9904E-05],[116.25404,-3.042E-05],[116.25742,-2.8873E-05],[116.26081,-2.9389E-05],[116.26419,-3.1967E-05],[116.26757,-2.8357E-05],[116.27095,-2.7326E-05],[116.27434,-2.5264E-05],[116.27772,-2.4233E-05],[116.2811,-2.8357E-05],[116.28448,-2.9904E-05],[116.28787,-2.9389E-05],[116.29125,-3.042E-05],[116.29463,-3.1967E-05]]}
-{"quant":[116.553,0.98258],"mems":[[116.45362,-2.6295E-05],[116.457,-2.9389E-05],[116.46045,-2.7842E-05],[116.46391,-3.1967E-05],[116.46736,-3.042E-05],[116.47081,-2.6811E-05],[116.47427,-3.0935E-05],[116.47772,-2.9904E-05],[116.48117,-3.042E-05],[116.48463,-3.1451E-05],[116.48808,-3.2482E-05],[116.49153,-2.7842E-05],[116.49499,-2.3717E-05],[116.49844,-2.6295E-05],[116.50189,-2.7842E-05],[116.50535,-3.0935E-05],[116.5088,-2.8357E-05],[116.51225,-3.1451E-05],[116.51571,-3.2998E-05],[116.51916,-2.7326E-05],[116.52261,-3.1451E-05],[116.52607,-3.6607E-05],[116.52952,-3.4544E-05],[116.53297,-3.0935E-05],[116.53643,-3.4029E-05],[116.53988,-3.1451E-05],[116.54333,-2.6295E-05],[116.54679,-3.042E-05],[116.55024,-3.2482E-05],[116.55369,-2.6295E-05],[116.55715,-2.2686E-05],[116.5606,-2.5779E-05],[116.56405,-2.6811E-05],[116.56751,-2.5264E-05],[116.57096,-2.8357E-05],[116.57441,-2.8357E-05],[116.57787,-2.8357E-05],[116.58132,-3.3513E-05],[116.58477,-3.1967E-05],[116.58823,-3.042E-05],[116.59168,-2.9904E-05],[116.59513,-2.7842E-05],[116.59859,-2.9904E-05],[116.60204,-2.9904E-05],[116.60549,-2.8357E-05],[116.60895,-2.8357E-05],[116.6124,-2.5779E-05],[116.61585,-2.7326E-05],[116.61931,-3.3513E-05],[116.62276,-3.2998E-05],[116.62621,-3.1967E-05],[116.62967,-2.9389E-05],[116.63312,-2.4748E-05],[116.63657,-2.3717E-05],[116.64003,-2.6811E-05],[116.64348,-2.9389E-05],[116.64693,-3.4029E-05],[116.65039,-3.1967E-05],[116.65384,-2.7326E-05],[116.65729,-2.8357E-05],[116.66075,-2.7842E-05],[116.6642,-2.6811E-05],[116.66765,-2.7326E-05],[116.67111,-2.8357E-05],[116.67456,-2.6811E-05],[116.67801,-2.9904E-05],[116.68147,-3.2998E-05],[116.68492,-3.1451E-05],[116.68837,-3.3513E-05],[116.69183,-2.6295E-05],[116.69528,-2.4233E-05],[116.69873,-2.7326E-05],[116.70219,-2.5779E-05],[116.70564,-3.042E-05],[116.70909,-3.3513E-05],[116.71255,-3.1451E-05],[116.716,-2.6811E-05],[116.71945,-2.8873E-05],[116.72291,-3.2482E-05],[116.72636,-3.4029E-05],[116.72981,-3.4544E-05],[116.73327,-2.8873E-05],[116.73672,-3.1451E-05],[116.74017,-3.4029E-05],[116.74363,-2.8873E-05],[116.74708,-2.8357E-05],[116.75053,-2.9904E-05],[116.75399,-2.7326E-05]]}
-{"quant":[117.014,-2.9406E-05],"mems":[[116.91629,-3.3513E-05],[116.91975,-2.9904E-05],[116.9232,-3.2482E-05],[116.92665,-3.3513E-05],[116.93011,-2.8873E-05],[116.93356,-2.6811E-05],[116.93701,-3.0935E-05],[116.94047,-3.2482E-05],[116.94392,-3.4029E-05],[116.94737,-3.2482E-05],[116.95083,-2.9389E-05],[116.95428,-3.042E-05],[116.95773,-3.042E-05],[116.96119,-2.9389E-05],[116.96464,-3.0935E-05],[116.96809,-3.2482E-05],[116.97155,-2.7326E-05],[116.975,-2.4748E-05],[116.97845,-2.4748E-05],[116.98191,-2.7842E-05],[116.98536,-3.2998E-05],[116.98881,-2.9389E-05],[116.99227,-2.7842E-05],[116.99572,-2.7842E-05],[116.99917,-3.1967E-05],[117.00263,-3.3513E-05],[117.00608,-2.9904E-05],[117.00953,-2.9389E-05],[117.01299,-2.6811E-05],[117.01644,-2.6295E-05],[117.01989,-2.9389E-05],[117.02335,-3.2482E-05],[117.0268,-3.1967E-05],[117.03025,-3.1451E-05],[117.03371,-3.042E-05],[117.03716,-2.6295E-05],[117.04061,-3.2482E-05],[117.04407,-3.2998E-05],[117.04752,-2.8357E-05],[117.05097,-3.0935E-05],[117.05443,-2.7326E-05],[117.05788,-2.5264E-05],[117.06133,-2.7842E-05],[117.06479,-2.9389E-05],[117.06824,-2.9904E-05],[117.07169,-2.7842E-05],[117.07515,-2.5264E-05],[117.0786,-2.8873E-05],[117.08205,-2.9389E-05],[117.08551,-2.7842E-05],[117.08896,-3.1967E-05],[117.09241,-2.8873E-05],[117.09587,-2.7326E-05],[117.09932,-3.1967E-05],[117.10277,-3.1967E-05],[117.10623,-2.7842E-05],[117.10968,-3.0935E-05],[117.11313,-3.1451E-05],[117.11659,-2.7842E-05],[117.12004,-2.6811E-05],[117.12349,-2.9389E-05],[117.12695,-3.042E-05],[117.1304,-2.7326E-05],[117.13385,-3.042E-05],[117.13731,-2.8873E-05],[117.14076,-3.3513E-05],[117.14421,-3.6091E-05],[117.14767,-2.9904E-05],[117.15112,-3.1451E-05],[117.15457,-2.9389E-05],[117.15803,-2.9904E-05],[117.16148,-3.0935E-05],[117.16493,-2.8357E-05],[117.16839,-2.9904E-05],[117.17184,-2.9389E-05],[117.17529,-2.4233E-05],[117.17875,-2.6811E-05],[117.1822,-3.4544E-05],[117.18565,-3.2998E-05],[117.18911,-3.042E-05],[117.19256,-2.9904E-05],[117.19601,-2.8873E-05],[117.19947,-2.7326E-05],[117.20292,-2.7842E-05],[117.20637,-2.9904E-05],[117.20983,-2.7326E-05],[117.21328,-2.8873E-05],[117.21673,-3.1451E-05]]}
-{"quant":[117.54,-2.9853E-05],"mems":[[117.4412,-3.6091E-05],[117.44465,-2.8357E-05],[117.44811,-2.7842E-05],[117.45156,-2.8873E-05],[117.45501,-2.8873E-05],[117.45847,-3.042E-05],[117.46192,-3.2998E-05],[117.46537,-3.5576E-05],[117.46883,-3.2998E-05],[117.47228,-2.8873E-05],[117.47573,-2.8357E-05],[117.47919,-2.8357E-05],[117.48264,-3.1451E-05],[117.48609,-3.7122E-05],[117.48955,-3.3513E-05],[117.493,-3.1967E-05],[117.49645,-3.2482E-05],[117.49991,-2.7842E-05],[117.50336,-2.9904E-05],[117.50681,-2.8357E-05],[117.51027,-2.7326E-05],[117.51372,-2.7842E-05],[117.51717,-2.7842E-05],[117.52063,-2.8357E-05],[117.52408,-2.8357E-05],[117.52753,-2.9904E-05],[117.53099,-2.7842E-05],[117.53444,-2.9389E-05],[117.53789,-2.8357E-05],[117.54135,-2.6295E-05],[117.5448,-2.5264E-05],[117.54825,-2.8357E-05],[117.55171,-3.3513E-05],[117.55516,-2.6295E-05],[117.55861,-2.7326E-05],[117.56207,-2.9904E-05],[117.56552,-3.0935E-05],[117.56897,-3.2482E-05],[117.57243,-2.6295E-05],[117.57588,-3.0935E-05],[117.57933,-3.3513E-05],[117.58279,-2.5779E-05],[117.58624,-3.0935E-05],[117.58969,-3.0935E-05],[117.59315,-2.8873E-05],[117.5966,-3.0935E-05],[117.60005,-2.6811E-05],[117.60351,-3.0935E-05],[117.60696,-2.9904E-05],[117.61041,-3.042E-05],[117.61387,-3.1967E-05],[117.61732,-2.9904E-05],[117.62077,-3.4544E-05],[117.62423,-3.1967E-05],[117.62768,-2.9904E-05],[117.63113,-3.042E-05],[117.63459,-2.8873E-05],[117.63804,-2.8873E-05],[117.64149,-3.2482E-05],[117.64495,-3.2998E-05],[117.6484,-2.9389E-05],[117.65185,-2.6295E-05],[117.65531,-2.5264E-05],[117.65876,-2.3717E-05],[117.66221,-2.7326E-05],[117.66567,-3.1451E-05],[117.66912,-2.5779E-05],[117.67257,-3.0935E-05],[117.67603,-3.4029E-05],[117.67948,-2.6295E-05],[117.68293,-2.8357E-05],[117.68639,-2.9389E-05],[117.68984,-2.9904E-05],[117.69329,-3.1967E-05],[117.69675,-2.7326E-05],[117.7002,-2.5779E-05],[117.70365,-3.1967E-05],[117.70711,-3.4029E-05],[117.71056,-3.042E-05],[117.71401,-2.7842E-05],[117.71747,-2.7326E-05],[117.72092,-2.8357E-05],[117.72437,-3.2482E-05],[117.72783,-3.7638E-05],[117.73128,-3.5576E-05],[117.73473,-2.8357E-05],[117.73819,-2.7326E-05],[117.74164,-2.8873E-05]]}
-{"quant":[118.009,-2.9818E-05],"mems":[[117.91085,-3.042E-05],[117.91431,-2.9389E-05],[117.91776,-2.4748E-05],[117.92121,-2.9389E-05],[117.92467,-2.7842E-05],[117.92812,-2.9904E-05],[117.93157,-3.4544E-05],[117.93503,-2.6811E-05],[117.93848,-2.6811E-05],[117.94193,-2.8873E-05],[117.94539,-3.1451E-05],[117.94884,-3.1451E-05],[117.95229,-2.5779E-05],[117.95575,-2.9389E-05],[117.9592,-3.2998E-05],[117.96265,-3.1967E-05],[117.96611,-3.1451E-05],[117.96956,-3.2482E-05],[117.97301,-2.9389E-05],[117.97647,-2.6811E-05],[117.97992,-2.7842E-05],[117.98337,-2.7326E-05],[117.98683,-3.042E-05],[117.99028,-3.2482E-05],[117.99373,-3.1967E-05],[117.99719,-2.7842E-05],[118.00064,-2.6295E-05],[118.00409,-3.2998E-05],[118.00755,-3.042E-05],[118.011,-2.7842E-05],[118.01445,-2.9389E-05],[118.01791,-2.8873E-05],[118.02136,-3.042E-05],[118.02481,-3.3513E-05],[118.02827,-3.3513E-05],[118.03172,-3.0935E-05],[118.03517,-2.8357E-05],[118.03863,-2.8357E-05],[118.04208,-3.1967E-05],[118.04553,-2.8873E-05],[118.04899,-2.9389E-05],[118.05244,-3.3513E-05],[118.05589,-2.6811E-05],[118.05935,-2.5779E-05],[118.0628,-2.8357E-05],[118.06625,-2.8357E-05],[118.06971,-3.1967E-05],[118.07316,-3.0935E-05],[118.07661,-2.5779E-05],[118.08007,-2.4748E-05],[118.08352,-3.1451E-05],[118.08697,-3.5576E-05],[118.09043,-3.2998E-05],[118.09388,-3.1451E-05],[118.09733,-2.9904E-05],[118.10079,-2.7842E-05],[118.10424,-2.4748E-05],[118.10769,-2.9904E-05],[118.11115,-3.2998E-05],[118.1146,-2.5779E-05],[118.11805,-2.4748E-05],[118.12151,-3.0935E-05],[118.12496,-3.5576E-05],[118.12841,-2.6811E-05],[118.13187,-2.5264E-05],[118.13532,-3.042E-05],[118.13877,-2.5264E-05],[118.14223,-2.8357E-05],[118.14568,-3.4029E-05],[118.14913,-3.1451E-05],[118.15259,-2.6811E-05],[118.15604,-2.7326E-05],[118.15949,-2.8873E-05],[118.16295,-3.2998E-05],[118.1664,-3.3513E-05],[118.16985,-3.0935E-05],[118.17331,-3.1967E-05],[118.17676,-2.7842E-05],[118.18021,-2.6295E-05],[118.18367,-2.5264E-05],[118.18712,-2.4748E-05],[118.19057,-3.0935E-05],[118.19403,-3.3513E-05],[118.19748,-3.0935E-05],[118.20093,-3.042E-05],[118.20439,-3.0935E-05],[118.20784,-2.6295E-05],[118.21129,-2.7842E-05]]}
-{"quant":[118.474,-2.9492E-05],"mems":[[118.37705,-2.7842E-05],[118.38051,-2.3202E-05],[118.38396,-3.1451E-05],[118.38741,-3.1967E-05],[118.39087,-3.0935E-05],[118.39432,-3.1451E-05],[118.39777,-3.1967E-05],[118.40123,-3.2482E-05],[118.40468,-2.9389E-05],[118.40813,-2.9904E-05],[118.41159,-2.9389E-05],[118.41504,-2.7326E-05],[118.41849,-2.7326E-05],[118.42195,-2.8873E-05],[118.4254,-3.2482E-05],[118.42885,-2.8873E-05],[118.43231,-2.7842E-05],[118.43576,-3.042E-05],[118.43921,-2.8873E-05],[118.44267,-3.3513E-05],[118.44612,-3.1967E-05],[118.44957,-2.9389E-05],[118.45303,-3.1967E-05],[118.45648,-3.2482E-05],[118.45993,-3.0935E-05],[118.46339,-2.9389E-05],[118.46684,-3.5576E-05],[118.47029,-3.1967E-05],[118.47375,-2.6811E-05],[118.4772,-2.8357E-05],[118.48065,-2.5264E-05],[118.48411,-2.4748E-05],[118.48756,-2.9389E-05],[118.49101,-3.0935E-05],[118.49447,-2.9389E-05],[118.49792,-2.9389E-05],[118.50137,-2.6295E-05],[118.50483,-3.042E-05],[118.50828,-3.4029E-05],[118.51173,-3.3513E-05],[118.51519,-3.3513E-05],[118.51864,-3.2482E-05],[118.52209,-3.6091E-05],[118.52555,-3.4544E-05],[118.529,-3.0935E-05],[118.53245,-3.4029E-05],[118.53591,-3.042E-05],[118.53936,-2.4748E-05],[118.54281,-2.5264E-05],[118.54627,-2.6295E-05],[118.54972,-3.1967E-05],[118.55317,-2.9904E-05],[118.55663,-2.4748E-05],[118.56008,-2.9904E-05],[118.56353,-2.7326E-05],[118.56699,-2.5779E-05],[118.57044,-2.9389E-05],[118.57389,-2.8357E-05],[118.57735,-2.7326E-05],[118.5808,-2.9389E-05],[118.58425,-3.3513E-05],[118.58771,-3.3513E-05],[118.59116,-2.9904E-05],[118.59461,-3.1451E-05],[118.59807,-3.2998E-05],[118.60152,-3.042E-05],[118.60497,-3.0935E-05],[118.60843,-3.1967E-05],[118.61188,-3.506E-05],[118.61533,-3.6607E-05],[118.61879,-3.0935E-05],[118.62224,-2.7326E-05],[118.62569,-2.7326E-05],[118.62915,-2.9389E-05],[118.6326,-2.9389E-05],[118.63605,-3.042E-05],[118.63951,-2.9389E-05],[118.64296,-2.9904E-05],[118.64641,-2.9389E-05],[118.64987,-2.8357E-05],[118.65332,-2.9389E-05],[118.65677,-2.7326E-05],[118.66023,-2.7326E-05],[118.66368,-2.4233E-05],[118.66713,-2.9389E-05],[118.67059,-3.0935E-05],[118.67404,-2.7842E-05]]}
-{"quant":[118.945,-1.0762],"mems":[[118.85707,-2.8357E-05],[118.86052,-2.9904E-05],[118.86397,-2.8357E-05],[118.86743,-2.8873E-05],[118.87088,-3.0935E-05],[118.87433,-3.1451E-05],[118.87779,-2.9389E-05],[118.88124,-2.8873E-05],[118.88469,-2.8357E-05],[118.88815,-3.4029E-05],[118.8916,-3.2482E-05],[118.89505,-2.7326E-05],[118.89851,-2.6811E-05],[118.90196,-2.8357E-05],[118.90541,-3.042E-05],[118.90887,-2.8357E-05],[118.91232,-3.0935E-05],[118.91577,-3.1967E-05],[118.91923,-2.9389E-05],[118.92268,-2.9904E-05],[118.92613,-3.1967E-05],[118.92959,-2.9904E-05],[118.93304,-3.1451E-05],[118.93649,-3.506E-05],[118.93995,-2.8873E-05],[118.9434,-2.8873E-05],[118.94685,-3.2998E-05],[118.95031,-3.1451E-05],[118.95376,-2.7842E-05],[118.95721,-2.8873E-05],[118.96067,-3.2998E-05],[118.96412,-3.042E-05],[118.96757,-2.9389E-05],[118.97103,-2.9904E-05],[118.97448,-2.5264E-05],[118.97793,-2.5779E-05],[118.98139,-2.6811E-05],[118.98484,-2.6295E-05],[118.98829,-2.8873E-05],[118.99175,-3.0935E-05],[118.9952,-2.9904E-05],[118.99865,-2.7326E-05],[119.00211,-2.7842E-05],[119.00556,-2.9389E-05],[119.00901,-3.1967E-05],[119.01247,-2.9904E-05],[119.01592,-2.8873E-05],[119.01937,-3.042E-05],[119.02283,-2.6811E-05],[119.02628,-2.7326E-05],[119.02973,-2.7842E-05],[119.03319,-2.4233E-05],[119.03664,-2.8357E-05],[119.04009,-3.1451E-05],[119.04355,-3.0935E-05],[119.047,-3.4544E-05],[119.05042,-3.6607E-05],[119.05385,-3.1451E-05],[119.05727,-2.7326E-05],[119.06069,-2.5779E-05],[119.06411,-2.5264E-05],[119.06754,-2.6295E-05],[119.07096,-2.3202E-05],[119.07438,-2.7842E-05],[119.0778,-2.8873E-05],[119.08123,-2.5779E-05],[119.08465,-3.0935E-05],[119.08807,-2.6295E-05],[119.09149,-2.8873E-05],[119.09492,-3.2998E-05],[119.09834,-2.4748E-05],[119.10176,-2.4748E-05],[119.10519,-2.7842E-05],[119.10861,-3.1451E-05],[119.11203,-3.1451E-05],[119.11545,-2.5779E-05],[119.11888,-2.6811E-05],[119.1223,-2.5264E-05],[119.12572,-2.4748E-05],[119.12914,-2.7842E-05],[119.13257,-2.9389E-05],[119.13599,-3.1967E-05],[119.13941,-2.8873E-05],[119.14283,-2.9904E-05],[119.14626,-3.0935E-05],[119.14968,-2.9389E-05],[119.1531,-2.8873E-05],[119.15653,-3.042E-05]]}
-{"quant":[119.411,-2.944E-05],"mems":[[119.31397,-3.0935E-05],[119.31739,-2.8873E-05],[119.32081,-2.9904E-05],[119.32424,-3.042E-05],[119.32766,-3.2482E-05],[119.33108,-3.1967E-05],[119.3345,-2.217E-05],[119.33793,-2.217E-05],[119.34135,-2.5779E-05],[119.34477,-2.7842E-05],[119.34819,-3.4029E-05],[119.35162,-3.4029E-05],[119.35504,-3.3513E-05],[119.35846,-2.8873E-05],[119.36189,-2.6295E-05],[119.36531,-2.9904E-05],[119.36873,-2.9904E-05],[119.37215,-3.2482E-05],[119.37558,-3.1967E-05],[119.379,-2.4748E-05],[119.38242,-2.8357E-05],[119.38584,-3.2998E-05],[119.38927,-2.9904E-05],[119.39269,-2.8357E-05],[119.39611,-2.7842E-05],[119.39953,-3.0935E-05],[119.40296,-2.9904E-05],[119.40638,-3.1451E-05],[119.4098,-3.6607E-05],[119.41323,-3.0935E-05],[119.41665,-3.042E-05],[119.42007,-2.7326E-05],[119.42349,-2.5264E-05],[119.42692,-3.042E-05],[119.43034,-2.9904E-05],[119.43376,-2.8357E-05],[119.43718,-2.8873E-05],[119.44061,-2.8873E-05],[119.44403,-2.8873E-05],[119.44745,-3.5576E-05],[119.45087,-3.1967E-05],[119.4543,-2.7326E-05],[119.45772,-2.6295E-05],[119.46114,-2.3717E-05],[119.46457,-3.2482E-05],[119.46799,-3.2482E-05],[119.47141,-3.2998E-05],[119.47483,-3.0935E-05],[119.47826,-2.7326E-05],[119.48168,-2.8873E-05],[119.4851,-2.6811E-05],[119.48852,-3.1451E-05],[119.49195,-2.8873E-05],[119.49537,-2.7842E-05],[119.49879,-2.7326E-05],[119.50221,-2.8357E-05],[119.50564,-3.2482E-05],[119.50906,-2.9904E-05],[119.51248,-3.0935E-05],[119.51591,-2.8873E-05],[119.51933,-2.4748E-05],[119.52275,-2.4748E-05],[119.52617,-2.7326E-05],[119.5296,-2.8357E-05],[119.53302,-2.8357E-05],[119.53644,-2.6295E-05],[119.53986,-2.4748E-05],[119.54329,-2.9904E-05],[119.54671,-3.2998E-05],[119.55013,-3.2482E-05],[119.55355,-3.2482E-05],[119.55698,-3.1967E-05],[119.5604,-3.0935E-05],[119.56382,-2.8873E-05],[119.56725,-2.9389E-05],[119.57067,-3.042E-05],[119.57409,-2.8873E-05],[119.57751,-2.8873E-05],[119.58094,-3.2482E-05],[119.58436,-3.0935E-05],[119.58778,-2.9389E-05],[119.5912,-2.8873E-05],[119.59463,-2.6295E-05],[119.59805,-3.1451E-05],[119.60147,-3.2482E-05],[119.60489,-2.8357E-05],[119.60832,-2.8357E-05],[119.61174,-3.1967E-05]]}
-{"quant":[120.067,-2.7739E-05],"mems":[[119.9677,-2.4748E-05],[119.97112,-2.7326E-05],[119.97454,-2.8357E-05],[119.97797,-2.6295E-05],[119.98139,-2.5779E-05],[119.98481,-3.042E-05],[119.98823,-3.2998E-05],[119.99166,-2.8873E-05],[119.99508,-2.7326E-05],[119.9985,-3.0935E-05],[120.00192,-2.6811E-05],[120.00535,-2.4748E-05],[120.00877,-2.7326E-05],[120.01219,-2.6295E-05],[120.01561,-2.8873E-05],[120.01904,-2.9389E-05],[120.02246,-2.7842E-05],[120.02588,-2.6295E-05],[120.02931,-2.5779E-05],[120.03273,-2.8357E-05],[120.03615,-2.8873E-05],[120.03957,-3.2998E-05],[120.043,-3.1451E-05],[120.04642,-2.7842E-05],[120.04984,-3.1967E-05],[120.05326,-3.042E-05],[120.05669,-2.8873E-05],[120.06011,-2.8873E-05],[120.06353,-2.7842E-05],[120.06695,-2.5779E-05],[120.07038,-2.5264E-05],[120.0738,-2.8357E-05],[120.07722,-2.7326E-05],[120.08065,-3.042E-05],[120.08407,-2.8357E-05],[120.08749,-2.7842E-05],[120.09091,-2.8357E-05],[120.09434,-2.5264E-05],[120.09776,-2.8873E-05],[120.10118,-2.6811E-05],[120.1046,-2.9389E-05],[120.10803,-2.9904E-05],[120.11145,-2.5264E-05],[120.11487,-2.7326E-05],[120.11829,-2.5779E-05],[120.12172,-2.8873E-05],[120.12514,-3.3513E-05],[120.12856,-2.8357E-05],[120.13199,-2.7842E-05],[120.13541,-2.5779E-05],[120.13883,-2.3202E-05],[120.14225,-3.1967E-05],[120.14568,-2.9904E-05],[120.1491,-2.6295E-05],[120.15252,-2.8873E-05],[120.15594,-2.5779E-05],[120.15937,-2.5779E-05],[120.16279,-2.7842E-05],[120.16621,-2.6811E-05],[120.16963,-2.6811E-05],[120.17306,-2.8873E-05],[120.17648,-3.042E-05],[120.1799,-3.042E-05],[120.18333,-2.9904E-05],[120.18675,-2.5264E-05],[120.19017,-2.6295E-05],[120.19359,-3.4029E-05],[120.19702,-3.1967E-05],[120.20044,-2.9904E-05],[120.20386,-3.3513E-05],[120.20728,-3.2482E-05],[120.21071,-2.6295E-05],[120.21413,-2.3202E-05],[120.21755,-2.9389E-05],[120.22097,-3.0935E-05],[120.2244,-2.5264E-05],[120.22782,-2.8873E-05],[120.23124,-2.9904E-05],[120.23467,-2.6295E-05],[120.23809,-3.0935E-05],[120.24151,-3.1451E-05],[120.24493,-2.5264E-05],[120.24836,-2.8357E-05],[120.25178,-3.042E-05],[120.2552,-2.7842E-05],[120.25862,-2.8873E-05],[120.26205,-2.7326E-05],[120.26547,-2.8357E-05],[120.26889,-3.4029E-05]]}
-{"quant":[120.537,-2.8942E-05],"mems":[[120.44003,-2.8357E-05],[120.44345,-3.0935E-05],[120.44687,-3.506E-05],[120.45029,-3.2482E-05],[120.45372,-3.1967E-05],[120.45714,-3.2998E-05],[120.46056,-2.6811E-05],[120.46398,-2.6295E-05],[120.46741,-2.9389E-05],[120.47083,-2.7842E-05],[120.47425,-3.1967E-05],[120.47767,-2.8873E-05],[120.4811,-2.8357E-05],[120.48452,-3.042E-05],[120.48794,-2.9389E-05],[120.49137,-3.2998E-05],[120.49479,-3.2482E-05],[120.49821,-3.1967E-05],[120.50163,-2.9904E-05],[120.50506,-2.8357E-05],[120.50848,-2.7326E-05],[120.5119,-2.6295E-05],[120.51532,-2.4233E-05],[120.51875,-2.7842E-05],[120.52217,-3.6091E-05],[120.52559,-3.1967E-05],[120.52901,-2.8873E-05],[120.53244,-2.7842E-05],[120.53586,-2.8873E-05],[120.53928,-3.1451E-05],[120.54271,-2.6811E-05],[120.54613,-2.8873E-05],[120.54955,-2.9904E-05],[120.55297,-2.7842E-05],[120.5564,-2.9904E-05],[120.55982,-2.9904E-05],[120.56324,-2.9389E-05],[120.56666,-3.1967E-05],[120.57009,-3.1451E-05],[120.57351,-2.4748E-05],[120.57693,-2.7326E-05],[120.58035,-2.9389E-05],[120.58378,-2.9389E-05],[120.5872,-3.2482E-05],[120.59062,-2.9389E-05],[120.59405,-2.6811E-05],[120.59747,-2.8873E-05],[120.60089,-3.5576E-05],[120.60431,-3.042E-05],[120.60774,-2.6295E-05],[120.61116,-2.8357E-05],[120.61458,-2.5779E-05],[120.618,-2.6295E-05],[120.62143,-2.6811E-05],[120.62485,-2.9389E-05],[120.62827,-2.9904E-05],[120.63169,-2.7326E-05],[120.63512,-2.6295E-05],[120.63854,-2.9904E-05],[120.64196,-3.1967E-05],[120.64539,-2.8873E-05],[120.64881,-2.9904E-05],[120.65223,-3.0935E-05],[120.65565,-3.1451E-05],[120.65908,-3.1967E-05],[120.6625,-2.7842E-05],[120.66592,-3.042E-05],[120.66934,-3.4544E-05],[120.67277,-2.9904E-05],[120.67619,-3.1967E-05],[120.67961,-3.2482E-05],[120.68303,-2.7842E-05],[120.68646,-2.9904E-05],[120.68988,-2.5779E-05],[120.6933,-2.8357E-05],[120.69673,-2.8873E-05],[120.70015,-2.7842E-05],[120.70357,-3.1451E-05],[120.70699,-2.9389E-05],[120.71042,-2.9904E-05],[120.71384,-3.042E-05],[120.71726,-3.1967E-05],[120.72068,-3.2482E-05],[120.72411,-3.1967E-05],[120.72753,-2.9389E-05],[120.73095,-2.5264E-05],[120.73437,-2.9904E-05],[120.7378,-3.2482E-05]]}
-{"quant":[121.019,-2.9079E-05],"mems":[[120.9192,-3.0935E-05],[120.92262,-2.9904E-05],[120.92604,-2.9904E-05],[120.92947,-3.0935E-05],[120.93289,-2.6811E-05],[120.93631,-3.0935E-05],[120.93973,-3.4544E-05],[120.94316,-3.2482E-05],[120.94658,-2.9904E-05],[120.95,-2.4748E-05],[120.95343,-3.1451E-05],[120.95685,-3.8154E-05],[120.96027,-3.4544E-05],[120.96369,-3.1967E-05],[120.96712,-2.8357E-05],[120.97054,-2.6295E-05],[120.97396,-3.2482E-05],[120.97738,-3.4029E-05],[120.98081,-3.1967E-05],[120.98423,-3.2482E-05],[120.98765,-3.042E-05],[120.99107,-2.9389E-05],[120.9945,-3.0935E-05],[120.99792,-2.8357E-05],[121.00134,-2.8873E-05],[121.00477,-3.1967E-05],[121.00819,-3.0935E-05],[121.01161,-2.7842E-05],[121.01503,-2.5264E-05],[121.01846,-2.8357E-05],[121.02188,-3.1451E-05],[121.0253,-2.4748E-05],[121.02872,-2.3717E-05],[121.03215,-2.8873E-05],[121.03557,-2.9904E-05],[121.03899,-2.7842E-05],[121.04241,-3.1451E-05],[121.04584,-3.4029E-05],[121.04926,-3.042E-05],[121.05268,-3.042E-05],[121.05611,-2.7842E-05],[121.05953,-2.7842E-05],[121.06295,-3.1451E-05],[121.06637,-2.8873E-05],[121.0698,-2.7842E-05],[121.07322,-2.7326E-05],[121.07664,-2.7326E-05],[121.08006,-2.8873E-05],[121.08349,-2.7326E-05],[121.08691,-3.042E-05],[121.09033,-2.8873E-05],[121.09375,-2.9904E-05],[121.09718,-3.1967E-05],[121.1006,-2.4233E-05],[121.10402,-2.7842E-05],[121.10745,-3.3513E-05],[121.11087,-3.0935E-05],[121.11429,-2.7842E-05],[121.11771,-2.8873E-05],[121.12114,-3.042E-05],[121.12456,-3.042E-05],[121.12798,-2.9904E-05],[121.1314,-2.9389E-05],[121.13483,-3.1451E-05],[121.13825,-2.9904E-05],[121.14167,-3.042E-05],[121.14509,-3.1967E-05],[121.14852,-3.042E-05],[121.15194,-2.7842E-05],[121.15536,-2.5264E-05],[121.15879,-2.7326E-05],[121.16221,-2.7326E-05],[121.16563,-2.9904E-05],[121.16905,-3.1967E-05],[121.17248,-2.9904E-05],[121.1759,-3.2482E-05],[121.17932,-2.9904E-05],[121.18274,-3.1967E-05],[121.18617,-3.2998E-05],[121.18959,-2.5264E-05],[121.19301,-2.7842E-05],[121.19643,-2.5779E-05],[121.19986,-2.5779E-05],[121.20328,-3.1451E-05],[121.2067,-2.9904E-05],[121.21013,-3.3513E-05],[121.21355,-3.5576E-05],[121.21697,-3.2482E-05],[121.22039,-2.9904E-05]]}
-{"quant":[121.489,-0.72462],"mems":[[121.39153,-2.2686E-05],[121.39495,-2.9389E-05],[121.39837,-3.5576E-05],[121.40179,-3.2998E-05],[121.40522,-2.7326E-05],[121.40864,-2.7326E-05],[121.41206,-3.0935E-05],[121.41549,-2.7842E-05],[121.41891,-2.9389E-05],[121.42233,-3.0935E-05],[121.42575,-2.6811E-05],[121.42918,-2.5779E-05],[121.4326,-2.9904E-05],[121.43602,-3.2998E-05],[121.43944,-3.042E-05],[121.44287,-3.3513E-05],[121.44629,-2.8357E-05],[121.44971,-2.4748E-05],[121.45313,-2.8873E-05],[121.45656,-2.9389E-05],[121.45998,-3.042E-05],[121.4634,-2.3202E-05],[121.46683,-2.3202E-05],[121.47025,-2.9904E-05],[121.47367,-2.5779E-05],[121.47709,-2.7326E-05],[121.48052,-3.1451E-05],[121.48394,-2.8357E-05],[121.48736,-2.6811E-05],[121.49078,-2.7842E-05],[121.49421,-2.9904E-05],[121.49763,-2.7326E-05],[121.50105,-3.4544E-05],[121.50447,-3.8154E-05],[121.5079,-2.7326E-05],[121.51132,-2.8873E-05],[121.51474,-3.042E-05],[121.51817,-2.9389E-05],[121.52159,-2.7842E-05],[121.52501,-2.6811E-05],[121.52843,-2.8873E-05],[121.53186,-2.5779E-05],[121.53528,-2.9389E-05],[121.5387,-3.3513E-05],[121.54212,-2.9904E-05],[121.54555,-2.9389E-05],[121.54897,-3.2998E-05],[121.55239,-3.1451E-05],[121.55581,-3.0935E-05],[121.55924,-3.3513E-05],[121.56266,-2.7842E-05],[121.56608,-2.5264E-05],[121.56951,-2.7326E-05],[121.57293,-2.4233E-05],[121.57635,-2.6295E-05],[121.57977,-2.8357E-05],[121.5832,-3.042E-05],[121.58662,-2.9389E-05],[121.59004,-2.8873E-05],[121.59346,-3.2482E-05],[121.59689,-3.042E-05],[121.60031,-3.1967E-05],[121.60373,-3.4029E-05],[121.60715,-3.3513E-05],[121.61058,-3.2998E-05],[121.614,-3.1967E-05],[121.61744,-3.1451E-05],[121.62087,-3.0935E-05],[121.62431,-3.042E-05],[121.62775,-2.7326E-05],[121.63119,-2.7842E-05],[121.63462,-3.1451E-05],[121.63806,-2.8873E-05],[121.6415,-2.7842E-05],[121.64494,-2.7326E-05],[121.64837,-2.6811E-05],[121.65181,-3.2482E-05],[121.65525,-3.1451E-05],[121.65869,-2.5264E-05],[121.66212,-3.0935E-05],[121.66556,-3.2482E-05],[121.669,-3.042E-05],[121.67243,-3.0935E-05],[121.67587,-3.1451E-05],[121.67931,-3.042E-05],[121.68275,-2.7842E-05],[121.68618,-2.6811E-05],[121.68962,-2.3202E-05]]}
-{"quant":[121.957,-2.999E-05],"mems":[[121.85805,-2.6295E-05],[121.86149,-2.5264E-05],[121.86493,-2.217E-05],[121.86836,-2.3717E-05],[121.8718,-2.7842E-05],[121.87524,-3.4029E-05],[121.87867,-2.9904E-05],[121.88211,-2.9904E-05],[121.88555,-3.2482E-05],[121.88899,-2.9904E-05],[121.89242,-3.2998E-05],[121.89586,-3.0935E-05],[121.8993,-3.506E-05],[121.90274,-3.506E-05],[121.90617,-2.7326E-05],[121.90961,-3.0935E-05],[121.91305,-3.042E-05],[121.91649,-3.0935E-05],[121.91992,-3.0935E-05],[121.92336,-2.8357E-05],[121.9268,-2.7842E-05],[121.93023,-2.7326E-05],[121.93367,-2.9389E-05],[121.93711,-3.1451E-05],[121.94055,-3.3513E-05],[121.94398,-2.7326E-05],[121.94742,-2.8357E-05],[121.95086,-2.8357E-05],[121.9543,-2.4748E-05],[121.95773,-2.8873E-05],[121.96117,-2.7326E-05],[121.96461,-2.9389E-05],[121.96805,-2.8873E-05],[121.97148,-2.7842E-05],[121.97492,-3.1967E-05],[121.97836,-3.042E-05],[121.98179,-3.2482E-05],[121.98523,-2.8357E-05],[121.98867,-2.6295E-05],[121.99211,-3.0935E-05],[121.99554,-3.042E-05],[121.99898,-2.9904E-05],[122.00242,-3.2998E-05],[122.00586,-3.2998E-05],[122.00929,-3.0935E-05],[122.01273,-3.3513E-05],[122.01617,-3.0935E-05],[122.01961,-3.0935E-05],[122.02304,-2.9389E-05],[122.02648,-2.6295E-05],[122.02992,-3.042E-05],[122.03335,-3.3513E-05],[122.03679,-3.2998E-05],[122.04023,-2.9904E-05],[122.04367,-3.042E-05],[122.0471,-2.8357E-05],[122.05054,-2.9389E-05],[122.05398,-2.8873E-05],[122.05742,-2.4748E-05],[122.06085,-2.8357E-05],[122.06429,-2.1655E-05],[122.06773,-2.4748E-05],[122.07117,-3.1451E-05],[122.0746,-2.9389E-05],[122.07804,-3.1451E-05],[122.08148,-2.9904E-05],[122.08491,-3.042E-05],[122.08835,-2.8357E-05],[122.09179,-2.7326E-05],[122.09523,-3.0935E-05],[122.09866,-3.1967E-05],[122.1021,-2.9904E-05],[122.10554,-2.9389E-05],[122.10898,-3.3513E-05],[122.11241,-3.2998E-05],[122.11585,-3.4544E-05],[122.11929,-3.1451E-05],[122.12273,-2.4233E-05],[122.12616,-2.9904E-05],[122.1296,-2.9389E-05],[122.13304,-2.6811E-05],[122.13647,-3.1967E-05],[122.13991,-2.7842E-05],[122.14335,-2.7326E-05],[122.14679,-2.8357E-05],[122.15022,-2.9904E-05],[122.15366,-3.0935E-05],[122.1571,-2.7842E-05]]}
-{"quant":[122.597,-3.0353E-05],"mems":[[122.49739,-2.9904E-05],[122.50083,-3.0935E-05],[122.50427,-3.0935E-05],[122.50771,-2.7326E-05],[122.51114,-2.9389E-05],[122.51458,-2.9904E-05],[122.51802,-2.9904E-05],[122.52146,-2.9904E-05],[122.52489,-3.3513E-05],[122.52833,-3.2998E-05],[122.53177,-2.8873E-05],[122.53521,-2.8357E-05],[122.53864,-2.6811E-05],[122.54208,-3.1451E-05],[122.54552,-2.9904E-05],[122.54895,-2.9389E-05],[122.55239,-3.506E-05],[122.55583,-3.0935E-05],[122.55927,-2.9389E-05],[122.5627,-3.1451E-05],[122.56614,-2.6295E-05],[122.56958,-2.4748E-05],[122.57302,-2.7326E-05],[122.57645,-2.7842E-05],[122.57989,-3.1967E-05],[122.58333,-2.9904E-05],[122.58677,-2.5779E-05],[122.5902,-3.1451E-05],[122.59364,-2.7326E-05],[122.59708,-2.6295E-05],[122.60051,-3.1451E-05],[122.60395,-3.1451E-05],[122.60739,-3.2998E-05],[122.61083,-2.9904E-05],[122.61426,-3.1967E-05],[122.6177,-3.042E-05],[122.62114,-2.9389E-05],[122.62458,-2.9389E-05],[122.62801,-2.5779E-05],[122.63145,-3.042E-05],[122.63489,-2.7842E-05],[122.63833,-2.8357E-05],[122.64176,-3.042E-05],[122.6452,-3.4544E-05],[122.64864,-3.5576E-05],[122.65207,-3.042E-05],[122.65551,-3.042E-05],[122.65895,-2.6295E-05],[122.66239,-3.2998E-05],[122.66582,-3.5576E-05],[122.66926,-2.7326E-05],[122.6727,-2.9904E-05],[122.67614,-3.042E-05],[122.67957,-2.8873E-05],[122.68301,-2.8873E-05],[122.68645,-2.9904E-05],[122.68989,-2.7326E-05],[122.69332,-3.0935E-05],[122.69676,-3.4544E-05],[122.7002,-3.0935E-05],[122.70363,-3.1451E-05],[122.70707,-2.8873E-05],[122.71051,-2.7842E-05],[122.71395,-2.5779E-05],[122.71738,-2.8873E-05],[122.72082,-2.9389E-05],[122.72426,-2.5779E-05],[122.7277,-3.3513E-05],[122.73113,-3.5576E-05],[122.73457,-3.042E-05],[122.73801,-3.1451E-05],[122.74145,-3.6607E-05],[122.74488,-3.042E-05],[122.74832,-3.0935E-05],[122.75176,-3.042E-05],[122.75519,-2.5264E-05],[122.75863,-3.042E-05],[122.76207,-2.6295E-05],[122.76551,-2.9904E-05],[122.76894,-3.2998E-05],[122.77238,-2.6811E-05],[122.77582,-3.0935E-05],[122.77926,-3.4029E-05],[122.78269,-3.042E-05],[122.78613,-3.1451E-05],[122.78957,-2.8873E-05],[122.79301,-2.8357E-05],[122.79644,-3.3513E-05],[122.79988,-2.8357E-05]]}
-{"quant":[123.056,-2.8839E-05],"mems":[[122.958,-2.8873E-05],[122.96143,-3.2482E-05],[122.96487,-2.5779E-05],[122.96831,-2.3717E-05],[122.97175,-2.8873E-05],[122.97518,-2.6295E-05],[122.97862,-2.7326E-05],[122.98206,-2.6811E-05],[122.9855,-2.8873E-05],[122.98893,-2.9904E-05],[122.99237,-2.9904E-05],[122.99581,-3.042E-05],[122.99925,-2.6811E-05],[123.00268,-2.7842E-05],[123.00612,-2.6295E-05],[123.00956,-2.6811E-05],[123.01299,-2.9904E-05],[123.01643,-2.8873E-05],[123.01987,-3.1451E-05],[123.02331,-2.8357E-05],[123.02674,-2.7842E-05],[123.03018,-2.9904E-05],[123.03362,-3.042E-05],[123.03706,-3.042E-05],[123.04049,-2.4233E-05],[123.04393,-2.3717E-05],[123.04737,-2.4233E-05],[123.05081,-2.4748E-05],[123.05424,-3.4544E-05],[123.05768,-3.4544E-05],[123.06112,-2.6811E-05],[123.06455,-2.7326E-05],[123.06799,-2.7842E-05],[123.07143,-2.9389E-05],[123.07487,-2.9389E-05],[123.0783,-2.7326E-05],[123.08174,-2.9904E-05],[123.08518,-2.8873E-05],[123.08862,-2.7842E-05],[123.09205,-2.9904E-05],[123.09549,-2.9904E-05],[123.09893,-3.0935E-05],[123.10237,-3.042E-05],[123.1058,-3.1451E-05],[123.10924,-3.042E-05],[123.11268,-2.7842E-05],[123.11611,-2.7326E-05],[123.11955,-2.5264E-05],[123.12299,-2.6811E-05],[123.12643,-2.8873E-05],[123.12986,-2.5264E-05],[123.1333,-2.4748E-05],[123.13674,-3.4544E-05],[123.14018,-3.2998E-05],[123.14361,-2.4233E-05],[123.14705,-2.6811E-05],[123.15049,-2.8873E-05],[123.15393,-2.9904E-05],[123.15736,-2.9389E-05],[123.1608,-2.9904E-05],[123.16424,-2.7842E-05],[123.16767,-3.2998E-05],[123.17111,-3.3513E-05],[123.17455,-2.7326E-05],[123.17799,-2.7842E-05],[123.18142,-2.5264E-05],[123.18486,-2.5264E-05],[123.1883,-2.7842E-05],[123.19174,-2.9904E-05],[123.19517,-2.8873E-05],[123.19861,-2.8357E-05],[123.20205,-2.9389E-05],[123.20549,-2.5779E-05],[123.20892,-3.1451E-05],[123.21236,-3.042E-05],[123.2158,-2.5779E-05],[123.21923,-3.2482E-05],[123.22267,-2.9904E-05],[123.22611,-2.7842E-05],[123.22955,-2.8357E-05],[123.23298,-2.9389E-05],[123.23642,-3.2998E-05],[123.23986,-2.8357E-05],[123.2433,-2.7842E-05],[123.24673,-2.8357E-05],[123.25017,-2.1655E-05],[123.25361,-2.4233E-05],[123.25705,-3.1451E-05]]}
-{"quant":[123.505,-2.9526E-05],"mems":[[123.40829,-2.9389E-05],[123.41173,-2.8357E-05],[123.41516,-3.2482E-05],[123.4186,-3.2998E-05],[123.42204,-3.1967E-05],[123.42547,-2.9389E-05],[123.42891,-2.9389E-05],[123.43235,-3.0935E-05],[123.43579,-3.042E-05],[123.43922,-3.1967E-05],[123.44266,-2.8357E-05],[123.4461,-2.9904E-05],[123.44954,-2.8873E-05],[123.45297,-2.7842E-05],[123.45641,-3.3513E-05],[123.45985,-2.8873E-05],[123.46329,-2.8357E-05],[123.46672,-2.8357E-05],[123.47016,-2.8357E-05],[123.4736,-3.042E-05],[123.47703,-2.8873E-05],[123.48047,-2.7326E-05],[123.48391,-2.6295E-05],[123.48735,-2.7326E-05],[123.49078,-2.8357E-05],[123.49422,-3.042E-05],[123.49766,-3.1451E-05],[123.5011,-3.0935E-05],[123.50453,-3.0935E-05],[123.50797,-2.8873E-05],[123.51141,-2.9389E-05],[123.51485,-3.2998E-05],[123.51828,-3.0935E-05],[123.52172,-2.8873E-05],[123.52516,-2.9389E-05],[123.52859,-3.042E-05],[123.53203,-3.1967E-05],[123.53547,-2.8873E-05],[123.53891,-2.2686E-05],[123.54234,-2.3202E-05],[123.54578,-2.5779E-05],[123.54922,-2.7842E-05],[123.55266,-2.7842E-05],[123.55609,-2.9904E-05],[123.55953,-3.2998E-05],[123.56297,-3.1451E-05],[123.56641,-3.4029E-05],[123.56984,-3.2998E-05],[123.57328,-3.1451E-05],[123.57672,-3.1451E-05],[123.58015,-2.8873E-05],[123.58359,-2.8357E-05],[123.58703,-2.6295E-05],[123.59047,-2.7842E-05],[123.5939,-3.2482E-05],[123.59734,-3.4029E-05],[123.60078,-2.9389E-05],[123.60422,-2.6295E-05],[123.60765,-2.8873E-05],[123.61109,-2.7326E-05],[123.61453,-2.9389E-05],[123.61797,-3.1967E-05],[123.6214,-3.1451E-05],[123.62484,-2.7326E-05],[123.62828,-2.6295E-05],[123.63171,-2.6811E-05],[123.63515,-2.4748E-05],[123.63859,-2.7842E-05],[123.64203,-2.4233E-05],[123.64546,-2.3717E-05],[123.6489,-2.7326E-05],[123.65234,-2.8873E-05],[123.65578,-3.0935E-05],[123.65921,-3.042E-05],[123.66265,-3.0935E-05],[123.66609,-2.7326E-05],[123.66953,-2.7326E-05],[123.67296,-2.8357E-05],[123.6764,-2.6811E-05],[123.67984,-2.7326E-05],[123.68327,-2.4233E-05],[123.68671,-2.5779E-05],[123.69015,-3.1451E-05],[123.69359,-3.1451E-05],[123.69702,-2.9904E-05],[123.70046,-3.0935E-05],[123.7039,-2.5779E-05],[123.70734,-2.6811E-05]]}
-{"quant":[123.988,-3.0059E-05],"mems":[[123.88951,-3.1451E-05],[123.89295,-3.7638E-05],[123.89639,-3.6607E-05],[123.89983,-3.2998E-05],[123.90326,-2.9389E-05],[123.9067,-3.1451E-05],[123.91014,-2.9389E-05],[123.91358,-2.8873E-05],[123.91701,-3.042E-05],[123.92045,-2.9389E-05],[123.92389,-2.9389E-05],[123.92733,-3.042E-05],[123.93076,-3.1451E-05],[123.9342,-3.0935E-05],[123.93764,-3.1967E-05],[123.94107,-3.1967E-05],[123.94451,-3.4029E-05],[123.94795,-3.2482E-05],[123.95139,-3.3513E-05],[123.95482,-2.9904E-05],[123.95826,-2.4748E-05],[123.9617,-2.9904E-05],[123.96514,-2.7326E-05],[123.96857,-2.8873E-05],[123.97201,-3.1967E-05],[123.97545,-2.7326E-05],[123.97889,-2.9389E-05],[123.98232,-2.8357E-05],[123.98576,-2.8357E-05],[123.9892,-3.1451E-05],[123.99263,-3.0935E-05],[123.99607,-3.042E-05],[123.99951,-2.8873E-05],[124.00295,-2.6811E-05],[124.00638,-2.4748E-05],[124.00982,-2.6811E-05],[124.01326,-3.1967E-05],[124.0167,-3.0935E-05],[124.02013,-2.8357E-05],[124.02357,-2.9904E-05],[124.02701,-3.3513E-05],[124.03045,-3.4029E-05],[124.03388,-3.4544E-05],[124.03732,-3.1451E-05],[124.04076,-2.8357E-05],[124.04419,-3.2482E-05],[124.04763,-2.9904E-05],[124.05107,-2.8357E-05],[124.05451,-2.9904E-05],[124.05794,-2.8357E-05],[124.06138,-3.042E-05],[124.06482,-3.2482E-05],[124.06826,-3.1967E-05],[124.07169,-2.8873E-05],[124.07513,-2.7326E-05],[124.07857,-2.8357E-05],[124.08201,-3.1967E-05],[124.08544,-3.1451E-05],[124.08888,-2.6811E-05],[124.09232,-2.7842E-05],[124.09575,-3.2482E-05],[124.09919,-3.042E-05],[124.10263,-2.8873E-05],[124.10607,-3.0935E-05],[124.1095,-2.8873E-05],[124.11294,-3.3513E-05],[124.11638,-3.2482E-05],[124.11982,-2.9389E-05],[124.12325,-3.1967E-05],[124.12669,-2.9904E-05],[124.13013,-3.4544E-05],[124.13357,-3.1967E-05],[124.137,-2.7842E-05],[124.14044,-3.2998E-05],[124.14388,-2.7842E-05],[124.14731,-2.5264E-05],[124.15075,-2.8873E-05],[124.15419,-3.1451E-05],[124.15763,-2.9389E-05],[124.16106,-2.9904E-05],[124.1645,-2.9904E-05],[124.16794,-2.9904E-05],[124.17138,-3.4544E-05],[124.17481,-3.042E-05],[124.17825,-2.7842E-05],[124.18169,-2.8873E-05],[124.18513,-2.9389E-05],[124.18856,-2.9389E-05]]}
-{"quant":[124.498,-3.0592E-05],"mems":[[124.39856,-2.5264E-05],[124.402,-2.6295E-05],[124.40545,-2.6295E-05],[124.40889,-2.8873E-05],[124.41233,-3.1451E-05],[124.41577,-3.3513E-05],[124.41922,-2.6295E-05],[124.42266,-2.6295E-05],[124.4261,-3.1451E-05],[124.42954,-3.1451E-05],[124.43299,-3.0935E-05],[124.43643,-3.2482E-05],[124.43987,-3.0935E-05],[124.44331,-2.7842E-05],[124.44676,-3.2998E-05],[124.4502,-3.1967E-05],[124.45364,-3.1451E-05],[124.45709,-3.0935E-05],[124.46053,-2.5264E-05],[124.46397,-2.7326E-05],[124.46741,-3.1967E-05],[124.47086,-2.9904E-05],[124.4743,-2.7842E-05],[124.47774,-2.9389E-05],[124.48118,-2.7326E-05],[124.48463,-3.0935E-05],[124.48807,-3.2998E-05],[124.49151,-3.2482E-05],[124.49495,-2.9904E-05],[124.4984,-2.7326E-05],[124.50184,-2.9389E-05],[124.50528,-2.8873E-05],[124.50873,-3.5576E-05],[124.51217,-3.2482E-05],[124.51561,-3.042E-05],[124.51905,-3.4029E-05],[124.5225,-2.7842E-05],[124.52594,-3.042E-05],[124.52938,-3.042E-05],[124.53282,-3.3513E-05],[124.53627,-3.5576E-05],[124.53971,-2.6295E-05],[124.54315,-3.2482E-05],[124.54659,-3.506E-05],[124.55004,-3.1451E-05],[124.55348,-3.1967E-05],[124.55692,-2.7842E-05],[124.56037,-2.7326E-05],[124.56381,-2.5779E-05],[124.56725,-2.7842E-05],[124.57069,-3.4029E-05],[124.57414,-3.2482E-05],[124.57758,-2.9904E-05],[124.58102,-2.8357E-05],[124.58446,-3.2998E-05],[124.58791,-3.3513E-05],[124.59135,-2.8357E-05],[124.59479,-2.9389E-05],[124.59823,-2.6811E-05],[124.60168,-2.5779E-05],[124.60512,-3.1451E-05],[124.60856,-3.0935E-05],[124.61201,-2.9904E-05],[124.61545,-2.8357E-05],[124.61889,-2.8357E-05],[124.62233,-2.9904E-05],[124.62578,-2.8873E-05],[124.62922,-3.2482E-05],[124.63266,-3.1451E-05],[124.6361,-3.1451E-05],[124.63955,-3.2482E-05],[124.64299,-2.9389E-05],[124.64643,-2.9389E-05],[124.64987,-2.7326E-05],[124.65332,-3.1967E-05],[124.65676,-3.6091E-05],[124.6602,-2.7842E-05],[124.66365,-2.7842E-05],[124.66709,-3.042E-05],[124.67053,-2.6295E-05],[124.67397,-2.9389E-05],[124.67742,-3.1967E-05],[124.68086,-3.042E-05],[124.6843,-3.042E-05],[124.68774,-3.1451E-05],[124.69119,-3.1967E-05],[124.69463,-2.9904E-05],[124.69807,-2.6811E-05]]}
-{"quant":[125.177,-2.9646E-05],"mems":[[125.08021,-3.1451E-05],[125.08365,-3.2482E-05],[125.08709,-3.3513E-05],[125.09054,-2.9904E-05],[125.09398,-2.8873E-05],[125.09742,-2.9389E-05],[125.10086,-3.2482E-05],[125.10431,-2.9904E-05],[125.10775,-2.8873E-05],[125.11119,-2.9389E-05],[125.11463,-2.7842E-05],[125.11808,-3.1967E-05],[125.12152,-2.8873E-05],[125.12496,-2.9904E-05],[125.12841,-3.3513E-05],[125.13185,-3.042E-05],[125.13529,-2.9904E-05],[125.13873,-2.9389E-05],[125.14218,-2.6295E-05],[125.14562,-2.2686E-05],[125.14906,-2.8357E-05],[125.1525,-3.1451E-05],[125.15595,-3.1451E-05],[125.15939,-3.3513E-05],[125.16283,-3.1967E-05],[125.16627,-3.0935E-05],[125.16972,-3.1967E-05],[125.17316,-3.4029E-05],[125.1766,-3.2482E-05],[125.18005,-3.042E-05],[125.18349,-2.7842E-05],[125.18693,-2.6811E-05],[125.19037,-3.4029E-05],[125.19382,-3.042E-05],[125.19726,-2.7842E-05],[125.2007,-3.042E-05],[125.20414,-2.9389E-05],[125.20759,-3.2998E-05],[125.21103,-2.9904E-05],[125.21447,-2.6811E-05],[125.21791,-3.1967E-05],[125.22136,-3.0935E-05],[125.2248,-2.5779E-05],[125.22824,-2.5779E-05],[125.23169,-3.1967E-05],[125.23513,-3.042E-05],[125.23857,-2.7842E-05],[125.24201,-2.9389E-05],[125.24546,-2.6811E-05],[125.2489,-2.7842E-05],[125.25234,-2.9389E-05],[125.25578,-3.1451E-05],[125.25923,-3.0935E-05],[125.26267,-2.9389E-05],[125.26611,-3.1451E-05],[125.26955,-3.042E-05],[125.273,-2.7842E-05],[125.27644,-3.1967E-05],[125.27988,-3.0935E-05],[125.28333,-2.5779E-05],[125.28677,-2.5264E-05],[125.29021,-2.9389E-05],[125.29365,-3.2998E-05],[125.2971,-3.1967E-05],[125.30054,-2.9389E-05],[125.30398,-2.7326E-05],[125.30742,-3.1451E-05],[125.31087,-3.1967E-05],[125.31431,-3.2482E-05],[125.31775,-3.0935E-05],[125.32119,-2.4748E-05],[125.32464,-2.6295E-05],[125.32808,-2.7326E-05],[125.33152,-2.9389E-05],[125.33497,-2.9389E-05],[125.33841,-2.7326E-05],[125.34185,-2.7326E-05],[125.34529,-2.7326E-05],[125.34874,-2.7842E-05],[125.35218,-2.9904E-05],[125.35562,-2.9904E-05],[125.35906,-2.5264E-05],[125.36251,-2.5264E-05],[125.36595,-3.0935E-05],[125.36939,-2.9389E-05],[125.37283,-2.1655E-05],[125.37628,-2.5264E-05],[125.37972,-2.9904E-05]]}
-{"quant":[125.639,-3.0334E-05],"mems":[[125.54153,-2.7326E-05],[125.54497,-2.8873E-05],[125.54841,-2.6811E-05],[125.55185,-2.5779E-05],[125.5553,-3.1451E-05],[125.55874,-3.1451E-05],[125.56218,-2.9904E-05],[125.56562,-2.9389E-05],[125.56907,-2.9389E-05],[125.57251,-2.7842E-05],[125.57595,-2.5779E-05],[125.57939,-3.042E-05],[125.58284,-2.8357E-05],[125.58628,-2.6811E-05],[125.58972,-3.4544E-05],[125.59317,-3.2998E-05],[125.59661,-2.7842E-05],[125.60005,-3.042E-05],[125.60349,-3.0935E-05],[125.60694,-2.9389E-05],[125.61038,-2.9389E-05],[125.61382,-2.8357E-05],[125.61726,-2.8357E-05],[125.62071,-2.7842E-05],[125.62415,-2.5264E-05],[125.62759,-3.042E-05],[125.63103,-3.3513E-05],[125.63448,-3.2998E-05],[125.63792,-3.1967E-05],[125.64136,-2.6295E-05],[125.64481,-2.8873E-05],[125.64825,-2.7842E-05],[125.65169,-2.5264E-05],[125.65513,-3.4544E-05],[125.65858,-3.1451E-05],[125.66202,-3.0935E-05],[125.66546,-3.2998E-05],[125.6689,-2.7842E-05],[125.67235,-3.2482E-05],[125.67579,-3.0935E-05],[125.67923,-3.042E-05],[125.68267,-3.4029E-05],[125.68612,-3.1451E-05],[125.68956,-3.2482E-05],[125.693,-3.042E-05],[125.69645,-2.9904E-05],[125.69989,-3.042E-05],[125.70333,-3.1451E-05],[125.70677,-3.0935E-05],[125.71022,-2.8873E-05],[125.71366,-2.9904E-05],[125.7171,-2.6295E-05],[125.72054,-2.7326E-05],[125.72399,-2.9389E-05],[125.72743,-2.9389E-05],[125.73087,-3.0935E-05],[125.73431,-2.8873E-05],[125.73776,-3.4029E-05],[125.7412,-3.4029E-05],[125.74464,-3.042E-05],[125.74809,-3.1967E-05],[125.75153,-2.8873E-05],[125.75497,-3.1967E-05],[125.75841,-2.9904E-05],[125.76186,-2.9389E-05],[125.7653,-3.4029E-05],[125.76874,-2.8873E-05],[125.77218,-3.0935E-05],[125.77563,-3.042E-05],[125.77907,-2.6295E-05],[125.78251,-2.8357E-05],[125.78595,-2.8873E-05],[125.7894,-3.2482E-05],[125.79284,-2.9389E-05],[125.79628,-2.8357E-05],[125.79973,-3.3513E-05],[125.80317,-3.2482E-05],[125.80661,-2.8357E-05],[125.81005,-2.4748E-05],[125.8135,-2.9389E-05],[125.81694,-3.1451E-05],[125.82038,-2.8873E-05],[125.82382,-2.8873E-05],[125.82727,-2.7842E-05],[125.83071,-2.6811E-05],[125.83415,-2.7326E-05],[125.83759,-3.2482E-05],[125.84104,-2.9389E-05]]}
-{"quant":[126.101,-2.9956E-05],"mems":[[126.00284,-2.5779E-05],[126.00629,-2.9904E-05],[126.00973,-3.1967E-05],[126.01317,-3.2482E-05],[126.01661,-2.7842E-05],[126.02006,-2.6295E-05],[126.0235,-2.8357E-05],[126.02694,-2.8873E-05],[126.03038,-3.042E-05],[126.03383,-2.8357E-05],[126.03727,-3.4029E-05],[126.04071,-3.0935E-05],[126.04415,-2.4748E-05],[126.0476,-2.7842E-05],[126.05104,-2.9389E-05],[126.05448,-3.042E-05],[126.05793,-2.4233E-05],[126.06137,-2.4748E-05],[126.06481,-2.9389E-05],[126.06825,-2.9904E-05],[126.0717,-2.9904E-05],[126.07514,-2.7842E-05],[126.07858,-3.042E-05],[126.08202,-2.6295E-05],[126.08547,-2.5779E-05],[126.08891,-3.0935E-05],[126.09235,-2.7842E-05],[126.09579,-3.0935E-05],[126.09924,-2.8357E-05],[126.10268,-2.6811E-05],[126.10612,-3.1967E-05],[126.10957,-2.9389E-05],[126.11301,-3.2998E-05],[126.11645,-3.0935E-05],[126.11989,-2.6811E-05],[126.12334,-2.8357E-05],[126.12678,-2.6295E-05],[126.13022,-3.1451E-05],[126.13366,-3.4544E-05],[126.13711,-3.4029E-05],[126.14055,-3.2998E-05],[126.14399,-2.6811E-05],[126.14743,-2.8873E-05],[126.15088,-2.9389E-05],[126.15432,-2.8357E-05],[126.15776,-3.042E-05],[126.16121,-2.7326E-05],[126.16465,-2.9904E-05],[126.16809,-2.9389E-05],[126.17153,-2.8357E-05],[126.17498,-3.1451E-05],[126.17842,-2.9904E-05],[126.18186,-3.1967E-05],[126.1853,-3.2482E-05],[126.18875,-2.9904E-05],[126.19219,-2.9389E-05],[126.19563,-3.1967E-05],[126.19907,-2.8873E-05],[126.20252,-2.7326E-05],[126.20596,-2.7842E-05],[126.2094,-2.4233E-05],[126.21285,-2.6295E-05],[126.21629,-2.8873E-05],[126.21973,-2.8357E-05],[126.22317,-2.5264E-05],[126.22662,-2.9904E-05],[126.23006,-3.2482E-05],[126.2335,-2.7842E-05],[126.23694,-2.8873E-05],[126.24039,-2.7326E-05],[126.24383,-2.9389E-05],[126.24727,-2.8357E-05],[126.25071,-2.8873E-05],[126.25416,-3.1451E-05],[126.2576,-2.7842E-05],[126.26104,-3.1967E-05],[126.26449,-3.042E-05],[126.26793,-2.7842E-05],[126.27137,-3.1451E-05],[126.27481,-3.1451E-05],[126.27826,-2.6811E-05],[126.2817,-2.7326E-05],[126.28514,-3.2482E-05],[126.28858,-3.1967E-05],[126.29203,-2.9904E-05],[126.29547,-2.8873E-05],[126.29891,-2.8357E-05],[126.30235,-2.9389E-05]]}
-{"quant":[126.556,-2.9715E-05],"mems":[[126.45727,-2.7842E-05],[126.46072,-2.7842E-05],[126.46416,-2.4748E-05],[126.4676,-2.6811E-05],[126.47105,-3.1967E-05],[126.47449,-2.8873E-05],[126.47793,-2.9389E-05],[126.48137,-2.9904E-05],[126.48482,-2.8873E-05],[126.48826,-3.2482E-05],[126.4917,-3.0935E-05],[126.49514,-2.8357E-05],[126.49859,-3.042E-05],[126.50203,-2.5779E-05],[126.50547,-2.8357E-05],[126.50891,-3.2998E-05],[126.51236,-2.7842E-05],[126.5158,-2.9904E-05],[126.51924,-2.8873E-05],[126.52269,-2.8357E-05],[126.52613,-3.506E-05],[126.52957,-3.1967E-05],[126.53301,-2.8873E-05],[126.53646,-3.0935E-05],[126.5399,-3.0935E-05],[126.54334,-3.1451E-05],[126.54678,-2.9389E-05],[126.55023,-2.8357E-05],[126.55367,-2.8873E-05],[126.55711,-2.5264E-05],[126.56055,-2.7326E-05],[126.564,-3.1967E-05],[126.56744,-3.1967E-05],[126.57088,-3.4029E-05],[126.57433,-3.2482E-05],[126.57777,-3.2998E-05],[126.58121,-3.1967E-05],[126.58465,-3.1451E-05],[126.5881,-3.3513E-05],[126.59154,-3.042E-05],[126.59498,-2.9904E-05],[126.59842,-2.9904E-05],[126.60187,-3.1451E-05],[126.60531,-2.8873E-05],[126.60875,-2.8357E-05],[126.61219,-3.042E-05],[126.61564,-2.8357E-05],[126.61908,-2.4233E-05],[126.62252,-2.217E-05],[126.62597,-2.8357E-05],[126.62941,-3.0935E-05],[126.63285,-2.9389E-05],[126.63629,-2.6811E-05],[126.63974,-2.7842E-05],[126.64318,-3.2482E-05],[126.64662,-3.2998E-05],[126.65006,-3.042E-05],[126.65351,-2.6811E-05],[126.65695,-2.8357E-05],[126.66039,-2.8873E-05],[126.66383,-2.8357E-05],[126.66728,-2.8357E-05],[126.67072,-2.9389E-05],[126.67416,-3.3513E-05],[126.67761,-2.9389E-05],[126.68105,-2.6295E-05],[126.68449,-3.3513E-05],[126.68793,-3.2482E-05],[126.69138,-2.9389E-05],[126.69482,-2.7842E-05],[126.69826,-2.7842E-05],[126.7017,-3.042E-05],[126.70515,-3.1451E-05],[126.70859,-3.2998E-05],[126.71203,-3.1967E-05],[126.71547,-3.5576E-05],[126.71892,-3.0935E-05],[126.72236,-2.4233E-05],[126.7258,-2.6295E-05],[126.72925,-2.8873E-05],[126.73269,-3.1451E-05],[126.73613,-2.8873E-05],[126.73957,-3.1451E-05],[126.74302,-3.3513E-05],[126.74646,-3.4029E-05],[126.7499,-3.2482E-05],[126.75334,-2.9389E-05],[126.75679,-3.0935E-05]]}
-{"quant":[127.035,-3.0763E-05],"mems":[[126.93643,-3.1967E-05],[126.93989,-3.2482E-05],[126.94334,-3.1967E-05],[126.9468,-3.1967E-05],[126.95026,-3.1967E-05],[126.95371,-3.4544E-05],[126.95717,-2.9904E-05],[126.96062,-2.8357E-05],[126.96408,-3.4544E-05],[126.96754,-3.6607E-05],[126.97099,-3.506E-05],[126.97445,-2.8873E-05],[126.9779,-2.7326E-05],[126.98136,-2.8357E-05],[126.98482,-2.5779E-05],[126.98827,-2.7326E-05],[126.99173,-2.8873E-05],[126.99518,-2.8357E-05],[126.99864,-2.8357E-05],[127.0021,-2.6295E-05],[127.00555,-2.6811E-05],[127.00901,-2.7326E-05],[127.01246,-2.6811E-05],[127.01592,-2.9904E-05],[127.01938,-2.6811E-05],[127.02283,-2.7842E-05],[127.02629,-3.042E-05],[127.02974,-2.4748E-05],[127.0332,-2.8357E-05],[127.03666,-3.2482E-05],[127.04011,-2.7326E-05],[127.04357,-2.7326E-05],[127.04702,-3.042E-05],[127.05048,-3.1967E-05],[127.05394,-3.1967E-05],[127.05739,-3.1967E-05],[127.06085,-3.0935E-05],[127.0643,-3.042E-05],[127.06776,-3.2998E-05],[127.07122,-3.1451E-05],[127.07467,-3.1451E-05],[127.07813,-2.8357E-05],[127.08158,-2.7842E-05],[127.08504,-3.1967E-05],[127.0885,-2.6295E-05],[127.09195,-3.042E-05],[127.09541,-3.1967E-05],[127.09886,-2.5779E-05],[127.10232,-2.9389E-05],[127.10578,-2.7326E-05],[127.10923,-3.042E-05],[127.11269,-3.506E-05],[127.11614,-3.042E-05],[127.1196,-3.0935E-05],[127.12306,-3.2998E-05],[127.12651,-3.4544E-05],[127.12997,-3.042E-05],[127.13342,-3.1967E-05],[127.13688,-3.6091E-05],[127.14034,-2.9904E-05],[127.14379,-2.5779E-05],[127.14725,-2.7326E-05],[127.1507,-2.9904E-05],[127.15416,-2.8873E-05],[127.15762,-2.6295E-05],[127.16107,-2.9904E-05],[127.16453,-3.1967E-05],[127.16798,-3.1451E-05],[127.17144,-3.042E-05],[127.1749,-2.9904E-05],[127.17835,-3.1967E-05],[127.18181,-3.0935E-05],[127.18526,-3.1967E-05],[127.18872,-3.1451E-05],[127.19218,-2.9904E-05],[127.19563,-2.8873E-05],[127.19909,-2.8357E-05],[127.20254,-2.9904E-05],[127.206,-2.7842E-05],[127.20946,-3.042E-05],[127.21291,-3.2998E-05],[127.21637,-3.1451E-05],[127.21982,-3.0935E-05],[127.22328,-3.1967E-05],[127.22674,-2.8357E-05],[127.23019,-2.6295E-05],[127.23365,-3.2998E-05],[127.2371,-3.4544E-05]]}
-{"quant":[127.631,-3.042E-05],"mems":[[127.53432,-2.7326E-05],[127.53778,-3.2482E-05],[127.54123,-3.2998E-05],[127.54469,-3.0935E-05],[127.54814,-3.1967E-05],[127.5516,-3.0935E-05],[127.55506,-3.1451E-05],[127.55851,-3.4544E-05],[127.56197,-2.9904E-05],[127.56542,-2.7326E-05],[127.56888,-2.9389E-05],[127.57234,-3.1451E-05],[127.57579,-3.2482E-05],[127.57925,-3.1451E-05],[127.5827,-2.7842E-05],[127.58616,-2.5264E-05],[127.58962,-3.1451E-05],[127.59307,-3.1967E-05],[127.59653,-3.0935E-05],[127.59998,-3.1967E-05],[127.60344,-2.6295E-05],[127.6069,-2.6811E-05],[127.61035,-3.1451E-05],[127.61381,-2.9904E-05],[127.61726,-2.8357E-05],[127.62072,-2.9904E-05],[127.62418,-3.042E-05],[127.62763,-2.8873E-05],[127.63109,-2.8357E-05],[127.63454,-2.9904E-05],[127.638,-3.2998E-05],[127.64146,-3.4544E-05],[127.64491,-2.8357E-05],[127.64837,-2.6295E-05],[127.65182,-3.0935E-05],[127.65528,-3.0935E-05],[127.65874,-3.4544E-05],[127.66219,-3.0935E-05],[127.66565,-2.7326E-05],[127.6691,-3.2482E-05],[127.67256,-3.2998E-05],[127.67602,-3.2482E-05],[127.67947,-2.7842E-05],[127.68293,-2.8873E-05],[127.68638,-2.5779E-05],[127.68984,-2.6811E-05],[127.6933,-3.6091E-05],[127.69675,-2.8873E-05],[127.70021,-3.0935E-05],[127.70366,-3.6091E-05],[127.70712,-3.042E-05],[127.71058,-2.7326E-05],[127.71403,-3.042E-05],[127.71749,-3.2998E-05],[127.72094,-2.7326E-05],[127.7244,-2.7326E-05],[127.72786,-3.042E-05],[127.73131,-3.1967E-05],[127.73477,-3.0935E-05],[127.73822,-2.8357E-05],[127.74168,-3.0935E-05],[127.74514,-2.9904E-05],[127.74859,-2.6811E-05],[127.75205,-2.9904E-05],[127.7555,-3.506E-05],[127.75896,-3.2998E-05],[127.76242,-2.9389E-05],[127.76587,-2.6295E-05],[127.76933,-2.9904E-05],[127.77278,-3.1451E-05],[127.77624,-2.8873E-05],[127.7797,-3.2482E-05],[127.78315,-2.6295E-05],[127.78661,-2.7326E-05],[127.79006,-3.4029E-05],[127.79352,-3.0935E-05],[127.79698,-2.7842E-05],[127.80043,-2.9389E-05],[127.80389,-2.9904E-05],[127.80734,-2.8357E-05],[127.8108,-2.9389E-05],[127.81426,-2.7842E-05],[127.81771,-2.8357E-05],[127.82117,-2.7842E-05],[127.82462,-2.5779E-05],[127.82808,-2.8357E-05],[127.83154,-3.4544E-05]]}
-{"quant":[128.127,-2.8564E-05],"mems":[[128.02853,-3.0935E-05],[128.03198,-2.8873E-05],[128.03544,-3.1967E-05],[128.0389,-3.0935E-05],[128.04235,-2.8873E-05],[128.04581,-3.042E-05],[128.04926,-2.9904E-05],[128.05272,-3.3513E-05],[128.05618,-3.0935E-05],[128.05963,-3.042E-05],[128.06309,-3.1967E-05],[128.06654,-3.2998E-05],[128.07,-3.1967E-05],[128.07346,-2.7842E-05],[128.07691,-3.042E-05],[128.08037,-3.1967E-05],[128.08382,-3.042E-05],[128.08728,-2.8873E-05],[128.09074,-3.1967E-05],[128.09419,-3.3513E-05],[128.09765,-2.9389E-05],[128.1011,-2.9904E-05],[128.10456,-2.7326E-05],[128.10802,-2.6811E-05],[128.11147,-2.9389E-05],[128.11493,-3.1451E-05],[128.11838,-2.9904E-05],[128.12184,-2.7326E-05],[128.1253,-3.2482E-05],[128.12875,-3.0935E-05],[128.13221,-2.7326E-05],[128.13566,-2.8873E-05],[128.13912,-3.4029E-05],[128.14258,-3.506E-05],[128.14603,-2.8357E-05],[128.14949,-2.5779E-05],[128.15294,-2.5264E-05],[128.1564,-2.7326E-05],[128.15986,-2.9389E-05],[128.16331,-2.6811E-05],[128.16677,-2.7326E-05],[128.17022,-2.7326E-05],[128.17368,-2.6295E-05],[128.17714,-2.7842E-05],[128.18059,-2.6811E-05],[128.18405,-3.1451E-05],[128.1875,-2.7842E-05],[128.19096,-2.5264E-05],[128.19442,-2.9389E-05],[128.19787,-2.7326E-05],[128.20133,-3.042E-05],[128.20478,-3.042E-05],[128.20824,-2.9904E-05],[128.2117,-3.0935E-05],[128.21515,-2.8873E-05],[128.21861,-2.8357E-05],[128.22206,-2.8873E-05],[128.22552,-2.7326E-05],[128.22898,-2.5779E-05],[128.23243,-3.042E-05],[128.23589,-3.2482E-05],[128.23934,-3.4544E-05],[128.2428,-3.2998E-05],[128.24626,-2.7326E-05],[128.24971,-2.8873E-05],[128.25317,-3.4029E-05],[128.25662,-3.2998E-05],[128.26008,-2.8873E-05],[128.26354,-2.7842E-05],[128.26699,-3.042E-05],[128.27045,-3.1451E-05],[128.2739,-3.042E-05],[128.27736,-3.0935E-05],[128.28082,-2.8357E-05],[128.28427,-2.8357E-05],[128.28773,-2.8873E-05],[128.29118,-2.6295E-05],[128.29464,-3.4544E-05],[128.2981,-3.3513E-05],[128.30155,-2.8357E-05],[128.30501,-2.8357E-05],[128.30846,-2.7326E-05],[128.31192,-2.9389E-05],[128.31538,-2.9904E-05],[128.31883,-3.042E-05],[128.32229,-2.9904E-05],[128.32574,-2.8873E-05],[128.3292,-2.9904E-05]]}
-{"quant":[128.629,-2.9389E-05],"mems":[[128.52965,-2.4748E-05],[128.5331,-2.7842E-05],[128.53656,-2.9904E-05],[128.54002,-3.1451E-05],[128.54347,-2.9904E-05],[128.54693,-2.8357E-05],[128.55038,-2.8357E-05],[128.55384,-2.6295E-05],[128.5573,-2.9389E-05],[128.56075,-2.7842E-05],[128.56421,-2.8357E-05],[128.56766,-2.7842E-05],[128.57112,-2.5264E-05],[128.57458,-2.9389E-05],[128.57803,-2.8873E-05],[128.58149,-2.9389E-05],[128.58494,-2.8357E-05],[128.5884,-2.8357E-05],[128.59186,-2.8357E-05],[128.59531,-2.6811E-05],[128.59877,-2.8873E-05],[128.60222,-3.0935E-05],[128.60568,-2.9389E-05],[128.60914,-2.7326E-05],[128.61259,-2.7842E-05],[128.61605,-2.5779E-05],[128.6195,-3.0935E-05],[128.62296,-3.1451E-05],[128.62642,-2.8357E-05],[128.62987,-2.7842E-05],[128.63333,-2.6811E-05],[128.63678,-2.8357E-05],[128.64024,-2.5779E-05],[128.6437,-2.4748E-05],[128.64715,-2.6295E-05],[128.65061,-2.7842E-05],[128.65406,-2.8357E-05],[128.65752,-2.7842E-05],[128.66098,-3.0935E-05],[128.66443,-3.0935E-05],[128.66789,-2.7842E-05],[128.67134,-2.7326E-05],[128.6748,-2.9389E-05],[128.67826,-2.8357E-05],[128.68171,-3.1967E-05],[128.68517,-3.0935E-05],[128.68862,-2.8357E-05],[128.69208,-3.4544E-05],[128.69554,-3.042E-05],[128.69899,-3.1451E-05],[128.70245,-3.4029E-05],[128.7059,-2.6811E-05],[128.70936,-2.4233E-05],[128.71282,-2.9904E-05],[128.71627,-3.2998E-05],[128.71973,-2.9389E-05],[128.72318,-3.3513E-05],[128.72664,-3.4544E-05],[128.7301,-2.9904E-05],[128.73355,-2.9389E-05],[128.73701,-3.0935E-05],[128.74046,-3.0935E-05],[128.74392,-2.9389E-05],[128.74738,-2.8357E-05],[128.75083,-2.9904E-05],[128.75429,-2.9389E-05],[128.75774,-2.9389E-05],[128.7612,-2.9389E-05],[128.76466,-2.6811E-05],[128.76811,-2.9389E-05],[128.77157,-2.9904E-05],[128.77502,-2.9389E-05],[128.77848,-2.9904E-05],[128.78194,-2.5264E-05],[128.78539,-2.5264E-05],[128.78885,-2.9904E-05],[128.7923,-3.3513E-05],[128.79576,-3.1451E-05],[128.79922,-3.1451E-05],[128.80267,-3.1967E-05],[128.80613,-3.042E-05],[128.80958,-3.0935E-05],[128.81304,-2.7326E-05],[128.8165,-2.9389E-05],[128.81995,-3.042E-05],[128.82341,-3.1451E-05],[128.82686,-2.8357E-05],[128.83032,-2.4233E-05]]}
-{"quant":[129.104,-2.987E-05],"mems":[[129.00658,-2.6811E-05],[129.01003,-2.4233E-05],[129.01349,-2.7326E-05],[129.01694,-2.7842E-05],[129.0204,-2.8873E-05],[129.02386,-2.9904E-05],[129.02731,-2.8357E-05],[129.03077,-2.5779E-05],[129.03422,-2.6295E-05],[129.03768,-2.9389E-05],[129.04114,-3.0935E-05],[129.04459,-2.7842E-05],[129.04805,-2.6811E-05],[129.0515,-2.8873E-05],[129.05496,-2.7842E-05],[129.05842,-3.042E-05],[129.06187,-3.042E-05],[129.06533,-2.8357E-05],[129.06878,-2.6295E-05],[129.07224,-2.7842E-05],[129.0757,-2.6811E-05],[129.07915,-2.3717E-05],[129.08261,-3.1967E-05],[129.08606,-2.9389E-05],[129.08952,-2.6295E-05],[129.09298,-3.2482E-05],[129.09643,-2.9904E-05],[129.09989,-3.0935E-05],[129.10334,-3.0935E-05],[129.1068,-2.9904E-05],[129.11026,-3.1451E-05],[129.11371,-3.042E-05],[129.11717,-3.0935E-05],[129.12062,-2.8873E-05],[129.12408,-2.6295E-05],[129.12754,-2.9904E-05],[129.13099,-2.7842E-05],[129.13445,-2.8357E-05],[129.1379,-3.042E-05],[129.14136,-2.8873E-05],[129.14482,-3.2482E-05],[129.14827,-3.1967E-05],[129.15173,-2.8357E-05],[129.15518,-2.9389E-05],[129.15864,-3.1967E-05],[129.1621,-3.4029E-05],[129.16555,-3.2998E-05],[129.16901,-2.8873E-05],[129.17246,-2.4233E-05],[129.17592,-3.042E-05],[129.17938,-3.042E-05],[129.18283,-2.9904E-05],[129.18629,-3.4544E-05],[129.18974,-2.7326E-05],[129.1932,-2.7326E-05],[129.19666,-3.1967E-05],[129.20011,-2.9904E-05],[129.20357,-2.8357E-05],[129.20702,-2.8357E-05],[129.21048,-2.6811E-05],[129.21394,-2.7326E-05],[129.21739,-2.7842E-05],[129.22085,-2.6295E-05],[129.2243,-2.9389E-05],[129.22776,-2.7326E-05],[129.23122,-2.8873E-05],[129.23467,-3.042E-05],[129.23813,-3.042E-05],[129.24158,-2.8873E-05],[129.24504,-2.5779E-05],[129.2485,-3.1967E-05],[129.25195,-3.2998E-05],[129.25541,-3.1451E-05],[129.25886,-3.2998E-05],[129.26232,-3.042E-05],[129.26578,-3.042E-05],[129.26923,-2.8357E-05],[129.27269,-2.8357E-05],[129.27614,-3.4544E-05],[129.2796,-3.5576E-05],[129.28306,-2.9904E-05],[129.28651,-2.8873E-05],[129.28997,-2.6811E-05],[129.29342,-2.9904E-05],[129.29688,-3.3513E-05],[129.30034,-3.042E-05],[129.30379,-3.1451E-05],[129.30725,-3.2482E-05]]}
-{"quant":[129.684,-2.9664E-05],"mems":[[129.58445,-2.5779E-05],[129.58787,-2.7842E-05],[129.59128,-3.0935E-05],[129.59469,-3.0935E-05],[129.59811,-3.1451E-05],[129.60152,-3.3513E-05],[129.60493,-3.1967E-05],[129.60835,-3.1451E-05],[129.61176,-3.2998E-05],[129.61517,-3.042E-05],[129.61859,-3.2998E-05],[129.622,-3.3513E-05],[129.62541,-3.1451E-05],[129.62883,-3.0935E-05],[129.63224,-2.7326E-05],[129.63565,-2.4233E-05],[129.63907,-2.5779E-05],[129.64248,-3.1451E-05],[129.64589,-2.6295E-05],[129.64931,-2.5264E-05],[129.65272,-3.2998E-05],[129.65613,-2.9389E-05],[129.65955,-2.7326E-05],[129.66296,-3.042E-05],[129.66637,-2.5779E-05],[129.66979,-2.4748E-05],[129.6732,-2.9389E-05],[129.67661,-2.9389E-05],[129.68003,-2.9904E-05],[129.68344,-2.8357E-05],[129.68685,-2.9904E-05],[129.69027,-3.042E-05],[129.69368,-2.7842E-05],[129.69709,-3.042E-05],[129.70051,-3.1451E-05],[129.70392,-2.8873E-05],[129.70733,-2.7842E-05],[129.71075,-3.0935E-05],[129.71416,-3.5576E-05],[129.71757,-3.2998E-05],[129.72099,-3.3513E-05],[129.7244,-3.0935E-05],[129.72781,-2.5779E-05],[129.73123,-2.9904E-05],[129.73464,-2.8873E-05],[129.73805,-2.8357E-05],[129.74147,-2.8357E-05],[129.74488,-2.4748E-05],[129.74829,-3.042E-05],[129.75171,-3.1451E-05],[129.75512,-2.9389E-05],[129.75853,-2.8357E-05],[129.76195,-2.7326E-05],[129.76536,-2.4748E-05],[129.76877,-2.7842E-05],[129.77219,-3.3513E-05],[129.7756,-3.2998E-05],[129.77901,-3.1967E-05],[129.78243,-2.8357E-05],[129.78584,-2.6811E-05],[129.78925,-2.9389E-05],[129.79267,-2.9389E-05],[129.79608,-3.042E-05],[129.79949,-3.0935E-05],[129.80291,-2.8357E-05],[129.80632,-2.8873E-05],[129.80973,-2.9904E-05],[129.81315,-3.1451E-05],[129.81656,-2.8873E-05],[129.81997,-2.7842E-05],[129.82339,-3.1451E-05],[129.8268,-3.4029E-05],[129.83021,-3.506E-05],[129.83363,-3.4544E-05],[129.83704,-2.8357E-05],[129.84045,-2.2686E-05],[129.84387,-3.1451E-05],[129.84728,-3.2482E-05],[129.85069,-2.8357E-05],[129.85411,-3.042E-05],[129.85752,-2.9389E-05],[129.86093,-3.4029E-05],[129.86435,-3.3513E-05],[129.86776,-2.7326E-05],[129.87117,-3.1967E-05],[129.87459,-2.9389E-05],[129.878,-2.3717E-05],[129.88141,-3.1451E-05],[129.88483,-3.2482E-05]]}
-{"quant":[130.161,-2.7759E-05],"mems":[[130.06232,-2.1139E-05],[130.06573,-2.1139E-05],[130.06915,-2.5779E-05],[130.07256,-2.8357E-05],[130.07597,-3.2482E-05],[130.07939,-3.2482E-05],[130.0828,-2.7326E-05],[130.08621,-2.6295E-05],[130.08963,-2.8357E-05],[130.09304,-2.8357E-05],[130.09645,-2.9904E-05],[130.09987,-2.7326E-05],[130.10328,-2.9389E-05],[130.10669,-3.042E-05],[130.11011,-2.7326E-05],[130.11352,-2.7842E-05],[130.11693,-2.8357E-05],[130.12035,-2.8873E-05],[130.12376,-2.4748E-05],[130.12717,-2.7842E-05],[130.13059,-3.0935E-05],[130.134,-3.042E-05],[130.13741,-3.1967E-05],[130.14083,-2.6811E-05],[130.14424,-2.4233E-05],[130.14765,-2.7842E-05],[130.15107,-2.9389E-05],[130.15448,-2.6811E-05],[130.15789,-2.4748E-05],[130.16131,-2.2686E-05],[130.16472,-2.3717E-05],[130.16813,-2.7842E-05],[130.17155,-2.6811E-05],[130.17496,-2.9904E-05],[130.17837,-3.1967E-05],[130.18179,-2.7326E-05],[130.1852,-2.6811E-05],[130.18861,-2.8873E-05],[130.19203,-3.2482E-05],[130.19544,-2.9389E-05],[130.19885,-2.6295E-05],[130.20227,-2.9904E-05],[130.20568,-2.7842E-05],[130.20909,-2.7326E-05],[130.21251,-2.8357E-05],[130.21592,-2.9389E-05],[130.21933,-2.6811E-05],[130.22275,-2.5264E-05],[130.22616,-2.7842E-05],[130.22957,-2.7326E-05],[130.23299,-2.8873E-05],[130.2364,-3.1451E-05],[130.23981,-2.9904E-05],[130.24323,-2.3202E-05],[130.24664,-2.6295E-05],[130.25005,-2.9389E-05],[130.25347,-2.6295E-05],[130.25688,-2.5779E-05],[130.26029,-2.5779E-05],[130.26371,-2.9389E-05],[130.26712,-2.9904E-05],[130.27053,-3.042E-05],[130.27395,-2.9389E-05],[130.27736,-2.7842E-05],[130.28077,-2.9904E-05],[130.28419,-2.8873E-05],[130.2876,-3.1451E-05],[130.29101,-3.4029E-05],[130.29443,-3.0935E-05],[130.29784,-2.8873E-05],[130.30125,-2.7842E-05],[130.30467,-2.8357E-05],[130.30808,-2.9904E-05],[130.31149,-2.9904E-05],[130.31491,-3.0935E-05],[130.31832,-2.7326E-05],[130.32173,-2.4233E-05],[130.32515,-2.7326E-05],[130.32856,-3.0935E-05],[130.33197,-3.3513E-05],[130.33539,-3.2482E-05],[130.3388,-2.6811E-05],[130.34221,-2.1139E-05],[130.34563,-2.4748E-05],[130.34904,-2.8873E-05],[130.35245,-3.1451E-05],[130.35587,-3.1451E-05],[130.35928,-3.042E-05],[130.36269,-3.0935E-05]]}
-{"quant":[130.632,-2.9987E-05],"mems":[[130.53336,-2.9389E-05],[130.53677,-2.9904E-05],[130.54019,-2.9904E-05],[130.5436,-2.9389E-05],[130.54701,-2.4748E-05],[130.55043,-3.0935E-05],[130.55384,-3.2482E-05],[130.55725,-2.3202E-05],[130.56067,-2.6811E-05],[130.56408,-3.0935E-05],[130.56749,-3.2482E-05],[130.57091,-3.1451E-05],[130.57432,-2.9904E-05],[130.57773,-2.6811E-05],[130.58115,-2.6295E-05],[130.58456,-2.9904E-05],[130.58797,-3.042E-05],[130.59139,-2.8873E-05],[130.5948,-2.9904E-05],[130.59821,-3.1451E-05],[130.60163,-2.6295E-05],[130.60504,-2.8357E-05],[130.60845,-3.2998E-05],[130.61187,-3.0935E-05],[130.61528,-3.1451E-05],[130.61869,-2.8357E-05],[130.62211,-2.8873E-05],[130.62552,-3.0935E-05],[130.62893,-2.9389E-05],[130.63235,-2.9904E-05],[130.63576,-2.8357E-05],[130.63917,-3.1451E-05],[130.64259,-3.1451E-05],[130.646,-2.7326E-05],[130.64941,-3.0935E-05],[130.65283,-3.1451E-05],[130.65624,-2.9904E-05],[130.65965,-3.1967E-05],[130.66307,-3.0935E-05],[130.66648,-3.4029E-05],[130.66989,-3.4544E-05],[130.67331,-2.9389E-05],[130.67672,-2.6811E-05],[130.68013,-2.5264E-05],[130.68355,-2.7842E-05],[130.68696,-2.8357E-05],[130.69037,-2.9904E-05],[130.69379,-2.8357E-05],[130.6972,-2.6295E-05],[130.70061,-2.8873E-05],[130.70403,-3.042E-05],[130.70744,-3.2998E-05],[130.71085,-3.1451E-05],[130.71427,-3.1451E-05],[130.71768,-3.1967E-05],[130.72109,-3.2482E-05],[130.72451,-3.1451E-05],[130.72792,-2.6811E-05],[130.73133,-2.7842E-05],[130.73475,-2.9389E-05],[130.73816,-2.7842E-05],[130.74157,-2.7842E-05],[130.74499,-3.2998E-05],[130.7484,-2.9904E-05],[130.75181,-2.6295E-05],[130.75523,-2.4233E-05],[130.75864,-2.1655E-05],[130.76205,-2.9904E-05],[130.76547,-2.7326E-05],[130.76888,-2.7842E-05],[130.77229,-3.2998E-05],[130.77571,-2.9389E-05],[130.77912,-2.8357E-05],[130.78253,-2.9389E-05],[130.78595,-3.1967E-05],[130.78936,-2.9904E-05],[130.79277,-3.0935E-05],[130.79619,-2.8873E-05],[130.7996,-2.5779E-05],[130.80301,-3.2482E-05],[130.80643,-3.3513E-05],[130.80984,-3.4544E-05],[130.81325,-3.042E-05],[130.81667,-3.042E-05],[130.82008,-3.042E-05],[130.82349,-2.7842E-05],[130.82691,-3.1451E-05],[130.83032,-2.8873E-05],[130.83373,-2.9904E-05]]}
-{"quant":[131.121,-2.8942E-05],"mems":[[131.02147,-2.9389E-05],[131.02488,-3.0935E-05],[131.02829,-2.8357E-05],[131.03171,-2.8357E-05],[131.03512,-2.6295E-05],[131.03853,-2.8873E-05],[131.04195,-2.9904E-05],[131.04536,-2.8873E-05],[131.04877,-3.1451E-05],[131.05219,-3.042E-05],[131.0556,-2.9904E-05],[131.05901,-2.6295E-05],[131.06243,-2.7326E-05],[131.06584,-3.1451E-05],[131.06925,-2.6295E-05],[131.07267,-2.8873E-05],[131.07608,-2.8873E-05],[131.07949,-2.7326E-05],[131.08291,-3.2482E-05],[131.08632,-2.9904E-05],[131.08973,-2.8357E-05],[131.09315,-2.7842E-05],[131.09656,-2.9904E-05],[131.09997,-3.1967E-05],[131.10339,-3.0935E-05],[131.1068,-2.8873E-05],[131.11021,-2.4233E-05],[131.11363,-2.5779E-05],[131.11704,-3.0935E-05],[131.12045,-3.2998E-05],[131.12387,-2.8873E-05],[131.12728,-2.6295E-05],[131.13069,-2.6811E-05],[131.13411,-3.1451E-05],[131.13752,-3.1967E-05],[131.14093,-2.9904E-05],[131.14435,-3.5576E-05],[131.14776,-3.1967E-05],[131.15117,-2.5779E-05],[131.15459,-2.5779E-05],[131.158,-2.8357E-05],[131.16141,-2.9904E-05],[131.16483,-2.9904E-05],[131.16824,-3.2482E-05],[131.17165,-3.1967E-05],[131.17507,-2.9904E-05],[131.17848,-2.9389E-05],[131.18189,-2.9389E-05],[131.18531,-2.9389E-05],[131.18872,-2.6295E-05],[131.19213,-2.5264E-05],[131.19555,-2.7842E-05],[131.19896,-2.8873E-05],[131.20237,-2.6811E-05],[131.20579,-3.0935E-05],[131.2092,-3.1451E-05],[131.21261,-2.217E-05],[131.21603,-2.4748E-05],[131.21944,-2.9904E-05],[131.22285,-2.8873E-05],[131.22627,-2.9904E-05],[131.22968,-2.8357E-05],[131.23309,-2.9904E-05],[131.23651,-3.2482E-05],[131.23992,-3.042E-05],[131.24333,-3.1451E-05],[131.24675,-2.8873E-05],[131.25016,-2.4748E-05],[131.25357,-3.0935E-05],[131.25699,-2.9389E-05],[131.2604,-2.7326E-05],[131.26381,-3.6091E-05],[131.26723,-3.0935E-05],[131.27064,-2.5779E-05],[131.27405,-2.8873E-05],[131.27747,-3.0935E-05],[131.28088,-3.8669E-05],[131.28429,-3.3513E-05],[131.28771,-2.9904E-05],[131.29112,-2.6295E-05],[131.29453,-2.0624E-05],[131.29795,-3.1967E-05],[131.30136,-3.1451E-05],[131.30477,-2.5779E-05],[131.30819,-2.7326E-05],[131.3116,-2.5779E-05],[131.31501,-2.8357E-05],[131.31843,-3.042E-05],[131.32184,-3.2482E-05]]}
-{"quant":[131.582,-2.865E-05],"mems":[[131.48227,-2.9904E-05],[131.48568,-2.9904E-05],[131.48909,-2.6295E-05],[131.49251,-2.7326E-05],[131.49592,-2.9904E-05],[131.49933,-2.7842E-05],[131.50275,-2.9389E-05],[131.50616,-3.1967E-05],[131.50957,-3.1451E-05],[131.51299,-3.1451E-05],[131.5164,-2.7326E-05],[131.51981,-2.7326E-05],[131.52323,-2.8357E-05],[131.52664,-2.6811E-05],[131.53005,-2.7842E-05],[131.53347,-2.5779E-05],[131.53688,-2.5779E-05],[131.54029,-2.8357E-05],[131.54371,-2.7842E-05],[131.54712,-2.8873E-05],[131.55053,-2.7842E-05],[131.55395,-2.6811E-05],[131.55736,-2.9904E-05],[131.56077,-2.9389E-05],[131.56419,-3.1967E-05],[131.5676,-3.1967E-05],[131.57101,-2.8873E-05],[131.57443,-2.6811E-05],[131.57784,-2.4748E-05],[131.58125,-2.4233E-05],[131.58467,-2.3202E-05],[131.58808,-2.7842E-05],[131.59149,-2.5779E-05],[131.59491,-2.5264E-05],[131.59832,-3.0935E-05],[131.60173,-3.042E-05],[131.60515,-3.2998E-05],[131.60856,-2.9389E-05],[131.61197,-2.8357E-05],[131.61539,-2.5264E-05],[131.6188,-2.3202E-05],[131.62221,-3.0935E-05],[131.62563,-2.8357E-05],[131.62904,-2.8873E-05],[131.63245,-3.1451E-05],[131.63587,-2.7842E-05],[131.63928,-3.1967E-05],[131.64269,-3.2998E-05],[131.64611,-2.7326E-05],[131.64952,-2.6295E-05],[131.65293,-2.5779E-05],[131.65635,-2.4748E-05],[131.65976,-3.042E-05],[131.66317,-2.9904E-05],[131.66659,-2.6811E-05],[131.67,-2.7326E-05],[131.67341,-2.8873E-05],[131.67683,-2.9904E-05],[131.68024,-3.3513E-05],[131.68365,-3.3513E-05],[131.68707,-2.6811E-05],[131.69048,-2.4233E-05],[131.69389,-2.5779E-05],[131.69731,-3.2998E-05],[131.70072,-3.4544E-05],[131.70413,-2.9904E-05],[131.70755,-2.6811E-05],[131.71096,-3.0935E-05],[131.71437,-3.506E-05],[131.71779,-2.9389E-05],[131.7212,-3.0935E-05],[131.72461,-3.1967E-05],[131.72803,-2.8357E-05],[131.73144,-2.7842E-05],[131.73485,-2.5264E-05],[131.73827,-2.9389E-05],[131.74168,-3.1451E-05],[131.74509,-2.8873E-05],[131.74851,-3.0935E-05],[131.75192,-2.4748E-05],[131.75533,-2.7326E-05],[131.75875,-3.2998E-05],[131.76216,-2.9904E-05],[131.76557,-3.042E-05],[131.76899,-2.6295E-05],[131.7724,-2.5264E-05],[131.77581,-2.5779E-05],[131.77923,-2.9904E-05],[131.78264,-3.2482E-05]]}
-{"quant":[132.027,-2.7979E-05],"mems":[[131.92945,-2.5779E-05],[131.9329,-2.9389E-05],[131.93634,-3.2482E-05],[131.93979,-2.9904E-05],[131.94324,-3.0935E-05],[131.94669,-3.042E-05],[131.95014,-2.6811E-05],[131.95358,-2.6811E-05],[131.95703,-3.1451E-05],[131.96048,-2.9904E-05],[131.96393,-3.042E-05],[131.96738,-3.2482E-05],[131.97082,-2.6295E-05],[131.97427,-2.3717E-05],[131.97772,-2.5779E-05],[131.98117,-2.6811E-05],[131.98462,-2.8873E-05],[131.98806,-2.6295E-05],[131.99151,-2.9904E-05],[131.99496,-3.4544E-05],[131.99841,-3.0935E-05],[132.00186,-3.3513E-05],[132.0053,-2.8873E-05],[132.00875,-2.6811E-05],[132.0122,-3.1451E-05],[132.01565,-2.8873E-05],[132.0191,-2.7842E-05],[132.02254,-3.042E-05],[132.02599,-2.9389E-05],[132.02944,-2.7842E-05],[132.03289,-2.8357E-05],[132.03634,-2.6295E-05],[132.03978,-3.0935E-05],[132.04323,-3.4544E-05],[132.04668,-3.0935E-05],[132.05013,-3.042E-05],[132.05358,-2.7326E-05],[132.05702,-2.5779E-05],[132.06047,-3.0935E-05],[132.06392,-2.9389E-05],[132.06737,-3.0935E-05],[132.07082,-3.2998E-05],[132.07426,-2.6295E-05],[132.07771,-2.5264E-05],[132.08116,-2.6295E-05],[132.08461,-2.7842E-05],[132.08806,-2.8873E-05],[132.0915,-2.5264E-05],[132.09495,-2.6295E-05],[132.0984,-2.8873E-05],[132.10185,-2.5779E-05],[132.1053,-2.6811E-05],[132.10874,-2.6295E-05],[132.11219,-2.217E-05],[132.11564,-2.6811E-05],[132.11909,-2.5264E-05],[132.12254,-2.5779E-05],[132.12598,-3.1967E-05],[132.12943,-2.6811E-05],[132.13288,-2.7326E-05],[132.13633,-2.8357E-05],[132.13978,-3.042E-05],[132.14322,-3.042E-05],[132.14667,-2.5779E-05],[132.15012,-2.6811E-05],[132.15357,-2.6811E-05],[132.15702,-3.1451E-05],[132.16046,-3.2998E-05],[132.16391,-2.9389E-05],[132.16736,-3.0935E-05],[132.17081,-3.2482E-05],[132.17426,-2.8357E-05],[132.1777,-3.042E-05],[132.18115,-3.5576E-05],[132.1846,-2.9389E-05],[132.18805,-2.7326E-05],[132.1915,-2.7326E-05],[132.19494,-3.2482E-05],[132.19839,-3.1451E-05],[132.20184,-2.8357E-05],[132.20529,-3.0935E-05],[132.20874,-2.6295E-05],[132.21218,-2.7326E-05],[132.21563,-2.7326E-05],[132.21908,-2.8873E-05],[132.22253,-3.2482E-05],[132.22598,-2.7842E-05],[132.22942,-2.5779E-05]]}
-{"quant":[132.695,-2.9234E-05],"mems":[[132.59836,-3.042E-05],[132.60181,-2.9904E-05],[132.60526,-2.7842E-05],[132.6087,-2.7842E-05],[132.61215,-2.8357E-05],[132.6156,-3.2998E-05],[132.61905,-2.8357E-05],[132.6225,-2.7842E-05],[132.62594,-3.2998E-05],[132.62939,-3.2482E-05],[132.63284,-3.1967E-05],[132.63629,-2.9904E-05],[132.63974,-2.7842E-05],[132.64318,-2.7842E-05],[132.64663,-3.042E-05],[132.65008,-2.9904E-05],[132.65353,-2.8357E-05],[132.65698,-3.1451E-05],[132.66042,-3.0935E-05],[132.66387,-3.1967E-05],[132.66732,-2.9904E-05],[132.67077,-3.1451E-05],[132.67422,-3.506E-05],[132.67766,-3.3513E-05],[132.68111,-2.9904E-05],[132.68456,-2.5264E-05],[132.68801,-3.042E-05],[132.69146,-3.1967E-05],[132.6949,-3.1451E-05],[132.69835,-3.2482E-05],[132.7018,-3.042E-05],[132.70525,-3.2482E-05],[132.7087,-2.9389E-05],[132.71214,-2.8357E-05],[132.71559,-3.3513E-05],[132.71904,-3.2482E-05],[132.72249,-2.9904E-05],[132.72594,-2.6811E-05],[132.72938,-2.7842E-05],[132.73283,-2.7842E-05],[132.73628,-2.5779E-05],[132.73973,-3.2482E-05],[132.74318,-3.506E-05],[132.74662,-3.042E-05],[132.75007,-2.9389E-05],[132.75352,-3.1967E-05],[132.75697,-3.0935E-05],[132.76042,-2.7842E-05],[132.76386,-2.8873E-05],[132.76731,-2.8357E-05],[132.77076,-2.4748E-05],[132.77421,-2.7326E-05],[132.77766,-2.9904E-05],[132.7811,-2.5779E-05],[132.78455,-2.2686E-05],[132.788,-2.8873E-05],[132.79145,-3.0935E-05],[132.7949,-2.6811E-05],[132.79834,-2.7326E-05],[132.80179,-3.1451E-05],[132.80524,-3.3513E-05],[132.80869,-2.5264E-05],[132.81214,-2.6295E-05],[132.81558,-3.5576E-05],[132.81903,-3.1967E-05],[132.82248,-3.0935E-05],[132.82593,-3.042E-05],[132.82938,-2.6811E-05],[132.83282,-2.7842E-05],[132.83627,-3.0935E-05],[132.83972,-2.7842E-05],[132.84317,-3.2482E-05],[132.84662,-3.5576E-05],[132.85006,-2.9389E-05],[132.85351,-3.042E-05],[132.85696,-2.8873E-05],[132.86041,-3.042E-05],[132.86386,-3.042E-05],[132.8673,-2.7842E-05],[132.87075,-2.9389E-05],[132.8742,-3.1967E-05],[132.87765,-3.1967E-05],[132.8811,-3.3513E-05],[132.88454,-3.3513E-05],[132.88799,-2.8357E-05],[132.89144,-2.7842E-05],[132.89489,-2.9389E-05],[132.89834,-2.9904E-05]]}
-{"quant":[133.219,-2.8873E-05],"mems":[[133.11901,-3.1451E-05],[133.12246,-2.9389E-05],[133.1259,-2.6811E-05],[133.12935,-3.0935E-05],[133.1328,-2.9389E-05],[133.13625,-2.9389E-05],[133.1397,-2.9389E-05],[133.14314,-2.6811E-05],[133.14659,-3.1967E-05],[133.15004,-3.042E-05],[133.15349,-2.8873E-05],[133.15694,-3.2998E-05],[133.16038,-3.0935E-05],[133.16383,-2.7842E-05],[133.16728,-2.9904E-05],[133.17073,-2.9904E-05],[133.17418,-2.9904E-05],[133.17762,-3.2998E-05],[133.18107,-2.8357E-05],[133.18452,-2.4233E-05],[133.18797,-2.9389E-05],[133.19142,-3.2998E-05],[133.19486,-2.9389E-05],[133.19831,-2.7326E-05],[133.20176,-3.2482E-05],[133.20521,-3.0935E-05],[133.20866,-2.6811E-05],[133.2121,-2.5779E-05],[133.21555,-2.5264E-05],[133.219,-3.2482E-05],[133.22245,-3.3513E-05],[133.2259,-2.6811E-05],[133.22934,-2.7326E-05],[133.23279,-2.7842E-05],[133.23624,-2.9389E-05],[133.23969,-2.8873E-05],[133.24314,-3.0935E-05],[133.24658,-3.0935E-05],[133.25003,-3.042E-05],[133.25348,-2.8873E-05],[133.25693,-2.217E-05],[133.26038,-2.7842E-05],[133.26382,-2.9389E-05],[133.26727,-2.6811E-05],[133.27072,-2.7326E-05],[133.27417,-2.217E-05],[133.27762,-2.6811E-05],[133.28106,-3.2482E-05],[133.28451,-2.9389E-05],[133.28796,-2.7326E-05],[133.29141,-2.7326E-05],[133.29486,-3.042E-05],[133.2983,-3.1451E-05],[133.30175,-2.5264E-05],[133.3052,-2.9389E-05],[133.30865,-3.0935E-05],[133.3121,-2.6295E-05],[133.31554,-3.1451E-05],[133.31899,-3.2482E-05],[133.32244,-3.0935E-05],[133.32589,-2.8357E-05],[133.32934,-2.6811E-05],[133.33278,-2.7326E-05],[133.33623,-2.4233E-05],[133.33968,-2.6811E-05],[133.34313,-3.042E-05],[133.34658,-2.8357E-05],[133.35002,-2.7842E-05],[133.35347,-2.9389E-05],[133.35692,-2.5779E-05],[133.36037,-2.8357E-05],[133.36382,-3.5576E-05],[133.36726,-3.506E-05],[133.37071,-3.1967E-05],[133.37416,-2.7326E-05],[133.37761,-2.7842E-05],[133.38106,-3.1451E-05],[133.3845,-2.9904E-05],[133.38795,-2.5779E-05],[133.3914,-2.4748E-05],[133.39485,-2.9389E-05],[133.3983,-3.2482E-05],[133.40174,-2.7326E-05],[133.40519,-2.217E-05],[133.40864,-2.5264E-05],[133.41209,-2.4233E-05],[133.41554,-2.7842E-05],[133.41898,-3.2998E-05],[133.42243,-3.2998E-05]]}
-{"quant":[133.704,-2.901E-05],"mems":[[133.60518,-3.042E-05],[133.60862,-2.7842E-05],[133.61207,-2.4748E-05],[133.61552,-3.1967E-05],[133.61897,-3.1451E-05],[133.62242,-2.8357E-05],[133.62586,-2.7326E-05],[133.62931,-2.7326E-05],[133.63276,-2.8357E-05],[133.63621,-2.8873E-05],[133.63966,-3.2482E-05],[133.6431,-2.6811E-05],[133.64655,-2.7842E-05],[133.65,-2.9389E-05],[133.65345,-2.4748E-05],[133.6569,-3.4544E-05],[133.66034,-3.1967E-05],[133.66379,-2.8873E-05],[133.66724,-3.1451E-05],[133.67069,-2.1655E-05],[133.67414,-2.9904E-05],[133.67758,-3.3513E-05],[133.68103,-2.9389E-05],[133.68448,-3.0935E-05],[133.68793,-2.5264E-05],[133.69138,-3.1451E-05],[133.69482,-3.0935E-05],[133.69827,-2.6295E-05],[133.70172,-3.0935E-05],[133.70517,-2.8873E-05],[133.70862,-2.2686E-05],[133.71206,-2.2686E-05],[133.71551,-2.9904E-05],[133.71896,-3.042E-05],[133.72241,-3.1451E-05],[133.72586,-3.042E-05],[133.7293,-2.5779E-05],[133.73275,-2.8873E-05],[133.7362,-2.7842E-05],[133.73965,-2.9389E-05],[133.7431,-3.2482E-05],[133.74654,-2.9904E-05],[133.74999,-2.6811E-05],[133.75344,-2.7842E-05],[133.75689,-3.042E-05],[133.76034,-2.8873E-05],[133.76378,-2.7326E-05],[133.76723,-2.8357E-05],[133.77068,-2.6295E-05],[133.77413,-2.6295E-05],[133.77758,-3.1451E-05],[133.78102,-3.4544E-05],[133.78447,-3.2482E-05],[133.78792,-2.8357E-05],[133.79137,-3.042E-05],[133.79482,-3.1967E-05],[133.79826,-3.4029E-05],[133.80171,-2.9904E-05],[133.80516,-2.4233E-05],[133.80861,-2.7326E-05],[133.81206,-2.8357E-05],[133.8155,-3.0935E-05],[133.81895,-3.0935E-05],[133.8224,-2.7326E-05],[133.82585,-2.9389E-05],[133.8293,-2.9389E-05],[133.83274,-2.8357E-05],[133.83619,-2.6811E-05],[133.83964,-2.5264E-05],[133.84309,-2.6811E-05],[133.84654,-2.8357E-05],[133.84998,-2.5779E-05],[133.85343,-2.7326E-05],[133.85688,-3.5576E-05],[133.86033,-3.2998E-05],[133.86378,-2.8357E-05],[133.86722,-2.9904E-05],[133.87067,-2.6811E-05],[133.87412,-2.7842E-05],[133.87757,-2.9904E-05],[133.88102,-2.9389E-05],[133.88446,-2.6295E-05],[133.88791,-2.6295E-05],[133.89136,-3.1967E-05],[133.89481,-2.9904E-05],[133.89826,-2.6295E-05],[133.9017,-2.9389E-05],[133.90515,-2.9389E-05]]}
-{"quant":[134.216,-2.8151E-05],"mems":[[134.11893,-2.7842E-05],[134.12238,-3.042E-05],[134.12582,-2.8873E-05],[134.12927,-2.4748E-05],[134.13272,-2.4748E-05],[134.13617,-2.8873E-05],[134.13962,-2.7326E-05],[134.14306,-2.7842E-05],[134.14651,-2.9904E-05],[134.14996,-2.6811E-05],[134.15341,-3.0935E-05],[134.15686,-3.042E-05],[134.1603,-2.8357E-05],[134.16375,-3.042E-05],[134.1672,-2.7842E-05],[134.17065,-2.8873E-05],[134.1741,-2.8873E-05],[134.17754,-2.8873E-05],[134.18099,-3.4029E-05],[134.18444,-3.5576E-05],[134.18789,-3.2482E-05],[134.19134,-2.5264E-05],[134.19478,-2.7326E-05],[134.19823,-2.9904E-05],[134.20168,-2.9389E-05],[134.20513,-2.8357E-05],[134.20858,-2.2686E-05],[134.21202,-2.8357E-05],[134.21547,-2.7326E-05],[134.21892,-2.3717E-05],[134.22237,-2.8873E-05],[134.22582,-2.8873E-05],[134.22926,-2.5264E-05],[134.23271,-2.5264E-05],[134.23616,-3.0935E-05],[134.23961,-2.8873E-05],[134.24306,-2.9389E-05],[134.2465,-2.9389E-05],[134.24995,-2.2686E-05],[134.2534,-2.6295E-05],[134.25685,-2.7842E-05],[134.2603,-2.8873E-05],[134.26374,-2.9389E-05],[134.26719,-2.6811E-05],[134.27064,-2.8873E-05],[134.27409,-2.9389E-05],[134.27754,-2.7326E-05],[134.28098,-2.7326E-05],[134.28443,-3.1967E-05],[134.28788,-2.8873E-05],[134.29133,-2.3717E-05],[134.29478,-2.5264E-05],[134.29822,-2.6295E-05],[134.30167,-3.1451E-05],[134.30512,-3.1967E-05],[134.30857,-3.1967E-05],[134.31202,-3.1451E-05],[134.31546,-2.6295E-05],[134.31891,-2.9904E-05],[134.32236,-3.042E-05],[134.32581,-2.9904E-05],[134.32926,-2.7842E-05],[134.3327,-2.4233E-05],[134.33615,-2.6811E-05],[134.3396,-3.042E-05],[134.34305,-3.506E-05],[134.3465,-2.7842E-05],[134.34994,-2.7326E-05],[134.35339,-3.2998E-05],[134.35684,-3.042E-05],[134.36029,-3.2482E-05],[134.36374,-2.8873E-05],[134.36718,-2.8357E-05],[134.37063,-2.9389E-05],[134.37408,-2.7842E-05],[134.37753,-3.0935E-05],[134.38098,-2.9904E-05],[134.38442,-2.9904E-05],[134.38787,-2.9904E-05],[134.39132,-2.7842E-05],[134.39477,-3.1451E-05],[134.39822,-3.1451E-05],[134.40166,-2.7326E-05],[134.40511,-2.5779E-05],[134.40856,-2.6295E-05],[134.41201,-2.8873E-05],[134.41546,-3.042E-05],[134.4189,-3.1451E-05]]}
-{"quant":[134.739,-2.9165E-05],"mems":[[134.63908,-2.9904E-05],[134.64252,-2.4233E-05],[134.64595,-2.6811E-05],[134.64939,-2.7842E-05],[134.65282,-2.9389E-05],[134.65626,-3.2482E-05],[134.65969,-2.9904E-05],[134.66313,-3.1451E-05],[134.66656,-2.8873E-05],[134.66999,-2.7326E-05],[134.67343,-3.4544E-05],[134.67686,-3.7122E-05],[134.6803,-3.042E-05],[134.68373,-2.7842E-05],[134.68717,-3.1451E-05],[134.6906,-2.8873E-05],[134.69404,-2.8873E-05],[134.69747,-3.2482E-05],[134.70091,-3.4544E-05],[134.70434,-3.6091E-05],[134.70778,-2.9904E-05],[134.71121,-2.2686E-05],[134.71465,-2.6295E-05],[134.71808,-2.9904E-05],[134.72151,-2.6811E-05],[134.72495,-2.4233E-05],[134.72838,-2.5264E-05],[134.73182,-3.0935E-05],[134.73525,-3.042E-05],[134.73869,-2.9389E-05],[134.74212,-2.7842E-05],[134.74556,-2.6295E-05],[134.74899,-2.6811E-05],[134.75243,-2.6295E-05],[134.75586,-2.8873E-05],[134.7593,-2.7326E-05],[134.76273,-3.0935E-05],[134.76617,-2.9904E-05],[134.7696,-2.4748E-05],[134.77303,-2.8357E-05],[134.77647,-3.1967E-05],[134.7799,-3.2998E-05],[134.78334,-2.9389E-05],[134.78677,-3.042E-05],[134.79021,-3.0935E-05],[134.79364,-2.5264E-05],[134.79708,-2.6295E-05],[134.80051,-3.2482E-05],[134.80395,-3.042E-05],[134.80738,-3.0935E-05],[134.81082,-2.9389E-05],[134.81425,-2.6295E-05],[134.81769,-3.4544E-05],[134.82112,-3.3513E-05],[134.82455,-2.6295E-05],[134.82799,-2.5264E-05],[134.83142,-2.5264E-05],[134.83486,-2.9904E-05],[134.83829,-3.506E-05],[134.84173,-3.0935E-05],[134.84516,-3.1451E-05],[134.8486,-3.3513E-05],[134.85203,-2.9904E-05],[134.85547,-3.0935E-05],[134.8589,-3.1967E-05],[134.86234,-2.8357E-05],[134.86577,-2.7326E-05],[134.86921,-2.7326E-05],[134.87264,-2.4233E-05],[134.87607,-2.7842E-05],[134.87951,-2.6811E-05],[134.88294,-2.5264E-05],[134.88638,-3.0935E-05],[134.88981,-2.9389E-05],[134.89325,-2.7842E-05],[134.89668,-2.8357E-05],[134.90012,-3.2482E-05],[134.90355,-3.042E-05],[134.90699,-2.4233E-05],[134.91042,-2.8357E-05],[134.91386,-3.0935E-05],[134.91729,-3.1451E-05],[134.92073,-3.4029E-05],[134.92416,-3.4029E-05],[134.92759,-2.8873E-05],[134.93103,-2.9904E-05],[134.93446,-3.2998E-05],[134.9379,-3.1451E-05],[134.94133,-2.9904E-05]]}
-{"quant":[135.483,-2.956E-05],"mems":[[135.38441,-3.042E-05],[135.38784,-2.8357E-05],[135.39127,-2.8873E-05],[135.39471,-3.4029E-05],[135.39814,-3.2998E-05],[135.40158,-2.6811E-05],[135.40501,-2.3717E-05],[135.40845,-2.5779E-05],[135.41188,-3.042E-05],[135.41532,-3.3513E-05],[135.41875,-3.3513E-05],[135.42219,-3.2482E-05],[135.42562,-3.042E-05],[135.42906,-2.9904E-05],[135.43249,-2.9904E-05],[135.43593,-3.1967E-05],[135.43936,-3.042E-05],[135.44279,-2.7326E-05],[135.44623,-2.8357E-05],[135.44966,-3.0935E-05],[135.4531,-3.0935E-05],[135.45653,-3.0935E-05],[135.45997,-3.042E-05],[135.4634,-2.7842E-05],[135.46684,-3.042E-05],[135.47027,-2.8357E-05],[135.47371,-2.5779E-05],[135.47714,-2.7842E-05],[135.48058,-3.1967E-05],[135.48401,-3.5576E-05],[135.48745,-3.042E-05],[135.49088,-2.8357E-05],[135.49431,-2.8357E-05],[135.49775,-2.9904E-05],[135.50118,-3.1451E-05],[135.50462,-2.8873E-05],[135.50805,-3.1967E-05],[135.51149,-3.042E-05],[135.51492,-3.0935E-05],[135.51836,-3.3513E-05],[135.52179,-2.7326E-05],[135.52523,-2.8873E-05],[135.52866,-2.6811E-05],[135.5321,-2.8873E-05],[135.53553,-3.1967E-05],[135.53897,-2.6811E-05],[135.5424,-3.042E-05],[135.54583,-2.8873E-05],[135.54927,-2.7842E-05],[135.5527,-3.0935E-05],[135.55614,-2.9389E-05],[135.55957,-2.9904E-05],[135.56301,-3.2998E-05],[135.56644,-2.7842E-05],[135.56988,-2.1139E-05],[135.57331,-2.8357E-05],[135.57675,-2.7326E-05],[135.58018,-2.7842E-05],[135.58362,-3.3513E-05],[135.58705,-2.7842E-05],[135.59049,-2.8873E-05],[135.59392,-2.8357E-05],[135.59735,-2.8873E-05],[135.60079,-2.8873E-05],[135.60422,-2.3202E-05],[135.60766,-2.5779E-05],[135.61109,-2.7326E-05],[135.61453,-2.9389E-05],[135.61796,-2.9389E-05],[135.6214,-2.5779E-05],[135.62483,-2.4748E-05],[135.62827,-2.5264E-05],[135.6317,-2.8873E-05],[135.63514,-2.5779E-05],[135.63857,-2.5779E-05],[135.64201,-2.6811E-05],[135.64544,-2.4748E-05],[135.64887,-2.6295E-05],[135.65231,-2.5779E-05],[135.65574,-2.7326E-05],[135.65918,-2.8357E-05],[135.66261,-3.0935E-05],[135.66605,-3.042E-05],[135.66948,-2.4748E-05],[135.67292,-2.7842E-05],[135.67635,-3.0935E-05],[135.67979,-2.9389E-05],[135.68322,-3.0935E-05]]}
-{"quant":[135.986,-3.066E-05],"mems":[[135.8893,-2.9904E-05],[135.89274,-2.9389E-05],[135.89617,-3.3513E-05],[135.89961,-3.6607E-05],[135.90304,-3.0935E-05],[135.90647,-3.1451E-05],[135.90991,-3.4029E-05],[135.91334,-3.1451E-05],[135.91678,-2.9389E-05],[135.92021,-3.4029E-05],[135.92365,-3.4029E-05],[135.92708,-2.9389E-05],[135.93052,-2.9389E-05],[135.93395,-3.2482E-05],[135.93739,-3.4029E-05],[135.94082,-2.7842E-05],[135.94426,-2.5779E-05],[135.94769,-2.7842E-05],[135.95113,-2.7326E-05],[135.95456,-3.0935E-05],[135.95799,-3.0935E-05],[135.96143,-2.7842E-05],[135.96486,-2.5779E-05],[135.9683,-2.8873E-05],[135.97173,-3.1967E-05],[135.97517,-3.1967E-05],[135.9786,-3.0935E-05],[135.98204,-3.0935E-05],[135.98547,-3.2482E-05],[135.98891,-2.9904E-05],[135.99234,-2.9904E-05],[135.99578,-3.2998E-05],[135.99921,-2.9904E-05],[136.00265,-2.6295E-05],[136.00608,-2.8357E-05],[136.00951,-2.8357E-05],[136.01295,-2.8873E-05],[136.01638,-3.2482E-05],[136.01982,-3.1451E-05],[136.02325,-2.9904E-05],[136.02669,-3.3513E-05],[136.03012,-3.4029E-05],[136.03356,-3.2482E-05],[136.03699,-3.2998E-05],[136.04043,-2.8873E-05],[136.04386,-2.9389E-05],[136.0473,-2.9904E-05],[136.05073,-2.8357E-05],[136.05417,-3.0935E-05],[136.0576,-3.2998E-05],[136.06103,-3.0935E-05],[136.06447,-2.8357E-05],[136.0679,-2.9904E-05],[136.07134,-2.9904E-05],[136.07477,-3.1451E-05],[136.07821,-3.1967E-05],[136.08164,-3.1967E-05],[136.08508,-3.4029E-05],[136.08851,-2.9389E-05],[136.09195,-2.8873E-05],[136.09538,-3.2482E-05],[136.09882,-3.2998E-05],[136.10225,-3.2482E-05],[136.10569,-3.0935E-05],[136.10912,-3.042E-05],[136.11255,-2.7842E-05],[136.11599,-2.4748E-05],[136.11942,-2.7326E-05],[136.12286,-3.1967E-05],[136.12629,-2.7326E-05],[136.12973,-2.5264E-05],[136.13316,-2.7842E-05],[136.1366,-2.5779E-05],[136.14003,-2.9389E-05],[136.14347,-3.042E-05],[136.1469,-2.8357E-05],[136.15034,-3.1451E-05],[136.15377,-3.2482E-05],[136.15721,-2.9389E-05],[136.16064,-2.9904E-05],[136.16407,-2.9904E-05],[136.16751,-2.7326E-05],[136.17094,-2.7326E-05],[136.17438,-3.2482E-05],[136.17781,-3.4544E-05],[136.18125,-3.0935E-05],[136.18468,-2.8873E-05],[136.18812,-2.6811E-05]]}
-{"quant":[136.45,-2.9956E-05],"mems":[[136.35298,-2.8873E-05],[136.35642,-3.2482E-05],[136.35985,-3.3513E-05],[136.36329,-2.7842E-05],[136.36672,-2.6295E-05],[136.37015,-2.9389E-05],[136.37359,-3.1451E-05],[136.37702,-3.6091E-05],[136.38046,-3.7122E-05],[136.38389,-2.7842E-05],[136.38733,-2.3202E-05],[136.39076,-2.6295E-05],[136.3942,-3.1451E-05],[136.39763,-3.1451E-05],[136.40107,-2.8873E-05],[136.4045,-2.6811E-05],[136.40794,-2.5779E-05],[136.41137,-3.1967E-05],[136.41481,-3.042E-05],[136.41824,-2.6295E-05],[136.42167,-3.2482E-05],[136.42511,-3.4544E-05],[136.42854,-2.9389E-05],[136.43198,-2.7326E-05],[136.43541,-3.1451E-05],[136.43885,-3.0935E-05],[136.44228,-2.9904E-05],[136.44572,-2.9904E-05],[136.44915,-3.042E-05],[136.45259,-3.1451E-05],[136.45602,-2.8873E-05],[136.45946,-2.9904E-05],[136.46289,-2.7842E-05],[136.46633,-2.8357E-05],[136.46976,-2.9904E-05],[136.47319,-2.9904E-05],[136.47663,-3.1451E-05],[136.48006,-2.9904E-05],[136.4835,-2.9389E-05],[136.48693,-2.8357E-05],[136.49037,-2.8357E-05],[136.4938,-2.6811E-05],[136.49724,-2.6295E-05],[136.50067,-3.042E-05],[136.50411,-2.7326E-05],[136.50754,-2.6295E-05],[136.51098,-2.9904E-05],[136.51441,-2.9904E-05],[136.51785,-3.0935E-05],[136.52128,-3.4029E-05],[136.52471,-3.4544E-05],[136.52815,-3.042E-05],[136.53158,-2.9904E-05],[136.53502,-3.7638E-05],[136.53845,-3.6091E-05],[136.54189,-2.8873E-05],[136.54532,-2.5264E-05],[136.54876,-2.5264E-05],[136.55219,-3.506E-05],[136.55563,-3.4029E-05],[136.55906,-2.9389E-05],[136.5625,-3.1451E-05],[136.56593,-3.042E-05],[136.56937,-3.2998E-05],[136.5728,-2.8357E-05],[136.57623,-2.9389E-05],[136.57967,-3.4029E-05],[136.5831,-2.9389E-05],[136.58654,-2.7326E-05],[136.58997,-2.5779E-05],[136.59341,-2.7326E-05],[136.59684,-3.042E-05],[136.60028,-3.042E-05],[136.60371,-3.1967E-05],[136.60715,-3.506E-05],[136.61058,-3.2482E-05],[136.61402,-2.9389E-05],[136.61745,-3.1967E-05],[136.62089,-2.8873E-05],[136.62432,-2.5264E-05],[136.62775,-2.7842E-05],[136.63119,-2.7842E-05],[136.63462,-2.8357E-05],[136.63806,-3.1967E-05],[136.64149,-3.2482E-05],[136.64493,-2.9904E-05],[136.64836,-2.9389E-05],[136.6518,-3.0935E-05]]}
-{"quant":[136.92,-0.81202],"mems":[[136.82697,-2.8873E-05],[136.8304,-2.7842E-05],[136.83383,-3.1967E-05],[136.83727,-3.1967E-05],[136.8407,-2.7842E-05],[136.84414,-3.1451E-05],[136.84757,-3.042E-05],[136.85101,-2.8357E-05],[136.85444,-3.2998E-05],[136.85788,-3.4029E-05],[136.86131,-2.9904E-05],[136.86475,-2.7326E-05],[136.86818,-2.6811E-05],[136.87162,-2.4748E-05],[136.87505,-2.4233E-05],[136.87849,-2.6811E-05],[136.88192,-3.1967E-05],[136.88535,-2.9389E-05],[136.88879,-2.6295E-05],[136.89222,-2.9389E-05],[136.89566,-2.5264E-05],[136.89909,-2.6811E-05],[136.90253,-2.8873E-05],[136.90596,-2.7326E-05],[136.9094,-2.9904E-05],[136.91283,-2.8357E-05],[136.91627,-2.9389E-05],[136.9197,-3.1451E-05],[136.92314,-3.0935E-05],[136.92657,-3.2998E-05],[136.93001,-2.9904E-05],[136.93344,-2.7842E-05],[136.93687,-2.8873E-05],[136.94031,-2.8357E-05],[136.94374,-2.6295E-05],[136.94718,-2.5779E-05],[136.95061,-2.8873E-05],[136.95405,-2.8873E-05],[136.95748,-2.4748E-05],[136.96092,-2.6295E-05],[136.96435,-2.8357E-05],[136.96779,-2.7326E-05],[136.97122,-3.042E-05],[136.97466,-3.042E-05],[136.97809,-2.8357E-05],[136.98153,-3.042E-05],[136.98496,-3.3513E-05],[136.98839,-3.1451E-05],[136.99183,-3.1451E-05],[136.99526,-3.0935E-05],[136.9987,-2.8873E-05],[137.00213,-2.9389E-05],[137.00557,-2.3717E-05],[137.009,-2.4748E-05],[137.01244,-2.7842E-05],[137.01587,-3.0935E-05],[137.01931,-2.9904E-05],[137.02274,-2.8357E-05],[137.02618,-2.9389E-05],[137.02961,-2.7842E-05],[137.03305,-3.3513E-05],[137.03648,-3.1451E-05],[137.03991,-2.5779E-05],[137.04335,-2.7326E-05],[137.04678,-2.8357E-05],[137.05022,-3.1451E-05],[137.05365,-3.1967E-05],[137.05709,-2.9904E-05],[137.06052,-2.8873E-05],[137.06396,-3.1967E-05],[137.06739,-2.9389E-05],[137.07083,-2.6295E-05],[137.07426,-3.2482E-05],[137.0777,-3.2998E-05],[137.08113,-3.1451E-05],[137.08457,-2.7842E-05],[137.088,-2.8357E-05],[137.09143,-3.506E-05],[137.09486,-3.2482E-05],[137.0983,-2.8873E-05],[137.10173,-2.6811E-05],[137.10516,-2.6811E-05],[137.10859,-2.8873E-05],[137.11202,-2.8873E-05],[137.11546,-2.9904E-05],[137.11889,-3.1967E-05],[137.12232,-2.9904E-05],[137.12575,-2.9904E-05]]}
-{"quant":[137.388,-2.9423E-05],"mems":[[137.29049,-2.9904E-05],[137.29392,-3.0935E-05],[137.29735,-3.042E-05],[137.30078,-2.9904E-05],[137.30422,-2.5264E-05],[137.30765,-2.8873E-05],[137.31108,-3.1967E-05],[137.31451,-2.6295E-05],[137.31794,-2.6295E-05],[137.32138,-2.9904E-05],[137.32481,-2.8873E-05],[137.32824,-2.4748E-05],[137.33167,-3.0935E-05],[137.3351,-3.2998E-05],[137.33854,-2.9904E-05],[137.34197,-3.042E-05],[137.3454,-2.6295E-05],[137.34883,-2.8357E-05],[137.35226,-2.7842E-05],[137.3557,-3.0935E-05],[137.35913,-3.4544E-05],[137.36256,-2.4748E-05],[137.36599,-2.4748E-05],[137.36942,-2.9904E-05],[137.37286,-3.1967E-05],[137.37629,-2.9904E-05],[137.37972,-2.6811E-05],[137.38315,-2.7326E-05],[137.38658,-2.6811E-05],[137.39002,-2.5779E-05],[137.39345,-2.4748E-05],[137.39688,-3.042E-05],[137.40031,-3.8154E-05],[137.40374,-3.1451E-05],[137.40718,-2.4233E-05],[137.41061,-2.7326E-05],[137.41404,-3.042E-05],[137.41747,-3.042E-05],[137.4209,-2.7326E-05],[137.42434,-2.3717E-05],[137.42777,-2.9904E-05],[137.4312,-3.4544E-05],[137.43463,-3.2482E-05],[137.43806,-3.506E-05],[137.4415,-3.0935E-05],[137.44493,-2.6811E-05],[137.44836,-2.9389E-05],[137.45179,-2.7326E-05],[137.45522,-3.042E-05],[137.45866,-2.9904E-05],[137.46209,-2.5779E-05],[137.46552,-2.9904E-05],[137.46895,-3.0935E-05],[137.47238,-2.8873E-05],[137.47582,-2.8357E-05],[137.47925,-2.9389E-05],[137.48268,-3.042E-05],[137.48611,-2.8873E-05],[137.48954,-2.9389E-05],[137.49298,-2.8357E-05],[137.49641,-3.1451E-05],[137.49984,-3.4544E-05],[137.50327,-2.7326E-05],[137.5067,-3.0935E-05],[137.51014,-3.506E-05],[137.51357,-3.042E-05],[137.517,-3.2998E-05],[137.52043,-3.0935E-05],[137.52386,-2.8873E-05],[137.5273,-3.4544E-05],[137.53073,-3.4544E-05],[137.53416,-3.042E-05],[137.53759,-2.9904E-05],[137.54102,-2.9904E-05],[137.54446,-2.7326E-05],[137.54789,-3.0935E-05],[137.55132,-2.9389E-05],[137.55475,-2.6295E-05],[137.55818,-2.9389E-05],[137.56162,-2.8873E-05],[137.56505,-2.9389E-05],[137.56848,-2.8357E-05],[137.57191,-2.8873E-05],[137.57534,-2.9904E-05],[137.57878,-2.9904E-05],[137.58221,-3.042E-05],[137.58564,-2.8873E-05],[137.58907,-3.1967E-05]]}
-{"quant":[137.99,-3.0884E-05],"mems":[[137.89109,-2.9904E-05],[137.89452,-2.8873E-05],[137.89795,-3.2482E-05],[137.90138,-3.042E-05],[137.90482,-2.6295E-05],[137.90825,-3.4544E-05],[137.91168,-3.4544E-05],[137.91511,-3.1967E-05],[137.91854,-3.042E-05],[137.92198,-2.5779E-05],[137.92541,-2.9904E-05],[137.92884,-3.2998E-05],[137.93227,-3.2482E-05],[137.9357,-3.0935E-05],[137.93914,-2.9389E-05],[137.94257,-2.7842E-05],[137.946,-3.0935E-05],[137.94943,-2.7326E-05],[137.95286,-2.5264E-05],[137.9563,-3.2482E-05],[137.95973,-3.2482E-05],[137.96316,-3.1451E-05],[137.96659,-2.8873E-05],[137.97002,-3.1451E-05],[137.97346,-3.506E-05],[137.97689,-3.4544E-05],[137.98032,-3.2482E-05],[137.98375,-2.9389E-05],[137.98718,-3.2482E-05],[137.99062,-3.042E-05],[137.99405,-3.4544E-05],[137.99748,-3.506E-05],[138.00091,-2.7842E-05],[138.00434,-2.9389E-05],[138.00778,-3.042E-05],[138.01121,-3.0935E-05],[138.01464,-3.0935E-05],[138.01807,-3.1967E-05],[138.0215,-3.2482E-05],[138.02494,-2.8357E-05],[138.02837,-2.8357E-05],[138.0318,-3.4029E-05],[138.03523,-3.2482E-05],[138.03866,-2.6811E-05],[138.0421,-2.7842E-05],[138.04553,-3.1451E-05],[138.04896,-3.5576E-05],[138.05239,-3.2482E-05],[138.05582,-3.1967E-05],[138.05926,-3.2482E-05],[138.06269,-2.5264E-05],[138.06612,-3.1451E-05],[138.06955,-3.506E-05],[138.07298,-2.8357E-05],[138.07642,-3.2998E-05],[138.07985,-3.3513E-05],[138.08328,-2.7842E-05],[138.08671,-2.6811E-05],[138.09014,-2.9389E-05],[138.09358,-3.2482E-05],[138.09701,-2.7842E-05],[138.10044,-2.2686E-05],[138.10387,-2.8357E-05],[138.1073,-3.1967E-05],[138.11074,-2.9904E-05],[138.11417,-3.1967E-05],[138.1176,-3.0935E-05],[138.12103,-2.8357E-05],[138.12446,-3.042E-05],[138.1279,-3.1451E-05],[138.13133,-3.1967E-05],[138.13476,-3.2998E-05],[138.13819,-3.1967E-05],[138.14162,-2.8357E-05],[138.14506,-2.7842E-05],[138.14849,-3.2998E-05],[138.15192,-3.1451E-05],[138.15535,-2.8357E-05],[138.15878,-2.8873E-05],[138.16222,-2.6811E-05],[138.16565,-3.1967E-05],[138.16908,-3.506E-05],[138.17251,-3.4029E-05],[138.17594,-3.6091E-05],[138.17938,-3.042E-05],[138.18281,-2.7326E-05],[138.18624,-2.9904E-05],[138.18967,-2.8357E-05],[138.1931,-3.0935E-05]]}
-{"quant":[138.438,-3.0299E-05],"mems":[[138.34068,-2.1655E-05],[138.34411,-2.8357E-05],[138.34754,-3.4029E-05],[138.35098,-2.9389E-05],[138.35441,-3.0935E-05],[138.35784,-3.0935E-05],[138.36127,-3.042E-05],[138.3647,-2.3202E-05],[138.36814,-2.4748E-05],[138.37157,-3.6091E-05],[138.375,-2.9904E-05],[138.37843,-2.7326E-05],[138.38186,-2.9904E-05],[138.3853,-2.9389E-05],[138.38873,-3.3513E-05],[138.39216,-2.9904E-05],[138.39559,-2.8873E-05],[138.39902,-3.042E-05],[138.40246,-2.8357E-05],[138.40589,-2.9389E-05],[138.40932,-3.1451E-05],[138.41275,-3.1967E-05],[138.41618,-2.9389E-05],[138.41962,-2.7326E-05],[138.42305,-2.6811E-05],[138.42648,-3.1967E-05],[138.42991,-3.2998E-05],[138.43334,-2.9389E-05],[138.43678,-2.8873E-05],[138.44021,-2.4233E-05],[138.44364,-2.6295E-05],[138.44707,-3.1451E-05],[138.4505,-2.7326E-05],[138.45394,-2.8357E-05],[138.45737,-2.8357E-05],[138.4608,-2.9904E-05],[138.46423,-3.4544E-05],[138.46766,-2.9904E-05],[138.4711,-2.7326E-05],[138.47453,-3.042E-05],[138.47796,-3.0935E-05],[138.48139,-2.8357E-05],[138.48482,-3.042E-05],[138.48826,-3.2482E-05],[138.49169,-3.3513E-05],[138.49512,-3.4029E-05],[138.49855,-2.8357E-05],[138.50198,-2.8357E-05],[138.50542,-3.0935E-05],[138.50885,-2.9389E-05],[138.51228,-3.1967E-05],[138.51571,-3.4029E-05],[138.51914,-2.9904E-05],[138.52258,-3.1967E-05],[138.52601,-3.3513E-05],[138.52944,-2.7842E-05],[138.53287,-3.1967E-05],[138.5363,-3.2998E-05],[138.53974,-2.9904E-05],[138.54317,-3.2998E-05],[138.5466,-3.042E-05],[138.55003,-2.9389E-05],[138.55346,-3.2998E-05],[138.5569,-2.9389E-05],[138.56033,-3.042E-05],[138.56376,-3.3513E-05],[138.56719,-3.2998E-05],[138.57062,-3.4544E-05],[138.57406,-2.8873E-05],[138.57749,-2.8873E-05],[138.58092,-3.042E-05],[138.58435,-2.8873E-05],[138.58778,-3.042E-05],[138.59122,-3.042E-05],[138.59465,-3.4544E-05],[138.59808,-2.8873E-05],[138.60151,-2.7326E-05],[138.60494,-3.1451E-05],[138.60838,-2.9389E-05],[138.61181,-3.0935E-05],[138.61524,-2.8873E-05],[138.61867,-2.8873E-05],[138.6221,-2.6295E-05],[138.62554,-2.8357E-05],[138.62897,-3.042E-05],[138.6324,-3.0935E-05],[138.63583,-3.1967E-05],[138.63926,-2.9389E-05]]}
-{"quant":[138.883,-3.0849E-05],"mems":[[138.78341,-2.9904E-05],[138.78684,-3.6091E-05],[138.79027,-3.1451E-05],[138.7937,-2.9389E-05],[138.79714,-3.1967E-05],[138.80057,-2.9389E-05],[138.804,-2.8357E-05],[138.80743,-3.0935E-05],[138.81086,-3.1451E-05],[138.8143,-3.2482E-05],[138.81773,-3.042E-05],[138.82116,-2.8873E-05],[138.82459,-2.9904E-05],[138.82802,-2.6811E-05],[138.83146,-2.7326E-05],[138.83489,-3.042E-05],[138.83832,-3.2482E-05],[138.84175,-2.9904E-05],[138.84518,-2.8357E-05],[138.84862,-3.042E-05],[138.85205,-3.0935E-05],[138.85548,-3.2482E-05],[138.85891,-2.8357E-05],[138.86234,-2.7326E-05],[138.86578,-3.3513E-05],[138.86921,-3.2482E-05],[138.87264,-2.9904E-05],[138.87607,-3.042E-05],[138.8795,-3.1451E-05],[138.88294,-3.1967E-05],[138.88637,-3.506E-05],[138.8898,-3.4029E-05],[138.89323,-2.8357E-05],[138.89666,-2.8873E-05],[138.9001,-2.5779E-05],[138.90353,-2.8357E-05],[138.90696,-3.2482E-05],[138.91039,-2.9389E-05],[138.91382,-3.5576E-05],[138.91726,-3.506E-05],[138.92069,-2.9904E-05],[138.92412,-2.9904E-05],[138.92755,-3.2998E-05],[138.93098,-3.1967E-05],[138.93442,-2.7842E-05],[138.93785,-3.1967E-05],[138.94128,-3.042E-05],[138.94471,-3.4029E-05],[138.94814,-3.4029E-05],[138.95158,-2.6295E-05],[138.95501,-2.9904E-05],[138.95844,-2.9389E-05],[138.96187,-3.042E-05],[138.9653,-3.4029E-05],[138.96874,-2.9389E-05],[138.97217,-2.7842E-05],[138.9756,-2.7842E-05],[138.97903,-3.042E-05],[138.98246,-3.3513E-05],[138.9859,-3.042E-05],[138.98933,-2.8357E-05],[138.99276,-2.9904E-05],[138.99619,-2.8873E-05],[138.99962,-3.4029E-05],[139.00306,-3.8669E-05],[139.00649,-3.1967E-05],[139.00992,-3.042E-05],[139.01335,-3.042E-05],[139.01678,-2.4233E-05],[139.02022,-2.2686E-05],[139.02365,-2.8873E-05],[139.02708,-3.3513E-05],[139.03051,-2.9904E-05],[139.03394,-2.6295E-05],[139.03738,-2.9389E-05],[139.04081,-2.7842E-05],[139.04424,-3.2998E-05],[139.04767,-3.4544E-05],[139.0511,-3.1451E-05],[139.05454,-3.3513E-05],[139.05797,-2.7842E-05],[139.0614,-2.8873E-05],[139.06483,-3.042E-05],[139.06826,-3.3513E-05],[139.0717,-2.9904E-05],[139.07513,-2.6811E-05],[139.07856,-2.9904E-05],[139.08199,-2.6811E-05],[139.08542,-3.1451E-05]]}
-{"quant":[139.335,-3.1313E-05],"mems":[[139.23643,-3.042E-05],[139.23986,-3.042E-05],[139.2433,-2.8873E-05],[139.24673,-2.6295E-05],[139.25016,-2.8357E-05],[139.25359,-3.0935E-05],[139.25702,-3.042E-05],[139.26046,-2.9904E-05],[139.26389,-3.2998E-05],[139.26732,-3.2998E-05],[139.27075,-3.042E-05],[139.27418,-3.0935E-05],[139.27762,-3.2482E-05],[139.28105,-2.8357E-05],[139.28448,-2.8357E-05],[139.28791,-3.042E-05],[139.29134,-3.042E-05],[139.29478,-3.4029E-05],[139.29821,-3.2482E-05],[139.30164,-3.1967E-05],[139.30507,-3.2482E-05],[139.3085,-3.1451E-05],[139.31194,-3.1967E-05],[139.31537,-2.7842E-05],[139.3188,-2.3202E-05],[139.32223,-2.7326E-05],[139.32566,-3.2482E-05],[139.3291,-3.506E-05],[139.33253,-3.2998E-05],[139.33596,-2.8873E-05],[139.33939,-2.7842E-05],[139.34282,-3.042E-05],[139.34626,-3.2998E-05],[139.34969,-3.4544E-05],[139.35312,-3.506E-05],[139.35655,-3.042E-05],[139.35998,-2.6811E-05],[139.36342,-2.8873E-05],[139.36685,-3.042E-05],[139.37028,-2.8357E-05],[139.37371,-2.7842E-05],[139.37714,-3.2482E-05],[139.38058,-3.5576E-05],[139.38401,-3.1967E-05],[139.38744,-3.1967E-05],[139.39087,-3.7638E-05],[139.3943,-3.4544E-05],[139.39774,-2.6295E-05],[139.40117,-3.042E-05],[139.4046,-3.6607E-05],[139.40803,-3.5576E-05],[139.41146,-3.3513E-05],[139.4149,-2.9389E-05],[139.41833,-2.4748E-05],[139.42176,-3.1451E-05],[139.42519,-3.5576E-05],[139.42862,-3.042E-05],[139.43206,-3.0935E-05],[139.43549,-2.7842E-05],[139.43892,-2.4233E-05],[139.44235,-2.9904E-05],[139.44578,-3.2482E-05],[139.44922,-2.9904E-05],[139.45265,-2.8357E-05],[139.45608,-2.7326E-05],[139.45951,-3.0935E-05],[139.46294,-2.9904E-05],[139.46638,-2.7326E-05],[139.46981,-2.9389E-05],[139.47324,-3.042E-05],[139.47667,-2.8357E-05],[139.4801,-2.9904E-05],[139.48354,-3.4544E-05],[139.48697,-3.3513E-05],[139.4904,-3.2482E-05],[139.49383,-3.2998E-05],[139.49726,-3.3513E-05],[139.5007,-3.0935E-05],[139.50413,-2.8873E-05],[139.50756,-3.2482E-05],[139.51099,-3.1451E-05],[139.51442,-2.8357E-05],[139.51786,-2.8357E-05],[139.52129,-2.8873E-05],[139.52472,-2.8873E-05],[139.52815,-2.8357E-05],[139.53158,-3.0935E-05],[139.53502,-3.2998E-05]]}
-{"quant":[139.806,-2.8873E-05],"mems":[[139.70667,-2.8357E-05],[139.7101,-3.1967E-05],[139.71354,-2.9904E-05],[139.71698,-2.8357E-05],[139.72041,-3.1967E-05],[139.72385,-3.2998E-05],[139.72728,-3.3513E-05],[139.73072,-3.1967E-05],[139.73416,-2.7326E-05],[139.73759,-2.4748E-05],[139.74103,-2.8873E-05],[139.74446,-3.1967E-05],[139.7479,-3.2998E-05],[139.75134,-3.3513E-05],[139.75477,-3.2482E-05],[139.75821,-3.042E-05],[139.76164,-3.4029E-05],[139.76508,-3.7122E-05],[139.76852,-3.1967E-05],[139.77195,-3.042E-05],[139.77539,-2.7326E-05],[139.77882,-2.7842E-05],[139.78226,-3.2482E-05],[139.7857,-3.0935E-05],[139.78913,-2.9389E-05],[139.79257,-2.5779E-05],[139.796,-2.9389E-05],[139.79944,-3.0935E-05],[139.80288,-2.9389E-05],[139.80631,-3.4544E-05],[139.80975,-3.2482E-05],[139.81318,-2.8357E-05],[139.81662,-2.7842E-05],[139.82006,-2.8357E-05],[139.82349,-3.2482E-05],[139.82693,-3.2998E-05],[139.83036,-3.0935E-05],[139.8338,-2.8873E-05],[139.83724,-3.042E-05],[139.84067,-3.0935E-05],[139.84411,-2.6811E-05],[139.84754,-2.8357E-05],[139.85098,-2.4748E-05],[139.85442,-2.4748E-05],[139.85785,-2.9904E-05],[139.86129,-2.7326E-05],[139.86472,-2.9904E-05],[139.86816,-2.8357E-05],[139.8716,-2.7326E-05],[139.87503,-2.7842E-05],[139.87847,-2.4233E-05],[139.8819,-2.8873E-05],[139.88534,-2.9904E-05],[139.88878,-2.9904E-05],[139.89221,-2.9389E-05],[139.89565,-2.5779E-05],[139.89908,-2.5779E-05],[139.90252,-2.6295E-05],[139.90596,-3.042E-05],[139.90939,-3.0935E-05],[139.91283,-2.8873E-05],[139.91626,-2.7326E-05],[139.9197,-2.6295E-05],[139.92314,-2.8357E-05],[139.92657,-2.7326E-05],[139.93001,-3.0935E-05],[139.93344,-3.0935E-05],[139.93688,-2.6811E-05],[139.94032,-3.1967E-05],[139.94375,-3.2482E-05],[139.94719,-3.042E-05],[139.95062,-3.2482E-05],[139.95406,-2.8873E-05],[139.9575,-2.7842E-05],[139.96093,-2.7842E-05],[139.96437,-2.6295E-05],[139.9678,-2.7326E-05],[139.97124,-2.8357E-05],[139.97468,-2.7326E-05],[139.97811,-2.5779E-05],[139.98155,-2.9389E-05],[139.98498,-3.2482E-05],[139.98842,-3.1451E-05],[139.99186,-3.042E-05],[139.99529,-2.5779E-05],[139.99873,-2.5779E-05],[140.00216,-2.8873E-05],[140.0056,-2.7842E-05],[140.00904,-3.0935E-05]]}
-{"quant":[140.53,-2.9612E-05],"mems":[[140.43166,-3.0935E-05],[140.4351,-2.9389E-05],[140.43854,-2.9904E-05],[140.44197,-3.1451E-05],[140.44541,-3.6607E-05],[140.44884,-3.4029E-05],[140.45228,-3.0935E-05],[140.45572,-3.2998E-05],[140.45915,-2.8873E-05],[140.46259,-2.5779E-05],[140.46602,-2.8357E-05],[140.46946,-2.8873E-05],[140.4729,-3.042E-05],[140.47633,-3.042E-05],[140.47977,-2.8357E-05],[140.4832,-2.8357E-05],[140.48664,-2.7326E-05],[140.49008,-2.7842E-05],[140.49351,-2.6295E-05],[140.49695,-2.4748E-05],[140.50038,-3.042E-05],[140.50382,-3.2998E-05],[140.50726,-3.2998E-05],[140.51069,-3.0935E-05],[140.51413,-2.3202E-05],[140.51756,-2.2686E-05],[140.521,-2.7326E-05],[140.52444,-2.7326E-05],[140.52787,-2.7842E-05],[140.53131,-2.6811E-05],[140.53474,-2.4233E-05],[140.53818,-2.6811E-05],[140.54162,-2.8357E-05],[140.54505,-2.8357E-05],[140.54849,-2.6295E-05],[140.55192,-2.6295E-05],[140.55536,-3.1967E-05],[140.5588,-3.0935E-05],[140.56223,-2.8357E-05],[140.56567,-3.042E-05],[140.5691,-2.8873E-05],[140.57254,-2.7326E-05],[140.57598,-2.7842E-05],[140.57941,-3.1451E-05],[140.58285,-3.4544E-05],[140.58628,-3.2482E-05],[140.58972,-3.1967E-05],[140.59316,-3.1451E-05],[140.59659,-2.7842E-05],[140.60003,-2.8873E-05],[140.60346,-3.1451E-05],[140.6069,-3.042E-05],[140.61034,-3.1451E-05],[140.61377,-2.8873E-05],[140.61721,-2.7842E-05],[140.62064,-3.2998E-05],[140.62408,-3.4029E-05],[140.62752,-2.9389E-05],[140.63095,-3.042E-05],[140.63439,-3.4029E-05],[140.63782,-2.8873E-05],[140.64126,-2.9904E-05],[140.6447,-3.1451E-05],[140.64813,-2.4233E-05],[140.65157,-2.2686E-05],[140.655,-2.6811E-05],[140.65844,-3.042E-05],[140.66188,-2.8357E-05],[140.66531,-2.9389E-05],[140.66875,-3.2998E-05],[140.67218,-3.042E-05],[140.67562,-2.7326E-05],[140.67906,-2.4233E-05],[140.68249,-2.7842E-05],[140.68593,-3.1967E-05],[140.68936,-3.4544E-05],[140.6928,-3.042E-05],[140.69624,-2.4748E-05],[140.69967,-3.042E-05],[140.70311,-2.9389E-05],[140.70654,-3.1451E-05],[140.70998,-3.1451E-05],[140.71342,-2.5779E-05],[140.71685,-2.7326E-05],[140.72029,-3.042E-05],[140.72372,-3.0935E-05],[140.72716,-2.9389E-05],[140.7306,-2.6811E-05]]}
-{"quant":[140.99,-3.011E-05],"mems":[[140.89209,-3.042E-05],[140.89552,-2.9389E-05],[140.89896,-2.9389E-05],[140.9024,-3.506E-05],[140.90583,-2.8873E-05],[140.90927,-2.8873E-05],[140.9127,-3.0935E-05],[140.91614,-3.042E-05],[140.91958,-3.4544E-05],[140.92301,-3.2998E-05],[140.92645,-3.1967E-05],[140.92988,-3.2998E-05],[140.93332,-3.042E-05],[140.93676,-2.9389E-05],[140.94019,-3.042E-05],[140.94363,-2.8873E-05],[140.94706,-2.8873E-05],[140.9505,-2.7842E-05],[140.95394,-3.042E-05],[140.95737,-3.4544E-05],[140.96081,-3.2998E-05],[140.96424,-3.1451E-05],[140.96768,-3.0935E-05],[140.97112,-2.9904E-05],[140.97455,-2.7326E-05],[140.97799,-3.1451E-05],[140.98142,-3.506E-05],[140.98486,-3.1451E-05],[140.9883,-3.042E-05],[140.99173,-3.042E-05],[140.99517,-2.7326E-05],[140.9986,-2.7326E-05],[141.00204,-3.0935E-05],[141.00548,-3.042E-05],[141.00891,-2.6295E-05],[141.01235,-2.8357E-05],[141.01578,-2.7842E-05],[141.01922,-2.8873E-05],[141.02266,-3.2482E-05],[141.02609,-3.042E-05],[141.02953,-2.9904E-05],[141.03296,-2.6811E-05],[141.0364,-2.7842E-05],[141.03984,-3.4029E-05],[141.04327,-3.4544E-05],[141.04671,-3.1967E-05],[141.05014,-2.9904E-05],[141.05358,-3.2482E-05],[141.05702,-3.2482E-05],[141.06045,-3.042E-05],[141.06389,-3.3513E-05],[141.06732,-3.1451E-05],[141.07076,-2.7842E-05],[141.0742,-2.7326E-05],[141.07763,-2.6295E-05],[141.08107,-2.8357E-05],[141.0845,-3.2482E-05],[141.08794,-3.4544E-05],[141.09138,-3.042E-05],[141.09481,-2.8357E-05],[141.09825,-3.1451E-05],[141.10168,-2.8873E-05],[141.10512,-3.0935E-05],[141.10856,-3.0935E-05],[141.11199,-2.6295E-05],[141.11543,-3.1967E-05],[141.11886,-3.2482E-05],[141.1223,-2.8357E-05],[141.12574,-3.4029E-05],[141.12917,-3.2998E-05],[141.13261,-2.8873E-05],[141.13604,-3.1451E-05],[141.13948,-3.1967E-05],[141.14292,-3.2482E-05],[141.14635,-3.2482E-05],[141.14979,-2.8873E-05],[141.15322,-2.6295E-05],[141.15666,-2.6811E-05],[141.1601,-2.9904E-05],[141.16353,-3.2482E-05],[141.16697,-3.1967E-05],[141.1704,-3.0935E-05],[141.17384,-2.7326E-05],[141.17728,-2.6295E-05],[141.18071,-3.2482E-05],[141.18415,-2.8357E-05],[141.18758,-2.6811E-05],[141.19102,-2.7326E-05]]}
-{"quant":[141.456,-3.0643E-05],"mems":[[141.35938,-3.0935E-05],[141.36282,-2.7842E-05],[141.36626,-2.5264E-05],[141.36969,-2.6295E-05],[141.37313,-2.7842E-05],[141.37656,-2.9389E-05],[141.38,-2.9904E-05],[141.38344,-2.9389E-05],[141.38687,-3.042E-05],[141.39031,-2.5264E-05],[141.39374,-2.5779E-05],[141.39718,-3.1451E-05],[141.40062,-3.4029E-05],[141.40405,-3.3513E-05],[141.40749,-2.8873E-05],[141.41092,-3.1451E-05],[141.41436,-2.7326E-05],[141.4178,-2.4233E-05],[141.42123,-2.9389E-05],[141.42467,-2.8873E-05],[141.4281,-2.7842E-05],[141.43154,-2.6295E-05],[141.43498,-2.8873E-05],[141.43841,-3.2482E-05],[141.44185,-2.9389E-05],[141.44528,-3.042E-05],[141.44872,-2.9904E-05],[141.45216,-2.9389E-05],[141.45559,-3.6091E-05],[141.45903,-3.506E-05],[141.46246,-3.1451E-05],[141.4659,-2.7326E-05],[141.46934,-2.8357E-05],[141.47277,-3.2482E-05],[141.47621,-2.8357E-05],[141.47964,-3.1967E-05],[141.48308,-3.2998E-05],[141.48652,-2.7326E-05],[141.48995,-2.8873E-05],[141.49339,-3.4029E-05],[141.49682,-3.4544E-05],[141.50026,-3.2482E-05],[141.5037,-3.3513E-05],[141.50713,-3.1451E-05],[141.51057,-2.8873E-05],[141.514,-3.2482E-05],[141.51744,-3.1451E-05],[141.52088,-2.8873E-05],[141.52431,-3.0935E-05],[141.52775,-2.9904E-05],[141.53118,-2.9389E-05],[141.53462,-3.1451E-05],[141.53806,-3.1967E-05],[141.54149,-3.0935E-05],[141.54493,-2.7842E-05],[141.54836,-3.1451E-05],[141.5518,-2.8357E-05],[141.55524,-2.7326E-05],[141.55867,-2.7842E-05],[141.56211,-2.3717E-05],[141.56554,-2.9904E-05],[141.56898,-2.8357E-05],[141.57242,-2.6811E-05],[141.57585,-3.2482E-05],[141.57929,-3.1451E-05],[141.58272,-2.8357E-05],[141.58616,-2.8357E-05],[141.5896,-2.8357E-05],[141.59303,-2.8873E-05],[141.59647,-3.4029E-05],[141.5999,-3.506E-05],[141.60334,-3.6607E-05],[141.60678,-3.4544E-05],[141.61021,-2.8357E-05],[141.61365,-2.9389E-05],[141.61708,-2.8357E-05],[141.62052,-2.8873E-05],[141.62396,-3.2998E-05],[141.62739,-2.6811E-05],[141.63083,-2.6811E-05],[141.63426,-3.042E-05],[141.6377,-2.8873E-05],[141.64114,-3.1967E-05],[141.64457,-3.1451E-05],[141.64801,-2.4233E-05],[141.65144,-2.4233E-05],[141.65488,-2.8873E-05],[141.65832,-2.8357E-05]]}
-{"quant":[141.912,-2.9354E-05],"mems":[[141.81294,-2.8357E-05],[141.81637,-2.5779E-05],[141.81981,-2.7326E-05],[141.82324,-3.2482E-05],[141.82668,-2.8873E-05],[141.83012,-3.042E-05],[141.83355,-3.7122E-05],[141.83699,-3.1451E-05],[141.84042,-2.9904E-05],[141.84386,-3.2998E-05],[141.8473,-2.7326E-05],[141.85073,-2.9389E-05],[141.85417,-2.8873E-05],[141.8576,-2.5264E-05],[141.86104,-2.6811E-05],[141.86448,-2.5264E-05],[141.86791,-2.7326E-05],[141.87135,-2.7842E-05],[141.87478,-3.1967E-05],[141.87822,-3.506E-05],[141.88166,-2.9904E-05],[141.88509,-2.5779E-05],[141.88853,-2.8357E-05],[141.89196,-3.2482E-05],[141.8954,-2.9904E-05],[141.89884,-2.8873E-05],[141.90227,-2.9904E-05],[141.90571,-3.4029E-05],[141.90914,-3.2482E-05],[141.91258,-2.8873E-05],[141.91602,-3.1451E-05],[141.91945,-3.1451E-05],[141.92289,-3.042E-05],[141.92632,-2.7326E-05],[141.92976,-2.6295E-05],[141.9332,-2.8357E-05],[141.93663,-3.042E-05],[141.94007,-3.042E-05],[141.9435,-2.9904E-05],[141.94694,-2.7326E-05],[141.95038,-2.7326E-05],[141.95381,-3.042E-05],[141.95725,-2.8357E-05],[141.96068,-3.0935E-05],[141.96412,-2.6811E-05],[141.96756,-2.3202E-05],[141.97099,-2.8357E-05],[141.97443,-2.9904E-05],[141.97786,-3.1451E-05],[141.9813,-2.7842E-05],[141.98474,-2.9904E-05],[141.98817,-3.2998E-05],[141.99161,-2.7842E-05],[141.99504,-2.9389E-05],[141.99848,-3.0935E-05],[142.00192,-2.9389E-05],[142.00535,-3.042E-05],[142.00879,-2.8873E-05],[142.01222,-3.4029E-05],[142.01566,-3.3513E-05],[142.0191,-2.4748E-05],[142.02253,-2.8357E-05],[142.02597,-2.7326E-05],[142.0294,-2.5264E-05],[142.03284,-2.9904E-05],[142.03628,-2.6295E-05],[142.03971,-2.7842E-05],[142.04315,-2.9904E-05],[142.04658,-2.8357E-05],[142.05002,-2.7326E-05],[142.05346,-2.5779E-05],[142.05689,-2.9904E-05],[142.06033,-2.7842E-05],[142.06376,-3.042E-05],[142.0672,-3.0935E-05],[142.07064,-2.6295E-05],[142.07407,-3.0935E-05],[142.07751,-2.9389E-05],[142.08094,-3.1451E-05],[142.08438,-3.2482E-05],[142.08782,-2.6295E-05],[142.09125,-2.9389E-05],[142.09469,-3.4029E-05],[142.09812,-3.2998E-05],[142.10156,-2.9904E-05],[142.105,-2.9904E-05],[142.10843,-2.6295E-05],[142.11187,-2.6295E-05],[142.1153,-2.9904E-05]]}
-{"quant":[142.38,-2.9234E-05],"mems":[[142.28025,-2.7326E-05],[142.28369,-3.042E-05],[142.28712,-3.0935E-05],[142.29056,-2.6811E-05],[142.294,-2.6295E-05],[142.29743,-3.1451E-05],[142.30087,-3.506E-05],[142.30431,-3.2482E-05],[142.30775,-2.5264E-05],[142.31118,-2.7326E-05],[142.31462,-3.2998E-05],[142.31806,-3.3513E-05],[142.3215,-3.5576E-05],[142.32493,-2.8357E-05],[142.32837,-2.5264E-05],[142.33181,-2.9904E-05],[142.33525,-2.6295E-05],[142.33868,-2.7326E-05],[142.34212,-2.7842E-05],[142.34556,-2.4233E-05],[142.34899,-2.6811E-05],[142.35243,-2.8873E-05],[142.35587,-2.9904E-05],[142.35931,-3.0935E-05],[142.36274,-3.0935E-05],[142.36618,-2.5264E-05],[142.36962,-2.1139E-05],[142.37306,-2.9389E-05],[142.37649,-3.0935E-05],[142.37993,-2.5779E-05],[142.38337,-2.5779E-05],[142.38681,-2.7326E-05],[142.39024,-3.1967E-05],[142.39368,-2.9904E-05],[142.39712,-2.7842E-05],[142.40055,-3.042E-05],[142.40399,-3.1451E-05],[142.40743,-2.9389E-05],[142.41087,-2.7842E-05],[142.4143,-3.4544E-05],[142.41774,-3.3513E-05],[142.42118,-2.6295E-05],[142.42462,-2.7326E-05],[142.42805,-2.8873E-05],[142.43149,-2.9904E-05],[142.43493,-2.8357E-05],[142.43837,-2.8873E-05],[142.4418,-3.1451E-05],[142.44524,-2.9904E-05],[142.44868,-2.8357E-05],[142.45211,-2.9904E-05],[142.45555,-3.1451E-05],[142.45899,-3.042E-05],[142.46243,-2.7326E-05],[142.46586,-2.7326E-05],[142.4693,-2.9389E-05],[142.47274,-2.7842E-05],[142.47618,-2.7842E-05],[142.47961,-2.9389E-05],[142.48305,-2.6811E-05],[142.48649,-2.8873E-05],[142.48993,-3.2482E-05],[142.49336,-3.0935E-05],[142.4968,-3.6091E-05],[142.50024,-3.1967E-05],[142.50367,-2.5779E-05],[142.50711,-2.9904E-05],[142.51055,-3.0935E-05],[142.51399,-2.9389E-05],[142.51742,-3.0935E-05],[142.52086,-3.1967E-05],[142.5243,-2.9389E-05],[142.52774,-2.9904E-05],[142.53117,-2.9389E-05],[142.53461,-2.7842E-05],[142.53805,-2.9389E-05],[142.54149,-3.1967E-05],[142.54492,-3.2998E-05],[142.54836,-3.0935E-05],[142.5518,-3.042E-05],[142.55523,-2.8873E-05],[142.55867,-2.7842E-05],[142.56211,-2.8357E-05],[142.56555,-2.7842E-05],[142.56898,-2.6295E-05],[142.57242,-2.6295E-05],[142.57586,-2.9389E-05],[142.5793,-3.0935E-05],[142.58273,-2.9904E-05]]}
-{"quant":[143.079,-2.8667E-05],"mems":[[142.98146,-2.9389E-05],[142.9849,-2.9389E-05],[142.98834,-2.7842E-05],[142.99178,-2.6811E-05],[142.99521,-2.7326E-05],[142.99865,-2.7842E-05],[143.00209,-3.1967E-05],[143.00553,-3.042E-05],[143.00896,-2.4748E-05],[143.0124,-2.5779E-05],[143.01584,-2.9389E-05],[143.01927,-3.3513E-05],[143.02271,-3.042E-05],[143.02615,-2.3717E-05],[143.02959,-2.7326E-05],[143.03302,-3.4029E-05],[143.03646,-3.1967E-05],[143.0399,-2.8357E-05],[143.04334,-3.1967E-05],[143.04677,-3.0935E-05],[143.05021,-2.9389E-05],[143.05365,-3.0935E-05],[143.05709,-3.0935E-05],[143.06052,-3.1451E-05],[143.06396,-2.8873E-05],[143.0674,-3.042E-05],[143.07083,-2.6295E-05],[143.07427,-2.9904E-05],[143.07771,-3.6607E-05],[143.08115,-2.8357E-05],[143.08458,-2.6811E-05],[143.08802,-2.4748E-05],[143.09146,-2.5264E-05],[143.0949,-3.042E-05],[143.09833,-2.8873E-05],[143.10177,-2.9389E-05],[143.10521,-2.7326E-05],[143.10865,-2.8873E-05],[143.11208,-3.4029E-05],[143.11552,-2.9389E-05],[143.11896,-3.042E-05],[143.12239,-2.8357E-05],[143.12583,-2.3202E-05],[143.12927,-2.7326E-05],[143.13271,-2.8357E-05],[143.13614,-2.8873E-05],[143.13958,-2.6811E-05],[143.14302,-2.8357E-05],[143.14646,-2.9389E-05],[143.14989,-2.9904E-05],[143.15333,-2.8873E-05],[143.15677,-2.9389E-05],[143.16021,-3.7122E-05],[143.16364,-3.0935E-05],[143.16708,-2.5264E-05],[143.17052,-2.6811E-05],[143.17395,-3.0935E-05],[143.17739,-3.042E-05],[143.18083,-2.5779E-05],[143.18427,-3.4029E-05],[143.1877,-2.7842E-05],[143.19114,-2.7326E-05],[143.19458,-3.4544E-05],[143.19802,-3.1451E-05],[143.20145,-2.9389E-05],[143.20489,-2.6811E-05],[143.20833,-2.8873E-05],[143.21177,-2.7326E-05],[143.2152,-2.5264E-05],[143.21864,-2.7326E-05],[143.22208,-3.042E-05],[143.22551,-2.9389E-05],[143.22895,-2.5264E-05],[143.23239,-2.5779E-05],[143.23583,-3.1451E-05],[143.23926,-3.4029E-05],[143.2427,-2.6295E-05],[143.24614,-2.7326E-05],[143.24958,-3.1967E-05],[143.25301,-3.1967E-05],[143.25645,-3.2998E-05],[143.25989,-2.8873E-05],[143.26333,-2.4233E-05],[143.26676,-2.3717E-05],[143.2702,-2.7326E-05],[143.27364,-2.8873E-05],[143.27707,-3.1451E-05],[143.28051,-3.2482E-05]]}
-{"quant":[143.545,-3.037E-05],"mems":[[143.4455,-2.9904E-05],[143.44894,-2.7842E-05],[143.45238,-2.5779E-05],[143.45582,-2.9904E-05],[143.45925,-2.9389E-05],[143.46269,-2.7326E-05],[143.46613,-2.8357E-05],[143.46957,-2.7842E-05],[143.473,-3.2998E-05],[143.47644,-3.2998E-05],[143.47988,-2.8357E-05],[143.48331,-2.9389E-05],[143.48675,-2.7842E-05],[143.49019,-2.7326E-05],[143.49363,-2.7326E-05],[143.49706,-2.7326E-05],[143.5005,-2.7842E-05],[143.50394,-2.7326E-05],[143.50738,-2.5779E-05],[143.51081,-2.7842E-05],[143.51425,-3.4029E-05],[143.51769,-3.042E-05],[143.52113,-2.9904E-05],[143.52456,-3.2998E-05],[143.528,-2.7842E-05],[143.53144,-2.7326E-05],[143.53487,-3.1451E-05],[143.53831,-3.1451E-05],[143.54175,-3.2998E-05],[143.54519,-3.0935E-05],[143.54862,-2.4748E-05],[143.55206,-3.0935E-05],[143.5555,-3.4029E-05],[143.55894,-2.8357E-05],[143.56237,-3.1967E-05],[143.56581,-3.1967E-05],[143.56925,-3.2998E-05],[143.57269,-3.2482E-05],[143.57612,-3.1967E-05],[143.57956,-3.3513E-05],[143.583,-3.0935E-05],[143.58643,-3.4029E-05],[143.58987,-3.4544E-05],[143.59331,-3.0935E-05],[143.59675,-3.1451E-05],[143.60018,-3.0935E-05],[143.60362,-3.2482E-05],[143.60706,-3.1967E-05],[143.6105,-2.6295E-05],[143.61393,-3.1451E-05],[143.61737,-3.1967E-05],[143.62081,-3.0935E-05],[143.62425,-3.042E-05],[143.62768,-2.0624E-05],[143.63112,-2.9389E-05],[143.63456,-3.1967E-05],[143.63799,-2.2686E-05],[143.64143,-2.7326E-05],[143.64487,-2.7842E-05],[143.64831,-2.9389E-05],[143.65174,-3.1967E-05],[143.65518,-3.0935E-05],[143.65862,-3.3513E-05],[143.66206,-3.1967E-05],[143.66549,-3.0935E-05],[143.66893,-2.9904E-05],[143.67237,-2.8873E-05],[143.67581,-3.042E-05],[143.67924,-3.0935E-05],[143.68268,-2.7842E-05],[143.68612,-2.7842E-05],[143.68955,-3.1967E-05],[143.69299,-3.1967E-05],[143.69643,-3.1967E-05],[143.69987,-2.9904E-05],[143.7033,-2.9389E-05],[143.70674,-2.7842E-05],[143.71018,-2.7326E-05],[143.71362,-3.4029E-05],[143.71705,-3.2998E-05],[143.72049,-3.042E-05],[143.72393,-2.7326E-05],[143.72737,-2.9389E-05],[143.7308,-3.042E-05],[143.73424,-2.217E-05],[143.73768,-2.7842E-05],[143.74111,-3.0935E-05],[143.74455,-2.9389E-05],[143.74799,-2.9389E-05]]}
-{"quant":[144.033,-2.9056E-05],"mems":[[143.93361,-3.042E-05],[143.93704,-2.8873E-05],[143.94048,-3.3513E-05],[143.94392,-2.9389E-05],[143.94735,-2.4233E-05],[143.95079,-3.2998E-05],[143.95423,-3.4029E-05],[143.95767,-2.6295E-05],[143.9611,-2.8873E-05],[143.96454,-3.0935E-05],[143.96798,-2.6811E-05],[143.97142,-3.1451E-05],[143.97485,-3.2998E-05],[143.97829,-2.7326E-05],[143.98173,-2.8873E-05],[143.98517,-2.9904E-05],[143.9886,-3.0935E-05],[143.99204,-3.2482E-05],[143.99548,-3.0935E-05],[143.99891,-3.2482E-05],[144.00235,-3.0935E-05],[144.00579,-2.6811E-05],[144.00923,-2.8873E-05],[144.01266,-3.4029E-05],[144.0161,-3.4029E-05],[144.01954,-3.2998E-05],[144.02298,-3.042E-05],[144.02641,-2.5779E-05],[144.02985,-2.8873E-05],[144.03329,-3.2482E-05],[144.03673,-3.506E-05],[144.04016,-3.6091E-05],[144.0436,-2.9389E-05],[144.04704,-2.7842E-05],[144.05047,-2.9389E-05],[144.05391,-2.8357E-05],[144.05735,-2.8357E-05],[144.06079,-2.5779E-05],[144.06422,-2.9389E-05],[144.06766,-2.8357E-05],[144.0711,-2.2686E-05],[144.07454,-2.7842E-05],[144.07797,-3.1451E-05],[144.08141,-2.9389E-05],[144.08485,-2.6295E-05],[144.08829,-2.4748E-05],[144.09172,-2.8357E-05],[144.09516,-2.9904E-05],[144.0986,-3.0935E-05],[144.10203,-2.8873E-05],[144.10547,-2.4233E-05],[144.10891,-2.6295E-05],[144.11235,-3.0935E-05],[144.11578,-3.2482E-05],[144.11922,-2.8873E-05],[144.12266,-2.7842E-05],[144.1261,-2.7842E-05],[144.12953,-2.6811E-05],[144.13297,-3.2482E-05],[144.13641,-3.1967E-05],[144.13985,-2.5779E-05],[144.14328,-2.2686E-05],[144.14672,-2.6811E-05],[144.15016,-3.1967E-05],[144.15359,-2.8873E-05],[144.15703,-2.7326E-05],[144.16047,-3.0935E-05],[144.16391,-3.042E-05],[144.16734,-2.7842E-05],[144.17078,-3.1451E-05],[144.17422,-3.1451E-05],[144.17766,-2.6295E-05],[144.18109,-2.7326E-05],[144.18453,-3.2482E-05],[144.18797,-2.9389E-05],[144.19141,-3.1967E-05],[144.19484,-3.8154E-05],[144.19828,-3.1451E-05],[144.20172,-2.8873E-05],[144.20515,-2.5264E-05],[144.20859,-2.7842E-05],[144.21203,-3.2998E-05],[144.21547,-2.9904E-05],[144.2189,-2.7842E-05],[144.22234,-2.6295E-05],[144.22578,-2.8357E-05],[144.22922,-2.9389E-05],[144.23265,-2.7842E-05],[144.23609,-2.9904E-05]]}
-{"quant":[144.51,-2.8942E-05],"mems":[[144.41139,-3.1451E-05],[144.41483,-3.1967E-05],[144.41827,-3.042E-05],[144.42171,-2.6295E-05],[144.42514,-3.042E-05],[144.42858,-2.9389E-05],[144.43202,-2.9904E-05],[144.43546,-3.4544E-05],[144.43889,-2.6811E-05],[144.44233,-3.0935E-05],[144.44577,-3.2482E-05],[144.44921,-2.7326E-05],[144.45264,-3.4029E-05],[144.45608,-3.2482E-05],[144.45952,-2.9904E-05],[144.46295,-3.2998E-05],[144.46639,-2.7842E-05],[144.46983,-2.5779E-05],[144.47327,-2.7326E-05],[144.4767,-3.1451E-05],[144.48014,-3.1967E-05],[144.48358,-2.9904E-05],[144.48702,-3.2998E-05],[144.49045,-3.0935E-05],[144.49389,-2.4748E-05],[144.49733,-2.8357E-05],[144.50077,-3.2482E-05],[144.5042,-2.8873E-05],[144.50764,-2.6811E-05],[144.51108,-3.1451E-05],[144.51451,-3.506E-05],[144.51795,-2.9904E-05],[144.52139,-2.7842E-05],[144.52483,-3.0935E-05],[144.52826,-3.4029E-05],[144.5317,-3.3513E-05],[144.53514,-3.1967E-05],[144.53858,-3.0935E-05],[144.54201,-2.3202E-05],[144.54545,-2.217E-05],[144.54889,-2.4748E-05],[144.55233,-2.7842E-05],[144.55576,-3.0935E-05],[144.5592,-3.042E-05],[144.56264,-3.0935E-05],[144.56607,-2.7326E-05],[144.56951,-2.6295E-05],[144.57295,-3.0935E-05],[144.57639,-3.042E-05],[144.57982,-2.7326E-05],[144.58326,-2.6295E-05],[144.5867,-2.4233E-05],[144.59014,-2.5264E-05],[144.59357,-2.8357E-05],[144.59701,-2.8357E-05],[144.60045,-3.0935E-05],[144.60389,-3.0935E-05],[144.60732,-2.8357E-05],[144.61076,-2.7326E-05],[144.6142,-3.042E-05],[144.61763,-2.9904E-05],[144.62107,-2.4748E-05],[144.62451,-2.9389E-05],[144.62795,-2.9904E-05],[144.63138,-2.7842E-05],[144.63482,-2.8873E-05],[144.63826,-2.9389E-05],[144.6417,-2.9904E-05],[144.64513,-2.8357E-05],[144.64857,-2.9389E-05],[144.65201,-3.2482E-05],[144.65545,-3.6091E-05],[144.65888,-3.1451E-05],[144.66232,-2.7842E-05],[144.66576,-3.042E-05],[144.66919,-3.2482E-05],[144.67263,-2.9389E-05],[144.67607,-2.8873E-05],[144.67951,-3.0935E-05],[144.68294,-2.5264E-05],[144.68638,-2.7326E-05],[144.68982,-3.1967E-05],[144.69326,-2.9904E-05],[144.69669,-2.9904E-05],[144.70013,-2.9904E-05],[144.70357,-2.5779E-05],[144.70701,-2.4748E-05],[144.71044,-3.042E-05]]}
-{"quant":[145.001,-2.944E-05],"mems":[[144.90293,-2.9389E-05],[144.90637,-2.9904E-05],[144.90981,-2.9904E-05],[144.91325,-3.042E-05],[144.91668,-2.8873E-05],[144.92012,-3.042E-05],[144.92356,-3.042E-05],[144.92699,-2.8357E-05],[144.93043,-3.2998E-05],[144.93387,-3.7638E-05],[144.93731,-3.4544E-05],[144.94074,-3.2482E-05],[144.94418,-3.2482E-05],[144.94762,-2.6295E-05],[144.95106,-2.6295E-05],[144.95449,-2.9904E-05],[144.95793,-2.9389E-05],[144.96137,-2.9389E-05],[144.96481,-2.8357E-05],[144.96824,-3.042E-05],[144.97168,-3.0935E-05],[144.97512,-2.7326E-05],[144.97855,-2.8873E-05],[144.98199,-2.7326E-05],[144.98543,-2.6811E-05],[144.98887,-2.9389E-05],[144.9923,-2.9904E-05],[144.99574,-2.8357E-05],[144.99918,-2.4233E-05],[145.00262,-2.8357E-05],[145.00605,-2.8357E-05],[145.00949,-3.042E-05],[145.01293,-3.5576E-05],[145.01637,-2.9904E-05],[145.0198,-2.9904E-05],[145.02324,-2.6811E-05],[145.02668,-2.4233E-05],[145.03011,-3.1967E-05],[145.03355,-3.0935E-05],[145.03699,-2.9904E-05],[145.04043,-2.7842E-05],[145.04386,-2.9389E-05],[145.0473,-3.042E-05],[145.05074,-2.4748E-05],[145.05418,-2.8357E-05],[145.05761,-3.1451E-05],[145.06105,-2.9904E-05],[145.06449,-2.8357E-05],[145.06793,-2.5264E-05],[145.07136,-2.9389E-05],[145.0748,-3.4544E-05],[145.07824,-2.9389E-05],[145.08167,-2.6811E-05],[145.08511,-2.9904E-05],[145.08855,-2.5779E-05],[145.09199,-2.8357E-05],[145.09542,-3.5576E-05],[145.09886,-3.2998E-05],[145.1023,-2.8357E-05],[145.10574,-2.9389E-05],[145.10917,-3.0935E-05],[145.11261,-3.1967E-05],[145.11605,-3.4029E-05],[145.11949,-3.2998E-05],[145.12292,-2.8357E-05],[145.12636,-2.7326E-05],[145.1298,-3.1967E-05],[145.13323,-2.8357E-05],[145.13667,-2.5264E-05],[145.14011,-2.6811E-05],[145.14355,-2.6811E-05],[145.14698,-3.042E-05],[145.15042,-2.9904E-05],[145.15386,-3.1451E-05],[145.1573,-3.1451E-05],[145.16073,-2.6295E-05],[145.16417,-2.5779E-05],[145.16761,-2.7842E-05],[145.17105,-2.9389E-05],[145.17448,-2.8357E-05],[145.17792,-2.7326E-05],[145.18136,-2.8357E-05],[145.18479,-3.1967E-05],[145.18823,-3.2998E-05],[145.19167,-3.0935E-05],[145.19511,-2.7326E-05],[145.19854,-2.6295E-05],[145.20198,-2.8357E-05]]}
-{"quant":[145.706,-2.8598E-05],"mems":[[145.60759,-2.9389E-05],[145.61102,-3.506E-05],[145.61446,-2.9389E-05],[145.6179,-3.042E-05],[145.62134,-2.8357E-05],[145.62477,-2.2686E-05],[145.62821,-2.4748E-05],[145.63165,-2.9904E-05],[145.63509,-3.2482E-05],[145.63852,-3.042E-05],[145.64196,-2.6811E-05],[145.6454,-2.9389E-05],[145.64883,-3.3513E-05],[145.65227,-2.7326E-05],[145.65571,-2.4748E-05],[145.65915,-2.9904E-05],[145.66258,-3.042E-05],[145.66602,-3.1967E-05],[145.66946,-3.2998E-05],[145.6729,-2.8873E-05],[145.67633,-2.6811E-05],[145.67977,-2.6295E-05],[145.68321,-2.7842E-05],[145.68665,-2.8873E-05],[145.69008,-3.2998E-05],[145.69352,-3.4544E-05],[145.69696,-2.9904E-05],[145.70039,-2.6811E-05],[145.70383,-2.4748E-05],[145.70727,-2.5779E-05],[145.71071,-3.042E-05],[145.71414,-3.4544E-05],[145.71758,-3.042E-05],[145.72102,-2.8873E-05],[145.72446,-3.1967E-05],[145.72789,-3.2482E-05],[145.73133,-3.2998E-05],[145.73477,-2.8873E-05],[145.73821,-2.7326E-05],[145.74164,-2.8873E-05],[145.74508,-2.7842E-05],[145.74852,-3.042E-05],[145.75195,-3.0935E-05],[145.75539,-2.4748E-05],[145.75883,-2.4748E-05],[145.76227,-2.7842E-05],[145.7657,-2.6811E-05],[145.76914,-2.9904E-05],[145.77258,-2.7326E-05],[145.77602,-2.6295E-05],[145.77945,-3.0935E-05],[145.78289,-2.7842E-05],[145.78633,-2.7326E-05],[145.78977,-2.7326E-05],[145.7932,-2.5264E-05],[145.79664,-2.7842E-05],[145.80008,-2.7326E-05],[145.80351,-2.5264E-05],[145.80695,-2.9389E-05],[145.81039,-3.1451E-05],[145.81383,-2.7842E-05],[145.81726,-3.042E-05],[145.8207,-3.2998E-05],[145.82414,-2.7842E-05],[145.82758,-3.2998E-05],[145.83101,-3.5576E-05],[145.83445,-2.8873E-05],[145.83789,-2.6811E-05],[145.84133,-2.8873E-05],[145.84476,-3.1967E-05],[145.8482,-2.9389E-05],[145.85164,-2.8357E-05],[145.85507,-3.1451E-05],[145.85851,-2.9389E-05],[145.86195,-2.6811E-05],[145.86539,-3.506E-05],[145.86882,-3.4029E-05],[145.87226,-2.8357E-05],[145.8757,-3.0935E-05],[145.87914,-2.9389E-05],[145.88257,-2.6295E-05],[145.88601,-2.6295E-05],[145.88945,-3.4544E-05],[145.89289,-3.2998E-05],[145.89632,-3.042E-05],[145.89976,-3.4544E-05],[145.9032,-3.042E-05],[145.90663,-3.2482E-05]]}
-{"quant":[146.174,-2.8409E-05],"mems":[[146.07506,-3.4029E-05],[146.0785,-3.2482E-05],[146.08194,-3.1967E-05],[146.08538,-3.3513E-05],[146.08881,-3.1967E-05],[146.09225,-3.042E-05],[146.09569,-2.8357E-05],[146.09913,-2.4233E-05],[146.10256,-2.3717E-05],[146.106,-2.6811E-05],[146.10944,-2.7326E-05],[146.11287,-2.7326E-05],[146.11631,-3.042E-05],[146.11975,-2.6811E-05],[146.12319,-2.5264E-05],[146.12662,-2.6811E-05],[146.13006,-2.7326E-05],[146.1335,-2.7326E-05],[146.13694,-2.7326E-05],[146.14037,-2.9389E-05],[146.14381,-2.5779E-05],[146.14725,-2.5779E-05],[146.15069,-3.3513E-05],[146.15412,-3.4544E-05],[146.15756,-2.6811E-05],[146.161,-2.5779E-05],[146.16443,-2.7326E-05],[146.16787,-2.8873E-05],[146.17131,-3.0935E-05],[146.17475,-2.7326E-05],[146.17818,-2.6295E-05],[146.18162,-2.4233E-05],[146.18506,-2.8357E-05],[146.1885,-2.9904E-05],[146.19193,-2.5264E-05],[146.19537,-2.8357E-05],[146.19881,-2.5264E-05],[146.20225,-2.6811E-05],[146.20568,-3.1967E-05],[146.20912,-3.042E-05],[146.21256,-2.9904E-05],[146.21599,-2.9389E-05],[146.21943,-2.6811E-05],[146.22287,-2.8357E-05],[146.22631,-2.7842E-05],[146.22974,-2.5779E-05],[146.23318,-2.9904E-05],[146.23662,-2.9389E-05],[146.24006,-2.7842E-05],[146.24349,-3.042E-05],[146.24693,-2.7842E-05],[146.25037,-2.8357E-05],[146.25381,-3.2998E-05],[146.25724,-2.9389E-05],[146.26068,-2.7842E-05],[146.26412,-2.8357E-05],[146.26755,-3.042E-05],[146.27099,-3.042E-05],[146.27443,-2.6811E-05],[146.27787,-3.2998E-05],[146.2813,-3.1967E-05],[146.28474,-3.042E-05],[146.28818,-3.3513E-05],[146.29162,-3.0935E-05],[146.29505,-3.1451E-05],[146.29849,-2.8873E-05],[146.30193,-2.9389E-05],[146.30537,-2.8357E-05],[146.3088,-2.6811E-05],[146.31224,-3.1451E-05],[146.31568,-2.8357E-05],[146.31911,-2.9904E-05],[146.32255,-3.2998E-05],[146.32599,-3.1451E-05],[146.32943,-3.4029E-05],[146.33286,-3.1967E-05],[146.3363,-3.042E-05],[146.33974,-2.8357E-05],[146.34318,-2.6295E-05],[146.34661,-3.042E-05],[146.35005,-2.9389E-05],[146.35349,-3.1451E-05],[146.35693,-3.2482E-05],[146.36036,-2.5779E-05],[146.3638,-2.7842E-05],[146.36724,-2.8873E-05],[146.37067,-2.7326E-05],[146.37411,-3.042E-05]]}
-{"quant":[146.643,-3.0763E-05],"mems":[[146.54598,-3.0935E-05],[146.54942,-3.3513E-05],[146.55285,-3.4544E-05],[146.55629,-3.0935E-05],[146.55973,-3.042E-05],[146.56317,-2.7842E-05],[146.5666,-3.1451E-05],[146.57004,-3.6091E-05],[146.57348,-2.7842E-05],[146.57691,-2.6811E-05],[146.58035,-3.042E-05],[146.58379,-3.042E-05],[146.58723,-2.8873E-05],[146.59066,-3.1451E-05],[146.5941,-3.0935E-05],[146.59754,-2.5779E-05],[146.60098,-2.9389E-05],[146.60441,-3.2998E-05],[146.60785,-3.1967E-05],[146.61129,-2.9904E-05],[146.61473,-3.0935E-05],[146.61816,-3.0935E-05],[146.6216,-2.8873E-05],[146.62504,-2.7842E-05],[146.62847,-2.9389E-05],[146.63191,-2.9904E-05],[146.63535,-3.5576E-05],[146.63879,-3.2998E-05],[146.64222,-2.4748E-05],[146.64566,-3.0935E-05],[146.6491,-3.7122E-05],[146.65254,-3.3513E-05],[146.65597,-2.9904E-05],[146.65941,-3.1451E-05],[146.66285,-2.8357E-05],[146.66629,-2.7326E-05],[146.66972,-2.9904E-05],[146.67316,-3.042E-05],[146.6766,-3.2482E-05],[146.68003,-2.5779E-05],[146.68347,-2.8873E-05],[146.68691,-3.7638E-05],[146.69035,-3.3513E-05],[146.69378,-3.1451E-05],[146.69722,-2.8357E-05],[146.70066,-2.9389E-05],[146.7041,-3.1967E-05],[146.70753,-2.9904E-05],[146.71097,-3.042E-05],[146.71441,-2.9389E-05],[146.71785,-2.7326E-05],[146.72128,-2.4233E-05],[146.72472,-3.0935E-05],[146.72816,-3.6091E-05],[146.73159,-3.2482E-05],[146.73503,-3.1967E-05],[146.73847,-3.042E-05],[146.74191,-3.0935E-05],[146.74534,-3.042E-05],[146.74878,-3.042E-05],[146.75222,-3.1451E-05],[146.75566,-2.8873E-05],[146.75909,-2.9389E-05],[146.76253,-2.8873E-05],[146.76597,-3.2482E-05],[146.76941,-3.6607E-05],[146.77284,-2.9389E-05],[146.77628,-2.7326E-05],[146.77972,-3.042E-05],[146.78315,-2.8357E-05],[146.78659,-2.9389E-05],[146.79003,-2.9389E-05],[146.79347,-3.1451E-05],[146.7969,-2.8357E-05],[146.80034,-2.5264E-05],[146.80378,-2.6811E-05],[146.80722,-2.5779E-05],[146.81065,-3.042E-05],[146.81409,-2.6811E-05],[146.81753,-2.7326E-05],[146.82097,-3.1451E-05],[146.8244,-2.9389E-05],[146.82784,-2.6295E-05],[146.83128,-2.3202E-05],[146.83471,-3.1451E-05],[146.83815,-3.042E-05],[146.84159,-2.6811E-05],[146.84503,-2.9389E-05]]}
-{"quant":[147.102,-2.9543E-05],"mems":[[147.00314,-2.8873E-05],[147.00658,-3.2998E-05],[147.01002,-3.506E-05],[147.01346,-2.9904E-05],[147.01689,-2.4748E-05],[147.02033,-2.8873E-05],[147.02377,-3.1451E-05],[147.02721,-3.0935E-05],[147.03064,-3.042E-05],[147.03408,-3.042E-05],[147.03752,-2.8357E-05],[147.04095,-2.8357E-05],[147.04439,-3.1967E-05],[147.04783,-2.9389E-05],[147.05127,-2.8873E-05],[147.0547,-2.9389E-05],[147.05814,-2.9389E-05],[147.06158,-2.7842E-05],[147.06502,-2.4748E-05],[147.06845,-3.2482E-05],[147.07189,-3.2998E-05],[147.07533,-2.7842E-05],[147.07877,-3.3513E-05],[147.0822,-3.506E-05],[147.08564,-3.2998E-05],[147.08908,-3.2482E-05],[147.09251,-2.9389E-05],[147.09595,-2.1139E-05],[147.09939,-2.3202E-05],[147.10283,-2.5779E-05],[147.10626,-2.5779E-05],[147.1097,-3.1967E-05],[147.11314,-2.8357E-05],[147.11658,-2.8357E-05],[147.12001,-2.9904E-05],[147.12345,-2.5264E-05],[147.12689,-2.6295E-05],[147.13033,-3.042E-05],[147.13376,-3.0935E-05],[147.1372,-2.6811E-05],[147.14064,-3.2482E-05],[147.14407,-3.506E-05],[147.14751,-3.6607E-05],[147.15095,-3.6607E-05],[147.15439,-2.9389E-05],[147.15782,-3.042E-05],[147.16126,-2.7842E-05],[147.1647,-2.8357E-05],[147.16814,-3.042E-05],[147.17157,-2.7842E-05],[147.17501,-2.8357E-05],[147.17845,-2.5779E-05],[147.18189,-2.6295E-05],[147.18532,-3.042E-05],[147.18876,-3.2998E-05],[147.1922,-3.1451E-05],[147.19563,-3.2482E-05],[147.19907,-2.7842E-05],[147.20251,-2.5779E-05],[147.20595,-2.9389E-05],[147.20938,-2.6295E-05],[147.21282,-2.7842E-05],[147.21626,-2.7326E-05],[147.2197,-2.8873E-05],[147.22313,-3.1967E-05],[147.22657,-2.9389E-05],[147.23001,-2.8873E-05],[147.23345,-2.7842E-05],[147.23688,-2.9904E-05],[147.24032,-2.9389E-05],[147.24376,-3.0935E-05],[147.24719,-3.4544E-05],[147.25063,-2.8357E-05],[147.25407,-2.9904E-05],[147.25751,-3.042E-05],[147.26094,-2.7842E-05],[147.26438,-3.0935E-05],[147.26782,-3.042E-05],[147.27126,-3.042E-05],[147.27469,-2.5779E-05],[147.27813,-2.8873E-05],[147.28157,-2.5779E-05],[147.28501,-2.6295E-05],[147.28844,-3.6607E-05],[147.29188,-2.8873E-05],[147.29532,-2.5779E-05],[147.29875,-2.4233E-05],[147.30219,-2.8357E-05]]}
-{"quant":[147.556,-2.9371E-05],"mems":[[147.45877,-2.4233E-05],[147.46231,-2.7326E-05],[147.46585,-2.7326E-05],[147.4694,-2.8357E-05],[147.47294,-2.8873E-05],[147.47648,-2.7842E-05],[147.48002,-2.5779E-05],[147.48357,-2.7842E-05],[147.48711,-2.9904E-05],[147.49065,-2.7326E-05],[147.49419,-2.8873E-05],[147.49774,-2.8873E-05],[147.50128,-2.5264E-05],[147.50482,-2.5264E-05],[147.50837,-2.8873E-05],[147.51191,-2.7842E-05],[147.51545,-2.7842E-05],[147.51899,-2.7842E-05],[147.52254,-2.4233E-05],[147.52608,-2.7842E-05],[147.52962,-3.042E-05],[147.53316,-3.0935E-05],[147.53671,-2.6295E-05],[147.54025,-2.8873E-05],[147.54379,-3.2482E-05],[147.54733,-2.6811E-05],[147.55088,-2.8357E-05],[147.55442,-2.7326E-05],[147.55796,-3.042E-05],[147.56151,-3.1451E-05],[147.56505,-2.8873E-05],[147.56859,-3.0935E-05],[147.57213,-2.6811E-05],[147.57568,-2.6811E-05],[147.57922,-3.0935E-05],[147.58276,-2.9389E-05],[147.5863,-2.5264E-05],[147.58985,-2.9904E-05],[147.59339,-3.042E-05],[147.59693,-2.8357E-05],[147.60047,-3.1451E-05],[147.60402,-2.8357E-05],[147.60756,-2.8357E-05],[147.6111,-2.8873E-05],[147.61465,-3.4544E-05],[147.61819,-3.5576E-05],[147.62173,-2.8357E-05],[147.62527,-2.8357E-05],[147.62882,-2.7326E-05],[147.63236,-2.8873E-05],[147.6359,-3.0935E-05],[147.63944,-2.9389E-05],[147.64299,-2.8873E-05],[147.64653,-2.6811E-05],[147.65007,-2.8357E-05],[147.65361,-2.9904E-05],[147.65716,-2.7842E-05],[147.6607,-3.1451E-05],[147.66424,-3.1451E-05],[147.66779,-2.6811E-05],[147.67133,-3.2998E-05],[147.67487,-3.1967E-05],[147.67841,-2.7842E-05],[147.68196,-2.8357E-05],[147.6855,-2.9389E-05],[147.68904,-3.1967E-05],[147.69258,-3.0935E-05],[147.69613,-2.6295E-05],[147.69967,-2.7842E-05],[147.70321,-3.2482E-05],[147.70675,-2.7326E-05],[147.7103,-2.217E-05],[147.71384,-2.6811E-05],[147.71738,-3.4029E-05],[147.72093,-3.4029E-05],[147.72447,-2.9904E-05],[147.72801,-2.8873E-05],[147.73155,-2.5264E-05],[147.7351,-2.5779E-05],[147.73864,-2.7326E-05],[147.74218,-2.7326E-05],[147.74572,-2.7326E-05],[147.74927,-2.3717E-05],[147.75281,-2.0108E-05],[147.75635,-2.4748E-05]]}
-{"quant":[148.168,-2.914E-05],"mems":[[148.06811,-3.2482E-05],[148.07165,-3.042E-05],[148.07519,-2.8873E-05],[148.07873,-2.6811E-05],[148.08228,-3.042E-05],[148.08582,-3.1967E-05],[148.08936,-2.9389E-05],[148.09291,-2.7326E-05],[148.09645,-2.8873E-05],[148.09999,-3.042E-05],[148.10353,-2.8873E-05],[148.10708,-2.9904E-05],[148.11062,-2.8357E-05],[148.11416,-2.7326E-05],[148.1177,-2.5264E-05],[148.12125,-2.5779E-05],[148.12479,-2.8357E-05],[148.12833,-2.6295E-05],[148.13187,-2.7326E-05],[148.13542,-2.8873E-05],[148.13896,-2.7326E-05],[148.1425,-2.9904E-05],[148.14605,-3.1451E-05],[148.14959,-2.5779E-05],[148.15313,-2.8357E-05],[148.15667,-3.1967E-05],[148.16022,-2.5779E-05],[148.16376,-2.8357E-05],[148.1673,-3.4544E-05],[148.17084,-3.1967E-05],[148.17439,-3.2998E-05],[148.17793,-2.7842E-05],[148.18147,-2.1655E-05],[148.18501,-2.5779E-05],[148.18856,-2.6811E-05],[148.1921,-3.0935E-05],[148.19564,-3.4029E-05],[148.19919,-2.7842E-05],[148.20273,-2.5779E-05],[148.20627,-3.1451E-05],[148.20981,-3.506E-05],[148.21336,-3.2482E-05],[148.2169,-2.9904E-05],[148.22044,-2.7842E-05],[148.22398,-2.7842E-05],[148.22753,-3.2482E-05],[148.23107,-3.3513E-05],[148.23461,-2.6295E-05],[148.23815,-2.5264E-05],[148.2417,-2.7842E-05],[148.24524,-3.0935E-05],[148.24878,-3.506E-05],[148.25233,-2.7842E-05],[148.25587,-2.4748E-05],[148.25941,-2.7326E-05],[148.26295,-2.7326E-05],[148.2665,-2.8357E-05],[148.27004,-2.7842E-05],[148.27358,-2.8873E-05],[148.27712,-3.1451E-05],[148.28067,-3.1967E-05],[148.28421,-2.7842E-05],[148.28775,-2.9389E-05],[148.29129,-3.3513E-05],[148.29484,-2.9904E-05],[148.29838,-3.4544E-05],[148.30192,-3.4544E-05],[148.30547,-2.9389E-05],[148.30901,-2.8873E-05],[148.31255,-2.5779E-05],[148.31609,-3.1967E-05],[148.31964,-3.1967E-05],[148.32318,-2.8357E-05],[148.32672,-3.042E-05],[148.33026,-2.8873E-05],[148.33381,-3.1967E-05],[148.33735,-2.9904E-05],[148.34089,-3.1451E-05],[148.34443,-3.042E-05],[148.34798,-2.5779E-05],[148.35152,-3.2482E-05],[148.35506,-2.9904E-05],[148.35861,-3.1967E-05],[148.36215,-2.9904E-05],[148.36569,-2.8357E-05],[148.36923,-3.3513E-05]]}
-{"quant":[148.647,-2.9922E-05],"mems":[[148.54991,-2.9904E-05],[148.55345,-2.9904E-05],[148.55699,-3.2998E-05],[148.56054,-3.2482E-05],[148.56408,-3.1967E-05],[148.56762,-3.0935E-05],[148.57117,-2.9389E-05],[148.57471,-2.7326E-05],[148.57825,-2.8873E-05],[148.58179,-2.9904E-05],[148.58534,-2.9904E-05],[148.58888,-3.4029E-05],[148.59242,-2.9904E-05],[148.59596,-2.8357E-05],[148.59951,-3.2998E-05],[148.60305,-3.1967E-05],[148.60659,-2.9389E-05],[148.61013,-2.4748E-05],[148.61368,-2.5779E-05],[148.61722,-2.9904E-05],[148.62076,-2.9389E-05],[148.62431,-2.7326E-05],[148.62785,-2.9389E-05],[148.63139,-3.2482E-05],[148.63493,-2.9389E-05],[148.63848,-3.3513E-05],[148.64202,-3.8154E-05],[148.64556,-3.1451E-05],[148.6491,-2.7842E-05],[148.65265,-3.1451E-05],[148.65619,-3.3513E-05],[148.65973,-3.1967E-05],[148.66327,-3.2482E-05],[148.66682,-3.2998E-05],[148.67036,-2.9904E-05],[148.6739,-2.8357E-05],[148.67745,-2.7326E-05],[148.68099,-3.042E-05],[148.68453,-3.2998E-05],[148.68807,-2.8873E-05],[148.69162,-2.6811E-05],[148.69516,-2.6811E-05],[148.6987,-3.1451E-05],[148.70224,-3.2998E-05],[148.70579,-3.0935E-05],[148.70933,-3.042E-05],[148.71287,-3.042E-05],[148.71641,-2.9904E-05],[148.71996,-2.6295E-05],[148.7235,-2.9904E-05],[148.72704,-3.1451E-05],[148.73059,-2.9389E-05],[148.73413,-3.1451E-05],[148.73767,-2.6811E-05],[148.74121,-2.6811E-05],[148.74476,-3.042E-05],[148.7483,-2.7326E-05],[148.75184,-2.7842E-05],[148.75538,-2.6295E-05],[148.75893,-2.4748E-05],[148.76247,-2.6811E-05],[148.76601,-2.8873E-05],[148.76955,-3.1451E-05],[148.7731,-3.1967E-05],[148.77664,-2.9904E-05],[148.78018,-2.6295E-05],[148.78373,-2.9389E-05],[148.78727,-3.2482E-05],[148.79081,-3.4029E-05],[148.79435,-3.2998E-05],[148.7979,-2.6295E-05],[148.80144,-2.3202E-05],[148.80498,-2.7842E-05],[148.80852,-2.6811E-05],[148.81207,-2.5264E-05],[148.81561,-3.4029E-05],[148.81915,-2.8873E-05],[148.82269,-2.7326E-05],[148.82624,-3.4029E-05],[148.82978,-3.2482E-05],[148.83332,-3.1451E-05],[148.83687,-3.2482E-05],[148.84041,-3.1967E-05],[148.84395,-2.5779E-05],[148.84749,-2.9389E-05]]}
-{"quant":[149.104,-2.914E-05],"mems":[[149.00691,-2.7326E-05],[149.01046,-2.4748E-05],[149.014,-3.2998E-05],[149.01754,-3.4029E-05],[149.02108,-2.7326E-05],[149.02463,-2.8873E-05],[149.02817,-2.6295E-05],[149.03171,-2.8357E-05],[149.03525,-3.042E-05],[149.0388,-3.1967E-05],[149.04234,-3.1451E-05],[149.04588,-2.8873E-05],[149.04943,-2.6811E-05],[149.05297,-2.3717E-05],[149.05651,-2.8873E-05],[149.06005,-3.1451E-05],[149.0636,-3.1967E-05],[149.06714,-3.1967E-05],[149.07068,-3.1451E-05],[149.07422,-3.6091E-05],[149.07777,-3.1451E-05],[149.08131,-2.7842E-05],[149.08485,-2.9904E-05],[149.08839,-2.3717E-05],[149.09194,-2.4748E-05],[149.09548,-2.8873E-05],[149.09902,-3.0935E-05],[149.10257,-3.2998E-05],[149.10611,-2.7326E-05],[149.10965,-2.7842E-05],[149.11319,-3.0935E-05],[149.11674,-2.9904E-05],[149.12028,-3.5576E-05],[149.12382,-3.506E-05],[149.12736,-2.4748E-05],[149.13091,-2.6295E-05],[149.13445,-3.1451E-05],[149.13799,-2.8357E-05],[149.14153,-2.9389E-05],[149.14508,-3.1451E-05],[149.14862,-2.9904E-05],[149.15216,-2.9389E-05],[149.15571,-3.0935E-05],[149.15925,-2.7842E-05],[149.16279,-2.5779E-05],[149.16633,-2.7326E-05],[149.16988,-2.5779E-05],[149.17342,-2.9389E-05],[149.17696,-3.0935E-05],[149.1805,-2.9389E-05],[149.18405,-2.9904E-05],[149.18759,-2.9904E-05],[149.19113,-2.8873E-05],[149.19467,-2.7842E-05],[149.19822,-2.6811E-05],[149.20176,-2.6295E-05],[149.2053,-3.042E-05],[149.20885,-2.9389E-05],[149.21239,-2.5264E-05],[149.21593,-2.8357E-05],[149.21947,-3.1967E-05],[149.22302,-3.2482E-05],[149.22656,-2.9389E-05],[149.2301,-2.8873E-05],[149.23364,-2.8873E-05],[149.23719,-2.9389E-05],[149.24073,-3.1967E-05],[149.24427,-2.7842E-05],[149.24781,-2.5779E-05],[149.25136,-2.9389E-05],[149.2549,-3.2998E-05],[149.25844,-3.6607E-05],[149.26199,-3.0935E-05],[149.26553,-3.2998E-05],[149.26907,-3.5576E-05],[149.27261,-2.8357E-05],[149.27616,-3.2482E-05],[149.2797,-2.8357E-05],[149.28324,-2.6811E-05],[149.28678,-2.8873E-05],[149.29033,-2.8873E-05],[149.29387,-3.042E-05],[149.29741,-2.9904E-05],[149.30095,-3.3513E-05],[149.3045,-2.9389E-05]]}
-{"quant":[149.567,-2.8873E-05],"mems":[[149.46746,-2.6295E-05],[149.471,-2.7842E-05],[149.47455,-3.0935E-05],[149.47809,-2.8357E-05],[149.48163,-2.9389E-05],[149.48517,-3.1451E-05],[149.48872,-3.0935E-05],[149.49226,-3.2482E-05],[149.4958,-3.4029E-05],[149.49934,-2.9904E-05],[149.50289,-2.6295E-05],[149.50643,-2.7842E-05],[149.50997,-3.1451E-05],[149.51351,-2.5779E-05],[149.51706,-2.4748E-05],[149.5206,-2.8873E-05],[149.52414,-2.7326E-05],[149.52769,-3.1451E-05],[149.53123,-2.9389E-05],[149.53477,-2.5779E-05],[149.53831,-2.8873E-05],[149.54186,-3.1967E-05],[149.5454,-3.2998E-05],[149.54894,-3.2482E-05],[149.55248,-3.4544E-05],[149.55603,-2.8873E-05],[149.55957,-2.6295E-05],[149.56311,-3.0935E-05],[149.56665,-3.0935E-05],[149.5702,-3.1967E-05],[149.57374,-2.9389E-05],[149.57728,-2.4233E-05],[149.58083,-2.5779E-05],[149.58437,-2.8873E-05],[149.58791,-2.8873E-05],[149.59145,-3.2482E-05],[149.595,-2.9389E-05],[149.59854,-2.6295E-05],[149.60208,-2.7326E-05],[149.60562,-2.5264E-05],[149.60917,-3.1451E-05],[149.61271,-3.042E-05],[149.61625,-2.4748E-05],[149.61979,-2.5264E-05],[149.62334,-2.6295E-05],[149.62688,-2.9904E-05],[149.63042,-3.042E-05],[149.63397,-3.2482E-05],[149.63751,-2.7842E-05],[149.64105,-2.7326E-05],[149.64459,-3.1967E-05],[149.64814,-2.8357E-05],[149.65168,-3.0935E-05],[149.65522,-3.2998E-05],[149.65876,-3.042E-05],[149.66231,-2.7842E-05],[149.66585,-2.8873E-05],[149.66939,-2.9904E-05],[149.67293,-3.1451E-05],[149.67648,-3.042E-05],[149.68002,-2.6295E-05],[149.68356,-2.9904E-05],[149.68711,-2.8873E-05],[149.69065,-2.8873E-05],[149.69419,-3.2998E-05],[149.69773,-3.2482E-05],[149.70128,-3.1967E-05],[149.70482,-2.8873E-05],[149.70836,-2.7842E-05],[149.7119,-2.9389E-05],[149.71545,-3.042E-05],[149.71899,-3.3513E-05],[149.72253,-3.2482E-05],[149.72607,-2.7326E-05],[149.72962,-2.7842E-05],[149.73316,-3.2482E-05],[149.7367,-3.0935E-05],[149.74025,-3.0935E-05],[149.74379,-3.1967E-05],[149.74733,-2.6811E-05],[149.75087,-3.042E-05],[149.75442,-3.2482E-05],[149.75796,-3.4029E-05],[149.7615,-3.7122E-05],[149.76504,-3.0935E-05],[149.76859,-2.7842E-05]]}
-{"quant":[150.045,1.2352],"mems":[[149.94572,-2.4233E-05],[149.94926,-2.1655E-05],[149.95281,-2.6295E-05],[149.95635,-3.4544E-05],[149.95989,-3.2482E-05],[149.96343,-2.6811E-05],[149.96698,-3.1451E-05],[149.97052,-2.6811E-05],[149.97406,-2.4748E-05],[149.9776,-3.0935E-05],[149.98115,-3.4544E-05],[149.98469,-3.4029E-05],[149.98823,-3.042E-05],[149.99177,-3.042E-05],[149.99532,-3.3513E-05],[149.99886,-3.2998E-05],[150.0024,-3.042E-05],[150.00595,-3.4544E-05],[150.00949,-3.3513E-05],[150.01303,-2.9904E-05],[150.01657,-2.9904E-05],[150.02012,-2.9904E-05],[150.02366,-3.2482E-05],[150.0272,-2.9389E-05],[150.03074,-2.6811E-05],[150.03429,-3.1967E-05],[150.03783,-3.3513E-05],[150.04137,-2.8873E-05],[150.04491,-2.5779E-05],[150.04846,-3.1451E-05],[150.052,-2.9389E-05],[150.05548,-2.7842E-05],[150.05896,-3.2482E-05],[150.06244,-2.8873E-05],[150.06592,-2.8873E-05],[150.0694,-2.6811E-05],[150.07288,-2.3202E-05],[150.07636,-2.6811E-05],[150.07984,-3.2482E-05],[150.08332,-3.7638E-05],[150.0868,-3.4029E-05],[150.09028,-3.2482E-05],[150.09376,-2.9389E-05],[150.09724,-2.5779E-05],[150.10072,-2.7842E-05],[150.1042,-2.8357E-05],[150.10768,-3.0935E-05],[150.11116,-3.042E-05],[150.11464,-2.5779E-05],[150.11812,-2.5264E-05],[150.1216,-2.6811E-05],[150.12508,-2.9904E-05],[150.12856,-3.042E-05],[150.13204,-2.9389E-05],[150.13552,-2.9904E-05],[150.139,-2.9904E-05],[150.14248,-2.7842E-05],[150.14596,-2.9389E-05],[150.14944,-3.1967E-05],[150.15292,-2.8357E-05],[150.1564,-2.6295E-05],[150.15988,-2.6295E-05],[150.16336,-2.5779E-05],[150.16684,-2.9389E-05],[150.17032,-3.1451E-05],[150.1738,-2.8357E-05],[150.17728,-2.5779E-05],[150.18076,-2.6295E-05],[150.18424,-2.9904E-05],[150.18772,-2.9904E-05],[150.1912,-2.7326E-05],[150.19468,-2.8357E-05],[150.19816,-2.3202E-05],[150.20164,-2.8357E-05],[150.20512,-3.6607E-05],[150.2086,-2.9904E-05],[150.21208,-3.0935E-05],[150.21556,-2.7842E-05],[150.21904,-2.4748E-05],[150.22252,-3.4544E-05],[150.226,-3.7122E-05],[150.22948,-3.2998E-05],[150.23296,-3.042E-05],[150.23644,-2.6811E-05],[150.23992,-3.1451E-05],[150.2434,-3.7122E-05],[150.24688,-3.0935E-05]]}
-{"quant":[150.502,-3.1331E-05],"mems":[[150.40348,-3.506E-05],[150.40696,-3.4544E-05],[150.41044,-3.2482E-05],[150.41392,-2.6811E-05],[150.4174,-2.6811E-05],[150.42088,-3.3513E-05],[150.42436,-3.1451E-05],[150.42784,-3.3513E-05],[150.43132,-3.4029E-05],[150.4348,-2.8357E-05],[150.43828,-2.9389E-05],[150.44176,-3.3513E-05],[150.44524,-3.3513E-05],[150.44872,-3.4029E-05],[150.4522,-3.0935E-05],[150.45568,-3.042E-05],[150.45916,-3.2998E-05],[150.46264,-2.7842E-05],[150.46612,-3.042E-05],[150.4696,-3.2998E-05],[150.47308,-2.9389E-05],[150.47656,-2.9904E-05],[150.48004,-2.7842E-05],[150.48352,-2.8357E-05],[150.487,-3.1451E-05],[150.49048,-2.7842E-05],[150.49396,-2.8873E-05],[150.49744,-3.2998E-05],[150.50092,-3.042E-05],[150.5044,-3.042E-05],[150.50788,-3.0935E-05],[150.51136,-2.9904E-05],[150.51484,-2.9389E-05],[150.51832,-2.9389E-05],[150.5218,-3.042E-05],[150.52528,-3.0935E-05],[150.52876,-3.042E-05],[150.53224,-3.1451E-05],[150.53572,-2.7842E-05],[150.5392,-2.5264E-05],[150.54268,-2.7842E-05],[150.54616,-3.0935E-05],[150.54964,-3.1967E-05],[150.55312,-2.9904E-05],[150.5566,-3.1967E-05],[150.56008,-3.2482E-05],[150.56356,-3.2482E-05],[150.56704,-3.4029E-05],[150.57052,-3.2482E-05],[150.574,-2.7842E-05],[150.57748,-3.1451E-05],[150.58096,-3.3513E-05],[150.58444,-3.4544E-05],[150.58792,-3.5576E-05],[150.5914,-3.3513E-05],[150.59488,-3.8669E-05],[150.59836,-3.1451E-05],[150.60184,-2.8873E-05],[150.60532,-3.4029E-05],[150.6088,-3.042E-05],[150.61228,-3.2998E-05],[150.61576,-2.8873E-05],[150.61924,-2.9904E-05],[150.62272,-3.1451E-05],[150.6262,-3.1967E-05],[150.62968,-3.1451E-05],[150.63316,-3.1451E-05],[150.63664,-3.4544E-05],[150.64012,-2.5264E-05],[150.6436,-2.5264E-05],[150.64708,-3.0935E-05],[150.65056,-3.1967E-05],[150.65404,-3.0935E-05],[150.65752,-2.6295E-05],[150.661,-2.6811E-05],[150.66448,-2.9389E-05],[150.66796,-2.8357E-05],[150.67144,-2.6811E-05],[150.67492,-2.9389E-05],[150.6784,-2.9389E-05],[150.68188,-2.8873E-05],[150.68536,-2.7842E-05],[150.68884,-3.1451E-05],[150.69232,-3.3513E-05],[150.6958,-3.2998E-05],[150.69928,-3.1967E-05],[150.70276,-2.8873E-05]]}
-{"quant":[151.062,-3.042E-05],"mems":[[150.96376,-2.9904E-05],[150.96724,-2.6295E-05],[150.97072,-2.7842E-05],[150.9742,-2.7326E-05],[150.97768,-3.0935E-05],[150.98116,-2.9904E-05],[150.98464,-2.6295E-05],[150.98812,-2.8873E-05],[150.9916,-2.9904E-05],[150.99508,-2.7842E-05],[150.99856,-2.8873E-05],[151.00204,-3.1451E-05],[151.00552,-2.8357E-05],[151.009,-3.2482E-05],[151.01248,-3.2998E-05],[151.01596,-2.7326E-05],[151.01944,-2.4748E-05],[151.02292,-2.4233E-05],[151.0264,-2.9904E-05],[151.02988,-2.5779E-05],[151.03336,-2.5779E-05],[151.03684,-3.0935E-05],[151.04032,-2.8357E-05],[151.0438,-2.8357E-05],[151.04728,-2.5779E-05],[151.05076,-3.042E-05],[151.05424,-3.0935E-05],[151.05772,-2.7842E-05],[151.0612,-3.0935E-05],[151.06468,-2.8873E-05],[151.06816,-3.0935E-05],[151.07164,-3.6091E-05],[151.07512,-3.4544E-05],[151.0786,-3.0935E-05],[151.08208,-2.5779E-05],[151.08556,-2.4748E-05],[151.08904,-3.4544E-05],[151.09252,-3.1967E-05],[151.096,-2.7326E-05],[151.09948,-3.506E-05],[151.10296,-3.042E-05],[151.10644,-2.5779E-05],[151.10992,-3.042E-05],[151.1134,-3.042E-05],[151.11688,-2.8357E-05],[151.12036,-3.042E-05],[151.12384,-3.0935E-05],[151.12732,-2.9389E-05],[151.1308,-3.1967E-05],[151.13428,-3.1967E-05],[151.13776,-3.1451E-05],[151.14124,-2.9389E-05],[151.14472,-2.8357E-05],[151.1482,-2.8357E-05],[151.15168,-2.7326E-05],[151.15516,-3.042E-05],[151.15864,-3.2482E-05],[151.16212,-3.3513E-05],[151.1656,-2.7842E-05],[151.16908,-2.7326E-05],[151.17256,-3.4544E-05],[151.17604,-3.2482E-05],[151.17952,-3.2482E-05],[151.183,-3.0935E-05],[151.18648,-2.6295E-05],[151.18996,-2.9389E-05],[151.19344,-3.1967E-05],[151.19692,-3.3513E-05],[151.2004,-3.0935E-05],[151.20388,-3.2482E-05],[151.20736,-2.9389E-05],[151.21084,-2.3202E-05],[151.21432,-3.506E-05],[151.2178,-3.2482E-05],[151.22128,-2.6295E-05],[151.22476,-2.9904E-05],[151.22824,-2.8357E-05],[151.23172,-2.9904E-05],[151.2352,-2.8357E-05],[151.23868,-3.042E-05],[151.24216,-3.1451E-05],[151.24564,-2.5779E-05],[151.24912,-2.4233E-05],[151.2526,-2.8357E-05],[151.25608,-3.1967E-05],[151.25956,-3.1451E-05],[151.26304,-3.2482E-05]]}
-{"quant":[151.522,-2.8976E-05],"mems":[[151.42312,-3.0935E-05],[151.4266,-2.9389E-05],[151.43008,-3.1967E-05],[151.43356,-3.3513E-05],[151.43704,-3.1967E-05],[151.44052,-3.0935E-05],[151.444,-2.8873E-05],[151.44748,-3.042E-05],[151.45096,-3.0935E-05],[151.45444,-2.9389E-05],[151.45792,-3.3513E-05],[151.4614,-3.6091E-05],[151.46488,-3.1967E-05],[151.46836,-2.7842E-05],[151.47184,-2.7842E-05],[151.47532,-3.042E-05],[151.4788,-3.1451E-05],[151.48228,-3.6091E-05],[151.48576,-3.1967E-05],[151.48924,-2.7326E-05],[151.49272,-2.8357E-05],[151.4962,-2.5264E-05],[151.49968,-3.1967E-05],[151.50316,-3.3513E-05],[151.50664,-2.7326E-05],[151.51012,-2.8873E-05],[151.5136,-2.9904E-05],[151.51708,-3.1967E-05],[151.52056,-2.8873E-05],[151.52404,-3.1451E-05],[151.52752,-3.042E-05],[151.531,-2.3717E-05],[151.53448,-2.9904E-05],[151.53796,-3.1967E-05],[151.54144,-3.4544E-05],[151.54492,-2.8357E-05],[151.5484,-2.2686E-05],[151.55188,-2.6811E-05],[151.55536,-2.5779E-05],[151.55884,-3.1451E-05],[151.56232,-3.4029E-05],[151.5658,-2.9904E-05],[151.56928,-2.7842E-05],[151.57276,-2.7842E-05],[151.57624,-2.8873E-05],[151.57972,-3.042E-05],[151.5832,-2.9389E-05],[151.58668,-2.6811E-05],[151.59016,-2.8357E-05],[151.59364,-2.8357E-05],[151.59712,-3.0935E-05],[151.6006,-3.2998E-05],[151.60408,-2.8357E-05],[151.60756,-2.8357E-05],[151.61104,-2.8873E-05],[151.61452,-2.6811E-05],[151.618,-2.5779E-05],[151.62148,-2.8357E-05],[151.62496,-2.9904E-05],[151.62844,-2.7842E-05],[151.63192,-2.7842E-05],[151.6354,-2.8357E-05],[151.63888,-3.1451E-05],[151.64236,-3.0935E-05],[151.64584,-2.9904E-05],[151.64932,-2.8357E-05],[151.6528,-2.6295E-05],[151.65628,-3.1451E-05],[151.65976,-3.2998E-05],[151.66324,-3.2998E-05],[151.66672,-3.1451E-05],[151.6702,-2.7326E-05],[151.67368,-2.9904E-05],[151.67716,-2.6811E-05],[151.68064,-2.7842E-05],[151.68412,-3.2998E-05],[151.6876,-3.042E-05],[151.69108,-3.2998E-05],[151.69456,-3.0935E-05],[151.69804,-2.9389E-05],[151.70152,-3.7638E-05],[151.705,-3.4029E-05],[151.70848,-2.6295E-05],[151.71196,-2.4748E-05],[151.71544,-2.5264E-05],[151.71892,-2.7842E-05],[151.7224,-3.1967E-05]]}
-{"quant":[152.029,-3.1184E-05],"mems":[[151.9312,-2.9389E-05],[151.93468,-3.1451E-05],[151.93816,-2.8357E-05],[151.94164,-3.0935E-05],[151.94512,-3.1967E-05],[151.9486,-2.8357E-05],[151.95208,-2.9904E-05],[151.95556,-2.5264E-05],[151.95904,-3.042E-05],[151.96252,-3.5576E-05],[151.966,-3.042E-05],[151.96948,-2.9904E-05],[151.97296,-3.0935E-05],[151.97644,-2.9389E-05],[151.97992,-2.9904E-05],[151.9834,-3.3513E-05],[151.98688,-3.2482E-05],[151.99036,-3.042E-05],[151.99384,-2.8357E-05],[151.99732,-2.6811E-05],[152.0008,-2.6811E-05],[152.00428,-2.8873E-05],[152.00776,-2.9389E-05],[152.01124,-2.9904E-05],[152.01472,-3.0935E-05],[152.0182,-2.8873E-05],[152.02168,-2.9904E-05],[152.02516,-3.042E-05],[152.02864,-3.3513E-05],[152.03212,-2.9389E-05],[152.0356,-2.5264E-05],[152.03908,-3.1967E-05],[152.04256,-2.6811E-05],[152.04604,-2.4748E-05],[152.04952,-2.7326E-05],[152.053,-3.1967E-05],[152.05648,-3.4544E-05],[152.05996,-3.042E-05],[152.06344,-3.2482E-05],[152.06692,-3.4029E-05],[152.0704,-3.4029E-05],[152.07388,-3.042E-05],[152.07736,-3.0935E-05],[152.08084,-3.3513E-05],[152.08432,-2.9904E-05],[152.0878,-3.2482E-05],[152.09128,-3.1451E-05],[152.09476,-3.4029E-05],[152.09824,-3.2482E-05],[152.10172,-3.042E-05],[152.1052,-3.8669E-05],[152.10868,-3.3513E-05],[152.11216,-3.4544E-05],[152.11564,-3.0935E-05],[152.11912,-2.4748E-05],[152.1226,-3.0935E-05],[152.12608,-2.9904E-05],[152.12956,-3.2482E-05],[152.13304,-2.9389E-05],[152.13652,-2.7842E-05],[152.14,-3.0935E-05],[152.14348,-2.9904E-05],[152.14696,-3.4029E-05],[152.15044,-2.9904E-05],[152.15392,-2.7842E-05],[152.1574,-2.7842E-05],[152.16088,-2.5264E-05],[152.16436,-2.9389E-05],[152.16784,-3.0935E-05],[152.17132,-3.0935E-05],[152.1748,-3.1967E-05],[152.17828,-3.6091E-05],[152.18176,-3.4544E-05],[152.18524,-2.8873E-05],[152.18872,-3.0935E-05],[152.1922,-3.3513E-05],[152.19568,-2.9389E-05],[152.19916,-2.5264E-05],[152.20264,-3.6607E-05],[152.20612,-3.8154E-05],[152.2096,-2.6295E-05],[152.21308,-2.8357E-05],[152.21656,-2.9904E-05],[152.22004,-3.042E-05],[152.22352,-3.2998E-05],[152.227,-3.4544E-05],[152.23048,-3.4544E-05]]}
-{"quant":[152.513,0.44678],"mems":[[152.51932,-3.0935E-05],[152.5228,-3.1967E-05],[152.52628,-3.2998E-05],[152.52976,-3.4029E-05],[152.53324,-2.9904E-05],[152.53672,-2.7326E-05],[152.5402,-2.8357E-05],[152.54368,-3.0935E-05],[152.54716,-3.4544E-05],[152.55064,-2.9904E-05],[152.55412,-2.9904E-05],[152.5576,-3.2482E-05],[152.56108,-3.0935E-05],[152.56456,-3.042E-05],[152.56804,-3.2482E-05],[152.57152,-3.506E-05],[152.575,-3.1967E-05],[152.57848,-2.8357E-05],[152.58196,-3.0935E-05],[152.58544,-3.0935E-05],[152.58892,-3.0935E-05],[152.5924,-3.1451E-05],[152.59588,-2.8357E-05],[152.59936,-3.1451E-05],[152.60284,-3.3513E-05],[152.60632,-3.0935E-05],[152.6098,-3.0935E-05],[152.61328,-3.2998E-05],[152.61676,-3.2482E-05],[152.62024,-3.1451E-05],[152.62372,-2.9904E-05],[152.6272,-2.9389E-05],[152.63068,-3.042E-05],[152.63416,-3.3513E-05],[152.63764,-3.2998E-05],[152.64112,-2.6295E-05],[152.6446,-2.7842E-05],[152.64808,-3.1967E-05],[152.65156,-3.2998E-05],[152.65504,-3.1451E-05],[152.65852,-2.8873E-05],[152.662,-2.9389E-05],[152.6653,-3.2998E-05],[152.66859,-3.5576E-05],[152.67189,-3.0935E-05],[152.67518,-2.9389E-05],[152.67848,-3.2482E-05],[152.68178,-3.1967E-05],[152.68507,-3.1451E-05],[152.68837,-3.0935E-05],[152.69166,-3.1451E-05],[152.69496,-3.2482E-05],[152.69826,-2.8873E-05],[152.70155,-2.8873E-05],[152.70485,-3.0935E-05],[152.70814,-2.9389E-05],[152.71144,-3.2482E-05],[152.71474,-3.2998E-05],[152.71803,-3.2482E-05],[152.72133,-3.2998E-05],[152.72462,-3.042E-05],[152.72792,-3.2482E-05],[152.73122,-3.6091E-05],[152.73451,-3.7638E-05],[152.73781,-3.3513E-05],[152.7411,-2.8873E-05],[152.7444,-2.9904E-05],[152.7477,-3.0935E-05],[152.75099,-3.3513E-05],[152.75429,-3.2998E-05],[152.75758,-2.8357E-05],[152.76088,-2.9904E-05],[152.76418,-3.4029E-05],[152.76747,-3.4544E-05],[152.77077,-3.7122E-05],[152.77406,-3.5576E-05],[152.77736,-2.7842E-05],[152.78066,-2.6295E-05],[152.78395,-2.7326E-05],[152.78725,-2.9904E-05],[152.79054,-3.1967E-05],[152.79384,-2.9389E-05],[152.79714,-2.7842E-05],[152.80043,-2.6295E-05],[152.80373,-2.8873E-05],[152.80702,-3.042E-05],[152.81032,-2.8357E-05],[152.81362,-2.9904E-05]]}
-{"quant":[153.04,-3.013E-05],"mems":[[152.94216,-3.4029E-05],[152.94546,-2.9904E-05],[152.94875,-2.6295E-05],[152.95205,-3.042E-05],[152.95534,-3.2998E-05],[152.95864,-3.2998E-05],[152.96194,-2.9389E-05],[152.96523,-3.1967E-05],[152.96853,-3.1967E-05],[152.97182,-2.8357E-05],[152.97512,-2.7326E-05],[152.97842,-3.1451E-05],[152.98171,-3.0935E-05],[152.98501,-2.4748E-05],[152.9883,-2.9389E-05],[152.9916,-3.1451E-05],[152.9949,-3.0935E-05],[152.99819,-3.4544E-05],[153.00149,-2.9389E-05],[153.00478,-2.8873E-05],[153.00808,-3.5576E-05],[153.01138,-3.6091E-05],[153.01467,-3.4029E-05],[153.01797,-3.3513E-05],[153.02126,-3.2482E-05],[153.02456,-2.9904E-05],[153.02786,-2.9904E-05],[153.03115,-3.2998E-05],[153.03445,-3.3513E-05],[153.03774,-3.4544E-05],[153.04104,-3.0935E-05],[153.04434,-2.4233E-05],[153.04763,-3.042E-05],[153.05093,-3.3513E-05],[153.05422,-2.8873E-05],[153.05752,-3.042E-05],[153.06082,-2.9389E-05],[153.06411,-2.9904E-05],[153.06741,-3.1967E-05],[153.0707,-3.042E-05],[153.074,-3.4544E-05],[153.0773,-3.4544E-05],[153.08059,-2.7326E-05],[153.08389,-2.9389E-05],[153.08718,-3.1451E-05],[153.09048,-3.1451E-05],[153.09378,-3.3513E-05],[153.09707,-3.2482E-05],[153.10037,-3.0935E-05],[153.10366,-2.7326E-05],[153.10696,-2.8357E-05],[153.11026,-3.0935E-05],[153.11355,-3.0935E-05],[153.11685,-3.042E-05],[153.12014,-2.4748E-05],[153.12344,-2.6811E-05],[153.12674,-3.1451E-05],[153.13003,-3.2482E-05],[153.13333,-3.0935E-05],[153.13662,-3.1451E-05],[153.13992,-2.9904E-05],[153.14322,-2.2686E-05],[153.14651,-2.5264E-05],[153.14981,-2.6811E-05],[153.1531,-2.8873E-05],[153.1564,-2.8357E-05],[153.1597,-2.6811E-05],[153.16299,-2.9904E-05],[153.16629,-2.8357E-05],[153.16958,-3.2998E-05],[153.17288,-3.3513E-05],[153.17618,-3.1451E-05],[153.17947,-3.1451E-05],[153.18277,-2.9904E-05],[153.18606,-3.0935E-05],[153.18936,-2.8873E-05],[153.19266,-2.8357E-05],[153.19595,-2.5264E-05],[153.19925,-2.9389E-05],[153.20254,-3.3513E-05],[153.20584,-2.4748E-05],[153.20914,-2.5779E-05],[153.21243,-2.4233E-05],[153.21573,-2.7326E-05],[153.21902,-3.4029E-05],[153.22232,-2.7842E-05],[153.22562,-2.9389E-05],[153.22891,-3.0935E-05],[153.23221,-2.8357E-05],[153.2355,-2.8357E-05],[153.2388,-2.9904E-05],[153.2421,-3.042E-05]]}
-{"quant":[153.827,-3.0686E-05],"mems":[[153.7299,-3.1451E-05],[153.7332,-2.9389E-05],[153.7365,-2.9389E-05],[153.73979,-3.7122E-05],[153.74309,-3.042E-05],[153.74638,-2.8873E-05],[153.74968,-2.7842E-05],[153.75298,-2.3717E-05],[153.75627,-3.1451E-05],[153.75957,-2.9904E-05],[153.76286,-2.8873E-05],[153.76616,-3.1967E-05],[153.76946,-2.8873E-05],[153.77275,-2.8873E-05],[153.77605,-2.9904E-05],[153.77934,-3.1967E-05],[153.78264,-3.2482E-05],[153.78594,-3.2482E-05],[153.78923,-3.1967E-05],[153.79253,-2.9904E-05],[153.79582,-2.6811E-05],[153.79912,-2.6811E-05],[153.80242,-3.042E-05],[153.80571,-3.042E-05],[153.80901,-3.3513E-05],[153.8123,-2.7842E-05],[153.8156,-2.6811E-05],[153.8189,-3.0935E-05],[153.82219,-2.8873E-05],[153.82549,-3.1451E-05],[153.82878,-3.1967E-05],[153.83208,-3.1967E-05],[153.83538,-3.5576E-05],[153.83867,-3.506E-05],[153.84197,-3.042E-05],[153.84526,-2.7326E-05],[153.84856,-2.5779E-05],[153.85186,-2.9389E-05],[153.85515,-2.7326E-05],[153.85845,-2.7326E-05],[153.86174,-3.3513E-05],[153.86504,-3.0935E-05],[153.86834,-2.7842E-05],[153.87163,-2.5264E-05],[153.87493,-3.2998E-05],[153.87822,-3.4544E-05],[153.88152,-2.9389E-05],[153.88482,-3.042E-05],[153.88811,-3.1451E-05],[153.89141,-3.4544E-05],[153.8947,-3.2998E-05],[153.898,-3.2998E-05],[153.9013,-3.2482E-05],[153.90459,-2.7842E-05],[153.90789,-2.5779E-05],[153.91118,-2.6811E-05],[153.91448,-3.2998E-05],[153.91778,-3.5576E-05],[153.92107,-3.4029E-05],[153.92437,-2.8873E-05],[153.92766,-2.7842E-05],[153.93096,-2.8873E-05],[153.93426,-2.8873E-05],[153.93755,-3.0935E-05],[153.94085,-2.9904E-05],[153.94414,-2.7326E-05],[153.94744,-2.4233E-05],[153.95074,-3.042E-05],[153.95403,-3.506E-05],[153.95733,-2.8873E-05],[153.96062,-3.3513E-05],[153.96392,-3.4029E-05],[153.96722,-2.9904E-05],[153.97051,-3.2998E-05],[153.97381,-2.9389E-05],[153.9771,-3.042E-05],[153.9804,-3.6091E-05],[153.9837,-3.0935E-05],[153.98699,-2.3717E-05],[153.99029,-2.5264E-05],[153.99358,-3.1967E-05],[153.99688,-3.2482E-05],[154.00018,-3.042E-05],[154.00347,-3.1451E-05],[154.00677,-3.2998E-05],[154.01006,-3.1967E-05],[154.01336,-3.1451E-05],[154.01666,-3.2482E-05],[154.01995,-3.1451E-05],[154.02325,-2.9904E-05],[154.02654,-3.042E-05],[154.02984,-3.2998E-05]]}
-{"quant":[154.37,-3.0736E-05],"mems":[[154.27045,-2.4748E-05],[154.27374,-2.5779E-05],[154.27704,-2.8873E-05],[154.28034,-3.4029E-05],[154.28363,-2.9389E-05],[154.28693,-2.8357E-05],[154.29022,-2.9389E-05],[154.29352,-3.1967E-05],[154.29682,-3.042E-05],[154.30011,-2.5264E-05],[154.30341,-2.4748E-05],[154.3067,-2.7326E-05],[154.31,-2.9389E-05],[154.3133,-2.4748E-05],[154.31659,-2.6811E-05],[154.31989,-3.5576E-05],[154.32318,-3.3513E-05],[154.32648,-2.6811E-05],[154.32978,-2.5264E-05],[154.33307,-2.8357E-05],[154.33637,-3.3513E-05],[154.33966,-3.4029E-05],[154.34296,-3.1451E-05],[154.34626,-3.2482E-05],[154.34955,-3.2482E-05],[154.35285,-3.1451E-05],[154.35614,-3.1451E-05],[154.35944,-3.2482E-05],[154.36274,-3.2482E-05],[154.36603,-2.8357E-05],[154.36933,-2.7842E-05],[154.37262,-3.0935E-05],[154.37592,-3.4029E-05],[154.37922,-3.7122E-05],[154.38251,-2.7842E-05],[154.38581,-2.6295E-05],[154.3891,-2.9389E-05],[154.3924,-2.7842E-05],[154.3957,-3.506E-05],[154.39899,-3.2482E-05],[154.40229,-2.6811E-05],[154.40558,-2.4748E-05],[154.40888,-2.6295E-05],[154.41218,-3.2998E-05],[154.41547,-3.2998E-05],[154.41877,-3.2482E-05],[154.42206,-2.6295E-05],[154.42536,-2.5264E-05],[154.42866,-2.9904E-05],[154.43195,-3.6091E-05],[154.43525,-3.6607E-05],[154.43854,-2.8357E-05],[154.44184,-2.9904E-05],[154.44514,-3.1451E-05],[154.44843,-3.1451E-05],[154.45173,-3.1967E-05],[154.45502,-2.9904E-05],[154.45832,-3.2482E-05],[154.46162,-3.042E-05],[154.46491,-2.9904E-05],[154.46821,-3.4544E-05],[154.4715,-3.0935E-05],[154.4748,-3.0935E-05],[154.4781,-2.8357E-05],[154.48139,-2.7326E-05],[154.48469,-3.1967E-05],[154.48798,-2.9904E-05],[154.49128,-3.2998E-05],[154.49458,-3.3513E-05],[154.49787,-2.9904E-05],[154.50117,-2.9389E-05],[154.50446,-3.2482E-05],[154.50776,-3.5576E-05],[154.51106,-3.1451E-05],[154.51435,-3.042E-05],[154.51765,-2.5264E-05],[154.52094,-2.5264E-05],[154.52424,-2.8357E-05],[154.52754,-3.0935E-05],[154.53083,-3.8154E-05],[154.53413,-3.1451E-05],[154.53742,-2.3717E-05],[154.54072,-2.4748E-05],[154.54402,-2.9904E-05],[154.54731,-3.4544E-05],[154.55061,-3.506E-05],[154.5539,-3.506E-05],[154.5572,-3.1451E-05],[154.5605,-2.6811E-05],[154.56379,-3.042E-05],[154.56709,-3.5576E-05],[154.57038,-3.1967E-05]]}
-{"quant":[154.894,-2.8657E-05],"mems":[[154.79451,-2.9904E-05],[154.79781,-2.8357E-05],[154.8011,-2.9904E-05],[154.8044,-2.9389E-05],[154.8077,-2.5779E-05],[154.81099,-2.9389E-05],[154.81429,-3.042E-05],[154.81758,-3.1967E-05],[154.82088,-2.8873E-05],[154.82418,-2.3717E-05],[154.82747,-2.8357E-05],[154.83077,-2.8357E-05],[154.83406,-3.1451E-05],[154.83736,-3.0935E-05],[154.84066,-2.5779E-05],[154.84395,-3.0935E-05],[154.84725,-2.9389E-05],[154.85054,-2.8357E-05],[154.85384,-3.2482E-05],[154.85714,-3.1451E-05],[154.86043,-3.042E-05],[154.86373,-2.9904E-05],[154.86702,-2.4233E-05],[154.87032,-2.8873E-05],[154.87362,-3.4029E-05],[154.87691,-2.7842E-05],[154.88021,-3.042E-05],[154.8835,-2.9904E-05],[154.8868,-2.8873E-05],[154.8901,-3.0935E-05],[154.89339,-2.6811E-05],[154.89669,-3.1451E-05],[154.89998,-2.9904E-05],[154.90328,-2.5264E-05],[154.90658,-2.9904E-05],[154.90987,-3.042E-05],[154.91317,-2.8873E-05],[154.91646,-2.8873E-05],[154.91976,-2.7326E-05],[154.92306,-2.5264E-05],[154.92635,-2.9389E-05],[154.92965,-3.0935E-05],[154.93294,-3.1967E-05],[154.93624,-3.1967E-05],[154.93954,-2.7326E-05],[154.94283,-2.5264E-05],[154.94613,-2.5779E-05],[154.94942,-2.7842E-05],[154.95272,-2.9904E-05],[154.95602,-3.2998E-05],[154.95931,-3.1451E-05],[154.96261,-2.6811E-05],[154.9659,-2.7326E-05],[154.9692,-3.2482E-05],[154.9725,-3.1967E-05],[154.97579,-2.5264E-05],[154.97909,-2.6295E-05],[154.98238,-2.6811E-05],[154.98568,-2.4748E-05],[154.98898,-2.7326E-05],[154.99227,-3.042E-05],[154.99557,-2.6811E-05],[154.99886,-2.6295E-05],[155.00216,-2.8873E-05],[155.00546,-2.8873E-05],[155.00875,-2.9904E-05],[155.01205,-3.1451E-05],[155.01534,-3.2482E-05],[155.01864,-2.6295E-05],[155.02194,-2.9389E-05],[155.02523,-3.1451E-05],[155.02853,-3.0935E-05],[155.03182,-2.9904E-05],[155.03512,-2.4748E-05],[155.03842,-2.7842E-05],[155.04171,-2.6811E-05],[155.04501,-3.0935E-05],[155.0483,-3.2998E-05],[155.0516,-2.9904E-05],[155.0549,-3.042E-05],[155.05819,-2.8357E-05],[155.06149,-3.1451E-05],[155.06478,-2.8873E-05],[155.06808,-2.6295E-05],[155.07138,-3.0935E-05],[155.07467,-2.4233E-05],[155.07797,-2.3202E-05],[155.08126,-3.4029E-05],[155.08456,-2.7842E-05],[155.08786,-2.1655E-05],[155.09115,-2.217E-05],[155.09445,-2.0624E-05]]}
-{"quant":[155.416,-3.0299E-05],"mems":[[155.3194,-3.4544E-05],[155.32283,-3.1967E-05],[155.32627,-2.8873E-05],[155.3297,-3.1967E-05],[155.33313,-2.7842E-05],[155.33657,-2.8357E-05],[155.34,-3.4029E-05],[155.34343,-3.2998E-05],[155.34687,-2.6295E-05],[155.3503,-2.7326E-05],[155.35373,-2.8873E-05],[155.35717,-2.5264E-05],[155.3606,-2.8357E-05],[155.36403,-3.4029E-05],[155.36747,-3.2482E-05],[155.3709,-2.9389E-05],[155.37433,-3.1451E-05],[155.37777,-2.9904E-05],[155.3812,-3.1967E-05],[155.38463,-3.2482E-05],[155.38807,-2.9904E-05],[155.3915,-2.7842E-05],[155.39493,-2.4748E-05],[155.39837,-2.9389E-05],[155.4018,-2.8873E-05],[155.40523,-2.9904E-05],[155.40867,-3.4029E-05],[155.4121,-2.7842E-05],[155.41553,-2.8357E-05],[155.41897,-3.042E-05],[155.4224,-3.0935E-05],[155.42583,-3.2998E-05],[155.42927,-3.1451E-05],[155.4327,-2.8357E-05],[155.43613,-3.2482E-05],[155.43957,-3.506E-05],[155.443,-2.7842E-05],[155.44643,-2.8357E-05],[155.44987,-2.8357E-05],[155.4533,-2.8357E-05],[155.45673,-2.7326E-05],[155.46017,-2.5779E-05],[155.4636,-2.7326E-05],[155.46703,-2.7842E-05],[155.47047,-2.9389E-05],[155.4739,-2.7326E-05],[155.47733,-3.0935E-05],[155.48077,-3.4544E-05],[155.4842,-3.0935E-05],[155.48763,-2.8873E-05],[155.49107,-2.9389E-05],[155.4945,-3.0935E-05],[155.49793,-3.1967E-05],[155.50137,-2.8873E-05],[155.5048,-3.3513E-05],[155.50823,-3.7122E-05],[155.51167,-2.9389E-05],[155.5151,-2.9904E-05],[155.51853,-3.2998E-05],[155.52197,-3.4544E-05],[155.5254,-3.4544E-05],[155.52883,-3.2482E-05],[155.53227,-2.9904E-05],[155.5357,-2.9389E-05],[155.53913,-3.042E-05],[155.54257,-2.9904E-05],[155.546,-3.042E-05],[155.54943,-2.5264E-05],[155.55287,-2.6295E-05],[155.5563,-2.9904E-05],[155.55973,-2.8873E-05],[155.56317,-2.9389E-05],[155.5666,-2.7326E-05],[155.57003,-2.6295E-05],[155.57347,-2.4748E-05],[155.5769,-3.0935E-05],[155.58033,-3.4544E-05],[155.58377,-3.0935E-05],[155.5872,-3.042E-05],[155.59063,-2.4233E-05],[155.59407,-2.5779E-05],[155.5975,-2.6295E-05],[155.60093,-2.7842E-05],[155.60437,-3.1451E-05],[155.6078,-2.7842E-05],[155.61123,-2.9904E-05],[155.61467,-2.7842E-05],[155.6181,-2.6295E-05]]}
-{"quant":[156.163,-2.999E-05],"mems":[[156.06443,-2.7842E-05],[156.06787,-2.9389E-05],[156.0713,-3.1967E-05],[156.07473,-2.7326E-05],[156.07817,-2.8357E-05],[156.0816,-3.5576E-05],[156.08503,-3.5576E-05],[156.08847,-2.8873E-05],[156.0919,-2.3202E-05],[156.09533,-2.9904E-05],[156.09877,-2.8357E-05],[156.1022,-2.6811E-05],[156.10563,-2.9389E-05],[156.10907,-2.1655E-05],[156.1125,-2.4748E-05],[156.11593,-2.6295E-05],[156.11937,-2.6811E-05],[156.1228,-3.3513E-05],[156.12623,-2.9904E-05],[156.12967,-2.6295E-05],[156.1331,-2.7326E-05],[156.13653,-2.7842E-05],[156.13997,-3.042E-05],[156.1434,-2.9389E-05],[156.14683,-3.1451E-05],[156.15027,-3.0935E-05],[156.1537,-2.8357E-05],[156.15713,-3.042E-05],[156.16057,-2.8357E-05],[156.164,-2.9904E-05],[156.16743,-2.8357E-05],[156.17087,-2.5779E-05],[156.1743,-3.4544E-05],[156.17773,-3.4544E-05],[156.18117,-3.0935E-05],[156.1846,-3.042E-05],[156.18803,-3.0935E-05],[156.19147,-2.7842E-05],[156.1949,-2.5264E-05],[156.19833,-2.9904E-05],[156.20177,-3.2998E-05],[156.2052,-3.4029E-05],[156.20863,-3.0935E-05],[156.21207,-3.042E-05],[156.2155,-2.9904E-05],[156.21893,-2.6295E-05],[156.22237,-2.8873E-05],[156.2258,-2.9389E-05],[156.22923,-2.8357E-05],[156.23267,-2.9904E-05],[156.2361,-2.6295E-05],[156.23953,-2.8873E-05],[156.24297,-3.2482E-05],[156.2464,-2.8873E-05],[156.24983,-2.9904E-05],[156.25327,-3.042E-05],[156.2567,-2.9904E-05],[156.26013,-3.042E-05],[156.26357,-3.2998E-05],[156.267,-2.9904E-05],[156.27043,-2.5779E-05],[156.27387,-2.6295E-05],[156.2773,-2.8873E-05],[156.28073,-3.1451E-05],[156.28417,-2.8873E-05],[156.2876,-3.0935E-05],[156.29103,-3.0935E-05],[156.29447,-2.9389E-05],[156.2979,-2.9904E-05],[156.30133,-2.8873E-05],[156.30477,-3.042E-05],[156.3082,-2.5779E-05],[156.31163,-2.6811E-05],[156.31507,-2.8873E-05],[156.3185,-2.9904E-05],[156.32193,-3.1967E-05],[156.32537,-2.7842E-05],[156.3288,-3.042E-05],[156.33223,-2.8873E-05],[156.33567,-2.4748E-05],[156.3391,-2.5779E-05],[156.34253,-3.1451E-05],[156.34597,-3.2998E-05],[156.3494,-3.0935E-05],[156.35283,-3.042E-05],[156.35627,-2.7842E-05],[156.3597,-3.0935E-05],[156.36313,-2.8873E-05]]}
-{"quant":[156.626,-2.9268E-05],"mems":[[156.52793,-3.042E-05],[156.53137,-2.9904E-05],[156.5348,-3.0935E-05],[156.53823,-2.8873E-05],[156.54167,-2.8357E-05],[156.5451,-2.9389E-05],[156.54853,-2.8357E-05],[156.55197,-3.042E-05],[156.5554,-3.3513E-05],[156.55883,-3.1451E-05],[156.56227,-2.6811E-05],[156.5657,-2.5779E-05],[156.56913,-2.6811E-05],[156.57257,-2.8873E-05],[156.576,-3.1967E-05],[156.57943,-3.1967E-05],[156.58287,-2.8873E-05],[156.5863,-2.6295E-05],[156.58973,-2.9389E-05],[156.59317,-3.1967E-05],[156.5966,-3.0935E-05],[156.60003,-3.1967E-05],[156.60347,-2.8873E-05],[156.6069,-2.6811E-05],[156.61033,-2.6295E-05],[156.61377,-2.6811E-05],[156.6172,-2.8873E-05],[156.62063,-3.042E-05],[156.62407,-3.0935E-05],[156.6275,-2.8873E-05],[156.63093,-3.042E-05],[156.63437,-2.9904E-05],[156.6378,-2.7326E-05],[156.64123,-2.9389E-05],[156.64467,-2.8357E-05],[156.6481,-2.4748E-05],[156.65153,-2.4748E-05],[156.65497,-2.8357E-05],[156.6584,-3.0935E-05],[156.66183,-3.4544E-05],[156.66527,-3.506E-05],[156.6687,-2.6811E-05],[156.67213,-2.7842E-05],[156.67557,-3.2998E-05],[156.679,-2.8873E-05],[156.68243,-2.8873E-05],[156.68587,-2.7326E-05],[156.6893,-2.7842E-05],[156.69273,-3.042E-05],[156.69617,-2.4233E-05],[156.6996,-2.6811E-05],[156.70303,-3.042E-05],[156.70647,-2.6811E-05],[156.7099,-2.8873E-05],[156.71333,-3.1967E-05],[156.71677,-2.8873E-05],[156.7202,-3.042E-05],[156.72363,-3.5576E-05],[156.72707,-3.042E-05],[156.7305,-2.8873E-05],[156.73393,-2.9389E-05],[156.73737,-2.8357E-05],[156.7408,-3.0935E-05],[156.74423,-3.042E-05],[156.74767,-2.7842E-05],[156.7511,-2.7842E-05],[156.75453,-2.7326E-05],[156.75797,-2.7842E-05],[156.7614,-3.042E-05],[156.76483,-2.8357E-05],[156.76827,-2.5264E-05],[156.7717,-2.8873E-05],[156.77513,-3.2482E-05],[156.77857,-2.8357E-05],[156.782,-2.8357E-05],[156.78543,-3.1451E-05],[156.78887,-3.2482E-05],[156.7923,-3.7122E-05],[156.79573,-3.1967E-05],[156.79917,-2.8357E-05],[156.8026,-3.1451E-05],[156.80603,-3.4029E-05],[156.80947,-3.1967E-05],[156.8129,-3.0935E-05],[156.81633,-3.2482E-05],[156.81977,-2.9904E-05],[156.8232,-2.9389E-05],[156.82663,-2.5779E-05]]}
-{"quant":[157.123,-2.9354E-05],"mems":[[157.02577,-2.6295E-05],[157.0292,-2.5779E-05],[157.03263,-2.7842E-05],[157.03607,-2.9904E-05],[157.0395,-3.0935E-05],[157.04293,-2.8357E-05],[157.04637,-2.4748E-05],[157.0498,-2.7326E-05],[157.05323,-3.506E-05],[157.05667,-2.9904E-05],[157.0601,-2.8357E-05],[157.06353,-2.9904E-05],[157.06697,-2.5779E-05],[157.0704,-2.7326E-05],[157.07383,-2.9389E-05],[157.07727,-3.0935E-05],[157.0807,-2.7326E-05],[157.08413,-2.8873E-05],[157.08757,-3.042E-05],[157.091,-2.6811E-05],[157.09443,-2.8873E-05],[157.09787,-3.0935E-05],[157.1013,-3.2998E-05],[157.10473,-3.042E-05],[157.10817,-3.0935E-05],[157.1116,-3.3513E-05],[157.11503,-3.1451E-05],[157.11847,-2.9904E-05],[157.1219,-2.9389E-05],[157.12533,-3.0935E-05],[157.12877,-3.1451E-05],[157.1322,-3.0935E-05],[157.13563,-2.8873E-05],[157.13907,-2.8873E-05],[157.1425,-2.8873E-05],[157.14593,-2.5264E-05],[157.14937,-2.8873E-05],[157.1528,-2.9389E-05],[157.15623,-2.6811E-05],[157.15967,-2.9904E-05],[157.1631,-3.2482E-05],[157.16653,-3.4029E-05],[157.16997,-3.1451E-05],[157.1734,-3.2482E-05],[157.17683,-3.506E-05],[157.18027,-3.1451E-05],[157.1837,-2.8357E-05],[157.18713,-2.6295E-05],[157.19057,-2.9389E-05],[157.194,-2.9904E-05],[157.19743,-2.7326E-05],[157.20087,-2.6811E-05],[157.2043,-2.8873E-05],[157.20773,-2.8357E-05],[157.21117,-2.5264E-05],[157.2146,-3.1451E-05],[157.21803,-2.9389E-05],[157.22147,-2.4233E-05],[157.2249,-2.7842E-05],[157.22833,-2.6811E-05],[157.23177,-2.7326E-05],[157.2352,-3.042E-05],[157.23863,-2.9904E-05],[157.24207,-3.1451E-05],[157.2455,-3.1967E-05],[157.24893,-3.2482E-05],[157.25237,-3.3513E-05],[157.2558,-3.4544E-05],[157.25923,-3.4544E-05],[157.26267,-2.7842E-05],[157.2661,-2.6295E-05],[157.26953,-2.8873E-05],[157.27297,-2.9904E-05],[157.2764,-3.2998E-05],[157.27983,-3.4544E-05],[157.28327,-3.042E-05],[157.2867,-2.9904E-05],[157.29013,-3.4544E-05],[157.29357,-3.2482E-05],[157.297,-3.0935E-05],[157.30043,-3.1451E-05],[157.30387,-3.042E-05],[157.3073,-3.042E-05],[157.31073,-2.8873E-05],[157.31417,-3.0935E-05],[157.3176,-3.1451E-05],[157.32103,-2.9904E-05],[157.32447,-2.9389E-05]]}
-{"quant":[157.594,-0.86593],"mems":[[157.49613,-3.1967E-05],[157.49957,-2.9389E-05],[157.503,-3.0935E-05],[157.50643,-2.9904E-05],[157.50987,-2.7842E-05],[157.5133,-3.1451E-05],[157.51673,-2.9389E-05],[157.52017,-3.0935E-05],[157.5236,-3.042E-05],[157.52703,-2.9389E-05],[157.53047,-2.8357E-05],[157.5339,-2.4233E-05],[157.53733,-3.042E-05],[157.54077,-3.3513E-05],[157.5442,-2.6811E-05],[157.54763,-2.3717E-05],[157.55107,-3.3513E-05],[157.5545,-3.3513E-05],[157.55793,-2.9904E-05],[157.56137,-2.9389E-05],[157.5648,-2.3717E-05],[157.56823,-3.1451E-05],[157.57167,-3.2482E-05],[157.5751,-3.3513E-05],[157.57853,-3.9185E-05],[157.58197,-3.2482E-05],[157.5854,-3.1451E-05],[157.58883,-3.2482E-05],[157.59227,-3.4029E-05],[157.5957,-3.4544E-05],[157.59913,-2.9904E-05],[157.60257,-3.042E-05],[157.606,-2.8873E-05],[157.60943,-2.6811E-05],[157.61287,-2.8357E-05],[157.6163,-3.042E-05],[157.61973,-2.7842E-05],[157.62317,-2.5264E-05],[157.6266,-3.0935E-05],[157.63003,-3.2998E-05],[157.63347,-2.8357E-05],[157.6369,-3.2482E-05],[157.64033,-3.2998E-05],[157.64377,-3.1451E-05],[157.6472,-3.4544E-05],[157.65063,-2.9389E-05],[157.65407,-3.0935E-05],[157.6575,-3.2998E-05],[157.66093,-3.0935E-05],[157.66437,-3.1451E-05],[157.6678,-3.042E-05],[157.67123,-3.1967E-05],[157.67467,-3.042E-05],[157.6781,-2.8873E-05],[157.68153,-2.8873E-05],[157.68497,-2.6811E-05],[157.6884,-2.7326E-05],[157.69183,-3.042E-05],[157.69527,-3.2998E-05],[157.6987,-3.2482E-05],[157.70213,-2.7326E-05],[157.70557,-2.7842E-05],[157.709,-2.7842E-05],[157.71244,-2.8357E-05],[157.71587,-3.1451E-05],[157.71931,-3.042E-05],[157.72275,-3.3513E-05],[157.72619,-3.2998E-05],[157.72962,-2.8357E-05],[157.73306,-2.8873E-05],[157.7365,-3.0935E-05],[157.73994,-3.2482E-05],[157.74337,-2.8873E-05],[157.74681,-2.8873E-05],[157.75025,-2.6811E-05],[157.75369,-2.6295E-05],[157.75712,-3.042E-05],[157.76056,-2.5264E-05],[157.764,-2.8873E-05],[157.76743,-2.7326E-05],[157.77087,-2.6295E-05],[157.77431,-3.1451E-05],[157.77775,-2.5264E-05],[157.78118,-2.8873E-05],[157.78462,-2.8357E-05],[157.78806,-2.6811E-05],[157.7915,-2.7842E-05],[157.79493,-2.9389E-05]]}
-{"quant":[158.067,-2.7876E-05],"mems":[[157.97024,-3.042E-05],[157.97367,-2.8357E-05],[157.97711,-3.1451E-05],[157.98055,-2.9389E-05],[157.98399,-2.7842E-05],[157.98742,-3.2998E-05],[157.99086,-3.042E-05],[157.9943,-2.9389E-05],[157.99774,-2.9389E-05],[158.00117,-2.6811E-05],[158.00461,-2.9389E-05],[158.00805,-3.4544E-05],[158.01149,-3.4029E-05],[158.01492,-3.0935E-05],[158.01836,-2.8357E-05],[158.0218,-2.5264E-05],[158.02523,-2.4748E-05],[158.02867,-2.5779E-05],[158.03211,-2.8873E-05],[158.03555,-3.042E-05],[158.03898,-2.5779E-05],[158.04242,-2.6295E-05],[158.04586,-2.8873E-05],[158.0493,-2.8357E-05],[158.05273,-3.4029E-05],[158.05617,-3.6091E-05],[158.05961,-3.1451E-05],[158.06305,-2.8357E-05],[158.06648,-2.7842E-05],[158.06992,-2.8873E-05],[158.07336,-2.8873E-05],[158.07679,-2.6295E-05],[158.08023,-2.7326E-05],[158.08367,-3.042E-05],[158.08711,-2.4748E-05],[158.09054,-2.8873E-05],[158.09398,-2.9389E-05],[158.09742,-2.3202E-05],[158.10086,-2.8357E-05],[158.10429,-2.4748E-05],[158.10773,-2.6811E-05],[158.11117,-3.2998E-05],[158.11461,-3.2482E-05],[158.11804,-3.1451E-05],[158.12148,-2.8357E-05],[158.12492,-2.5779E-05],[158.12835,-2.4748E-05],[158.13179,-2.9904E-05],[158.13523,-2.7842E-05],[158.13867,-2.8357E-05],[158.1421,-2.9904E-05],[158.14554,-2.1139E-05],[158.14898,-2.7842E-05],[158.15242,-3.1967E-05],[158.15585,-2.6811E-05],[158.15929,-2.6295E-05],[158.16273,-2.8357E-05],[158.16617,-2.7842E-05],[158.1696,-2.6295E-05],[158.17304,-2.8357E-05],[158.17648,-2.8873E-05],[158.17991,-3.1967E-05],[158.18335,-2.8873E-05],[158.18679,-2.9389E-05],[158.19023,-3.506E-05],[158.19366,-3.2998E-05],[158.1971,-3.2998E-05],[158.20054,-3.1451E-05],[158.20398,-2.7326E-05],[158.20741,-2.8357E-05],[158.21085,-3.2998E-05],[158.21429,-3.2998E-05],[158.21773,-3.2482E-05],[158.22116,-3.5576E-05],[158.2246,-3.0935E-05],[158.22804,-2.9904E-05],[158.23147,-3.2998E-05],[158.23491,-2.9389E-05],[158.23835,-3.042E-05],[158.24179,-3.042E-05],[158.24522,-2.6295E-05],[158.24866,-2.5779E-05],[158.2521,-3.1967E-05],[158.25554,-3.3513E-05],[158.25897,-2.8873E-05],[158.26241,-3.042E-05],[158.26585,-2.8357E-05],[158.26929,-2.7326E-05]]}
-{"quant":[158.662,-3.0763E-05],"mems":[[158.5649,-2.7842E-05],[158.56833,-2.9904E-05],[158.57177,-3.1451E-05],[158.57521,-2.9389E-05],[158.57865,-2.7842E-05],[158.58208,-2.6811E-05],[158.58552,-3.2998E-05],[158.58896,-3.2998E-05],[158.59239,-3.042E-05],[158.59583,-3.4029E-05],[158.59927,-3.2998E-05],[158.60271,-2.6295E-05],[158.60614,-2.9389E-05],[158.60958,-3.2998E-05],[158.61302,-3.042E-05],[158.61646,-3.2482E-05],[158.61989,-2.9904E-05],[158.62333,-3.1451E-05],[158.62677,-3.8154E-05],[158.63021,-3.4544E-05],[158.63364,-3.0935E-05],[158.63708,-3.5576E-05],[158.64052,-3.3513E-05],[158.64395,-2.6811E-05],[158.64739,-2.8873E-05],[158.65083,-2.9389E-05],[158.65427,-2.6811E-05],[158.6577,-2.6811E-05],[158.66114,-2.4748E-05],[158.66458,-2.7842E-05],[158.66802,-3.3513E-05],[158.67145,-2.9389E-05],[158.67489,-2.5779E-05],[158.67833,-2.8873E-05],[158.68177,-3.1967E-05],[158.6852,-3.2998E-05],[158.68864,-3.042E-05],[158.69208,-3.0935E-05],[158.69551,-3.042E-05],[158.69895,-2.8357E-05],[158.70239,-2.9389E-05],[158.70583,-3.1451E-05],[158.70926,-3.4029E-05],[158.7127,-3.4029E-05],[158.71614,-3.0935E-05],[158.71958,-3.3513E-05],[158.72301,-3.2998E-05],[158.72645,-3.042E-05],[158.72989,-3.0935E-05],[158.73333,-3.0935E-05],[158.73676,-3.2998E-05],[158.7402,-2.8873E-05],[158.74364,-2.7842E-05],[158.74707,-3.1967E-05],[158.75051,-3.0935E-05],[158.75395,-3.1451E-05],[158.75739,-2.9904E-05],[158.76082,-2.9904E-05],[158.76426,-2.9904E-05],[158.7677,-3.3513E-05],[158.77114,-3.3513E-05],[158.77457,-2.8357E-05],[158.77801,-2.9904E-05],[158.78145,-2.6811E-05],[158.78489,-2.5779E-05],[158.78832,-2.7326E-05],[158.79176,-2.8873E-05],[158.7952,-3.1967E-05],[158.79863,-2.9389E-05],[158.80207,-2.8873E-05],[158.80551,-2.8873E-05],[158.80895,-3.2482E-05],[158.81238,-3.1967E-05],[158.81582,-2.9389E-05],[158.81926,-3.1451E-05],[158.8227,-2.6811E-05],[158.82613,-2.5779E-05],[158.82957,-3.1451E-05],[158.83301,-3.1451E-05],[158.83645,-3.0935E-05],[158.83988,-3.1967E-05],[158.84332,-2.6295E-05],[158.84676,-2.6811E-05],[158.85019,-2.9904E-05],[158.85363,-2.7842E-05],[158.85707,-2.7326E-05],[158.86051,-2.6811E-05],[158.86394,-2.5779E-05]]}
-{"quant":[159.139,-3.0317E-05],"mems":[[159.03925,-2.7842E-05],[159.04269,-2.8873E-05],[159.04612,-2.6811E-05],[159.04956,-2.9904E-05],[159.053,-2.9904E-05],[159.05643,-3.0935E-05],[159.05987,-3.1451E-05],[159.06331,-2.7842E-05],[159.06675,-2.8357E-05],[159.07018,-2.6295E-05],[159.07362,-3.042E-05],[159.07706,-2.9904E-05],[159.0805,-2.8357E-05],[159.08393,-2.9389E-05],[159.08737,-2.9904E-05],[159.09081,-3.2998E-05],[159.09425,-2.8873E-05],[159.09768,-3.042E-05],[159.10112,-3.1451E-05],[159.10456,-2.6811E-05],[159.10799,-2.8357E-05],[159.11143,-3.042E-05],[159.11487,-2.9389E-05],[159.11831,-2.5779E-05],[159.12174,-2.4233E-05],[159.12518,-2.6811E-05],[159.12862,-3.1967E-05],[159.13206,-3.2998E-05],[159.13549,-3.1451E-05],[159.13893,-3.4544E-05],[159.14237,-3.4029E-05],[159.14581,-3.2482E-05],[159.14924,-3.1451E-05],[159.15268,-3.0935E-05],[159.15612,-2.8357E-05],[159.15955,-2.6295E-05],[159.16299,-3.1967E-05],[159.16643,-2.7326E-05],[159.16987,-2.7842E-05],[159.1733,-3.2482E-05],[159.17674,-3.1451E-05],[159.18018,-3.2482E-05],[159.18362,-3.0935E-05],[159.18705,-2.9904E-05],[159.19049,-2.8873E-05],[159.19393,-2.7842E-05],[159.19737,-3.0935E-05],[159.2008,-3.2482E-05],[159.20424,-2.8357E-05],[159.20768,-2.7842E-05],[159.21111,-3.0935E-05],[159.21455,-3.2998E-05],[159.21799,-3.3513E-05],[159.22143,-2.8873E-05],[159.22486,-3.0935E-05],[159.2283,-3.042E-05],[159.23174,-2.6811E-05],[159.23518,-2.9904E-05],[159.23861,-3.042E-05],[159.24205,-3.042E-05],[159.24549,-3.042E-05],[159.24893,-2.9389E-05],[159.25236,-3.042E-05],[159.2558,-3.1451E-05],[159.25924,-2.9904E-05],[159.26267,-2.7842E-05],[159.26611,-2.217E-05],[159.26955,-2.5264E-05],[159.27299,-3.042E-05],[159.27642,-2.8873E-05],[159.27986,-3.2482E-05],[159.2833,-2.8873E-05],[159.28674,-2.8357E-05],[159.29017,-3.1451E-05],[159.29361,-2.9389E-05],[159.29705,-2.8873E-05],[159.30049,-2.7326E-05],[159.30392,-2.9389E-05],[159.30736,-2.8873E-05],[159.3108,-3.2482E-05],[159.31423,-3.4029E-05],[159.31767,-3.042E-05],[159.32111,-2.9389E-05],[159.32455,-2.6811E-05],[159.32798,-2.8873E-05],[159.33142,-2.7326E-05],[159.33486,-2.7326E-05],[159.3383,-2.9389E-05],[159.34173,-2.5779E-05]]}
-{"quant":[159.607,-2.9423E-05],"mems":[[159.51016,-3.0935E-05],[159.5136,-3.0935E-05],[159.51704,-2.5779E-05],[159.52047,-2.6811E-05],[159.52391,-2.8357E-05],[159.52735,-2.7326E-05],[159.53079,-2.6295E-05],[159.53422,-3.1451E-05],[159.53766,-3.0935E-05],[159.5411,-2.7842E-05],[159.54454,-3.042E-05],[159.54797,-2.6295E-05],[159.55141,-2.5264E-05],[159.55485,-2.8873E-05],[159.55829,-3.1967E-05],[159.56172,-3.4544E-05],[159.56516,-3.2482E-05],[159.5686,-3.042E-05],[159.57203,-2.9389E-05],[159.57547,-2.5779E-05],[159.57891,-2.6295E-05],[159.58235,-2.7842E-05],[159.58578,-2.6811E-05],[159.58922,-3.042E-05],[159.59266,-3.042E-05],[159.5961,-2.5779E-05],[159.59953,-2.6811E-05],[159.60297,-2.9389E-05],[159.60641,-2.7326E-05],[159.60985,-3.042E-05],[159.61328,-3.1967E-05],[159.61672,-3.2998E-05],[159.62016,-3.3513E-05],[159.62359,-2.7326E-05],[159.62703,-2.7842E-05],[159.63047,-3.0935E-05],[159.63391,-3.3513E-05],[159.63734,-3.4544E-05],[159.64078,-2.9904E-05],[159.64422,-2.5264E-05],[159.64766,-2.5264E-05],[159.65109,-3.1967E-05],[159.65453,-3.042E-05],[159.65797,-2.4748E-05],[159.66141,-2.7842E-05],[159.66484,-3.042E-05],[159.66828,-2.9904E-05],[159.67172,-2.7326E-05],[159.67515,-2.7842E-05],[159.67859,-2.9389E-05],[159.68203,-2.3717E-05],[159.68547,-2.3717E-05],[159.6889,-2.5779E-05],[159.69234,-2.7326E-05],[159.69578,-3.1451E-05],[159.69922,-3.4029E-05],[159.70265,-3.4029E-05],[159.70609,-2.9904E-05],[159.70953,-2.9389E-05],[159.71297,-3.3513E-05],[159.7164,-3.3513E-05],[159.71984,-3.0935E-05],[159.72328,-2.8873E-05],[159.72671,-2.9389E-05],[159.73015,-3.1451E-05],[159.73359,-3.0935E-05],[159.73703,-3.1967E-05],[159.74046,-3.2482E-05],[159.7439,-2.8357E-05],[159.74734,-3.042E-05],[159.75078,-3.2998E-05],[159.75421,-3.1967E-05],[159.75765,-2.9389E-05],[159.76109,-2.6811E-05],[159.76453,-2.9389E-05],[159.76796,-3.4544E-05],[159.7714,-3.506E-05],[159.77484,-3.1451E-05],[159.77827,-2.9389E-05],[159.78171,-2.2686E-05],[159.78515,-2.4748E-05],[159.78859,-3.3513E-05],[159.79202,-3.1967E-05],[159.79546,-2.9904E-05],[159.7989,-2.5779E-05],[159.80234,-2.6295E-05],[159.80577,-2.9389E-05],[159.80921,-2.9904E-05]]}
-{"quant":[160.068,-2.8976E-05],"mems":[[159.97077,-3.1451E-05],[159.9742,-3.0935E-05],[159.97764,-3.2482E-05],[159.98108,-2.8873E-05],[159.98451,-2.6811E-05],[159.98795,-2.9389E-05],[159.99139,-3.1967E-05],[159.99483,-3.3513E-05],[159.99826,-2.9904E-05],[160.0017,-2.6811E-05],[160.00514,-2.9389E-05],[160.00858,-3.1967E-05],[160.01201,-2.9389E-05],[160.01545,-2.6295E-05],[160.01889,-2.4233E-05],[160.02233,-2.3717E-05],[160.02576,-2.7842E-05],[160.0292,-3.5576E-05],[160.03264,-3.8154E-05],[160.03607,-3.0935E-05],[160.03951,-2.6295E-05],[160.04295,-2.8873E-05],[160.04639,-2.7842E-05],[160.04982,-2.6811E-05],[160.05326,-2.6811E-05],[160.0567,-2.6295E-05],[160.06014,-2.8357E-05],[160.06357,-2.6811E-05],[160.06701,-2.9389E-05],[160.07045,-3.1967E-05],[160.07389,-3.4029E-05],[160.07732,-3.2482E-05],[160.08076,-2.6295E-05],[160.0842,-2.9904E-05],[160.08763,-2.9389E-05],[160.09107,-2.9389E-05],[160.09451,-3.2482E-05],[160.09795,-2.9389E-05],[160.10138,-2.7326E-05],[160.10482,-2.7842E-05],[160.10826,-3.1451E-05],[160.1117,-2.6295E-05],[160.11513,-2.7842E-05],[160.11857,-2.9389E-05],[160.12201,-2.7842E-05],[160.12545,-2.9904E-05],[160.12888,-2.4233E-05],[160.13232,-2.2686E-05],[160.13576,-2.3717E-05],[160.13919,-2.4748E-05],[160.14263,-2.5779E-05],[160.14607,-2.9904E-05],[160.14951,-3.5576E-05],[160.15294,-3.1967E-05],[160.15638,-3.042E-05],[160.15982,-2.9389E-05],[160.16326,-2.5264E-05],[160.16669,-3.042E-05],[160.17013,-3.1967E-05],[160.17357,-2.8357E-05],[160.17701,-3.0935E-05],[160.18044,-2.9904E-05],[160.18388,-3.042E-05],[160.18732,-3.2482E-05],[160.19075,-3.1967E-05],[160.19419,-3.0935E-05],[160.19763,-2.5264E-05],[160.20107,-2.5779E-05],[160.2045,-2.9389E-05],[160.20794,-3.4544E-05],[160.21138,-2.6295E-05],[160.21482,-2.217E-05],[160.21825,-2.9389E-05],[160.22169,-2.6811E-05],[160.22513,-3.042E-05],[160.22857,-2.9389E-05],[160.232,-2.7842E-05],[160.23544,-3.042E-05],[160.23888,-2.5779E-05],[160.24231,-3.2482E-05],[160.24575,-3.4029E-05],[160.24919,-3.042E-05],[160.25263,-3.2482E-05],[160.25606,-3.042E-05],[160.2595,-2.8357E-05],[160.26294,-2.6295E-05],[160.26638,-2.4748E-05],[160.26981,-2.9389E-05]]}
-{"quant":[160.545,-2.9337E-05],"mems":[[160.44512,-3.4029E-05],[160.44855,-3.2482E-05],[160.45199,-3.1451E-05],[160.45543,-3.1967E-05],[160.45887,-3.2482E-05],[160.4623,-3.6091E-05],[160.46574,-3.042E-05],[160.46918,-2.7326E-05],[160.47262,-2.6295E-05],[160.47605,-2.6295E-05],[160.47949,-2.9904E-05],[160.48293,-2.5779E-05],[160.48637,-2.8357E-05],[160.4898,-3.2482E-05],[160.49324,-3.2998E-05],[160.49668,-3.2998E-05],[160.50011,-2.9904E-05],[160.50355,-2.8357E-05],[160.50699,-2.6811E-05],[160.51043,-3.3513E-05],[160.51386,-3.1451E-05],[160.5173,-2.6811E-05],[160.52074,-3.0935E-05],[160.52418,-3.1967E-05],[160.52761,-3.5576E-05],[160.53105,-3.506E-05],[160.53449,-3.4544E-05],[160.53793,-3.042E-05],[160.54136,-2.6295E-05],[160.5448,-2.9389E-05],[160.54824,-2.8873E-05],[160.55167,-2.4233E-05],[160.55511,-2.7326E-05],[160.55855,-3.1967E-05],[160.56199,-2.8357E-05],[160.56542,-2.8873E-05],[160.56886,-3.1451E-05],[160.5723,-2.9904E-05],[160.57574,-3.1451E-05],[160.57917,-3.1967E-05],[160.58261,-2.9904E-05],[160.58605,-3.2482E-05],[160.58949,-2.9904E-05],[160.59292,-2.7842E-05],[160.59636,-2.9389E-05],[160.5998,-2.6295E-05],[160.60323,-2.8873E-05],[160.60667,-3.042E-05],[160.61011,-3.1967E-05],[160.61355,-3.3513E-05],[160.61698,-3.2998E-05],[160.62042,-2.7326E-05],[160.62386,-2.3202E-05],[160.6273,-2.9389E-05],[160.63073,-3.2482E-05],[160.63417,-2.8873E-05],[160.63761,-2.7326E-05],[160.64105,-2.7326E-05],[160.64448,-2.6295E-05],[160.64792,-2.9904E-05],[160.65136,-3.042E-05],[160.65479,-2.8357E-05],[160.65823,-2.8357E-05],[160.66167,-2.9389E-05],[160.66511,-3.2998E-05],[160.66854,-3.0935E-05],[160.67198,-2.8873E-05],[160.67542,-2.9389E-05],[160.67886,-2.6811E-05],[160.68229,-3.1967E-05],[160.68573,-3.042E-05],[160.68917,-2.7842E-05],[160.69261,-3.3513E-05],[160.69604,-3.042E-05],[160.69948,-2.8357E-05],[160.70292,-2.7842E-05],[160.70635,-3.042E-05],[160.70979,-3.1451E-05],[160.71323,-2.9904E-05],[160.71667,-2.9904E-05],[160.7201,-3.1451E-05],[160.72354,-3.2998E-05],[160.72698,-2.7842E-05],[160.73042,-2.6811E-05],[160.73385,-2.8873E-05],[160.73729,-2.4748E-05],[160.74073,-2.1655E-05],[160.74417,-2.6295E-05],[160.7476,-3.1451E-05]]}
-{"quant":[161.23,-3.1228E-05],"mems":[[161.13258,-3.2482E-05],[161.13602,-2.9389E-05],[161.13946,-2.7326E-05],[161.1429,-3.1451E-05],[161.14633,-3.1967E-05],[161.14977,-2.9904E-05],[161.15321,-3.0935E-05],[161.15665,-2.8873E-05],[161.16008,-2.6811E-05],[161.16352,-2.7842E-05],[161.16696,-3.1451E-05],[161.17039,-2.9389E-05],[161.17383,-2.8357E-05],[161.17727,-2.9389E-05],[161.18071,-2.8873E-05],[161.18414,-3.2482E-05],[161.18758,-3.4029E-05],[161.19102,-3.4029E-05],[161.19446,-3.3513E-05],[161.19789,-2.7326E-05],[161.20133,-2.7326E-05],[161.20477,-3.2482E-05],[161.20821,-2.8357E-05],[161.21164,-2.6811E-05],[161.21508,-3.1967E-05],[161.21852,-3.0935E-05],[161.22195,-2.5779E-05],[161.22539,-2.9389E-05],[161.22883,-3.1451E-05],[161.23227,-3.1967E-05],[161.2357,-3.2482E-05],[161.23914,-2.8357E-05],[161.24258,-3.042E-05],[161.24602,-3.042E-05],[161.24945,-2.9389E-05],[161.25289,-2.9389E-05],[161.25633,-3.0935E-05],[161.25977,-3.3513E-05],[161.2632,-2.7326E-05],[161.26664,-2.8357E-05],[161.27008,-3.6091E-05],[161.27351,-3.4544E-05],[161.27695,-3.0935E-05],[161.28039,-2.9389E-05],[161.28383,-2.4748E-05],[161.28726,-2.9389E-05],[161.2907,-3.2482E-05],[161.29414,-3.042E-05],[161.29758,-2.8357E-05],[161.30101,-2.8357E-05],[161.30445,-3.2482E-05],[161.30789,-3.3513E-05],[161.31133,-3.8669E-05],[161.31476,-3.5576E-05],[161.3182,-2.9389E-05],[161.32164,-3.0935E-05],[161.32507,-2.9904E-05],[161.32851,-3.4544E-05],[161.33195,-3.4544E-05],[161.33539,-2.9904E-05],[161.33882,-2.5779E-05],[161.34226,-2.4233E-05],[161.3457,-3.0935E-05],[161.34914,-3.3513E-05],[161.35257,-2.9904E-05],[161.35601,-2.6811E-05],[161.35945,-2.5779E-05],[161.36289,-2.4748E-05],[161.36632,-2.8357E-05],[161.36976,-2.9389E-05],[161.3732,-3.1967E-05],[161.37663,-3.2998E-05],[161.38007,-2.8873E-05],[161.38351,-2.8873E-05],[161.38695,-3.1967E-05],[161.39038,-3.2482E-05],[161.39382,-2.9904E-05],[161.39726,-2.7842E-05],[161.4007,-2.6295E-05],[161.40413,-2.8357E-05],[161.40757,-3.042E-05],[161.41101,-3.1967E-05],[161.41445,-3.0935E-05],[161.41788,-2.9389E-05],[161.42132,-3.2998E-05],[161.42476,-3.042E-05],[161.42819,-2.8357E-05],[161.43163,-3.2482E-05]]}
-{"quant":[161.7,-3.0007E-05],"mems":[[161.60006,-2.7842E-05],[161.6035,-2.7842E-05],[161.60694,-2.9904E-05],[161.61037,-2.8873E-05],[161.61381,-3.506E-05],[161.61725,-3.1451E-05],[161.62069,-2.3202E-05],[161.62412,-2.7842E-05],[161.62756,-3.6607E-05],[161.631,-3.6091E-05],[161.63443,-3.1451E-05],[161.63787,-3.4029E-05],[161.64131,-3.1967E-05],[161.64475,-2.9389E-05],[161.64818,-3.2482E-05],[161.65162,-2.8357E-05],[161.65506,-2.8357E-05],[161.6585,-2.8873E-05],[161.66193,-2.4748E-05],[161.66537,-3.3513E-05],[161.66881,-3.4029E-05],[161.67225,-2.5779E-05],[161.67568,-3.1967E-05],[161.67912,-2.9904E-05],[161.68256,-3.2482E-05],[161.68599,-3.6091E-05],[161.68943,-3.3513E-05],[161.69287,-3.2998E-05],[161.69631,-2.8357E-05],[161.69974,-2.6811E-05],[161.70318,-2.8357E-05],[161.70662,-3.1967E-05],[161.71006,-3.2482E-05],[161.71349,-3.2998E-05],[161.71693,-2.8357E-05],[161.72037,-2.7842E-05],[161.72381,-3.3513E-05],[161.72724,-2.8357E-05],[161.73068,-3.4029E-05],[161.73412,-3.6091E-05],[161.73755,-2.7842E-05],[161.74099,-2.9389E-05],[161.74443,-2.8357E-05],[161.74787,-2.8873E-05],[161.7513,-3.1967E-05],[161.75474,-3.2482E-05],[161.75818,-3.2482E-05],[161.76162,-2.8357E-05],[161.76505,-2.8357E-05],[161.76849,-2.9389E-05],[161.77193,-2.8873E-05],[161.77537,-2.8357E-05],[161.7788,-2.5779E-05],[161.78224,-2.8873E-05],[161.78568,-3.2482E-05],[161.78911,-3.3513E-05],[161.79255,-3.1451E-05],[161.79599,-2.5264E-05],[161.79943,-2.6811E-05],[161.80286,-2.7326E-05],[161.8063,-2.5779E-05],[161.80974,-2.7842E-05],[161.81318,-2.8873E-05],[161.81661,-2.7326E-05],[161.82005,-3.1451E-05],[161.82349,-3.1967E-05],[161.82693,-2.6811E-05],[161.83036,-3.1967E-05],[161.8338,-2.9389E-05],[161.83724,-2.7326E-05],[161.84067,-3.0935E-05],[161.84411,-2.5779E-05],[161.84755,-3.0935E-05],[161.85099,-3.4029E-05],[161.85442,-2.7326E-05],[161.85786,-2.8873E-05],[161.8613,-2.5779E-05],[161.86474,-2.7326E-05],[161.86817,-3.2998E-05],[161.87161,-3.1451E-05],[161.87505,-2.9389E-05],[161.87849,-2.7326E-05],[161.88192,-3.0935E-05],[161.88536,-3.042E-05],[161.8888,-2.8873E-05],[161.89223,-2.8873E-05],[161.89567,-2.7326E-05],[161.89911,-2.9389E-05],[161.90255,-2.8873E-05]]}
-{"quant":[162.172,-3.0592E-05],"mems":[[162.07441,-2.9904E-05],[162.07785,-2.7326E-05],[162.08129,-2.7326E-05],[162.08473,-3.2482E-05],[162.08816,-3.4544E-05],[162.0916,-3.2998E-05],[162.09504,-3.1967E-05],[162.09847,-3.1967E-05],[162.10191,-2.9389E-05],[162.10535,-3.1967E-05],[162.10879,-3.7122E-05],[162.11222,-3.2998E-05],[162.11566,-3.0935E-05],[162.1191,-3.1451E-05],[162.12254,-2.8873E-05],[162.12597,-3.2482E-05],[162.12941,-3.1451E-05],[162.13285,-2.6811E-05],[162.13629,-2.7326E-05],[162.13972,-2.8357E-05],[162.14316,-2.7842E-05],[162.1466,-2.5264E-05],[162.15003,-2.8357E-05],[162.15347,-3.3513E-05],[162.15691,-2.9389E-05],[162.16035,-2.8873E-05],[162.16378,-2.8357E-05],[162.16722,-2.7842E-05],[162.17066,-3.4544E-05],[162.1741,-3.6607E-05],[162.17753,-3.2482E-05],[162.18097,-2.7842E-05],[162.18441,-3.0935E-05],[162.18785,-3.1967E-05],[162.19128,-2.8873E-05],[162.19472,-2.8873E-05],[162.19816,-2.8873E-05],[162.20159,-2.9904E-05],[162.20503,-2.9389E-05],[162.20847,-3.042E-05],[162.21191,-3.1451E-05],[162.21534,-2.8357E-05],[162.21878,-2.7842E-05],[162.22222,-3.4029E-05],[162.22566,-3.4029E-05],[162.22909,-3.3513E-05],[162.23253,-3.1451E-05],[162.23597,-2.6811E-05],[162.23941,-3.2482E-05],[162.24284,-3.1451E-05],[162.24628,-2.7326E-05],[162.24972,-3.1451E-05],[162.25315,-3.2482E-05],[162.25659,-3.0935E-05],[162.26003,-2.5779E-05],[162.26347,-3.1451E-05],[162.2669,-3.5576E-05],[162.27034,-2.7842E-05],[162.27378,-2.7326E-05],[162.27722,-3.042E-05],[162.28065,-2.9389E-05],[162.28409,-3.0935E-05],[162.28753,-3.3513E-05],[162.29097,-2.6295E-05],[162.2944,-2.217E-05],[162.29784,-2.6295E-05],[162.30128,-2.9389E-05],[162.30471,-2.8873E-05],[162.30815,-3.4029E-05],[162.31159,-3.3513E-05],[162.31503,-2.6811E-05],[162.31846,-2.9904E-05],[162.3219,-2.6811E-05],[162.32534,-2.5264E-05],[162.32878,-2.8873E-05],[162.33221,-3.0935E-05],[162.33565,-2.8873E-05],[162.33909,-2.6295E-05],[162.34253,-2.8357E-05],[162.34596,-2.8357E-05],[162.3494,-2.7326E-05],[162.35284,-2.8357E-05],[162.35627,-2.7842E-05],[162.35971,-2.4233E-05],[162.36315,-2.8873E-05],[162.36659,-3.3513E-05],[162.37002,-3.042E-05],[162.37346,-3.2998E-05]]}
-{"quant":[162.623,-3.0471E-05],"mems":[[162.5247,-3.1967E-05],[162.52814,-2.8357E-05],[162.53158,-3.1451E-05],[162.53502,-2.8357E-05],[162.53845,-2.4233E-05],[162.54189,-2.9389E-05],[162.54533,-2.8357E-05],[162.54877,-3.042E-05],[162.5522,-3.1967E-05],[162.55564,-3.042E-05],[162.55908,-2.6811E-05],[162.56251,-2.9904E-05],[162.56595,-3.2482E-05],[162.56939,-3.042E-05],[162.57283,-3.2482E-05],[162.57626,-2.8873E-05],[162.5797,-2.9389E-05],[162.58314,-2.9904E-05],[162.58658,-2.8873E-05],[162.59001,-2.7842E-05],[162.59345,-2.6811E-05],[162.59689,-2.7326E-05],[162.60033,-2.5264E-05],[162.60376,-2.8873E-05],[162.6072,-2.8357E-05],[162.61064,-2.6295E-05],[162.61407,-2.5779E-05],[162.61751,-3.2998E-05],[162.62095,-3.0935E-05],[162.62439,-2.3202E-05],[162.62782,-2.7842E-05],[162.63126,-2.7326E-05],[162.6347,-2.8357E-05],[162.63814,-2.8357E-05],[162.64157,-2.9389E-05],[162.64501,-3.1451E-05],[162.64845,-3.042E-05],[162.65189,-3.4544E-05],[162.65532,-3.0935E-05],[162.65876,-3.0935E-05],[162.6622,-3.042E-05],[162.66563,-3.1451E-05],[162.66907,-3.1451E-05],[162.67251,-3.0935E-05],[162.67595,-3.506E-05],[162.67938,-3.0935E-05],[162.68282,-3.506E-05],[162.68626,-3.3513E-05],[162.6897,-2.7842E-05],[162.69313,-3.042E-05],[162.69657,-2.9904E-05],[162.70001,-2.9389E-05],[162.70345,-3.1451E-05],[162.70688,-3.4029E-05],[162.71032,-3.1451E-05],[162.71376,-2.8873E-05],[162.71719,-2.9904E-05],[162.72063,-3.042E-05],[162.72407,-2.8873E-05],[162.72751,-2.7842E-05],[162.73094,-3.0935E-05],[162.73438,-3.0935E-05],[162.73782,-2.6295E-05],[162.74126,-2.9389E-05],[162.74469,-3.6607E-05],[162.74813,-3.4029E-05],[162.75157,-3.1967E-05],[162.75501,-2.8873E-05],[162.75844,-2.9904E-05],[162.76188,-3.4544E-05],[162.76532,-3.1451E-05],[162.76875,-3.042E-05],[162.77219,-2.8873E-05],[162.77563,-3.1451E-05],[162.77907,-3.4029E-05],[162.7825,-3.1967E-05],[162.78594,-3.4029E-05],[162.78938,-3.1967E-05],[162.79282,-2.9904E-05],[162.79625,-2.6295E-05],[162.79969,-2.2686E-05],[162.80313,-2.7842E-05],[162.80657,-2.9904E-05],[162.81,-3.1967E-05],[162.81344,-3.506E-05],[162.81688,-3.042E-05],[162.82031,-2.5779E-05],[162.82375,-2.8873E-05]]}
-{"quant":[163.077,-2.8821E-05],"mems":[[162.97819,-2.6811E-05],[162.98173,-3.1967E-05],[162.98527,-3.3513E-05],[162.98881,-3.0935E-05],[162.99234,-3.1967E-05],[162.99588,-3.4544E-05],[162.99942,-3.2482E-05],[163.00296,-2.7326E-05],[163.00649,-2.8873E-05],[163.01003,-2.8873E-05],[163.01357,-2.6811E-05],[163.01711,-2.8873E-05],[163.02064,-2.7326E-05],[163.02418,-2.6811E-05],[163.02772,-2.7326E-05],[163.03125,-2.8873E-05],[163.03479,-3.2482E-05],[163.03833,-3.1451E-05],[163.04187,-2.7326E-05],[163.0454,-2.4748E-05],[163.04894,-3.042E-05],[163.05248,-2.8873E-05],[163.05602,-2.9389E-05],[163.05955,-3.1967E-05],[163.06309,-2.9389E-05],[163.06663,-3.1967E-05],[163.07017,-2.9389E-05],[163.0737,-2.9904E-05],[163.07724,-3.1451E-05],[163.08078,-2.9389E-05],[163.08431,-2.7326E-05],[163.08785,-2.3717E-05],[163.09139,-2.9389E-05],[163.09493,-3.1451E-05],[163.09846,-2.9389E-05],[163.102,-2.9904E-05],[163.10554,-2.5779E-05],[163.10908,-2.6811E-05],[163.11261,-3.042E-05],[163.11615,-3.3513E-05],[163.11969,-3.042E-05],[163.12323,-2.4748E-05],[163.12676,-2.7326E-05],[163.1303,-2.9904E-05],[163.13384,-2.9389E-05],[163.13737,-3.1451E-05],[163.14091,-3.4029E-05],[163.14445,-2.8357E-05],[163.14799,-3.0935E-05],[163.15152,-3.3513E-05],[163.15506,-2.5264E-05],[163.1586,-2.4233E-05],[163.16214,-2.7326E-05],[163.16567,-2.7326E-05],[163.16921,-2.7842E-05],[163.17275,-3.0935E-05],[163.17629,-2.6811E-05],[163.17982,-2.6295E-05],[163.18336,-2.6811E-05],[163.1869,-2.6811E-05],[163.19043,-3.2998E-05],[163.19397,-3.0935E-05],[163.19751,-3.0935E-05],[163.20105,-3.0935E-05],[163.20458,-2.8357E-05],[163.20812,-2.8873E-05],[163.21166,-2.6811E-05],[163.2152,-2.3717E-05],[163.21873,-2.7326E-05],[163.22227,-3.1967E-05],[163.22581,-2.7326E-05],[163.22935,-2.9904E-05],[163.23288,-3.4544E-05],[163.23642,-3.1451E-05],[163.23996,-3.2482E-05],[163.24349,-2.9904E-05],[163.24703,-2.6295E-05],[163.25057,-2.9389E-05],[163.25411,-2.9389E-05],[163.25764,-2.9904E-05],[163.26118,-3.1451E-05],[163.26472,-3.2482E-05],[163.26826,-2.9904E-05],[163.27179,-2.7842E-05],[163.27533,-3.2998E-05],[163.27887,-3.2998E-05]]}
-{"quant":[163.678,-2.9337E-05],"mems":[[163.57954,-3.1967E-05],[163.58308,-3.4029E-05],[163.58662,-3.2482E-05],[163.59015,-3.1451E-05],[163.59369,-3.1451E-05],[163.59723,-3.0935E-05],[163.60077,-2.9389E-05],[163.6043,-2.5264E-05],[163.60784,-2.9389E-05],[163.61138,-3.4544E-05],[163.61491,-3.042E-05],[163.61845,-2.6811E-05],[163.62199,-3.042E-05],[163.62553,-3.506E-05],[163.62906,-2.9904E-05],[163.6326,-2.6811E-05],[163.63614,-2.5779E-05],[163.63968,-2.8873E-05],[163.64321,-3.2998E-05],[163.64675,-2.6295E-05],[163.65029,-2.9389E-05],[163.65383,-2.9389E-05],[163.65736,-3.042E-05],[163.6609,-3.3513E-05],[163.66444,-2.7842E-05],[163.66797,-2.9904E-05],[163.67151,-3.2482E-05],[163.67505,-3.4544E-05],[163.67859,-2.9904E-05],[163.68212,-3.042E-05],[163.68566,-3.2482E-05],[163.6892,-2.7326E-05],[163.69274,-3.2482E-05],[163.69627,-3.3513E-05],[163.69981,-2.6295E-05],[163.70335,-2.5264E-05],[163.70689,-3.2482E-05],[163.71042,-3.6607E-05],[163.71396,-2.9389E-05],[163.7175,-2.9389E-05],[163.72103,-2.7842E-05],[163.72457,-2.3202E-05],[163.72811,-2.8873E-05],[163.73165,-3.2482E-05],[163.73518,-3.042E-05],[163.73872,-2.9904E-05],[163.74226,-2.9389E-05],[163.7458,-2.7842E-05],[163.74933,-2.8873E-05],[163.75287,-2.9389E-05],[163.75641,-2.8357E-05],[163.75995,-2.8357E-05],[163.76348,-3.0935E-05],[163.76702,-2.8873E-05],[163.77056,-2.5779E-05],[163.77409,-3.0935E-05],[163.77763,-2.8357E-05],[163.78117,-2.4748E-05],[163.78471,-2.4233E-05],[163.78824,-2.4233E-05],[163.79178,-2.9904E-05],[163.79532,-2.9904E-05],[163.79886,-3.042E-05],[163.80239,-2.9389E-05],[163.80593,-2.4748E-05],[163.80947,-2.6811E-05],[163.81301,-2.9904E-05],[163.81654,-3.2482E-05],[163.82008,-3.1967E-05],[163.82362,-2.9389E-05],[163.82715,-2.7842E-05],[163.83069,-2.5264E-05],[163.83423,-2.5264E-05],[163.83777,-2.7326E-05],[163.8413,-3.2482E-05],[163.84484,-3.1967E-05],[163.84838,-2.8873E-05],[163.85192,-3.1451E-05],[163.85545,-2.9389E-05],[163.85899,-2.8357E-05],[163.86253,-2.9904E-05],[163.86607,-2.8873E-05],[163.8696,-3.1967E-05],[163.87314,-2.8357E-05],[163.87668,-2.5779E-05],[163.88021,-3.042E-05]]}
-{"quant":[164.136,-3.1682E-05],"mems":[[164.03939,-3.4544E-05],[164.04293,-2.6811E-05],[164.04647,-3.0935E-05],[164.05001,-3.1451E-05],[164.05354,-3.042E-05],[164.05708,-3.3513E-05],[164.06062,-3.4544E-05],[164.06416,-3.3513E-05],[164.06769,-2.8873E-05],[164.07123,-2.9904E-05],[164.07477,-3.042E-05],[164.07831,-2.8357E-05],[164.08184,-3.1451E-05],[164.08538,-3.1451E-05],[164.08892,-2.7842E-05],[164.09245,-2.8873E-05],[164.09599,-3.506E-05],[164.09953,-3.2998E-05],[164.10307,-3.2482E-05],[164.1066,-3.2482E-05],[164.11014,-2.9904E-05],[164.11368,-3.2482E-05],[164.11722,-3.3513E-05],[164.12075,-3.5576E-05],[164.12429,-3.2482E-05],[164.12783,-2.7326E-05],[164.13137,-2.5264E-05],[164.1349,-2.5264E-05],[164.13844,-3.1451E-05],[164.14198,-3.4029E-05],[164.14551,-3.1967E-05],[164.14905,-2.8873E-05],[164.15259,-2.9904E-05],[164.15613,-2.8873E-05],[164.15966,-3.1451E-05],[164.1632,-3.3513E-05],[164.16674,-2.9904E-05],[164.17028,-2.9389E-05],[164.17381,-2.9389E-05],[164.17735,-3.3513E-05],[164.18089,-3.4029E-05],[164.18443,-3.4544E-05],[164.18796,-3.4544E-05],[164.1915,-3.2998E-05],[164.19504,-3.4544E-05],[164.19857,-3.2482E-05],[164.20211,-3.042E-05],[164.20565,-3.042E-05],[164.20919,-3.1451E-05],[164.21272,-2.8873E-05],[164.21626,-2.9904E-05],[164.2198,-3.3513E-05],[164.22334,-3.042E-05],[164.22687,-3.1451E-05],[164.23041,-3.2482E-05],[164.23395,-3.1967E-05],[164.23749,-3.2482E-05],[164.24102,-2.9389E-05],[164.24456,-3.2998E-05],[164.2481,-3.1967E-05],[164.25163,-2.6295E-05],[164.25517,-2.7326E-05],[164.25871,-2.9389E-05],[164.26225,-3.4029E-05],[164.26578,-3.1451E-05],[164.26932,-3.1451E-05],[164.27286,-3.1451E-05],[164.2764,-2.5264E-05],[164.27993,-2.7326E-05],[164.28347,-2.8357E-05],[164.28701,-2.9389E-05],[164.29055,-2.6295E-05],[164.29408,-2.5779E-05],[164.29762,-2.9389E-05],[164.30116,-2.8357E-05],[164.30469,-3.3513E-05],[164.30823,-3.2998E-05],[164.31177,-3.1967E-05],[164.31531,-3.2998E-05],[164.31884,-3.0935E-05],[164.32238,-3.506E-05],[164.32592,-3.3513E-05],[164.32946,-3.4544E-05],[164.33299,-3.6091E-05],[164.33653,-2.8873E-05]]}
-{"quant":[164.59,-3.0473E-05],"mems":[[164.49217,-3.1967E-05],[164.49571,-2.9904E-05],[164.49925,-2.5264E-05],[164.50279,-3.2998E-05],[164.50632,-3.0935E-05],[164.50986,-3.0935E-05],[164.5134,-4.0732E-05],[164.51693,-3.506E-05],[164.52047,-2.9904E-05],[164.52401,-2.9904E-05],[164.52755,-3.042E-05],[164.53108,-3.5576E-05],[164.53462,-3.4029E-05],[164.53816,-3.0935E-05],[164.5417,-3.2998E-05],[164.54523,-3.1967E-05],[164.54877,-2.9904E-05],[164.55231,-3.1967E-05],[164.55585,-3.3513E-05],[164.55938,-3.0935E-05],[164.56292,-2.5779E-05],[164.56646,-2.4233E-05],[164.56999,-2.9904E-05],[164.57353,-2.7326E-05],[164.57707,-2.6811E-05],[164.58061,-2.8873E-05],[164.58414,-2.4748E-05],[164.58768,-3.042E-05],[164.59122,-3.2482E-05],[164.59476,-3.3513E-05],[164.59829,-3.4029E-05],[164.60183,-3.0935E-05],[164.60537,-3.2998E-05],[164.60891,-3.4029E-05],[164.61244,-3.506E-05],[164.61598,-2.9904E-05],[164.61952,-2.6811E-05],[164.62305,-3.1451E-05],[164.62659,-2.7842E-05],[164.63013,-3.2998E-05],[164.63367,-3.1451E-05],[164.6372,-2.9389E-05],[164.64074,-2.7842E-05],[164.64428,-2.3202E-05],[164.64782,-3.2998E-05],[164.65135,-3.1451E-05],[164.65489,-2.9389E-05],[164.65843,-3.1967E-05],[164.66197,-2.8873E-05],[164.6655,-2.8873E-05],[164.66904,-3.1967E-05],[164.67258,-3.1451E-05],[164.67611,-2.9389E-05],[164.67965,-2.7326E-05],[164.68319,-2.2686E-05],[164.68673,-2.7842E-05],[164.69026,-3.5576E-05],[164.6938,-3.5576E-05],[164.69734,-3.1451E-05],[164.70088,-3.2482E-05],[164.70441,-3.042E-05],[164.70795,-2.6295E-05],[164.71149,-2.9389E-05],[164.71503,-3.4029E-05],[164.71856,-3.1451E-05],[164.7221,-2.8873E-05],[164.72564,-2.6295E-05],[164.72917,-2.7842E-05],[164.73271,-2.8873E-05],[164.73625,-2.8357E-05],[164.73979,-3.1967E-05],[164.74332,-3.1967E-05],[164.74686,-2.9904E-05],[164.7504,-2.7842E-05],[164.75394,-2.8873E-05],[164.75747,-2.7326E-05],[164.76101,-3.0935E-05],[164.76455,-2.9904E-05],[164.76809,-2.4748E-05],[164.77162,-3.2998E-05],[164.77516,-3.3513E-05],[164.7787,-3.4544E-05],[164.78223,-3.2998E-05],[164.78577,-3.1967E-05],[164.78931,-2.8873E-05],[164.79285,-2.8357E-05]]}
-{"quant":[165.043,-2.8393E-05],"mems":[[164.94495,-3.2482E-05],[164.94849,-2.7326E-05],[164.95203,-2.6811E-05],[164.95556,-2.7842E-05],[164.9591,-2.9389E-05],[164.96264,-3.0935E-05],[164.96618,-2.8357E-05],[164.96971,-3.1967E-05],[164.97325,-3.0935E-05],[164.97679,-2.8357E-05],[164.98033,-2.7842E-05],[164.98386,-2.8357E-05],[164.9874,-2.7842E-05],[164.99094,-2.0108E-05],[164.99447,-2.3717E-05],[164.99801,-3.1451E-05],[165.00155,-2.9389E-05],[165.00509,-3.042E-05],[165.00862,-2.7326E-05],[165.01216,-2.6295E-05],[165.0157,-3.042E-05],[165.01924,-3.1967E-05],[165.02277,-3.042E-05],[165.02631,-2.7842E-05],[165.02985,-2.8357E-05],[165.03339,-2.4748E-05],[165.03692,-2.4233E-05],[165.04046,-3.042E-05],[165.044,-3.2482E-05],[165.04753,-2.8357E-05],[165.05107,-2.6811E-05],[165.05461,-2.6811E-05],[165.05815,-3.042E-05],[165.06168,-3.6091E-05],[165.06522,-3.1451E-05],[165.06876,-3.3513E-05],[165.0723,-2.9389E-05],[165.07583,-2.8357E-05],[165.07937,-3.1967E-05],[165.08291,-2.8873E-05],[165.08645,-3.1451E-05],[165.08998,-2.5264E-05],[165.09352,-2.3202E-05],[165.09706,-2.6295E-05],[165.10059,-2.6811E-05],[165.10413,-2.7842E-05],[165.10767,-2.5264E-05],[165.11121,-2.2686E-05],[165.11474,-2.3202E-05],[165.11828,-2.6811E-05],[165.12182,-2.6811E-05],[165.12536,-2.9389E-05],[165.12889,-2.8873E-05],[165.13243,-2.7842E-05],[165.13597,-2.6295E-05],[165.13951,-2.7842E-05],[165.14304,-3.2998E-05],[165.14658,-2.9389E-05],[165.15012,-3.1967E-05],[165.15365,-3.1451E-05],[165.15719,-2.6811E-05],[165.16073,-2.6811E-05],[165.16427,-2.7842E-05],[165.1678,-3.1967E-05],[165.17134,-2.9904E-05],[165.17488,-2.6811E-05],[165.17842,-2.8873E-05],[165.18195,-2.6811E-05],[165.18549,-3.0935E-05],[165.18903,-3.4029E-05],[165.19257,-2.8873E-05],[165.1961,-3.042E-05],[165.19964,-2.9389E-05],[165.20318,-2.9389E-05],[165.20671,-2.9389E-05],[165.21025,-2.6295E-05],[165.21379,-2.8873E-05],[165.21733,-2.8873E-05],[165.22086,-3.042E-05],[165.2244,-3.2482E-05],[165.22794,-3.3513E-05],[165.23148,-3.3513E-05],[165.23501,-3.1451E-05],[165.23855,-2.8873E-05],[165.24209,-2.9389E-05],[165.24563,-2.8873E-05]]}
-{"quant":[165.506,-0.54571],"mems":[[165.42603,-2.5779E-05],[165.42957,-2.6811E-05],[165.4331,-3.042E-05],[165.43664,-3.1451E-05],[165.44018,-2.9389E-05],[165.44372,-2.9904E-05],[165.44725,-3.042E-05],[165.45079,-2.6295E-05],[165.45433,-3.2998E-05],[165.45787,-3.4029E-05],[165.4614,-3.1451E-05],[165.46494,-2.9389E-05],[165.46848,-2.7326E-05],[165.47201,-2.9904E-05],[165.47555,-3.042E-05],[165.47909,-3.042E-05],[165.48263,-2.6295E-05],[165.48616,-2.7326E-05],[165.4897,-2.9904E-05],[165.49324,-3.1451E-05],[165.49678,-3.1967E-05],[165.50031,-3.042E-05],[165.50385,-3.0935E-05],[165.50739,-3.042E-05],[165.51093,-3.042E-05],[165.51446,-3.042E-05],[165.518,-2.8357E-05],[165.52141,-2.9389E-05],[165.52482,-3.0935E-05],[165.52823,-2.8357E-05],[165.53164,-2.8357E-05],[165.53505,-2.9904E-05],[165.53846,-2.9389E-05],[165.54187,-2.7326E-05],[165.54527,-2.5264E-05],[165.54868,-2.4233E-05],[165.55209,-2.7842E-05],[165.5555,-3.0935E-05],[165.55891,-2.9904E-05],[165.56232,-2.8357E-05],[165.56573,-2.4233E-05],[165.56914,-2.3717E-05],[165.57255,-3.042E-05],[165.57596,-3.6091E-05],[165.57937,-3.5576E-05],[165.58278,-3.0935E-05],[165.58619,-2.7326E-05],[165.5896,-3.042E-05],[165.59301,-3.6091E-05],[165.59641,-3.506E-05],[165.59982,-2.8357E-05],[165.60323,-2.8357E-05],[165.60664,-3.1967E-05],[165.61005,-2.4748E-05],[165.61346,-2.6295E-05],[165.61687,-3.1967E-05],[165.62028,-2.9904E-05],[165.62369,-2.8873E-05],[165.6271,-2.7326E-05],[165.63051,-2.8357E-05],[165.63392,-2.8873E-05],[165.63733,-2.9904E-05],[165.64074,-3.1967E-05],[165.64415,-2.9389E-05],[165.64755,-3.2998E-05],[165.65096,-3.2998E-05],[165.65437,-3.0935E-05],[165.65778,-3.0935E-05],[165.66119,-2.7842E-05],[165.6646,-3.4029E-05],[165.66801,-3.6091E-05],[165.67142,-3.1451E-05],[165.67483,-2.8357E-05],[165.67824,-3.042E-05],[165.68165,-2.8357E-05],[165.68506,-2.4233E-05],[165.68847,-2.7842E-05],[165.69188,-2.9389E-05],[165.69529,-3.042E-05],[165.69869,-3.042E-05],[165.7021,-3.042E-05],[165.70551,-3.2482E-05],[165.70892,-3.1451E-05],[165.71233,-2.7842E-05],[165.71574,-2.7326E-05],[165.71915,-2.9904E-05],[165.72256,-3.2998E-05],[165.72597,-3.0935E-05]]}
-{"quant":[165.983,-2.9904E-05],"mems":[[165.88621,-2.9904E-05],[165.88962,-2.7326E-05],[165.89303,-3.2482E-05],[165.89644,-3.4029E-05],[165.89985,-2.8873E-05],[165.90325,-3.1451E-05],[165.90666,-2.9389E-05],[165.91007,-2.9904E-05],[165.91348,-2.9904E-05],[165.91689,-2.9904E-05],[165.9203,-3.1967E-05],[165.92371,-2.8357E-05],[165.92712,-2.8873E-05],[165.93053,-2.8357E-05],[165.93394,-2.8357E-05],[165.93735,-2.9904E-05],[165.94076,-2.9904E-05],[165.94417,-3.1967E-05],[165.94758,-2.7326E-05],[165.95099,-3.042E-05],[165.95439,-3.6607E-05],[165.9578,-3.1451E-05],[165.96121,-2.8357E-05],[165.96462,-2.9389E-05],[165.96803,-2.5779E-05],[165.97144,-2.5264E-05],[165.97485,-2.7842E-05],[165.97826,-3.1967E-05],[165.98167,-3.2482E-05],[165.98508,-3.0935E-05],[165.98849,-2.9904E-05],[165.9919,-3.042E-05],[165.99531,-3.6607E-05],[165.99872,-3.506E-05],[166.00213,-2.6811E-05],[166.00553,-2.6811E-05],[166.00894,-3.0935E-05],[166.01235,-3.0935E-05],[166.01576,-2.9389E-05],[166.01917,-2.8357E-05],[166.02258,-2.6295E-05],[166.02599,-2.5264E-05],[166.0294,-2.8357E-05],[166.03281,-3.1451E-05],[166.03622,-2.4748E-05],[166.03963,-2.5264E-05],[166.04304,-3.2998E-05],[166.04645,-2.7842E-05],[166.04986,-2.9904E-05],[166.05327,-3.6091E-05],[166.05667,-3.1967E-05],[166.06008,-2.6811E-05],[166.06349,-2.5264E-05],[166.0669,-3.1451E-05],[166.07031,-3.3513E-05],[166.07372,-3.3513E-05],[166.07713,-3.3513E-05],[166.08054,-2.6295E-05],[166.08395,-3.042E-05],[166.08736,-3.5576E-05],[166.09077,-3.6091E-05],[166.09418,-3.1451E-05],[166.09759,-2.6811E-05],[166.101,-3.3513E-05],[166.10441,-3.042E-05],[166.10781,-3.0935E-05],[166.11122,-3.2998E-05],[166.11463,-3.1451E-05],[166.11804,-3.6091E-05],[166.12145,-2.9389E-05],[166.12486,-2.9904E-05],[166.12827,-3.1967E-05],[166.13168,-2.9904E-05],[166.13509,-3.3513E-05],[166.1385,-3.1451E-05],[166.14191,-3.2998E-05],[166.14532,-2.8357E-05],[166.14873,-2.6295E-05],[166.15214,-3.1451E-05],[166.15555,-3.0935E-05],[166.15895,-3.506E-05],[166.16236,-2.9389E-05],[166.16577,-2.5779E-05],[166.16918,-3.1451E-05],[166.17259,-3.1967E-05],[166.176,-3.042E-05],[166.17941,-2.6811E-05],[166.18282,-3.0935E-05],[166.18623,-3.1451E-05]]}
-{"quant":[166.529,-3.0506E-05],"mems":[[166.4317,-3.4544E-05],[166.43511,-3.042E-05],[166.43852,-2.7326E-05],[166.44193,-3.1451E-05],[166.44534,-3.1967E-05],[166.44875,-3.506E-05],[166.45216,-3.2998E-05],[166.45557,-2.9389E-05],[166.45898,-2.9904E-05],[166.46239,-2.6295E-05],[166.46579,-2.8873E-05],[166.4692,-3.1967E-05],[166.47261,-3.6091E-05],[166.47602,-3.1451E-05],[166.47943,-2.5264E-05],[166.48284,-2.9904E-05],[166.48625,-3.2482E-05],[166.48966,-3.2998E-05],[166.49307,-2.5264E-05],[166.49648,-2.5264E-05],[166.49989,-2.9904E-05],[166.5033,-3.1967E-05],[166.50671,-3.6091E-05],[166.51012,-3.4544E-05],[166.51353,-3.4029E-05],[166.51693,-2.9904E-05],[166.52034,-2.9389E-05],[166.52375,-3.1967E-05],[166.52716,-3.2998E-05],[166.53057,-3.4544E-05],[166.53398,-2.9389E-05],[166.53739,-2.7842E-05],[166.5408,-2.6811E-05],[166.54421,-2.7842E-05],[166.54762,-3.5576E-05],[166.55103,-3.1967E-05],[166.55444,-2.9904E-05],[166.55785,-3.1451E-05],[166.56126,-2.9904E-05],[166.56467,-3.1967E-05],[166.56807,-3.0935E-05],[166.57148,-2.8357E-05],[166.57489,-2.4748E-05],[166.5783,-2.5779E-05],[166.58171,-3.042E-05],[166.58512,-2.9904E-05],[166.58853,-2.8873E-05],[166.59194,-3.2998E-05],[166.59535,-3.6607E-05],[166.59876,-3.2998E-05],[166.60217,-3.1967E-05],[166.60558,-3.2998E-05],[166.60899,-3.1451E-05],[166.6124,-2.9904E-05],[166.61581,-3.0935E-05],[166.61921,-3.0935E-05],[166.62262,-2.8873E-05],[166.62603,-3.0935E-05],[166.62944,-2.8357E-05],[166.63285,-3.2998E-05],[166.63626,-3.4029E-05],[166.63967,-2.7842E-05],[166.64308,-3.1967E-05],[166.64649,-3.5576E-05],[166.6499,-3.3513E-05],[166.65331,-2.8357E-05],[166.65672,-2.6811E-05],[166.66013,-2.7842E-05],[166.66354,-3.1451E-05],[166.66695,-3.6091E-05],[166.67035,-3.2998E-05],[166.67376,-2.8873E-05],[166.67717,-2.9389E-05],[166.68058,-2.9904E-05],[166.68399,-2.8357E-05],[166.6874,-3.2998E-05],[166.69081,-3.2998E-05],[166.69422,-2.6295E-05],[166.69763,-3.2998E-05],[166.70104,-3.6607E-05],[166.70445,-3.2998E-05],[166.70786,-3.1451E-05],[166.71127,-2.6811E-05],[166.71468,-2.9904E-05],[166.71809,-3.2482E-05],[166.72149,-2.7842E-05],[166.7249,-2.7842E-05],[166.72831,-3.1451E-05],[166.73172,-3.4544E-05]]}
-{"quant":[166.997,-2.9472E-05],"mems":[[166.89878,-3.042E-05],[166.90219,-2.9389E-05],[166.9056,-3.2482E-05],[166.90901,-3.0935E-05],[166.91242,-2.8357E-05],[166.91583,-2.9389E-05],[166.91924,-2.7842E-05],[166.92265,-2.8873E-05],[166.92605,-3.1967E-05],[166.92946,-3.042E-05],[166.93287,-2.9904E-05],[166.93628,-3.1967E-05],[166.93969,-3.2482E-05],[166.9431,-2.8873E-05],[166.94651,-3.2482E-05],[166.94992,-3.5576E-05],[166.95333,-3.2482E-05],[166.95674,-3.042E-05],[166.96015,-2.5779E-05],[166.96356,-2.5779E-05],[166.96697,-2.9904E-05],[166.97038,-2.7326E-05],[166.97379,-2.5264E-05],[166.97719,-2.8873E-05],[166.9806,-3.4029E-05],[166.98401,-3.506E-05],[166.98742,-3.1451E-05],[166.99083,-3.042E-05],[166.99424,-2.7842E-05],[166.99765,-2.6295E-05],[167.00106,-3.1451E-05],[167.00447,-2.9389E-05],[167.00788,-2.6295E-05],[167.01129,-2.8873E-05],[167.0147,-3.042E-05],[167.01811,-2.6811E-05],[167.02152,-2.7326E-05],[167.02493,-2.9904E-05],[167.02833,-2.6295E-05],[167.03174,-2.6811E-05],[167.03515,-2.8873E-05],[167.03856,-3.1967E-05],[167.04197,-3.1451E-05],[167.04538,-2.9389E-05],[167.04879,-2.8873E-05],[167.0522,-2.7326E-05],[167.05561,-3.1967E-05],[167.05902,-3.042E-05],[167.06243,-2.8357E-05],[167.06584,-3.1967E-05],[167.06925,-3.0935E-05],[167.07266,-2.7326E-05],[167.07607,-2.9389E-05],[167.07947,-2.9904E-05],[167.08288,-2.9904E-05],[167.08629,-3.3513E-05],[167.0897,-3.1451E-05],[167.09311,-3.042E-05],[167.09652,-2.9389E-05],[167.09993,-3.0935E-05],[167.10334,-3.4544E-05],[167.10675,-3.3513E-05],[167.11016,-2.8873E-05],[167.11357,-2.6295E-05],[167.11698,-3.0935E-05],[167.12039,-3.042E-05],[167.1238,-2.9904E-05],[167.12721,-3.1451E-05],[167.13061,-3.042E-05],[167.13402,-3.042E-05],[167.13743,-3.1967E-05],[167.14084,-2.9389E-05],[167.14425,-3.042E-05],[167.14766,-2.9904E-05],[167.15107,-2.4233E-05],[167.15448,-2.9389E-05],[167.15789,-3.3513E-05],[167.1613,-3.6091E-05],[167.16471,-3.506E-05],[167.16812,-2.9904E-05],[167.17153,-2.9904E-05],[167.17494,-3.042E-05],[167.17835,-3.0935E-05],[167.18175,-2.9389E-05],[167.18516,-3.3513E-05],[167.18857,-3.2998E-05],[167.19198,-2.5779E-05],[167.19539,-2.5264E-05],[167.1988,-3.1451E-05]]}
-{"quant":[167.509,-2.9505E-05],"mems":[[167.41018,-3.5576E-05],[167.41359,-3.3513E-05],[167.417,-2.9904E-05],[167.42041,-3.2482E-05],[167.42382,-3.4544E-05],[167.42723,-3.0935E-05],[167.43064,-2.4748E-05],[167.43405,-2.5264E-05],[167.43745,-2.8357E-05],[167.44086,-2.8357E-05],[167.44427,-3.2998E-05],[167.44768,-3.2482E-05],[167.45109,-3.042E-05],[167.4545,-3.1967E-05],[167.45791,-3.1967E-05],[167.46132,-3.4029E-05],[167.46473,-2.9904E-05],[167.46814,-2.8357E-05],[167.47155,-3.2482E-05],[167.47496,-2.8873E-05],[167.47837,-2.8357E-05],[167.48178,-2.5779E-05],[167.48519,-2.4748E-05],[167.48859,-2.9389E-05],[167.492,-2.9389E-05],[167.49541,-3.042E-05],[167.49882,-2.9904E-05],[167.50223,-3.042E-05],[167.50564,-3.0935E-05],[167.50905,-2.7326E-05],[167.51246,-3.042E-05],[167.51587,-3.2998E-05],[167.51928,-2.8357E-05],[167.52269,-3.1451E-05],[167.5261,-3.2482E-05],[167.52951,-3.042E-05],[167.53292,-3.506E-05],[167.53633,-3.7638E-05],[167.53973,-3.1967E-05],[167.54314,-2.8873E-05],[167.54655,-3.0935E-05],[167.54996,-2.9389E-05],[167.55337,-2.7842E-05],[167.55678,-3.0935E-05],[167.56019,-3.1451E-05],[167.5636,-2.6295E-05],[167.56701,-2.6811E-05],[167.57042,-2.8873E-05],[167.57383,-2.9389E-05],[167.57724,-3.2482E-05],[167.58065,-2.8357E-05],[167.58406,-2.6295E-05],[167.58747,-2.8357E-05],[167.59087,-2.3717E-05],[167.59428,-2.1655E-05],[167.59769,-2.5779E-05],[167.6011,-2.9389E-05],[167.60451,-2.8873E-05],[167.60792,-2.8873E-05],[167.61133,-3.1967E-05],[167.61474,-2.7326E-05],[167.61815,-2.6811E-05],[167.62156,-3.2482E-05],[167.62497,-2.6295E-05],[167.62838,-3.1967E-05],[167.63179,-3.506E-05],[167.6352,-2.7326E-05],[167.63861,-3.1967E-05],[167.64201,-3.2482E-05],[167.64542,-2.7842E-05],[167.64883,-2.9389E-05],[167.65224,-2.9904E-05],[167.65565,-3.042E-05],[167.65906,-2.9904E-05],[167.66247,-3.1967E-05],[167.66588,-3.0935E-05],[167.66929,-2.5779E-05],[167.6727,-2.8873E-05],[167.67611,-3.042E-05],[167.67952,-3.2998E-05],[167.68293,-3.1451E-05],[167.68634,-2.7842E-05],[167.68975,-2.8873E-05],[167.69315,-3.0935E-05],[167.69656,-3.2482E-05],[167.69997,-2.4748E-05],[167.70338,-2.5264E-05],[167.70679,-2.7326E-05],[167.7102,-2.6811E-05]]}
-{"quant":[167.969,-1.1154],"mems":[[167.92499,-2.6811E-05],[167.9284,-2.7842E-05],[167.93181,-3.2998E-05],[167.93522,-3.0935E-05],[167.93863,-2.9389E-05],[167.94204,-2.8873E-05],[167.94545,-2.8357E-05],[167.94885,-3.1451E-05],[167.95226,-3.0935E-05],[167.95567,-3.2482E-05],[167.95908,-3.3513E-05],[167.96249,-3.1451E-05],[167.9659,-3.0935E-05],[167.96931,-2.8873E-05],[167.97272,-2.9389E-05],[167.97613,-2.8873E-05],[167.97954,-3.0935E-05],[167.98295,-2.7326E-05],[167.98636,-2.5264E-05],[167.98977,-3.0935E-05],[167.99318,-3.1451E-05],[167.99659,-3.3513E-05],[167.99999,-3.042E-05],[168.0034,-2.9904E-05],[168.00681,-3.2998E-05],[168.01022,-3.3513E-05],[168.01363,-3.506E-05],[168.01704,-3.2482E-05],[168.02045,-3.2482E-05],[168.02386,-2.7842E-05],[168.02727,-2.3717E-05],[168.03068,-3.042E-05],[168.03409,-3.2482E-05],[168.0375,-2.8357E-05],[168.04091,-2.3717E-05],[168.04432,-2.7326E-05],[168.04773,-3.0935E-05],[168.05113,-2.9904E-05],[168.05454,-2.8357E-05],[168.05795,-2.8357E-05],[168.06136,-3.6091E-05],[168.06477,-3.4544E-05],[168.06818,-2.5264E-05],[168.07159,-2.8357E-05],[168.075,-3.2482E-05],[168.07837,-2.8357E-05],[168.08173,-2.6811E-05],[168.0851,-2.9904E-05],[168.08847,-3.0935E-05],[168.09183,-3.1967E-05],[168.0952,-3.2482E-05],[168.09857,-3.1451E-05],[168.10193,-2.9389E-05],[168.1053,-2.9389E-05],[168.10867,-3.2998E-05],[168.11203,-3.2482E-05],[168.1154,-2.7842E-05],[168.11877,-2.6811E-05],[168.12213,-2.9389E-05],[168.1255,-3.1451E-05],[168.12887,-3.2482E-05],[168.13223,-3.1451E-05],[168.1356,-2.9904E-05],[168.13897,-2.9904E-05],[168.14233,-3.1451E-05],[168.1457,-3.0935E-05],[168.14907,-2.9904E-05],[168.15243,-3.0935E-05],[168.1558,-2.8873E-05],[168.15917,-2.9904E-05],[168.16253,-2.8357E-05],[168.1659,-3.1451E-05],[168.16927,-3.506E-05],[168.17263,-3.042E-05],[168.176,-2.7842E-05],[168.17937,-2.9389E-05],[168.18273,-2.8357E-05],[168.1861,-2.6295E-05],[168.18947,-2.7326E-05],[168.19283,-2.9904E-05],[168.1962,-3.1967E-05],[168.19957,-2.6295E-05],[168.20293,-2.5779E-05],[168.2063,-3.2482E-05],[168.20967,-3.2998E-05],[168.21303,-3.0935E-05],[168.2164,-3.042E-05],[168.21977,-2.9904E-05]]}
-{"quant":[168.452,-2.9688E-05],"mems":[[168.35443,-2.4748E-05],[168.3578,-2.6811E-05],[168.36117,-3.3513E-05],[168.36453,-3.506E-05],[168.3679,-3.1451E-05],[168.37127,-2.6811E-05],[168.37463,-2.8357E-05],[168.378,-2.8357E-05],[168.38137,-2.8873E-05],[168.38473,-2.7326E-05],[168.3881,-2.7326E-05],[168.39147,-3.2998E-05],[168.39483,-3.1451E-05],[168.3982,-2.7842E-05],[168.40157,-2.9389E-05],[168.40493,-2.9904E-05],[168.4083,-3.1451E-05],[168.41167,-2.8873E-05],[168.41503,-2.7842E-05],[168.4184,-2.7842E-05],[168.42177,-2.8357E-05],[168.42513,-3.2482E-05],[168.4285,-2.9389E-05],[168.43187,-2.5779E-05],[168.43523,-2.5264E-05],[168.4386,-2.7326E-05],[168.44197,-3.0935E-05],[168.44533,-3.1451E-05],[168.4487,-2.9389E-05],[168.45207,-2.4748E-05],[168.45543,-2.6811E-05],[168.4588,-3.4029E-05],[168.46217,-3.1451E-05],[168.46553,-2.6295E-05],[168.4689,-2.9904E-05],[168.47227,-2.9904E-05],[168.47563,-2.6811E-05],[168.479,-2.8873E-05],[168.48237,-3.1451E-05],[168.48573,-2.9389E-05],[168.4891,-3.042E-05],[168.49247,-3.1967E-05],[168.49583,-2.7326E-05],[168.4992,-3.0935E-05],[168.50257,-3.4029E-05],[168.50593,-3.1451E-05],[168.5093,-2.6811E-05],[168.51267,-2.7842E-05],[168.51603,-3.042E-05],[168.5194,-2.8357E-05],[168.52277,-3.2482E-05],[168.52613,-3.2998E-05],[168.5295,-2.7326E-05],[168.53287,-2.4748E-05],[168.53623,-3.1451E-05],[168.5396,-2.9904E-05],[168.54297,-3.0935E-05],[168.54633,-3.3513E-05],[168.5497,-2.7842E-05],[168.55307,-2.9904E-05],[168.55643,-2.7842E-05],[168.5598,-3.2482E-05],[168.56317,-3.6607E-05],[168.56653,-2.6811E-05],[168.5699,-2.5264E-05],[168.57327,-2.6811E-05],[168.57663,-2.9389E-05],[168.58,-3.0935E-05],[168.58337,-3.1451E-05],[168.58673,-3.042E-05],[168.5901,-2.9904E-05],[168.59347,-2.8873E-05],[168.59683,-2.7326E-05],[168.6002,-2.9904E-05],[168.60357,-3.1451E-05],[168.60693,-3.1967E-05],[168.6103,-2.7326E-05],[168.61367,-2.5264E-05],[168.61703,-3.042E-05],[168.6204,-3.1451E-05],[168.62377,-2.8873E-05],[168.62713,-2.4748E-05],[168.6305,-2.7842E-05],[168.63387,-3.1451E-05],[168.63723,-2.8873E-05],[168.6406,-2.7326E-05],[168.64397,-2.9389E-05],[168.64733,-3.1451E-05],[168.6507,-2.6811E-05],[168.65407,-2.6811E-05]]}
-{"quant":[169.147,-3.1634E-05],"mems":[[169.04797,-3.1451E-05],[169.05133,-2.9904E-05],[169.0547,-3.4029E-05],[169.05807,-3.1451E-05],[169.06143,-2.7326E-05],[169.0648,-2.4748E-05],[169.06817,-2.5264E-05],[169.07153,-3.2482E-05],[169.0749,-3.2482E-05],[169.07827,-3.1451E-05],[169.08163,-3.1451E-05],[169.085,-3.1451E-05],[169.08837,-3.0935E-05],[169.09173,-2.8357E-05],[169.0951,-3.0935E-05],[169.09847,-3.042E-05],[169.10183,-2.8357E-05],[169.1052,-3.2998E-05],[169.10857,-3.042E-05],[169.11193,-2.6295E-05],[169.1153,-3.1451E-05],[169.11867,-2.9904E-05],[169.12203,-2.9389E-05],[169.1254,-3.1967E-05],[169.12877,-3.042E-05],[169.13213,-3.1967E-05],[169.1355,-2.7842E-05],[169.13887,-2.4233E-05],[169.14223,-3.1967E-05],[169.1456,-3.4544E-05],[169.14897,-3.2482E-05],[169.15233,-2.9904E-05],[169.1557,-2.8873E-05],[169.15907,-3.2482E-05],[169.16243,-3.5576E-05],[169.1658,-3.5576E-05],[169.16917,-3.2482E-05],[169.17253,-3.2482E-05],[169.1759,-3.2998E-05],[169.17927,-3.1451E-05],[169.18263,-3.2482E-05],[169.186,-3.3513E-05],[169.18937,-3.2998E-05],[169.19273,-2.7842E-05],[169.1961,-2.4233E-05],[169.19947,-2.8357E-05],[169.20283,-3.1451E-05],[169.2062,-3.1967E-05],[169.20957,-3.042E-05],[169.21293,-2.8357E-05],[169.2163,-2.7842E-05],[169.21967,-3.1451E-05],[169.22303,-3.3513E-05],[169.2264,-3.2998E-05],[169.22977,-3.2998E-05],[169.23313,-3.0935E-05],[169.2365,-2.8873E-05],[169.23987,-3.1967E-05],[169.24323,-3.4544E-05],[169.2466,-3.506E-05],[169.24997,-3.4544E-05],[169.25333,-2.8873E-05],[169.2567,-2.6811E-05],[169.26007,-2.7326E-05],[169.26343,-3.042E-05],[169.2668,-3.2998E-05],[169.27017,-3.4544E-05],[169.27353,-3.4029E-05],[169.2769,-2.8357E-05],[169.28027,-3.042E-05],[169.28363,-3.042E-05],[169.287,-2.8357E-05],[169.29037,-3.1451E-05],[169.29373,-3.1451E-05],[169.2971,-3.2998E-05],[169.30047,-2.8357E-05],[169.30383,-2.6295E-05],[169.3072,-3.1967E-05],[169.31057,-3.1967E-05],[169.31393,-2.6811E-05],[169.3173,-2.6295E-05],[169.32067,-2.9389E-05],[169.32403,-2.9389E-05],[169.3274,-3.0935E-05],[169.33077,-3.042E-05],[169.33413,-3.1967E-05],[169.3375,-3.506E-05],[169.34087,-3.2998E-05],[169.34423,-3.0935E-05],[169.3476,-3.1451E-05]]}
-{"quant":[169.618,-2.9206E-05],"mems":[[169.5193,-3.3513E-05],[169.52267,-2.9389E-05],[169.52603,-2.5779E-05],[169.5294,-3.1451E-05],[169.53277,-2.9904E-05],[169.53613,-3.2482E-05],[169.5395,-3.6607E-05],[169.54287,-3.042E-05],[169.54623,-2.7326E-05],[169.5496,-2.8357E-05],[169.55297,-3.1967E-05],[169.55633,-3.2482E-05],[169.5597,-2.8873E-05],[169.56307,-3.042E-05],[169.56643,-3.2482E-05],[169.5698,-3.2998E-05],[169.57317,-3.1967E-05],[169.57653,-3.4029E-05],[169.5799,-3.0935E-05],[169.58327,-2.9389E-05],[169.58663,-2.9904E-05],[169.59,-2.6295E-05],[169.59337,-3.042E-05],[169.59673,-3.2998E-05],[169.6001,-3.1451E-05],[169.60347,-2.7842E-05],[169.60683,-2.5779E-05],[169.6102,-2.8357E-05],[169.61357,-2.7326E-05],[169.61693,-3.042E-05],[169.6203,-3.5576E-05],[169.62367,-3.4544E-05],[169.62703,-2.9904E-05],[169.6304,-2.6811E-05],[169.63377,-2.5264E-05],[169.63713,-2.8873E-05],[169.6405,-3.042E-05],[169.64387,-2.7326E-05],[169.64723,-2.7326E-05],[169.6506,-2.4748E-05],[169.65397,-3.042E-05],[169.65733,-3.042E-05],[169.6607,-2.8873E-05],[169.66407,-2.9904E-05],[169.66743,-2.6295E-05],[169.6708,-3.4544E-05],[169.67417,-3.2482E-05],[169.67753,-2.6295E-05],[169.6809,-2.9389E-05],[169.68427,-2.8357E-05],[169.68763,-2.7326E-05],[169.691,-2.4748E-05],[169.69437,-2.5779E-05],[169.69773,-3.4029E-05],[169.7011,-3.2482E-05],[169.70447,-2.9389E-05],[169.70783,-2.9389E-05],[169.7112,-2.6295E-05],[169.71457,-2.8873E-05],[169.71793,-2.9389E-05],[169.7213,-2.9904E-05],[169.72467,-2.9389E-05],[169.72803,-2.4748E-05],[169.7314,-2.9904E-05],[169.73477,-3.506E-05],[169.73813,-3.1967E-05],[169.7415,-2.8357E-05],[169.74487,-2.8357E-05],[169.74823,-2.8357E-05],[169.7516,-3.0935E-05],[169.75497,-3.2482E-05],[169.75833,-3.1967E-05],[169.7617,-2.9904E-05],[169.76507,-2.7842E-05],[169.76843,-2.9389E-05],[169.7718,-2.7842E-05],[169.77517,-2.8357E-05],[169.77853,-3.1451E-05],[169.7819,-2.9904E-05],[169.78527,-2.7842E-05],[169.78863,-2.8357E-05],[169.792,-2.9904E-05],[169.79537,-2.7326E-05],[169.79873,-3.2482E-05],[169.8021,-3.4544E-05],[169.80547,-2.9904E-05],[169.80883,-3.042E-05],[169.8122,-3.4544E-05],[169.81557,-3.3513E-05],[169.81893,-2.7326E-05]]}
-{"quant":[170.091,-3.1268E-05],"mems":[[169.994,-2.8357E-05],[169.99737,-2.6295E-05],[170.00073,-2.4233E-05],[170.0041,-2.8873E-05],[170.00747,-3.0935E-05],[170.01083,-2.8873E-05],[170.0142,-3.5576E-05],[170.01757,-2.8873E-05],[170.02093,-3.1451E-05],[170.0243,-3.3513E-05],[170.02767,-2.9904E-05],[170.03103,-3.2998E-05],[170.0344,-2.7842E-05],[170.03777,-2.8873E-05],[170.04113,-2.9389E-05],[170.0445,-3.0935E-05],[170.04787,-3.506E-05],[170.05123,-3.1967E-05],[170.0546,-3.0935E-05],[170.05797,-3.1451E-05],[170.06133,-3.4544E-05],[170.0647,-3.1451E-05],[170.06807,-3.1451E-05],[170.07143,-3.1451E-05],[170.0748,-2.8873E-05],[170.07817,-3.0935E-05],[170.08153,-2.6811E-05],[170.0849,-2.7842E-05],[170.08827,-3.2482E-05],[170.09163,-3.1451E-05],[170.095,-2.8357E-05],[170.09837,-2.8873E-05],[170.10173,-3.1967E-05],[170.1051,-3.2482E-05],[170.10847,-3.4544E-05],[170.11183,-3.4029E-05],[170.1152,-2.9389E-05],[170.11857,-2.9904E-05],[170.12193,-3.2998E-05],[170.1253,-3.2998E-05],[170.12867,-3.1967E-05],[170.13203,-3.1451E-05],[170.1354,-3.4029E-05],[170.13877,-3.4029E-05],[170.14213,-2.9904E-05],[170.1455,-2.9904E-05],[170.14887,-3.1967E-05],[170.15223,-3.042E-05],[170.1556,-2.8873E-05],[170.15897,-2.9389E-05],[170.16233,-2.9389E-05],[170.1657,-3.042E-05],[170.16907,-3.5576E-05],[170.17243,-3.5576E-05],[170.1758,-2.9389E-05],[170.17917,-2.8873E-05],[170.18253,-3.1451E-05],[170.1859,-2.9389E-05],[170.18927,-2.9904E-05],[170.19263,-3.042E-05],[170.196,-2.7842E-05],[170.19937,-2.9904E-05],[170.20273,-3.1451E-05],[170.2061,-3.1451E-05],[170.20947,-2.9389E-05],[170.21283,-2.7842E-05],[170.2162,-2.7326E-05],[170.21957,-2.8357E-05],[170.22293,-3.4544E-05],[170.2263,-3.6607E-05],[170.22967,-3.1967E-05],[170.23303,-2.9904E-05],[170.2364,-3.1451E-05],[170.23977,-3.042E-05],[170.24313,-2.9389E-05],[170.2465,-3.4029E-05],[170.24987,-3.2998E-05],[170.25323,-2.9389E-05],[170.2566,-2.7326E-05],[170.25997,-2.5264E-05],[170.26333,-2.8873E-05],[170.2667,-3.2998E-05],[170.27007,-3.1967E-05],[170.27343,-2.7842E-05],[170.2768,-2.7326E-05],[170.28017,-2.7326E-05],[170.28353,-2.6811E-05],[170.2869,-3.042E-05],[170.29027,-2.8357E-05],[170.29363,-2.7326E-05]]}
-{"quant":[170.578,0.97879],"mems":[[170.4788,-3.0935E-05],[170.48217,-2.9904E-05],[170.48553,-3.042E-05],[170.4889,-3.1451E-05],[170.49227,-2.7842E-05],[170.49563,-3.3513E-05],[170.499,-3.042E-05],[170.50237,-3.042E-05],[170.50573,-3.1967E-05],[170.5091,-2.8357E-05],[170.51247,-2.7842E-05],[170.51583,-2.7326E-05],[170.5192,-3.4029E-05],[170.52257,-3.3513E-05],[170.52593,-2.8357E-05],[170.5293,-2.7842E-05],[170.53267,-3.1451E-05],[170.53603,-3.2998E-05],[170.5394,-3.0935E-05],[170.54277,-2.8357E-05],[170.54613,-2.5779E-05],[170.5495,-2.9904E-05],[170.55287,-2.9904E-05],[170.55623,-3.1967E-05],[170.5596,-3.2998E-05],[170.56297,-2.6811E-05],[170.56633,-2.7842E-05],[170.5697,-2.6295E-05],[170.57307,-2.4748E-05],[170.57643,-2.9904E-05],[170.5798,-2.8873E-05],[170.58317,-2.9904E-05],[170.58653,-2.8357E-05],[170.5899,-2.7326E-05],[170.59327,-3.1967E-05],[170.59663,-2.9904E-05],[170.6,-3.042E-05],[170.60353,-2.8357E-05],[170.60706,-2.5264E-05],[170.61058,-2.9389E-05],[170.61411,-3.1451E-05],[170.61764,-2.9904E-05],[170.62117,-3.4544E-05],[170.6247,-3.3513E-05],[170.62822,-3.1451E-05],[170.63175,-3.506E-05],[170.63528,-3.1967E-05],[170.63881,-3.2998E-05],[170.64234,-3.0935E-05],[170.64586,-2.9389E-05],[170.64939,-3.5576E-05],[170.65292,-3.506E-05],[170.65645,-3.2998E-05],[170.65998,-3.0935E-05],[170.6635,-2.7326E-05],[170.66703,-2.3717E-05],[170.67056,-2.5264E-05],[170.67409,-3.506E-05],[170.67762,-3.7122E-05],[170.68114,-2.7842E-05],[170.68467,-2.8873E-05],[170.6882,-2.6295E-05],[170.69173,-2.6295E-05],[170.69526,-3.042E-05],[170.69878,-2.8357E-05],[170.70231,-3.2998E-05],[170.70584,-2.5264E-05],[170.70937,-2.6811E-05],[170.7129,-3.0935E-05],[170.71642,-2.8873E-05],[170.71995,-3.1967E-05],[170.72348,-2.5264E-05],[170.72701,-2.5779E-05],[170.73054,-2.6295E-05],[170.73406,-2.9904E-05],[170.73759,-3.4029E-05],[170.74112,-2.8357E-05],[170.74465,-2.8357E-05],[170.74818,-3.042E-05],[170.7517,-2.9389E-05],[170.75523,-3.1967E-05],[170.75876,-3.042E-05],[170.76229,-3.1451E-05],[170.76582,-3.1451E-05],[170.76934,-2.6295E-05],[170.77287,-2.9389E-05],[170.7764,-2.8873E-05],[170.77993,-2.6811E-05]]}
-{"quant":[171.044,-3.0093E-05],"mems":[[170.94574,-2.9389E-05],[170.94927,-2.6811E-05],[170.9528,-2.9389E-05],[170.95633,-3.1967E-05],[170.95986,-3.5576E-05],[170.96338,-3.1967E-05],[170.96691,-2.9389E-05],[170.97044,-2.9389E-05],[170.97397,-2.9389E-05],[170.9775,-2.5779E-05],[170.98102,-2.5779E-05],[170.98455,-3.2998E-05],[170.98808,-2.9904E-05],[170.99161,-2.7842E-05],[170.99514,-2.8873E-05],[170.99866,-2.9389E-05],[171.00219,-3.5576E-05],[171.00572,-3.8154E-05],[171.00925,-3.2998E-05],[171.01278,-3.1967E-05],[171.0163,-2.8873E-05],[171.01983,-2.6295E-05],[171.02336,-2.9904E-05],[171.02689,-3.0935E-05],[171.03042,-3.042E-05],[171.03394,-2.5779E-05],[171.03747,-2.3717E-05],[171.041,-2.8357E-05],[171.04453,-3.1451E-05],[171.04806,-2.9904E-05],[171.05158,-2.8873E-05],[171.05511,-2.4233E-05],[171.05864,-2.6295E-05],[171.06217,-3.3513E-05],[171.0657,-2.9389E-05],[171.06922,-2.8357E-05],[171.07275,-2.7326E-05],[171.07628,-2.4233E-05],[171.07981,-2.8873E-05],[171.08334,-3.0935E-05],[171.08686,-2.9904E-05],[171.09039,-2.9904E-05],[171.09392,-3.3513E-05],[171.09745,-3.2482E-05],[171.10098,-3.1451E-05],[171.1045,-3.4029E-05],[171.10803,-3.1967E-05],[171.11156,-3.3513E-05],[171.11509,-3.1967E-05],[171.11862,-2.9389E-05],[171.12214,-2.9904E-05],[171.12567,-2.8357E-05],[171.1292,-3.1451E-05],[171.13273,-3.3513E-05],[171.13626,-3.2998E-05],[171.13978,-2.8357E-05],[171.14331,-2.6811E-05],[171.14684,-2.9904E-05],[171.15037,-3.0935E-05],[171.1539,-3.1967E-05],[171.15742,-2.8357E-05],[171.16095,-2.5264E-05],[171.16448,-2.7326E-05],[171.16801,-3.1967E-05],[171.17154,-3.5576E-05],[171.17506,-3.4029E-05],[171.17859,-2.9389E-05],[171.18212,-2.5779E-05],[171.18565,-2.7842E-05],[171.18918,-3.0935E-05],[171.1927,-2.8357E-05],[171.19623,-3.042E-05],[171.19976,-3.2998E-05],[171.20329,-3.1967E-05],[171.20682,-3.2482E-05],[171.21034,-3.3513E-05],[171.21387,-3.5576E-05],[171.2174,-3.1451E-05],[171.22093,-2.7326E-05],[171.22446,-2.6811E-05],[171.22798,-3.042E-05],[171.23151,-3.4544E-05],[171.23504,-3.4029E-05],[171.23857,-3.0935E-05],[171.2421,-2.6811E-05],[171.24562,-2.6295E-05]]}
-{"quant":[171.669,-2.9584E-05],"mems":[[171.5702,-2.9389E-05],[171.57373,-2.7326E-05],[171.57726,-2.8873E-05],[171.58078,-3.2482E-05],[171.58431,-3.1451E-05],[171.58784,-3.1451E-05],[171.59137,-3.042E-05],[171.5949,-2.8873E-05],[171.59842,-3.506E-05],[171.60195,-2.9904E-05],[171.60548,-2.6295E-05],[171.60901,-2.9389E-05],[171.61254,-2.7326E-05],[171.61606,-2.9904E-05],[171.61959,-3.0935E-05],[171.62312,-3.2998E-05],[171.62665,-3.0935E-05],[171.63018,-2.7842E-05],[171.6337,-2.7842E-05],[171.63723,-3.1967E-05],[171.64076,-3.4544E-05],[171.64429,-3.0935E-05],[171.64782,-3.042E-05],[171.65134,-2.8873E-05],[171.65487,-2.9904E-05],[171.6584,-2.5264E-05],[171.66193,-2.6811E-05],[171.66546,-3.2998E-05],[171.66898,-2.8873E-05],[171.67251,-2.7326E-05],[171.67604,-2.8873E-05],[171.67957,-3.2998E-05],[171.6831,-3.042E-05],[171.68662,-2.7842E-05],[171.69015,-2.7842E-05],[171.69368,-2.6295E-05],[171.69721,-3.042E-05],[171.70074,-3.042E-05],[171.70426,-3.042E-05],[171.70779,-2.9904E-05],[171.71132,-2.8357E-05],[171.71485,-3.1451E-05],[171.71838,-3.2482E-05],[171.7219,-3.3513E-05],[171.72543,-3.1451E-05],[171.72896,-2.9389E-05],[171.73249,-2.7842E-05],[171.73602,-2.7326E-05],[171.73954,-3.2482E-05],[171.74307,-3.0935E-05],[171.7466,-2.7842E-05],[171.75013,-2.7842E-05],[171.75366,-2.6295E-05],[171.75718,-2.7842E-05],[171.76071,-2.8873E-05],[171.76424,-2.8357E-05],[171.76777,-3.1451E-05],[171.7713,-3.1451E-05],[171.77482,-2.4748E-05],[171.77835,-2.9389E-05],[171.78188,-3.042E-05],[171.78541,-2.5264E-05],[171.78894,-3.0935E-05],[171.79246,-2.7326E-05],[171.79599,-2.4748E-05],[171.79952,-2.9389E-05],[171.80305,-2.7842E-05],[171.80658,-3.0935E-05],[171.8101,-3.2482E-05],[171.81363,-2.5779E-05],[171.81716,-2.7326E-05],[171.82069,-2.6811E-05],[171.82422,-2.6811E-05],[171.82774,-3.4029E-05],[171.83127,-2.8873E-05],[171.8348,-2.6295E-05],[171.83833,-2.8357E-05],[171.84186,-2.7326E-05],[171.84538,-3.2998E-05],[171.84891,-3.3513E-05],[171.85244,-2.8357E-05],[171.85597,-2.6295E-05],[171.8595,-2.6295E-05],[171.86302,-2.6811E-05],[171.86655,-3.1967E-05],[171.87008,-3.2482E-05]]}
-{"quant":[172.149,-2.8535E-05],"mems":[[172.05001,-3.2998E-05],[172.05354,-3.042E-05],[172.05706,-3.2482E-05],[172.06059,-2.9904E-05],[172.06412,-2.8357E-05],[172.06765,-3.0935E-05],[172.07118,-3.2482E-05],[172.0747,-2.9389E-05],[172.07823,-2.9389E-05],[172.08176,-3.4544E-05],[172.08529,-3.3513E-05],[172.08882,-3.2482E-05],[172.09234,-3.0935E-05],[172.09587,-2.8357E-05],[172.0994,-2.6811E-05],[172.10293,-2.7326E-05],[172.10646,-2.7842E-05],[172.10998,-2.8873E-05],[172.11351,-3.042E-05],[172.11704,-2.9904E-05],[172.12057,-3.042E-05],[172.1241,-2.6811E-05],[172.12762,-3.2482E-05],[172.13115,-3.4029E-05],[172.13468,-2.9389E-05],[172.13821,-3.4029E-05],[172.14174,-2.9904E-05],[172.14526,-2.8873E-05],[172.14879,-3.0935E-05],[172.15232,-2.7326E-05],[172.15585,-2.8357E-05],[172.15938,-2.9389E-05],[172.1629,-2.6811E-05],[172.16643,-2.9389E-05],[172.16996,-3.4029E-05],[172.17349,-2.8873E-05],[172.17702,-2.6295E-05],[172.18054,-2.6811E-05],[172.18407,-2.217E-05],[172.1876,-2.7842E-05],[172.19113,-3.4029E-05],[172.19466,-2.8873E-05],[172.19818,-2.5264E-05],[172.20171,-2.6295E-05],[172.20524,-2.9389E-05],[172.20877,-3.042E-05],[172.2123,-2.7842E-05],[172.21582,-2.9389E-05],[172.21935,-3.0935E-05],[172.22288,-2.8357E-05],[172.22641,-2.8873E-05],[172.22994,-3.4029E-05],[172.23346,-3.1967E-05],[172.23699,-2.7842E-05],[172.24052,-2.6811E-05],[172.24405,-2.6295E-05],[172.24758,-2.5264E-05],[172.2511,-2.8357E-05],[172.25463,-3.042E-05],[172.25816,-2.6295E-05],[172.26169,-2.6811E-05],[172.26522,-2.6811E-05],[172.26874,-2.7842E-05],[172.27227,-2.8873E-05],[172.2758,-2.7842E-05],[172.27933,-3.042E-05],[172.28286,-3.1451E-05],[172.28638,-2.9389E-05],[172.28991,-2.8873E-05],[172.29344,-3.1967E-05],[172.29697,-3.042E-05],[172.3005,-2.6295E-05],[172.30402,-2.7842E-05],[172.30755,-2.9389E-05],[172.31108,-3.2482E-05],[172.31461,-3.042E-05],[172.31814,-2.8357E-05],[172.32166,-3.042E-05],[172.32519,-2.6811E-05],[172.32872,-2.7326E-05],[172.33225,-2.9904E-05],[172.33578,-2.9904E-05],[172.3393,-2.7842E-05],[172.34283,-2.4233E-05],[172.34636,-2.4748E-05],[172.34989,-2.2686E-05]]}
-{"quant":[172.677,-2.9475E-05],"mems":[[172.57921,-2.9904E-05],[172.58274,-3.3513E-05],[172.58626,-3.2482E-05],[172.58979,-2.8357E-05],[172.59332,-2.5264E-05],[172.59685,-2.4233E-05],[172.60038,-3.1967E-05],[172.6039,-3.3513E-05],[172.60743,-2.7326E-05],[172.61096,-2.9389E-05],[172.61449,-3.042E-05],[172.61802,-2.9389E-05],[172.62154,-3.1451E-05],[172.62507,-3.1451E-05],[172.6286,-2.8357E-05],[172.63213,-3.3513E-05],[172.63566,-2.7842E-05],[172.63918,-2.3717E-05],[172.64271,-3.2482E-05],[172.64624,-2.6811E-05],[172.64977,-2.6811E-05],[172.6533,-2.8873E-05],[172.65682,-2.4233E-05],[172.66035,-2.7326E-05],[172.66388,-3.4544E-05],[172.66741,-3.506E-05],[172.67094,-2.8357E-05],[172.67446,-2.9389E-05],[172.67799,-2.7842E-05],[172.68152,-3.042E-05],[172.68505,-3.4544E-05],[172.68858,-2.8873E-05],[172.6921,-2.7842E-05],[172.69563,-3.1451E-05],[172.69916,-3.1967E-05],[172.70269,-2.9389E-05],[172.70622,-3.1967E-05],[172.70974,-2.8873E-05],[172.71327,-2.4233E-05],[172.7168,-2.3717E-05],[172.72033,-2.7326E-05],[172.72386,-3.3513E-05],[172.72738,-2.9389E-05],[172.73091,-3.042E-05],[172.73444,-3.4544E-05],[172.73797,-3.1451E-05],[172.7415,-2.8873E-05],[172.74502,-2.9389E-05],[172.74855,-2.7326E-05],[172.75208,-2.4233E-05],[172.75561,-2.7842E-05],[172.75914,-3.042E-05],[172.76266,-2.8873E-05],[172.76619,-2.8873E-05],[172.76972,-3.1967E-05],[172.77325,-3.2998E-05],[172.77678,-2.8873E-05],[172.7803,-2.6811E-05],[172.78383,-2.8873E-05],[172.78736,-2.9389E-05],[172.79089,-2.6811E-05],[172.79442,-2.9389E-05],[172.79794,-3.1451E-05],[172.80147,-3.3513E-05],[172.805,-3.2482E-05],[172.80853,-2.8873E-05],[172.81206,-2.9389E-05],[172.81558,-2.7326E-05],[172.81911,-2.9904E-05],[172.82264,-2.8357E-05],[172.82617,-2.7326E-05],[172.8297,-3.1967E-05],[172.83322,-2.8873E-05],[172.83675,-2.9904E-05],[172.84028,-2.8873E-05],[172.84381,-2.6295E-05],[172.84734,-2.8357E-05],[172.85086,-2.5264E-05],[172.85439,-2.6811E-05],[172.85792,-2.4233E-05],[172.86145,-2.7326E-05],[172.86498,-3.4544E-05],[172.8685,-3.042E-05],[172.87203,-3.4029E-05],[172.87556,-3.5576E-05],[172.87909,-3.042E-05]]}
-{"quant":[173.145,0.61498],"mems":[[173.04843,-3.0935E-05],[173.05196,-2.8873E-05],[173.05549,-2.7842E-05],[173.05902,-2.9904E-05],[173.06254,-3.1451E-05],[173.06607,-3.042E-05],[173.0696,-3.0935E-05],[173.07313,-3.4029E-05],[173.07666,-3.1967E-05],[173.08018,-3.0935E-05],[173.08371,-3.042E-05],[173.08724,-3.2998E-05],[173.09077,-2.9904E-05],[173.0943,-2.7842E-05],[173.09782,-3.042E-05],[173.10135,-3.1451E-05],[173.10488,-2.9389E-05],[173.10841,-2.8357E-05],[173.11194,-3.0935E-05],[173.11546,-3.1451E-05],[173.11899,-2.9389E-05],[173.12252,-2.7326E-05],[173.12605,-2.9389E-05],[173.12958,-2.8357E-05],[173.1331,-2.8873E-05],[173.13663,-2.9904E-05],[173.14016,-2.7326E-05],[173.14369,-2.8873E-05],[173.14722,-2.5779E-05],[173.15074,-2.5264E-05],[173.15427,-2.7326E-05],[173.1578,-2.4233E-05],[173.16133,-2.5779E-05],[173.16486,-2.6295E-05],[173.16838,-2.9389E-05],[173.17191,-3.0935E-05],[173.17544,-2.8357E-05],[173.17897,-2.9904E-05],[173.1825,-3.042E-05],[173.18602,-2.9904E-05],[173.18955,-3.042E-05],[173.19308,-3.2482E-05],[173.19661,-2.9389E-05],[173.20014,-2.5779E-05],[173.20366,-2.5779E-05],[173.20719,-2.6811E-05],[173.21072,-3.0935E-05],[173.21425,-2.8357E-05],[173.21778,-2.8357E-05],[173.2213,-3.1967E-05],[173.22483,-3.042E-05],[173.22836,-2.8873E-05],[173.23189,-2.8357E-05],[173.23542,-2.8357E-05],[173.23894,-3.042E-05],[173.24247,-3.2998E-05],[173.246,-3.042E-05],[173.24946,-2.4233E-05],[173.25291,-2.5264E-05],[173.25637,-2.8357E-05],[173.25983,-2.7842E-05],[173.26329,-2.8873E-05],[173.26674,-2.8873E-05],[173.2702,-2.7842E-05],[173.27366,-2.9389E-05],[173.27712,-3.042E-05],[173.28057,-2.7842E-05],[173.28403,-3.042E-05],[173.28749,-2.7326E-05],[173.29095,-2.7842E-05],[173.2944,-3.2998E-05],[173.29786,-2.6811E-05],[173.30132,-2.7326E-05],[173.30477,-2.5264E-05],[173.30823,-2.0624E-05],[173.31169,-2.6811E-05],[173.31515,-2.8873E-05],[173.3186,-3.042E-05],[173.32206,-3.1967E-05],[173.32552,-2.8357E-05],[173.32898,-2.4748E-05],[173.33243,-3.0935E-05],[173.33589,-3.5576E-05],[173.33935,-3.0935E-05],[173.34281,-3.1451E-05],[173.34626,-3.1451E-05]]}
-{"quant":[173.608,-2.8375E-05],"mems":[[173.50876,-3.042E-05],[173.51221,-2.6295E-05],[173.51567,-2.4748E-05],[173.51913,-2.6811E-05],[173.52259,-3.1451E-05],[173.52604,-3.1451E-05],[173.5295,-3.0935E-05],[173.53296,-3.1451E-05],[173.53642,-3.0935E-05],[173.53987,-2.9904E-05],[173.54333,-2.6811E-05],[173.54679,-2.7326E-05],[173.55025,-3.042E-05],[173.5537,-3.3513E-05],[173.55716,-3.2998E-05],[173.56062,-3.0935E-05],[173.56407,-3.1451E-05],[173.56753,-3.042E-05],[173.57099,-2.6295E-05],[173.57445,-2.7326E-05],[173.5779,-2.9389E-05],[173.58136,-2.8357E-05],[173.58482,-3.1967E-05],[173.58828,-3.042E-05],[173.59173,-2.8873E-05],[173.59519,-2.8873E-05],[173.59865,-3.042E-05],[173.60211,-3.2998E-05],[173.60556,-3.1451E-05],[173.60902,-2.8873E-05],[173.61248,-2.8873E-05],[173.61593,-2.8357E-05],[173.61939,-2.8357E-05],[173.62285,-2.9904E-05],[173.62631,-2.5779E-05],[173.62976,-2.7326E-05],[173.63322,-2.9904E-05],[173.63668,-2.7842E-05],[173.64014,-3.1967E-05],[173.64359,-3.0935E-05],[173.64705,-2.9904E-05],[173.65051,-2.9904E-05],[173.65397,-2.4233E-05],[173.65742,-2.6295E-05],[173.66088,-2.9389E-05],[173.66434,-2.9389E-05],[173.66779,-3.1451E-05],[173.67125,-2.6811E-05],[173.67471,-2.7842E-05],[173.67817,-2.8873E-05],[173.68162,-2.3717E-05],[173.68508,-2.7326E-05],[173.68854,-2.8357E-05],[173.692,-3.0935E-05],[173.69545,-3.042E-05],[173.69891,-2.6811E-05],[173.70237,-3.0935E-05],[173.70583,-2.5779E-05],[173.70928,-2.4748E-05],[173.71274,-2.8357E-05],[173.7162,-3.0935E-05],[173.71965,-3.0935E-05],[173.72311,-2.5779E-05],[173.72657,-2.9389E-05],[173.73003,-2.6811E-05],[173.73348,-2.3717E-05],[173.73694,-2.7842E-05],[173.7404,-2.4748E-05],[173.74386,-2.6811E-05],[173.74731,-2.9389E-05],[173.75077,-2.7842E-05],[173.75423,-2.9389E-05],[173.75769,-2.8357E-05],[173.76114,-2.7842E-05],[173.7646,-3.1451E-05],[173.76806,-2.9904E-05],[173.77151,-2.8357E-05],[173.77497,-2.9389E-05],[173.77843,-2.8357E-05],[173.78189,-2.9904E-05],[173.78534,-3.3513E-05],[173.7888,-3.1967E-05],[173.79226,-2.7842E-05],[173.79572,-3.0935E-05],[173.79917,-3.3513E-05],[173.80263,-2.6811E-05],[173.80609,-2.5264E-05],[173.80955,-2.7842E-05]]}
-{"quant":[174.309,-3.0231E-05],"mems":[[174.2106,-3.042E-05],[174.21405,-2.8873E-05],[174.21751,-3.042E-05],[174.22097,-2.9389E-05],[174.22443,-2.8357E-05],[174.22788,-3.1967E-05],[174.23134,-3.2482E-05],[174.2348,-3.1967E-05],[174.23825,-2.7326E-05],[174.24171,-2.5264E-05],[174.24517,-2.5264E-05],[174.24863,-2.5264E-05],[174.25208,-2.9389E-05],[174.25554,-2.7326E-05],[174.259,-2.7842E-05],[174.26246,-2.6811E-05],[174.26591,-2.5779E-05],[174.26937,-3.042E-05],[174.27283,-2.7326E-05],[174.27629,-2.7326E-05],[174.27974,-2.7842E-05],[174.2832,-3.0935E-05],[174.28666,-3.6607E-05],[174.29011,-3.1451E-05],[174.29357,-2.5264E-05],[174.29703,-2.5264E-05],[174.30049,-3.0935E-05],[174.30394,-3.2482E-05],[174.3074,-3.1967E-05],[174.31086,-2.9904E-05],[174.31432,-2.7842E-05],[174.31777,-2.8357E-05],[174.32123,-2.8873E-05],[174.32469,-3.0935E-05],[174.32815,-2.9904E-05],[174.3316,-2.9389E-05],[174.33506,-3.1967E-05],[174.33852,-3.1967E-05],[174.34197,-2.7326E-05],[174.34543,-2.7842E-05],[174.34889,-2.9389E-05],[174.35235,-3.042E-05],[174.3558,-3.6091E-05],[174.35926,-3.3513E-05],[174.36272,-2.9389E-05],[174.36618,-2.8873E-05],[174.36963,-2.7842E-05],[174.37309,-2.9389E-05],[174.37655,-2.6295E-05],[174.38001,-2.5779E-05],[174.38346,-3.042E-05],[174.38692,-3.1451E-05],[174.39038,-3.2998E-05],[174.39383,-2.7842E-05],[174.39729,-2.5779E-05],[174.40075,-3.2998E-05],[174.40421,-3.3513E-05],[174.40766,-3.6607E-05],[174.41112,-3.4029E-05],[174.41458,-3.1451E-05],[174.41804,-3.4029E-05],[174.42149,-2.8357E-05],[174.42495,-3.0935E-05],[174.42841,-3.2482E-05],[174.43187,-2.8873E-05],[174.43532,-2.7842E-05],[174.43878,-3.0935E-05],[174.44224,-3.1451E-05],[174.44569,-3.042E-05],[174.44915,-3.1967E-05],[174.45261,-2.8357E-05],[174.45607,-2.9389E-05],[174.45952,-2.8873E-05],[174.46298,-3.1451E-05],[174.46644,-3.6091E-05],[174.4699,-3.3513E-05],[174.47335,-2.9904E-05],[174.47681,-2.8357E-05],[174.48027,-2.8873E-05],[174.48373,-2.9389E-05],[174.48718,-3.1967E-05],[174.49064,-3.042E-05],[174.4941,-2.9389E-05],[174.49755,-3.2998E-05],[174.50101,-3.1451E-05],[174.50447,-3.1967E-05],[174.50793,-2.8357E-05],[174.51138,-2.6295E-05]]}
-{"quant":[174.772,-3.0024E-05],"mems":[[174.67388,-2.9389E-05],[174.67734,-3.2482E-05],[174.68079,-3.2998E-05],[174.68425,-3.1967E-05],[174.68771,-2.8357E-05],[174.69117,-3.042E-05],[174.69462,-3.042E-05],[174.69808,-3.042E-05],[174.70154,-3.0935E-05],[174.70499,-2.8873E-05],[174.70845,-2.8873E-05],[174.71191,-2.9389E-05],[174.71537,-2.8873E-05],[174.71882,-2.2686E-05],[174.72228,-2.4233E-05],[174.72574,-2.6295E-05],[174.7292,-2.5779E-05],[174.73265,-2.9904E-05],[174.73611,-2.9389E-05],[174.73957,-2.8873E-05],[174.74303,-3.1967E-05],[174.74648,-3.1451E-05],[174.74994,-2.8873E-05],[174.7534,-2.9904E-05],[174.75685,-2.6811E-05],[174.76031,-2.8873E-05],[174.76377,-3.3513E-05],[174.76723,-2.8357E-05],[174.77068,-3.042E-05],[174.77414,-3.1451E-05],[174.7776,-2.6295E-05],[174.78106,-2.8357E-05],[174.78451,-2.8873E-05],[174.78797,-2.9904E-05],[174.79143,-3.2998E-05],[174.79489,-3.0935E-05],[174.79834,-2.8873E-05],[174.8018,-2.7842E-05],[174.80526,-2.8873E-05],[174.80871,-3.0935E-05],[174.81217,-2.8873E-05],[174.81563,-2.7326E-05],[174.81909,-2.8357E-05],[174.82254,-3.0935E-05],[174.826,-3.042E-05],[174.82946,-2.9904E-05],[174.83292,-2.7842E-05],[174.83637,-2.4233E-05],[174.83983,-2.6811E-05],[174.84329,-3.3513E-05],[174.84675,-3.8154E-05],[174.8502,-3.2998E-05],[174.85366,-2.7326E-05],[174.85712,-3.2482E-05],[174.86057,-3.2998E-05],[174.86403,-3.5576E-05],[174.86749,-3.1967E-05],[174.87095,-2.4748E-05],[174.8744,-3.0935E-05],[174.87786,-2.5779E-05],[174.88132,-2.1655E-05],[174.88478,-3.1451E-05],[174.88823,-3.2482E-05],[174.89169,-2.9389E-05],[174.89515,-2.9389E-05],[174.89861,-3.042E-05],[174.90206,-2.9904E-05],[174.90552,-2.8873E-05],[174.90898,-2.9389E-05],[174.91243,-2.9904E-05],[174.91589,-3.0935E-05],[174.91935,-3.042E-05],[174.92281,-2.9904E-05],[174.92626,-3.3513E-05],[174.92972,-3.4544E-05],[174.93318,-3.0935E-05],[174.93664,-2.8357E-05],[174.94009,-2.8873E-05],[174.94355,-3.3513E-05],[174.94701,-3.9185E-05],[174.95047,-2.9389E-05],[174.95392,-2.6295E-05],[174.95738,-3.1967E-05],[174.96084,-2.7326E-05],[174.96429,-2.9389E-05],[174.96775,-2.6811E-05],[174.97121,-2.8873E-05],[174.97467,-3.0935E-05]]}
-{"quant":[175.252,-2.8942E-05],"mems":[[175.15445,-3.042E-05],[175.15791,-3.042E-05],[175.16136,-3.3513E-05],[175.16482,-3.2482E-05],[175.16828,-2.9389E-05],[175.17173,-3.506E-05],[175.17519,-3.4544E-05],[175.17865,-3.1967E-05],[175.18211,-2.9389E-05],[175.18556,-2.5779E-05],[175.18902,-2.7326E-05],[175.19248,-2.6295E-05],[175.19594,-2.7842E-05],[175.19939,-2.9389E-05],[175.20285,-2.8357E-05],[175.20631,-2.9389E-05],[175.20977,-2.6811E-05],[175.21322,-2.5779E-05],[175.21668,-3.1451E-05],[175.22014,-3.0935E-05],[175.22359,-2.8873E-05],[175.22705,-2.8357E-05],[175.23051,-2.6811E-05],[175.23397,-2.9904E-05],[175.23742,-3.042E-05],[175.24088,-2.8873E-05],[175.24434,-2.9389E-05],[175.2478,-3.042E-05],[175.25125,-3.4029E-05],[175.25471,-2.7326E-05],[175.25817,-1.9077E-05],[175.26163,-2.5779E-05],[175.26508,-3.042E-05],[175.26854,-3.5576E-05],[175.272,-3.2998E-05],[175.27545,-2.4748E-05],[175.27891,-2.1655E-05],[175.28237,-2.4748E-05],[175.28583,-3.1451E-05],[175.28928,-3.0935E-05],[175.29274,-3.1967E-05],[175.2962,-2.9389E-05],[175.29966,-2.3717E-05],[175.30311,-2.6811E-05],[175.30657,-2.7842E-05],[175.31003,-2.6295E-05],[175.31349,-2.4233E-05],[175.31694,-2.7842E-05],[175.3204,-3.4029E-05],[175.32386,-2.8357E-05],[175.32731,-3.2482E-05],[175.33077,-3.506E-05],[175.33423,-2.9904E-05],[175.33769,-2.9904E-05],[175.34114,-2.8357E-05],[175.3446,-3.2998E-05],[175.34806,-3.2998E-05],[175.35152,-2.9904E-05],[175.35497,-3.1451E-05],[175.35843,-2.7842E-05],[175.36189,-2.9389E-05],[175.36535,-3.1967E-05],[175.3688,-3.2482E-05],[175.37226,-3.0935E-05],[175.37572,-2.8357E-05],[175.37917,-3.1451E-05],[175.38263,-2.8873E-05],[175.38609,-2.8357E-05],[175.38955,-2.7842E-05],[175.393,-2.7842E-05],[175.39646,-2.9389E-05],[175.39992,-2.5779E-05],[175.40338,-2.9904E-05],[175.40683,-3.1451E-05],[175.41029,-2.8357E-05],[175.41375,-2.8357E-05],[175.41721,-2.6295E-05],[175.42066,-2.8873E-05],[175.42412,-2.8873E-05],[175.42758,-2.8873E-05],[175.43103,-2.8357E-05],[175.43449,-2.5779E-05],[175.43795,-2.7842E-05],[175.44141,-2.3202E-05],[175.44486,-2.7326E-05],[175.44832,-3.042E-05],[175.45178,-2.5779E-05],[175.45524,-2.6811E-05]]}
-{"quant":[175.722,0.33987],"mems":[[175.67996,-2.5264E-05],[175.68342,-3.042E-05],[175.68688,-3.1967E-05],[175.69033,-3.3513E-05],[175.69379,-2.8357E-05],[175.69725,-2.6295E-05],[175.70071,-3.042E-05],[175.70416,-2.6811E-05],[175.70762,-3.1967E-05],[175.71108,-3.506E-05],[175.71454,-3.506E-05],[175.71799,-3.1967E-05],[175.72145,-2.9389E-05],[175.72491,-2.8873E-05],[175.72837,-2.6811E-05],[175.73182,-2.9904E-05],[175.73528,-2.8357E-05],[175.73874,-3.0935E-05],[175.74219,-2.9904E-05],[175.74565,-3.042E-05],[175.74911,-3.4544E-05],[175.75257,-2.9904E-05],[175.75602,-3.0935E-05],[175.75948,-3.0935E-05],[175.76294,-2.7326E-05],[175.7664,-3.042E-05],[175.76985,-2.7326E-05],[175.77331,-2.4233E-05],[175.77677,-2.9904E-05],[175.78023,-2.9904E-05],[175.78368,-3.0935E-05],[175.78714,-3.1967E-05],[175.7906,-2.8873E-05],[175.79405,-3.0935E-05],[175.79751,-3.1451E-05],[175.80097,-2.8357E-05],[175.80443,-2.4748E-05],[175.80788,-2.6295E-05],[175.81134,-2.8357E-05],[175.8148,-2.6811E-05],[175.81826,-2.5779E-05],[175.82171,-2.7842E-05],[175.82517,-3.1451E-05],[175.82863,-2.9389E-05],[175.83209,-3.2482E-05],[175.83554,-3.6091E-05],[175.839,-2.8357E-05],[175.84236,-2.4233E-05],[175.84572,-2.9904E-05],[175.84908,-3.0935E-05],[175.85243,-2.7842E-05],[175.85579,-3.4029E-05],[175.85915,-3.6091E-05],[175.86251,-3.0935E-05],[175.86587,-2.7326E-05],[175.86923,-2.6295E-05],[175.87259,-2.9904E-05],[175.87595,-2.7842E-05],[175.8793,-2.5264E-05],[175.88266,-2.7842E-05],[175.88602,-3.0935E-05],[175.88938,-3.1967E-05],[175.89274,-3.0935E-05],[175.8961,-3.0935E-05],[175.89946,-2.5779E-05],[175.90281,-2.6295E-05],[175.90617,-3.2998E-05],[175.90953,-3.4029E-05],[175.91289,-3.506E-05],[175.91625,-3.506E-05],[175.91961,-2.9389E-05],[175.92297,-2.8357E-05],[175.92633,-3.4029E-05],[175.92968,-2.9389E-05],[175.93304,-2.9389E-05],[175.9364,-3.3513E-05],[175.93976,-2.8357E-05],[175.94312,-2.7326E-05],[175.94648,-2.9389E-05],[175.94984,-3.0935E-05],[175.95319,-3.4029E-05],[175.95655,-3.1451E-05],[175.95991,-2.8873E-05],[175.96327,-2.8357E-05],[175.96663,-3.1451E-05],[175.96999,-3.4029E-05],[175.97335,-2.8873E-05],[175.97671,-3.042E-05]]}
-{"quant":[176.202,-3.066E-05],"mems":[[176.10433,-3.042E-05],[176.10769,-2.9389E-05],[176.11105,-3.2482E-05],[176.11441,-2.6811E-05],[176.11777,-2.4233E-05],[176.12113,-2.7842E-05],[176.12449,-2.6811E-05],[176.12785,-3.042E-05],[176.1312,-3.1451E-05],[176.13456,-2.8873E-05],[176.13792,-3.2482E-05],[176.14128,-3.7638E-05],[176.14464,-3.4029E-05],[176.148,-3.0935E-05],[176.15136,-3.2482E-05],[176.15471,-2.8357E-05],[176.15807,-3.1967E-05],[176.16143,-3.6091E-05],[176.16479,-3.0935E-05],[176.16815,-2.8357E-05],[176.17151,-2.6811E-05],[176.17487,-2.5779E-05],[176.17823,-2.8873E-05],[176.18158,-3.506E-05],[176.18494,-3.5576E-05],[176.1883,-2.9904E-05],[176.19166,-2.7326E-05],[176.19502,-2.7842E-05],[176.19838,-3.1967E-05],[176.20174,-3.2482E-05],[176.20509,-2.8873E-05],[176.20845,-3.0935E-05],[176.21181,-3.0935E-05],[176.21517,-3.3513E-05],[176.21853,-3.3513E-05],[176.22189,-3.2482E-05],[176.22525,-3.8669E-05],[176.22861,-3.4029E-05],[176.23196,-2.7326E-05],[176.23532,-3.2482E-05],[176.23868,-3.3513E-05],[176.24204,-2.7842E-05],[176.2454,-2.8357E-05],[176.24876,-2.7842E-05],[176.25212,-3.042E-05],[176.25547,-3.4029E-05],[176.25883,-3.3513E-05],[176.26219,-3.3513E-05],[176.26555,-3.1967E-05],[176.26891,-2.9389E-05],[176.27227,-2.9389E-05],[176.27563,-3.0935E-05],[176.27899,-2.8873E-05],[176.28234,-2.5779E-05],[176.2857,-2.4748E-05],[176.28906,-2.6295E-05],[176.29242,-2.5779E-05],[176.29578,-2.9389E-05],[176.29914,-3.4029E-05],[176.3025,-3.1451E-05],[176.30585,-3.1451E-05],[176.30921,-3.1451E-05],[176.31257,-3.2482E-05],[176.31593,-3.4029E-05],[176.31929,-3.1967E-05],[176.32265,-2.9904E-05],[176.32601,-3.042E-05],[176.32937,-2.7842E-05],[176.33272,-2.2686E-05],[176.33608,-2.6811E-05],[176.33944,-2.8357E-05],[176.3428,-2.6295E-05],[176.34616,-2.7842E-05],[176.34952,-2.8357E-05],[176.35288,-3.0935E-05],[176.35623,-3.0935E-05],[176.35959,-3.1967E-05],[176.36295,-2.6295E-05],[176.36631,-2.1139E-05],[176.36967,-2.8357E-05],[176.37303,-2.9904E-05],[176.37639,-2.9904E-05],[176.37975,-2.9904E-05],[176.3831,-2.9389E-05],[176.38646,-2.9904E-05],[176.38982,-2.7326E-05],[176.39318,-2.8873E-05],[176.39654,-2.8357E-05],[176.3999,-2.7842E-05],[176.40326,-3.0935E-05]]}
-{"quant":[176.912,-3.1135E-05],"mems":[[176.81301,-2.6811E-05],[176.81637,-3.4544E-05],[176.81973,-2.9904E-05],[176.82309,-3.1451E-05],[176.82645,-3.0935E-05],[176.82981,-2.7326E-05],[176.83317,-3.2998E-05],[176.83652,-2.8873E-05],[176.83988,-3.042E-05],[176.84324,-3.0935E-05],[176.8466,-2.7326E-05],[176.84996,-3.0935E-05],[176.85332,-2.7842E-05],[176.85668,-3.042E-05],[176.86003,-3.2482E-05],[176.86339,-3.0935E-05],[176.86675,-3.4029E-05],[176.87011,-2.9904E-05],[176.87347,-3.0935E-05],[176.87683,-3.0935E-05],[176.88019,-2.4748E-05],[176.88355,-2.9389E-05],[176.8869,-3.7122E-05],[176.89026,-3.5576E-05],[176.89362,-2.7842E-05],[176.89698,-2.7842E-05],[176.90034,-3.1451E-05],[176.9037,-3.1967E-05],[176.90706,-3.0935E-05],[176.91041,-2.9389E-05],[176.91377,-2.6295E-05],[176.91713,-2.8357E-05],[176.92049,-3.4029E-05],[176.92385,-3.4544E-05],[176.92721,-3.4544E-05],[176.93057,-2.9904E-05],[176.93393,-2.5779E-05],[176.93728,-2.8873E-05],[176.94064,-3.3513E-05],[176.944,-3.5576E-05],[176.94736,-3.2482E-05],[176.95072,-3.5576E-05],[176.95408,-3.1967E-05],[176.95744,-2.6811E-05],[176.96079,-3.506E-05],[176.96415,-3.1967E-05],[176.96751,-3.2482E-05],[176.97087,-3.2482E-05],[176.97423,-3.1451E-05],[176.97759,-3.2482E-05],[176.98095,-2.8357E-05],[176.98431,-3.1967E-05],[176.98766,-2.7842E-05],[176.99102,-2.7326E-05],[176.99438,-2.9389E-05],[176.99774,-2.8357E-05],[177.0011,-3.3513E-05],[177.00446,-3.1451E-05],[177.00782,-3.1451E-05],[177.01117,-2.9904E-05],[177.01453,-3.1451E-05],[177.01789,-3.5576E-05],[177.02125,-3.5576E-05],[177.02461,-3.5576E-05],[177.02797,-3.2998E-05],[177.03133,-3.1451E-05],[177.03469,-2.9389E-05],[177.03804,-2.9389E-05],[177.0414,-3.3513E-05],[177.04476,-3.2998E-05],[177.04812,-2.7326E-05],[177.05148,-2.7842E-05],[177.05484,-2.8873E-05],[177.0582,-2.7842E-05],[177.06155,-3.2998E-05],[177.06491,-3.1451E-05],[177.06827,-2.9389E-05],[177.07163,-3.0935E-05],[177.07499,-3.0935E-05],[177.07835,-3.1451E-05],[177.08171,-3.3513E-05],[177.08507,-3.506E-05],[177.08842,-2.9389E-05],[177.09178,-2.8873E-05],[177.09514,-3.3513E-05],[177.0985,-3.042E-05],[177.10186,-2.9389E-05],[177.10522,-3.2482E-05],[177.10858,-2.8357E-05],[177.11193,-2.8357E-05],[177.11529,-3.2482E-05]]}
-{"quant":[177.366,-2.9422E-05],"mems":[[177.26643,-3.3513E-05],[177.26979,-2.8357E-05],[177.27315,-2.8357E-05],[177.27651,-3.4029E-05],[177.27987,-2.9904E-05],[177.28323,-3.2998E-05],[177.28659,-2.9904E-05],[177.28994,-2.8873E-05],[177.2933,-3.2482E-05],[177.29666,-2.8357E-05],[177.30002,-3.1451E-05],[177.30338,-3.1451E-05],[177.30674,-3.042E-05],[177.3101,-3.042E-05],[177.31345,-2.8873E-05],[177.31681,-3.2482E-05],[177.32017,-3.4029E-05],[177.32353,-3.042E-05],[177.32689,-3.1967E-05],[177.33025,-3.2998E-05],[177.33361,-2.9389E-05],[177.33697,-3.042E-05],[177.34032,-3.0935E-05],[177.34368,-2.9389E-05],[177.34704,-2.9904E-05],[177.3504,-3.4029E-05],[177.35376,-3.5576E-05],[177.35712,-3.1451E-05],[177.36048,-2.9389E-05],[177.36383,-2.4233E-05],[177.36719,-2.6295E-05],[177.37055,-2.9904E-05],[177.37391,-2.7842E-05],[177.37727,-3.042E-05],[177.38063,-3.0935E-05],[177.38399,-2.8357E-05],[177.38735,-3.042E-05],[177.3907,-3.2482E-05],[177.39406,-3.042E-05],[177.39742,-3.1967E-05],[177.40078,-2.9389E-05],[177.40414,-2.8873E-05],[177.4075,-3.1451E-05],[177.41086,-2.9904E-05],[177.41421,-3.1451E-05],[177.41757,-2.6811E-05],[177.42093,-2.4233E-05],[177.42429,-2.8357E-05],[177.42765,-2.7842E-05],[177.43101,-3.2482E-05],[177.43437,-3.1451E-05],[177.43773,-2.7842E-05],[177.44108,-2.8873E-05],[177.44444,-2.8873E-05],[177.4478,-3.0935E-05],[177.45116,-3.1451E-05],[177.45452,-2.9904E-05],[177.45788,-2.6295E-05],[177.46124,-2.7842E-05],[177.46459,-2.8357E-05],[177.46795,-3.042E-05],[177.47131,-3.2998E-05],[177.47467,-2.6295E-05],[177.47803,-2.6811E-05],[177.48139,-2.8873E-05],[177.48475,-2.9389E-05],[177.48811,-2.8873E-05],[177.49146,-2.7842E-05],[177.49482,-2.7842E-05],[177.49818,-2.4748E-05],[177.50154,-2.9904E-05],[177.5049,-3.1967E-05],[177.50826,-2.8873E-05],[177.51162,-2.8873E-05],[177.51497,-2.7842E-05],[177.51833,-2.7326E-05],[177.52169,-2.8873E-05],[177.52505,-3.042E-05],[177.52841,-3.4029E-05],[177.53177,-3.0935E-05],[177.53513,-2.5779E-05],[177.53849,-3.2482E-05],[177.54184,-3.2482E-05],[177.5452,-3.1451E-05],[177.54856,-2.9904E-05],[177.55192,-2.5779E-05],[177.55528,-2.9389E-05],[177.55864,-2.8873E-05],[177.562,-3.1451E-05],[177.56535,-2.9904E-05],[177.56871,-2.9389E-05]]}
-{"quant":[177.887,-2.9538E-05],"mems":[[177.78703,-2.9389E-05],[177.79039,-3.2998E-05],[177.79374,-3.1451E-05],[177.7971,-2.8357E-05],[177.80046,-2.9389E-05],[177.80382,-3.1967E-05],[177.80718,-3.4544E-05],[177.81054,-3.042E-05],[177.8139,-2.6811E-05],[177.81725,-2.8873E-05],[177.82061,-3.2998E-05],[177.82397,-3.506E-05],[177.82733,-2.9904E-05],[177.83069,-2.6811E-05],[177.83405,-2.8873E-05],[177.83741,-3.4544E-05],[177.84077,-3.4544E-05],[177.84412,-2.8873E-05],[177.84748,-3.2998E-05],[177.85084,-3.0935E-05],[177.8542,-2.5779E-05],[177.85756,-3.1967E-05],[177.86092,-3.042E-05],[177.86428,-2.5779E-05],[177.86763,-2.7842E-05],[177.87099,-2.9904E-05],[177.87435,-2.9904E-05],[177.87771,-2.8873E-05],[177.88107,-3.1451E-05],[177.88443,-3.1451E-05],[177.88779,-2.7842E-05],[177.89115,-2.7842E-05],[177.8945,-3.1451E-05],[177.89786,-3.0935E-05],[177.90122,-2.9904E-05],[177.90458,-3.1967E-05],[177.90794,-3.1451E-05],[177.9113,-2.8873E-05],[177.91466,-2.7326E-05],[177.91801,-2.8873E-05],[177.92137,-3.2482E-05],[177.92473,-2.9904E-05],[177.92809,-2.8873E-05],[177.93145,-2.7842E-05],[177.93481,-2.7326E-05],[177.93817,-3.0935E-05],[177.94153,-3.1451E-05],[177.94488,-3.0935E-05],[177.94824,-2.8357E-05],[177.9516,-2.6295E-05],[177.95496,-3.1967E-05],[177.95832,-3.506E-05],[177.96168,-3.4029E-05],[177.96504,-2.9389E-05],[177.96839,-2.5779E-05],[177.97175,-2.7842E-05],[177.97511,-2.8873E-05],[177.97847,-2.9904E-05],[177.98183,-2.9389E-05],[177.98519,-2.6811E-05],[177.98855,-2.5779E-05],[177.99191,-2.8873E-05],[177.99526,-3.042E-05],[177.99862,-2.7326E-05],[178.00198,-2.6295E-05],[178.00534,-2.3202E-05],[178.0087,-2.8357E-05],[178.01206,-3.1967E-05],[178.01542,-2.7842E-05],[178.01877,-2.9904E-05],[178.02213,-3.506E-05],[178.02549,-3.506E-05],[178.02885,-2.6811E-05],[178.03221,-3.0935E-05],[178.03557,-3.5576E-05],[178.03893,-3.3513E-05],[178.04229,-2.8873E-05],[178.04564,-2.3202E-05],[178.049,-2.7842E-05],[178.05236,-2.9904E-05],[178.05572,-2.8357E-05],[178.05908,-2.7326E-05],[178.06244,-2.7842E-05],[178.0658,-3.042E-05],[178.06915,-2.9904E-05],[178.07251,-2.9389E-05],[178.07587,-3.1451E-05],[178.07923,-3.0935E-05],[178.08259,-2.8357E-05],[178.08595,-2.9389E-05],[178.08931,-2.9389E-05]]}
-{"quant":[178.352,0.25383],"mems":[[178.25388,-2.3717E-05],[178.25724,-2.6811E-05],[178.2606,-2.7326E-05],[178.26396,-2.6295E-05],[178.26732,-2.8873E-05],[178.27067,-2.6811E-05],[178.27403,-3.1451E-05],[178.27739,-3.0935E-05],[178.28075,-2.6811E-05],[178.28411,-2.6295E-05],[178.28747,-2.7842E-05],[178.29083,-2.9904E-05],[178.29419,-2.8357E-05],[178.29754,-2.9904E-05],[178.3009,-3.506E-05],[178.30426,-3.2998E-05],[178.30762,-2.8873E-05],[178.31098,-3.3513E-05],[178.31434,-3.0935E-05],[178.3177,-2.8873E-05],[178.32105,-3.1967E-05],[178.32441,-2.9904E-05],[178.32777,-2.9389E-05],[178.33113,-3.2998E-05],[178.33449,-3.3513E-05],[178.33785,-2.9904E-05],[178.34121,-3.1451E-05],[178.34457,-2.9904E-05],[178.34792,-3.1967E-05],[178.35128,-3.8154E-05],[178.35464,-3.4544E-05],[178.358,-3.042E-05],[178.36148,-2.8873E-05],[178.36496,-2.7842E-05],[178.36844,-2.8873E-05],[178.37193,-2.7326E-05],[178.37541,-2.6295E-05],[178.37889,-2.9389E-05],[178.38237,-2.6811E-05],[178.38585,-3.1967E-05],[178.38933,-3.4029E-05],[178.39281,-2.9904E-05],[178.39629,-3.0935E-05],[178.39978,-2.6811E-05],[178.40326,-2.9904E-05],[178.40674,-3.042E-05],[178.41022,-2.9389E-05],[178.4137,-3.2998E-05],[178.41718,-3.042E-05],[178.42066,-3.2482E-05],[178.42415,-2.9389E-05],[178.42763,-2.8873E-05],[178.43111,-3.0935E-05],[178.43459,-2.8873E-05],[178.43807,-2.8873E-05],[178.44155,-2.7842E-05],[178.44503,-2.7326E-05],[178.44851,-2.6811E-05],[178.452,-3.0935E-05],[178.45548,-3.2998E-05],[178.45896,-3.0935E-05],[178.46244,-3.042E-05],[178.46592,-3.1451E-05],[178.4694,-3.0935E-05],[178.47288,-2.6295E-05],[178.47637,-2.4748E-05],[178.47985,-2.8873E-05],[178.48333,-2.9389E-05],[178.48681,-2.8873E-05],[178.49029,-2.9389E-05],[178.49377,-3.0935E-05],[178.49725,-3.0935E-05],[178.50073,-2.8357E-05],[178.50422,-3.2998E-05],[178.5077,-2.9904E-05],[178.51118,-2.6811E-05],[178.51466,-3.1967E-05],[178.51814,-3.0935E-05],[178.52162,-3.042E-05],[178.5251,-2.9904E-05],[178.52859,-3.1967E-05],[178.53207,-2.5264E-05],[178.53555,-2.0624E-05],[178.53903,-2.9904E-05],[178.54251,-3.4029E-05],[178.54599,-3.0935E-05],[178.54947,-2.8873E-05],[178.55295,-3.0935E-05]]}
-{"quant":[178.812,-3.0403E-05],"mems":[[178.7131,-2.8357E-05],[178.71658,-2.9904E-05],[178.72006,-3.2998E-05],[178.72354,-2.4233E-05],[178.72702,-2.8357E-05],[178.7305,-3.506E-05],[178.73398,-3.506E-05],[178.73747,-3.4029E-05],[178.74095,-2.8873E-05],[178.74443,-2.7842E-05],[178.74791,-2.8873E-05],[178.75139,-3.0935E-05],[178.75487,-3.0935E-05],[178.75835,-3.1451E-05],[178.76183,-3.042E-05],[178.76532,-2.6811E-05],[178.7688,-2.8357E-05],[178.77228,-3.1451E-05],[178.77576,-3.4544E-05],[178.77924,-2.9904E-05],[178.78272,-2.9389E-05],[178.7862,-3.3513E-05],[178.78969,-3.5576E-05],[178.79317,-3.6091E-05],[178.79665,-3.1451E-05],[178.80013,-3.1967E-05],[178.80361,-2.7326E-05],[178.80709,-2.4748E-05],[178.81057,-2.7842E-05],[178.81405,-3.042E-05],[178.81754,-3.506E-05],[178.82102,-3.2482E-05],[178.8245,-3.0935E-05],[178.82798,-3.1967E-05],[178.83146,-3.4544E-05],[178.83494,-3.2998E-05],[178.83842,-3.0935E-05],[178.84191,-3.0935E-05],[178.84539,-2.4748E-05],[178.84887,-2.6811E-05],[178.85235,-2.8873E-05],[178.85583,-2.9389E-05],[178.85931,-3.0935E-05],[178.86279,-2.4233E-05],[178.86627,-2.6295E-05],[178.86976,-3.5576E-05],[178.87324,-3.1967E-05],[178.87672,-2.8357E-05],[178.8802,-3.2482E-05],[178.88368,-3.0935E-05],[178.88716,-2.9389E-05],[178.89064,-2.9904E-05],[178.89413,-3.0935E-05],[178.89761,-3.3513E-05],[178.90109,-3.1451E-05],[178.90457,-2.9904E-05],[178.90805,-2.8357E-05],[178.91153,-2.8357E-05],[178.91501,-2.9389E-05],[178.91849,-2.8873E-05],[178.92198,-3.0935E-05],[178.92546,-2.8873E-05],[178.92894,-2.9904E-05],[178.93242,-3.2482E-05],[178.9359,-3.0935E-05],[178.93938,-2.7842E-05],[178.94286,-2.7326E-05],[178.94635,-2.9389E-05],[178.94983,-3.1967E-05],[178.95331,-3.506E-05],[178.95679,-3.042E-05],[178.96027,-3.1451E-05],[178.96375,-3.1451E-05],[178.96723,-2.6811E-05],[178.97071,-3.1451E-05],[178.9742,-3.042E-05],[178.97768,-3.042E-05],[178.98116,-3.2482E-05],[178.98464,-2.8357E-05],[178.98812,-2.9904E-05],[178.9916,-3.506E-05],[178.99508,-3.7122E-05],[178.99857,-3.2998E-05],[179.00205,-2.9389E-05],[179.00553,-2.7326E-05],[179.00901,-2.4748E-05],[179.01249,-3.1451E-05]]}
-{"quant":[179.447,-3.0695E-05],"mems":[[179.35018,-2.5779E-05],[179.35366,-2.4748E-05],[179.35714,-2.6295E-05],[179.36062,-2.8357E-05],[179.36411,-2.3202E-05],[179.36759,-2.3717E-05],[179.37107,-3.042E-05],[179.37455,-3.4544E-05],[179.37803,-3.3513E-05],[179.38151,-3.1967E-05],[179.38499,-2.8357E-05],[179.38847,-2.8873E-05],[179.39196,-3.2482E-05],[179.39544,-3.1451E-05],[179.39892,-2.9389E-05],[179.4024,-2.7842E-05],[179.40588,-3.042E-05],[179.40936,-3.1451E-05],[179.41284,-3.1451E-05],[179.41633,-2.9904E-05],[179.41981,-3.1967E-05],[179.42329,-3.2482E-05],[179.42677,-2.5779E-05],[179.43025,-2.7842E-05],[179.43373,-2.9389E-05],[179.43721,-2.8873E-05],[179.44069,-2.8357E-05],[179.44418,-3.042E-05],[179.44766,-3.3513E-05],[179.45114,-3.042E-05],[179.45462,-3.1967E-05],[179.4581,-3.2998E-05],[179.46158,-3.3513E-05],[179.46506,-3.042E-05],[179.46855,-2.4233E-05],[179.47203,-2.4748E-05],[179.47551,-3.042E-05],[179.47899,-3.8154E-05],[179.48247,-3.4029E-05],[179.48595,-3.2998E-05],[179.48943,-3.4544E-05],[179.49291,-3.042E-05],[179.4964,-3.4029E-05],[179.49988,-3.2482E-05],[179.50336,-3.1451E-05],[179.50684,-3.1451E-05],[179.51032,-2.6295E-05],[179.5138,-2.5264E-05],[179.51728,-2.8357E-05],[179.52077,-3.2482E-05],[179.52425,-3.1451E-05],[179.52773,-2.8873E-05],[179.53121,-2.9904E-05],[179.53469,-3.1451E-05],[179.53817,-2.6811E-05],[179.54165,-2.6811E-05],[179.54513,-3.1451E-05],[179.54862,-2.9904E-05],[179.5521,-3.0935E-05],[179.55558,-2.9904E-05],[179.55906,-3.0935E-05],[179.56254,-2.9904E-05],[179.56602,-2.5264E-05],[179.5695,-3.042E-05],[179.57299,-3.1451E-05],[179.57647,-2.6811E-05],[179.57995,-2.8357E-05],[179.58343,-3.3513E-05],[179.58691,-3.1451E-05],[179.59039,-3.0935E-05],[179.59387,-3.042E-05],[179.59735,-2.8357E-05],[179.60084,-3.6091E-05],[179.60432,-3.7122E-05],[179.6078,-2.7326E-05],[179.61128,-2.8873E-05],[179.61476,-3.0935E-05],[179.61824,-2.7326E-05],[179.62172,-2.8357E-05],[179.62521,-2.9389E-05],[179.62869,-2.9389E-05],[179.63217,-2.8873E-05],[179.63565,-2.7326E-05],[179.63913,-3.2482E-05],[179.64261,-3.5576E-05],[179.64609,-3.2998E-05],[179.64957,-3.0935E-05]]}
-{"quant":[179.918,-3.0331E-05],"mems":[[179.82016,-3.6091E-05],[179.82364,-2.9389E-05],[179.82712,-3.1451E-05],[179.8306,-3.506E-05],[179.83409,-2.9904E-05],[179.83757,-2.5779E-05],[179.84105,-2.9389E-05],[179.84453,-3.4544E-05],[179.84801,-2.8357E-05],[179.85149,-2.9389E-05],[179.85497,-2.9904E-05],[179.85845,-2.6811E-05],[179.86194,-3.1967E-05],[179.86542,-2.8357E-05],[179.8689,-2.9904E-05],[179.87238,-3.3513E-05],[179.87586,-2.6295E-05],[179.87934,-2.9389E-05],[179.88282,-3.2998E-05],[179.88631,-3.1967E-05],[179.88979,-3.1967E-05],[179.89327,-2.7326E-05],[179.89675,-2.8873E-05],[179.90023,-3.042E-05],[179.90371,-2.9904E-05],[179.90719,-2.9904E-05],[179.91067,-2.6811E-05],[179.91416,-2.7326E-05],[179.91764,-2.8357E-05],[179.92112,-2.9904E-05],[179.9246,-3.0935E-05],[179.92808,-2.9904E-05],[179.93156,-2.8873E-05],[179.93504,-2.7842E-05],[179.93853,-2.8357E-05],[179.94201,-2.9904E-05],[179.94549,-3.042E-05],[179.94897,-3.1967E-05],[179.95245,-3.4029E-05],[179.95593,-2.6295E-05],[179.95941,-2.7326E-05],[179.96289,-3.1967E-05],[179.96638,-3.042E-05],[179.96986,-3.1967E-05],[179.97334,-3.0935E-05],[179.97682,-3.0935E-05],[179.9803,-3.1451E-05],[179.98378,-3.1967E-05],[179.98726,-3.1967E-05],[179.99075,-3.042E-05],[179.99423,-3.0935E-05],[179.99771,-2.6811E-05],[180.00119,-2.6811E-05],[180.00467,-3.5576E-05],[180.00815,-3.506E-05],[180.01163,-2.7326E-05],[180.01511,-2.9389E-05],[180.0186,-2.9904E-05],[180.02208,-3.2482E-05],[180.02556,-3.4029E-05],[180.02904,-2.6811E-05],[180.03252,-3.042E-05],[180.036,-2.8357E-05],[180.03948,-2.1655E-05],[180.04297,-2.8357E-05],[180.04645,-2.9389E-05],[180.04993,-3.1451E-05],[180.05341,-2.8873E-05],[180.05689,-2.7842E-05],[180.06037,-3.0935E-05],[180.06385,-2.6295E-05],[180.06733,-2.5264E-05],[180.07082,-2.8873E-05],[180.0743,-3.042E-05],[180.07778,-2.9389E-05],[180.08126,-2.9389E-05],[180.08474,-2.9389E-05],[180.08822,-3.0935E-05],[180.0917,-3.1451E-05],[180.09519,-2.7842E-05],[180.09867,-2.8873E-05],[180.10215,-2.9389E-05],[180.10563,-3.1967E-05],[180.10911,-3.3513E-05],[180.11259,-2.7842E-05],[180.11607,-2.4748E-05],[180.11955,-2.5779E-05]]}
-{"quant":[180.403,-2.9801E-05],"mems":[[180.30407,-2.9904E-05],[180.30755,-3.1967E-05],[180.31103,-2.7326E-05],[180.31451,-2.7326E-05],[180.31799,-2.9389E-05],[180.32147,-2.6811E-05],[180.32495,-3.1967E-05],[180.32843,-3.1967E-05],[180.33192,-2.7842E-05],[180.3354,-3.1451E-05],[180.33888,-3.042E-05],[180.34236,-2.5779E-05],[180.34584,-2.7842E-05],[180.34932,-2.8357E-05],[180.3528,-3.042E-05],[180.35629,-2.8873E-05],[180.35977,-2.4748E-05],[180.36325,-2.9904E-05],[180.36673,-3.1967E-05],[180.37021,-2.7842E-05],[180.37369,-2.6811E-05],[180.37717,-2.7842E-05],[180.38065,-2.4748E-05],[180.38414,-2.5264E-05],[180.38762,-3.1451E-05],[180.3911,-3.1967E-05],[180.39458,-2.9389E-05],[180.39806,-3.2482E-05],[180.40154,-3.2998E-05],[180.40502,-2.9904E-05],[180.40851,-3.2998E-05],[180.41199,-3.0935E-05],[180.41547,-2.9389E-05],[180.41895,-3.1451E-05],[180.42243,-2.8357E-05],[180.42591,-2.8357E-05],[180.42939,-3.1451E-05],[180.43287,-2.7842E-05],[180.43636,-2.6295E-05],[180.43984,-3.0935E-05],[180.44332,-2.8357E-05],[180.4468,-2.7326E-05],[180.45028,-2.7842E-05],[180.45376,-2.7842E-05],[180.45724,-3.1451E-05],[180.46073,-2.8357E-05],[180.46421,-2.6811E-05],[180.46769,-3.042E-05],[180.47117,-3.1967E-05],[180.47465,-2.8357E-05],[180.47813,-2.7842E-05],[180.48161,-3.2998E-05],[180.48509,-3.042E-05],[180.48858,-2.9389E-05],[180.49206,-3.1451E-05],[180.49554,-3.2482E-05],[180.49902,-3.1451E-05],[180.5025,-2.8873E-05],[180.50598,-3.2482E-05],[180.50946,-3.0935E-05],[180.51295,-3.0935E-05],[180.51643,-2.8873E-05],[180.51991,-2.8357E-05],[180.52339,-3.2482E-05],[180.52687,-2.6811E-05],[180.53035,-2.8357E-05],[180.53383,-3.2482E-05],[180.53731,-2.7326E-05],[180.5408,-2.6811E-05],[180.54428,-2.7842E-05],[180.54776,-2.9389E-05],[180.55124,-3.042E-05],[180.55472,-3.0935E-05],[180.5582,-2.9389E-05],[180.56168,-2.5779E-05],[180.56517,-3.1967E-05],[180.56865,-3.2482E-05],[180.57213,-3.0935E-05],[180.57561,-3.042E-05],[180.57909,-2.8873E-05],[180.58257,-3.3513E-05],[180.58605,-2.8873E-05],[180.58953,-2.7842E-05],[180.59302,-2.7842E-05],[180.5965,-2.2686E-05],[180.59998,-2.6811E-05],[180.60346,-3.2482E-05]]}
-{"quant":[180.858,0.2436],"mems":[[180.79145,-3.3513E-05],[180.79493,-3.4029E-05],[180.79841,-3.1967E-05],[180.8019,-3.3513E-05],[180.80538,-3.0935E-05],[180.80886,-3.042E-05],[180.81234,-2.9389E-05],[180.81582,-2.6811E-05],[180.8193,-3.3513E-05],[180.82278,-3.3513E-05],[180.82627,-2.5264E-05],[180.82975,-2.3717E-05],[180.83323,-2.6295E-05],[180.83671,-3.0935E-05],[180.84019,-3.042E-05],[180.84367,-2.9904E-05],[180.84715,-3.2482E-05],[180.85063,-3.1967E-05],[180.85412,-3.3513E-05],[180.8576,-3.2998E-05],[180.86108,-3.1967E-05],[180.86456,-3.042E-05],[180.86804,-2.5779E-05],[180.87152,-2.6295E-05],[180.875,-3.042E-05],[180.87849,-3.1967E-05],[180.88197,-2.7326E-05],[180.88545,-2.3717E-05],[180.88893,-2.4233E-05],[180.89241,-2.7842E-05],[180.89589,-3.4029E-05],[180.89937,-3.2998E-05],[180.90285,-3.042E-05],[180.90634,-2.8873E-05],[180.90982,-2.6811E-05],[180.9133,-2.8357E-05],[180.91678,-3.0935E-05],[180.92026,-3.6607E-05],[180.92374,-3.506E-05],[180.92722,-3.1451E-05],[180.93071,-2.8357E-05],[180.93419,-2.7326E-05],[180.93767,-3.042E-05],[180.94115,-3.042E-05],[180.94463,-2.9904E-05],[180.94811,-2.8357E-05],[180.95159,-2.5779E-05],[180.95507,-2.7326E-05],[180.95856,-2.8357E-05],[180.96204,-2.8357E-05],[180.96552,-3.1451E-05],[180.969,-2.9904E-05],[180.97239,-3.2482E-05],[180.97578,-3.1451E-05],[180.97916,-2.8357E-05],[180.98255,-3.0935E-05],[180.98594,-2.7326E-05],[180.98933,-3.2998E-05],[180.99272,-3.4544E-05],[180.9961,-3.042E-05],[180.99949,-2.9904E-05],[181.00288,-2.5779E-05],[181.00627,-2.7326E-05],[181.00966,-2.7842E-05],[181.01304,-2.9904E-05],[181.01643,-3.2482E-05],[181.01982,-3.0935E-05],[181.02321,-3.1967E-05],[181.0266,-3.1451E-05],[181.02998,-3.1451E-05],[181.03337,-3.3513E-05],[181.03676,-3.1967E-05],[181.04015,-3.042E-05],[181.04354,-2.8357E-05],[181.04692,-2.7326E-05],[181.05031,-3.2998E-05],[181.0537,-3.1967E-05],[181.05709,-2.6295E-05],[181.06048,-2.8873E-05],[181.06386,-2.6295E-05],[181.06725,-2.7842E-05],[181.07064,-3.1451E-05],[181.07403,-2.6295E-05],[181.07742,-3.2482E-05],[181.0808,-2.9904E-05],[181.08419,-2.6295E-05],[181.08758,-3.042E-05],[181.09097,-3.042E-05]]}
-{"quant":[181.331,-2.9089E-05],"mems":[[181.23326,-3.042E-05],[181.23665,-2.7326E-05],[181.24004,-2.7842E-05],[181.24343,-3.1451E-05],[181.24682,-2.7842E-05],[181.2502,-2.7326E-05],[181.25359,-3.042E-05],[181.25698,-3.1451E-05],[181.26037,-3.0935E-05],[181.26376,-2.5264E-05],[181.26714,-2.8873E-05],[181.27053,-3.4029E-05],[181.27392,-3.3513E-05],[181.27731,-3.2482E-05],[181.2807,-2.6295E-05],[181.28408,-2.7326E-05],[181.28747,-3.4544E-05],[181.29086,-3.042E-05],[181.29425,-2.5264E-05],[181.29764,-2.8873E-05],[181.30102,-3.1451E-05],[181.30441,-3.2482E-05],[181.3078,-3.1967E-05],[181.31119,-2.6295E-05],[181.31458,-2.7326E-05],[181.31796,-2.6295E-05],[181.32135,-2.4233E-05],[181.32474,-2.7842E-05],[181.32813,-2.8357E-05],[181.33152,-2.6295E-05],[181.3349,-2.8357E-05],[181.33829,-3.2482E-05],[181.34168,-2.7326E-05],[181.34507,-2.7326E-05],[181.34846,-3.042E-05],[181.35184,-2.7842E-05],[181.35523,-2.8357E-05],[181.35862,-2.6295E-05],[181.36201,-2.7842E-05],[181.3654,-2.7326E-05],[181.36878,-3.0935E-05],[181.37217,-3.4029E-05],[181.37556,-2.9904E-05],[181.37895,-2.8357E-05],[181.38234,-2.6295E-05],[181.38572,-2.9389E-05],[181.38911,-3.042E-05],[181.3925,-2.6811E-05],[181.39589,-2.8873E-05],[181.39928,-2.5264E-05],[181.40266,-2.3717E-05],[181.40605,-3.042E-05],[181.40944,-2.9904E-05],[181.41283,-3.042E-05],[181.41622,-3.506E-05],[181.4196,-2.8873E-05],[181.42299,-2.9389E-05],[181.42638,-3.1451E-05],[181.42977,-2.9904E-05],[181.43316,-3.2482E-05],[181.43654,-2.7842E-05],[181.43993,-2.7326E-05],[181.44332,-3.0935E-05],[181.44671,-2.8873E-05],[181.4501,-2.9389E-05],[181.45348,-2.9904E-05],[181.45687,-3.0935E-05],[181.46026,-2.9904E-05],[181.46365,-2.8873E-05],[181.46704,-3.0935E-05],[181.47042,-2.9389E-05],[181.47381,-3.1967E-05],[181.4772,-3.4029E-05],[181.48059,-2.9389E-05],[181.48398,-2.8357E-05],[181.48736,-3.4029E-05],[181.49075,-3.4544E-05],[181.49414,-3.1451E-05],[181.49753,-3.0935E-05],[181.50092,-2.5264E-05],[181.5043,-2.8873E-05],[181.50769,-3.4029E-05],[181.51108,-3.1967E-05],[181.51447,-3.3513E-05],[181.51786,-3.042E-05],[181.52124,-3.042E-05],[181.52463,-3.0935E-05],[181.52802,-3.4544E-05],[181.53141,-3.8154E-05]]}
-{"quant":[182.058,-2.9921E-05],"mems":[[181.9583,-3.2998E-05],[181.96168,-2.9389E-05],[181.96507,-2.8873E-05],[181.96846,-3.0935E-05],[181.97185,-2.4748E-05],[181.97524,-3.1967E-05],[181.97862,-3.0935E-05],[181.98201,-2.6295E-05],[181.9854,-2.7326E-05],[181.98879,-2.5779E-05],[181.99218,-2.4233E-05],[181.99556,-2.6811E-05],[181.99895,-3.042E-05],[182.00234,-2.7842E-05],[182.00573,-2.9904E-05],[182.00912,-2.6811E-05],[182.0125,-2.6811E-05],[182.01589,-3.1451E-05],[182.01928,-3.3513E-05],[182.02267,-3.4544E-05],[182.02606,-2.9904E-05],[182.02944,-3.2482E-05],[182.03283,-3.2998E-05],[182.03622,-2.9904E-05],[182.03961,-3.3513E-05],[182.043,-3.1967E-05],[182.04638,-2.4233E-05],[182.04977,-2.4233E-05],[182.05316,-3.1451E-05],[182.05655,-3.042E-05],[182.05994,-2.7842E-05],[182.06332,-2.6811E-05],[182.06671,-2.5779E-05],[182.0701,-2.7326E-05],[182.07349,-2.7842E-05],[182.07688,-2.6811E-05],[182.08026,-2.9904E-05],[182.08365,-2.9389E-05],[182.08704,-2.9904E-05],[182.09043,-3.2482E-05],[182.09382,-2.7842E-05],[182.0972,-3.1967E-05],[182.10059,-3.4029E-05],[182.10398,-2.8357E-05],[182.10737,-2.9389E-05],[182.11076,-3.2482E-05],[182.11414,-3.2998E-05],[182.11753,-3.1967E-05],[182.12092,-3.1451E-05],[182.12431,-3.2998E-05],[182.1277,-3.1967E-05],[182.13108,-2.8357E-05],[182.13447,-2.6811E-05],[182.13786,-3.042E-05],[182.14125,-3.1451E-05],[182.14464,-2.7326E-05],[182.14802,-2.7326E-05],[182.15141,-2.9904E-05],[182.1548,-3.2482E-05],[182.15819,-3.4029E-05],[182.16158,-3.3513E-05],[182.16496,-2.9904E-05],[182.16835,-2.7326E-05],[182.17174,-2.7326E-05],[182.17513,-3.042E-05],[182.17852,-3.042E-05],[182.1819,-2.7842E-05],[182.18529,-3.1451E-05],[182.18868,-3.2482E-05],[182.19207,-2.8873E-05],[182.19546,-2.9904E-05],[182.19884,-3.0935E-05],[182.20223,-3.0935E-05],[182.20562,-3.042E-05],[182.20901,-2.7842E-05],[182.2124,-2.7326E-05],[182.21578,-2.9389E-05],[182.21917,-2.7842E-05],[182.22256,-2.6811E-05],[182.22595,-3.2482E-05],[182.22934,-3.042E-05],[182.23272,-2.4748E-05],[182.23611,-2.7842E-05],[182.2395,-3.0935E-05],[182.24289,-3.042E-05],[182.24628,-2.6811E-05],[182.24966,-2.8357E-05],[182.25305,-2.7326E-05],[182.25644,-2.6295E-05],[182.25983,-2.7326E-05]]}
-{"quant":[182.534,-2.9455E-05],"mems":[[182.436,-3.1451E-05],[182.43939,-2.8357E-05],[182.44278,-3.1451E-05],[182.44617,-3.1967E-05],[182.44956,-3.1451E-05],[182.45294,-2.9389E-05],[182.45633,-2.7326E-05],[182.45972,-2.8357E-05],[182.46311,-2.8357E-05],[182.4665,-2.4748E-05],[182.46988,-2.4748E-05],[182.47327,-3.0935E-05],[182.47666,-2.8357E-05],[182.48005,-2.7842E-05],[182.48344,-2.9389E-05],[182.48682,-2.7842E-05],[182.49021,-2.9904E-05],[182.4936,-2.6811E-05],[182.49699,-2.7842E-05],[182.50038,-3.0935E-05],[182.50376,-2.5779E-05],[182.50715,-2.6295E-05],[182.51054,-3.1451E-05],[182.51393,-3.2482E-05],[182.51732,-3.2998E-05],[182.5207,-3.1451E-05],[182.52409,-3.0935E-05],[182.52748,-3.1451E-05],[182.53087,-3.1967E-05],[182.53426,-3.2998E-05],[182.53764,-2.8357E-05],[182.54103,-2.6295E-05],[182.54442,-2.8873E-05],[182.54781,-2.5264E-05],[182.5512,-3.042E-05],[182.55458,-3.2998E-05],[182.55797,-2.6811E-05],[182.56136,-3.0935E-05],[182.56475,-3.0935E-05],[182.56814,-2.8357E-05],[182.57152,-3.1967E-05],[182.57491,-2.9904E-05],[182.5783,-2.8357E-05],[182.58169,-2.8357E-05],[182.58508,-2.7326E-05],[182.58846,-2.7842E-05],[182.59185,-3.1967E-05],[182.59524,-3.4029E-05],[182.59863,-2.9904E-05],[182.60202,-2.8357E-05],[182.6054,-2.4748E-05],[182.60879,-2.8873E-05],[182.61218,-3.3513E-05],[182.61557,-3.0935E-05],[182.61896,-3.1451E-05],[182.62234,-2.7842E-05],[182.62573,-2.8873E-05],[182.62912,-3.1967E-05],[182.63251,-2.8357E-05],[182.6359,-2.6295E-05],[182.63928,-2.7326E-05],[182.64267,-2.8357E-05],[182.64606,-3.042E-05],[182.64945,-3.2482E-05],[182.65284,-3.3513E-05],[182.65622,-3.3513E-05],[182.65961,-3.2998E-05],[182.663,-3.1967E-05],[182.66639,-2.7326E-05],[182.66978,-2.8357E-05],[182.67316,-3.042E-05],[182.67655,-2.7842E-05],[182.67994,-3.1451E-05],[182.68333,-2.8357E-05],[182.68672,-2.8357E-05],[182.6901,-3.5576E-05],[182.69349,-3.4029E-05],[182.69688,-3.042E-05],[182.70027,-2.6811E-05],[182.70366,-2.6811E-05],[182.70704,-3.2998E-05],[182.71043,-2.9904E-05],[182.71382,-2.7326E-05],[182.71721,-3.3513E-05],[182.7206,-3.0935E-05],[182.72398,-2.8873E-05],[182.72737,-2.9389E-05],[182.73076,-2.7842E-05],[182.73415,-3.042E-05]]}
-{"quant":[183.031,-3.0436E-05],"mems":[[182.93404,-2.9389E-05],[182.93743,-2.8357E-05],[182.94082,-2.9389E-05],[182.9442,-3.4029E-05],[182.94759,-3.7122E-05],[182.95098,-3.6091E-05],[182.95437,-2.7326E-05],[182.95776,-2.7842E-05],[182.96114,-3.1451E-05],[182.96453,-2.9904E-05],[182.96792,-3.2998E-05],[182.97131,-3.0935E-05],[182.9747,-2.9389E-05],[182.97808,-2.9389E-05],[182.98147,-2.8873E-05],[182.98486,-2.9389E-05],[182.98825,-2.7842E-05],[182.99164,-3.042E-05],[182.99502,-3.2482E-05],[182.99841,-3.1967E-05],[183.0018,-3.0935E-05],[183.00519,-2.7326E-05],[183.00858,-2.9904E-05],[183.01196,-3.0935E-05],[183.01535,-2.7326E-05],[183.01874,-3.042E-05],[183.02213,-2.8357E-05],[183.02552,-2.6811E-05],[183.0289,-3.1451E-05],[183.03229,-2.9389E-05],[183.03568,-2.9904E-05],[183.03907,-2.8873E-05],[183.04246,-2.8873E-05],[183.04584,-3.3513E-05],[183.04923,-3.1967E-05],[183.05262,-2.9389E-05],[183.05601,-2.6811E-05],[183.0594,-2.6811E-05],[183.06278,-3.1967E-05],[183.06617,-3.0935E-05],[183.06956,-2.7326E-05],[183.07295,-2.7326E-05],[183.07634,-2.8357E-05],[183.07972,-3.4544E-05],[183.08311,-3.3513E-05],[183.0865,-2.9904E-05],[183.08989,-3.2998E-05],[183.09328,-3.2482E-05],[183.09666,-3.0935E-05],[183.10005,-2.9389E-05],[183.10344,-3.2998E-05],[183.10683,-3.0935E-05],[183.11022,-2.8357E-05],[183.1136,-3.3513E-05],[183.11699,-3.1451E-05],[183.12038,-2.9904E-05],[183.12377,-3.2482E-05],[183.12716,-3.4029E-05],[183.13054,-2.7842E-05],[183.13393,-2.6811E-05],[183.13732,-3.0935E-05],[183.14071,-3.0935E-05],[183.1441,-3.0935E-05],[183.14748,-2.9904E-05],[183.15087,-3.042E-05],[183.15426,-2.4748E-05],[183.15765,-2.217E-05],[183.16104,-2.7326E-05],[183.16442,-2.6811E-05],[183.16781,-2.5779E-05],[183.1712,-3.042E-05],[183.17459,-3.506E-05],[183.17798,-3.2482E-05],[183.18136,-2.8873E-05],[183.18475,-3.1451E-05],[183.18814,-3.2998E-05],[183.19153,-3.1967E-05],[183.19492,-2.7842E-05],[183.1983,-2.6811E-05],[183.20169,-2.9389E-05],[183.20508,-2.6811E-05],[183.20847,-2.8357E-05],[183.21186,-2.8357E-05],[183.21524,-2.6811E-05],[183.21863,-2.9904E-05],[183.22202,-3.2998E-05],[183.22541,-3.4029E-05],[183.2288,-3.042E-05],[183.23218,-2.8357E-05]]}
-{"quant":[183.506,0.33202],"mems":[[183.40836,-2.9389E-05],[183.41175,-3.1451E-05],[183.41514,-2.7326E-05],[183.41852,-2.5779E-05],[183.42191,-2.5264E-05],[183.4253,-2.7326E-05],[183.42869,-3.1967E-05],[183.43208,-3.1967E-05],[183.43546,-3.1967E-05],[183.43885,-3.6091E-05],[183.44224,-3.1451E-05],[183.44563,-2.7326E-05],[183.44902,-2.9389E-05],[183.4524,-2.8357E-05],[183.45579,-3.1451E-05],[183.45918,-3.6091E-05],[183.46257,-3.0935E-05],[183.46596,-2.7326E-05],[183.46934,-3.042E-05],[183.47273,-2.7842E-05],[183.47612,-2.8357E-05],[183.47951,-3.1967E-05],[183.4829,-3.0935E-05],[183.48628,-3.0935E-05],[183.48967,-2.7842E-05],[183.49306,-3.042E-05],[183.49645,-3.6091E-05],[183.49984,-3.6091E-05],[183.50322,-3.6607E-05],[183.50661,-3.042E-05],[183.51,-2.6295E-05],[183.51352,-2.6295E-05],[183.51703,-2.6811E-05],[183.52055,-3.3513E-05],[183.52407,-3.1967E-05],[183.52759,-3.0935E-05],[183.5311,-3.2482E-05],[183.53462,-2.9389E-05],[183.53814,-3.1967E-05],[183.54166,-3.4029E-05],[183.54517,-3.042E-05],[183.54869,-2.7326E-05],[183.55221,-2.9904E-05],[183.55573,-3.1967E-05],[183.55924,-3.0935E-05],[183.56276,-2.9904E-05],[183.56628,-2.8873E-05],[183.56979,-2.6295E-05],[183.57331,-2.8357E-05],[183.57683,-3.1967E-05],[183.58035,-2.7326E-05],[183.58386,-2.4748E-05],[183.58738,-2.4748E-05],[183.5909,-2.4748E-05],[183.59442,-2.6811E-05],[183.59793,-2.7326E-05],[183.60145,-2.9389E-05],[183.60497,-2.8873E-05],[183.60849,-2.6811E-05],[183.612,-2.9904E-05],[183.61552,-2.9389E-05],[183.61904,-3.042E-05],[183.62255,-3.4544E-05],[183.62607,-3.0935E-05],[183.62959,-2.8357E-05],[183.63311,-2.8357E-05],[183.63662,-2.8357E-05],[183.64014,-3.4029E-05],[183.64366,-3.0935E-05],[183.64718,-3.2482E-05],[183.65069,-3.1451E-05],[183.65421,-2.8873E-05],[183.65773,-3.6607E-05],[183.66125,-3.1967E-05],[183.66476,-3.3513E-05],[183.66828,-3.506E-05],[183.6718,-2.7326E-05],[183.67531,-2.8357E-05],[183.67883,-2.8357E-05],[183.68235,-2.6295E-05],[183.68587,-2.6295E-05],[183.68938,-2.8873E-05],[183.6929,-2.9389E-05],[183.69642,-3.4544E-05],[183.69994,-3.6091E-05],[183.70345,-3.0935E-05],[183.70697,-3.4544E-05]]}
-{"quant":[183.964,-2.9851E-05],"mems":[[183.86525,-3.042E-05],[183.86877,-2.8873E-05],[183.87229,-2.8873E-05],[183.8758,-2.8873E-05],[183.87932,-2.7326E-05],[183.88284,-2.9904E-05],[183.88635,-3.1967E-05],[183.88987,-3.2482E-05],[183.89339,-2.9389E-05],[183.89691,-2.8873E-05],[183.90042,-3.3513E-05],[183.90394,-3.2482E-05],[183.90746,-3.2998E-05],[183.91098,-3.0935E-05],[183.91449,-2.6295E-05],[183.91801,-2.7842E-05],[183.92153,-2.7326E-05],[183.92505,-2.8873E-05],[183.92856,-3.0935E-05],[183.93208,-2.8873E-05],[183.9356,-2.6295E-05],[183.93911,-2.7842E-05],[183.94263,-3.0935E-05],[183.94615,-2.6811E-05],[183.94967,-2.7842E-05],[183.95318,-3.1451E-05],[183.9567,-3.0935E-05],[183.96022,-3.1967E-05],[183.96374,-3.042E-05],[183.96725,-3.2998E-05],[183.97077,-3.0935E-05],[183.97429,-2.6295E-05],[183.97781,-2.7326E-05],[183.98132,-2.7842E-05],[183.98484,-3.1451E-05],[183.98836,-3.1451E-05],[183.99187,-2.8357E-05],[183.99539,-3.1967E-05],[183.99891,-3.2482E-05],[184.00243,-2.7326E-05],[184.00594,-2.7842E-05],[184.00946,-3.042E-05],[184.01298,-3.042E-05],[184.0165,-2.8357E-05],[184.02001,-2.7326E-05],[184.02353,-2.9389E-05],[184.02705,-2.7326E-05],[184.03057,-3.0935E-05],[184.03408,-3.4029E-05],[184.0376,-2.7326E-05],[184.04112,-2.6811E-05],[184.04463,-2.8873E-05],[184.04815,-2.9904E-05],[184.05167,-3.3513E-05],[184.05519,-3.1451E-05],[184.0587,-3.042E-05],[184.06222,-3.1967E-05],[184.06574,-3.0935E-05],[184.06926,-2.8357E-05],[184.07277,-2.6811E-05],[184.07629,-2.5779E-05],[184.07981,-2.9904E-05],[184.08333,-3.3513E-05],[184.08684,-3.2482E-05],[184.09036,-3.2482E-05],[184.09388,-2.7326E-05],[184.09739,-2.8357E-05],[184.10091,-2.7842E-05],[184.10443,-2.4233E-05],[184.10795,-2.8873E-05],[184.11146,-2.8357E-05],[184.11498,-2.5779E-05],[184.1185,-2.9904E-05],[184.12202,-3.1967E-05],[184.12553,-3.1451E-05],[184.12905,-2.9904E-05],[184.13257,-2.8873E-05],[184.13609,-3.042E-05],[184.1396,-2.4748E-05],[184.14312,-1.8561E-05],[184.14664,-2.7326E-05],[184.15015,-3.2998E-05],[184.15367,-3.0935E-05],[184.15719,-2.9389E-05],[184.16071,-2.7842E-05],[184.16422,-2.9389E-05]]}
-{"quant":[184.609,-2.946E-05],"mems":[[184.51244,-3.0935E-05],[184.51596,-3.0935E-05],[184.51947,-2.8873E-05],[184.52299,-2.7326E-05],[184.52651,-2.7842E-05],[184.53003,-2.5264E-05],[184.53354,-2.6811E-05],[184.53706,-2.9389E-05],[184.54058,-2.9904E-05],[184.5441,-3.3513E-05],[184.54761,-2.5779E-05],[184.55113,-2.3202E-05],[184.55465,-2.8357E-05],[184.55817,-2.4748E-05],[184.56168,-2.6295E-05],[184.5652,-2.6295E-05],[184.56872,-2.7842E-05],[184.57223,-2.9904E-05],[184.57575,-3.0935E-05],[184.57927,-3.3513E-05],[184.58279,-3.1967E-05],[184.5863,-3.1451E-05],[184.58982,-2.5779E-05],[184.59334,-2.3202E-05],[184.59686,-2.6295E-05],[184.60037,-2.6295E-05],[184.60389,-3.042E-05],[184.60741,-3.0935E-05],[184.61093,-3.0935E-05],[184.61444,-3.3513E-05],[184.61796,-3.4029E-05],[184.62148,-2.9389E-05],[184.62499,-2.7842E-05],[184.62851,-3.1451E-05],[184.63203,-2.7326E-05],[184.63555,-2.7326E-05],[184.63906,-2.9904E-05],[184.64258,-2.9904E-05],[184.6461,-2.7842E-05],[184.64962,-2.6811E-05],[184.65313,-3.0935E-05],[184.65665,-2.9389E-05],[184.66017,-2.8873E-05],[184.66369,-2.8357E-05],[184.6672,-2.7842E-05],[184.67072,-3.1967E-05],[184.67424,-3.1451E-05],[184.67775,-3.2998E-05],[184.68127,-2.9904E-05],[184.68479,-2.5779E-05],[184.68831,-2.9904E-05],[184.69182,-2.7842E-05],[184.69534,-2.7842E-05],[184.69886,-3.0935E-05],[184.70238,-2.8873E-05],[184.70589,-2.8357E-05],[184.70941,-2.6811E-05],[184.71293,-2.8873E-05],[184.71645,-2.8357E-05],[184.71996,-2.4748E-05],[184.72348,-2.8357E-05],[184.727,-3.042E-05],[184.73051,-2.9389E-05],[184.73403,-2.6295E-05],[184.73755,-3.0935E-05],[184.74107,-3.2482E-05],[184.74458,-2.5264E-05],[184.7481,-2.8357E-05],[184.75162,-2.9904E-05],[184.75514,-3.0935E-05],[184.75865,-2.9904E-05],[184.76217,-3.0935E-05],[184.76569,-3.1967E-05],[184.76921,-2.7842E-05],[184.77272,-3.042E-05],[184.77624,-2.7326E-05],[184.77976,-2.6295E-05],[184.78327,-2.8873E-05],[184.78679,-2.7842E-05],[184.79031,-2.4748E-05],[184.79383,-2.1139E-05],[184.79734,-2.6295E-05],[184.80086,-2.8873E-05],[184.80438,-3.2482E-05],[184.8079,-3.2482E-05],[184.81141,-2.8873E-05]]}
-{"quant":[185.078,-2.9784E-05],"mems":[[184.98025,-2.6811E-05],[184.98376,-3.042E-05],[184.98728,-3.9185E-05],[184.9908,-3.1967E-05],[184.99431,-2.9904E-05],[184.99783,-2.8873E-05],[185.00135,-2.7842E-05],[185.00487,-3.1451E-05],[185.00838,-3.1967E-05],[185.0119,-3.4029E-05],[185.01542,-3.2998E-05],[185.01894,-3.4544E-05],[185.02245,-3.3513E-05],[185.02597,-2.9389E-05],[185.02949,-3.4544E-05],[185.03301,-3.4544E-05],[185.03652,-2.8873E-05],[185.04004,-2.5264E-05],[185.04356,-2.9389E-05],[185.04707,-3.1967E-05],[185.05059,-2.9389E-05],[185.05411,-2.7842E-05],[185.05763,-2.5779E-05],[185.06114,-2.8873E-05],[185.06466,-2.8357E-05],[185.06818,-2.6811E-05],[185.0717,-3.042E-05],[185.07521,-3.2998E-05],[185.07873,-3.042E-05],[185.08225,-2.9904E-05],[185.08577,-3.0935E-05],[185.08928,-2.7326E-05],[185.0928,-3.2998E-05],[185.09632,-3.4544E-05],[185.09983,-2.8357E-05],[185.10335,-3.0935E-05],[185.10687,-3.2482E-05],[185.11039,-3.4544E-05],[185.1139,-3.1967E-05],[185.11742,-2.7842E-05],[185.12094,-2.8873E-05],[185.12446,-2.8357E-05],[185.12797,-2.7326E-05],[185.13149,-3.042E-05],[185.13501,-3.3513E-05],[185.13853,-2.7326E-05],[185.14204,-2.4748E-05],[185.14556,-2.7326E-05],[185.14908,-2.9389E-05],[185.15259,-2.9389E-05],[185.15611,-2.9389E-05],[185.15963,-2.9904E-05],[185.16315,-2.6295E-05],[185.16666,-3.042E-05],[185.17018,-3.042E-05],[185.1737,-3.042E-05],[185.17722,-2.9389E-05],[185.18073,-2.8357E-05],[185.18425,-3.2998E-05],[185.18777,-2.8357E-05],[185.19129,-2.5779E-05],[185.1948,-2.8873E-05],[185.19832,-3.3513E-05],[185.20184,-3.2998E-05],[185.20535,-2.2686E-05],[185.20887,-2.7326E-05],[185.21239,-3.2482E-05],[185.21591,-3.0935E-05],[185.21942,-3.4029E-05],[185.22294,-3.0935E-05],[185.22646,-2.6811E-05],[185.22998,-2.6295E-05],[185.23349,-2.8873E-05],[185.23701,-2.8357E-05],[185.24053,-2.9389E-05],[185.24405,-2.9389E-05],[185.24756,-2.8873E-05],[185.25108,-3.1451E-05],[185.2546,-2.7842E-05],[185.25811,-2.8357E-05],[185.26163,-2.8357E-05],[185.26515,-3.1451E-05],[185.26867,-3.1967E-05],[185.27218,-2.6811E-05],[185.2757,-3.4029E-05],[185.27922,-3.6607E-05]]}
-{"quant":[185.575,-3.1149E-05],"mems":[[185.47619,-3.042E-05],[185.47971,-3.042E-05],[185.48322,-2.9904E-05],[185.48674,-3.0935E-05],[185.49026,-2.7326E-05],[185.49378,-2.5264E-05],[185.49729,-2.8357E-05],[185.50081,-2.9389E-05],[185.50433,-2.7326E-05],[185.50785,-2.7326E-05],[185.51136,-3.042E-05],[185.51488,-3.1451E-05],[185.5184,-2.9904E-05],[185.52191,-3.4544E-05],[185.52543,-3.1967E-05],[185.52895,-2.8357E-05],[185.53247,-3.042E-05],[185.53598,-2.8357E-05],[185.5395,-2.9904E-05],[185.54302,-3.1967E-05],[185.54654,-3.4544E-05],[185.55005,-3.5576E-05],[185.55357,-3.1451E-05],[185.55709,-2.7842E-05],[185.56061,-3.042E-05],[185.56412,-3.4029E-05],[185.56764,-3.0935E-05],[185.57116,-3.1967E-05],[185.57467,-3.506E-05],[185.57819,-3.1451E-05],[185.58171,-2.9389E-05],[185.58523,-3.1451E-05],[185.58874,-3.042E-05],[185.59226,-2.7326E-05],[185.59578,-2.7842E-05],[185.5993,-3.4029E-05],[185.60281,-3.506E-05],[185.60633,-3.3513E-05],[185.60985,-2.7842E-05],[185.61337,-2.3717E-05],[185.61688,-3.1967E-05],[185.6204,-3.3513E-05],[185.62392,-3.6091E-05],[185.62743,-3.6091E-05],[185.63095,-2.8357E-05],[185.63447,-2.9389E-05],[185.63799,-3.0935E-05],[185.6415,-3.6091E-05],[185.64502,-4.1247E-05],[185.64854,-3.6091E-05],[185.65206,-3.042E-05],[185.65557,-2.9389E-05],[185.65909,-2.9904E-05],[185.66261,-2.8873E-05],[185.66613,-2.7326E-05],[185.66964,-2.9389E-05],[185.67316,-3.042E-05],[185.67668,-2.5779E-05],[185.68019,-2.7326E-05],[185.68371,-3.3513E-05],[185.68723,-3.0935E-05],[185.69075,-3.0935E-05],[185.69426,-2.9904E-05],[185.69778,-2.8357E-05],[185.7013,-3.4029E-05],[185.70482,-2.9389E-05],[185.70833,-2.6811E-05],[185.71185,-2.8873E-05],[185.71537,-2.8873E-05],[185.71889,-3.2998E-05],[185.7224,-2.9389E-05],[185.72592,-3.042E-05],[185.72944,-3.2998E-05],[185.73295,-2.7842E-05],[185.73647,-3.042E-05],[185.73999,-3.2998E-05],[185.74351,-3.3513E-05],[185.74702,-3.2482E-05],[185.75054,-2.8357E-05],[185.75406,-2.6811E-05],[185.75758,-2.7842E-05],[185.76109,-2.9904E-05],[185.76461,-3.3513E-05],[185.76813,-3.2998E-05],[185.77165,-3.2482E-05],[185.77516,-3.2998E-05]]}
-{"quant":[186.048,0.54008],"mems":[[186.01786,-3.506E-05],[186.02138,-3.1967E-05],[186.02489,-2.9904E-05],[186.02841,-3.4544E-05],[186.03193,-3.042E-05],[186.03545,-2.9389E-05],[186.03896,-3.4544E-05],[186.04248,-3.4029E-05],[186.046,-3.042E-05],[186.04951,-3.1967E-05],[186.05303,-3.2998E-05],[186.05655,-2.9389E-05],[186.06007,-2.9389E-05],[186.06358,-2.8357E-05],[186.0671,-2.7842E-05],[186.07062,-3.1451E-05],[186.07414,-3.2998E-05],[186.07765,-3.506E-05],[186.08117,-3.2998E-05],[186.08469,-2.9904E-05],[186.08821,-3.4544E-05],[186.09172,-3.5576E-05],[186.09524,-3.1451E-05],[186.09876,-2.7842E-05],[186.10227,-2.9904E-05],[186.10579,-3.1967E-05],[186.10931,-2.8873E-05],[186.11283,-3.2998E-05],[186.11634,-3.2482E-05],[186.11986,-2.7842E-05],[186.12338,-2.9904E-05],[186.1269,-3.2998E-05],[186.13041,-2.9904E-05],[186.13393,-3.2482E-05],[186.13745,-3.4029E-05],[186.14097,-2.9904E-05],[186.14448,-2.9389E-05],[186.148,-2.3202E-05],[186.15134,-2.6811E-05],[186.15468,-2.9904E-05],[186.15802,-2.5264E-05],[186.16135,-2.7842E-05],[186.16469,-2.7326E-05],[186.16803,-2.9389E-05],[186.17137,-3.1451E-05],[186.17471,-2.9389E-05],[186.17805,-2.7842E-05],[186.18139,-3.1451E-05],[186.18473,-3.1451E-05],[186.18806,-2.9904E-05],[186.1914,-3.6607E-05],[186.19474,-3.0935E-05],[186.19808,-2.7842E-05],[186.20142,-3.1967E-05],[186.20476,-2.7326E-05],[186.2081,-2.7842E-05],[186.21143,-3.0935E-05],[186.21477,-3.042E-05],[186.21811,-2.9389E-05],[186.22145,-2.7842E-05],[186.22479,-2.9904E-05],[186.22813,-2.9904E-05],[186.23147,-2.9904E-05],[186.23481,-3.6091E-05],[186.23814,-3.1967E-05],[186.24148,-2.6811E-05],[186.24482,-2.6811E-05],[186.24816,-3.042E-05],[186.2515,-3.6607E-05],[186.25484,-3.0935E-05],[186.25818,-3.0935E-05],[186.26151,-3.3513E-05],[186.26485,-2.9904E-05],[186.26819,-2.9389E-05],[186.27153,-2.8357E-05],[186.27487,-2.8357E-05],[186.27821,-2.8873E-05],[186.28155,-2.8357E-05],[186.28489,-2.8873E-05],[186.28822,-3.0935E-05],[186.29156,-3.1967E-05],[186.2949,-3.0935E-05],[186.29824,-2.9904E-05],[186.30158,-2.8357E-05],[186.30492,-2.7842E-05],[186.30826,-2.5779E-05],[186.31159,-2.6295E-05],[186.31493,-2.7326E-05]]}
-{"quant":[186.503,-3.1368E-05],"mems":[[186.40508,-3.042E-05],[186.40842,-2.8357E-05],[186.41175,-3.1451E-05],[186.41509,-2.3202E-05],[186.41843,-2.5264E-05],[186.42177,-3.0935E-05],[186.42511,-3.1967E-05],[186.42845,-3.0935E-05],[186.43179,-3.042E-05],[186.43513,-3.2482E-05],[186.43846,-3.0935E-05],[186.4418,-3.506E-05],[186.44514,-3.5576E-05],[186.44848,-3.2482E-05],[186.45182,-2.8357E-05],[186.45516,-2.5264E-05],[186.4585,-2.7326E-05],[186.46183,-2.8873E-05],[186.46517,-3.506E-05],[186.46851,-3.0935E-05],[186.47185,-2.4748E-05],[186.47519,-3.1451E-05],[186.47853,-2.9904E-05],[186.48187,-2.8357E-05],[186.48521,-2.9904E-05],[186.48854,-2.9389E-05],[186.49188,-3.2482E-05],[186.49522,-3.042E-05],[186.49856,-2.6811E-05],[186.5019,-2.8873E-05],[186.50524,-2.9389E-05],[186.50858,-3.2998E-05],[186.51191,-3.0935E-05],[186.51525,-2.7326E-05],[186.51859,-3.2482E-05],[186.52193,-3.4029E-05],[186.52527,-3.3513E-05],[186.52861,-3.042E-05],[186.53195,-2.7842E-05],[186.53529,-3.0935E-05],[186.53862,-3.042E-05],[186.54196,-3.042E-05],[186.5453,-3.1451E-05],[186.54864,-3.4544E-05],[186.55198,-3.3513E-05],[186.55532,-2.9904E-05],[186.55866,-2.9904E-05],[186.56199,-2.7326E-05],[186.56533,-3.4029E-05],[186.56867,-3.506E-05],[186.57201,-3.0935E-05],[186.57535,-3.6607E-05],[186.57869,-3.1967E-05],[186.58203,-2.8873E-05],[186.58537,-2.9904E-05],[186.5887,-2.8357E-05],[186.59204,-2.8873E-05],[186.59538,-2.7326E-05],[186.59872,-3.2482E-05],[186.60206,-3.6607E-05],[186.6054,-3.4029E-05],[186.60874,-3.042E-05],[186.61207,-2.6295E-05],[186.61541,-3.042E-05],[186.61875,-3.1451E-05],[186.62209,-2.8357E-05],[186.62543,-3.506E-05],[186.62877,-2.8357E-05],[186.63211,-2.4748E-05],[186.63545,-3.5576E-05],[186.63878,-3.7638E-05],[186.64212,-3.2482E-05],[186.64546,-2.9904E-05],[186.6488,-3.1967E-05],[186.65214,-2.9904E-05],[186.65548,-3.7122E-05],[186.65882,-3.6607E-05],[186.66215,-2.5779E-05],[186.66549,-3.042E-05],[186.66883,-2.9389E-05],[186.67217,-2.9904E-05],[186.67551,-3.4544E-05],[186.67885,-3.1967E-05],[186.68219,-3.1967E-05],[186.68553,-2.9904E-05],[186.68886,-3.042E-05],[186.6922,-3.2998E-05],[186.69554,-3.2482E-05],[186.69888,-2.9389E-05],[186.70222,-3.042E-05],[186.70556,-2.9389E-05]]}
-{"quant":[187.21,-3.1185E-05],"mems":[[187.11287,-3.0935E-05],[187.11621,-2.9904E-05],[187.11955,-2.7326E-05],[187.12289,-3.2482E-05],[187.12623,-2.7326E-05],[187.12957,-2.9389E-05],[187.13291,-3.2482E-05],[187.13625,-2.6295E-05],[187.13958,-3.2998E-05],[187.14292,-3.1967E-05],[187.14626,-2.9389E-05],[187.1496,-3.1451E-05],[187.15294,-2.5264E-05],[187.15628,-2.7326E-05],[187.15962,-3.0935E-05],[187.16295,-2.4233E-05],[187.16629,-2.4233E-05],[187.16963,-2.8873E-05],[187.17297,-2.5779E-05],[187.17631,-2.5779E-05],[187.17965,-3.042E-05],[187.18299,-3.1967E-05],[187.18633,-3.0935E-05],[187.18966,-3.042E-05],[187.193,-2.8873E-05],[187.19634,-3.042E-05],[187.19968,-3.3513E-05],[187.20302,-3.2482E-05],[187.20636,-3.0935E-05],[187.2097,-2.7842E-05],[187.21303,-2.7842E-05],[187.21637,-3.1967E-05],[187.21971,-3.2482E-05],[187.22305,-3.2482E-05],[187.22639,-3.3513E-05],[187.22973,-3.042E-05],[187.23307,-2.9389E-05],[187.23641,-3.6091E-05],[187.23974,-3.4029E-05],[187.24308,-2.8873E-05],[187.24642,-3.1451E-05],[187.24976,-2.7842E-05],[187.2531,-2.5264E-05],[187.25644,-3.042E-05],[187.25978,-3.4544E-05],[187.26311,-3.4029E-05],[187.26645,-3.0935E-05],[187.26979,-3.0935E-05],[187.27313,-2.9389E-05],[187.27647,-2.7326E-05],[187.27981,-2.9904E-05],[187.28315,-3.6091E-05],[187.28649,-3.6607E-05],[187.28982,-3.0935E-05],[187.29316,-2.8873E-05],[187.2965,-3.1967E-05],[187.29984,-3.2482E-05],[187.30318,-2.8873E-05],[187.30652,-3.0935E-05],[187.30986,-2.8357E-05],[187.31319,-3.2482E-05],[187.31653,-3.5576E-05],[187.31987,-2.9904E-05],[187.32321,-3.4029E-05],[187.32655,-3.1451E-05],[187.32989,-2.6811E-05],[187.33323,-2.8357E-05],[187.33657,-3.042E-05],[187.3399,-3.1967E-05],[187.34324,-3.0935E-05],[187.34658,-2.9904E-05],[187.34992,-2.6811E-05],[187.35326,-2.7842E-05],[187.3566,-3.8154E-05],[187.35994,-3.9185E-05],[187.36327,-3.0935E-05],[187.36661,-2.7842E-05],[187.36995,-2.7326E-05],[187.37329,-2.9389E-05],[187.37663,-3.1451E-05],[187.37997,-3.042E-05],[187.38331,-2.9904E-05],[187.38665,-2.5264E-05],[187.38998,-2.3202E-05],[187.39332,-3.2482E-05],[187.39666,-3.4029E-05],[187.4,-3.042E-05],[187.40334,-3.1967E-05],[187.40668,-2.6295E-05],[187.41002,-2.8873E-05]]}
-{"quant":[187.691,-3.027E-05],"mems":[[187.59364,-2.8357E-05],[187.59698,-2.5264E-05],[187.60032,-2.7842E-05],[187.60366,-3.0935E-05],[187.607,-3.0935E-05],[187.61034,-3.0935E-05],[187.61367,-3.1967E-05],[187.61701,-2.8873E-05],[187.62035,-2.6811E-05],[187.62369,-3.1451E-05],[187.62703,-3.3513E-05],[187.63037,-3.1967E-05],[187.63371,-2.8873E-05],[187.63705,-2.7842E-05],[187.64038,-3.0935E-05],[187.64372,-3.0935E-05],[187.64706,-3.4029E-05],[187.6504,-3.506E-05],[187.65374,-2.9904E-05],[187.65708,-2.8873E-05],[187.66042,-2.5779E-05],[187.66375,-2.7842E-05],[187.66709,-3.1967E-05],[187.67043,-3.3513E-05],[187.67377,-3.1967E-05],[187.67711,-2.5779E-05],[187.68045,-2.9389E-05],[187.68379,-3.0935E-05],[187.68713,-2.9904E-05],[187.69046,-3.0935E-05],[187.6938,-2.8357E-05],[187.69714,-2.9904E-05],[187.70048,-3.2482E-05],[187.70382,-2.9389E-05],[187.70716,-3.0935E-05],[187.7105,-2.9904E-05],[187.71383,-2.6295E-05],[187.71717,-2.9389E-05],[187.72051,-2.9389E-05],[187.72385,-2.9904E-05],[187.72719,-3.4544E-05],[187.73053,-3.2482E-05],[187.73387,-2.6295E-05],[187.73721,-2.9389E-05],[187.74054,-3.2482E-05],[187.74388,-3.042E-05],[187.74722,-3.042E-05],[187.75056,-2.9389E-05],[187.7539,-2.9389E-05],[187.75724,-3.042E-05],[187.76058,-3.3513E-05],[187.76391,-3.2998E-05],[187.76725,-2.9389E-05],[187.77059,-3.1967E-05],[187.77393,-3.0935E-05],[187.77727,-2.6811E-05],[187.78061,-3.1967E-05],[187.78395,-2.9904E-05],[187.78729,-2.7842E-05],[187.79062,-3.2998E-05],[187.79396,-2.8873E-05],[187.7973,-2.7842E-05],[187.80064,-2.8357E-05],[187.80398,-2.9389E-05],[187.80732,-3.042E-05],[187.81066,-2.6295E-05],[187.81399,-2.7326E-05],[187.81733,-2.9389E-05],[187.82067,-3.1967E-05],[187.82401,-3.042E-05],[187.82735,-2.7842E-05],[187.83069,-3.0935E-05],[187.83403,-2.6811E-05],[187.83737,-2.4748E-05],[187.8407,-3.4544E-05],[187.84404,-3.6091E-05],[187.84738,-2.7842E-05],[187.85072,-2.5779E-05],[187.85406,-2.8873E-05],[187.8574,-3.5576E-05],[187.86074,-3.2998E-05],[187.86407,-3.0935E-05],[187.86741,-3.2482E-05],[187.87075,-2.7842E-05],[187.87409,-2.7842E-05],[187.87743,-3.2998E-05],[187.88077,-3.4029E-05],[187.88411,-3.2482E-05],[187.88745,-3.2482E-05],[187.89078,-2.6811E-05],[187.89412,-2.4748E-05]]}
-{"quant":[188.17,-2.9638E-05],"mems":[[188.07107,-3.0935E-05],[188.07441,-3.2998E-05],[188.07775,-2.9904E-05],[188.08109,-2.9904E-05],[188.08443,-3.042E-05],[188.08777,-3.0935E-05],[188.0911,-3.042E-05],[188.09444,-3.042E-05],[188.09778,-2.8357E-05],[188.10112,-2.5264E-05],[188.10446,-2.4748E-05],[188.1078,-2.8357E-05],[188.11114,-3.2482E-05],[188.11447,-3.0935E-05],[188.11781,-3.1451E-05],[188.12115,-3.042E-05],[188.12449,-2.9389E-05],[188.12783,-3.6091E-05],[188.13117,-3.2998E-05],[188.13451,-2.8873E-05],[188.13785,-3.0935E-05],[188.14118,-2.8357E-05],[188.14452,-2.6295E-05],[188.14786,-2.5264E-05],[188.1512,-3.1451E-05],[188.15454,-3.042E-05],[188.15788,-2.8873E-05],[188.16122,-3.5576E-05],[188.16455,-2.7842E-05],[188.16789,-2.8357E-05],[188.17123,-3.0935E-05],[188.17457,-3.1451E-05],[188.17791,-2.8873E-05],[188.18125,-2.4748E-05],[188.18459,-3.042E-05],[188.18793,-2.6811E-05],[188.19126,-3.1451E-05],[188.1946,-3.2998E-05],[188.19794,-3.0935E-05],[188.20128,-3.2998E-05],[188.20462,-3.1967E-05],[188.20796,-3.1451E-05],[188.2113,-3.0935E-05],[188.21463,-3.4029E-05],[188.21797,-2.7842E-05],[188.22131,-2.7842E-05],[188.22465,-2.8357E-05],[188.22799,-2.6811E-05],[188.23133,-3.3513E-05],[188.23467,-3.1967E-05],[188.23801,-2.8873E-05],[188.24134,-2.8357E-05],[188.24468,-2.7326E-05],[188.24802,-2.9389E-05],[188.25136,-2.8357E-05],[188.2547,-2.7842E-05],[188.25804,-2.6295E-05],[188.26138,-2.6811E-05],[188.26471,-3.2998E-05],[188.26805,-2.9904E-05],[188.27139,-2.6295E-05],[188.27473,-2.5264E-05],[188.27807,-2.5264E-05],[188.28141,-2.7842E-05],[188.28475,-2.8357E-05],[188.28809,-3.1967E-05],[188.29142,-3.2482E-05],[188.29476,-3.2998E-05],[188.2981,-2.8357E-05],[188.30144,-2.8357E-05],[188.30478,-2.7326E-05],[188.30812,-2.5264E-05],[188.31146,-3.2482E-05],[188.31479,-2.6295E-05],[188.31813,-2.4233E-05],[188.32147,-2.6295E-05],[188.32481,-3.0935E-05],[188.32815,-3.4544E-05],[188.33149,-3.1451E-05],[188.33483,-3.2998E-05],[188.33817,-2.6811E-05],[188.3415,-2.4233E-05],[188.34484,-2.6295E-05],[188.34818,-3.2998E-05],[188.35152,-3.2998E-05],[188.35486,-2.5779E-05],[188.3582,-3.042E-05],[188.36154,-3.4544E-05],[188.36487,-3.2482E-05],[188.36821,-2.8873E-05],[188.37155,-2.9389E-05]]}
-{"quant":[188.642,0.88359],"mems":[[188.54516,-3.1451E-05],[188.5485,-2.9904E-05],[188.55184,-2.7842E-05],[188.55518,-2.5264E-05],[188.55852,-2.4233E-05],[188.56186,-2.9904E-05],[188.56519,-3.1967E-05],[188.56853,-2.7842E-05],[188.57187,-2.8873E-05],[188.57521,-2.8873E-05],[188.57855,-2.8357E-05],[188.58189,-3.4544E-05],[188.58523,-3.506E-05],[188.58857,-2.9389E-05],[188.5919,-2.7326E-05],[188.59524,-3.4029E-05],[188.59858,-3.7122E-05],[188.60192,-3.6091E-05],[188.60526,-3.1451E-05],[188.6086,-2.4233E-05],[188.61194,-2.9904E-05],[188.61527,-3.6607E-05],[188.61861,-3.6091E-05],[188.62195,-3.3513E-05],[188.62529,-2.6811E-05],[188.62863,-2.5264E-05],[188.63197,-3.2482E-05],[188.63531,-3.1451E-05],[188.63865,-2.9904E-05],[188.64198,-3.2998E-05],[188.64532,-3.042E-05],[188.64866,-2.8873E-05],[188.652,-2.7842E-05],[188.65545,-3.2482E-05],[188.65889,-3.3513E-05],[188.66234,-2.7326E-05],[188.66578,-2.7326E-05],[188.66923,-2.6811E-05],[188.67267,-2.8357E-05],[188.67612,-3.1451E-05],[188.67956,-3.1451E-05],[188.68301,-3.042E-05],[188.68645,-3.0935E-05],[188.6899,-2.9904E-05],[188.69334,-2.8357E-05],[188.69679,-3.042E-05],[188.70023,-3.042E-05],[188.70368,-3.0935E-05],[188.70713,-3.2482E-05],[188.71057,-3.1967E-05],[188.71402,-3.2482E-05],[188.71746,-3.4029E-05],[188.72091,-3.0935E-05],[188.72435,-2.8873E-05],[188.7278,-3.1451E-05],[188.73124,-2.8357E-05],[188.73469,-2.9389E-05],[188.73813,-3.1451E-05],[188.74158,-2.9389E-05],[188.74502,-2.9904E-05],[188.74847,-2.9904E-05],[188.75191,-2.9904E-05],[188.75536,-3.2482E-05],[188.75881,-3.2998E-05],[188.76225,-3.2482E-05],[188.7657,-3.2482E-05],[188.76914,-2.7326E-05],[188.77259,-2.8357E-05],[188.77603,-3.506E-05],[188.77948,-3.1967E-05],[188.78292,-3.1967E-05],[188.78637,-3.1967E-05],[188.78981,-2.7326E-05],[188.79326,-2.7842E-05],[188.7967,-2.9904E-05],[188.80015,-3.1967E-05],[188.80359,-3.2482E-05],[188.80704,-2.8357E-05],[188.81049,-2.7842E-05],[188.81393,-2.9389E-05],[188.81738,-2.9904E-05],[188.82082,-3.1451E-05],[188.82427,-3.0935E-05],[188.82771,-2.7326E-05],[188.83116,-2.9904E-05],[188.8346,-3.0935E-05],[188.83805,-3.042E-05],[188.84149,-2.8873E-05],[188.84494,-3.042E-05]]}
-{"quant":[189.112,-3.1399E-05],"mems":[[189.01376,-3.1451E-05],[189.01721,-2.7326E-05],[189.02065,-2.8357E-05],[189.0241,-2.8873E-05],[189.02754,-2.7326E-05],[189.03099,-2.5264E-05],[189.03443,-2.8357E-05],[189.03788,-3.042E-05],[189.04132,-3.1967E-05],[189.04477,-2.9389E-05],[189.04821,-2.0108E-05],[189.05166,-2.5779E-05],[189.0551,-3.5576E-05],[189.05855,-2.6295E-05],[189.06199,-2.2686E-05],[189.06544,-2.6811E-05],[189.06889,-2.7842E-05],[189.07233,-3.2998E-05],[189.07578,-3.506E-05],[189.07922,-3.506E-05],[189.08267,-3.1451E-05],[189.08611,-2.8873E-05],[189.08956,-2.8357E-05],[189.093,-2.9389E-05],[189.09645,-3.6091E-05],[189.09989,-3.4029E-05],[189.10334,-3.0935E-05],[189.10678,-3.042E-05],[189.11023,-2.8357E-05],[189.11367,-2.8873E-05],[189.11712,-2.8357E-05],[189.12057,-3.1967E-05],[189.12401,-3.4544E-05],[189.12746,-3.2482E-05],[189.1309,-3.506E-05],[189.13435,-3.1451E-05],[189.13779,-3.042E-05],[189.14124,-3.5576E-05],[189.14468,-3.0935E-05],[189.14813,-2.7842E-05],[189.15157,-3.042E-05],[189.15502,-3.042E-05],[189.15846,-3.2482E-05],[189.16191,-3.1451E-05],[189.16535,-2.7842E-05],[189.1688,-2.8873E-05],[189.17225,-3.042E-05],[189.17569,-3.1451E-05],[189.17914,-3.5576E-05],[189.18258,-3.7638E-05],[189.18603,-3.2482E-05],[189.18947,-2.6811E-05],[189.19292,-2.9904E-05],[189.19636,-3.3513E-05],[189.19981,-3.1967E-05],[189.20325,-3.042E-05],[189.2067,-3.042E-05],[189.21014,-3.042E-05],[189.21359,-3.1967E-05],[189.21703,-3.2998E-05],[189.22048,-3.1451E-05],[189.22393,-2.7842E-05],[189.22737,-2.7326E-05],[189.23082,-2.9904E-05],[189.23426,-3.042E-05],[189.23771,-3.3513E-05],[189.24115,-2.9904E-05],[189.2446,-3.042E-05],[189.24804,-3.1967E-05],[189.25149,-2.5264E-05],[189.25493,-3.0935E-05],[189.25838,-3.1967E-05],[189.26182,-3.0935E-05],[189.26527,-2.9389E-05],[189.26871,-2.3717E-05],[189.27216,-3.042E-05],[189.27561,-3.506E-05],[189.27905,-3.2482E-05],[189.2825,-2.7842E-05],[189.28594,-2.6811E-05],[189.28939,-2.8873E-05],[189.29283,-2.6811E-05],[189.29628,-3.042E-05],[189.29972,-3.2482E-05],[189.30317,-2.8357E-05],[189.30661,-2.7842E-05],[189.31006,-2.9389E-05],[189.3135,-2.6295E-05]]}
-{"quant":[189.765,-2.9715E-05],"mems":[[189.66837,-3.042E-05],[189.67182,-3.042E-05],[189.67526,-2.9389E-05],[189.67871,-3.0935E-05],[189.68215,-2.7842E-05],[189.6856,-2.6811E-05],[189.68905,-2.9389E-05],[189.69249,-2.9389E-05],[189.69594,-3.0935E-05],[189.69938,-3.1967E-05],[189.70283,-3.2998E-05],[189.70627,-3.3513E-05],[189.70972,-2.8357E-05],[189.71316,-2.8873E-05],[189.71661,-2.8873E-05],[189.72005,-2.7326E-05],[189.7235,-3.042E-05],[189.72694,-3.3513E-05],[189.73039,-3.2998E-05],[189.73383,-2.8873E-05],[189.73728,-2.8873E-05],[189.74073,-3.4029E-05],[189.74417,-3.506E-05],[189.74762,-3.1967E-05],[189.75106,-2.8873E-05],[189.75451,-3.1451E-05],[189.75795,-3.2998E-05],[189.7614,-2.6811E-05],[189.76484,-2.9904E-05],[189.76829,-3.2998E-05],[189.77173,-2.8873E-05],[189.77518,-2.9904E-05],[189.77862,-3.4029E-05],[189.78207,-3.1967E-05],[189.78551,-2.6295E-05],[189.78896,-2.4748E-05],[189.79241,-2.5779E-05],[189.79585,-3.042E-05],[189.7993,-3.1967E-05],[189.80274,-3.042E-05],[189.80619,-2.7842E-05],[189.80963,-2.3717E-05],[189.81308,-3.042E-05],[189.81652,-3.3513E-05],[189.81997,-3.1967E-05],[189.82341,-3.5576E-05],[189.82686,-2.6295E-05],[189.8303,-2.3717E-05],[189.83375,-2.8357E-05],[189.83719,-3.0935E-05],[189.84064,-3.5576E-05],[189.84409,-2.7842E-05],[189.84753,-2.7326E-05],[189.85098,-2.9904E-05],[189.85442,-2.7842E-05],[189.85787,-3.506E-05],[189.86131,-3.2998E-05],[189.86476,-2.6811E-05],[189.8682,-2.8357E-05],[189.87165,-2.5779E-05],[189.87509,-3.0935E-05],[189.87854,-3.0935E-05],[189.88198,-2.7842E-05],[189.88543,-3.2998E-05],[189.88887,-2.8357E-05],[189.89232,-2.5779E-05],[189.89577,-2.9904E-05],[189.89921,-3.0935E-05],[189.90266,-2.8873E-05],[189.9061,-2.7842E-05],[189.90955,-3.1451E-05],[189.91299,-3.1451E-05],[189.91644,-3.4029E-05],[189.91988,-3.2998E-05],[189.92333,-3.0935E-05],[189.92677,-3.2998E-05],[189.93022,-2.6811E-05],[189.93366,-2.9389E-05],[189.93711,-3.042E-05],[189.94055,-2.5779E-05],[189.944,-3.4544E-05],[189.94745,-2.8357E-05],[189.95089,-2.5779E-05],[189.95434,-3.4544E-05],[189.95778,-3.042E-05],[189.96123,-3.1967E-05],[189.96467,-3.2998E-05],[189.96812,-3.1967E-05]]}
-{"quant":[190.248,-2.9904E-05],"mems":[[190.15072,-2.7326E-05],[190.15417,-3.1967E-05],[190.15761,-3.6607E-05],[190.16106,-3.6091E-05],[190.1645,-3.0935E-05],[190.16795,-2.6811E-05],[190.17139,-2.4748E-05],[190.17484,-2.6811E-05],[190.17828,-3.0935E-05],[190.18173,-3.1451E-05],[190.18517,-2.9389E-05],[190.18862,-2.7842E-05],[190.19206,-2.7842E-05],[190.19551,-3.0935E-05],[190.19895,-3.0935E-05],[190.2024,-2.9389E-05],[190.20585,-2.6811E-05],[190.20929,-2.4233E-05],[190.21274,-2.6811E-05],[190.21618,-2.9904E-05],[190.21963,-3.2998E-05],[190.22307,-2.9389E-05],[190.22652,-2.7842E-05],[190.22996,-2.9389E-05],[190.23341,-2.9389E-05],[190.23685,-2.8357E-05],[190.2403,-2.5779E-05],[190.24374,-2.8357E-05],[190.24719,-2.8873E-05],[190.25063,-2.7842E-05],[190.25408,-3.1967E-05],[190.25753,-3.6091E-05],[190.26097,-3.2998E-05],[190.26442,-2.7842E-05],[190.26786,-2.8873E-05],[190.27131,-2.9904E-05],[190.27475,-2.6295E-05],[190.2782,-2.7842E-05],[190.28164,-3.1967E-05],[190.28509,-2.9389E-05],[190.28853,-2.9389E-05],[190.29198,-2.8873E-05],[190.29542,-2.8873E-05],[190.29887,-3.1967E-05],[190.30231,-2.9904E-05],[190.30576,-2.7326E-05],[190.30921,-2.7326E-05],[190.31265,-2.9904E-05],[190.3161,-2.8357E-05],[190.31954,-3.1967E-05],[190.32299,-3.1967E-05],[190.32643,-2.5779E-05],[190.32988,-3.1451E-05],[190.33332,-2.9904E-05],[190.33677,-2.7842E-05],[190.34021,-2.9904E-05],[190.34366,-3.0935E-05],[190.3471,-3.3513E-05],[190.35055,-3.0935E-05],[190.35399,-2.9904E-05],[190.35744,-2.9389E-05],[190.36089,-3.2998E-05],[190.36433,-2.8873E-05],[190.36778,-2.4748E-05],[190.37122,-3.042E-05],[190.37467,-3.042E-05],[190.37811,-3.2998E-05],[190.38156,-2.9389E-05],[190.385,-2.7842E-05],[190.38845,-3.0935E-05],[190.39189,-3.3513E-05],[190.39534,-3.1967E-05],[190.39878,-2.8873E-05],[190.40223,-3.0935E-05],[190.40567,-2.8357E-05],[190.40912,-2.3717E-05],[190.41257,-2.4748E-05],[190.41601,-3.4029E-05],[190.41946,-3.0935E-05],[190.4229,-2.6811E-05],[190.42635,-2.9389E-05],[190.42979,-2.8357E-05],[190.43324,-3.2482E-05],[190.43668,-2.4748E-05],[190.44013,-2.8357E-05],[190.44357,-3.8154E-05],[190.44702,-2.9389E-05],[190.45046,-2.6295E-05]]}
-{"quant":[190.757,-2.9182E-05],"mems":[[190.65718,-3.1451E-05],[190.66063,-2.9904E-05],[190.66407,-2.9389E-05],[190.66752,-2.9904E-05],[190.67097,-2.6295E-05],[190.67441,-2.8357E-05],[190.67786,-3.1451E-05],[190.6813,-3.1451E-05],[190.68475,-2.7326E-05],[190.68819,-2.5264E-05],[190.69164,-3.042E-05],[190.69508,-3.042E-05],[190.69853,-2.7842E-05],[190.70197,-2.6295E-05],[190.70542,-2.4233E-05],[190.70886,-2.7842E-05],[190.71231,-2.5779E-05],[190.71575,-2.7326E-05],[190.7192,-3.042E-05],[190.72265,-3.1451E-05],[190.72609,-3.1451E-05],[190.72954,-2.6295E-05],[190.73298,-2.7326E-05],[190.73643,-2.8873E-05],[190.73987,-2.7326E-05],[190.74332,-2.5779E-05],[190.74676,-2.8357E-05],[190.75021,-2.9389E-05],[190.75365,-3.042E-05],[190.7571,-3.3513E-05],[190.76054,-3.4029E-05],[190.76399,-3.1451E-05],[190.76743,-2.7326E-05],[190.77088,-2.8873E-05],[190.77433,-2.7842E-05],[190.77777,-2.8357E-05],[190.78122,-2.8873E-05],[190.78466,-2.6811E-05],[190.78811,-2.7326E-05],[190.79155,-2.9389E-05],[190.795,-3.0935E-05],[190.79844,-2.8357E-05],[190.80189,-3.2482E-05],[190.80533,-3.042E-05],[190.80878,-2.3717E-05],[190.81222,-2.8357E-05],[190.81567,-2.9389E-05],[190.81911,-2.8873E-05],[190.82256,-3.1967E-05],[190.82601,-2.9904E-05],[190.82945,-2.6811E-05],[190.8329,-3.0935E-05],[190.83634,-3.1451E-05],[190.83979,-2.8873E-05],[190.84323,-2.6811E-05],[190.84668,-2.5264E-05],[190.85012,-2.8873E-05],[190.85357,-2.9389E-05],[190.85701,-2.8873E-05],[190.86046,-2.6811E-05],[190.8639,-2.9389E-05],[190.86735,-3.0935E-05],[190.87079,-2.7326E-05],[190.87424,-2.9904E-05],[190.87769,-2.7842E-05],[190.88113,-2.7326E-05],[190.88458,-2.9389E-05],[190.88802,-2.8873E-05],[190.89147,-2.8873E-05],[190.89491,-2.7326E-05],[190.89836,-3.2482E-05],[190.9018,-3.506E-05],[190.90525,-2.8873E-05],[190.90869,-2.9904E-05],[190.91214,-3.042E-05],[190.91558,-3.1967E-05],[190.91903,-3.6607E-05],[190.92247,-3.042E-05],[190.92592,-2.8873E-05],[190.92937,-2.8873E-05],[190.93281,-2.4748E-05],[190.93626,-2.8873E-05],[190.9397,-3.2482E-05],[190.94315,-3.042E-05],[190.94659,-3.1451E-05],[190.95004,-3.1451E-05],[190.95348,-2.9904E-05],[190.95693,-2.9904E-05],[190.96037,-2.9389E-05]]}
-{"quant":[191.226,-1.2236],"mems":[[191.12919,-2.7326E-05],[191.13264,-3.1451E-05],[191.13609,-3.2482E-05],[191.13953,-3.3513E-05],[191.14298,-2.9389E-05],[191.14642,-2.8873E-05],[191.14987,-2.8357E-05],[191.15331,-2.8357E-05],[191.15676,-2.9904E-05],[191.1602,-2.6811E-05],[191.16365,-2.9389E-05],[191.16709,-2.9389E-05],[191.17054,-2.7326E-05],[191.17398,-2.9904E-05],[191.17743,-2.9389E-05],[191.18087,-3.1451E-05],[191.18432,-3.1967E-05],[191.18777,-3.2482E-05],[191.19121,-3.4544E-05],[191.19466,-3.2998E-05],[191.1981,-2.9389E-05],[191.20155,-3.1451E-05],[191.20499,-3.2482E-05],[191.20844,-2.5779E-05],[191.21188,-2.5779E-05],[191.21533,-3.2998E-05],[191.21877,-3.3513E-05],[191.22222,-3.1451E-05],[191.22566,-2.8357E-05],[191.22911,-2.6811E-05],[191.23255,-2.8357E-05],[191.236,-2.5264E-05],[191.23951,-2.7326E-05],[191.24301,-2.8357E-05],[191.24652,-2.7842E-05],[191.25002,-2.9904E-05],[191.25353,-2.9904E-05],[191.25703,-3.1967E-05],[191.26054,-3.2482E-05],[191.26404,-3.3513E-05],[191.26755,-3.2482E-05],[191.27105,-3.1967E-05],[191.27456,-2.6811E-05],[191.27806,-2.6811E-05],[191.28157,-3.3513E-05],[191.28507,-3.2482E-05],[191.28858,-3.4029E-05],[191.29209,-3.3513E-05],[191.29559,-3.2482E-05],[191.2991,-2.6811E-05],[191.3026,-2.7326E-05],[191.30611,-3.506E-05],[191.30961,-3.0935E-05],[191.31312,-3.2998E-05],[191.31662,-2.9904E-05],[191.32013,-3.042E-05],[191.32363,-3.1451E-05],[191.32714,-2.5779E-05],[191.33064,-2.6811E-05],[191.33415,-2.6295E-05],[191.33765,-2.9389E-05],[191.34116,-3.1967E-05],[191.34467,-3.1967E-05],[191.34817,-2.6811E-05],[191.35168,-2.5779E-05],[191.35518,-3.0935E-05],[191.35869,-3.0935E-05],[191.36219,-3.042E-05],[191.3657,-3.2998E-05],[191.3692,-3.4544E-05],[191.37271,-2.6811E-05],[191.37621,-2.8357E-05],[191.37972,-3.6091E-05],[191.38322,-3.4029E-05],[191.38673,-3.2998E-05],[191.39023,-3.0935E-05],[191.39374,-2.6811E-05],[191.39725,-2.7326E-05],[191.40075,-3.1451E-05],[191.40426,-3.2482E-05],[191.40776,-2.8873E-05],[191.41127,-2.3717E-05],[191.41477,-2.5264E-05],[191.41828,-3.042E-05],[191.42178,-3.0935E-05],[191.42529,-2.7842E-05],[191.42879,-2.3717E-05]]}
-{"quant":[191.681,-2.7687E-05],"mems":[[191.58303,-3.042E-05],[191.58653,-2.6811E-05],[191.59004,-2.8357E-05],[191.59354,-2.8357E-05],[191.59705,-2.6295E-05],[191.60055,-3.042E-05],[191.60406,-3.506E-05],[191.60757,-3.2998E-05],[191.61107,-3.0935E-05],[191.61458,-2.6295E-05],[191.61808,-2.6811E-05],[191.62159,-3.1967E-05],[191.62509,-2.9389E-05],[191.6286,-3.1451E-05],[191.6321,-3.3513E-05],[191.63561,-2.9904E-05],[191.63911,-2.8357E-05],[191.64262,-2.8873E-05],[191.64612,-3.0935E-05],[191.64963,-3.1967E-05],[191.65313,-3.1451E-05],[191.65664,-2.8357E-05],[191.66015,-2.4748E-05],[191.66365,-2.2686E-05],[191.66716,-2.4748E-05],[191.67066,-2.7842E-05],[191.67417,-2.5779E-05],[191.67767,-2.8873E-05],[191.68118,-3.042E-05],[191.68468,-2.6295E-05],[191.68819,-2.9904E-05],[191.69169,-3.0935E-05],[191.6952,-2.8873E-05],[191.6987,-2.8357E-05],[191.70221,-2.9389E-05],[191.70571,-2.8357E-05],[191.70922,-2.2686E-05],[191.71273,-2.3202E-05],[191.71623,-2.1139E-05],[191.71974,-2.217E-05],[191.72324,-2.7326E-05],[191.72675,-2.8873E-05],[191.73025,-2.9389E-05],[191.73376,-2.7842E-05],[191.73726,-2.6295E-05],[191.74077,-2.5264E-05],[191.74427,-2.7842E-05],[191.74778,-2.8357E-05],[191.75128,-2.6811E-05],[191.75479,-2.3202E-05],[191.75829,-2.4233E-05],[191.7618,-3.1967E-05],[191.76531,-2.8357E-05],[191.76881,-2.8873E-05],[191.77232,-3.4544E-05],[191.77582,-3.1967E-05],[191.77933,-2.7842E-05],[191.78283,-2.9904E-05],[191.78634,-2.8357E-05],[191.78984,-3.042E-05],[191.79335,-3.4029E-05],[191.79685,-2.9389E-05],[191.80036,-2.6295E-05],[191.80386,-2.6811E-05],[191.80737,-3.2482E-05],[191.81087,-3.4029E-05],[191.81438,-2.8873E-05],[191.81789,-2.8357E-05],[191.82139,-3.042E-05],[191.8249,-3.2482E-05],[191.8284,-3.1967E-05],[191.83191,-3.0935E-05],[191.83541,-3.1451E-05],[191.83892,-2.9389E-05],[191.84242,-2.5264E-05],[191.84593,-2.9389E-05],[191.84943,-3.4544E-05],[191.85294,-3.3513E-05],[191.85644,-3.1967E-05],[191.85995,-3.0935E-05],[191.86345,-2.7842E-05],[191.86696,-3.4029E-05],[191.87047,-3.4544E-05],[191.87397,-2.5779E-05],[191.87748,-2.7326E-05],[191.88098,-2.7842E-05],[191.88449,-2.9904E-05]]}
-{"quant":[192.315,-3.0437E-05],"mems":[[192.21749,-2.4233E-05],[192.221,-2.7842E-05],[192.2245,-3.5576E-05],[192.22801,-3.042E-05],[192.23151,-2.7842E-05],[192.23502,-2.9904E-05],[192.23853,-3.4544E-05],[192.24203,-3.1967E-05],[192.24554,-2.5264E-05],[192.24904,-2.5264E-05],[192.25255,-2.4748E-05],[192.25605,-2.8873E-05],[192.25956,-2.9389E-05],[192.26306,-3.0935E-05],[192.26657,-2.9389E-05],[192.27007,-1.9592E-05],[192.27358,-2.5264E-05],[192.27708,-2.9389E-05],[192.28059,-2.6811E-05],[192.28409,-2.8357E-05],[192.2876,-2.6295E-05],[192.29111,-2.8873E-05],[192.29461,-3.2998E-05],[192.29812,-2.6811E-05],[192.30162,-2.5779E-05],[192.30513,-3.1967E-05],[192.30863,-3.0935E-05],[192.31214,-3.4544E-05],[192.31564,-3.1967E-05],[192.31915,-2.9389E-05],[192.32265,-3.3513E-05],[192.32616,-2.9389E-05],[192.32966,-3.1451E-05],[192.33317,-3.1451E-05],[192.33667,-2.7326E-05],[192.34018,-2.8873E-05],[192.34369,-3.042E-05],[192.34719,-3.1451E-05],[192.3507,-3.2998E-05],[192.3542,-3.4544E-05],[192.35771,-3.2482E-05],[192.36121,-3.042E-05],[192.36472,-2.7842E-05],[192.36822,-2.6811E-05],[192.37173,-2.9389E-05],[192.37523,-2.6811E-05],[192.37874,-3.0935E-05],[192.38224,-3.5576E-05],[192.38575,-3.2998E-05],[192.38925,-3.042E-05],[192.39276,-2.4748E-05],[192.39627,-2.7842E-05],[192.39977,-3.2998E-05],[192.40328,-3.042E-05],[192.40678,-3.1451E-05],[192.41029,-2.9389E-05],[192.41379,-2.7326E-05],[192.4173,-3.2482E-05],[192.4208,-3.6607E-05],[192.42431,-3.1967E-05],[192.42781,-2.6811E-05],[192.43132,-2.9389E-05],[192.43482,-3.4029E-05],[192.43833,-3.1451E-05],[192.44183,-2.9389E-05],[192.44534,-3.2482E-05],[192.44885,-3.0935E-05],[192.45235,-2.6811E-05],[192.45586,-2.9904E-05],[192.45936,-3.1967E-05],[192.46287,-2.5779E-05],[192.46637,-2.8357E-05],[192.46988,-3.1967E-05],[192.47338,-2.7326E-05],[192.47689,-2.9904E-05],[192.48039,-3.042E-05],[192.4839,-2.9389E-05],[192.4874,-3.2998E-05],[192.49091,-2.7842E-05],[192.49441,-2.5779E-05],[192.49792,-2.7842E-05],[192.50143,-2.6811E-05],[192.50493,-3.0935E-05],[192.50844,-3.042E-05],[192.51194,-2.8357E-05],[192.51545,-3.1451E-05]]}
-{"quant":[192.799,-3.0643E-05],"mems":[[192.70123,-3.1967E-05],[192.70473,-2.9904E-05],[192.70824,-2.8873E-05],[192.71175,-2.8873E-05],[192.71525,-2.7326E-05],[192.71876,-2.6295E-05],[192.72226,-2.8873E-05],[192.72577,-2.4748E-05],[192.72927,-2.6811E-05],[192.73278,-3.2998E-05],[192.73628,-2.8873E-05],[192.73979,-2.8873E-05],[192.74329,-2.7326E-05],[192.7468,-2.5264E-05],[192.7503,-2.9904E-05],[192.75381,-3.2998E-05],[192.75731,-3.1967E-05],[192.76082,-3.0935E-05],[192.76433,-3.3513E-05],[192.76783,-3.4029E-05],[192.77134,-3.1451E-05],[192.77484,-3.042E-05],[192.77835,-2.6811E-05],[192.78185,-2.8357E-05],[192.78536,-3.2998E-05],[192.78886,-2.8873E-05],[192.79237,-2.6295E-05],[192.79587,-2.9904E-05],[192.79938,-2.9389E-05],[192.80288,-2.9904E-05],[192.80639,-3.2482E-05],[192.80989,-2.9904E-05],[192.8134,-3.1967E-05],[192.81691,-3.2482E-05],[192.82041,-2.7842E-05],[192.82392,-3.0935E-05],[192.82742,-2.9389E-05],[192.83093,-2.8357E-05],[192.83443,-3.1967E-05],[192.83794,-2.7842E-05],[192.84144,-2.8357E-05],[192.84495,-2.8357E-05],[192.84845,-2.6295E-05],[192.85196,-2.8873E-05],[192.85546,-2.8873E-05],[192.85897,-3.0935E-05],[192.86247,-3.0935E-05],[192.86598,-2.8357E-05],[192.86949,-3.4544E-05],[192.87299,-3.2998E-05],[192.8765,-3.2998E-05],[192.88,-3.0935E-05],[192.88351,-2.7842E-05],[192.88701,-3.6091E-05],[192.89052,-3.2998E-05],[192.89402,-3.1967E-05],[192.89753,-3.4029E-05],[192.90103,-3.1451E-05],[192.90454,-2.7326E-05],[192.90804,-2.8873E-05],[192.91155,-3.2998E-05],[192.91505,-2.9389E-05],[192.91856,-3.1451E-05],[192.92207,-2.7326E-05],[192.92557,-2.7326E-05],[192.92908,-3.1451E-05],[192.93258,-3.0935E-05],[192.93609,-3.3513E-05],[192.93959,-2.6811E-05],[192.9431,-2.8873E-05],[192.9466,-3.4029E-05],[192.95011,-2.9904E-05],[192.95361,-3.1451E-05],[192.95712,-3.042E-05],[192.96062,-2.6295E-05],[192.96413,-2.6295E-05],[192.96763,-2.7842E-05],[192.97114,-2.9904E-05],[192.97465,-3.6607E-05],[192.97815,-3.2998E-05],[192.98166,-2.5264E-05],[192.98516,-2.9389E-05],[192.98867,-3.1451E-05],[192.99217,-3.1967E-05],[192.99568,-2.8357E-05],[192.99918,-2.8873E-05]]}
-{"quant":[193.292,-3.0385E-05],"mems":[[193.19548,-3.4029E-05],[193.19899,-3.042E-05],[193.20249,-2.9389E-05],[193.206,-2.9904E-05],[193.2095,-3.506E-05],[193.21301,-3.6091E-05],[193.21651,-2.9904E-05],[193.22002,-2.8357E-05],[193.22352,-2.9904E-05],[193.22703,-2.9389E-05],[193.23053,-3.1451E-05],[193.23404,-3.042E-05],[193.23755,-2.7842E-05],[193.24105,-2.8873E-05],[193.24456,-2.9904E-05],[193.24806,-3.0935E-05],[193.25157,-2.9389E-05],[193.25507,-3.4029E-05],[193.25858,-3.1967E-05],[193.26208,-2.8357E-05],[193.26559,-3.3513E-05],[193.26909,-3.0935E-05],[193.2726,-3.1451E-05],[193.2761,-3.3513E-05],[193.27961,-2.8873E-05],[193.28311,-2.6295E-05],[193.28662,-2.9904E-05],[193.29013,-3.2998E-05],[193.29363,-3.1451E-05],[193.29714,-3.042E-05],[193.30064,-3.042E-05],[193.30415,-3.1451E-05],[193.30765,-2.5264E-05],[193.31116,-2.5264E-05],[193.31466,-3.1451E-05],[193.31817,-2.9389E-05],[193.32167,-3.042E-05],[193.32518,-2.8873E-05],[193.32868,-2.6811E-05],[193.33219,-3.1451E-05],[193.33569,-3.506E-05],[193.3392,-2.9389E-05],[193.34271,-2.5264E-05],[193.34621,-3.2998E-05],[193.34972,-3.3513E-05],[193.35322,-3.3513E-05],[193.35673,-3.506E-05],[193.36023,-3.1967E-05],[193.36374,-3.2998E-05],[193.36724,-2.8873E-05],[193.37075,-2.5779E-05],[193.37425,-2.6811E-05],[193.37776,-3.1451E-05],[193.38126,-3.4544E-05],[193.38477,-3.2998E-05],[193.38827,-3.1967E-05],[193.39178,-2.8357E-05],[193.39529,-2.8357E-05],[193.39879,-3.4544E-05],[193.4023,-3.1967E-05],[193.4058,-2.3717E-05],[193.40931,-2.9389E-05],[193.41281,-3.3513E-05],[193.41632,-2.9904E-05],[193.41982,-3.2998E-05],[193.42333,-3.4029E-05],[193.42683,-3.042E-05],[193.43034,-2.4233E-05],[193.43384,-2.6811E-05],[193.43735,-2.6811E-05],[193.44085,-2.8357E-05],[193.44436,-3.2482E-05],[193.44787,-2.9904E-05],[193.45137,-3.2998E-05],[193.45488,-3.2482E-05],[193.45838,-3.4029E-05],[193.46189,-3.2998E-05],[193.46539,-2.8357E-05],[193.4689,-2.8873E-05],[193.4724,-2.9389E-05],[193.47591,-2.8873E-05],[193.47941,-2.9904E-05],[193.48292,-3.0935E-05],[193.48642,-2.7326E-05],[193.48993,-3.1451E-05],[193.49343,-3.2482E-05]]}
-{"quant":[193.754,-0.69031],"mems":[[193.65468,-2.5264E-05],[193.65819,-2.9904E-05],[193.66169,-2.7842E-05],[193.6652,-2.7326E-05],[193.6687,-3.042E-05],[193.67221,-3.0935E-05],[193.67571,-3.506E-05],[193.67922,-3.7122E-05],[193.68272,-3.4544E-05],[193.68623,-3.042E-05],[193.68973,-2.8873E-05],[193.69324,-2.9904E-05],[193.69674,-3.3513E-05],[193.70025,-3.2998E-05],[193.70375,-3.2998E-05],[193.70726,-3.5576E-05],[193.71077,-3.1967E-05],[193.71427,-2.8357E-05],[193.71778,-2.7842E-05],[193.72128,-2.9904E-05],[193.72479,-3.2998E-05],[193.72829,-2.7326E-05],[193.7318,-2.4748E-05],[193.7353,-2.9904E-05],[193.73881,-2.7842E-05],[193.74231,-2.9904E-05],[193.74582,-3.4029E-05],[193.74932,-2.9389E-05],[193.75283,-3.042E-05],[193.75633,-2.7326E-05],[193.75984,-3.1967E-05],[193.76335,-3.3513E-05],[193.76685,-2.6811E-05],[193.77036,-3.042E-05],[193.77386,-2.6295E-05],[193.77737,-2.8873E-05],[193.78087,-3.3513E-05],[193.78438,-2.9389E-05],[193.78788,-3.2482E-05],[193.79139,-3.2482E-05],[193.79489,-3.1967E-05],[193.7984,-3.1451E-05],[193.8019,-3.1967E-05],[193.80541,-3.2998E-05],[193.80891,-2.9904E-05],[193.81242,-2.7326E-05],[193.81593,-2.4233E-05],[193.81943,-2.3717E-05],[193.82294,-2.9904E-05],[193.82644,-3.4544E-05],[193.82995,-3.3513E-05],[193.83345,-3.1451E-05],[193.83696,-2.8357E-05],[193.84046,-2.9904E-05],[193.84397,-3.1967E-05],[193.84747,-3.042E-05],[193.85098,-3.2482E-05],[193.85448,-2.9389E-05],[193.85799,-2.4748E-05],[193.86149,-2.7842E-05],[193.865,-2.8357E-05],[193.8686,-2.7326E-05],[193.87221,-3.1967E-05],[193.87581,-2.7326E-05],[193.87941,-2.5264E-05],[193.88301,-3.2998E-05],[193.88662,-3.2998E-05],[193.89022,-3.1967E-05],[193.89382,-2.9389E-05],[193.89742,-2.9389E-05],[193.90103,-3.0935E-05],[193.90463,-2.7842E-05],[193.90823,-2.8357E-05],[193.91183,-2.6295E-05],[193.91544,-2.8357E-05],[193.91904,-2.9904E-05],[193.92264,-2.6295E-05],[193.92625,-3.2482E-05],[193.92985,-3.2998E-05],[193.93345,-3.042E-05],[193.93705,-3.0935E-05],[193.94066,-3.042E-05],[193.94426,-2.9904E-05],[193.94786,-2.9904E-05],[193.95146,-3.2998E-05],[193.95507,-3.042E-05]]}
-{"quant":[194.237,-2.9104E-05],"mems":[[194.1388,-2.6811E-05],[194.14241,-2.6811E-05],[194.14601,-3.4029E-05],[194.14961,-3.1451E-05],[194.15321,-2.8873E-05],[194.15682,-3.2482E-05],[194.16042,-2.7326E-05],[194.16402,-2.6811E-05],[194.16762,-3.1967E-05],[194.17123,-2.9904E-05],[194.17483,-2.7842E-05],[194.17843,-2.8873E-05],[194.18203,-3.0935E-05],[194.18564,-3.042E-05],[194.18924,-2.7326E-05],[194.19284,-2.4748E-05],[194.19645,-2.8873E-05],[194.20005,-2.9904E-05],[194.20365,-3.042E-05],[194.20725,-3.0935E-05],[194.21086,-2.3717E-05],[194.21446,-2.5779E-05],[194.21806,-3.0935E-05],[194.22166,-2.6811E-05],[194.22527,-2.9389E-05],[194.22887,-3.042E-05],[194.23247,-2.6295E-05],[194.23607,-3.0935E-05],[194.23968,-2.8873E-05],[194.24328,-2.9389E-05],[194.24688,-3.2482E-05],[194.25049,-2.5779E-05],[194.25409,-2.6295E-05],[194.25769,-3.2482E-05],[194.26129,-3.4544E-05],[194.2649,-3.4029E-05],[194.2685,-2.8873E-05],[194.2721,-2.4748E-05],[194.2757,-2.8873E-05],[194.27931,-3.042E-05],[194.28291,-3.3513E-05],[194.28651,-3.4029E-05],[194.29011,-2.3202E-05],[194.29372,-2.3717E-05],[194.29732,-2.9904E-05],[194.30092,-2.7842E-05],[194.30453,-2.7842E-05],[194.30813,-2.7842E-05],[194.31173,-2.8873E-05],[194.31533,-3.0935E-05],[194.31894,-2.5779E-05],[194.32254,-2.7842E-05],[194.32614,-3.0935E-05],[194.32974,-3.042E-05],[194.33335,-3.2482E-05],[194.33695,-2.7326E-05],[194.34055,-2.4748E-05],[194.34415,-2.8873E-05],[194.34776,-3.042E-05],[194.35136,-3.2482E-05],[194.35496,-3.4544E-05],[194.35857,-2.7326E-05],[194.36217,-2.7842E-05],[194.36577,-2.8357E-05],[194.36937,-2.7842E-05],[194.37298,-3.2998E-05],[194.37658,-2.9904E-05],[194.38018,-2.9389E-05],[194.38378,-3.2998E-05],[194.38739,-3.4029E-05],[194.39099,-3.2482E-05],[194.39459,-2.7842E-05],[194.39819,-3.3513E-05],[194.4018,-3.4544E-05],[194.4054,-2.8873E-05],[194.409,-2.9904E-05],[194.41261,-3.1451E-05],[194.41621,-2.9904E-05],[194.41981,-3.2482E-05],[194.42341,-3.042E-05],[194.42702,-2.6811E-05],[194.43062,-2.7842E-05],[194.43422,-2.8357E-05],[194.43782,-2.8873E-05]]}
-{"quant":[194.993,-2.9794E-05],"mems":[[194.89536,-2.9389E-05],[194.89897,-2.8357E-05],[194.90257,-2.6811E-05],[194.90617,-2.6295E-05],[194.90977,-2.8357E-05],[194.91338,-2.5264E-05],[194.91698,-2.5779E-05],[194.92058,-3.1967E-05],[194.92418,-2.9389E-05],[194.92779,-3.1451E-05],[194.93139,-3.0935E-05],[194.93499,-2.3717E-05],[194.93859,-2.9389E-05],[194.9422,-3.5576E-05],[194.9458,-3.3513E-05],[194.9494,-2.6811E-05],[194.95301,-2.6811E-05],[194.95661,-2.8873E-05],[194.96021,-2.5779E-05],[194.96381,-3.0935E-05],[194.96742,-3.1451E-05],[194.97102,-2.5779E-05],[194.97462,-3.1967E-05],[194.97822,-3.4029E-05],[194.98183,-2.7326E-05],[194.98543,-2.9389E-05],[194.98903,-3.3513E-05],[194.99263,-3.6091E-05],[194.99624,-3.5576E-05],[194.99984,-3.1967E-05],[195.00344,-2.8357E-05],[195.00705,-2.6295E-05],[195.01065,-3.1451E-05],[195.01425,-2.9389E-05],[195.01785,-2.6295E-05],[195.02146,-3.3513E-05],[195.02506,-3.2998E-05],[195.02866,-2.8357E-05],[195.03226,-2.6295E-05],[195.03587,-2.9904E-05],[195.03947,-3.1451E-05],[195.04307,-2.8873E-05],[195.04667,-3.2998E-05],[195.05028,-3.042E-05],[195.05388,-3.0935E-05],[195.05748,-3.2482E-05],[195.06109,-3.1967E-05],[195.06469,-3.2482E-05],[195.06829,-2.8357E-05],[195.07189,-2.4233E-05],[195.0755,-2.3717E-05],[195.0791,-2.8357E-05],[195.0827,-2.9389E-05],[195.0863,-2.8873E-05],[195.08991,-2.9904E-05],[195.09351,-2.9389E-05],[195.09711,-2.6295E-05],[195.10071,-2.9904E-05],[195.10432,-3.4029E-05],[195.10792,-2.8357E-05],[195.11152,-2.8873E-05],[195.11513,-2.7842E-05],[195.11873,-2.4748E-05],[195.12233,-2.8873E-05],[195.12593,-3.042E-05],[195.12954,-2.9389E-05],[195.13314,-2.7326E-05],[195.13674,-2.6811E-05],[195.14034,-2.6295E-05],[195.14395,-2.9904E-05],[195.14755,-3.2482E-05],[195.15115,-2.8357E-05],[195.15475,-2.9389E-05],[195.15836,-2.9389E-05],[195.16196,-3.042E-05],[195.16556,-3.0935E-05],[195.16917,-3.2998E-05],[195.17277,-3.4029E-05],[195.17637,-2.7326E-05],[195.17997,-3.2482E-05],[195.18358,-3.3513E-05],[195.18718,-3.042E-05],[195.19078,-3.5576E-05],[195.19438,-3.1451E-05]]}
-{"quant":[195.478,-2.9477E-05],"mems":[[195.37812,-2.7842E-05],[195.38172,-2.3717E-05],[195.38533,-2.3202E-05],[195.38893,-2.8873E-05],[195.39253,-2.9389E-05],[195.39613,-3.0935E-05],[195.39974,-3.0935E-05],[195.40334,-2.6811E-05],[195.40694,-3.2998E-05],[195.41054,-3.4544E-05],[195.41415,-3.1967E-05],[195.41775,-3.0935E-05],[195.42135,-2.8357E-05],[195.42495,-2.9389E-05],[195.42856,-2.6811E-05],[195.43216,-2.9389E-05],[195.43576,-3.4029E-05],[195.43937,-3.2482E-05],[195.44297,-3.1451E-05],[195.44657,-2.8357E-05],[195.45017,-2.8873E-05],[195.45378,-3.0935E-05],[195.45738,-3.0935E-05],[195.46098,-3.0935E-05],[195.46458,-2.8873E-05],[195.46819,-2.7326E-05],[195.47179,-2.9904E-05],[195.47539,-3.1967E-05],[195.47899,-3.1967E-05],[195.4826,-3.042E-05],[195.4862,-2.9389E-05],[195.4898,-2.9904E-05],[195.49341,-2.5779E-05],[195.49701,-2.6811E-05],[195.50061,-2.9904E-05],[195.50421,-2.8357E-05],[195.50782,-2.9389E-05],[195.51142,-2.8873E-05],[195.51502,-2.9389E-05],[195.51862,-2.9904E-05],[195.52223,-3.2998E-05],[195.52583,-3.3513E-05],[195.52943,-2.217E-05],[195.53303,-2.2686E-05],[195.53664,-3.3513E-05],[195.54024,-3.4029E-05],[195.54384,-2.9904E-05],[195.54745,-2.8357E-05],[195.55105,-2.8873E-05],[195.55465,-2.9389E-05],[195.55825,-3.4544E-05],[195.56186,-3.5576E-05],[195.56546,-3.1451E-05],[195.56906,-2.9389E-05],[195.57266,-2.4233E-05],[195.57627,-2.4233E-05],[195.57987,-2.9904E-05],[195.58347,-2.8873E-05],[195.58707,-2.8357E-05],[195.59068,-2.7326E-05],[195.59428,-2.5779E-05],[195.59788,-3.0935E-05],[195.60149,-2.8873E-05],[195.60509,-2.8357E-05],[195.60869,-2.9389E-05],[195.61229,-2.6295E-05],[195.6159,-3.1967E-05],[195.6195,-3.1967E-05],[195.6231,-3.1967E-05],[195.6267,-3.2998E-05],[195.63031,-2.6295E-05],[195.63391,-2.8357E-05],[195.63751,-3.4029E-05],[195.64111,-3.2482E-05],[195.64472,-3.0935E-05],[195.64832,-3.0935E-05],[195.65192,-3.0935E-05],[195.65553,-3.1967E-05],[195.65913,-2.7842E-05],[195.66273,-2.9904E-05],[195.66633,-3.042E-05],[195.66994,-2.6295E-05],[195.67354,-3.042E-05],[195.67714,-2.7842E-05],[195.68074,-2.7326E-05]]}
-{"quant":[195.964,-2.8997E-05],"mems":[[195.86448,-3.1967E-05],[195.86808,-2.9389E-05],[195.87169,-3.1451E-05],[195.87529,-3.1967E-05],[195.87889,-3.4544E-05],[195.88249,-2.9904E-05],[195.8861,-2.4233E-05],[195.8897,-2.8873E-05],[195.8933,-2.7326E-05],[195.8969,-3.1967E-05],[195.90051,-3.0935E-05],[195.90411,-2.6811E-05],[195.90771,-3.0935E-05],[195.91131,-3.1451E-05],[195.91492,-3.506E-05],[195.91852,-3.6607E-05],[195.92212,-3.1451E-05],[195.92573,-2.9389E-05],[195.92933,-3.2482E-05],[195.93293,-2.9389E-05],[195.93653,-2.6811E-05],[195.94014,-2.8873E-05],[195.94374,-3.042E-05],[195.94734,-2.8357E-05],[195.95094,-3.042E-05],[195.95455,-3.2998E-05],[195.95815,-2.9389E-05],[195.96175,-2.6811E-05],[195.96535,-2.8357E-05],[195.96896,-3.2482E-05],[195.97256,-3.3513E-05],[195.97616,-2.9389E-05],[195.97977,-2.7842E-05],[195.98337,-2.7326E-05],[195.98697,-2.8357E-05],[195.99057,-2.9389E-05],[195.99418,-2.5779E-05],[195.99778,-2.4233E-05],[196.00138,-2.9904E-05],[196.00498,-3.1967E-05],[196.00859,-3.0935E-05],[196.01219,-2.9389E-05],[196.01579,-2.5264E-05],[196.01939,-2.8873E-05],[196.023,-3.042E-05],[196.0266,-3.042E-05],[196.0302,-3.0935E-05],[196.03381,-2.8873E-05],[196.03741,-3.1967E-05],[196.04101,-2.7326E-05],[196.04461,-2.5264E-05],[196.04822,-2.8873E-05],[196.05182,-2.7326E-05],[196.05542,-3.042E-05],[196.05902,-2.6811E-05],[196.06263,-2.7326E-05],[196.06623,-3.1967E-05],[196.06983,-2.7842E-05],[196.07343,-2.9389E-05],[196.07704,-3.1967E-05],[196.08064,-2.9904E-05],[196.08424,-2.9389E-05],[196.08785,-3.2482E-05],[196.09145,-3.2482E-05],[196.09505,-2.8873E-05],[196.09865,-2.9389E-05],[196.10226,-2.8357E-05],[196.10586,-2.8357E-05],[196.10946,-3.042E-05],[196.11306,-3.4029E-05],[196.11667,-2.9904E-05],[196.12027,-2.4233E-05],[196.12387,-2.9389E-05],[196.12747,-2.8357E-05],[196.13108,-2.4748E-05],[196.13468,-2.8357E-05],[196.13828,-2.7842E-05],[196.14189,-2.8357E-05],[196.14549,-2.9904E-05],[196.14909,-2.5779E-05],[196.15269,-2.9389E-05],[196.1563,-3.2482E-05],[196.1599,-2.9904E-05],[196.1635,-3.042E-05],[196.1671,-3.042E-05]]}
-{"quant":[196.433,-0.097486],"mems":[[196.51656,-3.0935E-05],[196.52017,-3.042E-05],[196.52377,-2.9904E-05],[196.52737,-3.0935E-05],[196.53097,-2.6811E-05],[196.53458,-2.7326E-05],[196.53818,-3.0935E-05],[196.54178,-2.9389E-05],[196.54538,-3.2482E-05],[196.54899,-3.0935E-05],[196.55259,-3.042E-05],[196.55619,-3.0935E-05],[196.55979,-3.1967E-05],[196.5634,-3.7638E-05],[196.567,-3.2482E-05],[196.57019,-3.1967E-05],[196.57338,-3.1451E-05],[196.57656,-2.6295E-05],[196.57975,-2.9389E-05],[196.58294,-2.9904E-05],[196.58613,-2.6295E-05],[196.58932,-2.7842E-05],[196.5925,-3.1451E-05],[196.59569,-2.6295E-05],[196.59888,-2.7326E-05],[196.60207,-3.5576E-05],[196.60526,-3.2482E-05],[196.60844,-2.8873E-05],[196.61163,-3.1967E-05],[196.61482,-3.1967E-05],[196.61801,-2.4233E-05],[196.6212,-2.8873E-05],[196.62438,-3.2482E-05],[196.62757,-2.5779E-05],[196.63076,-3.3513E-05],[196.63395,-3.2482E-05],[196.63714,-2.8873E-05],[196.64032,-3.4029E-05],[196.64351,-3.0935E-05],[196.6467,-3.0935E-05],[196.64989,-3.042E-05],[196.65308,-3.042E-05],[196.65626,-3.0935E-05],[196.65945,-3.1967E-05],[196.66264,-3.6607E-05],[196.66583,-2.8873E-05],[196.66902,-2.7326E-05],[196.6722,-2.7326E-05],[196.67539,-2.7842E-05],[196.67858,-3.2998E-05],[196.68177,-2.9904E-05],[196.68496,-3.506E-05],[196.68814,-3.0935E-05],[196.69133,-3.0935E-05],[196.69452,-3.2482E-05],[196.69771,-2.9904E-05],[196.7009,-3.4029E-05],[196.70408,-2.8873E-05],[196.70727,-2.9904E-05],[196.71046,-2.9904E-05],[196.71365,-2.6811E-05],[196.71684,-2.9389E-05],[196.72002,-2.8873E-05],[196.72321,-2.9389E-05],[196.7264,-2.7326E-05],[196.72959,-2.7842E-05],[196.73278,-3.0935E-05],[196.73596,-2.6295E-05],[196.73915,-2.6811E-05],[196.74234,-2.9904E-05],[196.74553,-2.6295E-05],[196.74872,-2.5779E-05],[196.7519,-3.042E-05],[196.75509,-2.9389E-05],[196.75828,-2.9904E-05],[196.76147,-2.9904E-05],[196.76466,-2.4748E-05],[196.76784,-2.7842E-05],[196.77103,-2.8357E-05],[196.77422,-2.9389E-05],[196.77741,-3.042E-05],[196.7806,-2.4748E-05],[196.78378,-2.7326E-05],[196.78697,-3.1967E-05],[196.79016,-3.2482E-05],[196.79335,-3.2998E-05],[196.79654,-2.9389E-05],[196.79972,-2.5779E-05]]}
-{"quant":[196.933,-2.8826E-05],"mems":[[196.83479,-3.2482E-05],[196.83798,-2.9904E-05],[196.84117,-2.8873E-05],[196.84436,-3.0935E-05],[196.84754,-2.9904E-05],[196.85073,-3.1967E-05],[196.85392,-3.1451E-05],[196.85711,-2.6811E-05],[196.8603,-2.9389E-05],[196.86348,-2.5779E-05],[196.86667,-2.8873E-05],[196.86986,-3.4029E-05],[196.87305,-3.1967E-05],[196.87624,-3.0935E-05],[196.87942,-3.1967E-05],[196.88261,-3.6091E-05],[196.8858,-3.3513E-05],[196.88899,-3.2482E-05],[196.89218,-3.1967E-05],[196.89536,-2.9904E-05],[196.89855,-3.0935E-05],[196.90174,-3.1967E-05],[196.90493,-3.0935E-05],[196.90812,-2.4748E-05],[196.9113,-2.7842E-05],[196.91449,-2.8873E-05],[196.91768,-2.8357E-05],[196.92087,-3.0935E-05],[196.92406,-2.6295E-05],[196.92724,-2.8357E-05],[196.93043,-2.7842E-05],[196.93362,-2.7842E-05],[196.93681,-3.0935E-05],[196.94,-2.7326E-05],[196.94318,-2.6811E-05],[196.94637,-2.5779E-05],[196.94956,-2.7842E-05],[196.95275,-3.3513E-05],[196.95594,-3.3513E-05],[196.95912,-2.6811E-05],[196.96231,-2.5264E-05],[196.9655,-2.8357E-05],[196.96869,-2.5264E-05],[196.97188,-2.7842E-05],[196.97506,-3.1451E-05],[196.97825,-3.042E-05],[196.98144,-3.1967E-05],[196.98463,-3.1967E-05],[196.98782,-2.8357E-05],[196.991,-2.4748E-05],[196.99419,-2.7326E-05],[196.99738,-2.8873E-05],[197.00057,-3.0935E-05],[197.00376,-2.7326E-05],[197.00694,-2.4233E-05],[197.01013,-3.042E-05],[197.01332,-3.042E-05],[197.01651,-3.1967E-05],[197.0197,-2.7842E-05],[197.02288,-2.4748E-05],[197.02607,-3.0935E-05],[197.02926,-3.042E-05],[197.03245,-3.042E-05],[197.03564,-2.9389E-05],[197.03882,-2.5264E-05],[197.04201,-2.5264E-05],[197.0452,-2.9904E-05],[197.04839,-3.2482E-05],[197.05158,-3.1451E-05],[197.05476,-2.9904E-05],[197.05795,-2.7326E-05],[197.06114,-2.7842E-05],[197.06433,-2.5264E-05],[197.06752,-2.9389E-05],[197.0707,-3.4544E-05],[197.07389,-3.1451E-05],[197.07708,-2.9389E-05],[197.08027,-2.9904E-05],[197.08346,-3.2998E-05],[197.08664,-3.1967E-05],[197.08983,-2.8357E-05],[197.09302,-2.6811E-05],[197.09621,-2.4748E-05],[197.0994,-2.6295E-05],[197.10258,-2.9389E-05],[197.10577,-3.1451E-05],[197.10896,-3.3513E-05],[197.11215,-2.9389E-05],[197.11534,-2.6295E-05],[197.11852,-2.6811E-05],[197.12171,-2.8873E-05],[197.1249,-3.0935E-05],[197.12809,-3.3513E-05],[197.13128,-3.0935E-05],[197.13446,-2.5264E-05]]}
-{"quant":[197.407,-2.8921E-05],"mems":[[197.3098,-3.1967E-05],[197.31299,-3.4544E-05],[197.31618,-3.4029E-05],[197.31937,-2.6295E-05],[197.32256,-3.1967E-05],[197.32574,-3.4029E-05],[197.32893,-3.4029E-05],[197.33212,-3.6607E-05],[197.33531,-3.2482E-05],[197.3385,-3.2482E-05],[197.34168,-3.0935E-05],[197.34487,-3.2482E-05],[197.34806,-3.2482E-05],[197.35125,-2.7842E-05],[197.35444,-3.042E-05],[197.35762,-3.042E-05],[197.36081,-2.9389E-05],[197.364,-3.4029E-05],[197.36719,-3.4544E-05],[197.37038,-3.1451E-05],[197.37356,-2.9904E-05],[197.37675,-2.7842E-05],[197.37994,-2.7842E-05],[197.38313,-2.8357E-05],[197.38632,-2.6811E-05],[197.3895,-2.7326E-05],[197.39269,-2.7326E-05],[197.39588,-2.7842E-05],[197.39907,-2.9904E-05],[197.40226,-3.2482E-05],[197.40544,-3.1451E-05],[197.40863,-3.3513E-05],[197.41182,-2.8873E-05],[197.41501,-2.4233E-05],[197.4182,-3.042E-05],[197.42138,-2.6295E-05],[197.42457,-2.6811E-05],[197.42776,-3.1451E-05],[197.43095,-2.6811E-05],[197.43414,-2.4748E-05],[197.43732,-2.8873E-05],[197.44051,-3.506E-05],[197.4437,-2.8873E-05],[197.44689,-2.3202E-05],[197.45008,-2.5264E-05],[197.45326,-2.8357E-05],[197.45645,-3.1967E-05],[197.45964,-2.7326E-05],[197.46283,-2.8873E-05],[197.46602,-2.9904E-05],[197.4692,-2.6811E-05],[197.47239,-2.8357E-05],[197.47558,-2.8873E-05],[197.47877,-3.6607E-05],[197.48196,-3.6091E-05],[197.48514,-2.5779E-05],[197.48833,-2.9389E-05],[197.49152,-3.2998E-05],[197.49471,-2.7326E-05],[197.4979,-3.042E-05],[197.50108,-3.1451E-05],[197.50427,-2.4233E-05],[197.50746,-2.6295E-05],[197.51065,-2.9904E-05],[197.51384,-3.042E-05],[197.51702,-3.1451E-05],[197.52021,-3.1967E-05],[197.5234,-2.8873E-05],[197.52659,-2.8873E-05],[197.52978,-2.9904E-05],[197.53296,-2.6295E-05],[197.53615,-3.042E-05],[197.53934,-3.1451E-05],[197.54253,-2.8357E-05],[197.54572,-3.0935E-05],[197.5489,-2.9904E-05],[197.55209,-3.2482E-05],[197.55528,-3.4029E-05],[197.55847,-2.8873E-05],[197.56166,-2.8357E-05],[197.56484,-3.4029E-05],[197.56803,-3.3513E-05],[197.57122,-2.9389E-05],[197.57441,-2.8357E-05],[197.5776,-2.7842E-05],[197.58078,-3.1451E-05],[197.58397,-3.0935E-05],[197.58716,-2.8873E-05],[197.59035,-3.1451E-05],[197.59354,-3.0935E-05],[197.59672,-3.2482E-05],[197.59991,-3.1967E-05],[197.6031,-3.3513E-05],[197.60629,-3.506E-05],[197.60948,-2.9904E-05]]}
-{"quant":[198.119,-3.0638E-05],"mems":[[198.02073,-2.5779E-05],[198.02392,-2.6295E-05],[198.0271,-2.7842E-05],[198.03029,-3.3513E-05],[198.03348,-3.4029E-05],[198.03667,-2.9389E-05],[198.03986,-2.9904E-05],[198.04304,-2.6811E-05],[198.04623,-2.7326E-05],[198.04942,-2.9904E-05],[198.05261,-2.8357E-05],[198.0558,-3.0935E-05],[198.05898,-2.8357E-05],[198.06217,-2.6811E-05],[198.06536,-3.1451E-05],[198.06855,-3.042E-05],[198.07174,-3.2482E-05],[198.07492,-3.2998E-05],[198.07811,-2.5779E-05],[198.0813,-2.8357E-05],[198.08449,-2.9389E-05],[198.08768,-2.7326E-05],[198.09086,-3.042E-05],[198.09405,-2.7326E-05],[198.09724,-2.8357E-05],[198.10043,-2.9389E-05],[198.10362,-2.7842E-05],[198.1068,-3.2482E-05],[198.10999,-3.2998E-05],[198.11318,-3.4544E-05],[198.11637,-3.4029E-05],[198.11956,-2.9389E-05],[198.12274,-3.1451E-05],[198.12593,-3.1967E-05],[198.12912,-3.1967E-05],[198.13231,-3.0935E-05],[198.1355,-3.2482E-05],[198.13868,-3.8154E-05],[198.14187,-3.042E-05],[198.14506,-2.5264E-05],[198.14825,-2.8873E-05],[198.15144,-2.4748E-05],[198.15462,-2.5264E-05],[198.15781,-2.9389E-05],[198.161,-2.9904E-05],[198.16419,-2.8357E-05],[198.16738,-2.6811E-05],[198.17056,-3.1451E-05],[198.17375,-3.3513E-05],[198.17694,-3.2998E-05],[198.18013,-3.1967E-05],[198.18332,-3.1967E-05],[198.1865,-3.5576E-05],[198.18969,-3.2998E-05],[198.19288,-2.8357E-05],[198.19607,-2.7842E-05],[198.19926,-2.9389E-05],[198.20244,-3.1451E-05],[198.20563,-3.1967E-05],[198.20882,-2.8873E-05],[198.21201,-2.7842E-05],[198.2152,-3.4029E-05],[198.21838,-3.1967E-05],[198.22157,-3.3513E-05],[198.22476,-3.0935E-05],[198.22795,-2.5264E-05],[198.23114,-3.0935E-05],[198.23432,-2.8873E-05],[198.23751,-3.042E-05],[198.2407,-2.8357E-05],[198.24389,-2.6295E-05],[198.24708,-2.9389E-05],[198.25026,-2.9904E-05],[198.25345,-3.6607E-05],[198.25664,-3.0935E-05],[198.25983,-2.9389E-05],[198.26302,-2.8873E-05],[198.2662,-2.2686E-05],[198.26939,-2.8357E-05],[198.27258,-2.8357E-05],[198.27577,-3.0935E-05],[198.27896,-3.2482E-05],[198.28214,-2.7842E-05],[198.28533,-2.6295E-05],[198.28852,-2.6295E-05],[198.29171,-3.042E-05],[198.2949,-2.8873E-05],[198.29808,-2.4748E-05],[198.30127,-3.042E-05],[198.30446,-3.4544E-05],[198.30765,-2.9389E-05],[198.31084,-2.8873E-05],[198.31402,-2.7326E-05],[198.31721,-2.8873E-05],[198.3204,-3.1451E-05]]}
-{"quant":[198.628,-2.992E-05],"mems":[[198.53081,-3.5576E-05],[198.534,-3.506E-05],[198.53718,-2.9904E-05],[198.54037,-3.1967E-05],[198.54356,-3.0935E-05],[198.54675,-2.6295E-05],[198.54994,-2.7842E-05],[198.55312,-2.5779E-05],[198.55631,-2.5779E-05],[198.5595,-3.1451E-05],[198.56269,-2.9389E-05],[198.56588,-3.042E-05],[198.56906,-3.2998E-05],[198.57225,-3.2482E-05],[198.57544,-3.1451E-05],[198.57863,-3.1451E-05],[198.58182,-3.4544E-05],[198.585,-3.2998E-05],[198.58819,-3.1967E-05],[198.59138,-3.1451E-05],[198.59457,-2.9389E-05],[198.59776,-3.1451E-05],[198.60094,-3.0935E-05],[198.60413,-2.9904E-05],[198.60732,-3.4544E-05],[198.61051,-3.1451E-05],[198.6137,-2.6811E-05],[198.61688,-3.042E-05],[198.62007,-2.9904E-05],[198.62326,-2.6811E-05],[198.62645,-2.7842E-05],[198.62964,-3.0935E-05],[198.63282,-3.042E-05],[198.63601,-2.8357E-05],[198.6392,-2.8873E-05],[198.64239,-3.1451E-05],[198.64558,-3.0935E-05],[198.64876,-2.6811E-05],[198.65195,-2.7842E-05],[198.65514,-2.8873E-05],[198.65833,-3.2998E-05],[198.66152,-3.0935E-05],[198.6647,-2.7326E-05],[198.66789,-3.1967E-05],[198.67108,-2.8357E-05],[198.67427,-2.8873E-05],[198.67746,-3.2482E-05],[198.68064,-2.9389E-05],[198.68383,-3.2482E-05],[198.68702,-3.3513E-05],[198.69021,-3.3513E-05],[198.6934,-3.2998E-05],[198.69658,-3.2482E-05],[198.69977,-3.1967E-05],[198.70296,-2.9389E-05],[198.70615,-3.1451E-05],[198.70934,-3.2482E-05],[198.71252,-3.0935E-05],[198.71571,-2.6295E-05],[198.7189,-2.5779E-05],[198.72209,-2.6811E-05],[198.72528,-2.4233E-05],[198.72846,-2.6295E-05],[198.73165,-3.042E-05],[198.73484,-3.2482E-05],[198.73803,-3.1451E-05],[198.74122,-3.3513E-05],[198.7444,-3.2482E-05],[198.74759,-2.8357E-05],[198.75078,-3.1967E-05],[198.75397,-3.3513E-05],[198.75716,-3.506E-05],[198.76034,-3.4029E-05],[198.76353,-2.8357E-05],[198.76672,-2.8873E-05],[198.76991,-2.8357E-05],[198.7731,-2.9389E-05],[198.77628,-2.9389E-05],[198.77947,-2.8873E-05],[198.78266,-3.2998E-05],[198.78585,-3.2998E-05],[198.78904,-2.6811E-05],[198.79222,-3.1451E-05],[198.79541,-3.6091E-05],[198.7986,-2.8357E-05],[198.80179,-2.9389E-05],[198.80498,-2.8873E-05],[198.80816,-2.7326E-05],[198.81135,-3.4544E-05],[198.81454,-3.5576E-05],[198.81773,-2.9904E-05],[198.82092,-2.7326E-05],[198.8241,-3.1967E-05],[198.82729,-3.1967E-05],[198.83048,-3.1967E-05]]}
-{"quant":[199.116,-2.9833E-05],"mems":[[199.01727,-2.9904E-05],[199.02076,-2.9904E-05],[199.02425,-3.1967E-05],[199.02773,-3.1451E-05],[199.03122,-2.7326E-05],[199.03471,-2.7842E-05],[199.03819,-2.8873E-05],[199.04168,-3.1451E-05],[199.04517,-2.9389E-05],[199.04865,-2.9904E-05],[199.05214,-3.1967E-05],[199.05563,-2.8873E-05],[199.05911,-3.2998E-05],[199.0626,-3.2998E-05],[199.06609,-3.1451E-05],[199.06957,-2.9389E-05],[199.07306,-2.8357E-05],[199.07655,-3.2998E-05],[199.08003,-2.9904E-05],[199.08352,-2.6811E-05],[199.08701,-2.7842E-05],[199.09049,-3.042E-05],[199.09398,-3.2482E-05],[199.09747,-2.9904E-05],[199.10095,-3.042E-05],[199.10444,-2.8873E-05],[199.10793,-2.5264E-05],[199.11141,-2.8873E-05],[199.1149,-3.0935E-05],[199.11839,-3.3513E-05],[199.12187,-3.4029E-05],[199.12536,-2.8873E-05],[199.12885,-2.8357E-05],[199.13233,-2.9389E-05],[199.13582,-3.1451E-05],[199.13931,-3.506E-05],[199.14279,-3.7122E-05],[199.14628,-3.5576E-05],[199.14977,-2.9904E-05],[199.15325,-2.4233E-05],[199.15674,-2.5264E-05],[199.16023,-2.9389E-05],[199.16371,-2.7326E-05],[199.1672,-2.9389E-05],[199.17069,-2.9389E-05],[199.17417,-2.8357E-05],[199.17766,-3.0935E-05],[199.18115,-2.9904E-05],[199.18463,-2.8357E-05],[199.18812,-3.0935E-05],[199.19161,-3.042E-05],[199.19509,-2.7842E-05],[199.19858,-3.2482E-05],[199.20207,-3.1451E-05],[199.20555,-2.8873E-05],[199.20904,-2.8873E-05],[199.21253,-2.3202E-05],[199.21601,-2.5264E-05],[199.2195,-3.1967E-05],[199.22299,-3.3513E-05],[199.22647,-3.042E-05],[199.22996,-2.9904E-05],[199.23345,-2.9904E-05],[199.23693,-2.6811E-05],[199.24042,-3.0935E-05],[199.24391,-3.2998E-05],[199.24739,-2.9389E-05],[199.25088,-2.9389E-05],[199.25437,-2.8357E-05],[199.25785,-3.042E-05],[199.26134,-3.6091E-05],[199.26483,-3.1967E-05],[199.26831,-3.1967E-05],[199.2718,-3.0935E-05],[199.27529,-2.7326E-05],[199.27877,-3.042E-05],[199.28226,-2.9904E-05],[199.28575,-2.6811E-05],[199.28923,-2.5779E-05],[199.29272,-2.6811E-05],[199.29621,-2.7326E-05],[199.29969,-2.9904E-05],[199.30318,-3.042E-05],[199.30667,-3.1967E-05],[199.31015,-3.4029E-05],[199.31364,-2.5264E-05],[199.31713,-2.5264E-05]]}
-{"quant":[199.939,-2.9698E-05],"mems":[[199.84013,-3.4544E-05],[199.84361,-2.5779E-05],[199.8471,-2.6295E-05],[199.85059,-3.042E-05],[199.85407,-2.8357E-05],[199.85756,-2.6811E-05],[199.86105,-2.8357E-05],[199.86453,-3.1967E-05],[199.86802,-3.4029E-05],[199.87151,-3.4029E-05],[199.87499,-3.2482E-05],[199.87848,-3.3513E-05],[199.88197,-2.7326E-05],[199.88545,-2.4233E-05],[199.88894,-2.7326E-05],[199.89243,-2.9389E-05],[199.89591,-3.4544E-05],[199.8994,-2.8357E-05],[199.90289,-2.8873E-05],[199.90637,-3.042E-05],[199.90986,-2.8873E-05],[199.91335,-3.2998E-05],[199.91683,-2.8873E-05],[199.92032,-3.0935E-05],[199.92381,-3.2482E-05],[199.92729,-2.9904E-05],[199.93078,-3.042E-05],[199.93427,-2.8873E-05],[199.93775,-2.4233E-05],[199.94124,-2.4233E-05],[199.94473,-3.2482E-05],[199.94821,-3.4029E-05],[199.9517,-3.2482E-05],[199.95519,-2.8357E-05],[199.95867,-2.6295E-05],[199.96216,-2.3717E-05],[199.96565,-2.7326E-05],[199.96913,-3.1967E-05],[199.97262,-2.6811E-05],[199.97611,-3.042E-05],[199.97959,-2.9904E-05],[199.98308,-2.6811E-05],[199.98657,-3.1451E-05],[199.99005,-2.8873E-05],[199.99354,-2.7842E-05],[199.99703,-2.6811E-05],[200.00051,-2.6811E-05],[200.004,-2.9904E-05],[200.00749,-3.042E-05],[200.01097,-3.042E-05],[200.01446,-3.3513E-05],[200.01795,-3.2482E-05],[200.02143,-2.7326E-05],[200.02492,-2.7326E-05],[200.02841,-2.9389E-05],[200.03189,-3.4544E-05],[200.03538,-3.506E-05],[200.03887,-3.042E-05],[200.04235,-3.3513E-05],[200.04584,-3.042E-05],[200.04933,-2.7842E-05],[200.05281,-3.5576E-05],[200.0563,-3.1451E-05],[200.05979,-2.7326E-05],[200.06327,-3.1967E-05],[200.06676,-2.7842E-05],[200.07025,-2.7842E-05],[200.07373,-3.506E-05],[200.07722,-3.1451E-05],[200.08071,-2.7842E-05],[200.08419,-2.8357E-05],[200.08768,-2.7326E-05],[200.09117,-3.0935E-05],[200.09465,-3.2482E-05],[200.09814,-2.9904E-05],[200.10163,-2.7842E-05],[200.10511,-2.6295E-05],[200.1086,-2.8357E-05],[200.11209,-3.1451E-05],[200.11557,-3.506E-05],[200.11906,-3.4029E-05],[200.12255,-2.7326E-05],[200.12603,-2.9389E-05],[200.12952,-3.2482E-05],[200.13301,-3.0935E-05],[200.13649,-3.2998E-05],[200.13998,-3.1451E-05]]}
-{"quant":[200.467,-2.9681E-05],"mems":[[200.3701,-2.5264E-05],[200.37359,-2.4233E-05],[200.37707,-2.9389E-05],[200.38056,-2.7326E-05],[200.38405,-2.5779E-05],[200.38753,-2.3717E-05],[200.39102,-2.3717E-05],[200.39451,-2.5779E-05],[200.39799,-3.1967E-05],[200.40148,-2.9904E-05],[200.40497,-2.7842E-05],[200.40845,-3.0935E-05],[200.41194,-2.7326E-05],[200.41543,-3.1451E-05],[200.41891,-3.4544E-05],[200.4224,-2.8873E-05],[200.42589,-2.7842E-05],[200.42937,-3.1451E-05],[200.43286,-3.2482E-05],[200.43635,-3.1967E-05],[200.43983,-3.1451E-05],[200.44332,-3.1967E-05],[200.44681,-2.5779E-05],[200.45029,-2.1655E-05],[200.45378,-2.9389E-05],[200.45727,-3.042E-05],[200.46075,-3.042E-05],[200.46424,-3.1451E-05],[200.46773,-2.9389E-05],[200.47121,-2.7326E-05],[200.4747,-2.8357E-05],[200.47819,-3.1451E-05],[200.48167,-2.8357E-05],[200.48516,-2.9904E-05],[200.48865,-3.1451E-05],[200.49213,-3.042E-05],[200.49562,-3.0935E-05],[200.49911,-3.2482E-05],[200.50259,-3.2998E-05],[200.50608,-2.9389E-05],[200.50957,-2.8873E-05],[200.51305,-3.042E-05],[200.51654,-2.8357E-05],[200.52003,-2.6295E-05],[200.52351,-3.1451E-05],[200.527,-3.4544E-05],[200.53049,-3.042E-05],[200.53397,-2.8357E-05],[200.53746,-2.7326E-05],[200.54095,-3.042E-05],[200.54443,-3.4029E-05],[200.54792,-3.042E-05],[200.55141,-2.4233E-05],[200.55489,-2.6295E-05],[200.55838,-3.2482E-05],[200.56187,-2.9389E-05],[200.56535,-2.7326E-05],[200.56884,-2.7326E-05],[200.57233,-2.8873E-05],[200.57581,-2.8873E-05],[200.5793,-2.9904E-05],[200.58279,-3.042E-05],[200.58627,-2.5264E-05],[200.58976,-3.042E-05],[200.59325,-3.1451E-05],[200.59673,-3.1451E-05],[200.60022,-3.5576E-05],[200.60371,-3.042E-05],[200.60719,-2.9904E-05],[200.61068,-3.0935E-05],[200.61417,-2.7842E-05],[200.61765,-2.7842E-05],[200.62114,-2.9904E-05],[200.62463,-2.9389E-05],[200.62811,-2.7842E-05],[200.6316,-2.8873E-05],[200.63509,-2.6295E-05],[200.63857,-2.7842E-05],[200.64206,-3.3513E-05],[200.64555,-3.1967E-05],[200.64903,-2.7842E-05],[200.65252,-2.6295E-05],[200.65601,-2.7326E-05],[200.65949,-2.7326E-05],[200.66298,-3.0935E-05],[200.66647,-2.9904E-05],[200.66995,-2.7842E-05]]}
-{"quant":[200.947,-3.0076E-05],"mems":[[200.84777,-2.9389E-05],[200.85126,-2.9389E-05],[200.85475,-2.8873E-05],[200.85823,-2.7842E-05],[200.86172,-2.7326E-05],[200.86521,-3.042E-05],[200.86869,-3.0935E-05],[200.87218,-3.042E-05],[200.87567,-3.042E-05],[200.87915,-3.042E-05],[200.88264,-2.9389E-05],[200.88613,-2.8873E-05],[200.88961,-2.8357E-05],[200.8931,-2.4748E-05],[200.89659,-2.4748E-05],[200.90007,-2.6295E-05],[200.90356,-2.6295E-05],[200.90705,-2.7842E-05],[200.91053,-2.9904E-05],[200.91402,-2.7842E-05],[200.91751,-2.4233E-05],[200.92099,-2.6811E-05],[200.92448,-3.3513E-05],[200.92797,-3.2482E-05],[200.93145,-2.8873E-05],[200.93494,-2.6295E-05],[200.93843,-2.4748E-05],[200.94191,-2.8873E-05],[200.9454,-3.1451E-05],[200.94889,-3.042E-05],[200.95237,-2.8873E-05],[200.95586,-2.5779E-05],[200.95935,-2.4233E-05],[200.96283,-2.7842E-05],[200.96632,-3.2482E-05],[200.96981,-2.7842E-05],[200.97329,-2.7842E-05],[200.97678,-3.2482E-05],[200.98027,-2.9904E-05],[200.98375,-3.1967E-05],[200.98724,-3.1451E-05],[200.99073,-3.1967E-05],[200.99421,-3.4544E-05],[200.9977,-3.1967E-05],[201.00119,-3.1451E-05],[201.00467,-2.8873E-05],[201.00816,-3.2482E-05],[201.01165,-3.506E-05],[201.01513,-3.2482E-05],[201.01862,-2.7842E-05],[201.02211,-2.9904E-05],[201.02559,-3.4029E-05],[201.02908,-2.8357E-05],[201.03257,-3.042E-05],[201.03605,-2.7842E-05],[201.03954,-2.5264E-05],[201.04303,-3.1451E-05],[201.04651,-3.1451E-05],[201.05,-2.5779E-05],[201.05349,-2.6811E-05],[201.05697,-2.7842E-05],[201.06046,-2.7326E-05],[201.06395,-3.4544E-05],[201.06743,-3.4544E-05],[201.07092,-2.9389E-05],[201.07441,-2.8873E-05],[201.07789,-3.0935E-05],[201.08138,-3.1967E-05],[201.08487,-3.4544E-05],[201.08835,-3.0935E-05],[201.09184,-2.8357E-05],[201.09533,-2.9904E-05],[201.09881,-3.042E-05],[201.1023,-3.1967E-05],[201.10579,-2.8873E-05],[201.10927,-3.0935E-05],[201.11276,-2.8357E-05],[201.11625,-2.8357E-05],[201.11973,-2.8357E-05],[201.12322,-2.4748E-05],[201.12671,-3.2482E-05],[201.13019,-3.3513E-05],[201.13368,-3.4029E-05],[201.13717,-3.1451E-05],[201.14065,-2.5264E-05],[201.14414,-2.7842E-05],[201.14763,-3.3513E-05]]}
-{"quant":[201.438,1.1474],"mems":[[201.34985,-3.1967E-05],[201.35334,-2.8357E-05],[201.35683,-2.8357E-05],[201.36031,-2.4748E-05],[201.3638,-2.4233E-05],[201.36729,-3.1967E-05],[201.37077,-2.9389E-05],[201.37426,-3.0935E-05],[201.37775,-3.042E-05],[201.38123,-2.5779E-05],[201.38472,-3.2482E-05],[201.38821,-3.2482E-05],[201.39169,-2.9389E-05],[201.39518,-3.042E-05],[201.39867,-3.0935E-05],[201.40215,-2.9904E-05],[201.40564,-2.9389E-05],[201.40913,-3.2482E-05],[201.41261,-3.0935E-05],[201.4161,-3.042E-05],[201.41959,-3.1451E-05],[201.42307,-2.5779E-05],[201.42656,-2.7842E-05],[201.43005,-3.2482E-05],[201.43353,-2.7842E-05],[201.43702,-3.0935E-05],[201.44051,-3.506E-05],[201.44399,-2.9904E-05],[201.44748,-3.2998E-05],[201.45097,-3.6607E-05],[201.45445,-3.2998E-05],[201.45794,-3.0935E-05],[201.46143,-2.8357E-05],[201.46491,-2.9904E-05],[201.4684,-3.0935E-05],[201.47189,-3.1967E-05],[201.47537,-2.9389E-05],[201.47886,-3.2998E-05],[201.48235,-3.506E-05],[201.48583,-2.8873E-05],[201.48932,-3.4544E-05],[201.49281,-3.5576E-05],[201.49629,-2.9904E-05],[201.49978,-2.7326E-05],[201.50327,-3.1451E-05],[201.50675,-2.9389E-05],[201.51024,-2.8873E-05],[201.51373,-3.2482E-05],[201.51721,-2.6811E-05],[201.5207,-2.7326E-05],[201.52419,-2.6811E-05],[201.52767,-3.2482E-05],[201.53116,-3.4544E-05],[201.53465,-2.7326E-05],[201.53813,-3.1451E-05],[201.54162,-3.1451E-05],[201.54511,-3.0935E-05],[201.54859,-3.0935E-05],[201.55208,-2.8357E-05],[201.55557,-3.0935E-05],[201.55905,-2.9904E-05],[201.56254,-2.6811E-05],[201.56603,-2.6811E-05],[201.56951,-2.8357E-05],[201.573,-2.9904E-05],[201.57642,-2.9904E-05],[201.57983,-2.9389E-05],[201.58325,-2.6811E-05],[201.58667,-2.7326E-05],[201.59009,-3.3513E-05],[201.5935,-3.1451E-05],[201.59692,-3.042E-05],[201.60034,-2.9904E-05],[201.60376,-2.6811E-05],[201.60717,-3.0935E-05],[201.61059,-3.2998E-05],[201.61401,-3.0935E-05],[201.61743,-2.7842E-05],[201.62084,-2.7326E-05],[201.62426,-2.6811E-05],[201.62768,-3.042E-05],[201.63109,-3.042E-05],[201.63451,-3.042E-05],[201.63793,-3.2482E-05],[201.64135,-2.6295E-05],[201.64476,-2.6295E-05],[201.64818,-2.7326E-05],[201.6516,-2.9389E-05]]}
-{"quant":[201.91,-3.0248E-05],"mems":[[201.81221,-3.2482E-05],[201.81563,-2.9904E-05],[201.81905,-2.7326E-05],[201.82247,-2.6295E-05],[201.82588,-3.1967E-05],[201.8293,-3.042E-05],[201.83272,-3.1967E-05],[201.83613,-3.1451E-05],[201.83955,-3.0935E-05],[201.84297,-3.2482E-05],[201.84639,-2.7842E-05],[201.8498,-3.1967E-05],[201.85322,-3.1451E-05],[201.85664,-2.9389E-05],[201.86006,-3.042E-05],[201.86347,-2.4233E-05],[201.86689,-2.7842E-05],[201.87031,-3.2482E-05],[201.87373,-2.9904E-05],[201.87714,-3.1967E-05],[201.88056,-3.3513E-05],[201.88398,-3.042E-05],[201.88739,-3.1967E-05],[201.89081,-3.2482E-05],[201.89423,-3.1967E-05],[201.89765,-3.0935E-05],[201.90106,-3.042E-05],[201.90448,-3.1451E-05],[201.9079,-3.5576E-05],[201.91132,-3.506E-05],[201.91473,-2.8357E-05],[201.91815,-2.9904E-05],[201.92157,-2.8357E-05],[201.92499,-2.6811E-05],[201.9284,-3.0935E-05],[201.93182,-3.2998E-05],[201.93524,-3.2482E-05],[201.93865,-3.1967E-05],[201.94207,-2.9904E-05],[201.94549,-2.9904E-05],[201.94891,-3.0935E-05],[201.95232,-2.7842E-05],[201.95574,-2.9904E-05],[201.95916,-2.8873E-05],[201.96258,-3.1451E-05],[201.96599,-3.2998E-05],[201.96941,-2.9904E-05],[201.97283,-2.8357E-05],[201.97625,-2.4233E-05],[201.97966,-2.8873E-05],[201.98308,-2.8357E-05],[201.9865,-2.9904E-05],[201.98991,-3.5576E-05],[201.99333,-2.8873E-05],[201.99675,-2.8873E-05],[202.00017,-3.1967E-05],[202.00358,-2.8873E-05],[202.007,-3.1967E-05],[202.01042,-3.2998E-05],[202.01384,-2.6811E-05],[202.01725,-2.8873E-05],[202.02067,-3.1451E-05],[202.02409,-2.9904E-05],[202.02751,-2.8357E-05],[202.03092,-2.7842E-05],[202.03434,-3.042E-05],[202.03776,-2.9389E-05],[202.04117,-2.9389E-05],[202.04459,-2.9389E-05],[202.04801,-2.8357E-05],[202.05143,-3.0935E-05],[202.05484,-3.0935E-05],[202.05826,-2.9389E-05],[202.06168,-2.4233E-05],[202.0651,-2.6811E-05],[202.06851,-2.8873E-05],[202.07193,-2.6295E-05],[202.07535,-3.2482E-05],[202.07877,-3.1967E-05],[202.08218,-3.0935E-05],[202.0856,-3.1967E-05],[202.08902,-3.042E-05],[202.09243,-3.2998E-05],[202.09585,-2.9389E-05],[202.09927,-2.9389E-05],[202.10269,-3.1451E-05],[202.1061,-2.8873E-05],[202.10952,-3.2482E-05],[202.11294,-3.3513E-05]]}
-{"quant":[202.403,-3.0553E-05],"mems":[[202.30431,-2.8873E-05],[202.30773,-2.8357E-05],[202.31114,-3.042E-05],[202.31456,-3.4029E-05],[202.31798,-3.0935E-05],[202.3214,-2.7842E-05],[202.32481,-3.0935E-05],[202.32823,-3.1967E-05],[202.33165,-3.3513E-05],[202.33507,-3.3513E-05],[202.33848,-2.6811E-05],[202.3419,-2.8357E-05],[202.34532,-2.8357E-05],[202.34873,-3.042E-05],[202.35215,-3.2482E-05],[202.35557,-3.2482E-05],[202.35899,-3.2998E-05],[202.3624,-2.5264E-05],[202.36582,-2.5779E-05],[202.36924,-2.4233E-05],[202.37266,-2.5264E-05],[202.37607,-3.2482E-05],[202.37949,-3.042E-05],[202.38291,-3.1451E-05],[202.38633,-2.9904E-05],[202.38974,-2.9904E-05],[202.39316,-2.9904E-05],[202.39658,-2.6295E-05],[202.39999,-2.8873E-05],[202.40341,-3.0935E-05],[202.40683,-3.2998E-05],[202.41025,-3.6091E-05],[202.41366,-3.1451E-05],[202.41708,-2.9389E-05],[202.4205,-2.9389E-05],[202.42392,-2.7842E-05],[202.42733,-2.7326E-05],[202.43075,-3.0935E-05],[202.43417,-3.4544E-05],[202.43759,-2.8357E-05],[202.441,-2.7326E-05],[202.44442,-3.1451E-05],[202.44784,-3.042E-05],[202.45125,-2.9389E-05],[202.45467,-3.042E-05],[202.45809,-2.8873E-05],[202.46151,-2.8357E-05],[202.46492,-3.2482E-05],[202.46834,-3.3513E-05],[202.47176,-3.2482E-05],[202.47518,-2.9904E-05],[202.47859,-2.7326E-05],[202.48201,-3.0935E-05],[202.48543,-3.2998E-05],[202.48885,-3.2998E-05],[202.49226,-3.506E-05],[202.49568,-3.0935E-05],[202.4991,-2.7842E-05],[202.50251,-2.8357E-05],[202.50593,-2.6811E-05],[202.50935,-3.042E-05],[202.51277,-3.1967E-05],[202.51618,-3.1451E-05],[202.5196,-3.1967E-05],[202.52302,-2.8357E-05],[202.52644,-3.042E-05],[202.52985,-2.9904E-05],[202.53327,-2.7326E-05],[202.53669,-3.2482E-05],[202.54011,-3.1967E-05],[202.54352,-3.042E-05],[202.54694,-3.2482E-05],[202.55036,-3.042E-05],[202.55377,-2.9389E-05],[202.55719,-2.6811E-05],[202.56061,-2.8873E-05],[202.56403,-3.042E-05],[202.56744,-3.0935E-05],[202.57086,-3.2482E-05],[202.57428,-2.8873E-05],[202.5777,-2.8357E-05],[202.58111,-3.1451E-05],[202.58453,-3.3513E-05],[202.58795,-3.1967E-05],[202.59137,-2.9389E-05],[202.59478,-2.6295E-05],[202.5982,-2.7842E-05],[202.60162,-2.9904E-05],[202.60503,-3.042E-05]]}
-{"quant":[203.067,-2.9629E-05],"mems":[[202.96727,-3.3513E-05],[202.97069,-3.4544E-05],[202.97411,-2.7842E-05],[202.97752,-3.4029E-05],[202.98094,-3.4544E-05],[202.98436,-3.1967E-05],[202.98778,-3.2998E-05],[202.99119,-2.7842E-05],[202.99461,-3.042E-05],[202.99803,-2.9904E-05],[203.00145,-2.8873E-05],[203.00486,-3.0935E-05],[203.00828,-3.0935E-05],[203.0117,-3.0935E-05],[203.01511,-2.8357E-05],[203.01853,-2.7842E-05],[203.02195,-3.042E-05],[203.02537,-3.042E-05],[203.02878,-3.042E-05],[203.0322,-2.8873E-05],[203.03562,-2.6811E-05],[203.03904,-3.2998E-05],[203.04245,-3.2998E-05],[203.04587,-3.042E-05],[203.04929,-2.8873E-05],[203.05271,-2.8873E-05],[203.05612,-3.0935E-05],[203.05954,-3.042E-05],[203.06296,-3.2482E-05],[203.06637,-2.7842E-05],[203.06979,-3.1451E-05],[203.07321,-3.042E-05],[203.07663,-2.4748E-05],[203.08004,-2.9904E-05],[203.08346,-2.8873E-05],[203.08688,-3.2482E-05],[203.0903,-3.4544E-05],[203.09371,-3.1967E-05],[203.09713,-3.1967E-05],[203.10055,-3.3513E-05],[203.10397,-2.8873E-05],[203.10738,-2.9389E-05],[203.1108,-3.3513E-05],[203.11422,-2.7842E-05],[203.11763,-2.9389E-05],[203.12105,-2.9904E-05],[203.12447,-3.1967E-05],[203.12789,-3.3513E-05],[203.1313,-2.5779E-05],[203.13472,-2.217E-05],[203.13814,-2.5264E-05],[203.14156,-2.8357E-05],[203.14497,-2.8873E-05],[203.14839,-2.7326E-05],[203.15181,-3.2482E-05],[203.15523,-2.9904E-05],[203.15864,-2.2686E-05],[203.16206,-2.9389E-05],[203.16548,-3.0935E-05],[203.16889,-3.1451E-05],[203.17231,-3.0935E-05],[203.17573,-2.7326E-05],[203.17915,-3.042E-05],[203.18256,-2.8357E-05],[203.18598,-2.8873E-05],[203.1894,-2.9389E-05],[203.19282,-2.6295E-05],[203.19623,-2.9904E-05],[203.19965,-3.1967E-05],[203.20307,-2.7326E-05],[203.20649,-2.4748E-05],[203.2099,-2.7326E-05],[203.21332,-2.6295E-05],[203.21674,-2.4233E-05],[203.22015,-3.3513E-05],[203.22357,-3.7122E-05],[203.22699,-3.3513E-05],[203.23041,-3.3513E-05],[203.23382,-2.5264E-05],[203.23724,-2.4748E-05],[203.24066,-3.1451E-05],[203.24408,-3.1967E-05],[203.24749,-3.1451E-05],[203.25091,-2.7326E-05],[203.25433,-2.7326E-05],[203.25775,-3.0935E-05],[203.26116,-2.3717E-05],[203.26458,-2.7326E-05],[203.268,-3.2998E-05]]}
-{"quant":[203.532,-2.9526E-05],"mems":[[203.43203,-2.8357E-05],[203.43545,-2.4233E-05],[203.43886,-2.8873E-05],[203.44228,-3.2482E-05],[203.4457,-2.8357E-05],[203.44912,-2.5779E-05],[203.45253,-2.2686E-05],[203.45595,-2.9389E-05],[203.45937,-3.2482E-05],[203.46279,-2.8357E-05],[203.4662,-2.7326E-05],[203.46962,-2.8357E-05],[203.47304,-2.9389E-05],[203.47645,-3.1451E-05],[203.47987,-3.3513E-05],[203.48329,-3.2482E-05],[203.48671,-3.7638E-05],[203.49012,-3.3513E-05],[203.49354,-2.6295E-05],[203.49696,-3.042E-05],[203.50038,-3.1451E-05],[203.50379,-3.0935E-05],[203.50721,-3.0935E-05],[203.51063,-2.8873E-05],[203.51405,-2.8357E-05],[203.51746,-3.0935E-05],[203.52088,-3.3513E-05],[203.5243,-3.1967E-05],[203.52771,-2.9904E-05],[203.53113,-2.9904E-05],[203.53455,-2.7326E-05],[203.53797,-3.1967E-05],[203.54138,-3.506E-05],[203.5448,-3.042E-05],[203.54822,-3.042E-05],[203.55164,-2.9389E-05],[203.55505,-3.1451E-05],[203.55847,-3.2998E-05],[203.56189,-3.1967E-05],[203.56531,-3.1967E-05],[203.56872,-2.7326E-05],[203.57214,-2.6295E-05],[203.57556,-3.1451E-05],[203.57897,-3.042E-05],[203.58239,-2.7326E-05],[203.58581,-3.0935E-05],[203.58923,-2.8357E-05],[203.59264,-2.5264E-05],[203.59606,-3.0935E-05],[203.59948,-3.2482E-05],[203.6029,-3.1967E-05],[203.60631,-2.8357E-05],[203.60973,-2.4233E-05],[203.61315,-2.8357E-05],[203.61657,-3.0935E-05],[203.61998,-2.9904E-05],[203.6234,-2.7326E-05],[203.62682,-2.5779E-05],[203.63023,-2.7326E-05],[203.63365,-2.7842E-05],[203.63707,-2.8357E-05],[203.64049,-3.1451E-05],[203.6439,-3.1451E-05],[203.64732,-3.2998E-05],[203.65074,-3.3513E-05],[203.65416,-2.6811E-05],[203.65757,-3.1451E-05],[203.66099,-3.2482E-05],[203.66441,-2.8873E-05],[203.66783,-3.1451E-05],[203.67124,-2.7326E-05],[203.67466,-2.7842E-05],[203.67808,-3.1451E-05],[203.68149,-2.9389E-05],[203.68491,-2.6811E-05],[203.68833,-2.8357E-05],[203.69175,-2.7326E-05],[203.69516,-2.8357E-05],[203.69858,-2.8357E-05],[203.702,-2.6295E-05],[203.70542,-2.9904E-05],[203.70883,-2.9904E-05],[203.71225,-3.0935E-05],[203.71567,-3.2998E-05],[203.71909,-3.1451E-05],[203.7225,-3.2998E-05],[203.72592,-3.1451E-05],[203.72934,-2.8357E-05],[203.73275,-3.042E-05]]}
-{"quant":[204.012,-0.64196],"mems":[[203.91387,-3.1967E-05],[203.91729,-3.042E-05],[203.92071,-2.9904E-05],[203.92413,-3.2482E-05],[203.92754,-2.9389E-05],[203.93096,-2.7842E-05],[203.93438,-3.042E-05],[203.93779,-3.4544E-05],[203.94121,-3.2998E-05],[203.94463,-2.9904E-05],[203.94805,-2.9904E-05],[203.95146,-2.7326E-05],[203.95488,-3.0935E-05],[203.9583,-3.3513E-05],[203.96172,-2.9904E-05],[203.96513,-2.8873E-05],[203.96855,-2.6295E-05],[203.97197,-2.8873E-05],[203.97539,-2.7326E-05],[203.9788,-2.8873E-05],[203.98222,-3.4544E-05],[203.98564,-3.0935E-05],[203.98905,-2.7842E-05],[203.99247,-2.5779E-05],[203.99589,-2.9904E-05],[203.99931,-3.0935E-05],[204.00272,-2.5779E-05],[204.00614,-2.6811E-05],[204.00956,-2.7842E-05],[204.01298,-2.9904E-05],[204.01639,-3.0935E-05],[204.01981,-3.2998E-05],[204.02323,-3.3513E-05],[204.02665,-2.9389E-05],[204.03006,-2.9389E-05],[204.03348,-3.0935E-05],[204.0369,-2.9389E-05],[204.04031,-3.042E-05],[204.04373,-2.5779E-05],[204.04715,-2.3202E-05],[204.05057,-2.9904E-05],[204.05398,-3.2998E-05],[204.0574,-3.5576E-05],[204.06082,-3.0935E-05],[204.06424,-2.9389E-05],[204.06765,-3.1451E-05],[204.07107,-2.8357E-05],[204.07449,-3.2482E-05],[204.07791,-3.1967E-05],[204.08132,-2.9904E-05],[204.08474,-3.042E-05],[204.08816,-2.5779E-05],[204.09157,-2.7326E-05],[204.09499,-2.7842E-05],[204.09841,-2.8873E-05],[204.10183,-2.8873E-05],[204.10524,-2.4748E-05],[204.10866,-2.6811E-05],[204.11208,-2.7326E-05],[204.1155,-3.1451E-05],[204.11891,-3.4544E-05],[204.12233,-2.8357E-05],[204.12575,-2.9904E-05],[204.12917,-2.8873E-05],[204.13258,-2.9389E-05],[204.136,-3.4544E-05],[204.13949,-3.0935E-05],[204.14298,-3.2482E-05],[204.14646,-2.7326E-05],[204.14995,-2.3717E-05],[204.15344,-2.8357E-05],[204.15693,-2.6811E-05],[204.16042,-2.4748E-05],[204.1639,-2.8357E-05],[204.16739,-3.2482E-05],[204.17088,-2.8873E-05],[204.17437,-3.1451E-05],[204.17786,-2.7842E-05],[204.18134,-2.1655E-05],[204.18483,-2.8357E-05],[204.18832,-2.6295E-05],[204.19181,-2.5779E-05],[204.1953,-2.5779E-05],[204.19878,-2.4233E-05],[204.20227,-2.6811E-05],[204.20576,-2.4748E-05],[204.20925,-2.7842E-05],[204.21274,-2.5264E-05]]}
-{"quant":[204.502,-3.0626E-05],"mems":[[204.40458,-2.9904E-05],[204.40806,-2.9904E-05],[204.41155,-3.2998E-05],[204.41504,-2.7842E-05],[204.41853,-2.9904E-05],[204.42202,-3.4544E-05],[204.4255,-2.4748E-05],[204.42899,-2.8357E-05],[204.43248,-3.0935E-05],[204.43597,-2.9389E-05],[204.43946,-3.1967E-05],[204.44294,-2.5264E-05],[204.44643,-2.6295E-05],[204.44992,-3.042E-05],[204.45341,-2.7842E-05],[204.4569,-3.042E-05],[204.46038,-2.9904E-05],[204.46387,-2.8873E-05],[204.46736,-3.4544E-05],[204.47085,-3.506E-05],[204.47434,-2.9904E-05],[204.47782,-2.8873E-05],[204.48131,-3.2998E-05],[204.4848,-3.4029E-05],[204.48829,-2.9904E-05],[204.49178,-2.8357E-05],[204.49526,-2.8873E-05],[204.49875,-2.8357E-05],[204.50224,-3.042E-05],[204.50573,-2.9904E-05],[204.50922,-2.6811E-05],[204.5127,-2.7326E-05],[204.51619,-3.042E-05],[204.51968,-3.3513E-05],[204.52317,-3.3513E-05],[204.52666,-2.9389E-05],[204.53014,-2.7842E-05],[204.53363,-2.9389E-05],[204.53712,-2.9389E-05],[204.54061,-3.042E-05],[204.5441,-3.3513E-05],[204.54758,-3.3513E-05],[204.55107,-2.9389E-05],[204.55456,-2.8357E-05],[204.55805,-3.2482E-05],[204.56154,-3.4544E-05],[204.56502,-3.2998E-05],[204.56851,-3.1451E-05],[204.572,-3.042E-05],[204.57549,-2.9904E-05],[204.57898,-2.8357E-05],[204.58246,-2.9389E-05],[204.58595,-3.042E-05],[204.58944,-2.8873E-05],[204.59293,-2.8873E-05],[204.59642,-3.042E-05],[204.5999,-3.3513E-05],[204.60339,-3.4029E-05],[204.60688,-3.1451E-05],[204.61037,-2.9904E-05],[204.61386,-2.6295E-05],[204.61734,-2.8357E-05],[204.62083,-3.6091E-05],[204.62432,-3.6607E-05],[204.62781,-3.1967E-05],[204.6313,-2.8357E-05],[204.63478,-2.5779E-05],[204.63827,-2.7326E-05],[204.64176,-3.042E-05],[204.64525,-2.9389E-05],[204.64874,-2.9389E-05],[204.65222,-2.8873E-05],[204.65571,-2.6295E-05],[204.6592,-2.5779E-05],[204.66269,-2.8357E-05],[204.66618,-3.1451E-05],[204.66966,-3.2998E-05],[204.67315,-3.3513E-05],[204.67664,-3.042E-05],[204.68013,-3.4029E-05],[204.68362,-3.1967E-05],[204.6871,-2.7326E-05],[204.69059,-2.9904E-05],[204.69408,-2.4233E-05],[204.69757,-2.8357E-05],[204.70106,-3.2998E-05],[204.70454,-2.9389E-05]]}
-{"quant":[205.251,-3.0884E-05],"mems":[[205.15101,-3.1451E-05],[205.1545,-2.9389E-05],[205.15798,-2.7326E-05],[205.16147,-3.1967E-05],[205.16496,-2.9904E-05],[205.16845,-2.9389E-05],[205.17194,-2.9904E-05],[205.17542,-2.8873E-05],[205.17891,-3.1451E-05],[205.1824,-2.8357E-05],[205.18589,-3.1451E-05],[205.18938,-3.4544E-05],[205.19286,-2.9389E-05],[205.19635,-3.3513E-05],[205.19984,-3.1967E-05],[205.20333,-2.7842E-05],[205.20682,-3.1967E-05],[205.2103,-3.1451E-05],[205.21379,-3.1967E-05],[205.21728,-3.0935E-05],[205.22077,-2.7842E-05],[205.22426,-2.8357E-05],[205.22774,-3.042E-05],[205.23123,-3.4544E-05],[205.23472,-3.4029E-05],[205.23821,-3.0935E-05],[205.2417,-2.6811E-05],[205.24518,-2.7326E-05],[205.24867,-2.7842E-05],[205.25216,-2.6811E-05],[205.25565,-3.1451E-05],[205.25914,-2.7842E-05],[205.26262,-2.8357E-05],[205.26611,-3.1451E-05],[205.2696,-3.506E-05],[205.27309,-3.506E-05],[205.27658,-2.9904E-05],[205.28006,-3.3513E-05],[205.28355,-2.9904E-05],[205.28704,-2.9389E-05],[205.29053,-3.2482E-05],[205.29402,-2.7326E-05],[205.2975,-2.9389E-05],[205.30099,-3.1451E-05],[205.30448,-3.1451E-05],[205.30797,-3.1451E-05],[205.31146,-3.2998E-05],[205.31494,-3.4544E-05],[205.31843,-3.1451E-05],[205.32192,-3.042E-05],[205.32541,-3.0935E-05],[205.3289,-2.9904E-05],[205.33238,-3.4029E-05],[205.33587,-3.2998E-05],[205.33936,-3.042E-05],[205.34285,-2.9389E-05],[205.34634,-2.8873E-05],[205.34982,-3.1967E-05],[205.35331,-2.6295E-05],[205.3568,-2.5779E-05],[205.36029,-2.9389E-05],[205.36378,-2.5264E-05],[205.36726,-2.9389E-05],[205.37075,-3.1967E-05],[205.37424,-2.9389E-05],[205.37773,-2.8357E-05],[205.38122,-2.8357E-05],[205.3847,-3.1451E-05],[205.38819,-2.8873E-05],[205.39168,-2.8357E-05],[205.39517,-3.1967E-05],[205.39866,-2.7842E-05],[205.40214,-2.7842E-05],[205.40563,-3.042E-05],[205.40912,-2.8873E-05],[205.41261,-2.9904E-05],[205.4161,-3.042E-05],[205.41958,-3.042E-05],[205.42307,-3.042E-05],[205.42656,-3.2482E-05],[205.43005,-3.2482E-05],[205.43354,-3.6091E-05],[205.43702,-3.506E-05],[205.44051,-3.0935E-05],[205.444,-3.1967E-05],[205.44749,-2.8357E-05],[205.45098,-2.8357E-05],[205.45446,-3.0935E-05]]}
-{"quant":[205.729,-2.9423E-05],"mems":[[205.63235,-3.1451E-05],[205.63584,-2.9904E-05],[205.63933,-2.7326E-05],[205.64282,-2.6811E-05],[205.6463,-3.0935E-05],[205.64979,-2.6295E-05],[205.65328,-2.9389E-05],[205.65677,-3.6091E-05],[205.66026,-3.0935E-05],[205.66374,-2.9389E-05],[205.66723,-2.7326E-05],[205.67072,-2.8357E-05],[205.67421,-3.0935E-05],[205.6777,-3.042E-05],[205.68118,-2.8873E-05],[205.68467,-2.5264E-05],[205.68816,-2.8357E-05],[205.69165,-3.2998E-05],[205.69514,-3.4029E-05],[205.69862,-3.4029E-05],[205.70211,-3.1967E-05],[205.7056,-3.042E-05],[205.70909,-2.8357E-05],[205.71258,-2.4233E-05],[205.71606,-2.7326E-05],[205.71955,-3.042E-05],[205.72304,-2.9904E-05],[205.72653,-2.9389E-05],[205.73002,-2.9389E-05],[205.7335,-2.8357E-05],[205.73699,-2.7842E-05],[205.74048,-3.1451E-05],[205.74397,-3.2482E-05],[205.74746,-2.5779E-05],[205.75094,-2.5264E-05],[205.75443,-3.1967E-05],[205.75792,-3.3513E-05],[205.76141,-3.042E-05],[205.7649,-2.5264E-05],[205.76838,-2.5779E-05],[205.77187,-2.4233E-05],[205.77536,-2.8873E-05],[205.77885,-3.3513E-05],[205.78234,-3.4029E-05],[205.78582,-3.6091E-05],[205.78931,-2.8873E-05],[205.7928,-2.7326E-05],[205.79629,-2.9904E-05],[205.79978,-2.6811E-05],[205.80326,-2.5779E-05],[205.80675,-2.8873E-05],[205.81024,-2.9904E-05],[205.81373,-3.042E-05],[205.81722,-3.0935E-05],[205.8207,-2.8357E-05],[205.82419,-2.8873E-05],[205.82768,-3.042E-05],[205.83117,-3.1967E-05],[205.83466,-2.8357E-05],[205.83814,-2.9389E-05],[205.84163,-3.4029E-05],[205.84512,-2.8357E-05],[205.84861,-2.6811E-05],[205.8521,-2.6811E-05],[205.85558,-2.6295E-05],[205.85907,-2.9389E-05],[205.86256,-3.0935E-05],[205.86605,-3.1451E-05],[205.86954,-3.3513E-05],[205.87302,-3.042E-05],[205.87651,-3.0935E-05],[205.88,-3.0935E-05],[205.88349,-2.5779E-05],[205.88698,-2.9389E-05],[205.89046,-2.8357E-05],[205.89395,-2.8873E-05],[205.89744,-3.1451E-05],[205.90093,-3.042E-05],[205.90442,-3.0935E-05],[205.9079,-3.2482E-05],[205.91139,-2.8873E-05],[205.91488,-2.5264E-05],[205.91837,-3.0935E-05],[205.92186,-2.9904E-05],[205.92534,-3.0935E-05],[205.92883,-3.0935E-05],[205.93232,-2.4748E-05]]}
-{"quant":[206.197,-2.9904E-05],"mems":[[206.09974,-3.3513E-05],[206.10323,-3.3513E-05],[206.10672,-3.1967E-05],[206.11021,-2.9389E-05],[206.1137,-2.8357E-05],[206.11718,-3.506E-05],[206.12067,-3.3513E-05],[206.12416,-2.9904E-05],[206.12765,-3.1967E-05],[206.13114,-2.9904E-05],[206.13462,-2.8873E-05],[206.13811,-2.7326E-05],[206.1416,-3.4029E-05],[206.14509,-4.0216E-05],[206.14858,-3.3513E-05],[206.15206,-3.0935E-05],[206.15555,-2.9904E-05],[206.15904,-3.0935E-05],[206.16253,-3.2482E-05],[206.16602,-3.042E-05],[206.1695,-3.042E-05],[206.17299,-3.1451E-05],[206.17648,-3.1451E-05],[206.17997,-2.8357E-05],[206.18346,-3.1967E-05],[206.18694,-3.4029E-05],[206.19043,-2.8873E-05],[206.19392,-2.9389E-05],[206.19741,-3.1967E-05],[206.2009,-3.2998E-05],[206.20438,-3.1451E-05],[206.20787,-2.7842E-05],[206.21136,-2.6811E-05],[206.21485,-3.2482E-05],[206.21834,-3.2482E-05],[206.22182,-3.2482E-05],[206.22531,-3.1967E-05],[206.2288,-2.7842E-05],[206.23229,-3.3513E-05],[206.23578,-3.1451E-05],[206.23926,-2.5779E-05],[206.24275,-2.9389E-05],[206.24624,-3.042E-05],[206.24973,-3.042E-05],[206.25322,-2.9904E-05],[206.2567,-2.7842E-05],[206.26019,-3.1451E-05],[206.26368,-3.2482E-05],[206.26717,-2.7326E-05],[206.27066,-2.6295E-05],[206.27414,-2.4748E-05],[206.27763,-2.8357E-05],[206.28112,-3.506E-05],[206.28461,-3.2482E-05],[206.2881,-2.8873E-05],[206.29158,-2.6295E-05],[206.29507,-2.7326E-05],[206.29856,-2.9389E-05],[206.30205,-3.2482E-05],[206.30554,-3.4029E-05],[206.30902,-3.0935E-05],[206.31251,-2.8357E-05],[206.316,-2.8873E-05],[206.31949,-3.0935E-05],[206.32298,-3.042E-05],[206.32646,-3.0935E-05],[206.32995,-2.9904E-05],[206.33344,-2.6295E-05],[206.33693,-2.8873E-05],[206.34042,-3.042E-05],[206.3439,-2.8357E-05],[206.34739,-2.6295E-05],[206.35088,-2.5779E-05],[206.35437,-2.7326E-05],[206.35786,-2.8357E-05],[206.36134,-3.042E-05],[206.36483,-2.9389E-05],[206.36832,-2.8357E-05],[206.37181,-2.7326E-05],[206.3753,-2.7326E-05],[206.37878,-2.9389E-05],[206.38227,-3.042E-05],[206.38576,-2.6295E-05],[206.38925,-2.6295E-05],[206.39274,-3.1451E-05],[206.39622,-3.0935E-05],[206.39971,-2.5264E-05]]}
-{"quant":[206.742,0.059572],"mems":[[206.69968,-3.042E-05],[206.70317,-2.8357E-05],[206.70666,-2.7842E-05],[206.71014,-2.9904E-05],[206.71363,-3.042E-05],[206.71712,-2.9904E-05],[206.72061,-2.4233E-05],[206.7241,-2.6811E-05],[206.72758,-2.8873E-05],[206.73107,-2.8357E-05],[206.73456,-3.3513E-05],[206.73805,-2.9389E-05],[206.74154,-2.6811E-05],[206.74502,-2.7842E-05],[206.74851,-3.0935E-05],[206.752,-2.8357E-05],[206.75536,-3.042E-05],[206.75871,-3.2482E-05],[206.76207,-2.5264E-05],[206.76543,-3.1451E-05],[206.76879,-3.0935E-05],[206.77214,-2.8873E-05],[206.7755,-3.3513E-05],[206.77886,-2.7842E-05],[206.78222,-3.042E-05],[206.78557,-3.3513E-05],[206.78893,-3.042E-05],[206.79229,-3.2482E-05],[206.79565,-3.1451E-05],[206.799,-2.8873E-05],[206.80236,-2.8873E-05],[206.80572,-3.0935E-05],[206.80907,-3.1451E-05],[206.81243,-3.042E-05],[206.81579,-3.1451E-05],[206.81915,-2.7842E-05],[206.8225,-2.6811E-05],[206.82586,-3.042E-05],[206.82922,-3.4029E-05],[206.83258,-3.0935E-05],[206.83593,-2.5264E-05],[206.83929,-2.8873E-05],[206.84265,-2.8357E-05],[206.84601,-3.1967E-05],[206.84936,-3.042E-05],[206.85272,-2.5264E-05],[206.85608,-3.3513E-05],[206.85943,-3.1967E-05],[206.86279,-3.0935E-05],[206.86615,-3.2998E-05],[206.86951,-2.9904E-05],[206.87286,-3.5576E-05],[206.87622,-3.1967E-05],[206.87958,-2.6811E-05],[206.88294,-3.2998E-05],[206.88629,-3.5576E-05],[206.88965,-3.4544E-05],[206.89301,-3.4544E-05],[206.89637,-2.9389E-05],[206.89972,-2.8357E-05],[206.90308,-2.9904E-05],[206.90644,-2.8873E-05],[206.90979,-3.4029E-05],[206.91315,-3.4544E-05],[206.91651,-3.2482E-05],[206.91987,-3.2998E-05],[206.92322,-3.0935E-05],[206.92658,-3.1967E-05],[206.92994,-3.1451E-05],[206.9333,-2.9904E-05],[206.93665,-2.8357E-05],[206.94001,-2.6295E-05],[206.94337,-2.6295E-05],[206.94673,-3.042E-05],[206.95008,-2.9389E-05],[206.95344,-2.5779E-05],[206.9568,-2.7326E-05],[206.96015,-2.8357E-05],[206.96351,-2.9904E-05],[206.96687,-3.6091E-05],[206.97023,-3.506E-05],[206.97358,-2.8357E-05],[206.97694,-2.7326E-05],[206.9803,-2.8357E-05],[206.98366,-2.8357E-05],[206.98701,-2.6811E-05],[206.99037,-2.9904E-05],[206.99373,-2.9904E-05]]}
-{"quant":[207.258,-2.8956E-05],"mems":[[207.15824,-3.1967E-05],[207.16159,-3.1967E-05],[207.16495,-2.7842E-05],[207.16831,-2.8873E-05],[207.17167,-2.9389E-05],[207.17502,-2.4233E-05],[207.17838,-2.7842E-05],[207.18174,-2.9904E-05],[207.1851,-3.1967E-05],[207.18845,-3.1967E-05],[207.19181,-2.6811E-05],[207.19517,-2.3202E-05],[207.19853,-2.7842E-05],[207.20188,-3.042E-05],[207.20524,-2.7326E-05],[207.2086,-2.9904E-05],[207.21195,-2.9904E-05],[207.21531,-3.2482E-05],[207.21867,-3.3513E-05],[207.22203,-3.1967E-05],[207.22538,-3.0935E-05],[207.22874,-2.7842E-05],[207.2321,-2.9904E-05],[207.23546,-3.2998E-05],[207.23881,-3.3513E-05],[207.24217,-3.7122E-05],[207.24553,-3.4544E-05],[207.24889,-2.7842E-05],[207.25224,-2.8873E-05],[207.2556,-2.7326E-05],[207.25896,-2.9904E-05],[207.26231,-3.042E-05],[207.26567,-2.8357E-05],[207.26903,-2.8873E-05],[207.27239,-2.5264E-05],[207.27574,-2.8357E-05],[207.2791,-2.8873E-05],[207.28246,-2.9389E-05],[207.28582,-3.0935E-05],[207.28917,-2.5264E-05],[207.29253,-2.7326E-05],[207.29589,-2.8873E-05],[207.29925,-2.8873E-05],[207.3026,-3.1451E-05],[207.30596,-2.5779E-05],[207.30932,-2.3202E-05],[207.31267,-2.8357E-05],[207.31603,-2.7842E-05],[207.31939,-2.7842E-05],[207.32275,-3.1451E-05],[207.3261,-3.2998E-05],[207.32946,-3.4029E-05],[207.33282,-3.0935E-05],[207.33618,-2.7842E-05],[207.33953,-3.042E-05],[207.34289,-3.1451E-05],[207.34625,-2.9904E-05],[207.34961,-2.7842E-05],[207.35296,-2.6811E-05],[207.35632,-2.9904E-05],[207.35968,-2.8873E-05],[207.36303,-2.6811E-05],[207.36639,-2.7326E-05],[207.36975,-2.7842E-05],[207.37311,-3.1451E-05],[207.37646,-3.0935E-05],[207.37982,-2.8873E-05],[207.38318,-2.8873E-05],[207.38654,-2.6811E-05],[207.38989,-2.8357E-05],[207.39325,-2.7326E-05],[207.39661,-2.5779E-05],[207.39997,-3.042E-05],[207.40332,-2.9389E-05],[207.40668,-2.9389E-05],[207.41004,-2.7842E-05],[207.41339,-2.4748E-05],[207.41675,-2.5779E-05],[207.42011,-2.9389E-05],[207.42347,-3.0935E-05],[207.42682,-2.7326E-05],[207.43018,-2.8873E-05],[207.43354,-3.042E-05],[207.4369,-3.2998E-05],[207.44025,-3.3513E-05],[207.44361,-2.8873E-05],[207.44697,-2.8873E-05],[207.45033,-2.7326E-05],[207.45368,-2.6811E-05],[207.45704,-2.9389E-05],[207.4604,-3.042E-05]]}
-{"quant":[207.959,-3.0303E-05],"mems":[[207.85992,-2.5264E-05],[207.86328,-2.6811E-05],[207.86663,-3.1451E-05],[207.86999,-2.6811E-05],[207.87335,-2.4748E-05],[207.87671,-2.8873E-05],[207.88006,-2.8873E-05],[207.88342,-3.042E-05],[207.88678,-2.8873E-05],[207.89014,-2.5779E-05],[207.89349,-2.8873E-05],[207.89685,-2.6811E-05],[207.90021,-2.6811E-05],[207.90357,-3.506E-05],[207.90692,-3.2998E-05],[207.91028,-3.042E-05],[207.91364,-3.4544E-05],[207.91699,-2.8357E-05],[207.92035,-3.0935E-05],[207.92371,-3.2998E-05],[207.92707,-2.5264E-05],[207.93042,-2.8357E-05],[207.93378,-2.8357E-05],[207.93714,-2.9904E-05],[207.9405,-3.2998E-05],[207.94385,-3.0935E-05],[207.94721,-2.9904E-05],[207.95057,-2.6811E-05],[207.95393,-2.8357E-05],[207.95728,-3.1967E-05],[207.96064,-3.2482E-05],[207.964,-3.5576E-05],[207.96735,-2.7326E-05],[207.97071,-2.3717E-05],[207.97407,-3.0935E-05],[207.97743,-2.8357E-05],[207.98078,-3.042E-05],[207.98414,-3.1451E-05],[207.9875,-2.8357E-05],[207.99086,-3.1967E-05],[207.99421,-3.0935E-05],[207.99757,-3.1967E-05],[208.00093,-3.3513E-05],[208.00429,-3.2998E-05],[208.00764,-3.1967E-05],[208.011,-2.7842E-05],[208.01436,-2.8357E-05],[208.01771,-2.8873E-05],[208.02107,-3.1451E-05],[208.02443,-2.9389E-05],[208.02779,-2.4748E-05],[208.03114,-2.7842E-05],[208.0345,-3.1451E-05],[208.03786,-3.1451E-05],[208.04122,-3.1451E-05],[208.04457,-2.9904E-05],[208.04793,-2.9389E-05],[208.05129,-3.1967E-05],[208.05465,-3.0935E-05],[208.058,-3.1967E-05],[208.06136,-3.042E-05],[208.06472,-2.6295E-05],[208.06807,-2.7326E-05],[208.07143,-2.6295E-05],[208.07479,-2.9389E-05],[208.07815,-3.1967E-05],[208.0815,-3.4029E-05],[208.08486,-3.2482E-05],[208.08822,-2.7326E-05],[208.09158,-2.7842E-05],[208.09493,-2.6811E-05],[208.09829,-2.8873E-05],[208.10165,-3.0935E-05],[208.10501,-2.5264E-05],[208.10836,-2.3202E-05],[208.11172,-2.4233E-05],[208.11508,-2.4233E-05],[208.11843,-2.9389E-05],[208.12179,-3.2482E-05],[208.12515,-2.9904E-05],[208.12851,-2.7842E-05],[208.13186,-2.5779E-05],[208.13522,-2.4748E-05],[208.13858,-3.1451E-05],[208.14194,-3.2482E-05],[208.14529,-3.2482E-05],[208.14865,-3.6091E-05],[208.15201,-3.3513E-05],[208.15537,-3.6091E-05],[208.15872,-3.2998E-05],[208.16208,-2.5779E-05]]}
-{"quant":[208.44,-2.9804E-05],"mems":[[208.34002,-2.9389E-05],[208.34338,-3.1451E-05],[208.34673,-2.8873E-05],[208.35009,-3.0935E-05],[208.35345,-3.4029E-05],[208.35681,-3.1967E-05],[208.36016,-3.0935E-05],[208.36352,-2.8357E-05],[208.36688,-2.8357E-05],[208.37023,-3.042E-05],[208.37359,-3.042E-05],[208.37695,-2.7842E-05],[208.38031,-2.6811E-05],[208.38366,-2.7842E-05],[208.38702,-2.5264E-05],[208.39038,-2.9389E-05],[208.39374,-2.9904E-05],[208.39709,-2.4748E-05],[208.40045,-2.6811E-05],[208.40381,-2.7842E-05],[208.40717,-3.042E-05],[208.41052,-3.1451E-05],[208.41388,-3.1967E-05],[208.41724,-3.0935E-05],[208.42059,-2.9904E-05],[208.42395,-3.1967E-05],[208.42731,-3.0935E-05],[208.43067,-3.2482E-05],[208.43402,-3.1967E-05],[208.43738,-2.8873E-05],[208.44074,-2.9904E-05],[208.4441,-3.042E-05],[208.44745,-3.042E-05],[208.45081,-3.1967E-05],[208.45417,-2.9389E-05],[208.45753,-2.5779E-05],[208.46088,-2.7326E-05],[208.46424,-2.7842E-05],[208.4676,-2.8357E-05],[208.47095,-2.7326E-05],[208.47431,-2.8873E-05],[208.47767,-3.3513E-05],[208.48103,-3.0935E-05],[208.48438,-2.9904E-05],[208.48774,-2.9389E-05],[208.4911,-2.8873E-05],[208.49446,-3.2482E-05],[208.49781,-2.8357E-05],[208.50117,-2.9389E-05],[208.50453,-3.5576E-05],[208.50789,-3.1967E-05],[208.51124,-3.0935E-05],[208.5146,-3.1451E-05],[208.51796,-2.9904E-05],[208.52131,-2.9389E-05],[208.52467,-2.7842E-05],[208.52803,-2.7842E-05],[208.53139,-2.9904E-05],[208.53474,-2.9904E-05],[208.5381,-2.8873E-05],[208.54146,-2.9904E-05],[208.54482,-3.0935E-05],[208.54817,-3.042E-05],[208.55153,-2.5779E-05],[208.55489,-2.5779E-05],[208.55825,-2.7842E-05],[208.5616,-2.6811E-05],[208.56496,-2.8357E-05],[208.56832,-3.1451E-05],[208.57167,-2.9904E-05],[208.57503,-2.5264E-05],[208.57839,-2.6811E-05],[208.58175,-3.1451E-05],[208.5851,-3.0935E-05],[208.58846,-2.9904E-05],[208.59182,-3.2998E-05],[208.59518,-2.9904E-05],[208.59853,-2.8873E-05],[208.60189,-3.1967E-05],[208.60525,-3.1967E-05],[208.60861,-3.6091E-05],[208.61196,-2.9389E-05],[208.61532,-2.3717E-05],[208.61868,-2.7842E-05],[208.62203,-3.0935E-05],[208.62539,-3.4544E-05],[208.62875,-2.9904E-05],[208.63211,-2.8873E-05],[208.63546,-3.0935E-05],[208.63882,-2.8873E-05],[208.64218,-3.0935E-05]]}
-{"quant":[208.929,-2.9272E-05],"mems":[[208.83019,-3.2998E-05],[208.83355,-3.042E-05],[208.8369,-3.1967E-05],[208.84026,-3.4544E-05],[208.84362,-3.0935E-05],[208.84698,-3.0935E-05],[208.85033,-2.8357E-05],[208.85369,-2.8873E-05],[208.85705,-3.042E-05],[208.86041,-3.042E-05],[208.86376,-2.9389E-05],[208.86712,-2.6811E-05],[208.87048,-2.7842E-05],[208.87383,-2.8873E-05],[208.87719,-3.1451E-05],[208.88055,-3.042E-05],[208.88391,-2.7326E-05],[208.88726,-2.6295E-05],[208.89062,-2.7842E-05],[208.89398,-3.6091E-05],[208.89734,-3.5576E-05],[208.90069,-2.7326E-05],[208.90405,-2.8873E-05],[208.90741,-2.6295E-05],[208.91077,-2.217E-05],[208.91412,-2.5264E-05],[208.91748,-3.0935E-05],[208.92084,-3.042E-05],[208.92419,-2.7326E-05],[208.92755,-2.8873E-05],[208.93091,-2.7326E-05],[208.93427,-3.1967E-05],[208.93762,-3.3513E-05],[208.94098,-3.2482E-05],[208.94434,-3.1451E-05],[208.9477,-2.2686E-05],[208.95105,-2.8357E-05],[208.95441,-3.2482E-05],[208.95777,-3.042E-05],[208.96113,-2.9389E-05],[208.96448,-2.8873E-05],[208.96784,-2.5264E-05],[208.9712,-2.1139E-05],[208.97455,-2.8873E-05],[208.97791,-3.1967E-05],[208.98127,-2.7842E-05],[208.98463,-2.7842E-05],[208.98798,-3.1967E-05],[208.99134,-3.2998E-05],[208.9947,-2.7842E-05],[208.99806,-3.1451E-05],[209.00141,-3.1451E-05],[209.00477,-2.7842E-05],[209.00813,-3.4029E-05],[209.01149,-3.2482E-05],[209.01484,-2.6295E-05],[209.0182,-3.0935E-05],[209.02156,-2.9904E-05],[209.02491,-2.3717E-05],[209.02827,-2.4233E-05],[209.03163,-3.042E-05],[209.03499,-3.2998E-05],[209.03834,-2.8357E-05],[209.0417,-2.7842E-05],[209.04506,-2.8357E-05],[209.04842,-2.7326E-05],[209.05177,-2.8873E-05],[209.05513,-3.0935E-05],[209.05849,-3.4029E-05],[209.06185,-3.2998E-05],[209.0652,-3.1967E-05],[209.06856,-2.9904E-05],[209.07192,-2.6295E-05],[209.07527,-2.8357E-05],[209.07863,-3.1451E-05],[209.08199,-3.3513E-05],[209.08535,-3.0935E-05],[209.0887,-3.0935E-05],[209.09206,-3.3513E-05],[209.09542,-3.0935E-05],[209.09878,-3.0935E-05],[209.10213,-3.0935E-05],[209.10549,-2.8357E-05],[209.10885,-3.1967E-05],[209.11221,-3.1967E-05],[209.11556,-3.1451E-05],[209.11892,-3.5576E-05],[209.12228,-3.4029E-05],[209.12563,-3.042E-05],[209.12899,-2.6811E-05],[209.13235,-2.7842E-05]]}
-{"quant":[209.395,-2.9732E-05],"mems":[[209.29769,-3.1451E-05],[209.30115,-3.042E-05],[209.30461,-2.8357E-05],[209.30807,-3.042E-05],[209.31154,-3.2998E-05],[209.315,-2.8357E-05],[209.31846,-2.7842E-05],[209.32192,-2.9389E-05],[209.32538,-3.0935E-05],[209.32884,-3.4544E-05],[209.3323,-3.0935E-05],[209.33577,-2.9389E-05],[209.33923,-3.1451E-05],[209.34269,-3.1967E-05],[209.34615,-3.4544E-05],[209.34961,-3.3513E-05],[209.35307,-3.4029E-05],[209.35653,-3.506E-05],[209.35999,-2.9389E-05],[209.36346,-2.9904E-05],[209.36692,-3.1451E-05],[209.37038,-3.0935E-05],[209.37384,-2.8873E-05],[209.3773,-2.8357E-05],[209.38076,-3.042E-05],[209.38422,-2.7326E-05],[209.38769,-2.9389E-05],[209.39115,-3.042E-05],[209.39461,-2.8357E-05],[209.39807,-2.6811E-05],[209.40153,-2.4748E-05],[209.40499,-2.9904E-05],[209.40845,-3.042E-05],[209.41191,-2.5779E-05],[209.41538,-2.5779E-05],[209.41884,-2.8357E-05],[209.4223,-2.9904E-05],[209.42576,-3.1967E-05],[209.42922,-3.042E-05],[209.43268,-2.8357E-05],[209.43614,-2.9904E-05],[209.43961,-2.8357E-05],[209.44307,-2.6811E-05],[209.44653,-3.1451E-05],[209.44999,-3.0935E-05],[209.45345,-2.7326E-05],[209.45691,-3.1451E-05],[209.46037,-3.1451E-05],[209.46383,-2.6811E-05],[209.4673,-2.9904E-05],[209.47076,-3.042E-05],[209.47422,-2.9904E-05],[209.47768,-3.2998E-05],[209.48114,-2.9389E-05],[209.4846,-3.4544E-05],[209.48806,-3.9185E-05],[209.49153,-3.0935E-05],[209.49499,-2.8873E-05],[209.49845,-2.8873E-05],[209.50191,-2.9389E-05],[209.50537,-2.9389E-05],[209.50883,-2.9389E-05],[209.51229,-3.3513E-05],[209.51575,-3.3513E-05],[209.51922,-3.1967E-05],[209.52268,-2.9904E-05],[209.52614,-2.8873E-05],[209.5296,-3.3513E-05],[209.53306,-2.8873E-05],[209.53652,-2.7326E-05],[209.53998,-3.042E-05],[209.54345,-2.5779E-05],[209.54691,-2.8873E-05],[209.55037,-3.042E-05],[209.55383,-2.7842E-05],[209.55729,-3.2998E-05],[209.56075,-3.1967E-05],[209.56421,-2.9904E-05],[209.56767,-2.9389E-05],[209.57114,-3.0935E-05],[209.5746,-3.2998E-05],[209.57806,-2.8873E-05],[209.58152,-2.9904E-05],[209.58498,-3.1967E-05],[209.58844,-2.9904E-05],[209.5919,-2.8873E-05],[209.59537,-2.6295E-05]]}
-{"quant":[210.223,-2.9285E-05],"mems":[[210.12495,-2.9389E-05],[210.12841,-3.2998E-05],[210.13187,-3.3513E-05],[210.13533,-3.2998E-05],[210.13879,-3.2482E-05],[210.14226,-3.1451E-05],[210.14572,-3.0935E-05],[210.14918,-2.6295E-05],[210.15264,-2.7842E-05],[210.1561,-3.2998E-05],[210.15956,-3.0935E-05],[210.16302,-3.0935E-05],[210.16649,-2.9389E-05],[210.16995,-2.8357E-05],[210.17341,-3.2482E-05],[210.17687,-3.0935E-05],[210.18033,-3.3513E-05],[210.18379,-3.1451E-05],[210.18725,-3.1967E-05],[210.19071,-3.2482E-05],[210.19418,-2.6295E-05],[210.19764,-3.0935E-05],[210.2011,-3.1451E-05],[210.20456,-3.0935E-05],[210.20802,-3.1451E-05],[210.21148,-3.042E-05],[210.21494,-3.3513E-05],[210.21841,-3.1451E-05],[210.22187,-3.2998E-05],[210.22533,-3.042E-05],[210.22879,-2.8873E-05],[210.23225,-3.3513E-05],[210.23571,-3.0935E-05],[210.23917,-2.9389E-05],[210.24263,-2.8873E-05],[210.2461,-2.5264E-05],[210.24956,-2.7326E-05],[210.25302,-2.8873E-05],[210.25648,-2.8357E-05],[210.25994,-2.6811E-05],[210.2634,-2.5264E-05],[210.26686,-2.9389E-05],[210.27033,-3.1451E-05],[210.27379,-3.1451E-05],[210.27725,-2.9904E-05],[210.28071,-2.6811E-05],[210.28417,-2.5779E-05],[210.28763,-2.7326E-05],[210.29109,-2.8873E-05],[210.29455,-2.8357E-05],[210.29802,-2.9904E-05],[210.30148,-3.0935E-05],[210.30494,-3.0935E-05],[210.3084,-2.6295E-05],[210.31186,-2.5264E-05],[210.31532,-3.7122E-05],[210.31878,-3.3513E-05],[210.32225,-2.9389E-05],[210.32571,-3.1967E-05],[210.32917,-2.2686E-05],[210.33263,-2.8357E-05],[210.33609,-3.1451E-05],[210.33955,-2.7326E-05],[210.34301,-3.2998E-05],[210.34647,-3.1967E-05],[210.34994,-2.8873E-05],[210.3534,-2.9389E-05],[210.35686,-3.3513E-05],[210.36032,-3.2998E-05],[210.36378,-2.9389E-05],[210.36724,-3.2482E-05],[210.3707,-3.1967E-05],[210.37417,-2.8873E-05],[210.37763,-3.042E-05],[210.38109,-2.9389E-05],[210.38455,-2.8357E-05],[210.38801,-2.9904E-05],[210.39147,-2.9904E-05],[210.39493,-3.4029E-05],[210.39839,-3.0935E-05],[210.40186,-2.9904E-05],[210.40532,-3.0935E-05],[210.40878,-2.7326E-05],[210.41224,-3.0935E-05],[210.4157,-2.9904E-05],[210.41916,-3.2482E-05],[210.42262,-3.2482E-05],[210.42609,-2.5264E-05]]}
-{"quant":[210.728,-3.0609E-05],"mems":[[210.6303,-2.6811E-05],[210.63377,-2.8873E-05],[210.63723,-2.7842E-05],[210.64069,-2.7842E-05],[210.64415,-2.6295E-05],[210.64761,-2.6295E-05],[210.65107,-2.9389E-05],[210.65453,-3.1967E-05],[210.65799,-3.1967E-05],[210.66146,-2.8873E-05],[210.66492,-2.7326E-05],[210.66838,-2.6811E-05],[210.67184,-3.1967E-05],[210.6753,-3.2998E-05],[210.67876,-3.1451E-05],[210.68222,-3.506E-05],[210.68569,-3.3513E-05],[210.68915,-3.2998E-05],[210.69261,-3.3513E-05],[210.69607,-2.8357E-05],[210.69953,-2.7326E-05],[210.70299,-3.2998E-05],[210.70645,-2.9904E-05],[210.70991,-2.6811E-05],[210.71338,-2.8357E-05],[210.71684,-2.8873E-05],[210.7203,-3.1451E-05],[210.72376,-3.1451E-05],[210.72722,-2.9904E-05],[210.73068,-2.7842E-05],[210.73414,-2.7842E-05],[210.73761,-3.506E-05],[210.74107,-3.2482E-05],[210.74453,-2.8873E-05],[210.74799,-2.9904E-05],[210.75145,-2.8357E-05],[210.75491,-3.1451E-05],[210.75837,-2.9389E-05],[210.76183,-2.5264E-05],[210.7653,-2.9389E-05],[210.76876,-3.042E-05],[210.77222,-3.0935E-05],[210.77568,-3.2482E-05],[210.77914,-3.5576E-05],[210.7826,-3.506E-05],[210.78606,-3.042E-05],[210.78953,-2.9904E-05],[210.79299,-3.1967E-05],[210.79645,-3.2998E-05],[210.79991,-2.9904E-05],[210.80337,-3.1967E-05],[210.80683,-3.1451E-05],[210.81029,-2.7842E-05],[210.81375,-3.042E-05],[210.81722,-3.3513E-05],[210.82068,-3.2482E-05],[210.82414,-2.9904E-05],[210.8276,-2.7842E-05],[210.83106,-2.7326E-05],[210.83452,-2.9389E-05],[210.83798,-3.0935E-05],[210.84145,-3.2482E-05],[210.84491,-2.9389E-05],[210.84837,-2.7842E-05],[210.85183,-3.0935E-05],[210.85529,-2.9904E-05],[210.85875,-2.7842E-05],[210.86221,-2.9389E-05],[210.86567,-3.3513E-05],[210.86914,-2.9389E-05],[210.8726,-2.6295E-05],[210.87606,-3.042E-05],[210.87952,-3.042E-05],[210.88298,-3.042E-05],[210.88644,-3.042E-05],[210.8899,-3.042E-05],[210.89337,-2.8873E-05],[210.89683,-2.9904E-05],[210.90029,-3.1967E-05],[210.90375,-3.5576E-05],[210.90721,-3.0935E-05],[210.91067,-2.8873E-05],[210.91413,-3.3513E-05],[210.91759,-2.6295E-05],[210.92106,-2.6811E-05],[210.92452,-2.9904E-05],[210.92798,-2.8873E-05],[210.93144,-3.1967E-05]]}
-{"quant":[211.198,-2.978E-05],"mems":[[211.10105,-2.6295E-05],[211.10451,-3.1967E-05],[211.10797,-3.042E-05],[211.11143,-2.7326E-05],[211.11489,-3.1451E-05],[211.11835,-3.4544E-05],[211.12181,-3.506E-05],[211.12527,-3.2482E-05],[211.12874,-2.7326E-05],[211.1322,-2.4748E-05],[211.13566,-2.8357E-05],[211.13912,-3.1451E-05],[211.14258,-3.6607E-05],[211.14604,-3.4544E-05],[211.1495,-3.0935E-05],[211.15297,-3.2998E-05],[211.15643,-3.0935E-05],[211.15989,-2.8357E-05],[211.16335,-2.9904E-05],[211.16681,-3.4544E-05],[211.17027,-3.042E-05],[211.17373,-2.8357E-05],[211.17719,-3.3513E-05],[211.18066,-3.2998E-05],[211.18412,-3.0935E-05],[211.18758,-2.8357E-05],[211.19104,-2.8357E-05],[211.1945,-2.8357E-05],[211.19796,-2.5264E-05],[211.20142,-2.8357E-05],[211.20489,-3.042E-05],[211.20835,-2.5264E-05],[211.21181,-2.8873E-05],[211.21527,-2.9389E-05],[211.21873,-2.8357E-05],[211.22219,-3.2998E-05],[211.22565,-3.2998E-05],[211.22911,-3.3513E-05],[211.23258,-3.042E-05],[211.23604,-3.4544E-05],[211.2395,-3.4029E-05],[211.24296,-2.6811E-05],[211.24642,-3.1451E-05],[211.24988,-3.1967E-05],[211.25334,-3.2482E-05],[211.25681,-2.9389E-05],[211.26027,-2.4233E-05],[211.26373,-2.8357E-05],[211.26719,-2.9904E-05],[211.27065,-3.1451E-05],[211.27411,-3.1967E-05],[211.27757,-2.6811E-05],[211.28103,-3.1967E-05],[211.2845,-3.1967E-05],[211.28796,-2.7842E-05],[211.29142,-2.8357E-05],[211.29488,-2.2686E-05],[211.29834,-2.6811E-05],[211.3018,-3.506E-05],[211.30526,-3.3513E-05],[211.30873,-2.9904E-05],[211.31219,-2.6811E-05],[211.31565,-2.9389E-05],[211.31911,-2.9904E-05],[211.32257,-2.4748E-05],[211.32603,-2.7842E-05],[211.32949,-2.9904E-05],[211.33295,-2.9904E-05],[211.33642,-3.1451E-05],[211.33988,-2.9389E-05],[211.34334,-3.1451E-05],[211.3468,-3.4029E-05],[211.35026,-3.1967E-05],[211.35372,-3.2482E-05],[211.35718,-2.9389E-05],[211.36065,-3.042E-05],[211.36411,-3.3513E-05],[211.36757,-3.1451E-05],[211.37103,-2.8873E-05],[211.37449,-2.6295E-05],[211.37795,-3.1451E-05],[211.38141,-3.6091E-05],[211.38487,-3.1967E-05],[211.38834,-3.2998E-05],[211.3918,-3.1967E-05],[211.39526,-3.0935E-05],[211.39872,-3.1967E-05]]}
-{"quant":[211.679,-1.0746],"mems":[[211.59255,-2.7326E-05],[211.59602,-3.1451E-05],[211.59948,-3.042E-05],[211.60294,-3.1451E-05],[211.6064,-3.4029E-05],[211.60986,-2.8873E-05],[211.61332,-2.7326E-05],[211.61678,-2.9389E-05],[211.62025,-3.0935E-05],[211.62371,-2.9389E-05],[211.62717,-2.9389E-05],[211.63063,-3.042E-05],[211.63409,-2.8357E-05],[211.63755,-3.1967E-05],[211.64101,-3.042E-05],[211.64447,-3.0935E-05],[211.64794,-2.9389E-05],[211.6514,-2.8873E-05],[211.65486,-3.1451E-05],[211.65832,-2.9389E-05],[211.66178,-3.6091E-05],[211.66524,-3.3513E-05],[211.6687,-2.6811E-05],[211.67217,-3.042E-05],[211.67563,-2.7842E-05],[211.67909,-2.9904E-05],[211.68255,-3.5576E-05],[211.68601,-2.5264E-05],[211.68947,-2.7842E-05],[211.69293,-2.9389E-05],[211.69639,-2.2686E-05],[211.69986,-2.5779E-05],[211.70332,-2.8873E-05],[211.70678,-3.042E-05],[211.71024,-2.5779E-05],[211.7137,-2.7842E-05],[211.71716,-2.8873E-05],[211.72062,-2.5264E-05],[211.72409,-3.506E-05],[211.72755,-3.3513E-05],[211.73101,-2.7842E-05],[211.73447,-2.6811E-05],[211.73793,-2.6811E-05],[211.74139,-3.4544E-05],[211.74485,-3.2998E-05],[211.74831,-3.0935E-05],[211.75178,-2.8357E-05],[211.75524,-2.3202E-05],[211.7587,-2.7842E-05],[211.76216,-2.5779E-05],[211.76562,-2.5264E-05],[211.76908,-3.0935E-05],[211.77254,-3.506E-05],[211.77601,-3.4544E-05],[211.77947,-3.0935E-05],[211.78293,-3.2482E-05],[211.78639,-2.8873E-05],[211.78985,-2.9904E-05],[211.79331,-2.9904E-05],[211.79677,-2.7842E-05],[211.80023,-2.7326E-05],[211.8037,-2.9904E-05],[211.80716,-3.1967E-05],[211.81062,-2.7842E-05],[211.81408,-2.8873E-05],[211.81754,-2.9904E-05],[211.821,-2.9904E-05],[211.82446,-2.9904E-05],[211.82793,-2.9389E-05],[211.83139,-2.6811E-05],[211.83485,-2.7326E-05],[211.83831,-3.0935E-05],[211.84177,-2.8357E-05],[211.84523,-3.1967E-05],[211.84869,-3.4029E-05],[211.85215,-3.0935E-05],[211.85562,-3.042E-05],[211.85908,-3.3513E-05],[211.86254,-3.5576E-05],[211.866,-3.042E-05],[211.86942,-2.9904E-05],[211.87283,-3.3513E-05],[211.87625,-2.9904E-05],[211.87966,-2.5779E-05],[211.88308,-3.0935E-05],[211.8865,-2.7842E-05],[211.88991,-2.6811E-05],[211.89333,-3.042E-05]]}
-{"quant":[212.157,-2.9887E-05],"mems":[[212.0573,-3.042E-05],[212.06071,-3.1967E-05],[212.06413,-3.1967E-05],[212.06754,-3.1451E-05],[212.07096,-3.0935E-05],[212.07438,-2.8873E-05],[212.07779,-2.8873E-05],[212.08121,-3.1967E-05],[212.08462,-3.042E-05],[212.08804,-3.0935E-05],[212.09146,-3.1967E-05],[212.09487,-3.2482E-05],[212.09829,-3.1451E-05],[212.1017,-3.0935E-05],[212.10512,-2.8873E-05],[212.10854,-2.7326E-05],[212.11195,-3.1967E-05],[212.11537,-3.042E-05],[212.11878,-3.1451E-05],[212.1222,-3.1451E-05],[212.12562,-2.9904E-05],[212.12903,-3.1967E-05],[212.13245,-2.6295E-05],[212.13586,-2.7326E-05],[212.13928,-2.9389E-05],[212.1427,-2.8357E-05],[212.14611,-3.2998E-05],[212.14953,-3.1967E-05],[212.15294,-3.042E-05],[212.15636,-2.9389E-05],[212.15978,-2.8357E-05],[212.16319,-3.1451E-05],[212.16661,-3.2998E-05],[212.17002,-3.1967E-05],[212.17344,-3.042E-05],[212.17686,-3.1451E-05],[212.18027,-3.042E-05],[212.18369,-2.7326E-05],[212.1871,-3.042E-05],[212.19052,-3.2482E-05],[212.19394,-2.9389E-05],[212.19735,-2.7842E-05],[212.20077,-2.8357E-05],[212.20418,-2.9904E-05],[212.2076,-3.1967E-05],[212.21102,-3.2482E-05],[212.21443,-2.9389E-05],[212.21785,-3.1451E-05],[212.22126,-3.0935E-05],[212.22468,-2.6295E-05],[212.2281,-2.8357E-05],[212.23151,-2.7326E-05],[212.23493,-2.9389E-05],[212.23834,-3.2998E-05],[212.24176,-3.2482E-05],[212.24518,-2.8357E-05],[212.24859,-2.5779E-05],[212.25201,-2.5264E-05],[212.25542,-2.7842E-05],[212.25884,-3.3513E-05],[212.26226,-2.9904E-05],[212.26567,-3.0935E-05],[212.26909,-3.1451E-05],[212.2725,-2.6811E-05],[212.27592,-3.0935E-05],[212.27934,-2.9389E-05],[212.28275,-3.1451E-05],[212.28617,-3.0935E-05],[212.28958,-2.5264E-05],[212.293,-2.6811E-05],[212.29642,-2.5264E-05],[212.29983,-2.6811E-05],[212.30325,-3.1451E-05],[212.30666,-3.042E-05],[212.31008,-3.042E-05],[212.3135,-3.2482E-05],[212.31691,-3.1967E-05],[212.32033,-3.0935E-05],[212.32374,-3.506E-05],[212.32716,-3.2482E-05],[212.33058,-2.9389E-05],[212.33399,-3.1451E-05],[212.33741,-3.042E-05],[212.34082,-3.1451E-05],[212.34424,-3.3513E-05],[212.34766,-2.9904E-05],[212.35107,-2.8357E-05],[212.35449,-2.6811E-05],[212.3579,-2.7842E-05]]}
-{"quant":[212.806,-3.0368E-05],"mems":[[212.70634,-3.506E-05],[212.70975,-2.9904E-05],[212.71317,-2.9389E-05],[212.71658,-3.2482E-05],[212.72,-3.2482E-05],[212.72342,-2.7842E-05],[212.72683,-3.1451E-05],[212.73025,-3.1451E-05],[212.73366,-2.7326E-05],[212.73708,-3.2482E-05],[212.7405,-3.1967E-05],[212.74391,-3.1967E-05],[212.74733,-3.0935E-05],[212.75074,-2.8873E-05],[212.75416,-2.8357E-05],[212.75758,-2.6811E-05],[212.76099,-2.6295E-05],[212.76441,-2.7326E-05],[212.76782,-2.9904E-05],[212.77124,-2.3717E-05],[212.77466,-2.5264E-05],[212.77807,-2.8873E-05],[212.78149,-2.4748E-05],[212.7849,-2.8357E-05],[212.78832,-3.1451E-05],[212.79174,-3.1451E-05],[212.79515,-3.2482E-05],[212.79857,-3.1967E-05],[212.80198,-3.3513E-05],[212.8054,-3.1967E-05],[212.80882,-2.6811E-05],[212.81223,-2.6811E-05],[212.81565,-2.8357E-05],[212.81906,-3.1451E-05],[212.82248,-3.2998E-05],[212.8259,-2.8873E-05],[212.82931,-2.7326E-05],[212.83273,-2.7326E-05],[212.83614,-2.7842E-05],[212.83956,-3.042E-05],[212.84298,-3.1451E-05],[212.84639,-2.5779E-05],[212.84981,-2.5264E-05],[212.85322,-2.9389E-05],[212.85664,-3.1967E-05],[212.86006,-3.6091E-05],[212.86347,-3.2998E-05],[212.86689,-2.9904E-05],[212.8703,-3.0935E-05],[212.87372,-3.0935E-05],[212.87714,-3.4029E-05],[212.88055,-3.6091E-05],[212.88397,-3.5576E-05],[212.88738,-3.042E-05],[212.8908,-2.8873E-05],[212.89422,-3.4029E-05],[212.89763,-3.3513E-05],[212.90105,-3.042E-05],[212.90446,-2.8873E-05],[212.90788,-2.6295E-05],[212.9113,-2.7842E-05],[212.91471,-3.2482E-05],[212.91813,-3.2482E-05],[212.92154,-3.1451E-05],[212.92496,-3.042E-05],[212.92838,-2.9904E-05],[212.93179,-2.8357E-05],[212.93521,-2.8357E-05],[212.93862,-3.0935E-05],[212.94204,-2.9904E-05],[212.94546,-3.1451E-05],[212.94887,-3.1967E-05],[212.95229,-3.1451E-05],[212.9557,-3.0935E-05],[212.95912,-2.9904E-05],[212.96254,-3.0935E-05],[212.96595,-2.5779E-05],[212.96937,-2.6811E-05],[212.97278,-3.1967E-05],[212.9762,-2.8873E-05],[212.97962,-2.7842E-05],[212.98303,-2.8357E-05],[212.98645,-2.6295E-05],[212.98986,-2.9389E-05],[212.99328,-2.8873E-05],[212.9967,-2.9389E-05],[213.00011,-2.8873E-05],[213.00353,-2.5264E-05],[213.00694,-3.0935E-05]]}
-{"quant":[213.289,-2.9457E-05],"mems":[[213.19141,-2.6811E-05],[213.19482,-3.0935E-05],[213.19824,-3.3513E-05],[213.20166,-2.8357E-05],[213.20507,-2.6811E-05],[213.20849,-2.9389E-05],[213.2119,-3.042E-05],[213.21532,-3.1967E-05],[213.21874,-3.6091E-05],[213.22215,-3.2482E-05],[213.22557,-3.042E-05],[213.22898,-3.3513E-05],[213.2324,-2.9904E-05],[213.23582,-2.7842E-05],[213.23923,-3.042E-05],[213.24265,-3.6091E-05],[213.24606,-3.2482E-05],[213.24948,-2.7326E-05],[213.2529,-3.042E-05],[213.25631,-2.9389E-05],[213.25973,-3.1451E-05],[213.26314,-3.2482E-05],[213.26656,-2.9389E-05],[213.26998,-3.1451E-05],[213.27339,-2.9904E-05],[213.27681,-2.6295E-05],[213.28022,-2.7842E-05],[213.28364,-2.7842E-05],[213.28706,-2.8357E-05],[213.29047,-2.8357E-05],[213.29389,-3.042E-05],[213.2973,-3.3513E-05],[213.30072,-3.1967E-05],[213.30414,-2.9904E-05],[213.30755,-2.7842E-05],[213.31097,-3.2482E-05],[213.31438,-3.2482E-05],[213.3178,-2.7326E-05],[213.32122,-2.9904E-05],[213.32463,-2.5779E-05],[213.32805,-2.4748E-05],[213.33146,-2.7842E-05],[213.33488,-3.042E-05],[213.3383,-3.1967E-05],[213.34171,-2.4748E-05],[213.34513,-2.7326E-05],[213.34854,-2.9389E-05],[213.35196,-2.8357E-05],[213.35538,-3.042E-05],[213.35879,-2.8357E-05],[213.36221,-2.9389E-05],[213.36562,-3.042E-05],[213.36904,-2.7842E-05],[213.37246,-2.7326E-05],[213.37587,-2.9904E-05],[213.37929,-3.1451E-05],[213.3827,-3.3513E-05],[213.38612,-3.0935E-05],[213.38954,-2.9389E-05],[213.39295,-3.2998E-05],[213.39637,-3.4029E-05],[213.39978,-3.042E-05],[213.4032,-2.6295E-05],[213.40662,-2.6811E-05],[213.41003,-2.6295E-05],[213.41345,-3.042E-05],[213.41686,-3.0935E-05],[213.42028,-2.9904E-05],[213.4237,-3.506E-05],[213.42711,-2.8873E-05],[213.43053,-2.7326E-05],[213.43394,-2.8873E-05],[213.43736,-2.3202E-05],[213.44078,-2.5779E-05],[213.44419,-2.7326E-05],[213.44761,-2.6811E-05],[213.45102,-2.8357E-05],[213.45444,-3.1451E-05],[213.45786,-3.2998E-05],[213.46127,-2.8357E-05],[213.46469,-2.5264E-05],[213.4681,-2.6295E-05],[213.47152,-2.6811E-05],[213.47494,-2.8357E-05],[213.47835,-3.1451E-05],[213.48177,-2.9904E-05],[213.48518,-2.6811E-05],[213.4886,-2.8357E-05],[213.49202,-3.042E-05]]}
-{"quant":[213.783,-3.121E-05],"mems":[[213.68331,-2.8873E-05],[213.68673,-3.1451E-05],[213.69014,-3.506E-05],[213.69356,-2.9389E-05],[213.69698,-2.6295E-05],[213.70039,-2.8873E-05],[213.70381,-2.7842E-05],[213.70722,-3.042E-05],[213.71064,-3.2482E-05],[213.71406,-3.042E-05],[213.71747,-2.9389E-05],[213.72089,-2.9389E-05],[213.7243,-3.1451E-05],[213.72772,-3.042E-05],[213.73114,-3.1451E-05],[213.73455,-3.0935E-05],[213.73797,-2.9389E-05],[213.74138,-2.8873E-05],[213.7448,-2.9389E-05],[213.74822,-3.2998E-05],[213.75163,-3.042E-05],[213.75505,-2.8873E-05],[213.75846,-2.8357E-05],[213.76188,-3.1451E-05],[213.7653,-3.2998E-05],[213.76871,-2.8873E-05],[213.77213,-2.9389E-05],[213.77554,-2.7842E-05],[213.77896,-3.0935E-05],[213.78238,-2.9389E-05],[213.78579,-2.3717E-05],[213.78921,-2.4748E-05],[213.79262,-2.8357E-05],[213.79604,-3.1451E-05],[213.79946,-2.9389E-05],[213.80287,-3.1451E-05],[213.80629,-3.042E-05],[213.8097,-3.2998E-05],[213.81312,-3.4544E-05],[213.81654,-2.7326E-05],[213.81995,-3.042E-05],[213.82337,-3.1451E-05],[213.82678,-3.1967E-05],[213.8302,-3.1967E-05],[213.83362,-3.0935E-05],[213.83703,-3.4029E-05],[213.84045,-3.4544E-05],[213.84386,-3.1967E-05],[213.84728,-3.0935E-05],[213.8507,-3.4029E-05],[213.85411,-3.2998E-05],[213.85753,-3.3513E-05],[213.86094,-3.2998E-05],[213.86436,-2.8873E-05],[213.86778,-3.042E-05],[213.87119,-3.1967E-05],[213.87461,-3.1967E-05],[213.87802,-3.1451E-05],[213.88144,-3.3513E-05],[213.88486,-3.1967E-05],[213.88827,-3.0935E-05],[213.89169,-3.506E-05],[213.8951,-3.1967E-05],[213.89852,-3.042E-05],[213.90194,-2.7842E-05],[213.90535,-2.5779E-05],[213.90877,-2.7326E-05],[213.91218,-2.4748E-05],[213.9156,-2.9904E-05],[213.91902,-3.2482E-05],[213.92243,-3.506E-05],[213.92585,-3.4544E-05],[213.92926,-2.7842E-05],[213.93268,-3.0935E-05],[213.9361,-2.9389E-05],[213.93951,-3.1967E-05],[213.94293,-2.9904E-05],[213.94634,-2.217E-05],[213.94976,-3.1451E-05],[213.95318,-3.2482E-05],[213.95659,-3.1451E-05],[213.96001,-3.2998E-05],[213.96342,-2.8357E-05],[213.96684,-3.1967E-05],[213.97026,-2.9904E-05],[213.97367,-2.6811E-05],[213.97709,-2.9389E-05],[213.9805,-2.8873E-05],[213.98392,-2.6295E-05]]}
-{"quant":[214.282,-0.39762],"mems":[[214.18205,-2.6295E-05],[214.18546,-2.6811E-05],[214.18888,-2.8357E-05],[214.1923,-3.2998E-05],[214.19571,-3.2998E-05],[214.19913,-3.506E-05],[214.20254,-2.7842E-05],[214.20596,-2.7326E-05],[214.20938,-3.6607E-05],[214.21279,-2.9904E-05],[214.21621,-3.0935E-05],[214.21962,-2.7326E-05],[214.22304,-2.7326E-05],[214.22646,-3.4544E-05],[214.22987,-2.8357E-05],[214.23329,-2.5779E-05],[214.2367,-2.8357E-05],[214.24012,-2.9389E-05],[214.24354,-3.2998E-05],[214.24695,-3.0935E-05],[214.25037,-2.9904E-05],[214.25378,-3.1451E-05],[214.2572,-2.4748E-05],[214.26062,-2.5779E-05],[214.26403,-2.7842E-05],[214.26745,-2.9904E-05],[214.27086,-3.506E-05],[214.27428,-2.6295E-05],[214.2777,-2.3717E-05],[214.28111,-2.7326E-05],[214.28453,-3.1451E-05],[214.28794,-3.2998E-05],[214.29136,-2.9389E-05],[214.29478,-3.2482E-05],[214.29819,-3.042E-05],[214.30161,-2.9904E-05],[214.30502,-3.2482E-05],[214.30844,-3.3513E-05],[214.31186,-3.2482E-05],[214.31527,-2.9904E-05],[214.31869,-3.042E-05],[214.3221,-2.7842E-05],[214.32552,-2.6811E-05],[214.32894,-2.6811E-05],[214.33235,-2.8357E-05],[214.33577,-3.042E-05],[214.33918,-2.6295E-05],[214.3426,-2.5779E-05],[214.34602,-3.042E-05],[214.34943,-3.5576E-05],[214.35285,-3.0935E-05],[214.35626,-3.1451E-05],[214.35968,-3.1451E-05],[214.3631,-2.7842E-05],[214.36651,-3.2482E-05],[214.36993,-3.1967E-05],[214.37334,-3.0935E-05],[214.37676,-2.9389E-05],[214.38018,-2.8873E-05],[214.38359,-2.7842E-05],[214.38701,-3.0935E-05],[214.39042,-3.4029E-05],[214.39384,-3.0935E-05],[214.39726,-2.6811E-05],[214.40067,-2.5779E-05],[214.40409,-3.042E-05],[214.4075,-3.1967E-05],[214.41092,-3.1451E-05],[214.41434,-3.042E-05],[214.41775,-2.7842E-05],[214.42117,-2.8357E-05],[214.42458,-3.1451E-05],[214.428,-2.9904E-05],[214.43151,-2.9389E-05],[214.43502,-3.2998E-05],[214.43852,-2.7842E-05],[214.44203,-2.8873E-05],[214.44554,-3.1967E-05],[214.44905,-3.0935E-05],[214.45256,-3.3513E-05],[214.45606,-3.1451E-05],[214.45957,-2.9904E-05],[214.46308,-2.8873E-05],[214.46659,-2.9904E-05],[214.4701,-3.0935E-05],[214.4736,-3.2482E-05],[214.47711,-3.1451E-05],[214.48062,-2.6811E-05],[214.48413,-3.042E-05]]}
-{"quant":[214.75,-2.9028E-05],"mems":[[214.65251,-3.2998E-05],[214.65602,-3.6607E-05],[214.65953,-3.2998E-05],[214.66304,-2.9389E-05],[214.66654,-3.1967E-05],[214.67005,-3.1451E-05],[214.67356,-3.042E-05],[214.67707,-3.0935E-05],[214.68058,-3.0935E-05],[214.68408,-2.7842E-05],[214.68759,-2.6811E-05],[214.6911,-2.8357E-05],[214.69461,-2.8357E-05],[214.69812,-2.5264E-05],[214.70162,-2.7842E-05],[214.70513,-2.8873E-05],[214.70864,-2.6811E-05],[214.71215,-3.3513E-05],[214.71566,-3.506E-05],[214.71916,-2.8357E-05],[214.72267,-2.5264E-05],[214.72618,-2.5264E-05],[214.72969,-3.3513E-05],[214.7332,-3.5576E-05],[214.7367,-3.2482E-05],[214.74021,-2.9904E-05],[214.74372,-2.5264E-05],[214.74723,-2.8357E-05],[214.75074,-2.7326E-05],[214.75424,-2.8357E-05],[214.75775,-3.3513E-05],[214.76126,-3.3513E-05],[214.76477,-3.1967E-05],[214.76828,-2.6295E-05],[214.77178,-2.8873E-05],[214.77529,-3.3513E-05],[214.7788,-3.1451E-05],[214.78231,-2.9904E-05],[214.78582,-3.042E-05],[214.78932,-3.6091E-05],[214.79283,-3.042E-05],[214.79634,-3.1451E-05],[214.79985,-3.6091E-05],[214.80336,-2.7842E-05],[214.80686,-2.7326E-05],[214.81037,-2.8357E-05],[214.81388,-2.6295E-05],[214.81739,-3.042E-05],[214.8209,-2.8357E-05],[214.8244,-2.217E-05],[214.82791,-2.4233E-05],[214.83142,-2.4748E-05],[214.83493,-2.5779E-05],[214.83844,-2.7842E-05],[214.84194,-2.7842E-05],[214.84545,-2.8873E-05],[214.84896,-2.5264E-05],[214.85247,-2.6295E-05],[214.85598,-3.042E-05],[214.85948,-3.2998E-05],[214.86299,-3.7122E-05],[214.8665,-3.3513E-05],[214.87001,-2.7842E-05],[214.87352,-2.8873E-05],[214.87702,-2.8357E-05],[214.88053,-2.9904E-05],[214.88404,-3.1451E-05],[214.88755,-2.9389E-05],[214.89106,-3.2482E-05],[214.89456,-3.1967E-05],[214.89807,-2.8873E-05],[214.90158,-3.2998E-05],[214.90509,-3.3513E-05],[214.9086,-3.0935E-05],[214.9121,-3.042E-05],[214.91561,-3.506E-05],[214.91912,-3.7122E-05],[214.92263,-3.1451E-05],[214.92614,-2.8873E-05],[214.92964,-3.042E-05],[214.93315,-2.8873E-05],[214.93666,-3.2482E-05],[214.94017,-3.1967E-05],[214.94368,-2.5264E-05],[214.94718,-2.9904E-05],[214.95069,-3.1451E-05]]}
-{"quant":[215.568,-2.9715E-05],"mems":[[215.46988,-2.9904E-05],[215.47338,-3.042E-05],[215.47689,-3.1967E-05],[215.4804,-2.6295E-05],[215.48391,-2.9389E-05],[215.48742,-3.2482E-05],[215.49092,-3.1967E-05],[215.49443,-2.7326E-05],[215.49794,-2.4748E-05],[215.50145,-2.9904E-05],[215.50496,-3.1451E-05],[215.50846,-2.9389E-05],[215.51197,-2.9904E-05],[215.51548,-2.9904E-05],[215.51899,-2.3717E-05],[215.5225,-2.5264E-05],[215.526,-3.3513E-05],[215.52951,-3.4029E-05],[215.53302,-3.4544E-05],[215.53653,-3.1451E-05],[215.54004,-2.6295E-05],[215.54354,-2.7842E-05],[215.54705,-2.9904E-05],[215.55056,-3.0935E-05],[215.55407,-2.9904E-05],[215.55758,-3.0935E-05],[215.56108,-2.8873E-05],[215.56459,-3.0935E-05],[215.5681,-2.9389E-05],[215.57161,-2.6295E-05],[215.57512,-3.3513E-05],[215.57862,-3.0935E-05],[215.58213,-2.8357E-05],[215.58564,-3.042E-05],[215.58915,-3.2482E-05],[215.59266,-3.3513E-05],[215.59616,-3.0935E-05],[215.59967,-2.7326E-05],[215.60318,-3.4029E-05],[215.60669,-3.4029E-05],[215.6102,-2.5264E-05],[215.6137,-2.8357E-05],[215.61721,-2.7842E-05],[215.62072,-2.7326E-05],[215.62423,-2.7326E-05],[215.62774,-3.042E-05],[215.63124,-3.1967E-05],[215.63475,-2.7326E-05],[215.63826,-2.9904E-05],[215.64177,-2.9904E-05],[215.64528,-2.8357E-05],[215.64878,-3.042E-05],[215.65229,-2.9904E-05],[215.6558,-3.1967E-05],[215.65931,-2.8357E-05],[215.66282,-2.4748E-05],[215.66632,-2.8357E-05],[215.66983,-3.2482E-05],[215.67334,-3.2998E-05],[215.67685,-3.0935E-05],[215.68036,-2.9904E-05],[215.68386,-2.6811E-05],[215.68737,-2.8873E-05],[215.69088,-3.0935E-05],[215.69439,-3.042E-05],[215.6979,-3.1967E-05],[215.7014,-2.9389E-05],[215.70491,-2.8357E-05],[215.70842,-3.0935E-05],[215.71193,-3.1451E-05],[215.71544,-3.042E-05],[215.71894,-3.1451E-05],[215.72245,-3.0935E-05],[215.72596,-2.8357E-05],[215.72947,-2.8357E-05],[215.73298,-2.8357E-05],[215.73648,-2.9389E-05],[215.73999,-2.7842E-05],[215.7435,-2.6295E-05],[215.74701,-2.7326E-05],[215.75052,-2.8357E-05],[215.75402,-3.042E-05],[215.75753,-3.1451E-05],[215.76104,-3.042E-05],[215.76455,-2.7326E-05],[215.76806,-3.042E-05]]}
-{"quant":[216.055,-3.1038E-05],"mems":[[215.95749,-3.0935E-05],[215.961,-3.4544E-05],[215.9645,-3.2482E-05],[215.96801,-2.7842E-05],[215.97152,-2.8357E-05],[215.97503,-2.6295E-05],[215.97854,-3.1967E-05],[215.98204,-3.1967E-05],[215.98555,-2.8357E-05],[215.98906,-2.8873E-05],[215.99257,-2.8873E-05],[215.99608,-3.042E-05],[215.99958,-3.0935E-05],[216.00309,-3.0935E-05],[216.0066,-2.9904E-05],[216.01011,-3.042E-05],[216.01362,-2.8357E-05],[216.01712,-2.7842E-05],[216.02063,-3.4544E-05],[216.02414,-3.506E-05],[216.02765,-3.1967E-05],[216.03116,-2.9389E-05],[216.03466,-2.3717E-05],[216.03817,-2.8357E-05],[216.04168,-3.3513E-05],[216.04519,-3.0935E-05],[216.0487,-3.1967E-05],[216.0522,-3.0935E-05],[216.05571,-3.042E-05],[216.05922,-3.0935E-05],[216.06273,-3.1451E-05],[216.06624,-3.1451E-05],[216.06974,-3.1451E-05],[216.07325,-3.1451E-05],[216.07676,-2.8357E-05],[216.08027,-3.1967E-05],[216.08378,-3.2998E-05],[216.08728,-3.0935E-05],[216.09079,-3.042E-05],[216.0943,-3.1967E-05],[216.09781,-3.7638E-05],[216.10132,-3.4544E-05],[216.10482,-3.2998E-05],[216.10833,-3.3513E-05],[216.11184,-2.4748E-05],[216.11535,-3.1451E-05],[216.11886,-3.5576E-05],[216.12236,-2.5779E-05],[216.12587,-2.4748E-05],[216.12938,-3.042E-05],[216.13289,-2.8873E-05],[216.1364,-2.6295E-05],[216.1399,-2.9904E-05],[216.14341,-3.042E-05],[216.14692,-3.2998E-05],[216.15043,-3.3513E-05],[216.15394,-3.2482E-05],[216.15744,-3.1451E-05],[216.16095,-3.0935E-05],[216.16446,-3.4029E-05],[216.16797,-2.8873E-05],[216.17148,-2.7326E-05],[216.17498,-2.7326E-05],[216.17849,-2.8873E-05],[216.182,-3.2998E-05],[216.18551,-3.1967E-05],[216.18902,-2.9904E-05],[216.19252,-2.7842E-05],[216.19603,-2.7326E-05],[216.19954,-3.042E-05],[216.20305,-3.1967E-05],[216.20656,-2.9389E-05],[216.21006,-2.8873E-05],[216.21357,-3.1967E-05],[216.21708,-3.5576E-05],[216.22059,-3.3513E-05],[216.2241,-3.4029E-05],[216.2276,-3.4029E-05],[216.23111,-2.7842E-05],[216.23462,-2.6811E-05],[216.23813,-2.9389E-05],[216.24164,-3.042E-05],[216.24514,-3.1451E-05],[216.24865,-2.7326E-05],[216.25216,-2.6811E-05],[216.25567,-3.0935E-05]]}
-{"quant":[216.552,-3.0029E-05],"mems":[[216.45212,-2.8357E-05],[216.45562,-2.8873E-05],[216.45913,-2.7326E-05],[216.46264,-2.8873E-05],[216.46615,-2.8357E-05],[216.46966,-3.1451E-05],[216.47316,-3.3513E-05],[216.47667,-2.8357E-05],[216.48018,-2.9389E-05],[216.48369,-2.7842E-05],[216.4872,-2.8873E-05],[216.4907,-3.042E-05],[216.49421,-2.9389E-05],[216.49772,-3.4544E-05],[216.50123,-3.506E-05],[216.50474,-3.1967E-05],[216.50824,-3.4029E-05],[216.51175,-3.3513E-05],[216.51526,-2.9389E-05],[216.51877,-2.9904E-05],[216.52228,-3.042E-05],[216.52578,-2.8357E-05],[216.52929,-2.8873E-05],[216.5328,-3.3513E-05],[216.53631,-3.1967E-05],[216.53982,-2.8357E-05],[216.54332,-2.9904E-05],[216.54683,-2.8357E-05],[216.55034,-3.2998E-05],[216.55385,-3.2482E-05],[216.55736,-2.4748E-05],[216.56086,-2.8357E-05],[216.56437,-3.042E-05],[216.56788,-3.042E-05],[216.57139,-3.2998E-05],[216.5749,-2.6295E-05],[216.5784,-2.5264E-05],[216.58191,-2.7326E-05],[216.58542,-2.9389E-05],[216.58893,-3.5576E-05],[216.59244,-2.7326E-05],[216.59594,-2.5264E-05],[216.59945,-2.9389E-05],[216.60296,-2.5779E-05],[216.60647,-3.2998E-05],[216.60998,-3.1967E-05],[216.61348,-2.8357E-05],[216.61699,-3.5576E-05],[216.6205,-3.1451E-05],[216.62401,-2.8873E-05],[216.62752,-3.1967E-05],[216.63102,-3.2998E-05],[216.63453,-3.506E-05],[216.63804,-3.2482E-05],[216.64155,-2.9389E-05],[216.64506,-2.9904E-05],[216.64856,-2.8873E-05],[216.65207,-2.9904E-05],[216.65558,-2.9904E-05],[216.65909,-2.7326E-05],[216.6626,-3.042E-05],[216.6661,-3.1451E-05],[216.66961,-3.042E-05],[216.67312,-3.042E-05],[216.67663,-2.9389E-05],[216.68014,-3.0935E-05],[216.68364,-2.9389E-05],[216.68715,-2.8873E-05],[216.69066,-2.9389E-05],[216.69417,-3.0935E-05],[216.69768,-3.1967E-05],[216.70118,-2.9389E-05],[216.70469,-2.9389E-05],[216.7082,-2.9389E-05],[216.71171,-3.2998E-05],[216.71522,-2.9904E-05],[216.71872,-2.9904E-05],[216.72223,-3.7122E-05],[216.72574,-3.2482E-05],[216.72925,-3.0935E-05],[216.73276,-3.1451E-05],[216.73626,-2.9904E-05],[216.73977,-3.1451E-05],[216.74328,-3.2998E-05],[216.74679,-3.042E-05],[216.7503,-2.8873E-05],[216.7538,-3.2482E-05]]}
-{"quant":[217.048,0.2931],"mems":[[216.99586,-2.7326E-05],[216.99936,-3.1967E-05],[217.00287,-2.8873E-05],[217.00638,-2.8873E-05],[217.00989,-3.2998E-05],[217.0134,-3.0935E-05],[217.0169,-3.1967E-05],[217.02041,-3.1967E-05],[217.02392,-3.042E-05],[217.02743,-2.5264E-05],[217.03094,-2.217E-05],[217.03444,-2.6295E-05],[217.03795,-2.7326E-05],[217.04146,-2.8357E-05],[217.04497,-2.8357E-05],[217.04848,-2.5264E-05],[217.05198,-2.7842E-05],[217.05549,-2.9904E-05],[217.059,-3.0935E-05],[217.06237,-3.2482E-05],[217.06574,-2.9389E-05],[217.0691,-2.8357E-05],[217.07247,-2.8873E-05],[217.07584,-2.6295E-05],[217.07921,-2.5264E-05],[217.08258,-2.6811E-05],[217.08594,-3.1967E-05],[217.08931,-2.9904E-05],[217.09268,-2.8873E-05],[217.09605,-3.6091E-05],[217.09942,-3.7122E-05],[217.10278,-3.2998E-05],[217.10615,-3.2482E-05],[217.10952,-2.8357E-05],[217.11289,-3.042E-05],[217.11626,-3.4029E-05],[217.11962,-3.042E-05],[217.12299,-3.4544E-05],[217.12636,-3.2998E-05],[217.12973,-3.0935E-05],[217.1331,-3.1967E-05],[217.13646,-2.7842E-05],[217.13983,-3.0935E-05],[217.1432,-2.9389E-05],[217.14657,-2.8873E-05],[217.14994,-2.6811E-05],[217.1533,-2.3202E-05],[217.15667,-2.7842E-05],[217.16004,-2.9389E-05],[217.16341,-3.2482E-05],[217.16678,-3.1451E-05],[217.17014,-3.0935E-05],[217.17351,-3.1967E-05],[217.17688,-2.8357E-05],[217.18025,-2.5779E-05],[217.18362,-2.9389E-05],[217.18698,-2.9389E-05],[217.19035,-2.4748E-05],[217.19372,-2.8873E-05],[217.19709,-3.042E-05],[217.20046,-2.7326E-05],[217.20382,-2.7326E-05],[217.20719,-2.9904E-05],[217.21056,-2.7326E-05],[217.21393,-2.7842E-05],[217.2173,-3.2482E-05],[217.22066,-2.6295E-05],[217.22403,-2.5779E-05],[217.2274,-2.9904E-05],[217.23077,-3.042E-05],[217.23414,-3.2482E-05],[217.2375,-3.0935E-05],[217.24087,-2.7842E-05],[217.24424,-2.8873E-05],[217.24761,-2.9904E-05],[217.25098,-2.9904E-05],[217.25434,-3.042E-05],[217.25771,-3.2482E-05],[217.26108,-2.9389E-05],[217.26445,-3.042E-05],[217.26782,-3.6607E-05],[217.27118,-3.3513E-05],[217.27455,-2.9904E-05],[217.27792,-2.6811E-05],[217.28129,-3.042E-05],[217.28466,-3.2998E-05],[217.28802,-3.1967E-05],[217.29139,-3.4544E-05]]}
-{"quant":[217.534,-2.8718E-05],"mems":[[217.43622,-2.2686E-05],[217.43958,-2.6295E-05],[217.44295,-3.4544E-05],[217.44632,-3.4544E-05],[217.44969,-3.0935E-05],[217.45306,-2.9389E-05],[217.45642,-2.7842E-05],[217.45979,-2.9904E-05],[217.46316,-2.5264E-05],[217.46653,-2.8357E-05],[217.4699,-3.6091E-05],[217.47326,-3.4029E-05],[217.47663,-3.4544E-05],[217.48,-2.9389E-05],[217.48337,-2.4748E-05],[217.48674,-2.6811E-05],[217.4901,-2.7842E-05],[217.49347,-2.9904E-05],[217.49684,-3.1967E-05],[217.50021,-2.8357E-05],[217.50358,-2.7326E-05],[217.50694,-3.0935E-05],[217.51031,-3.0935E-05],[217.51368,-2.8357E-05],[217.51705,-3.2482E-05],[217.52042,-3.0935E-05],[217.52378,-2.4748E-05],[217.52715,-3.042E-05],[217.53052,-3.3513E-05],[217.53389,-2.9904E-05],[217.53726,-2.8873E-05],[217.54062,-2.6295E-05],[217.54399,-2.5779E-05],[217.54736,-2.8357E-05],[217.55073,-3.2998E-05],[217.5541,-3.042E-05],[217.55746,-2.5779E-05],[217.56083,-2.8873E-05],[217.5642,-2.9904E-05],[217.56757,-3.0935E-05],[217.57094,-2.7842E-05],[217.5743,-2.7842E-05],[217.57767,-3.042E-05],[217.58104,-2.5779E-05],[217.58441,-2.5264E-05],[217.58778,-2.8357E-05],[217.59114,-3.0935E-05],[217.59451,-3.042E-05],[217.59788,-2.8873E-05],[217.60125,-2.7326E-05],[217.60462,-2.5264E-05],[217.60798,-3.042E-05],[217.61135,-3.1451E-05],[217.61472,-2.8357E-05],[217.61809,-2.8357E-05],[217.62146,-2.7842E-05],[217.62482,-3.042E-05],[217.62819,-2.9904E-05],[217.63156,-2.8357E-05],[217.63493,-2.9904E-05],[217.6383,-3.1451E-05],[217.64166,-2.9904E-05],[217.64503,-3.0935E-05],[217.6484,-3.1451E-05],[217.65177,-2.7842E-05],[217.65514,-2.7326E-05],[217.6585,-2.6295E-05],[217.66187,-2.6811E-05],[217.66524,-3.1967E-05],[217.66861,-3.1967E-05],[217.67198,-3.042E-05],[217.67534,-2.7842E-05],[217.67871,-2.4748E-05],[217.68208,-3.0935E-05],[217.68545,-2.9389E-05],[217.68882,-2.7326E-05],[217.69218,-3.2998E-05],[217.69555,-2.9389E-05],[217.69892,-2.7326E-05],[217.70229,-2.9389E-05],[217.70566,-3.2998E-05],[217.70902,-3.4029E-05],[217.71239,-3.2998E-05],[217.71576,-3.1967E-05],[217.71913,-3.0935E-05],[217.7225,-2.9389E-05],[217.72586,-2.7842E-05],[217.72923,-2.9904E-05],[217.7326,-3.042E-05],[217.73597,-3.3513E-05]]}
-{"quant":[218.363,-2.987E-05],"mems":[[218.26474,-2.8357E-05],[218.26811,-3.2482E-05],[218.27148,-2.7326E-05],[218.27485,-2.6811E-05],[218.27822,-2.7842E-05],[218.28158,-3.0935E-05],[218.28495,-2.5264E-05],[218.28832,-2.7842E-05],[218.29169,-3.0935E-05],[218.29506,-2.6295E-05],[218.29842,-3.5576E-05],[218.30179,-2.9904E-05],[218.30516,-2.6811E-05],[218.30853,-3.2998E-05],[218.3119,-2.7326E-05],[218.31526,-2.8873E-05],[218.31863,-2.9389E-05],[218.322,-2.6811E-05],[218.32537,-2.9904E-05],[218.32874,-3.5576E-05],[218.3321,-3.4029E-05],[218.33547,-3.0935E-05],[218.33884,-3.0935E-05],[218.34221,-2.9389E-05],[218.34558,-2.8873E-05],[218.34894,-2.9904E-05],[218.35231,-3.2998E-05],[218.35568,-3.2482E-05],[218.35905,-2.9904E-05],[218.36242,-3.042E-05],[218.36578,-2.9904E-05],[218.36915,-2.8873E-05],[218.37252,-3.042E-05],[218.37589,-2.8873E-05],[218.37926,-2.4233E-05],[218.38262,-2.6811E-05],[218.38599,-3.1451E-05],[218.38936,-3.1967E-05],[218.39273,-2.8873E-05],[218.3961,-2.7842E-05],[218.39946,-2.8873E-05],[218.40283,-2.8873E-05],[218.4062,-2.8873E-05],[218.40957,-2.9904E-05],[218.41294,-3.4544E-05],[218.4163,-3.1967E-05],[218.41967,-2.9904E-05],[218.42304,-2.9904E-05],[218.42641,-3.1967E-05],[218.42978,-3.1451E-05],[218.43314,-2.7326E-05],[218.43651,-3.0935E-05],[218.43988,-2.8873E-05],[218.44325,-2.7842E-05],[218.44662,-2.8357E-05],[218.44998,-3.1451E-05],[218.45335,-3.506E-05],[218.45672,-3.1967E-05],[218.46009,-3.0935E-05],[218.46346,-2.7842E-05],[218.46682,-3.2482E-05],[218.47019,-2.8873E-05],[218.47356,-2.6811E-05],[218.47693,-3.042E-05],[218.4803,-2.8357E-05],[218.48366,-3.4544E-05],[218.48703,-3.042E-05],[218.4904,-2.8357E-05],[218.49377,-3.4544E-05],[218.49714,-3.3513E-05],[218.5005,-3.4029E-05],[218.50387,-3.4544E-05],[218.50724,-3.4544E-05],[218.51061,-3.2998E-05],[218.51398,-2.9904E-05],[218.51734,-2.8357E-05],[218.52071,-2.5779E-05],[218.52408,-2.5264E-05],[218.52745,-2.9904E-05],[218.53082,-3.0935E-05],[218.53418,-2.9389E-05],[218.53755,-2.8873E-05],[218.54092,-2.5264E-05],[218.54429,-2.8357E-05],[218.54766,-3.042E-05],[218.55102,-2.9389E-05],[218.55439,-3.4544E-05],[218.55776,-3.042E-05],[218.56113,-2.8357E-05],[218.5645,-3.1451E-05]]}
-{"quant":[218.866,-2.9838E-05],"mems":[[218.76658,-2.5779E-05],[218.76994,-2.7842E-05],[218.77331,-2.2686E-05],[218.77668,-2.2686E-05],[218.78005,-2.4748E-05],[218.78342,-2.6295E-05],[218.78678,-3.3513E-05],[218.79015,-3.2998E-05],[218.79352,-2.7326E-05],[218.79689,-2.7326E-05],[218.80026,-2.9389E-05],[218.80362,-3.042E-05],[218.80699,-3.1967E-05],[218.81036,-2.8873E-05],[218.81373,-2.7842E-05],[218.8171,-2.9389E-05],[218.82046,-2.6295E-05],[218.82383,-2.7326E-05],[218.8272,-3.042E-05],[218.83057,-3.0935E-05],[218.83394,-3.2998E-05],[218.8373,-2.9389E-05],[218.84067,-3.0935E-05],[218.84404,-3.2998E-05],[218.84741,-3.3513E-05],[218.85078,-3.2482E-05],[218.85414,-2.5779E-05],[218.85751,-2.8873E-05],[218.86088,-3.2482E-05],[218.86425,-2.9389E-05],[218.86762,-2.7842E-05],[218.87098,-2.5779E-05],[218.87435,-2.6811E-05],[218.87772,-2.7842E-05],[218.88109,-2.9904E-05],[218.88446,-2.9904E-05],[218.88782,-3.042E-05],[218.89119,-2.9389E-05],[218.89456,-2.4748E-05],[218.89793,-3.042E-05],[218.9013,-3.4029E-05],[218.90466,-3.0935E-05],[218.90803,-3.042E-05],[218.9114,-2.9389E-05],[218.91477,-2.9904E-05],[218.91814,-2.9389E-05],[218.9215,-2.7326E-05],[218.92487,-2.9904E-05],[218.92824,-3.0935E-05],[218.93161,-2.8357E-05],[218.93498,-3.042E-05],[218.93834,-3.6607E-05],[218.94171,-3.506E-05],[218.94508,-2.9904E-05],[218.94845,-2.7326E-05],[218.95182,-2.7326E-05],[218.95518,-2.9389E-05],[218.95855,-3.1451E-05],[218.96192,-3.2482E-05],[218.96529,-3.1967E-05],[218.96866,-2.9389E-05],[218.97202,-2.8357E-05],[218.97539,-3.2482E-05],[218.97876,-3.2482E-05],[218.98213,-3.042E-05],[218.9855,-2.8873E-05],[218.98886,-2.7326E-05],[218.99223,-3.1451E-05],[218.9956,-3.506E-05],[218.99897,-3.2998E-05],[219.00234,-3.3513E-05],[219.0057,-3.6607E-05],[219.00907,-2.8873E-05],[219.01244,-2.8873E-05],[219.01581,-3.4029E-05],[219.01918,-3.3513E-05],[219.02254,-3.2998E-05],[219.02591,-3.1967E-05],[219.02928,-2.7326E-05],[219.03265,-2.7326E-05],[219.03602,-3.1451E-05],[219.03938,-3.042E-05],[219.04275,-3.1967E-05],[219.04612,-3.0935E-05],[219.04949,-2.8873E-05],[219.05286,-3.1967E-05],[219.05622,-3.1451E-05],[219.05959,-3.1451E-05],[219.06296,-3.1451E-05],[219.06633,-3.2998E-05]]}
-{"quant":[219.335,-3.047E-05],"mems":[[219.2381,-2.9389E-05],[219.24146,-3.1967E-05],[219.24483,-2.6295E-05],[219.2482,-3.0935E-05],[219.25157,-3.3513E-05],[219.25494,-2.9904E-05],[219.2583,-2.9904E-05],[219.26167,-2.7326E-05],[219.26504,-2.8357E-05],[219.26841,-2.7842E-05],[219.27178,-2.6811E-05],[219.27514,-2.9904E-05],[219.27851,-2.9904E-05],[219.28188,-3.0935E-05],[219.28525,-3.1451E-05],[219.28862,-2.7842E-05],[219.29198,-2.6295E-05],[219.29535,-3.3513E-05],[219.29872,-3.042E-05],[219.30209,-2.6295E-05],[219.30546,-2.8357E-05],[219.30882,-2.8357E-05],[219.31219,-3.2998E-05],[219.31556,-2.9904E-05],[219.31893,-2.9904E-05],[219.3223,-3.042E-05],[219.32566,-2.217E-05],[219.32903,-2.7842E-05],[219.3324,-3.4029E-05],[219.33577,-3.1451E-05],[219.33914,-2.9389E-05],[219.3425,-2.7842E-05],[219.34587,-3.1451E-05],[219.34924,-3.2998E-05],[219.35261,-2.8873E-05],[219.35598,-2.8873E-05],[219.35934,-2.9389E-05],[219.36271,-2.6295E-05],[219.36608,-2.9389E-05],[219.36945,-3.0935E-05],[219.37282,-2.8873E-05],[219.37618,-2.8873E-05],[219.37955,-2.7326E-05],[219.38292,-2.8873E-05],[219.38629,-2.9904E-05],[219.38966,-3.506E-05],[219.39302,-3.7122E-05],[219.39639,-2.9389E-05],[219.39976,-3.2482E-05],[219.40313,-3.4029E-05],[219.4065,-3.3513E-05],[219.40986,-3.6091E-05],[219.41323,-3.1967E-05],[219.4166,-3.3513E-05],[219.41997,-3.1451E-05],[219.42334,-2.5264E-05],[219.4267,-2.5264E-05],[219.43007,-2.8357E-05],[219.43344,-3.1451E-05],[219.43681,-2.8873E-05],[219.44018,-2.8873E-05],[219.44354,-2.9904E-05],[219.44691,-2.7842E-05],[219.45028,-3.1451E-05],[219.45365,-2.7842E-05],[219.45702,-2.6295E-05],[219.46038,-3.2482E-05],[219.46375,-3.1451E-05],[219.46712,-2.8873E-05],[219.47049,-3.042E-05],[219.47386,-3.0935E-05],[219.47722,-2.9389E-05],[219.48059,-3.1967E-05],[219.48396,-3.1451E-05],[219.48733,-3.1451E-05],[219.4907,-3.3513E-05],[219.49406,-3.0935E-05],[219.49743,-3.2998E-05],[219.5008,-3.4029E-05],[219.50417,-3.2482E-05],[219.50754,-3.2998E-05],[219.5109,-3.1451E-05],[219.51427,-3.0935E-05],[219.51764,-2.8357E-05],[219.52101,-2.6295E-05],[219.52438,-2.5264E-05],[219.52774,-3.042E-05],[219.53111,-3.4544E-05],[219.53448,-3.1451E-05],[219.53785,-2.7326E-05]]}
-{"quant":[219.799,-3.0007E-05],"mems":[[219.70191,-2.217E-05],[219.70535,-2.7326E-05],[219.70879,-2.7326E-05],[219.71223,-2.3717E-05],[219.71567,-3.3513E-05],[219.71911,-3.506E-05],[219.72255,-3.4544E-05],[219.72599,-3.0935E-05],[219.72942,-2.7326E-05],[219.73286,-3.042E-05],[219.7363,-2.6811E-05],[219.73974,-2.8873E-05],[219.74318,-2.8357E-05],[219.74662,-3.0935E-05],[219.75006,-3.1967E-05],[219.75349,-3.2482E-05],[219.75693,-3.0935E-05],[219.76037,-2.7842E-05],[219.76381,-3.1967E-05],[219.76725,-3.042E-05],[219.77069,-3.1967E-05],[219.77413,-3.042E-05],[219.77757,-2.6811E-05],[219.781,-2.9904E-05],[219.78444,-2.7326E-05],[219.78788,-2.9389E-05],[219.79132,-3.1967E-05],[219.79476,-2.8873E-05],[219.7982,-2.9904E-05],[219.80164,-3.6091E-05],[219.80507,-3.0935E-05],[219.80851,-2.7842E-05],[219.81195,-3.042E-05],[219.81539,-2.6811E-05],[219.81883,-2.8357E-05],[219.82227,-2.9904E-05],[219.82571,-2.9904E-05],[219.82915,-3.0935E-05],[219.83258,-2.7842E-05],[219.83602,-2.5779E-05],[219.83946,-2.7842E-05],[219.8429,-2.9904E-05],[219.84634,-3.042E-05],[219.84978,-3.042E-05],[219.85322,-3.1967E-05],[219.85665,-3.1967E-05],[219.86009,-2.9904E-05],[219.86353,-3.506E-05],[219.86697,-3.4029E-05],[219.87041,-3.1451E-05],[219.87385,-2.8357E-05],[219.87729,-2.6295E-05],[219.88073,-3.2482E-05],[219.88416,-3.2998E-05],[219.8876,-2.9389E-05],[219.89104,-2.4748E-05],[219.89448,-2.9389E-05],[219.89792,-3.1451E-05],[219.90136,-2.7326E-05],[219.9048,-2.7842E-05],[219.90823,-2.7326E-05],[219.91167,-3.6091E-05],[219.91511,-3.8669E-05],[219.91855,-3.0935E-05],[219.92199,-2.9904E-05],[219.92543,-2.9389E-05],[219.92887,-2.8357E-05],[219.93231,-2.8357E-05],[219.93574,-2.5779E-05],[219.93918,-2.6295E-05],[219.94262,-3.4029E-05],[219.94606,-3.2998E-05],[219.9495,-2.6811E-05],[219.95294,-3.2482E-05],[219.95638,-3.2482E-05],[219.95981,-2.8357E-05],[219.96325,-2.9904E-05],[219.96669,-3.0935E-05],[219.97013,-3.7122E-05],[219.97357,-3.3513E-05],[219.97701,-2.6295E-05],[219.98045,-3.1967E-05],[219.98389,-3.3513E-05],[219.98732,-3.4029E-05],[219.99076,-3.6091E-05],[219.9942,-3.0935E-05],[219.99764,-2.5779E-05],[220.00108,-2.7842E-05]]}
-{"quant":[220.565,-2.8557E-05],"mems":[[220.4653,-3.042E-05],[220.46874,-3.0935E-05],[220.47218,-2.9904E-05],[220.47561,-2.8357E-05],[220.47905,-2.9389E-05],[220.48249,-3.2998E-05],[220.48593,-3.4029E-05],[220.48937,-3.0935E-05],[220.49281,-3.2998E-05],[220.49625,-3.1967E-05],[220.49969,-2.8357E-05],[220.50312,-2.9904E-05],[220.50656,-3.0935E-05],[220.51,-3.2482E-05],[220.51344,-2.6811E-05],[220.51688,-2.7842E-05],[220.52032,-3.4544E-05],[220.52376,-3.2998E-05],[220.52719,-3.0935E-05],[220.53063,-3.1451E-05],[220.53407,-3.2482E-05],[220.53751,-3.1451E-05],[220.54095,-3.3513E-05],[220.54439,-3.2998E-05],[220.54783,-2.8357E-05],[220.55127,-3.042E-05],[220.5547,-3.2998E-05],[220.55814,-3.0935E-05],[220.56158,-3.2998E-05],[220.56502,-3.1967E-05],[220.56846,-2.9389E-05],[220.5719,-3.2482E-05],[220.57534,-2.9389E-05],[220.57877,-2.8357E-05],[220.58221,-3.1967E-05],[220.58565,-3.2482E-05],[220.58909,-3.2482E-05],[220.59253,-2.9389E-05],[220.59597,-3.042E-05],[220.59941,-3.0935E-05],[220.60285,-2.8873E-05],[220.60628,-2.8357E-05],[220.60972,-2.7326E-05],[220.61316,-2.7842E-05],[220.6166,-2.7842E-05],[220.62004,-3.0935E-05],[220.62348,-3.1967E-05],[220.62692,-2.5779E-05],[220.63035,-2.8873E-05],[220.63379,-2.8873E-05],[220.63723,-2.3717E-05],[220.64067,-2.5779E-05],[220.64411,-2.5779E-05],[220.64755,-2.5779E-05],[220.65099,-2.8357E-05],[220.65443,-2.4748E-05],[220.65786,-2.217E-05],[220.6613,-2.5779E-05],[220.66474,-2.8357E-05],[220.66818,-2.8873E-05],[220.67162,-2.9904E-05],[220.67506,-3.2998E-05],[220.6785,-3.2482E-05],[220.68193,-2.9904E-05],[220.68537,-3.1967E-05],[220.68881,-3.4544E-05],[220.69225,-3.1967E-05],[220.69569,-2.4748E-05],[220.69913,-2.3717E-05],[220.70257,-2.9389E-05],[220.70601,-2.7842E-05],[220.70944,-3.2998E-05],[220.71288,-3.7122E-05],[220.71632,-2.9904E-05],[220.71976,-2.9904E-05],[220.7232,-2.7842E-05],[220.72664,-2.8357E-05],[220.73008,-2.9389E-05],[220.73351,-2.8357E-05],[220.73695,-2.7842E-05],[220.74039,-2.7326E-05],[220.74383,-2.9904E-05],[220.74727,-2.6811E-05],[220.75071,-2.7326E-05],[220.75415,-3.042E-05],[220.75759,-2.8873E-05],[220.76102,-2.5779E-05],[220.76446,-2.7842E-05],[220.7679,-2.8873E-05]]}
-{"quant":[221.023,-3.0317E-05],"mems":[[220.92608,-3.4544E-05],[220.92952,-3.5576E-05],[220.93296,-2.6811E-05],[220.9364,-2.5264E-05],[220.93983,-2.7326E-05],[220.94327,-2.6295E-05],[220.94671,-3.1451E-05],[220.95015,-3.2482E-05],[220.95359,-3.042E-05],[220.95703,-2.8873E-05],[220.96047,-2.8873E-05],[220.96391,-2.9904E-05],[220.96734,-2.9389E-05],[220.97078,-2.5264E-05],[220.97422,-2.5264E-05],[220.97766,-3.1451E-05],[220.9811,-2.9904E-05],[220.98454,-2.7842E-05],[220.98798,-2.9904E-05],[220.99141,-3.2482E-05],[220.99485,-3.4029E-05],[220.99829,-3.042E-05],[221.00173,-2.5779E-05],[221.00517,-2.8873E-05],[221.00861,-2.8357E-05],[221.01205,-2.7842E-05],[221.01549,-2.8873E-05],[221.01892,-2.6295E-05],[221.02236,-2.9389E-05],[221.0258,-3.1451E-05],[221.02924,-2.9389E-05],[221.03268,-3.2998E-05],[221.03612,-3.4544E-05],[221.03956,-3.2482E-05],[221.04299,-3.1451E-05],[221.04643,-2.7842E-05],[221.04987,-3.042E-05],[221.05331,-2.9904E-05],[221.05675,-2.4233E-05],[221.06019,-2.9389E-05],[221.06363,-3.1967E-05],[221.06707,-2.7842E-05],[221.0705,-2.7842E-05],[221.07394,-2.7842E-05],[221.07738,-2.4233E-05],[221.08082,-2.7326E-05],[221.08426,-3.1967E-05],[221.0877,-2.9389E-05],[221.09114,-3.1967E-05],[221.09457,-3.2482E-05],[221.09801,-2.6295E-05],[221.10145,-2.7326E-05],[221.10489,-2.9904E-05],[221.10833,-3.042E-05],[221.11177,-3.2998E-05],[221.11521,-3.0935E-05],[221.11865,-3.506E-05],[221.12208,-3.7122E-05],[221.12552,-3.2482E-05],[221.12896,-3.2482E-05],[221.1324,-2.4233E-05],[221.13584,-2.3202E-05],[221.13928,-2.1655E-05],[221.14272,-2.3202E-05],[221.14615,-3.4029E-05],[221.14959,-2.8873E-05],[221.15303,-2.8873E-05],[221.15647,-2.9904E-05],[221.15991,-2.7842E-05],[221.16335,-2.8873E-05],[221.16679,-2.7326E-05],[221.17023,-3.2998E-05],[221.17366,-3.2998E-05],[221.1771,-2.8873E-05],[221.18054,-3.042E-05],[221.18398,-3.3513E-05],[221.18742,-3.0935E-05],[221.19086,-3.1967E-05],[221.1943,-3.2482E-05],[221.19773,-2.9904E-05],[221.20117,-3.2482E-05],[221.20461,-2.9389E-05],[221.20805,-3.042E-05],[221.21149,-3.3513E-05],[221.21493,-3.1967E-05],[221.21837,-3.1967E-05],[221.22181,-3.2998E-05],[221.22524,-3.1451E-05]]}
-{"quant":[221.495,-2.8684E-05],"mems":[[221.39718,-2.6811E-05],[221.40062,-2.9904E-05],[221.40405,-3.4029E-05],[221.40749,-3.1451E-05],[221.41093,-2.6811E-05],[221.41437,-2.6811E-05],[221.41781,-2.5779E-05],[221.42125,-2.7326E-05],[221.42469,-2.9904E-05],[221.42813,-3.0935E-05],[221.43156,-3.3513E-05],[221.435,-2.8873E-05],[221.43844,-2.6295E-05],[221.44188,-2.9904E-05],[221.44532,-2.8873E-05],[221.44876,-2.4748E-05],[221.4522,-2.3202E-05],[221.45563,-2.8357E-05],[221.45907,-2.5779E-05],[221.46251,-2.4233E-05],[221.46595,-3.0935E-05],[221.46939,-2.9389E-05],[221.47283,-2.9389E-05],[221.47627,-2.8357E-05],[221.47971,-2.9904E-05],[221.48314,-2.9904E-05],[221.48658,-2.7326E-05],[221.49002,-2.8357E-05],[221.49346,-2.4233E-05],[221.4969,-2.5779E-05],[221.50034,-2.5779E-05],[221.50378,-2.6811E-05],[221.50721,-3.2482E-05],[221.51065,-3.2482E-05],[221.51409,-2.9904E-05],[221.51753,-2.9904E-05],[221.52097,-2.9389E-05],[221.52441,-2.7326E-05],[221.52785,-2.8873E-05],[221.53129,-2.7842E-05],[221.53472,-2.8873E-05],[221.53816,-3.0935E-05],[221.5416,-2.6295E-05],[221.54504,-2.6295E-05],[221.54848,-2.6295E-05],[221.55192,-2.9904E-05],[221.55536,-3.3513E-05],[221.55879,-2.7326E-05],[221.56223,-2.6811E-05],[221.56567,-2.8357E-05],[221.56911,-2.9904E-05],[221.57255,-2.9389E-05],[221.57599,-2.5264E-05],[221.57943,-2.6811E-05],[221.58287,-2.7326E-05],[221.5863,-2.9389E-05],[221.58974,-3.0935E-05],[221.59318,-3.2482E-05],[221.59662,-2.7842E-05],[221.60006,-2.5264E-05],[221.6035,-2.7326E-05],[221.60694,-2.7842E-05],[221.61037,-3.2482E-05],[221.61381,-2.6295E-05],[221.61725,-2.7326E-05],[221.62069,-3.1451E-05],[221.62413,-3.0935E-05],[221.62757,-3.4029E-05],[221.63101,-3.0935E-05],[221.63445,-3.042E-05],[221.63788,-2.7842E-05],[221.64132,-3.1967E-05],[221.64476,-3.2998E-05],[221.6482,-2.9389E-05],[221.65164,-3.2998E-05],[221.65508,-2.7842E-05],[221.65852,-2.7326E-05],[221.66195,-2.5779E-05],[221.66539,-2.7842E-05],[221.66883,-3.1967E-05],[221.67227,-2.9389E-05],[221.67571,-2.9389E-05],[221.67915,-2.6295E-05],[221.68259,-2.8873E-05],[221.68603,-2.6295E-05],[221.68946,-2.9904E-05],[221.6929,-3.3513E-05],[221.69634,-2.5779E-05]]}
-{"quant":[222.03,1.2215],"mems":[[221.93017,-2.9904E-05],[221.93361,-3.506E-05],[221.93705,-3.2482E-05],[221.94049,-2.8873E-05],[221.94393,-3.2482E-05],[221.94736,-3.2482E-05],[221.9508,-3.4029E-05],[221.95424,-3.3513E-05],[221.95768,-2.6295E-05],[221.96112,-2.9389E-05],[221.96456,-3.0935E-05],[221.968,-2.9389E-05],[221.97143,-3.2998E-05],[221.97487,-2.9904E-05],[221.97831,-2.6295E-05],[221.98175,-2.7842E-05],[221.98519,-2.7326E-05],[221.98863,-2.5779E-05],[221.99207,-2.6295E-05],[221.99551,-2.6295E-05],[221.99894,-2.4233E-05],[222.00238,-2.5264E-05],[222.00582,-3.1451E-05],[222.00926,-3.4029E-05],[222.0127,-3.042E-05],[222.01614,-2.8357E-05],[222.01958,-3.1967E-05],[222.02301,-3.6607E-05],[222.02645,-3.042E-05],[222.02989,-2.7326E-05],[222.03333,-3.2998E-05],[222.03677,-3.1451E-05],[222.04021,-2.8873E-05],[222.04365,-3.1967E-05],[222.04709,-3.2482E-05],[222.05052,-2.7842E-05],[222.05396,-2.6811E-05],[222.0574,-2.6295E-05],[222.06084,-2.4233E-05],[222.06428,-2.7326E-05],[222.06772,-3.0935E-05],[222.07116,-2.8873E-05],[222.07459,-2.7326E-05],[222.07803,-2.3717E-05],[222.08147,-2.5779E-05],[222.08491,-3.4029E-05],[222.08835,-3.1967E-05],[222.09179,-3.1967E-05],[222.09523,-3.042E-05],[222.09867,-2.6811E-05],[222.1021,-3.4029E-05],[222.10554,-3.3513E-05],[222.10898,-3.042E-05],[222.11242,-3.6091E-05],[222.11586,-2.9389E-05],[222.1193,-2.7326E-05],[222.12274,-2.9904E-05],[222.12617,-2.9389E-05],[222.12961,-3.8154E-05],[222.13305,-3.2998E-05],[222.13649,-2.5779E-05],[222.13993,-2.9904E-05],[222.14337,-3.1451E-05],[222.14681,-3.1967E-05],[222.15025,-3.0935E-05],[222.15368,-3.0935E-05],[222.15712,-2.8357E-05],[222.16056,-2.8357E-05],[222.164,-2.7326E-05],[222.16747,-2.8357E-05],[222.17095,-3.4029E-05],[222.17442,-2.8873E-05],[222.1779,-2.7326E-05],[222.18137,-2.8357E-05],[222.18485,-3.3513E-05],[222.18832,-3.506E-05],[222.1918,-3.0935E-05],[222.19527,-3.6091E-05],[222.19875,-2.6811E-05],[222.20222,-2.1139E-05],[222.2057,-2.7326E-05],[222.20917,-2.8357E-05],[222.21265,-3.2998E-05],[222.21612,-2.8873E-05],[222.21959,-2.9389E-05],[222.22307,-2.7842E-05],[222.22654,-2.6295E-05],[222.23002,-3.4029E-05]]}
-{"quant":[222.515,-2.9655E-05],"mems":[[222.41765,-3.1451E-05],[222.42113,-2.8873E-05],[222.4246,-2.8357E-05],[222.42807,-2.9904E-05],[222.43155,-2.8873E-05],[222.43502,-2.8357E-05],[222.4385,-2.7326E-05],[222.44197,-2.8357E-05],[222.44545,-2.8357E-05],[222.44892,-2.9904E-05],[222.4524,-3.042E-05],[222.45587,-2.9904E-05],[222.45935,-3.1967E-05],[222.46282,-2.7842E-05],[222.4663,-3.4029E-05],[222.46977,-3.2482E-05],[222.47325,-2.6811E-05],[222.47672,-3.1967E-05],[222.48019,-2.7326E-05],[222.48367,-2.7842E-05],[222.48714,-3.1967E-05],[222.49062,-3.2482E-05],[222.49409,-3.1967E-05],[222.49757,-2.9389E-05],[222.50104,-2.7326E-05],[222.50452,-2.7326E-05],[222.50799,-3.1967E-05],[222.51147,-3.1967E-05],[222.51494,-3.1451E-05],[222.51842,-2.5779E-05],[222.52189,-2.2686E-05],[222.52537,-2.7326E-05],[222.52884,-2.9904E-05],[222.53231,-3.2482E-05],[222.53579,-3.2998E-05],[222.53926,-3.3513E-05],[222.54274,-3.042E-05],[222.54621,-2.8357E-05],[222.54969,-3.1967E-05],[222.55316,-2.9904E-05],[222.55664,-3.0935E-05],[222.56011,-3.0935E-05],[222.56359,-2.6811E-05],[222.56706,-2.7842E-05],[222.57054,-2.8357E-05],[222.57401,-2.9904E-05],[222.57749,-2.9904E-05],[222.58096,-2.7842E-05],[222.58443,-2.7326E-05],[222.58791,-2.6811E-05],[222.59138,-2.8873E-05],[222.59486,-2.6811E-05],[222.59833,-2.8357E-05],[222.60181,-3.1967E-05],[222.60528,-3.4029E-05],[222.60876,-3.4029E-05],[222.61223,-3.1967E-05],[222.61571,-3.1967E-05],[222.61918,-2.6295E-05],[222.62266,-2.5779E-05],[222.62613,-2.9389E-05],[222.62961,-2.9389E-05],[222.63308,-3.2998E-05],[222.63655,-2.9389E-05],[222.64003,-2.4233E-05],[222.6435,-2.8357E-05],[222.64698,-3.0935E-05],[222.65045,-3.2998E-05],[222.65393,-3.0935E-05],[222.6574,-2.7326E-05],[222.66088,-2.9389E-05],[222.66435,-2.7326E-05],[222.66783,-2.9904E-05],[222.6713,-3.1967E-05],[222.67478,-2.6295E-05],[222.67825,-2.8873E-05],[222.68173,-2.6295E-05],[222.6852,-2.3202E-05],[222.68867,-2.9389E-05],[222.69215,-2.8873E-05],[222.69562,-2.8357E-05],[222.6991,-3.1451E-05],[222.70257,-2.8873E-05],[222.70605,-2.5264E-05],[222.70952,-2.8873E-05],[222.713,-3.042E-05],[222.71647,-2.9389E-05]]}
-{"quant":[223.211,-2.9578E-05],"mems":[[223.11258,-3.4029E-05],[223.11606,-3.0935E-05],[223.11953,-3.1451E-05],[223.12301,-2.6811E-05],[223.12648,-3.0935E-05],[223.12996,-3.2998E-05],[223.13343,-3.0935E-05],[223.13691,-2.9904E-05],[223.14038,-2.7326E-05],[223.14386,-3.0935E-05],[223.14733,-2.8357E-05],[223.15081,-2.7842E-05],[223.15428,-3.042E-05],[223.15775,-3.1967E-05],[223.16123,-2.9904E-05],[223.1647,-2.7842E-05],[223.16818,-3.1451E-05],[223.17165,-2.5264E-05],[223.17513,-2.6295E-05],[223.1786,-3.1967E-05],[223.18208,-2.9389E-05],[223.18555,-2.8873E-05],[223.18903,-2.8357E-05],[223.1925,-2.9389E-05],[223.19598,-2.9389E-05],[223.19945,-2.9389E-05],[223.20293,-2.9904E-05],[223.2064,-2.5779E-05],[223.20987,-2.7326E-05],[223.21335,-3.042E-05],[223.21682,-3.042E-05],[223.2203,-3.042E-05],[223.22377,-3.3513E-05],[223.22725,-3.042E-05],[223.23072,-2.5264E-05],[223.2342,-3.4544E-05],[223.23767,-3.6091E-05],[223.24115,-3.0935E-05],[223.24462,-2.7842E-05],[223.2481,-2.6295E-05],[223.25157,-2.8873E-05],[223.25505,-2.8357E-05],[223.25852,-2.9904E-05],[223.26199,-3.1451E-05],[223.26547,-2.8357E-05],[223.26894,-3.0935E-05],[223.27242,-3.0935E-05],[223.27589,-2.9389E-05],[223.27937,-2.9904E-05],[223.28284,-2.6295E-05],[223.28632,-2.5779E-05],[223.28979,-2.217E-05],[223.29327,-2.4748E-05],[223.29674,-3.506E-05],[223.30022,-3.2482E-05],[223.30369,-2.7842E-05],[223.30717,-2.9904E-05],[223.31064,-3.042E-05],[223.31411,-2.8357E-05],[223.31759,-2.9904E-05],[223.32106,-3.506E-05],[223.32454,-3.2998E-05],[223.32801,-2.9389E-05],[223.33149,-3.2482E-05],[223.33496,-2.9904E-05],[223.33844,-2.6811E-05],[223.34191,-3.1967E-05],[223.34539,-3.1451E-05],[223.34886,-2.7842E-05],[223.35234,-3.0935E-05],[223.35581,-3.4029E-05],[223.35929,-3.4544E-05],[223.36276,-3.1967E-05],[223.36623,-2.8873E-05],[223.36971,-3.042E-05],[223.37318,-2.6811E-05],[223.37666,-2.5779E-05],[223.38013,-2.7326E-05],[223.38361,-2.9904E-05],[223.38708,-2.8873E-05],[223.39056,-2.6811E-05],[223.39403,-2.8357E-05],[223.39751,-2.5264E-05],[223.40098,-3.1451E-05],[223.40446,-3.0935E-05],[223.40793,-3.0935E-05],[223.41141,-2.9389E-05]]}
-{"quant":[223.707,-2.9637E-05],"mems":[[223.60946,-3.2998E-05],[223.61294,-2.6811E-05],[223.61641,-2.9389E-05],[223.61989,-3.1451E-05],[223.62336,-2.5264E-05],[223.62683,-2.4233E-05],[223.63031,-2.8357E-05],[223.63378,-2.6811E-05],[223.63726,-2.7842E-05],[223.64073,-3.2482E-05],[223.64421,-3.042E-05],[223.64768,-3.1967E-05],[223.65116,-3.042E-05],[223.65463,-2.9389E-05],[223.65811,-3.2998E-05],[223.66158,-3.1967E-05],[223.66506,-3.2482E-05],[223.66853,-2.8873E-05],[223.67201,-2.8357E-05],[223.67548,-2.9904E-05],[223.67895,-2.6811E-05],[223.68243,-2.8873E-05],[223.6859,-2.7326E-05],[223.68938,-2.6811E-05],[223.69285,-2.7842E-05],[223.69633,-2.8357E-05],[223.6998,-3.0935E-05],[223.70328,-3.2482E-05],[223.70675,-3.042E-05],[223.71023,-2.7842E-05],[223.7137,-3.1967E-05],[223.71718,-3.042E-05],[223.72065,-2.9904E-05],[223.72413,-3.5576E-05],[223.7276,-3.5576E-05],[223.73107,-2.8357E-05],[223.73455,-2.6295E-05],[223.73802,-2.9389E-05],[223.7415,-2.6295E-05],[223.74497,-2.8873E-05],[223.74845,-2.8873E-05],[223.75192,-2.1655E-05],[223.7554,-2.5264E-05],[223.75887,-2.7842E-05],[223.76235,-2.8873E-05],[223.76582,-3.2998E-05],[223.7693,-3.4029E-05],[223.77277,-3.1451E-05],[223.77625,-2.3202E-05],[223.77972,-2.3717E-05],[223.78319,-3.0935E-05],[223.78667,-3.1967E-05],[223.79014,-3.6607E-05],[223.79362,-3.1967E-05],[223.79709,-2.9389E-05],[223.80057,-3.4029E-05],[223.80404,-3.042E-05],[223.80752,-2.5779E-05],[223.81099,-2.5779E-05],[223.81447,-2.5779E-05],[223.81794,-2.5779E-05],[223.82142,-3.042E-05],[223.82489,-3.1967E-05],[223.82837,-2.8357E-05],[223.83184,-2.5779E-05],[223.83531,-2.5779E-05],[223.83879,-2.7326E-05],[223.84226,-2.8873E-05],[223.84574,-2.9389E-05],[223.84921,-2.8873E-05],[223.85269,-2.8873E-05],[223.85616,-2.4748E-05],[223.85964,-2.7326E-05],[223.86311,-2.9389E-05],[223.86659,-2.8357E-05],[223.87006,-3.1451E-05],[223.87354,-2.6295E-05],[223.87701,-2.5264E-05],[223.88049,-3.2998E-05],[223.88396,-3.3513E-05],[223.88743,-3.1451E-05],[223.89091,-3.1451E-05],[223.89438,-2.7842E-05],[223.89786,-2.7842E-05],[223.90133,-3.1451E-05],[223.90481,-2.9389E-05],[223.90828,-3.1967E-05]]}
-{"quant":[224.191,-2.9303E-05],"mems":[[224.09244,-2.9904E-05],[224.09591,-2.9904E-05],[224.09939,-2.6295E-05],[224.10286,-3.0935E-05],[224.10634,-3.4544E-05],[224.10981,-2.7842E-05],[224.11329,-2.5779E-05],[224.11676,-2.6811E-05],[224.12024,-2.8873E-05],[224.12371,-2.9904E-05],[224.12719,-3.2482E-05],[224.13066,-3.506E-05],[224.13414,-3.0935E-05],[224.13761,-3.042E-05],[224.14109,-2.9389E-05],[224.14456,-3.3513E-05],[224.14803,-3.2482E-05],[224.15151,-2.7326E-05],[224.15498,-2.9389E-05],[224.15846,-3.042E-05],[224.16193,-3.042E-05],[224.16541,-2.9389E-05],[224.16888,-2.9904E-05],[224.17236,-2.8873E-05],[224.17583,-2.9389E-05],[224.17931,-3.0935E-05],[224.18278,-3.042E-05],[224.18626,-2.9389E-05],[224.18973,-2.9904E-05],[224.19321,-2.9389E-05],[224.19668,-2.7326E-05],[224.20015,-2.9389E-05],[224.20363,-2.8357E-05],[224.2071,-2.8873E-05],[224.21058,-2.8357E-05],[224.21405,-2.7842E-05],[224.21753,-3.0935E-05],[224.221,-2.9389E-05],[224.22448,-2.8357E-05],[224.22795,-2.9904E-05],[224.23143,-2.8357E-05],[224.2349,-3.0935E-05],[224.23838,-3.0935E-05],[224.24185,-2.6295E-05],[224.24533,-2.8357E-05],[224.2488,-3.0935E-05],[224.25227,-2.9904E-05],[224.25575,-2.6811E-05],[224.25922,-2.6295E-05],[224.2627,-2.3202E-05],[224.26617,-2.6811E-05],[224.26965,-3.506E-05],[224.27312,-2.9904E-05],[224.2766,-2.8357E-05],[224.28007,-2.8873E-05],[224.28355,-3.0935E-05],[224.28702,-3.4029E-05],[224.2905,-3.1967E-05],[224.29397,-3.2998E-05],[224.29745,-2.7842E-05],[224.30092,-2.3717E-05],[224.30439,-2.7326E-05],[224.30787,-3.3513E-05],[224.31134,-3.042E-05],[224.31482,-2.5779E-05],[224.31829,-2.7326E-05],[224.32177,-2.6811E-05],[224.32524,-2.9904E-05],[224.32872,-3.042E-05],[224.33219,-2.8357E-05],[224.33567,-2.8873E-05],[224.33914,-2.7326E-05],[224.34262,-2.7326E-05],[224.34609,-2.7842E-05],[224.34957,-2.7842E-05],[224.35304,-2.8873E-05],[224.35651,-3.1451E-05],[224.35999,-2.9904E-05],[224.36346,-2.6811E-05],[224.36694,-2.8873E-05],[224.37041,-3.3513E-05],[224.37389,-3.2482E-05],[224.37736,-3.1451E-05],[224.38084,-3.0935E-05],[224.38431,-2.9904E-05],[224.38779,-3.2998E-05],[224.39126,-3.0935E-05]]}
-{"quant":[224.64,-0.83927],"mems":[[224.54067,-2.8357E-05],[224.54415,-2.6295E-05],[224.54762,-2.9904E-05],[224.5511,-2.6811E-05],[224.55457,-2.6811E-05],[224.55805,-2.8873E-05],[224.56152,-2.7842E-05],[224.56499,-3.1451E-05],[224.56847,-3.0935E-05],[224.57194,-3.4029E-05],[224.57542,-3.4029E-05],[224.57889,-2.5779E-05],[224.58237,-2.4748E-05],[224.58584,-2.5264E-05],[224.58932,-2.6811E-05],[224.59279,-2.8873E-05],[224.59627,-2.8357E-05],[224.59974,-3.042E-05],[224.60322,-3.2482E-05],[224.60669,-3.4029E-05],[224.61017,-3.3513E-05],[224.61364,-3.2482E-05],[224.61711,-3.2482E-05],[224.62059,-3.042E-05],[224.62406,-2.5779E-05],[224.62754,-2.7326E-05],[224.63101,-3.2998E-05],[224.63449,-2.8357E-05],[224.63796,-2.8873E-05],[224.64144,-2.8357E-05],[224.64491,-2.6811E-05],[224.64839,-3.2998E-05],[224.65186,-3.2482E-05],[224.65534,-3.1451E-05],[224.65881,-3.1967E-05],[224.66229,-3.1967E-05],[224.66576,-2.6811E-05],[224.66923,-2.3202E-05],[224.67271,-2.9904E-05],[224.67618,-2.9904E-05],[224.67966,-2.7326E-05],[224.68313,-2.6811E-05],[224.68661,-2.6295E-05],[224.69008,-2.7326E-05],[224.69356,-3.0935E-05],[224.69703,-3.0935E-05],[224.70051,-2.5779E-05],[224.70398,-2.4233E-05],[224.70746,-2.8357E-05],[224.71093,-2.9389E-05],[224.71441,-2.8873E-05],[224.71788,-3.0935E-05],[224.72135,-3.042E-05],[224.72483,-2.5264E-05],[224.7283,-2.4748E-05],[224.73178,-2.9904E-05],[224.73525,-3.1967E-05],[224.73873,-2.6811E-05],[224.7422,-2.4748E-05],[224.74568,-2.9904E-05],[224.74915,-3.042E-05],[224.75263,-3.042E-05],[224.7561,-3.042E-05],[224.75958,-2.9389E-05],[224.76305,-2.8357E-05],[224.76653,-2.5264E-05],[224.77,-2.4748E-05],[224.77347,-2.5779E-05],[224.77695,-2.6811E-05],[224.78042,-2.7842E-05],[224.7839,-2.6811E-05],[224.78737,-2.6295E-05],[224.79085,-2.7842E-05],[224.79432,-2.7326E-05],[224.7978,-2.8873E-05],[224.80127,-3.2998E-05],[224.80475,-2.8357E-05],[224.80822,-2.4233E-05],[224.8117,-3.0935E-05],[224.81517,-3.506E-05],[224.81865,-3.042E-05],[224.82212,-2.6295E-05],[224.82559,-1.9077E-05],[224.82907,-2.5779E-05],[224.83254,-3.2482E-05],[224.83602,-2.9904E-05],[224.83949,-3.4544E-05],[224.84297,-2.8873E-05]]}
-{"quant":[225.104,-3.0544E-05],"mems":[[225.00628,-2.5779E-05],[225.00975,-2.6295E-05],[225.01323,-2.6811E-05],[225.0167,-3.042E-05],[225.02018,-2.9904E-05],[225.02365,-2.7326E-05],[225.02713,-2.7326E-05],[225.0306,-2.7326E-05],[225.03407,-2.8873E-05],[225.03755,-3.1451E-05],[225.04102,-3.2482E-05],[225.0445,-3.2482E-05],[225.04797,-2.7842E-05],[225.05145,-2.9904E-05],[225.05492,-3.506E-05],[225.0584,-2.9904E-05],[225.06187,-2.8357E-05],[225.06535,-3.1451E-05],[225.06882,-2.8873E-05],[225.0723,-2.6811E-05],[225.07577,-2.9389E-05],[225.07925,-2.9389E-05],[225.08272,-2.5779E-05],[225.08619,-2.4748E-05],[225.08967,-2.7842E-05],[225.09314,-2.8357E-05],[225.09662,-3.042E-05],[225.10009,-3.1967E-05],[225.10357,-2.9904E-05],[225.10704,-2.8357E-05],[225.11052,-2.4748E-05],[225.11399,-2.8873E-05],[225.11747,-3.506E-05],[225.12094,-3.4029E-05],[225.12442,-2.9904E-05],[225.12789,-2.7842E-05],[225.13137,-3.0935E-05],[225.13484,-3.042E-05],[225.13831,-2.9389E-05],[225.14179,-3.506E-05],[225.14526,-3.1451E-05],[225.14874,-2.4233E-05],[225.15221,-3.042E-05],[225.15569,-3.1967E-05],[225.15916,-3.3513E-05],[225.16264,-3.3513E-05],[225.16611,-2.8873E-05],[225.16959,-2.9904E-05],[225.17306,-3.0935E-05],[225.17654,-3.2482E-05],[225.18001,-3.0935E-05],[225.18349,-2.9389E-05],[225.18696,-3.0935E-05],[225.19043,-3.042E-05],[225.19391,-3.042E-05],[225.19738,-3.2482E-05],[225.20086,-3.1451E-05],[225.20433,-2.7842E-05],[225.20781,-2.9389E-05],[225.21128,-2.9389E-05],[225.21476,-2.6295E-05],[225.21823,-2.8873E-05],[225.22171,-3.0935E-05],[225.22518,-2.9904E-05],[225.22866,-2.7842E-05],[225.23213,-2.7842E-05],[225.23561,-2.6295E-05],[225.23908,-2.7326E-05],[225.24255,-2.8357E-05],[225.24603,-2.6811E-05],[225.2495,-2.8357E-05],[225.25298,-2.5264E-05],[225.25645,-2.6295E-05],[225.25993,-3.1967E-05],[225.2634,-3.1967E-05],[225.26688,-2.6811E-05],[225.27035,-2.3202E-05],[225.27383,-2.7326E-05],[225.2773,-2.5779E-05],[225.28078,-2.5264E-05],[225.28425,-2.8357E-05],[225.28773,-2.8357E-05],[225.2912,-2.6811E-05],[225.29467,-2.7842E-05],[225.29815,-3.1451E-05],[225.30162,-2.9904E-05],[225.3051,-2.7326E-05]]}
-{"quant":[225.571,-2.9389E-05],"mems":[[225.47188,-2.9904E-05],[225.47536,-3.0935E-05],[225.47883,-3.1451E-05],[225.48231,-3.2998E-05],[225.48578,-3.1451E-05],[225.48926,-2.8873E-05],[225.49273,-2.8873E-05],[225.49621,-3.0935E-05],[225.49968,-2.8357E-05],[225.50315,-2.8873E-05],[225.50663,-3.2482E-05],[225.5101,-2.4748E-05],[225.51358,-2.4233E-05],[225.51705,-2.7842E-05],[225.52053,-2.9904E-05],[225.524,-2.9389E-05],[225.52748,-2.8357E-05],[225.53095,-3.1451E-05],[225.53443,-2.6811E-05],[225.5379,-3.042E-05],[225.54138,-3.4544E-05],[225.54485,-2.8873E-05],[225.54833,-2.8357E-05],[225.5518,-2.6811E-05],[225.55527,-2.8357E-05],[225.55875,-2.8357E-05],[225.56222,-3.1451E-05],[225.5657,-3.4029E-05],[225.56917,-2.4748E-05],[225.57265,-2.4233E-05],[225.57612,-2.7326E-05],[225.5796,-2.9389E-05],[225.58307,-3.2482E-05],[225.58655,-2.9389E-05],[225.59002,-2.9904E-05],[225.5935,-2.8873E-05],[225.59697,-2.5264E-05],[225.60045,-2.5779E-05],[225.60392,-2.7842E-05],[225.60739,-2.9904E-05],[225.61087,-2.9389E-05],[225.61434,-2.8873E-05],[225.61782,-2.9904E-05],[225.62129,-3.3513E-05],[225.62477,-3.506E-05],[225.62824,-3.2998E-05],[225.63172,-2.8357E-05],[225.63519,-2.7326E-05],[225.63867,-2.7842E-05],[225.64214,-2.6295E-05],[225.64562,-2.9904E-05],[225.64909,-3.0935E-05],[225.65257,-2.9904E-05],[225.65604,-3.042E-05],[225.65951,-3.0935E-05],[225.66299,-3.0935E-05],[225.66646,-2.8357E-05],[225.66994,-3.042E-05],[225.67341,-2.9904E-05],[225.67689,-2.8873E-05],[225.68036,-2.8357E-05],[225.68384,-2.8357E-05],[225.68731,-3.2998E-05],[225.69079,-2.8357E-05],[225.69426,-2.5779E-05],[225.69774,-2.7842E-05],[225.70121,-3.042E-05],[225.70469,-3.042E-05],[225.70816,-2.6811E-05],[225.71163,-2.9389E-05],[225.71511,-2.7842E-05],[225.71858,-2.6811E-05],[225.72206,-2.9389E-05],[225.72553,-2.9904E-05],[225.72901,-2.9904E-05],[225.73248,-2.9904E-05],[225.73596,-3.1451E-05],[225.73943,-3.042E-05],[225.74291,-2.9904E-05],[225.74638,-2.9389E-05],[225.74986,-2.6295E-05],[225.75333,-2.6295E-05],[225.75681,-2.6295E-05],[225.76028,-2.9904E-05],[225.76375,-3.042E-05],[225.76723,-2.5264E-05],[225.7707,-2.8873E-05],[225.77418,-2.9904E-05]]}
-{"quant":[226.302,-2.8117E-05],"mems":[[226.20504,-3.1967E-05],[226.20851,-2.6811E-05],[226.21199,-2.7842E-05],[226.21546,-2.8357E-05],[226.21894,-3.042E-05],[226.22241,-3.4029E-05],[226.22589,-2.7326E-05],[226.22936,-2.7326E-05],[226.23283,-3.0935E-05],[226.23631,-2.6811E-05],[226.23978,-3.0935E-05],[226.24326,-2.7326E-05],[226.24673,-2.3717E-05],[226.25021,-2.8357E-05],[226.25368,-2.7326E-05],[226.25716,-2.9389E-05],[226.26063,-2.6811E-05],[226.26411,-2.6295E-05],[226.26758,-2.8357E-05],[226.27106,-2.9389E-05],[226.27453,-2.8873E-05],[226.27801,-2.6295E-05],[226.28148,-3.0935E-05],[226.28495,-3.0935E-05],[226.28843,-3.1967E-05],[226.2919,-3.2482E-05],[226.29538,-2.8357E-05],[226.29885,-2.8873E-05],[226.30233,-2.9904E-05],[226.3058,-2.7326E-05],[226.30928,-2.5264E-05],[226.31275,-2.9904E-05],[226.31623,-2.6811E-05],[226.3197,-1.9592E-05],[226.32318,-2.3202E-05],[226.32665,-2.9389E-05],[226.33013,-3.1451E-05],[226.3336,-3.2482E-05],[226.33707,-2.6811E-05],[226.34055,-2.217E-05],[226.34402,-2.3202E-05],[226.3475,-2.3202E-05],[226.35097,-3.042E-05],[226.35445,-3.1967E-05],[226.35792,-2.8357E-05],[226.3614,-3.1451E-05],[226.36487,-2.8357E-05],[226.36835,-2.9389E-05],[226.37182,-2.7326E-05],[226.3753,-2.9904E-05],[226.37877,-3.4544E-05],[226.38225,-2.9389E-05],[226.38572,-2.8873E-05],[226.38919,-2.8357E-05],[226.39267,-2.7842E-05],[226.39614,-3.0935E-05],[226.39962,-2.9904E-05],[226.40309,-2.5779E-05],[226.40657,-2.7326E-05],[226.41004,-3.042E-05],[226.41352,-2.9389E-05],[226.41699,-2.7842E-05],[226.42047,-2.6295E-05],[226.42394,-2.9389E-05],[226.42742,-2.7326E-05],[226.43089,-2.7326E-05],[226.43437,-3.042E-05],[226.43784,-3.1967E-05],[226.44131,-2.9389E-05],[226.44479,-2.3717E-05],[226.44826,-2.6811E-05],[226.45174,-2.7326E-05],[226.45521,-2.7842E-05],[226.45869,-2.9389E-05],[226.46216,-2.4233E-05],[226.46564,-2.6295E-05],[226.46911,-3.2998E-05],[226.47259,-3.1967E-05],[226.47606,-2.8873E-05],[226.47954,-2.6811E-05],[226.48301,-2.7326E-05],[226.48649,-2.7842E-05],[226.48996,-3.042E-05],[226.49343,-3.1451E-05],[226.49691,-2.6295E-05],[226.50038,-2.9904E-05],[226.50386,-3.042E-05]]}
-{"quant":[226.798,-2.9079E-05],"mems":[[226.69844,-2.9389E-05],[226.70191,-3.2482E-05],[226.70539,-3.042E-05],[226.70886,-2.8357E-05],[226.71234,-3.1967E-05],[226.71581,-3.0935E-05],[226.71929,-2.6811E-05],[226.72276,-2.6811E-05],[226.72624,-2.3202E-05],[226.72971,-2.8357E-05],[226.73319,-3.2482E-05],[226.73666,-3.2482E-05],[226.74014,-3.3513E-05],[226.74361,-3.0935E-05],[226.74709,-3.3513E-05],[226.75056,-3.042E-05],[226.75403,-2.9904E-05],[226.75751,-2.7842E-05],[226.76098,-2.5264E-05],[226.76446,-2.7326E-05],[226.76793,-2.3202E-05],[226.77141,-2.5779E-05],[226.77488,-2.7326E-05],[226.77836,-2.8873E-05],[226.78183,-2.6811E-05],[226.78531,-2.3717E-05],[226.78878,-2.7842E-05],[226.79226,-2.6811E-05],[226.79573,-3.042E-05],[226.79921,-3.2482E-05],[226.80268,-3.042E-05],[226.80615,-2.8873E-05],[226.80963,-3.042E-05],[226.8131,-3.6091E-05],[226.81658,-3.6091E-05],[226.82005,-3.2998E-05],[226.82353,-3.1967E-05],[226.827,-3.0935E-05],[226.83048,-2.9904E-05],[226.83395,-2.7842E-05],[226.83743,-2.5264E-05],[226.8409,-2.9389E-05],[226.84438,-2.5779E-05],[226.84785,-2.6295E-05],[226.85133,-2.8873E-05],[226.8548,-2.7842E-05],[226.85827,-3.4029E-05],[226.86175,-2.7326E-05],[226.86522,-2.4748E-05],[226.8687,-2.5264E-05],[226.87217,-2.6811E-05],[226.87565,-2.9389E-05],[226.87912,-2.4748E-05],[226.8826,-2.5264E-05],[226.88607,-2.4233E-05],[226.88955,-2.5264E-05],[226.89302,-2.9389E-05],[226.8965,-3.3513E-05],[226.89997,-3.0935E-05],[226.90345,-2.8357E-05],[226.90692,-3.1451E-05],[226.91039,-2.7842E-05],[226.91387,-2.9904E-05],[226.91734,-3.042E-05],[226.92082,-2.8873E-05],[226.92429,-2.8357E-05],[226.92777,-2.2686E-05],[226.93124,-2.7326E-05],[226.93472,-3.1967E-05],[226.93819,-2.9389E-05],[226.94167,-2.6295E-05],[226.94514,-2.7842E-05],[226.94862,-2.9904E-05],[226.95209,-3.0935E-05],[226.95557,-3.4544E-05],[226.95904,-2.9389E-05],[226.96251,-2.6811E-05],[226.96599,-2.9389E-05],[226.96946,-3.2482E-05],[226.97294,-3.3513E-05],[226.97641,-3.042E-05],[226.97989,-2.7326E-05],[226.98336,-2.5264E-05],[226.98684,-3.042E-05],[226.99031,-2.8873E-05],[226.99379,-2.8873E-05],[226.99726,-3.2482E-05],[227.00074,-2.8873E-05]]}
-{"quant":[227.271,-0.50903],"mems":[[227.21617,-3.0935E-05],[227.21964,-3.0935E-05],[227.22311,-2.8357E-05],[227.22659,-3.2482E-05],[227.23006,-3.042E-05],[227.23354,-2.9389E-05],[227.23701,-3.1451E-05],[227.24049,-2.8873E-05],[227.24396,-2.9389E-05],[227.24744,-3.042E-05],[227.25091,-2.6811E-05],[227.25439,-2.9904E-05],[227.25786,-3.4544E-05],[227.26134,-2.9389E-05],[227.26481,-3.042E-05],[227.26829,-2.9904E-05],[227.27176,-3.1967E-05],[227.27523,-3.4029E-05],[227.27871,-2.8357E-05],[227.28218,-3.2998E-05],[227.28566,-3.0935E-05],[227.28913,-2.7842E-05],[227.29261,-2.7842E-05],[227.29608,-2.8873E-05],[227.29956,-3.1451E-05],[227.30303,-2.8357E-05],[227.30651,-2.8873E-05],[227.30998,-2.5779E-05],[227.31346,-2.5264E-05],[227.31693,-2.7326E-05],[227.32041,-3.0935E-05],[227.32388,-3.1451E-05],[227.32735,-2.6811E-05],[227.33083,-2.3202E-05],[227.3343,-2.5264E-05],[227.33778,-3.042E-05],[227.34125,-3.2998E-05],[227.34473,-3.2482E-05],[227.3482,-2.5779E-05],[227.35168,-2.4233E-05],[227.35515,-2.8357E-05],[227.35863,-3.1451E-05],[227.3621,-2.6295E-05],[227.36558,-2.3717E-05],[227.36905,-3.042E-05],[227.37253,-2.4233E-05],[227.376,-2.4233E-05],[227.37937,-3.042E-05],[227.38275,-2.6295E-05],[227.38612,-2.7326E-05],[227.3895,-2.9904E-05],[227.39287,-2.8357E-05],[227.39625,-2.8873E-05],[227.39962,-2.9904E-05],[227.403,-2.8357E-05],[227.40637,-2.9389E-05],[227.40975,-3.0935E-05],[227.41312,-2.8873E-05],[227.4165,-2.6295E-05],[227.41987,-3.1451E-05],[227.42325,-3.5576E-05],[227.42662,-2.9904E-05],[227.42999,-2.7842E-05],[227.43337,-2.9389E-05],[227.43674,-2.9904E-05],[227.44012,-2.9389E-05],[227.44349,-2.8357E-05],[227.44687,-3.042E-05],[227.45024,-2.8873E-05],[227.45362,-2.8873E-05],[227.45699,-2.9389E-05],[227.46037,-2.6811E-05],[227.46374,-2.5264E-05],[227.46712,-2.6295E-05],[227.47049,-2.9904E-05],[227.47387,-2.8873E-05],[227.47724,-2.7326E-05],[227.48061,-2.5264E-05],[227.48399,-2.8357E-05],[227.48736,-3.2482E-05],[227.49074,-2.7842E-05],[227.49411,-2.4233E-05],[227.49749,-2.6811E-05],[227.50086,-3.1967E-05],[227.50424,-2.8873E-05],[227.50761,-2.5264E-05],[227.51099,-2.6811E-05],[227.51436,-2.9904E-05]]}
-{"quant":[227.737,-3.047E-05],"mems":[[227.63922,-2.5264E-05],[227.6426,-2.7842E-05],[227.64597,-2.9389E-05],[227.64935,-2.7326E-05],[227.65272,-2.8873E-05],[227.6561,-3.1967E-05],[227.65947,-3.2998E-05],[227.66285,-3.0935E-05],[227.66622,-2.8873E-05],[227.6696,-2.9389E-05],[227.67297,-2.7326E-05],[227.67635,-2.7842E-05],[227.67972,-2.6295E-05],[227.68309,-2.6295E-05],[227.68647,-2.8357E-05],[227.68984,-2.4233E-05],[227.69322,-2.9904E-05],[227.69659,-3.3513E-05],[227.69997,-3.042E-05],[227.70334,-3.2998E-05],[227.70672,-2.8357E-05],[227.71009,-3.1967E-05],[227.71347,-3.4029E-05],[227.71684,-2.7842E-05],[227.72022,-2.7326E-05],[227.72359,-2.5779E-05],[227.72697,-2.7326E-05],[227.73034,-2.7326E-05],[227.73371,-3.1451E-05],[227.73709,-3.2998E-05],[227.74046,-3.2482E-05],[227.74384,-3.4544E-05],[227.74721,-3.042E-05],[227.75059,-3.0935E-05],[227.75396,-3.1967E-05],[227.75734,-3.1967E-05],[227.76071,-3.1967E-05],[227.76409,-2.8873E-05],[227.76746,-3.0935E-05],[227.77084,-3.4029E-05],[227.77421,-2.8357E-05],[227.77759,-2.5264E-05],[227.78096,-3.042E-05],[227.78433,-3.1451E-05],[227.78771,-2.7842E-05],[227.79108,-2.9904E-05],[227.79446,-2.8357E-05],[227.79783,-2.9389E-05],[227.80121,-3.2482E-05],[227.80458,-2.8873E-05],[227.80796,-3.0935E-05],[227.81133,-3.2482E-05],[227.81471,-3.2998E-05],[227.81808,-3.2998E-05],[227.82146,-2.7842E-05],[227.82483,-2.4748E-05],[227.82821,-2.7326E-05],[227.83158,-3.2998E-05],[227.83495,-2.9904E-05],[227.83833,-2.8873E-05],[227.8417,-2.6811E-05],[227.84508,-2.4748E-05],[227.84845,-3.1967E-05],[227.85183,-3.2998E-05],[227.8552,-3.1451E-05],[227.85858,-2.6811E-05],[227.86195,-2.4233E-05],[227.86533,-3.042E-05],[227.8687,-3.2998E-05],[227.87208,-3.2482E-05],[227.87545,-3.042E-05],[227.87883,-2.7842E-05],[227.8822,-2.5264E-05],[227.88557,-2.9389E-05],[227.88895,-3.2482E-05],[227.89232,-3.042E-05],[227.8957,-2.8873E-05],[227.89907,-2.5264E-05],[227.90245,-2.7326E-05],[227.90582,-2.8357E-05],[227.9092,-2.6295E-05],[227.91257,-2.6295E-05],[227.91595,-2.9904E-05],[227.91932,-2.8873E-05],[227.9227,-2.8357E-05],[227.92607,-3.1967E-05],[227.92945,-3.2998E-05],[227.93282,-3.2998E-05],[227.93619,-3.1451E-05],[227.93957,-3.0935E-05]]}
-{"quant":[228.465,-2.9239E-05],"mems":[[228.36815,-2.9389E-05],[228.37153,-2.4748E-05],[228.3749,-2.4748E-05],[228.37828,-2.8357E-05],[228.38165,-2.6295E-05],[228.38503,-3.1451E-05],[228.3884,-3.4544E-05],[228.39177,-3.1451E-05],[228.39515,-3.506E-05],[228.39852,-3.2482E-05],[228.4019,-2.8873E-05],[228.40527,-2.8873E-05],[228.40865,-3.3513E-05],[228.41202,-2.4748E-05],[228.4154,-2.4233E-05],[228.41877,-3.2998E-05],[228.42215,-3.0935E-05],[228.42552,-3.506E-05],[228.4289,-3.042E-05],[228.43227,-2.6295E-05],[228.43565,-2.9904E-05],[228.43902,-2.7842E-05],[228.44239,-3.1967E-05],[228.44577,-3.506E-05],[228.44914,-2.9904E-05],[228.45252,-2.6811E-05],[228.45589,-2.9389E-05],[228.45927,-2.6811E-05],[228.46264,-2.7842E-05],[228.46602,-3.2482E-05],[228.46939,-2.8873E-05],[228.47277,-2.6811E-05],[228.47614,-2.6811E-05],[228.47952,-2.9904E-05],[228.48289,-3.4029E-05],[228.48627,-3.3513E-05],[228.48964,-3.0935E-05],[228.49301,-2.217E-05],[228.49639,-2.6295E-05],[228.49976,-3.4029E-05],[228.50314,-2.4748E-05],[228.50651,-2.5264E-05],[228.50989,-2.8873E-05],[228.51326,-2.3717E-05],[228.51664,-2.8873E-05],[228.52001,-2.9389E-05],[228.52339,-2.9904E-05],[228.52676,-3.2998E-05],[228.53014,-3.1451E-05],[228.53351,-3.1967E-05],[228.53689,-2.8357E-05],[228.54026,-3.0935E-05],[228.54363,-3.4544E-05],[228.54701,-2.9904E-05],[228.55038,-2.6811E-05],[228.55376,-2.6295E-05],[228.55713,-2.8357E-05],[228.56051,-2.8357E-05],[228.56388,-3.042E-05],[228.56726,-2.9389E-05],[228.57063,-2.6811E-05],[228.57401,-2.9389E-05],[228.57738,-3.1451E-05],[228.58076,-3.0935E-05],[228.58413,-2.8873E-05],[228.58751,-2.7326E-05],[228.59088,-2.6811E-05],[228.59425,-2.9904E-05],[228.59763,-3.4544E-05],[228.601,-3.1967E-05],[228.60438,-2.9389E-05],[228.60775,-3.1451E-05],[228.61113,-3.042E-05],[228.6145,-2.9904E-05],[228.61788,-2.5779E-05],[228.62125,-2.1655E-05],[228.62463,-2.7326E-05],[228.628,-2.6811E-05],[228.63138,-2.5264E-05],[228.63475,-2.9389E-05],[228.63813,-2.7842E-05],[228.6415,-2.7842E-05],[228.64487,-2.9389E-05],[228.64825,-2.9389E-05],[228.65162,-3.1967E-05],[228.655,-2.8357E-05],[228.65837,-2.7842E-05],[228.66175,-2.9904E-05],[228.66512,-2.4748E-05]]}
-{"quant":[228.925,-2.9079E-05],"mems":[[228.82711,-2.9389E-05],[228.83048,-2.7326E-05],[228.83386,-3.3513E-05],[228.83723,-3.4029E-05],[228.84061,-2.6295E-05],[228.84398,-2.6811E-05],[228.84735,-3.042E-05],[228.85073,-3.0935E-05],[228.8541,-3.1451E-05],[228.85748,-3.4029E-05],[228.86085,-2.9389E-05],[228.86423,-2.4748E-05],[228.8676,-2.8357E-05],[228.87098,-3.0935E-05],[228.87435,-2.9904E-05],[228.87773,-3.042E-05],[228.8811,-3.4544E-05],[228.88448,-3.1451E-05],[228.88785,-2.5779E-05],[228.89123,-2.9904E-05],[228.8946,-3.0935E-05],[228.89797,-2.9389E-05],[228.90135,-2.8357E-05],[228.90472,-2.6811E-05],[228.9081,-3.1451E-05],[228.91147,-3.1967E-05],[228.91485,-2.7842E-05],[228.91822,-3.4029E-05],[228.9216,-3.2998E-05],[228.92497,-2.9389E-05],[228.92835,-2.7842E-05],[228.93172,-2.9389E-05],[228.9351,-3.1451E-05],[228.93847,-2.7326E-05],[228.94185,-2.7842E-05],[228.94522,-2.7842E-05],[228.94859,-3.0935E-05],[228.95197,-3.6091E-05],[228.95534,-3.3513E-05],[228.95872,-2.9389E-05],[228.96209,-2.3202E-05],[228.96547,-2.6811E-05],[228.96884,-2.8357E-05],[228.97222,-2.6295E-05],[228.97559,-2.6295E-05],[228.97897,-2.3717E-05],[228.98234,-3.042E-05],[228.98572,-3.0935E-05],[228.98909,-2.9389E-05],[228.99247,-3.1967E-05],[228.99584,-3.042E-05],[228.99921,-3.042E-05],[229.00259,-3.2482E-05],[229.00596,-3.4029E-05],[229.00934,-2.6811E-05],[229.01271,-2.6295E-05],[229.01609,-2.8357E-05],[229.01946,-2.7842E-05],[229.02284,-2.9904E-05],[229.02621,-2.6811E-05],[229.02959,-2.9389E-05],[229.03296,-3.6091E-05],[229.03634,-3.6091E-05],[229.03971,-2.9389E-05],[229.04309,-2.8873E-05],[229.04646,-2.9904E-05],[229.04983,-2.7842E-05],[229.05321,-3.2482E-05],[229.05658,-2.8873E-05],[229.05996,-2.8873E-05],[229.06333,-3.042E-05],[229.06671,-2.8357E-05],[229.07008,-3.2482E-05],[229.07346,-2.9389E-05],[229.07683,-2.7842E-05],[229.08021,-2.8873E-05],[229.08358,-2.8357E-05],[229.08696,-3.1451E-05],[229.09033,-3.2998E-05],[229.09371,-2.8873E-05],[229.09708,-2.4748E-05],[229.10045,-2.2686E-05],[229.10383,-2.2686E-05],[229.1072,-2.8357E-05],[229.11058,-3.042E-05],[229.11395,-3.4029E-05],[229.11733,-3.506E-05],[229.1207,-3.4029E-05],[229.12408,-3.5576E-05],[229.12745,-3.3513E-05]]}
-{"quant":[229.405,-3.042E-05],"mems":[[229.30631,-3.042E-05],[229.30968,-3.1451E-05],[229.31306,-3.3513E-05],[229.31643,-2.9389E-05],[229.31981,-2.5779E-05],[229.32318,-2.7842E-05],[229.32656,-3.1967E-05],[229.32993,-2.9389E-05],[229.33331,-2.4748E-05],[229.33668,-3.0935E-05],[229.34006,-3.2482E-05],[229.34343,-2.9389E-05],[229.34681,-2.8873E-05],[229.35018,-2.7842E-05],[229.35355,-3.0935E-05],[229.35693,-2.8873E-05],[229.3603,-2.6295E-05],[229.36368,-3.1451E-05],[229.36705,-2.8873E-05],[229.37043,-2.8357E-05],[229.3738,-3.0935E-05],[229.37718,-2.9904E-05],[229.38055,-3.1451E-05],[229.38393,-2.8873E-05],[229.3873,-2.8357E-05],[229.39068,-3.1451E-05],[229.39405,-2.5779E-05],[229.39743,-2.4233E-05],[229.4008,-2.9389E-05],[229.40417,-2.9904E-05],[229.40755,-2.8357E-05],[229.41092,-2.8357E-05],[229.4143,-3.0935E-05],[229.41767,-3.1967E-05],[229.42105,-3.2998E-05],[229.42442,-3.3513E-05],[229.4278,-3.042E-05],[229.43117,-2.9389E-05],[229.43455,-2.6811E-05],[229.43792,-2.7842E-05],[229.4413,-2.8873E-05],[229.44467,-2.4748E-05],[229.44805,-2.9389E-05],[229.45142,-3.1451E-05],[229.45479,-2.7842E-05],[229.45817,-2.9389E-05],[229.46154,-3.0935E-05],[229.46492,-3.2482E-05],[229.46829,-3.2482E-05],[229.47167,-3.1451E-05],[229.47504,-3.1967E-05],[229.47842,-3.3513E-05],[229.48179,-3.3513E-05],[229.48517,-3.1451E-05],[229.48854,-2.7842E-05],[229.49192,-2.6811E-05],[229.49529,-3.042E-05],[229.49867,-3.2482E-05],[229.50204,-3.1967E-05],[229.50541,-3.2998E-05],[229.50879,-3.1967E-05],[229.51216,-2.6295E-05],[229.51554,-2.7326E-05],[229.51891,-3.3513E-05],[229.52229,-3.2482E-05],[229.52566,-3.1967E-05],[229.52904,-3.2482E-05],[229.53241,-2.9904E-05],[229.53579,-2.7842E-05],[229.53916,-2.9904E-05],[229.54254,-2.9389E-05],[229.54591,-2.7326E-05],[229.54929,-2.7842E-05],[229.55266,-2.4748E-05],[229.55603,-2.5779E-05],[229.55941,-2.8873E-05],[229.56278,-3.1451E-05],[229.56616,-3.3513E-05],[229.56953,-3.0935E-05],[229.57291,-3.2998E-05],[229.57628,-3.0935E-05],[229.57966,-2.9904E-05],[229.58303,-3.1967E-05],[229.58641,-3.1967E-05],[229.58978,-3.1451E-05],[229.59316,-2.5779E-05],[229.59653,-2.7842E-05],[229.59991,-3.1451E-05],[229.60328,-2.8873E-05],[229.60665,-2.9389E-05]]}
-{"quant":[229.899,-0.31235],"mems":[[229.79901,-3.3513E-05],[229.80239,-2.9389E-05],[229.80576,-2.9389E-05],[229.80913,-3.3513E-05],[229.81251,-2.9389E-05],[229.81588,-2.8873E-05],[229.81926,-3.1967E-05],[229.82263,-2.9904E-05],[229.82601,-2.8357E-05],[229.82938,-2.8357E-05],[229.83276,-3.1451E-05],[229.83613,-3.2482E-05],[229.83951,-2.9389E-05],[229.84288,-2.8357E-05],[229.84626,-2.7842E-05],[229.84963,-2.8873E-05],[229.85301,-2.9904E-05],[229.85638,-3.0935E-05],[229.85975,-3.2482E-05],[229.86313,-3.1967E-05],[229.8665,-2.8357E-05],[229.86988,-2.8357E-05],[229.87325,-2.7326E-05],[229.87663,-2.4748E-05],[229.88,-2.8873E-05],[229.88338,-2.7842E-05],[229.88675,-2.5779E-05],[229.89013,-2.6295E-05],[229.8935,-3.1451E-05],[229.89688,-3.506E-05],[229.90025,-2.8873E-05],[229.90363,-2.4233E-05],[229.907,-2.6295E-05],[229.9105,-3.1451E-05],[229.91401,-3.042E-05],[229.91751,-2.8873E-05],[229.92101,-2.7326E-05],[229.92451,-2.5779E-05],[229.92802,-3.042E-05],[229.93152,-2.8873E-05],[229.93502,-2.8873E-05],[229.93852,-3.1967E-05],[229.94203,-2.6295E-05],[229.94553,-2.4748E-05],[229.94903,-2.7842E-05],[229.95253,-3.3513E-05],[229.95604,-3.4029E-05],[229.95954,-3.042E-05],[229.96304,-3.3513E-05],[229.96655,-2.9904E-05],[229.97005,-2.7842E-05],[229.97355,-2.8873E-05],[229.97705,-2.7326E-05],[229.98056,-2.9389E-05],[229.98406,-2.6295E-05],[229.98756,-2.6295E-05],[229.99106,-2.8873E-05],[229.99457,-3.1451E-05],[229.99807,-3.2998E-05],[230.00157,-3.042E-05],[230.00507,-2.9904E-05],[230.00858,-2.9389E-05],[230.01208,-3.1967E-05],[230.01558,-3.042E-05],[230.01909,-2.8873E-05],[230.02259,-3.2998E-05],[230.02609,-3.042E-05],[230.02959,-3.0935E-05],[230.0331,-3.1451E-05],[230.0366,-2.6295E-05],[230.0401,-2.7326E-05],[230.0436,-2.7842E-05],[230.04711,-2.5779E-05],[230.05061,-2.6811E-05],[230.05411,-2.9389E-05],[230.05761,-3.2998E-05],[230.06112,-3.3513E-05],[230.06462,-2.8873E-05],[230.06812,-2.6295E-05],[230.07163,-2.7842E-05],[230.07513,-2.8357E-05],[230.07863,-2.9904E-05],[230.08213,-3.1967E-05],[230.08564,-3.3513E-05],[230.08914,-2.7842E-05],[230.09264,-2.7842E-05],[230.09614,-3.1967E-05],[230.09965,-3.042E-05]]}
-{"quant":[230.361,-2.865E-05],"mems":[[230.26427,-3.042E-05],[230.26777,-3.2482E-05],[230.27128,-3.4544E-05],[230.27478,-3.4029E-05],[230.27828,-3.0935E-05],[230.28179,-3.2482E-05],[230.28529,-3.2998E-05],[230.28879,-2.7842E-05],[230.29229,-2.6295E-05],[230.2958,-2.8357E-05],[230.2993,-3.0935E-05],[230.3028,-3.1967E-05],[230.3063,-2.9904E-05],[230.30981,-2.7842E-05],[230.31331,-2.6811E-05],[230.31681,-2.6811E-05],[230.32031,-2.6811E-05],[230.32382,-2.4748E-05],[230.32732,-2.9389E-05],[230.33082,-3.2998E-05],[230.33433,-3.2998E-05],[230.33783,-3.3513E-05],[230.34133,-3.042E-05],[230.34483,-3.042E-05],[230.34834,-3.2998E-05],[230.35184,-2.8873E-05],[230.35534,-2.8357E-05],[230.35884,-3.3513E-05],[230.36235,-3.506E-05],[230.36585,-2.9904E-05],[230.36935,-2.7842E-05],[230.37285,-2.8873E-05],[230.37636,-2.4233E-05],[230.37986,-2.8873E-05],[230.38336,-3.1451E-05],[230.38687,-2.6811E-05],[230.39037,-2.7842E-05],[230.39387,-2.4233E-05],[230.39737,-2.7326E-05],[230.40088,-3.1451E-05],[230.40438,-2.8873E-05],[230.40788,-2.8357E-05],[230.41138,-2.4233E-05],[230.41489,-2.6295E-05],[230.41839,-2.8873E-05],[230.42189,-2.7842E-05],[230.42539,-3.2998E-05],[230.4289,-3.3513E-05],[230.4324,-3.2482E-05],[230.4359,-2.9904E-05],[230.43941,-2.6295E-05],[230.44291,-2.7842E-05],[230.44641,-2.6295E-05],[230.44991,-2.7326E-05],[230.45342,-2.7326E-05],[230.45692,-2.7842E-05],[230.46042,-2.8873E-05],[230.46392,-3.042E-05],[230.46743,-2.6811E-05],[230.47093,-2.6295E-05],[230.47443,-3.042E-05],[230.47793,-2.6811E-05],[230.48144,-2.9389E-05],[230.48494,-2.7326E-05],[230.48844,-2.3717E-05],[230.49195,-2.7326E-05],[230.49545,-2.7326E-05],[230.49895,-2.6295E-05],[230.50245,-2.3717E-05],[230.50596,-2.6811E-05],[230.50946,-2.7326E-05],[230.51296,-2.5779E-05],[230.51646,-2.5264E-05],[230.51997,-2.2686E-05],[230.52347,-2.6811E-05],[230.52697,-2.8873E-05],[230.53047,-2.5264E-05],[230.53398,-2.7842E-05],[230.53748,-2.8357E-05],[230.54098,-3.1451E-05],[230.54449,-3.6091E-05],[230.54799,-3.1967E-05],[230.55149,-3.042E-05],[230.55499,-3.1967E-05],[230.5585,-2.6295E-05],[230.562,-2.5264E-05]]}
-{"quant":[231.128,-3.0351E-05],"mems":[[231.03136,-2.9389E-05],[231.03486,-3.0935E-05],[231.03836,-3.1451E-05],[231.04186,-3.4029E-05],[231.04537,-2.9904E-05],[231.04887,-2.9389E-05],[231.05237,-2.8873E-05],[231.05587,-3.042E-05],[231.05938,-3.4029E-05],[231.06288,-2.7326E-05],[231.06638,-2.8873E-05],[231.06989,-2.8873E-05],[231.07339,-2.6811E-05],[231.07689,-2.9904E-05],[231.08039,-2.6295E-05],[231.0839,-3.0935E-05],[231.0874,-2.9389E-05],[231.0909,-2.5264E-05],[231.0944,-3.2998E-05],[231.09791,-2.9904E-05],[231.10141,-2.7842E-05],[231.10491,-2.6295E-05],[231.10841,-2.5779E-05],[231.11192,-3.0935E-05],[231.11542,-3.1451E-05],[231.11892,-2.9389E-05],[231.12243,-2.7326E-05],[231.12593,-2.6811E-05],[231.12943,-2.4233E-05],[231.13293,-3.042E-05],[231.13644,-3.6091E-05],[231.13994,-3.042E-05],[231.14344,-2.9904E-05],[231.14694,-3.0935E-05],[231.15045,-3.1967E-05],[231.15395,-3.1967E-05],[231.15745,-3.0935E-05],[231.16095,-2.9904E-05],[231.16446,-2.9904E-05],[231.16796,-2.8873E-05],[231.17146,-2.8357E-05],[231.17497,-3.2998E-05],[231.17847,-2.8873E-05],[231.18197,-3.1967E-05],[231.18547,-3.3513E-05],[231.18898,-2.4748E-05],[231.19248,-2.6811E-05],[231.19598,-2.8873E-05],[231.19948,-3.1967E-05],[231.20299,-3.0935E-05],[231.20649,-3.042E-05],[231.20999,-3.2998E-05],[231.21349,-2.6811E-05],[231.217,-2.9389E-05],[231.2205,-3.042E-05],[231.224,-3.042E-05],[231.22751,-3.506E-05],[231.23101,-3.042E-05],[231.23451,-2.8873E-05],[231.23801,-3.042E-05],[231.24152,-2.9904E-05],[231.24502,-2.9389E-05],[231.24852,-2.8873E-05],[231.25202,-2.7326E-05],[231.25553,-2.6811E-05],[231.25903,-3.1451E-05],[231.26253,-3.3513E-05],[231.26603,-3.0935E-05],[231.26954,-2.6295E-05],[231.27304,-2.8357E-05],[231.27654,-3.0935E-05],[231.28005,-3.2998E-05],[231.28355,-3.4029E-05],[231.28705,-3.2482E-05],[231.29055,-2.9904E-05],[231.29406,-2.8357E-05],[231.29756,-2.9904E-05],[231.30106,-2.9389E-05],[231.30456,-2.8357E-05],[231.30807,-2.5779E-05],[231.31157,-2.6295E-05],[231.31507,-3.1451E-05],[231.31857,-3.2998E-05],[231.32208,-2.9904E-05],[231.32558,-3.2482E-05],[231.32908,-2.7842E-05]]}
-{"quant":[231.603,-3.0758E-05],"mems":[[231.50422,-2.8873E-05],[231.50772,-3.2998E-05],[231.51122,-3.2482E-05],[231.51472,-2.7326E-05],[231.51823,-2.7842E-05],[231.52173,-3.1967E-05],[231.52523,-3.4029E-05],[231.52873,-3.506E-05],[231.53224,-3.1967E-05],[231.53574,-3.1451E-05],[231.53924,-2.7326E-05],[231.54275,-2.9389E-05],[231.54625,-3.4544E-05],[231.54975,-2.7842E-05],[231.55325,-3.042E-05],[231.55676,-2.7842E-05],[231.56026,-2.8357E-05],[231.56376,-3.5576E-05],[231.56726,-3.0935E-05],[231.57077,-2.8873E-05],[231.57427,-2.7842E-05],[231.57777,-2.9904E-05],[231.58127,-3.1451E-05],[231.58478,-3.0935E-05],[231.58828,-2.6811E-05],[231.59178,-2.6811E-05],[231.59529,-3.2482E-05],[231.59879,-2.8357E-05],[231.60229,-3.2482E-05],[231.60579,-3.506E-05],[231.6093,-2.8873E-05],[231.6128,-2.9389E-05],[231.6163,-2.8357E-05],[231.6198,-2.8357E-05],[231.62331,-2.9904E-05],[231.62681,-3.3513E-05],[231.63031,-3.6091E-05],[231.63381,-3.2482E-05],[231.63732,-3.0935E-05],[231.64082,-2.9389E-05],[231.64432,-2.8873E-05],[231.64783,-3.0935E-05],[231.65133,-3.2482E-05],[231.65483,-2.9904E-05],[231.65833,-2.8357E-05],[231.66184,-2.9389E-05],[231.66534,-3.1967E-05],[231.66884,-3.3513E-05],[231.67234,-2.9904E-05],[231.67585,-2.9389E-05],[231.67935,-2.9904E-05],[231.68285,-3.1967E-05],[231.68635,-2.8873E-05],[231.68986,-2.7326E-05],[231.69336,-3.3513E-05],[231.69686,-3.2482E-05],[231.70037,-3.042E-05],[231.70387,-3.042E-05],[231.70737,-3.2482E-05],[231.71087,-3.1451E-05],[231.71438,-3.0935E-05],[231.71788,-2.9389E-05],[231.72138,-2.9389E-05],[231.72488,-3.5576E-05],[231.72839,-3.2998E-05],[231.73189,-2.8873E-05],[231.73539,-2.8873E-05],[231.73889,-2.6811E-05],[231.7424,-2.8873E-05],[231.7459,-2.8873E-05],[231.7494,-2.7842E-05],[231.75291,-3.1967E-05],[231.75641,-3.042E-05],[231.75991,-2.6295E-05],[231.76341,-2.8357E-05],[231.76692,-2.8357E-05],[231.77042,-2.3202E-05],[231.77392,-2.9904E-05],[231.77742,-3.3513E-05],[231.78093,-2.8873E-05],[231.78443,-2.9904E-05],[231.78793,-2.8357E-05],[231.79143,-3.0935E-05],[231.79494,-3.4029E-05],[231.79844,-3.2482E-05],[231.80194,-2.9389E-05],[231.80545,-2.9389E-05]]}
-{"quant":[232.075,-2.9939E-05],"mems":[[231.97708,-3.1967E-05],[231.98058,-3.0935E-05],[231.98408,-3.4029E-05],[231.98758,-2.8873E-05],[231.99109,-2.7842E-05],[231.99459,-3.1967E-05],[231.99809,-3.3513E-05],[232.00159,-2.8357E-05],[232.0051,-2.3202E-05],[232.0086,-2.6295E-05],[232.0121,-2.7842E-05],[232.01561,-2.9389E-05],[232.01911,-3.1451E-05],[232.02261,-3.042E-05],[232.02611,-2.8357E-05],[232.02962,-3.042E-05],[232.03312,-2.8873E-05],[232.03662,-3.1451E-05],[232.04012,-3.4544E-05],[232.04363,-3.042E-05],[232.04713,-3.2998E-05],[232.05063,-3.1451E-05],[232.05413,-3.1451E-05],[232.05764,-3.1967E-05],[232.06114,-2.5779E-05],[232.06464,-2.2686E-05],[232.06815,-2.6295E-05],[232.07165,-3.2482E-05],[232.07515,-3.1967E-05],[232.07865,-2.8357E-05],[232.08216,-2.4748E-05],[232.08566,-2.4233E-05],[232.08916,-2.8873E-05],[232.09266,-2.7326E-05],[232.09617,-2.9389E-05],[232.09967,-2.6811E-05],[232.10317,-2.8357E-05],[232.10667,-3.1451E-05],[232.11018,-2.4748E-05],[232.11368,-3.042E-05],[232.11718,-3.2998E-05],[232.12069,-3.2482E-05],[232.12419,-3.2482E-05],[232.12769,-2.9904E-05],[232.13119,-3.2998E-05],[232.1347,-3.042E-05],[232.1382,-2.8873E-05],[232.1417,-3.042E-05],[232.1452,-2.9904E-05],[232.14871,-2.8873E-05],[232.15221,-2.7842E-05],[232.15571,-2.8873E-05],[232.15921,-3.3513E-05],[232.16272,-3.2482E-05],[232.16622,-2.7842E-05],[232.16972,-3.3513E-05],[232.17323,-3.506E-05],[232.17673,-3.2998E-05],[232.18023,-3.3513E-05],[232.18373,-3.042E-05],[232.18724,-2.7326E-05],[232.19074,-2.6295E-05],[232.19424,-2.7842E-05],[232.19774,-2.7842E-05],[232.20125,-3.042E-05],[232.20475,-3.0935E-05],[232.20825,-2.9904E-05],[232.21175,-3.1967E-05],[232.21526,-3.2998E-05],[232.21876,-3.1451E-05],[232.22226,-2.8357E-05],[232.22577,-2.8357E-05],[232.22927,-2.5779E-05],[232.23277,-2.6811E-05],[232.23627,-2.9904E-05],[232.23978,-3.2482E-05],[232.24328,-3.1967E-05],[232.24678,-2.6295E-05],[232.25028,-2.8873E-05],[232.25379,-2.7326E-05],[232.25729,-2.6811E-05],[232.26079,-2.9389E-05],[232.26429,-2.9389E-05],[232.2678,-2.9904E-05],[232.2713,-3.1451E-05],[232.2748,-2.9904E-05],[232.27831,-2.6811E-05]]}
-{"quant":[232.526,-0.23008],"mems":[[232.48146,-3.2482E-05],[232.48496,-2.6811E-05],[232.48847,-2.8873E-05],[232.49197,-3.0935E-05],[232.49547,-2.7326E-05],[232.49897,-2.7842E-05],[232.50248,-3.1451E-05],[232.50598,-3.1451E-05],[232.50948,-2.8873E-05],[232.51298,-3.1967E-05],[232.51649,-3.2998E-05],[232.51999,-2.9389E-05],[232.52349,-2.9389E-05],[232.52699,-3.1451E-05],[232.5305,-2.9389E-05],[232.534,-2.5264E-05],[232.53736,-2.6295E-05],[232.54071,-3.042E-05],[232.54407,-3.3513E-05],[232.54743,-3.042E-05],[232.55079,-2.7842E-05],[232.55414,-2.8873E-05],[232.5575,-2.8873E-05],[232.56086,-2.7842E-05],[232.56422,-3.0935E-05],[232.56757,-3.1967E-05],[232.57093,-2.9904E-05],[232.57429,-3.1967E-05],[232.57765,-3.2998E-05],[232.581,-2.9904E-05],[232.58436,-2.4748E-05],[232.58772,-2.8357E-05],[232.59107,-2.8873E-05],[232.59443,-2.5779E-05],[232.59779,-2.3717E-05],[232.60115,-2.3202E-05],[232.6045,-3.0935E-05],[232.60786,-2.8357E-05],[232.61122,-2.6811E-05],[232.61458,-2.7326E-05],[232.61793,-2.4748E-05],[232.62129,-2.8357E-05],[232.62465,-2.7326E-05],[232.62801,-2.8357E-05],[232.63136,-3.0935E-05],[232.63472,-2.9904E-05],[232.63808,-3.2482E-05],[232.64143,-3.2482E-05],[232.64479,-2.9904E-05],[232.64815,-3.1967E-05],[232.65151,-3.1451E-05],[232.65486,-2.9389E-05],[232.65822,-3.0935E-05],[232.66158,-3.1451E-05],[232.66494,-2.7326E-05],[232.66829,-2.6295E-05],[232.67165,-2.8357E-05],[232.67501,-2.7326E-05],[232.67837,-2.8873E-05],[232.68172,-2.8357E-05],[232.68508,-2.5264E-05],[232.68844,-2.3717E-05],[232.69179,-2.7326E-05],[232.69515,-3.2998E-05],[232.69851,-3.4544E-05],[232.70187,-3.1967E-05],[232.70522,-3.042E-05],[232.70858,-2.8873E-05],[232.71194,-2.3717E-05],[232.7153,-2.6811E-05],[232.71865,-2.7842E-05],[232.72201,-2.5779E-05],[232.72537,-3.042E-05],[232.72873,-2.7842E-05],[232.73208,-2.5779E-05],[232.73544,-2.9904E-05],[232.7388,-3.042E-05],[232.74215,-3.1451E-05],[232.74551,-3.3513E-05],[232.74887,-3.1451E-05],[232.75223,-2.9904E-05],[232.75558,-3.3513E-05],[232.75894,-3.0935E-05],[232.7623,-2.3202E-05],[232.76566,-3.042E-05],[232.76901,-2.9904E-05],[232.77237,-2.5779E-05],[232.77573,-2.8873E-05],[232.77909,-2.3717E-05]]}
-{"quant":[232.997,-3.0004E-05],"mems":[[232.89995,-3.1451E-05],[232.90331,-2.8873E-05],[232.90666,-2.2686E-05],[232.91002,-2.6295E-05],[232.91338,-2.9389E-05],[232.91674,-3.1967E-05],[232.92009,-2.7842E-05],[232.92345,-2.6295E-05],[232.92681,-2.7326E-05],[232.93017,-2.3717E-05],[232.93352,-3.4029E-05],[232.93688,-3.042E-05],[232.94024,-2.8357E-05],[232.94359,-3.2998E-05],[232.94695,-2.9904E-05],[232.95031,-3.1967E-05],[232.95367,-2.8357E-05],[232.95702,-3.042E-05],[232.96038,-3.042E-05],[232.96374,-2.6811E-05],[232.9671,-2.5264E-05],[232.97045,-3.042E-05],[232.97381,-3.7122E-05],[232.97717,-3.0935E-05],[232.98053,-2.7326E-05],[232.98388,-2.4233E-05],[232.98724,-2.4233E-05],[232.9906,-2.8357E-05],[232.99395,-2.7842E-05],[232.99731,-2.9904E-05],[233.00067,-3.1967E-05],[233.00403,-3.042E-05],[233.00738,-2.6811E-05],[233.01074,-2.6295E-05],[233.0141,-3.2482E-05],[233.01746,-3.042E-05],[233.02081,-2.6811E-05],[233.02417,-2.7326E-05],[233.02753,-2.7326E-05],[233.03089,-3.0935E-05],[233.03424,-3.1451E-05],[233.0376,-3.1451E-05],[233.04096,-3.1967E-05],[233.04431,-2.9904E-05],[233.04767,-3.0935E-05],[233.05103,-2.9904E-05],[233.05439,-3.1967E-05],[233.05774,-2.8873E-05],[233.0611,-2.6295E-05],[233.06446,-3.0935E-05],[233.06782,-3.0935E-05],[233.07117,-3.042E-05],[233.07453,-2.7842E-05],[233.07789,-3.0935E-05],[233.08125,-2.9904E-05],[233.0846,-2.6811E-05],[233.08796,-3.3513E-05],[233.09132,-3.2482E-05],[233.09467,-3.2998E-05],[233.09803,-2.9904E-05],[233.10139,-2.2686E-05],[233.10475,-2.8873E-05],[233.1081,-3.042E-05],[233.11146,-2.9904E-05],[233.11482,-2.9904E-05],[233.11818,-2.9904E-05],[233.12153,-3.042E-05],[233.12489,-2.4233E-05],[233.12825,-2.8873E-05],[233.13161,-2.9389E-05],[233.13496,-2.3717E-05],[233.13832,-2.7842E-05],[233.14168,-2.8357E-05],[233.14503,-2.8357E-05],[233.14839,-3.2482E-05],[233.15175,-3.1451E-05],[233.15511,-3.042E-05],[233.15846,-2.8357E-05],[233.16182,-2.9389E-05],[233.16518,-3.0935E-05],[233.16854,-2.6811E-05],[233.17189,-2.8357E-05],[233.17525,-2.8873E-05],[233.17861,-2.5779E-05],[233.18197,-2.8357E-05],[233.18532,-2.6811E-05],[233.18868,-3.1967E-05],[233.19204,-3.1451E-05],[233.19539,-2.5264E-05],[233.19875,-2.9904E-05]]}
-{"quant":[233.73,-2.9156E-05],"mems":[[233.63185,-3.4029E-05],[233.63521,-3.1451E-05],[233.63856,-3.1967E-05],[233.64192,-3.3513E-05],[233.64528,-3.2482E-05],[233.64863,-3.4029E-05],[233.65199,-3.7122E-05],[233.65535,-3.0935E-05],[233.65871,-2.8357E-05],[233.66206,-2.8357E-05],[233.66542,-2.7326E-05],[233.66878,-3.0935E-05],[233.67214,-2.8357E-05],[233.67549,-2.6811E-05],[233.67885,-3.2998E-05],[233.68221,-3.2482E-05],[233.68557,-2.9389E-05],[233.68892,-3.3513E-05],[233.69228,-3.506E-05],[233.69564,-3.0935E-05],[233.69899,-2.8357E-05],[233.70235,-2.5264E-05],[233.70571,-2.5264E-05],[233.70907,-2.7842E-05],[233.71242,-2.8357E-05],[233.71578,-3.1451E-05],[233.71914,-3.0935E-05],[233.7225,-2.6295E-05],[233.72585,-2.6295E-05],[233.72921,-2.9904E-05],[233.73257,-2.6295E-05],[233.73593,-2.3717E-05],[233.73928,-2.8357E-05],[233.74264,-2.9389E-05],[233.746,-2.8873E-05],[233.74935,-2.5779E-05],[233.75271,-2.7326E-05],[233.75607,-3.2998E-05],[233.75943,-3.4544E-05],[233.76278,-3.2482E-05],[233.76614,-2.5264E-05],[233.7695,-2.5779E-05],[233.77286,-2.9904E-05],[233.77621,-2.9389E-05],[233.77957,-3.6607E-05],[233.78293,-3.3513E-05],[233.78629,-2.5779E-05],[233.78964,-3.0935E-05],[233.793,-3.4029E-05],[233.79636,-3.2482E-05],[233.79971,-3.042E-05],[233.80307,-2.7842E-05],[233.80643,-2.7842E-05],[233.80979,-2.8873E-05],[233.81314,-3.2482E-05],[233.8165,-2.5264E-05],[233.81986,-2.4748E-05],[233.82322,-3.1967E-05],[233.82657,-2.5779E-05],[233.82993,-2.7326E-05],[233.83329,-2.7842E-05],[233.83665,-2.4233E-05],[233.84,-2.7326E-05],[233.84336,-2.5779E-05],[233.84672,-2.6811E-05],[233.85007,-3.1451E-05],[233.85343,-3.6607E-05],[233.85679,-2.9904E-05],[233.86015,-2.6811E-05],[233.8635,-3.2998E-05],[233.86686,-2.7326E-05],[233.87022,-2.6811E-05],[233.87358,-3.0935E-05],[233.87693,-3.1451E-05],[233.88029,-2.6811E-05],[233.88365,-2.7326E-05],[233.88701,-3.1451E-05],[233.89036,-3.0935E-05],[233.89372,-3.7638E-05],[233.89708,-3.7638E-05],[233.90043,-3.1451E-05],[233.90379,-2.8357E-05],[233.90715,-2.9389E-05],[233.91051,-3.4029E-05],[233.91386,-3.1451E-05],[233.91722,-2.7842E-05],[233.92058,-2.7326E-05],[233.92394,-2.7326E-05],[233.92729,-3.1967E-05],[233.93065,-2.9904E-05]]}
-{"quant":[234.228,-3.0869E-05],"mems":[[234.12873,-2.4233E-05],[234.13209,-2.8873E-05],[234.13545,-2.9389E-05],[234.13881,-3.1451E-05],[234.14216,-2.9389E-05],[234.14552,-2.9389E-05],[234.14888,-3.2482E-05],[234.15223,-3.0935E-05],[234.15559,-2.9389E-05],[234.15895,-2.9389E-05],[234.16231,-3.0935E-05],[234.16566,-2.9904E-05],[234.16902,-3.2998E-05],[234.17238,-3.0935E-05],[234.17574,-2.4748E-05],[234.17909,-2.6295E-05],[234.18245,-2.9904E-05],[234.18581,-3.0935E-05],[234.18917,-2.9904E-05],[234.19252,-3.1451E-05],[234.19588,-3.0935E-05],[234.19924,-3.0935E-05],[234.20259,-3.2998E-05],[234.20595,-2.9389E-05],[234.20931,-3.0935E-05],[234.21267,-3.4029E-05],[234.21602,-3.5576E-05],[234.21938,-3.2998E-05],[234.22274,-2.6811E-05],[234.2261,-3.2482E-05],[234.22945,-3.5576E-05],[234.23281,-3.0935E-05],[234.23617,-2.8873E-05],[234.23953,-2.8873E-05],[234.24288,-3.042E-05],[234.24624,-2.9904E-05],[234.2496,-3.1451E-05],[234.25295,-2.8873E-05],[234.25631,-3.1451E-05],[234.25967,-3.7122E-05],[234.26303,-3.4544E-05],[234.26638,-3.3513E-05],[234.26974,-2.8357E-05],[234.2731,-2.4748E-05],[234.27646,-2.4748E-05],[234.27981,-3.0935E-05],[234.28317,-3.2998E-05],[234.28653,-2.7842E-05],[234.28989,-3.4029E-05],[234.29324,-3.1451E-05],[234.2966,-2.8357E-05],[234.29996,-3.0935E-05],[234.30331,-2.9389E-05],[234.30667,-3.506E-05],[234.31003,-3.4544E-05],[234.31339,-3.1451E-05],[234.31674,-3.2998E-05],[234.3201,-3.2482E-05],[234.32346,-2.8357E-05],[234.32682,-2.7326E-05],[234.33017,-2.9389E-05],[234.33353,-2.7842E-05],[234.33689,-2.7842E-05],[234.34025,-2.6811E-05],[234.3436,-2.6811E-05],[234.34696,-2.9904E-05],[234.35032,-2.8357E-05],[234.35367,-2.7326E-05],[234.35703,-3.2998E-05],[234.36039,-2.9389E-05],[234.36375,-2.7326E-05],[234.3671,-3.2482E-05],[234.37046,-2.9904E-05],[234.37382,-3.1451E-05],[234.37718,-3.1451E-05],[234.38053,-2.9904E-05],[234.38389,-3.0935E-05],[234.38725,-3.1451E-05],[234.39061,-2.7326E-05],[234.39396,-3.042E-05],[234.39732,-3.4544E-05],[234.40068,-2.8357E-05],[234.40403,-2.8357E-05],[234.40739,-2.7326E-05],[234.41075,-2.3717E-05],[234.41411,-2.6811E-05],[234.41746,-2.9389E-05],[234.42082,-2.8357E-05],[234.42418,-2.6295E-05],[234.42754,-2.6295E-05],[234.43089,-2.8873E-05]]}
-{"quant":[234.782,-2.9455E-05],"mems":[[234.68269,-2.6295E-05],[234.68605,-2.5264E-05],[234.68941,-2.9389E-05],[234.69277,-3.506E-05],[234.69612,-3.2482E-05],[234.69948,-2.4748E-05],[234.70284,-2.5264E-05],[234.70619,-3.2998E-05],[234.70955,-3.6091E-05],[234.71291,-2.9389E-05],[234.71627,-2.7842E-05],[234.71962,-2.8873E-05],[234.72298,-2.4748E-05],[234.72634,-2.6811E-05],[234.7297,-2.9904E-05],[234.73305,-2.7842E-05],[234.73641,-3.2998E-05],[234.73977,-2.8873E-05],[234.74313,-2.4233E-05],[234.74648,-3.1451E-05],[234.74984,-2.9389E-05],[234.7532,-2.8357E-05],[234.75655,-3.042E-05],[234.75991,-3.042E-05],[234.76327,-3.042E-05],[234.76663,-2.9389E-05],[234.76998,-2.9389E-05],[234.77334,-3.2482E-05],[234.7767,-3.1967E-05],[234.78006,-3.0935E-05],[234.78341,-3.1967E-05],[234.78677,-2.9389E-05],[234.79013,-2.8357E-05],[234.79349,-2.6811E-05],[234.79684,-2.5779E-05],[234.8002,-3.042E-05],[234.80356,-3.042E-05],[234.80691,-2.9389E-05],[234.81027,-3.3513E-05],[234.81363,-3.1967E-05],[234.81699,-2.8873E-05],[234.82034,-2.8357E-05],[234.8237,-2.9389E-05],[234.82706,-3.2998E-05],[234.83042,-3.042E-05],[234.83377,-2.7842E-05],[234.83713,-3.1967E-05],[234.84049,-2.9389E-05],[234.84385,-2.7842E-05],[234.8472,-3.042E-05],[234.85056,-2.9389E-05],[234.85392,-2.6295E-05],[234.85727,-2.8873E-05],[234.86063,-3.2998E-05],[234.86399,-3.1451E-05],[234.86735,-2.8873E-05],[234.8707,-2.6295E-05],[234.87406,-2.8873E-05],[234.87742,-2.8357E-05],[234.88078,-2.5779E-05],[234.88413,-3.042E-05],[234.88749,-3.042E-05],[234.89085,-3.2482E-05],[234.89421,-3.2998E-05],[234.89756,-3.042E-05],[234.90092,-2.4748E-05],[234.90428,-2.7326E-05],[234.90763,-3.5576E-05],[234.91099,-2.9389E-05],[234.91435,-2.8357E-05],[234.91771,-2.9389E-05],[234.92106,-3.1967E-05],[234.92442,-3.3513E-05],[234.92778,-2.3202E-05],[234.93114,-2.6295E-05],[234.93449,-2.7326E-05],[234.93785,-2.2686E-05],[234.94121,-2.8873E-05],[234.94457,-2.8357E-05],[234.94792,-2.9904E-05],[234.95128,-3.042E-05],[234.95464,-2.6811E-05],[234.95799,-2.8357E-05],[234.96135,-2.6295E-05],[234.96471,-2.9904E-05],[234.96807,-3.042E-05],[234.97142,-2.7842E-05],[234.97478,-2.7326E-05],[234.97814,-2.6295E-05],[234.9815,-3.042E-05],[234.98485,-3.1967E-05]]}
-{"quant":[235.257,-2.9762E-05],"mems":[[235.15776,-2.9904E-05],[235.16129,-2.8357E-05],[235.16481,-3.5576E-05],[235.16834,-3.6607E-05],[235.17186,-2.8357E-05],[235.17539,-2.6811E-05],[235.17891,-3.1451E-05],[235.18244,-3.1967E-05],[235.18596,-3.1967E-05],[235.18949,-3.1451E-05],[235.19301,-2.9904E-05],[235.19654,-2.7326E-05],[235.20006,-2.5779E-05],[235.20359,-2.7326E-05],[235.20711,-3.042E-05],[235.21064,-2.9389E-05],[235.21417,-2.4233E-05],[235.21769,-2.6811E-05],[235.22122,-2.9389E-05],[235.22474,-2.8873E-05],[235.22827,-2.4748E-05],[235.23179,-2.5264E-05],[235.23532,-2.6811E-05],[235.23884,-2.6295E-05],[235.24237,-3.4544E-05],[235.24589,-3.3513E-05],[235.24942,-2.9904E-05],[235.25294,-3.1451E-05],[235.25647,-3.042E-05],[235.25999,-2.7326E-05],[235.26352,-2.5779E-05],[235.26705,-3.0935E-05],[235.27057,-2.9904E-05],[235.2741,-2.7842E-05],[235.27762,-2.6295E-05],[235.28115,-2.3717E-05],[235.28467,-3.042E-05],[235.2882,-3.1451E-05],[235.29172,-2.9389E-05],[235.29525,-3.1967E-05],[235.29877,-3.2998E-05],[235.3023,-3.2998E-05],[235.30582,-3.1451E-05],[235.30935,-3.0935E-05],[235.31287,-2.8873E-05],[235.3164,-3.042E-05],[235.31993,-3.042E-05],[235.32345,-2.8357E-05],[235.32698,-3.042E-05],[235.3305,-3.1451E-05],[235.33403,-3.042E-05],[235.33755,-2.9389E-05],[235.34108,-2.8873E-05],[235.3446,-2.5779E-05],[235.34813,-3.2998E-05],[235.35165,-3.3513E-05],[235.35518,-2.8357E-05],[235.3587,-3.042E-05],[235.36223,-2.4748E-05],[235.36575,-2.8357E-05],[235.36928,-2.9904E-05],[235.37281,-2.9389E-05],[235.37633,-3.4029E-05],[235.37986,-2.8357E-05],[235.38338,-2.4233E-05],[235.38691,-2.6811E-05],[235.39043,-2.7842E-05],[235.39396,-2.7326E-05],[235.39748,-2.9904E-05],[235.40101,-3.4029E-05],[235.40453,-2.7842E-05],[235.40806,-2.4748E-05],[235.41158,-3.3513E-05],[235.41511,-3.2482E-05],[235.41863,-3.0935E-05],[235.42216,-2.9904E-05],[235.42569,-2.4233E-05],[235.42921,-2.4748E-05],[235.43274,-2.9389E-05],[235.43626,-3.1967E-05],[235.43979,-2.9389E-05],[235.44331,-2.7842E-05],[235.44684,-2.9904E-05],[235.45036,-2.9389E-05],[235.45389,-3.1451E-05],[235.45741,-3.4029E-05]]}
-{"quant":[236.077,-2.8581E-05],"mems":[[235.97916,-2.5264E-05],[235.98269,-2.8873E-05],[235.98621,-3.1967E-05],[235.98974,-3.5576E-05],[235.99326,-2.8873E-05],[235.99679,-2.8873E-05],[236.00031,-3.042E-05],[236.00384,-2.8357E-05],[236.00737,-3.5576E-05],[236.01089,-3.2482E-05],[236.01442,-2.6295E-05],[236.01794,-3.042E-05],[236.02147,-3.1967E-05],[236.02499,-2.9904E-05],[236.02852,-2.9904E-05],[236.03204,-3.0935E-05],[236.03557,-3.1451E-05],[236.03909,-2.9904E-05],[236.04262,-2.7326E-05],[236.04614,-2.9904E-05],[236.04967,-3.2998E-05],[236.05319,-3.042E-05],[236.05672,-2.9389E-05],[236.06025,-2.5264E-05],[236.06377,-2.217E-05],[236.0673,-2.9904E-05],[236.07082,-3.042E-05],[236.07435,-2.5264E-05],[236.07787,-2.3717E-05],[236.0814,-2.217E-05],[236.08492,-2.8357E-05],[236.08845,-2.9904E-05],[236.09197,-2.8873E-05],[236.0955,-3.042E-05],[236.09902,-2.8357E-05],[236.10255,-2.8357E-05],[236.10607,-2.8873E-05],[236.1096,-2.7842E-05],[236.11313,-2.5264E-05],[236.11665,-2.6811E-05],[236.12018,-3.1967E-05],[236.1237,-3.1451E-05],[236.12723,-2.8357E-05],[236.13075,-2.9904E-05],[236.13428,-3.042E-05],[236.1378,-2.4233E-05],[236.14133,-2.3717E-05],[236.14485,-3.2998E-05],[236.14838,-3.0935E-05],[236.1519,-3.1451E-05],[236.15543,-3.3513E-05],[236.15895,-2.8873E-05],[236.16248,-3.042E-05],[236.16601,-2.7326E-05],[236.16953,-2.6811E-05],[236.17306,-2.9389E-05],[236.17658,-2.7326E-05],[236.18011,-2.9389E-05],[236.18363,-2.8357E-05],[236.18716,-2.6295E-05],[236.19068,-2.8873E-05],[236.19421,-3.4544E-05],[236.19773,-3.3513E-05],[236.20126,-2.9389E-05],[236.20478,-2.8873E-05],[236.20831,-3.2998E-05],[236.21183,-3.4544E-05],[236.21536,-3.042E-05],[236.21889,-3.042E-05],[236.22241,-2.7842E-05],[236.22594,-2.7842E-05],[236.22946,-2.7842E-05],[236.23299,-2.7842E-05],[236.23651,-3.2998E-05],[236.24004,-2.6811E-05],[236.24356,-2.3717E-05],[236.24709,-2.8357E-05],[236.25061,-2.7842E-05],[236.25414,-3.042E-05],[236.25766,-3.0935E-05],[236.26119,-2.6811E-05],[236.26471,-3.1451E-05],[236.26824,-3.2998E-05],[236.27177,-2.7842E-05],[236.27529,-3.0935E-05],[236.27882,-3.3513E-05]]}
-{"quant":[236.574,-2.822E-05],"mems":[[236.47623,-3.2998E-05],[236.47976,-3.4029E-05],[236.48329,-2.9389E-05],[236.48681,-2.6295E-05],[236.49034,-2.7842E-05],[236.49386,-2.5264E-05],[236.49739,-2.6295E-05],[236.50091,-2.7326E-05],[236.50444,-2.6295E-05],[236.50796,-2.6811E-05],[236.51149,-2.5779E-05],[236.51501,-2.6811E-05],[236.51854,-3.2482E-05],[236.52206,-3.2482E-05],[236.52559,-2.6811E-05],[236.52911,-2.6811E-05],[236.53264,-2.7326E-05],[236.53617,-2.9904E-05],[236.53969,-2.8873E-05],[236.54322,-2.6811E-05],[236.54674,-2.9904E-05],[236.55027,-2.7326E-05],[236.55379,-2.6811E-05],[236.55732,-2.8873E-05],[236.56084,-2.8357E-05],[236.56437,-2.5779E-05],[236.56789,-2.8873E-05],[236.57142,-3.3513E-05],[236.57494,-2.5264E-05],[236.57847,-2.2686E-05],[236.58199,-2.9904E-05],[236.58552,-3.1451E-05],[236.58905,-2.9389E-05],[236.59257,-2.5779E-05],[236.5961,-2.6811E-05],[236.59962,-3.042E-05],[236.60315,-3.042E-05],[236.60667,-3.2998E-05],[236.6102,-2.9904E-05],[236.61372,-2.217E-05],[236.61725,-2.6811E-05],[236.62077,-2.9904E-05],[236.6243,-3.0935E-05],[236.62782,-2.9389E-05],[236.63135,-2.4233E-05],[236.63487,-2.7842E-05],[236.6384,-2.6811E-05],[236.64193,-2.8873E-05],[236.64545,-3.1451E-05],[236.64898,-2.6295E-05],[236.6525,-2.8357E-05],[236.65603,-2.8873E-05],[236.65955,-2.4233E-05],[236.66308,-2.8873E-05],[236.6666,-3.4029E-05],[236.67013,-3.042E-05],[236.67365,-2.5779E-05],[236.67718,-2.6295E-05],[236.6807,-3.042E-05],[236.68423,-3.3513E-05],[236.68775,-3.0935E-05],[236.69128,-2.9904E-05],[236.69481,-2.4748E-05],[236.69833,-2.9389E-05],[236.70186,-3.6091E-05],[236.70538,-3.3513E-05],[236.70891,-3.1967E-05],[236.71243,-2.7842E-05],[236.71596,-3.1451E-05],[236.71948,-3.1967E-05],[236.72301,-2.9389E-05],[236.72653,-3.2998E-05],[236.73006,-3.1967E-05],[236.73358,-2.9904E-05],[236.73711,-2.8357E-05],[236.74063,-3.042E-05],[236.74416,-3.3513E-05],[236.74769,-3.6091E-05],[236.75121,-3.1967E-05],[236.75474,-2.9389E-05],[236.75826,-3.042E-05],[236.76179,-3.1967E-05],[236.76531,-3.4029E-05],[236.76884,-2.9389E-05],[236.77236,-2.8873E-05],[236.77589,-2.9389E-05]]}
-{"quant":[237.082,-2.9749E-05],"mems":[[236.98388,-2.8357E-05],[236.98741,-2.9389E-05],[236.99093,-3.1451E-05],[236.99446,-2.7842E-05],[236.99798,-2.9389E-05],[237.00151,-3.2482E-05],[237.00503,-2.8357E-05],[237.00856,-2.8873E-05],[237.01209,-3.042E-05],[237.01561,-3.2998E-05],[237.01914,-3.2482E-05],[237.02266,-2.7842E-05],[237.02619,-2.8357E-05],[237.02971,-2.6811E-05],[237.03324,-2.8357E-05],[237.03676,-2.9389E-05],[237.04029,-2.6811E-05],[237.04381,-2.6811E-05],[237.04734,-2.5264E-05],[237.05086,-2.6811E-05],[237.05439,-2.8357E-05],[237.05791,-2.8357E-05],[237.06144,-2.8873E-05],[237.06497,-2.7326E-05],[237.06849,-2.7326E-05],[237.07202,-2.9904E-05],[237.07554,-3.042E-05],[237.07907,-2.9904E-05],[237.08259,-2.9904E-05],[237.08612,-2.8873E-05],[237.08964,-2.8357E-05],[237.09317,-2.8873E-05],[237.09669,-2.9389E-05],[237.10022,-2.9904E-05],[237.10374,-2.9389E-05],[237.10727,-3.042E-05],[237.11079,-3.1451E-05],[237.11432,-3.1967E-05],[237.11785,-3.4029E-05],[237.12137,-3.042E-05],[237.1249,-2.6295E-05],[237.12842,-2.9904E-05],[237.13195,-3.1967E-05],[237.13547,-2.7842E-05],[237.139,-3.042E-05],[237.14252,-3.1451E-05],[237.14605,-2.6811E-05],[237.14957,-2.8873E-05],[237.1531,-2.9389E-05],[237.15662,-2.9389E-05],[237.16015,-3.2482E-05],[237.16367,-2.9389E-05],[237.1672,-2.7842E-05],[237.17073,-2.6811E-05],[237.17425,-2.7842E-05],[237.17778,-3.1451E-05],[237.1813,-2.9904E-05],[237.18483,-3.1451E-05],[237.18835,-3.1451E-05],[237.19188,-2.3717E-05],[237.1954,-2.5779E-05],[237.19893,-3.0935E-05],[237.20245,-2.9389E-05],[237.20598,-3.042E-05],[237.2095,-3.0935E-05],[237.21303,-3.1451E-05],[237.21655,-3.506E-05],[237.22008,-3.8154E-05],[237.22361,-3.2998E-05],[237.22713,-2.5779E-05],[237.23066,-2.7326E-05],[237.23418,-2.7842E-05],[237.23771,-2.9389E-05],[237.24123,-2.8873E-05],[237.24476,-2.7326E-05],[237.24828,-2.6811E-05],[237.25181,-2.6811E-05],[237.25533,-2.6811E-05],[237.25886,-2.9904E-05],[237.26238,-3.1451E-05],[237.26591,-2.9389E-05],[237.26943,-3.1451E-05],[237.27296,-2.8357E-05],[237.27649,-2.7842E-05],[237.28001,-3.3513E-05],[237.28354,-3.2482E-05]]}
-{"quant":[237.578,-0.36294],"mems":[[237.48095,-2.8357E-05],[237.48448,-3.0935E-05],[237.48801,-3.3513E-05],[237.49153,-3.2482E-05],[237.49506,-2.9904E-05],[237.49858,-2.7326E-05],[237.50211,-2.5779E-05],[237.50563,-2.5264E-05],[237.50916,-2.8357E-05],[237.51268,-3.1451E-05],[237.51621,-2.6295E-05],[237.51973,-2.5264E-05],[237.52326,-2.9389E-05],[237.52678,-3.4029E-05],[237.53031,-3.5576E-05],[237.53383,-2.8873E-05],[237.53736,-2.3717E-05],[237.54089,-2.8357E-05],[237.54441,-3.1967E-05],[237.54794,-2.8357E-05],[237.55146,-2.7326E-05],[237.55499,-3.1967E-05],[237.55851,-3.0935E-05],[237.56204,-2.8873E-05],[237.56556,-3.4029E-05],[237.56909,-3.5576E-05],[237.57261,-2.9904E-05],[237.57614,-2.4233E-05],[237.57966,-2.2686E-05],[237.58319,-2.6295E-05],[237.58671,-2.7842E-05],[237.59024,-2.6811E-05],[237.59377,-2.9904E-05],[237.59729,-2.9904E-05],[237.60082,-2.8357E-05],[237.60434,-3.0935E-05],[237.60787,-3.1967E-05],[237.61139,-3.4544E-05],[237.61492,-3.0935E-05],[237.61844,-2.7326E-05],[237.62197,-2.7842E-05],[237.62549,-2.5779E-05],[237.62902,-2.9389E-05],[237.63254,-3.5576E-05],[237.63607,-3.2482E-05],[237.63959,-2.7326E-05],[237.64312,-2.9904E-05],[237.64665,-3.2482E-05],[237.65017,-2.8873E-05],[237.6537,-2.8873E-05],[237.65722,-3.042E-05],[237.66075,-2.7326E-05],[237.66427,-2.5264E-05],[237.6678,-2.9904E-05],[237.67132,-3.3513E-05],[237.67485,-2.9904E-05],[237.67837,-2.7842E-05],[237.6819,-2.9389E-05],[237.68542,-3.1451E-05],[237.68895,-3.2482E-05],[237.69247,-2.5779E-05],[237.696,-2.7842E-05],[237.69942,-2.8873E-05],[237.70285,-2.7326E-05],[237.70627,-3.0935E-05],[237.70969,-2.9904E-05],[237.71311,-2.9904E-05],[237.71654,-2.7842E-05],[237.71996,-2.5264E-05],[237.72338,-2.6811E-05],[237.7268,-2.8873E-05],[237.73023,-2.8873E-05],[237.73365,-2.8873E-05],[237.73707,-2.8873E-05],[237.74049,-2.7842E-05],[237.74392,-2.8357E-05],[237.74734,-2.8873E-05],[237.75076,-3.1967E-05],[237.75419,-2.7842E-05],[237.75761,-2.5779E-05],[237.76103,-3.2998E-05],[237.76445,-3.3513E-05],[237.76788,-3.3513E-05],[237.7713,-2.9389E-05],[237.77472,-3.042E-05],[237.77814,-3.3513E-05],[237.78157,-3.042E-05],[237.78499,-3.3513E-05],[237.78841,-3.3513E-05]]}
-{"quant":[238.064,-2.944E-05],"mems":[[237.96639,-3.042E-05],[237.96981,-2.9904E-05],[237.97324,-3.2482E-05],[237.97666,-3.2482E-05],[237.98008,-3.2482E-05],[237.9835,-3.2482E-05],[237.98693,-2.9904E-05],[237.99035,-3.1967E-05],[237.99377,-3.0935E-05],[237.99719,-2.7326E-05],[238.00062,-2.5779E-05],[238.00404,-2.9904E-05],[238.00746,-3.5576E-05],[238.01089,-2.9389E-05],[238.01431,-2.6295E-05],[238.01773,-2.9389E-05],[238.02115,-2.9389E-05],[238.02458,-3.2482E-05],[238.028,-3.0935E-05],[238.03142,-2.7326E-05],[238.03484,-2.7326E-05],[238.03827,-2.4233E-05],[238.04169,-2.8873E-05],[238.04511,-2.8873E-05],[238.04853,-2.5264E-05],[238.05196,-2.9904E-05],[238.05538,-3.1451E-05],[238.0588,-3.042E-05],[238.06223,-2.5779E-05],[238.06565,-2.8357E-05],[238.06907,-3.2482E-05],[238.07249,-2.8873E-05],[238.07592,-3.2998E-05],[238.07934,-2.9904E-05],[238.08276,-2.7842E-05],[238.08618,-3.6607E-05],[238.08961,-3.3513E-05],[238.09303,-2.7842E-05],[238.09645,-2.8873E-05],[238.09987,-2.9389E-05],[238.1033,-2.6295E-05],[238.10672,-2.8873E-05],[238.11014,-3.2998E-05],[238.11357,-2.7842E-05],[238.11699,-2.6295E-05],[238.12041,-3.042E-05],[238.12383,-2.9389E-05],[238.12726,-2.7842E-05],[238.13068,-2.9904E-05],[238.1341,-3.3513E-05],[238.13752,-2.7326E-05],[238.14095,-2.4233E-05],[238.14437,-3.3513E-05],[238.14779,-2.9389E-05],[238.15121,-2.6295E-05],[238.15464,-2.9904E-05],[238.15806,-2.7842E-05],[238.16148,-2.5264E-05],[238.16491,-2.9389E-05],[238.16833,-3.2998E-05],[238.17175,-3.3513E-05],[238.17517,-3.4029E-05],[238.1786,-2.9389E-05],[238.18202,-2.9904E-05],[238.18544,-3.3513E-05],[238.18886,-3.2482E-05],[238.19229,-3.3513E-05],[238.19571,-2.8873E-05],[238.19913,-2.9904E-05],[238.20255,-3.4544E-05],[238.20598,-3.2998E-05],[238.2094,-3.042E-05],[238.21282,-2.4233E-05],[238.21625,-2.9389E-05],[238.21967,-3.3513E-05],[238.22309,-2.8873E-05],[238.22651,-3.042E-05],[238.22994,-2.7842E-05],[238.23336,-2.6811E-05],[238.23678,-2.7326E-05],[238.2402,-3.042E-05],[238.24363,-3.2482E-05],[238.24705,-2.6295E-05],[238.25047,-2.7842E-05],[238.25389,-3.1451E-05],[238.25732,-3.042E-05],[238.26074,-3.1451E-05],[238.26416,-3.2998E-05]]}
-{"quant":[238.801,-2.9987E-05],"mems":[[238.70226,-3.1967E-05],[238.70569,-2.9904E-05],[238.70911,-2.9904E-05],[238.71253,-2.9389E-05],[238.71595,-2.5779E-05],[238.71938,-2.6295E-05],[238.7228,-2.9389E-05],[238.72622,-2.8873E-05],[238.72965,-3.042E-05],[238.73307,-3.2998E-05],[238.73649,-3.1967E-05],[238.73991,-3.2998E-05],[238.74334,-3.4029E-05],[238.74676,-2.8873E-05],[238.75018,-2.8357E-05],[238.7536,-3.3513E-05],[238.75703,-3.1451E-05],[238.76045,-3.042E-05],[238.76387,-2.8873E-05],[238.76729,-3.042E-05],[238.77072,-3.2482E-05],[238.77414,-2.7842E-05],[238.77756,-2.9389E-05],[238.78099,-3.4544E-05],[238.78441,-3.1451E-05],[238.78783,-2.6811E-05],[238.79125,-3.2998E-05],[238.79468,-3.042E-05],[238.7981,-2.7842E-05],[238.80152,-3.1451E-05],[238.80494,-2.8873E-05],[238.80837,-3.2998E-05],[238.81179,-3.0935E-05],[238.81521,-2.5264E-05],[238.81863,-2.9389E-05],[238.82206,-2.8873E-05],[238.82548,-3.042E-05],[238.8289,-3.1967E-05],[238.83233,-3.0935E-05],[238.83575,-2.6295E-05],[238.83917,-2.5264E-05],[238.84259,-3.3513E-05],[238.84602,-3.4029E-05],[238.84944,-3.042E-05],[238.85286,-2.8357E-05],[238.85628,-2.9389E-05],[238.85971,-3.042E-05],[238.86313,-2.7842E-05],[238.86655,-2.8873E-05],[238.86997,-3.2998E-05],[238.8734,-3.4029E-05],[238.87682,-3.0935E-05],[238.88024,-2.9389E-05],[238.88367,-2.6295E-05],[238.88709,-2.9389E-05],[238.89051,-3.506E-05],[238.89393,-2.7842E-05],[238.89736,-2.8357E-05],[238.90078,-3.042E-05],[238.9042,-2.9389E-05],[238.90762,-3.1967E-05],[238.91105,-3.0935E-05],[238.91447,-3.1967E-05],[238.91789,-3.1967E-05],[238.92131,-2.6295E-05],[238.92474,-2.7842E-05],[238.92816,-3.042E-05],[238.93158,-2.5264E-05],[238.93501,-2.9389E-05],[238.93843,-3.2998E-05],[238.94185,-2.8873E-05],[238.94527,-3.042E-05],[238.9487,-2.9389E-05],[238.95212,-3.042E-05],[238.95554,-2.7842E-05],[238.95896,-2.4748E-05],[238.96239,-2.9389E-05],[238.96581,-3.3513E-05],[238.96923,-3.2998E-05],[238.97265,-2.7842E-05],[238.97608,-2.8357E-05],[238.9795,-2.8873E-05],[238.98292,-3.0935E-05],[238.98635,-3.7638E-05],[238.98977,-3.506E-05],[238.99319,-3.1451E-05],[238.99661,-2.8873E-05],[239.00004,-2.5264E-05],[239.00346,-2.6295E-05]]}
-{"quant":[239.266,-2.901E-05],"mems":[[239.16775,-3.1967E-05],[239.17117,-3.0935E-05],[239.17459,-3.042E-05],[239.17801,-2.9904E-05],[239.18144,-2.4233E-05],[239.18486,-2.1139E-05],[239.18828,-2.6811E-05],[239.19171,-2.8873E-05],[239.19513,-3.042E-05],[239.19855,-2.7326E-05],[239.20197,-3.042E-05],[239.2054,-3.0935E-05],[239.20882,-2.7326E-05],[239.21224,-3.0935E-05],[239.21566,-2.7326E-05],[239.21909,-2.6811E-05],[239.22251,-2.6295E-05],[239.22593,-2.7326E-05],[239.22935,-3.2482E-05],[239.23278,-3.2482E-05],[239.2362,-2.9389E-05],[239.23962,-2.5264E-05],[239.24305,-3.042E-05],[239.24647,-3.2482E-05],[239.24989,-2.9389E-05],[239.25331,-2.7326E-05],[239.25674,-2.4748E-05],[239.26016,-2.5264E-05],[239.26358,-2.7326E-05],[239.267,-3.2482E-05],[239.27043,-2.6295E-05],[239.27385,-2.4233E-05],[239.27727,-3.1451E-05],[239.28069,-3.042E-05],[239.28412,-2.9389E-05],[239.28754,-3.2482E-05],[239.29096,-3.2998E-05],[239.29439,-2.7326E-05],[239.29781,-2.9904E-05],[239.30123,-2.9904E-05],[239.30465,-2.7842E-05],[239.30808,-2.7842E-05],[239.3115,-2.5779E-05],[239.31492,-3.4029E-05],[239.31834,-3.506E-05],[239.32177,-3.1451E-05],[239.32519,-2.9389E-05],[239.32861,-2.6295E-05],[239.33203,-2.7326E-05],[239.33546,-2.6295E-05],[239.33888,-2.7326E-05],[239.3423,-2.5779E-05],[239.34573,-2.7326E-05],[239.34915,-3.0935E-05],[239.35257,-3.1451E-05],[239.35599,-2.6811E-05],[239.35942,-2.2686E-05],[239.36284,-2.7326E-05],[239.36626,-3.2482E-05],[239.36968,-3.2482E-05],[239.37311,-2.6295E-05],[239.37653,-2.5779E-05],[239.37995,-2.9389E-05],[239.38337,-3.042E-05],[239.3868,-3.5576E-05],[239.39022,-3.4544E-05],[239.39364,-3.1967E-05],[239.39707,-2.9389E-05],[239.40049,-2.5264E-05],[239.40391,-3.2482E-05],[239.40733,-3.2998E-05],[239.41076,-2.5779E-05],[239.41418,-2.4233E-05],[239.4176,-2.6811E-05],[239.42102,-2.8873E-05],[239.42445,-2.8873E-05],[239.42787,-2.7842E-05],[239.43129,-2.6811E-05],[239.43471,-2.7326E-05],[239.43814,-3.042E-05],[239.44156,-3.3513E-05],[239.44498,-3.2482E-05],[239.44841,-3.2482E-05],[239.45183,-2.9904E-05],[239.45525,-2.6811E-05],[239.45867,-2.5779E-05],[239.4621,-2.8357E-05],[239.46552,-3.1451E-05],[239.46894,-2.7842E-05]]}
-{"quant":[239.753,-3.007E-05],"mems":[[239.65377,-2.6811E-05],[239.65719,-3.042E-05],[239.66061,-3.042E-05],[239.66403,-2.7842E-05],[239.66746,-3.1451E-05],[239.67088,-2.8357E-05],[239.6743,-2.8357E-05],[239.67772,-2.9904E-05],[239.68115,-3.0935E-05],[239.68457,-3.2998E-05],[239.68799,-2.9389E-05],[239.69141,-2.8357E-05],[239.69484,-2.9904E-05],[239.69826,-2.8873E-05],[239.70168,-3.1451E-05],[239.70511,-3.1451E-05],[239.70853,-3.0935E-05],[239.71195,-3.3513E-05],[239.71537,-3.042E-05],[239.7188,-3.2482E-05],[239.72222,-3.2998E-05],[239.72564,-3.1451E-05],[239.72906,-2.8357E-05],[239.73249,-2.6295E-05],[239.73591,-3.1967E-05],[239.73933,-3.1451E-05],[239.74275,-3.4544E-05],[239.74618,-3.4544E-05],[239.7496,-2.9904E-05],[239.75302,-3.0935E-05],[239.75645,-3.506E-05],[239.75987,-3.2998E-05],[239.76329,-3.042E-05],[239.76671,-2.9389E-05],[239.77014,-2.6295E-05],[239.77356,-3.042E-05],[239.77698,-3.1451E-05],[239.7804,-3.1967E-05],[239.78383,-3.4029E-05],[239.78725,-3.2482E-05],[239.79067,-2.7326E-05],[239.79409,-2.2686E-05],[239.79752,-2.7842E-05],[239.80094,-3.0935E-05],[239.80436,-3.1451E-05],[239.80779,-3.2482E-05],[239.81121,-2.8357E-05],[239.81463,-2.6295E-05],[239.81805,-2.5779E-05],[239.82148,-2.7326E-05],[239.8249,-3.1451E-05],[239.82832,-3.0935E-05],[239.83174,-2.8873E-05],[239.83517,-3.4029E-05],[239.83859,-3.5576E-05],[239.84201,-3.042E-05],[239.84543,-3.1967E-05],[239.84886,-3.1451E-05],[239.85228,-2.5779E-05],[239.8557,-2.5779E-05],[239.85913,-2.7326E-05],[239.86255,-3.0935E-05],[239.86597,-2.8357E-05],[239.86939,-2.5779E-05],[239.87282,-2.5779E-05],[239.87624,-2.8873E-05],[239.87966,-3.1451E-05],[239.88308,-2.9389E-05],[239.88651,-3.2998E-05],[239.88993,-3.2998E-05],[239.89335,-2.7842E-05],[239.89677,-2.6811E-05],[239.9002,-2.9904E-05],[239.90362,-2.9389E-05],[239.90704,-3.2482E-05],[239.91047,-3.1967E-05],[239.91389,-2.4748E-05],[239.91731,-3.2482E-05],[239.92073,-3.042E-05],[239.92416,-2.5779E-05],[239.92758,-3.1967E-05],[239.931,-3.3513E-05],[239.93442,-2.9904E-05],[239.93785,-2.8873E-05],[239.94127,-3.1451E-05],[239.94469,-2.8357E-05],[239.94811,-2.6811E-05],[239.95154,-2.5779E-05],[239.95496,-2.6295E-05]]}
-{"quant":[240.25,-0.63292],"mems":[[240.20481,-2.8873E-05],[240.20824,-2.8357E-05],[240.21166,-2.5264E-05],[240.21508,-2.9389E-05],[240.21851,-3.1967E-05],[240.22193,-3.5576E-05],[240.22535,-2.9389E-05],[240.22877,-2.7326E-05],[240.2322,-2.7842E-05],[240.23562,-2.7842E-05],[240.23904,-3.4029E-05],[240.24246,-3.4029E-05],[240.24589,-3.0935E-05],[240.24931,-2.6811E-05],[240.25273,-2.8357E-05],[240.25615,-3.4029E-05],[240.25958,-3.2482E-05],[240.263,-2.7326E-05],[240.26636,-3.042E-05],[240.26973,-3.1967E-05],[240.27309,-2.8873E-05],[240.27646,-3.4029E-05],[240.27982,-3.4544E-05],[240.28318,-3.0935E-05],[240.28655,-3.506E-05],[240.28991,-3.506E-05],[240.29328,-2.9389E-05],[240.29664,-2.8357E-05],[240.3,-3.0935E-05],[240.30337,-2.9389E-05],[240.30673,-3.042E-05],[240.3101,-3.1451E-05],[240.31346,-3.1967E-05],[240.31682,-3.4544E-05],[240.32019,-3.0935E-05],[240.32355,-3.0935E-05],[240.32692,-3.1451E-05],[240.33028,-2.8357E-05],[240.33364,-3.0935E-05],[240.33701,-2.8873E-05],[240.34037,-2.9904E-05],[240.34374,-3.042E-05],[240.3471,-2.9389E-05],[240.35046,-3.3513E-05],[240.35383,-3.2998E-05],[240.35719,-3.3513E-05],[240.36056,-2.9904E-05],[240.36392,-2.5779E-05],[240.36728,-2.7326E-05],[240.37065,-2.217E-05],[240.37401,-2.5779E-05],[240.37738,-3.2998E-05],[240.38074,-3.2482E-05],[240.3841,-3.0935E-05],[240.38747,-2.6811E-05],[240.39083,-3.042E-05],[240.3942,-3.4029E-05],[240.39756,-3.042E-05],[240.40092,-3.4029E-05],[240.40429,-3.1967E-05],[240.40765,-2.3717E-05],[240.41102,-2.6295E-05],[240.41438,-3.2482E-05],[240.41774,-2.9389E-05],[240.42111,-2.5264E-05],[240.42447,-2.5264E-05],[240.42784,-2.9389E-05],[240.4312,-3.506E-05],[240.43456,-3.2482E-05],[240.43793,-3.1451E-05],[240.44129,-3.2482E-05],[240.44466,-2.9389E-05],[240.44802,-2.5779E-05],[240.45138,-2.7326E-05],[240.45475,-3.1967E-05],[240.45811,-3.3513E-05],[240.46148,-3.2482E-05],[240.46484,-2.9904E-05],[240.4682,-2.6811E-05],[240.47157,-2.7842E-05],[240.47493,-3.1967E-05],[240.4783,-2.9904E-05],[240.48166,-2.6295E-05],[240.48502,-2.8357E-05],[240.48839,-3.1451E-05],[240.49175,-2.8357E-05],[240.49512,-2.6811E-05],[240.49848,-3.2482E-05]]}
-{"quant":[240.731,-2.9251E-05],"mems":[[240.63304,-2.9904E-05],[240.6364,-3.0935E-05],[240.63977,-3.0935E-05],[240.64313,-2.8873E-05],[240.6465,-2.8873E-05],[240.64986,-2.9389E-05],[240.65322,-3.1451E-05],[240.65659,-2.9389E-05],[240.65995,-2.7842E-05],[240.66332,-2.7326E-05],[240.66668,-3.0935E-05],[240.67004,-3.2998E-05],[240.67341,-2.9904E-05],[240.67677,-3.506E-05],[240.68014,-2.8357E-05],[240.6835,-2.7326E-05],[240.68686,-3.1451E-05],[240.69023,-3.042E-05],[240.69359,-3.2482E-05],[240.69696,-2.6295E-05],[240.70032,-2.4233E-05],[240.70368,-2.6295E-05],[240.70705,-3.1967E-05],[240.71041,-3.042E-05],[240.71378,-3.0935E-05],[240.71714,-3.2998E-05],[240.7205,-2.4748E-05],[240.72387,-2.7842E-05],[240.72723,-3.1967E-05],[240.7306,-3.4029E-05],[240.73396,-3.4544E-05],[240.73732,-2.9389E-05],[240.74069,-2.7326E-05],[240.74405,-2.7326E-05],[240.74742,-2.8357E-05],[240.75078,-3.3513E-05],[240.75414,-3.1451E-05],[240.75751,-2.5779E-05],[240.76087,-3.042E-05],[240.76424,-2.9389E-05],[240.7676,-2.7842E-05],[240.77096,-3.0935E-05],[240.77433,-2.8357E-05],[240.77769,-2.7842E-05],[240.78106,-2.6295E-05],[240.78442,-2.6295E-05],[240.78778,-2.8357E-05],[240.79115,-2.8873E-05],[240.79451,-3.042E-05],[240.79788,-3.0935E-05],[240.80124,-3.0935E-05],[240.8046,-2.9389E-05],[240.80797,-3.1967E-05],[240.81133,-2.9904E-05],[240.8147,-2.7326E-05],[240.81806,-3.042E-05],[240.82142,-2.6811E-05],[240.82479,-3.0935E-05],[240.82815,-2.9389E-05],[240.83152,-2.6811E-05],[240.83488,-3.1451E-05],[240.83824,-2.7842E-05],[240.84161,-2.8873E-05],[240.84497,-2.9904E-05],[240.84834,-2.8873E-05],[240.8517,-2.8357E-05],[240.85506,-2.8357E-05],[240.85843,-3.2998E-05],[240.86179,-3.1967E-05],[240.86516,-3.4544E-05],[240.86852,-3.8154E-05],[240.87188,-3.6091E-05],[240.87525,-3.1451E-05],[240.87861,-2.6295E-05],[240.88198,-2.5264E-05],[240.88534,-2.8357E-05],[240.8887,-2.8873E-05],[240.89207,-2.8873E-05],[240.89543,-2.9904E-05],[240.8988,-2.8873E-05],[240.90216,-3.2482E-05],[240.90552,-3.1451E-05],[240.90889,-2.6295E-05],[240.91225,-2.7326E-05],[240.91562,-2.8357E-05],[240.91898,-3.2998E-05],[240.92234,-3.2998E-05],[240.92571,-3.042E-05],[240.92907,-3.4544E-05],[240.93244,-3.3513E-05]]}
-{"quant":[241.519,-3.0037E-05],"mems":[[241.42022,-2.9904E-05],[241.42358,-3.0935E-05],[241.42694,-2.9389E-05],[241.43031,-3.3513E-05],[241.43367,-2.9904E-05],[241.43704,-2.3717E-05],[241.4404,-2.9389E-05],[241.44376,-3.1967E-05],[241.44713,-2.8357E-05],[241.45049,-2.5779E-05],[241.45386,-2.9389E-05],[241.45722,-2.8873E-05],[241.46058,-2.5264E-05],[241.46395,-3.2482E-05],[241.46731,-3.2998E-05],[241.47068,-3.2482E-05],[241.47404,-3.3513E-05],[241.4774,-3.0935E-05],[241.48077,-2.8357E-05],[241.48413,-2.6811E-05],[241.4875,-2.7842E-05],[241.49086,-2.7842E-05],[241.49422,-2.9389E-05],[241.49759,-3.042E-05],[241.50095,-2.9904E-05],[241.50432,-2.7842E-05],[241.50768,-2.9389E-05],[241.51104,-3.3513E-05],[241.51441,-3.2482E-05],[241.51777,-2.7326E-05],[241.52114,-2.6295E-05],[241.5245,-3.1967E-05],[241.52786,-3.4029E-05],[241.53123,-3.506E-05],[241.53459,-3.0935E-05],[241.53796,-2.9389E-05],[241.54132,-3.0935E-05],[241.54468,-3.042E-05],[241.54805,-3.2998E-05],[241.55141,-3.4029E-05],[241.55478,-3.042E-05],[241.55814,-2.5264E-05],[241.5615,-2.5264E-05],[241.56487,-2.5779E-05],[241.56823,-3.042E-05],[241.5716,-3.2482E-05],[241.57496,-2.7842E-05],[241.57832,-3.0935E-05],[241.58169,-2.8873E-05],[241.58505,-2.5779E-05],[241.58842,-2.8357E-05],[241.59178,-3.1451E-05],[241.59514,-3.1967E-05],[241.59851,-3.0935E-05],[241.60187,-2.7326E-05],[241.60524,-2.8873E-05],[241.6086,-3.2998E-05],[241.61196,-2.8357E-05],[241.61533,-3.0935E-05],[241.61869,-3.2998E-05],[241.62206,-2.7842E-05],[241.62542,-3.0935E-05],[241.62878,-3.2998E-05],[241.63215,-3.3513E-05],[241.63551,-3.2998E-05],[241.63888,-2.9389E-05],[241.64224,-3.2482E-05],[241.6456,-3.4544E-05],[241.64897,-3.1451E-05],[241.65233,-3.1967E-05],[241.6557,-2.9904E-05],[241.65906,-2.7842E-05],[241.66242,-2.9904E-05],[241.66579,-3.4544E-05],[241.66915,-3.2482E-05],[241.67252,-2.4748E-05],[241.67588,-3.2998E-05],[241.67924,-3.1967E-05],[241.68261,-2.3202E-05],[241.68597,-2.8873E-05],[241.68934,-3.506E-05],[241.6927,-3.4029E-05],[241.69606,-3.0935E-05],[241.69943,-3.2482E-05],[241.70279,-3.0935E-05],[241.70616,-3.1967E-05],[241.70952,-3.2998E-05],[241.71288,-2.8873E-05],[241.71625,-2.9904E-05],[241.71961,-2.4748E-05]]}
-{"quant":[241.98,-3.0087E-05],"mems":[[241.88108,-3.1967E-05],[241.88445,-2.7326E-05],[241.88781,-3.1967E-05],[241.89118,-3.6091E-05],[241.89454,-2.8357E-05],[241.8979,-2.7326E-05],[241.90127,-3.1451E-05],[241.90463,-3.2482E-05],[241.908,-2.6295E-05],[241.91136,-2.6811E-05],[241.91472,-3.042E-05],[241.91809,-2.7326E-05],[241.92145,-2.9904E-05],[241.92482,-3.042E-05],[241.92818,-3.4029E-05],[241.93154,-3.4544E-05],[241.93491,-2.8873E-05],[241.93827,-2.8357E-05],[241.94164,-2.8357E-05],[241.945,-3.3513E-05],[241.94836,-3.4029E-05],[241.95173,-2.9904E-05],[241.95509,-3.0935E-05],[241.95846,-3.1451E-05],[241.96182,-3.3513E-05],[241.96518,-2.7842E-05],[241.96855,-2.6811E-05],[241.97191,-2.8873E-05],[241.97528,-2.7842E-05],[241.97864,-3.4029E-05],[241.982,-3.1967E-05],[241.98537,-3.042E-05],[241.98873,-3.2482E-05],[241.9921,-2.7842E-05],[241.99546,-2.4748E-05],[241.99882,-2.7842E-05],[242.00219,-3.042E-05],[242.00555,-2.9904E-05],[242.00892,-3.2998E-05],[242.01228,-3.042E-05],[242.01564,-3.042E-05],[242.01901,-3.2998E-05],[242.02237,-2.9389E-05],[242.02574,-2.7842E-05],[242.0291,-2.5264E-05],[242.03246,-2.3202E-05],[242.03583,-2.6811E-05],[242.03919,-3.0935E-05],[242.04256,-2.8873E-05],[242.04592,-3.1967E-05],[242.04928,-3.4544E-05],[242.05265,-3.1451E-05],[242.05601,-3.1451E-05],[242.05938,-2.7326E-05],[242.06274,-3.0935E-05],[242.0661,-3.2482E-05],[242.06947,-2.6811E-05],[242.07283,-3.1451E-05],[242.0762,-3.2482E-05],[242.07956,-3.506E-05],[242.08292,-3.1967E-05],[242.08629,-2.6811E-05],[242.08965,-2.8873E-05],[242.09302,-2.8873E-05],[242.09638,-3.0935E-05],[242.09974,-3.0935E-05],[242.10311,-3.3513E-05],[242.10647,-2.8873E-05],[242.10984,-2.5264E-05],[242.1132,-3.506E-05],[242.11656,-2.9389E-05],[242.11993,-2.4233E-05],[242.12329,-2.9904E-05],[242.12666,-3.2998E-05],[242.13002,-3.4029E-05],[242.13338,-2.9904E-05],[242.13675,-2.9389E-05],[242.14011,-3.0935E-05],[242.14348,-3.2998E-05],[242.14684,-2.9904E-05],[242.1502,-2.5264E-05],[242.15357,-2.7842E-05],[242.15693,-3.1451E-05],[242.1603,-3.1451E-05],[242.16366,-3.042E-05],[242.16702,-2.7842E-05],[242.17039,-2.5264E-05],[242.17375,-2.8873E-05],[242.17712,-3.042E-05],[242.18048,-2.7842E-05]]}
-{"quant":[242.444,-2.9838E-05],"mems":[[242.34532,-2.9904E-05],[242.34868,-2.9904E-05],[242.35204,-3.2482E-05],[242.35541,-2.9904E-05],[242.35877,-3.1451E-05],[242.36214,-2.8873E-05],[242.3655,-2.3202E-05],[242.36886,-2.7326E-05],[242.37223,-2.8873E-05],[242.37559,-3.0935E-05],[242.37896,-2.8357E-05],[242.38232,-2.4748E-05],[242.38568,-2.7326E-05],[242.38905,-2.9904E-05],[242.39241,-3.0935E-05],[242.39578,-2.8873E-05],[242.39914,-2.9904E-05],[242.4025,-2.8873E-05],[242.40587,-2.5264E-05],[242.40923,-3.042E-05],[242.4126,-3.0935E-05],[242.41596,-2.7842E-05],[242.41932,-2.9904E-05],[242.42269,-3.1451E-05],[242.42605,-3.1451E-05],[242.42942,-3.2482E-05],[242.43278,-3.2482E-05],[242.43614,-2.9389E-05],[242.43951,-2.7842E-05],[242.44287,-2.3717E-05],[242.44624,-2.7842E-05],[242.4496,-3.4029E-05],[242.45296,-2.6811E-05],[242.45633,-2.6295E-05],[242.45969,-2.9389E-05],[242.46306,-2.8357E-05],[242.46642,-3.1451E-05],[242.46978,-3.4029E-05],[242.47315,-3.4544E-05],[242.47651,-3.0935E-05],[242.47988,-2.8357E-05],[242.48324,-2.6811E-05],[242.4866,-2.6811E-05],[242.48997,-3.042E-05],[242.49333,-2.8873E-05],[242.4967,-3.4029E-05],[242.50006,-3.6091E-05],[242.50342,-2.8873E-05],[242.50679,-3.1967E-05],[242.51015,-3.0935E-05],[242.51352,-2.8357E-05],[242.51688,-2.9904E-05],[242.52024,-2.6811E-05],[242.52361,-2.8873E-05],[242.52697,-3.042E-05],[242.53034,-2.6811E-05],[242.5337,-2.9904E-05],[242.53706,-3.1967E-05],[242.54043,-3.042E-05],[242.54379,-2.7326E-05],[242.54716,-2.7326E-05],[242.55052,-2.8873E-05],[242.55388,-2.9389E-05],[242.55725,-2.8357E-05],[242.56061,-2.5264E-05],[242.56398,-2.8873E-05],[242.56734,-3.042E-05],[242.5707,-2.6811E-05],[242.57407,-2.8357E-05],[242.57743,-2.4233E-05],[242.5808,-2.5264E-05],[242.58416,-3.0935E-05],[242.58752,-3.0935E-05],[242.59089,-3.1451E-05],[242.59425,-3.1451E-05],[242.59762,-3.1967E-05],[242.60098,-2.5264E-05],[242.60434,-2.3202E-05],[242.60771,-2.8873E-05],[242.61107,-2.9904E-05],[242.61444,-2.8357E-05],[242.6178,-2.4748E-05],[242.62116,-2.7326E-05],[242.62453,-3.0935E-05],[242.62789,-3.2482E-05],[242.63126,-2.9389E-05],[242.63462,-2.8357E-05],[242.63798,-3.1967E-05],[242.64135,-3.4029E-05],[242.64471,-3.6607E-05]]}
-{"quant":[242.909,-2.8926E-05],"mems":[[242.81056,-2.6811E-05],[242.81406,-3.042E-05],[242.81757,-3.1451E-05],[242.82108,-3.042E-05],[242.82459,-3.1967E-05],[242.8281,-3.1451E-05],[242.8316,-2.6811E-05],[242.83511,-2.3202E-05],[242.83862,-2.7842E-05],[242.84213,-3.1451E-05],[242.84564,-2.9389E-05],[242.84914,-2.7326E-05],[242.85265,-2.9389E-05],[242.85616,-2.8357E-05],[242.85967,-2.8873E-05],[242.86318,-2.9389E-05],[242.86668,-2.9904E-05],[242.87019,-3.1451E-05],[242.8737,-2.9389E-05],[242.87721,-2.8873E-05],[242.88072,-2.7326E-05],[242.88422,-3.1967E-05],[242.88773,-3.1451E-05],[242.89124,-2.9389E-05],[242.89475,-3.3513E-05],[242.89826,-3.1451E-05],[242.90176,-3.2482E-05],[242.90527,-3.1451E-05],[242.90878,-2.7842E-05],[242.91229,-2.8357E-05],[242.9158,-2.8357E-05],[242.9193,-2.4233E-05],[242.92281,-2.217E-05],[242.92632,-2.9389E-05],[242.92983,-3.4029E-05],[242.93334,-2.9904E-05],[242.93684,-3.042E-05],[242.94035,-2.5779E-05],[242.94386,-2.4233E-05],[242.94737,-3.042E-05],[242.95088,-2.6811E-05],[242.95438,-2.9389E-05],[242.95789,-2.5779E-05],[242.9614,-2.2686E-05],[242.96491,-3.3513E-05],[242.96842,-3.1451E-05],[242.97192,-2.9389E-05],[242.97543,-3.042E-05],[242.97894,-2.6811E-05],[242.98245,-2.9904E-05],[242.98596,-3.042E-05],[242.98946,-3.1967E-05],[242.99297,-3.2998E-05],[242.99648,-2.9904E-05],[242.99999,-2.8357E-05],[243.0035,-3.1967E-05],[243.007,-3.0935E-05],[243.01051,-2.8873E-05],[243.01402,-3.2998E-05],[243.01753,-2.9389E-05],[243.02104,-2.4748E-05],[243.02454,-2.5264E-05],[243.02805,-2.8357E-05],[243.03156,-3.1967E-05],[243.03507,-3.1451E-05],[243.03858,-3.1967E-05],[243.04208,-2.7842E-05],[243.04559,-2.8357E-05],[243.0491,-2.8873E-05],[243.05261,-2.9389E-05],[243.05612,-3.1451E-05],[243.05962,-2.6295E-05],[243.06313,-2.6295E-05],[243.06664,-2.8357E-05],[243.07015,-2.7842E-05],[243.07366,-3.1967E-05],[243.07716,-2.8873E-05],[243.08067,-2.6811E-05],[243.08418,-2.5779E-05],[243.08769,-2.5264E-05],[243.0912,-3.4029E-05],[243.0947,-3.4029E-05],[243.09821,-3.2482E-05],[243.10172,-3.3513E-05],[243.10523,-3.1451E-05],[243.10874,-2.8873E-05],[243.11224,-2.8357E-05]]}
-{"quant":[243.772,-2.962E-05],"mems":[[243.67352,-2.4748E-05],[243.67703,-3.1967E-05],[243.68054,-3.2482E-05],[243.68405,-2.9389E-05],[243.68756,-3.2482E-05],[243.69106,-2.8873E-05],[243.69457,-2.6811E-05],[243.69808,-2.8873E-05],[243.70159,-3.042E-05],[243.7051,-2.9389E-05],[243.7086,-2.6295E-05],[243.71211,-2.5264E-05],[243.71562,-2.3717E-05],[243.71913,-3.1451E-05],[243.72264,-3.5576E-05],[243.72614,-3.2482E-05],[243.72965,-3.1967E-05],[243.73316,-3.1967E-05],[243.73667,-2.9904E-05],[243.74018,-2.6295E-05],[243.74368,-2.7326E-05],[243.74719,-2.7842E-05],[243.7507,-2.9904E-05],[243.75421,-2.9389E-05],[243.75772,-2.7842E-05],[243.76122,-2.9904E-05],[243.76473,-2.5264E-05],[243.76824,-2.7326E-05],[243.77175,-2.8357E-05],[243.77526,-2.3717E-05],[243.77876,-2.5779E-05],[243.78227,-3.042E-05],[243.78578,-3.2998E-05],[243.78929,-3.1451E-05],[243.7928,-2.8873E-05],[243.7963,-3.0935E-05],[243.79981,-2.9904E-05],[243.80332,-2.6811E-05],[243.80683,-3.1967E-05],[243.81034,-3.3513E-05],[243.81384,-2.7842E-05],[243.81735,-2.6295E-05],[243.82086,-2.7326E-05],[243.82437,-3.0935E-05],[243.82788,-3.2998E-05],[243.83138,-3.3513E-05],[243.83489,-2.7842E-05],[243.8384,-2.5264E-05],[243.84191,-3.1451E-05],[243.84542,-3.3513E-05],[243.84892,-3.2998E-05],[243.85243,-2.8873E-05],[243.85594,-2.7326E-05],[243.85945,-2.9904E-05],[243.86296,-2.8357E-05],[243.86646,-2.8357E-05],[243.86997,-3.1967E-05],[243.87348,-2.7842E-05],[243.87699,-2.3202E-05],[243.8805,-2.8357E-05],[243.884,-3.1967E-05],[243.88751,-3.042E-05],[243.89102,-2.9389E-05],[243.89453,-3.0935E-05],[243.89804,-2.9904E-05],[243.90154,-2.9904E-05],[243.90505,-3.042E-05],[243.90856,-2.8873E-05],[243.91207,-2.6811E-05],[243.91558,-2.8357E-05],[243.91908,-2.8873E-05],[243.92259,-2.8357E-05],[243.9261,-3.3513E-05],[243.92961,-3.0935E-05],[243.93312,-2.8873E-05],[243.93662,-3.1967E-05],[243.94013,-3.042E-05],[243.94364,-2.7326E-05],[243.94715,-2.7842E-05],[243.95066,-3.042E-05],[243.95416,-3.042E-05],[243.95767,-3.1451E-05],[243.96118,-2.8357E-05],[243.96469,-2.7326E-05],[243.9682,-2.8873E-05],[243.9717,-2.9904E-05],[243.97521,-2.9904E-05]]}
-{"quant":[244.263,-2.9584E-05],"mems":[[244.16464,-2.8357E-05],[244.16815,-3.1451E-05],[244.17166,-2.7842E-05],[244.17517,-2.7326E-05],[244.17868,-3.1451E-05],[244.18218,-2.5264E-05],[244.18569,-2.8873E-05],[244.1892,-3.042E-05],[244.19271,-2.7326E-05],[244.19622,-2.5779E-05],[244.19972,-2.4748E-05],[244.20323,-3.1451E-05],[244.20674,-2.8357E-05],[244.21025,-2.7842E-05],[244.21376,-3.2482E-05],[244.21726,-3.2482E-05],[244.22077,-3.042E-05],[244.22428,-2.6295E-05],[244.22779,-2.8873E-05],[244.2313,-3.2482E-05],[244.2348,-3.2998E-05],[244.23831,-3.2998E-05],[244.24182,-3.1967E-05],[244.24533,-2.5264E-05],[244.24884,-2.5264E-05],[244.25234,-3.0935E-05],[244.25585,-3.3513E-05],[244.25936,-2.9904E-05],[244.26287,-2.3717E-05],[244.26638,-2.8873E-05],[244.26988,-3.1451E-05],[244.27339,-3.1451E-05],[244.2769,-2.9389E-05],[244.28041,-2.9904E-05],[244.28392,-2.8873E-05],[244.28742,-2.5264E-05],[244.29093,-3.4544E-05],[244.29444,-3.4029E-05],[244.29795,-2.7326E-05],[244.30146,-3.2482E-05],[244.30496,-3.0935E-05],[244.30847,-2.9389E-05],[244.31198,-3.2482E-05],[244.31549,-3.1451E-05],[244.319,-3.0935E-05],[244.3225,-2.6295E-05],[244.32601,-2.8357E-05],[244.32952,-3.506E-05],[244.33303,-3.3513E-05],[244.33654,-2.7326E-05],[244.34004,-2.5779E-05],[244.34355,-2.9389E-05],[244.34706,-2.5779E-05],[244.35057,-2.7842E-05],[244.35408,-3.042E-05],[244.35758,-2.7326E-05],[244.36109,-2.7326E-05],[244.3646,-2.4748E-05],[244.36811,-2.8873E-05],[244.37162,-3.3513E-05],[244.37512,-2.8873E-05],[244.37863,-3.042E-05],[244.38214,-3.7122E-05],[244.38565,-3.0935E-05],[244.38916,-2.217E-05],[244.39266,-2.8873E-05],[244.39617,-2.9389E-05],[244.39968,-2.7842E-05],[244.40319,-3.1451E-05],[244.4067,-2.7326E-05],[244.4102,-2.9904E-05],[244.41371,-3.0935E-05],[244.41722,-2.8873E-05],[244.42073,-3.0935E-05],[244.42424,-2.9904E-05],[244.42774,-2.9389E-05],[244.43125,-2.6295E-05],[244.43476,-2.9389E-05],[244.43827,-3.042E-05],[244.44178,-2.8873E-05],[244.44528,-3.2998E-05],[244.44879,-2.8873E-05],[244.4523,-2.7842E-05],[244.45581,-2.8357E-05],[244.45932,-2.5264E-05],[244.46282,-2.5779E-05],[244.46633,-2.7326E-05]]}
-{"quant":[244.762,-3.0811E-05],"mems":[[244.66278,-2.7326E-05],[244.66629,-3.2482E-05],[244.6698,-3.042E-05],[244.6733,-2.8873E-05],[244.67681,-3.1451E-05],[244.68032,-3.4544E-05],[244.68383,-3.4029E-05],[244.68734,-3.042E-05],[244.69084,-2.7326E-05],[244.69435,-2.3202E-05],[244.69786,-2.6811E-05],[244.70137,-3.1967E-05],[244.70488,-2.9389E-05],[244.70838,-2.8357E-05],[244.71189,-2.8357E-05],[244.7154,-3.042E-05],[244.71891,-3.042E-05],[244.72242,-2.8357E-05],[244.72592,-3.2998E-05],[244.72943,-3.4544E-05],[244.73294,-3.4029E-05],[244.73645,-3.1967E-05],[244.73996,-2.8357E-05],[244.74346,-2.9904E-05],[244.74697,-2.7326E-05],[244.75048,-2.7842E-05],[244.75399,-2.8873E-05],[244.7575,-2.4748E-05],[244.761,-3.1451E-05],[244.76451,-3.3513E-05],[244.76802,-3.042E-05],[244.77153,-3.1967E-05],[244.77504,-3.042E-05],[244.77854,-2.9904E-05],[244.78205,-3.1451E-05],[244.78556,-3.2482E-05],[244.78907,-3.042E-05],[244.79258,-2.9389E-05],[244.79608,-2.7842E-05],[244.79959,-2.8357E-05],[244.8031,-3.5576E-05],[244.80661,-3.6607E-05],[244.81012,-3.6091E-05],[244.81362,-3.4544E-05],[244.81713,-2.9389E-05],[244.82064,-2.9389E-05],[244.82415,-2.8357E-05],[244.82766,-2.8357E-05],[244.83116,-3.1967E-05],[244.83467,-2.7842E-05],[244.83818,-3.1451E-05],[244.84169,-3.1451E-05],[244.8452,-2.5779E-05],[244.8487,-2.9389E-05],[244.85221,-3.0935E-05],[244.85572,-2.9389E-05],[244.85923,-3.042E-05],[244.86274,-3.042E-05],[244.86624,-3.1967E-05],[244.86975,-3.4544E-05],[244.87326,-3.0935E-05],[244.87677,-3.1967E-05],[244.88028,-3.4544E-05],[244.88378,-3.1451E-05],[244.88729,-3.1451E-05],[244.8908,-2.8357E-05],[244.89431,-2.4748E-05],[244.89782,-2.6811E-05],[244.90132,-2.7326E-05],[244.90483,-2.8873E-05],[244.90834,-3.042E-05],[244.91185,-3.1451E-05],[244.91536,-3.042E-05],[244.91886,-2.5264E-05],[244.92237,-2.4748E-05],[244.92588,-2.5264E-05],[244.92939,-2.9904E-05],[244.9329,-3.3513E-05],[244.9364,-2.8873E-05],[244.93991,-2.7842E-05],[244.94342,-2.5779E-05],[244.94693,-2.7326E-05],[244.95044,-2.9904E-05],[244.95394,-2.9904E-05],[244.95745,-3.042E-05],[244.96096,-2.7842E-05],[244.96447,-3.1451E-05]]}
-{"quant":[245.235,1.1818],"mems":[[245.13636,-3.2482E-05],[245.13987,-2.9389E-05],[245.14338,-2.6295E-05],[245.14688,-2.9904E-05],[245.15039,-3.1451E-05],[245.1539,-3.042E-05],[245.15741,-2.4748E-05],[245.16092,-2.6295E-05],[245.16442,-2.8357E-05],[245.16793,-2.8873E-05],[245.17144,-2.7842E-05],[245.17495,-2.6295E-05],[245.17846,-3.3513E-05],[245.18196,-2.9389E-05],[245.18547,-2.6811E-05],[245.18898,-3.1451E-05],[245.19249,-3.0935E-05],[245.196,-3.506E-05],[245.1995,-3.1451E-05],[245.20301,-2.6811E-05],[245.20652,-3.042E-05],[245.21003,-2.8873E-05],[245.21354,-3.2482E-05],[245.21704,-3.1967E-05],[245.22055,-2.3717E-05],[245.22406,-2.8873E-05],[245.22757,-2.9904E-05],[245.23108,-2.7326E-05],[245.23458,-3.1451E-05],[245.23809,-3.3513E-05],[245.2416,-3.042E-05],[245.24511,-2.8873E-05],[245.24862,-3.2482E-05],[245.25212,-3.2482E-05],[245.25563,-3.1967E-05],[245.25914,-2.7326E-05],[245.26265,-2.7326E-05],[245.26616,-2.8873E-05],[245.26966,-3.042E-05],[245.27317,-3.4029E-05],[245.27668,-2.9904E-05],[245.28019,-2.9389E-05],[245.2837,-3.042E-05],[245.2872,-3.042E-05],[245.29071,-3.2482E-05],[245.29422,-3.1451E-05],[245.29773,-2.7326E-05],[245.30124,-2.8357E-05],[245.30474,-2.6295E-05],[245.30825,-2.4748E-05],[245.31176,-3.4029E-05],[245.31527,-3.2482E-05],[245.31878,-3.042E-05],[245.32228,-3.3513E-05],[245.32579,-3.1451E-05],[245.3293,-2.6811E-05],[245.33281,-2.7326E-05],[245.33632,-3.4029E-05],[245.33982,-3.0935E-05],[245.34333,-2.6295E-05],[245.34684,-2.6295E-05],[245.35035,-2.8873E-05],[245.35386,-3.0935E-05],[245.35736,-3.2998E-05],[245.36087,-3.1967E-05],[245.36438,-2.4233E-05],[245.36789,-2.6811E-05],[245.3714,-2.9389E-05],[245.3749,-2.8357E-05],[245.37841,-3.042E-05],[245.38192,-2.9389E-05],[245.38543,-3.042E-05],[245.38894,-2.6295E-05],[245.39244,-2.5779E-05],[245.39595,-2.9389E-05],[245.39946,-2.7326E-05],[245.40297,-2.8873E-05],[245.40648,-2.6811E-05],[245.40998,-2.8873E-05],[245.41349,-2.9389E-05],[245.417,-2.7326E-05],[245.42079,-3.4544E-05],[245.42458,-3.1967E-05],[245.42838,-3.0935E-05],[245.43217,-2.9904E-05],[245.43596,-2.8357E-05]]}
-{"quant":[245.722,-3.0229E-05],"mems":[[245.62556,-2.9904E-05],[245.62935,-2.6811E-05],[245.63314,-2.8357E-05],[245.63694,-2.6295E-05],[245.64073,-2.9904E-05],[245.64452,-3.1451E-05],[245.64831,-3.5576E-05],[245.6521,-3.3513E-05],[245.6559,-2.6295E-05],[245.65969,-2.6811E-05],[245.66348,-2.5264E-05],[245.66727,-3.1451E-05],[245.67106,-3.0935E-05],[245.67486,-2.8873E-05],[245.67865,-2.9389E-05],[245.68244,-2.9904E-05],[245.68623,-3.1967E-05],[245.69002,-2.8357E-05],[245.69382,-2.9904E-05],[245.69761,-2.7326E-05],[245.7014,-2.7842E-05],[245.70519,-3.042E-05],[245.70898,-2.6295E-05],[245.71278,-2.8873E-05],[245.71657,-2.6295E-05],[245.72036,-2.1655E-05],[245.72415,-2.3717E-05],[245.72794,-2.7326E-05],[245.73174,-2.9904E-05],[245.73553,-2.9389E-05],[245.73932,-2.7842E-05],[245.74311,-2.7326E-05],[245.7469,-2.9389E-05],[245.7507,-2.9904E-05],[245.75449,-2.9904E-05],[245.75828,-3.042E-05],[245.76207,-3.1451E-05],[245.76586,-2.9389E-05],[245.76966,-2.8873E-05],[245.77345,-3.0935E-05],[245.77724,-2.7326E-05],[245.78103,-2.9389E-05],[245.78482,-3.2998E-05],[245.78862,-3.1967E-05],[245.79241,-3.3513E-05],[245.7962,-3.2482E-05],[245.79999,-2.8873E-05],[245.80378,-3.1967E-05],[245.80758,-3.4544E-05],[245.81137,-3.5576E-05],[245.81516,-3.2482E-05],[245.81895,-2.8357E-05],[245.82274,-3.0935E-05],[245.82654,-3.0935E-05],[245.83033,-3.1967E-05],[245.83412,-3.042E-05],[245.83791,-3.2482E-05],[245.8417,-3.4544E-05],[245.8455,-2.8357E-05],[245.84929,-2.7326E-05],[245.85308,-2.8357E-05],[245.85687,-2.6811E-05],[245.86066,-2.9904E-05],[245.86446,-3.2482E-05],[245.86825,-2.9389E-05],[245.87204,-2.9389E-05],[245.87583,-2.9389E-05],[245.87962,-3.2482E-05],[245.88342,-3.0935E-05],[245.88721,-2.6295E-05],[245.891,-3.0935E-05],[245.89479,-3.2998E-05],[245.89858,-3.1451E-05],[245.90238,-2.8873E-05],[245.90617,-3.0935E-05],[245.90996,-3.2482E-05],[245.91375,-3.1967E-05],[245.91754,-3.4544E-05],[245.92134,-3.2482E-05],[245.92513,-3.2482E-05]]}
-{"quant":[246.192,-2.9179E-05],"mems":[[246.09577,-3.042E-05],[246.09956,-2.7842E-05],[246.10335,-3.0935E-05],[246.10714,-2.7842E-05],[246.11094,-2.8873E-05],[246.11473,-3.2482E-05],[246.11852,-3.042E-05],[246.12231,-3.1967E-05],[246.1261,-3.1967E-05],[246.1299,-3.1451E-05],[246.13369,-3.1451E-05],[246.13748,-2.7326E-05],[246.14127,-2.9389E-05],[246.14506,-3.2482E-05],[246.14886,-3.2482E-05],[246.15265,-3.3513E-05],[246.15644,-2.8357E-05],[246.16023,-2.8873E-05],[246.16402,-3.1451E-05],[246.16782,-3.1967E-05],[246.17161,-3.7122E-05],[246.1754,-3.1967E-05],[246.17919,-2.9389E-05],[246.18298,-3.0935E-05],[246.18678,-2.7326E-05],[246.19057,-3.1451E-05],[246.19436,-3.3513E-05],[246.19815,-2.8357E-05],[246.20194,-2.4748E-05],[246.20574,-2.8357E-05],[246.20953,-3.2998E-05],[246.21332,-3.2998E-05],[246.21711,-3.2482E-05],[246.2209,-2.6295E-05],[246.2247,-2.217E-05],[246.22849,-3.042E-05],[246.23228,-3.3513E-05],[246.23607,-2.9389E-05],[246.23986,-2.9389E-05],[246.24366,-2.7326E-05],[246.24745,-2.4748E-05],[246.25124,-2.7842E-05],[246.25503,-3.1451E-05],[246.25882,-2.9904E-05],[246.26262,-2.7842E-05],[246.26641,-2.9389E-05],[246.2702,-3.0935E-05],[246.27399,-2.8873E-05],[246.27778,-2.6811E-05],[246.28158,-2.7326E-05],[246.28537,-3.042E-05],[246.28916,-2.9904E-05],[246.29295,-3.042E-05],[246.29674,-3.1967E-05],[246.30054,-2.7326E-05],[246.30433,-2.9389E-05],[246.30812,-3.1451E-05],[246.31191,-2.9389E-05],[246.3157,-2.8873E-05],[246.3195,-3.0935E-05],[246.32329,-3.2482E-05],[246.32708,-3.042E-05],[246.33087,-3.2482E-05],[246.33466,-3.2482E-05],[246.33846,-3.2998E-05],[246.34225,-3.4544E-05],[246.34604,-3.1451E-05],[246.34983,-3.042E-05],[246.35362,-3.1967E-05],[246.35742,-2.5779E-05],[246.36121,-2.8873E-05],[246.365,-3.2998E-05],[246.36879,-3.0935E-05],[246.37258,-3.1451E-05],[246.37638,-2.8357E-05],[246.38017,-2.6811E-05],[246.38396,-2.9904E-05],[246.38775,-3.2998E-05],[246.39154,-2.8873E-05],[246.39534,-2.9389E-05]]}
-{"quant":[246.893,-2.9331E-05],"mems":[[246.7935,-3.0935E-05],[246.79729,-3.5576E-05],[246.80108,-3.042E-05],[246.80487,-2.6295E-05],[246.80866,-2.8873E-05],[246.81246,-3.2482E-05],[246.81625,-2.9389E-05],[246.82004,-2.8873E-05],[246.82383,-3.0935E-05],[246.82762,-2.8357E-05],[246.83142,-3.1967E-05],[246.83521,-3.6607E-05],[246.839,-3.0935E-05],[246.84279,-2.5264E-05],[246.84658,-3.042E-05],[246.85038,-3.4029E-05],[246.85417,-2.8873E-05],[246.85796,-3.1451E-05],[246.86175,-2.8873E-05],[246.86554,-2.8357E-05],[246.86934,-3.3513E-05],[246.87313,-3.0935E-05],[246.87692,-3.1451E-05],[246.88071,-2.9904E-05],[246.8845,-2.9389E-05],[246.8883,-2.9904E-05],[246.89209,-3.2998E-05],[246.89588,-3.3513E-05],[246.89967,-2.9904E-05],[246.90346,-2.9389E-05],[246.90726,-2.2686E-05],[246.91105,-2.3717E-05],[246.91484,-3.042E-05],[246.91863,-2.9389E-05],[246.92242,-2.8873E-05],[246.92622,-2.8873E-05],[246.93001,-2.6811E-05],[246.9338,-2.9904E-05],[246.93759,-2.9904E-05],[246.94138,-2.8357E-05],[246.94518,-3.4544E-05],[246.94897,-2.7842E-05],[246.95276,-2.5264E-05],[246.95655,-2.8873E-05],[246.96034,-2.9389E-05],[246.96414,-3.042E-05],[246.96793,-2.7842E-05],[246.97172,-3.5576E-05],[246.97551,-3.3513E-05],[246.9793,-2.8357E-05],[246.9831,-3.4029E-05],[246.98689,-2.9904E-05],[246.99068,-2.7326E-05],[246.99447,-2.7326E-05],[246.99826,-2.7842E-05],[247.00206,-2.9904E-05],[247.00585,-2.9389E-05],[247.00964,-3.4544E-05],[247.01343,-3.506E-05],[247.01722,-2.7326E-05],[247.02102,-2.8873E-05],[247.02481,-2.8873E-05],[247.0286,-3.042E-05],[247.03239,-3.4029E-05],[247.03618,-2.6811E-05],[247.03998,-2.3202E-05],[247.04377,-2.6295E-05],[247.04756,-3.0935E-05],[247.05135,-3.042E-05],[247.05514,-2.7842E-05],[247.05894,-2.9904E-05],[247.06273,-2.9904E-05],[247.06652,-2.9389E-05],[247.07031,-3.0935E-05],[247.0741,-2.9904E-05],[247.0779,-2.9904E-05],[247.08169,-3.1967E-05],[247.08548,-2.9904E-05],[247.08927,-3.042E-05],[247.09306,-2.9904E-05]]}
-{"quant":[247.37,-2.8797E-05],"mems":[[247.27129,-3.6091E-05],[247.27508,-3.0935E-05],[247.27887,-2.5264E-05],[247.28266,-2.8357E-05],[247.28646,-2.7326E-05],[247.29025,-3.042E-05],[247.29404,-3.2482E-05],[247.29783,-3.0935E-05],[247.30162,-2.7842E-05],[247.30542,-2.8873E-05],[247.30921,-2.6811E-05],[247.313,-2.0108E-05],[247.31679,-2.7326E-05],[247.32058,-2.9904E-05],[247.32438,-2.6811E-05],[247.32817,-2.6811E-05],[247.33196,-3.042E-05],[247.33575,-3.3513E-05],[247.33954,-2.8873E-05],[247.34334,-2.9904E-05],[247.34713,-2.8873E-05],[247.35092,-2.6295E-05],[247.35471,-3.042E-05],[247.3585,-2.7842E-05],[247.3623,-2.7326E-05],[247.36609,-2.9904E-05],[247.36988,-2.8357E-05],[247.37367,-2.7842E-05],[247.37746,-2.7842E-05],[247.38126,-2.8873E-05],[247.38505,-2.9904E-05],[247.38884,-2.6811E-05],[247.39263,-2.6295E-05],[247.39642,-2.9389E-05],[247.40022,-3.1967E-05],[247.40401,-2.8357E-05],[247.4078,-3.2482E-05],[247.41159,-3.1451E-05],[247.41538,-2.217E-05],[247.41918,-2.8357E-05],[247.42297,-2.9389E-05],[247.42676,-2.8873E-05],[247.43055,-2.7326E-05],[247.43434,-2.3202E-05],[247.43814,-2.8357E-05],[247.44193,-2.6811E-05],[247.44572,-2.8357E-05],[247.44951,-3.4544E-05],[247.4533,-3.2482E-05],[247.4571,-3.0935E-05],[247.46089,-2.7326E-05],[247.46468,-2.8357E-05],[247.46847,-3.0935E-05],[247.47226,-2.8873E-05],[247.47606,-2.9904E-05],[247.47985,-2.9389E-05],[247.48364,-2.9904E-05],[247.48743,-2.9389E-05],[247.49122,-2.5264E-05],[247.49502,-2.6811E-05],[247.49881,-3.1967E-05],[247.5026,-3.1967E-05],[247.50639,-2.9904E-05],[247.51018,-3.042E-05],[247.51398,-3.2482E-05],[247.51777,-3.2482E-05],[247.52156,-3.1451E-05],[247.52535,-3.1451E-05],[247.52914,-3.2482E-05],[247.53294,-3.4544E-05],[247.53673,-3.0935E-05],[247.54052,-2.6811E-05],[247.54431,-2.8357E-05],[247.5481,-2.7326E-05],[247.5519,-2.9389E-05],[247.55569,-3.2998E-05],[247.55948,-2.8873E-05],[247.56327,-2.7842E-05],[247.56706,-2.7842E-05],[247.57086,-2.7842E-05]]}
-{"quant":[247.901,-2.851E-05],"mems":[[247.80217,-3.6607E-05],[247.80596,-2.7842E-05],[247.80975,-2.9904E-05],[247.81354,-2.8873E-05],[247.81734,-2.7842E-05],[247.82113,-3.1967E-05],[247.82492,-2.4233E-05],[247.82871,-2.4748E-05],[247.8325,-3.1967E-05],[247.8363,-2.9389E-05],[247.84009,-2.6295E-05],[247.84388,-2.5779E-05],[247.84767,-2.7326E-05],[247.85146,-2.7326E-05],[247.85526,-2.7842E-05],[247.85905,-3.0935E-05],[247.86284,-2.8357E-05],[247.86663,-2.7842E-05],[247.87042,-3.0935E-05],[247.87422,-3.1967E-05],[247.87801,-3.2482E-05],[247.8818,-3.2998E-05],[247.88559,-3.0935E-05],[247.88938,-2.7842E-05],[247.89318,-3.1451E-05],[247.89697,-3.2998E-05],[247.90076,-2.9389E-05],[247.90455,-2.9389E-05],[247.90834,-2.9389E-05],[247.91214,-2.9389E-05],[247.91593,-2.6295E-05],[247.91972,-2.4233E-05],[247.92351,-2.9389E-05],[247.9273,-2.5264E-05],[247.9311,-2.8357E-05],[247.93489,-3.4029E-05],[247.93868,-2.6295E-05],[247.94247,-2.6295E-05],[247.94626,-2.7842E-05],[247.95006,-3.0935E-05],[247.95385,-3.1967E-05],[247.95764,-2.8357E-05],[247.96143,-2.7326E-05],[247.96522,-2.7326E-05],[247.96902,-2.6295E-05],[247.97281,-2.9904E-05],[247.9766,-2.9389E-05],[247.98039,-2.9904E-05],[247.98418,-3.2482E-05],[247.98798,-2.217E-05],[247.99177,-2.2686E-05],[247.99556,-3.1967E-05],[247.99935,-3.2998E-05],[248.00314,-2.9904E-05],[248.00694,-2.7326E-05],[248.01073,-2.8357E-05],[248.01452,-2.7842E-05],[248.01831,-3.2482E-05],[248.0221,-3.506E-05],[248.0259,-3.0935E-05],[248.02969,-2.6295E-05],[248.03348,-2.1655E-05],[248.03727,-2.4748E-05],[248.04106,-3.1451E-05],[248.04486,-3.2482E-05],[248.04865,-2.9904E-05],[248.05244,-2.6811E-05],[248.05623,-2.8357E-05],[248.06002,-2.9904E-05],[248.06382,-2.8873E-05],[248.06761,-3.1967E-05],[248.0714,-3.1967E-05],[248.07519,-2.7842E-05],[248.07898,-2.5264E-05],[248.08278,-2.7842E-05],[248.08657,-3.0935E-05],[248.09036,-2.9389E-05],[248.09415,-3.0935E-05],[248.09794,-2.9904E-05],[248.10174,-2.9389E-05]]}
-{"quant":[248.357,0.54763],"mems":[[248.5322,-2.5264E-05],[248.53521,-2.8873E-05],[248.53823,-3.1451E-05],[248.54124,-3.3513E-05],[248.54425,-2.9389E-05],[248.54727,-2.6811E-05],[248.55028,-3.0935E-05],[248.55329,-2.3717E-05],[248.55631,-2.4748E-05],[248.55932,-2.7326E-05],[248.56233,-2.5264E-05],[248.56535,-2.8357E-05],[248.56836,-2.7842E-05],[248.57137,-2.8873E-05],[248.57439,-2.8357E-05],[248.5774,-2.7842E-05],[248.58041,-2.9389E-05],[248.58343,-2.9904E-05],[248.58644,-2.7842E-05],[248.58945,-2.6811E-05],[248.59247,-3.042E-05],[248.59548,-2.8357E-05],[248.59849,-2.6295E-05],[248.60151,-3.042E-05],[248.60452,-3.2482E-05],[248.60753,-2.9389E-05],[248.61055,-2.7326E-05],[248.61356,-3.0935E-05],[248.61657,-3.1967E-05],[248.61959,-2.7326E-05],[248.6226,-2.7326E-05],[248.62561,-3.1451E-05],[248.62863,-3.0935E-05],[248.63164,-2.8873E-05],[248.63465,-2.9904E-05],[248.63767,-2.8873E-05],[248.64068,-2.5264E-05],[248.64369,-2.8873E-05],[248.64671,-3.1967E-05],[248.64972,-3.1967E-05],[248.65273,-3.4544E-05],[248.65575,-2.8873E-05],[248.65876,-2.5779E-05],[248.66177,-2.9389E-05],[248.66479,-2.7326E-05],[248.6678,-2.8873E-05],[248.67081,-3.3513E-05],[248.67383,-3.4029E-05],[248.67684,-3.2482E-05],[248.67985,-3.2482E-05],[248.68287,-3.2998E-05],[248.68588,-3.3513E-05],[248.68889,-2.8357E-05],[248.69191,-2.6811E-05],[248.69492,-3.1451E-05],[248.69793,-3.042E-05],[248.70095,-3.2998E-05],[248.70396,-3.1451E-05],[248.70697,-3.0935E-05],[248.70999,-3.3513E-05],[248.713,-2.9389E-05],[248.71601,-2.9389E-05],[248.71903,-2.8873E-05],[248.72204,-2.6811E-05],[248.72505,-2.5264E-05],[248.72807,-3.042E-05],[248.73108,-3.0935E-05],[248.73409,-2.7326E-05],[248.73711,-3.2482E-05],[248.74012,-3.3513E-05],[248.74313,-2.8357E-05],[248.74615,-2.5264E-05],[248.74916,-3.0935E-05],[248.75217,-3.3513E-05],[248.75519,-2.7842E-05],[248.7582,-3.042E-05],[248.76121,-3.1967E-05],[248.76423,-2.7326E-05],[248.76724,-2.6295E-05],[248.77025,-2.5264E-05],[248.77327,-2.5264E-05],[248.77628,-3.042E-05],[248.77929,-2.9904E-05],[248.78231,-2.7842E-05],[248.78532,-3.1967E-05],[248.78833,-2.9904E-05],[248.79135,-3.042E-05],[248.79436,-3.0935E-05],[248.79737,-2.9389E-05]]}
-{"quant":[248.832,-3.0435E-05],"mems":[[248.73409,-2.7326E-05],[248.73711,-3.2482E-05],[248.74012,-3.3513E-05],[248.74313,-2.8357E-05],[248.74615,-2.5264E-05],[248.74916,-3.0935E-05],[248.75217,-3.3513E-05],[248.75519,-2.7842E-05],[248.7582,-3.042E-05],[248.76121,-3.1967E-05],[248.76423,-2.7326E-05],[248.76724,-2.6295E-05],[248.77025,-2.5264E-05],[248.77327,-2.5264E-05],[248.77628,-3.042E-05],[248.77929,-2.9904E-05],[248.78231,-2.7842E-05],[248.78532,-3.1967E-05],[248.78833,-2.9904E-05],[248.79135,-3.042E-05],[248.79436,-3.0935E-05],[248.79737,-2.9389E-05],[248.80039,-3.1451E-05],[248.8034,-2.8357E-05],[248.80641,-3.1451E-05],[248.80943,-3.1451E-05],[248.81244,-2.9904E-05],[248.81545,-3.2998E-05],[248.81847,-3.1967E-05],[248.82148,-3.5576E-05],[248.82449,-3.2998E-05],[248.82751,-2.8357E-05],[248.83052,-3.042E-05],[248.83353,-3.0935E-05],[248.83655,-3.3513E-05],[248.83956,-3.1967E-05],[248.84257,-2.9389E-05],[248.84559,-3.1451E-05],[248.8486,-3.0935E-05],[248.85161,-2.8357E-05],[248.85463,-3.2998E-05],[248.85764,-3.1451E-05],[248.86065,-2.6811E-05],[248.86367,-2.8873E-05],[248.86668,-2.9389E-05],[248.86969,-2.9389E-05],[248.87271,-2.7326E-05],[248.87572,-2.8873E-05],[248.87873,-3.2998E-05],[248.88175,-3.3513E-05],[248.88476,-3.0935E-05],[248.88777,-2.9904E-05],[248.89079,-3.1451E-05],[248.8938,-3.2998E-05],[248.89681,-3.1451E-05],[248.89983,-2.5779E-05],[248.90284,-2.8357E-05],[248.90585,-2.7326E-05],[248.90887,-2.7326E-05],[248.91188,-3.3513E-05],[248.91489,-3.1451E-05],[248.91791,-2.7842E-05],[248.92092,-2.8357E-05],[248.92393,-3.1451E-05],[248.92695,-3.2998E-05],[248.92996,-3.2998E-05],[248.93297,-3.2482E-05],[248.93599,-2.8873E-05],[248.939,-2.8357E-05],[248.94201,-2.9904E-05],[248.94503,-2.8873E-05],[248.94804,-2.7842E-05],[248.95105,-2.7842E-05],[248.95407,-3.042E-05],[248.95708,-3.4029E-05],[248.96009,-3.1451E-05],[248.96311,-2.7326E-05],[248.96612,-2.8357E-05],[248.96913,-3.0935E-05],[248.97215,-3.1967E-05],[248.97516,-3.1967E-05],[248.97817,-3.042E-05],[248.98119,-2.7842E-05],[248.9842,-3.042E-05],[248.98721,-3.4029E-05],[248.99023,-3.1451E-05],[248.99324,-3.2482E-05],[248.99625,-3.0935E-05],[248.99927,-2.7842E-05],[249.00228,-2.7326E-05],[249.00529,-2.6295E-05],[249.00831,-2.7842E-05],[249.01132,-2.7326E-05],[249.01433,-2.6811E-05],[249.01735,-2.6811E-05],[249.02036,-2.8873E-05],[249.02337,-2.8357E-05],[249.02639,-3.1451E-05],[249.0294,-3.6091E-05],[249.03241,-3.2482E-05]]}
-{"quant":[249.657,-2.9267E-05],"mems":[[249.55975,-2.7842E-05],[249.56276,-2.6295E-05],[249.56577,-2.5779E-05],[249.56879,-2.8357E-05],[249.5718,-2.4748E-05],[249.57481,-3.042E-05],[249.57783,-3.5576E-05],[249.58084,-3.2482E-05],[249.58385,-3.042E-05],[249.58687,-2.6295E-05],[249.58988,-2.6295E-05],[249.59289,-2.9389E-05],[249.59591,-2.9904E-05],[249.59892,-2.7842E-05],[249.60193,-2.8357E-05],[249.60495,-2.7842E-05],[249.60796,-2.9904E-05],[249.61097,-3.2998E-05],[249.61399,-3.4544E-05],[249.617,-3.3513E-05],[249.62001,-2.5264E-05],[249.62303,-2.7842E-05],[249.62604,-2.9904E-05],[249.62905,-2.6295E-05],[249.63207,-2.6295E-05],[249.63508,-2.5264E-05],[249.63809,-2.9389E-05],[249.64111,-2.6811E-05],[249.64412,-2.7326E-05],[249.64713,-3.3513E-05],[249.65015,-3.1967E-05],[249.65316,-2.9904E-05],[249.65617,-2.6811E-05],[249.65919,-2.7326E-05],[249.6622,-2.7326E-05],[249.66521,-2.8357E-05],[249.66823,-3.0935E-05],[249.67124,-2.5264E-05],[249.67425,-2.217E-05],[249.67727,-2.4748E-05],[249.68028,-2.8873E-05],[249.68329,-3.2998E-05],[249.68631,-2.9389E-05],[249.68932,-2.9904E-05],[249.69233,-3.1451E-05],[249.69535,-2.7326E-05],[249.69836,-3.042E-05],[249.70137,-2.6295E-05],[249.70439,-2.4748E-05],[249.7074,-3.042E-05],[249.71041,-2.8357E-05],[249.71343,-2.9389E-05],[249.71644,-3.2482E-05],[249.71945,-3.1451E-05],[249.72247,-3.3513E-05],[249.72548,-3.506E-05],[249.72849,-2.9904E-05],[249.73151,-2.5779E-05],[249.73452,-2.7326E-05],[249.73753,-3.2998E-05],[249.74055,-3.4544E-05],[249.74356,-2.7326E-05],[249.74657,-2.8873E-05],[249.74959,-3.506E-05],[249.7526,-3.2482E-05],[249.75561,-2.6295E-05],[249.75863,-2.6295E-05],[249.76164,-2.7326E-05],[249.76465,-2.7842E-05],[249.76767,-2.9389E-05],[249.77068,-2.8873E-05],[249.77369,-3.3513E-05],[249.77671,-3.1967E-05],[249.77972,-2.6295E-05],[249.78273,-2.9904E-05],[249.78575,-3.2482E-05],[249.78876,-3.506E-05],[249.79177,-3.4544E-05],[249.79479,-3.042E-05],[249.7978,-3.2482E-05],[249.80081,-3.5576E-05],[249.80383,-2.8873E-05],[249.80684,-3.042E-05],[249.80985,-3.4544E-05],[249.81287,-2.8873E-05],[249.81588,-3.042E-05],[249.81889,-3.0935E-05],[249.82191,-2.9389E-05],[249.82492,-2.8357E-05],[249.82793,-2.5264E-05],[249.83095,-2.8357E-05],[249.83396,-3.042E-05],[249.83697,-3.0935E-05],[249.83999,-3.3513E-05],[249.843,-2.8873E-05],[249.84601,-2.3202E-05],[249.84903,-3.042E-05],[249.85204,-3.3513E-05],[249.85505,-3.042E-05],[249.85807,-3.4544E-05]]}
-{"quant":[250.137,-2.9237E-05],"mems":[[250.03887,-2.7842E-05],[250.04188,-2.3202E-05],[250.04489,-2.3202E-05],[250.04791,-3.3513E-05],[250.05092,-3.0935E-05],[250.05393,-2.6811E-05],[250.05695,-2.9904E-05],[250.05996,-2.9904E-05],[250.06297,-3.042E-05],[250.06599,-3.4544E-05],[250.069,-3.2998E-05],[250.07201,-2.4748E-05],[250.07503,-2.5779E-05],[250.07804,-2.9389E-05],[250.08105,-2.8873E-05],[250.08407,-2.9904E-05],[250.08708,-3.0935E-05],[250.09009,-3.2998E-05],[250.09311,-3.3513E-05],[250.09612,-2.7842E-05],[250.09913,-2.5779E-05],[250.10215,-3.2998E-05],[250.10516,-3.0935E-05],[250.10817,-2.8873E-05],[250.11119,-3.2998E-05],[250.1142,-3.1451E-05],[250.11721,-3.2482E-05],[250.12023,-3.2998E-05],[250.12324,-3.2482E-05],[250.12625,-3.1451E-05],[250.12927,-2.8873E-05],[250.13228,-3.1967E-05],[250.13529,-2.9904E-05],[250.13831,-2.7842E-05],[250.14132,-3.042E-05],[250.14433,-2.9904E-05],[250.14735,-2.9389E-05],[250.15036,-2.5779E-05],[250.15337,-2.8873E-05],[250.15639,-3.0935E-05],[250.1594,-2.9389E-05],[250.16241,-3.1967E-05],[250.16543,-2.7326E-05],[250.16844,-2.4748E-05],[250.17145,-2.6295E-05],[250.17447,-2.9389E-05],[250.17748,-3.2482E-05],[250.18049,-2.7842E-05],[250.18351,-2.9389E-05],[250.18652,-2.9904E-05],[250.18953,-2.8873E-05],[250.19255,-2.9389E-05],[250.19556,-2.7842E-05],[250.19857,-2.8357E-05],[250.20159,-2.6295E-05],[250.2046,-3.1451E-05],[250.20761,-3.5576E-05],[250.21063,-2.7326E-05],[250.21364,-2.5779E-05],[250.21665,-2.9389E-05],[250.21967,-2.9389E-05],[250.22268,-3.2482E-05],[250.22569,-3.2482E-05],[250.22871,-2.8357E-05],[250.23172,-2.9904E-05],[250.23473,-3.3513E-05],[250.23775,-2.5779E-05],[250.24076,-2.9904E-05],[250.24377,-4.0732E-05],[250.24679,-3.1451E-05],[250.2498,-2.8357E-05],[250.25281,-3.4029E-05],[250.25583,-3.042E-05],[250.25884,-2.8873E-05],[250.26185,-3.3513E-05],[250.26487,-3.0935E-05],[250.26788,-2.5779E-05],[250.27089,-2.5779E-05],[250.27391,-2.7842E-05],[250.27692,-2.8873E-05],[250.27993,-2.8357E-05],[250.28295,-2.8873E-05],[250.28596,-3.042E-05],[250.28897,-3.1451E-05],[250.29199,-2.9389E-05],[250.295,-2.9904E-05],[250.29801,-3.4544E-05],[250.30103,-3.1967E-05],[250.30404,-2.2686E-05],[250.30705,-2.5264E-05],[250.31007,-2.9389E-05],[250.31308,-3.042E-05],[250.31609,-3.3513E-05],[250.31911,-3.0935E-05],[250.32212,-2.9389E-05],[250.32513,-3.042E-05],[250.32815,-3.3513E-05],[250.33116,-3.1451E-05],[250.33417,-2.8873E-05],[250.33719,-2.8873E-05]]}
-{"quant":[250.663,-3.0076E-05],"mems":[[250.5657,-3.2482E-05],[250.56914,-3.1451E-05],[250.57258,-3.042E-05],[250.57602,-3.3513E-05],[250.57946,-3.3513E-05],[250.5829,-3.3513E-05],[250.58633,-3.1451E-05],[250.58977,-3.2482E-05],[250.59321,-3.4544E-05],[250.59665,-2.9904E-05],[250.60009,-3.0935E-05],[250.60353,-3.2482E-05],[250.60697,-3.042E-05],[250.61041,-3.1967E-05],[250.61384,-2.9904E-05],[250.61728,-2.3717E-05],[250.62072,-2.5264E-05],[250.62416,-3.3513E-05],[250.6276,-3.2482E-05],[250.63104,-3.042E-05],[250.63448,-3.2482E-05],[250.63791,-2.9904E-05],[250.64135,-3.4544E-05],[250.64479,-3.7122E-05],[250.64823,-3.506E-05],[250.65167,-3.1451E-05],[250.65511,-2.5264E-05],[250.65855,-2.9904E-05],[250.66199,-2.9904E-05],[250.66542,-3.042E-05],[250.66886,-3.042E-05],[250.6723,-3.0935E-05],[250.67574,-3.1451E-05],[250.67918,-2.8873E-05],[250.68262,-3.2482E-05],[250.68606,-3.2998E-05],[250.68949,-2.9904E-05],[250.69293,-2.9389E-05],[250.69637,-2.9389E-05],[250.69981,-2.7842E-05],[250.70325,-2.9389E-05],[250.70669,-3.0935E-05],[250.71013,-3.1967E-05],[250.71357,-3.3513E-05],[250.717,-3.1967E-05],[250.72044,-3.4544E-05],[250.72388,-3.4544E-05],[250.72732,-3.2998E-05],[250.73076,-2.6811E-05],[250.7342,-2.6295E-05],[250.73764,-3.0935E-05],[250.74107,-2.9389E-05],[250.74451,-3.042E-05],[250.74795,-2.4748E-05],[250.75139,-2.7842E-05],[250.75483,-2.7842E-05],[250.75827,-2.217E-05],[250.76171,-3.042E-05],[250.76515,-3.1451E-05],[250.76858,-3.1451E-05],[250.77202,-2.9389E-05],[250.77546,-2.7842E-05],[250.7789,-3.2482E-05],[250.78234,-3.2482E-05],[250.78578,-3.1967E-05],[250.78922,-2.9389E-05],[250.79265,-2.8357E-05],[250.79609,-2.8873E-05],[250.79953,-2.7326E-05],[250.80297,-3.042E-05],[250.80641,-3.2998E-05],[250.80985,-2.9389E-05],[250.81329,-2.8873E-05],[250.81673,-3.1451E-05],[250.82016,-3.042E-05],[250.8236,-3.1967E-05],[250.82704,-3.0935E-05],[250.83048,-2.9904E-05],[250.83392,-2.6295E-05],[250.83736,-2.5264E-05],[250.8408,-3.2482E-05],[250.84423,-3.4029E-05],[250.84767,-3.1451E-05],[250.85111,-2.5779E-05],[250.85455,-2.7326E-05],[250.85799,-3.3513E-05],[250.86143,-3.3513E-05],[250.86487,-3.2998E-05]]}
-{"quant":[251.497,-2.9371E-05],"mems":[[251.39786,-2.7842E-05],[251.4013,-2.9389E-05],[251.40474,-2.4748E-05],[251.40818,-2.6295E-05],[251.41161,-3.042E-05],[251.41505,-3.0935E-05],[251.41849,-2.4748E-05],[251.42193,-2.7842E-05],[251.42537,-3.042E-05],[251.42881,-3.042E-05],[251.43225,-2.8873E-05],[251.43569,-2.4748E-05],[251.43912,-3.1967E-05],[251.44256,-3.1967E-05],[251.446,-2.9389E-05],[251.44944,-3.042E-05],[251.45288,-2.7842E-05],[251.45632,-2.9904E-05],[251.45976,-2.9904E-05],[251.46319,-2.8873E-05],[251.46663,-3.1967E-05],[251.47007,-3.1967E-05],[251.47351,-3.1451E-05],[251.47695,-2.7842E-05],[251.48039,-2.4748E-05],[251.48383,-2.8873E-05],[251.48727,-3.2998E-05],[251.4907,-3.4029E-05],[251.49414,-2.9904E-05],[251.49758,-2.7326E-05],[251.50102,-3.042E-05],[251.50446,-2.9904E-05],[251.5079,-3.042E-05],[251.51134,-2.9389E-05],[251.51477,-3.1451E-05],[251.51821,-3.6091E-05],[251.52165,-2.7842E-05],[251.52509,-2.7842E-05],[251.52853,-2.8873E-05],[251.53197,-2.3717E-05],[251.53541,-3.042E-05],[251.53885,-3.3513E-05],[251.54228,-3.2482E-05],[251.54572,-3.042E-05],[251.54916,-3.1967E-05],[251.5526,-3.1967E-05],[251.55604,-2.5779E-05],[251.55948,-2.9904E-05],[251.56292,-3.3513E-05],[251.56635,-3.1967E-05],[251.56979,-3.1451E-05],[251.57323,-2.8873E-05],[251.57667,-3.042E-05],[251.58011,-3.0935E-05],[251.58355,-2.6811E-05],[251.58699,-2.6295E-05],[251.59043,-2.4233E-05],[251.59386,-2.2686E-05],[251.5973,-2.4233E-05],[251.60074,-2.6811E-05],[251.60418,-3.2482E-05],[251.60762,-3.1967E-05],[251.61106,-2.8873E-05],[251.6145,-3.1451E-05],[251.61793,-2.8873E-05],[251.62137,-2.4748E-05],[251.62481,-2.8357E-05],[251.62825,-2.8357E-05],[251.63169,-3.042E-05],[251.63513,-3.3513E-05],[251.63857,-2.9904E-05],[251.64201,-2.8357E-05],[251.64544,-2.8873E-05],[251.64888,-3.2482E-05],[251.65232,-3.0935E-05],[251.65576,-2.7842E-05],[251.6592,-2.8357E-05],[251.66264,-2.9904E-05],[251.66608,-3.2482E-05],[251.66951,-2.9389E-05],[251.67295,-2.8873E-05],[251.67639,-3.042E-05],[251.67983,-3.1967E-05],[251.68327,-3.4029E-05],[251.68671,-2.9389E-05],[251.69015,-3.2482E-05],[251.69359,-3.1967E-05],[251.69702,-2.5779E-05]]}
-{"quant":[251.99,-2.8684E-05],"mems":[[251.89303,-2.9904E-05],[251.89647,-2.8357E-05],[251.89991,-3.1967E-05],[251.90334,-3.1451E-05],[251.90678,-2.6811E-05],[251.91022,-2.5779E-05],[251.91366,-2.6811E-05],[251.9171,-2.9389E-05],[251.92054,-2.6811E-05],[251.92398,-2.8357E-05],[251.92741,-3.506E-05],[251.93085,-3.2482E-05],[251.93429,-2.5779E-05],[251.93773,-2.8873E-05],[251.94117,-3.2998E-05],[251.94461,-3.1967E-05],[251.94805,-3.1451E-05],[251.95149,-2.9904E-05],[251.95492,-3.3513E-05],[251.95836,-3.2482E-05],[251.9618,-3.1967E-05],[251.96524,-3.3513E-05],[251.96868,-3.1451E-05],[251.97212,-3.3513E-05],[251.97556,-3.1967E-05],[251.97899,-3.0935E-05],[251.98243,-3.0935E-05],[251.98587,-2.9904E-05],[251.98931,-3.2482E-05],[251.99275,-3.2998E-05],[251.99619,-2.8873E-05],[251.99963,-2.7842E-05],[252.00307,-2.8873E-05],[252.0065,-2.8357E-05],[252.00994,-2.8357E-05],[252.01338,-3.042E-05],[252.01682,-3.042E-05],[252.02026,-2.5779E-05],[252.0237,-2.7326E-05],[252.02714,-3.3513E-05],[252.03057,-3.4544E-05],[252.03401,-3.506E-05],[252.03745,-3.1967E-05],[252.04089,-2.7326E-05],[252.04433,-2.5779E-05],[252.04777,-2.6811E-05],[252.05121,-2.9389E-05],[252.05465,-2.2686E-05],[252.05808,-2.4233E-05],[252.06152,-3.1451E-05],[252.06496,-2.8873E-05],[252.0684,-2.8357E-05],[252.07184,-2.5779E-05],[252.07528,-2.6295E-05],[252.07872,-2.6811E-05],[252.08215,-2.5779E-05],[252.08559,-2.9389E-05],[252.08903,-2.8357E-05],[252.09247,-2.8873E-05],[252.09591,-3.1451E-05],[252.09935,-3.042E-05],[252.10279,-3.0935E-05],[252.10623,-3.0935E-05],[252.10966,-3.042E-05],[252.1131,-2.6295E-05],[252.11654,-2.5264E-05],[252.11998,-3.0935E-05],[252.12342,-2.8873E-05],[252.12686,-3.0935E-05],[252.1303,-3.6607E-05],[252.13373,-3.2998E-05],[252.13717,-3.4544E-05],[252.14061,-3.4029E-05],[252.14405,-3.1967E-05],[252.14749,-3.6091E-05],[252.15093,-3.2482E-05],[252.15437,-3.5576E-05],[252.15781,-3.5576E-05],[252.16124,-2.8357E-05],[252.16468,-2.8873E-05],[252.16812,-2.7326E-05],[252.17156,-2.7842E-05],[252.175,-2.7326E-05],[252.17844,-2.9389E-05],[252.18188,-2.9904E-05],[252.18531,-2.4748E-05],[252.18875,-2.5779E-05],[252.19219,-2.9904E-05]]}
-{"quant":[252.467,-2.9698E-05],"mems":[[252.36756,-2.9904E-05],[252.371,-2.7842E-05],[252.37444,-2.6295E-05],[252.37788,-3.3513E-05],[252.38132,-3.4029E-05],[252.38476,-2.9389E-05],[252.3882,-3.0935E-05],[252.39163,-2.9904E-05],[252.39507,-2.9389E-05],[252.39851,-2.7842E-05],[252.40195,-3.042E-05],[252.40539,-3.2998E-05],[252.40883,-2.8873E-05],[252.41227,-2.5264E-05],[252.41571,-2.7842E-05],[252.41914,-2.8873E-05],[252.42258,-2.7842E-05],[252.42602,-3.1967E-05],[252.42946,-3.2998E-05],[252.4329,-2.6811E-05],[252.43634,-2.5264E-05],[252.43978,-3.042E-05],[252.44321,-3.0935E-05],[252.44665,-3.1451E-05],[252.45009,-3.2998E-05],[252.45353,-3.1451E-05],[252.45697,-2.6295E-05],[252.46041,-2.7326E-05],[252.46385,-3.0935E-05],[252.46729,-2.9904E-05],[252.47072,-2.9904E-05],[252.47416,-2.8873E-05],[252.4776,-3.042E-05],[252.48104,-2.6295E-05],[252.48448,-2.5264E-05],[252.48792,-3.1451E-05],[252.49136,-2.9904E-05],[252.49479,-2.7842E-05],[252.49823,-3.042E-05],[252.50167,-2.7326E-05],[252.50511,-2.8873E-05],[252.50855,-3.2998E-05],[252.51199,-2.8873E-05],[252.51543,-2.8873E-05],[252.51887,-3.042E-05],[252.5223,-2.8357E-05],[252.52574,-2.8873E-05],[252.52918,-3.0935E-05],[252.53262,-2.7842E-05],[252.53606,-2.7326E-05],[252.5395,-3.4544E-05],[252.54294,-3.5576E-05],[252.54637,-3.506E-05],[252.54981,-3.042E-05],[252.55325,-2.7842E-05],[252.55669,-2.9389E-05],[252.56013,-2.9389E-05],[252.56357,-2.8873E-05],[252.56701,-2.8873E-05],[252.57045,-3.0935E-05],[252.57388,-3.2482E-05],[252.57732,-3.042E-05],[252.58076,-2.7842E-05],[252.5842,-3.1967E-05],[252.58764,-3.5576E-05],[252.59108,-3.4544E-05],[252.59452,-2.8873E-05],[252.59795,-2.6811E-05],[252.60139,-3.1451E-05],[252.60483,-3.2482E-05],[252.60827,-3.2482E-05],[252.61171,-3.2482E-05],[252.61515,-2.7326E-05],[252.61859,-2.7326E-05],[252.62203,-3.1967E-05],[252.62546,-3.042E-05],[252.6289,-3.042E-05],[252.63234,-3.0935E-05],[252.63578,-3.042E-05],[252.63922,-2.9389E-05],[252.64266,-3.042E-05],[252.6461,-2.8357E-05],[252.64953,-2.8357E-05],[252.65297,-3.1451E-05],[252.65641,-3.042E-05],[252.65985,-2.9904E-05],[252.66329,-3.042E-05],[252.66673,-3.1967E-05],[252.67017,-2.9904E-05]]}
-{"quant":[252.952,-0.46391],"mems":[[252.85242,-3.2998E-05],[252.85585,-2.6811E-05],[252.85929,-3.1451E-05],[252.86273,-3.1451E-05],[252.86617,-2.9389E-05],[252.86961,-3.6607E-05],[252.87305,-3.0935E-05],[252.87649,-3.0935E-05],[252.87993,-3.4544E-05],[252.88336,-2.8873E-05],[252.8868,-3.1451E-05],[252.89024,-2.8873E-05],[252.89368,-2.6295E-05],[252.89712,-3.1451E-05],[252.90056,-3.042E-05],[252.904,-3.3513E-05],[252.90743,-3.042E-05],[252.91087,-2.7842E-05],[252.91431,-3.042E-05],[252.91775,-2.8873E-05],[252.92119,-2.7326E-05],[252.92463,-2.9389E-05],[252.92807,-3.042E-05],[252.93151,-2.7842E-05],[252.93494,-3.1451E-05],[252.93838,-2.9389E-05],[252.94182,-2.8357E-05],[252.94526,-2.9904E-05],[252.9487,-2.7326E-05],[252.95214,-3.2482E-05],[252.95558,-2.9389E-05],[252.95901,-2.9389E-05],[252.96245,-3.042E-05],[252.96589,-2.6295E-05],[252.96933,-2.6295E-05],[252.97277,-2.2686E-05],[252.97621,-2.7842E-05],[252.97965,-3.0935E-05],[252.98309,-2.6295E-05],[252.98652,-2.6811E-05],[252.98996,-2.9904E-05],[252.9934,-2.7326E-05],[252.99684,-2.5264E-05],[253.00028,-3.042E-05],[253.00372,-3.042E-05],[253.00716,-3.042E-05],[253.01059,-3.042E-05],[253.01403,-2.6811E-05],[253.01747,-2.9904E-05],[253.02091,-3.1451E-05],[253.02435,-3.0935E-05],[253.02779,-2.9904E-05],[253.03123,-2.5779E-05],[253.03467,-2.8873E-05],[253.0381,-3.1451E-05],[253.04154,-2.7842E-05],[253.04498,-2.8357E-05],[253.04842,-3.2482E-05],[253.05186,-3.1967E-05],[253.0553,-3.4544E-05],[253.05874,-3.4029E-05],[253.06217,-2.6811E-05],[253.06561,-2.7842E-05],[253.06905,-2.6811E-05],[253.07249,-2.7842E-05],[253.07593,-3.1451E-05],[253.07937,-3.2998E-05],[253.08281,-3.1451E-05],[253.08625,-2.7842E-05],[253.08968,-3.1967E-05],[253.09312,-2.6295E-05],[253.09656,-2.6295E-05],[253.1,-2.8357E-05],[253.1035,-2.0624E-05],[253.10699,-2.6295E-05],[253.11049,-2.9389E-05],[253.11399,-2.7326E-05],[253.11749,-2.8873E-05],[253.12098,-2.9389E-05],[253.12448,-2.9389E-05],[253.12798,-2.7326E-05],[253.13148,-3.0935E-05],[253.13497,-2.8873E-05],[253.13847,-2.7842E-05],[253.14197,-3.0935E-05],[253.14547,-2.6811E-05],[253.14896,-2.5779E-05],[253.15246,-2.7326E-05]]}
-{"quant":[253.438,-2.9303E-05],"mems":[[253.34132,-3.4544E-05],[253.34481,-3.2482E-05],[253.34831,-3.4029E-05],[253.35181,-3.4029E-05],[253.35531,-3.0935E-05],[253.3588,-2.8873E-05],[253.3623,-2.8357E-05],[253.3658,-3.2482E-05],[253.36929,-3.4029E-05],[253.37279,-3.1451E-05],[253.37629,-3.2482E-05],[253.37979,-2.8357E-05],[253.38328,-2.8873E-05],[253.38678,-3.2998E-05],[253.39028,-3.0935E-05],[253.39378,-3.0935E-05],[253.39727,-3.1451E-05],[253.40077,-3.2482E-05],[253.40427,-2.8357E-05],[253.40777,-2.9389E-05],[253.41126,-3.2998E-05],[253.41476,-2.7326E-05],[253.41826,-2.7842E-05],[253.42175,-2.9904E-05],[253.42525,-3.2998E-05],[253.42875,-3.6607E-05],[253.43225,-3.1967E-05],[253.43574,-2.9389E-05],[253.43924,-2.9904E-05],[253.44274,-2.8357E-05],[253.44624,-3.4029E-05],[253.44973,-3.1967E-05],[253.45323,-2.5779E-05],[253.45673,-2.8357E-05],[253.46023,-2.3717E-05],[253.46372,-2.4233E-05],[253.46722,-3.4544E-05],[253.47072,-3.3513E-05],[253.47421,-2.9389E-05],[253.47771,-3.042E-05],[253.48121,-3.1967E-05],[253.48471,-2.8873E-05],[253.4882,-2.7842E-05],[253.4917,-3.1967E-05],[253.4952,-2.8357E-05],[253.4987,-2.6811E-05],[253.50219,-2.7842E-05],[253.50569,-2.9389E-05],[253.50919,-2.8873E-05],[253.51269,-3.1451E-05],[253.51618,-3.5576E-05],[253.51968,-2.8873E-05],[253.52318,-2.4233E-05],[253.52667,-2.4748E-05],[253.53017,-2.9389E-05],[253.53367,-3.1967E-05],[253.53717,-2.8873E-05],[253.54066,-2.7842E-05],[253.54416,-2.6811E-05],[253.54766,-3.3513E-05],[253.55116,-3.1451E-05],[253.55465,-2.2686E-05],[253.55815,-2.7842E-05],[253.56165,-2.8873E-05],[253.56515,-2.6295E-05],[253.56864,-2.7842E-05],[253.57214,-3.0935E-05],[253.57564,-3.4029E-05],[253.57913,-2.5264E-05],[253.58263,-2.6295E-05],[253.58613,-2.8873E-05],[253.58963,-2.8873E-05],[253.59312,-3.6091E-05],[253.59662,-3.3513E-05],[253.60012,-3.0935E-05],[253.60362,-2.7842E-05],[253.60711,-2.7842E-05],[253.61061,-2.9389E-05],[253.61411,-3.1967E-05],[253.61761,-3.4029E-05],[253.6211,-2.7326E-05],[253.6246,-2.7326E-05],[253.6281,-2.7326E-05],[253.63159,-2.9904E-05],[253.63509,-3.2998E-05],[253.63859,-2.7842E-05]]}
-{"quant":[254.222,-2.9681E-05],"mems":[[254.12472,-3.1967E-05],[254.12822,-2.9904E-05],[254.13171,-2.8357E-05],[254.13521,-2.6811E-05],[254.13871,-3.1967E-05],[254.14221,-3.2482E-05],[254.1457,-3.1451E-05],[254.1492,-2.9389E-05],[254.1527,-2.5264E-05],[254.15619,-3.042E-05],[254.15969,-2.9904E-05],[254.16319,-2.9389E-05],[254.16669,-3.3513E-05],[254.17018,-2.9389E-05],[254.17368,-2.7326E-05],[254.17718,-2.8873E-05],[254.18068,-3.1451E-05],[254.18417,-2.8873E-05],[254.18767,-2.7326E-05],[254.19117,-2.6295E-05],[254.19467,-2.7326E-05],[254.19816,-3.6091E-05],[254.20166,-3.506E-05],[254.20516,-3.2998E-05],[254.20865,-3.1451E-05],[254.21215,-2.5264E-05],[254.21565,-2.6295E-05],[254.21915,-2.8357E-05],[254.22264,-2.6811E-05],[254.22614,-2.5779E-05],[254.22964,-3.0935E-05],[254.23314,-2.7326E-05],[254.23663,-2.5779E-05],[254.24013,-3.3513E-05],[254.24363,-3.0935E-05],[254.24713,-3.042E-05],[254.25062,-3.042E-05],[254.25412,-2.6811E-05],[254.25762,-2.7326E-05],[254.26111,-3.042E-05],[254.26461,-3.0935E-05],[254.26811,-2.7842E-05],[254.27161,-2.9904E-05],[254.2751,-3.0935E-05],[254.2786,-2.8357E-05],[254.2821,-2.9904E-05],[254.2856,-3.042E-05],[254.28909,-3.506E-05],[254.29259,-3.2998E-05],[254.29609,-2.8357E-05],[254.29959,-2.8357E-05],[254.30308,-2.8357E-05],[254.30658,-3.0935E-05],[254.31008,-3.042E-05],[254.31357,-2.8357E-05],[254.31707,-2.9389E-05],[254.32057,-3.1451E-05],[254.32407,-3.1967E-05],[254.32756,-2.9389E-05],[254.33106,-2.9904E-05],[254.33456,-2.8357E-05],[254.33806,-2.8873E-05],[254.34155,-3.2482E-05],[254.34505,-2.8357E-05],[254.34855,-2.9389E-05],[254.35205,-3.042E-05],[254.35554,-2.5779E-05],[254.35904,-2.7842E-05],[254.36254,-3.1451E-05],[254.36603,-2.9904E-05],[254.36953,-2.9904E-05],[254.37303,-2.9904E-05],[254.37653,-2.9389E-05],[254.38002,-2.7326E-05],[254.38352,-2.6295E-05],[254.38702,-3.4029E-05],[254.39052,-3.5576E-05],[254.39401,-2.7842E-05],[254.39751,-2.8873E-05],[254.40101,-3.2998E-05],[254.40451,-2.9389E-05],[254.408,-2.6295E-05],[254.4115,-2.9904E-05],[254.415,-3.1451E-05],[254.41849,-2.7842E-05],[254.42199,-2.5779E-05],[254.42549,-3.042E-05]]}
-{"quant":[254.677,-3.0042E-05],"mems":[[254.57937,-2.8873E-05],[254.58287,-2.8357E-05],[254.58637,-3.1967E-05],[254.58986,-3.4029E-05],[254.59336,-3.1451E-05],[254.59686,-2.7326E-05],[254.60036,-2.8357E-05],[254.60385,-3.0935E-05],[254.60735,-3.042E-05],[254.61085,-3.4544E-05],[254.61435,-2.9389E-05],[254.61784,-2.217E-05],[254.62134,-2.7326E-05],[254.62484,-2.9904E-05],[254.62833,-3.4544E-05],[254.63183,-3.4544E-05],[254.63533,-2.5779E-05],[254.63883,-2.4233E-05],[254.64232,-2.8873E-05],[254.64582,-3.0935E-05],[254.64932,-3.1451E-05],[254.65282,-3.5576E-05],[254.65631,-3.3513E-05],[254.65981,-3.1451E-05],[254.66331,-2.8357E-05],[254.66681,-2.9389E-05],[254.6703,-3.3513E-05],[254.6738,-3.1451E-05],[254.6773,-3.3513E-05],[254.68079,-3.1451E-05],[254.68429,-3.042E-05],[254.68779,-3.4029E-05],[254.69129,-3.506E-05],[254.69478,-3.4029E-05],[254.69828,-2.9904E-05],[254.70178,-2.8357E-05],[254.70528,-2.9389E-05],[254.70877,-3.0935E-05],[254.71227,-2.9389E-05],[254.71577,-2.9904E-05],[254.71927,-2.6295E-05],[254.72276,-2.4233E-05],[254.72626,-3.1451E-05],[254.72976,-3.2998E-05],[254.73325,-3.5576E-05],[254.73675,-3.6091E-05],[254.74025,-3.4544E-05],[254.74375,-3.0935E-05],[254.74724,-2.1655E-05],[254.75074,-2.7842E-05],[254.75424,-2.8873E-05],[254.75774,-2.4748E-05],[254.76123,-2.7326E-05],[254.76473,-3.042E-05],[254.76823,-2.6811E-05],[254.77173,-2.1655E-05],[254.77522,-3.0935E-05],[254.77872,-3.2482E-05],[254.78222,-2.7326E-05],[254.78571,-2.7326E-05],[254.78921,-2.8873E-05],[254.79271,-3.3513E-05],[254.79621,-3.0935E-05],[254.7997,-2.6811E-05],[254.8032,-2.6811E-05],[254.8067,-2.8873E-05],[254.8102,-2.8873E-05],[254.81369,-3.042E-05],[254.81719,-3.4029E-05],[254.82069,-2.7842E-05],[254.82419,-2.7842E-05],[254.82768,-3.0935E-05],[254.83118,-2.9904E-05],[254.83468,-3.6607E-05],[254.83817,-3.4029E-05],[254.84167,-3.0935E-05],[254.84517,-2.7326E-05],[254.84867,-2.1655E-05],[254.85216,-3.0935E-05],[254.85566,-3.2482E-05],[254.85916,-3.1451E-05],[254.86266,-3.042E-05],[254.86615,-2.7326E-05],[254.86965,-3.1967E-05],[254.87315,-2.9904E-05],[254.87665,-2.9389E-05],[254.88014,-3.2482E-05]]}
-{"quant":[255.132,-2.9584E-05],"mems":[[255.03403,-3.1967E-05],[255.03752,-3.0935E-05],[255.04102,-2.8873E-05],[255.04452,-2.9904E-05],[255.04801,-2.3717E-05],[255.05151,-2.5264E-05],[255.05501,-3.042E-05],[255.05851,-3.1451E-05],[255.062,-3.2482E-05],[255.0655,-3.0935E-05],[255.069,-2.7326E-05],[255.0725,-2.6811E-05],[255.07599,-3.3513E-05],[255.07949,-3.506E-05],[255.08299,-2.9904E-05],[255.08649,-2.9389E-05],[255.08998,-3.0935E-05],[255.09348,-2.9904E-05],[255.09698,-2.8873E-05],[255.10047,-2.9389E-05],[255.10397,-2.9904E-05],[255.10747,-2.9389E-05],[255.11097,-2.7326E-05],[255.11446,-2.7326E-05],[255.11796,-2.9389E-05],[255.12146,-3.042E-05],[255.12496,-3.042E-05],[255.12845,-2.6811E-05],[255.13195,-3.0935E-05],[255.13545,-3.4029E-05],[255.13895,-3.1967E-05],[255.14244,-3.0935E-05],[255.14594,-3.1451E-05],[255.14944,-3.3513E-05],[255.15293,-3.1967E-05],[255.15643,-3.1967E-05],[255.15993,-3.1967E-05],[255.16343,-3.1451E-05],[255.16692,-3.0935E-05],[255.17042,-3.0935E-05],[255.17392,-2.9389E-05],[255.17742,-2.9904E-05],[255.18091,-3.0935E-05],[255.18441,-2.7326E-05],[255.18791,-2.7842E-05],[255.19141,-2.9389E-05],[255.1949,-2.9904E-05],[255.1984,-2.6295E-05],[255.2019,-2.5264E-05],[255.20539,-2.8873E-05],[255.20889,-2.7842E-05],[255.21239,-2.6295E-05],[255.21589,-2.5779E-05],[255.21938,-2.7842E-05],[255.22288,-2.8357E-05],[255.22638,-2.9389E-05],[255.22988,-2.8873E-05],[255.23337,-2.7326E-05],[255.23687,-3.2998E-05],[255.24037,-3.1967E-05],[255.24387,-2.7842E-05],[255.24736,-3.2482E-05],[255.25086,-3.1451E-05],[255.25436,-3.0935E-05],[255.25785,-3.506E-05],[255.26135,-3.2482E-05],[255.26485,-3.1451E-05],[255.26835,-3.2482E-05],[255.27184,-3.0935E-05],[255.27534,-3.042E-05],[255.27884,-2.9904E-05],[255.28234,-3.1451E-05],[255.28583,-2.8357E-05],[255.28933,-2.6295E-05],[255.29283,-3.2482E-05],[255.29633,-3.1967E-05],[255.29982,-3.042E-05],[255.30332,-2.8873E-05],[255.30682,-2.6295E-05],[255.31031,-2.9904E-05],[255.31381,-2.9904E-05],[255.31731,-2.8873E-05],[255.32081,-3.0935E-05],[255.3243,-3.506E-05],[255.3278,-3.0935E-05],[255.3313,-2.4233E-05],[255.3348,-2.9904E-05]]}
-{"quant":[255.606,-1.1756],"mems":[[255.54464,-3.2482E-05],[255.54813,-3.1451E-05],[255.55163,-3.1967E-05],[255.55513,-3.2482E-05],[255.55863,-3.4544E-05],[255.56212,-2.9389E-05],[255.56562,-2.7326E-05],[255.56912,-3.1451E-05],[255.57261,-3.042E-05],[255.57611,-3.042E-05],[255.57961,-3.042E-05],[255.58311,-3.506E-05],[255.5866,-3.6091E-05],[255.5901,-3.2482E-05],[255.5936,-3.042E-05],[255.5971,-2.8357E-05],[255.60059,-3.1451E-05],[255.60409,-2.8357E-05],[255.60759,-3.1451E-05],[255.61109,-3.7122E-05],[255.61458,-3.042E-05],[255.61808,-2.6295E-05],[255.62158,-2.5264E-05],[255.62507,-2.6811E-05],[255.62857,-3.1451E-05],[255.63207,-3.1967E-05],[255.63557,-2.7326E-05],[255.63906,-2.6811E-05],[255.64256,-3.2482E-05],[255.64606,-3.4029E-05],[255.64956,-2.9904E-05],[255.65305,-3.042E-05],[255.65655,-3.0935E-05],[255.66005,-2.6295E-05],[255.66355,-2.9904E-05],[255.66704,-3.4544E-05],[255.67054,-3.1451E-05],[255.67404,-3.0935E-05],[255.67753,-3.042E-05],[255.68103,-3.3513E-05],[255.68453,-3.2482E-05],[255.68803,-2.6811E-05],[255.69152,-2.7326E-05],[255.69502,-2.9389E-05],[255.69852,-3.1451E-05],[255.70202,-3.1967E-05],[255.70551,-3.2998E-05],[255.70901,-3.1967E-05],[255.71251,-3.1451E-05],[255.71601,-2.9389E-05],[255.7195,-2.6295E-05],[255.723,-2.9389E-05],[255.72638,-2.7842E-05],[255.72976,-2.8873E-05],[255.73314,-3.042E-05],[255.73652,-2.7326E-05],[255.7399,-2.9904E-05],[255.74328,-3.2482E-05],[255.74666,-2.7842E-05],[255.75004,-3.0935E-05],[255.75342,-3.4029E-05],[255.7568,-3.042E-05],[255.76018,-3.042E-05],[255.76356,-3.2998E-05],[255.76694,-3.2998E-05],[255.77032,-3.042E-05],[255.7737,-3.042E-05],[255.77708,-2.8357E-05],[255.78046,-2.9389E-05],[255.78384,-3.0935E-05],[255.78722,-2.7326E-05],[255.7906,-2.7326E-05],[255.79398,-2.5779E-05],[255.79736,-2.6295E-05],[255.80074,-2.8357E-05],[255.80412,-2.9389E-05],[255.8075,-3.3513E-05],[255.81088,-3.4544E-05],[255.81426,-3.4544E-05],[255.81764,-2.4748E-05],[255.82102,-2.3202E-05],[255.8244,-3.506E-05],[255.82778,-3.2998E-05],[255.83116,-3.2482E-05],[255.83454,-3.1451E-05],[255.83792,-2.7842E-05],[255.8413,-3.2998E-05],[255.84468,-3.4544E-05]]}
-{"quant":[256.116,-3.0385E-05],"mems":[[256.01706,-3.3513E-05],[256.02044,-3.2998E-05],[256.02382,-3.2482E-05],[256.0272,-3.2998E-05],[256.03058,-2.8357E-05],[256.03396,-2.6811E-05],[256.03734,-2.7326E-05],[256.04072,-3.3513E-05],[256.0441,-3.2482E-05],[256.04748,-3.1451E-05],[256.05086,-3.4029E-05],[256.05424,-2.6811E-05],[256.05762,-3.042E-05],[256.061,-3.4029E-05],[256.06438,-3.1451E-05],[256.06776,-3.1451E-05],[256.07114,-3.042E-05],[256.07452,-2.8357E-05],[256.0779,-2.8873E-05],[256.08128,-3.1451E-05],[256.08466,-3.1967E-05],[256.08804,-2.9904E-05],[256.09142,-2.7842E-05],[256.0948,-3.1451E-05],[256.09818,-2.8873E-05],[256.10156,-2.6811E-05],[256.10494,-2.9389E-05],[256.10832,-3.3513E-05],[256.1117,-3.2482E-05],[256.11508,-2.6295E-05],[256.11846,-2.7842E-05],[256.12184,-3.042E-05],[256.12522,-3.0935E-05],[256.1286,-3.2482E-05],[256.13198,-2.9904E-05],[256.13536,-2.9389E-05],[256.13874,-2.9389E-05],[256.14212,-2.7842E-05],[256.1455,-2.7326E-05],[256.14888,-2.7842E-05],[256.15226,-2.8873E-05],[256.15564,-3.1451E-05],[256.15902,-3.2998E-05],[256.1624,-3.0935E-05],[256.16578,-3.1451E-05],[256.16916,-3.2998E-05],[256.17254,-3.0935E-05],[256.17592,-2.7326E-05],[256.1793,-3.042E-05],[256.18268,-3.2998E-05],[256.18606,-3.0935E-05],[256.18944,-3.0935E-05],[256.19282,-2.9389E-05],[256.1962,-3.2482E-05],[256.19958,-3.1451E-05],[256.20296,-2.8873E-05],[256.20634,-3.0935E-05],[256.20972,-2.9904E-05],[256.2131,-3.1451E-05],[256.21648,-3.1451E-05],[256.21986,-3.4544E-05],[256.22324,-3.3513E-05],[256.22662,-3.1451E-05],[256.23,-3.2482E-05],[256.23338,-2.6295E-05],[256.23676,-2.8873E-05],[256.24014,-2.7842E-05],[256.24352,-2.5779E-05],[256.2469,-2.7842E-05],[256.25028,-2.4233E-05],[256.25366,-2.7326E-05],[256.25704,-3.2482E-05],[256.26042,-3.2482E-05],[256.2638,-2.8873E-05],[256.26718,-2.8873E-05],[256.27056,-3.1451E-05],[256.27394,-3.042E-05],[256.27732,-3.2998E-05],[256.2807,-3.1451E-05],[256.28408,-2.9904E-05],[256.28746,-2.9904E-05],[256.29084,-2.8873E-05],[256.29422,-2.9904E-05],[256.2976,-2.9389E-05],[256.30098,-3.506E-05],[256.30436,-3.4544E-05],[256.30774,-3.0935E-05],[256.31112,-3.2482E-05],[256.3145,-2.8873E-05],[256.31788,-3.3513E-05]]}
-{"quant":[256.996,-3.0969E-05],"mems":[[256.89924,-3.042E-05],[256.90262,-2.9389E-05],[256.906,-3.3513E-05],[256.90938,-3.4029E-05],[256.91276,-3.0935E-05],[256.91614,-3.1451E-05],[256.91952,-3.1967E-05],[256.9229,-2.8873E-05],[256.92628,-3.042E-05],[256.92966,-3.042E-05],[256.93304,-2.9904E-05],[256.93642,-3.2482E-05],[256.9398,-2.9904E-05],[256.94318,-2.7842E-05],[256.94656,-2.5779E-05],[256.94994,-2.9389E-05],[256.95332,-2.8357E-05],[256.9567,-2.7842E-05],[256.96008,-2.7842E-05],[256.96346,-2.8357E-05],[256.96684,-3.2482E-05],[256.97022,-3.042E-05],[256.9736,-3.1967E-05],[256.97698,-2.7842E-05],[256.98036,-2.7326E-05],[256.98374,-3.4544E-05],[256.98712,-3.2482E-05],[256.9905,-3.0935E-05],[256.99388,-2.9904E-05],[256.99726,-2.8357E-05],[257.00064,-3.3513E-05],[257.00402,-3.4029E-05],[257.0074,-2.9389E-05],[257.01078,-3.0935E-05],[257.01416,-3.3513E-05],[257.01754,-3.042E-05],[257.02092,-2.8357E-05],[257.0243,-3.506E-05],[257.02768,-3.3513E-05],[257.03106,-3.3513E-05],[257.03444,-3.2482E-05],[257.03782,-2.5779E-05],[257.0412,-3.0935E-05],[257.04458,-3.4029E-05],[257.04796,-3.4029E-05],[257.05134,-3.2998E-05],[257.05472,-3.2482E-05],[257.0581,-2.9904E-05],[257.06148,-2.7842E-05],[257.06486,-3.4544E-05],[257.06824,-3.5576E-05],[257.07162,-2.9389E-05],[257.075,-2.4233E-05],[257.07838,-2.5264E-05],[257.08176,-2.8873E-05],[257.08514,-2.7842E-05],[257.08852,-3.0935E-05],[257.0919,-3.5576E-05],[257.09528,-3.042E-05],[257.09866,-2.6295E-05],[257.10204,-2.9389E-05],[257.10542,-3.0935E-05],[257.1088,-3.042E-05],[257.11218,-2.6811E-05],[257.11556,-2.9904E-05],[257.11894,-2.9904E-05],[257.12232,-2.7842E-05],[257.1257,-3.2998E-05],[257.12908,-3.506E-05],[257.13246,-3.1451E-05],[257.13584,-2.7326E-05],[257.13922,-2.7326E-05],[257.1426,-2.6295E-05],[257.14598,-3.1967E-05],[257.14936,-3.6091E-05],[257.15274,-3.2482E-05],[257.15612,-3.042E-05],[257.1595,-2.7326E-05],[257.16288,-3.3513E-05],[257.16626,-3.3513E-05],[257.16964,-2.9389E-05],[257.17302,-3.2482E-05],[257.1764,-3.1967E-05],[257.17978,-3.1451E-05],[257.18316,-3.2482E-05],[257.18654,-3.1451E-05],[257.18992,-3.042E-05],[257.1933,-2.7326E-05],[257.19668,-2.5779E-05]]}
-{"quant":[257.462,-2.9605E-05],"mems":[[257.3623,-3.1967E-05],[257.36568,-3.2998E-05],[257.36906,-2.8873E-05],[257.37244,-2.6295E-05],[257.37582,-2.7842E-05],[257.3792,-3.1967E-05],[257.38258,-3.1451E-05],[257.38596,-2.9904E-05],[257.38934,-3.042E-05],[257.39272,-2.6811E-05],[257.3961,-2.5264E-05],[257.39948,-2.6295E-05],[257.40286,-3.042E-05],[257.40624,-3.1967E-05],[257.40962,-3.0935E-05],[257.413,-3.3513E-05],[257.41638,-3.2482E-05],[257.41976,-3.0935E-05],[257.42314,-3.1451E-05],[257.42652,-2.5779E-05],[257.4299,-2.3202E-05],[257.43328,-2.7842E-05],[257.43666,-3.042E-05],[257.44004,-3.1967E-05],[257.44342,-3.4029E-05],[257.4468,-2.8873E-05],[257.45018,-2.5264E-05],[257.45356,-2.7842E-05],[257.45694,-2.9904E-05],[257.46032,-3.0935E-05],[257.4637,-2.9389E-05],[257.46708,-3.0935E-05],[257.47046,-3.1967E-05],[257.47384,-2.7326E-05],[257.47722,-2.7842E-05],[257.4806,-2.9904E-05],[257.48398,-2.4748E-05],[257.48736,-2.5264E-05],[257.49074,-2.8357E-05],[257.49412,-2.9904E-05],[257.4975,-3.2482E-05],[257.50088,-3.2482E-05],[257.50426,-3.1451E-05],[257.50764,-3.0935E-05],[257.51102,-3.1451E-05],[257.5144,-2.9904E-05],[257.51778,-2.8873E-05],[257.52116,-2.8357E-05],[257.52454,-2.7326E-05],[257.52792,-2.8357E-05],[257.5313,-2.9389E-05],[257.53468,-3.1967E-05],[257.53806,-3.4029E-05],[257.54144,-2.9904E-05],[257.54482,-2.8357E-05],[257.5482,-2.8873E-05],[257.55158,-2.7326E-05],[257.55496,-2.8873E-05],[257.55834,-3.0935E-05],[257.56172,-3.042E-05],[257.5651,-3.042E-05],[257.56848,-3.1451E-05],[257.57186,-3.1967E-05],[257.57524,-3.2482E-05],[257.57862,-2.9904E-05],[257.582,-2.8357E-05],[257.58538,-2.7326E-05],[257.58876,-2.9904E-05],[257.59214,-3.042E-05],[257.59552,-2.7326E-05],[257.5989,-2.9389E-05],[257.60228,-2.5779E-05],[257.60566,-2.4748E-05],[257.60904,-2.9904E-05],[257.61242,-3.1451E-05],[257.6158,-3.042E-05],[257.61918,-2.9389E-05],[257.62256,-2.5779E-05],[257.62594,-2.6811E-05],[257.62932,-3.042E-05],[257.6327,-2.9389E-05],[257.63608,-3.5576E-05],[257.63946,-3.2482E-05],[257.64284,-2.3202E-05],[257.64622,-3.0935E-05],[257.6496,-3.0935E-05],[257.65298,-2.6295E-05],[257.65636,-2.7842E-05],[257.65974,-2.8357E-05],[257.66312,-3.2998E-05]]}
-{"quant":[257.93,-2.9705E-05],"mems":[[257.83212,-2.9904E-05],[257.8355,-3.4544E-05],[257.83888,-3.042E-05],[257.84226,-3.0935E-05],[257.84564,-2.7326E-05],[257.84902,-3.1451E-05],[257.8524,-3.0935E-05],[257.85578,-2.9904E-05],[257.85916,-3.2482E-05],[257.86254,-2.9389E-05],[257.86592,-3.0935E-05],[257.8693,-3.2998E-05],[257.87268,-3.7122E-05],[257.87606,-3.8154E-05],[257.87944,-3.4029E-05],[257.88282,-2.9389E-05],[257.8862,-3.5576E-05],[257.88958,-3.506E-05],[257.89296,-2.8873E-05],[257.89634,-3.2998E-05],[257.89972,-3.2482E-05],[257.9031,-3.1451E-05],[257.90648,-3.1451E-05],[257.90986,-3.2998E-05],[257.91324,-3.2482E-05],[257.91662,-3.2482E-05],[257.92,-3.2482E-05],[257.92338,-2.8873E-05],[257.92676,-2.8873E-05],[257.93014,-3.1451E-05],[257.93352,-2.9904E-05],[257.9369,-2.5264E-05],[257.94028,-2.8873E-05],[257.94366,-3.1967E-05],[257.94704,-3.1451E-05],[257.95042,-2.5779E-05],[257.9538,-2.4748E-05],[257.95718,-3.1451E-05],[257.96056,-2.7842E-05],[257.96394,-2.9904E-05],[257.96732,-3.2482E-05],[257.9707,-2.9389E-05],[257.97408,-2.8357E-05],[257.97746,-2.6811E-05],[257.98084,-2.6295E-05],[257.98422,-2.5779E-05],[257.9876,-3.2482E-05],[257.99098,-3.4544E-05],[257.99436,-3.0935E-05],[257.99774,-3.1451E-05],[258.00112,-3.0935E-05],[258.0045,-3.3513E-05],[258.00788,-2.9904E-05],[258.01126,-2.9389E-05],[258.01464,-3.3513E-05],[258.01802,-2.6811E-05],[258.0214,-2.5264E-05],[258.02478,-3.2998E-05],[258.02816,-3.4029E-05],[258.03154,-2.7326E-05],[258.03492,-2.8873E-05],[258.0383,-2.7326E-05],[258.04168,-2.4748E-05],[258.04506,-2.9389E-05],[258.04844,-2.6811E-05],[258.05182,-2.8357E-05],[258.0552,-3.1451E-05],[258.05858,-3.0935E-05],[258.06196,-2.8357E-05],[258.06534,-2.9904E-05],[258.06872,-2.9904E-05],[258.0721,-2.7326E-05],[258.07548,-3.0935E-05],[258.07886,-2.8873E-05],[258.08224,-2.5779E-05],[258.08562,-2.8873E-05],[258.089,-3.1967E-05],[258.09238,-3.1451E-05],[258.09576,-2.5779E-05],[258.09914,-2.7326E-05],[258.10252,-3.1451E-05],[258.1059,-2.9389E-05],[258.10928,-3.0935E-05],[258.11266,-2.9904E-05],[258.11604,-2.7842E-05],[258.11942,-2.9904E-05],[258.1228,-2.7842E-05],[258.12618,-2.7842E-05],[258.12956,-2.9904E-05],[258.13294,-3.2482E-05]]}
-{"quant":[258.438,-2.8942E-05],"mems":[[258.34082,-3.2482E-05],[258.34427,-3.1451E-05],[258.34772,-3.4029E-05],[258.35117,-3.2482E-05],[258.35462,-3.2998E-05],[258.35807,-3.4544E-05],[258.36152,-2.9389E-05],[258.36497,-2.5779E-05],[258.36842,-2.9904E-05],[258.37187,-2.7842E-05],[258.37532,-2.4748E-05],[258.37877,-3.0935E-05],[258.38222,-3.042E-05],[258.38567,-2.8873E-05],[258.38913,-2.9389E-05],[258.39258,-2.7326E-05],[258.39603,-3.042E-05],[258.39948,-3.4029E-05],[258.40293,-2.9389E-05],[258.40638,-2.7842E-05],[258.40983,-3.1451E-05],[258.41328,-2.9389E-05],[258.41673,-2.8357E-05],[258.42018,-2.8873E-05],[258.42363,-2.8873E-05],[258.42708,-3.4029E-05],[258.43053,-3.2998E-05],[258.43398,-2.4748E-05],[258.43743,-2.6295E-05],[258.44089,-2.9389E-05],[258.44434,-2.9389E-05],[258.44779,-3.0935E-05],[258.45124,-2.9904E-05],[258.45469,-2.8873E-05],[258.45814,-2.6811E-05],[258.46159,-2.8357E-05],[258.46504,-2.8357E-05],[258.46849,-2.4233E-05],[258.47194,-2.7326E-05],[258.47539,-2.8357E-05],[258.47884,-2.6295E-05],[258.48229,-2.8357E-05],[258.48574,-2.7326E-05],[258.48919,-2.7842E-05],[258.49265,-2.9904E-05],[258.4961,-2.7842E-05],[258.49955,-2.7326E-05],[258.503,-3.3513E-05],[258.50645,-3.2482E-05],[258.5099,-2.8873E-05],[258.51335,-2.9389E-05],[258.5168,-2.8873E-05],[258.52025,-3.8154E-05],[258.5237,-3.5576E-05],[258.52715,-2.5779E-05],[258.5306,-2.9904E-05],[258.53405,-2.7842E-05],[258.5375,-2.5264E-05],[258.54095,-2.5779E-05],[258.54441,-2.7326E-05],[258.54786,-3.1451E-05],[258.55131,-2.9389E-05],[258.55476,-2.5779E-05],[258.55821,-2.7842E-05],[258.56166,-3.4544E-05],[258.56511,-3.0935E-05],[258.56856,-2.9389E-05],[258.57201,-3.2998E-05],[258.57546,-2.5779E-05],[258.57891,-2.2686E-05],[258.58236,-2.6811E-05],[258.58581,-3.1967E-05],[258.58926,-3.2998E-05],[258.59271,-2.9904E-05],[258.59617,-2.7326E-05],[258.59962,-2.9389E-05],[258.60307,-2.9389E-05],[258.60652,-2.7842E-05],[258.60997,-2.9389E-05],[258.61342,-2.4748E-05],[258.61687,-2.3202E-05],[258.62032,-2.8873E-05],[258.62377,-3.1967E-05],[258.62722,-2.9904E-05],[258.63067,-2.9389E-05],[258.63412,-2.8357E-05],[258.63757,-2.6295E-05],[258.64102,-2.8357E-05]]}
-{"quant":[258.914,-2.8821E-05],"mems":[[258.81701,-2.5264E-05],[258.82046,-2.6811E-05],[258.82391,-2.8873E-05],[258.82736,-2.8873E-05],[258.83081,-2.7326E-05],[258.83426,-2.9904E-05],[258.83771,-2.6811E-05],[258.84116,-2.6811E-05],[258.84461,-3.4544E-05],[258.84806,-3.2482E-05],[258.85151,-2.4233E-05],[258.85497,-2.1655E-05],[258.85842,-2.5264E-05],[258.86187,-3.0935E-05],[258.86532,-2.9904E-05],[258.86877,-2.7326E-05],[258.87222,-3.1451E-05],[258.87567,-3.1451E-05],[258.87912,-3.0935E-05],[258.88257,-3.1451E-05],[258.88602,-3.0935E-05],[258.88947,-3.0935E-05],[258.89292,-3.2482E-05],[258.89637,-2.9904E-05],[258.89982,-2.9389E-05],[258.90327,-2.9904E-05],[258.90673,-2.8357E-05],[258.91018,-3.1967E-05],[258.91363,-2.9904E-05],[258.91708,-2.4748E-05],[258.92053,-2.5264E-05],[258.92398,-3.1451E-05],[258.92743,-3.2482E-05],[258.93088,-2.7842E-05],[258.93433,-2.9904E-05],[258.93778,-2.6811E-05],[258.94123,-2.7842E-05],[258.94468,-2.7326E-05],[258.94813,-2.4233E-05],[258.95158,-3.0935E-05],[258.95503,-2.9904E-05],[258.95849,-3.042E-05],[258.96194,-3.506E-05],[258.96539,-2.9389E-05],[258.96884,-2.9389E-05],[258.97229,-2.9904E-05],[258.97574,-2.6295E-05],[258.97919,-2.7842E-05],[258.98264,-2.6811E-05],[258.98609,-2.9904E-05],[258.98954,-3.2998E-05],[258.99299,-2.8357E-05],[258.99644,-2.6295E-05],[258.99989,-2.9389E-05],[259.00334,-2.8357E-05],[259.00679,-2.6295E-05],[259.01025,-2.6811E-05],[259.0137,-3.1967E-05],[259.01715,-3.042E-05],[259.0206,-2.4748E-05],[259.02405,-2.7842E-05],[259.0275,-2.6811E-05],[259.03095,-2.8357E-05],[259.0344,-3.1967E-05],[259.03785,-2.7326E-05],[259.0413,-2.8357E-05],[259.04475,-2.7842E-05],[259.0482,-2.7326E-05],[259.05165,-3.2998E-05],[259.0551,-2.7842E-05],[259.05855,-2.2686E-05],[259.06201,-2.5779E-05],[259.06546,-2.6811E-05],[259.06891,-3.1967E-05],[259.07236,-3.3513E-05],[259.07581,-2.8357E-05],[259.07926,-2.9389E-05],[259.08271,-3.3513E-05],[259.08616,-3.506E-05],[259.08961,-3.6091E-05],[259.09306,-2.9389E-05],[259.09651,-2.4748E-05],[259.09996,-3.042E-05],[259.10341,-2.8357E-05],[259.10686,-2.3202E-05],[259.11031,-3.042E-05],[259.11377,-3.1451E-05],[259.11722,-2.6295E-05]]}
-{"quant":[259.381,-2.8461E-05],"mems":[[259.28285,-2.5779E-05],[259.2863,-2.8357E-05],[259.28975,-2.4233E-05],[259.2932,-2.8873E-05],[259.29665,-2.6811E-05],[259.3001,-2.7326E-05],[259.30355,-2.9389E-05],[259.307,-2.8357E-05],[259.31045,-3.0935E-05],[259.3139,-3.042E-05],[259.31735,-2.9389E-05],[259.32081,-2.9904E-05],[259.32426,-2.9389E-05],[259.32771,-2.6811E-05],[259.33116,-2.9904E-05],[259.33461,-2.9389E-05],[259.33806,-2.4748E-05],[259.34151,-2.4233E-05],[259.34496,-2.5264E-05],[259.34841,-2.7326E-05],[259.35186,-2.7842E-05],[259.35531,-3.0935E-05],[259.35876,-3.1451E-05],[259.36221,-2.8873E-05],[259.36566,-3.1451E-05],[259.36911,-3.506E-05],[259.37257,-3.0935E-05],[259.37602,-2.6811E-05],[259.37947,-2.6811E-05],[259.38292,-2.7326E-05],[259.38637,-2.7326E-05],[259.38982,-2.6811E-05],[259.39327,-2.8357E-05],[259.39672,-2.4233E-05],[259.40017,-2.6811E-05],[259.40362,-3.0935E-05],[259.40707,-3.1451E-05],[259.41052,-3.2482E-05],[259.41397,-3.1967E-05],[259.41742,-3.042E-05],[259.42087,-2.7326E-05],[259.42433,-2.8873E-05],[259.42778,-2.8873E-05],[259.43123,-2.9389E-05],[259.43468,-2.8357E-05],[259.43813,-2.4233E-05],[259.44158,-2.6295E-05],[259.44503,-2.6295E-05],[259.44848,-2.7326E-05],[259.45193,-3.042E-05],[259.45538,-2.9904E-05],[259.45883,-3.1451E-05],[259.46228,-2.8873E-05],[259.46573,-2.7326E-05],[259.46918,-2.7326E-05],[259.47263,-2.4748E-05],[259.47609,-2.7326E-05],[259.47954,-2.8357E-05],[259.48299,-3.2998E-05],[259.48644,-3.506E-05],[259.48989,-2.8357E-05],[259.49334,-2.9389E-05],[259.49679,-3.042E-05],[259.50024,-3.1967E-05],[259.50369,-3.2482E-05],[259.50714,-3.5576E-05],[259.51059,-3.6607E-05],[259.51404,-2.7842E-05],[259.51749,-2.5264E-05],[259.52094,-2.5264E-05],[259.52439,-3.0935E-05],[259.52785,-3.4029E-05],[259.5313,-3.2482E-05],[259.53475,-3.1967E-05],[259.5382,-2.6811E-05],[259.54165,-2.9389E-05],[259.5451,-3.3513E-05],[259.54855,-3.0935E-05],[259.552,-3.2998E-05],[259.55545,-3.2482E-05],[259.5589,-2.8873E-05],[259.56235,-2.8873E-05],[259.5658,-2.9904E-05],[259.56925,-2.9389E-05],[259.5727,-2.6811E-05],[259.57615,-2.6811E-05],[259.57961,-2.7326E-05],[259.58306,-2.8873E-05]]}
-{"quant":[260.257,-2.9595E-05],"mems":[[260.15932,-3.042E-05],[260.16277,-3.1451E-05],[260.16622,-2.7842E-05],[260.16967,-2.9389E-05],[260.17312,-3.042E-05],[260.17657,-2.8357E-05],[260.18002,-2.9389E-05],[260.18347,-2.7326E-05],[260.18692,-2.7842E-05],[260.19037,-3.2998E-05],[260.19382,-3.5576E-05],[260.19727,-2.5264E-05],[260.20073,-2.5264E-05],[260.20418,-3.2998E-05],[260.20763,-3.0935E-05],[260.21108,-3.2998E-05],[260.21453,-3.1451E-05],[260.21798,-2.9389E-05],[260.22143,-2.8357E-05],[260.22488,-2.8873E-05],[260.22833,-2.7326E-05],[260.23178,-2.7326E-05],[260.23523,-3.0935E-05],[260.23868,-2.6811E-05],[260.24213,-2.4748E-05],[260.24558,-2.7326E-05],[260.24903,-3.0935E-05],[260.25249,-3.0935E-05],[260.25594,-2.7842E-05],[260.25939,-2.8357E-05],[260.26284,-2.8357E-05],[260.26629,-2.5264E-05],[260.26974,-2.6811E-05],[260.27319,-3.0935E-05],[260.27664,-2.9904E-05],[260.28009,-3.2482E-05],[260.28354,-3.0935E-05],[260.28699,-2.4233E-05],[260.29044,-2.7842E-05],[260.29389,-3.0935E-05],[260.29734,-2.6811E-05],[260.30079,-3.042E-05],[260.30425,-3.2998E-05],[260.3077,-3.0935E-05],[260.31115,-2.9904E-05],[260.3146,-2.7326E-05],[260.31805,-2.7326E-05],[260.3215,-2.7842E-05],[260.32495,-2.8873E-05],[260.3284,-3.1451E-05],[260.33185,-3.1451E-05],[260.3353,-3.1451E-05],[260.33875,-3.042E-05],[260.3422,-2.8357E-05],[260.34565,-2.7842E-05],[260.3491,-2.8873E-05],[260.35255,-3.2482E-05],[260.35601,-3.6607E-05],[260.35946,-3.042E-05],[260.36291,-2.6811E-05],[260.36636,-3.0935E-05],[260.36981,-3.1451E-05],[260.37326,-2.7842E-05],[260.37671,-2.7326E-05],[260.38016,-2.9904E-05],[260.38361,-2.7842E-05],[260.38706,-3.042E-05],[260.39051,-3.042E-05],[260.39396,-2.8873E-05],[260.39741,-3.042E-05],[260.40086,-3.2482E-05],[260.40431,-3.4544E-05],[260.40777,-2.7842E-05],[260.41122,-2.9904E-05],[260.41467,-3.3513E-05],[260.41812,-3.0935E-05],[260.42157,-3.0935E-05],[260.42502,-2.6295E-05],[260.42847,-2.6295E-05],[260.43192,-3.042E-05],[260.43537,-3.3513E-05],[260.43882,-2.9904E-05],[260.44227,-2.7326E-05],[260.44572,-3.2482E-05],[260.44917,-2.9389E-05],[260.45262,-2.5264E-05],[260.45607,-2.7842E-05],[260.45953,-3.042E-05]]}
-{"quant":[260.72,0.016268],"mems":[[260.62171,-3.042E-05],[260.62516,-2.8873E-05],[260.62861,-3.0935E-05],[260.63206,-3.0935E-05],[260.63551,-3.042E-05],[260.63896,-3.506E-05],[260.64241,-2.9904E-05],[260.64586,-2.6295E-05],[260.64931,-2.9389E-05],[260.65276,-3.0935E-05],[260.65621,-3.042E-05],[260.65966,-2.9389E-05],[260.66311,-3.2482E-05],[260.66657,-3.1967E-05],[260.67002,-2.9904E-05],[260.67347,-3.7638E-05],[260.67692,-3.4029E-05],[260.68037,-2.7326E-05],[260.68382,-3.1967E-05],[260.68727,-2.8873E-05],[260.69072,-3.1451E-05],[260.69417,-3.3513E-05],[260.69762,-2.8357E-05],[260.70107,-3.1967E-05],[260.70452,-3.1451E-05],[260.70797,-2.8873E-05],[260.71142,-2.7842E-05],[260.71487,-2.9904E-05],[260.71833,-2.8357E-05],[260.72178,-2.8357E-05],[260.72523,-3.0935E-05],[260.72868,-2.6295E-05],[260.73213,-2.8873E-05],[260.73558,-2.9904E-05],[260.73903,-3.2482E-05],[260.74248,-3.3513E-05],[260.74593,-3.2998E-05],[260.74938,-3.4029E-05],[260.75283,-2.9389E-05],[260.75628,-3.042E-05],[260.75973,-2.9904E-05],[260.76318,-3.042E-05],[260.76663,-3.3513E-05],[260.77009,-3.3513E-05],[260.77354,-3.6091E-05],[260.77699,-3.0935E-05],[260.78044,-3.0935E-05],[260.78389,-3.3513E-05],[260.78734,-2.6295E-05],[260.79079,-3.2482E-05],[260.79424,-3.7638E-05],[260.79769,-3.1967E-05],[260.80114,-2.8873E-05],[260.80459,-3.1451E-05],[260.80804,-3.2482E-05],[260.81149,-3.042E-05],[260.81494,-3.1451E-05],[260.81839,-2.7842E-05],[260.82185,-2.7842E-05],[260.8253,-2.9389E-05],[260.82875,-3.0935E-05],[260.8322,-3.506E-05],[260.83565,-3.0935E-05],[260.8391,-2.9904E-05],[260.84255,-2.9389E-05],[271.396,-3.0935E-05]]}
-{"quant":[261.211,-0.12834],"mems":[[271.396,-3.0935E-05]]}
-{"quant":[261.706,-0.28994],"mems":[[271.396,-3.0935E-05]]}
-{"quant":[262.175,-0.45148],"mems":[[271.396,-3.0935E-05]]}
-{"quant":[262.866,-0.59655],"mems":[[271.396,-3.0935E-05]]}
-{"quant":[263.328,-0.73661],"mems":[[271.396,-3.0935E-05]]}
-{"quant":[263.814,-0.88785],"mems":[[271.396,-3.0935E-05]]}
-{"quant":[264.313,-1.0422],"mems":[[271.396,-3.0935E-05]]}
-{"quant":[264.785,-1.1856],"mems":[[271.396,-3.0935E-05]]}
-{"quant":[265.261,1.1872],"mems":[[271.396,-3.0935E-05]]}
-{"quant":[265.754,1.042],"mems":[[271.396,-3.0935E-05]]}
-{"quant":[266.28,0.89464],"mems":[[271.396,-3.0935E-05]]}
-{"quant":[266.778,0.74094],"mems":[[271.396,-3.0935E-05]]}
-{"quant":[267.288,0.58651],"mems":[[271.396,-3.0935E-05]]}
-{"quant":[267.778,0.45784],"mems":[[271.396,-3.0935E-05]]}
-{"quant":[268.268,0.33809],"mems":[[271.396,-3.0935E-05]]}
-{"quant":[268.787,0.19783],"mems":[[271.396,-3.0935E-05]]}
-{"quant":[269.317,0.066165],"mems":[[271.396,-3.0935E-05]]}
-{"quant":[269.849,-0.057788],"mems":[[271.396,-3.0935E-05]]}
-{"quant":[270.34,-0.18518],"mems":[[271.396,-3.0935E-05]]}
-{"quant":[270.866,-0.30601],"mems":[[271.396,-3.0935E-05]]}
-{"quant":[271.376,-0.41505],"mems":[[271.396,-3.0935E-05],[271.39957,-3.0935E-05],[271.40315,-3.5576E-05],[271.40672,-3.4544E-05],[271.41029,-2.8357E-05],[271.41387,-2.7842E-05],[271.41744,-2.7326E-05],[271.42101,-2.8873E-05],[271.42459,-2.9904E-05],[271.42816,-3.1451E-05],[271.43173,-2.9389E-05],[271.43531,-2.5779E-05],[271.43888,-2.9389E-05],[271.44245,-2.7326E-05],[271.44603,-2.5264E-05],[271.4496,-2.5779E-05],[271.45317,-2.6295E-05],[271.45675,-3.2998E-05],[271.46032,-3.2998E-05],[271.46389,-3.0935E-05],[271.46747,-3.1967E-05],[271.47104,-3.0935E-05],[271.47461,-3.042E-05],[271.47819,-2.6295E-05],[271.48176,-2.7326E-05],[271.48533,-2.9904E-05],[271.48891,-3.1967E-05],[271.49248,-3.4544E-05],[271.49605,-2.8357E-05],[271.49963,-2.5779E-05],[271.5032,-2.9389E-05],[271.50677,-3.1451E-05],[271.51035,-3.1451E-05],[271.51392,-2.7326E-05],[271.51749,-2.9389E-05],[271.52107,-3.2998E-05],[271.52464,-2.9904E-05],[271.52821,-3.0935E-05],[271.53179,-2.7842E-05],[271.53536,-3.1967E-05],[271.53893,-3.3513E-05],[271.54251,-2.6295E-05],[271.54608,-3.506E-05],[271.54965,-3.5576E-05],[271.55323,-3.042E-05],[271.5568,-3.042E-05],[271.56037,-2.8357E-05],[271.56395,-3.1451E-05],[271.56752,-3.1967E-05],[271.57109,-3.1451E-05],[271.57467,-3.1451E-05],[271.57824,-2.8873E-05]]}
-{"quant":[271.862,-2.9531E-05],"mems":[[271.76405,-3.0935E-05],[271.76763,-2.9389E-05],[271.7712,-2.8873E-05],[271.77477,-3.0935E-05],[271.77835,-3.2998E-05],[271.78192,-3.0935E-05],[271.78549,-2.9389E-05],[271.78907,-2.7842E-05],[271.79264,-2.8873E-05],[271.79621,-3.2998E-05],[271.79979,-3.1967E-05],[271.80336,-3.042E-05],[271.80693,-2.8357E-05],[271.81051,-2.8357E-05],[271.81408,-2.8873E-05],[271.81765,-2.6295E-05],[271.82123,-3.2998E-05],[271.8248,-3.4544E-05],[271.82837,-2.8873E-05],[271.83195,-2.8357E-05],[271.83552,-3.1451E-05],[271.83909,-3.0935E-05],[271.84267,-2.9904E-05],[271.84624,-2.8357E-05],[271.84981,-2.7842E-05],[271.85339,-3.042E-05],[271.85696,-2.5779E-05],[271.86053,-2.7326E-05],[271.86411,-3.2998E-05],[271.86768,-3.1967E-05],[271.87125,-2.5779E-05],[271.87483,-2.8873E-05],[271.8784,-3.506E-05],[271.88197,-3.042E-05],[271.88555,-2.9389E-05],[271.88912,-2.8357E-05],[271.89269,-2.9904E-05],[271.89627,-3.0935E-05],[271.89984,-2.9904E-05],[271.90341,-2.9904E-05],[271.90699,-2.9904E-05],[271.91056,-2.9389E-05],[271.91413,-2.4233E-05],[271.91771,-2.6811E-05],[271.92128,-3.1451E-05],[271.92485,-3.1967E-05],[271.92843,-2.7326E-05],[271.932,-2.5264E-05],[271.93557,-2.8357E-05],[271.93915,-2.4233E-05],[271.94272,-2.5264E-05],[271.94629,-3.1451E-05],[271.94987,-3.2998E-05],[271.95344,-3.1451E-05],[271.95701,-2.8873E-05],[271.96059,-3.042E-05],[271.96416,-3.3513E-05],[271.96773,-3.2482E-05],[271.97131,-2.9389E-05],[271.97488,-2.9389E-05],[271.97845,-2.8357E-05],[271.98203,-3.1967E-05],[271.9856,-3.4544E-05],[271.98917,-2.9904E-05],[271.99275,-3.0935E-05],[271.99632,-3.2482E-05],[271.99989,-2.9904E-05],[272.00347,-2.8873E-05],[272.00704,-2.8357E-05],[272.01061,-2.8357E-05],[272.01419,-2.8357E-05],[272.01776,-2.8873E-05],[272.02133,-2.5779E-05],[272.02491,-2.6811E-05],[272.02848,-2.8357E-05],[272.03205,-2.8873E-05],[272.03563,-3.1451E-05],[272.0392,-2.9904E-05],[272.04277,-2.6811E-05],[272.04635,-3.042E-05],[272.04992,-3.1967E-05],[272.05349,-2.7326E-05],[272.05707,-2.7326E-05],[272.06064,-2.8873E-05],[272.06421,-3.2482E-05]]}
-{"quant":[272.432,-2.914E-05],"mems":[[272.33221,-3.1967E-05],[272.33579,-2.9389E-05],[272.33936,-2.9904E-05],[272.34293,-2.9389E-05],[272.34651,-2.4748E-05],[272.35008,-2.7842E-05],[272.35365,-3.0935E-05],[272.35723,-2.6811E-05],[272.3608,-2.9904E-05],[272.36437,-2.8873E-05],[272.36795,-3.1967E-05],[272.37152,-3.2998E-05],[272.37509,-2.7842E-05],[272.37867,-3.1451E-05],[272.38224,-3.1451E-05],[272.38581,-3.2482E-05],[272.38939,-2.8357E-05],[272.39296,-2.8873E-05],[272.39653,-3.4029E-05],[272.40011,-2.9389E-05],[272.40368,-2.9389E-05],[272.40725,-3.1451E-05],[272.41083,-2.8357E-05],[272.4144,-2.8357E-05],[272.41797,-3.3513E-05],[272.42155,-3.3513E-05],[272.42512,-3.042E-05],[272.42869,-2.7842E-05],[272.43227,-2.5779E-05],[272.43584,-2.8357E-05],[272.43941,-2.7842E-05],[272.44299,-2.9389E-05],[272.44656,-2.9904E-05],[272.45013,-2.8357E-05],[272.45371,-3.1451E-05],[272.45728,-2.7842E-05],[272.46085,-2.7842E-05],[272.46443,-2.9904E-05],[272.468,-2.9904E-05],[272.47157,-3.506E-05],[272.47515,-3.1451E-05],[272.47872,-2.6295E-05],[272.48229,-2.6295E-05],[272.48587,-2.5779E-05],[272.48944,-2.7326E-05],[272.49301,-3.0935E-05],[272.49659,-2.9389E-05],[272.50016,-2.6811E-05],[272.50373,-3.0935E-05],[272.50731,-2.7842E-05],[272.51088,-2.7326E-05],[272.51445,-3.3513E-05],[272.51803,-3.2482E-05],[272.5216,-3.2482E-05],[272.52517,-2.8873E-05],[272.52875,-2.7842E-05],[272.53232,-2.7842E-05],[272.53589,-2.9389E-05],[272.53947,-3.2998E-05],[272.54304,-2.9389E-05],[272.54661,-2.7842E-05],[272.55019,-3.3513E-05],[272.55376,-3.1451E-05],[272.55733,-2.4233E-05],[272.56091,-2.7326E-05],[272.56448,-3.042E-05],[272.56805,-3.0935E-05],[272.57163,-3.2998E-05],[272.5752,-3.1451E-05],[272.57877,-3.506E-05],[272.58235,-2.9904E-05],[272.58592,-2.8357E-05],[272.58949,-3.4029E-05],[272.59307,-3.0935E-05],[272.59664,-3.1451E-05],[272.60021,-3.0935E-05],[272.60379,-2.9389E-05],[272.60736,-3.1451E-05],[272.61093,-3.5576E-05],[272.61451,-3.3513E-05],[272.61808,-2.6295E-05],[272.62165,-2.9904E-05],[272.62523,-3.2998E-05],[272.6288,-2.8873E-05],[272.63237,-2.8357E-05]]}
-{"quant":[273.137,-2.9317E-05],"mems":[[273.03973,-2.3717E-05],[273.04331,-3.0935E-05],[273.04688,-3.0935E-05],[273.05045,-2.6811E-05],[273.05403,-3.1451E-05],[273.0576,-3.0935E-05],[273.06117,-2.9389E-05],[273.06475,-3.042E-05],[273.06832,-2.6295E-05],[273.07189,-2.9389E-05],[273.07547,-3.1451E-05],[273.07904,-2.9389E-05],[273.08261,-3.1451E-05],[273.08619,-2.7842E-05],[273.08976,-2.5779E-05],[273.09333,-2.8873E-05],[273.09691,-2.9904E-05],[273.10048,-2.9904E-05],[273.10405,-2.7326E-05],[273.10763,-2.6295E-05],[273.1112,-2.3202E-05],[273.11477,-2.5264E-05],[273.11835,-2.6295E-05],[273.12192,-2.7326E-05],[273.12549,-3.042E-05],[273.12907,-2.8357E-05],[273.13264,-3.0935E-05],[273.13621,-2.9904E-05],[273.13979,-3.0935E-05],[273.14336,-2.7326E-05],[273.14693,-2.6295E-05],[273.15051,-3.2998E-05],[273.15408,-3.042E-05],[273.15765,-2.9904E-05],[273.16123,-2.6811E-05],[273.1648,-2.9389E-05],[273.16837,-3.3513E-05],[273.17195,-3.2998E-05],[273.17552,-3.4029E-05],[273.17909,-2.9904E-05],[273.18267,-2.7326E-05],[273.18624,-2.7842E-05],[273.18981,-2.8873E-05],[273.19339,-3.1451E-05],[273.19696,-3.1967E-05],[273.20053,-2.8873E-05],[273.20411,-2.7326E-05],[273.20768,-3.042E-05],[273.21125,-3.042E-05],[273.21483,-3.2482E-05],[273.2184,-3.042E-05],[273.22197,-2.5264E-05],[273.22555,-2.5779E-05],[273.22912,-2.4233E-05],[273.23269,-2.5779E-05],[273.23627,-2.6811E-05],[273.23984,-3.042E-05],[273.24341,-2.9904E-05],[273.24699,-2.6811E-05],[273.25056,-2.9904E-05],[273.25413,-3.0935E-05],[273.25771,-3.1451E-05],[273.26128,-3.042E-05],[273.26485,-3.042E-05],[273.26843,-3.0935E-05],[273.272,-2.5264E-05],[273.27557,-2.7326E-05],[273.27915,-3.2998E-05],[273.28272,-2.7326E-05],[273.28629,-2.8357E-05],[273.28987,-3.1967E-05],[273.29344,-3.0935E-05],[273.29701,-3.4029E-05],[273.30059,-2.9389E-05],[273.30416,-2.6295E-05],[273.30773,-2.8873E-05],[273.31131,-3.1967E-05],[273.31488,-3.0935E-05],[273.31845,-2.6811E-05],[273.32203,-2.7842E-05],[273.3256,-2.8357E-05],[273.32917,-2.8357E-05],[273.33275,-2.9389E-05],[273.33632,-2.7326E-05],[273.33989,-2.8357E-05]]}
-{"quant":[273.967,-0.8976],"mems":[[273.86875,-3.2482E-05],[273.87232,-2.6295E-05],[273.87589,-3.0935E-05],[273.87947,-3.6607E-05],[273.88304,-2.5779E-05],[273.88661,-3.1967E-05],[273.89019,-3.1451E-05],[273.89376,-2.6811E-05],[273.89733,-3.1451E-05],[273.90091,-3.3513E-05],[273.90448,-3.6607E-05],[273.90805,-3.042E-05],[273.91163,-2.7842E-05],[273.9152,-3.1451E-05],[273.91877,-2.8873E-05],[273.92235,-2.7842E-05],[273.92592,-2.9389E-05],[273.92949,-3.1451E-05],[273.93307,-2.9904E-05],[273.93664,-2.8357E-05],[273.94021,-2.7842E-05],[273.94379,-2.8357E-05],[273.94736,-2.8873E-05],[273.95093,-2.5264E-05],[273.95451,-2.6811E-05],[273.95808,-2.9389E-05],[273.96165,-2.8357E-05],[273.96523,-3.0935E-05],[273.9688,-2.7842E-05],[273.97237,-2.217E-05],[273.97595,-2.6295E-05],[273.97952,-3.1451E-05],[273.98309,-3.0935E-05],[273.98667,-2.9389E-05],[273.99024,-2.6295E-05],[273.99381,-2.6811E-05],[273.99739,-2.7842E-05],[274.00096,-2.6811E-05],[274.00453,-2.7326E-05],[274.00811,-2.9389E-05],[274.01168,-3.2998E-05],[274.01525,-3.1967E-05],[274.01883,-2.5264E-05],[274.0224,-2.4233E-05],[274.02597,-3.506E-05],[274.02955,-3.2998E-05],[274.03312,-2.3202E-05],[274.03669,-2.6811E-05],[274.04027,-2.9904E-05],[274.04384,-2.9389E-05],[274.04741,-2.8357E-05],[274.05099,-2.8873E-05],[274.05456,-2.9389E-05],[274.05813,-2.9904E-05],[274.06171,-3.506E-05],[274.06528,-3.506E-05],[274.06885,-3.3513E-05],[274.07243,-3.4544E-05],[320.164,-2.9389E-05]]}
-{"quant":[274.756,-0.98975],"mems":[[320.164,-2.9389E-05]]}
-{"quant":[275.408,-1.0783],"mems":[[320.164,-2.9389E-05]]}
-{"quant":[275.955,-1.1624],"mems":[[320.164,-2.9389E-05]]}
-{"quant":[276.514,1.2532],"mems":[[320.164,-2.9389E-05]]}
-{"quant":[279.396,1.1426],"mems":[[320.164,-2.9389E-05]]}
-{"quant":[279.955,1.0563],"mems":[[320.164,-2.9389E-05]]}
-{"quant":[280.497,0.99697],"mems":[[320.164,-2.9389E-05]]}
-{"quant":[280.982,0.92123],"mems":[[320.164,-2.9389E-05]]}
-{"quant":[281.528,0.82156],"mems":[[320.164,-2.9389E-05]]}
-{"quant":[282.068,0.72395],"mems":[[320.164,-2.9389E-05]]}
-{"quant":[282.591,0.64679],"mems":[[320.164,-2.9389E-05]]}
-{"quant":[283.14,0.58886],"mems":[[320.164,-2.9389E-05]]}
-{"quant":[283.661,0.53675],"mems":[[320.164,-2.9389E-05]]}
-{"quant":[284.227,0.49036],"mems":[[320.164,-2.9389E-05]]}
-{"quant":[284.86,0.44548],"mems":[[320.164,-2.9389E-05]]}
-{"quant":[285.428,0.40519],"mems":[[320.164,-2.9389E-05]]}
-{"quant":[285.939,0.36273],"mems":[[320.164,-2.9389E-05]]}
-{"quant":[286.507,0.32557],"mems":[[320.164,-2.9389E-05]]}
-{"quant":[287.048,0.30021],"mems":[[320.164,-2.9389E-05]]}
-{"quant":[287.558,0.28667],"mems":[[320.164,-2.9389E-05]]}
-{"quant":[288.128,0.27735],"mems":[[320.164,-2.9389E-05]]}
-{"quant":[288.626,0.2546],"mems":[[320.164,-2.9389E-05]]}
-{"quant":[289.125,0.21532],"mems":[[320.164,-2.9389E-05]]}
-{"quant":[289.662,0.18208],"mems":[[320.164,-2.9389E-05]]}
-{"quant":[290.214,0.1677],"mems":[[320.164,-2.9389E-05]]}
-{"quant":[290.759,0.17672],"mems":[[320.164,-2.9389E-05]]}
-{"quant":[291.314,0.21281],"mems":[[320.164,-2.9389E-05]]}
-{"quant":[291.817,0.2607],"mems":[[320.164,-2.9389E-05]]}
-{"quant":[292.349,0.30844],"mems":[[320.164,-2.9389E-05]]}
-{"quant":[292.882,0.32965],"mems":[[320.164,-2.9389E-05]]}
-{"quant":[293.471,0.31513],"mems":[[320.164,-2.9389E-05]]}
-{"quant":[294.013,0.30019],"mems":[[320.164,-2.9389E-05]]}
-{"quant":[294.64,0.32372],"mems":[[320.164,-2.9389E-05]]}
-{"quant":[295.196,0.37611],"mems":[[320.164,-2.9389E-05]]}
-{"quant":[295.73,0.43283],"mems":[[320.164,-2.9389E-05]]}
-{"quant":[296.237,0.48466],"mems":[[320.164,-2.9389E-05]]}
-{"quant":[296.73,0.54725],"mems":[[320.164,-2.9389E-05]]}
-{"quant":[297.28,0.61106],"mems":[[320.164,-2.9389E-05]]}
-{"quant":[297.834,0.67197],"mems":[[320.164,-2.9389E-05]]}
-{"quant":[298.379,0.72973],"mems":[[320.164,-2.9389E-05]]}
-{"quant":[298.929,0.77534],"mems":[[320.164,-2.9389E-05]]}
-{"quant":[299.419,0.82857],"mems":[[320.164,-2.9389E-05]]}
-{"quant":[299.915,0.90916],"mems":[[320.164,-2.9389E-05]]}
-{"quant":[300.4,1.0153],"mems":[[320.164,-2.9389E-05]]}
-{"quant":[300.877,1.1349],"mems":[[320.164,-2.9389E-05]]}
-{"quant":[301.399,1.2414],"mems":[[320.164,-2.9389E-05]]}
-{"quant":[301.994,-1.1843],"mems":[[320.164,-2.9389E-05]]}
-{"quant":[302.596,-1.0978],"mems":[[320.164,-2.9389E-05]]}
-{"quant":[303.095,-1.0081],"mems":[[320.164,-2.9389E-05]]}
-{"quant":[303.618,-0.91602],"mems":[[320.164,-2.9389E-05]]}
-{"quant":[304.147,-0.82452],"mems":[[320.164,-2.9389E-05]]}
-{"quant":[304.658,-0.72355],"mems":[[320.164,-2.9389E-05]]}
-{"quant":[305.15,-0.61693],"mems":[[320.164,-2.9389E-05]]}
-{"quant":[305.647,-0.48815],"mems":[[320.164,-2.9389E-05]]}
-{"quant":[306.153,-0.3364],"mems":[[320.164,-2.9389E-05]]}
-{"quant":[306.685,-0.19215],"mems":[[320.164,-2.9389E-05]]}
-{"quant":[307.207,-0.067641],"mems":[[320.164,-2.9389E-05]]}
-{"quant":[307.681,0.042302],"mems":[[320.164,-2.9389E-05]]}
-{"quant":[308.224,0.15619],"mems":[[320.164,-2.9389E-05]]}
-{"quant":[308.731,0.27566],"mems":[[320.164,-2.9389E-05]]}
-{"quant":[309.206,0.39355],"mems":[[320.164,-2.9389E-05]]}
-{"quant":[309.714,0.52582],"mems":[[320.164,-2.9389E-05]]}
-{"quant":[310.232,0.68344],"mems":[[320.164,-2.9389E-05]]}
-{"quant":[310.727,0.83965],"mems":[[320.164,-2.9389E-05]]}
-{"quant":[311.251,0.98153],"mems":[[320.164,-2.9389E-05]]}
-{"quant":[311.767,1.1254],"mems":[[320.164,-2.9389E-05]]}
-{"quant":[312.28,-1.2344],"mems":[[320.164,-2.9389E-05]]}
-{"quant":[312.767,-1.0857],"mems":[[320.164,-2.9389E-05]]}
-{"quant":[313.265,-0.95566],"mems":[[320.164,-2.9389E-05]]}
-{"quant":[313.807,-0.82142],"mems":[[320.164,-2.9389E-05]]}
-{"quant":[314.311,-0.66133],"mems":[[320.164,-2.9389E-05]]}
-{"quant":[314.844,-0.49253],"mems":[[320.164,-2.9389E-05]]}
-{"quant":[315.384,-0.33438],"mems":[[320.164,-2.9389E-05]]}
-{"quant":[315.917,-0.17999],"mems":[[320.164,-2.9389E-05]]}
-{"quant":[316.449,-0.035226],"mems":[[320.164,-2.9389E-05]]}
-{"quant":[316.97,0.093616],"mems":[[320.164,-2.9389E-05]]}
-{"quant":[317.5,0.2261],"mems":[[320.164,-2.9389E-05]]}
-{"quant":[318.02,0.38235],"mems":[[320.164,-2.9389E-05]]}
-{"quant":[318.497,0.55129],"mems":[[320.164,-2.9389E-05]]}
-{"quant":[318.981,0.72052],"mems":[[320.164,-2.9389E-05]]}
-{"quant":[319.467,0.88226],"mems":[[320.164,-2.9389E-05]]}
-{"quant":[319.989,1.0209],"mems":[[320.30372,-2.7842E-05],[320.30731,-2.8873E-05],[320.31089,-2.4748E-05],[320.31447,-2.6295E-05],[320.31805,-3.1451E-05],[320.32164,-3.1967E-05],[320.32522,-2.8357E-05],[320.3288,-2.4233E-05],[320.33239,-2.6811E-05],[320.33597,-2.9904E-05],[320.33955,-2.8357E-05],[320.34313,-2.9389E-05],[320.34672,-2.6295E-05],[320.3503,-2.6295E-05],[320.35388,-2.9389E-05],[320.35746,-2.8873E-05],[320.36105,-2.7842E-05],[320.36463,-3.2482E-05],[320.36821,-3.4029E-05],[320.37179,-2.9389E-05],[320.37538,-3.3513E-05],[320.37896,-3.6091E-05],[320.38254,-3.4544E-05],[320.38613,-3.3513E-05],[320.38971,-2.4748E-05],[320.39329,-2.1139E-05],[320.39687,-2.8357E-05],[320.40046,-3.1967E-05],[320.40404,-3.4029E-05],[320.40762,-3.4029E-05],[320.4112,-2.6811E-05],[320.41479,-2.6811E-05],[320.41837,-3.2482E-05],[320.42195,-3.4029E-05],[320.42553,-2.9904E-05],[320.42912,-2.7842E-05],[320.4327,-3.1967E-05],[320.43628,-3.1451E-05],[320.43987,-3.042E-05],[320.44345,-3.1967E-05],[320.44703,-2.8357E-05],[320.45061,-2.8357E-05],[320.4542,-2.9389E-05],[320.45778,-2.9904E-05],[320.46136,-3.042E-05],[320.46494,-2.5264E-05],[320.46853,-2.9904E-05],[320.47211,-3.2998E-05],[320.47569,-2.8357E-05],[320.47927,-3.042E-05],[320.48286,-3.042E-05],[320.48644,-2.9389E-05],[320.49002,-3.2482E-05],[320.49361,-2.5264E-05],[320.49719,-2.2686E-05],[320.50077,-2.8873E-05],[320.50435,-3.4029E-05],[320.50794,-3.4544E-05],[320.51152,-2.7326E-05],[320.5151,-2.6811E-05],[320.51868,-2.8357E-05],[320.52227,-3.1451E-05],[320.52585,-3.4544E-05],[320.52943,-2.9904E-05],[320.53301,-3.042E-05],[320.5366,-3.4029E-05],[320.54018,-3.1451E-05],[320.54376,-2.8873E-05],[320.54735,-2.9389E-05],[320.55093,-2.6295E-05],[320.55451,-2.5264E-05],[320.55809,-2.8873E-05],[320.56168,-2.8873E-05]]}
-{"quant":[320.486,-2.9353E-05],"mems":[[320.38613,-3.3513E-05],[320.38971,-2.4748E-05],[320.39329,-2.1139E-05],[320.39687,-2.8357E-05],[320.40046,-3.1967E-05],[320.40404,-3.4029E-05],[320.40762,-3.4029E-05],[320.4112,-2.6811E-05],[320.41479,-2.6811E-05],[320.41837,-3.2482E-05],[320.42195,-3.4029E-05],[320.42553,-2.9904E-05],[320.42912,-2.7842E-05],[320.4327,-3.1967E-05],[320.43628,-3.1451E-05],[320.43987,-3.042E-05],[320.44345,-3.1967E-05],[320.44703,-2.8357E-05],[320.45061,-2.8357E-05],[320.4542,-2.9389E-05],[320.45778,-2.9904E-05],[320.46136,-3.042E-05],[320.46494,-2.5264E-05],[320.46853,-2.9904E-05],[320.47211,-3.2998E-05],[320.47569,-2.8357E-05],[320.47927,-3.042E-05],[320.48286,-3.042E-05],[320.48644,-2.9389E-05],[320.49002,-3.2482E-05],[320.49361,-2.5264E-05],[320.49719,-2.2686E-05],[320.50077,-2.8873E-05],[320.50435,-3.4029E-05],[320.50794,-3.4544E-05],[320.51152,-2.7326E-05],[320.5151,-2.6811E-05],[320.51868,-2.8357E-05],[320.52227,-3.1451E-05],[320.52585,-3.4544E-05],[320.52943,-2.9904E-05],[320.53301,-3.042E-05],[320.5366,-3.4029E-05],[320.54018,-3.1451E-05],[320.54376,-2.8873E-05],[320.54735,-2.9389E-05],[320.55093,-2.6295E-05],[320.55451,-2.5264E-05],[320.55809,-2.8873E-05],[320.56168,-2.8873E-05],[320.56526,-2.9904E-05],[320.56884,-3.1967E-05],[320.57242,-3.042E-05],[320.57601,-2.8873E-05],[320.57959,-2.6295E-05],[320.58317,-2.6295E-05],[320.58675,-2.8357E-05],[320.59034,-3.042E-05],[320.59392,-3.2482E-05],[320.5975,-2.8357E-05],[320.60109,-2.6811E-05],[320.60467,-2.4233E-05],[320.60825,-2.8873E-05],[320.61183,-3.4544E-05],[320.61542,-2.8357E-05],[320.619,-3.042E-05],[320.62258,-2.5779E-05],[320.62616,-2.8873E-05],[320.62975,-3.4029E-05],[320.63333,-2.7326E-05],[320.63691,-3.3513E-05],[320.64049,-2.9389E-05],[320.64408,-2.8873E-05],[320.64766,-3.2482E-05],[320.65124,-2.7842E-05],[320.65483,-2.9389E-05],[320.65841,-2.8357E-05],[320.66199,-2.8873E-05],[320.66557,-3.042E-05],[320.66916,-2.7326E-05],[320.67274,-2.4233E-05],[320.67632,-2.7326E-05],[320.6799,-3.042E-05],[320.68349,-2.8357E-05],[320.68707,-3.1967E-05]]}
-{"quant":[321.018,-3.1006E-05],"mems":[[320.91994,-2.9389E-05],[320.92353,-3.3513E-05],[320.92711,-3.4029E-05],[320.93069,-2.6811E-05],[320.93427,-2.6295E-05],[320.93786,-2.8873E-05],[320.94144,-3.1451E-05],[320.94502,-3.0935E-05],[320.9486,-2.6811E-05],[320.95219,-2.8873E-05],[320.95577,-2.9389E-05],[320.95935,-3.2998E-05],[320.96293,-3.3513E-05],[320.96652,-3.0935E-05],[320.9701,-3.1967E-05],[320.97368,-3.042E-05],[320.97727,-2.9389E-05],[320.98085,-2.8873E-05],[320.98443,-2.8873E-05],[320.98801,-3.0935E-05],[320.9916,-3.2482E-05],[320.99518,-2.9389E-05],[320.99876,-2.6811E-05],[321.00234,-3.042E-05],[321.00593,-3.1967E-05],[321.00951,-2.4233E-05],[321.01309,-2.7326E-05],[321.01667,-3.506E-05],[321.02026,-3.1451E-05],[321.02384,-3.4029E-05],[321.02742,-3.506E-05],[321.03101,-2.8357E-05],[321.03459,-2.9389E-05],[321.03817,-2.9389E-05],[321.04175,-2.9904E-05],[321.04534,-3.4544E-05],[321.04892,-3.4544E-05],[321.0525,-3.1967E-05],[321.05608,-2.6811E-05],[321.05967,-2.9904E-05],[321.06325,-3.3513E-05],[321.06683,-3.2482E-05],[321.07041,-3.4544E-05],[321.074,-3.0935E-05],[321.07758,-3.1967E-05],[321.08116,-3.1451E-05],[321.08475,-2.8357E-05],[321.08833,-3.0935E-05],[321.09191,-2.9389E-05],[321.09549,-3.1967E-05],[321.09908,-3.042E-05],[321.10266,-2.9389E-05],[321.10624,-3.4029E-05],[321.10982,-2.9389E-05],[321.11341,-2.8873E-05],[321.11699,-2.9389E-05],[321.12057,-2.6811E-05],[321.12415,-2.9389E-05],[321.12774,-3.1967E-05],[321.13132,-3.4544E-05],[321.1349,-3.3513E-05],[321.13849,-2.7326E-05],[321.14207,-3.1451E-05],[321.14565,-3.4544E-05],[321.14923,-2.9904E-05],[321.15282,-3.0935E-05],[321.1564,-3.0935E-05],[321.15998,-3.0935E-05],[321.16356,-3.0935E-05],[321.16715,-3.2998E-05],[321.17073,-3.506E-05],[321.17431,-3.3513E-05],[321.17789,-3.1967E-05],[321.18148,-2.8873E-05],[321.18506,-2.8873E-05],[321.18864,-2.9904E-05],[321.19223,-2.7326E-05],[321.19581,-2.9389E-05],[321.19939,-3.0935E-05],[321.20297,-2.7842E-05],[321.20656,-2.8357E-05],[321.21014,-3.2482E-05],[321.21372,-3.3513E-05],[321.2173,-3.2482E-05],[321.22089,-3.042E-05]]}
-{"quant":[321.621,-2.93E-05],"mems":[[321.52183,-3.2482E-05],[321.52541,-2.7842E-05],[321.529,-2.7842E-05],[321.53258,-2.9904E-05],[321.53616,-2.6811E-05],[321.53974,-2.5779E-05],[321.54333,-2.6811E-05],[321.54691,-3.2482E-05],[321.55049,-3.2998E-05],[321.55407,-3.042E-05],[321.55766,-3.042E-05],[321.56124,-2.8873E-05],[321.56482,-2.9904E-05],[321.56841,-3.2482E-05],[321.57199,-3.2482E-05],[321.57557,-2.8873E-05],[321.57915,-2.8873E-05],[321.58274,-2.8873E-05],[321.58632,-2.8873E-05],[321.5899,-2.8873E-05],[321.59348,-2.5779E-05],[321.59707,-2.3717E-05],[321.60065,-2.6811E-05],[321.60423,-3.1451E-05],[321.60781,-3.042E-05],[321.6114,-2.7326E-05],[321.61498,-3.0935E-05],[321.61856,-3.1451E-05],[321.62215,-2.5264E-05],[321.62573,-2.4233E-05],[321.62931,-3.2482E-05],[321.63289,-3.5576E-05],[321.63648,-2.9904E-05],[321.64006,-2.7842E-05],[321.64364,-2.9389E-05],[321.64722,-3.042E-05],[321.65081,-3.506E-05],[321.65439,-3.2482E-05],[321.65797,-2.8357E-05],[321.66155,-2.8873E-05],[321.66514,-2.7842E-05],[321.66872,-3.1451E-05],[321.6723,-3.2482E-05],[321.67589,-2.8873E-05],[321.67947,-2.5264E-05],[321.68305,-2.8357E-05],[321.68663,-3.0935E-05],[321.69022,-2.9904E-05],[321.6938,-3.0935E-05],[321.69738,-2.5264E-05],[321.70096,-2.5264E-05],[321.70455,-2.5264E-05],[321.70813,-2.4748E-05],[321.71171,-2.7326E-05],[321.71529,-2.8873E-05],[321.71888,-3.4544E-05],[321.72246,-3.2482E-05],[321.72604,-2.6295E-05],[321.72963,-2.7842E-05],[321.73321,-3.2998E-05],[321.73679,-3.1451E-05],[321.74037,-2.8357E-05],[321.74396,-3.0935E-05],[321.74754,-3.1451E-05],[321.75112,-3.2998E-05],[321.7547,-3.5576E-05],[321.75829,-3.4029E-05],[321.76187,-3.1451E-05],[321.76545,-3.506E-05],[321.76903,-3.4544E-05],[321.77262,-2.8873E-05],[321.7762,-2.8357E-05],[321.77978,-3.2998E-05],[321.78337,-3.2482E-05],[321.78695,-2.7326E-05],[321.79053,-3.0935E-05],[321.79411,-3.1967E-05],[321.7977,-3.1451E-05],[321.80128,-3.0935E-05],[321.80486,-2.9904E-05],[321.80844,-2.9904E-05],[321.81203,-3.0935E-05],[321.81561,-3.4029E-05],[321.81919,-2.9904E-05],[321.82277,-3.1451E-05]]}
-{"quant":[322.241,-2.8571E-05],"mems":[[322.14163,-2.7842E-05],[322.14521,-2.8357E-05],[322.1488,-2.9389E-05],[322.15238,-2.7842E-05],[322.15596,-2.5779E-05],[322.15955,-2.8873E-05],[322.16313,-3.042E-05],[322.16671,-3.1451E-05],[322.17029,-2.9389E-05],[322.17388,-3.1967E-05],[322.17746,-3.0935E-05],[322.18104,-2.4748E-05],[322.18462,-2.9389E-05],[322.18821,-3.0935E-05],[322.19179,-3.2998E-05],[322.19537,-3.4544E-05],[322.19895,-3.0935E-05],[322.20254,-3.2998E-05],[322.20612,-2.7842E-05],[322.2097,-2.8873E-05],[322.21329,-3.042E-05],[322.21687,-2.5264E-05],[322.22045,-3.1451E-05],[322.22403,-3.4544E-05],[322.22762,-3.4029E-05],[322.2312,-3.4544E-05],[322.23478,-2.9904E-05],[322.23836,-2.9389E-05],[322.24195,-3.1967E-05],[322.24553,-2.7326E-05],[322.24911,-3.042E-05],[322.25269,-3.3513E-05],[322.25628,-2.8357E-05],[322.25986,-2.8357E-05],[322.26344,-2.6295E-05],[322.26703,-2.6811E-05],[322.27061,-3.2998E-05],[322.27419,-3.2998E-05],[322.27777,-2.9389E-05],[322.28136,-3.042E-05],[322.28494,-2.3717E-05],[322.28852,-2.1655E-05],[322.2921,-2.8357E-05],[322.29569,-2.7842E-05],[322.29927,-3.042E-05],[322.30285,-3.0935E-05],[322.30643,-2.6295E-05],[322.31002,-2.7842E-05],[322.3136,-2.6295E-05],[322.31718,-2.6811E-05],[322.32077,-3.0935E-05],[322.32435,-2.9389E-05],[322.32793,-2.6811E-05],[322.33151,-2.5779E-05],[322.3351,-3.042E-05],[322.33868,-2.9904E-05],[322.34226,-2.6295E-05],[322.34584,-2.9904E-05],[322.34943,-2.9904E-05],[322.35301,-2.8873E-05],[322.35659,-3.2482E-05],[322.36017,-3.3513E-05],[322.36376,-2.8873E-05],[322.36734,-2.8357E-05],[322.37092,-2.9389E-05],[322.37451,-3.0935E-05],[322.37809,-3.1967E-05],[322.38167,-2.8873E-05],[322.38525,-2.8357E-05],[322.38884,-2.9904E-05],[322.39242,-2.9389E-05],[322.396,-2.9389E-05],[322.39958,-2.8873E-05],[322.40317,-3.0935E-05],[322.40675,-3.4544E-05],[322.41033,-3.2482E-05],[322.41391,-3.2482E-05],[322.4175,-3.5576E-05],[322.42108,-2.9904E-05],[322.42466,-3.4029E-05],[322.42825,-3.1967E-05],[322.43183,-2.6811E-05],[322.43541,-3.4544E-05],[322.43899,-2.9389E-05],[322.44258,-2.7326E-05]]}
-{"quant":[322.765,-0.75603],"mems":[[322.66828,-3.042E-05],[322.67187,-3.0935E-05],[322.67545,-3.042E-05],[322.67903,-2.7326E-05],[322.68261,-2.7326E-05],[322.6862,-2.9389E-05],[322.68978,-3.3513E-05],[322.69336,-3.3513E-05],[322.69695,-2.9904E-05],[322.70053,-3.042E-05],[322.70411,-3.2482E-05],[322.70769,-2.7326E-05],[322.71128,-3.042E-05],[322.71486,-3.7638E-05],[322.71844,-3.2998E-05],[322.72202,-3.0935E-05],[322.72561,-2.5264E-05],[322.72919,-2.7842E-05],[322.73277,-3.4029E-05],[322.73635,-3.2482E-05],[322.73994,-3.2482E-05],[322.74352,-2.9904E-05],[322.7471,-3.4029E-05],[322.75069,-3.2482E-05],[322.75427,-2.9904E-05],[322.75785,-3.506E-05],[322.76143,-3.3513E-05],[322.76502,-2.9904E-05],[322.7686,-2.9904E-05],[322.77218,-3.2482E-05],[322.77576,-2.9389E-05],[322.77935,-2.9389E-05],[322.78293,-3.2998E-05],[322.78651,-3.2482E-05],[322.79009,-3.042E-05],[322.79368,-3.2998E-05],[322.79726,-3.2482E-05],[322.80084,-3.042E-05],[322.80443,-3.2998E-05],[322.80801,-3.0935E-05],[322.81159,-2.9389E-05],[322.81517,-2.9389E-05],[322.81876,-2.9389E-05],[322.82234,-3.0935E-05],[322.82592,-3.0935E-05],[322.8295,-3.1451E-05],[322.83309,-3.4029E-05],[322.83667,-3.6091E-05],[322.84025,-3.2998E-05],[322.84383,-3.1451E-05],[322.84742,-2.9389E-05],[541.934,-2.8357E-05]]}
-{"quant":[323.325,-0.62973],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[323.883,-0.50339],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[324.419,-0.37288],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[332.912,-0.2412],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[333.458,-0.1021],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[333.983,0.030125],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[334.507,0.13671],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[334.986,0.24705],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[335.489,0.38371],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[336.057,0.50932],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[336.573,0.62249],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[337.105,0.74139],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[337.618,0.85915],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[338.149,0.97313],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[338.64,1.0901],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[339.127,1.1834],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[339.668,1.2485],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[340.166,-1.1894],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[340.631,-1.087],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[341.105,-0.97261],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[341.598,-0.89531],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[342.106,-0.84869],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[342.62,-0.78955],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[343.09,-0.71546],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[343.613,-0.63431],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[344.106,-0.56054],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[344.663,-0.50914],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[345.177,-0.46003],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[345.667,-0.4041],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[346.155,-0.37564],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[346.624,-0.35853],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[347.151,-0.32924],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[347.66,-0.30311],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[348.213,-0.27393],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[348.732,-0.24413],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[349.287,-0.22711],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[349.809,-0.22797],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[350.327,-0.23296],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[350.796,-0.22945],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[351.313,-0.23505],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[351.848,-0.25359],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[352.424,-0.27912],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[352.935,-0.30195],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[353.481,-0.31854],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[354.022,-0.34821],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[354.556,-0.392],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[355.092,-0.43854],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[355.599,-0.47396],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[356.097,-0.49958],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[356.639,-0.54471],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[357.167,-0.61481],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[357.681,-0.67454],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[358.156,-0.73712],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[358.71,-0.81957],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[359.221,-0.88721],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[359.776,-0.94428],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[360.276,-1.022],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[360.789,-1.1241],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[361.325,-1.2404],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[361.858,1.1539],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[362.425,1.0496],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[363.034,0.96606],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[363.541,0.88279],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[364.07,0.77908],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[364.616,0.66573],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[365.142,0.54917],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[365.735,0.42509],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[366.242,0.31606],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[366.744,0.21803],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[367.346,0.10492],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[367.877,-0.020092],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[368.379,-0.15679],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[368.898,-0.3227],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[369.397,-0.48838],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[369.933,-0.63242],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[370.462,-0.75647],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[370.981,-0.87131],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[371.467,-0.99951],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[372.088,-1.1478],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[372.634,1.2083],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[373.154,1.0574],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[373.773,0.91197],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[374.585,0.77799],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[375.343,0.64407],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[376.151,0.49113],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[376.778,0.32529],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[377.451,0.16129],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[377.962,0.0023865],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[378.551,-0.15007],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[379.264,-0.28897],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[379.809,-0.40999],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[380.381,-0.54106],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[380.905,-0.70733],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[381.44,-0.8839],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[381.962,-1.0458],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[382.53,-1.198],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[383.008,1.178],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[383.502,1.0398],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[383.993,0.89791],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[384.482,0.75499],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[385.02,0.60963],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[385.528,0.4672],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[386.034,0.32951],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[386.554,0.211],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[387.045,0.096404],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[387.582,-0.024809],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[388.084,-0.15552],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[388.739,-0.29883],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[389.392,-0.4345],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[389.929,-0.55229],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[390.464,-0.66689],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[391.026,-0.78337],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[391.576,-0.89229],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[392.083,-1.0002],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[392.622,-1.0977],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[393.165,-1.1902],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[393.706,1.2193],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[394.222,1.1242],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[394.742,1.0365],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[395.274,0.95117],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[395.795,0.88051],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[396.339,0.81615],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[396.866,0.74386],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[397.397,0.67159],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[397.992,0.62673],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[398.533,0.58653],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[399.309,0.5282],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[399.849,0.46433],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[400.367,0.39411],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[400.902,0.32675],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[401.419,0.27645],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[401.932,0.25915],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[402.491,0.26724],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[402.989,0.26789],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[403.483,0.24692],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[403.98,0.2177],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[404.504,0.19319],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[405.02,0.17295],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[405.517,0.16837],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[406.022,0.19257],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[406.562,0.22835],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[407.093,0.25543],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[407.586,0.26249],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[408.078,0.27375],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[408.609,0.30919],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[409.18,0.34021],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[409.683,0.36476],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[410.159,0.39643],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[410.646,0.45178],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[411.173,0.53417],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[411.74,0.60787],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[412.261,0.66604],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[412.835,0.71579],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[413.372,0.75471],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[413.943,0.81602],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[414.45,0.91621],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[414.986,1.0237],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[415.5,1.1235],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[416.09,1.2029],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[416.612,-1.2228],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[417.113,-1.1063],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[417.608,-0.9966],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[418.106,-0.90493],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[418.605,-0.82277],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[419.108,-0.73153],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[419.62,-0.61807],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[420.125,-0.47219],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[420.602,-0.30807],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[421.117,-0.16862],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[421.649,-0.060047],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[422.147,0.043655],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[422.623,0.15222],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[423.11,0.2689],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[423.601,0.39611],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[424.138,0.55058],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[424.624,0.72287],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[425.112,0.86997],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[425.628,0.99156],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[426.116,1.1173],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[426.586,-1.24],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[427.11,-1.0639],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[427.613,-0.91057],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[428.123,-0.77666],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[428.619,-0.63915],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[429.104,-0.49825],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[429.664,-0.34264],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[430.152,-0.17523],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[430.677,-0.022691],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[431.195,0.12611],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[431.745,0.28729],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[432.258,0.44812],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[432.75,0.59122],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[433.255,0.71119],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[433.773,0.84311],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[434.287,0.98584],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[434.851,1.133],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[435.377,-1.2202],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[435.861,-1.0641],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[436.342,-0.91619],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[436.825,-0.77342],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[437.34,-0.6422],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[437.862,-0.52139],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[438.456,-0.39142],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[438.955,-0.25011],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[439.457,-0.10674],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[440.001,0.023853],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[440.564,0.14366],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[441.168,0.26338],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[441.728,0.39215],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[442.273,0.53128],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[442.872,0.65525],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[443.401,0.75],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[443.919,0.83492],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[444.465,0.94415],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[445.099,1.061],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[445.709,1.1561],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[446.289,1.2423],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[446.901,-1.1819],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[447.418,-1.0837],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[447.939,-0.98104],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[448.434,-0.89998],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[448.958,-0.83218],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[449.523,-0.76557],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[450.029,-0.70925],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[450.551,-0.64308],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[451.056,-0.5763],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[451.572,-0.52963],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[452.057,-0.50569],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[452.582,-0.47358],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[453.155,-0.42463],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[453.69,-0.37843],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[454.283,-0.32368],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[454.834,-0.27937],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[455.52,-0.26568],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[456.146,-0.27527],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[456.726,-0.26959],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[457.277,-0.23392],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[457.846,-0.2158],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[458.414,-0.2329],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[458.92,-0.25157],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[459.451,-0.26674],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[459.958,-0.27693],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[460.527,-0.2812],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[461.152,-0.29838],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[461.784,-0.3378],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[462.329,-0.3903],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[462.833,-0.43982],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[463.388,-0.48104],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[463.913,-0.51595],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[464.392,-0.55395],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[464.875,-0.608],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[465.405,-0.68237],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[465.904,-0.76757],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[466.376,-0.83986],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[466.923,-0.89835],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[467.445,-0.98482],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[467.974,-1.0797],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[468.524,-1.148],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[469.006,-1.2384],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[469.528,1.165],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[470.063,1.0728],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[470.579,0.98191],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[471.101,0.88959],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[471.62,0.79973],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[472.143,0.69227],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[472.646,0.55999],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[473.171,0.43095],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[473.653,0.31079],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[474.158,0.1799],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[474.685,0.048264],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[475.201,-0.07039],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[475.691,-0.18744],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[476.212,-0.31278],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[476.737,-0.44659],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[477.236,-0.58283],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[477.751,-0.72059],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[478.306,-0.86145],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[478.805,-1.0058],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[479.287,-1.1562],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[479.769,1.2123],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[480.256,1.0778],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[480.738,0.94296],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[481.243,0.7899],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[481.749,0.6144],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[482.286,0.45033],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[482.758,0.29822],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[483.293,0.14802],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[483.818,-0.002082],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[484.375,-0.14411],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[484.905,-0.2804],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[485.397,-0.4313],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[485.932,-0.58441],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[486.472,-0.7359],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[486.981,-0.89367],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[487.481,-1.0431],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[487.961,-1.1844],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[488.502,1.1741],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[489.032,1.0198],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[489.577,0.87735],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[490.066,0.75068],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[490.56,0.63346],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[491.036,0.49834],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[491.531,0.3648],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[492.028,0.24793],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[492.552,0.11779],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[493.049,-0.044439],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[493.563,-0.20824],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[494.107,-0.32674],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[494.642,-0.41366],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[495.143,-0.51368],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[495.643,-0.6394],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[496.162,-0.77916],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[496.658,-0.91854],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[497.15,-1.0358],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[497.621,-1.1103],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[498.098,-1.1638],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[498.574,-1.2459],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[499.069,1.1635],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[499.563,1.0526],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[500.053,0.94767],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[500.56,0.86136],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[501.042,0.79202],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[501.566,0.73087],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[502.084,0.67214],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[502.589,0.61188],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[503.069,0.5468],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[503.554,0.49338],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[504.046,0.4627],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[504.595,0.4373],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[505.085,0.40192],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[505.581,0.35129],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[506.054,0.30982],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[506.53,0.28995],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[507.074,0.25865],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[507.553,0.21291],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[508.05,0.17765],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[508.534,0.18142],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[509.032,0.19946],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[509.537,0.21379],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[510.044,0.235],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[510.576,0.25103],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[511.054,0.27437],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[511.527,0.28897],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[512.033,0.28348],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[512.521,0.28126],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[513.009,0.30317],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[513.535,0.36345],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[514.013,0.44198],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[514.499,0.51011],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[515.028,0.55073],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[515.528,0.58095],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[516.008,0.63018],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[516.504,0.70017],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[516.999,0.78064],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[517.496,0.85517],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[518.03,0.91919],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[518.512,0.99869],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[519.021,1.1012],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[519.511,1.2234],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[519.998,-1.1745],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[520.513,-1.08],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[520.989,-1.0151],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[521.503,-0.93567],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[521.984,-0.81257],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[522.492,-0.69314],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[522.982,-0.57386],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[523.524,-0.45187],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[524.011,-0.33263],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[524.527,-0.22348],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[525.025,-0.12254],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[525.518,-0.0019061],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[525.995,0.15021],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[526.47,0.31931],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[526.928,0.47413],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[527.409,0.58996],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[527.922,0.70103],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[528.522,0.83684],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[529.004,0.98118],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[529.527,1.1253],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[530.028,-1.2378],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[530.554,-1.0877],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[531.051,-0.94841],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[531.539,-0.80468],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[532.012,-0.64535],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[532.507,-0.49017],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[533.018,-0.33569],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[533.544,-0.16937],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[534.065,-0.023112],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[534.597,0.11112],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[535.148,0.26344],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[535.674,0.4173],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[536.164,0.56737],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[536.662,0.72628],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[537.138,0.86883],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[537.637,0.99751],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[538.164,1.1254],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[538.681,-1.2434],"mems":[[541.934,-2.8357E-05]]}
-{"quant":[539.192,-1.0802],"mems":[[541.934,-2.8357E-05],[541.93737,-3.042E-05],[541.94074,-3.0935E-05],[541.9441,-2.9904E-05],[541.94747,-3.2482E-05],[541.95084,-3.1451E-05],[541.95421,-2.8873E-05],[541.95758,-2.9389E-05],[541.96094,-3.042E-05],[541.96431,-3.2482E-05],[541.96768,-3.4544E-05],[541.97105,-3.2998E-05],[541.97442,-2.8873E-05],[541.97778,-2.8357E-05],[541.98115,-2.9389E-05],[541.98452,-2.9389E-05],[541.98789,-2.6811E-05],[541.99126,-2.8357E-05],[541.99462,-3.2998E-05],[541.99799,-2.9389E-05],[542.00136,-2.7842E-05],[542.00473,-2.9904E-05]]}
-{"quant":[539.675,-0.92614],"mems":[[542.09566,-2.0108E-05],[542.09903,-3.042E-05],[542.1024,-3.2998E-05],[542.10577,-3.0935E-05],[542.10914,-3.0935E-05],[542.1125,-2.7842E-05],[542.11587,-2.8357E-05],[542.11924,-3.2998E-05],[542.12261,-3.0935E-05],[542.12598,-2.8873E-05],[542.12934,-2.5779E-05],[542.13271,-2.6811E-05],[542.13608,-2.9904E-05],[542.13945,-2.6295E-05],[542.14282,-3.1967E-05],[542.14618,-3.042E-05],[542.14955,-2.6295E-05],[542.15292,-2.4233E-05],[542.15629,-2.1655E-05],[542.15966,-2.9904E-05],[542.16302,-2.9389E-05],[542.16639,-3.042E-05],[542.16976,-2.9904E-05],[542.17313,-2.8357E-05],[542.1765,-3.042E-05],[542.17986,-3.1451E-05],[542.18323,-3.506E-05],[542.1866,-3.3513E-05],[542.18997,-3.4544E-05],[542.19334,-2.9904E-05],[542.1967,-2.7326E-05],[542.20007,-2.9389E-05],[542.20344,-2.9904E-05],[542.20681,-3.2482E-05],[542.21018,-2.7326E-05],[542.21354,-2.3202E-05],[542.21691,-2.9389E-05],[542.22028,-3.6091E-05],[542.22365,-3.2482E-05],[542.22702,-2.8873E-05],[542.23038,-2.8357E-05],[542.23375,-2.9389E-05],[542.23712,-3.3513E-05],[542.24049,-2.8357E-05]]}
-{"quant":[540.202,-0.77749],"mems":[[542.34826,-2.8357E-05],[542.35163,-2.217E-05],[542.355,-2.8357E-05],[542.35837,-2.8357E-05],[542.36174,-2.8873E-05],[542.3651,-3.2482E-05],[542.36847,-2.7842E-05],[542.37184,-3.0935E-05],[542.37521,-2.9904E-05],[542.37858,-2.9389E-05],[542.38194,-3.6091E-05],[542.38531,-3.4029E-05],[542.38868,-3.0935E-05],[542.39205,-3.0935E-05],[542.39542,-3.0935E-05],[542.39878,-3.1967E-05],[542.40215,-2.8357E-05],[542.40552,-2.9904E-05],[542.40889,-3.1967E-05],[542.41226,-2.7326E-05],[542.41562,-2.9389E-05],[542.41899,-2.8357E-05],[542.42236,-2.8873E-05],[542.42573,-2.9904E-05],[542.4291,-2.5264E-05],[542.43246,-2.9904E-05],[542.43583,-3.2482E-05],[542.4392,-3.2998E-05],[542.44257,-3.1967E-05],[542.44594,-2.8357E-05],[542.4493,-3.0935E-05],[542.45267,-2.9904E-05],[542.45604,-2.7842E-05],[542.45941,-2.7842E-05],[542.46278,-2.8873E-05],[542.46614,-2.9904E-05],[542.46951,-2.8357E-05],[542.47288,-2.9904E-05],[542.47625,-2.9389E-05],[542.47962,-2.9904E-05],[542.48298,-2.9389E-05],[542.48635,-2.8873E-05],[542.48972,-2.9904E-05],[542.49309,-3.042E-05]]}
-{"quant":[540.732,-0.63555],"mems":[[542.60423,-2.4748E-05],[542.6076,-2.6811E-05],[542.61097,-2.8357E-05],[542.61434,-2.8873E-05],[542.6177,-3.1451E-05],[542.62107,-2.8357E-05],[542.62444,-2.5264E-05],[542.62781,-2.8873E-05],[542.63118,-3.2998E-05],[542.63454,-3.3513E-05],[542.63791,-2.8873E-05],[542.64128,-2.8873E-05],[542.64465,-3.1451E-05],[542.64802,-3.1967E-05],[542.65138,-2.9904E-05],[542.65475,-3.1967E-05],[542.65812,-3.3513E-05],[542.66149,-2.7326E-05],[542.66486,-2.8873E-05],[542.66822,-2.8357E-05],[542.67159,-2.9904E-05],[542.67496,-3.042E-05],[542.67833,-2.9904E-05],[542.6817,-3.042E-05],[542.68506,-2.217E-05],[542.68843,-2.9389E-05],[542.6918,-3.2482E-05],[542.69517,-2.9389E-05],[542.69854,-3.1967E-05],[542.7019,-2.6295E-05],[542.70527,-2.8873E-05],[542.70864,-2.9389E-05],[542.71201,-3.042E-05],[542.71538,-3.2998E-05],[542.71874,-2.9904E-05],[542.72211,-2.9904E-05],[542.72548,-3.042E-05],[542.72885,-3.1967E-05],[542.73222,-3.042E-05],[542.73558,-2.8357E-05],[542.73895,-2.8357E-05],[542.74232,-3.042E-05],[542.74569,-3.2482E-05],[542.74906,-3.0935E-05]]}
-{"quant":[541.263,-0.50456],"mems":[[542.8602,-3.2482E-05],[542.86357,-2.7842E-05],[542.86694,-2.6811E-05],[542.8703,-2.9389E-05],[542.87367,-3.0935E-05],[542.87704,-2.8873E-05],[542.88041,-2.7326E-05],[542.88378,-3.042E-05],[542.88714,-3.0935E-05],[542.89051,-3.1967E-05],[542.89388,-2.8357E-05],[542.89725,-2.5779E-05],[542.90062,-3.2998E-05],[542.90398,-3.042E-05],[542.90735,-2.7842E-05],[542.91072,-3.506E-05],[542.91409,-3.2482E-05],[542.91746,-2.6295E-05],[542.92082,-3.0935E-05],[542.92419,-3.6091E-05],[542.92756,-3.506E-05],[542.93093,-3.2998E-05],[542.9343,-2.8357E-05],[542.93766,-2.6811E-05],[542.94103,-3.0935E-05],[542.9444,-2.8873E-05],[542.94777,-2.8873E-05],[542.95114,-2.8873E-05],[542.9545,-2.5264E-05],[542.95787,-2.9389E-05],[542.96124,-2.6811E-05],[542.96461,-2.5264E-05],[542.96798,-2.5779E-05],[542.97134,-2.6811E-05],[542.97471,-2.9389E-05],[542.97808,-2.4233E-05],[542.98145,-2.8357E-05],[542.98482,-3.042E-05],[542.98818,-2.4748E-05],[542.99155,-2.4748E-05],[542.99492,-2.7326E-05],[542.99829,-3.0935E-05],[543.00166,-2.9389E-05],[543.00502,-3.0935E-05]]}
-{"quant":[541.794,-0.3784],"mems":[[543.11617,-3.1451E-05],[543.11954,-3.3513E-05],[543.1229,-3.2482E-05],[543.12627,-3.2482E-05],[543.12964,-3.1967E-05],[543.13301,-3.4544E-05],[543.13638,-3.506E-05],[543.13974,-3.042E-05],[543.14311,-2.9389E-05],[543.14648,-3.2482E-05],[543.14985,-3.1967E-05],[543.15322,-2.6295E-05],[543.15658,-2.7326E-05],[543.15995,-3.2482E-05],[543.16332,-2.8873E-05],[543.16669,-2.5264E-05],[543.17006,-2.7326E-05],[543.17342,-2.9904E-05],[543.17679,-3.2482E-05],[543.18016,-3.0935E-05],[543.18353,-2.8357E-05],[543.1869,-3.042E-05],[543.19026,-3.0935E-05],[543.19363,-3.1451E-05],[543.197,-3.1451E-05],[543.20037,-3.2482E-05],[543.20374,-3.3513E-05],[543.2071,-2.9389E-05],[543.21047,-2.9904E-05],[543.21384,-3.1967E-05],[543.21721,-2.9389E-05],[543.22058,-3.1451E-05],[543.22394,-2.8357E-05],[543.22731,-2.6295E-05],[543.23068,-2.6811E-05],[543.23405,-2.5264E-05],[543.23742,-3.1451E-05],[543.24078,-2.8357E-05],[543.24415,-2.8873E-05],[543.24752,-3.4029E-05],[543.25089,-2.6811E-05],[543.25426,-2.7842E-05],[543.25762,-3.2482E-05],[543.26099,-3.4029E-05]]}
-{"quant":[542.301,-2.9788E-05],"mems":[[542.20344,-2.9904E-05],[542.20681,-3.2482E-05],[542.21018,-2.7326E-05],[542.21354,-2.3202E-05],[542.21691,-2.9389E-05],[542.22028,-3.6091E-05],[542.22365,-3.2482E-05],[542.22702,-2.8873E-05],[542.23038,-2.8357E-05],[542.23375,-2.9389E-05],[542.23712,-3.3513E-05],[542.24049,-2.8357E-05],[542.24386,-2.7326E-05],[542.24722,-3.2998E-05],[542.25059,-2.8873E-05],[542.25396,-2.7842E-05],[542.25733,-2.7842E-05],[542.2607,-2.8357E-05],[542.26406,-2.9389E-05],[542.26743,-2.8873E-05],[542.2708,-3.2998E-05],[542.27417,-3.1451E-05],[542.27754,-3.042E-05],[542.2809,-3.0935E-05],[542.28427,-3.0935E-05],[542.28764,-3.2998E-05],[542.29101,-2.8873E-05],[542.29438,-2.9389E-05],[542.29774,-3.042E-05],[542.30111,-2.7842E-05],[542.30448,-2.8873E-05],[542.30785,-2.9904E-05],[542.31122,-2.8873E-05],[542.31458,-2.7326E-05],[542.31795,-2.9389E-05],[542.32132,-2.8873E-05],[542.32469,-2.6295E-05],[542.32806,-2.6811E-05],[542.33142,-2.8873E-05],[542.33479,-3.2482E-05],[542.33816,-3.3513E-05],[542.34153,-3.1967E-05],[542.3449,-3.2482E-05],[542.34826,-2.8357E-05],[542.35163,-2.217E-05],[542.355,-2.8357E-05],[542.35837,-2.8357E-05],[542.36174,-2.8873E-05],[542.3651,-3.2482E-05],[542.36847,-2.7842E-05],[542.37184,-3.0935E-05],[542.37521,-2.9904E-05],[542.37858,-2.9389E-05],[542.38194,-3.6091E-05],[542.38531,-3.4029E-05],[542.38868,-3.0935E-05],[542.39205,-3.0935E-05],[542.39542,-3.0935E-05],[542.39878,-3.1967E-05],[542.40215,-2.8357E-05],[542.40552,-2.9904E-05],[542.40889,-3.1967E-05],[542.41226,-2.7326E-05],[542.41562,-2.9389E-05],[542.41899,-2.8357E-05],[542.42236,-2.8873E-05],[542.42573,-2.9904E-05],[542.4291,-2.5264E-05],[542.43246,-2.9904E-05],[542.43583,-3.2482E-05],[542.4392,-3.2998E-05],[542.44257,-3.1967E-05],[542.44594,-2.8357E-05],[542.4493,-3.0935E-05],[542.45267,-2.9904E-05],[542.45604,-2.7842E-05],[542.45941,-2.7842E-05],[542.46278,-2.8873E-05],[542.46614,-2.9904E-05],[542.46951,-2.8357E-05],[542.47288,-2.9904E-05],[542.47625,-2.9389E-05],[542.47962,-2.9904E-05],[542.48298,-2.9389E-05],[542.48635,-2.8873E-05],[542.48972,-2.9904E-05],[542.49309,-3.042E-05],[542.49646,-3.2998E-05],[542.49982,-2.9389E-05],[542.50319,-2.7842E-05]]}
-{"quant":[542.868,-2.9555E-05],"mems":[[542.76926,-3.042E-05],[542.77263,-2.3202E-05],[542.776,-2.3717E-05],[542.77937,-3.2482E-05],[542.78274,-2.8357E-05],[542.7861,-2.5779E-05],[542.78947,-3.1451E-05],[542.79284,-2.8357E-05],[542.79621,-2.9389E-05],[542.79958,-3.0935E-05],[542.80294,-2.6811E-05],[542.80631,-3.2482E-05],[542.80968,-3.2482E-05],[542.81305,-2.7842E-05],[542.81642,-2.7842E-05],[542.81978,-2.5779E-05],[542.82315,-2.6811E-05],[542.82652,-3.1451E-05],[542.82989,-2.9389E-05],[542.83326,-2.7842E-05],[542.83662,-2.8357E-05],[542.83999,-2.5779E-05],[542.84336,-2.8873E-05],[542.84673,-2.7842E-05],[542.8501,-2.6295E-05],[542.85346,-2.6811E-05],[542.85683,-2.8873E-05],[542.8602,-3.2482E-05],[542.86357,-2.7842E-05],[542.86694,-2.6811E-05],[542.8703,-2.9389E-05],[542.87367,-3.0935E-05],[542.87704,-2.8873E-05],[542.88041,-2.7326E-05],[542.88378,-3.042E-05],[542.88714,-3.0935E-05],[542.89051,-3.1967E-05],[542.89388,-2.8357E-05],[542.89725,-2.5779E-05],[542.90062,-3.2998E-05],[542.90398,-3.042E-05],[542.90735,-2.7842E-05],[542.91072,-3.506E-05],[542.91409,-3.2482E-05],[542.91746,-2.6295E-05],[542.92082,-3.0935E-05],[542.92419,-3.6091E-05],[542.92756,-3.506E-05],[542.93093,-3.2998E-05],[542.9343,-2.8357E-05],[542.93766,-2.6811E-05],[542.94103,-3.0935E-05],[542.9444,-2.8873E-05],[542.94777,-2.8873E-05],[542.95114,-2.8873E-05],[542.9545,-2.5264E-05],[542.95787,-2.9389E-05],[542.96124,-2.6811E-05],[542.96461,-2.5264E-05],[542.96798,-2.5779E-05],[542.97134,-2.6811E-05],[542.97471,-2.9389E-05],[542.97808,-2.4233E-05],[542.98145,-2.8357E-05],[542.98482,-3.042E-05],[542.98818,-2.4748E-05],[542.99155,-2.4748E-05],[542.99492,-2.7326E-05],[542.99829,-3.0935E-05],[543.00166,-2.9389E-05],[543.00502,-3.0935E-05],[543.00839,-3.1967E-05],[543.01176,-2.9389E-05],[543.01513,-3.1967E-05],[543.0185,-2.9389E-05],[543.02186,-3.1451E-05],[543.02523,-3.2482E-05],[543.0286,-2.7842E-05],[543.03197,-3.042E-05],[543.03534,-2.9904E-05],[543.0387,-2.9389E-05],[543.04207,-3.2482E-05],[543.04544,-3.506E-05],[543.04881,-2.9904E-05],[543.05218,-2.5264E-05],[543.05554,-2.5264E-05],[543.05891,-2.7326E-05],[543.06228,-3.5576E-05],[543.06565,-3.3513E-05],[543.06902,-2.9389E-05]]}
-{"quant":[543.368,-3.0952E-05],"mems":[[543.2711,-2.7842E-05],[543.27446,-2.8357E-05],[543.27783,-2.9389E-05],[543.2812,-2.8357E-05],[543.28457,-2.7326E-05],[543.28794,-2.8357E-05],[543.2913,-2.9904E-05],[543.29467,-2.9389E-05],[543.29804,-3.2998E-05],[543.30141,-3.506E-05],[543.30478,-2.9904E-05],[543.30814,-3.042E-05],[543.31151,-2.7842E-05],[543.31488,-2.8357E-05],[543.31825,-3.0935E-05],[543.32162,-3.1451E-05],[543.32498,-3.4029E-05],[543.32835,-2.9389E-05],[543.33172,-2.8357E-05],[543.33509,-3.1967E-05],[543.33846,-3.3513E-05],[543.34182,-3.3513E-05],[543.34519,-2.7326E-05],[543.34856,-3.0935E-05],[543.35193,-3.2998E-05],[543.3553,-3.1451E-05],[543.35866,-3.7122E-05],[543.36203,-3.2998E-05],[543.3654,-3.0935E-05],[543.36877,-2.9904E-05],[543.37214,-2.9904E-05],[543.3755,-3.1451E-05],[543.37887,-3.1451E-05],[543.38224,-3.6607E-05],[543.38561,-3.1451E-05],[543.38898,-2.8873E-05],[543.39234,-3.4029E-05],[543.39571,-3.4029E-05],[543.39908,-3.4544E-05],[543.40245,-2.9389E-05],[543.40582,-2.4233E-05],[543.40918,-2.8357E-05],[543.41255,-3.1967E-05],[543.41592,-3.0935E-05],[543.41929,-2.9904E-05],[543.42266,-3.2482E-05],[543.42602,-2.8873E-05],[543.42939,-2.7326E-05],[543.43276,-3.1967E-05],[543.43613,-3.3513E-05],[543.4395,-3.2998E-05],[543.44286,-3.0935E-05],[543.44623,-3.0935E-05],[543.4496,-2.9389E-05],[543.45297,-3.2482E-05],[543.45634,-3.3513E-05],[543.4597,-2.9904E-05],[543.46307,-2.8357E-05],[543.46644,-2.7842E-05],[543.46981,-3.1967E-05],[543.47318,-2.8873E-05],[543.47654,-2.8873E-05],[543.47991,-3.1451E-05],[543.48328,-2.9389E-05],[543.48665,-2.7326E-05],[543.49002,-2.5779E-05],[543.49338,-3.3513E-05],[543.49675,-3.4029E-05],[543.50012,-2.8873E-05],[543.50349,-3.1451E-05],[543.50686,-2.8873E-05],[543.51022,-2.7326E-05],[543.51359,-3.1451E-05],[543.51696,-3.1451E-05],[543.52033,-3.2482E-05],[543.5237,-2.8357E-05],[543.52706,-2.9389E-05],[543.53043,-3.3513E-05],[543.5338,-3.042E-05],[543.53717,-2.9389E-05],[543.54054,-2.4748E-05],[543.5439,-2.3717E-05],[543.54727,-2.6295E-05],[543.55064,-2.7326E-05],[543.55401,-2.6295E-05],[543.55738,-2.8357E-05],[543.56074,-2.6295E-05],[543.56411,-2.6811E-05],[543.56748,-3.4544E-05],[543.57085,-3.0935E-05]]}
-{"quant":[543.853,-2.9638E-05],"mems":[[543.75609,-3.2482E-05],[543.75946,-2.9389E-05],[543.76282,-3.2998E-05],[543.76619,-3.5576E-05],[543.76956,-2.9389E-05],[543.77293,-2.6811E-05],[543.7763,-2.8357E-05],[543.77966,-2.9389E-05],[543.78303,-3.1967E-05],[543.7864,-3.7122E-05],[543.78977,-3.7638E-05],[543.79314,-2.8357E-05],[543.7965,-2.1655E-05],[543.79987,-2.6811E-05],[543.80324,-2.9904E-05],[543.80661,-3.4029E-05],[543.80998,-3.6091E-05],[543.81334,-2.9904E-05],[543.81671,-2.5264E-05],[543.82008,-2.3717E-05],[543.82345,-2.8873E-05],[543.82682,-3.1451E-05],[543.83018,-2.8357E-05],[543.83355,-2.9389E-05],[543.83692,-2.9389E-05],[543.84029,-2.7842E-05],[543.84366,-2.7326E-05],[543.84702,-3.0935E-05],[543.85039,-3.0935E-05],[543.85376,-2.5779E-05],[543.85713,-2.6811E-05],[543.8605,-3.0935E-05],[543.86386,-3.1967E-05],[543.86723,-3.1451E-05],[543.8706,-3.2482E-05],[543.87397,-2.7326E-05],[543.87734,-2.3717E-05],[543.8807,-2.8357E-05],[543.88407,-2.9389E-05],[543.88744,-2.9904E-05],[543.89081,-3.1967E-05],[543.89418,-2.9904E-05],[543.89754,-3.042E-05],[543.90091,-3.1451E-05],[543.90428,-2.8357E-05],[543.90765,-2.9389E-05],[543.91102,-3.1967E-05],[543.91438,-3.042E-05],[543.91775,-2.6295E-05],[543.92112,-2.8873E-05],[543.92449,-3.1451E-05],[543.92786,-2.8873E-05],[543.93122,-2.6811E-05],[543.93459,-2.7326E-05],[543.93796,-3.1451E-05],[543.94133,-3.1967E-05],[543.9447,-3.3513E-05],[543.94806,-3.0935E-05],[543.95143,-2.9389E-05],[543.9548,-2.9904E-05],[543.95817,-2.8357E-05],[543.96154,-3.042E-05],[543.9649,-2.8357E-05],[543.96827,-2.6295E-05],[543.97164,-2.9904E-05],[543.97501,-3.3513E-05],[543.97838,-3.1451E-05],[543.98174,-3.042E-05],[543.98511,-2.9904E-05],[543.98848,-3.042E-05],[543.99185,-3.0935E-05],[543.99522,-2.7326E-05],[543.99858,-2.8873E-05],[544.00195,-2.7842E-05],[544.00532,-2.5264E-05],[544.00869,-2.5779E-05],[544.01206,-2.1139E-05],[544.01542,-2.7326E-05],[544.01879,-3.3513E-05],[544.02216,-3.1451E-05],[544.02553,-3.1967E-05],[544.0289,-2.9904E-05],[544.03226,-2.5779E-05],[544.03563,-2.7842E-05],[544.039,-3.1451E-05],[544.04237,-2.7842E-05],[544.04574,-2.7842E-05],[544.0491,-2.8357E-05],[544.05247,-2.5779E-05],[544.05584,-2.8357E-05]]}
-{"quant":[544.317,0.28804],"mems":[[544.2175,-2.9904E-05],[544.22087,-3.1967E-05],[544.22424,-2.7842E-05],[544.22761,-3.0935E-05],[544.23098,-3.042E-05],[544.23434,-2.7842E-05],[544.23771,-2.9904E-05],[544.24108,-2.6811E-05],[544.24445,-2.7842E-05],[544.24782,-2.6295E-05],[544.25118,-2.8357E-05],[544.25455,-3.4029E-05],[544.25792,-2.9904E-05],[544.26129,-3.1451E-05],[544.26466,-2.7326E-05],[544.26802,-2.0624E-05],[544.27139,-2.6811E-05],[544.27476,-2.7326E-05],[544.27813,-2.6811E-05],[544.2815,-2.8873E-05],[544.28486,-2.6811E-05],[544.28823,-2.7326E-05],[544.2916,-2.9389E-05],[544.29497,-3.1451E-05],[544.29834,-3.0935E-05],[544.3017,-2.7842E-05],[544.30507,-2.8873E-05],[544.30844,-2.9904E-05],[544.31181,-3.0935E-05],[544.31518,-3.2482E-05],[544.31854,-2.9389E-05],[544.32191,-3.1967E-05],[544.32528,-3.1451E-05],[544.32865,-2.8873E-05],[544.33202,-3.8154E-05],[544.33538,-3.4029E-05],[544.33875,-2.7326E-05],[544.34212,-3.3513E-05],[544.34549,-3.0935E-05],[544.34886,-3.0935E-05],[544.35222,-2.9904E-05],[544.35559,-2.7326E-05],[544.35896,-3.506E-05],[544.36233,-2.9904E-05],[544.3657,-2.2686E-05],[544.36906,-2.7842E-05],[544.37243,-3.4029E-05],[544.3758,-3.1967E-05],[544.37917,-2.6295E-05],[544.38254,-2.7842E-05],[544.3859,-2.9389E-05],[544.38927,-3.3513E-05],[544.39264,-3.0935E-05],[544.39601,-2.7326E-05],[544.39938,-3.6091E-05],[544.40274,-3.1451E-05],[544.40611,-2.7326E-05],[544.40948,-2.6811E-05],[544.41285,-2.5264E-05],[544.41622,-2.9389E-05],[544.41958,-2.8357E-05],[544.42295,-3.042E-05],[544.42632,-3.4544E-05],[544.42969,-2.8873E-05],[544.43306,-2.8357E-05],[544.43642,-3.1967E-05],[544.43979,-2.8873E-05],[544.44316,-2.5264E-05],[544.44653,-2.6295E-05],[544.4499,-2.9389E-05],[544.45326,-2.7842E-05],[544.45663,-2.7326E-05],[1516.499,-2.9389E-05]]}
-{"quant":[544.829,0.40416],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[545.309,0.51093],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[545.877,0.61452],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[546.368,0.73374],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[546.866,0.87017],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[586.243,0.99266],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[586.753,1.0711],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[587.306,1.1362],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[587.809,1.2306],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[588.301,-1.167],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[588.81,-1.0603],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[589.314,-0.96376],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[589.806,-0.89226],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[590.297,-0.85234],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[590.788,-0.80174],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[591.263,-0.73023],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[591.763,-0.64978],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[592.271,-0.58098],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[592.762,-0.53152],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[593.257,-0.48173],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[593.749,-0.42811],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[594.247,-0.3755],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[594.744,-0.33115],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[595.275,-0.30595],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[595.754,-0.30447],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[596.224,-0.29538],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[596.693,-0.26374],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[597.184,-0.2481],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[597.707,-0.24478],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[598.183,-0.23155],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[598.671,-0.22676],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[599.17,-0.24538],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[599.677,-0.27538],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[600.211,-0.28701],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[600.708,-0.28547],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[601.211,-0.2946],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[601.705,-0.32958],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[602.212,-0.38469],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[602.724,-0.43978],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[603.223,-0.49445],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[603.734,-0.53413],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[604.28,-0.56132],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[604.769,-0.60838],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[605.254,-0.68349],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[605.733,-0.76987],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[606.235,-0.83865],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[606.703,-0.90125],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[607.189,-0.97713],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[607.705,-1.0628],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[608.21,-1.1485],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[608.711,-1.2366],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[609.207,1.1865],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[609.701,1.0944],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[610.23,1.0043],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[610.75,0.90946],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[611.253,0.79517],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[611.75,0.66294],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[612.217,0.51888],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[612.721,0.39386],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[613.266,0.28924],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[613.784,0.18979],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[614.284,0.088285],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[614.819,-0.026527],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[615.35,-0.1588],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[615.876,-0.30758],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[616.379,-0.46305],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[616.887,-0.61761],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[617.427,-0.76762],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[617.948,-0.90197],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[618.462,-1.0189],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[618.966,-1.1478],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[619.461,1.2106],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[619.96,1.0519],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[620.473,0.90373],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[620.942,0.77342],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[621.427,0.63344],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[621.928,0.47078],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[622.451,0.30809],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[622.935,0.15875],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[623.429,0.017836],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[623.956,-0.12129],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[624.468,-0.27234],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[624.952,-0.43864],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[625.527,-0.59595],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[626.02,-0.74142],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[626.516,-0.89014],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[627.031,-1.0468],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[627.542,-1.1921],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[628.051,1.1838],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[628.544,1.0418],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[629.035,0.89484],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[629.529,0.74067],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[630.023,0.59921],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[630.535,0.46713],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[631.067,0.33332],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[631.588,0.21226],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[632.096,0.093572],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[632.574,-0.039662],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[633.08,-0.18468],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[633.599,-0.31859],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[634.122,-0.44483],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[634.632,-0.57177],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[635.123,-0.6803],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[635.608,-0.77646],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[636.153,-0.87018],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[636.711,-0.97911],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[637.196,-1.1072],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[637.74,-1.2186],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[638.247,1.2183],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[638.783,1.143],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[639.3,1.0625],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[639.907,0.98166],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[640.415,0.88307],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[640.943,0.78698],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[641.548,0.71256],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[642.064,0.65406],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[642.6,0.59088],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[643.125,0.51638],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[643.666,0.45996],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[644.155,0.43703],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[644.638,0.42054],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[645.134,0.39529],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[645.618,0.34964],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[646.106,0.28845],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[646.612,0.24523],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[647.085,0.23594],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[647.563,0.22764],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[648.057,0.20519],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[648.599,0.19959],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[649.193,0.21349],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[649.695,0.22335],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[650.212,0.22829],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[650.717,0.23277],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[651.238,0.23692],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[651.824,0.26003],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[652.32,0.28136],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[652.806,0.30998],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[653.288,0.3574],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[653.824,0.39573],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[654.377,0.43559],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[654.921,0.4875],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[655.452,0.54573],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[656.013,0.60427],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[656.519,0.66156],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[657.017,0.72979],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[657.58,0.82244],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[658.081,0.91499],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[658.613,0.98475],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[659.325,1.0329],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[659.847,1.0927],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[660.383,1.1794],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[660.951,-1.2237],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[661.464,-1.1097],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[661.963,-1.0191],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[662.451,-0.92354],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[662.934,-0.81538],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[663.437,-0.70675],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[663.963,-0.59314],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[664.503,-0.46906],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[665.143,-0.34264],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[665.761,-0.2161],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[666.276,-0.092729],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[666.787,0.030896],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[667.318,0.15863],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[667.839,0.28478],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[668.383,0.41489],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[668.878,0.55802],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[669.383,0.69433],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[669.905,0.81812],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[670.406,0.95065],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[670.908,1.0986],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[671.389,-1.2536],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[671.936,-1.0898],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[672.449,-0.9249],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[673.012,-0.76222],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[673.502,-0.6106],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[674.005,-0.46918],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[674.528,-0.34153],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[675.071,-0.20876],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[675.58,-0.05731],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[676.132,0.089093],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[676.675,0.23017],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[677.201,0.38721],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[677.68,0.56592],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[678.181,0.73975],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[678.681,0.88932],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[679.262,1.0218],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[679.824,1.1562],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[680.324,-1.2168],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[680.832,-1.0812],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[681.361,-0.93875],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[681.915,-0.78651],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[682.431,-0.64261],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[682.954,-0.49859],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[683.454,-0.35435],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[683.985,-0.228],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[684.561,-0.10963],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[685.065,0.019309],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[685.562,0.14722],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[686.043,0.26725],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[686.522,0.39809],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[687.085,0.5237],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[687.594,0.63598],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[688.078,0.75368],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[688.573,0.86869],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[689.075,0.96673],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[689.593,1.0621],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[690.086,1.1594],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[690.572,1.2426],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[691.064,-1.1914],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[691.57,-1.1039],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[692.135,-1.0072],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[692.708,-0.91221],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[693.26,-0.83925],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[693.831,-0.78195],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[694.347,-0.71672],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[694.847,-0.63963],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[695.377,-0.57213],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[695.909,-0.52884],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[696.441,-0.48206],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[696.95,-0.43322],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[697.449,-0.39561],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[698.002,-0.36212],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[698.513,-0.33169],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[699.0,-0.29326],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[699.504,-0.25865],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[700.061,-0.24394],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[700.554,-0.23573],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[701.029,-0.23664],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[701.521,-0.24321],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[702.053,-0.24789],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[702.576,-0.25492],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[703.091,-0.26069],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[703.583,-0.27473],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[704.081,-0.30848],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[704.622,-0.34856],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[705.126,-0.37918],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[705.666,-0.3908],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[706.158,-0.40435],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[706.663,-0.44112],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[707.155,-0.49579],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[707.658,-0.56875],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[708.178,-0.64951],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[708.679,-0.72146],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[709.162,-0.77101],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[709.64,-0.82251],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[710.118,-0.89177],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[710.619,-0.97738],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[711.125,-1.0614],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[711.689,-1.1406],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[712.2,-1.2383],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[712.72,1.1697],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[713.243,1.0734],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[713.748,0.97582],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[714.284,0.87797],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[714.864,0.77882],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[715.372,0.67161],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[715.846,0.55711],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[716.402,0.43149],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[716.961,0.30786],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[717.447,0.1886],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[718.012,0.064417],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[718.539,-0.060404],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[719.027,-0.19569],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[719.534,-0.3412],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[720.029,-0.47071],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[720.519,-0.59906],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[721.017,-0.73476],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[721.507,-0.86585],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[721.988,-1.0096],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[722.467,-1.1666],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[722.988,1.1953],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[723.473,1.0454],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[723.974,0.89573],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[724.463,0.7492],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[724.974,0.60192],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[725.514,0.46268],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[726.062,0.33267],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[726.578,0.18338],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[727.077,0.023165],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[727.575,-0.14297],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[728.07,-0.30809],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[728.61,-0.46339],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[729.123,-0.60971],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[729.599,-0.74906],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[730.099,-0.89006],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[730.619,-1.0249],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[731.107,-1.1634],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[731.609,1.2143],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[732.084,1.0719],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[732.581,0.90942],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[733.112,0.7448],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[733.639,0.58787],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[734.174,0.4607],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[734.717,0.33729],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[735.297,0.19781],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[735.824,0.060958],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[736.348,-0.071731],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[736.886,-0.1956],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[737.443,-0.31441],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[737.962,-0.42967],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[738.463,-0.54252],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[738.992,-0.6582],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[739.52,-0.78311],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[740.029,-0.90445],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[740.513,-1.0043],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[741.019,-1.0899],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[741.532,-1.1755],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[742.051,1.2425],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[742.581,1.1384],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[743.118,1.0422],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[743.622,0.95342],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[744.161,0.88416],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[744.7,0.82559],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[745.204,0.75195],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[745.81,0.67779],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[746.319,0.61266],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[746.818,0.53967],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[747.342,0.47583],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[747.884,0.44301],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[748.38,0.41269],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[748.923,0.37163],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[749.437,0.33454],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[749.997,0.30947],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[750.497,0.27162],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[750.989,0.21894],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[751.509,0.18874],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[752.025,0.18636],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[752.536,0.20793],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[753.095,0.23518],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[753.611,0.23265],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[754.229,0.2083],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[754.794,0.20835],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[755.305,0.23625],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[755.87,0.2683],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[756.436,0.3011],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[756.968,0.34395],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[757.483,0.39224],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[757.968,0.41653],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[758.471,0.43873],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[759.002,0.4783],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[759.515,0.52519],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[760.055,0.57464],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[760.549,0.63851],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[761.052,0.71793],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[761.556,0.79185],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[762.084,0.86684],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[762.638,0.93903],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[763.149,1.0191],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[763.669,1.1292],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[764.165,1.2259],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[764.665,-1.2167],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[765.185,-1.134],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[765.693,-1.0298],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[766.209,-0.90052],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[766.709,-0.77867],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[767.227,-0.69147],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[767.758,-0.60529],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[768.253,-0.48442],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[768.737,-0.3445],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[769.252,-0.20659],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[769.8,-0.066623],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[770.336,0.062442],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[770.83,0.17267],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[771.322,0.29081],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[771.813,0.4233],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[772.373,0.55093],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[772.912,0.70119],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[773.453,0.87435],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[773.951,1.0291],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[774.458,1.167],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[774.97,-1.2139],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[775.513,-1.0836],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[776.027,-0.9536],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[776.516,-0.81573],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[777.032,-0.64316],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[777.538,-0.45472],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[778.044,-0.30902],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[778.528,-0.19195],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[779.022,-0.066371],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[779.566,0.077844],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[780.097,0.24551],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[780.624,0.41954],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[781.161,0.57653],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[781.659,0.71431],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[782.174,0.84194],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[782.679,0.98181],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[783.256,1.1469],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[783.759,-1.1868],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[784.301,-1.022],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[784.804,-0.89771],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[785.305,-0.7888],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[785.908,-0.67148],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[786.485,-0.53322],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[786.998,-0.38481],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[787.509,-0.23382],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[788.006,-0.086916],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[788.579,0.041027],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[789.061,0.15241],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[789.551,0.26787],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[790.083,0.40024],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[790.615,0.52721],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[791.118,0.64174],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[791.641,0.74873],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[792.181,0.85068],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[792.68,0.95492],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[793.208,1.075],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[793.689,1.1872],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[794.204,-1.2358],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[794.714,-1.1558],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[795.237,-1.0938],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[795.783,-1.0182],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[796.331,-0.92427],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[796.874,-0.84402],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[797.397,-0.77102],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[797.925,-0.69479],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[798.453,-0.62076],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[798.982,-0.55724],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[799.509,-0.51043],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[800.032,-0.47167],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[800.561,-0.43795],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[801.058,-0.39943],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[801.609,-0.34659],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[802.118,-0.29891],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[802.63,-0.26068],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[803.131,-0.23668],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[803.662,-0.24123],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[804.174,-0.25471],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[804.683,-0.25397],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[805.186,-0.24464],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[805.723,-0.22913],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[806.224,-0.2226],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[806.729,-0.23893],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[807.229,-0.2677],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[807.75,-0.29862],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[808.269,-0.33165],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[808.78,-0.36538],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[809.286,-0.39211],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[809.795,-0.41547],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[810.284,-0.44465],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[810.775,-0.48584],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[811.302,-0.54553],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[811.789,-0.61674],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[812.342,-0.68337],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[812.823,-0.74992],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[813.365,-0.83349],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[813.88,-0.91424],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[814.389,-0.97085],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[814.921,-1.0278],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[815.449,-1.0983],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[816.001,-1.188],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[816.545,1.2188],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[817.043,1.0982],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[817.601,0.96395],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[818.127,0.83588],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[818.621,0.73257],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[819.179,0.64687],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[819.669,0.55785],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[820.164,0.4621],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[820.656,0.34579],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[821.183,0.20576],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[821.7,0.058629],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[822.218,-0.077069],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[822.789,-0.20141],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[823.324,-0.33627],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[823.845,-0.49269],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[824.387,-0.63735],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[824.913,-0.75876],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[825.415,-0.87954],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[825.922,-1.0047],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[826.464,-1.1498],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[827.006,1.2103],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[827.506,1.0654],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[828.007,0.9109],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[828.546,0.75449],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[829.046,0.61974],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[829.595,0.47795],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[830.163,0.32014],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[830.684,0.17348],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[831.229,0.018916],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[831.737,-0.14881],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[832.295,-0.29763],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[832.815,-0.43511],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[833.352,-0.58283],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[833.863,-0.73537],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[834.39,-0.89691],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[834.981,-1.0575],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[835.56,-1.2026],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[836.096,1.1793],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[836.609,1.0563],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[837.152,0.91787],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[837.67,0.76515],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[838.182,0.61762],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[838.731,0.47944],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[839.278,0.33905],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[839.804,0.18333],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[840.379,0.040642],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[840.833,-0.065698],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[841.251,-0.16773],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[841.689,-0.28618],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[842.106,-0.41997],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[842.55,-0.54575],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[842.974,-0.6617],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[843.382,-0.77908],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[843.853,-0.88716],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[844.271,-0.9911],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[844.695,-1.0906],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[845.11,-1.1876],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[845.559,1.2257],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[845.981,1.1296],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[846.405,1.0333],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[846.857,0.9458],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[847.287,0.87401],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[847.731,0.82153],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[848.151,0.77074],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[848.569,0.69702],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[848.991,0.61395],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[849.564,0.54947],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[850.067,0.50246],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[850.475,0.4618],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[850.913,0.42115],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[851.366,0.38106],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[851.793,0.33952],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[852.213,0.2905],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[852.65,0.26002],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[853.138,0.24568],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[853.561,0.24124],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[853.983,0.22066],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[854.399,0.18765],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[854.824,0.1818],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[855.275,0.19311],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[855.691,0.2013],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[856.121,0.21268],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[856.581,0.24104],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[857.009,0.27901],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[857.445,0.31322],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[857.892,0.33845],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[858.292,0.35251],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[858.714,0.37547],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[859.137,0.41813],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[859.543,0.47278],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[859.985,0.53834],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[860.393,0.59414],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[860.833,0.63682],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[861.278,0.69074],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[861.722,0.76863],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[862.149,0.86308],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[862.59,0.951],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[863.026,1.0327],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[863.507,1.1186],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[863.963,1.2057],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[864.406,-1.2079],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[864.843,-1.1065],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[865.268,-1.0139],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[865.71,-0.91077],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[866.145,-0.81616],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[866.585,-0.72008],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[867.046,-0.5942],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[867.47,-0.46548],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[867.964,-0.33991],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[868.393,-0.21701],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[868.829,-0.0997],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[869.25,0.028022],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[869.69,0.16766],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[870.116,0.30608],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[870.559,0.43832],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[871.032,0.57913],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[871.487,0.72015],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[871.929,0.85179],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[872.38,0.97918],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[872.858,1.1101],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[873.298,-1.2553],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[873.72,-1.0885],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[874.121,-0.9254],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[874.564,-0.78131],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[874.997,-0.65189],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[875.47,-0.51649],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[875.952,-0.36246],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[876.374,-0.19676],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[876.8,-0.030706],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[877.259,0.12231],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[877.764,0.26227],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[878.223,0.40028],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[878.686,0.54117],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[879.136,0.68364],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[879.558,0.82445],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[880.003,0.98339],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[880.482,1.1519],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[880.955,-1.2093],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[881.422,-1.0693],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[881.835,-0.93856],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[882.255,-0.80458],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[882.674,-0.65893],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[883.097,-0.51095],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[883.534,-0.37597],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[883.945,-0.23776],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[884.35,-0.089124],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[884.768,0.051837],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[885.184,0.17389],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[885.639,0.28186],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[886.074,0.39784],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[886.509,0.52737],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[886.942,0.65639],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[887.399,0.76286],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[887.849,0.84691],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[888.3,0.93548],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[888.831,1.0442],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[889.367,1.1667],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[889.836,-1.2337],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[890.333,-1.1447],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[890.792,-1.0838],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[891.22,-1.025],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[891.636,-0.93747],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[892.068,-0.84361],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[892.511,-0.7688],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[892.968,-0.71895],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[893.4,-0.66982],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[893.814,-0.60283],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[894.245,-0.53276],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[894.684,-0.46002],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[895.132,-0.39627],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[895.6,-0.37211],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[896.059,-0.37483],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[896.506,-0.36602],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[896.919,-0.33078],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[897.359,-0.28754],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[897.844,-0.24854],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[898.309,-0.21716],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[898.75,-0.19314],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[899.151,-0.19606],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[899.567,-0.24611],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[899.976,-0.28015],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[900.411,-0.27081],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[900.818,-0.26131],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[901.242,-0.26414],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[901.661,-0.28996],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[902.084,-0.3342],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[902.491,-0.38705],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[902.993,-0.44545],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[903.43,-0.49559],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[903.862,-0.53481],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[904.282,-0.57209],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[904.693,-0.6173],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[905.145,-0.66506],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[905.573,-0.73447],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[906.013,-0.81882],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[906.43,-0.89528],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[906.839,-0.97339],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[907.292,-1.0512],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[907.706,-1.1276],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[908.108,-1.2059],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[908.504,1.2111],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[908.901,1.0891],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[909.324,0.97179],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[909.766,0.87003],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[910.187,0.77125],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[910.618,0.67004],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[911.032,0.56211],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[911.51,0.43498],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[911.984,0.30075],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[912.403,0.17381],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[912.867,0.055291],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[913.38,-0.071171],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[913.963,-0.20367],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[914.467,-0.3223],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[914.926,-0.45412],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[915.367,-0.59919],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[915.807,-0.72139],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[916.254,-0.84221],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[916.718,-0.99038],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[917.179,-1.1593],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[917.606,1.1816],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[918.07,1.0255],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[918.481,0.88135],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[918.89,0.74689],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[919.313,0.61268],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[919.755,0.4621],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[920.195,0.30827],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[920.602,0.16559],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[921.038,0.027568],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[921.461,-0.12244],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[921.903,-0.28911],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[922.347,-0.44453],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[922.8,-0.59166],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[923.234,-0.74847],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[923.667,-0.90038],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[924.141,-1.0429],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[924.584,-1.1845],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[925.046,1.1767],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[925.482,1.0223],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[925.892,0.87608],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[926.293,0.73546],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[926.736,0.6012],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[927.169,0.462],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[927.645,0.32744],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[928.08,0.2025],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[928.503,0.068706],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[928.951,-0.064878],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[929.398,-0.1956],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[929.819,-0.32519],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[930.289,-0.4393],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[930.784,-0.54568],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[931.231,-0.66224],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[931.677,-0.77424],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[932.117,-0.88255],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[932.569,-0.99371],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[932.988,-1.1036],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[933.423,-1.219],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[933.884,1.1968],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[934.323,1.1166],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[934.769,1.0393],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[935.174,0.96931],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[935.6,0.90559],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[936.0,0.83808],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[936.414,0.75683],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[936.847,0.66916],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[937.283,0.59542],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[937.707,0.54564],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[938.127,0.50027],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[938.575,0.44916],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[939.005,0.39856],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[939.448,0.3438],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[939.939,0.30232],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[940.377,0.28606],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[940.803,0.27874],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[941.225,0.26256],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[941.641,0.24167],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[942.055,0.22066],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[942.481,0.19989],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[942.959,0.19175],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[943.375,0.20063],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[943.838,0.216],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[944.272,0.22197],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[944.714,0.23618],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[945.162,0.25655],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[945.63,0.27234],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[946.081,0.30368],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[946.505,0.34473],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[946.942,0.39166],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[947.41,0.44479],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[947.872,0.49914],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[948.298,0.54518],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[948.725,0.58063],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[949.139,0.63213],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[949.552,0.70424],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[949.998,0.78691],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[950.448,0.87264],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[950.894,0.94457],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[951.297,1.0212],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[951.725,1.112],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[952.131,1.2049],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[952.597,-1.203],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[953.048,-1.1036],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[953.474,-1.0143],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[953.877,-0.92232],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[954.297,-0.81936],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[954.766,-0.70642],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[955.219,-0.60215],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[955.663,-0.49066],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[956.1,-0.35762],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[956.58,-0.20374],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[957.106,-0.060067],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[957.695,0.055574],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[958.169,0.1686],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[958.618,0.27662],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[959.081,0.39134],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[959.606,0.52804],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[960.065,0.69204],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[960.522,0.86666],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[960.958,1.0195],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[961.38,1.1579],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[961.794,-1.2189],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[962.238,-1.0805],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[962.692,-0.94011],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[963.108,-0.80077],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[963.525,-0.65291],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[963.967,-0.49734],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[964.39,-0.34892],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[964.838,-0.2017],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[965.299,-0.052157],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[965.774,0.1005],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[966.261,0.25801],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[966.703,0.41009],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[967.212,0.5509],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[967.706,0.69438],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[968.269,0.85311],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[968.733,1.0036],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[969.186,1.1464],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[969.609,-1.2157],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[970.057,-1.0635],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[970.475,-0.92232],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[970.9,-0.79444],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[971.394,-0.66833],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[971.83,-0.53427],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[972.284,-0.38106],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[972.7,-0.21116],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[973.155,-0.059517],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[973.592,0.05176],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[974.085,0.15344],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[974.519,0.27747],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[974.938,0.41635],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[975.36,0.53806],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[975.797,0.63866],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[976.244,0.73318],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[976.726,0.84618],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[977.155,0.9778],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[977.585,1.0898],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[978.013,1.1737],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[978.45,1.2494],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[978.862,-1.1739],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[979.316,-1.0851],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[979.729,-1.0135],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[980.196,-0.93635],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[980.614,-0.85151],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[981.045,-0.78743],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[981.485,-0.72975],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[981.908,-0.64983],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[982.365,-0.57093],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[982.785,-0.51031],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[983.22,-0.46168],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[983.649,-0.41921],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[984.064,-0.37998],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[984.505,-0.338],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[984.936,-0.28716],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[985.413,-0.25913],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[985.878,-0.26988],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[986.334,-0.28403],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[986.759,-0.27671],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[987.188,-0.25823],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[987.588,-0.23125],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[988.012,-0.20731],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[988.465,-0.21305],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[988.901,-0.23901],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[989.324,-0.26825],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[989.751,-0.28857],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[990.17,-0.30598],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[990.585,-0.3315],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[991.054,-0.3509],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[991.508,-0.3915],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[991.988,-0.45636],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[992.419,-0.51602],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[992.852,-0.56386],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[993.309,-0.60774],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[993.759,-0.6689],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[994.196,-0.74259],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[994.682,-0.82772],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[995.143,-0.90983],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[995.641,-0.98175],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[996.073,-1.0564],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[996.564,-1.1328],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[996.977,-1.2154],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[997.419,1.2124],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[997.838,1.1214],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[998.26,1.0136],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[998.696,0.89781],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[999.122,0.76525],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[999.561,0.62975],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[999.999,0.52095],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1000.47,0.41382],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1000.89,0.29337],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1001.31,0.17458],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1001.76,0.064309],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1002.21,-0.048385],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1002.62,-0.18155],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1003.03,-0.34195],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1003.46,-0.49919],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1003.89,-0.63004],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1004.35,-0.75424],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1004.79,-0.88376],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1005.23,-1.0197],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1005.66,-1.1594],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1006.06,1.2171],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1006.5,1.076],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1006.98,0.91891],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1007.4,0.75444],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1007.83,0.59298],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1008.28,0.44777],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1008.71,0.31397],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1009.17,0.17352],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1009.65,0.016328],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1010.09,-0.15363],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1010.53,-0.31409],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1010.97,-0.46667],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1011.41,-0.60487],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1011.89,-0.73654],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1012.34,-0.88898],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1012.79,-1.0601],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1013.21,-1.219],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1013.71,1.1617],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1014.2,1.0296],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1014.65,0.8879],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1015.09,0.74819],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1015.56,0.61386],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1016.05,0.47195],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1016.48,0.32409],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1016.91,0.19363],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1017.36,0.073729],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1017.8,-0.054469],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1018.27,-0.19078],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1018.69,-0.32587],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1019.11,-0.44675],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1019.54,-0.54588],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1020.01,-0.64336],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1020.44,-0.75931],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1020.86,-0.87852],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1021.28,-0.99024],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1021.73,-1.0911],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1022.18,-1.1845],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1022.65,1.2394],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1023.11,1.158],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1023.53,1.0735],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1023.94,0.99022],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1024.4,0.90425],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1024.82,0.81285],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1025.24,0.73525],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1025.66,0.66308],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1026.06,0.59523],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1026.5,0.54026],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1026.91,0.49763],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1027.35,0.4571],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1027.79,0.40567],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1028.21,0.34921],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1028.64,0.29982],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1029.07,0.26649],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1029.52,0.24798],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1029.95,0.2434],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1030.41,0.24204],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1030.89,0.2379],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1031.34,0.21941],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1031.78,0.19662],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1032.23,0.19873],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1032.71,0.21933],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1033.27,0.24233],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1033.7,0.25185],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1034.12,0.24935],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1034.56,0.26529],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1035.04,0.30582],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1035.51,0.34828],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1035.96,0.38611],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1036.39,0.44011],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1036.8,0.5219],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1037.23,0.58696],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1037.68,0.62073],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1038.2,0.6593],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1038.74,0.7161],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1039.3,0.77835],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1039.75,0.86424],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1040.19,0.96891],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1040.65,1.0563],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1041.09,1.1311],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1041.57,1.205],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1042.01,-1.2281],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1042.44,-1.1349],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1042.9,-1.0246],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1043.35,-0.90296],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1043.8,-0.78802],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1044.23,-0.68323],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1044.65,-0.5907],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1045.1,-0.49531],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1045.53,-0.37118],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1045.97,-0.23069],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1046.41,-0.08874],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1046.85,0.042766],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1047.3,0.16761],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1047.73,0.29561],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1048.19,0.4364],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1048.66,0.576],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1049.09,0.70253],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1049.51,0.82767],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1049.92,0.958],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1050.34,1.1143],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1050.75,-1.2298],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1051.19,-1.067],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1051.64,-0.9217],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1052.05,-0.78346],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1052.46,-0.62125],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1052.89,-0.45795],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1053.33,-0.31446],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1053.8,-0.18146],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1054.26,-0.048101],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1054.74,0.10444],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1055.25,0.26536],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1055.73,0.41886],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1056.24,0.5701],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1056.74,0.71995],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1057.19,0.85789],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1057.67,0.98721],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1058.12,1.1288],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1058.57,-1.2373],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1059.01,-1.084],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1059.47,-0.93028],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1059.91,-0.79954],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1060.35,-0.67362],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1060.76,-0.534],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1061.19,-0.39939],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1061.6,-0.26294],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1062.02,-0.1127],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1062.47,0.031423],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1062.88,0.16975],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1063.29,0.30496],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1063.71,0.42428],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1064.13,0.53013],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1064.65,0.64032],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1065.12,0.74449],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1065.6,0.84744],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1066.05,0.96197],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1066.51,1.0752],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1066.95,1.1807],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1067.38,-1.2485],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1067.8,-1.1722],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1068.24,-1.0876],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1068.69,-1.0077],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1069.12,-0.92527],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1069.55,-0.84409],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1069.97,-0.77061],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1070.38,-0.68678],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1070.78,-0.61331],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1071.2,-0.56806],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1071.65,-0.52118],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1072.05,-0.47317],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1072.54,-0.44435],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1072.97,-0.41691],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1073.44,-0.38815],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1073.89,-0.34685],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1074.38,-0.28662],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1074.84,-0.23504],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1075.28,-0.2184],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1075.7,-0.24615],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1076.13,-0.27948],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1076.61,-0.28073],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1077.03,-0.26346],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1077.47,-0.25124],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1077.92,-0.25345],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1078.35,-0.26244],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1078.8,-0.27928],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1079.24,-0.31937],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1079.7,-0.35506],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1080.12,-0.36981],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1080.54,-0.38368],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1080.99,-0.42251],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1081.46,-0.49412],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1081.91,-0.57643],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1082.36,-0.65665],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1082.82,-0.71451],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1083.27,-0.75054],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1083.7,-0.80006],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1084.13,-0.87799],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1084.57,-0.97259],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1085.03,-1.0646],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1085.49,-1.1596],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1085.92,1.2511],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1086.33,1.166],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1086.75,1.104],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1087.23,1.0268],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1087.67,0.90604],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1088.14,0.7639],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1088.57,0.63116],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1089.07,0.52087],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1089.51,0.41834],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1089.97,0.3083],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1090.41,0.19684],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1090.85,0.081374],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1091.28,-0.04836],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1091.72,-0.1952],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1092.18,-0.33404],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1092.67,-0.45944],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1093.12,-0.5887],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1093.54,-0.73271],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1093.97,-0.88509],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1094.43,-1.0276],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1094.93,-1.1679],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1095.42,1.2101],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1095.91,1.0673],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1096.36,0.90758],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1096.79,0.75445],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1097.22,0.60623],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1097.69,0.44815],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1098.11,0.29728],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1098.54,0.15655],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1099.02,0.0099854],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1099.46,-0.14495],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1099.89,-0.31027],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1100.33,-0.47453],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1100.78,-0.62513],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1101.21,-0.76011],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1101.65,-0.89152],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1102.11,-1.0408],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1102.53,-1.2003],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1102.96,1.1686],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1103.4,1.0337],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1103.81,0.89237],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1104.23,0.74141],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1104.64,0.59564],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1105.07,0.45781],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1105.53,0.32125],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1105.97,0.19633],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1106.41,0.0828],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1106.84,-0.037834],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1107.3,-0.16546],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1107.75,-0.29368],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1108.18,-0.42285],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1108.62,-0.54105],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1109.04,-0.65662],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1109.48,-0.78011],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1109.91,-0.88588],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1110.34,-0.96536],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1110.77,-1.0516],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1111.22,-1.1581],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1111.65,1.2374],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1112.09,1.1365],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1112.52,1.0602],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1112.94,0.97778],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1113.36,0.88488],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1113.82,0.80642],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1114.28,0.73534],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1114.73,0.67534],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1115.16,0.63106],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1115.61,0.57079],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1116.05,0.49665],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1116.49,0.4471],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1116.92,0.41207],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1117.35,0.37663],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1117.77,0.3449],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1118.23,0.30213],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1118.66,0.27436],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1119.08,0.26736],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1119.52,0.25196],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1119.95,0.22858],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1120.37,0.2174],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1120.8,0.2106],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1121.27,0.19176],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1121.71,0.18404],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1122.14,0.20237],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1122.57,0.22837],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1123.01,0.25232],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1123.46,0.28149],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1123.94,0.32749],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1124.41,0.36298],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1124.85,0.38472],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1125.27,0.41947],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1125.71,0.46308],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1126.17,0.51998],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1126.62,0.59296],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1127.04,0.65399],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1127.46,0.70044],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1127.91,0.76084],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1128.35,0.84749],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1128.79,0.94188],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1129.23,1.0236],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1129.63,1.1092],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1130.07,1.215],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1130.5,-1.2003],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1130.96,-1.1283],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1131.38,-1.0481],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1131.87,-0.93464],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1132.3,-0.80544],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1132.71,-0.68154],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1133.14,-0.56582],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1133.59,-0.45273],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1134.03,-0.33743],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1134.51,-0.22756],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1134.97,-0.11196],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1135.47,0.031304],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1135.91,0.19212],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1136.38,0.3304],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1136.81,0.44657],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1137.22,0.5628],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1137.64,0.68794],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1138.04,0.83637],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1138.46,0.99444],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1138.97,1.147],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1139.41,-1.2224],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1139.88,-1.0887],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1140.34,-0.94834],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1140.82,-0.8047],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1141.32,-0.65664],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1141.75,-0.49879],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1142.19,-0.35255],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1142.64,-0.20797],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1143.09,-0.050045],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1143.56,0.11353],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1144.0,0.26541],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1144.47,0.40649],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1144.9,0.55373],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1145.34,0.70008],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1145.78,0.84584],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1146.2,0.9997],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1146.62,1.1558],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1147.04,-1.1926],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1147.49,-1.0406],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1147.94,-0.91011],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1148.38,-0.77334],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1148.83,-0.63596],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1149.27,-0.50926],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1149.7,-0.37614],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1150.16,-0.23818],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1150.59,-0.11035],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1151.04,0.01788],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1151.48,0.14762],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1151.91,0.27484],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1152.34,0.39692],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1152.78,0.51599],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1153.26,0.63144],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1153.73,0.73068],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1154.16,0.8348],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1154.61,0.94394],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1155.07,1.0545],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1155.5,1.1694],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1155.93,-1.2431],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1156.36,-1.1579],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1156.83,-1.0923],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1157.25,-1.0113],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1157.69,-0.90738],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1158.14,-0.82182],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1158.57,-0.76868],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1158.98,-0.72301],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1159.41,-0.65657],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1159.85,-0.59152],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1160.26,-0.54285],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1160.68,-0.49762],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1161.09,-0.44603],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1161.54,-0.39715],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1161.97,-0.36868],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1162.4,-0.34786],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1162.83,-0.31078],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1163.27,-0.26007],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1163.73,-0.23084],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1164.22,-0.23426],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1164.66,-0.2496],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1165.11,-0.26031],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1165.55,-0.25298],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1165.99,-0.23467],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1166.44,-0.24044],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1166.89,-0.27109],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1167.35,-0.29352],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1167.76,-0.31487],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1168.19,-0.35144],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1168.61,-0.38491],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1169.03,-0.41997],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1169.46,-0.46544],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1169.9,-0.52445],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1170.33,-0.59299],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1170.75,-0.65554],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1171.16,-0.70158],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1171.61,-0.74462],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1172.08,-0.80958],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1172.54,-0.88752],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1172.99,-0.97164],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1173.44,-1.0609],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1173.87,-1.1558],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1174.31,1.2506],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1174.79,1.1456],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1175.24,1.0571],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1175.7,0.97119],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1176.16,0.88219],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1176.58,0.7913],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1177.02,0.68435],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1177.44,0.56148],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1177.87,0.43027],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1178.31,0.31639],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1178.73,0.20732],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1179.17,0.069286],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1179.61,-0.062346],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1180.06,-0.18649],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1180.49,-0.32521],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1180.96,-0.46438],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1181.44,-0.59822],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1181.87,-0.74482],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1182.31,-0.89373],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1182.77,-1.0309],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1183.22,-1.1669],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1183.64,1.2087],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1184.09,1.0667],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1184.53,0.91667],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1184.95,0.76398],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1185.44,0.61521],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1185.87,0.47615],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1186.28,0.32794],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1186.75,0.15908],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1187.19,0.0005894],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1187.66,-0.14925],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1188.09,-0.28916],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1188.59,-0.41854],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1189.05,-0.55708],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1189.48,-0.71349],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1189.94,-0.87872],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1190.39,-1.0513],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1190.81,-1.2181],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1191.27,1.1541],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1191.71,1.0349],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1192.13,0.89467],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1192.59,0.73156],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1193.03,0.59294],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1193.46,0.48181],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1193.91,0.3679],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1194.34,0.22924],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1194.79,0.07165],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1195.26,-0.093442],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1195.68,-0.23425],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1196.11,-0.34353],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1196.54,-0.43603],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1197.0,-0.5349],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1197.47,-0.64677],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1197.9,-0.76074],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1198.36,-0.85735],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1198.78,-0.94713],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1199.22,-1.0488],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1199.67,-1.1594],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1200.14,1.2328],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1200.57,1.1183],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1200.99,1.0231],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1201.42,0.9538],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1201.85,0.89964],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1202.29,0.83538],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1202.72,0.7486],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1203.17,0.65924],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1203.61,0.59698],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1204.06,0.54862],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1204.49,0.49753],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1204.91,0.44403],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1205.36,0.39796],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1205.79,0.36014],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1206.21,0.32579],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1206.65,0.29928],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1207.15,0.27191],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1207.61,0.23937],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1208.05,0.20736],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1208.5,0.20214],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1208.94,0.22122],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1209.41,0.23495],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1209.84,0.22691],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1210.29,0.20323],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1210.75,0.20157],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1211.19,0.22823],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1211.65,0.2642],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1212.1,0.29831],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1212.58,0.32645],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1213.0,0.35965],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1213.46,0.40727],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1213.91,0.45935],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1214.37,0.50194],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1214.84,0.54714],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1215.29,0.61161],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1215.75,0.67663],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1216.21,0.7123],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1216.68,0.7543],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1217.13,0.83315],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1217.59,0.92936],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1218.04,1.0303],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1218.51,1.1226],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1218.97,1.205],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1219.42,-1.2139],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1219.86,-1.1091],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1220.29,-1.0032],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1220.72,-0.90501],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1221.2,-0.80582],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1221.68,-0.69735],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1222.13,-0.59228],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1222.54,-0.48283],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1222.96,-0.36158],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1223.38,-0.22514],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1223.85,-0.092864],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1224.28,0.036946],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1224.72,0.18029],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1225.18,0.32911],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1225.67,0.47376],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1226.11,0.5933],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1226.55,0.70082],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1227.0,0.81577],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1227.44,0.93922],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1227.86,1.094],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1228.3,-1.2515],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1228.77,-1.0967],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1229.2,-0.95492],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1229.66,-0.80367],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1230.1,-0.62683],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1230.55,-0.46054],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1231.02,-0.31764],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1231.47,-0.19067],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1231.92,-0.067048],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1232.37,0.076983],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1232.8,0.24359],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1233.21,0.41468],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1233.66,0.57469],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1234.15,0.72055],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1234.58,0.84501],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1235.01,0.9723],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1235.45,1.1275],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1235.91,-1.2135],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1236.42,-1.054],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1236.87,-0.91354],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1237.3,-0.7739],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1237.76,-0.64223],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1238.19,-0.51604],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1238.61,-0.39872],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1239.05,-0.28346],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1239.48,-0.13726],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1239.92,0.020462],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1240.34,0.1547],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1240.78,0.27277],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1241.21,0.37842],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1241.66,0.48572],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1242.07,0.59892],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1242.51,0.71123],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1242.96,0.84166],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1243.39,0.97294],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1243.84,1.0874],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1244.31,1.1884],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1244.77,-1.2468],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1245.26,-1.1597],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1245.72,-1.054],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1246.19,-0.96192],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1246.66,-0.88176],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1247.09,-0.81716],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1247.52,-0.76753],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1247.96,-0.70692],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1248.39,-0.64373],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1248.83,-0.58621],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1249.26,-0.52928],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1249.68,-0.47422],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1250.17,-0.42333],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1250.64,-0.38209],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1251.08,-0.34874],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1251.57,-0.32383],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1252.02,-0.29827],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1252.46,-0.28383],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1252.93,-0.2718],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1253.49,-0.24301],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1254.01,-0.21644],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1254.47,-0.20572],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1254.97,-0.22356],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1255.42,-0.24923],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1255.88,-0.26504],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1256.36,-0.28634],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1256.83,-0.31584],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1257.24,-0.32746],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1257.67,-0.31944],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1258.11,-0.33825],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1258.53,-0.40048],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1258.95,-0.46483],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1259.38,-0.50591],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1259.83,-0.5569],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1260.27,-0.61833],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1260.73,-0.68119],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1261.16,-0.76626],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1261.59,-0.83956],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1262.03,-0.89353],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1262.55,-0.96073],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1262.98,-1.042],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1263.41,-1.1474],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1263.85,1.2552],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1264.28,1.1632],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1264.71,1.0775],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1265.16,0.99713],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1265.59,0.89662],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1266.03,0.7774],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1266.45,0.65436],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1266.89,0.52318],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1267.34,0.41844],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1267.77,0.32689],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1268.25,0.21708],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1268.69,0.092028],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1269.11,-0.045177],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1269.55,-0.19275],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1270.01,-0.33612],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1270.43,-0.47089],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1270.88,-0.59839],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1271.36,-0.72736],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1271.81,-0.87928],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1272.26,-1.0321],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1272.7,-1.1775],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1273.14,1.1803],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1273.59,1.0205],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1274.02,0.87943],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1274.49,0.75785],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1274.93,0.62661],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1275.38,0.47242],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1275.84,0.30823],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1276.35,0.15757],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1276.86,0.015092],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1277.32,-0.12491],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1277.79,-0.27233],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1278.24,-0.43707],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1278.73,-0.59955],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1279.19,-0.7538],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1279.63,-0.89492],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1280.1,-1.0343],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1280.61,-1.1811],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1281.05,1.18],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1281.49,1.0276],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1281.9,0.89668],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1282.32,0.76331],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1282.75,0.62105],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1283.26,0.4797],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1283.71,0.32967],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1284.13,0.19025],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1284.57,0.069377],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1285.01,-0.041729],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1285.45,-0.15678],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1285.88,-0.28219],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1286.38,-0.41253],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1286.86,-0.54247],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1287.28,-0.66871],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1287.73,-0.79166],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1288.18,-0.90866],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1288.62,-1.0118],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1289.03,-1.1049],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1289.47,-1.1919],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1289.91,1.2399],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1290.36,1.1461],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1290.83,1.0491],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1291.27,0.95039],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1291.68,0.85638],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1292.11,0.78457],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1292.54,0.72661],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1292.98,0.68032],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1293.44,0.6251],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1293.95,0.55439],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1294.4,0.48722],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1294.93,0.43077],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1295.4,0.38532],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1295.89,0.34598],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1296.36,0.3193],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1296.81,0.29245],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1297.27,0.26497],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1297.74,0.24489],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1298.23,0.21758],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1298.69,0.19218],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1299.15,0.19196],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1299.6,0.21697],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1300.02,0.24259],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1300.45,0.24469],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1300.92,0.23486],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1301.38,0.23878],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1301.83,0.26022],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1302.31,0.30262],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1302.76,0.34808],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1303.21,0.38227],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1303.67,0.41021],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1304.11,0.44362],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1304.53,0.4885],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1304.96,0.54806],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1305.39,0.60903],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1305.82,0.66535],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1306.25,0.72782],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1306.7,0.79451],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1307.15,0.87631],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1307.64,0.96654],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1308.06,1.0376],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1308.49,1.1031],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1308.94,1.1889],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1309.38,-1.2121],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1309.83,-1.1003],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1310.28,-1.0087],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1310.76,-0.90511],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1311.19,-0.79116],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1311.67,-0.69402],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1312.11,-0.60119],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1312.54,-0.4776],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1313.0,-0.33808],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1313.41,-0.20738],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1313.87,-0.079128],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1314.3,0.044625],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1314.72,0.15789],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1315.15,0.27874],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1315.67,0.42218],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1316.15,0.57843],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1316.63,0.72869],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1317.07,0.85954],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1317.5,0.9875],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1317.94,1.1327],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1318.36,-1.2344],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1318.78,-1.0993],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1319.24,-0.95682],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1319.68,-0.80533],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1320.11,-0.65081],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1320.54,-0.49574],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1320.98,-0.34016],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1321.45,-0.18505],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1321.92,-0.034863],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1322.38,0.11189],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1322.84,0.26075],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1323.3,0.40666],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1323.72,0.54188],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1324.14,0.68931],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1324.57,0.84821],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1325.02,0.99689],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1325.5,1.1362],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1325.95,-1.2241],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1326.42,-1.0577],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1326.87,-0.89959],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1327.29,-0.75066],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1327.73,-0.62112],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1328.2,-0.50104],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1328.61,-0.37212],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1329.06,-0.23977],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1329.52,-0.10167],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1329.94,0.041562],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1330.37,0.16716],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1330.82,0.28109],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1331.26,0.40003],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1331.68,0.53722],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1332.14,0.67794],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1332.61,0.78615],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1333.07,0.86205],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1333.56,0.9307],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1334.0,1.0173],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1334.43,1.1232],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1334.9,1.241],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1335.38,-1.1713],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1335.86,-1.0956],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1336.33,-1.0173],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1336.78,-0.92852],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1337.21,-0.83447],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1337.66,-0.74271],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1338.09,-0.67845],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1338.61,-0.64026],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1339.05,-0.59408],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1339.54,-0.53004],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1339.98,-0.47583],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1340.42,-0.43426],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1340.89,-0.39101],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1341.33,-0.36791],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1341.78,-0.35707],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1342.21,-0.33117],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1342.67,-0.28899],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1343.14,-0.25047],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1343.57,-0.227],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1344.01,-0.21987],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1344.42,-0.21813],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1344.86,-0.20945],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1345.29,-0.2228],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1345.75,-0.26223],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1346.2,-0.30273],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1346.63,-0.32817],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1347.07,-0.34352],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1347.52,-0.34796],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1347.97,-0.35514],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1348.45,-0.39044],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1348.88,-0.44437],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1349.36,-0.50604],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1349.86,-0.57404],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1350.27,-0.64056],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1350.69,-0.70243],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1351.15,-0.76778],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1351.62,-0.83425],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1352.03,-0.90424],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1352.46,-0.98658],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1352.9,-1.0737],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1353.32,-1.1482],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1353.76,-1.2223],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1354.2,1.2038],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1354.69,1.1068],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1355.2,0.99269],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1355.67,0.88229],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1356.16,0.78207],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1356.63,0.67495],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1357.1,0.56109],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1357.59,0.44082],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1358.09,0.30887],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1358.57,0.17503],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1359.0,0.052515],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1359.44,-0.077409],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1359.96,-0.21541],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1360.43,-0.33862],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1360.87,-0.46498],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1361.3,-0.59418],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1361.74,-0.7149],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1362.17,-0.84752],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1362.61,-0.9979],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1363.08,-1.1605],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1363.51,1.1933],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1363.94,1.0355],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1364.36,0.88895],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1364.82,0.74143],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1365.36,0.60523],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1365.84,0.47953],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1366.29,0.33966],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1366.76,0.19837],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1367.22,0.041248],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1367.7,-0.12824],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1368.22,-0.30225],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1368.69,-0.45779],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1369.13,-0.59877],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1369.6,-0.75106],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1370.04,-0.90157],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1370.5,-1.0366],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1370.96,-1.17],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1371.44,1.1919],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1371.92,1.0404],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1372.37,0.90195],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1372.89,0.76782],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1373.41,0.63527],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1373.86,0.4916],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1374.31,0.32733],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1374.79,0.17303],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1375.29,0.059981],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1375.72,-0.047057],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1376.16,-0.17275],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1376.61,-0.32273],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1377.03,-0.46664],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1377.47,-0.55973],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1377.91,-0.64039],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1378.4,-0.75389],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1378.89,-0.88668],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1379.36,-1.0032],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1379.81,-1.0989],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1380.32,-1.1834],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1380.78,1.2393],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1381.23,1.1444],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1381.73,1.0568],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1382.17,0.97194],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1382.61,0.88544],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1383.08,0.80524],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1383.58,0.74222],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1384.02,0.67501],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1384.45,0.60951],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1384.86,0.55409],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1385.3,0.4882],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1385.74,0.43662],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1386.17,0.39918],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1386.59,0.35698],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1387.01,0.31727],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1387.47,0.28126],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1387.95,0.25594],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1388.44,0.23213],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1388.9,0.20474],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1389.35,0.19625],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1389.8,0.2099],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1390.27,0.23083],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1390.73,0.24098],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1391.32,0.24093],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1391.86,0.23116],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1392.39,0.21808],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1392.84,0.23706],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1393.29,0.28188],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1393.75,0.32548],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1394.2,0.37377],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1394.64,0.42629],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1395.08,0.47061],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1395.54,0.49757],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1396.04,0.52944],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1396.52,0.58704],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1396.97,0.65032],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1397.43,0.71943],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1397.91,0.80387],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1398.4,0.88934],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1398.85,0.95746],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1399.36,1.0178],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1399.83,1.0868],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1400.32,1.1711],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1400.83,-1.2461],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1401.28,-1.1439],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1401.78,-1.0271],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1402.2,-0.91302],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1402.62,-0.81547],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1403.18,-0.711],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1403.77,-0.59629],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1404.29,-0.47563],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1404.75,-0.35075],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1405.21,-0.21605],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1405.65,-0.076224],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1406.1,0.047314],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1406.53,0.16953],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1406.98,0.29749],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1407.4,0.42627],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1407.84,0.55964],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1408.26,0.69227],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1408.69,0.82949],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1409.14,0.97491],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1409.55,1.1286],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1409.99,-1.2319],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1410.42,-1.085],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1410.87,-0.93382],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1411.32,-0.77438],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1411.75,-0.61962],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1412.18,-0.48252],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1412.66,-0.34437],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1413.11,-0.19747],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1413.55,-0.047441],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1414.03,0.1083],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1414.48,0.26943],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1414.92,0.42314],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1415.4,0.57421],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1415.9,0.72669],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1416.34,0.87733],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1416.84,1.0269],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1417.31,1.1591],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1417.76,-1.2223],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1418.19,-1.0744],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1418.6,-0.92339],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1419.01,-0.77289],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1419.45,-0.63743],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1419.9,-0.50775],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1420.32,-0.36617],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1420.75,-0.22391],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1421.18,-0.087805],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1421.62,0.036648],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1422.04,0.15544],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1422.51,0.27131],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1423.01,0.39776],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1423.45,0.53535],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1423.87,0.66355],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1424.3,0.76463],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1424.75,0.83717],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1425.2,0.9273],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1425.62,1.0428],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1426.04,1.1593],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1426.45,-1.2363],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1426.87,-1.1349],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1427.31,-1.0685],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1427.74,-1.0158],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1428.16,-0.94602],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1428.57,-0.86337],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1429.01,-0.79038],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1429.44,-0.72444],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1429.87,-0.65996],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1430.31,-0.5927],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1430.74,-0.51752],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1431.16,-0.45056],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1431.6,-0.40374],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1432.04,-0.37417],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1432.45,-0.35993],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1432.87,-0.34844],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1433.29,-0.33179],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1433.7,-0.30702],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1434.12,-0.27528],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1434.56,-0.24674],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1435.0,-0.22392],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1435.43,-0.21086],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1435.85,-0.22951],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1436.28,-0.26543],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1436.7,-0.28209],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1437.15,-0.28379],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1437.61,-0.27819],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1438.04,-0.28945],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1438.5,-0.31956],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1438.94,-0.34826],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1439.38,-0.39845],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1439.81,-0.45957],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1440.26,-0.51747],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1440.69,-0.57572],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1441.14,-0.63594],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1441.55,-0.69895],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1441.98,-0.75263],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1442.41,-0.80691],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1442.84,-0.87488],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1443.26,-0.95512],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1443.69,-1.0485],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1444.12,-1.152],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1444.58,-1.2479],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1445.0,1.1747],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1445.44,1.076],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1445.86,0.97964],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1446.29,0.89179],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1446.73,0.79107],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1447.2,0.67278],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1447.65,0.5581],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1448.12,0.44246],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1448.55,0.327],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1448.99,0.2046],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1449.41,0.066453],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1449.9,-0.065459],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1450.4,-0.20094],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1450.83,-0.33613],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1451.3,-0.44643],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1451.72,-0.55848],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1452.17,-0.70392],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1452.64,-0.87884],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1453.14,-1.049],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1453.57,-1.1931],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1453.99,1.1842],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1454.41,1.0514],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1454.85,0.91514],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1455.25,0.77072],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1455.69,0.62676],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1456.12,0.46502],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1456.58,0.29604],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1457.02,0.15501],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1457.44,0.024079],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1457.86,-0.12277],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1458.3,-0.28645],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1458.72,-0.44629],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1459.16,-0.59966],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1459.59,-0.75337],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1460.04,-0.8958],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1460.48,-1.0301],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1460.91,-1.1769],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1461.35,1.1729],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1461.81,1.0205],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1462.24,0.89144],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1462.67,0.77032],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1463.11,0.63634],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1463.53,0.50213],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1463.95,0.36362],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1464.38,0.21745],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1464.82,0.071962],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1465.26,-0.065235],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1465.7,-0.18395],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1466.14,-0.31598],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1466.59,-0.45485],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1467.05,-0.57539],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1467.46,-0.6767],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1467.89,-0.77085],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1468.34,-0.85943],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1468.77,-0.94782],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1469.24,-1.0652],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1469.71,-1.1948],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1470.16,1.2097],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1470.6,1.1252],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1471.19,1.0578],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1471.68,0.97862],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1472.1,0.8855],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1472.57,0.80341],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1473.08,0.73287],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1473.54,0.67404],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1474.0,0.61758],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1474.43,0.55461],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1474.88,0.49063],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1475.31,0.4371],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1475.77,0.40754],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1476.24,0.39195],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1476.75,0.36272],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1477.24,0.31701],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1477.77,0.2729],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1478.19,0.24584],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1478.62,0.22893],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1479.05,0.21048],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1479.54,0.19747],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1479.99,0.18735],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1480.41,0.1939],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1480.83,0.22875],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1481.25,0.2747],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1481.7,0.2954],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1482.12,0.28334],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1482.56,0.26974],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1483.0,0.26546],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1483.41,0.30109],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1483.84,0.37092],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1484.29,0.43417],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1484.71,0.49663],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1485.15,0.56036],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1485.58,0.62015],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1486.02,0.67774],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1486.5,0.73614],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1486.94,0.79439],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1487.38,0.86105],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1487.81,0.94398],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1488.25,1.0356],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1488.72,1.131],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1489.15,1.2288],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1489.7,-1.1914],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1490.21,-1.1013],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1490.77,-1.0104],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1491.27,-0.90107],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1491.86,-0.78253],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1492.42,-0.67437],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1492.95,-0.5719],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1493.5,-0.46964],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1494.02,-0.35408],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1494.52,-0.22507],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1494.95,-0.092195],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1495.37,0.031593],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1495.8,0.15652],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1496.22,0.28652],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1496.7,0.41399],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1497.14,0.55495],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1497.62,0.7015],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1498.09,0.84572],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1498.59,0.99352],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1499.12,1.1342],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1499.66,-1.2552],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1500.08,-1.1159],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1500.53,-0.94222],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1500.96,-0.77993],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1501.46,-0.63916],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1502.0,-0.49786],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1502.56,-0.35676],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1502.99,-0.2103],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1503.43,-0.058442],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1503.91,0.097257],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1504.45,0.2604],"mems":[[1516.499,-2.9389E-05]]}
-{"quant":[1504.98,0.42503],"mems":[[1516.5238,-2.8873E-05],[1516.5273,-2.6295E-05],[1516.5308,-3.0935E-05],[1516.5344,-3.4029E-05],[1516.5379,-3.3513E-05],[1516.5415,-3.2482E-05],[1516.545,-2.4748E-05],[1516.5485,-2.9389E-05],[1516.5521,-3.0935E-05],[1516.5556,-3.1451E-05],[1516.5592,-3.0935E-05],[1516.5627,-3.1967E-05],[1516.5662,-3.1451E-05],[1516.5698,-2.7326E-05],[1516.5733,-3.3513E-05],[1516.5769,-3.1451E-05],[1516.5804,-3.042E-05]]}
-{"quant":[1505.47,0.57781],"mems":[[1516.6158,-3.4029E-05],[1516.6193,-2.7326E-05],[1516.6229,-2.5264E-05],[1516.6264,-2.9904E-05],[1516.6299,-2.6295E-05],[1516.6335,-2.4233E-05],[1516.637,-2.3717E-05],[1516.6405,-2.4233E-05],[1516.6441,-2.9904E-05],[1516.6476,-2.8873E-05],[1516.6512,-2.7326E-05],[1516.6547,-3.042E-05],[1516.6582,-2.7842E-05],[1516.6618,-2.7842E-05],[1516.6653,-2.8873E-05],[1516.6689,-2.6811E-05]]}
-{"quant":[1505.89,0.72453],"mems":[[1516.6901,-2.6811E-05],[1516.6936,-2.4233E-05],[1516.6972,-2.9904E-05],[1516.7007,-3.2998E-05],[1516.7042,-3.042E-05],[1516.7078,-2.8873E-05],[1516.7113,-2.8357E-05],[1516.7149,-2.7842E-05],[1516.7184,-3.1451E-05],[1516.7219,-2.8357E-05],[1516.7255,-2.4233E-05],[1516.729,-2.8873E-05],[1516.7326,-3.2482E-05],[1516.7361,-2.9904E-05],[1516.7396,-2.6295E-05],[1516.7432,-2.7326E-05],[1516.7467,-2.8357E-05]]}
-{"quant":[1506.34,0.87553],"mems":[[1516.775,-2.8357E-05],[1516.7786,-2.7326E-05],[1516.7821,-3.1451E-05],[1516.7856,-3.2482E-05],[1516.7892,-2.9389E-05],[1516.7927,-2.6811E-05],[1516.7962,-2.3717E-05],[1516.7998,-2.9389E-05],[1516.8033,-3.0935E-05],[1516.8069,-3.0935E-05],[1516.8104,-3.042E-05],[1516.8139,-2.6811E-05],[1516.8175,-2.7842E-05],[1516.821,-2.9904E-05],[1516.8246,-3.042E-05],[1516.8281,-2.7326E-05]]}
-{"quant":[1506.77,1.0173],"mems":[[1516.8529,-3.1967E-05],[1516.8564,-3.0935E-05],[1516.8599,-2.6295E-05],[1516.8635,-2.9389E-05],[1516.867,-3.1967E-05],[1516.8706,-2.9904E-05],[1516.8741,-2.8873E-05],[1516.8776,-2.8873E-05],[1516.8812,-3.3513E-05],[1516.8847,-3.1967E-05],[1516.8883,-2.8357E-05],[1516.8918,-3.0935E-05],[1516.8953,-2.7842E-05],[1516.8989,-2.3202E-05],[1516.9024,-2.9904E-05],[1516.9059,-3.1967E-05],[1516.9095,-2.7842E-05]]}
-{"quant":[1507.24,1.1575],"mems":[[1516.9378,-2.8873E-05],[1516.9413,-2.5264E-05],[1516.9449,-2.9904E-05],[1516.9484,-3.2482E-05],[1516.9519,-3.042E-05],[1516.9555,-3.042E-05],[1516.959,-2.3202E-05],[1516.9626,-2.7842E-05],[1516.9661,-2.8873E-05],[1516.9696,-2.217E-05],[1516.9732,-2.9904E-05],[1516.9767,-3.042E-05],[1516.9803,-2.7326E-05],[1516.9838,-3.1967E-05],[1516.9873,-2.8357E-05],[1516.9909,-2.6811E-05],[1516.9944,-2.8357E-05]]}
-{"quant":[1507.72,-1.2152],"mems":[[1517.0263,-3.1451E-05],[1517.0298,-3.042E-05],[1517.0333,-2.7842E-05],[1517.0369,-2.9904E-05],[1517.0404,-2.6811E-05],[1517.044,-2.9904E-05],[1517.0475,-3.5576E-05],[1517.051,-3.3513E-05],[1517.0546,-3.3513E-05],[1517.0581,-3.0935E-05],[1517.0616,-2.4748E-05],[1517.0652,-2.6811E-05],[1517.0687,-2.8357E-05],[1517.0723,-3.0935E-05],[1517.0758,-3.0935E-05],[1517.0793,-2.8357E-05],[1517.0829,-2.6295E-05]]}
-{"quant":[1508.18,-1.0739],"mems":[[1517.1112,-3.1451E-05],[1517.1147,-3.0935E-05],[1517.1183,-3.2998E-05],[1517.1218,-2.6811E-05],[1517.1253,-2.3717E-05],[1517.1289,-3.2998E-05],[1517.1324,-3.0935E-05],[1517.136,-3.0935E-05],[1517.1395,-3.1967E-05],[1517.143,-2.5779E-05],[1517.1466,-2.9904E-05],[1517.1501,-3.4029E-05],[1517.1537,-3.0935E-05],[1517.1572,-2.7842E-05],[1517.1607,-2.4748E-05],[1517.1643,-2.8873E-05],[1517.1678,-3.1967E-05]]}
-{"quant":[1508.6,-0.91977],"mems":[[1517.189,-2.7842E-05],[1517.1926,-3.5576E-05],[1517.1961,-3.1967E-05],[1517.1997,-3.1967E-05],[1517.2032,-3.3513E-05],[1517.2067,-2.5779E-05],[1517.2103,-2.4233E-05],[1517.2138,-3.0935E-05],[1517.2173,-3.5576E-05],[1517.2209,-3.5576E-05],[1517.2244,-2.9904E-05],[1517.228,-2.3717E-05],[1517.2315,-2.8873E-05],[1517.235,-2.7842E-05],[1517.2386,-2.9389E-05],[1517.2421,-3.2998E-05],[1517.2457,-2.7326E-05]]}
-{"quant":[1509.06,-0.77744],"mems":[[1517.274,-2.9904E-05],[1517.2775,-2.9904E-05],[1517.281,-2.8873E-05],[1517.2846,-2.8357E-05],[1517.2881,-2.6811E-05],[1517.2917,-3.2482E-05],[1517.2952,-2.9904E-05],[1517.2987,-2.7842E-05],[1517.3023,-3.042E-05],[1517.3058,-2.6295E-05],[1517.3094,-2.6811E-05],[1517.3129,-3.2482E-05],[1517.3164,-3.3513E-05],[1517.32,-2.9389E-05],[1517.3235,-2.4748E-05],[1517.327,-2.4233E-05]]}
-{"quant":[1509.49,-0.65509],"mems":[[1517.3518,-2.6295E-05],[1517.3554,-2.6295E-05],[1517.3589,-3.0935E-05],[1517.3624,-3.2998E-05],[1517.366,-2.8873E-05],[1517.3695,-2.7326E-05],[1517.3731,-2.8357E-05],[1517.3766,-2.8873E-05],[1517.3801,-3.2482E-05],[1517.3837,-2.9904E-05],[1517.3872,-3.042E-05],[1517.3907,-2.9904E-05],[1517.3943,-2.6811E-05],[1517.3978,-3.2482E-05],[1517.4014,-2.9904E-05],[1517.4049,-2.6811E-05],[1517.4084,-2.9904E-05]]}
-{"quant":[1509.94,-0.52386],"mems":[[1517.4332,-2.5264E-05],[1517.4367,-2.7842E-05],[1517.4403,-2.9904E-05],[1517.4438,-2.8357E-05],[1517.4474,-3.1967E-05],[1517.4509,-2.5779E-05],[1517.4544,-2.6811E-05],[1517.458,-2.9904E-05],[1517.4615,-3.4029E-05],[1517.4651,-3.2998E-05],[1517.4686,-2.5779E-05],[1517.4721,-2.8357E-05],[1517.4757,-2.7842E-05],[1517.4792,-2.9389E-05],[1517.4827,-3.2998E-05],[1517.4863,-3.4029E-05],[1517.4898,-3.6607E-05]]}
-{"quant":[1510.4,-0.37497],"mems":[[1517.5181,-3.2998E-05],[1517.5217,-2.8357E-05],[1517.5252,-2.6295E-05],[1517.5288,-2.9389E-05],[1517.5323,-3.1967E-05],[1517.5358,-2.9389E-05],[1517.5394,-2.6811E-05],[1517.5429,-2.8873E-05],[1517.5464,-2.7842E-05],[1517.55,-2.8873E-05],[1517.5535,-2.7842E-05],[1517.5571,-2.1655E-05],[1517.5606,-2.5264E-05],[1517.5641,-3.2482E-05],[1517.5677,-3.042E-05],[1517.5712,-3.042E-05],[1517.5748,-3.042E-05]]}
-{"quant":[1510.83,-0.22044],"mems":[[1517.5995,-2.4748E-05],[1517.6031,-2.7842E-05],[1517.6066,-3.0935E-05],[1517.6101,-3.5576E-05],[1517.6137,-3.1451E-05],[1517.6172,-2.6811E-05],[1517.6208,-3.2482E-05],[1517.6243,-3.2998E-05],[1517.6278,-3.2482E-05],[1517.6314,-3.0935E-05],[1517.6349,-2.7326E-05],[1517.6385,-2.3717E-05],[1517.642,-2.8357E-05],[1517.6455,-3.1967E-05],[1517.6491,-2.5264E-05],[1517.6526,-2.7842E-05]]}
-{"quant":[1511.28,-0.076894],"mems":[[1517.6809,-2.6811E-05],[1517.6845,-2.5264E-05],[1517.688,-2.5779E-05],[1517.6915,-2.8873E-05],[1517.6951,-3.042E-05],[1517.6986,-2.9389E-05],[1517.7021,-2.8873E-05],[1517.7057,-3.1967E-05],[1517.7092,-3.1451E-05],[1517.7128,-2.9904E-05],[1517.7163,-2.9904E-05],[1517.7198,-2.7326E-05],[1517.7234,-2.9904E-05],[1517.7269,-2.9389E-05],[1517.7305,-2.7842E-05],[1517.734,-3.042E-05]]}
-{"quant":[1511.7,0.04734],"mems":[[1517.7588,-3.042E-05],[1517.7623,-2.7842E-05],[1517.7658,-2.9389E-05],[1517.7694,-2.9904E-05],[1517.7729,-2.9904E-05],[1517.7765,-3.2998E-05],[1517.78,-2.7842E-05],[1517.7835,-3.0935E-05],[1517.7871,-3.042E-05],[1517.7906,-2.7842E-05],[1517.7942,-3.4029E-05],[1517.7977,-3.4029E-05],[1517.8012,-2.7842E-05],[1517.8048,-2.1655E-05],[1517.8083,-2.3717E-05],[1517.8118,-2.5264E-05]]}
-{"quant":[1512.11,0.15636],"mems":[[1517.8331,-2.9389E-05],[1517.8366,-3.042E-05],[1517.8402,-3.0935E-05],[1517.8437,-2.6295E-05],[1517.8472,-3.2482E-05],[1517.8508,-3.2998E-05],[1517.8543,-2.9904E-05],[1517.8578,-3.2998E-05],[1517.8614,-2.9904E-05],[1517.8649,-3.2482E-05],[1517.8685,-3.042E-05],[1517.872,-2.8873E-05],[1517.8755,-2.9389E-05],[1517.8791,-2.4233E-05],[1517.8826,-2.7842E-05],[1517.8862,-3.042E-05]]}
-{"quant":[1512.53,0.25356],"mems":[[1517.9109,-3.1451E-05],[1517.9145,-3.1967E-05],[1517.918,-2.7326E-05],[1517.9215,-2.7842E-05],[1517.9251,-2.6295E-05],[1517.9286,-2.6295E-05],[1517.9322,-2.8873E-05],[1517.9357,-2.8873E-05],[1517.9392,-3.1967E-05],[1517.9428,-3.042E-05],[1517.9463,-2.7842E-05],[1517.9499,-2.8357E-05],[1517.9534,-3.0935E-05],[1517.9569,-2.9904E-05],[1517.9605,-2.7326E-05],[1517.964,-2.7842E-05]]}
-{"quant":[1513.02,0.357],"mems":[[1517.9994,-3.4029E-05],[1518.0029,-3.1451E-05],[1518.0065,-2.8357E-05],[1518.01,-2.8873E-05],[1518.0135,-2.9904E-05],[1518.0171,-3.3513E-05],[1518.0206,-3.1451E-05],[1518.0242,-2.6295E-05],[1518.0277,-2.9389E-05],[1518.0312,-3.1967E-05],[1518.0348,-2.5779E-05],[1518.0383,-2.8357E-05],[1518.0419,-2.9389E-05],[1518.0454,-2.9389E-05],[1518.0489,-3.4029E-05],[1518.0525,-2.7326E-05],[1518.056,-2.5779E-05]]}
-{"quant":[1513.48,0.47285],"mems":[[1518.0843,-2.6811E-05],[1518.0879,-2.6295E-05],[1518.0914,-2.9904E-05],[1518.0949,-2.7326E-05],[1518.0985,-2.7326E-05],[1518.102,-2.9904E-05],[1518.1056,-3.1967E-05],[1518.1091,-3.1967E-05],[1518.1126,-2.9389E-05],[1518.1162,-2.6811E-05],[1518.1197,-2.9904E-05],[1518.1232,-2.8357E-05],[1518.1268,-2.5264E-05],[1518.1303,-2.7842E-05],[1518.1339,-2.7326E-05],[1518.1374,-2.9904E-05]]}
-{"quant":[1513.9,0.59414],"mems":[[1518.1622,-3.1967E-05],[1518.1657,-3.4544E-05],[1518.1693,-2.6295E-05],[1518.1728,-2.6811E-05],[1518.1763,-2.7842E-05],[1518.1799,-2.5779E-05],[1518.1834,-3.2482E-05],[1518.1869,-3.042E-05],[1518.1905,-3.042E-05],[1518.194,-2.9389E-05],[1518.1976,-2.6811E-05],[1518.2011,-3.1967E-05],[1518.2046,-3.3513E-05],[1518.2082,-3.1967E-05],[1518.2117,-2.7842E-05],[1518.2153,-2.7842E-05]]}
-{"quant":[1514.35,0.71538],"mems":[[1518.2436,-3.6091E-05],[1518.2471,-3.4544E-05],[1518.2506,-3.2998E-05],[1518.2542,-3.2998E-05],[1518.2577,-2.7326E-05],[1518.2613,-3.0935E-05],[1518.2648,-3.4029E-05],[1518.2683,-3.1451E-05],[1518.2719,-3.042E-05],[1518.2754,-2.6811E-05],[1518.2789,-3.0935E-05],[1518.2825,-3.4029E-05],[1518.286,-2.7326E-05],[1518.2896,-2.6811E-05],[1518.2931,-2.8357E-05],[1518.2966,-2.5779E-05],[1518.3002,-2.5264E-05]]}
-{"quant":[1514.78,0.84582],"mems":[[1518.3214,-2.9389E-05],[1518.325,-3.042E-05],[1518.3285,-2.6295E-05],[1518.332,-2.6295E-05],[1518.3356,-2.9904E-05],[1518.3391,-2.9389E-05],[1518.3426,-2.5779E-05],[1518.3462,-2.4748E-05],[1518.3497,-3.1451E-05],[1518.3533,-3.1451E-05],[1518.3568,-3.042E-05],[1518.3603,-2.6811E-05],[1518.3639,-2.217E-05],[1518.3674,-2.9389E-05],[1518.371,-2.8873E-05],[1518.3745,-3.0935E-05],[1518.378,-3.2482E-05]]}
-{"quant":[1515.23,0.97896],"mems":[[1518.4063,-2.8873E-05],[1518.4099,-2.7326E-05],[1518.4134,-2.6295E-05],[1518.417,-2.8873E-05],[1518.4205,-2.6811E-05],[1518.424,-2.5779E-05],[1518.4276,-2.8357E-05],[1518.4311,-3.0935E-05],[1518.4347,-2.7842E-05],[1518.4382,-2.3717E-05],[1518.4417,-3.0935E-05],[1518.4453,-3.042E-05],[1518.4488,-3.042E-05],[1518.4523,-3.1967E-05],[1518.4559,-2.9389E-05],[1518.4594,-2.8873E-05]]}
-{"quant":[1515.68,1.0902],"mems":[[1518.4877,-2.8873E-05],[1518.4913,-2.6295E-05],[1518.4948,-2.9904E-05],[1518.4983,-2.7326E-05],[1518.5019,-2.6295E-05],[1518.5054,-2.8873E-05],[1518.509,-2.7326E-05],[1518.5125,-2.7842E-05],[1518.516,-2.9904E-05],[1518.5196,-3.042E-05],[1518.5231,-2.8357E-05],[1518.5267,-2.3717E-05],[1518.5302,-2.5264E-05],[1518.5337,-2.8873E-05],[1518.5373,-3.2998E-05],[1518.5408,-3.2998E-05],[1518.5443,-2.7842E-05]]}
-{"quant":[1516.16,1.1704],"mems":[[1518.5762,-2.9389E-05],[1518.5797,-3.042E-05],[1518.5833,-3.2998E-05],[1518.5868,-2.6295E-05],[1518.5904,-2.8357E-05],[1518.5939,-3.2998E-05],[1518.5974,-3.1451E-05],[1518.601,-3.0935E-05],[1518.6045,-2.7842E-05],[1518.608,-2.9389E-05],[1518.6116,-2.8357E-05],[1518.6151,-2.7326E-05],[1518.6187,-2.8873E-05],[1518.6222,-2.6811E-05],[1518.6257,-2.7842E-05],[1518.6293,-2.6295E-05]]}
-{"quant":[1516.62,-2.8215E-05],"mems":[[1516.5202,-3.1967E-05],[1516.5238,-2.8873E-05],[1516.5273,-2.6295E-05],[1516.5308,-3.0935E-05],[1516.5344,-3.4029E-05],[1516.5379,-3.3513E-05],[1516.5415,-3.2482E-05],[1516.545,-2.4748E-05],[1516.5485,-2.9389E-05],[1516.5521,-3.0935E-05],[1516.5556,-3.1451E-05],[1516.5592,-3.0935E-05],[1516.5627,-3.1967E-05],[1516.5662,-3.1451E-05],[1516.5698,-2.7326E-05],[1516.5733,-3.3513E-05],[1516.5769,-3.1451E-05],[1516.5804,-3.042E-05],[1516.5839,-3.0935E-05],[1516.5875,-2.6295E-05],[1516.591,-2.5264E-05],[1516.5945,-2.8873E-05],[1516.5981,-3.1967E-05],[1516.6016,-3.1967E-05],[1516.6052,-2.9904E-05],[1516.6087,-2.7842E-05],[1516.6122,-3.042E-05],[1516.6158,-3.4029E-05],[1516.6193,-2.7326E-05],[1516.6229,-2.5264E-05],[1516.6264,-2.9904E-05],[1516.6299,-2.6295E-05],[1516.6335,-2.4233E-05],[1516.637,-2.3717E-05],[1516.6405,-2.4233E-05],[1516.6441,-2.9904E-05],[1516.6476,-2.8873E-05],[1516.6512,-2.7326E-05],[1516.6547,-3.042E-05],[1516.6582,-2.7842E-05],[1516.6618,-2.7842E-05],[1516.6653,-2.8873E-05],[1516.6689,-2.6811E-05],[1516.6724,-3.042E-05],[1516.6759,-3.506E-05],[1516.6795,-2.8873E-05],[1516.683,-2.4233E-05],[1516.6865,-2.8873E-05],[1516.6901,-2.6811E-05],[1516.6936,-2.4233E-05],[1516.6972,-2.9904E-05],[1516.7007,-3.2998E-05],[1516.7042,-3.042E-05],[1516.7078,-2.8873E-05],[1516.7113,-2.8357E-05],[1516.7149,-2.7842E-05],[1516.7184,-3.1451E-05],[1516.7219,-2.8357E-05],[1516.7255,-2.4233E-05],[1516.729,-2.8873E-05],[1516.7326,-3.2482E-05],[1516.7361,-2.9904E-05],[1516.7396,-2.6295E-05],[1516.7432,-2.7326E-05],[1516.7467,-2.8357E-05],[1516.7502,-2.7842E-05],[1516.7538,-2.6811E-05],[1516.7573,-2.6811E-05],[1516.7609,-2.9389E-05],[1516.7644,-2.8357E-05],[1516.7679,-2.3717E-05],[1516.7715,-2.5264E-05],[1516.775,-2.8357E-05],[1516.7786,-2.7326E-05],[1516.7821,-3.1451E-05],[1516.7856,-3.2482E-05],[1516.7892,-2.9389E-05],[1516.7927,-2.6811E-05],[1516.7962,-2.3717E-05],[1516.7998,-2.9389E-05],[1516.8033,-3.0935E-05],[1516.8069,-3.0935E-05],[1516.8104,-3.042E-05],[1516.8139,-2.6811E-05],[1516.8175,-2.7842E-05],[1516.821,-2.9904E-05]]}
-{"quant":[1517.1,-2.9526E-05],"mems":[[1517.0015,-2.7842E-05],[1517.005,-2.8873E-05],[1517.0086,-3.4029E-05],[1517.0121,-3.042E-05],[1517.0156,-2.9904E-05],[1517.0192,-2.7326E-05],[1517.0227,-2.3717E-05],[1517.0263,-3.1451E-05],[1517.0298,-3.042E-05],[1517.0333,-2.7842E-05],[1517.0369,-2.9904E-05],[1517.0404,-2.6811E-05],[1517.044,-2.9904E-05],[1517.0475,-3.5576E-05],[1517.051,-3.3513E-05],[1517.0546,-3.3513E-05],[1517.0581,-3.0935E-05],[1517.0616,-2.4748E-05],[1517.0652,-2.6811E-05],[1517.0687,-2.8357E-05],[1517.0723,-3.0935E-05],[1517.0758,-3.0935E-05],[1517.0793,-2.8357E-05],[1517.0829,-2.6295E-05],[1517.0864,-2.8357E-05],[1517.09,-3.2998E-05],[1517.0935,-3.4029E-05],[1517.097,-3.0935E-05],[1517.1006,-2.6295E-05],[1517.1041,-2.8357E-05],[1517.1077,-3.1451E-05],[1517.1112,-3.1451E-05],[1517.1147,-3.0935E-05],[1517.1183,-3.2998E-05],[1517.1218,-2.6811E-05],[1517.1253,-2.3717E-05],[1517.1289,-3.2998E-05],[1517.1324,-3.0935E-05],[1517.136,-3.0935E-05],[1517.1395,-3.1967E-05],[1517.143,-2.5779E-05],[1517.1466,-2.9904E-05],[1517.1501,-3.4029E-05],[1517.1537,-3.0935E-05],[1517.1572,-2.7842E-05],[1517.1607,-2.4748E-05],[1517.1643,-2.8873E-05],[1517.1678,-3.1967E-05],[1517.1713,-2.7842E-05],[1517.1749,-2.6811E-05],[1517.1784,-2.5779E-05],[1517.182,-2.6295E-05],[1517.1855,-2.5264E-05],[1517.189,-2.7842E-05],[1517.1926,-3.5576E-05],[1517.1961,-3.1967E-05],[1517.1997,-3.1967E-05],[1517.2032,-3.3513E-05],[1517.2067,-2.5779E-05],[1517.2103,-2.4233E-05],[1517.2138,-3.0935E-05],[1517.2173,-3.5576E-05],[1517.2209,-3.5576E-05],[1517.2244,-2.9904E-05],[1517.228,-2.3717E-05],[1517.2315,-2.8873E-05],[1517.235,-2.7842E-05],[1517.2386,-2.9389E-05],[1517.2421,-3.2998E-05],[1517.2457,-2.7326E-05],[1517.2492,-3.4029E-05],[1517.2527,-3.2482E-05],[1517.2563,-3.2998E-05],[1517.2598,-3.6607E-05],[1517.2634,-2.8357E-05],[1517.2669,-2.6295E-05],[1517.2704,-2.6295E-05],[1517.274,-2.9904E-05],[1517.2775,-2.9904E-05],[1517.281,-2.8873E-05],[1517.2846,-2.8357E-05],[1517.2881,-2.6811E-05],[1517.2917,-3.2482E-05],[1517.2952,-2.9904E-05],[1517.2987,-2.7842E-05],[1517.3023,-3.042E-05]]}
-{"quant":[1517.53,-2.9584E-05],"mems":[[1517.4332,-2.5264E-05],[1517.4367,-2.7842E-05],[1517.4403,-2.9904E-05],[1517.4438,-2.8357E-05],[1517.4474,-3.1967E-05],[1517.4509,-2.5779E-05],[1517.4544,-2.6811E-05],[1517.458,-2.9904E-05],[1517.4615,-3.4029E-05],[1517.4651,-3.2998E-05],[1517.4686,-2.5779E-05],[1517.4721,-2.8357E-05],[1517.4757,-2.7842E-05],[1517.4792,-2.9389E-05],[1517.4827,-3.2998E-05],[1517.4863,-3.4029E-05],[1517.4898,-3.6607E-05],[1517.4934,-2.7326E-05],[1517.4969,-2.2686E-05],[1517.5004,-2.7326E-05],[1517.504,-2.8873E-05],[1517.5075,-3.3513E-05],[1517.5111,-2.7842E-05],[1517.5146,-2.5779E-05],[1517.5181,-3.2998E-05],[1517.5217,-2.8357E-05],[1517.5252,-2.6295E-05],[1517.5288,-2.9389E-05],[1517.5323,-3.1967E-05],[1517.5358,-2.9389E-05],[1517.5394,-2.6811E-05],[1517.5429,-2.8873E-05],[1517.5464,-2.7842E-05],[1517.55,-2.8873E-05],[1517.5535,-2.7842E-05],[1517.5571,-2.1655E-05],[1517.5606,-2.5264E-05],[1517.5641,-3.2482E-05],[1517.5677,-3.042E-05],[1517.5712,-3.042E-05],[1517.5748,-3.042E-05],[1517.5783,-2.4748E-05],[1517.5818,-2.8873E-05],[1517.5854,-3.5576E-05],[1517.5889,-2.8873E-05],[1517.5924,-3.0935E-05],[1517.596,-3.042E-05],[1517.5995,-2.4748E-05],[1517.6031,-2.7842E-05],[1517.6066,-3.0935E-05],[1517.6101,-3.5576E-05],[1517.6137,-3.1451E-05],[1517.6172,-2.6811E-05],[1517.6208,-3.2482E-05],[1517.6243,-3.2998E-05],[1517.6278,-3.2482E-05],[1517.6314,-3.0935E-05],[1517.6349,-2.7326E-05],[1517.6385,-2.3717E-05],[1517.642,-2.8357E-05],[1517.6455,-3.1967E-05],[1517.6491,-2.5264E-05],[1517.6526,-2.7842E-05],[1517.6561,-2.9904E-05],[1517.6597,-2.4233E-05],[1517.6632,-2.3717E-05],[1517.6668,-2.9904E-05],[1517.6703,-3.1967E-05],[1517.6738,-2.9389E-05],[1517.6774,-2.7842E-05],[1517.6809,-2.6811E-05],[1517.6845,-2.5264E-05],[1517.688,-2.5779E-05],[1517.6915,-2.8873E-05],[1517.6951,-3.042E-05],[1517.6986,-2.9389E-05],[1517.7021,-2.8873E-05],[1517.7057,-3.1967E-05],[1517.7092,-3.1451E-05],[1517.7128,-2.9904E-05],[1517.7163,-2.9904E-05],[1517.7198,-2.7326E-05],[1517.7234,-2.9904E-05],[1517.7269,-2.9389E-05],[1517.7305,-2.7842E-05]]}
-{"quant":[1517.99,-2.9104E-05],"mems":[[1517.8932,-2.6811E-05],[1517.8968,-2.9904E-05],[1517.9003,-3.3513E-05],[1517.9039,-3.0935E-05],[1517.9074,-2.6811E-05],[1517.9109,-3.1451E-05],[1517.9145,-3.1967E-05],[1517.918,-2.7326E-05],[1517.9215,-2.7842E-05],[1517.9251,-2.6295E-05],[1517.9286,-2.6295E-05],[1517.9322,-2.8873E-05],[1517.9357,-2.8873E-05],[1517.9392,-3.1967E-05],[1517.9428,-3.042E-05],[1517.9463,-2.7842E-05],[1517.9499,-2.8357E-05],[1517.9534,-3.0935E-05],[1517.9569,-2.9904E-05],[1517.9605,-2.7326E-05],[1517.964,-2.7842E-05],[1517.9675,-2.6811E-05],[1517.9711,-3.0935E-05],[1517.9746,-3.1451E-05],[1517.9782,-3.042E-05],[1517.9817,-3.1967E-05],[1517.9852,-2.5264E-05],[1517.9888,-2.7326E-05],[1517.9923,-2.9389E-05],[1517.9959,-2.7842E-05],[1517.9994,-3.4029E-05],[1518.0029,-3.1451E-05],[1518.0065,-2.8357E-05],[1518.01,-2.8873E-05],[1518.0135,-2.9904E-05],[1518.0171,-3.3513E-05],[1518.0206,-3.1451E-05],[1518.0242,-2.6295E-05],[1518.0277,-2.9389E-05],[1518.0312,-3.1967E-05],[1518.0348,-2.5779E-05],[1518.0383,-2.8357E-05],[1518.0419,-2.9389E-05],[1518.0454,-2.9389E-05],[1518.0489,-3.4029E-05],[1518.0525,-2.7326E-05],[1518.056,-2.5779E-05],[1518.0596,-2.9389E-05],[1518.0631,-3.0935E-05],[1518.0666,-2.7326E-05],[1518.0702,-2.3202E-05],[1518.0737,-2.5779E-05],[1518.0772,-2.9389E-05],[1518.0808,-3.2482E-05],[1518.0843,-2.6811E-05],[1518.0879,-2.6295E-05],[1518.0914,-2.9904E-05],[1518.0949,-2.7326E-05],[1518.0985,-2.7326E-05],[1518.102,-2.9904E-05],[1518.1056,-3.1967E-05],[1518.1091,-3.1967E-05],[1518.1126,-2.9389E-05],[1518.1162,-2.6811E-05],[1518.1197,-2.9904E-05],[1518.1232,-2.8357E-05],[1518.1268,-2.5264E-05],[1518.1303,-2.7842E-05],[1518.1339,-2.7326E-05],[1518.1374,-2.9904E-05],[1518.1409,-3.3513E-05],[1518.1445,-3.1967E-05],[1518.148,-3.1967E-05],[1518.1516,-2.5264E-05],[1518.1551,-2.5264E-05],[1518.1586,-2.9904E-05],[1518.1622,-3.1967E-05],[1518.1657,-3.4544E-05],[1518.1693,-2.6295E-05],[1518.1728,-2.6811E-05],[1518.1763,-2.7842E-05],[1518.1799,-2.5779E-05],[1518.1834,-3.2482E-05],[1518.1869,-3.042E-05],[1518.1905,-3.042E-05]]}
-{"quant":[1518.41,-2.8251E-05],"mems":[[1518.3108,-3.0935E-05],[1518.3143,-3.0935E-05],[1518.3179,-2.9904E-05],[1518.3214,-2.9389E-05],[1518.325,-3.042E-05],[1518.3285,-2.6295E-05],[1518.332,-2.6295E-05],[1518.3356,-2.9904E-05],[1518.3391,-2.9389E-05],[1518.3426,-2.5779E-05],[1518.3462,-2.4748E-05],[1518.3497,-3.1451E-05],[1518.3533,-3.1451E-05],[1518.3568,-3.042E-05],[1518.3603,-2.6811E-05],[1518.3639,-2.217E-05],[1518.3674,-2.9389E-05],[1518.371,-2.8873E-05],[1518.3745,-3.0935E-05],[1518.378,-3.2482E-05],[1518.3816,-2.9904E-05],[1518.3851,-3.1451E-05],[1518.3886,-3.1451E-05],[1518.3922,-3.1451E-05],[1518.3957,-2.7326E-05],[1518.3993,-2.7842E-05],[1518.4028,-2.9389E-05],[1518.4063,-2.8873E-05],[1518.4099,-2.7326E-05],[1518.4134,-2.6295E-05],[1518.417,-2.8873E-05],[1518.4205,-2.6811E-05],[1518.424,-2.5779E-05],[1518.4276,-2.8357E-05],[1518.4311,-3.0935E-05],[1518.4347,-2.7842E-05],[1518.4382,-2.3717E-05],[1518.4417,-3.0935E-05],[1518.4453,-3.042E-05],[1518.4488,-3.042E-05],[1518.4523,-3.1967E-05],[1518.4559,-2.9389E-05],[1518.4594,-2.8873E-05],[1518.463,-2.1655E-05],[1518.4665,-2.6811E-05],[1518.47,-3.2998E-05],[1518.4736,-2.7326E-05],[1518.4771,-2.8873E-05],[1518.4807,-2.8873E-05],[1518.4842,-2.9389E-05],[1518.4877,-2.8873E-05],[1518.4913,-2.6295E-05],[1518.4948,-2.9904E-05],[1518.4983,-2.7326E-05],[1518.5019,-2.6295E-05],[1518.5054,-2.8873E-05],[1518.509,-2.7326E-05],[1518.5125,-2.7842E-05],[1518.516,-2.9904E-05],[1518.5196,-3.042E-05],[1518.5231,-2.8357E-05],[1518.5267,-2.3717E-05],[1518.5302,-2.5264E-05],[1518.5337,-2.8873E-05],[1518.5373,-3.2998E-05],[1518.5408,-3.2998E-05],[1518.5443,-2.7842E-05],[1518.5479,-2.7326E-05],[1518.5514,-2.8357E-05],[1518.555,-3.1967E-05],[1518.5585,-2.9904E-05],[1518.562,-2.4233E-05],[1518.5656,-2.3202E-05],[1518.5691,-2.3202E-05],[1518.5727,-2.9389E-05],[1518.5762,-2.9389E-05],[1518.5797,-3.042E-05],[1518.5833,-3.2998E-05],[1518.5868,-2.6295E-05],[1518.5904,-2.8357E-05],[1518.5939,-3.2998E-05],[1518.5974,-3.1451E-05],[1518.601,-3.0935E-05],[1518.6045,-2.7842E-05],[1518.608,-2.9389E-05],[1518.6116,-2.8357E-05]]}
-{"quant":[1518.83,-2.9122E-05],"mems":[[1518.7319,-2.4233E-05],[1518.7354,-2.9389E-05],[1518.739,-3.3513E-05],[1518.7425,-3.1967E-05],[1518.7461,-3.1967E-05],[1518.7496,-2.8357E-05],[1518.7531,-2.8357E-05],[1518.7567,-3.1967E-05],[1518.7602,-3.3513E-05],[1518.7637,-3.042E-05],[1518.7673,-3.4029E-05],[1518.7708,-3.6607E-05],[1518.7744,-2.7842E-05],[1518.7779,-2.9904E-05],[1518.7814,-3.3513E-05],[1518.785,-3.3513E-05],[1518.7885,-3.1451E-05],[1518.7921,-2.7326E-05],[1518.7956,-2.6811E-05],[1518.7991,-2.5264E-05],[1518.8027,-2.7842E-05],[1518.8062,-2.9389E-05],[1518.8097,-2.5779E-05],[1518.8133,-2.6295E-05],[1518.8168,-2.7842E-05],[1518.8204,-3.042E-05],[1518.8239,-3.2482E-05],[1518.8274,-2.8357E-05],[1518.831,-2.8357E-05],[1518.8345,-2.9904E-05],[1518.8381,-3.0935E-05],[1518.8416,-3.3513E-05],[1518.8451,-3.042E-05],[1518.8487,-2.9904E-05],[1518.8522,-2.8357E-05],[1518.8558,-2.5264E-05],[1518.8593,-3.042E-05],[1518.8628,-3.4544E-05],[1518.8664,-3.2482E-05],[1518.8699,-2.8873E-05],[1518.8734,-2.3202E-05],[1518.877,-2.1655E-05],[1518.8805,-2.5779E-05],[1518.8841,-3.0935E-05],[1518.8876,-3.1451E-05],[1518.8911,-3.1967E-05],[1518.8947,-2.9389E-05],[1518.8982,-2.3717E-05],[1518.9018,-2.7842E-05],[1518.9053,-3.1451E-05],[1518.9088,-2.6811E-05],[1518.9124,-2.7326E-05],[1518.9159,-2.7842E-05],[1518.9194,-2.7326E-05],[1518.923,-3.3513E-05],[1518.9265,-3.4544E-05],[1518.9301,-2.6811E-05],[1518.9336,-2.8873E-05],[1518.9371,-2.7326E-05],[1518.9407,-2.5264E-05],[1518.9442,-2.9904E-05],[1518.9478,-2.7326E-05],[1518.9513,-2.5779E-05],[1518.9548,-2.5779E-05],[1518.9584,-2.7326E-05],[1518.9619,-2.7326E-05],[1518.9655,-3.0935E-05],[1518.969,-3.2482E-05],[1518.9725,-2.6811E-05],[1518.9761,-2.7326E-05],[1518.9796,-2.6811E-05],[1518.9831,-2.7326E-05],[1518.9867,-2.9389E-05],[1518.9902,-3.0935E-05],[1518.9938,-2.9904E-05],[1518.9973,-2.8357E-05],[1519.0008,-2.6811E-05],[1519.0044,-2.4233E-05],[1519.0079,-3.1451E-05],[1519.0115,-2.9904E-05],[1519.015,-2.7326E-05],[1519.0185,-2.2686E-05],[1519.0221,-2.0624E-05],[1519.0256,-3.1451E-05],[1519.0291,-2.8873E-05],[1519.0327,-2.7842E-05]]}
diff --git a/Axel-hub/DATA/19-10-08_16-01-42_Y.jlg b/Axel-hub/DATA/19-10-08_16-01-42_Y.jlg
deleted file mode 100644
index e19b31ed..00000000
--- a/Axel-hub/DATA/19-10-08_16-01-42_Y.jlg
+++ /dev/null
@@ -1,2463 +0,0 @@
-#{"K":0.3,"phi0":1.57,"scale":1.6,"offset":0.0}
-{"quant":[3.37287,-5.357E-05],"mems":[[3.2752693,-5.0528E-05],[3.278788,-5.0528E-05],[3.2823067,-5.0528E-05],[3.2858253,-5.0528E-05],[3.289344,-5.1043E-05],[3.2928627,-5.2074E-05],[3.2963813,-5.0012E-05],[3.2999,-5.0012E-05],[3.3034187,-5.259E-05],[3.3069373,-5.4652E-05],[3.310456,-5.259E-05],[3.3139747,-5.2074E-05],[3.3174933,-5.2074E-05],[3.321012,-5.0012E-05],[3.3245307,-5.2074E-05],[3.3280493,-5.2074E-05],[3.331568,-5.4137E-05],[3.3350867,-5.5684E-05],[3.3386053,-5.2074E-05],[3.342124,-5.1043E-05],[3.3456427,-5.0528E-05],[3.3491613,-5.5684E-05],[3.35268,-6.1355E-05],[3.3561987,-5.723E-05],[3.3597173,-5.259E-05],[3.363236,-5.0012E-05],[3.3667547,-5.3621E-05],[3.3702733,-5.5684E-05],[3.373792,-5.3106E-05],[3.3773107,-5.3106E-05],[3.3808293,-5.3106E-05],[3.384348,-5.5684E-05],[3.3878667,-5.5168E-05],[3.3913853,-5.5684E-05],[3.394904,-5.6199E-05],[3.3984227,-5.0012E-05],[3.4019413,-5.2074E-05],[3.40546,-5.5684E-05],[3.4089787,-5.4137E-05],[3.4124973,-5.6199E-05],[3.416016,-5.6715E-05],[3.4195347,-5.7746E-05],[3.4230533,-5.4137E-05],[3.426572,-4.795E-05],[3.4300907,-5.5168E-05],[3.4336093,-5.9293E-05],[3.437128,-5.4137E-05],[3.4406467,-5.1559E-05],[3.4441653,-4.9497E-05],[3.447684,-4.9497E-05],[3.4512027,-5.1559E-05],[3.4547213,-5.3106E-05],[3.45824,-5.4137E-05],[3.4617587,-5.3106E-05],[3.4652773,-5.0528E-05],[3.468796,-5.0012E-05],[3.4723147,-5.4137E-05],[3.4758333,-5.4652E-05],[3.479352,-5.1559E-05],[3.4828707,-5.4137E-05],[3.4863893,-5.3106E-05],[3.489908,-5.1559E-05],[3.4934267,-5.4652E-05],[3.4969453,-5.3106E-05],[3.500464,-5.4137E-05],[3.5039827,-5.2074E-05],[3.5075013,-4.6403E-05],[3.51102,-5.0012E-05],[3.5145387,-5.4652E-05],[3.5180573,-5.3106E-05],[3.521576,-5.4652E-05],[3.5250947,-5.2074E-05],[3.5286133,-5.0012E-05],[3.532132,-5.0528E-05],[3.5356507,-5.3106E-05],[3.5391693,-5.8262E-05],[3.542688,-5.1043E-05],[3.5462067,-4.795E-05],[3.5497253,-4.9497E-05],[3.553244,-5.5168E-05],[3.5567627,-5.723E-05],[3.5602813,-5.1043E-05],[3.5638,-5.3106E-05],[3.5673187,-5.2074E-05],[3.5708373,-5.2074E-05],[3.574356,-5.5684E-05]]}
-{"quant":[3.76805,-5.2555E-05],"mems":[[3.66936,-5.2074E-05],[3.6728787,-5.3106E-05],[3.6763973,-5.2074E-05],[3.679916,-5.5168E-05],[3.6834347,-5.3621E-05],[3.6869533,-5.1559E-05],[3.690472,-5.2074E-05],[3.6939907,-4.795E-05],[3.6975093,-5.0528E-05],[3.701028,-5.1559E-05],[3.7045467,-5.4652E-05],[3.7080653,-5.4137E-05],[3.711584,-4.795E-05],[3.7151027,-5.4137E-05],[3.7186213,-5.5684E-05],[3.72214,-5.2074E-05],[3.7256587,-5.2074E-05],[3.7291773,-5.3106E-05],[3.732696,-5.3106E-05],[3.7362147,-5.1043E-05],[3.7397333,-5.5168E-05],[3.743252,-5.4137E-05],[3.7467707,-5.3106E-05],[3.7502893,-5.0012E-05],[3.753808,-4.9497E-05],[3.7573267,-5.4652E-05],[3.7608453,-5.3621E-05],[3.764364,-5.259E-05],[3.7678827,-5.4652E-05],[3.7714013,-5.3106E-05],[3.77492,-5.1043E-05],[3.7784387,-5.3106E-05],[3.7819573,-5.0012E-05],[3.785476,-4.8981E-05],[3.7889947,-5.3106E-05],[3.7925133,-4.8981E-05],[3.796032,-5.1043E-05],[3.7995507,-5.5684E-05],[3.8030693,-5.2074E-05],[3.806588,-5.2074E-05],[3.8101067,-5.3106E-05],[3.8136253,-5.3106E-05],[3.817144,-5.1043E-05],[3.8206627,-5.3621E-05],[3.8241813,-5.4137E-05],[3.8277,-5.5168E-05],[3.8312187,-5.4137E-05],[3.8347373,-5.0528E-05],[3.838256,-5.5168E-05],[3.8417747,-5.2074E-05],[3.8452933,-5.3106E-05],[3.848812,-5.3621E-05],[3.8523307,-4.8981E-05],[3.8558493,-5.5168E-05],[3.859368,-5.5168E-05],[3.8628867,-5.4137E-05],[3.8664053,-5.259E-05],[3.869924,-5.0012E-05],[3.8734427,-5.3106E-05],[3.8769613,-5.5684E-05],[3.88048,-5.5168E-05],[3.8839987,-5.3106E-05],[3.8875173,-5.3621E-05],[3.891036,-5.4652E-05],[3.8945547,-5.3621E-05],[3.8980733,-4.9497E-05],[3.901592,-5.4652E-05],[3.9051107,-5.723E-05],[3.9086293,-5.259E-05],[3.912148,-5.1043E-05],[3.9156667,-4.8465E-05],[3.9191853,-5.259E-05],[3.922704,-5.8262E-05],[3.9262227,-5.6715E-05],[3.9297413,-5.259E-05],[3.93326,-5.4652E-05],[3.9367787,-5.4652E-05],[3.9402973,-5.3621E-05],[3.943816,-5.4137E-05],[3.9473347,-4.9497E-05],[3.9508533,-5.0012E-05],[3.954372,-5.1043E-05],[3.9578907,-5.1559E-05],[3.9614093,-5.2074E-05],[3.964928,-5.259E-05],[3.9684467,-5.5168E-05]]}
-{"quant":[4.23079,-5.2626E-05],"mems":[[4.133824,-5.259E-05],[4.1373427,-5.3106E-05],[4.1408613,-5.4652E-05],[4.14438,-5.5168E-05],[4.1478987,-5.4652E-05],[4.1514173,-5.3106E-05],[4.154936,-5.5684E-05],[4.1584547,-5.5168E-05],[4.1619733,-5.0012E-05],[4.165492,-5.4137E-05],[4.1690107,-5.7746E-05],[4.1725293,-5.5168E-05],[4.176048,-5.3621E-05],[4.1795667,-5.4137E-05],[4.1830853,-5.1559E-05],[4.186604,-5.6199E-05],[4.1901227,-5.8777E-05],[4.1936413,-5.4137E-05],[4.19716,-5.723E-05],[4.2006787,-5.4652E-05],[4.2041973,-5.1043E-05],[4.207716,-5.5684E-05],[4.2112347,-5.8262E-05],[4.2147533,-5.6199E-05],[4.218272,-5.0528E-05],[4.2217907,-4.7434E-05],[4.2253093,-5.0528E-05],[4.228828,-5.4652E-05],[4.2323467,-5.2074E-05],[4.2358653,-5.1043E-05],[4.239384,-5.1559E-05],[4.2429027,-5.4652E-05],[4.2464213,-5.6199E-05],[4.24994,-5.2074E-05],[4.2534587,-5.3106E-05],[4.2569773,-5.2074E-05],[4.260496,-4.9497E-05],[4.2640147,-5.0012E-05],[4.2675333,-5.1559E-05],[4.271052,-5.2074E-05],[4.2745707,-5.5684E-05],[4.2780893,-5.3106E-05],[4.281608,-5.1559E-05],[4.2851267,-5.5168E-05],[4.2886453,-5.259E-05],[4.292164,-5.5684E-05],[4.2956827,-5.3621E-05],[4.2992013,-5.4652E-05],[4.30272,-5.5168E-05],[4.3062387,-5.1043E-05],[4.3097573,-5.3106E-05],[4.313276,-5.0528E-05],[4.3167947,-5.1043E-05],[4.3203133,-5.1043E-05],[4.323832,-5.2074E-05],[4.3273507,-5.2074E-05],[4.3308693,-5.2074E-05],[4.334388,-5.3621E-05],[4.3379067,-5.0012E-05],[4.3414253,-5.0012E-05],[4.344944,-4.8465E-05],[4.3484627,-5.259E-05],[4.3519813,-5.723E-05],[4.3555,-5.2074E-05],[4.3590187,-5.1559E-05],[4.3625373,-5.4137E-05],[4.366056,-5.259E-05],[4.3695747,-5.4137E-05],[4.3730933,-5.6715E-05],[4.376612,-5.723E-05],[4.3801307,-5.7746E-05],[4.3836493,-5.3621E-05],[4.387168,-5.1559E-05],[4.3906867,-4.8981E-05],[4.3942053,-5.2074E-05],[4.397724,-5.4652E-05],[4.4012427,-5.0528E-05],[4.4047613,-5.2074E-05],[4.40828,-5.1559E-05],[4.4117987,-5.4137E-05],[4.4153173,-5.1559E-05],[4.418836,-4.8465E-05],[4.4223547,-4.9497E-05],[4.4258733,-5.0528E-05],[4.429392,-5.1043E-05],[4.4329107,-4.8981E-05]]}
-{"quant":[4.76262,-5.1868E-05],"mems":[[4.6651427,-5.3621E-05],[4.6686613,-5.2074E-05],[4.67218,-5.2074E-05],[4.6756987,-5.5168E-05],[4.6792173,-5.3106E-05],[4.682736,-5.4137E-05],[4.6862547,-5.259E-05],[4.6897733,-5.2074E-05],[4.693292,-5.1559E-05],[4.6968107,-5.4137E-05],[4.7003293,-5.5168E-05],[4.703848,-5.3106E-05],[4.7073667,-5.7746E-05],[4.7108853,-5.3106E-05],[4.714404,-4.9497E-05],[4.7179227,-5.5684E-05],[4.7214413,-5.8262E-05],[4.72496,-5.4652E-05],[4.7284787,-5.3106E-05],[4.7319973,-5.0528E-05],[4.735516,-4.7434E-05],[4.7390347,-5.2074E-05],[4.7425533,-5.1043E-05],[4.746072,-5.0528E-05],[4.7495907,-5.1043E-05],[4.7531093,-4.7434E-05],[4.756628,-5.3106E-05],[4.7601467,-5.4652E-05],[4.7636653,-5.3621E-05],[4.767184,-5.6199E-05],[4.7707027,-5.1043E-05],[4.7742213,-5.4137E-05],[4.77774,-5.5168E-05],[4.7812587,-5.1043E-05],[4.7847773,-4.7434E-05],[4.788296,-4.795E-05],[4.7918147,-5.6199E-05],[4.7953333,-4.9497E-05],[4.798852,-4.795E-05],[4.8023707,-5.0528E-05],[4.8058893,-5.0528E-05],[4.809408,-5.6715E-05],[4.8129267,-5.1559E-05],[4.8164453,-5.0012E-05],[4.819964,-5.5168E-05],[4.8234827,-5.3106E-05],[4.8270013,-5.1559E-05],[4.83052,-5.1559E-05],[4.8340387,-4.9497E-05],[4.8375573,-5.4137E-05],[4.841076,-5.4137E-05],[4.8445947,-4.795E-05],[4.8481133,-5.2074E-05],[4.851632,-5.3621E-05],[4.8551507,-4.9497E-05],[4.8586693,-4.9497E-05],[4.862188,-5.2074E-05],[4.8657067,-5.259E-05],[4.8692253,-5.0528E-05],[4.872744,-5.0012E-05],[4.8762627,-5.6715E-05],[4.8797813,-5.6199E-05],[4.8833,-5.4652E-05],[4.8868187,-5.5168E-05],[4.8903373,-5.6715E-05],[4.893856,-6.0839E-05],[4.8973747,-5.3621E-05],[4.9008933,-5.1559E-05],[4.904412,-5.5168E-05],[4.9079307,-5.4137E-05],[4.9114493,-5.5684E-05],[4.914968,-5.259E-05],[4.9184867,-5.4652E-05],[4.9220053,-5.723E-05],[4.925524,-5.3106E-05],[4.9290427,-5.4137E-05],[4.9325613,-5.6199E-05],[4.93608,-5.2074E-05],[4.9395987,-5.1043E-05],[4.9431173,-5.3106E-05],[4.946636,-5.3106E-05],[4.9501547,-5.1043E-05],[4.9536733,-5.0528E-05],[4.957192,-5.4137E-05],[4.9607107,-5.6199E-05],[4.9642293,-5.5684E-05]]}
-{"quant":[5.23448,-5.3587E-05],"mems":[[5.136644,-5.1043E-05],[5.1401627,-5.2074E-05],[5.1436813,-4.6919E-05],[5.1472,-4.9497E-05],[5.1507187,-5.2074E-05],[5.1542373,-4.9497E-05],[5.157756,-4.8981E-05],[5.1612747,-5.3106E-05],[5.1647933,-5.259E-05],[5.168312,-5.3106E-05],[5.1718307,-5.3621E-05],[5.1753493,-5.3621E-05],[5.178868,-5.7746E-05],[5.1823867,-5.3106E-05],[5.1859053,-5.4137E-05],[5.189424,-5.4652E-05],[5.1929427,-5.8262E-05],[5.1964613,-5.8262E-05],[5.19998,-5.0012E-05],[5.2034987,-5.3106E-05],[5.2070173,-5.1559E-05],[5.210536,-5.3106E-05],[5.2140547,-5.259E-05],[5.2175733,-5.1559E-05],[5.221092,-5.6715E-05],[5.2246107,-5.2074E-05],[5.2281293,-5.0528E-05],[5.231648,-5.0012E-05],[5.2351667,-5.3106E-05],[5.2386853,-5.4652E-05],[5.242204,-4.9497E-05],[5.2457227,-5.3106E-05],[5.2492413,-5.3621E-05],[5.25276,-5.1043E-05],[5.2562787,-5.2074E-05],[5.2597973,-5.259E-05],[5.263316,-5.1559E-05],[5.2668347,-5.1043E-05],[5.2703533,-5.5168E-05],[5.273872,-5.723E-05],[5.2773907,-5.4652E-05],[5.2809093,-5.259E-05],[5.284428,-5.3106E-05],[5.2879467,-5.1559E-05],[5.2914653,-5.259E-05],[5.294984,-5.5168E-05],[5.2985027,-5.5168E-05],[5.3020213,-5.4137E-05],[5.30554,-5.1559E-05],[5.3090587,-5.5168E-05],[5.3125773,-5.723E-05],[5.316096,-5.4137E-05],[5.3196147,-5.4137E-05],[5.3231333,-5.4652E-05],[5.326652,-5.3621E-05],[5.3301707,-5.1559E-05],[5.3336893,-5.4652E-05],[5.337208,-5.723E-05],[5.3407267,-5.7746E-05],[5.3442453,-5.9293E-05],[5.347764,-5.3621E-05],[5.3512827,-5.1559E-05],[5.3548013,-5.5684E-05],[5.35832,-5.3621E-05],[5.3618387,-4.795E-05],[5.3653573,-5.0012E-05],[5.368876,-5.1559E-05],[5.3723947,-5.2074E-05],[5.3759133,-5.5168E-05],[5.379432,-5.259E-05],[5.3829507,-5.3106E-05],[5.3864693,-5.4137E-05],[5.389988,-4.8981E-05],[5.3935067,-5.3621E-05],[5.3970253,-6.0324E-05],[5.400544,-5.7746E-05],[5.4040627,-5.5168E-05],[5.4075813,-4.8981E-05],[5.4111,-5.4137E-05],[5.4146187,-5.9293E-05],[5.4181373,-5.2074E-05],[5.421656,-5.4137E-05],[5.4251747,-5.5168E-05],[5.4286933,-5.259E-05],[5.432212,-5.259E-05],[5.4357307,-5.5684E-05]]}
-{"quant":[5.67908,-0.48314],"mems":[[5.785132,-5.1559E-05],[5.7884693,-5.1043E-05],[5.7918067,-5.0528E-05],[5.795144,-5.3621E-05],[5.7984813,-5.3106E-05],[5.8018187,-5.3106E-05],[5.805156,-5.1559E-05],[5.8084933,-5.0012E-05],[5.8118307,-5.0528E-05],[5.815168,-5.259E-05],[5.8185053,-5.9808E-05],[5.8218427,-5.6715E-05],[5.82518,-5.2074E-05],[5.8285173,-5.259E-05],[5.8318547,-5.0528E-05],[5.835192,-5.3106E-05],[5.8385293,-5.2074E-05],[5.8418667,-5.1043E-05],[5.845204,-4.6919E-05],[5.8485413,-4.5887E-05],[5.8518787,-5.1559E-05],[5.855216,-5.6199E-05],[5.8585533,-6.1355E-05],[5.8618907,-5.8777E-05],[5.865228,-5.1559E-05],[5.8685653,-4.8981E-05],[5.8719027,-5.1559E-05],[5.87524,-5.0528E-05],[5.8785773,-5.259E-05],[5.8819147,-5.3106E-05],[5.885252,-4.8465E-05],[5.8885893,-5.3106E-05],[5.8919267,-5.5168E-05],[5.895264,-5.2074E-05],[5.8986013,-5.1559E-05],[5.9019387,-5.1043E-05],[5.905276,-4.6919E-05],[5.9086133,-4.8465E-05],[5.9119507,-5.6715E-05],[5.915288,-5.3621E-05],[5.9186253,-4.5372E-05],[5.9219627,-4.8981E-05],[5.9253,-4.9497E-05],[5.9286373,-4.8981E-05],[5.9319747,-5.7746E-05],[5.935312,-5.6199E-05],[5.9386493,-5.1559E-05],[5.9419867,-5.5684E-05],[5.945324,-5.7746E-05],[5.9486613,-5.5684E-05],[5.9519987,-5.2074E-05],[5.955336,-5.259E-05],[5.9586733,-5.6199E-05],[5.9620107,-5.6715E-05],[5.965348,-5.5684E-05],[5.9686853,-5.4137E-05],[5.9720227,-5.6715E-05],[5.97536,-5.3621E-05],[5.9786973,-5.3106E-05],[5.9820347,-5.3621E-05],[5.985372,-5.2074E-05],[5.9887093,-5.9293E-05],[5.9920467,-5.5684E-05],[5.995384,-5.3106E-05],[5.9987213,-5.6715E-05],[6.0020587,-4.8981E-05],[6.005396,-5.259E-05],[6.0087333,-5.9293E-05],[6.0120707,-5.6199E-05],[6.015408,-5.8777E-05],[6.0187453,-5.6715E-05],[6.0220827,-5.3621E-05],[6.02542,-5.4652E-05],[6.0287573,-5.4652E-05],[6.0320947,-5.0528E-05],[6.035432,-4.8465E-05],[6.0387693,-5.3621E-05],[6.0421067,-5.4652E-05],[6.045444,-5.3621E-05],[6.0487813,-5.259E-05],[6.0521187,-5.1043E-05],[6.055456,-5.1559E-05],[6.0587933,-4.9497E-05]]}
-{"quant":[6.14326,-5.2524E-05],"mems":[[6.045444,-5.3621E-05],[6.0487813,-5.259E-05],[6.0521187,-5.1043E-05],[6.055456,-5.1559E-05],[6.0587933,-4.9497E-05],[6.0621307,-4.6919E-05],[6.065468,-5.2074E-05],[6.0688053,-5.6715E-05],[6.0721427,-5.6199E-05],[6.07548,-5.6715E-05],[6.0788173,-5.4137E-05],[6.0821547,-5.3621E-05],[6.085492,-5.3621E-05],[6.0888293,-5.5168E-05],[6.0921667,-5.5684E-05],[6.095504,-5.3106E-05],[6.0988413,-5.3106E-05],[6.1021787,-5.0528E-05],[6.105516,-5.5684E-05],[6.1088533,-5.5684E-05],[6.1121907,-5.3621E-05],[6.115528,-5.1559E-05],[6.1188653,-5.0012E-05],[6.1222027,-5.3621E-05],[6.12554,-5.259E-05],[6.1288773,-5.5168E-05],[6.1322147,-5.5168E-05],[6.135552,-5.3106E-05],[6.1388893,-5.1043E-05],[6.1422267,-4.6919E-05],[6.145564,-5.0528E-05],[6.1489013,-5.4137E-05],[6.1522387,-5.1043E-05],[6.155576,-4.9497E-05],[6.1589133,-5.0012E-05],[6.1622507,-5.4137E-05],[6.165588,-5.6715E-05],[6.1689253,-5.5684E-05],[6.1722627,-5.4652E-05],[6.1756,-4.7434E-05],[6.1789373,-5.0012E-05],[6.1822747,-5.6715E-05],[6.185612,-5.4137E-05],[6.1889493,-5.6199E-05],[6.1922867,-5.3106E-05],[6.195624,-4.8981E-05],[6.1989613,-5.259E-05],[6.2022987,-4.8981E-05],[6.205636,-4.8465E-05],[6.2089733,-5.0528E-05],[6.2123107,-5.1043E-05],[6.215648,-5.6199E-05],[6.2189853,-5.2074E-05],[6.2223227,-5.259E-05],[6.22566,-5.7746E-05],[6.2289973,-5.259E-05],[6.2323347,-5.2074E-05],[6.235672,-5.4137E-05],[6.2390093,-4.8981E-05],[6.2423467,-5.1043E-05],[6.245684,-5.6199E-05],[6.2490213,-5.9808E-05],[6.2523587,-5.6715E-05],[6.255696,-5.0528E-05],[6.2590333,-5.1559E-05],[6.2623707,-5.1559E-05],[6.265708,-5.3621E-05],[6.2690453,-4.9497E-05],[6.2723827,-4.8981E-05],[6.27572,-5.5684E-05],[6.2790573,-5.8777E-05],[6.2823947,-5.723E-05],[6.285732,-5.2074E-05],[6.2890693,-5.4137E-05],[6.2924067,-5.1043E-05],[6.295744,-5.0012E-05],[6.2990813,-5.2074E-05],[6.3024187,-5.2074E-05],[6.305756,-5.4137E-05],[6.3090933,-5.3106E-05],[6.3124307,-5.6199E-05],[6.315768,-5.5168E-05],[6.3191053,-5.1559E-05],[6.3224427,-5.4652E-05],[6.32578,-5.4652E-05],[6.3291173,-5.3106E-05],[6.3324547,-5.4137E-05],[6.335792,-5.2074E-05],[6.3391293,-5.0012E-05],[6.3424667,-5.259E-05],[6.345804,-5.259E-05]]}
-{"quant":[6.60299,-5.3006E-05],"mems":[[6.505996,-5.0012E-05],[6.5093333,-5.1559E-05],[6.5126707,-5.3621E-05],[6.516008,-5.4137E-05],[6.5193453,-5.8262E-05],[6.5226827,-5.5684E-05],[6.52602,-5.3106E-05],[6.5293573,-5.4652E-05],[6.5326947,-6.0324E-05],[6.536032,-6.1355E-05],[6.5393693,-5.723E-05],[6.5427067,-5.5684E-05],[6.546044,-5.3106E-05],[6.5493813,-5.4137E-05],[6.5527187,-5.723E-05],[6.556056,-5.723E-05],[6.5593933,-5.3621E-05],[6.5627307,-4.9497E-05],[6.566068,-5.1043E-05],[6.5694053,-5.5684E-05],[6.5727427,-5.1559E-05],[6.57608,-5.0528E-05],[6.5794173,-5.6199E-05],[6.5827547,-5.259E-05],[6.586092,-5.3106E-05],[6.5894293,-5.5684E-05],[6.5927667,-5.0012E-05],[6.596104,-5.2074E-05],[6.5994413,-5.2074E-05],[6.6027787,-4.9497E-05],[6.606116,-5.6715E-05],[6.6094533,-5.7746E-05],[6.6127907,-5.3106E-05],[6.616128,-5.2074E-05],[6.6194653,-5.259E-05],[6.6228027,-5.2074E-05],[6.62614,-5.1559E-05],[6.6294773,-5.1559E-05],[6.6328147,-5.5168E-05],[6.636152,-5.8262E-05],[6.6394893,-5.1043E-05],[6.6428267,-5.0012E-05],[6.646164,-5.3621E-05],[6.6495013,-5.4137E-05],[6.6528387,-5.259E-05],[6.656176,-5.3621E-05],[6.6595133,-5.1043E-05],[6.6628507,-5.0528E-05],[6.666188,-5.723E-05],[6.6695253,-5.1559E-05],[6.6728627,-5.3106E-05],[6.6762,-5.5684E-05],[6.6795373,-5.259E-05],[6.6828747,-5.4652E-05],[6.686212,-5.259E-05],[6.6895493,-4.9497E-05],[6.6928867,-4.8981E-05],[6.696224,-5.4652E-05],[6.6995613,-5.3106E-05],[6.7028987,-4.8465E-05],[6.706236,-5.3621E-05],[6.7095733,-5.3621E-05],[6.7129107,-4.9497E-05],[6.716248,-5.259E-05],[6.7195853,-5.2074E-05],[6.7229227,-5.1559E-05],[6.72626,-5.5684E-05],[6.7295973,-5.1043E-05],[6.7329347,-5.1043E-05],[6.736272,-5.4137E-05],[6.7396093,-5.0012E-05],[6.7429467,-5.4137E-05],[6.746284,-5.9293E-05],[6.7496213,-5.5168E-05],[6.7529587,-5.5168E-05],[6.756296,-5.6199E-05],[6.7596333,-5.3621E-05],[6.7629707,-5.3621E-05],[6.766308,-5.4137E-05],[6.7696453,-5.0012E-05],[6.7729827,-5.3106E-05],[6.77632,-5.3106E-05],[6.7796573,-5.0012E-05],[6.7829947,-5.6199E-05],[6.786332,-5.4652E-05],[6.7896693,-5.1559E-05],[6.7930067,-5.0012E-05],[6.796344,-5.0528E-05],[6.7996813,-5.3621E-05],[6.8030187,-5.2074E-05]]}
-{"quant":[7.04382,-5.3405E-05],"mems":[[6.946524,-5.6199E-05],[6.9498613,-5.0012E-05],[6.9531987,-4.8981E-05],[6.956536,-5.1559E-05],[6.9598733,-5.2074E-05],[6.9632107,-5.4652E-05],[6.966548,-5.5168E-05],[6.9698853,-5.723E-05],[6.9732227,-5.4652E-05],[6.97656,-5.6715E-05],[6.9798973,-5.5168E-05],[6.9832347,-5.3106E-05],[6.986572,-5.723E-05],[6.9899093,-5.1559E-05],[6.9932467,-5.4652E-05],[6.996584,-5.5684E-05],[6.9999213,-4.8465E-05],[7.0032587,-5.3621E-05],[7.006596,-5.4652E-05],[7.0099333,-5.5684E-05],[7.0132707,-5.8262E-05],[7.016608,-5.3621E-05],[7.0199453,-5.1043E-05],[7.0232827,-5.0528E-05],[7.02662,-5.4137E-05],[7.0299573,-5.4137E-05],[7.0332947,-4.9497E-05],[7.036632,-5.2074E-05],[7.0399693,-5.4652E-05],[7.0433067,-5.5168E-05],[7.046644,-5.8777E-05],[7.0499813,-5.6715E-05],[7.0533187,-5.1559E-05],[7.056656,-5.2074E-05],[7.0599933,-4.8465E-05],[7.0633307,-5.2074E-05],[7.066668,-5.6199E-05],[7.0700053,-5.1559E-05],[7.0733427,-5.2074E-05],[7.07668,-5.259E-05],[7.0800173,-5.6715E-05],[7.0833547,-5.723E-05],[7.086692,-5.0528E-05],[7.0900293,-4.7434E-05],[7.0933667,-5.1559E-05],[7.096704,-5.6715E-05],[7.1000413,-5.4652E-05],[7.1033787,-5.3106E-05],[7.106716,-5.259E-05],[7.1100533,-5.3621E-05],[7.1133907,-5.5168E-05],[7.116728,-5.7746E-05],[7.1200653,-5.6715E-05],[7.1234027,-5.5168E-05],[7.12674,-5.4652E-05],[7.1300773,-4.9497E-05],[7.1334147,-5.0012E-05],[7.136752,-5.1043E-05],[7.1400893,-5.3106E-05],[7.1434267,-5.4137E-05],[7.146764,-5.2074E-05],[7.1501013,-5.1043E-05],[7.1534387,-5.2074E-05],[7.156776,-5.8777E-05],[7.1601133,-5.5684E-05],[7.1634507,-5.0528E-05],[7.166788,-4.8465E-05],[7.1701253,-5.0528E-05],[7.1734627,-5.5684E-05],[7.1768,-5.7746E-05],[7.1801373,-5.723E-05],[7.1834747,-5.1043E-05],[7.186812,-4.9497E-05],[7.1901493,-5.3621E-05],[7.1934867,-5.3106E-05],[7.196824,-4.9497E-05],[7.2001613,-5.0528E-05],[7.2034987,-5.1043E-05],[7.206836,-5.3106E-05],[7.2101733,-5.4137E-05],[7.2135107,-4.9497E-05],[7.216848,-5.4652E-05],[7.2201853,-5.7746E-05],[7.2235227,-5.2074E-05],[7.22686,-5.2074E-05],[7.2301973,-5.4137E-05],[7.2335347,-5.3621E-05],[7.236872,-5.3621E-05],[7.2402093,-5.3106E-05],[7.2435467,-5.2074E-05],[7.246884,-5.1559E-05]]}
-{"quant":[7.48542,-5.3887E-05],"mems":[[7.387052,-5.3106E-05],[7.3903893,-5.3106E-05],[7.3937267,-5.1559E-05],[7.397064,-5.3106E-05],[7.4004013,-5.5168E-05],[7.4037387,-5.3621E-05],[7.407076,-5.4652E-05],[7.4104133,-5.2074E-05],[7.4137507,-5.4137E-05],[7.417088,-5.9293E-05],[7.4204253,-5.3106E-05],[7.4237627,-5.6715E-05],[7.4271,-5.8262E-05],[7.4304373,-4.9497E-05],[7.4337747,-5.0528E-05],[7.437112,-5.1559E-05],[7.4404493,-5.1559E-05],[7.4437867,-5.259E-05],[7.447124,-5.6715E-05],[7.4504613,-5.723E-05],[7.4537987,-5.259E-05],[7.457136,-5.4652E-05],[7.4604733,-5.4652E-05],[7.4638107,-5.6199E-05],[7.467148,-5.7746E-05],[7.4704853,-5.4652E-05],[7.4738227,-5.4137E-05],[7.47716,-5.0528E-05],[7.4804973,-4.8465E-05],[7.4838347,-4.9497E-05],[7.487172,-5.3106E-05],[7.4905093,-5.4137E-05],[7.4938467,-4.9497E-05],[7.497184,-5.2074E-05],[7.5005213,-5.5684E-05],[7.5038587,-5.6199E-05],[7.507196,-5.5168E-05],[7.5105333,-5.4137E-05],[7.5138707,-5.4137E-05],[7.517208,-5.3106E-05],[7.5205453,-5.4137E-05],[7.5238827,-5.4137E-05],[7.52722,-5.4137E-05],[7.5305573,-5.5168E-05],[7.5338947,-5.1559E-05],[7.537232,-5.1559E-05],[7.5405693,-5.4652E-05],[7.5439067,-5.6199E-05],[7.547244,-5.5168E-05],[7.5505813,-5.4137E-05],[7.5539187,-5.4652E-05],[7.557256,-5.1559E-05],[7.5605933,-5.3106E-05],[7.5639307,-5.8777E-05],[7.567268,-5.5168E-05],[7.5706053,-4.8465E-05],[7.5739427,-4.8465E-05],[7.57728,-5.4652E-05],[7.5806173,-5.7746E-05],[7.5839547,-5.5684E-05],[7.587292,-5.4137E-05],[7.5906293,-5.4137E-05],[7.5939667,-5.1043E-05],[7.597304,-5.3621E-05],[7.6006413,-5.8262E-05],[7.6039787,-5.2074E-05],[7.607316,-5.259E-05],[7.6106533,-5.5168E-05],[7.6139907,-5.0012E-05],[7.617328,-5.3106E-05],[7.6206653,-5.9808E-05],[7.6240027,-5.4137E-05],[7.62734,-5.0012E-05],[7.6306773,-5.2074E-05],[7.6340147,-5.0528E-05],[7.637352,-5.3106E-05],[7.6406893,-5.3106E-05],[7.6440267,-5.1559E-05],[7.647364,-5.3106E-05],[7.6507013,-5.3621E-05],[7.6540387,-5.3621E-05],[7.657376,-5.2074E-05],[7.6607133,-5.4137E-05],[7.6640507,-5.2074E-05],[7.667388,-5.259E-05],[7.6707253,-5.723E-05],[7.6740627,-5.259E-05],[7.6774,-5.0528E-05],[7.6807373,-5.259E-05],[7.6840747,-5.4137E-05],[7.687412,-5.8262E-05]]}
-{"quant":[7.91953,-5.3455E-05],"mems":[[7.8209053,-5.1559E-05],[7.8242427,-5.0528E-05],[7.82758,-4.8981E-05],[7.8309173,-5.5168E-05],[7.8342547,-5.4652E-05],[7.837592,-5.4652E-05],[7.8409293,-5.1043E-05],[7.8442667,-5.1043E-05],[7.847604,-5.0012E-05],[7.8509413,-5.3621E-05],[7.8542787,-5.6199E-05],[7.857616,-5.259E-05],[7.8609533,-5.8777E-05],[7.8642907,-5.5684E-05],[7.867628,-5.5168E-05],[7.8709653,-5.7746E-05],[7.8743027,-5.6199E-05],[7.87764,-5.6199E-05],[7.8809773,-4.9497E-05],[7.8843147,-5.1043E-05],[7.887652,-5.3106E-05],[7.8909893,-5.6199E-05],[7.8943267,-5.9293E-05],[7.897664,-5.723E-05],[7.9010013,-5.4137E-05],[7.9043387,-5.2074E-05],[7.907676,-5.3621E-05],[7.9110133,-5.723E-05],[7.9143507,-5.4137E-05],[7.917688,-4.9497E-05],[7.9210253,-5.3106E-05],[7.9243627,-5.5684E-05],[7.9277,-5.5684E-05],[7.9310373,-5.4652E-05],[7.9343747,-5.1559E-05],[7.937712,-5.259E-05],[7.9410493,-5.3106E-05],[7.9443867,-5.1559E-05],[7.947724,-5.259E-05],[7.9510613,-5.259E-05],[7.9543987,-5.0528E-05],[7.957736,-5.259E-05],[7.9610733,-5.1559E-05],[7.9644107,-5.1043E-05],[7.967748,-5.4137E-05],[7.9710853,-5.1559E-05],[7.9744227,-5.3621E-05],[7.97776,-5.9293E-05],[7.9810973,-5.4652E-05],[7.9844347,-5.3621E-05],[7.987772,-5.723E-05],[7.9911093,-5.4652E-05],[7.9944467,-5.3621E-05],[7.997784,-5.3106E-05],[8.0011213,-5.7746E-05],[8.0044587,-5.6199E-05],[8.007796,-5.3621E-05],[8.0111333,-5.6715E-05],[8.0144707,-4.8981E-05],[8.017808,-4.795E-05],[8.0211453,-5.1559E-05],[8.0244827,-5.6715E-05],[8.02782,-5.9293E-05],[8.0311573,-5.259E-05],[8.0344947,-5.4652E-05],[8.037832,-5.1043E-05],[8.0411693,-4.8981E-05],[8.0445067,-5.3106E-05],[8.047844,-5.1043E-05],[8.0511813,-5.4137E-05],[8.0545187,-5.3621E-05],[8.057856,-5.3106E-05],[8.0611933,-5.259E-05],[8.0645307,-5.5684E-05],[8.067868,-5.5684E-05],[8.0712053,-5.1043E-05],[8.0745427,-5.5168E-05],[8.07788,-4.7434E-05],[8.0812173,-4.6919E-05],[8.0845547,-5.3106E-05],[8.087892,-5.1043E-05],[8.0912293,-5.2074E-05],[8.0945667,-5.1043E-05],[8.097904,-5.4137E-05],[8.1012413,-5.3106E-05],[8.1045787,-5.4137E-05],[8.107916,-5.9808E-05],[8.1112533,-5.4652E-05],[8.1145907,-5.6199E-05],[8.117928,-5.6715E-05],[8.1212653,-5.2074E-05]]}
-{"quant":[8.36811,-5.307E-05],"mems":[[8.2702827,-5.9808E-05],[8.273832,-5.259E-05],[8.2773813,-4.8465E-05],[8.2809307,-5.1043E-05],[8.28448,-5.0012E-05],[8.2880293,-5.6199E-05],[8.2915787,-5.5684E-05],[8.295128,-5.2074E-05],[8.2986773,-5.3621E-05],[8.3022267,-5.1559E-05],[8.305776,-5.259E-05],[8.3093253,-5.1559E-05],[8.3128747,-5.2074E-05],[8.316424,-5.0528E-05],[8.3199733,-4.8981E-05],[8.3235227,-5.7746E-05],[8.327072,-5.9293E-05],[8.3306213,-5.5684E-05],[8.3341707,-4.9497E-05],[8.33772,-4.7434E-05],[8.3412693,-4.9497E-05],[8.3448187,-4.8981E-05],[8.348368,-5.8262E-05],[8.3519173,-5.4652E-05],[8.3554667,-5.2074E-05],[8.359016,-5.4137E-05],[8.3625653,-4.8981E-05],[8.3661147,-5.3621E-05],[8.369664,-5.4137E-05],[8.3732133,-5.3621E-05],[8.3767627,-5.4137E-05],[8.380312,-4.8981E-05],[8.3838613,-4.795E-05],[8.3874107,-5.259E-05],[8.39096,-5.3106E-05],[8.3945093,-5.1559E-05],[8.3980587,-5.5168E-05],[8.401608,-5.5684E-05],[8.4051573,-5.5684E-05],[8.4087067,-5.4137E-05],[8.412256,-5.3106E-05],[8.4158053,-5.4652E-05],[8.4193547,-5.259E-05],[8.422904,-5.5684E-05],[8.4264533,-5.4652E-05],[8.4300027,-5.1043E-05],[8.433552,-5.4137E-05],[8.4371013,-5.1043E-05],[8.4406507,-5.0528E-05],[8.4442,-5.3621E-05],[8.4477493,-4.8465E-05],[8.4512987,-5.2074E-05],[8.454848,-5.6715E-05],[8.4583973,-5.6715E-05],[8.4619467,-5.6199E-05],[8.465496,-4.9497E-05],[8.4690453,-5.1559E-05],[8.4725947,-5.4137E-05],[8.476144,-5.7746E-05],[8.4796933,-5.9293E-05],[8.4832427,-5.259E-05],[8.486792,-5.0528E-05],[8.4903413,-5.1559E-05],[8.4938907,-5.4137E-05],[8.49744,-5.3621E-05],[8.5009893,-5.0012E-05],[8.5045387,-4.795E-05],[8.508088,-4.6919E-05],[8.5116373,-4.9497E-05],[8.5151867,-5.0012E-05],[8.518736,-5.0012E-05],[8.5222853,-5.1043E-05],[8.5258347,-5.3106E-05],[8.529384,-5.3106E-05],[8.5329333,-5.5168E-05],[8.5364827,-5.8777E-05],[8.540032,-5.9808E-05],[8.5435813,-6.1355E-05],[8.5471307,-5.3621E-05],[8.55068,-5.1043E-05],[8.5542293,-5.723E-05],[8.5577787,-5.259E-05],[8.561328,-4.9497E-05],[8.5648773,-5.3106E-05],[8.5684267,-5.6715E-05]]}
-{"quant":[8.91349,-5.3515E-05],"mems":[[8.81688,-5.5168E-05],[8.8204293,-5.6715E-05],[8.8239787,-5.2074E-05],[8.827528,-5.1043E-05],[8.8310773,-4.7434E-05],[8.8346267,-4.6919E-05],[8.838176,-4.795E-05],[8.8417253,-5.2074E-05],[8.8452747,-5.5168E-05],[8.848824,-5.3106E-05],[8.8523733,-5.2074E-05],[8.8559227,-5.1559E-05],[8.859472,-5.3621E-05],[8.8630213,-5.4652E-05],[8.8665707,-5.723E-05],[8.87012,-5.6715E-05],[8.8736693,-5.3621E-05],[8.8772187,-5.4652E-05],[8.880768,-5.4652E-05],[8.8843173,-5.723E-05],[8.8878667,-5.5684E-05],[8.891416,-5.5684E-05],[8.8949653,-5.723E-05],[8.8985147,-5.1559E-05],[8.902064,-5.3621E-05],[8.9056133,-5.6199E-05],[8.9091627,-5.1559E-05],[8.912712,-5.2074E-05],[8.9162613,-5.0528E-05],[8.9198107,-4.9497E-05],[8.92336,-5.3621E-05],[8.9269093,-5.1559E-05],[8.9304587,-5.3621E-05],[8.934008,-5.6715E-05],[8.9375573,-5.4652E-05],[8.9411067,-5.5684E-05],[8.944656,-5.3621E-05],[8.9482053,-5.1559E-05],[8.9517547,-5.1043E-05],[8.955304,-4.9497E-05],[8.9588533,-5.1559E-05],[8.9624027,-5.3106E-05],[8.965952,-5.4137E-05],[8.9695013,-5.6715E-05],[8.9730507,-5.4652E-05],[8.9766,-5.259E-05],[8.9801493,-5.4137E-05],[8.9836987,-4.8981E-05],[8.987248,-5.4137E-05],[8.9907973,-5.6199E-05],[8.9943467,-5.4137E-05],[8.997896,-5.8262E-05],[9.0014453,-5.259E-05],[9.0049947,-5.4652E-05],[9.008544,-5.723E-05],[9.0120933,-5.3106E-05],[9.0156427,-5.4137E-05],[9.019192,-5.3621E-05],[9.0227413,-5.3621E-05],[9.0262907,-5.6715E-05],[9.02984,-5.3106E-05],[9.0333893,-5.2074E-05],[9.0369387,-5.6715E-05],[9.040488,-5.2074E-05],[9.0440373,-5.0528E-05],[9.0475867,-5.6199E-05],[9.051136,-5.6199E-05],[9.0546853,-5.6199E-05],[9.0582347,-5.5684E-05],[9.061784,-5.3621E-05],[9.0653333,-5.3106E-05],[9.0688827,-5.4652E-05],[9.072432,-5.5168E-05],[9.0759813,-5.5168E-05],[9.0795307,-5.259E-05],[9.08308,-4.8465E-05],[9.0866293,-5.3621E-05],[9.0901787,-5.5684E-05],[9.093728,-4.8465E-05],[9.0972773,-4.7434E-05],[9.1008267,-5.1559E-05],[9.104376,-5.2074E-05],[9.1079253,-5.4137E-05],[9.1114747,-5.4137E-05],[9.115024,-5.3106E-05]]}
-{"quant":[9.34793,-5.1541E-05],"mems":[[9.2498987,-5.4137E-05],[9.253448,-5.2074E-05],[9.2569973,-4.795E-05],[9.2605467,-5.3106E-05],[9.264096,-5.3621E-05],[9.2676453,-5.259E-05],[9.2711947,-5.3621E-05],[9.274744,-4.9497E-05],[9.2782933,-5.6199E-05],[9.2818427,-5.5684E-05],[9.285392,-4.8465E-05],[9.2889413,-5.259E-05],[9.2924907,-5.2074E-05],[9.29604,-5.259E-05],[9.2995893,-5.3621E-05],[9.3031387,-5.2074E-05],[9.306688,-5.3621E-05],[9.3102373,-5.0528E-05],[9.3137867,-5.3106E-05],[9.317336,-5.4137E-05],[9.3208853,-5.1043E-05],[9.3244347,-5.6199E-05],[9.327984,-5.5168E-05],[9.3315333,-5.1559E-05],[9.3350827,-5.4137E-05],[9.338632,-5.3106E-05],[9.3421813,-5.2074E-05],[9.3457307,-5.0012E-05],[9.34928,-4.8981E-05],[9.3528293,-5.1043E-05],[9.3563787,-4.8981E-05],[9.359928,-5.1043E-05],[9.3634773,-5.3106E-05],[9.3670267,-4.8465E-05],[9.370576,-4.8981E-05],[9.3741253,-5.0012E-05],[9.3776747,-4.8465E-05],[9.381224,-5.2074E-05],[9.3847733,-5.5684E-05],[9.3883227,-5.3621E-05],[9.391872,-4.8465E-05],[9.3954213,-5.3106E-05],[9.3989707,-5.5684E-05],[9.40252,-4.8465E-05],[9.4060693,-5.259E-05],[9.4096187,-5.2074E-05],[9.413168,-5.0012E-05],[9.4167173,-5.723E-05],[9.4202667,-5.6199E-05],[9.423816,-5.0012E-05],[9.4273653,-5.1043E-05],[9.4309147,-5.0528E-05],[9.434464,-5.0012E-05],[9.4380133,-5.1043E-05],[9.4415627,-5.3106E-05],[9.445112,-5.3621E-05],[9.4486613,-5.1043E-05],[9.4522107,-5.5168E-05],[9.45576,-5.6199E-05],[9.4593093,-5.8777E-05],[9.4628587,-5.7746E-05],[9.466408,-5.1043E-05],[9.4699573,-4.5887E-05],[9.4735067,-4.7434E-05],[9.477056,-5.3106E-05],[9.4806053,-5.2074E-05],[9.4841547,-5.6199E-05],[9.487704,-5.5168E-05],[9.4912533,-5.1043E-05],[9.4948027,-5.1559E-05],[9.498352,-5.1043E-05],[9.5019013,-5.3621E-05],[9.5054507,-5.7746E-05],[9.509,-5.8262E-05],[9.5125493,-4.8981E-05],[9.5160987,-5.1043E-05],[9.519648,-5.4652E-05],[9.5231973,-5.723E-05],[9.5267467,-5.6715E-05],[9.530296,-4.8465E-05],[9.5338453,-5.259E-05],[9.5373947,-5.4652E-05],[9.540944,-5.5168E-05],[9.5444933,-5.3106E-05],[9.5480427,-5.0528E-05]]}
-{"quant":[9.81485,-5.3123E-05],"mems":[[9.7148613,-4.9497E-05],[9.7184107,-5.259E-05],[9.72196,-5.1043E-05],[9.7255093,-5.4137E-05],[9.7290587,-5.3621E-05],[9.732608,-4.9497E-05],[9.7361573,-5.5684E-05],[9.7397067,-5.4652E-05],[9.743256,-5.3106E-05],[9.7468053,-5.3621E-05],[9.7503547,-5.259E-05],[9.753904,-5.3106E-05],[9.7574533,-4.8981E-05],[9.7610027,-5.259E-05],[9.764552,-5.4652E-05],[9.7681013,-5.4652E-05],[9.7716507,-5.3106E-05],[9.7752,-5.4137E-05],[9.7787493,-5.5168E-05],[9.7822987,-5.0528E-05],[9.785848,-5.5168E-05],[9.7893973,-5.259E-05],[9.7929467,-5.259E-05],[9.796496,-5.7746E-05],[9.8000453,-5.259E-05],[9.8035947,-5.0528E-05],[9.807144,-5.0528E-05],[9.8106933,-5.4137E-05],[9.8142427,-4.9497E-05],[9.817792,-4.9497E-05],[9.8213413,-5.4137E-05],[9.8248907,-4.8981E-05],[9.82844,-5.1559E-05],[9.8319893,-5.3621E-05],[9.8355387,-5.259E-05],[9.839088,-4.8981E-05],[9.8426373,-5.4137E-05],[9.8461867,-5.4137E-05],[9.849736,-4.795E-05],[9.8532853,-6.0324E-05],[9.8568347,-5.8777E-05],[9.860384,-5.4652E-05],[9.8639333,-5.259E-05],[9.8674827,-4.8465E-05],[9.871032,-5.5168E-05],[9.8745813,-5.259E-05],[9.8781307,-4.8981E-05],[9.88168,-5.4652E-05],[9.8852293,-5.8777E-05],[9.8887787,-5.5168E-05],[9.892328,-4.7434E-05],[9.8958773,-5.2074E-05],[9.8994267,-5.6199E-05],[9.902976,-5.259E-05],[9.9065253,-5.3106E-05],[9.9100747,-5.4652E-05],[9.913624,-5.4137E-05],[9.9171733,-5.4652E-05],[9.9207227,-5.5684E-05],[9.924272,-5.259E-05],[9.9278213,-5.3106E-05],[9.9313707,-5.7746E-05],[9.93492,-5.5684E-05],[9.9384693,-5.6715E-05],[9.9420187,-5.6715E-05],[9.945568,-4.8465E-05],[9.9491173,-4.8981E-05],[9.9526667,-5.1559E-05],[9.956216,-5.3106E-05],[9.9597653,-5.6199E-05],[9.9633147,-5.3621E-05],[9.966864,-5.259E-05],[9.9704133,-5.0012E-05],[9.9739627,-5.1043E-05],[9.977512,-5.3106E-05],[9.9810613,-5.259E-05],[9.9846107,-5.3106E-05],[9.98816,-5.1043E-05],[9.9917093,-5.4652E-05],[9.9952587,-5.4652E-05],[9.998808,-5.2074E-05],[10.002357,-4.8981E-05],[10.005907,-4.9497E-05],[10.009456,-5.4137E-05],[10.013005,-5.0528E-05],[10.016555,-5.0528E-05]]}
-{"quant":[10.2746,-5.3052E-05],"mems":[[10.176275,-5.1559E-05],[10.179824,-5.2074E-05],[10.183373,-5.1043E-05],[10.186923,-4.8981E-05],[10.190472,-4.6919E-05],[10.194021,-4.8465E-05],[10.197571,-4.5887E-05],[10.20112,-5.0012E-05],[10.204669,-5.723E-05],[10.208219,-5.259E-05],[10.211768,-5.259E-05],[10.215317,-5.4137E-05],[10.218867,-5.1043E-05],[10.222416,-5.2074E-05],[10.225965,-5.1559E-05],[10.229515,-5.6199E-05],[10.233064,-5.4652E-05],[10.236613,-5.0012E-05],[10.240163,-5.4137E-05],[10.243712,-5.5168E-05],[10.247261,-5.2074E-05],[10.250811,-5.4137E-05],[10.25436,-5.4652E-05],[10.257909,-5.0528E-05],[10.261459,-5.259E-05],[10.265008,-5.5684E-05],[10.268557,-5.723E-05],[10.272107,-5.5684E-05],[10.275656,-5.1043E-05],[10.279205,-5.1559E-05],[10.282755,-5.1043E-05],[10.286304,-5.5684E-05],[10.289853,-5.6199E-05],[10.293403,-4.7434E-05],[10.296952,-5.0528E-05],[10.300501,-5.4137E-05],[10.304051,-5.3621E-05],[10.3076,-5.3106E-05],[10.311149,-5.3621E-05],[10.314699,-5.4137E-05],[10.318248,-4.8981E-05],[10.321797,-5.1559E-05],[10.325347,-5.8777E-05],[10.328896,-5.6715E-05],[10.332445,-5.723E-05],[10.335995,-5.4652E-05],[10.339544,-5.1043E-05],[10.343093,-4.9497E-05],[10.346643,-5.1043E-05],[10.350192,-5.6715E-05],[10.353741,-5.3621E-05],[10.357291,-5.2074E-05],[10.36084,-5.0528E-05],[10.364389,-4.7434E-05],[10.367939,-5.5168E-05],[10.371488,-5.6715E-05],[10.375037,-5.4652E-05],[10.378587,-5.4652E-05],[10.382136,-5.2074E-05],[10.385685,-4.795E-05],[10.389235,-5.259E-05],[10.392784,-6.0324E-05],[10.396333,-5.6715E-05],[10.399883,-5.2074E-05],[10.403432,-5.0528E-05],[10.406981,-5.2074E-05],[10.410531,-5.5168E-05],[10.41408,-5.3621E-05],[10.417629,-5.1559E-05],[10.421179,-5.1043E-05],[10.424728,-5.3106E-05],[10.428277,-5.3106E-05],[10.431827,-5.4652E-05],[10.435376,-5.5168E-05],[10.438925,-5.1043E-05],[10.442475,-4.9497E-05],[10.446024,-4.8981E-05],[10.449573,-5.4652E-05],[10.453123,-5.5168E-05],[10.456672,-4.8981E-05],[10.460221,-5.0012E-05],[10.463771,-4.6403E-05],[10.46732,-4.8981E-05],[10.470869,-5.259E-05],[10.474419,-5.0528E-05],[10.477968,-5.4652E-05]]}
-{"quant":[10.7294,-1.4036],"mems":[[10.722872,-5.259E-05],[10.726421,-5.3106E-05],[10.729971,-5.2074E-05],[10.73352,-5.3621E-05],[10.737069,-5.1559E-05],[10.740619,-4.9497E-05],[10.744168,-5.4652E-05],[10.747717,-5.3106E-05],[10.751267,-5.1043E-05],[10.754816,-5.5168E-05],[10.758365,-5.4652E-05],[10.761915,-5.259E-05],[10.765464,-5.1559E-05],[10.769013,-5.4137E-05],[10.772563,-5.5684E-05],[10.776112,-4.795E-05],[10.779661,-4.8465E-05],[10.783211,-5.6199E-05],[10.78676,-5.3621E-05],[10.790309,-5.259E-05],[10.793859,-5.3621E-05],[10.797408,-5.1559E-05],[10.800957,-5.5684E-05],[10.804507,-5.4137E-05],[10.808056,-4.9497E-05],[10.811605,-5.0012E-05],[10.815155,-5.3621E-05],[10.818704,-5.7746E-05],[10.822253,-5.3621E-05],[10.825803,-4.7434E-05],[10.829352,-4.8981E-05],[10.832901,-5.3106E-05],[10.836451,-5.3621E-05],[10.84,-5.5168E-05],[10.843448,-5.5168E-05],[10.846896,-5.5684E-05],[10.850344,-5.8777E-05],[10.853792,-5.6199E-05],[10.85724,-5.2074E-05],[10.860688,-5.1043E-05],[10.864136,-5.3106E-05],[10.867584,-5.5684E-05],[10.871032,-5.2074E-05],[10.87448,-5.3621E-05],[10.877928,-5.5168E-05],[10.881376,-5.2074E-05],[10.884824,-4.8981E-05],[10.888272,-5.0528E-05],[10.89172,-5.6199E-05],[10.895168,-5.1559E-05],[10.898616,-5.0012E-05],[10.902064,-5.1559E-05],[10.905512,-5.0012E-05],[10.90896,-5.3621E-05],[10.912408,-5.2074E-05],[10.915856,-4.9497E-05],[10.919304,-5.0528E-05],[10.922752,-5.4652E-05],[10.9262,-5.7746E-05],[10.929648,-5.1043E-05],[10.933096,-5.1043E-05],[10.936544,-5.1043E-05],[10.939992,-4.795E-05],[10.94344,-5.3621E-05],[10.946888,-5.4137E-05],[10.950336,-5.0012E-05],[10.953784,-5.0528E-05],[10.957232,-4.8981E-05],[10.96068,-5.2074E-05],[10.964128,-5.5168E-05],[10.967576,-5.3621E-05],[10.971024,-5.5684E-05],[10.974472,-5.3106E-05],[10.97792,-5.259E-05],[10.981368,-5.1559E-05],[10.984816,-5.2074E-05],[10.988264,-5.6199E-05],[10.991712,-5.259E-05],[10.99516,-5.5168E-05],[10.998608,-5.4652E-05],[11.002056,-5.259E-05],[11.005504,-5.4652E-05],[11.008952,-5.259E-05],[11.0124,-5.4137E-05],[11.015848,-5.1043E-05]]}
-{"quant":[11.2116,-5.3999E-05],"mems":[[11.112392,-5.0012E-05],[11.11584,-5.1559E-05],[11.119288,-4.8981E-05],[11.122736,-5.4137E-05],[11.126184,-5.259E-05],[11.129632,-5.0528E-05],[11.13308,-5.259E-05],[11.136528,-5.3621E-05],[11.139976,-5.9293E-05],[11.143424,-5.9293E-05],[11.146872,-5.4137E-05],[11.15032,-5.259E-05],[11.153768,-5.3106E-05],[11.157216,-5.6715E-05],[11.160664,-5.6715E-05],[11.164112,-5.2074E-05],[11.16756,-4.9497E-05],[11.171008,-4.9497E-05],[11.174456,-5.5168E-05],[11.177904,-5.7746E-05],[11.181352,-5.1043E-05],[11.1848,-4.8465E-05],[11.188248,-5.5168E-05],[11.191696,-5.6715E-05],[11.195144,-5.1043E-05],[11.198592,-5.0528E-05],[11.20204,-5.0528E-05],[11.205488,-5.3106E-05],[11.208936,-5.4652E-05],[11.212384,-5.3106E-05],[11.215832,-5.1559E-05],[11.21928,-4.9497E-05],[11.222728,-5.3621E-05],[11.226176,-5.0012E-05],[11.229624,-5.2074E-05],[11.233072,-5.5684E-05],[11.23652,-5.1043E-05],[11.239968,-5.9293E-05],[11.243416,-5.8262E-05],[11.246864,-5.4137E-05],[11.250312,-5.723E-05],[11.25376,-5.6199E-05],[11.257208,-5.5684E-05],[11.260656,-5.5684E-05],[11.264104,-5.5684E-05],[11.267552,-5.4652E-05],[11.271,-5.0528E-05],[11.274448,-4.7434E-05],[11.277896,-5.0012E-05],[11.281344,-5.0528E-05],[11.284792,-5.5168E-05],[11.28824,-5.5684E-05],[11.291688,-5.2074E-05],[11.295136,-5.4652E-05],[11.298584,-5.1559E-05],[11.302032,-5.7746E-05],[11.30548,-5.9293E-05],[11.308928,-5.4137E-05],[11.312376,-5.7746E-05],[11.315824,-5.1559E-05],[11.319272,-5.1043E-05],[11.32272,-5.6199E-05],[11.326168,-5.5684E-05],[11.329616,-5.6199E-05],[11.333064,-5.259E-05],[11.336512,-5.2074E-05],[11.33996,-5.7746E-05],[11.343408,-5.5684E-05],[11.346856,-5.3106E-05],[11.350304,-5.0528E-05],[11.353752,-5.1043E-05],[11.3572,-5.4137E-05],[11.360648,-5.7746E-05],[11.364096,-5.9293E-05],[11.367544,-5.5684E-05],[11.370992,-5.7746E-05],[11.37444,-5.3106E-05],[11.377888,-5.0012E-05],[11.381336,-5.6199E-05],[11.384784,-5.4652E-05],[11.388232,-5.5168E-05],[11.39168,-5.4137E-05],[11.395128,-5.0012E-05],[11.398576,-4.8981E-05],[11.402024,-5.2074E-05],[11.405472,-5.6199E-05],[11.40892,-5.6199E-05],[11.412368,-5.3621E-05]]}
-{"quant":[11.9188,-5.3398E-05],"mems":[[11.819232,-5.259E-05],[11.82268,-5.723E-05],[11.826128,-5.4652E-05],[11.829576,-5.6715E-05],[11.833024,-5.4652E-05],[11.836472,-5.0012E-05],[11.83992,-5.2074E-05],[11.843368,-5.3621E-05],[11.846816,-5.259E-05],[11.850264,-5.0012E-05],[11.853712,-5.1559E-05],[11.85716,-5.0012E-05],[11.860608,-4.9497E-05],[11.864056,-5.1043E-05],[11.867504,-5.3106E-05],[11.870952,-5.6199E-05],[11.8744,-4.9497E-05],[11.877848,-4.6403E-05],[11.881296,-5.3106E-05],[11.884744,-5.4137E-05],[11.888192,-5.3106E-05],[11.89164,-5.6715E-05],[11.895088,-5.5168E-05],[11.898536,-4.8465E-05],[11.901984,-5.259E-05],[11.905432,-5.4652E-05],[11.90888,-5.3106E-05],[11.912328,-5.4137E-05],[11.915776,-5.2074E-05],[11.919224,-5.5168E-05],[11.922672,-5.6715E-05],[11.92612,-5.3621E-05],[11.929568,-5.2074E-05],[11.933016,-5.2074E-05],[11.936464,-5.259E-05],[11.939912,-5.5168E-05],[11.94336,-5.4137E-05],[11.946808,-5.0528E-05],[11.950256,-5.1559E-05],[11.953704,-5.1043E-05],[11.957152,-5.0528E-05],[11.9606,-5.2074E-05],[11.964048,-5.5168E-05],[11.967496,-5.3106E-05],[11.970944,-5.1559E-05],[11.974392,-5.4652E-05],[11.97784,-5.3106E-05],[11.981288,-5.7746E-05],[11.984736,-5.8262E-05],[11.988184,-5.6715E-05],[11.991632,-5.4652E-05],[11.99508,-5.1043E-05],[11.998528,-5.3621E-05],[12.001976,-5.2074E-05],[12.005424,-5.4652E-05],[12.008872,-5.4137E-05],[12.01232,-4.795E-05],[12.015768,-5.3106E-05],[12.019216,-5.3106E-05],[12.022664,-5.2074E-05],[12.026112,-5.3621E-05],[12.02956,-5.4652E-05],[12.033008,-5.5684E-05],[12.036456,-5.0012E-05],[12.039904,-5.0528E-05],[12.043352,-5.3621E-05],[12.0468,-5.259E-05],[12.050248,-5.4652E-05],[12.053696,-5.1043E-05],[12.057144,-4.8465E-05],[12.060592,-5.0528E-05],[12.06404,-5.6199E-05],[12.067488,-5.8262E-05],[12.070936,-5.0528E-05],[12.074384,-4.9497E-05],[12.077832,-5.0012E-05],[12.08128,-4.9497E-05],[12.084728,-5.4652E-05],[12.088176,-5.2074E-05],[12.091624,-5.4137E-05],[12.095072,-5.6199E-05],[12.09852,-5.0528E-05],[12.101968,-5.5168E-05],[12.105416,-5.4652E-05],[12.108864,-5.3106E-05],[12.112312,-5.2074E-05],[12.11576,-4.9497E-05],[12.119208,-5.4137E-05]]}
-{"quant":[12.3805,-5.4051E-05],"mems":[[12.281264,-5.1043E-05],[12.284712,-5.259E-05],[12.28816,-5.6715E-05],[12.291608,-5.6715E-05],[12.295056,-5.4652E-05],[12.298504,-5.1043E-05],[12.301952,-5.3106E-05],[12.3054,-5.3621E-05],[12.308848,-5.259E-05],[12.312296,-5.3621E-05],[12.315744,-5.1043E-05],[12.319192,-5.1043E-05],[12.32264,-5.4652E-05],[12.326088,-5.7746E-05],[12.329536,-5.5168E-05],[12.332984,-5.259E-05],[12.336432,-5.1559E-05],[12.33988,-5.0528E-05],[12.343328,-5.4652E-05],[12.346776,-5.7746E-05],[12.350224,-5.723E-05],[12.353672,-5.4652E-05],[12.35712,-4.9497E-05],[12.360568,-5.3106E-05],[12.364016,-5.7746E-05],[12.367464,-5.4652E-05],[12.370912,-5.723E-05],[12.37436,-5.259E-05],[12.377808,-4.9497E-05],[12.381256,-5.5168E-05],[12.384704,-5.7746E-05],[12.388152,-5.8262E-05],[12.3916,-5.3621E-05],[12.395048,-5.1559E-05],[12.398496,-5.259E-05],[12.401944,-5.5168E-05],[12.405392,-5.8777E-05],[12.40884,-5.3106E-05],[12.412288,-5.259E-05],[12.415736,-5.5684E-05],[12.419184,-5.259E-05],[12.422632,-5.3106E-05],[12.42608,-5.3106E-05],[12.429528,-5.4652E-05],[12.432976,-5.5168E-05],[12.436424,-4.8981E-05],[12.439872,-5.3106E-05],[12.44332,-5.6715E-05],[12.446768,-5.7746E-05],[12.450216,-5.9293E-05],[12.453664,-5.3106E-05],[12.457112,-5.2074E-05],[12.46056,-5.1043E-05],[12.464008,-5.1559E-05],[12.467456,-5.8777E-05],[12.470904,-5.259E-05],[12.474352,-4.9497E-05],[12.4778,-5.2074E-05],[12.481248,-5.2074E-05],[12.484696,-5.6199E-05],[12.488144,-5.7746E-05],[12.491592,-5.8777E-05],[12.49504,-5.0012E-05],[12.498488,-4.6403E-05],[12.501936,-5.4652E-05],[12.505384,-5.5684E-05],[12.508832,-5.6199E-05],[12.51228,-5.4137E-05],[12.515728,-5.4137E-05],[12.519176,-5.4137E-05],[12.522624,-5.2074E-05],[12.526072,-5.259E-05],[12.52952,-5.0528E-05],[12.532968,-5.0528E-05],[12.536416,-5.3106E-05],[12.539864,-5.0012E-05],[12.543312,-5.2074E-05],[12.54676,-5.8262E-05],[12.550208,-5.3621E-05],[12.553656,-5.3621E-05],[12.557104,-5.4137E-05],[12.560552,-5.0528E-05],[12.564,-5.3621E-05],[12.567448,-5.4652E-05],[12.570896,-5.6199E-05],[12.574344,-5.5168E-05],[12.577792,-5.6715E-05],[12.58124,-5.5684E-05]]}
-{"quant":[12.8633,-5.2539E-05],"mems":[[12.763984,-5.5168E-05],[12.767432,-5.3106E-05],[12.77088,-5.0528E-05],[12.774328,-5.2074E-05],[12.777776,-5.0528E-05],[12.781224,-5.2074E-05],[12.784672,-5.6715E-05],[12.78812,-5.3106E-05],[12.791568,-5.3621E-05],[12.795016,-5.4137E-05],[12.798464,-4.8981E-05],[12.801912,-5.0528E-05],[12.80536,-5.6199E-05],[12.808808,-5.5168E-05],[12.812256,-5.0528E-05],[12.815704,-5.1559E-05],[12.819152,-5.1043E-05],[12.8226,-4.9497E-05],[12.826048,-5.5168E-05],[12.829496,-5.4652E-05],[12.832944,-5.259E-05],[12.836392,-5.4137E-05],[12.83984,-5.4652E-05],[12.843288,-5.9293E-05],[12.846736,-6.0324E-05],[12.850184,-5.9293E-05],[12.853632,-5.4652E-05],[12.85708,-5.4137E-05],[12.860528,-5.6199E-05],[12.863976,-5.2074E-05],[12.867424,-5.3106E-05],[12.870872,-5.4652E-05],[12.87432,-5.1559E-05],[12.877768,-5.2074E-05],[12.881216,-5.259E-05],[12.884664,-5.1559E-05],[12.888112,-5.259E-05],[12.89156,-5.259E-05],[12.895008,-5.1559E-05],[12.898456,-4.9497E-05],[12.901904,-4.9497E-05],[12.905352,-5.259E-05],[12.9088,-5.4137E-05],[12.912248,-5.5168E-05],[12.915696,-5.3106E-05],[12.919144,-5.3621E-05],[12.922592,-5.6199E-05],[12.92604,-5.259E-05],[12.929488,-5.1559E-05],[12.932936,-5.3621E-05],[12.936384,-5.5168E-05],[12.939832,-5.259E-05],[12.94328,-5.1043E-05],[12.946728,-5.259E-05],[12.950176,-5.3106E-05],[12.953624,-5.3106E-05],[12.957072,-5.1559E-05],[12.96052,-4.8465E-05],[12.963968,-5.259E-05],[12.967416,-5.723E-05],[12.970864,-5.259E-05],[12.974312,-5.3106E-05],[12.97776,-5.5168E-05],[12.981208,-5.0012E-05],[12.984656,-5.4652E-05],[12.988104,-6.1355E-05],[12.991552,-5.5168E-05],[12.995,-5.4652E-05],[12.998448,-5.4652E-05],[13.001896,-5.0528E-05],[13.005344,-5.4137E-05],[13.008792,-5.4137E-05],[13.01224,-5.6715E-05],[13.015688,-5.5168E-05],[13.019136,-5.0528E-05],[13.022584,-5.0528E-05],[13.026032,-5.1559E-05],[13.02948,-5.723E-05],[13.032928,-5.6199E-05],[13.036376,-5.1559E-05],[13.039824,-4.8981E-05],[13.043272,-5.5168E-05],[13.04672,-6.0324E-05],[13.050168,-5.1559E-05],[13.053616,-5.0012E-05],[13.057064,-5.4137E-05],[13.060512,-5.3106E-05],[13.06396,-5.4652E-05]]}
-{"quant":[13.3204,-1.0123],"mems":[[13.32256,-5.4652E-05],[13.326008,-5.723E-05],[13.329456,-5.4652E-05],[13.332904,-5.5684E-05],[13.336352,-5.4652E-05],[13.3398,-5.1559E-05],[13.343248,-5.5684E-05],[13.346696,-5.9808E-05],[13.350144,-5.7746E-05],[13.353592,-5.4137E-05],[13.35704,-5.259E-05],[13.360488,-4.8981E-05],[13.363936,-4.5887E-05],[13.367384,-5.1559E-05],[13.370832,-5.6715E-05],[13.37428,-5.4652E-05],[13.377728,-5.0012E-05],[13.381176,-5.0528E-05],[13.384624,-5.5168E-05],[13.388072,-5.4137E-05],[13.39152,-5.0012E-05],[13.394968,-5.1043E-05],[13.398416,-5.259E-05],[13.401864,-5.4652E-05],[13.405312,-5.6715E-05],[13.40876,-5.5168E-05],[13.412208,-5.3106E-05],[13.415656,-5.0528E-05],[13.419104,-5.259E-05],[13.422552,-5.4652E-05],[13.426,-5.3621E-05],[13.429411,-5.4137E-05],[13.432821,-5.5684E-05],[13.436232,-5.4652E-05],[13.439643,-5.0012E-05],[13.443053,-5.2074E-05],[13.446464,-5.4137E-05],[13.449875,-5.2074E-05],[13.453285,-5.3106E-05],[13.456696,-5.5168E-05],[13.460107,-5.6199E-05],[13.463517,-5.7746E-05],[13.466928,-5.4137E-05],[13.470339,-4.8465E-05],[13.473749,-4.9497E-05],[13.47716,-5.3106E-05],[13.480571,-5.3106E-05],[13.483981,-4.8981E-05],[13.487392,-5.0528E-05],[13.490803,-5.4137E-05],[13.494213,-5.3106E-05],[13.497624,-5.1043E-05],[13.501035,-5.1043E-05],[13.504445,-5.4652E-05],[13.507856,-5.5684E-05],[13.511267,-5.6715E-05],[13.514677,-5.6199E-05],[13.518088,-5.259E-05],[13.521499,-5.2074E-05],[13.524909,-5.259E-05],[13.52832,-5.1043E-05],[13.531731,-5.2074E-05],[13.535141,-5.4652E-05],[13.538552,-4.7434E-05],[13.541963,-4.5372E-05],[13.545373,-5.1043E-05],[13.548784,-5.0528E-05],[13.552195,-5.259E-05],[13.555605,-5.3621E-05],[13.559016,-5.3621E-05],[13.562427,-5.3106E-05],[13.565837,-5.2074E-05],[13.569248,-5.1043E-05],[13.572659,-5.2074E-05],[13.576069,-5.5168E-05],[13.57948,-5.0528E-05],[13.582891,-5.3106E-05],[13.586301,-5.8262E-05],[13.589712,-5.6715E-05],[13.593123,-5.5168E-05],[13.596533,-5.0012E-05],[13.599944,-4.9497E-05],[13.603355,-5.2074E-05],[13.606765,-5.3106E-05],[13.610176,-5.1559E-05]]}
-{"quant":[13.8151,-5.2951E-05],"mems":[[13.715907,-5.1559E-05],[13.719317,-5.0528E-05],[13.722728,-5.1043E-05],[13.726139,-5.2074E-05],[13.729549,-5.1559E-05],[13.73296,-4.9497E-05],[13.736371,-5.0528E-05],[13.739781,-4.795E-05],[13.743192,-5.0012E-05],[13.746603,-5.2074E-05],[13.750013,-5.259E-05],[13.753424,-5.3106E-05],[13.756835,-5.4652E-05],[13.760245,-5.5168E-05],[13.763656,-5.0528E-05],[13.767067,-5.259E-05],[13.770477,-5.5168E-05],[13.773888,-5.1043E-05],[13.777299,-4.7434E-05],[13.780709,-5.0012E-05],[13.78412,-5.5168E-05],[13.787531,-5.5168E-05],[13.790941,-5.5168E-05],[13.794352,-5.1559E-05],[13.797763,-4.795E-05],[13.801173,-5.1559E-05],[13.804584,-5.259E-05],[13.807995,-5.1043E-05],[13.811405,-5.2074E-05],[13.814816,-5.4137E-05],[13.818227,-5.7746E-05],[13.821637,-5.9808E-05],[13.825048,-5.3621E-05],[13.828459,-5.2074E-05],[13.831869,-5.4137E-05],[13.83528,-4.8981E-05],[13.838691,-5.3621E-05],[13.842101,-5.7746E-05],[13.845512,-5.7746E-05],[13.848923,-5.8777E-05],[13.852333,-5.0012E-05],[13.855744,-5.1043E-05],[13.859155,-5.2074E-05],[13.862565,-5.259E-05],[13.865976,-5.9808E-05],[13.869387,-5.3621E-05],[13.872797,-4.8465E-05],[13.876208,-4.8981E-05],[13.879619,-5.0528E-05],[13.883029,-5.3621E-05],[13.88644,-5.5684E-05],[13.889851,-5.3106E-05],[13.893261,-4.8981E-05],[13.896672,-5.0528E-05],[13.900083,-4.8465E-05],[13.903493,-4.8465E-05],[13.906904,-5.3106E-05],[13.910315,-5.4137E-05],[13.913725,-4.9497E-05],[13.917136,-5.1559E-05],[13.920547,-5.4137E-05],[13.923957,-4.8465E-05],[13.927368,-4.8981E-05],[13.930779,-4.9497E-05],[13.934189,-5.1043E-05],[13.9376,-5.0528E-05],[13.941011,-4.8465E-05],[13.944421,-5.259E-05],[13.947832,-5.5168E-05],[13.951243,-5.4137E-05],[13.954653,-5.2074E-05],[13.958064,-5.3106E-05],[13.961475,-4.9497E-05],[13.964885,-5.2074E-05],[13.968296,-5.3621E-05],[13.971707,-4.6919E-05],[13.975117,-5.2074E-05],[13.978528,-5.4652E-05],[13.981939,-5.0528E-05],[13.985349,-5.4137E-05],[13.98876,-5.3621E-05],[13.992171,-4.795E-05],[13.995581,-5.0012E-05],[13.998992,-5.3621E-05],[14.002403,-5.4652E-05],[14.005813,-5.4137E-05],[14.009224,-5.5684E-05],[14.012635,-5.5684E-05],[14.016045,-4.7434E-05]]}
-{"quant":[14.4171,-5.3381E-05],"mems":[[14.319595,-5.6199E-05],[14.323005,-5.6715E-05],[14.326416,-5.2074E-05],[14.329827,-5.1043E-05],[14.333237,-5.0012E-05],[14.336648,-5.0012E-05],[14.340059,-5.4652E-05],[14.343469,-5.4137E-05],[14.34688,-5.3621E-05],[14.350291,-5.1559E-05],[14.353701,-4.9497E-05],[14.357112,-5.3106E-05],[14.360523,-5.4652E-05],[14.363933,-5.723E-05],[14.367344,-6.0324E-05],[14.370755,-5.8777E-05],[14.374165,-5.9293E-05],[14.377576,-5.4137E-05],[14.380987,-5.1559E-05],[14.384397,-5.4652E-05],[14.387808,-4.9497E-05],[14.391219,-5.2074E-05],[14.394629,-5.4137E-05],[14.39804,-5.3106E-05],[14.401451,-5.5168E-05],[14.404861,-5.4137E-05],[14.408272,-5.0528E-05],[14.411683,-4.6919E-05],[14.415093,-4.8981E-05],[14.418504,-5.3621E-05],[14.421915,-5.6715E-05],[14.425325,-5.1043E-05],[14.428736,-5.3106E-05],[14.432147,-5.723E-05],[14.435557,-5.2074E-05],[14.438968,-5.5168E-05],[14.442379,-5.4137E-05],[14.445789,-5.3621E-05],[14.4492,-4.795E-05],[14.452611,-4.5372E-05],[14.456021,-5.5684E-05],[14.459432,-5.6715E-05],[14.462843,-5.6199E-05],[14.466253,-5.4137E-05],[14.469664,-5.1043E-05],[14.473075,-5.4652E-05],[14.476485,-5.3621E-05],[14.479896,-5.5684E-05],[14.483307,-5.259E-05],[14.486717,-5.3106E-05],[14.490128,-5.8777E-05],[14.493539,-5.3621E-05],[14.496949,-5.5684E-05],[14.50036,-5.723E-05],[14.503771,-5.4137E-05],[14.507181,-4.795E-05],[14.510592,-4.6919E-05],[14.514003,-5.3621E-05],[14.517413,-5.0012E-05],[14.520824,-5.1559E-05],[14.524235,-5.5684E-05],[14.527645,-5.3106E-05],[14.531056,-5.2074E-05],[14.534467,-5.2074E-05],[14.537877,-5.723E-05],[14.541288,-5.9293E-05],[14.544699,-5.6199E-05],[14.548109,-5.5684E-05],[14.55152,-5.1559E-05],[14.554931,-5.259E-05],[14.558341,-5.259E-05],[14.561752,-5.259E-05],[14.565163,-5.2074E-05],[14.568573,-4.6403E-05],[14.571984,-4.8981E-05],[14.575395,-5.2074E-05],[14.578805,-5.4137E-05],[14.582216,-5.8262E-05],[14.585627,-5.3106E-05],[14.589037,-4.795E-05],[14.592448,-5.2074E-05],[14.595859,-5.4137E-05],[14.599269,-5.4652E-05],[14.60268,-5.5684E-05],[14.606091,-4.9497E-05],[14.609501,-4.8981E-05],[14.612912,-5.1043E-05],[14.616323,-5.1043E-05],[14.619733,-5.6199E-05]]}
-{"quant":[14.9106,-5.2143E-05],"mems":[[14.810731,-5.0528E-05],[14.814141,-5.1559E-05],[14.817552,-5.5684E-05],[14.820963,-5.3621E-05],[14.824373,-5.2074E-05],[14.827784,-5.2074E-05],[14.831195,-5.259E-05],[14.834605,-5.0528E-05],[14.838016,-5.4137E-05],[14.841427,-5.5684E-05],[14.844837,-5.4137E-05],[14.848248,-5.0528E-05],[14.851659,-4.6403E-05],[14.855069,-5.1043E-05],[14.85848,-5.5684E-05],[14.861891,-5.6199E-05],[14.865301,-5.3106E-05],[14.868712,-5.2074E-05],[14.872123,-5.9808E-05],[14.875533,-5.7746E-05],[14.878944,-5.0528E-05],[14.882355,-5.3621E-05],[14.885765,-5.4137E-05],[14.889176,-5.259E-05],[14.892587,-4.9497E-05],[14.895997,-4.8981E-05],[14.899408,-5.0012E-05],[14.902819,-4.8465E-05],[14.906229,-5.6199E-05],[14.90964,-5.7746E-05],[14.913051,-5.3106E-05],[14.916461,-5.4137E-05],[14.919872,-5.2074E-05],[14.923283,-5.0012E-05],[14.926693,-4.795E-05],[14.930104,-4.8981E-05],[14.933515,-5.1559E-05],[14.936925,-5.3106E-05],[14.940336,-5.4652E-05],[14.943747,-5.3621E-05],[14.947157,-5.2074E-05],[14.950568,-5.1559E-05],[14.953979,-5.3106E-05],[14.957389,-5.4137E-05],[14.9608,-5.0528E-05],[14.964211,-4.8465E-05],[14.967621,-4.7434E-05],[14.971032,-5.0012E-05],[14.974443,-5.3621E-05],[14.977853,-5.4137E-05],[14.981264,-5.5684E-05],[14.984675,-5.4137E-05],[14.988085,-5.2074E-05],[14.991496,-5.4137E-05],[14.994907,-5.6715E-05],[14.998317,-5.5684E-05],[15.001728,-5.4137E-05],[15.005139,-5.1559E-05],[15.008549,-4.6403E-05],[15.01196,-4.9497E-05],[15.015371,-5.4652E-05],[15.018781,-5.5168E-05],[15.022192,-5.3621E-05],[15.025603,-5.0012E-05],[15.029013,-5.259E-05],[15.032424,-5.3106E-05],[15.035835,-5.259E-05],[15.039245,-5.5168E-05],[15.042656,-5.1559E-05],[15.046067,-4.5887E-05],[15.049477,-5.1559E-05],[15.052888,-5.9293E-05],[15.056299,-5.1559E-05],[15.059709,-4.9497E-05],[15.06312,-4.6403E-05],[15.066531,-4.4856E-05],[15.069941,-5.4137E-05],[15.073352,-5.2074E-05],[15.076763,-5.0528E-05],[15.080173,-5.1043E-05],[15.083584,-5.1559E-05],[15.086995,-5.2074E-05],[15.090405,-4.8465E-05],[15.093816,-5.2074E-05],[15.097227,-5.259E-05],[15.100637,-5.4652E-05],[15.104048,-5.4652E-05],[15.107459,-5.1043E-05],[15.110869,-5.8262E-05]]}
-{"quant":[15.4233,-5.2831E-05],"mems":[[15.325741,-5.259E-05],[15.329152,-5.8777E-05],[15.332563,-5.4652E-05],[15.335973,-5.0528E-05],[15.339384,-5.259E-05],[15.342795,-5.1043E-05],[15.346205,-5.3106E-05],[15.349616,-5.4652E-05],[15.353027,-5.4137E-05],[15.356437,-5.5168E-05],[15.359848,-5.3106E-05],[15.363259,-5.1559E-05],[15.366669,-5.1043E-05],[15.37008,-5.3106E-05],[15.373491,-4.8981E-05],[15.376901,-4.8465E-05],[15.380312,-5.0012E-05],[15.383723,-4.4856E-05],[15.387133,-5.0528E-05],[15.390544,-5.4652E-05],[15.393955,-5.4652E-05],[15.397365,-5.2074E-05],[15.400776,-5.1043E-05],[15.404187,-5.0528E-05],[15.407597,-4.6919E-05],[15.411008,-5.1043E-05],[15.414419,-5.259E-05],[15.417829,-5.0528E-05],[15.42124,-4.8981E-05],[15.424651,-4.8981E-05],[15.428061,-5.5684E-05],[15.431472,-5.4652E-05],[15.434883,-4.795E-05],[15.438293,-5.259E-05],[15.441704,-5.1559E-05],[15.445115,-4.8981E-05],[15.448525,-5.0012E-05],[15.451936,-5.3621E-05],[15.455347,-5.8262E-05],[15.458757,-5.1043E-05],[15.462168,-5.3106E-05],[15.465579,-5.4137E-05],[15.468989,-5.0528E-05],[15.4724,-5.5168E-05],[15.475811,-5.5168E-05],[15.479221,-5.2074E-05],[15.482632,-5.1559E-05],[15.486043,-5.1559E-05],[15.489453,-5.1043E-05],[15.492864,-5.2074E-05],[15.496275,-5.4652E-05],[15.499685,-5.3106E-05],[15.503096,-5.1559E-05],[15.506507,-5.3621E-05],[15.509917,-5.5168E-05],[15.513328,-5.5684E-05],[15.516739,-5.723E-05],[15.520149,-5.5168E-05],[15.52356,-4.8981E-05],[15.526971,-5.1559E-05],[15.530381,-5.4137E-05],[15.533792,-5.1043E-05],[15.537203,-5.2074E-05],[15.540613,-4.8981E-05],[15.544024,-5.1043E-05],[15.547435,-5.3621E-05],[15.550845,-5.2074E-05],[15.554256,-5.5168E-05],[15.557667,-5.259E-05],[15.561077,-5.4137E-05],[15.564488,-5.5684E-05],[15.567899,-4.9497E-05],[15.571309,-5.0528E-05],[15.57472,-5.5684E-05],[15.578131,-5.259E-05],[15.581541,-5.3621E-05],[15.584952,-5.723E-05],[15.588363,-5.5168E-05],[15.591773,-5.6199E-05],[15.595184,-5.3106E-05],[15.598595,-5.1559E-05],[15.602005,-5.5684E-05],[15.605416,-5.5168E-05],[15.608827,-5.3106E-05],[15.612237,-5.6715E-05],[15.615648,-5.3106E-05],[15.619059,-4.7434E-05],[15.622469,-5.2074E-05],[15.62588,-5.4652E-05]]}
-{"quant":[15.891,-0.65503],"mems":[[15.922608,-5.0528E-05],[15.926019,-5.3106E-05],[15.929429,-5.723E-05],[15.93284,-4.8465E-05],[15.936251,-5.0012E-05],[15.939661,-5.3106E-05],[15.943072,-5.4137E-05],[15.946483,-5.5684E-05],[15.949893,-5.0528E-05],[15.953304,-5.3106E-05],[15.956715,-5.6199E-05],[15.960125,-5.4137E-05],[15.963536,-5.2074E-05],[15.966947,-5.0528E-05],[15.970357,-5.3106E-05],[15.973768,-5.2074E-05],[15.977179,-4.7434E-05],[15.980589,-5.0012E-05],[15.984,-5.1043E-05],[15.98734,-5.259E-05],[15.99068,-5.259E-05],[15.99402,-4.4856E-05],[15.99736,-4.5887E-05],[16.0007,-5.3621E-05],[16.00404,-5.5684E-05],[16.00738,-5.4137E-05],[16.01072,-5.3106E-05],[16.01406,-5.259E-05],[16.0174,-4.8465E-05],[16.02074,-4.795E-05],[16.02408,-5.3621E-05],[16.02742,-5.5684E-05],[16.03076,-5.3621E-05],[16.0341,-5.0012E-05],[16.03744,-4.8981E-05],[16.04078,-5.2074E-05],[16.04412,-5.5684E-05],[16.04746,-5.5684E-05],[16.0508,-5.259E-05],[16.05414,-4.8981E-05],[16.05748,-4.9497E-05],[16.06082,-5.4137E-05],[16.06416,-5.2074E-05],[16.0675,-5.2074E-05],[16.07084,-5.5684E-05],[16.07418,-5.2074E-05],[16.07752,-5.4137E-05],[16.08086,-5.723E-05],[16.0842,-5.4652E-05],[16.08754,-5.3621E-05],[16.09088,-5.259E-05],[16.09422,-5.3106E-05],[16.09756,-5.4652E-05],[16.1009,-5.7746E-05],[16.10424,-5.8262E-05],[16.10758,-5.723E-05],[16.11092,-5.7746E-05],[16.11426,-5.0528E-05],[16.1176,-4.795E-05],[16.12094,-5.3106E-05],[16.12428,-5.6715E-05],[16.12762,-5.8777E-05],[16.13096,-5.3106E-05],[16.1343,-5.5168E-05],[16.13764,-5.8262E-05],[16.14098,-5.723E-05],[16.14432,-5.4652E-05],[16.14766,-4.8465E-05],[16.151,-5.1043E-05],[16.15434,-5.259E-05],[16.15768,-5.259E-05],[16.16102,-5.4137E-05],[16.16436,-5.3621E-05],[16.1677,-5.0528E-05],[16.17104,-5.0528E-05],[16.17438,-5.1043E-05],[16.17772,-5.0012E-05],[16.18106,-5.0012E-05],[16.1844,-4.9497E-05],[16.18774,-5.1043E-05],[16.19108,-5.0528E-05],[16.19442,-4.9497E-05],[16.19776,-5.4652E-05],[16.2011,-5.7746E-05],[16.20444,-5.4137E-05],[16.20778,-5.1559E-05]]}
-{"quant":[16.3463,-5.2856E-05],"mems":[[16.24786,-5.0012E-05],[16.2512,-5.259E-05],[16.25454,-5.5168E-05],[16.25788,-5.6715E-05],[16.26122,-5.5684E-05],[16.26456,-5.4652E-05],[16.2679,-5.2074E-05],[16.27124,-5.1043E-05],[16.27458,-5.259E-05],[16.27792,-5.5684E-05],[16.28126,-5.6199E-05],[16.2846,-5.1559E-05],[16.28794,-5.3621E-05],[16.29128,-5.6715E-05],[16.29462,-5.4652E-05],[16.29796,-5.3106E-05],[16.3013,-5.5168E-05],[16.30464,-5.259E-05],[16.30798,-4.9497E-05],[16.31132,-5.3621E-05],[16.31466,-5.3621E-05],[16.318,-5.6199E-05],[16.32134,-5.3106E-05],[16.32468,-5.3106E-05],[16.32802,-5.6715E-05],[16.33136,-5.0528E-05],[16.3347,-5.3106E-05],[16.33804,-5.3106E-05],[16.34138,-5.3106E-05],[16.34472,-5.3106E-05],[16.34806,-4.9497E-05],[16.3514,-4.9497E-05],[16.35474,-5.0528E-05],[16.35808,-5.723E-05],[16.36142,-5.259E-05],[16.36476,-4.8465E-05],[16.3681,-5.3621E-05],[16.37144,-5.1559E-05],[16.37478,-5.723E-05],[16.37812,-5.723E-05],[16.38146,-5.4137E-05],[16.3848,-5.2074E-05],[16.38814,-4.9497E-05],[16.39148,-5.5168E-05],[16.39482,-5.4652E-05],[16.39816,-5.4652E-05],[16.4015,-5.3106E-05],[16.40484,-4.9497E-05],[16.40818,-5.4137E-05],[16.41152,-5.7746E-05],[16.41486,-5.5684E-05],[16.4182,-5.3621E-05],[16.42154,-5.2074E-05],[16.42488,-5.0012E-05],[16.42822,-5.2074E-05],[16.43156,-5.5168E-05],[16.4349,-5.4652E-05],[16.43824,-5.259E-05],[16.44158,-5.1043E-05],[16.44492,-4.795E-05],[16.44826,-5.1559E-05],[16.4516,-5.4652E-05],[16.45494,-5.2074E-05],[16.45828,-5.3106E-05],[16.46162,-5.4652E-05],[16.46496,-5.3106E-05],[16.4683,-5.3621E-05],[16.47164,-5.4652E-05],[16.47498,-5.6715E-05],[16.47832,-5.8262E-05],[16.48166,-5.0012E-05],[16.485,-5.1043E-05],[16.48834,-5.6715E-05],[16.49168,-5.4137E-05],[16.49502,-5.1559E-05],[16.49836,-5.1559E-05],[16.5017,-5.5168E-05],[16.50504,-5.5168E-05],[16.50838,-5.5684E-05],[16.51172,-5.4652E-05],[16.51506,-5.3621E-05],[16.5184,-5.4652E-05],[16.52174,-5.0528E-05],[16.52508,-5.6715E-05],[16.52842,-5.8262E-05],[16.53176,-5.259E-05],[16.5351,-5.259E-05],[16.53844,-5.2074E-05],[16.54178,-5.1043E-05],[16.54512,-5.259E-05],[16.54846,-5.4652E-05]]}
-{"quant":[16.9213,-5.2424E-05],"mems":[[16.82234,-4.8465E-05],[16.82568,-4.8981E-05],[16.82902,-5.5684E-05],[16.83236,-5.5168E-05],[16.8357,-5.5168E-05],[16.83904,-5.5684E-05],[16.84238,-5.1559E-05],[16.84572,-5.3621E-05],[16.84906,-5.259E-05],[16.8524,-5.3621E-05],[16.85574,-5.1043E-05],[16.85908,-5.1559E-05],[16.86242,-5.4652E-05],[16.86576,-5.2074E-05],[16.8691,-4.9497E-05],[16.87244,-4.9497E-05],[16.87578,-5.5168E-05],[16.87912,-5.6199E-05],[16.88246,-5.3621E-05],[16.8858,-5.1559E-05],[16.88914,-5.0012E-05],[16.89248,-5.259E-05],[16.89582,-5.4652E-05],[16.89916,-5.3621E-05],[16.9025,-5.5684E-05],[16.90584,-5.5168E-05],[16.90918,-4.8981E-05],[16.91252,-5.2074E-05],[16.91586,-5.259E-05],[16.9192,-5.1043E-05],[16.92254,-5.3106E-05],[16.92588,-5.2074E-05],[16.92922,-5.5684E-05],[16.93256,-5.4652E-05],[16.9359,-5.0528E-05],[16.93924,-4.6919E-05],[16.94258,-4.8465E-05],[16.94592,-5.4137E-05],[16.94926,-5.3106E-05],[16.9526,-5.4137E-05],[16.95594,-5.3106E-05],[16.95928,-5.0528E-05],[16.96262,-5.1043E-05],[16.96596,-5.0528E-05],[16.9693,-5.6715E-05],[16.97264,-5.7746E-05],[16.97598,-5.4652E-05],[16.97932,-5.5168E-05],[16.98266,-5.2074E-05],[16.986,-4.8981E-05],[16.98934,-5.1043E-05],[16.99268,-5.4652E-05],[16.99602,-5.1559E-05],[16.99936,-5.0528E-05],[17.0027,-5.0012E-05],[17.00604,-5.1559E-05],[17.00938,-5.5168E-05],[17.01272,-5.2074E-05],[17.01606,-5.3106E-05],[17.0194,-5.1559E-05],[17.02274,-5.0528E-05],[17.02608,-5.0012E-05],[17.02942,-5.1043E-05],[17.03276,-5.259E-05],[17.0361,-5.4652E-05],[17.03944,-5.3621E-05],[17.04278,-4.9497E-05],[17.04612,-5.5168E-05],[17.04946,-5.1043E-05],[17.0528,-4.9497E-05],[17.05614,-5.5684E-05],[17.05948,-5.2074E-05],[17.06282,-5.3621E-05],[17.06616,-5.2074E-05],[17.0695,-4.6403E-05],[17.07284,-5.3106E-05],[17.07618,-5.5684E-05],[17.07952,-5.4137E-05],[17.08286,-5.6199E-05],[17.0862,-5.6715E-05],[17.08954,-5.8777E-05],[17.09288,-5.5684E-05],[17.09622,-5.4137E-05],[17.09956,-5.0528E-05],[17.1029,-4.5372E-05],[17.10624,-5.2074E-05],[17.10958,-5.5684E-05],[17.11292,-5.6715E-05],[17.11626,-5.5684E-05],[17.1196,-5.0528E-05],[17.12294,-5.1043E-05]]}
-{"quant":[17.3701,-5.249E-05],"mems":[[17.27324,-5.0528E-05],[17.27658,-5.4137E-05],[17.27992,-5.1559E-05],[17.28326,-5.3621E-05],[17.2866,-5.723E-05],[17.28994,-5.3621E-05],[17.29328,-5.1559E-05],[17.29662,-4.9497E-05],[17.29996,-5.1559E-05],[17.3033,-5.4137E-05],[17.30664,-5.9293E-05],[17.30998,-5.723E-05],[17.31332,-5.0528E-05],[17.31666,-5.1559E-05],[17.32,-5.5168E-05],[17.32334,-5.5168E-05],[17.32668,-5.1043E-05],[17.33002,-4.8465E-05],[17.33336,-4.9497E-05],[17.3367,-5.259E-05],[17.34004,-5.3106E-05],[17.34338,-5.259E-05],[17.34672,-5.3106E-05],[17.35006,-5.4137E-05],[17.3534,-5.4652E-05],[17.35674,-5.0528E-05],[17.36008,-5.1559E-05],[17.36342,-5.7746E-05],[17.36676,-5.4652E-05],[17.3701,-5.1559E-05],[17.37344,-4.9497E-05],[17.37678,-4.8981E-05],[17.38012,-5.3106E-05],[17.38346,-5.4137E-05],[17.3868,-5.3106E-05],[17.39014,-5.2074E-05],[17.39348,-4.9497E-05],[17.39682,-5.259E-05],[17.40016,-5.4652E-05],[17.4035,-5.3621E-05],[17.40684,-5.3106E-05],[17.41018,-5.0012E-05],[17.41352,-5.259E-05],[17.41686,-5.0528E-05],[17.4202,-5.3621E-05],[17.42354,-5.723E-05],[17.42688,-5.1559E-05],[17.43022,-5.5684E-05],[17.43356,-5.3106E-05],[17.4369,-4.9497E-05],[17.44024,-5.3621E-05],[17.44358,-5.259E-05],[17.44692,-5.259E-05],[17.45026,-4.9497E-05],[17.4536,-4.795E-05],[17.45694,-5.5168E-05],[17.46028,-5.6715E-05],[17.46362,-5.2074E-05],[17.46696,-5.3106E-05],[17.4703,-5.4137E-05],[17.47364,-5.0012E-05],[17.47698,-4.9497E-05],[17.48032,-5.6715E-05],[17.48366,-5.723E-05],[17.487,-5.0528E-05],[17.49034,-5.2074E-05],[17.49368,-5.3621E-05],[17.49702,-5.3621E-05],[17.50036,-5.7746E-05],[17.5037,-5.3106E-05],[17.50704,-4.8981E-05],[17.51038,-5.1043E-05],[17.51372,-5.259E-05],[17.51706,-5.2074E-05],[17.5204,-5.0528E-05],[17.52374,-5.4652E-05],[17.52708,-5.4137E-05],[17.53042,-4.9497E-05],[17.53376,-5.259E-05],[17.5371,-5.3621E-05],[17.54044,-5.1559E-05],[17.54378,-5.1043E-05],[17.54712,-5.0012E-05],[17.55046,-5.259E-05],[17.5538,-5.3106E-05],[17.55714,-5.259E-05],[17.56048,-5.0012E-05],[17.56382,-5.1559E-05],[17.56716,-5.1559E-05],[17.5705,-5.1043E-05]]}
-{"quant":[17.8626,-5.2025E-05],"mems":[[17.76422,-5.1559E-05],[17.76756,-5.1043E-05],[17.7709,-5.723E-05],[17.77424,-5.1043E-05],[17.77758,-4.6919E-05],[17.78092,-4.8981E-05],[17.78426,-5.1559E-05],[17.7876,-5.259E-05],[17.79094,-5.2074E-05],[17.79428,-5.3106E-05],[17.79762,-4.8465E-05],[17.80096,-4.8465E-05],[17.8043,-5.1559E-05],[17.80764,-5.259E-05],[17.81098,-5.3621E-05],[17.81432,-5.4652E-05],[17.81766,-5.0012E-05],[17.821,-4.8465E-05],[17.82434,-5.1559E-05],[17.82768,-5.0012E-05],[17.83102,-5.2074E-05],[17.83436,-5.4652E-05],[17.8377,-5.1043E-05],[17.84104,-4.8465E-05],[17.84438,-5.0012E-05],[17.84772,-5.2074E-05],[17.85106,-5.0012E-05],[17.8544,-4.8981E-05],[17.85774,-4.8465E-05],[17.86108,-4.5372E-05],[17.86442,-5.4137E-05],[17.86776,-5.4137E-05],[17.8711,-5.1043E-05],[17.87444,-5.8777E-05],[17.87778,-5.4652E-05],[17.88112,-5.2074E-05],[17.88446,-5.3106E-05],[17.8878,-5.0012E-05],[17.89114,-5.1559E-05],[17.89448,-5.0012E-05],[17.89782,-5.0012E-05],[17.90116,-5.1559E-05],[17.9045,-5.0012E-05],[17.90784,-5.0012E-05],[17.91118,-5.1043E-05],[17.91452,-5.3106E-05],[17.91786,-5.4137E-05],[17.9212,-5.1559E-05],[17.92454,-5.1043E-05],[17.92788,-5.3621E-05],[17.93122,-5.3621E-05],[17.93456,-4.9497E-05],[17.9379,-5.0012E-05],[17.94124,-5.259E-05],[17.94458,-5.1043E-05],[17.94792,-5.259E-05],[17.95126,-5.0012E-05],[17.9546,-4.8465E-05],[17.95794,-5.2074E-05],[17.96128,-5.1559E-05],[17.96462,-5.5684E-05],[17.96796,-5.3106E-05],[17.9713,-5.0528E-05],[17.97464,-5.259E-05],[17.97798,-4.8981E-05],[17.98132,-5.3106E-05],[17.98466,-5.4652E-05],[17.988,-5.4652E-05],[17.99134,-5.1043E-05],[17.99468,-5.0528E-05],[17.99802,-5.3106E-05],[18.00136,-5.3106E-05],[18.0047,-5.7746E-05],[18.00804,-5.3621E-05],[18.01138,-5.0528E-05],[18.01472,-4.8465E-05],[18.01806,-4.6403E-05],[18.0214,-4.8981E-05],[18.02474,-5.1043E-05],[18.02808,-5.1043E-05],[18.03142,-4.9497E-05],[18.03476,-5.4137E-05],[18.0381,-5.5168E-05],[18.04144,-5.1043E-05],[18.04478,-5.4137E-05],[18.04812,-5.5684E-05],[18.05146,-5.2074E-05],[18.0548,-4.8465E-05],[18.05814,-5.1559E-05],[18.06148,-5.6199E-05],[18.06482,-5.4137E-05]]}
-{"quant":[18.3436,-0.35846],"mems":[[18.30196,-4.8465E-05],[18.3053,-5.1559E-05],[18.30864,-5.1559E-05],[18.31198,-5.0528E-05],[18.31532,-5.3621E-05],[18.31866,-4.8981E-05],[18.322,-5.2074E-05],[18.32534,-5.4137E-05],[18.32868,-5.3621E-05],[18.33202,-5.723E-05],[18.33536,-5.4652E-05],[18.3387,-5.5684E-05],[18.34204,-5.3106E-05],[18.34538,-4.795E-05],[18.34872,-5.3106E-05],[18.35206,-5.4137E-05],[18.3554,-5.1559E-05],[18.35874,-5.2074E-05],[18.36208,-5.0528E-05],[18.36542,-4.8465E-05],[18.36876,-5.1559E-05],[18.3721,-5.3106E-05],[18.37544,-5.5168E-05],[18.37878,-5.8777E-05],[18.38212,-5.5684E-05],[18.38546,-5.3621E-05],[18.3888,-5.4137E-05],[18.39214,-5.6199E-05],[18.39548,-5.5168E-05],[18.39882,-5.4652E-05],[18.40216,-5.5684E-05],[18.4055,-5.4652E-05],[18.40884,-5.723E-05],[18.41218,-5.723E-05],[18.41552,-5.3621E-05],[18.41886,-5.4137E-05],[18.4222,-5.1559E-05],[18.42554,-4.8465E-05],[18.42888,-5.4137E-05],[18.43222,-5.1559E-05],[18.43556,-5.0012E-05],[18.4389,-5.3106E-05],[18.44224,-4.7434E-05],[18.44558,-5.0528E-05],[18.44892,-5.4652E-05],[18.45226,-5.0528E-05],[18.4556,-5.1559E-05],[18.45894,-5.4137E-05],[18.46228,-5.0528E-05],[18.46562,-4.8981E-05],[18.46896,-5.4652E-05],[18.4723,-5.3621E-05],[18.47564,-5.5168E-05],[18.47898,-5.5684E-05],[18.48232,-4.9497E-05],[18.48566,-5.1559E-05],[18.489,-5.5684E-05],[18.492439,-5.6715E-05],[18.495877,-5.4137E-05],[18.499316,-5.1559E-05],[18.502755,-5.1043E-05],[18.506193,-5.3106E-05],[18.509632,-5.4652E-05],[18.513071,-5.1559E-05],[18.516509,-5.4137E-05],[18.519948,-5.259E-05],[18.523387,-5.1043E-05],[18.526825,-5.7746E-05],[18.530264,-5.7746E-05],[18.533703,-5.4652E-05],[18.537141,-5.0528E-05],[18.54058,-5.3621E-05],[18.544019,-5.5168E-05],[18.547457,-5.259E-05],[18.550896,-5.4652E-05],[18.554335,-5.3106E-05],[18.557773,-5.2074E-05],[18.561212,-4.9497E-05],[18.564651,-4.8465E-05],[18.568089,-5.0012E-05],[18.571528,-5.1043E-05],[18.574967,-5.1043E-05],[18.578405,-4.4341E-05],[18.581844,-4.3825E-05],[18.585283,-5.1043E-05],[18.588721,-5.3106E-05]]}
-{"quant":[18.8015,-5.3106E-05],"mems":[[18.702197,-5.3106E-05],[18.705636,-5.4137E-05],[18.709075,-5.2074E-05],[18.712513,-5.3106E-05],[18.715952,-5.2074E-05],[18.719391,-4.9497E-05],[18.722829,-5.0012E-05],[18.726268,-5.259E-05],[18.729707,-5.4652E-05],[18.733145,-5.5168E-05],[18.736584,-5.3106E-05],[18.740023,-4.6403E-05],[18.743461,-5.0012E-05],[18.7469,-5.3106E-05],[18.750339,-5.0528E-05],[18.753777,-5.4652E-05],[18.757216,-5.3106E-05],[18.760655,-5.0012E-05],[18.764093,-5.4137E-05],[18.767532,-5.1043E-05],[18.770971,-5.3621E-05],[18.774409,-5.5684E-05],[18.777848,-5.259E-05],[18.781287,-5.5684E-05],[18.784725,-5.4137E-05],[18.788164,-5.7746E-05],[18.791603,-5.8262E-05],[18.795041,-5.5684E-05],[18.79848,-5.1559E-05],[18.801919,-5.1559E-05],[18.805357,-5.5684E-05],[18.808796,-5.4652E-05],[18.812235,-5.6715E-05],[18.815673,-5.259E-05],[18.819112,-5.0012E-05],[18.822551,-5.0528E-05],[18.825989,-5.4652E-05],[18.829428,-5.6715E-05],[18.832867,-5.4652E-05],[18.836305,-5.4652E-05],[18.839744,-4.9497E-05],[18.843183,-5.1559E-05],[18.846621,-5.6199E-05],[18.85006,-5.5168E-05],[18.853499,-5.2074E-05],[18.856937,-4.7434E-05],[18.860376,-5.0012E-05],[18.863815,-5.6715E-05],[18.867253,-5.6199E-05],[18.870692,-5.5168E-05],[18.874131,-5.5168E-05],[18.877569,-5.259E-05],[18.881008,-5.1559E-05],[18.884447,-5.3106E-05],[18.887885,-5.5684E-05],[18.891324,-5.2074E-05],[18.894763,-4.8465E-05],[18.898201,-4.8981E-05],[18.90164,-5.3106E-05],[18.905079,-5.8777E-05],[18.908517,-5.6715E-05],[18.911956,-5.2074E-05],[18.915395,-4.9497E-05],[18.918833,-4.795E-05],[18.922272,-5.0012E-05],[18.925711,-5.1043E-05],[18.929149,-5.0528E-05],[18.932588,-5.3106E-05],[18.936027,-5.2074E-05],[18.939465,-5.0012E-05],[18.942904,-5.259E-05],[18.946343,-5.6199E-05],[18.949781,-5.4652E-05],[18.95322,-5.3106E-05],[18.956659,-5.6199E-05],[18.960097,-5.5684E-05],[18.963536,-5.3621E-05],[18.966975,-5.5684E-05],[18.970413,-5.6715E-05],[18.973852,-5.259E-05],[18.977291,-4.8465E-05],[18.980729,-5.1559E-05],[18.984168,-5.4652E-05],[18.987607,-5.3106E-05],[18.991045,-5.2074E-05],[18.994484,-5.4137E-05],[18.997923,-5.3621E-05],[19.001361,-4.9497E-05],[19.0048,-5.3621E-05]]}
-{"quant":[19.3992,-5.2693E-05],"mems":[[19.300525,-4.7434E-05],[19.303964,-4.8981E-05],[19.307403,-5.0528E-05],[19.310841,-5.1559E-05],[19.31428,-5.2074E-05],[19.317719,-4.7434E-05],[19.321157,-5.2074E-05],[19.324596,-5.2074E-05],[19.328035,-5.1043E-05],[19.331473,-5.4137E-05],[19.334912,-5.1559E-05],[19.338351,-5.1043E-05],[19.341789,-4.9497E-05],[19.345228,-5.3621E-05],[19.348667,-5.6715E-05],[19.352105,-5.3621E-05],[19.355544,-5.4652E-05],[19.358983,-4.9497E-05],[19.362421,-4.7434E-05],[19.36586,-5.5168E-05],[19.369299,-5.9808E-05],[19.372737,-6.0324E-05],[19.376176,-5.5168E-05],[19.379615,-5.4137E-05],[19.383053,-5.5168E-05],[19.386492,-5.4137E-05],[19.389931,-5.3621E-05],[19.393369,-5.1559E-05],[19.396808,-5.3621E-05],[19.400247,-5.5168E-05],[19.403685,-5.3621E-05],[19.407124,-5.0012E-05],[19.410563,-5.259E-05],[19.414001,-5.3621E-05],[19.41744,-5.259E-05],[19.420879,-5.6199E-05],[19.424317,-5.4137E-05],[19.427756,-5.3621E-05],[19.431195,-5.259E-05],[19.434633,-5.1043E-05],[19.438072,-5.259E-05],[19.441511,-5.0012E-05],[19.444949,-5.0012E-05],[19.448388,-5.4652E-05],[19.451827,-5.9293E-05],[19.455265,-5.8262E-05],[19.458704,-5.4652E-05],[19.462143,-5.2074E-05],[19.465581,-5.2074E-05],[19.46902,-5.1043E-05],[19.472459,-4.6403E-05],[19.475897,-5.2074E-05],[19.479336,-5.5168E-05],[19.482775,-5.3106E-05],[19.486213,-5.3106E-05],[19.489652,-4.8981E-05],[19.493091,-5.3621E-05],[19.496529,-5.1559E-05],[19.499968,-4.6919E-05],[19.503407,-5.5684E-05],[19.506845,-5.3106E-05],[19.510284,-5.0528E-05],[19.513723,-5.5684E-05],[19.517161,-5.5168E-05],[19.5206,-5.1559E-05],[19.524039,-4.795E-05],[19.527477,-5.5684E-05],[19.530916,-5.5684E-05],[19.534355,-5.0012E-05],[19.537793,-4.9497E-05],[19.541232,-4.6919E-05],[19.544671,-5.2074E-05],[19.548109,-5.5684E-05],[19.551548,-5.3621E-05],[19.554987,-5.3621E-05],[19.558425,-5.0528E-05],[19.561864,-5.1043E-05],[19.565303,-5.2074E-05],[19.568741,-5.0528E-05],[19.57218,-5.1559E-05],[19.575619,-4.9497E-05],[19.579057,-5.0012E-05],[19.582496,-5.2074E-05],[19.585935,-5.0528E-05],[19.589373,-5.3106E-05],[19.592812,-5.8262E-05],[19.596251,-5.4137E-05],[19.599689,-5.3106E-05]]}
-{"quant":[19.9021,-5.284E-05],"mems":[[19.802571,-4.9497E-05],[19.806009,-5.2074E-05],[19.809448,-5.4652E-05],[19.812887,-5.4137E-05],[19.816325,-5.4137E-05],[19.819764,-5.3106E-05],[19.823203,-5.1043E-05],[19.826641,-5.1559E-05],[19.83008,-5.3621E-05],[19.833519,-5.3621E-05],[19.836957,-5.4652E-05],[19.840396,-4.9497E-05],[19.843835,-5.0528E-05],[19.847273,-5.3106E-05],[19.850712,-5.4137E-05],[19.854151,-5.723E-05],[19.857589,-5.4137E-05],[19.861028,-5.3621E-05],[19.864467,-5.1043E-05],[19.867905,-5.2074E-05],[19.871344,-5.3621E-05],[19.874783,-5.1559E-05],[19.878221,-5.1559E-05],[19.88166,-5.1559E-05],[19.885099,-4.8981E-05],[19.888537,-5.1559E-05],[19.891976,-5.4652E-05],[19.895415,-5.1559E-05],[19.898853,-5.3621E-05],[19.902292,-5.5168E-05],[19.905731,-5.5684E-05],[19.909169,-5.5168E-05],[19.912608,-5.3621E-05],[19.916047,-5.723E-05],[19.919485,-5.4652E-05],[19.922924,-5.2074E-05],[19.926363,-5.0012E-05],[19.929801,-5.259E-05],[19.93324,-5.5684E-05],[19.936679,-5.1559E-05],[19.940117,-5.0528E-05],[19.943556,-5.4137E-05],[19.946995,-5.8777E-05],[19.950433,-5.5168E-05],[19.953872,-4.8981E-05],[19.957311,-5.1559E-05],[19.960749,-5.259E-05],[19.964188,-5.3621E-05],[19.967627,-5.5684E-05],[19.971065,-5.1559E-05],[19.974504,-5.3621E-05],[19.977943,-5.1043E-05],[19.981381,-4.8465E-05],[19.98482,-5.3621E-05],[19.988259,-5.0528E-05],[19.991697,-5.0528E-05],[19.995136,-5.1559E-05],[19.998575,-5.4137E-05],[20.002013,-4.8465E-05],[20.005452,-5.0012E-05],[20.008891,-5.7746E-05],[20.012329,-5.3106E-05],[20.015768,-5.4137E-05],[20.019207,-4.6403E-05],[20.022645,-4.8981E-05],[20.026084,-5.4652E-05],[20.029523,-4.5887E-05],[20.032961,-5.2074E-05],[20.0364,-5.3621E-05],[20.039839,-4.8981E-05],[20.043277,-5.3621E-05],[20.046716,-5.4652E-05],[20.050155,-5.3621E-05],[20.053593,-5.6199E-05],[20.057032,-5.5684E-05],[20.060471,-5.0012E-05],[20.063909,-5.2074E-05],[20.067348,-5.7746E-05],[20.070787,-5.5684E-05],[20.074225,-5.2074E-05],[20.077664,-5.259E-05],[20.081103,-5.4652E-05],[20.084541,-5.4137E-05],[20.08798,-5.4652E-05],[20.091419,-5.2074E-05],[20.094857,-5.1559E-05],[20.098296,-5.2074E-05],[20.101735,-4.8465E-05],[20.105173,-5.6715E-05]]}
-{"quant":[20.3638,-5.3449E-05],"mems":[[20.266791,-5.4137E-05],[20.270229,-5.7746E-05],[20.273668,-5.6715E-05],[20.277107,-5.4137E-05],[20.280545,-5.6715E-05],[20.283984,-5.5684E-05],[20.287423,-5.5684E-05],[20.290861,-5.6715E-05],[20.2943,-5.1043E-05],[20.297739,-5.1559E-05],[20.301177,-5.4137E-05],[20.304616,-5.3621E-05],[20.308055,-5.4137E-05],[20.311493,-5.5684E-05],[20.314932,-5.2074E-05],[20.318371,-5.0528E-05],[20.321809,-5.6715E-05],[20.325248,-5.6199E-05],[20.328687,-5.723E-05],[20.332125,-5.8262E-05],[20.335564,-5.0528E-05],[20.339003,-4.8981E-05],[20.342441,-5.259E-05],[20.34588,-5.3106E-05],[20.349319,-5.0012E-05],[20.352757,-4.795E-05],[20.356196,-5.1043E-05],[20.359635,-5.1559E-05],[20.363073,-5.1043E-05],[20.366512,-5.0012E-05],[20.369951,-5.259E-05],[20.373389,-5.5168E-05],[20.376828,-5.1559E-05],[20.380267,-5.4652E-05],[20.383705,-5.5684E-05],[20.387144,-5.3106E-05],[20.390583,-5.3621E-05],[20.394021,-5.259E-05],[20.39746,-5.1043E-05],[20.400899,-5.259E-05],[20.404337,-5.3621E-05],[20.407776,-4.8465E-05],[20.411215,-5.259E-05],[20.414653,-5.6199E-05],[20.418092,-5.4652E-05],[20.421531,-5.259E-05],[20.424969,-5.0528E-05],[20.428408,-5.4137E-05],[20.431847,-5.6715E-05],[20.435285,-5.8262E-05],[20.438724,-5.5168E-05],[20.442163,-5.7746E-05],[20.445601,-5.723E-05],[20.44904,-5.4652E-05],[20.452479,-5.8262E-05],[20.455917,-5.259E-05],[20.459356,-4.8465E-05],[20.462795,-4.9497E-05],[20.466233,-4.9497E-05],[20.469672,-5.4137E-05],[20.473111,-5.7746E-05],[20.476549,-5.4652E-05],[20.479988,-5.259E-05],[20.483427,-5.1043E-05],[20.486865,-5.1559E-05],[20.490304,-5.4137E-05],[20.493743,-5.1043E-05],[20.497181,-5.0012E-05],[20.50062,-5.2074E-05],[20.504059,-5.259E-05],[20.507497,-5.3621E-05],[20.510936,-5.2074E-05],[20.514375,-5.3106E-05],[20.517813,-5.2074E-05],[20.521252,-5.1043E-05],[20.524691,-5.3106E-05],[20.528129,-5.1043E-05],[20.531568,-5.5684E-05],[20.535007,-5.6715E-05],[20.538445,-5.0528E-05],[20.541884,-5.5684E-05],[20.545323,-5.4652E-05],[20.548761,-5.3106E-05],[20.5522,-5.6715E-05],[20.555639,-5.259E-05],[20.559077,-5.4137E-05],[20.562516,-5.5684E-05],[20.565955,-5.4137E-05]]}
-{"quant":[20.8315,-5.3999E-05],"mems":[[20.734449,-5.6715E-05],[20.737888,-5.1559E-05],[20.741327,-5.0012E-05],[20.744765,-5.4652E-05],[20.748204,-5.1559E-05],[20.751643,-5.259E-05],[20.755081,-5.4137E-05],[20.75852,-5.5168E-05],[20.761959,-5.1559E-05],[20.765397,-5.0012E-05],[20.768836,-5.5168E-05],[20.772275,-5.4137E-05],[20.775713,-5.5168E-05],[20.779152,-5.5168E-05],[20.782591,-5.3106E-05],[20.786029,-5.2074E-05],[20.789468,-4.795E-05],[20.792907,-5.0528E-05],[20.796345,-5.3106E-05],[20.799784,-5.1559E-05],[20.803223,-5.4652E-05],[20.806661,-5.4137E-05],[20.8101,-5.2074E-05],[20.813539,-5.4137E-05],[20.816977,-5.1043E-05],[20.820416,-5.1043E-05],[20.823855,-5.3106E-05],[20.827293,-5.2074E-05],[20.830732,-5.4652E-05],[20.834171,-5.2074E-05],[20.837609,-5.0528E-05],[20.841048,-5.1559E-05],[20.844487,-5.3106E-05],[20.847925,-5.4652E-05],[20.851364,-5.4652E-05],[20.854803,-5.4137E-05],[20.858241,-5.2074E-05],[20.86168,-5.3621E-05],[20.865119,-5.5168E-05],[20.868557,-5.6715E-05],[20.871996,-5.6715E-05],[20.875435,-5.4652E-05],[20.878873,-5.4652E-05],[20.882312,-5.259E-05],[20.885751,-5.5168E-05],[20.889189,-5.8262E-05],[20.892628,-5.3106E-05],[20.896067,-5.1559E-05],[20.899505,-5.259E-05],[20.902944,-5.6199E-05],[20.906383,-5.723E-05],[20.909821,-5.5168E-05],[20.91326,-5.723E-05],[20.916699,-5.259E-05],[20.920137,-5.1559E-05],[20.923576,-5.5684E-05],[20.927015,-5.259E-05],[20.930453,-5.4137E-05],[20.933892,-5.0012E-05],[20.937331,-4.6403E-05],[20.940769,-5.0528E-05],[20.944208,-5.4137E-05],[20.947647,-5.3621E-05],[20.951085,-5.5168E-05],[20.954524,-6.0324E-05],[20.957963,-5.5168E-05],[20.961401,-5.259E-05],[20.96484,-5.4137E-05],[20.968279,-5.5684E-05],[20.971717,-5.723E-05],[20.975156,-5.3621E-05],[20.978595,-5.3621E-05],[20.982033,-5.2074E-05],[20.985472,-5.4137E-05],[20.988911,-5.6199E-05],[20.992349,-5.3621E-05],[20.995788,-5.7746E-05],[20.999227,-5.4652E-05],[21.002665,-4.9497E-05],[21.006104,-5.2074E-05],[21.009543,-5.3621E-05],[21.012981,-5.1559E-05],[21.01642,-5.0012E-05],[21.019859,-5.0528E-05],[21.023297,-5.3621E-05],[21.026736,-5.259E-05],[21.030175,-5.3106E-05],[21.033613,-6.1355E-05]]}
-{"quant":[21.3295,-5.3209E-05],"mems":[[21.229617,-4.9497E-05],[21.233056,-5.1559E-05],[21.236495,-5.0012E-05],[21.239933,-4.8465E-05],[21.243372,-4.8465E-05],[21.246811,-5.0528E-05],[21.250249,-5.4652E-05],[21.253688,-5.5168E-05],[21.257127,-5.3106E-05],[21.260565,-5.1043E-05],[21.264004,-5.723E-05],[21.267443,-5.5168E-05],[21.270881,-5.2074E-05],[21.27432,-5.4137E-05],[21.277759,-5.5168E-05],[21.281197,-5.6715E-05],[21.284636,-5.4137E-05],[21.288075,-5.4137E-05],[21.291513,-4.8981E-05],[21.294952,-5.2074E-05],[21.298391,-5.3106E-05],[21.301829,-4.9497E-05],[21.305268,-5.6199E-05],[21.308707,-5.723E-05],[21.312145,-5.2074E-05],[21.315584,-4.7434E-05],[21.319023,-5.0012E-05],[21.322461,-5.3106E-05],[21.3259,-5.4137E-05],[21.329339,-5.5168E-05],[21.332777,-5.1559E-05],[21.336216,-5.1043E-05],[21.339655,-5.259E-05],[21.343093,-5.2074E-05],[21.346532,-4.8981E-05],[21.349971,-5.1559E-05],[21.353409,-5.4652E-05],[21.356848,-5.0528E-05],[21.360287,-5.1043E-05],[21.363725,-5.4137E-05],[21.367164,-5.2074E-05],[21.370603,-5.1043E-05],[21.374041,-5.4137E-05],[21.37748,-5.4137E-05],[21.380919,-5.0528E-05],[21.384357,-5.0012E-05],[21.387796,-5.3621E-05],[21.391235,-5.3621E-05],[21.394673,-4.9497E-05],[21.398112,-5.0528E-05],[21.401551,-5.3106E-05],[21.404989,-5.3621E-05],[21.408428,-5.6199E-05],[21.411867,-5.723E-05],[21.415305,-5.2074E-05],[21.418744,-5.6199E-05],[21.422183,-6.0324E-05],[21.425621,-5.4137E-05],[21.42906,-5.7746E-05],[21.432499,-5.8262E-05],[21.435937,-5.2074E-05],[21.439376,-5.3106E-05],[21.442815,-5.4137E-05],[21.446253,-5.3106E-05],[21.449692,-5.4137E-05],[21.453131,-5.6199E-05],[21.456569,-5.5684E-05],[21.460008,-5.0528E-05],[21.463447,-4.8981E-05],[21.466885,-5.7746E-05],[21.470324,-5.5168E-05],[21.473763,-4.8465E-05],[21.477201,-5.1043E-05],[21.48064,-5.3106E-05],[21.484079,-5.5168E-05],[21.487517,-5.5684E-05],[21.490956,-5.723E-05],[21.494395,-5.3106E-05],[21.497833,-5.1043E-05],[21.501272,-5.4137E-05],[21.504711,-5.1043E-05],[21.508149,-5.0012E-05],[21.511588,-5.0012E-05],[21.515027,-4.5372E-05],[21.518465,-5.0012E-05],[21.521904,-5.5168E-05],[21.525343,-5.5684E-05],[21.528781,-5.8262E-05],[21.53222,-5.4137E-05]]}
-{"quant":[21.8793,-5.2806E-05],"mems":[[21.779804,-5.3621E-05],[21.783243,-5.4652E-05],[21.786681,-5.9808E-05],[21.79012,-5.723E-05],[21.793559,-5.1559E-05],[21.796997,-5.7746E-05],[21.800436,-5.4652E-05],[21.803875,-5.0012E-05],[21.807313,-5.4137E-05],[21.810752,-5.3621E-05],[21.814191,-5.259E-05],[21.817629,-5.0012E-05],[21.821068,-5.0012E-05],[21.824507,-5.2074E-05],[21.827945,-5.5168E-05],[21.831384,-5.7746E-05],[21.834823,-5.3621E-05],[21.838261,-5.259E-05],[21.8417,-5.5684E-05],[21.845139,-5.4137E-05],[21.848577,-5.2074E-05],[21.852016,-5.3106E-05],[21.855455,-5.2074E-05],[21.858893,-5.1043E-05],[21.862332,-5.0012E-05],[21.865771,-5.0528E-05],[21.869209,-5.3621E-05],[21.872648,-5.4137E-05],[21.876087,-5.3106E-05],[21.879525,-5.0012E-05],[21.882964,-5.3106E-05],[21.886403,-5.4137E-05],[21.889841,-5.5168E-05],[21.89328,-5.8777E-05],[21.896719,-5.2074E-05],[21.900157,-4.8465E-05],[21.903596,-5.2074E-05],[21.907035,-5.259E-05],[21.910473,-5.2074E-05],[21.913912,-5.4137E-05],[21.917351,-5.4652E-05],[21.920789,-5.3106E-05],[21.924228,-5.4137E-05],[21.927667,-5.3106E-05],[21.931105,-5.5684E-05],[21.934544,-5.4137E-05],[21.937983,-5.2074E-05],[21.941421,-5.4652E-05],[21.94486,-5.3106E-05],[21.948299,-5.5684E-05],[21.951737,-5.3106E-05],[21.955176,-5.0528E-05],[21.958615,-5.1043E-05],[21.962053,-4.8981E-05],[21.965492,-5.259E-05],[21.968931,-5.1559E-05],[21.972369,-5.3106E-05],[21.975808,-5.3106E-05],[21.979247,-4.7434E-05],[21.982685,-5.259E-05],[21.986124,-5.4137E-05],[21.989563,-5.3106E-05],[21.993001,-5.6715E-05],[21.99644,-5.1043E-05],[21.999879,-5.0012E-05],[22.003317,-5.4137E-05],[22.006756,-5.0012E-05],[22.010195,-5.3106E-05],[22.013633,-5.5684E-05],[22.017072,-5.2074E-05],[22.020511,-5.4137E-05],[22.023949,-5.723E-05],[22.027388,-6.0324E-05],[22.030827,-5.4652E-05],[22.034265,-5.0012E-05],[22.037704,-5.0528E-05],[22.041143,-5.3106E-05],[22.044581,-6.0324E-05],[22.04802,-5.723E-05],[22.051459,-5.3621E-05],[22.054897,-4.9497E-05],[22.058336,-4.795E-05],[22.061775,-5.2074E-05],[22.065213,-5.2074E-05],[22.068652,-5.259E-05],[22.072091,-4.8981E-05],[22.075529,-5.0528E-05],[22.078968,-5.1043E-05],[22.082407,-4.9497E-05]]}
-{"quant":[22.3614,-5.2418E-05],"mems":[[22.264656,-5.3621E-05],[22.268095,-5.1559E-05],[22.271533,-4.8465E-05],[22.274972,-5.2074E-05],[22.278411,-5.0012E-05],[22.281849,-5.1043E-05],[22.285288,-5.5684E-05],[22.288727,-5.5684E-05],[22.292165,-5.4652E-05],[22.295604,-5.0528E-05],[22.299043,-5.0528E-05],[22.302481,-5.259E-05],[22.30592,-5.7746E-05],[22.309359,-5.9293E-05],[22.312797,-5.4652E-05],[22.316236,-5.0528E-05],[22.319675,-4.9497E-05],[22.323113,-5.1043E-05],[22.326552,-5.2074E-05],[22.329991,-4.9497E-05],[22.333429,-4.6919E-05],[22.336868,-5.3106E-05],[22.340307,-5.3106E-05],[22.343745,-5.259E-05],[22.347184,-5.3106E-05],[22.350623,-5.1559E-05],[22.354061,-5.3106E-05],[22.3575,-4.8465E-05],[22.360939,-5.259E-05],[22.364377,-5.5684E-05],[22.367816,-5.3106E-05],[22.371255,-5.3106E-05],[22.374693,-5.1559E-05],[22.378132,-4.9497E-05],[22.381571,-4.8465E-05],[22.385009,-5.5684E-05],[22.388448,-5.3621E-05],[22.391887,-5.1559E-05],[22.395325,-5.0528E-05],[22.398764,-4.795E-05],[22.402203,-5.2074E-05],[22.405641,-4.9497E-05],[22.40908,-5.4137E-05],[22.412519,-5.723E-05],[22.415957,-5.1559E-05],[22.419396,-5.1559E-05],[22.422835,-5.6199E-05],[22.426273,-5.9293E-05],[22.429712,-5.6715E-05],[22.433151,-5.1043E-05],[22.436589,-5.0528E-05],[22.440028,-4.9497E-05],[22.443467,-5.0012E-05],[22.446905,-5.5684E-05],[22.450344,-5.3621E-05],[22.453783,-4.8981E-05],[22.457221,-4.5887E-05],[22.46066,-5.259E-05],[22.464099,-5.5684E-05],[22.467537,-5.1559E-05],[22.470976,-5.7746E-05],[22.474415,-5.1043E-05],[22.477853,-4.8981E-05],[22.481292,-5.6199E-05],[22.484731,-4.7434E-05],[22.488169,-5.1559E-05],[22.491608,-5.5168E-05],[22.495047,-5.259E-05],[22.498485,-5.3621E-05],[22.501924,-5.259E-05],[22.505363,-5.3621E-05],[22.508801,-5.4137E-05],[22.51224,-5.2074E-05],[22.515679,-5.1043E-05],[22.519117,-5.8262E-05],[22.522556,-5.8262E-05],[22.525995,-5.4652E-05],[22.529433,-5.6715E-05],[22.532872,-5.6715E-05],[22.536311,-5.2074E-05],[22.539749,-5.0528E-05],[22.543188,-5.723E-05],[22.546627,-5.5168E-05],[22.550065,-5.3106E-05],[22.553504,-5.259E-05],[22.556943,-5.3621E-05],[22.560381,-5.5168E-05],[22.56382,-5.5168E-05]]}
-{"quant":[22.8531,-5.4188E-05],"mems":[[22.756385,-5.3621E-05],[22.759824,-5.3106E-05],[22.763263,-5.723E-05],[22.766701,-5.5168E-05],[22.77014,-5.3621E-05],[22.773579,-4.8465E-05],[22.777017,-5.1043E-05],[22.780456,-5.6199E-05],[22.783895,-5.7746E-05],[22.787333,-6.0839E-05],[22.790772,-5.4652E-05],[22.794211,-5.0012E-05],[22.797649,-4.9497E-05],[22.801088,-5.2074E-05],[22.804527,-5.2074E-05],[22.807965,-4.9497E-05],[22.811404,-5.3621E-05],[22.814843,-5.3621E-05],[22.818281,-5.0528E-05],[22.82172,-5.0012E-05],[22.825159,-5.259E-05],[22.828597,-5.6715E-05],[22.832036,-5.1043E-05],[22.835475,-4.6919E-05],[22.838913,-5.0528E-05],[22.842352,-5.3621E-05],[22.845791,-5.7746E-05],[22.849229,-5.6715E-05],[22.852668,-5.5168E-05],[22.856107,-5.4137E-05],[22.859545,-5.2074E-05],[22.862984,-5.5168E-05],[22.866423,-5.5684E-05],[22.869861,-5.5684E-05],[22.8733,-5.723E-05],[22.876739,-5.6199E-05],[22.880177,-5.5684E-05],[22.883616,-5.4137E-05],[22.887055,-5.5168E-05],[22.890493,-5.5684E-05],[22.893932,-5.4137E-05],[22.897371,-5.0528E-05],[22.900809,-5.0528E-05],[22.904248,-5.6199E-05],[22.907687,-5.4652E-05],[22.911125,-5.3621E-05],[22.914564,-5.259E-05],[22.918003,-5.3106E-05],[22.921441,-5.5168E-05],[22.92488,-5.5168E-05],[22.928319,-5.8262E-05],[22.931757,-5.5684E-05],[22.935196,-5.0012E-05],[22.938635,-4.8465E-05],[22.942073,-5.4652E-05],[22.945512,-5.7746E-05],[22.948951,-5.259E-05],[22.952389,-5.259E-05],[22.955828,-5.3106E-05],[22.959267,-5.259E-05],[22.962705,-5.5684E-05],[22.966144,-5.5684E-05],[22.969583,-5.5684E-05],[22.973021,-5.259E-05],[22.97646,-5.1559E-05],[22.979899,-5.1559E-05],[22.983337,-5.1559E-05],[22.986776,-5.2074E-05],[22.990215,-5.3621E-05],[22.993653,-5.7746E-05],[22.997092,-5.4137E-05],[23.000531,-5.259E-05],[23.003969,-5.4137E-05],[23.007408,-4.8465E-05],[23.010847,-5.1559E-05],[23.014285,-5.3621E-05],[23.017724,-4.9497E-05],[23.021163,-5.1559E-05],[23.024601,-5.5168E-05],[23.02804,-5.6715E-05],[23.031479,-5.4652E-05],[23.034917,-5.3621E-05],[23.038356,-5.1043E-05],[23.041795,-5.0528E-05],[23.045233,-5.3621E-05],[23.048672,-5.5684E-05],[23.052111,-5.4137E-05],[23.055549,-4.8981E-05]]}
-{"quant":[23.2993,-5.3381E-05],"mems":[[23.199973,-5.2074E-05],[23.203412,-5.2074E-05],[23.206851,-5.3106E-05],[23.210289,-5.4137E-05],[23.213728,-5.4137E-05],[23.217167,-4.8981E-05],[23.220605,-5.0528E-05],[23.224044,-5.6199E-05],[23.227483,-5.6715E-05],[23.230921,-5.6199E-05],[23.23436,-5.1043E-05],[23.237799,-5.1559E-05],[23.241237,-6.1355E-05],[23.244676,-5.9808E-05],[23.248115,-5.5168E-05],[23.251553,-5.3621E-05],[23.254992,-5.1043E-05],[23.258431,-5.4652E-05],[23.261869,-5.5684E-05],[23.265308,-5.7746E-05],[23.268747,-5.3621E-05],[23.272185,-4.8981E-05],[23.275624,-5.5684E-05],[23.279063,-5.259E-05],[23.282501,-5.0528E-05],[23.28594,-5.723E-05],[23.289379,-5.6199E-05],[23.292817,-5.723E-05],[23.296256,-5.3106E-05],[23.299695,-5.1043E-05],[23.303133,-5.8262E-05],[23.306572,-5.1043E-05],[23.310011,-5.4137E-05],[23.313449,-5.5684E-05],[23.316888,-5.2074E-05],[23.320327,-5.8262E-05],[23.323765,-5.6715E-05],[23.327204,-5.8262E-05],[23.330643,-5.4137E-05],[23.334081,-4.9497E-05],[23.33752,-5.1043E-05],[23.340959,-5.0528E-05],[23.344397,-5.4137E-05],[23.347836,-5.5684E-05],[23.351275,-5.5168E-05],[23.354713,-5.3106E-05],[23.358152,-4.8465E-05],[23.361591,-5.2074E-05],[23.365029,-5.5684E-05],[23.368468,-5.2074E-05],[23.371907,-5.3621E-05],[23.375345,-5.5684E-05],[23.378784,-5.3621E-05],[23.382223,-5.4137E-05],[23.385661,-5.259E-05],[23.3891,-5.1043E-05],[23.392539,-5.2074E-05],[23.395977,-5.1043E-05],[23.399416,-5.0528E-05],[23.402855,-5.1559E-05],[23.406293,-5.7746E-05],[23.409732,-5.6715E-05],[23.413171,-5.259E-05],[23.416609,-5.5684E-05],[23.420048,-5.5168E-05],[23.423487,-5.6715E-05],[23.426925,-5.723E-05],[23.430364,-5.4137E-05],[23.433803,-5.2074E-05],[23.437241,-4.9497E-05],[23.44068,-5.4137E-05],[23.444119,-5.8777E-05],[23.447557,-6.0324E-05],[23.450996,-5.3621E-05],[23.454435,-5.1559E-05],[23.457873,-5.3106E-05],[23.461312,-5.1043E-05],[23.464751,-5.5684E-05],[23.468189,-5.8777E-05],[23.471628,-5.9808E-05],[23.475067,-5.1043E-05],[23.478505,-5.259E-05],[23.481944,-5.723E-05],[23.485383,-4.9497E-05],[23.488821,-5.1559E-05],[23.49226,-5.4137E-05],[23.495699,-5.2074E-05],[23.499137,-4.6919E-05],[23.502576,-5.1043E-05]]}
-{"quant":[23.7691,-5.2572E-05],"mems":[[23.67136,-5.259E-05],[23.67484,-5.3621E-05],[23.67832,-5.3621E-05],[23.6818,-5.4137E-05],[23.68528,-5.4652E-05],[23.68876,-5.0528E-05],[23.69224,-4.9497E-05],[23.69572,-5.2074E-05],[23.6992,-5.0528E-05],[23.70268,-4.8981E-05],[23.70616,-5.5684E-05],[23.70964,-5.9808E-05],[23.71312,-5.259E-05],[23.7166,-5.0012E-05],[23.72008,-5.1043E-05],[23.72356,-5.1559E-05],[23.72704,-5.4137E-05],[23.73052,-5.4652E-05],[23.734,-5.259E-05],[23.73748,-5.1043E-05],[23.74096,-5.0528E-05],[23.74444,-5.5168E-05],[23.74792,-5.6199E-05],[23.7514,-4.8465E-05],[23.75488,-5.1043E-05],[23.75836,-5.5168E-05],[23.76184,-5.3106E-05],[23.76532,-5.723E-05],[23.7688,-5.7746E-05],[23.77228,-5.259E-05],[23.77576,-5.0012E-05],[23.77924,-4.795E-05],[23.78272,-5.3621E-05],[23.7862,-5.5684E-05],[23.78968,-5.5684E-05],[23.79316,-5.5168E-05],[23.79664,-4.8465E-05],[23.80012,-5.3106E-05],[23.8036,-5.259E-05],[23.80708,-5.0012E-05],[23.81056,-5.2074E-05],[23.81404,-5.1559E-05],[23.81752,-5.2074E-05],[23.821,-5.0528E-05],[23.82448,-5.4137E-05],[23.82796,-5.1559E-05],[23.83144,-5.1043E-05],[23.83492,-5.1559E-05],[23.8384,-4.795E-05],[23.84188,-5.5684E-05],[23.84536,-5.723E-05],[23.84884,-5.4652E-05],[23.85232,-4.9497E-05],[23.8558,-5.259E-05],[23.85928,-5.6199E-05],[23.86276,-5.3621E-05],[23.86624,-5.6199E-05],[23.86972,-5.1559E-05],[23.8732,-5.0528E-05],[23.87668,-4.8981E-05],[23.88016,-5.1043E-05],[23.88364,-5.723E-05],[23.88712,-5.4137E-05],[23.8906,-5.6715E-05],[23.89408,-5.2074E-05],[23.89756,-5.3106E-05],[23.90104,-5.259E-05],[23.90452,-5.259E-05],[23.908,-5.7746E-05],[23.91148,-4.9497E-05],[23.91496,-5.0012E-05],[23.91844,-5.3106E-05],[23.92192,-5.3106E-05],[23.9254,-5.2074E-05],[23.92888,-5.2074E-05],[23.93236,-5.6715E-05],[23.93584,-5.4137E-05],[23.93932,-5.4652E-05],[23.9428,-5.4652E-05],[23.94628,-5.6715E-05],[23.94976,-5.6715E-05],[23.95324,-5.0012E-05],[23.95672,-5.2074E-05],[23.9602,-5.1559E-05],[23.96368,-5.1043E-05],[23.96716,-5.259E-05],[23.97064,-5.1559E-05]]}
-{"quant":[24.3415,-5.2934E-05],"mems":[[24.24208,-5.259E-05],[24.24556,-5.3621E-05],[24.24904,-5.259E-05],[24.25252,-5.5684E-05],[24.256,-5.4137E-05],[24.25948,-4.8465E-05],[24.26296,-4.6403E-05],[24.26644,-4.8981E-05],[24.26992,-5.7746E-05],[24.2734,-5.4652E-05],[24.27688,-5.1043E-05],[24.28036,-5.2074E-05],[24.28384,-5.259E-05],[24.28732,-5.5168E-05],[24.2908,-5.5684E-05],[24.29428,-5.6199E-05],[24.29776,-5.4652E-05],[24.30124,-5.4137E-05],[24.30472,-5.2074E-05],[24.3082,-4.7434E-05],[24.31168,-5.4652E-05],[24.31516,-5.0528E-05],[24.31864,-4.5887E-05],[24.32212,-5.1043E-05],[24.3256,-4.8981E-05],[24.32908,-5.4652E-05],[24.33256,-5.1559E-05],[24.33604,-4.8981E-05],[24.33952,-5.3621E-05],[24.343,-5.0012E-05],[24.34648,-5.2074E-05],[24.34996,-5.259E-05],[24.35344,-5.3621E-05],[24.35692,-5.259E-05],[24.3604,-5.723E-05],[24.36388,-5.5684E-05],[24.36736,-4.8465E-05],[24.37084,-5.4652E-05],[24.37432,-5.4137E-05],[24.3778,-5.4137E-05],[24.38128,-5.3621E-05],[24.38476,-5.1559E-05],[24.38824,-5.3621E-05],[24.39172,-5.5684E-05],[24.3952,-5.6199E-05],[24.39868,-5.0528E-05],[24.40216,-4.9497E-05],[24.40564,-5.0528E-05],[24.40912,-5.3106E-05],[24.4126,-5.259E-05],[24.41608,-5.3621E-05],[24.41956,-5.3106E-05],[24.42304,-4.8981E-05],[24.42652,-4.9497E-05],[24.43,-5.2074E-05],[24.43348,-6.0839E-05],[24.43696,-5.7746E-05],[24.44044,-5.1043E-05],[24.44392,-4.8981E-05],[24.4474,-4.4856E-05],[24.45088,-5.1043E-05],[24.45436,-4.8465E-05],[24.45784,-4.6403E-05],[24.46132,-5.5168E-05],[24.4648,-5.4137E-05],[24.46828,-5.0528E-05],[24.47176,-5.1043E-05],[24.47524,-4.9497E-05],[24.47872,-4.8981E-05],[24.4822,-4.8981E-05],[24.48568,-4.4856E-05],[24.48916,-4.4856E-05],[24.49264,-4.9497E-05],[24.49612,-5.3621E-05],[24.4996,-5.4652E-05],[24.50308,-5.3106E-05],[24.50656,-5.3106E-05],[24.51004,-5.259E-05],[24.51352,-5.3621E-05],[24.517,-5.8262E-05],[24.52048,-5.5168E-05],[24.52396,-5.3621E-05],[24.52744,-5.6199E-05],[24.53092,-5.5168E-05],[24.5344,-5.5684E-05],[24.53788,-5.4652E-05],[24.54136,-5.3106E-05],[24.54484,-5.723E-05]]}
-{"quant":[24.803,-5.2821E-05],"mems":[[24.70492,-5.0528E-05],[24.7084,-4.9497E-05],[24.71188,-5.1559E-05],[24.71536,-5.8777E-05],[24.71884,-5.5168E-05],[24.72232,-5.4137E-05],[24.7258,-5.3621E-05],[24.72928,-5.0528E-05],[24.73276,-5.0528E-05],[24.73624,-4.795E-05],[24.73972,-5.259E-05],[24.7432,-5.1043E-05],[24.74668,-5.1043E-05],[24.75016,-5.3621E-05],[24.75364,-5.3106E-05],[24.75712,-5.6199E-05],[24.7606,-5.8262E-05],[24.76408,-5.6199E-05],[24.76756,-5.3621E-05],[24.77104,-5.3106E-05],[24.77452,-5.3106E-05],[24.778,-5.5684E-05],[24.78148,-5.4652E-05],[24.78496,-5.1559E-05],[24.78844,-5.259E-05],[24.79192,-5.259E-05],[24.7954,-5.1559E-05],[24.79888,-5.4137E-05],[24.80236,-5.5684E-05],[24.80584,-5.2074E-05],[24.80932,-4.795E-05],[24.8128,-5.0012E-05],[24.81628,-5.4652E-05],[24.81976,-5.4652E-05],[24.82324,-5.5684E-05],[24.82672,-5.3106E-05],[24.8302,-5.3621E-05],[24.83368,-5.6715E-05],[24.83716,-5.0528E-05],[24.84064,-5.2074E-05],[24.84412,-5.723E-05],[24.8476,-5.1043E-05],[24.85108,-5.2074E-05],[24.85456,-5.259E-05],[24.85804,-5.0528E-05],[24.86152,-5.0012E-05],[24.865,-5.1559E-05],[24.86848,-5.4137E-05],[24.87196,-5.2074E-05],[24.87544,-5.4137E-05],[24.87892,-5.5168E-05],[24.8824,-5.5684E-05],[24.88588,-5.4137E-05],[24.88936,-4.8465E-05],[24.89284,-4.8981E-05],[24.89632,-5.259E-05],[24.8998,-5.4137E-05],[24.90328,-5.6199E-05],[24.90676,-5.4137E-05],[24.91024,-5.2074E-05],[24.91372,-5.5684E-05],[24.9172,-5.4652E-05],[24.92068,-5.5684E-05],[24.92416,-5.6715E-05],[24.92764,-5.4137E-05],[24.93112,-4.8465E-05],[24.9346,-5.0528E-05],[24.93808,-5.4137E-05],[24.94156,-5.259E-05],[24.94504,-5.5684E-05],[24.94852,-5.1559E-05],[24.952,-4.5372E-05],[24.95548,-5.4137E-05],[24.95896,-5.8262E-05],[24.96244,-5.4652E-05],[24.96592,-5.6199E-05],[24.9694,-5.4137E-05],[24.97288,-5.5168E-05],[24.97636,-5.5168E-05],[24.97984,-5.4652E-05],[24.98332,-5.9293E-05],[24.9868,-5.5168E-05],[24.99028,-5.4137E-05],[24.99376,-4.9497E-05],[24.99724,-5.1559E-05],[25.00072,-5.8777E-05],[25.0042,-5.3106E-05]]}
-{"quant":[25.2717,-5.259E-05],"mems":[[25.17472,-5.3106E-05],[25.1782,-5.1043E-05],[25.18168,-5.1559E-05],[25.18516,-5.4137E-05],[25.18864,-5.4652E-05],[25.19212,-5.3621E-05],[25.1956,-4.8465E-05],[25.19908,-5.0528E-05],[25.20256,-5.5168E-05],[25.20604,-5.3621E-05],[25.20952,-5.0012E-05],[25.213,-4.6919E-05],[25.21648,-5.4137E-05],[25.21996,-5.723E-05],[25.22344,-5.3621E-05],[25.22692,-5.4137E-05],[25.2304,-5.1043E-05],[25.23388,-5.4137E-05],[25.23736,-5.3106E-05],[25.24084,-4.8981E-05],[25.24432,-5.2074E-05],[25.2478,-5.0012E-05],[25.25128,-5.1043E-05],[25.25476,-4.9497E-05],[25.25824,-5.1559E-05],[25.26172,-5.8777E-05],[25.2652,-5.5684E-05],[25.26868,-5.5684E-05],[25.27216,-5.3621E-05],[25.27564,-4.6919E-05],[25.27912,-5.0528E-05],[25.2826,-5.3621E-05],[25.28608,-5.4137E-05],[25.28956,-5.6715E-05],[25.29304,-4.8465E-05],[25.29652,-4.8465E-05],[25.3,-5.8777E-05],[25.30348,-5.6715E-05],[25.30696,-5.5684E-05],[25.31044,-5.4137E-05],[25.31392,-4.8981E-05],[25.3174,-5.1559E-05],[25.32088,-5.1043E-05],[25.32436,-5.259E-05],[25.32784,-5.3621E-05],[25.33132,-5.5168E-05],[25.3348,-5.3106E-05],[25.33828,-4.795E-05],[25.34176,-5.3106E-05],[25.34524,-5.3106E-05],[25.34872,-5.2074E-05],[25.3522,-5.4652E-05],[25.35568,-5.0528E-05],[25.35916,-4.9497E-05],[25.36264,-5.0012E-05],[25.36612,-5.3621E-05],[25.3696,-5.6199E-05],[25.37308,-5.3106E-05],[25.37656,-4.9497E-05],[25.38004,-5.3106E-05],[25.38352,-5.6715E-05],[25.387,-5.8262E-05],[25.39048,-5.723E-05],[25.39396,-5.2074E-05],[25.39744,-5.259E-05],[25.40092,-5.5684E-05],[25.4044,-5.8262E-05],[25.40788,-5.6199E-05],[25.41136,-5.1043E-05],[25.41484,-4.8465E-05],[25.41832,-4.6919E-05],[25.4218,-5.259E-05],[25.42528,-5.3621E-05],[25.42876,-5.259E-05],[25.43224,-5.2074E-05],[25.43572,-4.8981E-05],[25.4392,-5.1043E-05],[25.44268,-5.0528E-05],[25.44616,-4.9497E-05],[25.44964,-5.0012E-05],[25.45312,-5.0012E-05],[25.4566,-4.7434E-05],[25.46008,-4.8981E-05],[25.46356,-5.5168E-05],[25.46704,-5.1043E-05],[25.47052,-5.1559E-05],[25.474,-5.7746E-05]]}
-{"quant":[25.7683,-5.3226E-05],"mems":[[25.66888,-5.2074E-05],[25.67236,-5.2074E-05],[25.67584,-5.259E-05],[25.67932,-5.0528E-05],[25.6828,-5.4137E-05],[25.68628,-5.1559E-05],[25.68976,-5.2074E-05],[25.69324,-5.4652E-05],[25.69672,-5.259E-05],[25.7002,-5.5684E-05],[25.70368,-5.5168E-05],[25.70716,-5.5168E-05],[25.71064,-5.5684E-05],[25.71412,-5.1559E-05],[25.7176,-5.5168E-05],[25.72108,-5.2074E-05],[25.72456,-4.7434E-05],[25.72804,-5.1559E-05],[25.73152,-5.3106E-05],[25.735,-5.0528E-05],[25.73848,-4.6919E-05],[25.74196,-5.0012E-05],[25.74544,-5.6715E-05],[25.74892,-5.4137E-05],[25.7524,-5.5168E-05],[25.75588,-5.7746E-05],[25.75936,-4.7434E-05],[25.76284,-5.0528E-05],[25.76632,-5.7746E-05],[25.7698,-5.4652E-05],[25.77328,-5.8262E-05],[25.77676,-5.1559E-05],[25.78024,-4.6403E-05],[25.78372,-5.723E-05],[25.7872,-5.6715E-05],[25.79068,-5.1559E-05],[25.79416,-5.1043E-05],[25.79764,-4.9497E-05],[25.80112,-5.259E-05],[25.8046,-5.3106E-05],[25.80808,-5.3621E-05],[25.81156,-5.3621E-05],[25.81504,-4.9497E-05],[25.81852,-4.8465E-05],[25.822,-5.0528E-05],[25.82548,-5.5684E-05],[25.82896,-5.6199E-05],[25.83244,-5.3106E-05],[25.83592,-5.5684E-05],[25.8394,-5.5684E-05],[25.84288,-5.1043E-05],[25.84636,-5.4652E-05],[25.84984,-5.4137E-05],[25.85332,-5.4137E-05],[25.8568,-5.5684E-05],[25.86028,-5.1043E-05],[25.86376,-5.5168E-05],[25.86724,-5.4652E-05],[25.87072,-5.1559E-05],[25.8742,-5.2074E-05],[25.87768,-5.0012E-05],[25.88116,-5.259E-05],[25.88464,-5.1559E-05],[25.88812,-5.1559E-05],[25.8916,-5.5168E-05],[25.89508,-5.5168E-05],[25.89856,-5.4137E-05],[25.90204,-5.1559E-05],[25.90552,-5.2074E-05],[25.909,-5.3621E-05],[25.91248,-5.4137E-05],[25.91596,-5.3106E-05],[25.91944,-5.1559E-05],[25.92292,-5.1043E-05],[25.9264,-5.4137E-05],[25.92988,-5.9293E-05],[25.93336,-5.8262E-05],[25.93684,-5.5168E-05],[25.94032,-5.3106E-05],[25.9438,-5.259E-05],[25.94728,-5.2074E-05],[25.95076,-5.0528E-05],[25.95424,-5.1043E-05],[25.95772,-5.1043E-05],[25.9612,-4.8981E-05],[25.96468,-5.1043E-05],[25.96816,-5.4137E-05],[25.97164,-5.3621E-05]]}
-{"quant":[26.248,-1.7132],"mems":[[26.21524,-5.3621E-05],[26.21872,-5.723E-05],[26.2222,-5.6199E-05],[26.22568,-5.4652E-05],[26.22916,-5.3621E-05],[26.23264,-5.259E-05],[26.23612,-5.6715E-05],[26.2396,-5.3106E-05],[26.24308,-5.3106E-05],[26.24656,-5.3106E-05],[26.25004,-5.1559E-05],[26.25352,-5.6199E-05],[26.257,-5.6199E-05],[26.260393,-5.5168E-05],[26.263787,-5.2074E-05],[26.26718,-4.8465E-05],[26.270573,-5.3621E-05],[26.273967,-5.9293E-05],[26.27736,-5.5168E-05],[26.280753,-5.0528E-05],[26.284147,-5.3106E-05],[26.28754,-5.4652E-05],[26.290933,-4.9497E-05],[26.294327,-5.0528E-05],[26.29772,-5.5684E-05],[26.301113,-5.1043E-05],[26.304507,-5.0528E-05],[26.3079,-5.5684E-05],[26.311293,-5.723E-05],[26.314687,-5.6199E-05],[26.31808,-5.4137E-05],[26.321473,-5.1559E-05],[26.324867,-4.8981E-05],[26.32826,-5.0012E-05],[26.331653,-5.4652E-05],[26.335047,-5.5684E-05],[26.33844,-5.1559E-05],[26.341833,-5.1043E-05],[26.345227,-5.5168E-05],[26.34862,-5.3621E-05],[26.352013,-5.259E-05],[26.355407,-5.3621E-05],[26.3588,-5.4652E-05],[26.362193,-5.259E-05],[26.365587,-5.1559E-05],[26.36898,-5.5168E-05],[26.372373,-5.4652E-05],[26.375767,-5.259E-05],[26.37916,-5.5168E-05],[26.382553,-5.5684E-05],[26.385947,-5.0528E-05],[26.38934,-5.6715E-05],[26.392733,-5.723E-05],[26.396127,-5.2074E-05],[26.39952,-5.3621E-05],[26.402913,-4.8465E-05],[26.406307,-5.2074E-05],[26.4097,-5.5168E-05],[26.413093,-5.2074E-05],[26.416487,-5.1043E-05],[26.41988,-4.8981E-05],[26.423273,-5.4652E-05],[26.426667,-5.4137E-05],[26.43006,-5.0528E-05],[26.433453,-5.1559E-05],[26.436847,-5.4137E-05],[26.44024,-5.7746E-05],[26.443633,-5.4137E-05],[26.447027,-5.3621E-05],[26.45042,-5.4652E-05],[26.453813,-5.3621E-05],[26.457207,-5.259E-05],[26.4606,-5.0528E-05],[26.463993,-5.5684E-05],[26.467387,-5.5168E-05],[26.47078,-5.3621E-05],[26.474173,-6.0324E-05],[26.477567,-5.5684E-05],[26.48096,-4.8981E-05],[26.484353,-5.259E-05],[26.487747,-5.5684E-05],[26.49114,-5.2074E-05],[26.494533,-5.0528E-05],[26.497927,-4.8465E-05],[26.50132,-5.0012E-05],[26.504713,-5.2074E-05],[26.508107,-5.1043E-05]]}
-{"quant":[26.711,-5.3638E-05],"mems":[[26.6133,-5.4137E-05],[26.616693,-5.0528E-05],[26.620087,-5.0528E-05],[26.62348,-4.6919E-05],[26.626873,-4.9497E-05],[26.630267,-5.4137E-05],[26.63366,-5.259E-05],[26.637053,-5.1043E-05],[26.640447,-4.9497E-05],[26.64384,-5.3621E-05],[26.647233,-5.5684E-05],[26.650627,-5.1559E-05],[26.65402,-5.2074E-05],[26.657413,-5.1559E-05],[26.660807,-4.8465E-05],[26.6642,-5.1559E-05],[26.667593,-5.4652E-05],[26.670987,-5.4137E-05],[26.67438,-5.5684E-05],[26.677773,-5.6715E-05],[26.681167,-5.5168E-05],[26.68456,-5.3621E-05],[26.687953,-5.1559E-05],[26.691347,-5.5684E-05],[26.69474,-5.6715E-05],[26.698133,-4.8465E-05],[26.701527,-5.0012E-05],[26.70492,-5.3621E-05],[26.708313,-5.1559E-05],[26.711707,-5.4137E-05],[26.7151,-5.2074E-05],[26.718493,-4.7434E-05],[26.721887,-5.0012E-05],[26.72528,-5.6715E-05],[26.728673,-5.8262E-05],[26.732067,-5.4137E-05],[26.73546,-5.3106E-05],[26.738853,-5.5168E-05],[26.742247,-5.6715E-05],[26.74564,-5.6199E-05],[26.749033,-5.5168E-05],[26.752427,-5.5168E-05],[26.75582,-5.4137E-05],[26.759213,-5.3106E-05],[26.762607,-5.2074E-05],[26.766,-5.3106E-05],[26.769393,-5.3621E-05],[26.772787,-5.2074E-05],[26.77618,-4.9497E-05],[26.779573,-5.4137E-05],[26.782967,-5.4652E-05],[26.78636,-4.9497E-05],[26.789753,-5.259E-05],[26.793147,-5.3621E-05],[26.79654,-5.1043E-05],[26.799933,-5.259E-05],[26.803327,-5.5684E-05],[26.80672,-5.4652E-05],[26.810113,-5.6199E-05],[26.813507,-5.6199E-05],[26.8169,-5.1043E-05],[26.820293,-5.3106E-05],[26.823687,-5.4137E-05],[26.82708,-5.3621E-05],[26.830473,-5.4137E-05],[26.833867,-5.2074E-05],[26.83726,-4.9497E-05],[26.840653,-5.2074E-05],[26.844047,-5.6715E-05],[26.84744,-5.4652E-05],[26.850833,-5.0528E-05],[26.854227,-4.9497E-05],[26.85762,-5.1043E-05],[26.861013,-5.4652E-05],[26.864407,-5.4137E-05],[26.8678,-5.3106E-05],[26.871193,-5.1559E-05],[26.874587,-5.1043E-05],[26.87798,-5.259E-05],[26.881373,-5.1043E-05],[26.884767,-5.259E-05],[26.88816,-5.6199E-05],[26.891553,-5.4652E-05],[26.894947,-5.259E-05],[26.89834,-5.4137E-05],[26.901733,-5.723E-05],[26.905127,-5.6715E-05],[26.90852,-5.4652E-05],[26.911913,-5.6715E-05]]}
-{"quant":[27.1985,-5.3278E-05],"mems":[[27.098547,-5.3106E-05],[27.10194,-5.6199E-05],[27.105333,-5.3621E-05],[27.108727,-5.5684E-05],[27.11212,-5.4137E-05],[27.115513,-5.0528E-05],[27.118907,-5.3621E-05],[27.1223,-5.4137E-05],[27.125693,-5.4652E-05],[27.129087,-5.5684E-05],[27.13248,-5.0528E-05],[27.135873,-4.8465E-05],[27.139267,-5.1043E-05],[27.14266,-5.1559E-05],[27.146053,-5.4652E-05],[27.149447,-5.3621E-05],[27.15284,-5.1043E-05],[27.156233,-5.259E-05],[27.159627,-5.4137E-05],[27.16302,-5.2074E-05],[27.166413,-4.8465E-05],[27.169807,-5.0012E-05],[27.1732,-5.259E-05],[27.176593,-5.259E-05],[27.179987,-5.259E-05],[27.18338,-5.6199E-05],[27.186773,-5.6715E-05],[27.190167,-5.5684E-05],[27.19356,-5.4137E-05],[27.196953,-5.4137E-05],[27.200347,-5.723E-05],[27.20374,-5.5168E-05],[27.207133,-4.8981E-05],[27.210527,-5.0012E-05],[27.21392,-5.3621E-05],[27.217313,-5.1043E-05],[27.220707,-5.3621E-05],[27.2241,-5.3621E-05],[27.227493,-5.5168E-05],[27.230887,-5.5168E-05],[27.23428,-4.8981E-05],[27.237673,-5.4652E-05],[27.241067,-5.6715E-05],[27.24446,-5.3106E-05],[27.247853,-5.4137E-05],[27.251247,-5.1559E-05],[27.25464,-5.0012E-05],[27.258033,-5.1043E-05],[27.261427,-5.3106E-05],[27.26482,-5.6199E-05],[27.268213,-5.723E-05],[27.271607,-5.3621E-05],[27.275,-5.4137E-05],[27.278393,-5.5684E-05],[27.281787,-5.4137E-05],[27.28518,-5.3106E-05],[27.288573,-4.795E-05],[27.291967,-4.9497E-05],[27.29536,-5.3621E-05],[27.298753,-5.6199E-05],[27.302147,-5.8777E-05],[27.30554,-5.259E-05],[27.308933,-5.3106E-05],[27.312327,-5.1559E-05],[27.31572,-5.1043E-05],[27.319113,-5.723E-05],[27.322507,-5.723E-05],[27.3259,-5.8262E-05],[27.329293,-5.3106E-05],[27.332687,-5.0528E-05],[27.33608,-5.723E-05],[27.339473,-5.5168E-05],[27.342867,-5.4652E-05],[27.34626,-5.5684E-05],[27.349653,-5.1043E-05],[27.353047,-5.259E-05],[27.35644,-5.2074E-05],[27.359833,-5.4652E-05],[27.363227,-5.8777E-05],[27.36662,-5.723E-05],[27.370013,-5.4137E-05],[27.373407,-5.1559E-05],[27.3768,-5.259E-05],[27.380193,-5.0012E-05],[27.383587,-5.0012E-05],[27.38698,-5.2074E-05],[27.390373,-5.1559E-05],[27.393767,-5.3106E-05],[27.39716,-5.5168E-05],[27.400553,-5.4652E-05]]}
-{"quant":[27.6616,-5.2773E-05],"mems":[[27.563433,-4.9497E-05],[27.566827,-5.1559E-05],[27.57022,-4.8981E-05],[27.573613,-5.3621E-05],[27.577007,-5.4137E-05],[27.5804,-5.3621E-05],[27.583793,-5.2074E-05],[27.587187,-4.8981E-05],[27.59058,-5.3621E-05],[27.593973,-5.3621E-05],[27.597367,-5.1043E-05],[27.60076,-5.3106E-05],[27.604153,-5.0012E-05],[27.607547,-4.8465E-05],[27.61094,-5.4652E-05],[27.614333,-5.2074E-05],[27.617727,-5.0528E-05],[27.62112,-5.0012E-05],[27.624513,-4.6403E-05],[27.627907,-5.1043E-05],[27.6313,-5.5684E-05],[27.634693,-5.2074E-05],[27.638087,-5.3106E-05],[27.64148,-5.8262E-05],[27.644873,-5.4137E-05],[27.648267,-5.2074E-05],[27.65166,-5.4137E-05],[27.655053,-5.3621E-05],[27.658447,-5.3621E-05],[27.66184,-5.259E-05],[27.665233,-4.795E-05],[27.668627,-5.0012E-05],[27.67202,-5.5684E-05],[27.675413,-5.4137E-05],[27.678807,-5.259E-05],[27.6822,-5.0012E-05],[27.685593,-4.7434E-05],[27.688987,-5.1559E-05],[27.69238,-5.3621E-05],[27.695773,-5.6199E-05],[27.699167,-5.5684E-05],[27.70256,-5.4137E-05],[27.705953,-5.4652E-05],[27.709347,-5.2074E-05],[27.71274,-5.3621E-05],[27.716133,-5.2074E-05],[27.719527,-5.2074E-05],[27.72292,-5.4137E-05],[27.726313,-5.3621E-05],[27.729707,-5.3621E-05],[27.7331,-5.259E-05],[27.736493,-5.4137E-05],[27.739887,-5.1559E-05],[27.74328,-5.1559E-05],[27.746673,-5.4137E-05],[27.750067,-5.3621E-05],[27.75346,-5.4652E-05],[27.756853,-5.4652E-05],[27.760247,-5.2074E-05],[27.76364,-4.9497E-05],[27.767033,-4.9497E-05],[27.770427,-5.0012E-05],[27.77382,-5.3106E-05],[27.777213,-5.4652E-05],[27.780607,-5.2074E-05],[27.784,-5.2074E-05],[27.787393,-5.259E-05],[27.790787,-5.259E-05],[27.79418,-5.259E-05],[27.797573,-5.723E-05],[27.800967,-5.2074E-05],[27.80436,-5.1559E-05],[27.807753,-5.5168E-05],[27.811147,-5.259E-05],[27.81454,-5.4137E-05],[27.817933,-5.1043E-05],[27.821327,-5.4652E-05],[27.82472,-5.3106E-05],[27.828113,-5.3106E-05],[27.831507,-5.8777E-05],[27.8349,-5.6199E-05],[27.838293,-5.6199E-05],[27.841687,-5.0012E-05],[27.84508,-5.1559E-05],[27.848473,-5.4137E-05],[27.851867,-4.9497E-05],[27.85526,-5.4137E-05],[27.858653,-5.4652E-05],[27.862047,-5.1559E-05]]}
-{"quant":[28.1216,-5.3501E-05],"mems":[[28.024927,-5.4652E-05],[28.02832,-5.3106E-05],[28.031713,-5.4652E-05],[28.035107,-5.4652E-05],[28.0385,-5.0528E-05],[28.041893,-4.9497E-05],[28.045287,-5.723E-05],[28.04868,-5.4652E-05],[28.052073,-5.3106E-05],[28.055467,-5.8777E-05],[28.05886,-5.5684E-05],[28.062253,-5.5168E-05],[28.065647,-5.259E-05],[28.06904,-5.3106E-05],[28.072433,-5.4652E-05],[28.075827,-5.3621E-05],[28.07922,-4.8465E-05],[28.082613,-5.0528E-05],[28.086007,-5.723E-05],[28.0894,-5.4137E-05],[28.092793,-5.5684E-05],[28.096187,-5.5168E-05],[28.09958,-5.4652E-05],[28.102973,-5.259E-05],[28.106367,-5.3621E-05],[28.10976,-5.6715E-05],[28.113153,-5.259E-05],[28.116547,-5.259E-05],[28.11994,-5.0012E-05],[28.123333,-5.1559E-05],[28.126727,-5.4652E-05],[28.13012,-5.4137E-05],[28.133513,-5.4137E-05],[28.136907,-5.3621E-05],[28.1403,-5.4652E-05],[28.143693,-5.259E-05],[28.147087,-5.5684E-05],[28.15048,-5.723E-05],[28.153873,-5.1043E-05],[28.157267,-4.9497E-05],[28.16066,-4.9497E-05],[28.164053,-5.1043E-05],[28.167447,-5.4137E-05],[28.17084,-5.4652E-05],[28.174233,-5.4137E-05],[28.177627,-5.3106E-05],[28.18102,-5.3106E-05],[28.184413,-5.723E-05],[28.187807,-5.7746E-05],[28.1912,-5.6199E-05],[28.194593,-5.259E-05],[28.197987,-5.0528E-05],[28.20138,-5.4652E-05],[28.204773,-5.9808E-05],[28.208167,-5.7746E-05],[28.21156,-5.0528E-05],[28.214953,-5.0012E-05],[28.218347,-4.8465E-05],[28.22174,-5.1043E-05],[28.225133,-5.4652E-05],[28.228527,-5.0012E-05],[28.23192,-5.1043E-05],[28.235313,-5.5168E-05],[28.238707,-5.4137E-05],[28.2421,-5.1043E-05],[28.245493,-5.1559E-05],[28.248887,-5.259E-05],[28.25228,-5.6199E-05],[28.255673,-5.259E-05],[28.259067,-4.4856E-05],[28.26246,-5.0012E-05],[28.265853,-5.0528E-05],[28.269247,-5.1559E-05],[28.27264,-5.259E-05],[28.276033,-4.6919E-05],[28.279427,-5.0528E-05],[28.28282,-5.5168E-05],[28.286213,-5.4137E-05],[28.289607,-5.5168E-05],[28.293,-5.6715E-05],[28.296393,-5.4652E-05],[28.299787,-5.3621E-05],[28.30318,-5.259E-05],[28.306573,-5.4652E-05],[28.309967,-5.6715E-05],[28.31336,-5.1559E-05],[28.316753,-4.6403E-05],[28.320147,-4.9497E-05],[28.32354,-5.2074E-05]]}
-{"quant":[28.5872,-5.3172E-05],"mems":[[28.489813,-5.3106E-05],[28.493207,-5.2074E-05],[28.4966,-4.8981E-05],[28.499993,-5.6715E-05],[28.503387,-5.6199E-05],[28.50678,-5.259E-05],[28.510173,-4.8465E-05],[28.513567,-5.3621E-05],[28.51696,-5.723E-05],[28.520353,-5.5684E-05],[28.523747,-5.6199E-05],[28.52714,-5.259E-05],[28.530533,-5.1559E-05],[28.533927,-4.9497E-05],[28.53732,-5.5684E-05],[28.540713,-5.7746E-05],[28.544107,-5.3621E-05],[28.5475,-5.1559E-05],[28.550893,-5.1559E-05],[28.554287,-5.0528E-05],[28.55768,-5.1559E-05],[28.561073,-5.6715E-05],[28.564467,-5.4652E-05],[28.56786,-5.3621E-05],[28.571253,-4.9497E-05],[28.574647,-5.3621E-05],[28.57804,-5.7746E-05],[28.581433,-5.3106E-05],[28.584827,-4.8981E-05],[28.58822,-4.6919E-05],[28.591613,-4.7434E-05],[28.595007,-4.5887E-05],[28.5984,-4.8981E-05],[28.601793,-5.3621E-05],[28.605187,-5.7746E-05],[28.60858,-5.5684E-05],[28.611973,-5.3106E-05],[28.615367,-5.3106E-05],[28.61876,-5.1559E-05],[28.622153,-5.3621E-05],[28.625547,-5.3621E-05],[28.62894,-5.259E-05],[28.632333,-5.0012E-05],[28.635727,-5.4652E-05],[28.63912,-5.7746E-05],[28.642513,-5.723E-05],[28.645907,-6.1355E-05],[28.6493,-5.5168E-05],[28.652693,-4.6919E-05],[28.656087,-5.2074E-05],[28.65948,-5.3621E-05],[28.662873,-5.1559E-05],[28.666267,-5.4137E-05],[28.66966,-5.4652E-05],[28.673053,-5.4137E-05],[28.676447,-5.1043E-05],[28.67984,-5.5168E-05],[28.683233,-5.8262E-05],[28.686627,-5.259E-05],[28.69002,-5.4137E-05],[28.693413,-5.4137E-05],[28.696807,-5.5684E-05],[28.7002,-5.723E-05],[28.703593,-5.2074E-05],[28.706987,-5.3106E-05],[28.71038,-5.3106E-05],[28.713773,-5.3106E-05],[28.717167,-5.3621E-05],[28.72056,-5.3621E-05],[28.723953,-5.3106E-05],[28.727347,-5.0012E-05],[28.73074,-5.1043E-05],[28.734133,-5.723E-05],[28.737527,-5.2074E-05],[28.74092,-4.7434E-05],[28.744313,-5.4652E-05],[28.747707,-5.2074E-05],[28.7511,-5.1043E-05],[28.754493,-5.5168E-05],[28.757887,-5.3621E-05],[28.76128,-5.6715E-05],[28.764673,-5.7746E-05],[28.768067,-5.5168E-05],[28.77146,-5.4137E-05],[28.774853,-5.4652E-05],[28.778247,-5.0528E-05],[28.78164,-5.1559E-05],[28.785033,-5.5168E-05],[28.788427,-5.0012E-05]]}
-{"quant":[29.0637,-5.216E-05],"mems":[[28.967056,-5.3621E-05],[28.970495,-5.4652E-05],[28.973933,-5.723E-05],[28.977372,-5.4652E-05],[28.980811,-5.5684E-05],[28.984249,-5.4652E-05],[28.987688,-5.3106E-05],[28.991127,-5.3621E-05],[28.994565,-5.5168E-05],[28.998004,-5.4652E-05],[29.001443,-5.3106E-05],[29.004881,-5.3621E-05],[29.00832,-5.0528E-05],[29.011759,-5.2074E-05],[29.015197,-5.5168E-05],[29.018636,-5.8262E-05],[29.022075,-5.7746E-05],[29.025513,-5.6199E-05],[29.028952,-5.3621E-05],[29.032391,-5.259E-05],[29.035829,-5.5684E-05],[29.039268,-5.4137E-05],[29.042707,-5.5684E-05],[29.046145,-5.3106E-05],[29.049584,-5.0528E-05],[29.053023,-5.2074E-05],[29.056461,-5.2074E-05],[29.0599,-5.0012E-05],[29.063339,-4.6919E-05],[29.066777,-5.1043E-05],[29.070216,-5.259E-05],[29.073655,-5.4137E-05],[29.077093,-5.4652E-05],[29.080532,-5.4652E-05],[29.083971,-5.3621E-05],[29.087409,-4.6919E-05],[29.090848,-5.1043E-05],[29.094287,-5.6715E-05],[29.097725,-5.5168E-05],[29.101164,-5.3621E-05],[29.104603,-5.3106E-05],[29.108041,-5.259E-05],[29.11148,-5.0528E-05],[29.114919,-5.1043E-05],[29.118357,-5.0012E-05],[29.121796,-4.795E-05],[29.125235,-4.9497E-05],[29.128673,-5.0012E-05],[29.132112,-5.1559E-05],[29.135551,-5.1559E-05],[29.138989,-5.3621E-05],[29.142428,-5.5684E-05],[29.145867,-5.3106E-05],[29.149305,-5.3621E-05],[29.152744,-5.0528E-05],[29.156183,-4.6403E-05],[29.159621,-5.3106E-05],[29.16306,-5.5168E-05],[29.166499,-5.1559E-05],[29.169937,-5.3106E-05],[29.173376,-5.4137E-05],[29.176815,-5.5168E-05],[29.180253,-5.5684E-05],[29.183692,-5.3106E-05],[29.187131,-5.4137E-05],[29.190569,-5.3106E-05],[29.194008,-5.259E-05],[29.197447,-5.4137E-05],[29.200885,-4.9497E-05],[29.204324,-5.3621E-05],[29.207763,-5.4137E-05],[29.211201,-5.3621E-05],[29.21464,-5.4652E-05],[29.218079,-4.8981E-05],[29.221517,-5.1043E-05],[29.224956,-5.3106E-05],[29.228395,-5.8262E-05],[29.231833,-5.6199E-05],[29.235272,-4.9497E-05],[29.238711,-5.5168E-05],[29.242149,-4.8981E-05],[29.245588,-4.7434E-05],[29.249027,-5.3106E-05],[29.252465,-5.4652E-05],[29.255904,-5.9293E-05],[29.259343,-5.6715E-05],[29.262781,-5.4137E-05],[29.26622,-5.3106E-05]]}
-{"quant":[29.619,-5.3071E-05],"mems":[[29.520681,-5.4137E-05],[29.52412,-5.3621E-05],[29.527559,-4.9497E-05],[29.530997,-5.3106E-05],[29.534436,-5.6199E-05],[29.537875,-5.3621E-05],[29.541313,-5.4137E-05],[29.544752,-5.3106E-05],[29.548191,-5.259E-05],[29.551629,-5.259E-05],[29.555068,-5.4137E-05],[29.558507,-5.4652E-05],[29.561945,-5.723E-05],[29.565384,-5.5684E-05],[29.568823,-5.0012E-05],[29.572261,-5.4137E-05],[29.5757,-5.6199E-05],[29.579139,-5.6199E-05],[29.582577,-5.4652E-05],[29.586016,-5.0012E-05],[29.589455,-5.1559E-05],[29.592893,-5.2074E-05],[29.596332,-5.4652E-05],[29.599771,-5.6715E-05],[29.603209,-5.2074E-05],[29.606648,-5.5168E-05],[29.610087,-5.4137E-05],[29.613525,-4.8465E-05],[29.616964,-5.1043E-05],[29.620403,-5.259E-05],[29.623841,-5.3621E-05],[29.62728,-5.4137E-05],[29.630719,-5.259E-05],[29.634157,-5.1043E-05],[29.637596,-5.2074E-05],[29.641035,-5.4137E-05],[29.644473,-4.7434E-05],[29.647912,-5.0528E-05],[29.651351,-5.5168E-05],[29.654789,-4.8981E-05],[29.658228,-5.5168E-05],[29.661667,-5.723E-05],[29.665105,-5.4652E-05],[29.668544,-5.5168E-05],[29.671983,-5.3621E-05],[29.675421,-5.7746E-05],[29.67886,-5.6199E-05],[29.682299,-5.3621E-05],[29.685737,-5.1559E-05],[29.689176,-5.1559E-05],[29.692615,-5.1559E-05],[29.696053,-5.3621E-05],[29.699492,-5.9808E-05],[29.702931,-5.4137E-05],[29.706369,-5.1559E-05],[29.709808,-5.259E-05],[29.713247,-4.795E-05],[29.716685,-5.0528E-05],[29.720124,-5.1559E-05],[29.723563,-5.1559E-05],[29.727001,-4.9497E-05],[29.73044,-4.8981E-05],[29.733879,-5.2074E-05],[29.737317,-4.9497E-05],[29.740756,-5.3106E-05],[29.744195,-5.0012E-05],[29.747633,-4.4856E-05],[29.751072,-5.3106E-05],[29.754511,-5.6715E-05],[29.757949,-5.9293E-05],[29.761388,-5.3106E-05],[29.764827,-4.7434E-05],[29.768265,-5.3621E-05],[29.771704,-5.2074E-05],[29.775143,-5.3621E-05],[29.778581,-5.6199E-05],[29.78202,-5.259E-05],[29.785459,-5.2074E-05],[29.788897,-5.4137E-05],[29.792336,-5.2074E-05],[29.795775,-5.3106E-05],[29.799213,-5.1559E-05],[29.802652,-5.1043E-05],[29.806091,-5.5168E-05],[29.809529,-5.3621E-05],[29.812968,-5.4137E-05],[29.816407,-5.6199E-05],[29.819845,-5.3106E-05]]}
-{"quant":[30.0724,-5.3192E-05],"mems":[[29.974585,-5.2074E-05],[29.978024,-5.2074E-05],[29.981463,-5.259E-05],[29.984901,-5.3106E-05],[29.98834,-4.8465E-05],[29.991779,-5.259E-05],[29.995217,-5.3621E-05],[29.998656,-5.1559E-05],[30.002095,-5.2074E-05],[30.005533,-5.1043E-05],[30.008972,-5.1559E-05],[30.012411,-5.0012E-05],[30.015849,-5.5168E-05],[30.019288,-6.1355E-05],[30.022727,-5.6715E-05],[30.026165,-4.8981E-05],[30.029604,-4.9497E-05],[30.033043,-5.5168E-05],[30.036481,-5.5684E-05],[30.03992,-5.5684E-05],[30.043359,-5.7746E-05],[30.046797,-5.4137E-05],[30.050236,-4.4856E-05],[30.053675,-4.6919E-05],[30.057113,-5.5684E-05],[30.060552,-5.6199E-05],[30.063991,-5.3106E-05],[30.067429,-5.0012E-05],[30.070868,-4.8981E-05],[30.074307,-5.5684E-05],[30.077745,-5.8777E-05],[30.081184,-5.6199E-05],[30.084623,-5.6199E-05],[30.088061,-5.259E-05],[30.0915,-5.1043E-05],[30.094939,-5.5684E-05],[30.098377,-5.7746E-05],[30.101816,-5.3106E-05],[30.105255,-5.0012E-05],[30.108693,-5.4652E-05],[30.112132,-5.3106E-05],[30.115571,-5.6199E-05],[30.119009,-5.6199E-05],[30.122448,-5.2074E-05],[30.125887,-5.0012E-05],[30.129325,-4.5887E-05],[30.132764,-5.0528E-05],[30.136203,-5.1559E-05],[30.139641,-5.1559E-05],[30.14308,-5.1559E-05],[30.146519,-4.795E-05],[30.149957,-5.2074E-05],[30.153396,-5.3621E-05],[30.156835,-5.5168E-05],[30.160273,-5.259E-05],[30.163712,-5.1043E-05],[30.167151,-5.5684E-05],[30.170589,-5.259E-05],[30.174028,-5.4652E-05],[30.177467,-5.7746E-05],[30.180905,-5.4137E-05],[30.184344,-5.3106E-05],[30.187783,-5.3621E-05],[30.191221,-5.2074E-05],[30.19466,-5.0012E-05],[30.198099,-5.4652E-05],[30.201537,-5.1559E-05],[30.204976,-4.9497E-05],[30.208415,-5.5684E-05],[30.211853,-5.723E-05],[30.215292,-5.5684E-05],[30.218731,-5.259E-05],[30.222169,-5.1559E-05],[30.225608,-5.1043E-05],[30.229047,-5.2074E-05],[30.232485,-5.3621E-05],[30.235924,-5.3621E-05],[30.239363,-5.2074E-05],[30.242801,-5.0528E-05],[30.24624,-5.5684E-05],[30.249679,-5.4137E-05],[30.253117,-4.9497E-05],[30.256556,-5.2074E-05],[30.259995,-5.3106E-05],[30.263433,-5.3106E-05],[30.266872,-5.1043E-05],[30.270311,-4.6919E-05],[30.273749,-5.1043E-05]]}
-{"quant":[30.5687,-5.3381E-05],"mems":[[30.469753,-5.723E-05],[30.473192,-5.259E-05],[30.476631,-5.5168E-05],[30.480069,-5.259E-05],[30.483508,-5.259E-05],[30.486947,-5.3106E-05],[30.490385,-5.5168E-05],[30.493824,-5.723E-05],[30.497263,-5.4137E-05],[30.500701,-5.4652E-05],[30.50414,-5.3621E-05],[30.507579,-5.0528E-05],[30.511017,-5.0528E-05],[30.514456,-5.4137E-05],[30.517895,-5.3621E-05],[30.521333,-5.3621E-05],[30.524772,-5.4652E-05],[30.528211,-5.1559E-05],[30.531649,-5.3621E-05],[30.535088,-5.9293E-05],[30.538527,-5.8262E-05],[30.541965,-5.3106E-05],[30.545404,-5.0012E-05],[30.548843,-5.0012E-05],[30.552281,-5.3621E-05],[30.55572,-5.6715E-05],[30.559159,-5.2074E-05],[30.562597,-5.1043E-05],[30.566036,-5.3106E-05],[30.569475,-4.6403E-05],[30.572913,-5.259E-05],[30.576352,-5.8777E-05],[30.579791,-5.3621E-05],[30.583229,-5.2074E-05],[30.586668,-4.6403E-05],[30.590107,-4.6919E-05],[30.593545,-5.3621E-05],[30.596984,-5.259E-05],[30.600423,-5.0528E-05],[30.603861,-5.3621E-05],[30.6073,-5.3106E-05],[30.610739,-4.8981E-05],[30.614177,-5.3621E-05],[30.617616,-5.5684E-05],[30.621055,-5.3621E-05],[30.624493,-5.3621E-05],[30.627932,-5.259E-05],[30.631371,-5.3621E-05],[30.634809,-5.4652E-05],[30.638248,-5.723E-05],[30.641687,-5.8262E-05],[30.645125,-5.5168E-05],[30.648564,-5.723E-05],[30.652003,-6.0324E-05],[30.655441,-6.1355E-05],[30.65888,-5.5684E-05],[30.662319,-4.6919E-05],[30.665757,-5.0012E-05],[30.669196,-5.259E-05],[30.672635,-5.1043E-05],[30.676073,-5.0528E-05],[30.679512,-4.8465E-05],[30.682951,-5.1559E-05],[30.686389,-5.2074E-05],[30.689828,-5.3106E-05],[30.693267,-5.1559E-05],[30.696705,-4.8981E-05],[30.700144,-5.4137E-05],[30.703583,-5.3106E-05],[30.707021,-5.2074E-05],[30.71046,-5.3106E-05],[30.713899,-5.2074E-05],[30.717337,-5.2074E-05],[30.720776,-5.4137E-05],[30.724215,-5.1043E-05],[30.727653,-5.1043E-05],[30.731092,-5.4652E-05],[30.734531,-5.259E-05],[30.737969,-5.723E-05],[30.741408,-5.723E-05],[30.744847,-5.1043E-05],[30.748285,-4.8981E-05],[30.751724,-5.1559E-05],[30.755163,-5.0528E-05],[30.758601,-5.259E-05],[30.76204,-5.6715E-05],[30.765479,-5.1559E-05],[30.768917,-5.259E-05]]}
-{"quant":[31.0326,-5.1353E-05],"mems":[[30.933973,-5.1043E-05],[30.937412,-5.5684E-05],[30.940851,-5.3106E-05],[30.944289,-5.3621E-05],[30.947728,-5.723E-05],[30.951167,-5.3621E-05],[30.954605,-5.5168E-05],[30.958044,-5.3106E-05],[30.961483,-5.5168E-05],[30.964921,-5.5168E-05],[30.96836,-4.795E-05],[30.971799,-5.3621E-05],[30.975237,-5.723E-05],[30.978676,-5.5684E-05],[30.982115,-5.4652E-05],[30.985553,-5.0528E-05],[30.988992,-4.8981E-05],[30.992431,-5.0012E-05],[30.995869,-5.4137E-05],[30.999308,-5.3106E-05],[31.002747,-5.2074E-05],[31.006185,-5.5168E-05],[31.009624,-5.0528E-05],[31.013063,-5.0528E-05],[31.016501,-5.5684E-05],[31.01994,-5.8262E-05],[31.023379,-5.5168E-05],[31.026817,-4.7434E-05],[31.030256,-5.2074E-05],[31.033695,-5.3106E-05],[31.037133,-5.1043E-05],[31.040572,-5.5684E-05],[31.044011,-5.2074E-05],[31.047449,-4.7434E-05],[31.050888,-4.8981E-05],[31.054327,-5.259E-05],[31.057765,-5.3621E-05],[31.061204,-4.9497E-05],[31.064643,-4.9497E-05],[31.068081,-5.2074E-05],[31.07152,-5.3621E-05],[31.074959,-5.4137E-05],[31.078397,-5.2074E-05],[31.081836,-5.3106E-05],[31.085275,-5.2074E-05],[31.088713,-4.5372E-05],[31.092152,-4.9497E-05],[31.095591,-5.1043E-05],[31.099029,-4.4341E-05],[31.102468,-4.7434E-05],[31.105907,-4.5887E-05],[31.109345,-4.5372E-05],[31.112784,-5.1043E-05],[31.116223,-5.1559E-05],[31.119661,-5.5168E-05],[31.1231,-5.6199E-05],[31.126539,-5.3621E-05],[31.129977,-5.5684E-05],[31.133416,-5.7746E-05],[31.136855,-5.6199E-05],[31.140293,-5.6715E-05],[31.143732,-5.4652E-05],[31.147171,-4.8981E-05],[31.150609,-5.0528E-05],[31.154048,-4.8465E-05],[31.157487,-5.1043E-05],[31.160925,-5.3106E-05],[31.164364,-4.5887E-05],[31.167803,-4.9497E-05],[31.171241,-5.3621E-05],[31.17468,-5.3621E-05],[31.178119,-5.5684E-05],[31.181557,-5.5168E-05],[31.184996,-5.0012E-05],[31.188435,-5.0528E-05],[31.191873,-5.5168E-05],[31.195312,-5.259E-05],[31.198751,-5.3621E-05],[31.202189,-5.6199E-05],[31.205628,-5.6199E-05],[31.209067,-5.3106E-05],[31.212505,-5.2074E-05],[31.215944,-5.4652E-05],[31.219383,-5.1559E-05],[31.222821,-5.0528E-05],[31.22626,-4.7434E-05],[31.229699,-5.0528E-05],[31.233137,-5.6715E-05]]}
-{"quant":[31.504,-5.3106E-05],"mems":[[31.405621,-5.4137E-05],[31.409139,-5.2074E-05],[31.412656,-5.4137E-05],[31.416173,-5.259E-05],[31.419691,-5.4137E-05],[31.423208,-5.5684E-05],[31.426725,-5.1043E-05],[31.430243,-5.4137E-05],[31.43376,-5.4137E-05],[31.437277,-5.0528E-05],[31.440795,-5.2074E-05],[31.444312,-5.3621E-05],[31.447829,-5.0528E-05],[31.451347,-5.1559E-05],[31.454864,-5.6199E-05],[31.458381,-4.8465E-05],[31.461899,-5.3621E-05],[31.465416,-5.6715E-05],[31.468933,-4.8981E-05],[31.472451,-5.5168E-05],[31.475968,-5.6199E-05],[31.479485,-5.6199E-05],[31.483003,-5.5684E-05],[31.48652,-5.3106E-05],[31.490037,-5.4137E-05],[31.493555,-5.4137E-05],[31.497072,-5.259E-05],[31.500589,-5.3106E-05],[31.504107,-5.5684E-05],[31.507624,-5.1559E-05],[31.511141,-4.9497E-05],[31.514659,-5.3106E-05],[31.518176,-5.2074E-05],[31.521693,-5.2074E-05],[31.525211,-5.0012E-05],[31.528728,-5.1043E-05],[31.532245,-5.5168E-05],[31.535763,-5.6715E-05],[31.53928,-5.723E-05],[31.542797,-5.6715E-05],[31.546315,-5.6199E-05],[31.549832,-5.1559E-05],[31.553349,-4.8981E-05],[31.556867,-5.1559E-05],[31.560384,-5.1559E-05],[31.563901,-5.4137E-05],[31.567419,-5.5168E-05],[31.570936,-5.259E-05],[31.574453,-5.259E-05],[31.577971,-5.4137E-05],[31.581488,-5.3106E-05],[31.585005,-5.1043E-05],[31.588523,-5.4137E-05],[31.59204,-5.6715E-05],[31.595557,-5.5684E-05],[31.599075,-5.259E-05],[31.602592,-4.9497E-05],[31.606109,-5.1043E-05],[31.609627,-5.1043E-05],[31.613144,-5.1043E-05],[31.616661,-5.1559E-05],[31.620179,-5.5684E-05],[31.623696,-5.8262E-05],[31.627213,-4.9497E-05],[31.630731,-4.9497E-05],[31.634248,-5.4652E-05],[31.637765,-5.3106E-05],[31.641283,-5.7746E-05],[31.6448,-5.6715E-05],[31.648317,-5.5168E-05],[31.651835,-5.3106E-05],[31.655352,-5.3621E-05],[31.658869,-6.2902E-05],[31.662387,-5.6199E-05],[31.665904,-5.1559E-05],[31.669421,-5.6715E-05],[31.672939,-5.4137E-05],[31.676456,-5.1043E-05],[31.679973,-5.3621E-05],[31.683491,-5.4137E-05],[31.687008,-5.4137E-05],[31.690525,-5.6199E-05],[31.694043,-5.3621E-05],[31.69756,-5.2074E-05],[31.701077,-4.9497E-05],[31.704595,-5.1043E-05]]}
-{"quant":[32.0793,-5.3319E-05],"mems":[[31.982464,-5.723E-05],[31.985981,-5.6199E-05],[31.989499,-5.5168E-05],[31.993016,-5.723E-05],[31.996533,-5.6199E-05],[32.000051,-4.9497E-05],[32.003568,-5.1559E-05],[32.007085,-5.5168E-05],[32.010603,-5.259E-05],[32.01412,-5.259E-05],[32.017637,-5.1559E-05],[32.021155,-4.9497E-05],[32.024672,-4.8981E-05],[32.028189,-4.8981E-05],[32.031707,-4.8465E-05],[32.035224,-5.1559E-05],[32.038741,-5.4137E-05],[32.042259,-5.5168E-05],[32.045776,-5.6199E-05],[32.049293,-5.3106E-05],[32.052811,-5.4137E-05],[32.056328,-5.8777E-05],[32.059845,-5.6199E-05],[32.063363,-5.3106E-05],[32.06688,-5.0528E-05],[32.070397,-5.0528E-05],[32.073915,-5.5168E-05],[32.077432,-5.6199E-05],[32.080949,-5.1559E-05],[32.084467,-4.8465E-05],[32.087984,-5.6715E-05],[32.091501,-6.0324E-05],[32.095019,-5.5168E-05],[32.098536,-5.2074E-05],[32.102053,-5.1043E-05],[32.105571,-5.259E-05],[32.109088,-5.3106E-05],[32.112605,-5.4652E-05],[32.116123,-5.4652E-05],[32.11964,-5.1559E-05],[32.123157,-5.1559E-05],[32.126675,-5.3621E-05],[32.130192,-5.5168E-05],[32.133709,-5.6199E-05],[32.137227,-5.5168E-05],[32.140744,-5.259E-05],[32.144261,-5.3621E-05],[32.147779,-5.8262E-05],[32.151296,-5.8777E-05],[32.154813,-5.4652E-05],[32.158331,-5.3621E-05],[32.161848,-5.2074E-05],[32.165365,-4.6403E-05],[32.168883,-4.8981E-05],[32.1724,-5.5168E-05],[32.175917,-5.1559E-05],[32.179435,-4.6919E-05],[32.182952,-5.0528E-05],[32.186469,-5.7746E-05],[32.189987,-6.0324E-05],[32.193504,-5.6199E-05],[32.197021,-5.259E-05],[32.200539,-5.7746E-05],[32.204056,-5.723E-05],[32.207573,-5.0528E-05],[32.211091,-5.723E-05],[32.214608,-5.6715E-05],[32.218125,-4.9497E-05],[32.221643,-5.3106E-05],[32.22516,-5.3621E-05],[32.228677,-5.259E-05],[32.232195,-5.723E-05],[32.235712,-5.7746E-05],[32.239229,-5.4652E-05],[32.242747,-5.3621E-05],[32.246264,-5.2074E-05],[32.249781,-5.1043E-05],[32.253299,-5.3106E-05],[32.256816,-5.4137E-05],[32.260333,-5.1559E-05],[32.263851,-4.8981E-05],[32.267368,-5.0528E-05],[32.270885,-5.3621E-05],[32.274403,-5.3621E-05],[32.27792,-4.7434E-05],[32.281437,-5.2074E-05]]}
-{"quant":[32.537,-5.3913E-05],"mems":[[32.439717,-5.4137E-05],[32.443235,-5.6715E-05],[32.446752,-5.4652E-05],[32.450269,-5.1559E-05],[32.453787,-5.4137E-05],[32.457304,-5.7746E-05],[32.460821,-5.9293E-05],[32.464339,-5.5168E-05],[32.467856,-5.0012E-05],[32.471373,-5.259E-05],[32.474891,-5.1559E-05],[32.478408,-5.259E-05],[32.481925,-5.1559E-05],[32.485443,-4.8981E-05],[32.48896,-5.723E-05],[32.492477,-5.6199E-05],[32.495995,-5.6199E-05],[32.499512,-5.8262E-05],[32.503029,-5.4652E-05],[32.506547,-5.8777E-05],[32.510064,-5.6199E-05],[32.513581,-5.4137E-05],[32.517099,-5.4137E-05],[32.520616,-5.3106E-05],[32.524133,-5.7746E-05],[32.527651,-5.4652E-05],[32.531168,-5.5168E-05],[32.534685,-5.3621E-05],[32.538203,-5.5168E-05],[32.54172,-5.7746E-05],[32.545237,-5.4137E-05],[32.548755,-5.6715E-05],[32.552272,-5.4137E-05],[32.555789,-5.4652E-05],[32.559307,-5.8777E-05],[32.562824,-5.4652E-05],[32.566341,-5.1559E-05],[32.569859,-5.0528E-05],[32.573376,-5.0528E-05],[32.576893,-5.1559E-05],[32.580411,-5.4652E-05],[32.583928,-5.5684E-05],[32.587445,-5.723E-05],[32.590963,-5.4137E-05],[32.59448,-5.3106E-05],[32.597997,-5.4137E-05],[32.601515,-5.3106E-05],[32.605032,-5.259E-05],[32.608549,-5.0528E-05],[32.612067,-5.5168E-05],[32.615584,-5.4652E-05],[32.619101,-5.3106E-05],[32.622619,-5.259E-05],[32.626136,-4.8981E-05],[32.629653,-5.0528E-05],[32.633171,-5.4137E-05],[32.636688,-5.6715E-05],[32.640205,-5.6199E-05],[32.643723,-5.5168E-05],[32.64724,-5.1559E-05],[32.650757,-4.9497E-05],[32.654275,-5.259E-05],[32.657792,-5.1043E-05],[32.661309,-4.8981E-05],[32.664827,-5.2074E-05],[32.668344,-5.4137E-05],[32.671861,-5.1559E-05],[32.675379,-5.259E-05],[32.678896,-5.2074E-05],[32.682413,-5.1559E-05],[32.685931,-5.4652E-05],[32.689448,-5.259E-05],[32.692965,-5.259E-05],[32.696483,-5.3621E-05],[32.7,-5.6715E-05],[32.703517,-5.8777E-05],[32.707035,-5.4652E-05],[32.710552,-4.9497E-05],[32.714069,-4.6403E-05],[32.717587,-5.3621E-05],[32.721104,-5.4652E-05],[32.724621,-5.3621E-05],[32.728139,-5.3621E-05],[32.731656,-5.1043E-05],[32.735173,-5.3106E-05],[32.738691,-4.8981E-05]]}
-{"quant":[33.0018,-5.1971E-05],"mems":[[32.904005,-5.6199E-05],[32.907523,-5.8262E-05],[32.91104,-5.723E-05],[32.914557,-5.3621E-05],[32.918075,-5.2074E-05],[32.921592,-4.8465E-05],[32.925109,-5.2074E-05],[32.928627,-5.1559E-05],[32.932144,-5.1043E-05],[32.935661,-5.5684E-05],[32.939179,-5.4652E-05],[32.942696,-5.1559E-05],[32.946213,-5.3621E-05],[32.949731,-5.4652E-05],[32.953248,-5.0012E-05],[32.956765,-5.3106E-05],[32.960283,-5.2074E-05],[32.9638,-5.0012E-05],[32.967317,-5.3621E-05],[32.970835,-5.0012E-05],[32.974352,-5.0528E-05],[32.977869,-5.0528E-05],[32.981387,-5.259E-05],[32.984904,-5.8777E-05],[32.988421,-5.5684E-05],[32.991939,-5.3621E-05],[32.995456,-5.3106E-05],[32.998973,-5.0012E-05],[33.002491,-5.0528E-05],[33.006008,-5.5684E-05],[33.009525,-5.4652E-05],[33.013043,-4.8981E-05],[33.01656,-4.8465E-05],[33.020077,-4.9497E-05],[33.023595,-5.0012E-05],[33.027112,-5.3106E-05],[33.030629,-5.3106E-05],[33.034147,-4.9497E-05],[33.037664,-5.3621E-05],[33.041181,-5.1043E-05],[33.044699,-4.795E-05],[33.048216,-5.8262E-05],[33.051733,-5.5684E-05],[33.055251,-4.9497E-05],[33.058768,-5.0012E-05],[33.062285,-4.7434E-05],[33.065803,-4.9497E-05],[33.06932,-5.3106E-05],[33.072837,-5.7746E-05],[33.076355,-5.6199E-05],[33.079872,-5.0012E-05],[33.083389,-4.9497E-05],[33.086907,-4.9497E-05],[33.090424,-5.4652E-05],[33.093941,-5.5684E-05],[33.097459,-5.259E-05],[33.100976,-5.4137E-05],[33.104493,-4.9497E-05],[33.108011,-5.3106E-05],[33.111528,-5.5168E-05],[33.115045,-5.2074E-05],[33.118563,-5.259E-05],[33.12208,-4.8465E-05],[33.125597,-4.8465E-05],[33.129115,-4.8981E-05],[33.132632,-5.3621E-05],[33.136149,-5.6715E-05],[33.139667,-5.5684E-05],[33.143184,-5.3621E-05],[33.146701,-4.9497E-05],[33.150219,-5.1043E-05],[33.153736,-5.2074E-05],[33.157253,-5.2074E-05],[33.160771,-5.1559E-05],[33.164288,-5.259E-05],[33.167805,-5.3106E-05],[33.171323,-5.2074E-05],[33.17484,-5.5684E-05],[33.178357,-5.2074E-05],[33.181875,-5.3106E-05],[33.185392,-5.5684E-05],[33.188909,-5.259E-05],[33.192427,-5.3106E-05],[33.195944,-5.4137E-05],[33.199461,-5.4137E-05],[33.202979,-5.5684E-05]]}
-{"quant":[33.4457,-5.3479E-05],"mems":[[33.347189,-5.2074E-05],[33.350707,-5.3106E-05],[33.354224,-5.1043E-05],[33.357741,-5.4137E-05],[33.361259,-5.5168E-05],[33.364776,-5.3621E-05],[33.368293,-5.5684E-05],[33.371811,-5.1559E-05],[33.375328,-5.4137E-05],[33.378845,-5.723E-05],[33.382363,-5.3621E-05],[33.38588,-5.3621E-05],[33.389397,-5.1559E-05],[33.392915,-5.4137E-05],[33.396432,-5.6715E-05],[33.399949,-5.1559E-05],[33.403467,-4.8981E-05],[33.406984,-4.8465E-05],[33.410501,-5.1559E-05],[33.414019,-5.6715E-05],[33.417536,-5.3106E-05],[33.421053,-5.1043E-05],[33.424571,-5.4137E-05],[33.428088,-5.1559E-05],[33.431605,-5.1559E-05],[33.435123,-5.4137E-05],[33.43864,-5.4652E-05],[33.442157,-5.723E-05],[33.445675,-5.259E-05],[33.449192,-5.3106E-05],[33.452709,-5.1043E-05],[33.456227,-5.1043E-05],[33.459744,-5.9808E-05],[33.463261,-5.3621E-05],[33.466779,-5.259E-05],[33.470296,-5.4652E-05],[33.473813,-4.795E-05],[33.477331,-5.0012E-05],[33.480848,-5.5168E-05],[33.484365,-5.4652E-05],[33.487883,-5.3621E-05],[33.4914,-5.1559E-05],[33.494917,-5.0528E-05],[33.498435,-5.4652E-05],[33.501952,-5.6199E-05],[33.505469,-5.8262E-05],[33.508987,-5.7746E-05],[33.512504,-4.9497E-05],[33.516021,-5.3621E-05],[33.519539,-5.6715E-05],[33.523056,-5.259E-05],[33.526573,-5.259E-05],[33.530091,-5.4652E-05],[33.533608,-5.3106E-05],[33.537125,-4.8465E-05],[33.540643,-5.2074E-05],[33.54416,-5.6199E-05],[33.547677,-5.5168E-05],[33.551195,-5.3621E-05],[33.554712,-5.259E-05],[33.558229,-5.2074E-05],[33.561747,-5.2074E-05],[33.565264,-5.3106E-05],[33.568781,-5.2074E-05],[33.572299,-4.795E-05],[33.575816,-4.4856E-05],[33.579333,-5.259E-05],[33.582851,-5.6199E-05],[33.586368,-5.5168E-05],[33.589885,-5.5168E-05],[33.593403,-4.9497E-05],[33.59692,-4.9497E-05],[33.600437,-5.5168E-05],[33.603955,-5.723E-05],[33.607472,-5.4137E-05],[33.610989,-5.4137E-05],[33.614507,-5.3106E-05],[33.618024,-4.8981E-05],[33.621541,-5.4137E-05],[33.625059,-5.5168E-05],[33.628576,-5.0528E-05],[33.632093,-4.9497E-05],[33.635611,-4.9497E-05],[33.639128,-4.9497E-05],[33.642645,-5.1559E-05],[33.646163,-5.723E-05]]}
-{"quant":[33.9123,-0.076072],"mems":[[33.895893,-5.3621E-05],[33.899411,-5.5684E-05],[33.902928,-5.3621E-05],[33.906445,-5.259E-05],[33.909963,-5.259E-05],[33.91348,-4.8981E-05],[33.916997,-4.8465E-05],[33.920515,-4.5372E-05],[33.924032,-4.6403E-05],[33.927549,-5.1559E-05],[33.931067,-5.3621E-05],[33.934584,-5.1043E-05],[33.938101,-5.1559E-05],[33.941619,-5.5168E-05],[33.945136,-5.4652E-05],[33.948653,-5.4137E-05],[33.952171,-5.3106E-05],[33.955688,-5.259E-05],[33.959205,-4.8981E-05],[33.962723,-4.7434E-05],[33.96624,-5.1559E-05],[33.969757,-5.0012E-05],[33.973275,-5.2074E-05],[33.976792,-5.5168E-05],[33.980309,-5.6199E-05],[33.983827,-5.4137E-05],[33.987344,-5.259E-05],[33.990861,-5.3621E-05],[33.994379,-5.259E-05],[33.997896,-5.4652E-05],[34.001413,-5.1559E-05],[34.004931,-5.0012E-05],[34.008448,-5.3621E-05],[34.011965,-5.5684E-05],[34.015483,-5.4652E-05],[34.019,-5.259E-05],[34.022357,-5.2074E-05],[34.025715,-5.259E-05],[34.029072,-5.3106E-05],[34.032429,-5.0012E-05],[34.035787,-5.259E-05],[34.039144,-5.2074E-05],[34.042501,-4.795E-05],[34.045859,-5.1559E-05],[34.049216,-5.4137E-05],[34.052573,-5.6715E-05],[34.055931,-5.6199E-05],[34.059288,-5.4652E-05],[34.062645,-5.3106E-05],[34.066003,-5.3106E-05],[34.06936,-5.723E-05],[34.072717,-5.5684E-05],[34.076075,-5.5168E-05],[34.079432,-5.4652E-05],[34.082789,-4.7434E-05],[34.086147,-4.8981E-05],[34.089504,-5.5168E-05],[34.092861,-5.0528E-05],[34.096219,-5.0012E-05],[34.099576,-5.2074E-05],[34.102933,-4.9497E-05],[34.106291,-4.8465E-05],[34.109648,-5.259E-05],[34.113005,-5.4137E-05],[34.116363,-5.1043E-05],[34.11972,-5.4652E-05],[34.123077,-5.1559E-05],[34.126435,-4.8981E-05],[34.129792,-5.5168E-05],[34.133149,-5.5684E-05],[34.136507,-5.3621E-05],[34.139864,-5.1559E-05],[34.143221,-5.1559E-05],[34.146579,-5.4652E-05],[34.149936,-5.3621E-05],[34.153293,-4.8465E-05],[34.156651,-5.4137E-05],[34.160008,-5.8262E-05],[34.163365,-5.0012E-05],[34.166723,-5.1559E-05],[34.17008,-5.2074E-05],[34.173437,-5.5684E-05],[34.176795,-5.8262E-05],[34.180152,-5.1043E-05],[34.183509,-5.5684E-05],[34.186867,-5.9808E-05],[34.190224,-6.0839E-05]]}
-{"quant":[34.4014,-5.3305E-05],"mems":[[34.304373,-5.5168E-05],[34.307731,-4.8981E-05],[34.311088,-5.0528E-05],[34.314445,-5.0012E-05],[34.317803,-4.795E-05],[34.32116,-5.4652E-05],[34.324517,-5.4137E-05],[34.327875,-5.3621E-05],[34.331232,-5.8777E-05],[34.334589,-5.6199E-05],[34.337947,-5.6715E-05],[34.341304,-5.6199E-05],[34.344661,-5.6715E-05],[34.348019,-5.9293E-05],[34.351376,-5.1043E-05],[34.354733,-5.0528E-05],[34.358091,-5.6715E-05],[34.361448,-5.723E-05],[34.364805,-5.5684E-05],[34.368163,-5.4652E-05],[34.37152,-5.4137E-05],[34.374877,-4.8981E-05],[34.378235,-5.4137E-05],[34.381592,-5.8777E-05],[34.384949,-5.4652E-05],[34.388307,-5.2074E-05],[34.391664,-5.1043E-05],[34.395021,-5.5684E-05],[34.398379,-5.3106E-05],[34.401736,-5.3621E-05],[34.405093,-5.5168E-05],[34.408451,-5.3106E-05],[34.411808,-5.4652E-05],[34.415165,-5.3621E-05],[34.418523,-5.5684E-05],[34.42188,-5.4652E-05],[34.425237,-5.0528E-05],[34.428595,-4.9497E-05],[34.431952,-5.1043E-05],[34.435309,-5.2074E-05],[34.438667,-5.2074E-05],[34.442024,-5.6199E-05],[34.445381,-5.6199E-05],[34.448739,-5.259E-05],[34.452096,-5.0012E-05],[34.455453,-5.1043E-05],[34.458811,-5.5684E-05],[34.462168,-5.723E-05],[34.465525,-5.4652E-05],[34.468883,-5.1559E-05],[34.47224,-5.4652E-05],[34.475597,-5.8262E-05],[34.478955,-5.4137E-05],[34.482312,-5.1043E-05],[34.485669,-5.259E-05],[34.489027,-4.8981E-05],[34.492384,-5.1559E-05],[34.495741,-5.4137E-05],[34.499099,-5.1043E-05],[34.502456,-5.5168E-05],[34.505813,-5.4652E-05],[34.509171,-5.3621E-05],[34.512528,-5.4137E-05],[34.515885,-5.1559E-05],[34.519243,-5.2074E-05],[34.5226,-5.259E-05],[34.525957,-5.1043E-05],[34.529315,-4.7434E-05],[34.532672,-4.6919E-05],[34.536029,-5.3621E-05],[34.539387,-5.3621E-05],[34.542744,-4.795E-05],[34.546101,-4.9497E-05],[34.549459,-5.1559E-05],[34.552816,-5.4652E-05],[34.556173,-5.723E-05],[34.559531,-6.2386E-05],[34.562888,-5.8777E-05],[34.566245,-5.0012E-05],[34.569603,-4.8465E-05],[34.57296,-5.0528E-05],[34.576317,-5.723E-05],[34.579675,-5.723E-05],[34.583032,-5.6199E-05],[34.586389,-5.6199E-05],[34.589747,-5.259E-05],[34.593104,-5.5168E-05],[34.596461,-5.4137E-05],[34.599819,-5.1559E-05],[34.603176,-5.3106E-05]]}
-{"quant":[34.8961,-5.2873E-05],"mems":[[34.797901,-5.5168E-05],[34.801259,-5.1043E-05],[34.804616,-4.6919E-05],[34.807973,-5.0528E-05],[34.811331,-5.5168E-05],[34.814688,-5.4652E-05],[34.818045,-5.259E-05],[34.821403,-4.9497E-05],[34.82476,-4.9497E-05],[34.828117,-5.4137E-05],[34.831475,-5.3106E-05],[34.834832,-5.259E-05],[34.838189,-5.0528E-05],[34.841547,-5.1559E-05],[34.844904,-5.3621E-05],[34.848261,-5.5684E-05],[34.851619,-5.7746E-05],[34.854976,-5.259E-05],[34.858333,-5.6715E-05],[34.861691,-5.3106E-05],[34.865048,-4.8465E-05],[34.868405,-5.5168E-05],[34.871763,-5.8777E-05],[34.87512,-5.7746E-05],[34.878477,-5.1043E-05],[34.881835,-4.9497E-05],[34.885192,-5.0528E-05],[34.888549,-5.6715E-05],[34.891907,-5.6199E-05],[34.895264,-5.4137E-05],[34.898621,-5.6199E-05],[34.901979,-4.6403E-05],[34.905336,-5.0012E-05],[34.908693,-5.6715E-05],[34.912051,-5.4652E-05],[34.915408,-5.5684E-05],[34.918765,-5.0528E-05],[34.922123,-5.0012E-05],[34.92548,-5.4137E-05],[34.928837,-5.5168E-05],[34.932195,-5.723E-05],[34.935552,-5.3621E-05],[34.938909,-4.795E-05],[34.942267,-5.259E-05],[34.945624,-5.5168E-05],[34.948981,-5.3106E-05],[34.952339,-5.1559E-05],[34.955696,-5.0528E-05],[34.959053,-5.259E-05],[34.962411,-5.4137E-05],[34.965768,-5.3621E-05],[34.969125,-5.3621E-05],[34.972483,-5.3621E-05],[34.97584,-5.1559E-05],[34.979197,-5.2074E-05],[34.982555,-5.259E-05],[34.985912,-5.4137E-05],[34.989269,-5.5684E-05],[34.992627,-5.2074E-05],[34.995984,-5.0528E-05],[34.999341,-5.1559E-05],[35.002699,-5.7746E-05],[35.006056,-5.7746E-05],[35.009413,-5.5168E-05],[35.012771,-5.9293E-05],[35.016128,-5.4137E-05],[35.019485,-5.2074E-05],[35.022843,-5.5168E-05],[35.0262,-5.2074E-05],[35.029557,-5.2074E-05],[35.032915,-5.8777E-05],[35.036272,-5.6199E-05],[35.039629,-5.1043E-05],[35.042987,-5.6715E-05],[35.046344,-5.9293E-05],[35.049701,-5.5684E-05],[35.053059,-5.4137E-05],[35.056416,-5.4652E-05],[35.059773,-5.1043E-05],[35.063131,-5.1559E-05],[35.066488,-5.5684E-05],[35.069845,-5.2074E-05],[35.073203,-5.3106E-05],[35.07656,-5.6715E-05],[35.079917,-5.3621E-05],[35.083275,-5.1043E-05],[35.086632,-5.0528E-05],[35.089989,-4.9497E-05],[35.093347,-5.0528E-05],[35.096704,-5.3621E-05]]}
-{"quant":[35.3798,-5.3422E-05],"mems":[[35.281357,-5.2074E-05],[35.284715,-5.1043E-05],[35.288072,-5.4137E-05],[35.291429,-5.0528E-05],[35.294787,-4.9497E-05],[35.298144,-5.4137E-05],[35.301501,-5.6199E-05],[35.304859,-5.1559E-05],[35.308216,-5.1559E-05],[35.311573,-5.0012E-05],[35.314931,-4.795E-05],[35.318288,-5.4137E-05],[35.321645,-5.2074E-05],[35.325003,-5.0528E-05],[35.32836,-4.9497E-05],[35.331717,-4.8981E-05],[35.335075,-5.259E-05],[35.338432,-5.1559E-05],[35.341789,-5.3621E-05],[35.345147,-5.3106E-05],[35.348504,-4.8465E-05],[35.351861,-5.1043E-05],[35.355219,-5.3106E-05],[35.358576,-5.3106E-05],[35.361933,-5.3621E-05],[35.365291,-5.2074E-05],[35.368648,-5.259E-05],[35.372005,-5.259E-05],[35.375363,-5.1043E-05],[35.37872,-5.5168E-05],[35.382077,-5.5168E-05],[35.385435,-5.259E-05],[35.388792,-5.0528E-05],[35.392149,-5.1043E-05],[35.395507,-5.6715E-05],[35.398864,-5.6715E-05],[35.402221,-5.3106E-05],[35.405579,-5.2074E-05],[35.408936,-5.2074E-05],[35.412293,-5.259E-05],[35.415651,-5.4652E-05],[35.419008,-5.7746E-05],[35.422365,-5.5168E-05],[35.425723,-5.4137E-05],[35.42908,-5.5684E-05],[35.432437,-5.2074E-05],[35.435795,-5.4137E-05],[35.439152,-5.4137E-05],[35.442509,-4.8981E-05],[35.445867,-5.0528E-05],[35.449224,-5.259E-05],[35.452581,-5.5684E-05],[35.455939,-5.259E-05],[35.459296,-5.259E-05],[35.462653,-5.4137E-05],[35.466011,-5.1559E-05],[35.469368,-5.3621E-05],[35.472725,-5.1559E-05],[35.476083,-5.4652E-05],[35.47944,-5.5684E-05],[35.482797,-5.1559E-05],[35.486155,-5.5168E-05],[35.489512,-5.0528E-05],[35.492869,-4.9497E-05],[35.496227,-5.3106E-05],[35.499584,-5.1043E-05],[35.502941,-4.9497E-05],[35.506299,-4.795E-05],[35.509656,-5.2074E-05],[35.513013,-5.0012E-05],[35.516371,-4.8981E-05],[35.519728,-5.2074E-05],[35.523085,-5.1043E-05],[35.526443,-5.259E-05],[35.5298,-5.0012E-05],[35.533157,-5.3106E-05],[35.536515,-5.4137E-05],[35.539872,-5.4652E-05],[35.543229,-5.4137E-05],[35.546587,-4.6919E-05],[35.549944,-5.2074E-05],[35.553301,-5.5684E-05],[35.556659,-5.3621E-05],[35.560016,-5.1559E-05],[35.563373,-5.0012E-05],[35.566731,-5.0012E-05],[35.570088,-5.2074E-05],[35.573445,-5.8777E-05],[35.576803,-5.6715E-05],[35.58016,-5.259E-05]]}
-{"quant":[35.8475,-5.3605E-05],"mems":[[35.748027,-5.4652E-05],[35.751384,-5.723E-05],[35.754741,-5.4137E-05],[35.758099,-5.1559E-05],[35.761456,-5.2074E-05],[35.764813,-5.3106E-05],[35.768171,-5.2074E-05],[35.771528,-5.0528E-05],[35.774885,-5.5168E-05],[35.778243,-5.1043E-05],[35.7816,-5.1559E-05],[35.784957,-5.723E-05],[35.788315,-5.1559E-05],[35.791672,-5.0528E-05],[35.795029,-5.3106E-05],[35.798387,-5.1043E-05],[35.801744,-5.0528E-05],[35.805101,-5.2074E-05],[35.808459,-5.0528E-05],[35.811816,-5.5684E-05],[35.815173,-5.9808E-05],[35.818531,-5.4137E-05],[35.821888,-5.4137E-05],[35.825245,-5.3621E-05],[35.828603,-5.3106E-05],[35.83196,-5.5168E-05],[35.835317,-5.4137E-05],[35.838675,-5.5684E-05],[35.842032,-5.5684E-05],[35.845389,-5.4137E-05],[35.848747,-5.6199E-05],[35.852104,-5.3621E-05],[35.855461,-5.4652E-05],[35.858819,-5.6715E-05],[35.862176,-5.6199E-05],[35.865533,-5.5168E-05],[35.868891,-5.3106E-05],[35.872248,-5.8777E-05],[35.875605,-5.5168E-05],[35.878963,-5.1559E-05],[35.88232,-5.3621E-05],[35.885677,-5.0012E-05],[35.889035,-5.3621E-05],[35.892392,-5.4652E-05],[35.895749,-5.0012E-05],[35.899107,-5.0012E-05],[35.902464,-5.4137E-05],[35.905821,-5.6715E-05],[35.909179,-5.5684E-05],[35.912536,-5.0528E-05],[35.915893,-5.0528E-05],[35.919251,-5.2074E-05],[35.922608,-4.9497E-05],[35.925965,-5.0528E-05],[35.929323,-5.3106E-05],[35.93268,-5.3106E-05],[35.936037,-5.259E-05],[35.939395,-5.3106E-05],[35.942752,-5.5168E-05],[35.946109,-5.723E-05],[35.949467,-5.4652E-05],[35.952824,-5.3621E-05],[35.956181,-5.1559E-05],[35.959539,-4.8981E-05],[35.962896,-5.4137E-05],[35.966253,-5.3106E-05],[35.969611,-5.4652E-05],[35.972968,-5.2074E-05],[35.976325,-5.1043E-05],[35.979683,-5.7746E-05],[35.98304,-5.5684E-05],[35.986397,-5.5168E-05],[35.989755,-5.4137E-05],[35.993112,-5.259E-05],[35.996469,-4.9497E-05],[35.999827,-5.0012E-05],[36.003184,-5.7746E-05],[36.006541,-5.5168E-05],[36.009899,-5.8262E-05],[36.013256,-5.5684E-05],[36.016613,-5.0528E-05],[36.019971,-5.3106E-05],[36.023328,-5.3621E-05],[36.026685,-5.723E-05],[36.030043,-5.3106E-05],[36.0334,-4.8981E-05],[36.036757,-5.3106E-05],[36.040115,-5.3621E-05],[36.043472,-5.5168E-05],[36.046829,-5.3621E-05],[36.050187,-5.723E-05]]}
-{"quant":[36.2993,-5.2917E-05],"mems":[[36.201267,-5.3106E-05],[36.204624,-5.6199E-05],[36.207981,-5.4137E-05],[36.211339,-5.7746E-05],[36.214696,-5.9293E-05],[36.218053,-5.4137E-05],[36.221411,-5.4652E-05],[36.224768,-5.7746E-05],[36.228125,-5.3621E-05],[36.231483,-4.8465E-05],[36.23484,-5.4137E-05],[36.238197,-5.4137E-05],[36.241555,-5.0012E-05],[36.244912,-5.1559E-05],[36.248269,-5.0528E-05],[36.251627,-5.5168E-05],[36.254984,-5.6199E-05],[36.258341,-5.259E-05],[36.261699,-5.3106E-05],[36.265056,-5.259E-05],[36.268413,-5.3106E-05],[36.271771,-5.5684E-05],[36.275128,-5.4137E-05],[36.278485,-5.2074E-05],[36.281843,-5.5684E-05],[36.2852,-5.4137E-05],[36.288557,-4.9497E-05],[36.291915,-5.2074E-05],[36.295272,-5.8262E-05],[36.298629,-5.9293E-05],[36.301987,-5.4652E-05],[36.305344,-4.9497E-05],[36.308701,-5.259E-05],[36.312059,-5.8777E-05],[36.315416,-5.5168E-05],[36.318773,-5.1043E-05],[36.322131,-5.0012E-05],[36.325488,-5.1559E-05],[36.328845,-5.259E-05],[36.332203,-5.5168E-05],[36.33556,-5.6199E-05],[36.338917,-5.2074E-05],[36.342275,-5.4652E-05],[36.345632,-5.6199E-05],[36.348989,-5.3621E-05],[36.352347,-5.5684E-05],[36.355704,-5.723E-05],[36.359061,-5.1043E-05],[36.362419,-4.5887E-05],[36.365776,-4.8981E-05],[36.369133,-5.3106E-05],[36.372491,-5.723E-05],[36.375848,-5.723E-05],[36.379205,-5.2074E-05],[36.382563,-5.0528E-05],[36.38592,-4.8981E-05],[36.389277,-4.795E-05],[36.392635,-5.1559E-05],[36.395992,-5.259E-05],[36.399349,-5.3621E-05],[36.402707,-5.259E-05],[36.406064,-5.0012E-05],[36.409421,-5.259E-05],[36.412779,-5.4137E-05],[36.416136,-5.259E-05],[36.419493,-5.0528E-05],[36.422851,-5.2074E-05],[36.426208,-5.3106E-05],[36.429565,-5.3106E-05],[36.432923,-5.3106E-05],[36.43628,-5.1559E-05],[36.439637,-5.2074E-05],[36.442995,-5.0528E-05],[36.446352,-4.7434E-05],[36.449709,-5.4137E-05],[36.453067,-5.7746E-05],[36.456424,-5.1559E-05],[36.459781,-5.1559E-05],[36.463139,-4.9497E-05],[36.466496,-5.2074E-05],[36.469853,-5.9293E-05],[36.473211,-5.8262E-05],[36.476568,-5.4652E-05],[36.479925,-5.3621E-05],[36.483283,-5.3621E-05],[36.48664,-5.5684E-05],[36.489997,-5.7746E-05],[36.493355,-5.3621E-05],[36.496712,-5.4137E-05],[36.500069,-5.3621E-05]]}
-{"quant":[36.7547,-5.3501E-05],"mems":[[36.657307,-4.8981E-05],[36.660744,-5.1559E-05],[36.664181,-5.0528E-05],[36.667619,-5.259E-05],[36.671056,-4.9497E-05],[36.674493,-5.259E-05],[36.677931,-5.3106E-05],[36.681368,-5.1043E-05],[36.684805,-5.4652E-05],[36.688243,-5.4137E-05],[36.69168,-5.4652E-05],[36.695117,-5.3106E-05],[36.698555,-5.2074E-05],[36.701992,-5.5684E-05],[36.705429,-5.723E-05],[36.708867,-5.7746E-05],[36.712304,-5.5684E-05],[36.715741,-5.4137E-05],[36.719179,-5.4137E-05],[36.722616,-5.3621E-05],[36.726053,-5.6199E-05],[36.729491,-5.4652E-05],[36.732928,-5.3621E-05],[36.736365,-5.5168E-05],[36.739803,-5.3106E-05],[36.74324,-4.9497E-05],[36.746677,-5.3621E-05],[36.750115,-5.6199E-05],[36.753552,-5.1043E-05],[36.756989,-5.2074E-05],[36.760427,-5.2074E-05],[36.763864,-5.1043E-05],[36.767301,-5.6199E-05],[36.770739,-5.259E-05],[36.774176,-5.4137E-05],[36.777613,-5.6715E-05],[36.781051,-5.0012E-05],[36.784488,-5.3106E-05],[36.787925,-5.3621E-05],[36.791363,-5.1559E-05],[36.7948,-5.1043E-05],[36.798237,-4.9497E-05],[36.801675,-5.1559E-05],[36.805112,-5.0528E-05],[36.808549,-5.259E-05],[36.811987,-5.3621E-05],[36.815424,-5.6715E-05],[36.818861,-5.3621E-05],[36.822299,-4.6919E-05],[36.825736,-5.2074E-05],[36.829173,-5.7746E-05],[36.832611,-5.9293E-05],[36.836048,-5.4652E-05],[36.839485,-5.0528E-05],[36.842923,-5.4652E-05],[36.84636,-5.7746E-05],[36.849797,-5.5684E-05],[36.853235,-5.4652E-05],[36.856672,-5.8777E-05],[36.860109,-5.7746E-05],[36.863547,-5.3106E-05],[36.866984,-5.4137E-05],[36.870421,-5.5168E-05],[36.873859,-5.4652E-05],[36.877296,-5.4137E-05],[36.880733,-5.5684E-05],[36.884171,-5.5684E-05],[36.887608,-5.6199E-05],[36.891045,-5.7746E-05],[36.894483,-5.723E-05],[36.89792,-5.1043E-05],[36.901357,-4.5372E-05],[36.904795,-4.8465E-05],[36.908232,-5.1043E-05],[36.911669,-5.3621E-05],[36.915107,-5.1559E-05],[36.918544,-5.1559E-05],[36.921981,-5.6715E-05],[36.925419,-5.0528E-05],[36.928856,-5.0528E-05],[36.932293,-5.3106E-05],[36.935731,-5.3106E-05],[36.939168,-5.3621E-05],[36.942605,-5.1559E-05],[36.946043,-5.3106E-05],[36.94948,-5.4652E-05],[36.952917,-5.723E-05],[36.956355,-5.3106E-05]]}
-{"quant":[37.367,-5.4463E-05],"mems":[[37.269152,-5.6199E-05],[37.272589,-5.6715E-05],[37.276027,-5.4652E-05],[37.279464,-5.3621E-05],[37.282901,-5.259E-05],[37.286339,-5.3621E-05],[37.289776,-5.3106E-05],[37.293213,-5.3621E-05],[37.296651,-5.2074E-05],[37.300088,-5.2074E-05],[37.303525,-5.3106E-05],[37.306963,-5.5684E-05],[37.3104,-5.2074E-05],[37.313837,-5.3621E-05],[37.317275,-5.2074E-05],[37.320712,-4.5372E-05],[37.324149,-5.4137E-05],[37.327587,-5.6715E-05],[37.331024,-5.7746E-05],[37.334461,-5.3621E-05],[37.337899,-4.7434E-05],[37.341336,-5.2074E-05],[37.344773,-5.2074E-05],[37.348211,-5.9293E-05],[37.351648,-5.8262E-05],[37.355085,-5.723E-05],[37.358523,-5.6715E-05],[37.36196,-4.9497E-05],[37.365397,-5.6199E-05],[37.368835,-5.8262E-05],[37.372272,-5.7746E-05],[37.375709,-5.8262E-05],[37.379147,-5.4137E-05],[37.382584,-5.0012E-05],[37.386021,-5.259E-05],[37.389459,-5.5168E-05],[37.392896,-4.9497E-05],[37.396333,-5.2074E-05],[37.399771,-5.1043E-05],[37.403208,-5.2074E-05],[37.406645,-5.4137E-05],[37.410083,-5.4652E-05],[37.41352,-5.9808E-05],[37.416957,-5.5168E-05],[37.420395,-5.3621E-05],[37.423832,-5.5168E-05],[37.427269,-5.3621E-05],[37.430707,-5.3621E-05],[37.434144,-5.4652E-05],[37.437581,-5.6715E-05],[37.441019,-5.4137E-05],[37.444456,-5.5168E-05],[37.447893,-6.0324E-05],[37.451331,-5.5168E-05],[37.454768,-5.1043E-05],[37.458205,-5.4652E-05],[37.461643,-5.6199E-05],[37.46508,-5.259E-05],[37.468517,-5.259E-05],[37.471955,-5.5168E-05],[37.475392,-5.3621E-05],[37.478829,-4.8465E-05],[37.482267,-4.5372E-05],[37.485704,-5.0012E-05],[37.489141,-5.3106E-05],[37.492579,-5.5168E-05],[37.496016,-5.6715E-05],[37.499453,-5.4652E-05],[37.502891,-5.259E-05],[37.506328,-5.5168E-05],[37.509765,-5.6715E-05],[37.513203,-5.4652E-05],[37.51664,-5.4137E-05],[37.520077,-4.8981E-05],[37.523515,-5.0528E-05],[37.526952,-5.2074E-05],[37.530389,-5.1043E-05],[37.533827,-5.5168E-05],[37.537264,-5.3106E-05],[37.540701,-5.4652E-05],[37.544139,-5.5168E-05],[37.547576,-5.4652E-05],[37.551013,-5.6199E-05],[37.554451,-5.4137E-05],[37.557888,-5.5684E-05],[37.561325,-5.1559E-05],[37.564763,-4.8465E-05],[37.5682,-5.3106E-05]]}
-{"quant":[37.8564,-5.3587E-05],"mems":[[37.757253,-5.259E-05],[37.760691,-4.8981E-05],[37.764128,-5.2074E-05],[37.767565,-5.6199E-05],[37.771003,-5.1559E-05],[37.77444,-5.3106E-05],[37.777877,-5.2074E-05],[37.781315,-5.0528E-05],[37.784752,-5.4137E-05],[37.788189,-5.5168E-05],[37.791627,-5.3621E-05],[37.795064,-5.3106E-05],[37.798501,-5.2074E-05],[37.801939,-5.3106E-05],[37.805376,-5.5684E-05],[37.808813,-5.1559E-05],[37.812251,-4.9497E-05],[37.815688,-5.3106E-05],[37.819125,-5.1559E-05],[37.822563,-5.1043E-05],[37.826,-5.3106E-05],[37.829437,-5.3106E-05],[37.832875,-5.5684E-05],[37.836312,-5.1043E-05],[37.839749,-4.795E-05],[37.843187,-5.3621E-05],[37.846624,-5.7746E-05],[37.850061,-5.5684E-05],[37.853499,-5.2074E-05],[37.856936,-5.3106E-05],[37.860373,-5.5168E-05],[37.863811,-5.4137E-05],[37.867248,-5.6199E-05],[37.870685,-6.0839E-05],[37.874123,-5.723E-05],[37.87756,-5.0012E-05],[37.880997,-5.259E-05],[37.884435,-5.6199E-05],[37.887872,-5.5684E-05],[37.891309,-5.3621E-05],[37.894747,-5.0012E-05],[37.898184,-4.8465E-05],[37.901621,-4.9497E-05],[37.905059,-5.3106E-05],[37.908496,-5.2074E-05],[37.911933,-4.9497E-05],[37.915371,-5.1043E-05],[37.918808,-5.4137E-05],[37.922245,-5.5684E-05],[37.925683,-5.6715E-05],[37.92912,-5.3106E-05],[37.932557,-5.3106E-05],[37.935995,-5.4652E-05],[37.939432,-4.8981E-05],[37.942869,-4.7434E-05],[37.946307,-5.3621E-05],[37.949744,-5.8777E-05],[37.953181,-5.5168E-05],[37.956619,-5.7746E-05],[37.960056,-5.8777E-05],[37.963493,-5.3106E-05],[37.966931,-5.5684E-05],[37.970368,-5.6715E-05],[37.973805,-5.5684E-05],[37.977243,-5.3106E-05],[37.98068,-5.0528E-05],[37.984117,-5.259E-05],[37.987555,-5.5168E-05],[37.990992,-5.2074E-05],[37.994429,-4.7434E-05],[37.997867,-4.795E-05],[38.001304,-5.1043E-05],[38.004741,-5.3621E-05],[38.008179,-5.3106E-05],[38.011616,-5.259E-05],[38.015053,-5.3621E-05],[38.018491,-5.3106E-05],[38.021928,-5.723E-05],[38.025365,-5.723E-05],[38.028803,-5.9293E-05],[38.03224,-6.2902E-05],[38.035677,-5.4652E-05],[38.039115,-5.1559E-05],[38.042552,-5.259E-05],[38.045989,-5.4137E-05],[38.049427,-5.6199E-05],[38.052864,-5.3106E-05],[38.056301,-5.1043E-05],[38.059739,-5.0528E-05]]}
-{"quant":[38.3153,-5.4102E-05],"mems":[[38.217856,-5.3106E-05],[38.221293,-5.4137E-05],[38.224731,-5.6199E-05],[38.228168,-5.5684E-05],[38.231605,-5.6199E-05],[38.235043,-5.723E-05],[38.23848,-5.3106E-05],[38.241917,-5.2074E-05],[38.245355,-5.6199E-05],[38.248792,-5.6715E-05],[38.252229,-5.9293E-05],[38.255667,-5.6715E-05],[38.259104,-5.1559E-05],[38.262541,-5.1043E-05],[38.265979,-4.8981E-05],[38.269416,-5.3106E-05],[38.272853,-5.5168E-05],[38.276291,-5.3106E-05],[38.279728,-5.0528E-05],[38.283165,-5.2074E-05],[38.286603,-5.723E-05],[38.29004,-5.7746E-05],[38.293477,-5.4652E-05],[38.296915,-4.8981E-05],[38.300352,-4.8465E-05],[38.303789,-5.3106E-05],[38.307227,-5.723E-05],[38.310664,-5.9808E-05],[38.314101,-5.723E-05],[38.317539,-5.0528E-05],[38.320976,-5.3621E-05],[38.324413,-5.723E-05],[38.327851,-5.2074E-05],[38.331288,-5.4137E-05],[38.334725,-5.3621E-05],[38.338163,-5.0012E-05],[38.3416,-5.6199E-05],[38.345037,-5.6199E-05],[38.348475,-5.1043E-05],[38.351912,-5.3621E-05],[38.355349,-5.4137E-05],[38.358787,-5.5168E-05],[38.362224,-5.6199E-05],[38.365661,-5.3621E-05],[38.369099,-5.6715E-05],[38.372536,-5.5168E-05],[38.375973,-5.0012E-05],[38.379411,-5.0012E-05],[38.382848,-5.2074E-05],[38.386285,-5.4652E-05],[38.389723,-5.4137E-05],[38.39316,-5.7746E-05],[38.396597,-5.6715E-05],[38.400035,-5.1043E-05],[38.403472,-5.8777E-05],[38.406909,-5.723E-05],[38.410347,-5.3621E-05],[38.413784,-5.5684E-05],[38.417221,-5.2074E-05],[38.420659,-5.1559E-05],[38.424096,-5.1559E-05],[38.427533,-5.3106E-05],[38.430971,-5.4137E-05],[38.434408,-5.259E-05],[38.437845,-5.259E-05],[38.441283,-4.8981E-05],[38.44472,-5.0528E-05],[38.448157,-5.259E-05],[38.451595,-5.3106E-05],[38.455032,-5.2074E-05],[38.458469,-4.9497E-05],[38.461907,-5.259E-05],[38.465344,-5.4652E-05],[38.468781,-5.3621E-05],[38.472219,-5.2074E-05],[38.475656,-5.3106E-05],[38.479093,-5.1043E-05],[38.482531,-5.1043E-05],[38.485968,-5.8777E-05],[38.489405,-5.259E-05],[38.492843,-5.3106E-05],[38.49628,-5.6199E-05],[38.499717,-5.1043E-05],[38.503155,-5.259E-05],[38.506592,-5.4137E-05],[38.510029,-6.0839E-05],[38.513467,-5.8262E-05],[38.516904,-5.4137E-05]]}
-{"quant":[38.801,-5.2521E-05],"mems":[[38.70252,-5.1043E-05],[38.705957,-5.4137E-05],[38.709395,-5.4652E-05],[38.712832,-4.8465E-05],[38.716269,-5.259E-05],[38.719707,-5.0528E-05],[38.723144,-5.3106E-05],[38.726581,-5.9808E-05],[38.730019,-5.9293E-05],[38.733456,-5.6715E-05],[38.736893,-5.4652E-05],[38.740331,-5.9808E-05],[38.743768,-5.9293E-05],[38.747205,-5.3106E-05],[38.750643,-5.2074E-05],[38.75408,-5.2074E-05],[38.757517,-5.259E-05],[38.760955,-5.4652E-05],[38.764392,-5.3621E-05],[38.767829,-5.1043E-05],[38.771267,-5.1043E-05],[38.774704,-5.0528E-05],[38.778141,-5.259E-05],[38.781579,-4.9497E-05],[38.785016,-4.9497E-05],[38.788453,-5.4137E-05],[38.791891,-4.9497E-05],[38.795328,-4.795E-05],[38.798765,-5.0012E-05],[38.802203,-5.2074E-05],[38.80564,-5.3106E-05],[38.809077,-5.3106E-05],[38.812515,-5.5168E-05],[38.815952,-5.0528E-05],[38.819389,-4.6919E-05],[38.822827,-5.3621E-05],[38.826264,-5.6715E-05],[38.829701,-5.6199E-05],[38.833139,-5.3106E-05],[38.836576,-4.8981E-05],[38.840013,-5.1559E-05],[38.843451,-5.3621E-05],[38.846888,-5.6199E-05],[38.850325,-5.4652E-05],[38.853763,-5.1559E-05],[38.8572,-5.0528E-05],[38.860637,-4.6919E-05],[38.864075,-5.259E-05],[38.867512,-5.6199E-05],[38.870949,-5.0012E-05],[38.874387,-5.259E-05],[38.877824,-5.5168E-05],[38.881261,-5.1559E-05],[38.884699,-5.3621E-05],[38.888136,-5.6199E-05],[38.891573,-5.6715E-05],[38.895011,-5.3106E-05],[38.898448,-4.5372E-05],[38.901885,-4.795E-05],[38.905323,-5.1559E-05],[38.90876,-5.2074E-05],[38.912197,-5.2074E-05],[38.915635,-5.1043E-05],[38.919072,-5.4137E-05],[38.922509,-5.6715E-05],[38.925947,-5.3106E-05],[38.929384,-5.3621E-05],[38.932821,-5.8262E-05],[38.936259,-5.5684E-05],[38.939696,-5.0528E-05],[38.943133,-5.1559E-05],[38.946571,-5.4652E-05],[38.950008,-5.3621E-05],[38.953445,-5.0528E-05],[38.956883,-4.5372E-05],[38.96032,-5.0528E-05],[38.963757,-5.3621E-05],[38.967195,-5.4652E-05],[38.970632,-5.3621E-05],[38.974069,-4.795E-05],[38.977507,-4.9497E-05],[38.980944,-4.6403E-05],[38.984381,-5.3621E-05],[38.987819,-5.8262E-05],[38.991256,-5.2074E-05],[38.994693,-5.6199E-05],[38.998131,-5.3106E-05],[39.001568,-5.1043E-05]]}
-{"quant":[39.2605,-5.3248E-05],"mems":[[39.160656,-5.2074E-05],[39.164168,-5.259E-05],[39.16768,-5.4137E-05],[39.171192,-5.3621E-05],[39.174704,-5.3621E-05],[39.178216,-5.5168E-05],[39.181728,-5.1043E-05],[39.18524,-5.4137E-05],[39.188752,-5.4137E-05],[39.192264,-5.2074E-05],[39.195776,-5.6715E-05],[39.199288,-5.6715E-05],[39.2028,-5.4652E-05],[39.206312,-5.7746E-05],[39.209824,-5.8777E-05],[39.213336,-5.8262E-05],[39.216848,-5.3106E-05],[39.22036,-5.1043E-05],[39.223872,-5.5684E-05],[39.227384,-5.2074E-05],[39.230896,-5.4137E-05],[39.234408,-5.8262E-05],[39.23792,-5.6715E-05],[39.241432,-5.3106E-05],[39.244944,-5.3106E-05],[39.248456,-5.723E-05],[39.251968,-5.2074E-05],[39.25548,-5.1559E-05],[39.258992,-5.259E-05],[39.262504,-5.0528E-05],[39.266016,-5.2074E-05],[39.269528,-5.1043E-05],[39.27304,-5.259E-05],[39.276552,-5.0528E-05],[39.280064,-4.6919E-05],[39.283576,-5.1559E-05],[39.287088,-5.5168E-05],[39.2906,-5.9808E-05],[39.294112,-5.6199E-05],[39.297624,-5.5684E-05],[39.301136,-5.3106E-05],[39.304648,-4.6919E-05],[39.30816,-5.6715E-05],[39.311672,-5.6715E-05],[39.315184,-5.6715E-05],[39.318696,-5.5168E-05],[39.322208,-5.2074E-05],[39.32572,-5.8777E-05],[39.329232,-5.3621E-05],[39.332744,-5.3106E-05],[39.336256,-5.3106E-05],[39.339768,-5.259E-05],[39.34328,-5.3621E-05],[39.346792,-5.259E-05],[39.350304,-5.5168E-05],[39.353816,-4.9497E-05],[39.357328,-5.0528E-05],[39.36084,-5.2074E-05],[39.364352,-5.1559E-05],[39.367864,-5.3621E-05],[39.371376,-5.4137E-05],[39.374888,-5.3621E-05],[39.3784,-5.4652E-05],[39.381912,-5.2074E-05],[39.385424,-4.4341E-05],[39.388936,-5.259E-05],[39.392448,-5.7746E-05],[39.39596,-5.5168E-05],[39.399472,-5.3106E-05],[39.402984,-4.8465E-05],[39.406496,-5.2074E-05],[39.410008,-5.2074E-05],[39.41352,-5.259E-05],[39.417032,-5.6715E-05],[39.420544,-5.259E-05],[39.424056,-4.795E-05],[39.427568,-5.1559E-05],[39.43108,-5.5168E-05],[39.434592,-5.7746E-05],[39.438104,-5.723E-05],[39.441616,-5.4652E-05],[39.445128,-4.7434E-05],[39.44864,-4.4856E-05],[39.452152,-5.3621E-05],[39.455664,-5.2074E-05],[39.459176,-5.0528E-05],[39.462688,-5.259E-05]]}
-{"quant":[39.8323,-5.3852E-05],"mems":[[39.733112,-5.3621E-05],[39.736624,-5.6715E-05],[39.740136,-5.3106E-05],[39.743648,-5.3106E-05],[39.74716,-5.259E-05],[39.750672,-4.7434E-05],[39.754184,-5.0528E-05],[39.757696,-5.3621E-05],[39.761208,-5.259E-05],[39.76472,-4.9497E-05],[39.768232,-5.0528E-05],[39.771744,-5.4137E-05],[39.775256,-5.3621E-05],[39.778768,-5.5168E-05],[39.78228,-5.4652E-05],[39.785792,-5.4652E-05],[39.789304,-5.0012E-05],[39.792816,-5.1043E-05],[39.796328,-5.4137E-05],[39.79984,-5.6199E-05],[39.803352,-5.6199E-05],[39.806864,-5.0012E-05],[39.810376,-5.0528E-05],[39.813888,-5.1559E-05],[39.8174,-5.723E-05],[39.820912,-5.9293E-05],[39.824424,-5.723E-05],[39.827936,-5.6715E-05],[39.831448,-5.2074E-05],[39.83496,-5.3106E-05],[39.838472,-5.4137E-05],[39.841984,-5.4137E-05],[39.845496,-5.259E-05],[39.849008,-5.2074E-05],[39.85252,-5.4652E-05],[39.856032,-5.4137E-05],[39.859544,-5.3106E-05],[39.863056,-5.3106E-05],[39.866568,-5.5684E-05],[39.87008,-5.4652E-05],[39.873592,-5.259E-05],[39.877104,-5.4652E-05],[39.880616,-5.3106E-05],[39.884128,-5.3106E-05],[39.88764,-5.3106E-05],[39.891152,-5.4137E-05],[39.894664,-5.6715E-05],[39.898176,-5.6199E-05],[39.901688,-5.5168E-05],[39.9052,-5.259E-05],[39.908712,-5.8777E-05],[39.912224,-5.8777E-05],[39.915736,-5.0012E-05],[39.919248,-5.1559E-05],[39.92276,-5.1043E-05],[39.926272,-5.2074E-05],[39.929784,-5.4137E-05],[39.933296,-5.259E-05],[39.936808,-5.0528E-05],[39.94032,-5.0528E-05],[39.943832,-5.8262E-05],[39.947344,-5.8262E-05],[39.950856,-5.3621E-05],[39.954368,-5.4137E-05],[39.95788,-4.9497E-05],[39.961392,-5.3621E-05],[39.964904,-5.6199E-05],[39.968416,-5.5168E-05],[39.971928,-5.4137E-05],[39.97544,-4.6919E-05],[39.978952,-5.4137E-05],[39.982464,-5.8262E-05],[39.985976,-5.1559E-05],[39.989488,-5.259E-05],[39.993,-5.259E-05],[39.996512,-5.259E-05],[40.000024,-5.2074E-05],[40.003536,-5.259E-05],[40.007048,-5.5168E-05],[40.01056,-5.6199E-05],[40.014072,-5.4137E-05],[40.017584,-5.5168E-05],[40.021096,-5.5168E-05],[40.024608,-5.4652E-05],[40.02812,-5.259E-05],[40.031632,-5.2074E-05],[40.035144,-5.5684E-05]]}
-{"quant":[40.3043,-5.2556E-05],"mems":[[40.207232,-5.3106E-05],[40.210744,-5.259E-05],[40.214256,-5.1043E-05],[40.217768,-5.5684E-05],[40.22128,-5.4137E-05],[40.224792,-5.1559E-05],[40.228304,-5.4137E-05],[40.231816,-5.4137E-05],[40.235328,-5.259E-05],[40.23884,-5.4652E-05],[40.242352,-5.3106E-05],[40.245864,-5.2074E-05],[40.249376,-5.4652E-05],[40.252888,-5.723E-05],[40.2564,-5.8777E-05],[40.259912,-4.9497E-05],[40.263424,-5.2074E-05],[40.266936,-5.5684E-05],[40.270448,-5.2074E-05],[40.27396,-5.4137E-05],[40.277472,-5.259E-05],[40.280984,-5.1559E-05],[40.284496,-5.5168E-05],[40.288008,-5.3621E-05],[40.29152,-5.2074E-05],[40.295032,-5.4137E-05],[40.298544,-5.0528E-05],[40.302056,-4.795E-05],[40.305568,-5.0012E-05],[40.30908,-5.1559E-05],[40.312592,-5.5168E-05],[40.316104,-6.0839E-05],[40.319616,-5.8262E-05],[40.323128,-5.1559E-05],[40.32664,-5.1559E-05],[40.330152,-5.4652E-05],[40.333664,-5.2074E-05],[40.337176,-5.0012E-05],[40.340688,-5.3621E-05],[40.3442,-5.3106E-05],[40.347712,-5.3106E-05],[40.351224,-5.2074E-05],[40.354736,-4.7434E-05],[40.358248,-5.0528E-05],[40.36176,-5.2074E-05],[40.365272,-5.1043E-05],[40.368784,-5.8777E-05],[40.372296,-5.8262E-05],[40.375808,-5.2074E-05],[40.37932,-5.3621E-05],[40.382832,-5.3621E-05],[40.386344,-5.4652E-05],[40.389856,-4.9497E-05],[40.393368,-4.9497E-05],[40.39688,-5.2074E-05],[40.400392,-5.0528E-05],[40.403904,-4.795E-05],[40.407416,-4.7434E-05],[40.410928,-5.8262E-05],[40.41444,-5.7746E-05],[40.417952,-5.2074E-05],[40.421464,-5.2074E-05],[40.424976,-4.6403E-05],[40.428488,-4.8981E-05],[40.432,-5.4652E-05],[40.435512,-5.259E-05],[40.439024,-5.0528E-05],[40.442536,-5.3106E-05],[40.446048,-5.0528E-05],[40.44956,-4.6919E-05],[40.453072,-5.5684E-05],[40.456584,-5.6715E-05],[40.460096,-5.0012E-05],[40.463608,-4.8981E-05],[40.46712,-5.3106E-05],[40.470632,-5.4652E-05],[40.474144,-4.9497E-05],[40.477656,-5.2074E-05],[40.481168,-5.5168E-05],[40.48468,-5.2074E-05],[40.488192,-5.1559E-05],[40.491704,-5.259E-05],[40.495216,-5.3106E-05],[40.498728,-5.4652E-05],[40.50224,-5.0528E-05],[40.505752,-4.7434E-05]]}
-{"quant":[40.7697,-5.3799E-05],"mems":[[40.670816,-4.9497E-05],[40.674328,-5.0528E-05],[40.67784,-5.5168E-05],[40.681352,-5.3621E-05],[40.684864,-5.259E-05],[40.688376,-4.795E-05],[40.691888,-4.6919E-05],[40.6954,-5.1559E-05],[40.698912,-5.2074E-05],[40.702424,-5.4137E-05],[40.705936,-5.3106E-05],[40.709448,-5.0528E-05],[40.71296,-5.259E-05],[40.716472,-5.4652E-05],[40.719984,-5.259E-05],[40.723496,-5.0528E-05],[40.727008,-5.3621E-05],[40.73052,-5.6199E-05],[40.734032,-5.4137E-05],[40.737544,-5.3106E-05],[40.741056,-5.6199E-05],[40.744568,-5.2074E-05],[40.74808,-4.9497E-05],[40.751592,-4.9497E-05],[40.755104,-4.9497E-05],[40.758616,-5.4652E-05],[40.762128,-5.259E-05],[40.76564,-4.9497E-05],[40.769152,-4.8465E-05],[40.772664,-5.1559E-05],[40.776176,-5.4652E-05],[40.779688,-5.6199E-05],[40.7832,-5.7746E-05],[40.786712,-5.4137E-05],[40.790224,-5.3621E-05],[40.793736,-5.4137E-05],[40.797248,-5.4652E-05],[40.80076,-5.5684E-05],[40.804272,-5.7746E-05],[40.807784,-5.5168E-05],[40.811296,-5.2074E-05],[40.814808,-5.4652E-05],[40.81832,-5.2074E-05],[40.821832,-5.1043E-05],[40.825344,-5.2074E-05],[40.828856,-5.2074E-05],[40.832368,-5.1043E-05],[40.83588,-5.1043E-05],[40.839392,-5.5168E-05],[40.842904,-5.4137E-05],[40.846416,-5.4137E-05],[40.849928,-5.4652E-05],[40.85344,-5.3106E-05],[40.856952,-5.2074E-05],[40.860464,-5.259E-05],[40.863976,-5.6199E-05],[40.867488,-5.4652E-05],[40.871,-5.2074E-05],[40.874512,-4.8465E-05],[40.878024,-5.2074E-05],[40.881536,-5.5684E-05],[40.885048,-4.6919E-05],[40.88856,-4.8465E-05],[40.892072,-5.4652E-05],[40.895584,-5.4137E-05],[40.899096,-5.4652E-05],[40.902608,-5.5168E-05],[40.90612,-5.3621E-05],[40.909632,-5.5168E-05],[40.913144,-5.1559E-05],[40.916656,-4.7434E-05],[40.920168,-5.2074E-05],[40.92368,-5.1559E-05],[40.927192,-4.8465E-05],[40.930704,-4.9497E-05],[40.934216,-5.0528E-05],[40.937728,-4.8465E-05],[40.94124,-5.3621E-05],[40.944752,-5.6199E-05],[40.948264,-5.1043E-05],[40.951776,-5.4652E-05],[40.955288,-5.4652E-05],[40.9588,-4.8981E-05],[40.962312,-5.0012E-05],[40.965824,-5.1559E-05],[40.969336,-5.5684E-05],[40.972848,-5.9808E-05]]}
-{"quant":[41.2491,-5.3123E-05],"mems":[[41.15196,-5.3621E-05],[41.155472,-5.259E-05],[41.158984,-5.5684E-05],[41.162496,-4.8981E-05],[41.166008,-5.2074E-05],[41.16952,-5.5168E-05],[41.173032,-5.259E-05],[41.176544,-5.259E-05],[41.180056,-4.8465E-05],[41.183568,-5.1043E-05],[41.18708,-5.5168E-05],[41.190592,-5.4652E-05],[41.194104,-5.3621E-05],[41.197616,-5.6199E-05],[41.201128,-5.6715E-05],[41.20464,-5.259E-05],[41.208152,-5.3621E-05],[41.211664,-5.6715E-05],[41.215176,-5.4137E-05],[41.218688,-4.8465E-05],[41.2222,-4.795E-05],[41.225712,-4.8981E-05],[41.229224,-5.5168E-05],[41.232736,-5.4652E-05],[41.236248,-4.795E-05],[41.23976,-5.259E-05],[41.243272,-5.2074E-05],[41.246784,-5.259E-05],[41.250296,-5.4652E-05],[41.253808,-5.1559E-05],[41.25732,-5.1043E-05],[41.260832,-5.1043E-05],[41.264344,-5.5168E-05],[41.267856,-5.5168E-05],[41.271368,-5.259E-05],[41.27488,-5.4137E-05],[41.278392,-5.3106E-05],[41.281904,-5.4652E-05],[41.285416,-5.5684E-05],[41.288928,-5.5168E-05],[41.29244,-5.5168E-05],[41.295952,-5.1043E-05],[41.299464,-4.7434E-05],[41.302976,-4.8465E-05],[41.306488,-5.2074E-05],[41.31,-5.3621E-05],[41.313512,-5.259E-05],[41.317024,-5.0012E-05],[41.320536,-5.1043E-05],[41.324048,-5.3621E-05],[41.32756,-5.6199E-05],[41.331072,-5.5168E-05],[41.334584,-5.3106E-05],[41.338096,-5.723E-05],[41.341608,-5.0012E-05],[41.34512,-5.1559E-05],[41.348632,-5.8262E-05],[41.352144,-5.3106E-05],[41.355656,-5.259E-05],[41.359168,-4.7434E-05],[41.36268,-4.9497E-05],[41.366192,-5.3621E-05],[41.369704,-5.3106E-05],[41.373216,-5.3106E-05],[41.376728,-5.1043E-05],[41.38024,-5.5168E-05],[41.383752,-5.1043E-05],[41.387264,-5.1043E-05],[41.390776,-5.1559E-05],[41.394288,-4.8981E-05],[41.3978,-5.4137E-05],[41.401312,-5.1043E-05],[41.404824,-5.3106E-05],[41.408336,-5.1043E-05],[41.411848,-4.9497E-05],[41.41536,-5.5168E-05],[41.418872,-4.795E-05],[41.422384,-4.795E-05],[41.425896,-5.1559E-05],[41.429408,-5.3621E-05],[41.43292,-5.6199E-05],[41.436432,-5.4652E-05],[41.439944,-5.259E-05],[41.443456,-5.4137E-05],[41.446968,-5.259E-05],[41.45048,-5.2074E-05]]}
-{"quant":[41.7359,-0.98232],"mems":[[41.710368,-4.8465E-05],[41.71388,-5.259E-05],[41.717392,-5.4652E-05],[41.720904,-5.5684E-05],[41.724416,-5.4652E-05],[41.727928,-5.1043E-05],[41.73144,-5.0528E-05],[41.734952,-5.4652E-05],[41.738464,-5.7746E-05],[41.741976,-5.723E-05],[41.745488,-5.723E-05],[41.749,-5.6199E-05],[41.752364,-5.3621E-05],[41.755728,-5.5168E-05],[41.759092,-5.6715E-05],[41.762456,-5.4652E-05],[41.76582,-5.4137E-05],[41.769184,-5.1559E-05],[41.772548,-4.795E-05],[41.775912,-4.8981E-05],[41.779276,-4.7434E-05],[41.78264,-5.1559E-05],[41.786004,-5.0528E-05],[41.789368,-4.6919E-05],[41.792732,-5.259E-05],[41.796096,-5.3621E-05],[41.79946,-5.1559E-05],[41.802824,-5.3106E-05],[41.806188,-5.2074E-05],[41.809552,-4.5372E-05],[41.812916,-4.6403E-05],[41.81628,-5.4137E-05],[41.819644,-5.3621E-05],[41.823008,-5.4652E-05],[41.826372,-5.3106E-05],[41.829736,-4.6403E-05],[41.8331,-4.9497E-05],[41.836464,-5.259E-05],[41.839828,-5.259E-05],[41.843192,-5.3621E-05],[41.846556,-5.3621E-05],[41.84992,-5.3106E-05],[41.853284,-5.1559E-05],[41.856648,-5.1559E-05],[41.860012,-5.4137E-05],[41.863376,-5.1559E-05],[41.86674,-4.5372E-05],[41.870104,-4.795E-05],[41.873468,-5.4652E-05],[41.876832,-5.6715E-05],[41.880196,-5.4137E-05],[41.88356,-5.3621E-05],[41.886924,-5.1043E-05],[41.890288,-5.3106E-05],[41.893652,-5.4652E-05],[41.897016,-5.1559E-05],[41.90038,-5.4137E-05],[41.903744,-5.3106E-05],[41.907108,-4.6919E-05],[41.910472,-4.5372E-05],[41.913836,-5.0012E-05],[41.9172,-5.3106E-05],[41.920564,-5.4137E-05],[41.923928,-5.3621E-05],[41.927292,-5.1559E-05],[41.930656,-5.3621E-05],[41.93402,-5.6715E-05],[41.937384,-5.4137E-05],[41.940748,-5.3106E-05],[41.944112,-5.1559E-05],[41.947476,-4.9497E-05],[41.95084,-5.3106E-05],[41.954204,-5.3621E-05],[41.957568,-5.259E-05],[41.960932,-5.2074E-05],[41.964296,-5.259E-05],[41.96766,-5.5684E-05],[41.971024,-5.6199E-05],[41.974388,-5.3106E-05],[41.977752,-5.0528E-05],[41.981116,-5.3621E-05],[41.98448,-4.9497E-05],[41.987844,-4.795E-05],[41.991208,-5.259E-05],[41.994572,-5.3621E-05],[41.997936,-5.4652E-05],[42.0013,-5.259E-05]]}
-{"quant":[42.2286,-5.2989E-05],"mems":[[42.129132,-5.9293E-05],[42.132496,-5.8262E-05],[42.13586,-5.259E-05],[42.139224,-5.1043E-05],[42.142588,-5.0012E-05],[42.145952,-5.3106E-05],[42.149316,-5.5684E-05],[42.15268,-5.259E-05],[42.156044,-5.259E-05],[42.159408,-5.0012E-05],[42.162772,-5.5168E-05],[42.166136,-5.7746E-05],[42.1695,-5.2074E-05],[42.172864,-5.0012E-05],[42.176228,-4.8981E-05],[42.179592,-5.2074E-05],[42.182956,-5.1043E-05],[42.18632,-5.3621E-05],[42.189684,-5.8777E-05],[42.193048,-5.259E-05],[42.196412,-4.9497E-05],[42.199776,-5.2074E-05],[42.20314,-5.4652E-05],[42.206504,-5.259E-05],[42.209868,-5.3106E-05],[42.213232,-5.6715E-05],[42.216596,-5.1559E-05],[42.21996,-5.0012E-05],[42.223324,-5.4652E-05],[42.226688,-5.5168E-05],[42.230052,-5.4652E-05],[42.233416,-5.3621E-05],[42.23678,-5.3621E-05],[42.240144,-5.5684E-05],[42.243508,-5.4137E-05],[42.246872,-5.0012E-05],[42.250236,-5.3106E-05],[42.2536,-5.4652E-05],[42.256964,-5.259E-05],[42.260328,-5.5684E-05],[42.263692,-5.5168E-05],[42.267056,-5.3106E-05],[42.27042,-5.3621E-05],[42.273784,-5.5684E-05],[42.277148,-5.6715E-05],[42.280512,-5.0012E-05],[42.283876,-5.1043E-05],[42.28724,-5.6199E-05],[42.290604,-5.1559E-05],[42.293968,-5.0012E-05],[42.297332,-4.9497E-05],[42.300696,-5.0528E-05],[42.30406,-5.3621E-05],[42.307424,-5.0528E-05],[42.310788,-5.0012E-05],[42.314152,-5.259E-05],[42.317516,-4.9497E-05],[42.32088,-5.0528E-05],[42.324244,-5.723E-05],[42.327608,-5.5168E-05],[42.330972,-5.259E-05],[42.334336,-5.6199E-05],[42.3377,-5.4137E-05],[42.341064,-5.1559E-05],[42.344428,-5.259E-05],[42.347792,-5.4137E-05],[42.351156,-5.0528E-05],[42.35452,-4.6919E-05],[42.357884,-5.3106E-05],[42.361248,-5.723E-05],[42.364612,-5.4652E-05],[42.367976,-5.1559E-05],[42.37134,-5.6715E-05],[42.374704,-5.5684E-05],[42.378068,-5.5684E-05],[42.381432,-5.6715E-05],[42.384796,-5.0012E-05],[42.38816,-5.1559E-05],[42.391524,-5.0012E-05],[42.394888,-5.0528E-05],[42.398252,-4.8981E-05],[42.401616,-4.795E-05],[42.40498,-5.723E-05],[42.408344,-5.5684E-05],[42.411708,-5.1559E-05],[42.415072,-4.9497E-05],[42.418436,-5.0012E-05],[42.4218,-5.259E-05],[42.425164,-5.2074E-05],[42.428528,-5.6199E-05],[42.431892,-5.259E-05]]}
-{"quant":[42.696,-5.3056E-05],"mems":[[42.596728,-5.1043E-05],[42.600092,-5.4652E-05],[42.603456,-5.723E-05],[42.60682,-5.4137E-05],[42.610184,-5.5168E-05],[42.613548,-5.1043E-05],[42.616912,-5.2074E-05],[42.620276,-5.6715E-05],[42.62364,-5.3621E-05],[42.627004,-5.6199E-05],[42.630368,-5.8262E-05],[42.633732,-5.723E-05],[42.637096,-5.4652E-05],[42.64046,-5.3106E-05],[42.643824,-5.4137E-05],[42.647188,-5.3106E-05],[42.650552,-4.8465E-05],[42.653916,-5.1043E-05],[42.65728,-5.4137E-05],[42.660644,-4.9497E-05],[42.664008,-5.3621E-05],[42.667372,-5.3621E-05],[42.670736,-4.6403E-05],[42.6741,-5.0528E-05],[42.677464,-5.4652E-05],[42.680828,-5.5168E-05],[42.684192,-5.6199E-05],[42.687556,-5.2074E-05],[42.69092,-5.259E-05],[42.694284,-5.5168E-05],[42.697648,-5.4137E-05],[42.701012,-5.5168E-05],[42.704376,-5.3621E-05],[42.70774,-4.8981E-05],[42.711104,-5.1043E-05],[42.714468,-5.1559E-05],[42.717832,-5.2074E-05],[42.721196,-5.259E-05],[42.72456,-5.259E-05],[42.727924,-5.2074E-05],[42.731288,-4.7434E-05],[42.734652,-5.4652E-05],[42.738016,-5.9293E-05],[42.74138,-5.0012E-05],[42.744744,-4.8465E-05],[42.748108,-5.4137E-05],[42.751472,-5.4652E-05],[42.754836,-5.3106E-05],[42.7582,-5.723E-05],[42.761564,-5.6199E-05],[42.764928,-5.5684E-05],[42.768292,-5.8262E-05],[42.771656,-5.1559E-05],[42.77502,-5.259E-05],[42.778384,-5.6199E-05],[42.781748,-5.4137E-05],[42.785112,-4.8981E-05],[42.788476,-4.7434E-05],[42.79184,-5.259E-05],[42.795204,-5.4137E-05],[42.798568,-5.4137E-05],[42.801932,-5.259E-05],[42.805296,-5.4652E-05],[42.80866,-5.4137E-05],[42.812024,-5.3106E-05],[42.815388,-5.4652E-05],[42.818752,-5.2074E-05],[42.822116,-5.2074E-05],[42.82548,-5.1559E-05],[42.828844,-5.5684E-05],[42.832208,-5.7746E-05],[42.835572,-5.5168E-05],[42.838936,-5.4652E-05],[42.8423,-5.3621E-05],[42.845664,-5.1559E-05],[42.849028,-5.2074E-05],[42.852392,-5.2074E-05],[42.855756,-5.2074E-05],[42.85912,-5.8777E-05],[42.862484,-5.4137E-05],[42.865848,-4.9497E-05],[42.869212,-5.4652E-05],[42.872576,-5.6199E-05],[42.87594,-5.5168E-05],[42.879304,-5.5684E-05],[42.882668,-5.6199E-05],[42.886032,-5.5684E-05],[42.889396,-5.3621E-05],[42.89276,-5.4137E-05],[42.896124,-5.259E-05]]}
-{"quant":[43.1988,-5.5235E-05],"mems":[[43.101328,-5.3106E-05],[43.104692,-5.3106E-05],[43.108056,-5.5168E-05],[43.11142,-5.3621E-05],[43.114784,-5.3106E-05],[43.118148,-5.4137E-05],[43.121512,-4.8981E-05],[43.124876,-5.4652E-05],[43.12824,-5.6715E-05],[43.131604,-4.795E-05],[43.134968,-5.5684E-05],[43.138332,-5.7746E-05],[43.141696,-5.3621E-05],[43.14506,-5.723E-05],[43.148424,-5.5168E-05],[43.151788,-5.259E-05],[43.155152,-5.259E-05],[43.158516,-5.3106E-05],[43.16188,-5.0528E-05],[43.165244,-5.4652E-05],[43.168608,-5.4652E-05],[43.171972,-5.3106E-05],[43.175336,-5.723E-05],[43.1787,-5.0012E-05],[43.182064,-4.9497E-05],[43.185428,-5.5684E-05],[43.188792,-5.3106E-05],[43.192156,-5.2074E-05],[43.19552,-5.4652E-05],[43.198884,-5.4137E-05],[43.202248,-5.723E-05],[43.205612,-6.0839E-05],[43.208976,-5.5168E-05],[43.21234,-5.5684E-05],[43.215704,-5.6715E-05],[43.219068,-5.6715E-05],[43.222432,-5.9293E-05],[43.225796,-5.6715E-05],[43.22916,-5.4137E-05],[43.232524,-5.3106E-05],[43.235888,-5.5684E-05],[43.239252,-5.5168E-05],[43.242616,-5.5168E-05],[43.24598,-5.723E-05],[43.249344,-5.5168E-05],[43.252708,-5.3621E-05],[43.256072,-5.2074E-05],[43.259436,-5.3106E-05],[43.2628,-5.8777E-05],[43.266164,-5.723E-05],[43.269528,-5.259E-05],[43.272892,-5.4652E-05],[43.276256,-5.3621E-05],[43.27962,-5.3621E-05],[43.282984,-5.5168E-05],[43.286348,-5.3106E-05],[43.289712,-5.6715E-05],[43.293076,-5.6715E-05],[43.29644,-5.1043E-05],[43.299804,-5.2074E-05],[43.303168,-5.5168E-05],[43.306532,-5.4652E-05],[43.309896,-5.2074E-05],[43.31326,-5.723E-05],[43.316624,-5.5684E-05],[43.319988,-5.259E-05],[43.323352,-5.5168E-05],[43.326716,-5.5684E-05],[43.33008,-5.7746E-05],[43.333444,-5.1559E-05],[43.336808,-5.259E-05],[43.340172,-5.6199E-05],[43.343536,-5.3621E-05],[43.3469,-5.9293E-05],[43.350264,-5.5168E-05],[43.353628,-4.9497E-05],[43.356992,-5.4137E-05],[43.360356,-5.3621E-05],[43.36372,-5.6199E-05],[43.367084,-5.723E-05],[43.370448,-5.2074E-05],[43.373812,-5.1043E-05],[43.377176,-5.0012E-05],[43.38054,-5.2074E-05],[43.383904,-5.6715E-05],[43.387268,-5.259E-05],[43.390632,-5.2074E-05],[43.393996,-5.2074E-05],[43.39736,-5.1043E-05],[43.400724,-5.2074E-05]]}
-{"quant":[43.6436,-5.3415E-05],"mems":[[43.545376,-5.5168E-05],[43.54874,-4.795E-05],[43.552104,-5.3621E-05],[43.555468,-5.8262E-05],[43.558832,-5.7746E-05],[43.562196,-5.5168E-05],[43.56556,-5.4137E-05],[43.568924,-5.2074E-05],[43.572288,-5.259E-05],[43.575652,-5.5684E-05],[43.579016,-5.3106E-05],[43.58238,-5.6715E-05],[43.585744,-5.0012E-05],[43.589108,-4.6919E-05],[43.592472,-4.9497E-05],[43.595836,-4.9497E-05],[43.5992,-5.3621E-05],[43.602564,-5.1043E-05],[43.605928,-5.1559E-05],[43.609292,-5.2074E-05],[43.612656,-5.2074E-05],[43.61602,-5.3621E-05],[43.619384,-5.3621E-05],[43.622748,-5.6199E-05],[43.626112,-5.3106E-05],[43.629476,-5.1043E-05],[43.63284,-5.2074E-05],[43.636204,-5.1043E-05],[43.639568,-5.4137E-05],[43.642932,-5.6715E-05],[43.646296,-5.2074E-05],[43.64966,-5.259E-05],[43.653024,-5.2074E-05],[43.656388,-4.8465E-05],[43.659752,-5.1043E-05],[43.663116,-5.259E-05],[43.66648,-5.4652E-05],[43.669844,-5.1559E-05],[43.673208,-5.3621E-05],[43.676572,-5.6199E-05],[43.679936,-5.0012E-05],[43.6833,-5.2074E-05],[43.686664,-5.5168E-05],[43.690028,-5.3621E-05],[43.693392,-5.3621E-05],[43.696756,-5.723E-05],[43.70012,-5.259E-05],[43.703484,-5.1559E-05],[43.706848,-5.2074E-05],[43.710212,-5.3621E-05],[43.713576,-5.9808E-05],[43.71694,-5.4137E-05],[43.720304,-5.5168E-05],[43.723668,-5.5168E-05],[43.727032,-5.5684E-05],[43.730396,-5.8777E-05],[43.73376,-5.5684E-05],[43.737124,-5.5684E-05],[43.740488,-4.8981E-05],[43.743852,-4.6919E-05],[43.747216,-5.0528E-05],[43.75058,-5.2074E-05],[43.753944,-5.6715E-05],[43.757308,-5.7746E-05],[43.760672,-5.6715E-05],[43.764036,-5.1559E-05],[43.7674,-5.2074E-05],[43.770764,-5.7746E-05],[43.774128,-5.4137E-05],[43.777492,-5.3106E-05],[43.780856,-5.259E-05],[43.78422,-5.3106E-05],[43.787584,-5.4652E-05],[43.790948,-5.4137E-05],[43.794312,-5.6199E-05],[43.797676,-5.0528E-05],[43.80104,-4.9497E-05],[43.804404,-5.1559E-05],[43.807768,-4.9497E-05],[43.811132,-5.4652E-05],[43.814496,-5.5684E-05],[43.81786,-5.259E-05],[43.821224,-5.259E-05],[43.824588,-5.2074E-05],[43.827952,-5.1559E-05],[43.831316,-5.3621E-05],[43.83468,-5.7746E-05],[43.838044,-5.5684E-05],[43.841408,-4.8981E-05],[43.844772,-5.0012E-05]]}
-{"quant":[44.1,-1.3765],"mems":[[44.00288,-5.2074E-05],[44.006244,-5.5684E-05],[44.009608,-5.5168E-05],[44.012972,-5.6199E-05],[44.016336,-5.4137E-05],[44.0197,-5.1043E-05],[44.023064,-5.4137E-05],[44.026428,-5.6199E-05],[44.029792,-5.5684E-05],[44.033156,-5.3106E-05],[44.03652,-5.259E-05],[44.039884,-5.4137E-05],[44.043248,-5.6715E-05],[44.046612,-5.5684E-05],[44.049976,-5.1043E-05],[44.05334,-5.0528E-05],[44.056704,-5.0528E-05],[44.060068,-5.0012E-05],[44.063432,-4.8981E-05],[44.066796,-5.2074E-05],[44.07016,-5.8262E-05],[44.073524,-5.259E-05],[44.076888,-5.0528E-05],[44.080252,-5.4137E-05],[44.083616,-5.3106E-05],[44.08698,-5.4652E-05],[44.090344,-5.5684E-05],[44.093708,-5.4137E-05],[44.097072,-5.1559E-05],[44.100436,-5.2074E-05],[44.1038,-5.4137E-05],[44.107164,-5.4137E-05],[44.110528,-5.5168E-05],[44.113892,-5.4652E-05],[44.117256,-5.2074E-05],[44.12062,-5.0012E-05],[44.123984,-5.259E-05],[44.127348,-5.259E-05],[44.130712,-5.259E-05],[44.134076,-5.4652E-05],[44.13744,-5.3106E-05],[44.140804,-5.5168E-05],[44.144168,-5.6199E-05],[44.147532,-5.7746E-05],[44.150896,-5.5168E-05],[44.15426,-4.8981E-05],[44.157624,-5.1559E-05],[44.160988,-5.4652E-05],[44.164352,-5.4137E-05],[44.167716,-5.3621E-05],[44.17108,-5.5168E-05],[44.174444,-5.4652E-05],[44.177808,-5.2074E-05],[44.181172,-5.4137E-05],[44.184536,-5.6715E-05],[44.1879,-5.8262E-05],[44.191264,-5.6199E-05],[44.194628,-5.0528E-05],[44.197992,-5.4137E-05],[44.201356,-5.3106E-05],[44.20472,-5.2074E-05],[44.208084,-5.4137E-05],[44.211448,-4.7434E-05],[44.214812,-5.2074E-05],[44.218176,-5.3106E-05],[44.22154,-5.1043E-05],[44.224904,-5.4652E-05],[44.228268,-5.1559E-05],[44.231632,-5.0012E-05],[44.234996,-5.1559E-05],[44.23836,-5.8777E-05],[44.241724,-5.8777E-05],[44.245088,-5.5168E-05],[44.248452,-5.3621E-05],[44.251816,-5.3106E-05],[44.25518,-5.8262E-05],[44.258544,-5.4137E-05],[44.261908,-5.3106E-05],[44.265272,-5.259E-05],[44.268636,-5.0012E-05],[44.272,-5.4652E-05],[44.275549,-5.4652E-05],[44.279099,-5.4652E-05],[44.282648,-5.0528E-05],[44.286197,-5.0012E-05],[44.289747,-5.5168E-05],[44.293296,-5.3621E-05],[44.296845,-5.3106E-05],[44.300395,-5.4137E-05]]}
-{"quant":[44.5449,-5.2745E-05],"mems":[[44.445917,-5.6199E-05],[44.449467,-5.8777E-05],[44.453016,-5.3621E-05],[44.456565,-5.3106E-05],[44.460115,-5.3621E-05],[44.463664,-6.0839E-05],[44.467213,-5.8777E-05],[44.470763,-5.0012E-05],[44.474312,-5.3621E-05],[44.477861,-5.8262E-05],[44.481411,-5.4137E-05],[44.48496,-5.3621E-05],[44.488509,-5.3106E-05],[44.492059,-4.9497E-05],[44.495608,-5.1559E-05],[44.499157,-5.2074E-05],[44.502707,-5.4652E-05],[44.506256,-5.4652E-05],[44.509805,-5.6199E-05],[44.513355,-5.5684E-05],[44.516904,-4.8981E-05],[44.520453,-5.4137E-05],[44.524003,-5.6715E-05],[44.527552,-5.7746E-05],[44.531101,-5.8777E-05],[44.534651,-5.4652E-05],[44.5382,-5.5168E-05],[44.541749,-5.3621E-05],[44.545299,-5.4652E-05],[44.548848,-5.4137E-05],[44.552397,-5.3621E-05],[44.555947,-5.2074E-05],[44.559496,-4.8981E-05],[44.563045,-5.3106E-05],[44.566595,-5.2074E-05],[44.570144,-5.2074E-05],[44.573693,-5.4137E-05],[44.577243,-5.3106E-05],[44.580792,-5.2074E-05],[44.584341,-4.8465E-05],[44.587891,-5.259E-05],[44.59144,-5.3621E-05],[44.594989,-4.9497E-05],[44.598539,-4.8981E-05],[44.602088,-5.4137E-05],[44.605637,-5.8262E-05],[44.609187,-5.4137E-05],[44.612736,-5.3621E-05],[44.616285,-5.1559E-05],[44.619835,-4.6403E-05],[44.623384,-5.3621E-05],[44.626933,-5.6199E-05],[44.630483,-5.4137E-05],[44.634032,-5.5684E-05],[44.637581,-5.5168E-05],[44.641131,-5.4137E-05],[44.64468,-5.0528E-05],[44.648229,-5.1559E-05],[44.651779,-5.2074E-05],[44.655328,-5.259E-05],[44.658877,-5.4652E-05],[44.662427,-4.8465E-05],[44.665976,-5.0012E-05],[44.669525,-5.3106E-05],[44.673075,-5.3106E-05],[44.676624,-5.4652E-05],[44.680173,-5.1559E-05],[44.683723,-4.6919E-05],[44.687272,-4.9497E-05],[44.690821,-5.5684E-05],[44.694371,-5.3621E-05],[44.69792,-5.5684E-05],[44.701469,-5.9293E-05],[44.705019,-5.259E-05],[44.708568,-5.3621E-05],[44.712117,-5.5168E-05],[44.715667,-5.3621E-05],[44.719216,-5.259E-05],[44.722765,-5.259E-05],[44.726315,-5.4137E-05],[44.729864,-5.6715E-05],[44.733413,-5.723E-05],[44.736963,-5.259E-05],[44.740512,-5.5168E-05],[44.744061,-5.6199E-05],[44.747611,-5.3106E-05]]}
-{"quant":[45.0915,-5.2281E-05],"mems":[[44.992515,-5.8262E-05],[44.996064,-5.1559E-05],[44.999613,-5.0528E-05],[45.003163,-5.3106E-05],[45.006712,-4.8981E-05],[45.010261,-5.1043E-05],[45.013811,-5.0012E-05],[45.01736,-5.0528E-05],[45.020909,-5.1559E-05],[45.024459,-5.259E-05],[45.028008,-5.7746E-05],[45.031557,-5.5168E-05],[45.035107,-5.1043E-05],[45.038656,-5.1559E-05],[45.042205,-5.2074E-05],[45.045755,-5.2074E-05],[45.049304,-5.259E-05],[45.052853,-5.8262E-05],[45.056403,-5.4137E-05],[45.059952,-5.0012E-05],[45.063501,-5.259E-05],[45.067051,-5.5168E-05],[45.0706,-5.8777E-05],[45.074149,-5.4652E-05],[45.077699,-5.1043E-05],[45.081248,-5.259E-05],[45.084797,-5.723E-05],[45.088347,-5.8262E-05],[45.091896,-5.3621E-05],[45.095445,-5.1043E-05],[45.098995,-5.3106E-05],[45.102544,-5.259E-05],[45.106093,-5.259E-05],[45.109643,-5.7746E-05],[45.113192,-5.5684E-05],[45.116741,-5.2074E-05],[45.120291,-5.1559E-05],[45.12384,-5.1043E-05],[45.127389,-5.4652E-05],[45.130939,-5.259E-05],[45.134488,-5.3621E-05],[45.138037,-5.5684E-05],[45.141587,-5.1559E-05],[45.145136,-5.3106E-05],[45.148685,-5.3621E-05],[45.152235,-5.2074E-05],[45.155784,-5.259E-05],[45.159333,-4.8465E-05],[45.162883,-4.6919E-05],[45.166432,-4.8981E-05],[45.169981,-5.0012E-05],[45.173531,-4.8981E-05],[45.17708,-5.0528E-05],[45.180629,-5.3106E-05],[45.184179,-4.795E-05],[45.187728,-4.8465E-05],[45.191277,-5.9293E-05],[45.194827,-5.5168E-05],[45.198376,-4.6919E-05],[45.201925,-5.5168E-05],[45.205475,-5.5684E-05],[45.209024,-5.4652E-05],[45.212573,-5.5684E-05],[45.216123,-5.1559E-05],[45.219672,-5.0528E-05],[45.223221,-4.9497E-05],[45.226771,-5.1559E-05],[45.23032,-5.2074E-05],[45.233869,-5.1559E-05],[45.237419,-5.1043E-05],[45.240968,-4.9497E-05],[45.244517,-5.2074E-05],[45.248067,-5.4137E-05],[45.251616,-5.5684E-05],[45.255165,-5.3621E-05],[45.258715,-5.4137E-05],[45.262264,-5.5168E-05],[45.265813,-5.5684E-05],[45.269363,-5.2074E-05],[45.272912,-5.0528E-05],[45.276461,-5.4652E-05],[45.280011,-5.0528E-05],[45.28356,-5.0012E-05],[45.287109,-5.1043E-05],[45.290659,-5.3106E-05],[45.294208,-5.8777E-05]]}
-{"quant":[45.5517,-5.3497E-05],"mems":[[45.453928,-4.795E-05],[45.457477,-5.3621E-05],[45.461027,-5.5168E-05],[45.464576,-5.1559E-05],[45.468125,-5.3621E-05],[45.471675,-5.4137E-05],[45.475224,-5.5684E-05],[45.478773,-5.259E-05],[45.482323,-5.3106E-05],[45.485872,-5.8777E-05],[45.489421,-5.6715E-05],[45.492971,-5.1559E-05],[45.49652,-5.0528E-05],[45.500069,-5.4652E-05],[45.503619,-5.1043E-05],[45.507168,-4.9497E-05],[45.510717,-5.0012E-05],[45.514267,-5.5168E-05],[45.517816,-5.9293E-05],[45.521365,-5.5684E-05],[45.524915,-5.8262E-05],[45.528464,-5.259E-05],[45.532013,-5.0528E-05],[45.535563,-5.6715E-05],[45.539112,-5.3621E-05],[45.542661,-5.3106E-05],[45.546211,-5.4652E-05],[45.54976,-5.3621E-05],[45.553309,-5.6715E-05],[45.556859,-5.7746E-05],[45.560408,-5.4652E-05],[45.563957,-5.3106E-05],[45.567507,-5.2074E-05],[45.571056,-5.4137E-05],[45.574605,-5.5684E-05],[45.578155,-5.4137E-05],[45.581704,-5.3621E-05],[45.585253,-5.1043E-05],[45.588803,-5.0528E-05],[45.592352,-5.259E-05],[45.595901,-5.0012E-05],[45.599451,-5.1043E-05],[45.603,-5.0012E-05],[45.606549,-5.0528E-05],[45.610099,-5.7746E-05],[45.613648,-5.259E-05],[45.617197,-4.9497E-05],[45.620747,-5.4652E-05],[45.624296,-5.3106E-05],[45.627845,-5.3106E-05],[45.631395,-5.4652E-05],[45.634944,-5.0528E-05],[45.638493,-5.1559E-05],[45.642043,-5.6715E-05],[45.645592,-5.6715E-05],[45.649141,-5.723E-05],[45.652691,-5.5684E-05],[45.65624,-5.259E-05],[45.659789,-5.259E-05],[45.663339,-5.2074E-05],[45.666888,-5.259E-05],[45.670437,-5.4652E-05],[45.673987,-5.1559E-05],[45.677536,-4.795E-05],[45.681085,-5.1043E-05],[45.684635,-5.5168E-05],[45.688184,-5.4652E-05],[45.691733,-5.3106E-05],[45.695283,-5.1559E-05],[45.698832,-4.8465E-05],[45.702381,-4.9497E-05],[45.705931,-5.4137E-05],[45.70948,-5.3621E-05],[45.713029,-5.1043E-05],[45.716579,-5.1043E-05],[45.720128,-5.1559E-05],[45.723677,-5.3106E-05],[45.727227,-5.4652E-05],[45.730776,-5.5168E-05],[45.734325,-5.259E-05],[45.737875,-5.0012E-05],[45.741424,-5.0528E-05],[45.744973,-5.6199E-05],[45.748523,-5.723E-05],[45.752072,-5.0528E-05]]}
-{"quant":[46.0031,-5.2928E-05],"mems":[[45.904693,-5.259E-05],[45.908243,-5.4652E-05],[45.911792,-5.723E-05],[45.915341,-5.6715E-05],[45.918891,-5.259E-05],[45.92244,-5.3621E-05],[45.925989,-5.259E-05],[45.929539,-5.4652E-05],[45.933088,-5.3106E-05],[45.936637,-5.259E-05],[45.940187,-5.8262E-05],[45.943736,-5.6715E-05],[45.947285,-5.6715E-05],[45.950835,-5.3621E-05],[45.954384,-5.4137E-05],[45.957933,-5.723E-05],[45.961483,-5.259E-05],[45.965032,-5.259E-05],[45.968581,-5.5168E-05],[45.972131,-5.6199E-05],[45.97568,-5.6199E-05],[45.979229,-5.6199E-05],[45.982779,-5.6199E-05],[45.986328,-5.259E-05],[45.989877,-5.3621E-05],[45.993427,-5.4137E-05],[45.996976,-5.259E-05],[46.000525,-5.0528E-05],[46.004075,-4.6919E-05],[46.007624,-5.4652E-05],[46.011173,-5.723E-05],[46.014723,-5.4137E-05],[46.018272,-5.3106E-05],[46.021821,-5.2074E-05],[46.025371,-5.1559E-05],[46.02892,-4.9497E-05],[46.032469,-5.4137E-05],[46.036019,-5.4137E-05],[46.039568,-5.4137E-05],[46.043117,-5.4652E-05],[46.046667,-5.0012E-05],[46.050216,-5.0528E-05],[46.053765,-5.3106E-05],[46.057315,-5.1559E-05],[46.060864,-4.9497E-05],[46.064413,-5.3106E-05],[46.067963,-5.3106E-05],[46.071512,-5.3621E-05],[46.075061,-5.5684E-05],[46.078611,-5.1043E-05],[46.08216,-5.3621E-05],[46.085709,-5.5168E-05],[46.089259,-5.0528E-05],[46.092808,-5.3621E-05],[46.096357,-5.723E-05],[46.099907,-5.4137E-05],[46.103456,-5.3106E-05],[46.107005,-5.3621E-05],[46.110555,-5.1043E-05],[46.114104,-5.259E-05],[46.117653,-5.9808E-05],[46.121203,-5.723E-05],[46.124752,-5.5168E-05],[46.128301,-5.4652E-05],[46.131851,-4.6919E-05],[46.1354,-4.9497E-05],[46.138949,-5.3621E-05],[46.142499,-5.5684E-05],[46.146048,-5.7746E-05],[46.149597,-5.4652E-05],[46.153147,-5.5684E-05],[46.156696,-5.5684E-05],[46.160245,-5.6199E-05],[46.163795,-5.7746E-05],[46.167344,-5.3621E-05],[46.170893,-5.0012E-05],[46.174443,-5.0012E-05],[46.177992,-5.259E-05],[46.181541,-5.3106E-05],[46.185091,-5.5684E-05],[46.18864,-5.259E-05],[46.192189,-5.2074E-05],[46.195739,-5.6199E-05],[46.199288,-5.1043E-05],[46.202837,-5.2074E-05],[46.206387,-5.3106E-05]]}
-{"quant":[46.4505,-5.2892E-05],"mems":[[46.351909,-5.4137E-05],[46.355459,-5.259E-05],[46.359008,-4.795E-05],[46.362557,-5.1043E-05],[46.366107,-5.3621E-05],[46.369656,-5.4137E-05],[46.373205,-5.4137E-05],[46.376755,-5.1559E-05],[46.380304,-5.3621E-05],[46.383853,-5.5684E-05],[46.387403,-5.2074E-05],[46.390952,-4.795E-05],[46.394501,-5.3106E-05],[46.398051,-5.1559E-05],[46.4016,-4.8465E-05],[46.405149,-5.3106E-05],[46.408699,-5.259E-05],[46.412248,-5.1559E-05],[46.415797,-5.259E-05],[46.419347,-5.3106E-05],[46.422896,-5.3621E-05],[46.426445,-5.6199E-05],[46.429995,-5.4137E-05],[46.433544,-5.1559E-05],[46.437093,-5.5168E-05],[46.440643,-5.4652E-05],[46.444192,-5.3621E-05],[46.447741,-5.259E-05],[46.451291,-5.5684E-05],[46.45484,-5.6199E-05],[46.458389,-5.2074E-05],[46.461939,-5.2074E-05],[46.465488,-5.4652E-05],[46.469037,-5.5168E-05],[46.472587,-5.1043E-05],[46.476136,-5.0528E-05],[46.479685,-5.6199E-05],[46.483235,-5.5168E-05],[46.486784,-5.4652E-05],[46.490333,-5.5168E-05],[46.493883,-5.4652E-05],[46.497432,-5.5684E-05],[46.500981,-5.1559E-05],[46.504531,-5.1043E-05],[46.50808,-5.6199E-05],[46.511629,-5.4652E-05],[46.515179,-5.259E-05],[46.518728,-5.1043E-05],[46.522277,-4.6403E-05],[46.525827,-5.0012E-05],[46.529376,-5.1559E-05],[46.532925,-5.2074E-05],[46.536475,-5.5168E-05],[46.540024,-5.1559E-05],[46.543573,-5.0012E-05],[46.547123,-4.8465E-05],[46.550672,-5.259E-05],[46.554221,-5.5684E-05],[46.557771,-5.5168E-05],[46.56132,-5.3106E-05],[46.564869,-4.8981E-05],[46.568419,-5.1559E-05],[46.571968,-5.259E-05],[46.575517,-5.6715E-05],[46.579067,-5.9293E-05],[46.582616,-5.4652E-05],[46.586165,-4.9497E-05],[46.589715,-5.3106E-05],[46.593264,-5.8262E-05],[46.596813,-5.259E-05],[46.600363,-5.3621E-05],[46.603912,-5.6199E-05],[46.607461,-5.5168E-05],[46.611011,-5.5168E-05],[46.61456,-5.3621E-05],[46.618109,-5.5684E-05],[46.621659,-5.2074E-05],[46.625208,-5.0528E-05],[46.628757,-4.9497E-05],[46.632307,-4.6919E-05],[46.635856,-5.1559E-05],[46.639405,-5.3621E-05],[46.642955,-5.3106E-05],[46.646504,-5.259E-05],[46.650053,-5.1043E-05],[46.653603,-5.0012E-05]]}
-{"quant":[46.9128,-0.017466],"mems":[[46.863013,-5.6715E-05],[46.866563,-5.3621E-05],[46.870112,-5.259E-05],[46.873661,-5.4652E-05],[46.877211,-5.3106E-05],[46.88076,-5.4652E-05],[46.884309,-5.4652E-05],[46.887859,-5.1559E-05],[46.891408,-5.0012E-05],[46.894957,-4.8465E-05],[46.898507,-5.0012E-05],[46.902056,-5.1043E-05],[46.905605,-5.723E-05],[46.909155,-5.7746E-05],[46.912704,-5.1559E-05],[46.916253,-5.3106E-05],[46.919803,-5.723E-05],[46.923352,-5.7746E-05],[46.926901,-5.1043E-05],[46.930451,-5.4137E-05],[46.934,-5.259E-05],[46.937392,-4.6919E-05],[46.940784,-5.2074E-05],[46.944176,-5.4652E-05],[46.947568,-5.5684E-05],[46.95096,-5.5684E-05],[46.954352,-5.3621E-05],[46.957744,-5.0528E-05],[46.961136,-5.5168E-05],[46.964528,-5.6199E-05],[46.96792,-5.0528E-05],[46.971312,-5.1043E-05],[46.974704,-4.8981E-05],[46.978096,-5.0012E-05],[46.981488,-5.1043E-05],[46.98488,-5.1559E-05],[46.988272,-5.3106E-05],[46.991664,-5.1043E-05],[46.995056,-4.8981E-05],[46.998448,-4.8465E-05],[47.00184,-5.3106E-05],[47.005232,-5.4652E-05],[47.008624,-5.5168E-05],[47.012016,-5.3106E-05],[47.015408,-5.5168E-05],[47.0188,-5.8777E-05],[47.022192,-5.4137E-05],[47.025584,-5.3621E-05],[47.028976,-5.0528E-05],[47.032368,-4.6403E-05],[47.03576,-5.0012E-05],[47.039152,-5.3621E-05],[47.042544,-5.5684E-05],[47.045936,-5.3106E-05],[47.049328,-5.0012E-05],[47.05272,-5.6199E-05],[47.056112,-5.6199E-05],[47.059504,-5.0012E-05],[47.062896,-5.0528E-05],[47.066288,-5.3106E-05],[47.06968,-5.3106E-05],[47.073072,-5.1043E-05],[47.076464,-4.9497E-05],[47.079856,-5.0012E-05],[47.083248,-5.0012E-05],[47.08664,-5.4652E-05],[47.090032,-5.5684E-05],[47.093424,-5.1043E-05],[47.096816,-5.1043E-05],[47.100208,-5.1559E-05],[47.1036,-5.1559E-05],[47.106992,-5.3106E-05],[47.110384,-4.8465E-05],[47.113776,-5.0528E-05],[47.117168,-5.259E-05],[47.12056,-4.8981E-05],[47.123952,-5.3106E-05],[47.127344,-5.2074E-05],[47.130736,-5.1043E-05],[47.134128,-5.1559E-05],[47.13752,-5.259E-05],[47.140912,-5.4137E-05],[47.144304,-5.6199E-05],[47.147696,-5.6199E-05],[47.151088,-5.3106E-05],[47.15448,-5.5168E-05],[47.157872,-5.4652E-05],[47.161264,-5.259E-05]]}
-{"quant":[47.4114,-5.3388E-05],"mems":[[47.313904,-5.6715E-05],[47.317296,-5.7746E-05],[47.320688,-5.6199E-05],[47.32408,-5.4652E-05],[47.327472,-5.0012E-05],[47.330864,-5.2074E-05],[47.334256,-5.3621E-05],[47.337648,-4.9497E-05],[47.34104,-5.2074E-05],[47.344432,-5.1559E-05],[47.347824,-5.2074E-05],[47.351216,-5.259E-05],[47.354608,-5.3621E-05],[47.358,-5.8777E-05],[47.361392,-5.5684E-05],[47.364784,-5.3621E-05],[47.368176,-5.259E-05],[47.371568,-5.0528E-05],[47.37496,-5.3106E-05],[47.378352,-5.3106E-05],[47.381744,-5.1559E-05],[47.385136,-5.4652E-05],[47.388528,-5.4652E-05],[47.39192,-5.0012E-05],[47.395312,-5.4137E-05],[47.398704,-5.723E-05],[47.402096,-5.3621E-05],[47.405488,-5.1559E-05],[47.40888,-4.8465E-05],[47.412272,-5.1043E-05],[47.415664,-5.3621E-05],[47.419056,-5.0528E-05],[47.422448,-5.4137E-05],[47.42584,-5.5684E-05],[47.429232,-4.8981E-05],[47.432624,-4.8981E-05],[47.436016,-5.3106E-05],[47.439408,-5.2074E-05],[47.4428,-5.3106E-05],[47.446192,-5.1559E-05],[47.449584,-5.0528E-05],[47.452976,-5.4652E-05],[47.456368,-5.3621E-05],[47.45976,-5.2074E-05],[47.463152,-5.259E-05],[47.466544,-5.8262E-05],[47.469936,-5.8777E-05],[47.473328,-5.8262E-05],[47.47672,-5.9808E-05],[47.480112,-5.6199E-05],[47.483504,-5.4137E-05],[47.486896,-4.9497E-05],[47.490288,-4.8981E-05],[47.49368,-5.723E-05],[47.497072,-5.6199E-05],[47.500464,-5.1559E-05],[47.503856,-4.7434E-05],[47.507248,-5.0528E-05],[47.51064,-5.8777E-05],[47.514032,-5.3106E-05],[47.517424,-4.8981E-05],[47.520816,-5.259E-05],[47.524208,-5.259E-05],[47.5276,-5.3621E-05],[47.530992,-5.2074E-05],[47.534384,-5.2074E-05],[47.537776,-5.259E-05],[47.541168,-5.4652E-05],[47.54456,-5.5168E-05],[47.547952,-5.7746E-05],[47.551344,-5.6199E-05],[47.554736,-5.1043E-05],[47.558128,-5.2074E-05],[47.56152,-5.2074E-05],[47.564912,-5.259E-05],[47.568304,-5.259E-05],[47.571696,-5.5684E-05],[47.575088,-5.8777E-05],[47.57848,-5.5684E-05],[47.581872,-5.1043E-05],[47.585264,-5.4137E-05],[47.588656,-5.3621E-05],[47.592048,-5.1043E-05],[47.59544,-5.5168E-05],[47.598832,-5.0528E-05],[47.602224,-5.3621E-05],[47.605616,-5.2074E-05],[47.609008,-5.1559E-05],[47.6124,-5.4652E-05]]}
-{"quant":[47.9531,-5.3088E-05],"mems":[[47.853232,-5.6199E-05],[47.856624,-5.0012E-05],[47.860016,-5.0012E-05],[47.863408,-4.9497E-05],[47.8668,-4.9497E-05],[47.870192,-5.5168E-05],[47.873584,-5.4137E-05],[47.876976,-5.0528E-05],[47.880368,-4.8981E-05],[47.88376,-5.0528E-05],[47.887152,-5.4137E-05],[47.890544,-5.5684E-05],[47.893936,-5.6199E-05],[47.897328,-5.1559E-05],[47.90072,-5.1043E-05],[47.904112,-5.4137E-05],[47.907504,-5.0528E-05],[47.910896,-5.0012E-05],[47.914288,-5.0528E-05],[47.91768,-5.0528E-05],[47.921072,-5.3621E-05],[47.924464,-5.0528E-05],[47.927856,-5.0528E-05],[47.931248,-5.5168E-05],[47.93464,-5.0012E-05],[47.938032,-4.795E-05],[47.941424,-5.2074E-05],[47.944816,-5.3106E-05],[47.948208,-5.723E-05],[47.9516,-5.6199E-05],[47.954992,-5.0012E-05],[47.958384,-5.0012E-05],[47.961776,-5.3106E-05],[47.965168,-5.2074E-05],[47.96856,-5.3106E-05],[47.971952,-5.1043E-05],[47.975344,-5.1559E-05],[47.978736,-5.5684E-05],[47.982128,-5.4137E-05],[47.98552,-5.8262E-05],[47.988912,-5.6715E-05],[47.992304,-5.1043E-05],[47.995696,-5.3106E-05],[47.999088,-5.3621E-05],[48.00248,-5.259E-05],[48.005872,-5.2074E-05],[48.009264,-5.4652E-05],[48.012656,-5.3106E-05],[48.016048,-5.2074E-05],[48.01944,-5.1559E-05],[48.022832,-5.3106E-05],[48.026224,-5.6199E-05],[48.029616,-5.259E-05],[48.033008,-5.1043E-05],[48.0364,-5.0528E-05],[48.039792,-4.9497E-05],[48.043184,-5.2074E-05],[48.046576,-5.6715E-05],[48.049968,-5.6199E-05],[48.05336,-5.5168E-05],[48.056752,-5.3621E-05],[48.060144,-4.9497E-05],[48.063536,-5.1043E-05],[48.066928,-5.259E-05],[48.07032,-5.6199E-05],[48.073712,-5.5684E-05],[48.077104,-5.4137E-05],[48.080496,-5.7746E-05],[48.083888,-5.3621E-05],[48.08728,-5.2074E-05],[48.090672,-4.9497E-05],[48.094064,-5.1043E-05],[48.097456,-5.259E-05],[48.100848,-5.0528E-05],[48.10424,-5.6199E-05],[48.107632,-5.3621E-05],[48.111024,-5.4137E-05],[48.114416,-5.8777E-05],[48.117808,-5.2074E-05],[48.1212,-5.3106E-05],[48.124592,-5.4137E-05],[48.127984,-5.3106E-05],[48.131376,-5.5168E-05],[48.134768,-5.4652E-05],[48.13816,-4.795E-05],[48.141552,-4.8465E-05],[48.144944,-5.8262E-05],[48.148336,-5.7746E-05],[48.151728,-5.3621E-05],[48.15512,-5.1043E-05]]}
-{"quant":[48.4205,-5.2865E-05],"mems":[[48.321328,-5.259E-05],[48.32472,-5.1559E-05],[48.328112,-5.2074E-05],[48.331504,-5.6715E-05],[48.334896,-4.9497E-05],[48.338288,-5.0012E-05],[48.34168,-5.4652E-05],[48.345072,-5.3106E-05],[48.348464,-5.1043E-05],[48.351856,-4.6919E-05],[48.355248,-5.1043E-05],[48.35864,-5.1559E-05],[48.362032,-5.1559E-05],[48.365424,-5.6199E-05],[48.368816,-5.5168E-05],[48.372208,-5.1043E-05],[48.3756,-4.9497E-05],[48.378992,-5.6715E-05],[48.382384,-5.723E-05],[48.385776,-5.3621E-05],[48.389168,-5.4652E-05],[48.39256,-5.5168E-05],[48.395952,-5.259E-05],[48.399344,-5.259E-05],[48.402736,-5.3621E-05],[48.406128,-5.2074E-05],[48.40952,-5.3106E-05],[48.412912,-5.259E-05],[48.416304,-5.3106E-05],[48.419696,-5.4137E-05],[48.423088,-5.4137E-05],[48.42648,-5.5168E-05],[48.429872,-5.5684E-05],[48.433264,-5.4652E-05],[48.436656,-5.3106E-05],[48.440048,-5.1559E-05],[48.44344,-4.8465E-05],[48.446832,-5.4137E-05],[48.450224,-5.3621E-05],[48.453616,-4.9497E-05],[48.457008,-5.3621E-05],[48.4604,-5.3621E-05],[48.463792,-5.4137E-05],[48.467184,-5.259E-05],[48.470576,-4.795E-05],[48.473968,-4.795E-05],[48.47736,-5.3106E-05],[48.480752,-5.5168E-05],[48.484144,-5.1559E-05],[48.487536,-5.5168E-05],[48.490928,-5.3106E-05],[48.49432,-5.0012E-05],[48.497712,-5.4137E-05],[48.501104,-5.4137E-05],[48.504496,-5.259E-05],[48.507888,-5.1559E-05],[48.51128,-5.3621E-05],[48.514672,-5.2074E-05],[48.518064,-5.2074E-05],[48.521456,-5.7746E-05],[48.524848,-5.5168E-05],[48.52824,-5.0012E-05],[48.531632,-4.7434E-05],[48.535024,-5.3621E-05],[48.538416,-5.5684E-05],[48.541808,-5.2074E-05],[48.5452,-5.259E-05],[48.548592,-5.0528E-05],[48.551984,-5.0528E-05],[48.555376,-4.795E-05],[48.558768,-5.1559E-05],[48.56216,-5.723E-05],[48.565552,-5.3106E-05],[48.568944,-4.795E-05],[48.572336,-5.0012E-05],[48.575728,-5.4137E-05],[48.57912,-5.3106E-05],[48.582512,-5.3621E-05],[48.585904,-5.723E-05],[48.589296,-5.4652E-05],[48.592688,-5.0528E-05],[48.59608,-5.2074E-05],[48.599472,-5.4137E-05],[48.602864,-5.723E-05],[48.606256,-5.4137E-05],[48.609648,-5.3106E-05],[48.61304,-5.259E-05],[48.616432,-4.8981E-05],[48.619824,-5.3106E-05],[48.623216,-5.4137E-05]]}
-{"quant":[48.8831,-5.3655E-05],"mems":[[48.786032,-5.0012E-05],[48.789424,-5.4137E-05],[48.792816,-5.1043E-05],[48.796208,-5.0528E-05],[48.7996,-5.1559E-05],[48.802992,-4.795E-05],[48.806384,-5.2074E-05],[48.809776,-5.6199E-05],[48.813168,-5.1043E-05],[48.81656,-5.0528E-05],[48.819952,-5.6199E-05],[48.823344,-5.6715E-05],[48.826736,-5.4137E-05],[48.830128,-5.4652E-05],[48.83352,-5.259E-05],[48.836912,-5.259E-05],[48.840304,-5.3106E-05],[48.843696,-5.259E-05],[48.847088,-5.6199E-05],[48.85048,-5.4137E-05],[48.853872,-5.259E-05],[48.857264,-5.4137E-05],[48.860656,-5.259E-05],[48.864048,-5.3621E-05],[48.86744,-5.5684E-05],[48.870832,-5.3621E-05],[48.874224,-4.9497E-05],[48.877616,-4.6403E-05],[48.881008,-4.795E-05],[48.8844,-5.0012E-05],[48.887792,-5.259E-05],[48.891184,-5.6715E-05],[48.894576,-5.3621E-05],[48.897968,-5.3106E-05],[48.90136,-5.4137E-05],[48.904752,-5.1043E-05],[48.908144,-5.1559E-05],[48.911536,-5.3621E-05],[48.914928,-5.5684E-05],[48.91832,-5.4652E-05],[48.921712,-5.4137E-05],[48.925104,-5.4137E-05],[48.928496,-5.0012E-05],[48.931888,-5.3621E-05],[48.93528,-5.5684E-05],[48.938672,-5.3621E-05],[48.942064,-5.5684E-05],[48.945456,-5.4137E-05],[48.948848,-5.4137E-05],[48.95224,-5.4652E-05],[48.955632,-5.5684E-05],[48.959024,-5.4137E-05],[48.962416,-5.3621E-05],[48.965808,-5.4137E-05],[48.9692,-5.0528E-05],[48.972592,-5.3621E-05],[48.975984,-5.6715E-05],[48.979376,-5.723E-05],[48.982768,-5.259E-05],[48.98616,-4.8465E-05],[48.989552,-5.5684E-05],[48.992944,-5.6715E-05],[48.996336,-5.4137E-05],[48.999728,-5.3621E-05],[49.00312,-4.8981E-05],[49.006512,-5.3106E-05],[49.009904,-5.6199E-05],[49.013296,-5.259E-05],[49.016688,-5.1559E-05],[49.02008,-5.5168E-05],[49.023472,-5.4652E-05],[49.026864,-5.1559E-05],[49.030256,-5.3621E-05],[49.033648,-5.2074E-05],[49.03704,-5.3621E-05],[49.040432,-5.259E-05],[49.043824,-5.3106E-05],[49.047216,-5.4137E-05],[49.050608,-4.9497E-05],[49.054,-5.3106E-05],[49.057392,-5.6199E-05],[49.060784,-5.3106E-05],[49.064176,-5.259E-05],[49.067568,-5.4137E-05],[49.07096,-5.259E-05],[49.074352,-5.3106E-05],[49.077744,-5.3106E-05],[49.081136,-5.0528E-05],[49.084528,-5.1043E-05]]}
-{"quant":[49.3677,-0.47158],"mems":[[49.335536,-5.5168E-05],[49.338928,-5.1043E-05],[49.34232,-4.8465E-05],[49.345712,-5.1043E-05],[49.349104,-4.8465E-05],[49.352496,-5.2074E-05],[49.355888,-5.2074E-05],[49.35928,-5.1559E-05],[49.362672,-5.1559E-05],[49.366064,-5.2074E-05],[49.369456,-5.3621E-05],[49.372848,-5.259E-05],[49.37624,-5.0528E-05],[49.379632,-4.8981E-05],[49.383024,-5.3106E-05],[49.386416,-4.8981E-05],[49.389808,-4.8465E-05],[49.3932,-5.1043E-05],[49.396592,-4.8465E-05],[49.399984,-5.259E-05],[49.403376,-5.4652E-05],[49.406768,-5.259E-05],[49.41016,-5.1043E-05],[49.413552,-5.3106E-05],[49.416944,-5.0012E-05],[49.420336,-4.5887E-05],[49.423728,-4.7434E-05],[49.42712,-4.8465E-05],[49.430512,-5.4137E-05],[49.433904,-5.5684E-05],[49.437296,-5.1043E-05],[49.440688,-5.259E-05],[49.44408,-5.3106E-05],[49.447472,-5.4137E-05],[49.450864,-5.5684E-05],[49.454256,-4.9497E-05],[49.457648,-5.1559E-05],[49.46104,-5.6199E-05],[49.464432,-5.9293E-05],[49.467824,-5.8262E-05],[49.471216,-5.3621E-05],[49.474608,-5.4137E-05],[49.478,-4.9497E-05],[49.481369,-5.3621E-05],[49.484739,-5.723E-05],[49.488108,-5.1043E-05],[49.491477,-5.259E-05],[49.494847,-5.259E-05],[49.498216,-5.4652E-05],[49.501585,-5.3106E-05],[49.504955,-5.0528E-05],[49.508324,-5.3106E-05],[49.511693,-5.5684E-05],[49.515063,-5.5684E-05],[49.518432,-5.259E-05],[49.521801,-5.4652E-05],[49.525171,-5.7746E-05],[49.52854,-5.6715E-05],[49.531909,-5.5684E-05],[49.535279,-5.1559E-05],[49.538648,-4.8981E-05],[49.542017,-4.9497E-05],[49.545387,-5.0528E-05],[49.548756,-5.1043E-05],[49.552125,-5.2074E-05],[49.555495,-5.3106E-05],[49.558864,-5.1559E-05],[49.562233,-5.2074E-05],[49.565603,-5.723E-05],[49.568972,-5.723E-05],[49.572341,-5.4137E-05],[49.575711,-4.9497E-05],[49.57908,-4.6403E-05],[49.582449,-5.4137E-05],[49.585819,-5.6715E-05],[49.589188,-5.2074E-05],[49.592557,-5.1559E-05],[49.595927,-5.3621E-05],[49.599296,-5.5168E-05],[49.602665,-5.5168E-05],[49.606035,-5.5168E-05],[49.609404,-5.4652E-05],[49.612773,-4.8465E-05],[49.616143,-5.1559E-05],[49.619512,-5.8777E-05],[49.622881,-5.3106E-05],[49.626251,-5.5684E-05],[49.62962,-5.4652E-05]]}
-{"quant":[49.845,-5.2108E-05],"mems":[[49.747547,-5.6715E-05],[49.750916,-5.723E-05],[49.754285,-5.0528E-05],[49.757655,-5.0528E-05],[49.761024,-5.2074E-05],[49.764393,-5.5168E-05],[49.767763,-5.5168E-05],[49.771132,-4.8465E-05],[49.774501,-5.1559E-05],[49.777871,-5.4652E-05],[49.78124,-5.5684E-05],[49.784609,-5.3621E-05],[49.787979,-5.0012E-05],[49.791348,-5.2074E-05],[49.794717,-5.2074E-05],[49.798087,-5.1559E-05],[49.801456,-5.1559E-05],[49.804825,-5.3106E-05],[49.808195,-5.1559E-05],[49.811564,-4.7434E-05],[49.814933,-5.259E-05],[49.818303,-5.7746E-05],[49.821672,-5.4137E-05],[49.825041,-5.5168E-05],[49.828411,-5.1043E-05],[49.83178,-5.0012E-05],[49.835149,-5.6199E-05],[49.838519,-5.3621E-05],[49.841888,-5.5684E-05],[49.845257,-5.0528E-05],[49.848627,-4.8465E-05],[49.851996,-5.3621E-05],[49.855365,-5.3106E-05],[49.858735,-5.5684E-05],[49.862104,-5.4137E-05],[49.865473,-5.723E-05],[49.868843,-5.4137E-05],[49.872212,-5.1559E-05],[49.875581,-5.6715E-05],[49.878951,-5.7746E-05],[49.88232,-5.723E-05],[49.885689,-5.4137E-05],[49.889059,-5.3621E-05],[49.892428,-4.7434E-05],[49.895797,-4.795E-05],[49.899167,-5.4137E-05],[49.902536,-5.3106E-05],[49.905905,-5.0528E-05],[49.909275,-4.6919E-05],[49.912644,-4.8981E-05],[49.916013,-5.4137E-05],[49.919383,-5.2074E-05],[49.922752,-5.0528E-05],[49.926121,-4.7434E-05],[49.929491,-4.6919E-05],[49.93286,-5.2074E-05],[49.936229,-5.2074E-05],[49.939599,-5.1559E-05],[49.942968,-5.0012E-05],[49.946337,-5.1559E-05],[49.949707,-5.3106E-05],[49.953076,-5.3106E-05],[49.956445,-5.7746E-05],[49.959815,-5.723E-05],[49.963184,-5.3621E-05],[49.966553,-5.3106E-05],[49.969923,-5.4652E-05],[49.973292,-5.3621E-05],[49.976661,-5.4652E-05],[49.980031,-5.8262E-05],[49.9834,-5.7746E-05],[49.986769,-5.5684E-05],[49.990139,-5.4137E-05],[49.993508,-5.7746E-05],[49.996877,-5.0528E-05],[50.000247,-5.0012E-05],[50.003616,-5.5684E-05],[50.006985,-4.6403E-05],[50.010355,-4.9497E-05],[50.013724,-5.3106E-05],[50.017093,-5.4137E-05],[50.020463,-5.2074E-05],[50.023832,-5.0012E-05],[50.027201,-5.4137E-05],[50.030571,-4.7434E-05],[50.03394,-5.1043E-05],[50.037309,-5.259E-05],[50.040679,-4.795E-05],[50.044048,-4.9497E-05],[50.047417,-5.0012E-05]]}
-{"quant":[50.4203,-5.3322E-05],"mems":[[50.320333,-4.8465E-05],[50.323703,-5.1043E-05],[50.327072,-5.259E-05],[50.330441,-5.259E-05],[50.333811,-5.5168E-05],[50.33718,-5.5168E-05],[50.340549,-5.1043E-05],[50.343919,-5.2074E-05],[50.347288,-5.723E-05],[50.350657,-5.8777E-05],[50.354027,-5.4652E-05],[50.357396,-5.1043E-05],[50.360765,-5.1559E-05],[50.364135,-5.1559E-05],[50.367504,-5.5684E-05],[50.370873,-5.6199E-05],[50.374243,-5.3621E-05],[50.377612,-5.0012E-05],[50.380981,-4.6403E-05],[50.384351,-5.5684E-05],[50.38772,-5.7746E-05],[50.391089,-5.0528E-05],[50.394459,-5.0012E-05],[50.397828,-5.0528E-05],[50.401197,-5.0012E-05],[50.404567,-5.2074E-05],[50.407936,-5.7746E-05],[50.411305,-5.5168E-05],[50.414675,-5.0012E-05],[50.418044,-5.259E-05],[50.421413,-5.9293E-05],[50.424783,-5.723E-05],[50.428152,-5.259E-05],[50.431521,-5.6715E-05],[50.434891,-5.6199E-05],[50.43826,-5.4137E-05],[50.441629,-5.4652E-05],[50.444999,-5.4652E-05],[50.448368,-5.2074E-05],[50.451737,-5.1043E-05],[50.455107,-5.0528E-05],[50.458476,-4.8465E-05],[50.461845,-5.2074E-05],[50.465215,-5.2074E-05],[50.468584,-5.3106E-05],[50.471953,-5.259E-05],[50.475323,-4.8465E-05],[50.478692,-5.259E-05],[50.482061,-5.3621E-05],[50.485431,-5.1559E-05],[50.4888,-5.1559E-05],[50.492169,-5.1043E-05],[50.495539,-5.1043E-05],[50.498908,-5.3106E-05],[50.502277,-5.5168E-05],[50.505647,-5.9293E-05],[50.509016,-5.6199E-05],[50.512385,-5.0528E-05],[50.515755,-5.5168E-05],[50.519124,-5.2074E-05],[50.522493,-5.4137E-05],[50.525863,-5.4652E-05],[50.529232,-5.4652E-05],[50.532601,-5.6199E-05],[50.535971,-5.1043E-05],[50.53934,-5.4137E-05],[50.542709,-5.3621E-05],[50.546079,-5.4652E-05],[50.549448,-5.2074E-05],[50.552817,-5.259E-05],[50.556187,-5.6199E-05],[50.559556,-5.3621E-05],[50.562925,-5.6199E-05],[50.566295,-5.4137E-05],[50.569664,-5.5168E-05],[50.573033,-5.1559E-05],[50.576403,-5.0012E-05],[50.579772,-5.3106E-05],[50.583141,-4.8465E-05],[50.586511,-5.2074E-05],[50.58988,-5.6715E-05],[50.593249,-5.5168E-05],[50.596619,-4.9497E-05],[50.599988,-5.2074E-05],[50.603357,-5.4652E-05],[50.606727,-5.0528E-05],[50.610096,-5.1043E-05],[50.613465,-5.1559E-05],[50.616835,-5.4652E-05],[50.620204,-5.5168E-05],[50.623573,-5.6199E-05]]}
-{"quant":[50.8864,-5.3209E-05],"mems":[[50.788671,-5.0528E-05],[50.79204,-5.0012E-05],[50.795409,-5.259E-05],[50.798779,-5.2074E-05],[50.802148,-5.4137E-05],[50.805517,-5.4652E-05],[50.808887,-5.1559E-05],[50.812256,-4.8981E-05],[50.815625,-5.2074E-05],[50.818995,-5.8262E-05],[50.822364,-5.5168E-05],[50.825733,-4.6919E-05],[50.829103,-5.1559E-05],[50.832472,-5.4137E-05],[50.835841,-5.1559E-05],[50.839211,-5.2074E-05],[50.84258,-4.5372E-05],[50.845949,-4.5887E-05],[50.849319,-4.795E-05],[50.852688,-4.795E-05],[50.856057,-5.4137E-05],[50.859427,-5.5168E-05],[50.862796,-5.4652E-05],[50.866165,-4.8465E-05],[50.869535,-4.795E-05],[50.872904,-5.6199E-05],[50.876273,-5.6199E-05],[50.879643,-5.5684E-05],[50.883012,-5.2074E-05],[50.886381,-5.0012E-05],[50.889751,-5.1043E-05],[50.89312,-5.3621E-05],[50.896489,-5.5168E-05],[50.899859,-5.3621E-05],[50.903228,-5.259E-05],[50.906597,-4.8465E-05],[50.909967,-5.2074E-05],[50.913336,-5.4137E-05],[50.916705,-5.2074E-05],[50.920075,-4.9497E-05],[50.923444,-4.9497E-05],[50.926813,-5.5168E-05],[50.930183,-5.2074E-05],[50.933552,-5.0528E-05],[50.936921,-5.3621E-05],[50.940291,-5.4137E-05],[50.94366,-5.723E-05],[50.947029,-5.4137E-05],[50.950399,-5.1043E-05],[50.953768,-5.4137E-05],[50.957137,-5.1559E-05],[50.960507,-5.3621E-05],[50.963876,-5.3621E-05],[50.967245,-5.0528E-05],[50.970615,-5.6199E-05],[50.973984,-5.4137E-05],[50.977353,-5.3106E-05],[50.980723,-5.723E-05],[50.984092,-5.6715E-05],[50.987461,-5.5684E-05],[50.990831,-5.4137E-05],[50.9942,-5.3621E-05],[50.997569,-5.4137E-05],[51.000939,-5.1559E-05],[51.004308,-5.2074E-05],[51.007677,-5.3621E-05],[51.011047,-5.4137E-05],[51.014416,-5.3106E-05],[51.017785,-5.0528E-05],[51.021155,-5.6199E-05],[51.024524,-5.259E-05],[51.027893,-5.2074E-05],[51.031263,-5.4137E-05],[51.034632,-5.0012E-05],[51.038001,-5.6715E-05],[51.041371,-5.1559E-05],[51.04474,-4.9497E-05],[51.048109,-5.6199E-05],[51.051479,-5.9293E-05],[51.054848,-5.8262E-05],[51.058217,-5.5168E-05],[51.061587,-5.4137E-05],[51.064956,-5.0528E-05],[51.068325,-5.6715E-05],[51.071695,-5.9808E-05],[51.075064,-5.6199E-05],[51.078433,-5.8262E-05],[51.081803,-5.5168E-05],[51.085172,-5.4137E-05],[51.088541,-5.7746E-05]]}
-{"quant":[51.3508,-5.3072E-05],"mems":[[51.253639,-5.5684E-05],[51.257008,-5.259E-05],[51.260377,-5.0528E-05],[51.263747,-5.4137E-05],[51.267116,-5.2074E-05],[51.270485,-4.9497E-05],[51.273855,-5.0012E-05],[51.277224,-5.1043E-05],[51.280593,-5.2074E-05],[51.283963,-5.0528E-05],[51.287332,-5.3106E-05],[51.290701,-5.6715E-05],[51.294071,-5.5684E-05],[51.29744,-4.9497E-05],[51.300809,-4.8981E-05],[51.304179,-5.2074E-05],[51.307548,-5.5684E-05],[51.310917,-5.6715E-05],[51.314287,-4.8981E-05],[51.317656,-5.1559E-05],[51.321025,-5.0528E-05],[51.324395,-4.9497E-05],[51.327764,-5.3621E-05],[51.331133,-5.1043E-05],[51.334503,-5.6715E-05],[51.337872,-5.6715E-05],[51.341241,-5.5684E-05],[51.344611,-5.6199E-05],[51.34798,-5.2074E-05],[51.351349,-5.259E-05],[51.354719,-5.2074E-05],[51.358088,-5.259E-05],[51.361457,-5.6715E-05],[51.364827,-5.8262E-05],[51.368196,-5.5168E-05],[51.371565,-5.5684E-05],[51.374935,-5.5684E-05],[51.378304,-5.259E-05],[51.381673,-5.2074E-05],[51.385043,-5.1043E-05],[51.388412,-5.3106E-05],[51.391781,-5.6199E-05],[51.395151,-5.3621E-05],[51.39852,-5.0012E-05],[51.401889,-5.2074E-05],[51.405259,-5.259E-05],[51.408628,-5.259E-05],[51.411997,-4.9497E-05],[51.415367,-4.8981E-05],[51.418736,-5.3106E-05],[51.422105,-5.3621E-05],[51.425475,-5.259E-05],[51.428844,-5.259E-05],[51.432213,-5.3106E-05],[51.435583,-5.2074E-05],[51.438952,-5.1559E-05],[51.442321,-5.3106E-05],[51.445691,-5.5168E-05],[51.44906,-5.5168E-05],[51.452429,-5.0012E-05],[51.455799,-5.1043E-05],[51.459168,-5.2074E-05],[51.462537,-5.1559E-05],[51.465907,-4.8981E-05],[51.469276,-4.795E-05],[51.472645,-5.4137E-05],[51.476015,-5.6199E-05],[51.479384,-5.259E-05],[51.482753,-5.1559E-05],[51.486123,-5.4652E-05],[51.489492,-5.6199E-05],[51.492861,-5.0528E-05],[51.496231,-5.0012E-05],[51.4996,-5.0012E-05],[51.502969,-4.7434E-05],[51.506339,-5.4137E-05],[51.509708,-5.5168E-05],[51.513077,-5.259E-05],[51.516447,-5.0012E-05],[51.519816,-4.8465E-05],[51.523185,-5.0528E-05],[51.526555,-5.1043E-05],[51.529924,-5.5684E-05],[51.533293,-5.4652E-05],[51.536663,-5.1559E-05],[51.540032,-5.4652E-05],[51.543401,-5.6715E-05],[51.546771,-5.3106E-05],[51.55014,-5.3621E-05],[51.553509,-5.6199E-05]]}
-{"quant":[51.8028,-0.92295],"mems":[[51.725345,-5.1559E-05],[51.728715,-5.0012E-05],[51.732084,-5.0012E-05],[51.735453,-5.2074E-05],[51.738823,-5.5168E-05],[51.742192,-5.4137E-05],[51.745561,-4.8465E-05],[51.748931,-4.3825E-05],[51.7523,-4.8981E-05],[51.755669,-4.8981E-05],[51.759039,-4.6919E-05],[51.762408,-5.5168E-05],[51.765777,-5.6715E-05],[51.769147,-5.3106E-05],[51.772516,-5.2074E-05],[51.775885,-5.0528E-05],[51.779255,-5.259E-05],[51.782624,-5.259E-05],[51.785993,-4.9497E-05],[51.789363,-5.1559E-05],[51.792732,-5.2074E-05],[51.796101,-5.4652E-05],[51.799471,-5.5168E-05],[51.80284,-5.5684E-05],[51.806209,-5.6199E-05],[51.809579,-5.259E-05],[51.812948,-5.1043E-05],[51.816317,-5.3106E-05],[51.819687,-5.8777E-05],[51.823056,-5.1043E-05],[51.826425,-4.795E-05],[51.829795,-5.3106E-05],[51.833164,-5.4652E-05],[51.836533,-5.4137E-05],[51.839903,-5.259E-05],[51.843272,-5.3106E-05],[51.846641,-4.7434E-05],[51.850011,-4.795E-05],[51.85338,-5.0528E-05],[51.856749,-4.8981E-05],[51.860119,-5.0012E-05],[51.863488,-5.2074E-05],[51.866857,-5.1043E-05],[51.870227,-5.2074E-05],[51.873596,-5.5684E-05],[51.876965,-5.1043E-05],[51.880335,-4.8981E-05],[51.883704,-5.1043E-05],[51.887073,-4.6403E-05],[51.890443,-5.1043E-05],[51.893812,-5.5168E-05],[51.897181,-5.2074E-05],[51.900551,-5.0528E-05],[51.90392,-4.6919E-05],[51.907289,-5.3621E-05],[51.910659,-5.723E-05],[51.914028,-5.3621E-05],[51.917397,-5.259E-05],[51.920767,-5.3621E-05],[51.924136,-5.3621E-05],[51.927505,-5.1043E-05],[51.930875,-5.4652E-05],[51.934244,-5.2074E-05],[51.937613,-5.1043E-05],[51.940983,-5.3106E-05],[51.944352,-5.2074E-05],[51.947721,-5.1559E-05],[51.951091,-5.2074E-05],[51.95446,-5.6199E-05],[51.957829,-5.4652E-05],[51.961199,-5.3106E-05],[51.964568,-5.4652E-05],[51.967937,-5.4652E-05],[51.971307,-5.3621E-05],[51.974676,-5.0528E-05],[51.978045,-5.0528E-05],[51.981415,-5.3106E-05],[51.984784,-5.1559E-05],[51.988153,-5.259E-05],[51.991523,-5.5684E-05],[51.994892,-5.1043E-05],[51.998261,-5.3621E-05],[52.001631,-5.1559E-05],[52.005,-4.7434E-05],[52.008437,-5.1559E-05],[52.011875,-5.0012E-05],[52.015312,-5.1043E-05]]}
-{"quant":[52.2655,-5.3415E-05],"mems":[[52.166555,-5.259E-05],[52.169992,-5.4137E-05],[52.173429,-5.4137E-05],[52.176867,-5.3106E-05],[52.180304,-5.2074E-05],[52.183741,-4.9497E-05],[52.187179,-5.1043E-05],[52.190616,-5.6715E-05],[52.194053,-5.6199E-05],[52.197491,-5.1559E-05],[52.200928,-4.795E-05],[52.204365,-4.8981E-05],[52.207803,-5.4652E-05],[52.21124,-5.1559E-05],[52.214677,-4.4856E-05],[52.218115,-4.5887E-05],[52.221552,-5.2074E-05],[52.224989,-5.0528E-05],[52.228427,-5.0528E-05],[52.231864,-5.4652E-05],[52.235301,-5.259E-05],[52.238739,-5.4137E-05],[52.242176,-5.2074E-05],[52.245613,-4.8981E-05],[52.249051,-5.0528E-05],[52.252488,-5.4137E-05],[52.255925,-5.5684E-05],[52.259363,-5.3621E-05],[52.2628,-5.2074E-05],[52.266237,-5.2074E-05],[52.269675,-5.7746E-05],[52.273112,-5.6199E-05],[52.276549,-5.4652E-05],[52.279987,-5.7746E-05],[52.283424,-5.4652E-05],[52.286861,-5.259E-05],[52.290299,-5.4137E-05],[52.293736,-5.5684E-05],[52.297173,-5.3621E-05],[52.300611,-5.0012E-05],[52.304048,-5.0528E-05],[52.307485,-5.2074E-05],[52.310923,-5.3621E-05],[52.31436,-5.0012E-05],[52.317797,-4.9497E-05],[52.321235,-5.1559E-05],[52.324672,-5.1043E-05],[52.328109,-5.6715E-05],[52.331547,-5.6715E-05],[52.334984,-5.4137E-05],[52.338421,-5.4652E-05],[52.341859,-5.2074E-05],[52.345296,-5.259E-05],[52.348733,-5.5168E-05],[52.352171,-5.3106E-05],[52.355608,-5.0012E-05],[52.359045,-5.3621E-05],[52.362483,-5.3621E-05],[52.36592,-5.259E-05],[52.369357,-5.5168E-05],[52.372795,-5.4652E-05],[52.376232,-5.6715E-05],[52.379669,-5.4137E-05],[52.383107,-5.1043E-05],[52.386544,-5.1559E-05],[52.389981,-4.8981E-05],[52.393419,-4.8981E-05],[52.396856,-4.8465E-05],[52.400293,-4.8981E-05],[52.403731,-5.1043E-05],[52.407168,-5.0528E-05],[52.410605,-4.8981E-05],[52.414043,-5.4137E-05],[52.41748,-5.723E-05],[52.420917,-5.1043E-05],[52.424355,-4.9497E-05],[52.427792,-5.2074E-05],[52.431229,-5.5684E-05],[52.434667,-5.723E-05],[52.438104,-5.2074E-05],[52.441541,-4.795E-05],[52.444979,-5.0528E-05],[52.448416,-5.2074E-05],[52.451853,-5.2074E-05],[52.455291,-5.7746E-05],[52.458728,-5.6199E-05],[52.462165,-5.0012E-05],[52.465603,-5.0528E-05]]}
-{"quant":[52.8145,-5.3432E-05],"mems":[[52.716528,-5.6715E-05],[52.719965,-5.4137E-05],[52.723403,-5.0528E-05],[52.72684,-4.8465E-05],[52.730277,-5.1559E-05],[52.733715,-5.3106E-05],[52.737152,-5.4137E-05],[52.740589,-5.4137E-05],[52.744027,-5.3106E-05],[52.747464,-5.5168E-05],[52.750901,-5.3621E-05],[52.754339,-5.0528E-05],[52.757776,-5.4652E-05],[52.761213,-5.2074E-05],[52.764651,-4.8981E-05],[52.768088,-5.0012E-05],[52.771525,-5.0012E-05],[52.774963,-4.8465E-05],[52.7784,-4.9497E-05],[52.781837,-5.2074E-05],[52.785275,-4.7434E-05],[52.788712,-5.0528E-05],[52.792149,-5.6715E-05],[52.795587,-5.6715E-05],[52.799024,-5.259E-05],[52.802461,-4.9497E-05],[52.805899,-5.3621E-05],[52.809336,-5.4137E-05],[52.812773,-5.259E-05],[52.816211,-5.1559E-05],[52.819648,-5.0528E-05],[52.823085,-5.259E-05],[52.826523,-5.723E-05],[52.82996,-5.3621E-05],[52.833397,-4.9497E-05],[52.836835,-5.5684E-05],[52.840272,-5.4652E-05],[52.843709,-5.3106E-05],[52.847147,-5.5168E-05],[52.850584,-5.5168E-05],[52.854021,-5.5684E-05],[52.857459,-5.3106E-05],[52.860896,-5.3621E-05],[52.864333,-5.5684E-05],[52.867771,-5.5168E-05],[52.871208,-5.4652E-05],[52.874645,-5.3106E-05],[52.878083,-5.259E-05],[52.88152,-5.3621E-05],[52.884957,-5.0528E-05],[52.888395,-5.259E-05],[52.891832,-5.3621E-05],[52.895269,-5.1559E-05],[52.898707,-5.5684E-05],[52.902144,-5.2074E-05],[52.905581,-4.795E-05],[52.909019,-5.723E-05],[52.912456,-5.723E-05],[52.915893,-4.8465E-05],[52.919331,-5.259E-05],[52.922768,-5.3621E-05],[52.926205,-4.8465E-05],[52.929643,-5.2074E-05],[52.93308,-5.2074E-05],[52.936517,-5.1043E-05],[52.939955,-4.795E-05],[52.943392,-5.1559E-05],[52.946829,-6.0839E-05],[52.950267,-5.5168E-05],[52.953704,-5.2074E-05],[52.957141,-5.4137E-05],[52.960579,-5.0528E-05],[52.964016,-5.259E-05],[52.967453,-5.5684E-05],[52.970891,-5.2074E-05],[52.974328,-5.2074E-05],[52.977765,-5.3621E-05],[52.981203,-5.1559E-05],[52.98464,-5.1559E-05],[52.988077,-5.3621E-05],[52.991515,-5.259E-05],[52.994952,-5.1043E-05],[52.998389,-5.1043E-05],[53.001827,-4.8465E-05],[53.005264,-5.1559E-05],[53.008701,-5.1043E-05],[53.012139,-5.1043E-05],[53.015576,-5.259E-05]]}
-{"quant":[53.2924,-5.2315E-05],"mems":[[53.194317,-5.3621E-05],[53.197755,-5.1559E-05],[53.201192,-5.3106E-05],[53.204629,-5.1559E-05],[53.208067,-5.3621E-05],[53.211504,-5.6715E-05],[53.214941,-5.5168E-05],[53.218379,-5.3621E-05],[53.221816,-4.3309E-05],[53.225253,-4.4856E-05],[53.228691,-5.3106E-05],[53.232128,-5.1043E-05],[53.235565,-5.1559E-05],[53.239003,-5.2074E-05],[53.24244,-5.2074E-05],[53.245877,-5.4137E-05],[53.249315,-5.5684E-05],[53.252752,-5.8262E-05],[53.256189,-5.7746E-05],[53.259627,-5.3106E-05],[53.263064,-5.0012E-05],[53.266501,-5.259E-05],[53.269939,-5.5684E-05],[53.273376,-5.5168E-05],[53.276813,-5.3106E-05],[53.280251,-5.0012E-05],[53.283688,-5.0528E-05],[53.287125,-5.3621E-05],[53.290563,-5.4137E-05],[53.294,-5.259E-05],[53.297437,-5.3106E-05],[53.300875,-5.1559E-05],[53.304312,-5.3106E-05],[53.307749,-5.3106E-05],[53.311187,-5.3106E-05],[53.314624,-5.5168E-05],[53.318061,-5.3621E-05],[53.321499,-5.2074E-05],[53.324936,-4.795E-05],[53.328373,-4.8981E-05],[53.331811,-5.4137E-05],[53.335248,-5.2074E-05],[53.338685,-5.0012E-05],[53.342123,-5.3106E-05],[53.34556,-5.259E-05],[53.348997,-4.8465E-05],[53.352435,-5.0528E-05],[53.355872,-5.3106E-05],[53.359309,-5.4652E-05],[53.362747,-5.3106E-05],[53.366184,-5.259E-05],[53.369621,-5.2074E-05],[53.373059,-4.7434E-05],[53.376496,-4.9497E-05],[53.379933,-5.3106E-05],[53.383371,-5.5168E-05],[53.386808,-5.4137E-05],[53.390245,-5.3621E-05],[53.393683,-5.5684E-05],[53.39712,-5.0528E-05],[53.400557,-5.1043E-05],[53.403995,-5.3621E-05],[53.407432,-5.0528E-05],[53.410869,-5.4137E-05],[53.414307,-5.6715E-05],[53.417744,-5.5168E-05],[53.421181,-5.259E-05],[53.424619,-4.5372E-05],[53.428056,-4.6919E-05],[53.431493,-5.4652E-05],[53.434931,-5.3106E-05],[53.438368,-5.1559E-05],[53.441805,-5.4137E-05],[53.445243,-5.5684E-05],[53.44868,-5.259E-05],[53.452117,-5.259E-05],[53.455555,-5.4652E-05],[53.458992,-5.3621E-05],[53.462429,-5.4137E-05],[53.465867,-5.4137E-05],[53.469304,-5.259E-05],[53.472741,-5.259E-05],[53.476179,-5.3621E-05],[53.479616,-5.4137E-05],[53.483053,-5.5168E-05],[53.486491,-5.1043E-05],[53.489928,-5.3621E-05],[53.493365,-5.9293E-05]]}
-{"quant":[53.7969,-5.2831E-05],"mems":[[53.699605,-5.3621E-05],[53.703043,-5.259E-05],[53.70648,-5.4652E-05],[53.709917,-5.6199E-05],[53.713355,-5.6199E-05],[53.716792,-5.5168E-05],[53.720229,-5.2074E-05],[53.723667,-4.7434E-05],[53.727104,-5.0528E-05],[53.730541,-5.4652E-05],[53.733979,-5.2074E-05],[53.737416,-5.4137E-05],[53.740853,-5.259E-05],[53.744291,-5.1043E-05],[53.747728,-5.4137E-05],[53.751165,-5.5684E-05],[53.754603,-5.4137E-05],[53.75804,-5.1043E-05],[53.761477,-5.5168E-05],[53.764915,-5.5684E-05],[53.768352,-5.3621E-05],[53.771789,-5.5684E-05],[53.775227,-5.3106E-05],[53.778664,-5.5168E-05],[53.782101,-5.3106E-05],[53.785539,-5.0012E-05],[53.788976,-5.4652E-05],[53.792413,-5.0528E-05],[53.795851,-4.5372E-05],[53.799288,-4.9497E-05],[53.802725,-5.3106E-05],[53.806163,-5.0012E-05],[53.8096,-5.259E-05],[53.813037,-5.6715E-05],[53.816475,-5.5168E-05],[53.819912,-5.5684E-05],[53.823349,-5.5168E-05],[53.826787,-5.0528E-05],[53.830224,-5.4652E-05],[53.833661,-5.8777E-05],[53.837099,-4.9497E-05],[53.840536,-5.0528E-05],[53.843973,-5.3106E-05],[53.847411,-4.9497E-05],[53.850848,-4.9497E-05],[53.854285,-5.1559E-05],[53.857723,-5.5168E-05],[53.86116,-5.4137E-05],[53.864597,-5.5168E-05],[53.868035,-5.4137E-05],[53.871472,-5.4652E-05],[53.874909,-5.3621E-05],[53.878347,-5.0012E-05],[53.881784,-5.1559E-05],[53.885221,-5.1043E-05],[53.888659,-5.4137E-05],[53.892096,-5.5684E-05],[53.895533,-5.1043E-05],[53.898971,-4.8981E-05],[53.902408,-5.5168E-05],[53.905845,-5.8262E-05],[53.909283,-5.4652E-05],[53.91272,-5.3106E-05],[53.916157,-5.0528E-05],[53.919595,-5.3106E-05],[53.923032,-5.3621E-05],[53.926469,-5.1559E-05],[53.929907,-5.4652E-05],[53.933344,-5.3621E-05],[53.936781,-5.0012E-05],[53.940219,-4.7434E-05],[53.943656,-5.1043E-05],[53.947093,-5.3621E-05],[53.950531,-5.6199E-05],[53.953968,-5.7746E-05],[53.957405,-5.0012E-05],[53.960843,-5.0012E-05],[53.96428,-5.0528E-05],[53.967717,-5.2074E-05],[53.971155,-5.6715E-05],[53.974592,-5.2074E-05],[53.978029,-5.259E-05],[53.981467,-5.4652E-05],[53.984904,-5.4137E-05],[53.988341,-5.3106E-05],[53.991779,-5.259E-05],[53.995216,-4.9497E-05],[53.998653,-4.5372E-05]]}
-{"quant":[54.2785,-5.2917E-05],"mems":[[54.180832,-5.0528E-05],[54.184269,-5.1559E-05],[54.187707,-5.5168E-05],[54.191144,-4.8981E-05],[54.194581,-4.8981E-05],[54.198019,-5.1559E-05],[54.201456,-4.6919E-05],[54.204893,-4.9497E-05],[54.208331,-5.4652E-05],[54.211768,-5.3621E-05],[54.215205,-5.5168E-05],[54.218643,-5.0528E-05],[54.22208,-5.1043E-05],[54.225517,-5.4137E-05],[54.228955,-5.4137E-05],[54.232392,-5.723E-05],[54.235829,-5.3106E-05],[54.239267,-5.3106E-05],[54.242704,-4.8465E-05],[54.246141,-5.1559E-05],[54.249579,-5.5684E-05],[54.253016,-4.795E-05],[54.256453,-5.259E-05],[54.259891,-5.0528E-05],[54.263328,-4.9497E-05],[54.266765,-5.7746E-05],[54.270203,-5.8262E-05],[54.27364,-5.4652E-05],[54.277077,-5.259E-05],[54.280515,-5.0528E-05],[54.283952,-4.9497E-05],[54.287389,-5.1559E-05],[54.290827,-5.4137E-05],[54.294264,-5.6199E-05],[54.297701,-5.259E-05],[54.301139,-5.0012E-05],[54.304576,-5.3106E-05],[54.308013,-5.2074E-05],[54.311451,-5.0528E-05],[54.314888,-5.259E-05],[54.318325,-5.1559E-05],[54.321763,-5.0528E-05],[54.3252,-5.4137E-05],[54.328637,-5.5168E-05],[54.332075,-5.4137E-05],[54.335512,-5.4137E-05],[54.338949,-5.5168E-05],[54.342387,-5.1559E-05],[54.345824,-5.3621E-05],[54.349261,-5.723E-05],[54.352699,-5.1559E-05],[54.356136,-5.1043E-05],[54.359573,-5.2074E-05],[54.363011,-5.3106E-05],[54.366448,-5.7746E-05],[54.369885,-5.6715E-05],[54.373323,-5.4137E-05],[54.37676,-5.3621E-05],[54.380197,-4.7434E-05],[54.383635,-5.0528E-05],[54.387072,-5.8777E-05],[54.390509,-5.4137E-05],[54.393947,-5.3106E-05],[54.397384,-5.1043E-05],[54.400821,-4.6919E-05],[54.404259,-5.259E-05],[54.407696,-5.1043E-05],[54.411133,-5.3621E-05],[54.414571,-5.259E-05],[54.418008,-5.259E-05],[54.421445,-5.8777E-05],[54.424883,-5.2074E-05],[54.42832,-5.3106E-05],[54.431757,-5.7746E-05],[54.435195,-5.1559E-05],[54.438632,-5.2074E-05],[54.442069,-5.5684E-05],[54.445507,-5.1559E-05],[54.448944,-5.3106E-05],[54.452381,-5.9808E-05],[54.455819,-5.723E-05],[54.459256,-5.3106E-05],[54.462693,-5.5168E-05],[54.466131,-5.8262E-05],[54.469568,-5.6199E-05],[54.473005,-5.5684E-05],[54.476443,-5.5168E-05],[54.47988,-5.1559E-05]]}
-{"quant":[54.7736,-5.3226E-05],"mems":[[54.675808,-5.4137E-05],[54.679245,-4.9497E-05],[54.682683,-5.3106E-05],[54.68612,-5.4137E-05],[54.689557,-5.3621E-05],[54.692995,-5.5168E-05],[54.696432,-5.3621E-05],[54.699869,-5.3621E-05],[54.703307,-5.4652E-05],[54.706744,-5.4652E-05],[54.710181,-5.3621E-05],[54.713619,-5.3621E-05],[54.717056,-5.3106E-05],[54.720493,-5.3621E-05],[54.723931,-5.5684E-05],[54.727368,-6.0324E-05],[54.730805,-5.8262E-05],[54.734243,-4.8465E-05],[54.73768,-4.8981E-05],[54.741117,-4.8981E-05],[54.744555,-4.795E-05],[54.747992,-5.0012E-05],[54.751429,-5.259E-05],[54.754867,-5.5684E-05],[54.758304,-5.3106E-05],[54.761741,-5.0012E-05],[54.765179,-5.2074E-05],[54.768616,-5.259E-05],[54.772053,-5.0528E-05],[54.775491,-5.3106E-05],[54.778928,-5.6199E-05],[54.782365,-5.3106E-05],[54.785803,-5.4137E-05],[54.78924,-5.3621E-05],[54.792677,-5.1043E-05],[54.796115,-5.4137E-05],[54.799552,-5.3621E-05],[54.802989,-5.1043E-05],[54.806427,-5.3621E-05],[54.809864,-5.7746E-05],[54.813301,-5.723E-05],[54.816739,-5.0528E-05],[54.820176,-5.0528E-05],[54.823613,-5.1559E-05],[54.827051,-5.0528E-05],[54.830488,-5.1559E-05],[54.833925,-5.259E-05],[54.837363,-5.4652E-05],[54.8408,-4.8981E-05],[54.844237,-5.6199E-05],[54.847675,-5.723E-05],[54.851112,-4.9497E-05],[54.854549,-5.2074E-05],[54.857987,-5.1559E-05],[54.861424,-5.4652E-05],[54.864861,-5.3621E-05],[54.868299,-5.6199E-05],[54.871736,-5.5168E-05],[54.875173,-5.1043E-05],[54.878611,-5.5684E-05],[54.882048,-5.2074E-05],[54.885485,-4.8981E-05],[54.888923,-5.1559E-05],[54.89236,-5.6715E-05],[54.895797,-5.8262E-05],[54.899235,-5.3106E-05],[54.902672,-5.7746E-05],[54.906109,-5.9293E-05],[54.909547,-5.5168E-05],[54.912984,-5.5168E-05],[54.916421,-5.2074E-05],[54.919859,-4.7434E-05],[54.923296,-4.7434E-05],[54.926733,-5.5684E-05],[54.930171,-5.259E-05],[54.933608,-4.8465E-05],[54.937045,-5.4652E-05],[54.940483,-5.2074E-05],[54.94392,-5.1559E-05],[54.947357,-5.1043E-05],[54.950795,-4.795E-05],[54.954232,-5.5684E-05],[54.957669,-5.4137E-05],[54.961107,-4.8465E-05],[54.964544,-5.4137E-05],[54.967981,-5.8262E-05],[54.971419,-5.6199E-05],[54.974856,-5.1043E-05]]}
-{"quant":[55.4481,-5.2865E-05],"mems":[[55.349525,-6.0839E-05],[55.352963,-5.6715E-05],[55.3564,-5.3621E-05],[55.359837,-5.4652E-05],[55.363275,-5.6199E-05],[55.366712,-5.6715E-05],[55.370149,-5.3106E-05],[55.373587,-5.3106E-05],[55.377024,-5.5684E-05],[55.380461,-5.259E-05],[55.383899,-5.0528E-05],[55.387336,-5.1559E-05],[55.390773,-5.4137E-05],[55.394211,-5.6199E-05],[55.397648,-5.1043E-05],[55.401085,-5.0528E-05],[55.404523,-5.3621E-05],[55.40796,-5.0528E-05],[55.411397,-4.9497E-05],[55.414835,-5.3621E-05],[55.418272,-5.5684E-05],[55.421709,-5.2074E-05],[55.425147,-4.8465E-05],[55.428584,-5.2074E-05],[55.432021,-5.3621E-05],[55.435459,-4.8981E-05],[55.438896,-5.259E-05],[55.442333,-5.4137E-05],[55.445771,-5.4652E-05],[55.449208,-5.259E-05],[55.452645,-4.6919E-05],[55.456083,-5.259E-05],[55.45952,-5.4137E-05],[55.462957,-5.2074E-05],[55.466395,-5.2074E-05],[55.469832,-5.2074E-05],[55.473269,-5.3621E-05],[55.476707,-5.3106E-05],[55.480144,-5.2074E-05],[55.483581,-5.0528E-05],[55.487019,-5.7746E-05],[55.490456,-6.2386E-05],[55.493893,-5.3106E-05],[55.497331,-4.8981E-05],[55.500768,-5.0528E-05],[55.504205,-5.2074E-05],[55.507643,-5.4137E-05],[55.51108,-5.259E-05],[55.514517,-5.1043E-05],[55.517955,-5.0012E-05],[55.521392,-5.2074E-05],[55.524829,-5.259E-05],[55.528267,-5.3621E-05],[55.531704,-5.4137E-05],[55.535141,-5.3106E-05],[55.538579,-5.1043E-05],[55.542016,-5.0528E-05],[55.545453,-5.6199E-05],[55.548891,-5.8262E-05],[55.552328,-5.5168E-05],[55.555765,-5.0012E-05],[55.559203,-4.8465E-05],[55.56264,-5.1559E-05],[55.566077,-5.4652E-05],[55.569515,-5.6715E-05],[55.572952,-5.3106E-05],[55.576389,-5.1559E-05],[55.579827,-5.259E-05],[55.583264,-5.4137E-05],[55.586701,-5.8777E-05],[55.590139,-5.259E-05],[55.593576,-5.0012E-05],[55.597013,-5.3106E-05],[55.600451,-5.0012E-05],[55.603888,-5.259E-05],[55.607325,-5.6199E-05],[55.610763,-5.4137E-05],[55.6142,-5.3106E-05],[55.617637,-5.2074E-05],[55.621075,-5.259E-05],[55.624512,-5.6715E-05],[55.627949,-5.6199E-05],[55.631387,-4.9497E-05],[55.634824,-5.0528E-05],[55.638261,-5.0528E-05],[55.641699,-4.8465E-05],[55.645136,-5.6199E-05],[55.648573,-5.9293E-05]]}
-{"quant":[55.9461,-5.4206E-05],"mems":[[55.847939,-5.723E-05],[55.851376,-5.0012E-05],[55.854813,-5.0528E-05],[55.858251,-5.2074E-05],[55.861688,-5.0012E-05],[55.865125,-5.0012E-05],[55.868563,-5.3621E-05],[55.872,-5.5168E-05],[55.875437,-5.3621E-05],[55.878875,-5.5168E-05],[55.882312,-5.4652E-05],[55.885749,-5.1559E-05],[55.889187,-5.4652E-05],[55.892624,-5.7746E-05],[55.896061,-5.4652E-05],[55.899499,-5.2074E-05],[55.902936,-5.5168E-05],[55.906373,-5.5684E-05],[55.909811,-5.259E-05],[55.913248,-5.1043E-05],[55.916685,-5.2074E-05],[55.920123,-5.2074E-05],[55.92356,-5.4652E-05],[55.926997,-5.5684E-05],[55.930435,-5.3621E-05],[55.933872,-5.3621E-05],[55.937309,-5.4652E-05],[55.940747,-5.6715E-05],[55.944184,-5.6715E-05],[55.947621,-5.5684E-05],[55.951059,-5.3621E-05],[55.954496,-5.4652E-05],[55.957933,-5.5168E-05],[55.961371,-5.1043E-05],[55.964808,-5.0012E-05],[55.968245,-5.259E-05],[55.971683,-5.3621E-05],[55.97512,-5.6715E-05],[55.978557,-5.5684E-05],[55.981995,-5.4137E-05],[55.985432,-5.7746E-05],[55.988869,-5.9808E-05],[55.992307,-6.0839E-05],[55.995744,-5.6715E-05],[55.999181,-5.1559E-05],[56.002619,-5.1043E-05],[56.006056,-5.3106E-05],[56.009493,-5.5168E-05],[56.012931,-4.8981E-05],[56.016368,-5.0012E-05],[56.019805,-5.4137E-05],[56.023243,-5.259E-05],[56.02668,-5.7746E-05],[56.030117,-5.4137E-05],[56.033555,-5.259E-05],[56.036992,-5.3106E-05],[56.040429,-5.3621E-05],[56.043867,-5.8262E-05],[56.047304,-5.2074E-05],[56.050741,-5.259E-05],[56.054179,-5.6199E-05],[56.057616,-5.4137E-05],[56.061053,-4.8981E-05],[56.064491,-4.8981E-05],[56.067928,-5.8262E-05],[56.071365,-5.4137E-05],[56.074803,-4.9497E-05],[56.07824,-5.0528E-05],[56.081677,-4.8465E-05],[56.085115,-5.2074E-05],[56.088552,-5.259E-05],[56.091989,-5.259E-05],[56.095427,-5.2074E-05],[56.098864,-4.7434E-05],[56.102301,-5.0528E-05],[56.105739,-5.259E-05],[56.109176,-5.3106E-05],[56.112613,-5.6199E-05],[56.116051,-5.259E-05],[56.119488,-5.0012E-05],[56.122925,-5.0528E-05],[56.126363,-5.1043E-05],[56.1298,-5.5168E-05],[56.133237,-5.5684E-05],[56.136675,-5.2074E-05],[56.140112,-5.0528E-05],[56.143549,-5.2074E-05],[56.146987,-5.3621E-05]]}
-{"quant":[56.4332,-5.3312E-05],"mems":[[56.33604,-5.5168E-05],[56.339477,-5.1043E-05],[56.342915,-5.2074E-05],[56.346352,-5.5684E-05],[56.349789,-5.5684E-05],[56.353227,-5.4652E-05],[56.356664,-5.5168E-05],[56.360101,-5.6715E-05],[56.363539,-5.4137E-05],[56.366976,-5.4137E-05],[56.370413,-5.4652E-05],[56.373851,-5.4137E-05],[56.377288,-5.5684E-05],[56.380725,-5.0528E-05],[56.384163,-5.0012E-05],[56.3876,-5.1559E-05],[56.391037,-5.3106E-05],[56.394475,-5.3106E-05],[56.397912,-4.7434E-05],[56.401349,-4.8981E-05],[56.404787,-5.6199E-05],[56.408224,-5.7746E-05],[56.411661,-5.2074E-05],[56.415099,-5.2074E-05],[56.418536,-5.3106E-05],[56.421973,-5.4137E-05],[56.425411,-5.723E-05],[56.428848,-5.6199E-05],[56.432285,-5.3106E-05],[56.435723,-5.4137E-05],[56.43916,-5.6199E-05],[56.442597,-5.5168E-05],[56.446035,-5.3106E-05],[56.449472,-5.0528E-05],[56.452909,-5.3621E-05],[56.456347,-5.2074E-05],[56.459784,-5.0528E-05],[56.463221,-5.5168E-05],[56.466659,-5.3621E-05],[56.470096,-5.4652E-05],[56.473533,-5.5168E-05],[56.476971,-5.4137E-05],[56.480408,-4.795E-05],[56.483845,-5.1043E-05],[56.487283,-6.0324E-05],[56.49072,-5.723E-05],[56.494157,-5.4652E-05],[56.497595,-5.259E-05],[56.501032,-5.3621E-05],[56.504469,-5.4137E-05],[56.507907,-5.4137E-05],[56.511344,-5.3106E-05],[56.514781,-5.0012E-05],[56.518219,-5.1043E-05],[56.521656,-4.8981E-05],[56.525093,-5.2074E-05],[56.528531,-5.5168E-05],[56.531968,-5.3106E-05],[56.535405,-5.2074E-05],[56.538843,-5.2074E-05],[56.54228,-4.9497E-05],[56.545717,-5.259E-05],[56.549155,-5.3621E-05],[56.552592,-4.9497E-05],[56.556029,-5.2074E-05],[56.559467,-5.0528E-05],[56.562904,-5.1043E-05],[56.566341,-5.4652E-05],[56.569779,-5.6715E-05],[56.573216,-5.723E-05],[56.576653,-5.0528E-05],[56.580091,-4.8465E-05],[56.583528,-4.9497E-05],[56.586965,-5.1043E-05],[56.590403,-5.5684E-05],[56.59384,-5.4652E-05],[56.597277,-5.3621E-05],[56.600715,-5.3106E-05],[56.604152,-5.3106E-05],[56.607589,-5.723E-05],[56.611027,-5.5684E-05],[56.614464,-5.259E-05],[56.617901,-5.0528E-05],[56.621339,-5.1559E-05],[56.624776,-5.5168E-05],[56.628213,-5.5684E-05],[56.631651,-5.3106E-05],[56.635088,-5.3106E-05]]}
-{"quant":[56.9074,-5.3845E-05],"mems":[[56.810392,-5.3106E-05],[56.813829,-5.5168E-05],[56.817267,-5.3621E-05],[56.820704,-5.259E-05],[56.824141,-5.6715E-05],[56.827579,-5.4137E-05],[56.831016,-4.9497E-05],[56.834453,-5.0012E-05],[56.837891,-5.0012E-05],[56.841328,-5.2074E-05],[56.844765,-5.4652E-05],[56.848203,-5.1559E-05],[56.85164,-5.2074E-05],[56.855077,-5.1559E-05],[56.858515,-5.1043E-05],[56.861952,-5.3106E-05],[56.865389,-5.5684E-05],[56.868827,-5.4137E-05],[56.872264,-4.8981E-05],[56.875701,-5.259E-05],[56.879139,-5.2074E-05],[56.882576,-4.795E-05],[56.886013,-5.0012E-05],[56.889451,-5.3621E-05],[56.892888,-5.4652E-05],[56.896325,-5.259E-05],[56.899763,-5.3621E-05],[56.9032,-5.4652E-05],[56.906637,-5.5684E-05],[56.910075,-5.5684E-05],[56.913512,-5.5684E-05],[56.916949,-5.1559E-05],[56.920387,-4.6403E-05],[56.923824,-5.1043E-05],[56.927261,-5.723E-05],[56.930699,-5.5168E-05],[56.934136,-5.1559E-05],[56.937573,-5.4137E-05],[56.941011,-5.4652E-05],[56.944448,-5.6199E-05],[56.947885,-5.723E-05],[56.951323,-5.723E-05],[56.95476,-5.5168E-05],[56.958197,-5.1043E-05],[56.961635,-5.259E-05],[56.965072,-5.3106E-05],[56.968509,-5.259E-05],[56.971947,-5.3621E-05],[56.975384,-4.8465E-05],[56.978821,-5.0012E-05],[56.982259,-5.3106E-05],[56.985696,-5.259E-05],[56.989133,-5.3106E-05],[56.992571,-5.259E-05],[56.996008,-5.6715E-05],[56.999445,-5.9293E-05],[57.002883,-5.723E-05],[57.00632,-5.4137E-05],[57.009757,-5.6199E-05],[57.013195,-5.3621E-05],[57.016632,-5.0528E-05],[57.020069,-5.5168E-05],[57.023507,-5.4652E-05],[57.026944,-5.1559E-05],[57.030381,-5.1043E-05],[57.033819,-5.0012E-05],[57.037256,-5.3106E-05],[57.040693,-5.5168E-05],[57.044131,-5.2074E-05],[57.047568,-5.5684E-05],[57.051005,-5.6715E-05],[57.054443,-4.9497E-05],[57.05788,-5.1559E-05],[57.061317,-5.2074E-05],[57.064755,-5.4137E-05],[57.068192,-5.3621E-05],[57.071629,-5.2074E-05],[57.075067,-5.4137E-05],[57.078504,-5.259E-05],[57.081941,-5.259E-05],[57.085379,-5.3106E-05],[57.088816,-5.3106E-05],[57.092253,-4.9497E-05],[57.095691,-4.7434E-05],[57.099128,-5.1043E-05],[57.102565,-5.4137E-05],[57.106003,-5.4652E-05],[57.10944,-4.8465E-05]]}
-{"quant":[57.393,-5.3106E-05],"mems":[[57.295108,-5.0012E-05],[57.298547,-4.9497E-05],[57.301985,-5.2074E-05],[57.305424,-5.6199E-05],[57.308863,-5.4137E-05],[57.312301,-5.2074E-05],[57.31574,-5.2074E-05],[57.319179,-4.9497E-05],[57.322617,-5.259E-05],[57.326056,-5.4137E-05],[57.329495,-5.7746E-05],[57.332933,-5.4652E-05],[57.336372,-4.7434E-05],[57.339811,-5.1043E-05],[57.343249,-5.0012E-05],[57.346688,-5.1559E-05],[57.350127,-5.9808E-05],[57.353565,-5.5684E-05],[57.357004,-5.6199E-05],[57.360443,-6.0324E-05],[57.363881,-5.5684E-05],[57.36732,-5.6715E-05],[57.370759,-5.2074E-05],[57.374197,-4.9497E-05],[57.377636,-5.5168E-05],[57.381075,-5.2074E-05],[57.384513,-5.3621E-05],[57.387952,-5.3621E-05],[57.391391,-5.1043E-05],[57.394829,-5.1559E-05],[57.398268,-5.4137E-05],[57.401707,-5.8777E-05],[57.405145,-5.3106E-05],[57.408584,-5.1043E-05],[57.412023,-5.5684E-05],[57.415461,-5.3621E-05],[57.4189,-5.3106E-05],[57.422339,-5.2074E-05],[57.425777,-5.1559E-05],[57.429216,-5.259E-05],[57.432655,-5.4652E-05],[57.436093,-5.4652E-05],[57.439532,-5.0528E-05],[57.442971,-4.8981E-05],[57.446409,-5.259E-05],[57.449848,-5.8262E-05],[57.453287,-5.6199E-05],[57.456725,-5.4137E-05],[57.460164,-5.2074E-05],[57.463603,-5.2074E-05],[57.467041,-5.6715E-05],[57.47048,-5.259E-05],[57.473919,-5.0012E-05],[57.477357,-5.1043E-05],[57.480796,-5.1559E-05],[57.484235,-5.259E-05],[57.487673,-5.1043E-05],[57.491112,-5.3106E-05],[57.494551,-5.3106E-05],[57.497989,-5.1043E-05],[57.501428,-5.2074E-05],[57.504867,-5.1043E-05],[57.508305,-5.3106E-05],[57.511744,-5.3621E-05],[57.515183,-5.4137E-05],[57.518621,-5.7746E-05],[57.52206,-5.2074E-05],[57.525499,-5.1559E-05],[57.528937,-5.6715E-05],[57.532376,-5.8777E-05],[57.535815,-5.4652E-05],[57.539253,-5.0012E-05],[57.542692,-5.4137E-05],[57.546131,-5.2074E-05],[57.549569,-5.1043E-05],[57.553008,-5.5684E-05],[57.556447,-5.2074E-05],[57.559885,-5.3621E-05],[57.563324,-5.5168E-05],[57.566763,-5.3106E-05],[57.570201,-5.723E-05],[57.57364,-5.5168E-05],[57.577079,-4.9497E-05],[57.580517,-5.259E-05],[57.583956,-5.4652E-05],[57.587395,-5.6715E-05],[57.590833,-5.9808E-05],[57.594272,-5.4137E-05]]}
-{"quant":[58.02,-5.3638E-05],"mems":[[57.920945,-5.0528E-05],[57.924384,-5.5168E-05],[57.927823,-5.2074E-05],[57.931261,-5.4652E-05],[57.9347,-5.4652E-05],[57.938139,-4.9497E-05],[57.941577,-5.259E-05],[57.945016,-5.5684E-05],[57.948455,-5.1559E-05],[57.951893,-5.1043E-05],[57.955332,-5.1559E-05],[57.958771,-4.9497E-05],[57.962209,-5.259E-05],[57.965648,-5.6199E-05],[57.969087,-5.5684E-05],[57.972525,-5.4137E-05],[57.975964,-5.0528E-05],[57.979403,-4.6919E-05],[57.982841,-4.6919E-05],[57.98628,-5.5684E-05],[57.989719,-5.4137E-05],[57.993157,-4.9497E-05],[57.996596,-5.5684E-05],[58.000035,-5.4652E-05],[58.003473,-5.7746E-05],[58.006912,-5.8262E-05],[58.010351,-5.5684E-05],[58.013789,-5.7746E-05],[58.017228,-5.1559E-05],[58.020667,-5.5684E-05],[58.024105,-5.723E-05],[58.027544,-5.4652E-05],[58.030983,-5.4137E-05],[58.034421,-4.8981E-05],[58.03786,-5.1559E-05],[58.041299,-5.259E-05],[58.044737,-5.259E-05],[58.048176,-5.4137E-05],[58.051615,-5.3106E-05],[58.055053,-5.0012E-05],[58.058492,-5.2074E-05],[58.061931,-5.3106E-05],[58.065369,-5.3621E-05],[58.068808,-5.723E-05],[58.072247,-5.3621E-05],[58.075685,-5.2074E-05],[58.079124,-5.3106E-05],[58.082563,-5.6199E-05],[58.086001,-5.8777E-05],[58.08944,-5.6199E-05],[58.092879,-5.4652E-05],[58.096317,-5.1043E-05],[58.099756,-4.795E-05],[58.103195,-5.4652E-05],[58.106633,-5.5168E-05],[58.110072,-5.3106E-05],[58.113511,-5.5684E-05],[58.116949,-5.1559E-05],[58.120388,-5.4652E-05],[58.123827,-5.723E-05],[58.127265,-5.4137E-05],[58.130704,-5.5684E-05],[58.134143,-5.6199E-05],[58.137581,-5.6199E-05],[58.14102,-5.3621E-05],[58.144459,-5.5684E-05],[58.147897,-5.723E-05],[58.151336,-5.4137E-05],[58.154775,-5.6715E-05],[58.158213,-5.259E-05],[58.161652,-5.1559E-05],[58.165091,-5.5168E-05],[58.168529,-5.4137E-05],[58.171968,-5.5684E-05],[58.175407,-5.2074E-05],[58.178845,-5.0012E-05],[58.182284,-5.5684E-05],[58.185723,-5.7746E-05],[58.189161,-5.7746E-05],[58.1926,-5.259E-05],[58.196039,-5.3621E-05],[58.199477,-5.4652E-05],[58.202916,-5.259E-05],[58.206355,-5.8777E-05],[58.209793,-5.7746E-05],[58.213232,-5.5168E-05],[58.216671,-5.3106E-05],[58.220109,-5.0528E-05]]}
-{"quant":[58.4926,-5.381E-05],"mems":[[58.395481,-5.3621E-05],[58.39892,-5.5684E-05],[58.402359,-5.4137E-05],[58.405797,-5.6199E-05],[58.409236,-5.6199E-05],[58.412675,-4.9497E-05],[58.416113,-4.9497E-05],[58.419552,-5.1559E-05],[58.422991,-5.3106E-05],[58.426429,-5.3106E-05],[58.429868,-5.5684E-05],[58.433307,-5.5168E-05],[58.436745,-4.9497E-05],[58.440184,-5.3106E-05],[58.443623,-5.4652E-05],[58.447061,-5.4652E-05],[58.4505,-5.4652E-05],[58.453939,-5.3621E-05],[58.457377,-5.6715E-05],[58.460816,-5.6715E-05],[58.464255,-5.8777E-05],[58.467693,-5.9293E-05],[58.471132,-5.1043E-05],[58.474571,-5.259E-05],[58.478009,-6.0324E-05],[58.481448,-5.6199E-05],[58.484887,-5.259E-05],[58.488325,-5.4652E-05],[58.491764,-5.2074E-05],[58.495203,-5.1559E-05],[58.498641,-5.9808E-05],[58.50208,-5.723E-05],[58.505519,-5.0012E-05],[58.508957,-5.5684E-05],[58.512396,-5.3621E-05],[58.515835,-4.8465E-05],[58.519273,-5.259E-05],[58.522712,-5.5684E-05],[58.526151,-5.5684E-05],[58.529589,-5.5684E-05],[58.533028,-5.4652E-05],[58.536467,-5.2074E-05],[58.539905,-5.3106E-05],[58.543344,-5.5684E-05],[58.546783,-5.2074E-05],[58.550221,-5.4652E-05],[58.55366,-5.723E-05],[58.557099,-5.0012E-05],[58.560537,-4.7434E-05],[58.563976,-5.723E-05],[58.567415,-6.0324E-05],[58.570853,-5.4137E-05],[58.574292,-5.3106E-05],[58.577731,-4.8981E-05],[58.581169,-5.1043E-05],[58.584608,-5.5168E-05],[58.588047,-5.6715E-05],[58.591485,-5.3621E-05],[58.594924,-5.1043E-05],[58.598363,-5.2074E-05],[58.601801,-5.1559E-05],[58.60524,-5.4137E-05],[58.608679,-5.2074E-05],[58.612117,-5.1043E-05],[58.615556,-5.3621E-05],[58.618995,-5.6199E-05],[58.622433,-5.6715E-05],[58.625872,-5.723E-05],[58.629311,-5.4652E-05],[58.632749,-5.2074E-05],[58.636188,-5.3621E-05],[58.639627,-5.0012E-05],[58.643065,-5.259E-05],[58.646504,-5.5168E-05],[58.649943,-5.6199E-05],[58.653381,-5.5684E-05],[58.65682,-5.4137E-05],[58.660259,-5.5684E-05],[58.663697,-5.5168E-05],[58.667136,-5.8262E-05],[58.670575,-5.5684E-05],[58.674013,-4.8981E-05],[58.677452,-4.8465E-05],[58.680891,-5.3621E-05],[58.684329,-5.4652E-05],[58.687768,-5.2074E-05],[58.691207,-5.3621E-05],[58.694645,-4.8981E-05]]}
-{"quant":[58.9817,-5.2126E-05],"mems":[[58.883772,-5.5168E-05],[58.887211,-5.5168E-05],[58.890649,-5.1559E-05],[58.894088,-5.4137E-05],[58.897527,-4.8465E-05],[58.900965,-5.0012E-05],[58.904404,-5.4137E-05],[58.907843,-5.5168E-05],[58.911281,-5.3621E-05],[58.91472,-4.8981E-05],[58.918159,-5.5684E-05],[58.921597,-5.1043E-05],[58.925036,-4.6403E-05],[58.928475,-5.3106E-05],[58.931913,-5.4137E-05],[58.935352,-5.1559E-05],[58.938791,-4.8981E-05],[58.942229,-5.0012E-05],[58.945668,-5.1559E-05],[58.949107,-5.4652E-05],[58.952545,-5.259E-05],[58.955984,-5.1559E-05],[58.959423,-5.4137E-05],[58.962861,-5.1043E-05],[58.9663,-5.4137E-05],[58.969739,-5.6199E-05],[58.973177,-5.3621E-05],[58.976616,-5.4137E-05],[58.980055,-5.6199E-05],[58.983493,-5.4137E-05],[58.986932,-4.8465E-05],[58.990371,-5.3106E-05],[58.993809,-5.4137E-05],[58.997248,-4.795E-05],[59.000687,-4.8981E-05],[59.004125,-5.259E-05],[59.007564,-5.1559E-05],[59.011003,-4.795E-05],[59.014441,-5.3106E-05],[59.01788,-5.3621E-05],[59.021319,-4.9497E-05],[59.024757,-5.1559E-05],[59.028196,-5.1559E-05],[59.031635,-5.3106E-05],[59.035073,-5.3106E-05],[59.038512,-5.0528E-05],[59.041951,-5.4652E-05],[59.045389,-5.6715E-05],[59.048828,-5.0012E-05],[59.052267,-4.8465E-05],[59.055705,-5.5168E-05],[59.059144,-5.9293E-05],[59.062583,-5.4652E-05],[59.066021,-5.4652E-05],[59.06946,-5.5168E-05],[59.072899,-4.795E-05],[59.076337,-4.8465E-05],[59.079776,-5.3106E-05],[59.083215,-5.0528E-05],[59.086653,-5.1559E-05],[59.090092,-5.259E-05],[59.093531,-4.5372E-05],[59.096969,-4.4856E-05],[59.100408,-5.0012E-05],[59.103847,-5.1043E-05],[59.107285,-5.1043E-05],[59.110724,-5.1559E-05],[59.114163,-5.2074E-05],[59.117601,-5.0528E-05],[59.12104,-5.5168E-05],[59.124479,-5.4652E-05],[59.127917,-5.4652E-05],[59.131356,-5.4652E-05],[59.134795,-5.0528E-05],[59.138233,-4.8465E-05],[59.141672,-4.8981E-05],[59.145111,-5.2074E-05],[59.148549,-5.2074E-05],[59.151988,-5.4652E-05],[59.155427,-5.7746E-05],[59.158865,-5.3106E-05],[59.162304,-5.2074E-05],[59.165743,-5.0528E-05],[59.169181,-4.9497E-05],[59.17262,-5.5684E-05],[59.176059,-5.259E-05],[59.179497,-5.1559E-05],[59.182936,-5.0012E-05]]}
-{"quant":[59.4642,-5.2057E-05],"mems":[[59.365185,-5.9808E-05],[59.368624,-5.8262E-05],[59.372063,-4.9497E-05],[59.375501,-5.5168E-05],[59.37894,-5.6715E-05],[59.382379,-5.5168E-05],[59.385817,-5.6199E-05],[59.389256,-4.9497E-05],[59.392695,-5.0528E-05],[59.396133,-5.1043E-05],[59.399572,-5.259E-05],[59.403011,-5.6199E-05],[59.406449,-5.6715E-05],[59.409888,-5.7746E-05],[59.413327,-5.4652E-05],[59.416765,-5.3106E-05],[59.420204,-4.8465E-05],[59.423643,-4.7434E-05],[59.427081,-5.3621E-05],[59.43052,-5.4652E-05],[59.433959,-5.259E-05],[59.437397,-5.3106E-05],[59.440836,-5.4137E-05],[59.444275,-5.3621E-05],[59.447713,-5.5168E-05],[59.451152,-5.5684E-05],[59.454591,-5.1559E-05],[59.458029,-4.8981E-05],[59.461468,-5.1559E-05],[59.464907,-5.4652E-05],[59.468345,-5.3621E-05],[59.471784,-5.4137E-05],[59.475223,-4.8981E-05],[59.478661,-4.795E-05],[59.4821,-5.4652E-05],[59.485539,-5.3621E-05],[59.488977,-5.4652E-05],[59.492416,-5.3106E-05],[59.495855,-5.0528E-05],[59.499293,-5.4652E-05],[59.502732,-5.3106E-05],[59.506171,-5.2074E-05],[59.509609,-5.8777E-05],[59.513048,-5.4652E-05],[59.516487,-4.5887E-05],[59.519925,-5.3106E-05],[59.523364,-5.3621E-05],[59.526803,-5.0528E-05],[59.530241,-5.2074E-05],[59.53368,-5.0012E-05],[59.537119,-4.7434E-05],[59.540557,-4.6919E-05],[59.543996,-5.0012E-05],[59.547435,-4.795E-05],[59.550873,-5.259E-05],[59.554312,-5.3621E-05],[59.557751,-5.2074E-05],[59.561189,-5.4137E-05],[59.564628,-5.259E-05],[59.568067,-5.5168E-05],[59.571505,-5.3621E-05],[59.574944,-5.0528E-05],[59.578383,-5.259E-05],[59.581821,-5.6715E-05],[59.58526,-5.5684E-05],[59.588699,-5.3621E-05],[59.592137,-5.2074E-05],[59.595576,-5.1043E-05],[59.599015,-5.3621E-05],[59.602453,-5.3621E-05],[59.605892,-5.5168E-05],[59.609331,-5.259E-05],[59.612769,-5.259E-05],[59.616208,-5.1043E-05],[59.619647,-4.7434E-05],[59.623085,-5.6199E-05],[59.626524,-5.5684E-05],[59.629963,-5.4652E-05],[59.633401,-5.8777E-05],[59.63684,-5.4652E-05],[59.640279,-4.8981E-05],[59.643717,-5.4652E-05],[59.647156,-5.723E-05],[59.650595,-5.2074E-05],[59.654033,-5.4137E-05],[59.657472,-5.1043E-05],[59.660911,-4.7434E-05],[59.664349,-4.9497E-05]]}
-{"quant":[59.9355,-5.3278E-05],"mems":[[59.838336,-5.3106E-05],[59.841848,-5.5684E-05],[59.84536,-5.6199E-05],[59.848872,-5.5684E-05],[59.852384,-5.3621E-05],[59.855896,-5.4652E-05],[59.859408,-5.3106E-05],[59.86292,-5.0528E-05],[59.866432,-5.4137E-05],[59.869944,-5.3621E-05],[59.873456,-5.3106E-05],[59.876968,-5.3621E-05],[59.88048,-5.0012E-05],[59.883992,-5.3621E-05],[59.887504,-5.8777E-05],[59.891016,-5.4652E-05],[59.894528,-5.4652E-05],[59.89804,-5.0528E-05],[59.901552,-5.3621E-05],[59.905064,-5.8777E-05],[59.908576,-5.259E-05],[59.912088,-5.259E-05],[59.9156,-5.3621E-05],[59.919112,-5.3106E-05],[59.922624,-4.9497E-05],[59.926136,-5.259E-05],[59.929648,-6.0839E-05],[59.93316,-5.5684E-05],[59.936672,-5.2074E-05],[59.940184,-5.3106E-05],[59.943696,-5.2074E-05],[59.947208,-5.8777E-05],[59.95072,-5.9808E-05],[59.954232,-5.3621E-05],[59.957744,-5.1559E-05],[59.961256,-5.0012E-05],[59.964768,-5.3106E-05],[59.96828,-5.6199E-05],[59.971792,-5.5168E-05],[59.975304,-5.4137E-05],[59.978816,-5.259E-05],[59.982328,-5.4652E-05],[59.98584,-5.2074E-05],[59.989352,-5.3106E-05],[59.992864,-5.6715E-05],[59.996376,-5.4652E-05],[59.999888,-5.4137E-05],[60.0034,-5.0528E-05],[60.006912,-4.8981E-05],[60.010424,-5.2074E-05],[60.013936,-5.259E-05],[60.017448,-5.1559E-05],[60.02096,-5.1559E-05],[60.024472,-4.795E-05],[60.027984,-5.2074E-05],[60.031496,-5.6199E-05],[60.035008,-5.3106E-05],[60.03852,-5.4137E-05],[60.042032,-5.2074E-05],[60.045544,-5.1559E-05],[60.049056,-5.2074E-05],[60.052568,-5.2074E-05],[60.05608,-5.4652E-05],[60.059592,-5.2074E-05],[60.063104,-5.0012E-05],[60.066616,-5.1043E-05],[60.070128,-5.2074E-05],[60.07364,-5.0012E-05],[60.077152,-4.8465E-05],[60.080664,-4.8465E-05],[60.084176,-5.0012E-05],[60.087688,-5.6715E-05],[60.0912,-5.5684E-05],[60.094712,-5.259E-05],[60.098224,-5.259E-05],[60.101736,-4.8981E-05],[60.105248,-5.1043E-05],[60.10876,-5.3621E-05],[60.112272,-5.6715E-05],[60.115784,-5.6199E-05],[60.119296,-5.3621E-05],[60.122808,-5.6199E-05],[60.12632,-5.4652E-05],[60.129832,-5.4652E-05],[60.133344,-5.2074E-05],[60.136856,-5.0528E-05]]}
-{"quant":[60.4853,-5.3621E-05],"mems":[[60.386208,-5.259E-05],[60.38972,-5.5168E-05],[60.393232,-5.4137E-05],[60.396744,-5.4137E-05],[60.400256,-5.4137E-05],[60.403768,-5.5684E-05],[60.40728,-5.3621E-05],[60.410792,-5.0528E-05],[60.414304,-5.0528E-05],[60.417816,-5.1043E-05],[60.421328,-5.5168E-05],[60.42484,-5.7746E-05],[60.428352,-5.6715E-05],[60.431864,-5.3106E-05],[60.435376,-5.3106E-05],[60.438888,-5.6715E-05],[60.4424,-5.4137E-05],[60.445912,-5.5168E-05],[60.449424,-5.259E-05],[60.452936,-5.0528E-05],[60.456448,-5.8262E-05],[60.45996,-5.4137E-05],[60.463472,-5.0012E-05],[60.466984,-5.2074E-05],[60.470496,-5.259E-05],[60.474008,-4.9497E-05],[60.47752,-4.7434E-05],[60.481032,-5.3621E-05],[60.484544,-5.3106E-05],[60.488056,-5.5168E-05],[60.491568,-5.5684E-05],[60.49508,-4.795E-05],[60.498592,-5.1559E-05],[60.502104,-5.5168E-05],[60.505616,-5.4652E-05],[60.509128,-5.4137E-05],[60.51264,-5.3106E-05],[60.516152,-5.5168E-05],[60.519664,-5.3621E-05],[60.523176,-5.259E-05],[60.526688,-5.3621E-05],[60.5302,-5.5168E-05],[60.533712,-5.1043E-05],[60.537224,-5.1043E-05],[60.540736,-5.6199E-05],[60.544248,-5.6199E-05],[60.54776,-5.4137E-05],[60.551272,-4.795E-05],[60.554784,-5.0528E-05],[60.558296,-5.259E-05],[60.561808,-5.5684E-05],[60.56532,-5.6199E-05],[60.568832,-5.0012E-05],[60.572344,-5.4652E-05],[60.575856,-5.3106E-05],[60.579368,-5.4137E-05],[60.58288,-5.9293E-05],[60.586392,-5.4652E-05],[60.589904,-5.6715E-05],[60.593416,-5.6199E-05],[60.596928,-5.3621E-05],[60.60044,-5.0528E-05],[60.603952,-5.1043E-05],[60.607464,-5.7746E-05],[60.610976,-5.3106E-05],[60.614488,-5.4652E-05],[60.618,-5.3106E-05],[60.621512,-5.0528E-05],[60.625024,-5.723E-05],[60.628536,-5.4652E-05],[60.632048,-5.6199E-05],[60.63556,-5.4137E-05],[60.639072,-5.1559E-05],[60.642584,-5.0012E-05],[60.646096,-5.3106E-05],[60.649608,-5.5168E-05],[60.65312,-5.0012E-05],[60.656632,-5.0012E-05],[60.660144,-5.1559E-05],[60.663656,-5.4137E-05],[60.667168,-5.5168E-05],[60.67068,-5.4137E-05],[60.674192,-4.8981E-05],[60.677704,-4.6919E-05],[60.681216,-5.5168E-05],[60.684728,-5.4652E-05],[60.68824,-5.2074E-05]]}
-{"quant":[60.9301,-5.2968E-05],"mems":[[60.832232,-5.2074E-05],[60.835744,-5.1043E-05],[60.839256,-5.1559E-05],[60.842768,-5.259E-05],[60.84628,-5.1043E-05],[60.849792,-5.2074E-05],[60.853304,-5.4652E-05],[60.856816,-5.2074E-05],[60.860328,-5.2074E-05],[60.86384,-5.5168E-05],[60.867352,-5.6199E-05],[60.870864,-5.4137E-05],[60.874376,-5.3106E-05],[60.877888,-5.0528E-05],[60.8814,-5.259E-05],[60.884912,-5.3621E-05],[60.888424,-5.0012E-05],[60.891936,-5.259E-05],[60.895448,-5.3106E-05],[60.89896,-5.1559E-05],[60.902472,-5.1043E-05],[60.905984,-5.4652E-05],[60.909496,-5.3106E-05],[60.913008,-5.3106E-05],[60.91652,-5.7746E-05],[60.920032,-5.2074E-05],[60.923544,-5.0528E-05],[60.927056,-5.4137E-05],[60.930568,-5.3621E-05],[60.93408,-5.2074E-05],[60.937592,-5.1043E-05],[60.941104,-4.7434E-05],[60.944616,-5.0012E-05],[60.948128,-5.7746E-05],[60.95164,-5.4137E-05],[60.955152,-5.0012E-05],[60.958664,-4.8981E-05],[60.962176,-5.3106E-05],[60.965688,-5.5168E-05],[60.9692,-5.5168E-05],[60.972712,-5.5684E-05],[60.976224,-5.3621E-05],[60.979736,-5.4137E-05],[60.983248,-5.2074E-05],[60.98676,-5.2074E-05],[60.990272,-5.5168E-05],[60.993784,-5.3106E-05],[60.997296,-4.8981E-05],[61.000808,-5.1043E-05],[61.00432,-5.3621E-05],[61.007832,-5.2074E-05],[61.011344,-5.3621E-05],[61.014856,-5.7746E-05],[61.018368,-5.7746E-05],[61.02188,-5.4652E-05],[61.025392,-5.2074E-05],[61.028904,-5.0012E-05],[61.032416,-5.3106E-05],[61.035928,-5.6199E-05],[61.03944,-5.4652E-05],[61.042952,-5.1043E-05],[61.046464,-5.1559E-05],[61.049976,-5.2074E-05],[61.053488,-5.3106E-05],[61.057,-5.5168E-05],[61.060512,-5.3106E-05],[61.064024,-5.3106E-05],[61.067536,-5.3106E-05],[61.071048,-5.4652E-05],[61.07456,-5.5168E-05],[61.078072,-5.3621E-05],[61.081584,-5.3621E-05],[61.085096,-5.3621E-05],[61.088608,-5.6715E-05],[61.09212,-5.5684E-05],[61.095632,-5.5168E-05],[61.099144,-5.3621E-05],[61.102656,-5.3621E-05],[61.106168,-5.5684E-05],[61.10968,-5.5168E-05],[61.113192,-5.5684E-05],[61.116704,-5.6715E-05],[61.120216,-5.723E-05],[61.123728,-5.0012E-05],[61.12724,-5.0528E-05],[61.130752,-5.8777E-05]]}
-{"quant":[61.434,-5.3959E-05],"mems":[[61.334448,-5.6715E-05],[61.33796,-5.4652E-05],[61.341472,-5.1559E-05],[61.344984,-5.1559E-05],[61.348496,-5.3621E-05],[61.352008,-5.2074E-05],[61.35552,-5.259E-05],[61.359032,-5.4137E-05],[61.362544,-4.9497E-05],[61.366056,-5.259E-05],[61.369568,-5.3106E-05],[61.37308,-5.1043E-05],[61.376592,-5.8262E-05],[61.380104,-5.6199E-05],[61.383616,-5.2074E-05],[61.387128,-5.0012E-05],[61.39064,-5.1559E-05],[61.394152,-5.5168E-05],[61.397664,-5.4137E-05],[61.401176,-5.4137E-05],[61.404688,-5.5168E-05],[61.4082,-5.2074E-05],[61.411712,-5.259E-05],[61.415224,-5.5684E-05],[61.418736,-5.3621E-05],[61.422248,-5.5168E-05],[61.42576,-5.6715E-05],[61.429272,-5.1043E-05],[61.432784,-5.259E-05],[61.436296,-5.5168E-05],[61.439808,-5.4137E-05],[61.44332,-5.2074E-05],[61.446832,-5.4137E-05],[61.450344,-5.3621E-05],[61.453856,-4.8465E-05],[61.457368,-5.4137E-05],[61.46088,-5.4652E-05],[61.464392,-5.5168E-05],[61.467904,-5.6715E-05],[61.471416,-5.0012E-05],[61.474928,-5.6715E-05],[61.47844,-5.8262E-05],[61.481952,-5.4652E-05],[61.485464,-5.4652E-05],[61.488976,-5.2074E-05],[61.492488,-5.2074E-05],[61.496,-5.259E-05],[61.499512,-5.6715E-05],[61.503024,-5.5684E-05],[61.506536,-5.3106E-05],[61.510048,-5.3621E-05],[61.51356,-5.259E-05],[61.517072,-5.1559E-05],[61.520584,-5.3621E-05],[61.524096,-5.5168E-05],[61.527608,-5.4137E-05],[61.53112,-5.4652E-05],[61.534632,-5.4652E-05],[61.538144,-5.2074E-05],[61.541656,-5.5684E-05],[61.545168,-6.0324E-05],[61.54868,-5.5684E-05],[61.552192,-5.1559E-05],[61.555704,-5.4137E-05],[61.559216,-5.6199E-05],[61.562728,-5.4652E-05],[61.56624,-5.2074E-05],[61.569752,-5.1043E-05],[61.573264,-5.259E-05],[61.576776,-5.5168E-05],[61.580288,-5.259E-05],[61.5838,-5.3106E-05],[61.587312,-5.723E-05],[61.590824,-5.3621E-05],[61.594336,-5.3621E-05],[61.597848,-5.4137E-05],[61.60136,-5.3106E-05],[61.604872,-5.723E-05],[61.608384,-6.0324E-05],[61.611896,-5.4652E-05],[61.615408,-5.2074E-05],[61.61892,-6.1355E-05],[61.622432,-5.6715E-05],[61.625944,-5.1043E-05],[61.629456,-5.4137E-05],[61.632968,-5.1043E-05],[61.63648,-4.9497E-05]]}
-{"quant":[61.9025,-5.3363E-05],"mems":[[61.805056,-5.2074E-05],[61.808568,-5.3621E-05],[61.81208,-5.9808E-05],[61.815592,-5.4137E-05],[61.819104,-5.1043E-05],[61.822616,-5.259E-05],[61.826128,-5.259E-05],[61.82964,-5.6199E-05],[61.833152,-5.1559E-05],[61.836664,-5.0528E-05],[61.840176,-5.259E-05],[61.843688,-5.3621E-05],[61.8472,-5.3621E-05],[61.850712,-5.4137E-05],[61.854224,-5.723E-05],[61.857736,-5.259E-05],[61.861248,-5.1043E-05],[61.86476,-5.259E-05],[61.868272,-5.259E-05],[61.871784,-5.4137E-05],[61.875296,-5.4652E-05],[61.878808,-5.3621E-05],[61.88232,-5.0012E-05],[61.885832,-5.4137E-05],[61.889344,-5.3106E-05],[61.892856,-5.1043E-05],[61.896368,-5.5168E-05],[61.89988,-5.259E-05],[61.903392,-5.3621E-05],[61.906904,-5.5684E-05],[61.910416,-5.3106E-05],[61.913928,-5.2074E-05],[61.91744,-5.1043E-05],[61.920952,-4.9497E-05],[61.924464,-5.0528E-05],[61.927976,-5.0528E-05],[61.931488,-5.2074E-05],[61.935,-5.4137E-05],[61.938512,-5.4137E-05],[61.942024,-5.5168E-05],[61.945536,-5.3106E-05],[61.949048,-5.7746E-05],[61.95256,-5.9293E-05],[61.956072,-5.6199E-05],[61.959584,-5.8777E-05],[61.963096,-5.3106E-05],[61.966608,-5.259E-05],[61.97012,-5.6715E-05],[61.973632,-5.4137E-05],[61.977144,-5.1043E-05],[61.980656,-4.795E-05],[61.984168,-5.1559E-05],[61.98768,-5.5684E-05],[61.991192,-5.3106E-05],[61.994704,-5.5168E-05],[61.998216,-5.1559E-05],[62.001728,-4.795E-05],[62.00524,-5.3621E-05],[62.008752,-5.6715E-05],[62.012264,-5.7746E-05],[62.015776,-5.8777E-05],[62.019288,-5.7746E-05],[62.0228,-5.3621E-05],[62.026312,-5.1559E-05],[62.029824,-5.3106E-05],[62.033336,-5.4652E-05],[62.036848,-5.4652E-05],[62.04036,-5.3621E-05],[62.043872,-5.4137E-05],[62.047384,-5.1559E-05],[62.050896,-5.0528E-05],[62.054408,-5.3106E-05],[62.05792,-5.5168E-05],[62.061432,-5.3106E-05],[62.064944,-5.2074E-05],[62.068456,-5.3106E-05],[62.071968,-5.5168E-05],[62.07548,-5.3106E-05],[62.078992,-5.2074E-05],[62.082504,-5.5168E-05],[62.086016,-5.259E-05],[62.089528,-5.1043E-05],[62.09304,-5.4137E-05],[62.096552,-5.5168E-05],[62.100064,-5.4137E-05],[62.103576,-5.6199E-05]]}
-{"quant":[62.3678,-0.89678],"mems":[[62.300248,-5.1043E-05],[62.30376,-5.723E-05],[62.307272,-5.5168E-05],[62.310784,-4.8465E-05],[62.314296,-5.2074E-05],[62.317808,-5.1559E-05],[62.32132,-5.3621E-05],[62.324832,-5.3106E-05],[62.328344,-5.1043E-05],[62.331856,-5.0012E-05],[62.335368,-5.1559E-05],[62.33888,-5.4652E-05],[62.342392,-5.3621E-05],[62.345904,-5.3106E-05],[62.349416,-5.2074E-05],[62.352928,-5.3106E-05],[62.35644,-5.4137E-05],[62.359952,-5.4652E-05],[62.363464,-5.4137E-05],[62.366976,-5.3621E-05],[62.370488,-5.1043E-05],[62.374,-5.1559E-05],[62.377408,-5.9808E-05],[62.380816,-5.6199E-05],[62.384224,-5.2074E-05],[62.387632,-5.2074E-05],[62.39104,-4.7434E-05],[62.394448,-5.1559E-05],[62.397856,-5.7746E-05],[62.401264,-5.5684E-05],[62.404672,-5.4652E-05],[62.40808,-5.1559E-05],[62.411488,-4.795E-05],[62.414896,-5.259E-05],[62.418304,-5.259E-05],[62.421712,-5.3621E-05],[62.42512,-5.5684E-05],[62.428528,-5.4652E-05],[62.431936,-5.6199E-05],[62.435344,-5.259E-05],[62.438752,-5.5684E-05],[62.44216,-5.5684E-05],[62.445568,-5.4652E-05],[62.448976,-5.4137E-05],[62.452384,-4.9497E-05],[62.455792,-5.7746E-05],[62.4592,-5.6715E-05],[62.462608,-5.3106E-05],[62.466016,-5.259E-05],[62.469424,-4.6919E-05],[62.472832,-5.1043E-05],[62.47624,-5.4137E-05],[62.479648,-5.4137E-05],[62.483056,-5.4652E-05],[62.486464,-5.3621E-05],[62.489872,-5.259E-05],[62.49328,-5.1043E-05],[62.496688,-5.259E-05],[62.500096,-5.4652E-05],[62.503504,-5.8777E-05],[62.506912,-5.6199E-05],[62.51032,-5.4137E-05],[62.513728,-5.4652E-05],[62.517136,-5.3621E-05],[62.520544,-5.8777E-05],[62.523952,-5.5684E-05],[62.52736,-5.3621E-05],[62.530768,-5.6199E-05],[62.534176,-5.1559E-05],[62.537584,-5.259E-05],[62.540992,-5.6199E-05],[62.5444,-5.4137E-05],[62.547808,-5.3621E-05],[62.551216,-5.2074E-05],[62.554624,-5.0528E-05],[62.558032,-5.1043E-05],[62.56144,-5.3621E-05],[62.564848,-5.5684E-05],[62.568256,-5.0012E-05],[62.571664,-4.8981E-05],[62.575072,-5.3106E-05],[62.57848,-5.6199E-05],[62.581888,-6.0839E-05],[62.585296,-5.4652E-05],[62.588704,-5.4652E-05],[62.592112,-5.259E-05],[62.59552,-5.4137E-05],[62.598928,-5.9808E-05]]}
-{"quant":[62.8616,-5.314E-05],"mems":[[62.762512,-5.3106E-05],[62.76592,-4.6919E-05],[62.769328,-4.795E-05],[62.772736,-5.4652E-05],[62.776144,-5.1559E-05],[62.779552,-5.4137E-05],[62.78296,-5.5168E-05],[62.786368,-5.1559E-05],[62.789776,-5.4652E-05],[62.793184,-5.2074E-05],[62.796592,-5.3106E-05],[62.8,-5.5168E-05],[62.803408,-5.2074E-05],[62.806816,-5.3106E-05],[62.810224,-5.2074E-05],[62.813632,-5.1559E-05],[62.81704,-5.259E-05],[62.820448,-5.4652E-05],[62.823856,-5.5168E-05],[62.827264,-4.9497E-05],[62.830672,-4.8465E-05],[62.83408,-5.4137E-05],[62.837488,-5.6715E-05],[62.840896,-5.4137E-05],[62.844304,-5.1559E-05],[62.847712,-5.1043E-05],[62.85112,-5.2074E-05],[62.854528,-5.5684E-05],[62.857936,-5.4652E-05],[62.861344,-5.3106E-05],[62.864752,-5.5168E-05],[62.86816,-5.5168E-05],[62.871568,-5.3106E-05],[62.874976,-5.3621E-05],[62.878384,-5.5684E-05],[62.881792,-5.4137E-05],[62.8852,-5.0012E-05],[62.888608,-5.1043E-05],[62.892016,-5.6715E-05],[62.895424,-5.9808E-05],[62.898832,-5.4137E-05],[62.90224,-5.2074E-05],[62.905648,-5.4137E-05],[62.909056,-5.1559E-05],[62.912464,-4.9497E-05],[62.915872,-5.2074E-05],[62.91928,-5.6199E-05],[62.922688,-5.2074E-05],[62.926096,-4.8465E-05],[62.929504,-4.8465E-05],[62.932912,-5.1559E-05],[62.93632,-5.3106E-05],[62.939728,-5.259E-05],[62.943136,-5.6199E-05],[62.946544,-5.4652E-05],[62.949952,-5.259E-05],[62.95336,-5.3106E-05],[62.956768,-5.4137E-05],[62.960176,-5.3106E-05],[62.963584,-5.0012E-05],[62.966992,-5.0528E-05],[62.9704,-5.1559E-05],[62.973808,-5.6199E-05],[62.977216,-5.3621E-05],[62.980624,-5.1043E-05],[62.984032,-5.3106E-05],[62.98744,-4.8465E-05],[62.990848,-4.795E-05],[62.994256,-5.259E-05],[62.997664,-5.6199E-05],[63.001072,-5.4137E-05],[63.00448,-5.3106E-05],[63.007888,-5.3621E-05],[63.011296,-5.4652E-05],[63.014704,-5.4652E-05],[63.018112,-5.0012E-05],[63.02152,-4.8465E-05],[63.024928,-4.9497E-05],[63.028336,-5.1559E-05],[63.031744,-5.8262E-05],[63.035152,-5.8777E-05],[63.03856,-5.5168E-05],[63.041968,-5.0012E-05],[63.045376,-4.7434E-05],[63.048784,-5.5168E-05],[63.052192,-5.4652E-05],[63.0556,-5.259E-05],[63.059008,-5.3106E-05],[63.062416,-4.8981E-05]]}
-{"quant":[63.3716,-5.3122E-05],"mems":[[63.273712,-5.5684E-05],[63.27712,-5.4137E-05],[63.280528,-5.259E-05],[63.283936,-5.2074E-05],[63.287344,-5.3106E-05],[63.290752,-5.3106E-05],[63.29416,-5.6199E-05],[63.297568,-5.6199E-05],[63.300976,-4.9497E-05],[63.304384,-5.1043E-05],[63.307792,-5.1043E-05],[63.3112,-5.2074E-05],[63.314608,-5.5684E-05],[63.318016,-5.3106E-05],[63.321424,-5.1559E-05],[63.324832,-5.3106E-05],[63.32824,-5.3621E-05],[63.331648,-5.4137E-05],[63.335056,-5.3621E-05],[63.338464,-5.0528E-05],[63.341872,-5.0012E-05],[63.34528,-5.1043E-05],[63.348688,-5.4137E-05],[63.352096,-5.6199E-05],[63.355504,-5.259E-05],[63.358912,-5.259E-05],[63.36232,-5.1559E-05],[63.365728,-5.3106E-05],[63.369136,-5.6199E-05],[63.372544,-5.4652E-05],[63.375952,-5.6715E-05],[63.37936,-5.3621E-05],[63.382768,-5.3621E-05],[63.386176,-5.4137E-05],[63.389584,-5.1559E-05],[63.392992,-5.4137E-05],[63.3964,-5.5168E-05],[63.399808,-4.9497E-05],[63.403216,-4.795E-05],[63.406624,-5.4652E-05],[63.410032,-5.8777E-05],[63.41344,-5.6715E-05],[63.416848,-5.5684E-05],[63.420256,-5.723E-05],[63.423664,-5.4137E-05],[63.427072,-5.2074E-05],[63.43048,-5.2074E-05],[63.433888,-5.3106E-05],[63.437296,-5.3106E-05],[63.440704,-5.1043E-05],[63.444112,-5.2074E-05],[63.44752,-5.259E-05],[63.450928,-5.259E-05],[63.454336,-5.3106E-05],[63.457744,-5.0012E-05],[63.461152,-5.2074E-05],[63.46456,-5.0528E-05],[63.467968,-4.8981E-05],[63.471376,-5.4137E-05],[63.474784,-5.1043E-05],[63.478192,-4.7434E-05],[63.4816,-4.8981E-05],[63.485008,-5.4137E-05],[63.488416,-5.5168E-05],[63.491824,-5.1559E-05],[63.495232,-5.6715E-05],[63.49864,-5.5684E-05],[63.502048,-5.1043E-05],[63.505456,-5.1559E-05],[63.508864,-5.1559E-05],[63.512272,-5.4137E-05],[63.51568,-5.4137E-05],[63.519088,-5.4652E-05],[63.522496,-5.5168E-05],[63.525904,-5.8262E-05],[63.529312,-6.0324E-05],[63.53272,-5.6199E-05],[63.536128,-5.4137E-05],[63.539536,-5.3621E-05],[63.542944,-5.1043E-05],[63.546352,-5.4652E-05],[63.54976,-5.8777E-05],[63.553168,-5.5168E-05],[63.556576,-5.259E-05],[63.559984,-5.4137E-05],[63.563392,-5.4137E-05],[63.5668,-5.3106E-05],[63.570208,-5.3621E-05],[63.573616,-5.3621E-05]]}
-{"quant":[63.8245,-5.1903E-05],"mems":[[63.726976,-5.8777E-05],[63.730384,-5.3106E-05],[63.733792,-5.0528E-05],[63.7372,-4.9497E-05],[63.740608,-5.0012E-05],[63.744016,-5.4652E-05],[63.747424,-5.4652E-05],[63.750832,-5.5168E-05],[63.75424,-5.3106E-05],[63.757648,-5.0528E-05],[63.761056,-5.1043E-05],[63.764464,-5.5168E-05],[63.767872,-5.5684E-05],[63.77128,-5.1559E-05],[63.774688,-5.259E-05],[63.778096,-5.259E-05],[63.781504,-5.259E-05],[63.784912,-5.1559E-05],[63.78832,-5.259E-05],[63.791728,-5.2074E-05],[63.795136,-5.1043E-05],[63.798544,-5.3621E-05],[63.801952,-5.0528E-05],[63.80536,-5.2074E-05],[63.808768,-5.2074E-05],[63.812176,-5.259E-05],[63.815584,-5.1559E-05],[63.818992,-5.1559E-05],[63.8224,-5.5684E-05],[63.825808,-5.3106E-05],[63.829216,-5.259E-05],[63.832624,-4.8981E-05],[63.836032,-4.8981E-05],[63.83944,-5.0528E-05],[63.842848,-4.6919E-05],[63.846256,-5.3106E-05],[63.849664,-4.9497E-05],[63.853072,-4.795E-05],[63.85648,-5.3621E-05],[63.859888,-5.0528E-05],[63.863296,-4.9497E-05],[63.866704,-4.8465E-05],[63.870112,-5.1559E-05],[63.87352,-5.259E-05],[63.876928,-5.0528E-05],[63.880336,-5.3106E-05],[63.883744,-5.4652E-05],[63.887152,-5.6199E-05],[63.89056,-5.4137E-05],[63.893968,-5.4137E-05],[63.897376,-5.3106E-05],[63.900784,-5.5168E-05],[63.904192,-5.723E-05],[63.9076,-5.259E-05],[63.911008,-5.2074E-05],[63.914416,-4.8465E-05],[63.917824,-4.795E-05],[63.921232,-5.3621E-05],[63.92464,-5.6199E-05],[63.928048,-5.259E-05],[63.931456,-4.7434E-05],[63.934864,-5.4652E-05],[63.938272,-5.4137E-05],[63.94168,-5.0012E-05],[63.945088,-5.3621E-05],[63.948496,-5.0012E-05],[63.951904,-5.259E-05],[63.955312,-5.4137E-05],[63.95872,-4.9497E-05],[63.962128,-5.2074E-05],[63.965536,-5.0012E-05],[63.968944,-4.7434E-05],[63.972352,-4.8465E-05],[63.97576,-4.6919E-05],[63.979168,-5.1043E-05],[63.982576,-5.4137E-05],[63.985984,-5.6715E-05],[63.989392,-5.723E-05],[63.9928,-5.4137E-05],[63.996208,-5.1559E-05],[63.999616,-5.1043E-05],[64.003024,-5.6199E-05],[64.006432,-5.3621E-05],[64.00984,-5.1043E-05],[64.013248,-5.4137E-05],[64.016656,-5.1559E-05],[64.020064,-5.3106E-05],[64.023472,-5.1559E-05],[64.02688,-5.1043E-05]]}
-{"quant":[64.3005,-5.3467E-05],"mems":[[64.200688,-5.259E-05],[64.204096,-5.3106E-05],[64.207504,-5.5168E-05],[64.210912,-5.3106E-05],[64.21432,-5.3621E-05],[64.217728,-5.1559E-05],[64.221136,-5.3106E-05],[64.224544,-5.7746E-05],[64.227952,-5.6715E-05],[64.23136,-5.4652E-05],[64.234768,-4.8465E-05],[64.238176,-4.9497E-05],[64.241584,-5.6199E-05],[64.244992,-5.3621E-05],[64.2484,-5.259E-05],[64.251808,-5.3621E-05],[64.255216,-5.259E-05],[64.258624,-5.8777E-05],[64.262032,-5.9293E-05],[64.26544,-5.259E-05],[64.268848,-5.259E-05],[64.272256,-5.0012E-05],[64.275664,-4.9497E-05],[64.279072,-5.1043E-05],[64.28248,-5.1043E-05],[64.285888,-5.3621E-05],[64.289296,-5.259E-05],[64.292704,-5.4137E-05],[64.296112,-5.3621E-05],[64.29952,-5.2074E-05],[64.302928,-5.3621E-05],[64.306336,-5.4137E-05],[64.309744,-5.5168E-05],[64.313152,-5.5168E-05],[64.31656,-5.4137E-05],[64.319968,-5.5684E-05],[64.323376,-5.3621E-05],[64.326784,-5.0528E-05],[64.330192,-5.4137E-05],[64.3336,-5.4137E-05],[64.337008,-5.4652E-05],[64.340416,-5.723E-05],[64.343824,-5.1043E-05],[64.347232,-4.9497E-05],[64.35064,-5.1043E-05],[64.354048,-5.1559E-05],[64.357456,-5.5684E-05],[64.360864,-5.2074E-05],[64.364272,-5.3621E-05],[64.36768,-5.5684E-05],[64.371088,-5.1559E-05],[64.374496,-4.8981E-05],[64.377904,-5.0528E-05],[64.381312,-5.5168E-05],[64.38472,-5.8262E-05],[64.388128,-5.7746E-05],[64.391536,-5.0012E-05],[64.394944,-5.1043E-05],[64.398352,-5.4652E-05],[64.40176,-5.3621E-05],[64.405168,-5.4652E-05],[64.408576,-5.259E-05],[64.411984,-5.4652E-05],[64.415392,-5.3106E-05],[64.4188,-5.1043E-05],[64.422208,-5.3621E-05],[64.425616,-5.1559E-05],[64.429024,-5.1043E-05],[64.432432,-4.7434E-05],[64.43584,-5.0012E-05],[64.439248,-5.5168E-05],[64.442656,-5.1559E-05],[64.446064,-4.8981E-05],[64.449472,-4.8981E-05],[64.45288,-5.0528E-05],[64.456288,-5.1043E-05],[64.459696,-5.3106E-05],[64.463104,-5.723E-05],[64.466512,-5.1043E-05],[64.46992,-4.8465E-05],[64.473328,-5.259E-05],[64.476736,-5.5168E-05],[64.480144,-5.6199E-05],[64.483552,-5.5168E-05],[64.48696,-5.3621E-05],[64.490368,-5.0012E-05],[64.493776,-5.3621E-05],[64.497184,-5.723E-05],[64.500592,-5.259E-05]]}
-{"quant":[64.7945,-1.2413],"mems":[[64.74256,-5.4137E-05],[64.745968,-5.1559E-05],[64.749376,-4.8465E-05],[64.752784,-5.5684E-05],[64.756192,-5.2074E-05],[64.7596,-5.1043E-05],[64.763008,-5.6715E-05],[64.766416,-5.5168E-05],[64.769824,-5.3106E-05],[64.773232,-5.259E-05],[64.77664,-5.4137E-05],[64.780048,-4.9497E-05],[64.783456,-4.7434E-05],[64.786864,-4.8981E-05],[64.790272,-4.8465E-05],[64.79368,-5.3106E-05],[64.797088,-5.6199E-05],[64.800496,-5.3621E-05],[64.803904,-5.1043E-05],[64.807312,-5.4652E-05],[64.81072,-5.4652E-05],[64.814128,-5.5168E-05],[64.817536,-5.6199E-05],[64.820944,-5.259E-05],[64.824352,-5.259E-05],[64.82776,-4.9497E-05],[64.831168,-5.0012E-05],[64.834576,-5.723E-05],[64.837984,-5.4137E-05],[64.841392,-5.1559E-05],[64.8448,-5.4137E-05],[64.848208,-4.9497E-05],[64.851616,-4.6919E-05],[64.855024,-5.1043E-05],[64.858432,-5.4137E-05],[64.86184,-5.5684E-05],[64.865248,-5.3106E-05],[64.868656,-5.0528E-05],[64.872064,-5.2074E-05],[64.875472,-5.3106E-05],[64.87888,-5.5168E-05],[64.882288,-5.5168E-05],[64.885696,-5.3621E-05],[64.889104,-4.9497E-05],[64.892512,-4.795E-05],[64.89592,-5.1043E-05],[64.899328,-4.795E-05],[64.902736,-5.1559E-05],[64.906144,-5.6199E-05],[64.909552,-5.4137E-05],[64.91296,-5.259E-05],[64.916368,-5.259E-05],[64.919776,-5.259E-05],[64.923184,-5.1559E-05],[64.926592,-4.8981E-05],[64.93,-5.0012E-05],[64.933392,-5.5168E-05],[64.936784,-5.4137E-05],[64.940176,-5.259E-05],[64.943568,-4.795E-05],[64.94696,-4.9497E-05],[64.950352,-5.3106E-05],[64.953744,-5.5684E-05],[64.957136,-5.8262E-05],[64.960528,-5.0012E-05],[64.96392,-4.9497E-05],[64.967312,-4.9497E-05],[64.970704,-4.8981E-05],[64.974096,-5.3106E-05],[64.977488,-5.0528E-05],[64.98088,-5.5168E-05],[64.984272,-5.1559E-05],[64.987664,-5.2074E-05],[64.991056,-5.9293E-05],[64.994448,-5.4652E-05],[64.99784,-5.2074E-05],[65.001232,-4.9497E-05],[65.004624,-5.1559E-05],[65.008016,-5.1559E-05],[65.011408,-4.9497E-05],[65.0148,-5.5684E-05],[65.018192,-5.3621E-05],[65.021584,-5.5168E-05],[65.024976,-5.6199E-05],[65.028368,-5.5168E-05],[65.03176,-5.5684E-05],[65.035152,-5.6199E-05]]}
-{"quant":[65.2941,-5.3535E-05],"mems":[[65.194576,-5.3621E-05],[65.197968,-5.0012E-05],[65.20136,-5.0528E-05],[65.204752,-5.0012E-05],[65.208144,-4.5887E-05],[65.211536,-5.1559E-05],[65.214928,-5.4137E-05],[65.21832,-5.0012E-05],[65.221712,-5.0528E-05],[65.225104,-5.1043E-05],[65.228496,-5.6199E-05],[65.231888,-5.6715E-05],[65.23528,-5.3621E-05],[65.238672,-5.4137E-05],[65.242064,-5.0528E-05],[65.245456,-5.1559E-05],[65.248848,-5.4137E-05],[65.25224,-5.0528E-05],[65.255632,-5.0012E-05],[65.259024,-5.4137E-05],[65.262416,-5.3621E-05],[65.265808,-4.8465E-05],[65.2692,-5.2074E-05],[65.272592,-5.3621E-05],[65.275984,-5.0012E-05],[65.279376,-5.0528E-05],[65.282768,-4.795E-05],[65.28616,-5.259E-05],[65.289552,-5.8262E-05],[65.292944,-5.7746E-05],[65.296336,-5.5168E-05],[65.299728,-5.0528E-05],[65.30312,-4.8981E-05],[65.306512,-5.2074E-05],[65.309904,-5.3621E-05],[65.313296,-5.259E-05],[65.316688,-5.1043E-05],[65.32008,-4.7434E-05],[65.323472,-5.0012E-05],[65.326864,-5.3621E-05],[65.330256,-5.6715E-05],[65.333648,-5.7746E-05],[65.33704,-5.5168E-05],[65.340432,-5.3621E-05],[65.343824,-5.3621E-05],[65.347216,-5.5684E-05],[65.350608,-5.6199E-05],[65.354,-5.6715E-05],[65.357392,-5.0528E-05],[65.360784,-5.0528E-05],[65.364176,-5.259E-05],[65.367568,-5.5684E-05],[65.37096,-5.9293E-05],[65.374352,-5.3106E-05],[65.377744,-5.259E-05],[65.381136,-5.259E-05],[65.384528,-5.4137E-05],[65.38792,-5.723E-05],[65.391312,-5.5168E-05],[65.394704,-5.2074E-05],[65.398096,-5.0528E-05],[65.401488,-5.4137E-05],[65.40488,-5.4652E-05],[65.408272,-5.5684E-05],[65.411664,-5.6715E-05],[65.415056,-5.5684E-05],[65.418448,-5.4652E-05],[65.42184,-5.259E-05],[65.425232,-5.5168E-05],[65.428624,-5.4652E-05],[65.432016,-5.3106E-05],[65.435408,-5.4652E-05],[65.4388,-5.4137E-05],[65.442192,-5.3106E-05],[65.445584,-5.259E-05],[65.448976,-5.5168E-05],[65.452368,-5.259E-05],[65.45576,-4.6403E-05],[65.459152,-4.8981E-05],[65.462544,-4.8981E-05],[65.465936,-4.7434E-05],[65.469328,-5.259E-05],[65.47272,-5.6199E-05],[65.476112,-5.3106E-05],[65.479504,-4.7434E-05],[65.482896,-5.0528E-05],[65.486288,-5.4137E-05],[65.48968,-5.5684E-05],[65.493072,-5.5168E-05],[65.496464,-5.0012E-05]]}
-{"quant":[65.9372,-5.2923E-05],"mems":[[65.839056,-5.4652E-05],[65.842448,-5.6199E-05],[65.84584,-5.5168E-05],[65.849232,-5.2074E-05],[65.852624,-5.3621E-05],[65.856016,-5.1043E-05],[65.859408,-5.1559E-05],[65.8628,-5.3106E-05],[65.866192,-4.9497E-05],[65.869584,-5.0012E-05],[65.872976,-5.259E-05],[65.876368,-5.259E-05],[65.87976,-5.4137E-05],[65.883152,-5.4652E-05],[65.886544,-5.4137E-05],[65.889936,-5.2074E-05],[65.893328,-5.1043E-05],[65.89672,-5.5168E-05],[65.900112,-5.5684E-05],[65.903504,-5.3106E-05],[65.906896,-5.0012E-05],[65.910288,-5.4652E-05],[65.91368,-5.1559E-05],[65.917072,-4.9497E-05],[65.920464,-5.6715E-05],[65.923856,-5.3106E-05],[65.927248,-5.259E-05],[65.93064,-5.259E-05],[65.934032,-5.1559E-05],[65.937424,-5.259E-05],[65.940816,-5.5168E-05],[65.944208,-5.6715E-05],[65.9476,-5.1559E-05],[65.950992,-5.259E-05],[65.954384,-5.1043E-05],[65.957776,-4.9497E-05],[65.961168,-5.4652E-05],[65.96456,-5.0528E-05],[65.967952,-4.8981E-05],[65.971344,-5.4137E-05],[65.974736,-5.2074E-05],[65.978128,-5.3106E-05],[65.98152,-5.8777E-05],[65.984912,-5.5168E-05],[65.988304,-5.0528E-05],[65.991696,-4.8465E-05],[65.995088,-4.8465E-05],[65.99848,-5.0012E-05],[66.001872,-5.0528E-05],[66.005264,-5.4652E-05],[66.008656,-5.4652E-05],[66.012048,-4.9497E-05],[66.01544,-5.1559E-05],[66.018832,-5.8262E-05],[66.022224,-5.6715E-05],[66.025616,-5.6715E-05],[66.029008,-5.5168E-05],[66.0324,-5.3106E-05],[66.035792,-5.4137E-05],[66.039184,-5.1559E-05],[66.042576,-5.4652E-05],[66.045968,-5.2074E-05],[66.04936,-4.8981E-05],[66.052752,-5.3621E-05],[66.056144,-5.4137E-05],[66.059536,-5.9808E-05],[66.062928,-5.3621E-05],[66.06632,-4.5887E-05],[66.069712,-5.1559E-05],[66.073104,-5.1559E-05],[66.076496,-5.2074E-05],[66.079888,-5.1559E-05],[66.08328,-5.259E-05],[66.086672,-5.4652E-05],[66.090064,-4.9497E-05],[66.093456,-4.7434E-05],[66.096848,-5.6199E-05],[66.10024,-5.6715E-05],[66.103632,-4.8981E-05],[66.107024,-5.1043E-05],[66.110416,-5.0528E-05],[66.113808,-5.2074E-05],[66.1172,-5.5684E-05],[66.120592,-5.4652E-05],[66.123984,-5.6199E-05],[66.127376,-5.3621E-05],[66.130768,-4.8981E-05],[66.13416,-5.1559E-05],[66.137552,-5.5684E-05]]}
-{"quant":[66.4112,-5.269E-05],"mems":[[66.313936,-5.3106E-05],[66.317328,-5.4137E-05],[66.32072,-4.795E-05],[66.324112,-4.8465E-05],[66.327504,-5.1043E-05],[66.330896,-4.9497E-05],[66.334288,-5.0528E-05],[66.33768,-5.0012E-05],[66.341072,-5.3106E-05],[66.344464,-4.7434E-05],[66.347856,-5.1043E-05],[66.351248,-5.3106E-05],[66.35464,-4.6919E-05],[66.358032,-5.3621E-05],[66.361424,-5.2074E-05],[66.364816,-5.0012E-05],[66.368208,-5.5684E-05],[66.3716,-5.4652E-05],[66.374992,-4.9497E-05],[66.378384,-5.3621E-05],[66.381776,-5.9808E-05],[66.385168,-5.259E-05],[66.38856,-4.795E-05],[66.391952,-5.1559E-05],[66.395344,-4.9497E-05],[66.398736,-4.795E-05],[66.402128,-5.0528E-05],[66.40552,-4.9497E-05],[66.408912,-5.0528E-05],[66.412304,-5.259E-05],[66.415696,-5.259E-05],[66.419088,-5.3106E-05],[66.42248,-5.0528E-05],[66.425872,-4.795E-05],[66.429264,-4.9497E-05],[66.432656,-5.2074E-05],[66.436048,-5.3621E-05],[66.43944,-5.259E-05],[66.442832,-5.1559E-05],[66.446224,-5.259E-05],[66.449616,-5.4652E-05],[66.453008,-5.1043E-05],[66.4564,-4.9497E-05],[66.459792,-5.8262E-05],[66.463184,-5.259E-05],[66.466576,-4.8981E-05],[66.469968,-5.3621E-05],[66.47336,-5.259E-05],[66.476752,-5.4137E-05],[66.480144,-5.259E-05],[66.483536,-5.0528E-05],[66.486928,-5.3106E-05],[66.49032,-5.3106E-05],[66.493712,-5.3621E-05],[66.497104,-5.5684E-05],[66.500496,-5.3106E-05],[66.503888,-5.1559E-05],[66.50728,-5.4137E-05],[66.510672,-5.5684E-05],[66.514064,-5.6199E-05],[66.517456,-5.3106E-05],[66.520848,-5.2074E-05],[66.52424,-5.2074E-05],[66.527632,-5.6199E-05],[66.531024,-5.5684E-05],[66.534416,-5.1043E-05],[66.537808,-5.5684E-05],[66.5412,-5.3621E-05],[66.544592,-5.1043E-05],[66.547984,-5.723E-05],[66.551376,-5.5168E-05],[66.554768,-5.1559E-05],[66.55816,-4.7434E-05],[66.561552,-4.6403E-05],[66.564944,-5.1043E-05],[66.568336,-5.3106E-05],[66.571728,-5.3106E-05],[66.57512,-5.3106E-05],[66.578512,-5.3106E-05],[66.581904,-5.2074E-05],[66.585296,-5.1559E-05],[66.588688,-5.5684E-05],[66.59208,-5.5684E-05],[66.595472,-4.8981E-05],[66.598864,-5.1043E-05],[66.602256,-5.2074E-05],[66.605648,-4.9497E-05],[66.60904,-5.3106E-05],[66.612432,-5.5168E-05]]}
-{"quant":[66.8724,-5.239E-05],"mems":[[66.775248,-5.3621E-05],[66.77864,-5.0528E-05],[66.782032,-5.1559E-05],[66.785424,-5.5684E-05],[66.788816,-4.7434E-05],[66.792208,-5.0528E-05],[66.7956,-5.4652E-05],[66.798992,-5.4652E-05],[66.802384,-5.5684E-05],[66.805776,-5.4652E-05],[66.809168,-5.723E-05],[66.81256,-5.2074E-05],[66.815952,-5.2074E-05],[66.819344,-5.1559E-05],[66.822736,-5.0012E-05],[66.826128,-5.5684E-05],[66.82952,-5.259E-05],[66.832912,-5.0012E-05],[66.836304,-4.5887E-05],[66.839696,-5.0012E-05],[66.843088,-5.3621E-05],[66.84648,-5.259E-05],[66.849872,-5.7746E-05],[66.853264,-5.4652E-05],[66.856656,-5.2074E-05],[66.860048,-4.8465E-05],[66.86344,-4.6919E-05],[66.866832,-5.5168E-05],[66.870224,-5.4137E-05],[66.873616,-5.1559E-05],[66.877008,-5.5684E-05],[66.8804,-5.4137E-05],[66.883792,-5.3106E-05],[66.887184,-5.3106E-05],[66.890576,-5.1043E-05],[66.893968,-5.1043E-05],[66.89736,-4.8981E-05],[66.900752,-4.8465E-05],[66.904144,-5.3106E-05],[66.907536,-5.3621E-05],[66.910928,-5.1559E-05],[66.91432,-5.2074E-05],[66.917712,-5.0528E-05],[66.921104,-5.0012E-05],[66.924496,-5.1559E-05],[66.927888,-5.1043E-05],[66.93128,-4.6919E-05],[66.934672,-4.6403E-05],[66.938064,-5.0528E-05],[66.941456,-5.3621E-05],[66.944848,-5.3621E-05],[66.94824,-5.8262E-05],[66.951632,-6.0324E-05],[66.955024,-5.3621E-05],[66.958416,-5.1043E-05],[66.961808,-5.5168E-05],[66.9652,-5.259E-05],[66.968592,-5.4137E-05],[66.971984,-5.5684E-05],[66.975376,-5.1559E-05],[66.978768,-5.1559E-05],[66.98216,-5.0528E-05],[66.985552,-5.3621E-05],[66.988944,-5.4137E-05],[66.992336,-5.259E-05],[66.995728,-5.0012E-05],[66.99912,-4.8981E-05],[67.002512,-5.2074E-05],[67.005904,-5.4652E-05],[67.009296,-5.8262E-05],[67.012688,-5.0012E-05],[67.01608,-4.6919E-05],[67.019472,-5.5168E-05],[67.022864,-5.5168E-05],[67.026256,-5.5168E-05],[67.029648,-5.1559E-05],[67.03304,-5.1043E-05],[67.036432,-5.3621E-05],[67.039824,-5.3106E-05],[67.043216,-5.5168E-05],[67.046608,-5.723E-05],[67.05,-5.1043E-05],[67.053392,-5.0528E-05],[67.056784,-5.4137E-05],[67.060176,-4.8981E-05],[67.063568,-5.3621E-05],[67.06696,-5.3106E-05],[67.070352,-5.2074E-05],[67.073744,-5.1043E-05]]}
-{"quant":[67.3402,-1.5405],"mems":[[67.25352,-5.259E-05],[67.256912,-5.4137E-05],[67.260304,-5.3621E-05],[67.263696,-5.259E-05],[67.267088,-5.3106E-05],[67.27048,-5.1043E-05],[67.273872,-4.6403E-05],[67.277264,-4.4341E-05],[67.280656,-5.3621E-05],[67.284048,-5.5684E-05],[67.28744,-5.1043E-05],[67.290832,-5.0528E-05],[67.294224,-4.9497E-05],[67.297616,-5.4137E-05],[67.301008,-5.4137E-05],[67.3044,-5.1043E-05],[67.307792,-4.9497E-05],[67.311184,-5.0528E-05],[67.314576,-5.4652E-05],[67.317968,-5.2074E-05],[67.32136,-4.9497E-05],[67.324752,-5.259E-05],[67.328144,-5.723E-05],[67.331536,-5.5168E-05],[67.334928,-5.0012E-05],[67.33832,-5.0528E-05],[67.341712,-5.3106E-05],[67.345104,-5.6715E-05],[67.348496,-5.3621E-05],[67.351888,-5.1043E-05],[67.35528,-5.0012E-05],[67.358672,-4.8465E-05],[67.362064,-5.3621E-05],[67.365456,-5.8262E-05],[67.368848,-5.8777E-05],[67.37224,-5.5684E-05],[67.375632,-5.4137E-05],[67.379024,-5.8777E-05],[67.382416,-5.723E-05],[67.385808,-5.4137E-05],[67.3892,-5.5168E-05],[67.392592,-5.1043E-05],[67.395984,-5.1559E-05],[67.399376,-5.4652E-05],[67.402768,-5.6199E-05],[67.40616,-5.6715E-05],[67.409552,-5.4652E-05],[67.412944,-5.1043E-05],[67.416336,-5.3106E-05],[67.419728,-5.7746E-05],[67.42312,-5.3106E-05],[67.426512,-5.4137E-05],[67.429904,-5.4652E-05],[67.433296,-5.3106E-05],[67.436688,-5.1043E-05],[67.44008,-4.9497E-05],[67.443472,-4.8981E-05],[67.446864,-4.4341E-05],[67.450256,-4.6403E-05],[67.453648,-5.1559E-05],[67.45704,-5.4137E-05],[67.460432,-5.2074E-05],[67.463824,-5.259E-05],[67.467216,-5.5168E-05],[67.470608,-5.1043E-05],[67.474,-5.1043E-05],[67.477439,-5.2074E-05],[67.480877,-5.2074E-05],[67.484316,-5.3621E-05],[67.487755,-5.259E-05],[67.491193,-5.259E-05],[67.494632,-5.2074E-05],[67.498071,-5.2074E-05],[67.501509,-5.3106E-05],[67.504948,-5.1559E-05],[67.508387,-5.1559E-05],[67.511825,-5.5168E-05],[67.515264,-5.4652E-05],[67.518703,-5.3621E-05],[67.522141,-6.0324E-05],[67.52558,-5.7746E-05],[67.529019,-5.1043E-05],[67.532457,-5.3621E-05],[67.535896,-5.4652E-05],[67.539335,-5.2074E-05],[67.542773,-5.4137E-05],[67.546212,-5.5684E-05],[67.549651,-5.0528E-05]]}
-{"quant":[67.8053,-5.2642E-05],"mems":[[67.707829,-5.1043E-05],[67.711268,-5.1043E-05],[67.714707,-5.259E-05],[67.718145,-5.4652E-05],[67.721584,-5.5168E-05],[67.725023,-5.1559E-05],[67.728461,-4.7434E-05],[67.7319,-4.6919E-05],[67.735339,-5.4652E-05],[67.738777,-5.6199E-05],[67.742216,-5.1043E-05],[67.745655,-5.259E-05],[67.749093,-5.4137E-05],[67.752532,-5.0012E-05],[67.755971,-5.4652E-05],[67.759409,-5.723E-05],[67.762848,-5.3621E-05],[67.766287,-5.3106E-05],[67.769725,-5.1043E-05],[67.773164,-5.1559E-05],[67.776603,-5.259E-05],[67.780041,-5.259E-05],[67.78348,-5.3106E-05],[67.786919,-5.3106E-05],[67.790357,-5.1559E-05],[67.793796,-5.259E-05],[67.797235,-5.1043E-05],[67.800673,-5.2074E-05],[67.804112,-5.5684E-05],[67.807551,-5.2074E-05],[67.810989,-5.3106E-05],[67.814428,-5.3621E-05],[67.817867,-5.4652E-05],[67.821305,-5.4652E-05],[67.824744,-5.2074E-05],[67.828183,-5.3106E-05],[67.831621,-5.4137E-05],[67.83506,-5.4137E-05],[67.838499,-5.3106E-05],[67.841937,-5.4137E-05],[67.845376,-5.1559E-05],[67.848815,-4.6403E-05],[67.852253,-5.1043E-05],[67.855692,-5.9808E-05],[67.859131,-5.6199E-05],[67.862569,-5.1559E-05],[67.866008,-5.1559E-05],[67.869447,-5.0012E-05],[67.872885,-5.2074E-05],[67.876324,-5.3106E-05],[67.879763,-5.4137E-05],[67.883201,-5.3106E-05],[67.88664,-5.0528E-05],[67.890079,-5.1043E-05],[67.893517,-5.5168E-05],[67.896956,-5.3621E-05],[67.900395,-5.1043E-05],[67.903833,-5.1043E-05],[67.907272,-4.7434E-05],[67.910711,-4.795E-05],[67.914149,-5.4652E-05],[67.917588,-5.7746E-05],[67.921027,-5.259E-05],[67.924465,-5.0528E-05],[67.927904,-5.1559E-05],[67.931343,-4.795E-05],[67.934781,-5.1559E-05],[67.93822,-5.5168E-05],[67.941659,-5.4137E-05],[67.945097,-5.5168E-05],[67.948536,-5.1559E-05],[67.951975,-5.2074E-05],[67.955413,-5.3621E-05],[67.958852,-5.4137E-05],[67.962291,-5.4137E-05],[67.965729,-5.2074E-05],[67.969168,-5.2074E-05],[67.972607,-5.259E-05],[67.976045,-5.259E-05],[67.979484,-5.2074E-05],[67.982923,-5.5684E-05],[67.986361,-4.9497E-05],[67.9898,-4.8981E-05],[67.993239,-5.6199E-05],[67.996677,-5.723E-05],[68.000116,-5.9293E-05],[68.003555,-5.259E-05],[68.006993,-5.0528E-05]]}
-{"quant":[68.3907,-5.3621E-05],"mems":[[68.292403,-4.5887E-05],[68.295841,-5.259E-05],[68.29928,-5.5168E-05],[68.302719,-5.3106E-05],[68.306157,-5.4652E-05],[68.309596,-5.5684E-05],[68.313035,-5.8777E-05],[68.316473,-5.5168E-05],[68.319912,-5.4652E-05],[68.323351,-5.4652E-05],[68.326789,-5.0528E-05],[68.330228,-5.0528E-05],[68.333667,-4.8981E-05],[68.337105,-5.4652E-05],[68.340544,-5.5168E-05],[68.343983,-5.0528E-05],[68.347421,-5.259E-05],[68.35086,-5.1043E-05],[68.354299,-5.5168E-05],[68.357737,-5.259E-05],[68.361176,-5.0528E-05],[68.364615,-5.5684E-05],[68.368053,-5.4137E-05],[68.371492,-5.6715E-05],[68.374931,-5.5168E-05],[68.378369,-5.5684E-05],[68.381808,-5.5168E-05],[68.385247,-5.1559E-05],[68.388685,-5.0012E-05],[68.392124,-4.8465E-05],[68.395563,-5.4652E-05],[68.399001,-5.723E-05],[68.40244,-5.6715E-05],[68.405879,-5.3106E-05],[68.409317,-4.9497E-05],[68.412756,-4.8981E-05],[68.416195,-5.4137E-05],[68.419633,-5.8262E-05],[68.423072,-5.5684E-05],[68.426511,-5.5168E-05],[68.429949,-5.3621E-05],[68.433388,-5.6199E-05],[68.436827,-5.4652E-05],[68.440265,-5.0012E-05],[68.443704,-5.0528E-05],[68.447143,-5.0012E-05],[68.450581,-5.0528E-05],[68.45402,-5.1043E-05],[68.457459,-5.5684E-05],[68.460897,-5.8777E-05],[68.464336,-5.5684E-05],[68.467775,-5.3621E-05],[68.471213,-5.1559E-05],[68.474652,-5.4137E-05],[68.478091,-5.1559E-05],[68.481529,-5.1559E-05],[68.484968,-5.5168E-05],[68.488407,-5.4137E-05],[68.491845,-5.8262E-05],[68.495284,-5.723E-05],[68.498723,-5.4137E-05],[68.502161,-5.1559E-05],[68.5056,-5.3621E-05],[68.509039,-5.6715E-05],[68.512477,-5.4137E-05],[68.515916,-5.3106E-05],[68.519355,-5.6715E-05],[68.522793,-5.8777E-05],[68.526232,-5.2074E-05],[68.529671,-5.5168E-05],[68.533109,-5.5168E-05],[68.536548,-5.0012E-05],[68.539987,-5.4652E-05],[68.543425,-5.4137E-05],[68.546864,-5.1043E-05],[68.550303,-5.1043E-05],[68.553741,-5.3621E-05],[68.55718,-5.259E-05],[68.560619,-5.2074E-05],[68.564057,-5.6199E-05],[68.567496,-5.3106E-05],[68.570935,-4.795E-05],[68.574373,-5.0012E-05],[68.577812,-5.4652E-05],[68.581251,-5.723E-05],[68.584689,-5.4652E-05],[68.588128,-5.259E-05],[68.591567,-5.0528E-05]]}
-{"quant":[68.8476,-5.2573E-05],"mems":[[68.749745,-5.6199E-05],[68.753184,-5.259E-05],[68.756623,-5.723E-05],[68.760061,-5.7746E-05],[68.7635,-5.4652E-05],[68.766939,-5.4137E-05],[68.770377,-5.5168E-05],[68.773816,-5.4137E-05],[68.777255,-4.9497E-05],[68.780693,-5.5168E-05],[68.784132,-5.9293E-05],[68.787571,-5.1559E-05],[68.791009,-5.5684E-05],[68.794448,-5.7746E-05],[68.797887,-5.6199E-05],[68.801325,-5.3621E-05],[68.804764,-5.1043E-05],[68.808203,-5.6199E-05],[68.811641,-5.4137E-05],[68.81508,-5.259E-05],[68.818519,-5.1043E-05],[68.821957,-4.8981E-05],[68.825396,-4.8981E-05],[68.828835,-4.6919E-05],[68.832273,-5.0528E-05],[68.835712,-5.3106E-05],[68.839151,-5.5168E-05],[68.842589,-5.4652E-05],[68.846028,-5.4137E-05],[68.849467,-5.6199E-05],[68.852905,-5.4137E-05],[68.856344,-5.3621E-05],[68.859783,-5.4137E-05],[68.863221,-5.4137E-05],[68.86666,-5.5168E-05],[68.870099,-5.2074E-05],[68.873537,-5.3106E-05],[68.876976,-5.3621E-05],[68.880415,-4.8981E-05],[68.883853,-5.2074E-05],[68.887292,-5.6715E-05],[68.890731,-5.5684E-05],[68.894169,-5.3106E-05],[68.897608,-5.1559E-05],[68.901047,-5.1043E-05],[68.904485,-5.259E-05],[68.907924,-5.1043E-05],[68.911363,-4.795E-05],[68.914801,-5.0012E-05],[68.91824,-5.2074E-05],[68.921679,-5.259E-05],[68.925117,-5.2074E-05],[68.928556,-5.0012E-05],[68.931995,-4.8465E-05],[68.935433,-5.0528E-05],[68.938872,-5.4652E-05],[68.942311,-5.3106E-05],[68.945749,-5.3106E-05],[68.949188,-5.3621E-05],[68.952627,-4.9497E-05],[68.956065,-5.3621E-05],[68.959504,-5.5168E-05],[68.962943,-5.1043E-05],[68.966381,-5.6715E-05],[68.96982,-5.5168E-05],[68.973259,-5.0528E-05],[68.976697,-5.259E-05],[68.980136,-5.3106E-05],[68.983575,-5.259E-05],[68.987013,-5.1043E-05],[68.990452,-4.795E-05],[68.993891,-4.8981E-05],[68.997329,-5.4137E-05],[69.000768,-5.5684E-05],[69.004207,-5.259E-05],[69.007645,-4.8981E-05],[69.011084,-5.1043E-05],[69.014523,-5.3621E-05],[69.017961,-5.3106E-05],[69.0214,-5.259E-05],[69.024839,-5.0012E-05],[69.028277,-5.0528E-05],[69.031716,-4.6919E-05],[69.035155,-4.8981E-05],[69.038593,-5.5684E-05],[69.042032,-5.1559E-05],[69.045471,-5.4137E-05],[69.048909,-5.5168E-05]]}
-{"quant":[69.318,-5.314E-05],"mems":[[69.220843,-5.3106E-05],[69.224281,-5.1043E-05],[69.22772,-5.1043E-05],[69.231159,-5.2074E-05],[69.234597,-5.6199E-05],[69.238036,-5.723E-05],[69.241475,-5.3621E-05],[69.244913,-4.8465E-05],[69.248352,-4.8465E-05],[69.251791,-4.7434E-05],[69.255229,-5.1559E-05],[69.258668,-5.8262E-05],[69.262107,-5.4652E-05],[69.265545,-5.4652E-05],[69.268984,-5.3106E-05],[69.272423,-4.795E-05],[69.275861,-4.9497E-05],[69.2793,-5.5684E-05],[69.282739,-5.5168E-05],[69.286177,-5.3106E-05],[69.289616,-5.1559E-05],[69.293055,-5.0528E-05],[69.296493,-5.723E-05],[69.299932,-5.9293E-05],[69.303371,-5.3621E-05],[69.306809,-4.9497E-05],[69.310248,-5.2074E-05],[69.313687,-5.5684E-05],[69.317125,-5.6199E-05],[69.320564,-5.3106E-05],[69.324003,-5.5684E-05],[69.327441,-5.6199E-05],[69.33088,-4.6919E-05],[69.334319,-5.0012E-05],[69.337757,-5.259E-05],[69.341196,-5.5684E-05],[69.344635,-5.5684E-05],[69.348073,-4.6919E-05],[69.351512,-5.259E-05],[69.354951,-5.4652E-05],[69.358389,-5.3621E-05],[69.361828,-5.7746E-05],[69.365267,-5.3621E-05],[69.368705,-5.0528E-05],[69.372144,-4.8981E-05],[69.375583,-5.2074E-05],[69.379021,-5.6199E-05],[69.38246,-5.1043E-05],[69.385899,-5.1559E-05],[69.389337,-5.3106E-05],[69.392776,-5.4652E-05],[69.396215,-5.4652E-05],[69.399653,-4.8465E-05],[69.403092,-5.2074E-05],[69.406531,-5.259E-05],[69.409969,-5.1559E-05],[69.413408,-5.6715E-05],[69.416847,-5.723E-05],[69.420285,-5.7746E-05],[69.423724,-5.3106E-05],[69.427163,-5.1043E-05],[69.430601,-5.0012E-05],[69.43404,-5.1559E-05],[69.437479,-5.6715E-05],[69.440917,-5.2074E-05],[69.444356,-5.0012E-05],[69.447795,-5.1043E-05],[69.451233,-5.2074E-05],[69.454672,-5.5684E-05],[69.458111,-5.6199E-05],[69.461549,-5.1559E-05],[69.464988,-5.0012E-05],[69.468427,-5.3106E-05],[69.471865,-5.3106E-05],[69.475304,-5.5684E-05],[69.478743,-5.259E-05],[69.482181,-5.4137E-05],[69.48562,-5.5168E-05],[69.489059,-4.8981E-05],[69.492497,-5.3621E-05],[69.495936,-5.4137E-05],[69.499375,-5.2074E-05],[69.502813,-5.5684E-05],[69.506252,-5.8262E-05],[69.509691,-5.5684E-05],[69.513129,-5.0528E-05],[69.516568,-5.1043E-05],[69.520007,-5.259E-05]]}
-{"quant":[69.7795,-5.1954E-05],"mems":[[69.681624,-5.4137E-05],[69.685063,-5.5684E-05],[69.688501,-5.0012E-05],[69.69194,-5.0528E-05],[69.695379,-4.795E-05],[69.698817,-5.5168E-05],[69.702256,-5.5684E-05],[69.705695,-4.6919E-05],[69.709133,-5.4652E-05],[69.712572,-5.3106E-05],[69.716011,-5.6715E-05],[69.719449,-5.6715E-05],[69.722888,-5.259E-05],[69.726327,-5.6715E-05],[69.729765,-5.2074E-05],[69.733204,-5.4652E-05],[69.736643,-5.4137E-05],[69.740081,-5.259E-05],[69.74352,-5.3621E-05],[69.746959,-5.4137E-05],[69.750397,-5.6199E-05],[69.753836,-5.2074E-05],[69.757275,-5.4137E-05],[69.760713,-5.2074E-05],[69.764152,-5.1043E-05],[69.767591,-5.2074E-05],[69.771029,-4.6919E-05],[69.774468,-5.3621E-05],[69.777907,-5.3621E-05],[69.781345,-4.8981E-05],[69.784784,-5.1559E-05],[69.788223,-5.3106E-05],[69.791661,-5.4137E-05],[69.7951,-5.4137E-05],[69.798539,-5.5684E-05],[69.801977,-5.7746E-05],[69.805416,-5.3106E-05],[69.808855,-4.8981E-05],[69.812293,-5.0528E-05],[69.815732,-4.9497E-05],[69.819171,-4.9497E-05],[69.822609,-5.1559E-05],[69.826048,-5.0528E-05],[69.829487,-5.0012E-05],[69.832925,-5.2074E-05],[69.836364,-5.2074E-05],[69.839803,-5.2074E-05],[69.843241,-5.2074E-05],[69.84668,-4.9497E-05],[69.850119,-4.7434E-05],[69.853557,-5.259E-05],[69.856996,-5.5168E-05],[69.860435,-5.2074E-05],[69.863873,-5.1043E-05],[69.867312,-5.1559E-05],[69.870751,-5.0012E-05],[69.874189,-5.1559E-05],[69.877628,-5.6199E-05],[69.881067,-5.4137E-05],[69.884505,-4.7434E-05],[69.887944,-5.1043E-05],[69.891383,-5.6199E-05],[69.894821,-5.8777E-05],[69.89826,-5.259E-05],[69.901699,-4.8981E-05],[69.905137,-5.6199E-05],[69.908576,-5.4137E-05],[69.912015,-5.0012E-05],[69.915453,-5.3621E-05],[69.918892,-5.6715E-05],[69.922331,-5.3106E-05],[69.925769,-5.5168E-05],[69.929208,-5.3621E-05],[69.932647,-5.1043E-05],[69.936085,-5.5168E-05],[69.939524,-5.5168E-05],[69.942963,-5.5168E-05],[69.946401,-5.2074E-05],[69.94984,-5.4137E-05],[69.953279,-5.5684E-05],[69.956717,-5.5168E-05],[69.960156,-5.3621E-05],[69.963595,-5.1559E-05],[69.967033,-5.0012E-05],[69.970472,-4.5887E-05],[69.973911,-5.723E-05],[69.977349,-5.8262E-05],[69.980788,-5.2074E-05]]}
-{"quant":[70.2508,-5.3449E-05],"mems":[[70.152605,-5.5684E-05],[70.15604,-5.2074E-05],[70.159475,-5.5168E-05],[70.162909,-5.3621E-05],[70.166344,-4.7434E-05],[70.169779,-4.8465E-05],[70.173213,-4.9497E-05],[70.176648,-5.259E-05],[70.180083,-5.3621E-05],[70.183517,-5.1559E-05],[70.186952,-4.8981E-05],[70.190387,-5.0528E-05],[70.193821,-5.4137E-05],[70.197256,-5.259E-05],[70.200691,-5.2074E-05],[70.204125,-5.1559E-05],[70.20756,-5.2074E-05],[70.210995,-4.9497E-05],[70.214429,-5.1559E-05],[70.217864,-5.3621E-05],[70.221299,-5.2074E-05],[70.224733,-5.3621E-05],[70.228168,-5.1043E-05],[70.231603,-5.3621E-05],[70.235037,-6.0839E-05],[70.238472,-5.3106E-05],[70.241907,-4.8981E-05],[70.245341,-5.2074E-05],[70.248776,-5.2074E-05],[70.252211,-5.5684E-05],[70.255645,-5.259E-05],[70.25908,-4.9497E-05],[70.262515,-5.6199E-05],[70.265949,-5.1559E-05],[70.269384,-4.795E-05],[70.272819,-5.4652E-05],[70.276253,-5.4652E-05],[70.279688,-5.723E-05],[70.283123,-5.8777E-05],[70.286557,-5.3106E-05],[70.289992,-5.0012E-05],[70.293427,-5.3106E-05],[70.296861,-5.5684E-05],[70.300296,-5.4652E-05],[70.303731,-5.4652E-05],[70.307165,-5.1559E-05],[70.3106,-5.0528E-05],[70.314035,-5.3621E-05],[70.317469,-5.4652E-05],[70.320904,-5.5684E-05],[70.324339,-5.3621E-05],[70.327773,-4.9497E-05],[70.331208,-4.795E-05],[70.334643,-5.4652E-05],[70.338077,-5.6199E-05],[70.341512,-5.4652E-05],[70.344947,-5.2074E-05],[70.348381,-5.1559E-05],[70.351816,-5.723E-05],[70.355251,-5.5684E-05],[70.358685,-5.3106E-05],[70.36212,-5.259E-05],[70.365555,-5.1559E-05],[70.368989,-5.1043E-05],[70.372424,-5.3621E-05],[70.375859,-5.6715E-05],[70.379293,-5.5684E-05],[70.382728,-5.3106E-05],[70.386163,-5.3621E-05],[70.389597,-5.259E-05],[70.393032,-4.8981E-05],[70.396467,-5.3106E-05],[70.399901,-5.3621E-05],[70.403336,-5.0012E-05],[70.406771,-4.8981E-05],[70.410205,-4.9497E-05],[70.41364,-5.3106E-05],[70.417075,-5.5168E-05],[70.420509,-5.6715E-05],[70.423944,-5.6199E-05],[70.427379,-5.3621E-05],[70.430813,-5.3106E-05],[70.434248,-5.4652E-05],[70.437683,-5.0528E-05],[70.441117,-5.4137E-05],[70.444552,-5.7746E-05],[70.447987,-4.8981E-05],[70.451421,-5.1043E-05]]}
-{"quant":[70.9396,-5.3071E-05],"mems":[[70.842973,-5.2074E-05],[70.846408,-5.0012E-05],[70.849843,-5.1043E-05],[70.853277,-4.8465E-05],[70.856712,-5.4137E-05],[70.860147,-5.4652E-05],[70.863581,-5.1043E-05],[70.867016,-5.259E-05],[70.870451,-5.3621E-05],[70.873885,-5.6715E-05],[70.87732,-5.5684E-05],[70.880755,-5.0528E-05],[70.884189,-4.7434E-05],[70.887624,-5.0012E-05],[70.891059,-5.1043E-05],[70.894493,-4.8981E-05],[70.897928,-5.1559E-05],[70.901363,-5.1559E-05],[70.904797,-5.259E-05],[70.908232,-5.4137E-05],[70.911667,-5.3621E-05],[70.915101,-5.4137E-05],[70.918536,-5.3106E-05],[70.921971,-5.3621E-05],[70.925405,-5.3621E-05],[70.92884,-5.3106E-05],[70.932275,-5.3106E-05],[70.935709,-5.1043E-05],[70.939144,-5.2074E-05],[70.942579,-5.4652E-05],[70.946013,-4.5887E-05],[70.949448,-4.6403E-05],[70.952883,-5.2074E-05],[70.956317,-5.0012E-05],[70.959752,-5.4652E-05],[70.963187,-5.3621E-05],[70.966621,-5.2074E-05],[70.970056,-5.5684E-05],[70.973491,-5.5684E-05],[70.976925,-5.4137E-05],[70.98036,-5.259E-05],[70.983795,-5.1559E-05],[70.987229,-4.7434E-05],[70.990664,-5.2074E-05],[70.994099,-5.6199E-05],[70.997533,-5.3621E-05],[71.000968,-5.6715E-05],[71.004403,-5.4652E-05],[71.007837,-5.0528E-05],[71.011272,-5.4137E-05],[71.014707,-5.6715E-05],[71.018141,-5.6199E-05],[71.021576,-5.0012E-05],[71.025011,-4.795E-05],[71.028445,-5.1559E-05],[71.03188,-5.4652E-05],[71.035315,-5.8777E-05],[71.038749,-5.5684E-05],[71.042184,-5.6199E-05],[71.045619,-5.4652E-05],[71.049053,-4.8465E-05],[71.052488,-5.1559E-05],[71.055923,-5.3106E-05],[71.059357,-5.4652E-05],[71.062792,-5.2074E-05],[71.066227,-5.0012E-05],[71.069661,-5.723E-05],[71.073096,-5.5168E-05],[71.076531,-5.5684E-05],[71.079965,-5.6715E-05],[71.0834,-5.1559E-05],[71.086835,-5.259E-05],[71.090269,-5.259E-05],[71.093704,-5.4652E-05],[71.097139,-5.3106E-05],[71.100573,-5.4652E-05],[71.104008,-5.723E-05],[71.107443,-5.0528E-05],[71.110877,-5.0012E-05],[71.114312,-5.1559E-05],[71.117747,-5.1043E-05],[71.121181,-5.0528E-05],[71.124616,-5.1043E-05],[71.128051,-5.3621E-05],[71.131485,-5.6199E-05],[71.13492,-5.3621E-05],[71.138355,-5.0528E-05],[71.141789,-5.259E-05]]}
-{"quant":[71.4016,-5.3106E-05],"mems":[[71.303219,-4.8981E-05],[71.306653,-4.8465E-05],[71.310088,-4.6403E-05],[71.313523,-4.9497E-05],[71.316957,-5.4652E-05],[71.320392,-5.0012E-05],[71.323827,-5.1043E-05],[71.327261,-5.3621E-05],[71.330696,-4.9497E-05],[71.334131,-5.5684E-05],[71.337565,-5.7746E-05],[71.341,-5.1043E-05],[71.344435,-5.3621E-05],[71.347869,-5.1559E-05],[71.351304,-5.1043E-05],[71.354739,-5.4137E-05],[71.358173,-5.4137E-05],[71.361608,-5.7746E-05],[71.365043,-5.723E-05],[71.368477,-5.4652E-05],[71.371912,-5.2074E-05],[71.375347,-5.3621E-05],[71.378781,-5.6199E-05],[71.382216,-5.4652E-05],[71.385651,-5.3621E-05],[71.389085,-5.2074E-05],[71.39252,-5.3106E-05],[71.395955,-5.1559E-05],[71.399389,-5.0528E-05],[71.402824,-5.2074E-05],[71.406259,-5.2074E-05],[71.409693,-5.5684E-05],[71.413128,-5.6199E-05],[71.416563,-5.3106E-05],[71.419997,-5.4652E-05],[71.423432,-5.4137E-05],[71.426867,-5.4137E-05],[71.430301,-5.259E-05],[71.433736,-5.1559E-05],[71.437171,-5.4137E-05],[71.440605,-5.4137E-05],[71.44404,-5.2074E-05],[71.447475,-5.1043E-05],[71.450909,-5.1043E-05],[71.454344,-5.259E-05],[71.457779,-5.3106E-05],[71.461213,-5.259E-05],[71.464648,-5.3621E-05],[71.468083,-5.3621E-05],[71.471517,-5.4137E-05],[71.474952,-5.3621E-05],[71.478387,-4.8981E-05],[71.481821,-5.3106E-05],[71.485256,-5.5684E-05],[71.488691,-5.259E-05],[71.492125,-5.259E-05],[71.49556,-5.1043E-05],[71.498995,-5.3106E-05],[71.502429,-5.4137E-05],[71.505864,-5.1043E-05],[71.509299,-5.3621E-05],[71.512733,-5.3106E-05],[71.516168,-5.0528E-05],[71.519603,-5.3621E-05],[71.523037,-5.6199E-05],[71.526472,-5.3106E-05],[71.529907,-5.259E-05],[71.533341,-5.3106E-05],[71.536776,-5.5684E-05],[71.540211,-5.5684E-05],[71.543645,-5.0528E-05],[71.54708,-5.2074E-05],[71.550515,-5.1043E-05],[71.553949,-5.2074E-05],[71.557384,-5.6715E-05],[71.560819,-5.3106E-05],[71.564253,-4.8465E-05],[71.567688,-4.9497E-05],[71.571123,-5.8262E-05],[71.574557,-6.0839E-05],[71.577992,-5.3621E-05],[71.581427,-5.1559E-05],[71.584861,-4.8981E-05],[71.588296,-4.5372E-05],[71.591731,-4.8981E-05],[71.595165,-5.259E-05],[71.5986,-5.2074E-05],[71.602035,-5.3621E-05]]}
-{"quant":[71.8848,-5.3209E-05],"mems":[[71.787507,-4.6919E-05],[71.790941,-4.9497E-05],[71.794376,-5.4652E-05],[71.797811,-5.1043E-05],[71.801245,-5.2074E-05],[71.80468,-5.0012E-05],[71.808115,-4.7434E-05],[71.811549,-5.6715E-05],[71.814984,-5.3106E-05],[71.818419,-5.259E-05],[71.821853,-5.1043E-05],[71.825288,-4.795E-05],[71.828723,-5.8777E-05],[71.832157,-5.723E-05],[71.835592,-5.5684E-05],[71.839027,-5.5168E-05],[71.842461,-4.7434E-05],[71.845896,-5.0012E-05],[71.849331,-5.5684E-05],[71.852765,-5.6199E-05],[71.8562,-5.3621E-05],[71.859635,-5.4652E-05],[71.863069,-5.4137E-05],[71.866504,-5.3106E-05],[71.869939,-5.4137E-05],[71.873373,-5.5168E-05],[71.876808,-5.4137E-05],[71.880243,-5.0012E-05],[71.883677,-4.795E-05],[71.887112,-4.795E-05],[71.890547,-5.1559E-05],[71.893981,-5.6715E-05],[71.897416,-5.6715E-05],[71.900851,-5.3621E-05],[71.904285,-5.1043E-05],[71.90772,-5.0012E-05],[71.911155,-5.3106E-05],[71.914589,-5.9293E-05],[71.918024,-5.7746E-05],[71.921459,-5.1559E-05],[71.924893,-4.9497E-05],[71.928328,-5.2074E-05],[71.931763,-5.4137E-05],[71.935197,-5.259E-05],[71.938632,-5.3106E-05],[71.942067,-5.3621E-05],[71.945501,-5.4137E-05],[71.948936,-5.4652E-05],[71.952371,-5.6715E-05],[71.955805,-5.6715E-05],[71.95924,-5.259E-05],[71.962675,-5.0012E-05],[71.966109,-4.9497E-05],[71.969544,-5.259E-05],[71.972979,-5.5684E-05],[71.976413,-5.5684E-05],[71.979848,-5.5168E-05],[71.983283,-4.8981E-05],[71.986717,-4.9497E-05],[71.990152,-5.6199E-05],[71.993587,-5.2074E-05],[71.997021,-4.8981E-05],[72.000456,-5.0528E-05],[72.003891,-5.1559E-05],[72.007325,-4.8465E-05],[72.01076,-4.6403E-05],[72.014195,-5.6199E-05],[72.017629,-5.5684E-05],[72.021064,-5.3621E-05],[72.024499,-5.3106E-05],[72.027933,-4.9497E-05],[72.031368,-5.4652E-05],[72.034803,-5.4137E-05],[72.038237,-5.259E-05],[72.041672,-5.2074E-05],[72.045107,-5.0012E-05],[72.048541,-5.0528E-05],[72.051976,-5.259E-05],[72.055411,-5.9293E-05],[72.058845,-5.4652E-05],[72.06228,-5.0012E-05],[72.065715,-5.1043E-05],[72.069149,-5.259E-05],[72.072584,-5.4137E-05],[72.076019,-5.4137E-05],[72.079453,-5.4652E-05],[72.082888,-5.0528E-05],[72.086323,-5.2074E-05]]}
-{"quant":[72.3569,-5.2762E-05],"mems":[[72.258056,-5.259E-05],[72.261491,-5.0012E-05],[72.264925,-5.2074E-05],[72.26836,-5.259E-05],[72.271795,-5.1559E-05],[72.275229,-5.0012E-05],[72.278664,-5.2074E-05],[72.282099,-5.259E-05],[72.285533,-5.259E-05],[72.288968,-5.6199E-05],[72.292403,-5.1043E-05],[72.295837,-5.3106E-05],[72.299272,-5.5168E-05],[72.302707,-4.795E-05],[72.306141,-4.6919E-05],[72.309576,-5.3106E-05],[72.313011,-5.6715E-05],[72.316445,-4.8465E-05],[72.31988,-4.6919E-05],[72.323315,-4.8981E-05],[72.326749,-5.0528E-05],[72.330184,-5.1559E-05],[72.333619,-5.2074E-05],[72.337053,-5.9293E-05],[72.340488,-5.7746E-05],[72.343923,-5.4137E-05],[72.347357,-5.6199E-05],[72.350792,-5.3621E-05],[72.354227,-5.1559E-05],[72.357661,-5.2074E-05],[72.361096,-5.0012E-05],[72.364531,-5.2074E-05],[72.367965,-5.4137E-05],[72.3714,-5.2074E-05],[72.374835,-5.259E-05],[72.378269,-5.3106E-05],[72.381704,-5.3106E-05],[72.385139,-5.4652E-05],[72.388573,-5.3621E-05],[72.392008,-5.3621E-05],[72.395443,-5.5168E-05],[72.398877,-5.259E-05],[72.402312,-5.0528E-05],[72.405747,-5.2074E-05],[72.409181,-5.3106E-05],[72.412616,-5.2074E-05],[72.416051,-5.4137E-05],[72.419485,-5.1559E-05],[72.42292,-4.8981E-05],[72.426355,-5.2074E-05],[72.429789,-5.3106E-05],[72.433224,-5.6199E-05],[72.436659,-5.5168E-05],[72.440093,-5.2074E-05],[72.443528,-5.3621E-05],[72.446963,-5.1043E-05],[72.450397,-5.0528E-05],[72.453832,-5.3106E-05],[72.457267,-5.4652E-05],[72.460701,-5.1559E-05],[72.464136,-5.1043E-05],[72.467571,-5.1043E-05],[72.471005,-5.0528E-05],[72.47444,-5.259E-05],[72.477875,-5.1043E-05],[72.481309,-5.1043E-05],[72.484744,-5.2074E-05],[72.488179,-5.3621E-05],[72.491613,-5.7746E-05],[72.495048,-5.5684E-05],[72.498483,-5.4137E-05],[72.501917,-5.0528E-05],[72.505352,-4.9497E-05],[72.508787,-5.3621E-05],[72.512221,-5.7746E-05],[72.515656,-5.7746E-05],[72.519091,-5.3106E-05],[72.522525,-5.1559E-05],[72.52596,-5.1043E-05],[72.529395,-5.3106E-05],[72.532829,-5.259E-05],[72.536264,-5.259E-05],[72.539699,-5.5684E-05],[72.543133,-4.8465E-05],[72.546568,-4.8981E-05],[72.550003,-5.2074E-05],[72.553437,-5.0528E-05],[72.556872,-5.259E-05],[72.560307,-5.2074E-05]]}
-{"quant":[72.8116,-5.4137E-05],"mems":[[72.714216,-5.5684E-05],[72.717767,-5.6715E-05],[72.721317,-5.1043E-05],[72.724868,-5.3621E-05],[72.728419,-5.5168E-05],[72.731969,-5.3621E-05],[72.73552,-5.259E-05],[72.739071,-4.8981E-05],[72.742621,-5.0012E-05],[72.746172,-5.1559E-05],[72.749723,-5.2074E-05],[72.753273,-5.3621E-05],[72.756824,-5.4137E-05],[72.760375,-5.5168E-05],[72.763925,-5.5168E-05],[72.767476,-5.5168E-05],[72.771027,-5.4137E-05],[72.774577,-5.4652E-05],[72.778128,-5.259E-05],[72.781679,-4.8465E-05],[72.785229,-5.0012E-05],[72.78878,-4.5887E-05],[72.792331,-4.8465E-05],[72.795881,-5.6199E-05],[72.799432,-5.4137E-05],[72.802983,-5.3106E-05],[72.806533,-5.1043E-05],[72.810084,-5.0012E-05],[72.813635,-5.1043E-05],[72.817185,-5.3621E-05],[72.820736,-5.5684E-05],[72.824287,-5.2074E-05],[72.827837,-5.259E-05],[72.831388,-5.3106E-05],[72.834939,-5.5684E-05],[72.838489,-5.6715E-05],[72.84204,-5.3106E-05],[72.845591,-5.5684E-05],[72.849141,-5.4652E-05],[72.852692,-5.0012E-05],[72.856243,-5.259E-05],[72.859793,-5.3621E-05],[72.863344,-5.4137E-05],[72.866895,-5.3621E-05],[72.870445,-4.8981E-05],[72.873996,-5.4137E-05],[72.877547,-5.7746E-05],[72.881097,-5.6199E-05],[72.884648,-6.0324E-05],[72.888199,-5.4137E-05],[72.891749,-5.3106E-05],[72.8953,-5.723E-05],[72.898851,-5.5684E-05],[72.902401,-5.5168E-05],[72.905952,-5.3621E-05],[72.909503,-5.3621E-05],[72.913053,-5.2074E-05],[72.916604,-5.0528E-05],[72.920155,-5.4137E-05],[72.923705,-5.3106E-05],[72.927256,-5.0528E-05],[72.930807,-5.259E-05],[72.934357,-5.2074E-05],[72.937908,-5.1559E-05],[72.941459,-4.8981E-05],[72.945009,-5.4652E-05],[72.94856,-5.9293E-05],[72.952111,-5.1043E-05],[72.955661,-5.2074E-05],[72.959212,-5.4137E-05],[72.962763,-5.5168E-05],[72.966313,-5.7746E-05],[72.969864,-5.6199E-05],[72.973415,-5.723E-05],[72.976965,-5.4652E-05],[72.980516,-5.5168E-05],[72.984067,-5.5684E-05],[72.987617,-5.0528E-05],[72.991168,-5.259E-05],[72.994719,-5.259E-05],[72.998269,-4.795E-05],[73.00182,-5.2074E-05],[73.005371,-5.723E-05],[73.008921,-5.6715E-05],[73.012472,-5.5684E-05]]}
-{"quant":[73.3678,-5.4315E-05],"mems":[[73.26812,-5.259E-05],[73.271671,-5.6715E-05],[73.275221,-5.4652E-05],[73.278772,-5.6715E-05],[73.282323,-5.6715E-05],[73.285873,-5.3106E-05],[73.289424,-4.8981E-05],[73.292975,-5.4137E-05],[73.296525,-5.4137E-05],[73.300076,-5.0012E-05],[73.303627,-5.0528E-05],[73.307177,-4.9497E-05],[73.310728,-5.259E-05],[73.314279,-5.5168E-05],[73.317829,-5.5168E-05],[73.32138,-5.4137E-05],[73.324931,-5.3106E-05],[73.328481,-5.3106E-05],[73.332032,-5.7746E-05],[73.335583,-6.0324E-05],[73.339133,-5.6715E-05],[73.342684,-5.1043E-05],[73.346235,-4.795E-05],[73.349785,-5.2074E-05],[73.353336,-5.5684E-05],[73.356887,-5.4652E-05],[73.360437,-5.1559E-05],[73.363988,-5.259E-05],[73.367539,-5.0528E-05],[73.371089,-5.1043E-05],[73.37464,-5.723E-05],[73.378191,-5.4652E-05],[73.381741,-5.4137E-05],[73.385292,-5.4652E-05],[73.388843,-5.2074E-05],[73.392393,-5.4137E-05],[73.395944,-5.7746E-05],[73.399495,-5.4137E-05],[73.403045,-5.3621E-05],[73.406596,-5.723E-05],[73.410147,-5.3106E-05],[73.413697,-5.4652E-05],[73.417248,-5.7746E-05],[73.420799,-5.6715E-05],[73.424349,-5.5168E-05],[73.4279,-5.5168E-05],[73.431451,-5.6199E-05],[73.435001,-5.4137E-05],[73.438552,-5.4137E-05],[73.442103,-5.5168E-05],[73.445653,-5.0528E-05],[73.449204,-4.795E-05],[73.452755,-5.1559E-05],[73.456305,-5.259E-05],[73.459856,-5.3621E-05],[73.463407,-5.5684E-05],[73.466957,-5.5168E-05],[73.470508,-5.5168E-05],[73.474059,-5.5684E-05],[73.477609,-5.8777E-05],[73.48116,-5.4652E-05],[73.484711,-5.2074E-05],[73.488261,-5.4137E-05],[73.491812,-5.0012E-05],[73.495363,-5.1559E-05],[73.498913,-5.3106E-05],[73.502464,-5.5168E-05],[73.506015,-5.5684E-05],[73.509565,-5.0012E-05],[73.513116,-5.1043E-05],[73.516667,-4.8465E-05],[73.520217,-5.1559E-05],[73.523768,-5.4652E-05],[73.527319,-5.2074E-05],[73.530869,-5.5168E-05],[73.53442,-5.4137E-05],[73.537971,-5.4652E-05],[73.541521,-5.0528E-05],[73.545072,-5.0012E-05],[73.548623,-5.259E-05],[73.552173,-5.0528E-05],[73.555724,-5.5168E-05],[73.559275,-5.6715E-05],[73.562825,-5.2074E-05],[73.566376,-4.9497E-05],[73.569927,-5.1559E-05]]}
-{"quant":[73.8287,-5.3432E-05],"mems":[[73.729707,-5.9293E-05],[73.733257,-5.6199E-05],[73.736808,-5.4137E-05],[73.740359,-5.8262E-05],[73.743909,-5.8777E-05],[73.74746,-5.4652E-05],[73.751011,-5.4137E-05],[73.754561,-5.7746E-05],[73.758112,-5.4137E-05],[73.761663,-5.1043E-05],[73.765213,-5.8777E-05],[73.768764,-5.8262E-05],[73.772315,-5.723E-05],[73.775865,-5.6715E-05],[73.779416,-5.3106E-05],[73.782967,-5.6199E-05],[73.786517,-5.723E-05],[73.790068,-5.7746E-05],[73.793619,-5.7746E-05],[73.797169,-5.7746E-05],[73.80072,-5.6199E-05],[73.804271,-5.4137E-05],[73.807821,-5.5684E-05],[73.811372,-5.5168E-05],[73.814923,-5.8262E-05],[73.818473,-5.6199E-05],[73.822024,-5.0528E-05],[73.825575,-5.1043E-05],[73.829125,-5.5684E-05],[73.832676,-5.7746E-05],[73.836227,-5.5684E-05],[73.839777,-5.4652E-05],[73.843328,-5.259E-05],[73.846879,-5.259E-05],[73.850429,-5.6715E-05],[73.85398,-5.5684E-05],[73.857531,-5.5684E-05],[73.861081,-5.4137E-05],[73.864632,-4.795E-05],[73.868183,-5.1043E-05],[73.871733,-5.3621E-05],[73.875284,-5.2074E-05],[73.878835,-5.4652E-05],[73.882385,-5.0012E-05],[73.885936,-5.0012E-05],[73.889487,-5.4137E-05],[73.893037,-5.1043E-05],[73.896588,-5.1043E-05],[73.900139,-5.2074E-05],[73.903689,-5.3621E-05],[73.90724,-5.4652E-05],[73.910791,-5.4652E-05],[73.914341,-5.3621E-05],[73.917892,-5.6199E-05],[73.921443,-5.6199E-05],[73.924993,-5.1559E-05],[73.928544,-5.0012E-05],[73.932095,-5.3621E-05],[73.935645,-5.8777E-05],[73.939196,-5.4652E-05],[73.942747,-5.259E-05],[73.946297,-5.1559E-05],[73.949848,-4.8465E-05],[73.953399,-5.4137E-05],[73.956949,-5.8262E-05],[73.9605,-5.723E-05],[73.964051,-5.3621E-05],[73.967601,-5.4137E-05],[73.971152,-5.4137E-05],[73.974703,-5.0012E-05],[73.978253,-5.259E-05],[73.981804,-5.5684E-05],[73.985355,-5.3106E-05],[73.988905,-5.2074E-05],[73.992456,-5.4652E-05],[73.996007,-5.5684E-05],[73.999557,-5.4652E-05],[74.003108,-5.4137E-05],[74.006659,-5.1559E-05],[74.010209,-5.1043E-05],[74.01376,-5.5684E-05],[74.017311,-5.4137E-05],[74.020861,-5.3621E-05],[74.024412,-5.3106E-05],[74.027963,-5.1043E-05],[74.031513,-5.4137E-05]]}
-{"quant":[74.2831,-5.4034E-05],"mems":[[74.184192,-5.4137E-05],[74.187743,-5.723E-05],[74.191293,-5.6199E-05],[74.194844,-5.259E-05],[74.198395,-5.5168E-05],[74.201945,-5.6199E-05],[74.205496,-5.5168E-05],[74.209047,-5.4137E-05],[74.212597,-5.2074E-05],[74.216148,-5.3621E-05],[74.219699,-5.259E-05],[74.223249,-5.4652E-05],[74.2268,-5.7746E-05],[74.230351,-5.2074E-05],[74.233901,-5.0012E-05],[74.237452,-5.2074E-05],[74.241003,-5.4137E-05],[74.244553,-5.6715E-05],[74.248104,-5.259E-05],[74.251655,-5.2074E-05],[74.255205,-5.4137E-05],[74.258756,-5.0012E-05],[74.262307,-5.259E-05],[74.265857,-5.3106E-05],[74.269408,-5.259E-05],[74.272959,-5.3621E-05],[74.276509,-5.2074E-05],[74.28006,-5.259E-05],[74.283611,-5.2074E-05],[74.287161,-5.4137E-05],[74.290712,-5.5168E-05],[74.294263,-5.5684E-05],[74.297813,-5.3621E-05],[74.301364,-5.259E-05],[74.304915,-5.4652E-05],[74.308465,-5.6199E-05],[74.312016,-5.723E-05],[74.315567,-5.0528E-05],[74.319117,-5.0012E-05],[74.322668,-5.8262E-05],[74.326219,-5.8262E-05],[74.329769,-5.5168E-05],[74.33332,-5.6199E-05],[74.336871,-5.1559E-05],[74.340421,-5.1043E-05],[74.343972,-5.8262E-05],[74.347523,-5.4652E-05],[74.351073,-5.259E-05],[74.354624,-5.1043E-05],[74.358175,-4.5372E-05],[74.361725,-5.0012E-05],[74.365276,-5.6199E-05],[74.368827,-5.6199E-05],[74.372377,-5.4652E-05],[74.375928,-5.2074E-05],[74.379479,-5.3621E-05],[74.383029,-5.6715E-05],[74.38658,-5.723E-05],[74.390131,-5.2074E-05],[74.393681,-5.6199E-05],[74.397232,-5.6715E-05],[74.400783,-4.9497E-05],[74.404333,-5.3106E-05],[74.407884,-5.4652E-05],[74.411435,-5.6199E-05],[74.414985,-5.6199E-05],[74.418536,-5.259E-05],[74.422087,-5.0528E-05],[74.425637,-5.4652E-05],[74.429188,-5.4137E-05],[74.432739,-5.0012E-05],[74.436289,-5.3106E-05],[74.43984,-5.1559E-05],[74.443391,-5.1043E-05],[74.446941,-5.5168E-05],[74.450492,-5.6715E-05],[74.454043,-5.9293E-05],[74.457593,-5.5684E-05],[74.461144,-5.259E-05],[74.464695,-5.1559E-05],[74.468245,-5.1043E-05],[74.471796,-5.6199E-05],[74.475347,-5.4652E-05],[74.478897,-4.8465E-05],[74.482448,-4.795E-05],[74.485999,-5.259E-05]]}
-{"quant":[74.7455,-5.3995E-05],"mems":[[74.645779,-5.1559E-05],[74.649329,-5.3621E-05],[74.65288,-5.4137E-05],[74.656431,-5.1043E-05],[74.659981,-5.3621E-05],[74.663532,-5.6199E-05],[74.667083,-5.259E-05],[74.670633,-5.259E-05],[74.674184,-5.4652E-05],[74.677735,-5.0012E-05],[74.681285,-5.1043E-05],[74.684836,-5.5684E-05],[74.688387,-5.3106E-05],[74.691937,-5.3106E-05],[74.695488,-5.3106E-05],[74.699039,-5.3621E-05],[74.702589,-5.2074E-05],[74.70614,-5.1043E-05],[74.709691,-5.3106E-05],[74.713241,-5.3621E-05],[74.716792,-5.6715E-05],[74.720343,-5.3621E-05],[74.723893,-5.1559E-05],[74.727444,-4.8465E-05],[74.730995,-4.5372E-05],[74.734545,-5.0528E-05],[74.738096,-5.4137E-05],[74.741647,-5.3621E-05],[74.745197,-5.259E-05],[74.748748,-5.1043E-05],[74.752299,-5.1043E-05],[74.755849,-5.2074E-05],[74.7594,-5.3106E-05],[74.762951,-5.6715E-05],[74.766501,-5.1043E-05],[74.770052,-5.0012E-05],[74.773603,-5.1559E-05],[74.777153,-5.1559E-05],[74.780704,-5.6199E-05],[74.784255,-5.1043E-05],[74.787805,-5.4137E-05],[74.791356,-5.8262E-05],[74.794907,-5.5684E-05],[74.798457,-5.8777E-05],[74.802008,-5.6199E-05],[74.805559,-5.259E-05],[74.809109,-5.259E-05],[74.81266,-5.4652E-05],[74.816211,-5.6199E-05],[74.819761,-5.4137E-05],[74.823312,-5.4652E-05],[74.826863,-5.5168E-05],[74.830413,-4.8981E-05],[74.833964,-4.8981E-05],[74.837515,-5.723E-05],[74.841065,-5.8262E-05],[74.844616,-5.5168E-05],[74.848167,-5.8777E-05],[74.851717,-5.4652E-05],[74.855268,-5.1559E-05],[74.858819,-5.8262E-05],[74.862369,-5.2074E-05],[74.86592,-5.3106E-05],[74.869471,-5.723E-05],[74.873021,-4.9497E-05],[74.876572,-5.5168E-05],[74.880123,-5.6715E-05],[74.883673,-5.0528E-05],[74.887224,-5.0528E-05],[74.890775,-5.4137E-05],[74.894325,-5.4652E-05],[74.897876,-5.0012E-05],[74.901427,-5.1043E-05],[74.904977,-5.4137E-05],[74.908528,-5.3621E-05],[74.912079,-5.3621E-05],[74.915629,-5.4137E-05],[74.91918,-5.6715E-05],[74.922731,-5.6199E-05],[74.926281,-5.1043E-05],[74.929832,-5.2074E-05],[74.933383,-5.259E-05],[74.936933,-5.1043E-05],[74.940484,-5.6199E-05],[74.944035,-5.3106E-05],[74.947585,-4.9497E-05]]}
-{"quant":[75.202,-0.16976],"mems":[[75.189031,-5.5168E-05],[75.192581,-5.6715E-05],[75.196132,-5.5684E-05],[75.199683,-5.259E-05],[75.203233,-5.1043E-05],[75.206784,-5.6199E-05],[75.210335,-5.5168E-05],[75.213885,-5.4137E-05],[75.217436,-5.6715E-05],[75.220987,-5.1043E-05],[75.224537,-4.8465E-05],[75.228088,-5.3106E-05],[75.231639,-5.5168E-05],[75.235189,-5.259E-05],[75.23874,-5.1559E-05],[75.242291,-4.9497E-05],[75.245841,-4.795E-05],[75.249392,-5.3621E-05],[75.252943,-5.7746E-05],[75.256493,-5.5684E-05],[75.260044,-5.5168E-05],[75.263595,-5.3621E-05],[75.267145,-5.1559E-05],[75.270696,-5.3621E-05],[75.274247,-6.1355E-05],[75.277797,-5.723E-05],[75.281348,-4.8981E-05],[75.284899,-5.1559E-05],[75.288449,-4.8465E-05],[75.292,-5.259E-05],[75.295327,-5.4652E-05],[75.298653,-5.0012E-05],[75.30198,-5.1043E-05],[75.305307,-5.1043E-05],[75.308633,-5.5168E-05],[75.31196,-5.6715E-05],[75.315287,-5.4137E-05],[75.318613,-5.259E-05],[75.32194,-4.795E-05],[75.325267,-4.6403E-05],[75.328593,-4.8981E-05],[75.33192,-5.5168E-05],[75.335247,-5.4137E-05],[75.338573,-5.0528E-05],[75.3419,-5.3621E-05],[75.345227,-5.6715E-05],[75.348553,-5.6715E-05],[75.35188,-5.8262E-05],[75.355207,-5.7746E-05],[75.358533,-5.1043E-05],[75.36186,-5.0012E-05],[75.365187,-4.795E-05],[75.368513,-5.0528E-05],[75.37184,-5.1559E-05],[75.375167,-5.0012E-05],[75.378493,-5.3621E-05],[75.38182,-5.1043E-05],[75.385147,-5.2074E-05],[75.388473,-4.8981E-05],[75.3918,-5.2074E-05],[75.395127,-5.3621E-05],[75.398453,-4.6403E-05],[75.40178,-5.3106E-05],[75.405107,-5.0528E-05],[75.408433,-5.1559E-05],[75.41176,-5.4652E-05],[75.415087,-5.2074E-05],[75.418413,-5.4137E-05],[75.42174,-4.795E-05],[75.425067,-4.4856E-05],[75.428393,-4.8465E-05],[75.43172,-5.3106E-05],[75.435047,-5.0528E-05],[75.438373,-4.7434E-05],[75.4417,-4.9497E-05],[75.445027,-4.8981E-05],[75.448353,-5.3106E-05],[75.45168,-5.4652E-05],[75.455007,-5.3621E-05],[75.458333,-5.6199E-05],[75.46166,-5.4652E-05],[75.464987,-5.6199E-05],[75.468313,-6.1355E-05],[75.47164,-5.7746E-05],[75.474967,-5.6199E-05],[75.478293,-5.4652E-05],[75.48162,-5.259E-05],[75.484947,-5.5684E-05]]}
-{"quant":[75.6603,-5.259E-05],"mems":[[75.56146,-5.3621E-05],[75.564787,-5.5168E-05],[75.568113,-5.6715E-05],[75.57144,-5.4652E-05],[75.574767,-5.259E-05],[75.578093,-5.1559E-05],[75.58142,-5.259E-05],[75.584747,-5.5684E-05],[75.588073,-5.1559E-05],[75.5914,-5.2074E-05],[75.594727,-5.259E-05],[75.598053,-5.3106E-05],[75.60138,-5.8262E-05],[75.604707,-5.3106E-05],[75.608033,-5.259E-05],[75.61136,-5.5168E-05],[75.614687,-5.2074E-05],[75.618013,-5.259E-05],[75.62134,-5.0528E-05],[75.624667,-5.6199E-05],[75.627993,-5.723E-05],[75.63132,-5.2074E-05],[75.634647,-5.3106E-05],[75.637973,-5.1043E-05],[75.6413,-4.8981E-05],[75.644627,-5.0528E-05],[75.647953,-5.2074E-05],[75.65128,-4.8465E-05],[75.654607,-4.795E-05],[75.657933,-5.1559E-05],[75.66126,-5.7746E-05],[75.664587,-5.6199E-05],[75.667913,-5.1559E-05],[75.67124,-5.4652E-05],[75.674567,-5.2074E-05],[75.677893,-5.259E-05],[75.68122,-5.1559E-05],[75.684547,-5.4137E-05],[75.687873,-5.6715E-05],[75.6912,-4.795E-05],[75.694527,-5.0528E-05],[75.697853,-5.4652E-05],[75.70118,-5.0528E-05],[75.704507,-5.3106E-05],[75.707833,-5.2074E-05],[75.71116,-5.0528E-05],[75.714487,-5.5168E-05],[75.717813,-5.4652E-05],[75.72114,-5.2074E-05],[75.724467,-5.1043E-05],[75.727793,-4.795E-05],[75.73112,-4.5887E-05],[75.734447,-5.1043E-05],[75.737773,-5.1559E-05],[75.7411,-5.6715E-05],[75.744427,-5.6199E-05],[75.747753,-4.6403E-05],[75.75108,-5.0528E-05],[75.754407,-5.4652E-05],[75.757733,-5.6199E-05],[75.76106,-5.3621E-05],[75.764387,-5.0012E-05],[75.767713,-5.3621E-05],[75.77104,-5.4137E-05],[75.774367,-5.4137E-05],[75.777693,-5.6199E-05],[75.78102,-5.6715E-05],[75.784347,-5.8262E-05],[75.787673,-5.2074E-05],[75.791,-4.7434E-05],[75.794327,-5.6199E-05],[75.797653,-5.6715E-05],[75.80098,-5.4652E-05],[75.804307,-5.5684E-05],[75.807633,-5.259E-05],[75.81096,-5.0528E-05],[75.814287,-5.1559E-05],[75.817613,-5.2074E-05],[75.82094,-5.0528E-05],[75.824267,-5.4137E-05],[75.827593,-5.259E-05],[75.83092,-5.1043E-05],[75.834247,-5.5684E-05],[75.837573,-5.4137E-05],[75.8409,-5.4137E-05],[75.844227,-5.4137E-05],[75.847553,-5.2074E-05],[75.85088,-5.1043E-05],[75.854207,-5.0012E-05],[75.857533,-5.5168E-05],[75.86086,-5.5168E-05]]}
-{"quant":[76.1657,-5.3222E-05],"mems":[[76.067113,-5.4137E-05],[76.07044,-5.259E-05],[76.073767,-5.723E-05],[76.077093,-5.5684E-05],[76.08042,-4.795E-05],[76.083747,-5.2074E-05],[76.087073,-5.2074E-05],[76.0904,-4.8981E-05],[76.093727,-5.2074E-05],[76.097053,-5.723E-05],[76.10038,-5.4652E-05],[76.103707,-5.259E-05],[76.107033,-5.259E-05],[76.11036,-5.2074E-05],[76.113687,-5.259E-05],[76.117013,-5.4137E-05],[76.12034,-5.5684E-05],[76.123667,-5.3106E-05],[76.126993,-5.259E-05],[76.13032,-5.1559E-05],[76.133647,-4.9497E-05],[76.136973,-5.0012E-05],[76.1403,-4.8465E-05],[76.143627,-5.259E-05],[76.146953,-5.7746E-05],[76.15028,-5.6715E-05],[76.153607,-5.3621E-05],[76.156933,-5.0012E-05],[76.16026,-5.1043E-05],[76.163587,-5.1559E-05],[76.166913,-4.9497E-05],[76.17024,-5.259E-05],[76.173567,-5.259E-05],[76.176893,-5.2074E-05],[76.18022,-5.0012E-05],[76.183547,-5.3621E-05],[76.186873,-5.723E-05],[76.1902,-5.6199E-05],[76.193527,-5.723E-05],[76.196853,-5.3621E-05],[76.20018,-5.4137E-05],[76.203507,-5.2074E-05],[76.206833,-4.9497E-05],[76.21016,-5.259E-05],[76.213487,-5.0528E-05],[76.216813,-5.3621E-05],[76.22014,-5.2074E-05],[76.223467,-4.8981E-05],[76.226793,-5.3106E-05],[76.23012,-5.0528E-05],[76.233447,-4.5887E-05],[76.236773,-5.6199E-05],[76.2401,-6.1355E-05],[76.243427,-5.5684E-05],[76.246753,-5.259E-05],[76.25008,-5.1559E-05],[76.253407,-5.259E-05],[76.256733,-5.4652E-05],[76.26006,-5.7746E-05],[76.263387,-5.6715E-05],[76.266713,-5.3106E-05],[76.27004,-5.0012E-05],[76.273367,-5.1043E-05],[76.276693,-5.8777E-05],[76.28002,-5.8777E-05],[76.283347,-5.6199E-05],[76.286673,-5.4137E-05],[76.29,-5.723E-05],[76.293327,-5.6715E-05],[76.296653,-5.259E-05],[76.29998,-5.4652E-05],[76.303307,-5.4652E-05],[76.306633,-5.5168E-05],[76.30996,-5.4137E-05],[76.313287,-5.4652E-05],[76.316613,-5.1559E-05],[76.31994,-5.0528E-05],[76.323267,-5.5168E-05],[76.326593,-5.3621E-05],[76.32992,-5.5168E-05],[76.333247,-5.4652E-05],[76.336573,-5.6199E-05],[76.3399,-5.6199E-05],[76.343227,-5.5168E-05],[76.346553,-5.6199E-05],[76.34988,-5.4652E-05],[76.353207,-5.723E-05],[76.356533,-5.6199E-05],[76.35986,-5.8262E-05],[76.363187,-5.5168E-05],[76.366513,-5.1043E-05]]}
-{"quant":[76.6295,-5.2524E-05],"mems":[[76.52952,-5.3106E-05],[76.532847,-5.1043E-05],[76.536173,-5.259E-05],[76.5395,-5.2074E-05],[76.542827,-4.8981E-05],[76.546153,-5.0528E-05],[76.54948,-5.6715E-05],[76.552807,-5.8777E-05],[76.556133,-5.5168E-05],[76.55946,-5.3106E-05],[76.562787,-4.7434E-05],[76.566113,-5.0012E-05],[76.56944,-5.5684E-05],[76.572767,-5.4137E-05],[76.576093,-5.4652E-05],[76.57942,-5.5168E-05],[76.582747,-5.0012E-05],[76.586073,-5.1043E-05],[76.5894,-5.6199E-05],[76.592727,-5.5168E-05],[76.596053,-5.259E-05],[76.59938,-5.0528E-05],[76.602707,-5.1559E-05],[76.606033,-5.2074E-05],[76.60936,-5.5684E-05],[76.612687,-5.8262E-05],[76.616013,-5.3106E-05],[76.61934,-5.2074E-05],[76.622667,-5.3621E-05],[76.625993,-5.9808E-05],[76.62932,-5.7746E-05],[76.632647,-4.795E-05],[76.635973,-5.0528E-05],[76.6393,-5.1559E-05],[76.642627,-4.9497E-05],[76.645953,-5.1559E-05],[76.64928,-4.8981E-05],[76.652607,-4.9497E-05],[76.655933,-5.1043E-05],[76.65926,-5.0012E-05],[76.662587,-5.4137E-05],[76.665913,-5.1559E-05],[76.66924,-5.5168E-05],[76.672567,-6.0324E-05],[76.675893,-5.3621E-05],[76.67922,-5.1559E-05],[76.682547,-5.3106E-05],[76.685873,-5.4652E-05],[76.6892,-5.259E-05],[76.692527,-4.9497E-05],[76.695853,-4.8981E-05],[76.69918,-4.8465E-05],[76.702507,-5.2074E-05],[76.705833,-5.3621E-05],[76.70916,-5.4137E-05],[76.712487,-5.5168E-05],[76.715813,-5.3621E-05],[76.71914,-5.1559E-05],[76.722467,-5.259E-05],[76.725793,-5.5684E-05],[76.72912,-5.7746E-05],[76.732447,-5.7746E-05],[76.735773,-5.3621E-05],[76.7391,-5.4137E-05],[76.742427,-5.8777E-05],[76.745753,-5.5684E-05],[76.74908,-5.5684E-05],[76.752407,-6.1355E-05],[76.755733,-5.5168E-05],[76.75906,-5.2074E-05],[76.762387,-5.9293E-05],[76.765713,-5.5168E-05],[76.76904,-5.4652E-05],[76.772367,-5.3621E-05],[76.775693,-4.9497E-05],[76.77902,-5.259E-05],[76.782347,-5.0528E-05],[76.785673,-5.1559E-05],[76.789,-5.4137E-05],[76.792327,-5.1043E-05],[76.795653,-5.1043E-05],[76.79898,-5.3106E-05],[76.802307,-5.5684E-05],[76.805633,-5.4652E-05],[76.80896,-5.0012E-05],[76.812287,-5.1559E-05],[76.815613,-5.8262E-05],[76.81894,-6.1355E-05],[76.822267,-5.7746E-05],[76.825593,-5.4652E-05],[76.82892,-5.3106E-05],[76.832247,-5.259E-05]]}
-{"quant":[77.0835,-5.2989E-05],"mems":[[76.985273,-5.4137E-05],[76.9886,-5.2074E-05],[76.991927,-5.3106E-05],[76.995253,-5.7746E-05],[76.99858,-5.4652E-05],[77.001907,-5.1043E-05],[77.005233,-5.2074E-05],[77.00856,-4.8981E-05],[77.011887,-5.3106E-05],[77.015213,-5.8777E-05],[77.01854,-5.1559E-05],[77.021867,-5.3106E-05],[77.025193,-5.8777E-05],[77.02852,-4.8981E-05],[77.031847,-4.5372E-05],[77.035173,-5.0528E-05],[77.0385,-5.259E-05],[77.041827,-5.3106E-05],[77.045153,-4.4856E-05],[77.04848,-4.9497E-05],[77.051807,-5.6715E-05],[77.055133,-5.3621E-05],[77.05846,-5.7746E-05],[77.061787,-5.0012E-05],[77.065113,-4.8981E-05],[77.06844,-5.1559E-05],[77.071767,-5.3106E-05],[77.075093,-5.723E-05],[77.07842,-5.0012E-05],[77.081747,-5.0528E-05],[77.085073,-5.0012E-05],[77.0884,-5.259E-05],[77.091727,-5.9293E-05],[77.095053,-5.1559E-05],[77.09838,-5.0528E-05],[77.101707,-5.2074E-05],[77.105033,-5.1559E-05],[77.10836,-5.5168E-05],[77.111687,-5.5684E-05],[77.115013,-5.3621E-05],[77.11834,-5.0528E-05],[77.121667,-5.259E-05],[77.124993,-5.0012E-05],[77.12832,-5.1043E-05],[77.131647,-5.4652E-05],[77.134973,-4.8981E-05],[77.1383,-5.5168E-05],[77.141627,-5.5684E-05],[77.144953,-5.1559E-05],[77.14828,-5.723E-05],[77.151607,-5.6199E-05],[77.154933,-5.0528E-05],[77.15826,-5.0528E-05],[77.161587,-5.3106E-05],[77.164913,-4.8981E-05],[77.16824,-5.4137E-05],[77.171567,-5.8262E-05],[77.174893,-5.5684E-05],[77.17822,-5.6199E-05],[77.181547,-5.0012E-05],[77.184873,-4.9497E-05],[77.1882,-5.6199E-05],[77.191527,-5.7746E-05],[77.194853,-4.9497E-05],[77.19818,-4.8465E-05],[77.201507,-5.3621E-05],[77.204833,-5.1043E-05],[77.20816,-5.0012E-05],[77.211487,-5.0012E-05],[77.214813,-5.3621E-05],[77.21814,-5.3621E-05],[77.221467,-5.0528E-05],[77.224793,-5.3621E-05],[77.22812,-5.6199E-05],[77.231447,-5.5684E-05],[77.234773,-5.259E-05],[77.2381,-5.2074E-05],[77.241427,-5.4652E-05],[77.244753,-5.5168E-05],[77.24808,-5.5168E-05],[77.251407,-5.5168E-05],[77.254733,-5.5168E-05],[77.25806,-5.5168E-05],[77.261387,-5.3106E-05],[77.264713,-5.259E-05],[77.26804,-5.259E-05],[77.271367,-5.259E-05],[77.274693,-5.3106E-05],[77.27802,-5.2074E-05],[77.281347,-5.1043E-05],[77.284673,-5.4137E-05]]}
-{"quant":[77.5242,-5.239E-05],"mems":[[77.424393,-5.5168E-05],[77.42772,-4.8981E-05],[77.431047,-4.3309E-05],[77.434373,-4.8981E-05],[77.4377,-5.4137E-05],[77.441027,-5.1043E-05],[77.444353,-5.1559E-05],[77.44768,-5.3106E-05],[77.451007,-5.1043E-05],[77.454333,-5.3621E-05],[77.45766,-5.4652E-05],[77.460987,-5.1559E-05],[77.464313,-5.1559E-05],[77.46764,-5.259E-05],[77.470967,-5.3106E-05],[77.474293,-5.3106E-05],[77.47762,-5.3106E-05],[77.480947,-5.3621E-05],[77.484273,-5.259E-05],[77.4876,-5.3106E-05],[77.490927,-5.0528E-05],[77.494253,-5.0528E-05],[77.49758,-5.4137E-05],[77.500907,-5.4652E-05],[77.504233,-5.4137E-05],[77.50756,-4.8981E-05],[77.510887,-4.6919E-05],[77.514213,-4.9497E-05],[77.51754,-5.0528E-05],[77.520867,-5.3621E-05],[77.524193,-5.5684E-05],[77.52752,-5.259E-05],[77.530847,-5.4652E-05],[77.534173,-5.9293E-05],[77.5375,-5.4137E-05],[77.540827,-5.3106E-05],[77.544153,-5.5168E-05],[77.54748,-4.8465E-05],[77.550807,-5.0012E-05],[77.554133,-5.1043E-05],[77.55746,-5.1043E-05],[77.560787,-5.3621E-05],[77.564113,-4.7434E-05],[77.56744,-4.795E-05],[77.570767,-5.259E-05],[77.574093,-5.1559E-05],[77.57742,-5.4137E-05],[77.580747,-5.5684E-05],[77.584073,-4.795E-05],[77.5874,-4.6403E-05],[77.590727,-5.4137E-05],[77.594053,-5.5168E-05],[77.59738,-5.3106E-05],[77.600707,-4.8981E-05],[77.604033,-4.9497E-05],[77.60736,-5.3106E-05],[77.610687,-5.1559E-05],[77.614013,-5.6199E-05],[77.61734,-5.9293E-05],[77.620667,-5.4137E-05],[77.623993,-5.1559E-05],[77.62732,-5.0528E-05],[77.630647,-5.259E-05],[77.633973,-5.5168E-05],[77.6373,-5.0012E-05],[77.640627,-4.7434E-05],[77.643953,-5.1043E-05],[77.64728,-5.0528E-05],[77.650607,-5.3621E-05],[77.653933,-5.6715E-05],[77.65726,-5.6199E-05],[77.660587,-5.4137E-05],[77.663913,-5.2074E-05],[77.66724,-5.259E-05],[77.670567,-5.1043E-05],[77.673893,-5.3106E-05],[77.67722,-5.1559E-05],[77.680547,-4.9497E-05],[77.683873,-5.3621E-05],[77.6872,-5.1043E-05],[77.690527,-5.259E-05],[77.693853,-5.4137E-05],[77.69718,-5.4137E-05],[77.700507,-5.3621E-05],[77.703833,-5.2074E-05],[77.70716,-5.8777E-05],[77.710487,-5.723E-05],[77.713813,-5.5168E-05],[77.71714,-6.0324E-05],[77.720467,-5.9808E-05],[77.723793,-6.0324E-05],[77.72712,-5.5168E-05]]}
-{"quant":[77.9759,-5.2524E-05],"mems":[[77.876405,-5.2074E-05],[77.879844,-5.4137E-05],[77.883283,-5.0528E-05],[77.886721,-5.0528E-05],[77.89016,-5.0528E-05],[77.893599,-5.0528E-05],[77.897037,-5.7746E-05],[77.900476,-5.723E-05],[77.903915,-5.259E-05],[77.907353,-5.3106E-05],[77.910792,-5.4137E-05],[77.914231,-5.4137E-05],[77.917669,-5.5168E-05],[77.921108,-5.3106E-05],[77.924547,-5.3621E-05],[77.927985,-5.5168E-05],[77.931424,-5.6199E-05],[77.934863,-6.0324E-05],[77.938301,-5.3621E-05],[77.94174,-5.1043E-05],[77.945179,-5.5684E-05],[77.948617,-5.4652E-05],[77.952056,-5.4652E-05],[77.955495,-5.6199E-05],[77.958933,-5.5168E-05],[77.962372,-5.0012E-05],[77.965811,-5.1043E-05],[77.969249,-5.5684E-05],[77.972688,-5.1043E-05],[77.976127,-4.9497E-05],[77.979565,-4.8981E-05],[77.983004,-4.8981E-05],[77.986443,-5.4137E-05],[77.989881,-5.1043E-05],[77.99332,-4.795E-05],[77.996759,-5.259E-05],[78.000197,-5.2074E-05],[78.003636,-5.1559E-05],[78.007075,-5.6715E-05],[78.010513,-5.6199E-05],[78.013952,-5.3106E-05],[78.017391,-5.5168E-05],[78.020829,-5.259E-05],[78.024268,-5.1559E-05],[78.027707,-5.3106E-05],[78.031145,-5.259E-05],[78.034584,-5.4652E-05],[78.038023,-5.1559E-05],[78.041461,-5.259E-05],[78.0449,-5.4652E-05],[78.048339,-5.5168E-05],[78.051777,-5.3106E-05],[78.055216,-5.0528E-05],[78.058655,-5.1559E-05],[78.062093,-4.9497E-05],[78.065532,-4.9497E-05],[78.068971,-5.1043E-05],[78.072409,-5.8777E-05],[78.075848,-5.6715E-05],[78.079287,-5.1043E-05],[78.082725,-5.3106E-05],[78.086164,-4.795E-05],[78.089603,-5.259E-05],[78.093041,-5.6199E-05],[78.09648,-5.1559E-05],[78.099919,-5.1043E-05],[78.103357,-4.8981E-05],[78.106796,-5.0528E-05],[78.110235,-5.1043E-05],[78.113673,-5.0528E-05],[78.117112,-5.1043E-05],[78.120551,-4.9497E-05],[78.123989,-5.1043E-05],[78.127428,-5.5168E-05],[78.130867,-5.9808E-05],[78.134305,-5.6715E-05],[78.137744,-5.259E-05],[78.141183,-4.9497E-05],[78.144621,-5.1043E-05],[78.14806,-5.8777E-05],[78.151499,-5.1559E-05],[78.154937,-4.9497E-05],[78.158376,-5.259E-05],[78.161815,-4.8465E-05],[78.165253,-5.6715E-05],[78.168692,-5.9808E-05],[78.172131,-5.3621E-05],[78.175569,-5.4652E-05],[78.179008,-5.5168E-05]]}
-{"quant":[78.6505,-5.2573E-05],"mems":[[78.553823,-5.8262E-05],[78.557261,-5.5684E-05],[78.5607,-5.6199E-05],[78.564139,-5.4137E-05],[78.567577,-5.0528E-05],[78.571016,-5.4652E-05],[78.574455,-5.7746E-05],[78.577893,-5.0012E-05],[78.581332,-4.5372E-05],[78.584771,-5.259E-05],[78.588209,-5.7746E-05],[78.591648,-5.3621E-05],[78.595087,-5.1043E-05],[78.598525,-5.0012E-05],[78.601964,-5.0012E-05],[78.605403,-5.6199E-05],[78.608841,-5.8777E-05],[78.61228,-5.3621E-05],[78.615719,-5.0012E-05],[78.619157,-5.0012E-05],[78.622596,-4.9497E-05],[78.626035,-5.1559E-05],[78.629473,-5.259E-05],[78.632912,-5.2074E-05],[78.636351,-5.1559E-05],[78.639789,-5.2074E-05],[78.643228,-5.3106E-05],[78.646667,-5.3106E-05],[78.650105,-5.5684E-05],[78.653544,-5.4137E-05],[78.656983,-5.2074E-05],[78.660421,-5.4652E-05],[78.66386,-5.8262E-05],[78.667299,-5.5168E-05],[78.670737,-5.1043E-05],[78.674176,-5.3106E-05],[78.677615,-4.8465E-05],[78.681053,-5.0528E-05],[78.684492,-5.3621E-05],[78.687931,-5.0012E-05],[78.691369,-4.9497E-05],[78.694808,-4.8981E-05],[78.698247,-5.2074E-05],[78.701685,-5.6199E-05],[78.705124,-5.6199E-05],[78.708563,-5.4137E-05],[78.712001,-5.2074E-05],[78.71544,-5.2074E-05],[78.718879,-5.3106E-05],[78.722317,-5.259E-05],[78.725756,-5.5684E-05],[78.729195,-5.7746E-05],[78.732633,-5.2074E-05],[78.736072,-5.1043E-05],[78.739511,-4.7434E-05],[78.742949,-4.7434E-05],[78.746388,-5.0012E-05],[78.749827,-5.2074E-05],[78.753265,-5.5684E-05],[78.756704,-5.0528E-05],[78.760143,-5.1043E-05],[78.763581,-5.3621E-05],[78.76702,-5.3621E-05],[78.770459,-5.4137E-05],[78.773897,-5.4137E-05],[78.777336,-5.8777E-05],[78.780775,-5.4652E-05],[78.784213,-5.4137E-05],[78.787652,-5.8262E-05],[78.791091,-5.3106E-05],[78.794529,-4.795E-05],[78.797968,-4.9497E-05],[78.801407,-5.2074E-05],[78.804845,-5.3106E-05],[78.808284,-5.8262E-05],[78.811723,-5.5684E-05],[78.815161,-5.1043E-05],[78.8186,-5.6199E-05],[78.822039,-5.3106E-05],[78.825477,-4.8465E-05],[78.828916,-5.259E-05],[78.832355,-5.6199E-05],[78.835793,-5.1043E-05],[78.839232,-5.0528E-05],[78.842671,-4.9497E-05],[78.846109,-5.0528E-05],[78.849548,-5.8777E-05],[78.852987,-5.4652E-05]]}
-{"quant":[79.118,-5.2968E-05],"mems":[[79.018043,-5.1559E-05],[79.021481,-4.9497E-05],[79.02492,-5.3106E-05],[79.028359,-5.4137E-05],[79.031797,-5.4137E-05],[79.035236,-5.3106E-05],[79.038675,-5.5684E-05],[79.042113,-5.6715E-05],[79.045552,-5.5684E-05],[79.048991,-5.4137E-05],[79.052429,-5.1559E-05],[79.055868,-4.9497E-05],[79.059307,-5.0528E-05],[79.062745,-5.259E-05],[79.066184,-5.1559E-05],[79.069623,-5.3106E-05],[79.073061,-5.0528E-05],[79.0765,-4.7434E-05],[79.079939,-4.8981E-05],[79.083377,-5.1043E-05],[79.086816,-5.1043E-05],[79.090255,-4.8465E-05],[79.093693,-4.9497E-05],[79.097132,-5.0528E-05],[79.100571,-5.0528E-05],[79.104009,-5.0012E-05],[79.107448,-5.0012E-05],[79.110887,-5.4652E-05],[79.114325,-5.5168E-05],[79.117764,-4.6403E-05],[79.121203,-4.6919E-05],[79.124641,-5.723E-05],[79.12808,-5.5168E-05],[79.131519,-5.4652E-05],[79.134957,-5.4137E-05],[79.138396,-4.8981E-05],[79.141835,-5.0528E-05],[79.145273,-5.3106E-05],[79.148712,-5.5168E-05],[79.152151,-5.1043E-05],[79.155589,-5.0528E-05],[79.159028,-5.4652E-05],[79.162467,-5.3621E-05],[79.165905,-5.6199E-05],[79.169344,-5.723E-05],[79.172783,-5.5684E-05],[79.176221,-5.4137E-05],[79.17966,-5.1559E-05],[79.183099,-5.1559E-05],[79.186537,-5.2074E-05],[79.189976,-5.2074E-05],[79.193415,-5.0528E-05],[79.196853,-4.8981E-05],[79.200292,-5.3621E-05],[79.203731,-5.723E-05],[79.207169,-5.3106E-05],[79.210608,-5.0012E-05],[79.214047,-5.3621E-05],[79.217485,-5.2074E-05],[79.220924,-5.3621E-05],[79.224363,-5.6199E-05],[79.227801,-5.2074E-05],[79.23124,-5.5168E-05],[79.234679,-5.6199E-05],[79.238117,-5.0528E-05],[79.241556,-4.9497E-05],[79.244995,-5.4137E-05],[79.248433,-5.3106E-05],[79.251872,-5.2074E-05],[79.255311,-5.5168E-05],[79.258749,-4.9497E-05],[79.262188,-4.6919E-05],[79.265627,-5.259E-05],[79.269065,-5.3621E-05],[79.272504,-5.5168E-05],[79.275943,-5.4652E-05],[79.279381,-5.2074E-05],[79.28282,-5.3106E-05],[79.286259,-5.259E-05],[79.289697,-5.1559E-05],[79.293136,-5.5168E-05],[79.296575,-5.6199E-05],[79.300013,-5.4137E-05],[79.303452,-5.3621E-05],[79.306891,-5.5684E-05],[79.310329,-5.6715E-05],[79.313768,-5.7746E-05],[79.317207,-5.723E-05],[79.320645,-5.3621E-05]]}
-{"quant":[79.6401,-5.149E-05],"mems":[[79.54072,-5.2074E-05],[79.544159,-5.259E-05],[79.547597,-5.6199E-05],[79.551036,-5.4652E-05],[79.554475,-5.2074E-05],[79.557913,-4.8465E-05],[79.561352,-4.8465E-05],[79.564791,-5.0528E-05],[79.568229,-5.723E-05],[79.571668,-6.0839E-05],[79.575107,-5.0528E-05],[79.578545,-4.6919E-05],[79.581984,-5.0528E-05],[79.585423,-5.259E-05],[79.588861,-5.4652E-05],[79.5923,-5.1559E-05],[79.595739,-4.6919E-05],[79.599177,-5.0528E-05],[79.602616,-5.723E-05],[79.606055,-5.6715E-05],[79.609493,-5.4652E-05],[79.612932,-5.5684E-05],[79.616371,-5.5168E-05],[79.619809,-5.2074E-05],[79.623248,-5.2074E-05],[79.626687,-5.4137E-05],[79.630125,-5.4652E-05],[79.633564,-5.4652E-05],[79.637003,-5.2074E-05],[79.640441,-5.3106E-05],[79.64388,-5.4652E-05],[79.647319,-5.0012E-05],[79.650757,-4.8465E-05],[79.654196,-4.9497E-05],[79.657635,-4.6403E-05],[79.661073,-4.8981E-05],[79.664512,-4.8981E-05],[79.667951,-4.9497E-05],[79.671389,-5.259E-05],[79.674828,-4.8981E-05],[79.678267,-4.8465E-05],[79.681705,-5.4652E-05],[79.685144,-5.5684E-05],[79.688583,-5.1559E-05],[79.692021,-5.2074E-05],[79.69546,-4.8981E-05],[79.698899,-4.9497E-05],[79.702337,-5.6715E-05],[79.705776,-5.4137E-05],[79.709215,-5.4652E-05],[79.712653,-5.1043E-05],[79.716092,-4.4856E-05],[79.719531,-5.0012E-05],[79.722969,-5.3621E-05],[79.726408,-5.4652E-05],[79.729847,-5.1043E-05],[79.733285,-5.1559E-05],[79.736724,-5.5684E-05],[79.740163,-5.4652E-05],[79.743601,-5.3106E-05],[79.74704,-5.4137E-05],[79.750479,-5.6715E-05],[79.753917,-5.0528E-05],[79.757356,-4.8465E-05],[79.760795,-4.8981E-05],[79.764233,-4.6919E-05],[79.767672,-5.5684E-05],[79.771111,-5.5168E-05],[79.774549,-4.8981E-05],[79.777988,-4.6919E-05],[79.781427,-5.0012E-05],[79.784865,-5.7746E-05],[79.788304,-5.4137E-05],[79.791743,-5.3106E-05],[79.795181,-5.4137E-05],[79.79862,-5.3621E-05],[79.802059,-5.3621E-05],[79.805497,-5.1559E-05],[79.808936,-5.4652E-05],[79.812375,-5.2074E-05],[79.815813,-4.9497E-05],[79.819252,-5.4652E-05],[79.822691,-5.5684E-05],[79.826129,-5.3106E-05],[79.829568,-5.0012E-05],[79.833007,-4.9497E-05],[79.836445,-5.0528E-05],[79.839884,-5.2074E-05],[79.843323,-5.4652E-05]]}
-{"quant":[80.1293,-5.3759E-05],"mems":[[80.032449,-5.1043E-05],[80.035888,-5.1043E-05],[80.039327,-4.6919E-05],[80.042765,-4.8465E-05],[80.046204,-5.4652E-05],[80.049643,-5.1559E-05],[80.053081,-5.3106E-05],[80.05652,-5.0012E-05],[80.059959,-4.3825E-05],[80.063397,-5.4652E-05],[80.066836,-5.6715E-05],[80.070275,-5.1559E-05],[80.073713,-5.2074E-05],[80.077152,-5.0528E-05],[80.080591,-5.4652E-05],[80.084029,-5.6199E-05],[80.087468,-5.3106E-05],[80.090907,-5.259E-05],[80.094345,-4.795E-05],[80.097784,-4.3825E-05],[80.101223,-5.2074E-05],[80.104661,-5.5684E-05],[80.1081,-5.3621E-05],[80.111539,-5.723E-05],[80.114977,-5.259E-05],[80.118416,-4.7434E-05],[80.121855,-5.1043E-05],[80.125293,-5.3621E-05],[80.128732,-5.3106E-05],[80.132171,-5.3106E-05],[80.135609,-4.9497E-05],[80.139048,-4.8981E-05],[80.142487,-5.4137E-05],[80.145925,-5.5168E-05],[80.149364,-5.6199E-05],[80.152803,-5.1043E-05],[80.156241,-5.1559E-05],[80.15968,-5.4652E-05],[80.163119,-5.0528E-05],[80.166557,-5.5684E-05],[80.169996,-5.4652E-05],[80.173435,-4.9497E-05],[80.176873,-5.2074E-05],[80.180312,-5.4137E-05],[80.183751,-5.4137E-05],[80.187189,-5.5168E-05],[80.190628,-5.4652E-05],[80.194067,-5.2074E-05],[80.197505,-5.3621E-05],[80.200944,-5.6199E-05],[80.204383,-5.6199E-05],[80.207821,-5.6199E-05],[80.21126,-5.4137E-05],[80.214699,-5.4137E-05],[80.218137,-5.3621E-05],[80.221576,-5.4652E-05],[80.225015,-5.9293E-05],[80.228453,-5.5684E-05],[80.231892,-5.2074E-05],[80.235331,-5.259E-05],[80.238769,-5.0528E-05],[80.242208,-5.259E-05],[80.245647,-5.6715E-05],[80.249085,-5.4137E-05],[80.252524,-5.4652E-05],[80.255963,-5.3106E-05],[80.259401,-5.0528E-05],[80.26284,-5.3106E-05],[80.266279,-5.4652E-05],[80.269717,-5.6199E-05],[80.273156,-5.3106E-05],[80.276595,-5.3106E-05],[80.280033,-5.3621E-05],[80.283472,-5.2074E-05],[80.286911,-5.4652E-05],[80.290349,-5.1559E-05],[80.293788,-5.259E-05],[80.297227,-5.6199E-05],[80.300665,-5.0528E-05],[80.304104,-5.259E-05],[80.307543,-5.4652E-05],[80.310981,-5.3621E-05],[80.31442,-5.4137E-05],[80.317859,-5.0012E-05],[80.321297,-5.0012E-05],[80.324736,-5.3106E-05],[80.328175,-5.2074E-05],[80.331613,-5.1043E-05]]}
-{"quant":[80.6438,-5.522E-05],"mems":[[80.544741,-5.5684E-05],[80.548179,-5.3106E-05],[80.551616,-5.259E-05],[80.555053,-5.6199E-05],[80.558491,-5.2074E-05],[80.561928,-5.3621E-05],[80.565365,-5.9293E-05],[80.568803,-5.2074E-05],[80.57224,-4.9497E-05],[80.575677,-4.5887E-05],[80.579115,-5.0528E-05],[80.582552,-5.3621E-05],[80.585989,-5.3621E-05],[80.589427,-5.6199E-05],[80.592864,-5.4652E-05],[80.596301,-5.9808E-05],[80.599739,-5.9808E-05],[80.603176,-5.9293E-05],[80.606613,-5.7746E-05],[80.610051,-5.3621E-05],[80.613488,-5.4137E-05],[80.616925,-5.5684E-05],[80.620363,-5.259E-05],[80.6238,-5.1559E-05],[80.627237,-5.9808E-05],[80.630675,-5.6199E-05],[80.634112,-5.3621E-05],[80.637549,-5.2074E-05],[80.640987,-4.8465E-05],[80.644424,-5.6715E-05],[80.647861,-5.6715E-05],[80.651299,-5.5684E-05],[80.654736,-5.723E-05],[80.658173,-5.3106E-05],[80.661611,-5.2074E-05],[80.665048,-5.6199E-05],[80.668485,-6.0324E-05],[80.671923,-5.5684E-05],[80.67536,-5.4652E-05],[80.678797,-5.4652E-05],[80.682235,-5.259E-05],[80.685672,-5.4137E-05],[80.689109,-5.5168E-05],[80.692547,-5.8262E-05],[80.695984,-5.6715E-05],[80.699421,-5.5684E-05],[80.702859,-5.8777E-05],[80.706296,-5.4652E-05],[80.709733,-5.3106E-05],[80.713171,-5.8777E-05],[80.716608,-5.5684E-05],[80.720045,-5.2074E-05],[80.723483,-5.0012E-05],[80.72692,-5.0012E-05],[80.730357,-5.5168E-05],[80.733795,-5.6715E-05],[80.737232,-5.7746E-05],[80.740669,-5.5168E-05],[80.744107,-5.3106E-05],[80.747544,-5.2074E-05],[80.750981,-4.9497E-05],[80.754419,-5.1043E-05],[80.757856,-5.2074E-05],[80.761293,-5.1559E-05],[80.764731,-5.1559E-05],[80.768168,-5.6199E-05],[80.771605,-5.4652E-05],[80.775043,-4.8981E-05],[80.77848,-5.1043E-05],[80.781917,-5.1043E-05],[80.785355,-5.5168E-05],[80.788792,-5.723E-05],[80.792229,-5.4137E-05],[80.795667,-5.6715E-05],[80.799104,-5.1043E-05],[80.802541,-5.3106E-05],[80.805979,-5.8262E-05],[80.809416,-4.795E-05],[80.812853,-5.1559E-05],[80.816291,-5.1043E-05],[80.819728,-5.2074E-05],[80.823165,-5.8777E-05],[80.826603,-5.6715E-05],[80.83004,-6.1355E-05],[80.833477,-5.6199E-05],[80.836915,-5.0012E-05],[80.840352,-5.259E-05],[80.843789,-5.3106E-05],[80.847227,-5.3621E-05]]}
-{"quant":[81.2019,-5.2092E-05],"mems":[[81.105027,-5.3621E-05],[81.108464,-5.3106E-05],[81.111901,-5.3621E-05],[81.115339,-4.8981E-05],[81.118776,-5.1043E-05],[81.122213,-5.6715E-05],[81.125651,-5.6715E-05],[81.129088,-5.3106E-05],[81.132525,-5.1559E-05],[81.135963,-5.3106E-05],[81.1394,-5.0528E-05],[81.142837,-5.0012E-05],[81.146275,-5.3621E-05],[81.149712,-5.1559E-05],[81.153149,-5.4652E-05],[81.156587,-5.4137E-05],[81.160024,-5.0528E-05],[81.163461,-5.4137E-05],[81.166899,-5.1043E-05],[81.170336,-5.2074E-05],[81.173773,-5.3621E-05],[81.177211,-4.8981E-05],[81.180648,-5.2074E-05],[81.184085,-5.5168E-05],[81.187523,-5.1559E-05],[81.19096,-4.8981E-05],[81.194397,-4.7434E-05],[81.197835,-4.8465E-05],[81.201272,-5.1559E-05],[81.204709,-5.4652E-05],[81.208147,-5.4137E-05],[81.211584,-5.2074E-05],[81.215021,-5.1559E-05],[81.218459,-5.0012E-05],[81.221896,-5.4652E-05],[81.225333,-5.3621E-05],[81.228771,-5.4137E-05],[81.232208,-5.4652E-05],[81.235645,-4.7434E-05],[81.239083,-4.795E-05],[81.24252,-5.259E-05],[81.245957,-5.4137E-05],[81.249395,-5.2074E-05],[81.252832,-5.259E-05],[81.256269,-5.1043E-05],[81.259707,-4.8981E-05],[81.263144,-4.9497E-05],[81.266581,-5.0012E-05],[81.270019,-5.4652E-05],[81.273456,-5.2074E-05],[81.276893,-5.0528E-05],[81.280331,-5.4652E-05],[81.283768,-5.4652E-05],[81.287205,-5.7746E-05],[81.290643,-5.5168E-05],[81.29408,-4.8981E-05],[81.297517,-5.0012E-05],[81.300955,-4.8465E-05],[81.304392,-5.0012E-05],[81.307829,-5.4137E-05],[81.311267,-5.3106E-05],[81.314704,-4.8465E-05],[81.318141,-4.8981E-05],[81.321579,-5.259E-05],[81.325016,-5.0012E-05],[81.328453,-5.0528E-05],[81.331891,-5.2074E-05],[81.335328,-5.3621E-05],[81.338765,-5.4137E-05],[81.342203,-5.3621E-05],[81.34564,-5.3106E-05],[81.349077,-5.3106E-05],[81.352515,-5.0528E-05],[81.355952,-4.8981E-05],[81.359389,-5.3621E-05],[81.362827,-5.259E-05],[81.366264,-5.3106E-05],[81.369701,-5.4137E-05],[81.373139,-5.5684E-05],[81.376576,-5.3621E-05],[81.380013,-5.1559E-05],[81.383451,-5.9293E-05],[81.386888,-6.0324E-05],[81.390325,-5.5168E-05],[81.393763,-5.0528E-05],[81.3972,-5.0012E-05],[81.400637,-5.0012E-05],[81.404075,-4.7434E-05]]}
-{"quant":[81.6988,-5.2401E-05],"mems":[[81.600003,-5.2074E-05],[81.60344,-5.4652E-05],[81.606877,-5.5168E-05],[81.610315,-5.259E-05],[81.613752,-5.2074E-05],[81.617189,-5.2074E-05],[81.620627,-5.3621E-05],[81.624064,-5.6199E-05],[81.627501,-5.3621E-05],[81.630939,-5.3106E-05],[81.634376,-5.1559E-05],[81.637813,-5.1559E-05],[81.641251,-5.4652E-05],[81.644688,-5.4137E-05],[81.648125,-5.5168E-05],[81.651563,-5.0528E-05],[81.655,-4.5372E-05],[81.658437,-4.5887E-05],[81.661875,-5.2074E-05],[81.665312,-6.0839E-05],[81.668749,-5.5684E-05],[81.672187,-5.2074E-05],[81.675624,-5.2074E-05],[81.679061,-5.2074E-05],[81.682499,-5.4652E-05],[81.685936,-5.6715E-05],[81.689373,-6.0324E-05],[81.692811,-5.4137E-05],[81.696248,-4.795E-05],[81.699685,-5.1043E-05],[81.703123,-5.4137E-05],[81.70656,-5.4652E-05],[81.709997,-5.0528E-05],[81.713435,-5.1559E-05],[81.716872,-5.9808E-05],[81.720309,-5.5684E-05],[81.723747,-5.4652E-05],[81.727184,-5.4652E-05],[81.730621,-4.9497E-05],[81.734059,-5.2074E-05],[81.737496,-5.3621E-05],[81.740933,-5.4137E-05],[81.744371,-5.3106E-05],[81.747808,-5.1559E-05],[81.751245,-5.1043E-05],[81.754683,-5.2074E-05],[81.75812,-5.0528E-05],[81.761557,-4.8465E-05],[81.764995,-5.259E-05],[81.768432,-5.6715E-05],[81.771869,-5.3621E-05],[81.775307,-4.8981E-05],[81.778744,-5.1043E-05],[81.782181,-5.1043E-05],[81.785619,-5.0528E-05],[81.789056,-5.0012E-05],[81.792493,-4.9497E-05],[81.795931,-5.1559E-05],[81.799368,-5.3621E-05],[81.802805,-5.5168E-05],[81.806243,-5.259E-05],[81.80968,-5.4137E-05],[81.813117,-5.3621E-05],[81.816555,-4.8465E-05],[81.819992,-4.8465E-05],[81.823429,-5.2074E-05],[81.826867,-5.8262E-05],[81.830304,-5.4652E-05],[81.833741,-5.4137E-05],[81.837179,-5.3106E-05],[81.840616,-5.0528E-05],[81.844053,-5.1559E-05],[81.847491,-5.0012E-05],[81.850928,-4.9497E-05],[81.854365,-4.795E-05],[81.857803,-5.0012E-05],[81.86124,-5.3621E-05],[81.864677,-5.4137E-05],[81.868115,-5.8262E-05],[81.871552,-5.4652E-05],[81.874989,-4.8465E-05],[81.878427,-5.1043E-05],[81.881864,-5.4652E-05],[81.885301,-5.5684E-05],[81.888739,-5.3621E-05],[81.892176,-5.1559E-05],[81.895613,-5.1559E-05],[81.899051,-4.9497E-05]]}
-{"quant":[82.1772,-5.2507E-05],"mems":[[82.077792,-5.1043E-05],[82.081229,-5.4652E-05],[82.084667,-5.4137E-05],[82.088104,-5.723E-05],[82.091541,-5.4137E-05],[82.094979,-5.4137E-05],[82.098416,-5.6199E-05],[82.101853,-5.2074E-05],[82.105291,-5.5684E-05],[82.108728,-5.7746E-05],[82.112165,-5.1559E-05],[82.115603,-5.1043E-05],[82.11904,-5.2074E-05],[82.122477,-5.0012E-05],[82.125915,-5.5168E-05],[82.129352,-5.5168E-05],[82.132789,-5.2074E-05],[82.136227,-5.1559E-05],[82.139664,-5.5168E-05],[82.143101,-5.8262E-05],[82.146539,-5.3106E-05],[82.149976,-5.2074E-05],[82.153413,-5.5168E-05],[82.156851,-5.5684E-05],[82.160288,-5.5684E-05],[82.163725,-5.9293E-05],[82.167163,-5.6199E-05],[82.1706,-5.3106E-05],[82.174037,-5.6715E-05],[82.177475,-5.4137E-05],[82.180912,-5.3621E-05],[82.184349,-5.1559E-05],[82.187787,-5.2074E-05],[82.191224,-5.0528E-05],[82.194661,-4.6919E-05],[82.198099,-5.259E-05],[82.201536,-5.5168E-05],[82.204973,-5.3106E-05],[82.208411,-5.0528E-05],[82.211848,-5.1043E-05],[82.215285,-5.4652E-05],[82.218723,-5.4652E-05],[82.22216,-5.4137E-05],[82.225597,-5.9293E-05],[82.229035,-5.9293E-05],[82.232472,-5.0012E-05],[82.235909,-4.8465E-05],[82.239347,-5.0528E-05],[82.242784,-5.6715E-05],[82.246221,-5.6199E-05],[82.249659,-5.0012E-05],[82.253096,-5.1559E-05],[82.256533,-4.9497E-05],[82.259971,-5.1559E-05],[82.263408,-5.4137E-05],[82.266845,-5.0012E-05],[82.270283,-5.3621E-05],[82.27372,-5.5684E-05],[82.277157,-4.7434E-05],[82.280595,-4.8981E-05],[82.284032,-5.3621E-05],[82.287469,-5.4652E-05],[82.290907,-5.259E-05],[82.294344,-5.0012E-05],[82.297781,-5.1043E-05],[82.301219,-5.2074E-05],[82.304656,-5.4652E-05],[82.308093,-5.0528E-05],[82.311531,-5.2074E-05],[82.314968,-5.3106E-05],[82.318405,-4.8465E-05],[82.321843,-5.3621E-05],[82.32528,-5.7746E-05],[82.328717,-5.3621E-05],[82.332155,-5.0528E-05],[82.335592,-5.0528E-05],[82.339029,-5.0012E-05],[82.342467,-5.5684E-05],[82.345904,-5.3106E-05],[82.349341,-5.0012E-05],[82.352779,-5.2074E-05],[82.356216,-4.5887E-05],[82.359653,-4.8981E-05],[82.363091,-5.4137E-05],[82.366528,-5.3621E-05],[82.369965,-5.0528E-05],[82.373403,-4.8465E-05],[82.37684,-5.2074E-05],[82.380277,-5.3106E-05]]}
-{"quant":[82.6445,-5.302E-05],"mems":[[82.545269,-5.6199E-05],[82.548707,-4.6919E-05],[82.552144,-5.2074E-05],[82.555581,-5.5168E-05],[82.559019,-5.0528E-05],[82.562456,-5.5168E-05],[82.565893,-5.3106E-05],[82.569331,-5.4137E-05],[82.572768,-5.3106E-05],[82.576205,-5.2074E-05],[82.579643,-5.5684E-05],[82.58308,-5.5684E-05],[82.586517,-5.4652E-05],[82.589955,-5.4652E-05],[82.593392,-5.6199E-05],[82.596829,-5.4652E-05],[82.600267,-5.3106E-05],[82.603704,-5.2074E-05],[82.607141,-5.2074E-05],[82.610579,-5.1559E-05],[82.614016,-5.1043E-05],[82.617453,-5.1043E-05],[82.620891,-5.1043E-05],[82.624328,-5.2074E-05],[82.627765,-5.259E-05],[82.631203,-5.4652E-05],[82.63464,-5.1043E-05],[82.638077,-5.1043E-05],[82.641515,-5.6715E-05],[82.644952,-5.2074E-05],[82.648389,-5.259E-05],[82.651827,-5.3621E-05],[82.655264,-5.1043E-05],[82.658701,-5.3106E-05],[82.662139,-5.1559E-05],[82.665576,-5.2074E-05],[82.669013,-5.3621E-05],[82.672451,-5.259E-05],[82.675888,-5.259E-05],[82.679325,-5.259E-05],[82.682763,-5.4652E-05],[82.6862,-5.6199E-05],[82.689637,-5.1043E-05],[82.693075,-5.3621E-05],[82.696512,-5.4652E-05],[82.699949,-4.9497E-05],[82.703387,-5.4137E-05],[82.706824,-5.3621E-05],[82.710261,-5.0528E-05],[82.713699,-5.4652E-05],[82.717136,-5.4137E-05],[82.720573,-5.5684E-05],[82.724011,-5.6199E-05],[82.727448,-5.1559E-05],[82.730885,-4.9497E-05],[82.734323,-4.8465E-05],[82.73776,-5.1559E-05],[82.741197,-5.4652E-05],[82.744635,-5.8777E-05],[82.748072,-5.3106E-05],[82.751509,-4.795E-05],[82.754947,-5.5168E-05],[82.758384,-5.1559E-05],[82.761821,-5.2074E-05],[82.765259,-5.259E-05],[82.768696,-5.259E-05],[82.772133,-5.3621E-05],[82.775571,-4.9497E-05],[82.779008,-5.7746E-05],[82.782445,-5.723E-05],[82.785883,-4.8465E-05],[82.78932,-5.1043E-05],[82.792757,-5.4652E-05],[82.796195,-5.3106E-05],[82.799632,-5.2074E-05],[82.803069,-5.6715E-05],[82.806507,-5.8262E-05],[82.809944,-5.5168E-05],[82.813381,-5.3106E-05],[82.816819,-5.1559E-05],[82.820256,-5.3106E-05],[82.823693,-5.5168E-05],[82.827131,-5.5168E-05],[82.830568,-5.259E-05],[82.834005,-5.1559E-05],[82.837443,-5.4137E-05],[82.84088,-5.4652E-05],[82.844317,-5.3621E-05],[82.847755,-5.259E-05]]}
-{"quant":[83.1365,-5.3054E-05],"mems":[[83.036772,-4.795E-05],[83.040208,-5.0012E-05],[83.043644,-4.8465E-05],[83.04708,-5.259E-05],[83.050516,-5.5168E-05],[83.053952,-5.1043E-05],[83.057388,-5.259E-05],[83.060824,-5.5168E-05],[83.06426,-5.1559E-05],[83.067696,-5.3106E-05],[83.071132,-5.4137E-05],[83.074568,-5.1559E-05],[83.078004,-5.4652E-05],[83.08144,-5.9293E-05],[83.084876,-5.8777E-05],[83.088312,-5.4652E-05],[83.091748,-5.5168E-05],[83.095184,-5.2074E-05],[83.09862,-5.3106E-05],[83.102056,-5.8262E-05],[83.105492,-5.7746E-05],[83.108928,-6.0839E-05],[83.112364,-5.5168E-05],[83.1158,-5.1043E-05],[83.119236,-5.4652E-05],[83.122672,-5.6199E-05],[83.126108,-5.8262E-05],[83.129544,-6.0839E-05],[83.13298,-5.9293E-05],[83.136416,-5.2074E-05],[83.139852,-5.2074E-05],[83.143288,-5.3106E-05],[83.146724,-5.2074E-05],[83.15016,-5.4137E-05],[83.153596,-5.4137E-05],[83.157032,-5.1559E-05],[83.160468,-5.6199E-05],[83.163904,-5.8777E-05],[83.16734,-5.3621E-05],[83.170776,-5.3621E-05],[83.174212,-5.0012E-05],[83.177648,-4.9497E-05],[83.181084,-4.9497E-05],[83.18452,-4.9497E-05],[83.187956,-5.3106E-05],[83.191392,-5.4137E-05],[83.194828,-5.6199E-05],[83.198264,-5.2074E-05],[83.2017,-5.6199E-05],[83.205136,-5.6715E-05],[83.208572,-5.1559E-05],[83.212008,-5.4652E-05],[83.215444,-5.3106E-05],[83.21888,-5.4652E-05],[83.222316,-5.4652E-05],[83.225752,-5.3106E-05],[83.229188,-5.0012E-05],[83.232624,-4.6403E-05],[83.23606,-5.1559E-05],[83.239496,-5.5684E-05],[83.242932,-5.4652E-05],[83.246368,-5.259E-05],[83.249804,-5.1559E-05],[83.25324,-5.0012E-05],[83.256676,-5.259E-05],[83.260112,-5.1559E-05],[83.263548,-5.1559E-05],[83.266984,-5.5168E-05],[83.27042,-5.4652E-05],[83.273856,-5.5168E-05],[83.277292,-5.3106E-05],[83.280728,-5.3106E-05],[83.284164,-5.4652E-05],[83.2876,-5.4652E-05],[83.291036,-5.2074E-05],[83.294472,-4.795E-05],[83.297908,-5.0012E-05],[83.301344,-5.7746E-05],[83.30478,-5.4652E-05],[83.308216,-4.795E-05],[83.311652,-5.1043E-05],[83.315088,-5.259E-05],[83.318524,-5.3106E-05],[83.32196,-5.7746E-05],[83.325396,-5.723E-05],[83.328832,-5.4137E-05],[83.332268,-5.3106E-05],[83.335704,-4.6403E-05],[83.33914,-5.3621E-05]]}
-{"quant":[83.6886,-5.2693E-05],"mems":[[83.589968,-5.259E-05],[83.593404,-5.259E-05],[83.59684,-5.6715E-05],[83.600276,-5.723E-05],[83.603712,-5.6715E-05],[83.607148,-5.4137E-05],[83.610584,-5.1043E-05],[83.61402,-5.0012E-05],[83.617456,-5.0528E-05],[83.620892,-5.2074E-05],[83.624328,-5.5168E-05],[83.627764,-5.3106E-05],[83.6312,-5.0012E-05],[83.634636,-5.0528E-05],[83.638072,-5.4137E-05],[83.641508,-5.6715E-05],[83.644944,-5.3106E-05],[83.64838,-5.3621E-05],[83.651816,-5.0528E-05],[83.655252,-4.8465E-05],[83.658688,-5.2074E-05],[83.662124,-5.3621E-05],[83.66556,-5.7746E-05],[83.668996,-5.1043E-05],[83.672432,-4.8981E-05],[83.675868,-5.8777E-05],[83.679304,-5.6715E-05],[83.68274,-5.6715E-05],[83.686176,-5.6199E-05],[83.689612,-4.9497E-05],[83.693048,-5.1043E-05],[83.696484,-5.5168E-05],[83.69992,-5.259E-05],[83.703356,-5.259E-05],[83.706792,-5.5168E-05],[83.710228,-5.0528E-05],[83.713664,-4.5887E-05],[83.7171,-4.8981E-05],[83.720536,-5.4137E-05],[83.723972,-5.7746E-05],[83.727408,-5.5684E-05],[83.730844,-4.8465E-05],[83.73428,-4.6919E-05],[83.737716,-4.8465E-05],[83.741152,-5.4652E-05],[83.744588,-5.8262E-05],[83.748024,-5.0528E-05],[83.75146,-5.1559E-05],[83.754896,-5.6715E-05],[83.758332,-5.4652E-05],[83.761768,-5.4137E-05],[83.765204,-5.4137E-05],[83.76864,-5.259E-05],[83.772076,-4.8465E-05],[83.775512,-5.3106E-05],[83.778948,-5.6715E-05],[83.782384,-5.3621E-05],[83.78582,-5.4137E-05],[83.789256,-5.4652E-05],[83.792692,-5.4137E-05],[83.796128,-5.1043E-05],[83.799564,-5.259E-05],[83.803,-5.3106E-05],[83.806436,-5.1043E-05],[83.809872,-4.795E-05],[83.813308,-4.6919E-05],[83.816744,-5.2074E-05],[83.82018,-5.4652E-05],[83.823616,-5.6715E-05],[83.827052,-5.4137E-05],[83.830488,-5.723E-05],[83.833924,-5.9293E-05],[83.83736,-5.1559E-05],[83.840796,-5.1559E-05],[83.844232,-5.5684E-05],[83.847668,-5.4652E-05],[83.851104,-5.1043E-05],[83.85454,-5.1559E-05],[83.857976,-5.2074E-05],[83.861412,-5.1559E-05],[83.864848,-5.3106E-05],[83.868284,-5.6199E-05],[83.87172,-5.6715E-05],[83.875156,-5.3106E-05],[83.878592,-5.3621E-05],[83.882028,-5.4137E-05],[83.885464,-5.1043E-05],[83.8889,-5.1559E-05]]}
-{"quant":[84.1901,-5.2934E-05],"mems":[[84.091624,-5.0012E-05],[84.09506,-4.6919E-05],[84.098496,-5.6715E-05],[84.101932,-5.8262E-05],[84.105368,-5.3106E-05],[84.108804,-5.2074E-05],[84.11224,-5.3106E-05],[84.115676,-5.0012E-05],[84.119112,-5.259E-05],[84.122548,-5.6715E-05],[84.125984,-5.4652E-05],[84.12942,-5.6715E-05],[84.132856,-5.259E-05],[84.136292,-5.4652E-05],[84.139728,-5.9293E-05],[84.143164,-5.3621E-05],[84.1466,-5.5168E-05],[84.150036,-5.4652E-05],[84.153472,-5.0528E-05],[84.156908,-5.1043E-05],[84.160344,-5.2074E-05],[84.16378,-5.4137E-05],[84.167216,-5.6199E-05],[84.170652,-5.5168E-05],[84.174088,-5.1559E-05],[84.177524,-5.4652E-05],[84.18096,-5.8262E-05],[84.184396,-5.5684E-05],[84.187832,-5.723E-05],[84.191268,-5.723E-05],[84.194704,-5.3106E-05],[84.19814,-5.0528E-05],[84.201576,-5.2074E-05],[84.205012,-5.4137E-05],[84.208448,-5.3621E-05],[84.211884,-5.259E-05],[84.21532,-5.259E-05],[84.218756,-5.3106E-05],[84.222192,-5.0528E-05],[84.225628,-5.3106E-05],[84.229064,-5.1559E-05],[84.2325,-4.9497E-05],[84.235936,-5.259E-05],[84.239372,-5.3621E-05],[84.242808,-5.5684E-05],[84.246244,-5.0012E-05],[84.24968,-4.9497E-05],[84.253116,-5.3106E-05],[84.256552,-5.259E-05],[84.259988,-5.4652E-05],[84.263424,-5.259E-05],[84.26686,-5.4137E-05],[84.270296,-5.5168E-05],[84.273732,-5.259E-05],[84.277168,-5.1559E-05],[84.280604,-5.259E-05],[84.28404,-5.5168E-05],[84.287476,-5.5684E-05],[84.290912,-5.3106E-05],[84.294348,-4.8465E-05],[84.297784,-5.1559E-05],[84.30122,-5.2074E-05],[84.304656,-5.3621E-05],[84.308092,-5.5168E-05],[84.311528,-5.259E-05],[84.314964,-5.5684E-05],[84.3184,-5.3621E-05],[84.321836,-5.4652E-05],[84.325272,-5.6199E-05],[84.328708,-5.4652E-05],[84.332144,-5.723E-05],[84.33558,-5.3621E-05],[84.339016,-5.3106E-05],[84.342452,-5.2074E-05],[84.345888,-5.0528E-05],[84.349324,-5.3106E-05],[84.35276,-5.5168E-05],[84.356196,-5.3621E-05],[84.359632,-5.0528E-05],[84.363068,-5.3621E-05],[84.366504,-5.5684E-05],[84.36994,-5.6199E-05],[84.373376,-5.1043E-05],[84.376812,-4.9497E-05],[84.380248,-5.5168E-05],[84.383684,-5.5168E-05],[84.38712,-5.2074E-05],[84.390556,-5.1043E-05]]}
-{"quant":[84.6618,-5.279E-05],"mems":[[84.562356,-5.1559E-05],[84.565792,-4.8465E-05],[84.569228,-5.4137E-05],[84.572664,-5.1559E-05],[84.5761,-5.0528E-05],[84.579536,-4.8465E-05],[84.582972,-4.795E-05],[84.586408,-5.1559E-05],[84.589844,-4.8465E-05],[84.59328,-5.1559E-05],[84.596716,-5.259E-05],[84.600152,-5.1043E-05],[84.603588,-5.3621E-05],[84.607024,-5.1559E-05],[84.61046,-5.259E-05],[84.613896,-5.4137E-05],[84.617332,-5.4652E-05],[84.620768,-5.6715E-05],[84.624204,-5.259E-05],[84.62764,-5.4652E-05],[84.631076,-5.4137E-05],[84.634512,-5.0528E-05],[84.637948,-5.5168E-05],[84.641384,-5.3106E-05],[84.64482,-5.5168E-05],[84.648256,-5.6199E-05],[84.651692,-5.4137E-05],[84.655128,-5.4137E-05],[84.658564,-5.5168E-05],[84.662,-5.7746E-05],[84.665436,-5.3621E-05],[84.668872,-5.1559E-05],[84.672308,-5.259E-05],[84.675744,-5.5168E-05],[84.67918,-5.5684E-05],[84.682616,-5.259E-05],[84.686052,-5.0012E-05],[84.689488,-4.8981E-05],[84.692924,-5.259E-05],[84.69636,-5.2074E-05],[84.699796,-5.2074E-05],[84.703232,-5.4137E-05],[84.706668,-5.259E-05],[84.710104,-5.0528E-05],[84.71354,-4.6919E-05],[84.716976,-4.8465E-05],[84.720412,-5.4652E-05],[84.723848,-5.4652E-05],[84.727284,-5.0528E-05],[84.73072,-4.9497E-05],[84.734156,-5.0012E-05],[84.737592,-5.6715E-05],[84.741028,-5.7746E-05],[84.744464,-5.3621E-05],[84.7479,-5.4137E-05],[84.751336,-5.0012E-05],[84.754772,-5.0528E-05],[84.758208,-5.4652E-05],[84.761644,-5.5684E-05],[84.76508,-5.6715E-05],[84.768516,-5.259E-05],[84.771952,-4.9497E-05],[84.775388,-4.8981E-05],[84.778824,-4.8981E-05],[84.78226,-5.1559E-05],[84.785696,-5.259E-05],[84.789132,-4.6919E-05],[84.792568,-4.3309E-05],[84.796004,-5.1559E-05],[84.79944,-5.9293E-05],[84.802876,-5.6199E-05],[84.806312,-5.4137E-05],[84.809748,-5.3621E-05],[84.813184,-5.1559E-05],[84.81662,-5.259E-05],[84.820056,-5.5684E-05],[84.823492,-5.6199E-05],[84.826928,-5.3621E-05],[84.830364,-5.4137E-05],[84.8338,-5.4652E-05],[84.837236,-5.3106E-05],[84.840672,-5.4137E-05],[84.844108,-5.5168E-05],[84.847544,-5.3621E-05],[84.85098,-5.0528E-05],[84.854416,-4.5887E-05],[84.857852,-5.0012E-05],[84.861288,-5.3621E-05],[84.864724,-5.3106E-05]]}
-{"quant":[85.1397,-5.326E-05],"mems":[[85.03996,-5.3621E-05],[85.043396,-5.6199E-05],[85.046832,-5.3621E-05],[85.050268,-5.0528E-05],[85.053704,-5.3106E-05],[85.05714,-5.3106E-05],[85.060576,-5.1559E-05],[85.064012,-5.3621E-05],[85.067448,-5.1559E-05],[85.070884,-5.4137E-05],[85.07432,-5.6199E-05],[85.077756,-5.259E-05],[85.081192,-5.4652E-05],[85.084628,-5.1559E-05],[85.088064,-5.259E-05],[85.0915,-5.5684E-05],[85.094936,-5.4652E-05],[85.098372,-5.6715E-05],[85.101808,-5.6199E-05],[85.105244,-5.4652E-05],[85.10868,-4.9497E-05],[85.112116,-4.7434E-05],[85.115552,-4.795E-05],[85.118988,-5.1559E-05],[85.122424,-5.8262E-05],[85.12586,-5.0012E-05],[85.129296,-4.5372E-05],[85.132732,-5.0528E-05],[85.136168,-5.1559E-05],[85.139604,-5.1043E-05],[85.14304,-4.9497E-05],[85.146476,-5.0528E-05],[85.149912,-5.2074E-05],[85.153348,-5.1559E-05],[85.156784,-5.2074E-05],[85.16022,-5.5168E-05],[85.163656,-5.3621E-05],[85.167092,-5.1559E-05],[85.170528,-5.2074E-05],[85.173964,-5.6715E-05],[85.1774,-5.7746E-05],[85.180836,-5.7746E-05],[85.184272,-5.6715E-05],[85.187708,-4.8981E-05],[85.191144,-4.8981E-05],[85.19458,-5.1043E-05],[85.198016,-5.1559E-05],[85.201452,-5.1043E-05],[85.204888,-5.0012E-05],[85.208324,-5.4652E-05],[85.21176,-5.5684E-05],[85.215196,-5.259E-05],[85.218632,-5.6715E-05],[85.222068,-5.8777E-05],[85.225504,-5.5684E-05],[85.22894,-5.3106E-05],[85.232376,-5.2074E-05],[85.235812,-5.5684E-05],[85.239248,-5.3621E-05],[85.242684,-5.0528E-05],[85.24612,-5.259E-05],[85.249556,-5.4652E-05],[85.252992,-5.723E-05],[85.256428,-5.6199E-05],[85.259864,-5.5168E-05],[85.2633,-5.3621E-05],[85.266736,-5.2074E-05],[85.270172,-5.0528E-05],[85.273608,-5.2074E-05],[85.277044,-5.3106E-05],[85.28048,-5.3106E-05],[85.283916,-5.5684E-05],[85.287352,-5.3106E-05],[85.290788,-5.3621E-05],[85.294224,-5.259E-05],[85.29766,-5.0012E-05],[85.301096,-5.5684E-05],[85.304532,-5.6715E-05],[85.307968,-5.2074E-05],[85.311404,-5.1559E-05],[85.31484,-5.6715E-05],[85.318276,-5.6715E-05],[85.321712,-4.9497E-05],[85.325148,-4.795E-05],[85.328584,-5.1043E-05],[85.33202,-5.1043E-05],[85.335456,-4.9497E-05],[85.338892,-5.0528E-05],[85.342328,-5.3106E-05]]}
-{"quant":[85.6516,-5.2813E-05],"mems":[[85.552032,-5.2074E-05],[85.55548,-5.1043E-05],[85.558928,-5.4652E-05],[85.562376,-5.4137E-05],[85.565824,-5.3621E-05],[85.569272,-5.259E-05],[85.57272,-5.2074E-05],[85.576168,-5.4137E-05],[85.579616,-5.259E-05],[85.583064,-5.3106E-05],[85.586512,-5.4137E-05],[85.58996,-5.5684E-05],[85.593408,-5.9293E-05],[85.596856,-5.4137E-05],[85.600304,-5.4137E-05],[85.603752,-5.5168E-05],[85.6072,-5.1043E-05],[85.610648,-5.1559E-05],[85.614096,-5.0528E-05],[85.617544,-5.2074E-05],[85.620992,-5.6715E-05],[85.62444,-5.8262E-05],[85.627888,-5.5684E-05],[85.631336,-5.0528E-05],[85.634784,-5.3106E-05],[85.638232,-5.4137E-05],[85.64168,-5.3621E-05],[85.645128,-5.5168E-05],[85.648576,-5.0528E-05],[85.652024,-5.0012E-05],[85.655472,-5.4137E-05],[85.65892,-5.5684E-05],[85.662368,-5.5168E-05],[85.665816,-5.3621E-05],[85.669264,-5.259E-05],[85.672712,-4.9497E-05],[85.67616,-5.4137E-05],[85.679608,-5.5168E-05],[85.683056,-5.1043E-05],[85.686504,-5.1559E-05],[85.689952,-5.2074E-05],[85.6934,-5.2074E-05],[85.696848,-5.5684E-05],[85.700296,-5.7746E-05],[85.703744,-5.4652E-05],[85.707192,-4.9497E-05],[85.71064,-4.795E-05],[85.714088,-4.8981E-05],[85.717536,-5.3621E-05],[85.720984,-5.7746E-05],[85.724432,-5.4137E-05],[85.72788,-4.8981E-05],[85.731328,-5.2074E-05],[85.734776,-5.4137E-05],[85.738224,-5.3106E-05],[85.741672,-5.4652E-05],[85.74512,-5.3106E-05],[85.748568,-5.0528E-05],[85.752016,-5.1043E-05],[85.755464,-5.4652E-05],[85.758912,-5.5168E-05],[85.76236,-4.8981E-05],[85.765808,-5.0012E-05],[85.769256,-5.1043E-05],[85.772704,-4.9497E-05],[85.776152,-5.0528E-05],[85.7796,-4.8465E-05],[85.783048,-5.0528E-05],[85.786496,-5.1559E-05],[85.789944,-5.259E-05],[85.793392,-5.4137E-05],[85.79684,-5.4652E-05],[85.800288,-5.9808E-05],[85.803736,-5.4652E-05],[85.807184,-5.0012E-05],[85.810632,-5.259E-05],[85.81408,-5.1559E-05],[85.817528,-5.3621E-05],[85.820976,-5.4652E-05],[85.824424,-5.3621E-05],[85.827872,-5.0012E-05],[85.83132,-4.9497E-05],[85.834768,-4.9497E-05],[85.838216,-5.0012E-05],[85.841664,-5.5168E-05],[85.845112,-5.259E-05],[85.84856,-5.4652E-05],[85.852008,-5.4137E-05]]}
-{"quant":[86.4833,-5.3432E-05],"mems":[[86.386448,-5.4652E-05],[86.389896,-5.4137E-05],[86.393344,-5.1559E-05],[86.396792,-5.3621E-05],[86.40024,-5.5168E-05],[86.403688,-4.6919E-05],[86.407136,-5.1559E-05],[86.410584,-5.2074E-05],[86.414032,-4.5372E-05],[86.41748,-5.0528E-05],[86.420928,-5.6199E-05],[86.424376,-5.6199E-05],[86.427824,-5.4137E-05],[86.431272,-4.795E-05],[86.43472,-5.4137E-05],[86.438168,-6.1871E-05],[86.441616,-5.5168E-05],[86.445064,-5.5168E-05],[86.448512,-4.9497E-05],[86.45196,-4.6403E-05],[86.455408,-5.259E-05],[86.458856,-5.3106E-05],[86.462304,-5.6199E-05],[86.465752,-5.3106E-05],[86.4692,-5.4137E-05],[86.472648,-5.0012E-05],[86.476096,-5.0012E-05],[86.479544,-5.4652E-05],[86.482992,-5.0012E-05],[86.48644,-5.4137E-05],[86.489888,-5.4652E-05],[86.493336,-5.3621E-05],[86.496784,-5.259E-05],[86.500232,-5.4137E-05],[86.50368,-5.6715E-05],[86.507128,-5.0528E-05],[86.510576,-5.259E-05],[86.514024,-5.0012E-05],[86.517472,-5.1559E-05],[86.52092,-5.6715E-05],[86.524368,-5.3621E-05],[86.527816,-5.6715E-05],[86.531264,-5.4652E-05],[86.534712,-5.1043E-05],[86.53816,-5.4652E-05],[86.541608,-5.2074E-05],[86.545056,-5.0012E-05],[86.548504,-5.3106E-05],[86.551952,-5.4652E-05],[86.5554,-5.5684E-05],[86.558848,-5.4137E-05],[86.562296,-5.0528E-05],[86.565744,-5.5168E-05],[86.569192,-5.723E-05],[86.57264,-5.1559E-05],[86.576088,-5.259E-05],[86.579536,-5.259E-05],[86.582984,-5.3106E-05],[86.586432,-5.259E-05],[86.58988,-4.6403E-05],[86.593328,-5.259E-05],[86.596776,-5.5684E-05],[86.600224,-5.7746E-05],[86.603672,-5.4652E-05],[86.60712,-5.5168E-05],[86.610568,-6.2902E-05],[86.614016,-5.3621E-05],[86.617464,-5.4137E-05],[86.620912,-5.3106E-05],[86.62436,-5.4137E-05],[86.627808,-5.8777E-05],[86.631256,-5.2074E-05],[86.634704,-5.259E-05],[86.638152,-5.0012E-05],[86.6416,-5.5168E-05],[86.645048,-5.6715E-05],[86.648496,-5.3106E-05],[86.651944,-5.6715E-05],[86.655392,-5.3621E-05],[86.65884,-5.2074E-05],[86.662288,-5.3621E-05],[86.665736,-5.4137E-05],[86.669184,-5.5684E-05],[86.672632,-5.3621E-05],[86.67608,-5.5168E-05],[86.679528,-5.7746E-05],[86.682976,-5.5684E-05],[86.686424,-5.4137E-05]]}
-{"quant":[87.0112,-5.271E-05],"mems":[[86.913992,-5.4652E-05],[86.91744,-5.259E-05],[86.920888,-5.3106E-05],[86.924336,-5.6715E-05],[86.927784,-5.4137E-05],[86.931232,-4.8465E-05],[86.93468,-5.1559E-05],[86.938128,-5.4652E-05],[86.941576,-5.4652E-05],[86.945024,-5.3621E-05],[86.948472,-5.3106E-05],[86.95192,-5.0528E-05],[86.955368,-4.5372E-05],[86.958816,-5.1043E-05],[86.962264,-5.7746E-05],[86.965712,-5.1559E-05],[86.96916,-5.1043E-05],[86.972608,-5.3106E-05],[86.976056,-5.3621E-05],[86.979504,-5.8262E-05],[86.982952,-5.2074E-05],[86.9864,-4.8981E-05],[86.989848,-5.5168E-05],[86.993296,-5.1559E-05],[86.996744,-5.3106E-05],[87.000192,-5.5168E-05],[87.00364,-5.2074E-05],[87.007088,-5.6715E-05],[87.010536,-5.3621E-05],[87.013984,-5.1559E-05],[87.017432,-5.3106E-05],[87.02088,-5.2074E-05],[87.024328,-5.5684E-05],[87.027776,-5.4652E-05],[87.031224,-5.3621E-05],[87.034672,-5.2074E-05],[87.03812,-5.1043E-05],[87.041568,-5.6199E-05],[87.045016,-5.4652E-05],[87.048464,-5.6199E-05],[87.051912,-5.259E-05],[87.05536,-4.2794E-05],[87.058808,-5.0528E-05],[87.062256,-5.4137E-05],[87.065704,-5.5168E-05],[87.069152,-5.4137E-05],[87.0726,-5.1043E-05],[87.076048,-5.723E-05],[87.079496,-5.1559E-05],[87.082944,-5.259E-05],[87.086392,-5.4652E-05],[87.08984,-5.3106E-05],[87.093288,-5.4652E-05],[87.096736,-5.1043E-05],[87.100184,-5.3621E-05],[87.103632,-5.1043E-05],[87.10708,-5.3621E-05],[87.110528,-5.1043E-05],[87.113976,-4.5887E-05],[87.117424,-5.4137E-05],[87.120872,-5.6199E-05],[87.12432,-5.723E-05],[87.127768,-5.0012E-05],[87.131216,-4.4341E-05],[87.134664,-4.7434E-05],[87.138112,-5.1043E-05],[87.14156,-5.6715E-05],[87.145008,-5.1559E-05],[87.148456,-4.8981E-05],[87.151904,-5.0528E-05],[87.155352,-4.9497E-05],[87.1588,-5.1559E-05],[87.162248,-5.3106E-05],[87.165696,-5.6715E-05],[87.169144,-5.5684E-05],[87.172592,-5.3621E-05],[87.17604,-5.4137E-05],[87.179488,-5.1043E-05],[87.182936,-5.0528E-05],[87.186384,-5.1559E-05],[87.189832,-4.6403E-05],[87.19328,-4.5887E-05],[87.196728,-5.1559E-05],[87.200176,-5.0012E-05],[87.203624,-5.2074E-05],[87.207072,-5.3106E-05],[87.21052,-4.9497E-05],[87.213968,-4.9497E-05]]}
-{"quant":[87.5068,-5.271E-05],"mems":[[87.407056,-5.5684E-05],[87.410504,-5.6715E-05],[87.413952,-5.1043E-05],[87.4174,-5.3621E-05],[87.420848,-5.8262E-05],[87.424296,-5.4652E-05],[87.427744,-5.4652E-05],[87.431192,-5.5168E-05],[87.43464,-5.0012E-05],[87.438088,-5.0528E-05],[87.441536,-5.3621E-05],[87.444984,-5.2074E-05],[87.448432,-5.5684E-05],[87.45188,-5.3106E-05],[87.455328,-4.8465E-05],[87.458776,-5.4652E-05],[87.462224,-5.4652E-05],[87.465672,-4.8981E-05],[87.46912,-5.3621E-05],[87.472568,-5.4652E-05],[87.476016,-5.0012E-05],[87.479464,-5.4652E-05],[87.482912,-5.3621E-05],[87.48636,-5.259E-05],[87.489808,-5.2074E-05],[87.493256,-5.259E-05],[87.496704,-5.5684E-05],[87.500152,-5.4137E-05],[87.5036,-5.5168E-05],[87.507048,-5.3106E-05],[87.510496,-5.3106E-05],[87.513944,-5.0528E-05],[87.517392,-4.7434E-05],[87.52084,-5.2074E-05],[87.524288,-5.4652E-05],[87.527736,-5.723E-05],[87.531184,-5.1559E-05],[87.534632,-5.0528E-05],[87.53808,-5.259E-05],[87.541528,-4.8465E-05],[87.544976,-5.3621E-05],[87.548424,-5.723E-05],[87.551872,-5.3621E-05],[87.55532,-5.3621E-05],[87.558768,-5.4652E-05],[87.562216,-5.1559E-05],[87.565664,-5.3106E-05],[87.569112,-5.4137E-05],[87.57256,-4.9497E-05],[87.576008,-5.1043E-05],[87.579456,-5.0528E-05],[87.582904,-5.0528E-05],[87.586352,-5.4137E-05],[87.5898,-5.1559E-05],[87.593248,-5.0012E-05],[87.596696,-5.0012E-05],[87.600144,-5.3621E-05],[87.603592,-5.9808E-05],[87.60704,-5.7746E-05],[87.610488,-5.2074E-05],[87.613936,-5.3106E-05],[87.617384,-5.1043E-05],[87.620832,-5.0012E-05],[87.62428,-5.3106E-05],[87.627728,-5.259E-05],[87.631176,-5.259E-05],[87.634624,-5.1043E-05],[87.638072,-5.4137E-05],[87.64152,-5.5684E-05],[87.644968,-5.3621E-05],[87.648416,-5.1559E-05],[87.651864,-5.4137E-05],[87.655312,-5.2074E-05],[87.65876,-4.9497E-05],[87.662208,-5.4652E-05],[87.665656,-5.3106E-05],[87.669104,-5.1043E-05],[87.672552,-5.5168E-05],[87.676,-5.7746E-05],[87.679448,-5.4652E-05],[87.682896,-5.3621E-05],[87.686344,-5.723E-05],[87.689792,-5.7746E-05],[87.69324,-5.5684E-05],[87.696688,-5.2074E-05],[87.700136,-5.1559E-05],[87.703584,-5.3621E-05],[87.707032,-5.259E-05]]}
-{"quant":[87.984,-1.3753],"mems":[[87.896672,-5.1559E-05],[87.90012,-5.5168E-05],[87.903568,-5.4137E-05],[87.907016,-5.723E-05],[87.910464,-5.4652E-05],[87.913912,-5.0528E-05],[87.91736,-5.259E-05],[87.920808,-5.3621E-05],[87.924256,-5.2074E-05],[87.927704,-5.259E-05],[87.931152,-5.4137E-05],[87.9346,-5.3106E-05],[87.938048,-5.6199E-05],[87.941496,-5.8777E-05],[87.944944,-5.3621E-05],[87.948392,-5.2074E-05],[87.95184,-5.3106E-05],[87.955288,-4.8981E-05],[87.958736,-5.0528E-05],[87.962184,-5.6199E-05],[87.965632,-5.3106E-05],[87.96908,-5.0528E-05],[87.972528,-5.1043E-05],[87.975976,-5.3106E-05],[87.979424,-5.2074E-05],[87.982872,-5.0528E-05],[87.98632,-5.6715E-05],[87.989768,-5.3621E-05],[87.993216,-5.1043E-05],[87.996664,-5.5168E-05],[88.000112,-5.1043E-05],[88.00356,-5.259E-05],[88.007008,-5.6199E-05],[88.010456,-5.3621E-05],[88.013904,-5.3621E-05],[88.017352,-5.5168E-05],[88.0208,-5.3621E-05],[88.024248,-5.6715E-05],[88.027696,-6.1871E-05],[88.031144,-5.7746E-05],[88.034592,-5.1043E-05],[88.03804,-5.2074E-05],[88.041488,-5.5168E-05],[88.044936,-5.5168E-05],[88.048384,-5.3621E-05],[88.051832,-5.0528E-05],[88.05528,-4.6403E-05],[88.058728,-5.1559E-05],[88.062176,-5.2074E-05],[88.065624,-5.1559E-05],[88.069072,-5.6199E-05],[88.07252,-5.5168E-05],[88.075968,-5.259E-05],[88.079416,-5.3106E-05],[88.082864,-5.4652E-05],[88.086312,-5.2074E-05],[88.08976,-4.9497E-05],[88.093208,-4.795E-05],[88.096656,-4.795E-05],[88.100104,-5.0528E-05],[88.103552,-5.0012E-05],[88.107,-5.259E-05],[88.110428,-5.5168E-05],[88.113856,-5.3621E-05],[88.117284,-5.3621E-05],[88.120712,-5.6715E-05],[88.12414,-5.1559E-05],[88.127568,-5.0528E-05],[88.130996,-5.3106E-05],[88.134424,-4.9497E-05],[88.137852,-5.259E-05],[88.14128,-5.2074E-05],[88.144708,-5.1559E-05],[88.148136,-5.3621E-05],[88.151564,-5.4137E-05],[88.154992,-5.4652E-05],[88.15842,-5.4137E-05],[88.161848,-5.4652E-05],[88.165276,-5.2074E-05],[88.168704,-5.259E-05],[88.172132,-5.259E-05],[88.17556,-5.1559E-05],[88.178988,-5.1043E-05],[88.182416,-5.2074E-05],[88.185844,-5.5168E-05],[88.189272,-5.5684E-05],[88.1927,-5.4137E-05],[88.196128,-5.0528E-05]]}
-{"quant":[88.4726,-5.2865E-05],"mems":[[88.374384,-5.4652E-05],[88.377812,-4.8465E-05],[88.38124,-4.6403E-05],[88.384668,-4.8981E-05],[88.388096,-5.1043E-05],[88.391524,-4.8465E-05],[88.394952,-5.0528E-05],[88.39838,-5.4137E-05],[88.401808,-5.0012E-05],[88.405236,-5.0012E-05],[88.408664,-5.2074E-05],[88.412092,-4.7434E-05],[88.41552,-5.0528E-05],[88.418948,-5.3621E-05],[88.422376,-5.4137E-05],[88.425804,-5.5684E-05],[88.429232,-5.3106E-05],[88.43266,-5.259E-05],[88.436088,-5.1043E-05],[88.439516,-5.4652E-05],[88.442944,-5.1559E-05],[88.446372,-4.9497E-05],[88.4498,-5.2074E-05],[88.453228,-5.0012E-05],[88.456656,-5.0528E-05],[88.460084,-5.0528E-05],[88.463512,-5.259E-05],[88.46694,-5.1043E-05],[88.470368,-4.7434E-05],[88.473796,-5.1043E-05],[88.477224,-5.6715E-05],[88.480652,-5.6199E-05],[88.48408,-5.259E-05],[88.487508,-5.5168E-05],[88.490936,-5.3621E-05],[88.494364,-4.9497E-05],[88.497792,-5.4137E-05],[88.50122,-5.5684E-05],[88.504648,-5.3106E-05],[88.508076,-5.6199E-05],[88.511504,-5.4137E-05],[88.514932,-5.4652E-05],[88.51836,-5.4652E-05],[88.521788,-5.0528E-05],[88.525216,-5.6715E-05],[88.528644,-5.5168E-05],[88.532072,-4.6919E-05],[88.5355,-4.9497E-05],[88.538928,-5.3621E-05],[88.542356,-5.2074E-05],[88.545784,-5.259E-05],[88.549212,-5.4652E-05],[88.55264,-4.9497E-05],[88.556068,-4.8465E-05],[88.559496,-5.259E-05],[88.562924,-5.4137E-05],[88.566352,-5.3621E-05],[88.56978,-4.8981E-05],[88.573208,-4.9497E-05],[88.576636,-5.3621E-05],[88.580064,-5.5168E-05],[88.583492,-5.4137E-05],[88.58692,-5.1559E-05],[88.590348,-5.2074E-05],[88.593776,-5.3106E-05],[88.597204,-5.3621E-05],[88.600632,-5.1559E-05],[88.60406,-5.0012E-05],[88.607488,-5.0012E-05],[88.610916,-5.2074E-05],[88.614344,-5.4652E-05],[88.617772,-5.1559E-05],[88.6212,-5.1559E-05],[88.624628,-5.3621E-05],[88.628056,-5.259E-05],[88.631484,-5.4137E-05],[88.634912,-5.5168E-05],[88.63834,-5.6715E-05],[88.641768,-5.3106E-05],[88.645196,-4.8465E-05],[88.648624,-5.3106E-05],[88.652052,-4.6919E-05],[88.65548,-4.8465E-05],[88.658908,-5.6199E-05],[88.662336,-5.259E-05],[88.665764,-5.3621E-05],[88.669192,-5.4137E-05],[88.67262,-5.4652E-05]]}
-{"quant":[89.0068,-5.3174E-05],"mems":[[88.909152,-5.1043E-05],[88.91258,-5.1559E-05],[88.916008,-5.1559E-05],[88.919436,-5.5168E-05],[88.922864,-5.5168E-05],[88.926292,-5.3621E-05],[88.92972,-5.2074E-05],[88.933148,-4.8465E-05],[88.936576,-5.4652E-05],[88.940004,-5.9808E-05],[88.943432,-5.5168E-05],[88.94686,-5.4652E-05],[88.950288,-5.259E-05],[88.953716,-5.1043E-05],[88.957144,-5.1043E-05],[88.960572,-5.1559E-05],[88.964,-5.4137E-05],[88.967428,-4.9497E-05],[88.970856,-5.0528E-05],[88.974284,-5.5168E-05],[88.977712,-5.4652E-05],[88.98114,-5.5684E-05],[88.984568,-5.259E-05],[88.987996,-4.8981E-05],[88.991424,-4.6403E-05],[88.994852,-5.0012E-05],[88.99828,-5.8777E-05],[89.001708,-5.8777E-05],[89.005136,-6.0324E-05],[89.008564,-5.4652E-05],[89.011992,-4.5887E-05],[89.01542,-5.6199E-05],[89.018848,-5.9293E-05],[89.022276,-5.5168E-05],[89.025704,-5.5684E-05],[89.029132,-5.2074E-05],[89.03256,-4.9497E-05],[89.035988,-5.3106E-05],[89.039416,-5.5684E-05],[89.042844,-5.259E-05],[89.046272,-5.4137E-05],[89.0497,-5.0528E-05],[89.053128,-5.1043E-05],[89.056556,-5.5168E-05],[89.059984,-5.0528E-05],[89.063412,-5.3621E-05],[89.06684,-5.2074E-05],[89.070268,-5.0012E-05],[89.073696,-5.5168E-05],[89.077124,-5.1043E-05],[89.080552,-4.8981E-05],[89.08398,-5.3621E-05],[89.087408,-5.3621E-05],[89.090836,-5.4652E-05],[89.094264,-5.5168E-05],[89.097692,-5.2074E-05],[89.10112,-5.8262E-05],[89.104548,-5.6715E-05],[89.107976,-4.8981E-05],[89.111404,-5.259E-05],[89.114832,-5.5168E-05],[89.11826,-5.0528E-05],[89.121688,-4.6919E-05],[89.125116,-4.8465E-05],[89.128544,-4.795E-05],[89.131972,-5.0528E-05],[89.1354,-5.3106E-05],[89.138828,-5.4137E-05],[89.142256,-5.5168E-05],[89.145684,-4.9497E-05],[89.149112,-5.259E-05],[89.15254,-5.3621E-05],[89.155968,-5.3621E-05],[89.159396,-5.6199E-05],[89.162824,-5.4652E-05],[89.166252,-5.7746E-05],[89.16968,-5.8777E-05],[89.173108,-5.5168E-05],[89.176536,-5.4652E-05],[89.179964,-5.4137E-05],[89.183392,-5.4137E-05],[89.18682,-5.6199E-05],[89.190248,-5.1559E-05],[89.193676,-5.2074E-05],[89.197104,-5.723E-05],[89.200532,-5.4137E-05],[89.20396,-5.4137E-05],[89.207388,-5.2074E-05]]}
-{"quant":[89.4619,-5.4206E-05],"mems":[[89.365076,-4.8465E-05],[89.368504,-4.6403E-05],[89.371932,-5.2074E-05],[89.37536,-5.8777E-05],[89.378788,-5.4137E-05],[89.382216,-5.2074E-05],[89.385644,-5.259E-05],[89.389072,-5.0528E-05],[89.3925,-5.1559E-05],[89.395928,-5.6199E-05],[89.399356,-5.6199E-05],[89.402784,-5.3106E-05],[89.406212,-5.3106E-05],[89.40964,-5.2074E-05],[89.413068,-5.5168E-05],[89.416496,-5.2074E-05],[89.419924,-4.8981E-05],[89.423352,-5.6199E-05],[89.42678,-5.6715E-05],[89.430208,-5.4652E-05],[89.433636,-5.3621E-05],[89.437064,-5.8262E-05],[89.440492,-5.9293E-05],[89.44392,-5.4652E-05],[89.447348,-5.5168E-05],[89.450776,-5.0012E-05],[89.454204,-5.2074E-05],[89.457632,-5.1559E-05],[89.46106,-4.6919E-05],[89.464488,-5.5168E-05],[89.467916,-5.4652E-05],[89.471344,-5.4652E-05],[89.474772,-5.8777E-05],[89.4782,-5.723E-05],[89.481628,-5.6199E-05],[89.485056,-5.259E-05],[89.488484,-5.259E-05],[89.491912,-5.5168E-05],[89.49534,-5.4137E-05],[89.498768,-5.2074E-05],[89.502196,-5.0012E-05],[89.505624,-5.6199E-05],[89.509052,-5.9293E-05],[89.51248,-5.0528E-05],[89.515908,-5.259E-05],[89.519336,-5.3621E-05],[89.522764,-4.795E-05],[89.526192,-5.259E-05],[89.52962,-5.3621E-05],[89.533048,-5.2074E-05],[89.536476,-5.4137E-05],[89.539904,-5.4652E-05],[89.543332,-5.723E-05],[89.54676,-5.6199E-05],[89.550188,-5.723E-05],[89.553616,-5.7746E-05],[89.557044,-5.4652E-05],[89.560472,-5.1559E-05],[89.5639,-5.1043E-05],[89.567328,-5.1559E-05],[89.570756,-5.0528E-05],[89.574184,-5.3106E-05],[89.577612,-5.2074E-05],[89.58104,-4.9497E-05],[89.584468,-5.1559E-05],[89.587896,-5.0528E-05],[89.591324,-5.1043E-05],[89.594752,-5.1559E-05],[89.59818,-5.259E-05],[89.601608,-5.5684E-05],[89.605036,-5.2074E-05],[89.608464,-5.1559E-05],[89.611892,-5.1559E-05],[89.61532,-5.4137E-05],[89.618748,-5.3106E-05],[89.622176,-5.1559E-05],[89.625604,-5.4137E-05],[89.629032,-5.1043E-05],[89.63246,-5.4652E-05],[89.635888,-5.5168E-05],[89.639316,-5.3106E-05],[89.642744,-5.723E-05],[89.646172,-5.5684E-05],[89.6496,-5.1043E-05],[89.653028,-5.2074E-05],[89.656456,-5.5168E-05],[89.659884,-5.5168E-05],[89.663312,-5.6199E-05]]}
-{"quant":[89.9221,-5.2556E-05],"mems":[[89.824428,-5.6199E-05],[89.827856,-4.795E-05],[89.831284,-4.7434E-05],[89.834712,-5.0528E-05],[89.83814,-5.3621E-05],[89.841568,-5.259E-05],[89.844996,-5.1043E-05],[89.848424,-5.4652E-05],[89.851852,-5.3621E-05],[89.85528,-5.3106E-05],[89.858708,-5.4137E-05],[89.862136,-5.2074E-05],[89.865564,-4.8465E-05],[89.868992,-4.9497E-05],[89.87242,-5.3106E-05],[89.875848,-5.259E-05],[89.879276,-5.259E-05],[89.882704,-5.3106E-05],[89.886132,-5.7746E-05],[89.88956,-5.1043E-05],[89.892988,-4.7434E-05],[89.896416,-5.6199E-05],[89.899844,-5.3621E-05],[89.903272,-4.9497E-05],[89.9067,-4.795E-05],[89.910128,-5.0528E-05],[89.913556,-5.1559E-05],[89.916984,-4.8981E-05],[89.920412,-5.0528E-05],[89.92384,-5.2074E-05],[89.927268,-5.3106E-05],[89.930696,-5.5168E-05],[89.934124,-5.7746E-05],[89.937552,-5.3621E-05],[89.94098,-5.0528E-05],[89.944408,-5.3621E-05],[89.947836,-4.8981E-05],[89.951264,-4.6919E-05],[89.954692,-5.3106E-05],[89.95812,-5.6199E-05],[89.961548,-5.3621E-05],[89.964976,-5.2074E-05],[89.968404,-5.3106E-05],[89.971832,-5.1559E-05],[89.97526,-5.1043E-05],[89.978688,-5.5684E-05],[89.982116,-5.4652E-05],[89.985544,-4.8981E-05],[89.988972,-4.8981E-05],[89.9924,-5.259E-05],[89.995828,-5.1043E-05],[89.999256,-5.1043E-05],[90.002684,-4.9497E-05],[90.006112,-5.2074E-05],[90.00954,-5.5684E-05],[90.012968,-5.3106E-05],[90.016396,-5.6199E-05],[90.019824,-5.4652E-05],[90.023252,-5.0012E-05],[90.02668,-5.1043E-05],[90.030108,-5.259E-05],[90.033536,-5.5168E-05],[90.036964,-5.4137E-05],[90.040392,-5.1559E-05],[90.04382,-5.1043E-05],[90.047248,-5.259E-05],[90.050676,-5.2074E-05],[90.054104,-5.2074E-05],[90.057532,-5.4652E-05],[90.06096,-5.1559E-05],[90.064388,-5.1559E-05],[90.067816,-5.259E-05],[90.071244,-5.2074E-05],[90.074672,-5.3621E-05],[90.0781,-5.3106E-05],[90.081528,-5.723E-05],[90.084956,-5.6715E-05],[90.088384,-5.0528E-05],[90.091812,-4.8981E-05],[90.09524,-5.3106E-05],[90.098668,-5.4652E-05],[90.102096,-5.1559E-05],[90.105524,-5.1043E-05],[90.108952,-5.0528E-05],[90.11238,-5.2074E-05],[90.115808,-5.2074E-05],[90.119236,-4.5887E-05],[90.122664,-5.3621E-05]]}
-{"quant":[90.368,-5.2934E-05],"mems":[[90.270068,-5.1043E-05],[90.273496,-5.1043E-05],[90.276924,-5.2074E-05],[90.280352,-5.4652E-05],[90.28378,-5.1559E-05],[90.287208,-5.0528E-05],[90.290636,-5.7746E-05],[90.294064,-5.4137E-05],[90.297492,-5.0528E-05],[90.30092,-5.2074E-05],[90.304348,-4.795E-05],[90.307776,-5.4137E-05],[90.311204,-5.9293E-05],[90.314632,-5.723E-05],[90.31806,-5.5168E-05],[90.321488,-5.1043E-05],[90.324916,-5.259E-05],[90.328344,-5.1559E-05],[90.331772,-5.5684E-05],[90.3352,-5.9808E-05],[90.338628,-5.3106E-05],[90.342056,-5.259E-05],[90.345484,-5.0528E-05],[90.348912,-4.9497E-05],[90.35234,-5.8262E-05],[90.355768,-5.6199E-05],[90.359196,-5.0012E-05],[90.362624,-5.0528E-05],[90.366052,-5.1043E-05],[90.36948,-5.1043E-05],[90.372908,-5.3621E-05],[90.376336,-5.6715E-05],[90.379764,-5.1043E-05],[90.383192,-5.1043E-05],[90.38662,-5.0528E-05],[90.390048,-4.6919E-05],[90.393476,-5.1559E-05],[90.396904,-5.3621E-05],[90.400332,-5.3106E-05],[90.40376,-5.3621E-05],[90.407188,-5.5684E-05],[90.410616,-5.259E-05],[90.414044,-5.3106E-05],[90.417472,-5.723E-05],[90.4209,-5.3621E-05],[90.424328,-5.4137E-05],[90.427756,-5.259E-05],[90.431184,-5.259E-05],[90.434612,-5.6199E-05],[90.43804,-5.4652E-05],[90.441468,-5.0528E-05],[90.444896,-4.8981E-05],[90.448324,-5.3621E-05],[90.451752,-5.7746E-05],[90.45518,-5.4137E-05],[90.458608,-5.3106E-05],[90.462036,-5.3621E-05],[90.465464,-5.0528E-05],[90.468892,-5.0528E-05],[90.47232,-5.4652E-05],[90.475748,-5.5684E-05],[90.479176,-5.4652E-05],[90.482604,-5.259E-05],[90.486032,-4.795E-05],[90.48946,-5.1559E-05],[90.492888,-5.6715E-05],[90.496316,-5.5168E-05],[90.499744,-5.5168E-05],[90.503172,-5.259E-05],[90.5066,-5.2074E-05],[90.510028,-5.5168E-05],[90.513456,-5.259E-05],[90.516884,-5.259E-05],[90.520312,-5.3106E-05],[90.52374,-4.795E-05],[90.527168,-5.0528E-05],[90.530596,-5.5168E-05],[90.534024,-5.8777E-05],[90.537452,-5.3106E-05],[90.54088,-5.0528E-05],[90.544308,-5.5684E-05],[90.547736,-5.0012E-05],[90.551164,-5.1559E-05],[90.554592,-5.5168E-05],[90.55802,-5.0012E-05],[90.561448,-5.259E-05],[90.564876,-4.8981E-05],[90.568304,-5.1559E-05]]}
-{"quant":[90.8445,-5.204E-05],"mems":[[90.74672,-5.0012E-05],[90.750156,-5.8262E-05],[90.753592,-5.5168E-05],[90.757028,-5.3106E-05],[90.760464,-5.259E-05],[90.7639,-4.8465E-05],[90.767336,-5.1559E-05],[90.770772,-5.2074E-05],[90.774208,-5.3106E-05],[90.777644,-5.5684E-05],[90.78108,-5.2074E-05],[90.784516,-5.1559E-05],[90.787952,-5.3621E-05],[90.791388,-5.259E-05],[90.794824,-5.4137E-05],[90.79826,-5.4652E-05],[90.801696,-5.0012E-05],[90.805132,-4.8465E-05],[90.808568,-4.8465E-05],[90.812004,-4.5372E-05],[90.81544,-4.795E-05],[90.818876,-5.2074E-05],[90.822312,-4.8465E-05],[90.825748,-4.9497E-05],[90.829184,-5.3106E-05],[90.83262,-5.1559E-05],[90.836056,-5.0012E-05],[90.839492,-5.0012E-05],[90.842928,-4.795E-05],[90.846364,-5.0528E-05],[90.8498,-5.4137E-05],[90.853236,-5.1559E-05],[90.856672,-5.2074E-05],[90.860108,-5.2074E-05],[90.863544,-5.1559E-05],[90.86698,-5.0012E-05],[90.870416,-4.8981E-05],[90.873852,-5.4137E-05],[90.877288,-5.259E-05],[90.880724,-5.4652E-05],[90.88416,-5.3621E-05],[90.887596,-5.0012E-05],[90.891032,-5.5684E-05],[90.894468,-5.3621E-05],[90.897904,-5.1559E-05],[90.90134,-5.0528E-05],[90.904776,-4.795E-05],[90.908212,-5.1559E-05],[90.911648,-5.3106E-05],[90.915084,-5.3621E-05],[90.91852,-5.4137E-05],[90.921956,-4.795E-05],[90.925392,-4.6919E-05],[90.928828,-5.4137E-05],[90.932264,-5.2074E-05],[90.9357,-5.4652E-05],[90.939136,-5.3621E-05],[90.942572,-4.8981E-05],[90.946008,-5.5168E-05],[90.949444,-5.3106E-05],[90.95288,-5.3621E-05],[90.956316,-5.6715E-05],[90.959752,-5.1559E-05],[90.963188,-4.795E-05],[90.966624,-5.1559E-05],[90.97006,-5.4137E-05],[90.973496,-5.1043E-05],[90.976932,-5.1043E-05],[90.980368,-4.9497E-05],[90.983804,-5.1043E-05],[90.98724,-5.0012E-05],[90.990676,-5.1559E-05],[90.994112,-5.3106E-05],[90.997548,-5.1559E-05],[91.000984,-5.723E-05],[91.00442,-5.1559E-05],[91.007856,-5.2074E-05],[91.011292,-5.6199E-05],[91.014728,-5.4652E-05],[91.018164,-5.5168E-05],[91.0216,-5.2074E-05],[91.025036,-5.0012E-05],[91.028472,-5.1043E-05],[91.031908,-5.259E-05],[91.035344,-5.4652E-05],[91.03878,-5.4137E-05],[91.042216,-5.0012E-05],[91.045652,-4.8981E-05]]}
-{"quant":[91.5452,-5.204E-05],"mems":[[91.447664,-5.3106E-05],[91.4511,-5.4652E-05],[91.454536,-5.0528E-05],[91.457972,-4.9497E-05],[91.461408,-5.1559E-05],[91.464844,-5.4137E-05],[91.46828,-5.4137E-05],[91.471716,-5.8262E-05],[91.475152,-5.9808E-05],[91.478588,-5.2074E-05],[91.482024,-5.0012E-05],[91.48546,-5.3621E-05],[91.488896,-5.2074E-05],[91.492332,-5.0012E-05],[91.495768,-5.5168E-05],[91.499204,-5.259E-05],[91.50264,-5.0012E-05],[91.506076,-5.7746E-05],[91.509512,-5.5168E-05],[91.512948,-5.4137E-05],[91.516384,-5.7746E-05],[91.51982,-5.4137E-05],[91.523256,-5.259E-05],[91.526692,-5.5684E-05],[91.530128,-5.4137E-05],[91.533564,-5.1559E-05],[91.537,-5.259E-05],[91.540436,-5.0012E-05],[91.543872,-4.9497E-05],[91.547308,-5.2074E-05],[91.550744,-5.5168E-05],[91.55418,-5.7746E-05],[91.557616,-5.259E-05],[91.561052,-5.2074E-05],[91.564488,-5.3106E-05],[91.567924,-5.2074E-05],[91.57136,-5.259E-05],[91.574796,-5.4652E-05],[91.578232,-5.2074E-05],[91.581668,-5.2074E-05],[91.585104,-5.2074E-05],[91.58854,-4.6403E-05],[91.591976,-5.1043E-05],[91.595412,-5.3106E-05],[91.598848,-4.8465E-05],[91.602284,-4.9497E-05],[91.60572,-5.0012E-05],[91.609156,-5.3621E-05],[91.612592,-5.5684E-05],[91.616028,-5.0528E-05],[91.619464,-5.0528E-05],[91.6229,-5.0528E-05],[91.626336,-5.0528E-05],[91.629772,-5.4137E-05],[91.633208,-5.1043E-05],[91.636644,-4.8981E-05],[91.64008,-5.0012E-05],[91.643516,-5.3106E-05],[91.646952,-5.5684E-05],[91.650388,-5.5684E-05],[91.653824,-5.2074E-05],[91.65726,-4.6919E-05],[91.660696,-4.6403E-05],[91.664132,-4.8465E-05],[91.667568,-5.4137E-05],[91.671004,-5.6715E-05],[91.67444,-5.5168E-05],[91.677876,-5.7746E-05],[91.681312,-5.1043E-05],[91.684748,-4.8465E-05],[91.688184,-5.3106E-05],[91.69162,-5.1043E-05],[91.695056,-5.723E-05],[91.698492,-5.5684E-05],[91.701928,-4.9497E-05],[91.705364,-5.1559E-05],[91.7088,-5.4652E-05],[91.712236,-5.3621E-05],[91.715672,-5.2074E-05],[91.719108,-5.3106E-05],[91.722544,-4.8465E-05],[91.72598,-4.7434E-05],[91.729416,-5.1559E-05],[91.732852,-5.2074E-05],[91.736288,-5.4137E-05],[91.739724,-5.3621E-05],[91.74316,-5.2074E-05],[91.746596,-5.2074E-05]]}
-{"quant":[92.1107,-5.239E-05],"mems":[[92.011168,-4.795E-05],[92.014604,-5.0012E-05],[92.01804,-5.2074E-05],[92.021476,-5.1043E-05],[92.024912,-5.259E-05],[92.028348,-5.8262E-05],[92.031784,-5.8777E-05],[92.03522,-5.4137E-05],[92.038656,-5.1559E-05],[92.042092,-5.3106E-05],[92.045528,-5.1043E-05],[92.048964,-5.3621E-05],[92.0524,-5.5684E-05],[92.055836,-5.723E-05],[92.059272,-5.2074E-05],[92.062708,-4.795E-05],[92.066144,-5.5684E-05],[92.06958,-5.3621E-05],[92.073016,-5.0012E-05],[92.076452,-4.8981E-05],[92.079888,-5.1559E-05],[92.083324,-5.1043E-05],[92.08676,-5.259E-05],[92.090196,-5.7746E-05],[92.093632,-5.3621E-05],[92.097068,-5.3621E-05],[92.100504,-4.795E-05],[92.10394,-4.6403E-05],[92.107376,-5.3106E-05],[92.110812,-5.1559E-05],[92.114248,-5.4137E-05],[92.117684,-5.3106E-05],[92.12112,-5.3106E-05],[92.124556,-5.3106E-05],[92.127992,-5.2074E-05],[92.131428,-5.3621E-05],[92.134864,-5.259E-05],[92.1383,-5.0528E-05],[92.141736,-4.795E-05],[92.145172,-5.0012E-05],[92.148608,-5.1559E-05],[92.152044,-5.3106E-05],[92.15548,-5.6199E-05],[92.158916,-5.5684E-05],[92.162352,-5.0012E-05],[92.165788,-4.9497E-05],[92.169224,-5.6715E-05],[92.17266,-5.5168E-05],[92.176096,-5.3621E-05],[92.179532,-5.1043E-05],[92.182968,-4.8981E-05],[92.186404,-5.3621E-05],[92.18984,-5.4137E-05],[92.193276,-5.2074E-05],[92.196712,-5.259E-05],[92.200148,-5.1043E-05],[92.203584,-5.3106E-05],[92.20702,-5.4137E-05],[92.210456,-5.1043E-05],[92.213892,-4.8981E-05],[92.217328,-5.2074E-05],[92.220764,-5.4652E-05],[92.2242,-5.4652E-05],[92.227636,-6.0324E-05],[92.231072,-5.9293E-05],[92.234508,-5.3621E-05],[92.237944,-5.3106E-05],[92.24138,-5.259E-05],[92.244816,-5.0012E-05],[92.248252,-5.0012E-05],[92.251688,-5.0528E-05],[92.255124,-5.259E-05],[92.25856,-5.5684E-05],[92.261996,-4.7434E-05],[92.265432,-4.6919E-05],[92.268868,-5.259E-05],[92.272304,-4.795E-05],[92.27574,-4.8465E-05],[92.279176,-5.1043E-05],[92.282612,-5.2074E-05],[92.286048,-5.3621E-05],[92.289484,-5.5168E-05],[92.29292,-5.6715E-05],[92.296356,-5.3106E-05],[92.299792,-5.1043E-05],[92.303228,-5.1559E-05],[92.306664,-5.3106E-05],[92.3101,-5.3106E-05],[92.313536,-5.3621E-05]]}
-{"quant":[92.5944,-5.1937E-05],"mems":[[92.495644,-5.2074E-05],[92.49908,-5.2074E-05],[92.502516,-5.6715E-05],[92.505952,-5.6715E-05],[92.509388,-5.5168E-05],[92.512824,-5.5684E-05],[92.51626,-5.0528E-05],[92.519696,-5.0528E-05],[92.523132,-5.0528E-05],[92.526568,-5.0012E-05],[92.530004,-5.259E-05],[92.53344,-5.5168E-05],[92.536876,-5.5684E-05],[92.540312,-4.8465E-05],[92.543748,-4.9497E-05],[92.547184,-5.4652E-05],[92.55062,-5.6715E-05],[92.554056,-5.8262E-05],[92.557492,-5.4652E-05],[92.560928,-5.3106E-05],[92.564364,-5.1043E-05],[92.5678,-5.2074E-05],[92.571236,-5.259E-05],[92.574672,-5.1043E-05],[92.578108,-5.3106E-05],[92.581544,-5.0012E-05],[92.58498,-5.259E-05],[92.588416,-5.5684E-05],[92.591852,-5.259E-05],[92.595288,-5.259E-05],[92.598724,-4.8465E-05],[92.60216,-4.7434E-05],[92.605596,-5.1043E-05],[92.609032,-5.5684E-05],[92.612468,-5.4652E-05],[92.615904,-4.9497E-05],[92.61934,-4.6919E-05],[92.622776,-5.0012E-05],[92.626212,-5.4652E-05],[92.629648,-5.0012E-05],[92.633084,-4.8981E-05],[92.63652,-5.4652E-05],[92.639956,-4.8981E-05],[92.643392,-4.5372E-05],[92.646828,-5.4652E-05],[92.650264,-5.5684E-05],[92.6537,-5.0528E-05],[92.657136,-5.0012E-05],[92.660572,-5.1559E-05],[92.664008,-5.4137E-05],[92.667444,-5.6199E-05],[92.67088,-5.723E-05],[92.674316,-5.4137E-05],[92.677752,-5.4652E-05],[92.681188,-5.6199E-05],[92.684624,-5.5168E-05],[92.68806,-5.0528E-05],[92.691496,-4.6919E-05],[92.694932,-5.1559E-05],[92.698368,-4.9497E-05],[92.701804,-4.6919E-05],[92.70524,-5.1559E-05],[92.708676,-5.0528E-05],[92.712112,-5.3106E-05],[92.715548,-5.5168E-05],[92.718984,-5.0012E-05],[92.72242,-5.1559E-05],[92.725856,-5.3621E-05],[92.729292,-5.7746E-05],[92.732728,-5.4137E-05],[92.736164,-5.4137E-05],[92.7396,-5.723E-05],[92.743036,-4.8465E-05],[92.746472,-5.1043E-05],[92.749908,-5.5168E-05],[92.753344,-5.5168E-05],[92.75678,-5.5684E-05],[92.760216,-5.4137E-05],[92.763652,-5.3621E-05],[92.767088,-5.1043E-05],[92.770524,-5.3106E-05],[92.77396,-5.6199E-05],[92.777396,-5.4652E-05],[92.780832,-5.0012E-05],[92.784268,-5.1559E-05],[92.787704,-5.8262E-05],[92.79114,-5.7746E-05],[92.794576,-5.3621E-05]]}
-{"quant":[93.06,-0.69048],"mems":[[92.96294,-5.4137E-05],[92.966376,-5.0528E-05],[92.969812,-5.259E-05],[92.973248,-5.4137E-05],[92.976684,-5.2074E-05],[92.98012,-5.3106E-05],[92.983556,-5.5168E-05],[92.986992,-5.4137E-05],[92.990428,-5.3106E-05],[92.993864,-5.0012E-05],[92.9973,-4.5887E-05],[93.000736,-4.6919E-05],[93.004172,-5.259E-05],[93.007608,-5.4652E-05],[93.011044,-5.2074E-05],[93.01448,-5.5684E-05],[93.017916,-5.4137E-05],[93.021352,-5.0012E-05],[93.024788,-5.3621E-05],[93.028224,-5.1043E-05],[93.03166,-5.4137E-05],[93.035096,-5.5168E-05],[93.038532,-5.0012E-05],[93.041968,-5.4137E-05],[93.045404,-5.3106E-05],[93.04884,-5.1559E-05],[93.052276,-5.0012E-05],[93.055712,-5.1043E-05],[93.059148,-5.1559E-05],[93.062584,-5.0528E-05],[93.06602,-5.3621E-05],[93.069456,-4.9497E-05],[93.072892,-5.1043E-05],[93.076328,-5.259E-05],[93.079764,-5.2074E-05],[93.0832,-5.3106E-05],[93.086636,-5.2074E-05],[93.090072,-5.5168E-05],[93.093508,-5.3106E-05],[93.096944,-5.2074E-05],[93.10038,-4.6919E-05],[93.103816,-4.8981E-05],[93.107252,-5.6199E-05],[93.110688,-5.1043E-05],[93.114124,-5.3106E-05],[93.11756,-5.5684E-05],[93.120996,-5.0528E-05],[93.124432,-5.1043E-05],[93.127868,-5.3621E-05],[93.131304,-4.8465E-05],[93.13474,-4.3825E-05],[93.138176,-5.0012E-05],[93.141612,-5.0528E-05],[93.145048,-5.4137E-05],[93.148484,-5.5168E-05],[93.15192,-5.1043E-05],[93.155356,-5.3621E-05],[93.158792,-4.8981E-05],[93.162228,-5.3621E-05],[93.165664,-5.9293E-05],[93.1691,-5.723E-05],[93.172536,-5.7746E-05],[93.175972,-5.5168E-05],[93.179408,-5.1043E-05],[93.182844,-4.7434E-05],[93.18628,-4.7434E-05],[93.189716,-5.0528E-05],[93.193152,-5.3621E-05],[93.196588,-5.4652E-05],[93.200024,-5.0012E-05],[93.20346,-5.1559E-05],[93.206896,-5.6715E-05],[93.210332,-5.4652E-05],[93.213768,-5.2074E-05],[93.217204,-5.0528E-05],[93.22064,-4.6919E-05],[93.224076,-4.8981E-05],[93.227512,-5.259E-05],[93.230948,-5.3106E-05],[93.234384,-5.3106E-05],[93.23782,-5.0528E-05],[93.241256,-4.8981E-05],[93.244692,-4.8981E-05],[93.248128,-5.1559E-05],[93.251564,-5.4652E-05],[93.255,-5.4137E-05],[93.258441,-5.0012E-05],[93.261883,-4.795E-05]]}
-{"quant":[93.5389,-5.2006E-05],"mems":[[93.440832,-5.1559E-05],[93.444273,-5.1043E-05],[93.447715,-5.3621E-05],[93.451156,-5.4652E-05],[93.454597,-5.0528E-05],[93.458039,-4.7434E-05],[93.46148,-4.9497E-05],[93.464921,-5.1559E-05],[93.468363,-5.0012E-05],[93.471804,-4.9497E-05],[93.475245,-4.9497E-05],[93.478687,-5.1559E-05],[93.482128,-5.2074E-05],[93.485569,-5.3621E-05],[93.489011,-5.4652E-05],[93.492452,-5.3106E-05],[93.495893,-5.4137E-05],[93.499335,-5.3621E-05],[93.502776,-5.259E-05],[93.506217,-5.3621E-05],[93.509659,-4.8465E-05],[93.5131,-4.8465E-05],[93.516541,-5.259E-05],[93.519983,-4.795E-05],[93.523424,-5.2074E-05],[93.526865,-5.5684E-05],[93.530307,-5.3621E-05],[93.533748,-5.4137E-05],[93.537189,-5.1559E-05],[93.540631,-5.259E-05],[93.544072,-5.1043E-05],[93.547513,-5.2074E-05],[93.550955,-5.6199E-05],[93.554396,-5.4137E-05],[93.557837,-4.6919E-05],[93.561279,-4.5887E-05],[93.56472,-4.9497E-05],[93.568161,-4.8981E-05],[93.571603,-5.3621E-05],[93.575044,-5.6715E-05],[93.578485,-5.5684E-05],[93.581927,-5.0012E-05],[93.585368,-4.8465E-05],[93.588809,-5.5168E-05],[93.592251,-5.3621E-05],[93.595692,-5.3106E-05],[93.599133,-4.9497E-05],[93.602575,-4.8981E-05],[93.606016,-5.4652E-05],[93.609457,-5.1559E-05],[93.612899,-5.259E-05],[93.61634,-5.3106E-05],[93.619781,-5.2074E-05],[93.623223,-5.4652E-05],[93.626664,-5.4652E-05],[93.630105,-5.3621E-05],[93.633547,-5.3106E-05],[93.636988,-5.1043E-05],[93.640429,-4.6919E-05],[93.643871,-5.1559E-05],[93.647312,-5.5684E-05],[93.650753,-5.4137E-05],[93.654195,-5.1043E-05],[93.657636,-5.0528E-05],[93.661077,-5.4137E-05],[93.664519,-5.4652E-05],[93.66796,-5.6199E-05],[93.671401,-5.2074E-05],[93.674843,-5.4652E-05],[93.678284,-5.5684E-05],[93.681725,-5.1559E-05],[93.685167,-5.5684E-05],[93.688608,-5.4137E-05],[93.692049,-5.3621E-05],[93.695491,-5.2074E-05],[93.698932,-5.3106E-05],[93.702373,-5.3621E-05],[93.705815,-5.4137E-05],[93.709256,-5.6715E-05],[93.712697,-5.6199E-05],[93.716139,-5.4137E-05],[93.71958,-5.2074E-05],[93.723021,-5.3106E-05],[93.726463,-5.0528E-05],[93.729904,-5.259E-05],[93.733345,-5.5168E-05],[93.736787,-5.2074E-05],[93.740228,-5.1559E-05]]}
-{"quant":[94.1746,-5.1473E-05],"mems":[[94.077479,-5.4137E-05],[94.08092,-5.0012E-05],[94.084361,-5.1559E-05],[94.087803,-5.5684E-05],[94.091244,-5.3106E-05],[94.094685,-4.795E-05],[94.098127,-4.8981E-05],[94.101568,-5.3106E-05],[94.105009,-5.4137E-05],[94.108451,-5.0528E-05],[94.111892,-4.9497E-05],[94.115333,-5.1559E-05],[94.118775,-5.0528E-05],[94.122216,-5.4137E-05],[94.125657,-5.5168E-05],[94.129099,-5.5684E-05],[94.13254,-5.5168E-05],[94.135981,-5.0012E-05],[94.139423,-5.2074E-05],[94.142864,-5.4137E-05],[94.146305,-5.4137E-05],[94.149747,-5.3106E-05],[94.153188,-5.3106E-05],[94.156629,-5.2074E-05],[94.160071,-5.0528E-05],[94.163512,-4.8981E-05],[94.166953,-4.8981E-05],[94.170395,-5.1043E-05],[94.173836,-5.259E-05],[94.177277,-5.0528E-05],[94.180719,-4.5887E-05],[94.18416,-5.0528E-05],[94.187601,-5.5168E-05],[94.191043,-5.6199E-05],[94.194484,-5.8262E-05],[94.197925,-5.3106E-05],[94.201367,-4.795E-05],[94.204808,-5.0528E-05],[94.208249,-5.0012E-05],[94.211691,-5.5168E-05],[94.215132,-5.9293E-05],[94.218573,-4.5887E-05],[94.222015,-4.8981E-05],[94.225456,-5.4652E-05],[94.228897,-5.1043E-05],[94.232339,-5.2074E-05],[94.23578,-5.1559E-05],[94.239221,-5.1559E-05],[94.242663,-4.9497E-05],[94.246104,-5.0012E-05],[94.249545,-5.1559E-05],[94.252987,-5.6199E-05],[94.256428,-5.1559E-05],[94.259869,-4.7434E-05],[94.263311,-5.2074E-05],[94.266752,-4.8465E-05],[94.270193,-4.8981E-05],[94.273635,-5.0012E-05],[94.277076,-5.0012E-05],[94.280517,-4.795E-05],[94.283959,-5.0012E-05],[94.2874,-5.5684E-05],[94.290841,-5.259E-05],[94.294283,-5.4652E-05],[94.297724,-5.259E-05],[94.301165,-5.0528E-05],[94.304607,-5.4137E-05],[94.308048,-5.6715E-05],[94.311489,-5.8262E-05],[94.314931,-5.5168E-05],[94.318372,-5.1043E-05],[94.321813,-5.1043E-05],[94.325255,-5.5168E-05],[94.328696,-4.8981E-05],[94.332137,-5.0012E-05],[94.335579,-5.2074E-05],[94.33902,-4.4341E-05],[94.342461,-5.1043E-05],[94.345903,-5.3106E-05],[94.349344,-5.3106E-05],[94.352785,-5.4652E-05],[94.356227,-5.3106E-05],[94.359668,-5.0528E-05],[94.363109,-5.0012E-05],[94.366551,-5.1559E-05],[94.369992,-5.2074E-05],[94.373433,-5.3621E-05],[94.376875,-5.1043E-05]]}
-{"quant":[94.6817,-5.2659E-05],"mems":[[94.583355,-5.1559E-05],[94.586796,-5.4137E-05],[94.590237,-5.3621E-05],[94.593679,-5.2074E-05],[94.59712,-4.8465E-05],[94.600561,-4.8465E-05],[94.604003,-5.6715E-05],[94.607444,-5.7746E-05],[94.610885,-5.5684E-05],[94.614327,-5.4137E-05],[94.617768,-5.4137E-05],[94.621209,-5.3621E-05],[94.624651,-5.3106E-05],[94.628092,-5.6199E-05],[94.631533,-5.3106E-05],[94.634975,-5.5684E-05],[94.638416,-5.5684E-05],[94.641857,-5.2074E-05],[94.645299,-5.8262E-05],[94.64874,-5.9808E-05],[94.652181,-5.5684E-05],[94.655623,-5.4137E-05],[94.659064,-5.259E-05],[94.662505,-5.1043E-05],[94.665947,-5.1043E-05],[94.669388,-5.259E-05],[94.672829,-5.4652E-05],[94.676271,-4.8981E-05],[94.679712,-4.9497E-05],[94.683153,-5.5168E-05],[94.686595,-5.4137E-05],[94.690036,-5.0528E-05],[94.693477,-5.259E-05],[94.696919,-5.7746E-05],[94.70036,-5.1043E-05],[94.703801,-4.7434E-05],[94.707243,-5.3621E-05],[94.710684,-5.2074E-05],[94.714125,-4.795E-05],[94.717567,-4.7434E-05],[94.721008,-5.0528E-05],[94.724449,-5.1559E-05],[94.727891,-5.3621E-05],[94.731332,-5.4137E-05],[94.734773,-5.4652E-05],[94.738215,-5.1559E-05],[94.741656,-4.5887E-05],[94.745097,-5.4137E-05],[94.748539,-6.1871E-05],[94.75198,-5.7746E-05],[94.755421,-5.3106E-05],[94.758863,-5.4137E-05],[94.762304,-5.5684E-05],[94.765745,-5.2074E-05],[94.769187,-5.1043E-05],[94.772628,-5.5168E-05],[94.776069,-5.3106E-05],[94.779511,-4.9497E-05],[94.782952,-5.0528E-05],[94.786393,-4.9497E-05],[94.789835,-5.0012E-05],[94.793276,-5.0528E-05],[94.796717,-4.9497E-05],[94.800159,-4.8981E-05],[94.8036,-5.5168E-05],[94.807041,-5.6715E-05],[94.810483,-5.2074E-05],[94.813924,-5.5168E-05],[94.817365,-5.4652E-05],[94.820807,-5.259E-05],[94.824248,-5.5168E-05],[94.827689,-5.5168E-05],[94.831131,-5.4652E-05],[94.834572,-5.0528E-05],[94.838013,-4.795E-05],[94.841455,-4.9497E-05],[94.844896,-5.4137E-05],[94.848337,-5.6199E-05],[94.851779,-4.9497E-05],[94.85522,-4.6919E-05],[94.858661,-4.8981E-05],[94.862103,-5.1559E-05],[94.865544,-5.723E-05],[94.868985,-5.3621E-05],[94.872427,-5.3106E-05],[94.875868,-5.5684E-05],[94.879309,-5.0528E-05],[94.882751,-4.8981E-05]]}
-{"quant":[95.1885,-5.1903E-05],"mems":[[95.089231,-5.1559E-05],[95.092672,-5.3106E-05],[95.096113,-5.3106E-05],[95.099555,-5.4652E-05],[95.102996,-5.1559E-05],[95.106437,-5.5168E-05],[95.109879,-5.5168E-05],[95.11332,-5.4137E-05],[95.116761,-5.6199E-05],[95.120203,-5.2074E-05],[95.123644,-5.6199E-05],[95.127085,-5.5168E-05],[95.130527,-4.9497E-05],[95.133968,-5.1559E-05],[95.137409,-5.1559E-05],[95.140851,-5.0528E-05],[95.144292,-5.4137E-05],[95.147733,-5.1043E-05],[95.151175,-4.9497E-05],[95.154616,-5.3621E-05],[95.158057,-5.1043E-05],[95.161499,-5.2074E-05],[95.16494,-5.6199E-05],[95.168381,-5.4652E-05],[95.171823,-5.2074E-05],[95.175264,-5.259E-05],[95.178705,-5.259E-05],[95.182147,-5.4652E-05],[95.185588,-5.9293E-05],[95.189029,-5.259E-05],[95.192471,-5.2074E-05],[95.195912,-5.1043E-05],[95.199353,-4.9497E-05],[95.202795,-5.5168E-05],[95.206236,-5.0528E-05],[95.209677,-4.5887E-05],[95.213119,-5.1559E-05],[95.21656,-5.3106E-05],[95.220001,-5.5168E-05],[95.223443,-5.4137E-05],[95.226884,-4.8465E-05],[95.230325,-5.1559E-05],[95.233767,-5.4137E-05],[95.237208,-5.3621E-05],[95.240649,-5.4137E-05],[95.244091,-5.1559E-05],[95.247532,-4.8465E-05],[95.250973,-5.1559E-05],[95.254415,-5.0528E-05],[95.257856,-4.7434E-05],[95.261297,-5.1559E-05],[95.264739,-5.1043E-05],[95.26818,-5.259E-05],[95.271621,-5.723E-05],[95.275063,-5.4652E-05],[95.278504,-4.8981E-05],[95.281945,-5.0012E-05],[95.285387,-5.4652E-05],[95.288828,-5.4137E-05],[95.292269,-5.3106E-05],[95.295711,-4.8981E-05],[95.299152,-4.6919E-05],[95.302593,-5.0012E-05],[95.306035,-5.3106E-05],[95.309476,-5.4652E-05],[95.312917,-5.4137E-05],[95.316359,-5.3106E-05],[95.3198,-5.259E-05],[95.323241,-5.259E-05],[95.326683,-5.1043E-05],[95.330124,-5.4137E-05],[95.333565,-5.5168E-05],[95.337007,-4.8981E-05],[95.340448,-5.259E-05],[95.343889,-5.5168E-05],[95.347331,-5.3106E-05],[95.350772,-5.3106E-05],[95.354213,-5.3621E-05],[95.357655,-5.3106E-05],[95.361096,-5.1559E-05],[95.364537,-5.0528E-05],[95.367979,-5.0012E-05],[95.37142,-5.3106E-05],[95.374861,-5.1043E-05],[95.378303,-4.6403E-05],[95.381744,-5.0528E-05],[95.385185,-5.5684E-05],[95.388627,-5.5684E-05]]}
-{"quant":[95.6731,-0.27589],"mems":[[95.581341,-5.0012E-05],[95.584783,-5.2074E-05],[95.588224,-5.4137E-05],[95.591665,-5.2074E-05],[95.595107,-5.2074E-05],[95.598548,-5.2074E-05],[95.601989,-5.6199E-05],[95.605431,-5.8262E-05],[95.608872,-5.2074E-05],[95.612313,-5.6715E-05],[95.615755,-5.5168E-05],[95.619196,-4.8981E-05],[95.622637,-5.259E-05],[95.626079,-5.0528E-05],[95.62952,-5.3106E-05],[95.632961,-5.5168E-05],[95.636403,-5.2074E-05],[95.639844,-5.3621E-05],[95.643285,-5.5168E-05],[95.646727,-5.0528E-05],[95.650168,-4.8981E-05],[95.653609,-5.1559E-05],[95.657051,-5.1043E-05],[95.660492,-4.795E-05],[95.663933,-4.6403E-05],[95.667375,-5.3106E-05],[95.670816,-5.4137E-05],[95.674257,-5.259E-05],[95.677699,-5.259E-05],[95.68114,-4.9497E-05],[95.684581,-5.1043E-05],[95.688023,-5.3621E-05],[95.691464,-5.4652E-05],[95.694905,-5.5684E-05],[95.698347,-5.3106E-05],[95.701788,-4.8981E-05],[95.705229,-5.1559E-05],[95.708671,-5.3106E-05],[95.712112,-5.259E-05],[95.715553,-5.1043E-05],[95.718995,-4.8465E-05],[95.722436,-4.8465E-05],[95.725877,-4.7434E-05],[95.729319,-5.259E-05],[95.73276,-5.6199E-05],[95.736201,-5.0528E-05],[95.739643,-4.795E-05],[95.743084,-5.0012E-05],[95.746525,-5.259E-05],[95.749967,-5.0528E-05],[95.753408,-5.0528E-05],[95.756849,-5.1043E-05],[95.760291,-5.0012E-05],[95.763732,-5.3106E-05],[95.767173,-5.1043E-05],[95.770615,-5.4137E-05],[95.774056,-5.4652E-05],[95.777497,-4.6919E-05],[95.780939,-4.6919E-05],[95.78438,-4.7434E-05],[95.787821,-5.0012E-05],[95.791263,-5.1559E-05],[95.794704,-5.1559E-05],[95.798145,-4.8981E-05],[95.801587,-4.8465E-05],[95.805028,-5.3106E-05],[95.808469,-5.5684E-05],[95.811911,-5.3621E-05],[95.815352,-5.1043E-05],[95.818793,-5.6715E-05],[95.822235,-4.8981E-05],[95.825676,-4.8981E-05],[95.829117,-5.5168E-05],[95.832559,-5.259E-05],[95.836,-5.5684E-05],[95.839436,-5.1559E-05],[95.842872,-5.2074E-05],[95.846308,-5.0528E-05],[95.849744,-5.1043E-05],[95.85318,-5.4137E-05],[95.856616,-5.3106E-05],[95.860052,-5.1559E-05],[95.863488,-5.259E-05],[95.866924,-5.5684E-05],[95.87036,-5.259E-05],[95.873796,-5.3106E-05],[95.877232,-5.3106E-05]]}
-{"quant":[96.1497,-5.3845E-05],"mems":[[96.052468,-5.4652E-05],[96.055904,-4.9497E-05],[96.05934,-4.8981E-05],[96.062776,-5.6715E-05],[96.066212,-5.2074E-05],[96.069648,-5.1559E-05],[96.073084,-5.1559E-05],[96.07652,-4.6919E-05],[96.079956,-5.2074E-05],[96.083392,-5.3621E-05],[96.086828,-5.4652E-05],[96.090264,-5.1559E-05],[96.0937,-5.1559E-05],[96.097136,-5.5684E-05],[96.100572,-5.6199E-05],[96.104008,-5.6715E-05],[96.107444,-5.6715E-05],[96.11088,-5.5168E-05],[96.114316,-4.7434E-05],[96.117752,-5.0528E-05],[96.121188,-5.4652E-05],[96.124624,-4.9497E-05],[96.12806,-5.2074E-05],[96.131496,-5.4652E-05],[96.134932,-5.259E-05],[96.138368,-5.1043E-05],[96.141804,-5.0012E-05],[96.14524,-5.4652E-05],[96.148676,-5.6715E-05],[96.152112,-5.2074E-05],[96.155548,-5.3621E-05],[96.158984,-5.6715E-05],[96.16242,-5.6199E-05],[96.165856,-5.3621E-05],[96.169292,-5.1559E-05],[96.172728,-5.4137E-05],[96.176164,-5.5684E-05],[96.1796,-5.3621E-05],[96.183036,-5.4137E-05],[96.186472,-5.4137E-05],[96.189908,-5.5684E-05],[96.193344,-5.5684E-05],[96.19678,-5.2074E-05],[96.200216,-5.3621E-05],[96.203652,-5.4652E-05],[96.207088,-5.4137E-05],[96.210524,-5.6715E-05],[96.21396,-5.4137E-05],[96.217396,-4.9497E-05],[96.220832,-5.259E-05],[96.224268,-5.3621E-05],[96.227704,-5.2074E-05],[96.23114,-5.6715E-05],[96.234576,-5.5684E-05],[96.238012,-5.1043E-05],[96.241448,-5.259E-05],[96.244884,-5.5684E-05],[96.24832,-5.3621E-05],[96.251756,-5.0012E-05],[96.255192,-5.1043E-05],[96.258628,-5.5168E-05],[96.262064,-5.7746E-05],[96.2655,-5.6199E-05],[96.268936,-5.5684E-05],[96.272372,-5.9293E-05],[96.275808,-5.5684E-05],[96.279244,-4.9497E-05],[96.28268,-5.7746E-05],[96.286116,-5.723E-05],[96.289552,-4.9497E-05],[96.292988,-5.259E-05],[96.296424,-4.7434E-05],[96.29986,-5.0528E-05],[96.303296,-5.8262E-05],[96.306732,-5.6715E-05],[96.310168,-5.4652E-05],[96.313604,-4.9497E-05],[96.31704,-5.0528E-05],[96.320476,-5.4652E-05],[96.323912,-5.5168E-05],[96.327348,-5.259E-05],[96.330784,-5.1043E-05],[96.33422,-5.3106E-05],[96.337656,-5.5168E-05],[96.341092,-5.1043E-05],[96.344528,-5.1043E-05],[96.347964,-5.5684E-05],[96.3514,-5.0528E-05]]}
-{"quant":[96.8025,-5.247E-05],"mems":[[96.705308,-5.5684E-05],[96.708744,-5.4137E-05],[96.71218,-5.3106E-05],[96.715616,-4.9497E-05],[96.719052,-4.795E-05],[96.722488,-5.4137E-05],[96.725924,-5.4137E-05],[96.72936,-5.4652E-05],[96.732796,-5.6715E-05],[96.736232,-5.259E-05],[96.739668,-4.8981E-05],[96.743104,-5.0012E-05],[96.74654,-5.7746E-05],[96.749976,-5.4652E-05],[96.753412,-5.4137E-05],[96.756848,-5.4652E-05],[96.760284,-5.1559E-05],[96.76372,-5.6199E-05],[96.767156,-5.8262E-05],[96.770592,-5.2074E-05],[96.774028,-4.5887E-05],[96.777464,-5.1559E-05],[96.7809,-5.6715E-05],[96.784336,-5.2074E-05],[96.787772,-5.0012E-05],[96.791208,-5.4652E-05],[96.794644,-5.4652E-05],[96.79808,-5.0012E-05],[96.801516,-5.2074E-05],[96.804952,-5.5168E-05],[96.808388,-5.5684E-05],[96.811824,-5.1559E-05],[96.81526,-4.795E-05],[96.818696,-4.8981E-05],[96.822132,-5.1043E-05],[96.825568,-5.4652E-05],[96.829004,-5.1559E-05],[96.83244,-5.1043E-05],[96.835876,-5.6199E-05],[96.839312,-5.5168E-05],[96.842748,-5.3106E-05],[96.846184,-5.1559E-05],[96.84962,-5.0012E-05],[96.853056,-4.9497E-05],[96.856492,-5.0528E-05],[96.859928,-5.5168E-05],[96.863364,-5.0528E-05],[96.8668,-5.2074E-05],[96.870236,-5.259E-05],[96.873672,-4.795E-05],[96.877108,-5.2074E-05],[96.880544,-5.2074E-05],[96.88398,-5.1559E-05],[96.887416,-5.3621E-05],[96.890852,-5.7746E-05],[96.894288,-5.3621E-05],[96.897724,-5.1043E-05],[96.90116,-5.7746E-05],[96.904596,-5.259E-05],[96.908032,-5.4137E-05],[96.911468,-5.5168E-05],[96.914904,-5.1043E-05],[96.91834,-5.0528E-05],[96.921776,-5.0528E-05],[96.925212,-5.3621E-05],[96.928648,-5.2074E-05],[96.932084,-5.4652E-05],[96.93552,-5.7746E-05],[96.938956,-5.2074E-05],[96.942392,-5.1559E-05],[96.945828,-5.3621E-05],[96.949264,-5.5684E-05],[96.9527,-5.5684E-05],[96.956136,-5.2074E-05],[96.959572,-5.3621E-05],[96.963008,-5.6199E-05],[96.966444,-5.4652E-05],[96.96988,-5.5684E-05],[96.973316,-5.4652E-05],[96.976752,-5.1043E-05],[96.980188,-5.0012E-05],[96.983624,-5.3621E-05],[96.98706,-5.6199E-05],[96.990496,-5.3106E-05],[96.993932,-5.6199E-05],[96.997368,-5.259E-05],[97.000804,-4.7434E-05],[97.00424,-5.5684E-05]]}
-{"quant":[97.281,-5.3123E-05],"mems":[[97.182912,-5.6715E-05],[97.186348,-4.8981E-05],[97.189784,-5.6199E-05],[97.19322,-5.6715E-05],[97.196656,-5.1559E-05],[97.200092,-5.3621E-05],[97.203528,-5.8777E-05],[97.206964,-5.5168E-05],[97.2104,-5.1559E-05],[97.213836,-5.3621E-05],[97.217272,-5.0012E-05],[97.220708,-5.1043E-05],[97.224144,-5.4652E-05],[97.22758,-5.4137E-05],[97.231016,-5.3106E-05],[97.234452,-5.2074E-05],[97.237888,-5.259E-05],[97.241324,-5.3106E-05],[97.24476,-5.5684E-05],[97.248196,-5.4652E-05],[97.251632,-5.5168E-05],[97.255068,-5.3106E-05],[97.258504,-5.0528E-05],[97.26194,-5.1559E-05],[97.265376,-5.259E-05],[97.268812,-5.5168E-05],[97.272248,-5.0528E-05],[97.275684,-5.0012E-05],[97.27912,-5.2074E-05],[97.282556,-5.4652E-05],[97.285992,-5.6715E-05],[97.289428,-4.9497E-05],[97.292864,-5.0528E-05],[97.2963,-5.3621E-05],[97.299736,-5.8262E-05],[97.303172,-5.5684E-05],[97.306608,-5.1043E-05],[97.310044,-5.723E-05],[97.31348,-5.3106E-05],[97.316916,-5.3106E-05],[97.320352,-5.4137E-05],[97.323788,-4.9497E-05],[97.327224,-4.8465E-05],[97.33066,-5.3621E-05],[97.334096,-5.8262E-05],[97.337532,-4.795E-05],[97.340968,-4.8981E-05],[97.344404,-5.723E-05],[97.34784,-5.259E-05],[97.351276,-5.4652E-05],[97.354712,-5.4652E-05],[97.358148,-5.0012E-05],[97.361584,-5.4652E-05],[97.36502,-5.6715E-05],[97.368456,-5.1559E-05],[97.371892,-5.0528E-05],[97.375328,-5.1559E-05],[97.378764,-5.259E-05],[97.3822,-5.259E-05],[97.385636,-4.8465E-05],[97.389072,-5.1043E-05],[97.392508,-5.4137E-05],[97.395944,-5.259E-05],[97.39938,-5.3106E-05],[97.402816,-5.8262E-05],[97.406252,-5.9293E-05],[97.409688,-5.2074E-05],[97.413124,-5.2074E-05],[97.41656,-5.1559E-05],[97.419996,-4.7434E-05],[97.423432,-5.4137E-05],[97.426868,-5.9808E-05],[97.430304,-5.5684E-05],[97.43374,-5.2074E-05],[97.437176,-5.0012E-05],[97.440612,-5.4137E-05],[97.444048,-5.8777E-05],[97.447484,-5.5168E-05],[97.45092,-5.259E-05],[97.454356,-5.259E-05],[97.457792,-5.3106E-05],[97.461228,-5.5168E-05],[97.464664,-5.1043E-05],[97.4681,-5.1559E-05],[97.471536,-5.6715E-05],[97.474972,-5.0528E-05],[97.478408,-4.9497E-05],[97.481844,-5.4137E-05]]}
-{"quant":[97.782,-5.2418E-05],"mems":[[97.684568,-5.1043E-05],[97.688004,-5.259E-05],[97.69144,-5.3106E-05],[97.694876,-5.0012E-05],[97.698312,-5.6715E-05],[97.701748,-5.5684E-05],[97.705184,-4.9497E-05],[97.70862,-5.2074E-05],[97.712056,-5.2074E-05],[97.715492,-4.8465E-05],[97.718928,-5.1043E-05],[97.722364,-5.723E-05],[97.7258,-5.723E-05],[97.729236,-4.9497E-05],[97.732672,-4.9497E-05],[97.736108,-5.1559E-05],[97.739544,-5.0012E-05],[97.74298,-5.3106E-05],[97.746416,-5.6715E-05],[97.749852,-5.259E-05],[97.753288,-4.6403E-05],[97.756724,-5.2074E-05],[97.76016,-5.3621E-05],[97.763596,-5.1559E-05],[97.767032,-5.5684E-05],[97.770468,-5.1559E-05],[97.773904,-5.2074E-05],[97.77734,-5.4137E-05],[97.780776,-5.259E-05],[97.784212,-5.5168E-05],[97.787648,-5.1043E-05],[97.791084,-5.1559E-05],[97.79452,-5.3106E-05],[97.797956,-5.1559E-05],[97.801392,-5.0528E-05],[97.804828,-5.3106E-05],[97.808264,-5.5168E-05],[97.8117,-5.1559E-05],[97.815136,-5.1043E-05],[97.818572,-5.0528E-05],[97.822008,-5.3106E-05],[97.825444,-5.6199E-05],[97.82888,-5.259E-05],[97.832316,-4.8981E-05],[97.835752,-4.6919E-05],[97.839188,-4.8465E-05],[97.842624,-5.2074E-05],[97.84606,-5.4652E-05],[97.849496,-5.3106E-05],[97.852932,-5.2074E-05],[97.856368,-4.8981E-05],[97.859804,-5.259E-05],[97.86324,-5.5684E-05],[97.866676,-5.3621E-05],[97.870112,-5.4652E-05],[97.873548,-5.2074E-05],[97.876984,-5.0012E-05],[97.88042,-5.4137E-05],[97.883856,-5.8262E-05],[97.887292,-5.5684E-05],[97.890728,-5.7746E-05],[97.894164,-5.3621E-05],[97.8976,-4.9497E-05],[97.901036,-5.5684E-05],[97.904472,-5.6199E-05],[97.907908,-5.5168E-05],[97.911344,-5.0528E-05],[97.91478,-5.0012E-05],[97.918216,-4.795E-05],[97.921652,-4.7434E-05],[97.925088,-5.5684E-05],[97.928524,-5.723E-05],[97.93196,-5.4137E-05],[97.935396,-5.0528E-05],[97.938832,-5.4137E-05],[97.942268,-5.4137E-05],[97.945704,-5.0012E-05],[97.94914,-5.5168E-05],[97.952576,-5.5168E-05],[97.956012,-5.0012E-05],[97.959448,-4.9497E-05],[97.962884,-5.4137E-05],[97.96632,-5.723E-05],[97.969756,-5.1559E-05],[97.973192,-5.3621E-05],[97.976628,-5.2074E-05],[97.980064,-5.0012E-05],[97.9835,-5.5168E-05]]}
-{"quant":[98.2362,-1.7083],"mems":[[98.141556,-5.2074E-05],[98.144992,-5.5168E-05],[98.148428,-5.6199E-05],[98.151864,-5.0528E-05],[98.1553,-5.259E-05],[98.158736,-5.3621E-05],[98.162172,-5.723E-05],[98.165608,-5.5684E-05],[98.169044,-5.1559E-05],[98.17248,-5.2074E-05],[98.175916,-5.0528E-05],[98.179352,-5.4137E-05],[98.182788,-5.5684E-05],[98.186224,-5.5684E-05],[98.18966,-5.1043E-05],[98.193096,-4.9497E-05],[98.196532,-5.3106E-05],[98.199968,-5.1043E-05],[98.203404,-5.0528E-05],[98.20684,-4.8465E-05],[98.210276,-5.1043E-05],[98.213712,-5.723E-05],[98.217148,-5.5168E-05],[98.220584,-5.1043E-05],[98.22402,-5.2074E-05],[98.227456,-5.2074E-05],[98.230892,-5.259E-05],[98.234328,-5.5684E-05],[98.237764,-5.3106E-05],[98.2412,-5.3106E-05],[98.244636,-5.4137E-05],[98.248072,-5.3621E-05],[98.251508,-5.259E-05],[98.254944,-4.9497E-05],[98.25838,-4.795E-05],[98.261816,-5.1559E-05],[98.265252,-5.6715E-05],[98.268688,-5.5684E-05],[98.272124,-5.5168E-05],[98.27556,-5.2074E-05],[98.278996,-5.2074E-05],[98.282432,-5.8262E-05],[98.285868,-5.5168E-05],[98.289304,-5.3621E-05],[98.29274,-5.5684E-05],[98.296176,-5.3621E-05],[98.299612,-5.3621E-05],[98.303048,-5.6199E-05],[98.306484,-5.9808E-05],[98.30992,-5.5684E-05],[98.313356,-5.0528E-05],[98.316792,-5.2074E-05],[98.320228,-5.1043E-05],[98.323664,-5.0528E-05],[98.3271,-5.4137E-05],[98.330536,-5.4652E-05],[98.333972,-4.8981E-05],[98.337408,-4.9497E-05],[98.340844,-5.1559E-05],[98.34428,-5.0012E-05],[98.347716,-5.3621E-05],[98.351152,-5.259E-05],[98.354588,-4.9497E-05],[98.358024,-4.8465E-05],[98.36146,-5.1043E-05],[98.364896,-5.1043E-05],[98.368332,-5.0012E-05],[98.371768,-4.8981E-05],[98.375204,-4.8465E-05],[98.37864,-5.259E-05],[98.382076,-5.0012E-05],[98.385512,-5.1043E-05],[98.388948,-5.6199E-05],[98.392384,-5.0012E-05],[98.39582,-4.5887E-05],[98.399256,-5.259E-05],[98.402692,-5.4137E-05],[98.406128,-5.1559E-05],[98.409564,-5.259E-05],[98.413,-4.6919E-05],[98.416437,-5.0012E-05],[98.419875,-5.5168E-05],[98.423312,-5.1043E-05],[98.426749,-5.259E-05],[98.430187,-5.1559E-05],[98.433624,-4.795E-05],[98.437061,-4.8981E-05],[98.440499,-4.7434E-05]]}
-{"quant":[98.6814,-5.1903E-05],"mems":[[98.581429,-5.4652E-05],[98.584867,-5.259E-05],[98.588304,-5.0012E-05],[98.591741,-5.259E-05],[98.595179,-5.1559E-05],[98.598616,-5.0528E-05],[98.602053,-5.3621E-05],[98.605491,-5.1043E-05],[98.608928,-4.8465E-05],[98.612365,-4.9497E-05],[98.615803,-4.795E-05],[98.61924,-4.9497E-05],[98.622677,-5.0528E-05],[98.626115,-5.2074E-05],[98.629552,-4.795E-05],[98.632989,-4.3825E-05],[98.636427,-4.8981E-05],[98.639864,-5.0012E-05],[98.643301,-5.259E-05],[98.646739,-5.3621E-05],[98.650176,-5.0528E-05],[98.653613,-5.3621E-05],[98.657051,-5.1559E-05],[98.660488,-5.1043E-05],[98.663925,-4.8981E-05],[98.667363,-4.7434E-05],[98.6708,-5.1559E-05],[98.674237,-4.6403E-05],[98.677675,-4.8465E-05],[98.681112,-5.259E-05],[98.684549,-4.8981E-05],[98.687987,-5.1559E-05],[98.691424,-5.259E-05],[98.694861,-5.1043E-05],[98.698299,-5.1559E-05],[98.701736,-5.5168E-05],[98.705173,-5.7746E-05],[98.708611,-5.5684E-05],[98.712048,-5.0012E-05],[98.715485,-4.8981E-05],[98.718923,-5.259E-05],[98.72236,-5.259E-05],[98.725797,-5.4652E-05],[98.729235,-5.259E-05],[98.732672,-4.6919E-05],[98.736109,-4.6919E-05],[98.739547,-5.1559E-05],[98.742984,-5.259E-05],[98.746421,-4.8465E-05],[98.749859,-5.1043E-05],[98.753296,-5.3106E-05],[98.756733,-5.5684E-05],[98.760171,-5.5168E-05],[98.763608,-5.0528E-05],[98.767045,-5.3621E-05],[98.770483,-5.0528E-05],[98.77392,-4.8465E-05],[98.777357,-5.259E-05],[98.780795,-4.8981E-05],[98.784232,-5.5168E-05],[98.787669,-5.6715E-05],[98.791107,-5.3106E-05],[98.794544,-5.4652E-05],[98.797981,-5.1043E-05],[98.801419,-5.5168E-05],[98.804856,-5.5684E-05],[98.808293,-4.9497E-05],[98.811731,-5.1043E-05],[98.815168,-4.8981E-05],[98.818605,-5.2074E-05],[98.822043,-5.7746E-05],[98.82548,-5.5168E-05],[98.828917,-5.3106E-05],[98.832355,-5.1559E-05],[98.835792,-4.8465E-05],[98.839229,-5.259E-05],[98.842667,-5.2074E-05],[98.846104,-5.3621E-05],[98.849541,-5.9808E-05],[98.852979,-5.4652E-05],[98.856416,-5.0528E-05],[98.859853,-5.0528E-05],[98.863291,-4.8465E-05],[98.866728,-4.6919E-05],[98.870165,-5.1559E-05],[98.873603,-5.4137E-05],[98.87704,-4.8981E-05],[98.880477,-5.3621E-05],[98.883915,-5.8262E-05]]}
-{"quant":[99.3043,-5.2676E-05],"mems":[[99.207024,-5.5684E-05],[99.210461,-5.0528E-05],[99.213899,-5.1043E-05],[99.217336,-5.3621E-05],[99.220773,-5.3621E-05],[99.224211,-5.2074E-05],[99.227648,-5.0528E-05],[99.231085,-5.3106E-05],[99.234523,-5.3621E-05],[99.23796,-4.9497E-05],[99.241397,-5.0528E-05],[99.244835,-5.1559E-05],[99.248272,-4.7434E-05],[99.251709,-5.0528E-05],[99.255147,-5.1559E-05],[99.258584,-5.1559E-05],[99.262021,-5.4652E-05],[99.265459,-5.2074E-05],[99.268896,-5.6199E-05],[99.272333,-5.3106E-05],[99.275771,-5.0012E-05],[99.279208,-5.5168E-05],[99.282645,-5.259E-05],[99.286083,-5.5168E-05],[99.28952,-5.723E-05],[99.292957,-5.3106E-05],[99.296395,-5.2074E-05],[99.299832,-5.3621E-05],[99.303269,-5.3621E-05],[99.306707,-5.2074E-05],[99.310144,-5.3106E-05],[99.313581,-5.2074E-05],[99.317019,-5.3621E-05],[99.320456,-5.4652E-05],[99.323893,-5.3621E-05],[99.327331,-5.6199E-05],[99.330768,-5.259E-05],[99.334205,-4.7434E-05],[99.337643,-4.8981E-05],[99.34108,-5.3621E-05],[99.344517,-5.4137E-05],[99.347955,-5.259E-05],[99.351392,-5.0528E-05],[99.354829,-4.795E-05],[99.358267,-5.259E-05],[99.361704,-5.723E-05],[99.365141,-5.3621E-05],[99.368579,-5.0528E-05],[99.372016,-4.9497E-05],[99.375453,-5.0528E-05],[99.378891,-5.3106E-05],[99.382328,-5.259E-05],[99.385765,-5.2074E-05],[99.389203,-5.723E-05],[99.39264,-5.723E-05],[99.396077,-5.1559E-05],[99.399515,-4.795E-05],[99.402952,-5.4652E-05],[99.406389,-5.6715E-05],[99.409827,-5.3621E-05],[99.413264,-6.0324E-05],[99.416701,-5.7746E-05],[99.420139,-5.6199E-05],[99.423576,-5.8262E-05],[99.427013,-5.6715E-05],[99.430451,-5.723E-05],[99.433888,-5.5684E-05],[99.437325,-5.7746E-05],[99.440763,-5.8262E-05],[99.4442,-5.5684E-05],[99.447637,-5.1559E-05],[99.451075,-5.2074E-05],[99.454512,-5.3106E-05],[99.457949,-5.0528E-05],[99.461387,-5.259E-05],[99.464824,-4.9497E-05],[99.468261,-5.0528E-05],[99.471699,-5.0012E-05],[99.475136,-5.1043E-05],[99.478573,-5.7746E-05],[99.482011,-5.5168E-05],[99.485448,-5.4652E-05],[99.488885,-5.259E-05],[99.492323,-4.8465E-05],[99.49576,-5.259E-05],[99.499197,-5.5168E-05],[99.502635,-5.2074E-05],[99.506072,-5.6199E-05]]}
-{"quant":[99.7715,-5.1954E-05],"mems":[[99.674501,-5.3106E-05],[99.677939,-5.2074E-05],[99.681376,-5.1559E-05],[99.684813,-5.259E-05],[99.688251,-5.8777E-05],[99.691688,-5.5168E-05],[99.695125,-5.0012E-05],[99.698563,-5.259E-05],[99.702,-5.5168E-05],[99.705437,-5.2074E-05],[99.708875,-5.3621E-05],[99.712312,-5.4652E-05],[99.715749,-5.3106E-05],[99.719187,-5.9293E-05],[99.722624,-5.8777E-05],[99.726061,-5.6199E-05],[99.729499,-5.5168E-05],[99.732936,-5.5168E-05],[99.736373,-5.6199E-05],[99.739811,-5.2074E-05],[99.743248,-5.1043E-05],[99.746685,-5.4137E-05],[99.750123,-5.723E-05],[99.75356,-5.1559E-05],[99.756997,-4.9497E-05],[99.760435,-5.4652E-05],[99.763872,-5.4652E-05],[99.767309,-5.5168E-05],[99.770747,-5.259E-05],[99.774184,-4.6919E-05],[99.777621,-5.2074E-05],[99.781059,-5.5684E-05],[99.784496,-4.5887E-05],[99.787933,-5.0528E-05],[99.791371,-5.1559E-05],[99.794808,-5.0012E-05],[99.798245,-5.4137E-05],[99.801683,-4.7434E-05],[99.80512,-5.723E-05],[99.808557,-5.6715E-05],[99.811995,-4.6919E-05],[99.815432,-5.3106E-05],[99.818869,-5.1043E-05],[99.822307,-5.259E-05],[99.825744,-5.3106E-05],[99.829181,-5.0528E-05],[99.832619,-5.1559E-05],[99.836056,-5.3621E-05],[99.839493,-5.4137E-05],[99.842931,-5.2074E-05],[99.846368,-5.3621E-05],[99.849805,-4.9497E-05],[99.853243,-4.795E-05],[99.85668,-5.3621E-05],[99.860117,-5.3621E-05],[99.863555,-5.2074E-05],[99.866992,-5.4137E-05],[99.870429,-5.4652E-05],[99.873867,-5.259E-05],[99.877304,-5.0012E-05],[99.880741,-4.8465E-05],[99.884179,-4.8465E-05],[99.887616,-4.9497E-05],[99.891053,-4.9497E-05],[99.894491,-4.8981E-05],[99.897928,-5.1559E-05],[99.901365,-5.5684E-05],[99.904803,-5.259E-05],[99.90824,-4.8465E-05],[99.911677,-5.1559E-05],[99.915115,-5.8262E-05],[99.918552,-5.7746E-05],[99.921989,-5.1559E-05],[99.925427,-5.5168E-05],[99.928864,-5.2074E-05],[99.932301,-4.795E-05],[99.935739,-5.0012E-05],[99.939176,-5.0012E-05],[99.942613,-5.3106E-05],[99.946051,-5.4652E-05],[99.949488,-5.259E-05],[99.952925,-4.7434E-05],[99.956363,-5.3106E-05],[99.9598,-5.5168E-05],[99.963237,-5.2074E-05],[99.966675,-5.6199E-05],[99.970112,-5.3106E-05],[99.973549,-5.3621E-05]]}
-{"quant":[100.239,-5.4034E-05],"mems":[[100.14198,-5.2074E-05],[100.14542,-5.1559E-05],[100.14885,-5.0012E-05],[100.15229,-5.2074E-05],[100.15573,-4.795E-05],[100.15917,-5.5168E-05],[100.1626,-5.7746E-05],[100.16604,-5.4652E-05],[100.16948,-5.6715E-05],[100.17291,-5.723E-05],[100.17635,-5.6715E-05],[100.17979,-5.4652E-05],[100.18323,-5.2074E-05],[100.18666,-5.1043E-05],[100.1901,-5.2074E-05],[100.19354,-5.1043E-05],[100.19698,-5.0528E-05],[100.20041,-5.2074E-05],[100.20385,-5.3621E-05],[100.20729,-5.4652E-05],[100.21073,-5.2074E-05],[100.21416,-5.2074E-05],[100.2176,-5.2074E-05],[100.22104,-5.4652E-05],[100.22447,-5.7746E-05],[100.22791,-5.4137E-05],[100.23135,-5.259E-05],[100.23479,-5.0012E-05],[100.23822,-5.0012E-05],[100.24166,-5.3106E-05],[100.2451,-5.5168E-05],[100.24854,-5.2074E-05],[100.25197,-4.8981E-05],[100.25541,-5.4652E-05],[100.25885,-5.259E-05],[100.26229,-4.6919E-05],[100.26572,-5.1559E-05],[100.26916,-5.5684E-05],[100.2726,-5.5168E-05],[100.27603,-5.4137E-05],[100.27947,-5.8262E-05],[100.28291,-5.5684E-05],[100.28635,-5.3621E-05],[100.28978,-5.6199E-05],[100.29322,-5.723E-05],[100.29666,-5.723E-05],[100.3001,-5.259E-05],[100.30353,-5.3621E-05],[100.30697,-5.259E-05],[100.31041,-5.0528E-05],[100.31385,-5.1559E-05],[100.31728,-4.8981E-05],[100.32072,-5.3621E-05],[100.32416,-5.9808E-05],[100.32759,-5.9808E-05],[100.33103,-5.5168E-05],[100.33447,-5.4137E-05],[100.33791,-5.4137E-05],[100.34134,-5.6199E-05],[100.34478,-5.4652E-05],[100.34822,-5.3106E-05],[100.35166,-5.5168E-05],[100.35509,-4.8981E-05],[100.35853,-5.1043E-05],[100.36197,-5.4652E-05],[100.36541,-5.1559E-05],[100.36884,-5.4137E-05],[100.37228,-5.4137E-05],[100.37572,-5.2074E-05],[100.37915,-5.259E-05],[100.38259,-5.1559E-05],[100.38603,-5.1043E-05],[100.38947,-5.0528E-05],[100.3929,-4.9497E-05],[100.39634,-5.1559E-05],[100.39978,-5.4137E-05],[100.40322,-4.9497E-05],[100.40665,-4.7434E-05],[100.41009,-5.259E-05],[100.41353,-5.4652E-05],[100.41697,-5.4137E-05],[100.4204,-5.4137E-05],[100.42384,-5.5168E-05],[100.42728,-5.4137E-05],[100.43071,-5.1043E-05],[100.43415,-5.5684E-05],[100.43759,-5.4137E-05],[100.44103,-5.4137E-05]]}
-{"quant":[100.691,-5.2092E-05],"mems":[[100.59227,-5.0528E-05],[100.59571,-4.9497E-05],[100.59914,-5.3106E-05],[100.60258,-5.259E-05],[100.60602,-5.1559E-05],[100.60946,-4.8981E-05],[100.61289,-5.0012E-05],[100.61633,-5.2074E-05],[100.61977,-5.6715E-05],[100.62321,-5.6199E-05],[100.62664,-5.3106E-05],[100.63008,-5.3106E-05],[100.63352,-5.0012E-05],[100.63695,-5.4137E-05],[100.64039,-5.8262E-05],[100.64383,-5.4652E-05],[100.64727,-5.0012E-05],[100.6507,-4.8465E-05],[100.65414,-4.9497E-05],[100.65758,-5.1559E-05],[100.66102,-5.6715E-05],[100.66445,-5.259E-05],[100.66789,-5.1043E-05],[100.67133,-5.6715E-05],[100.67477,-5.3621E-05],[100.6782,-5.6199E-05],[100.68164,-5.5168E-05],[100.68508,-5.259E-05],[100.68851,-5.0012E-05],[100.69195,-4.7434E-05],[100.69539,-5.3621E-05],[100.69883,-5.4137E-05],[100.70226,-5.4652E-05],[100.7057,-5.5168E-05],[100.70914,-5.1043E-05],[100.71258,-5.0528E-05],[100.71601,-5.4137E-05],[100.71945,-5.5684E-05],[100.72289,-5.2074E-05],[100.72633,-5.2074E-05],[100.72976,-4.9497E-05],[100.7332,-4.7434E-05],[100.73664,-5.0012E-05],[100.74007,-5.2074E-05],[100.74351,-5.259E-05],[100.74695,-5.1043E-05],[100.75039,-5.0528E-05],[100.75382,-5.2074E-05],[100.75726,-5.259E-05],[100.7607,-4.9497E-05],[100.76414,-4.8981E-05],[100.76757,-5.3106E-05],[100.77101,-5.6715E-05],[100.77445,-5.0528E-05],[100.77789,-5.0528E-05],[100.78132,-5.5168E-05],[100.78476,-5.5168E-05],[100.7882,-5.5168E-05],[100.79163,-4.9497E-05],[100.79507,-5.3621E-05],[100.79851,-5.7746E-05],[100.80195,-5.4652E-05],[100.80538,-4.8465E-05],[100.80882,-4.3825E-05],[100.81226,-5.1559E-05],[100.8157,-5.2074E-05],[100.81913,-5.4137E-05],[100.82257,-5.3621E-05],[100.82601,-5.0012E-05],[100.82945,-5.3621E-05],[100.83288,-5.1559E-05],[100.83632,-5.3106E-05],[100.83976,-5.1559E-05],[100.84319,-5.0012E-05],[100.84663,-5.5684E-05],[100.85007,-5.2074E-05],[100.85351,-4.8981E-05],[100.85694,-5.1559E-05],[100.86038,-5.259E-05],[100.86382,-4.8465E-05],[100.86726,-4.795E-05],[100.87069,-5.1043E-05],[100.87413,-5.259E-05],[100.87757,-5.0528E-05],[100.88101,-5.1043E-05],[100.88444,-5.1559E-05],[100.88788,-4.8465E-05],[100.89132,-4.8465E-05]]}
-{"quant":[101.184,-5.3106E-05],"mems":[[101.08728,-4.9497E-05],[101.09072,-5.3621E-05],[101.09416,-5.9293E-05],[101.0976,-5.5684E-05],[101.10104,-5.4137E-05],[101.10448,-5.6199E-05],[101.10791,-5.2074E-05],[101.11135,-4.9497E-05],[101.11479,-5.0528E-05],[101.11823,-5.259E-05],[101.12167,-5.3621E-05],[101.12511,-5.3106E-05],[101.12855,-5.3621E-05],[101.13199,-5.3106E-05],[101.13542,-5.3106E-05],[101.13886,-5.6199E-05],[101.1423,-5.6715E-05],[101.14574,-5.0528E-05],[101.14918,-5.2074E-05],[101.15262,-5.3106E-05],[101.15606,-5.259E-05],[101.15949,-5.5684E-05],[101.16293,-4.8981E-05],[101.16637,-4.8465E-05],[101.16981,-5.1043E-05],[101.17325,-5.1043E-05],[101.17669,-5.259E-05],[101.18013,-5.2074E-05],[101.18357,-5.5684E-05],[101.187,-5.7746E-05],[101.19044,-5.259E-05],[101.19388,-5.1559E-05],[101.19732,-5.3621E-05],[101.20076,-5.2074E-05],[101.2042,-5.3106E-05],[101.20764,-5.3621E-05],[101.21107,-5.0012E-05],[101.21451,-5.5168E-05],[101.21795,-6.0324E-05],[101.22139,-5.5168E-05],[101.22483,-5.1043E-05],[101.22827,-5.1043E-05],[101.23171,-5.1559E-05],[101.23515,-5.2074E-05],[101.23858,-5.3621E-05],[101.24202,-5.259E-05],[101.24546,-5.2074E-05],[101.2489,-5.3621E-05],[101.25234,-5.0528E-05],[101.25578,-5.0012E-05],[101.25922,-5.5684E-05],[101.26265,-5.4652E-05],[101.26609,-4.8981E-05],[101.26953,-4.8981E-05],[101.27297,-5.1043E-05],[101.27641,-5.3106E-05],[101.27985,-5.8262E-05],[101.28329,-5.723E-05],[101.28673,-5.2074E-05],[101.29016,-5.7746E-05],[101.2936,-5.5168E-05],[101.29704,-5.1043E-05],[101.30048,-5.5168E-05],[101.30392,-5.5168E-05],[101.30736,-5.259E-05],[101.3108,-4.6403E-05],[101.31423,-4.9497E-05],[101.31767,-5.6199E-05],[101.32111,-5.3621E-05],[101.32455,-5.2074E-05],[101.32799,-5.0528E-05],[101.33143,-5.3106E-05],[101.33487,-5.3106E-05],[101.33831,-4.8465E-05],[101.34174,-5.2074E-05],[101.34518,-5.4652E-05],[101.34862,-5.1559E-05],[101.35206,-4.795E-05],[101.3555,-5.259E-05],[101.35894,-5.4137E-05],[101.36238,-5.2074E-05],[101.36581,-5.6199E-05],[101.36925,-4.9497E-05],[101.37269,-4.4856E-05],[101.37613,-5.3621E-05],[101.37957,-5.3621E-05],[101.38301,-4.8981E-05],[101.38645,-5.1043E-05]]}
-{"quant":[101.96,-5.3106E-05],"mems":[[101.86098,-5.8777E-05],[101.86442,-5.6199E-05],[101.86786,-5.2074E-05],[101.8713,-5.0528E-05],[101.87474,-5.5684E-05],[101.87818,-5.4137E-05],[101.88161,-5.2074E-05],[101.88505,-5.3621E-05],[101.88849,-5.2074E-05],[101.89193,-5.4137E-05],[101.89537,-5.259E-05],[101.89881,-5.1559E-05],[101.90225,-5.1559E-05],[101.90569,-5.0528E-05],[101.90912,-5.1559E-05],[101.91256,-5.0012E-05],[101.916,-5.5684E-05],[101.91944,-5.4652E-05],[101.92288,-5.259E-05],[101.92632,-5.6199E-05],[101.92976,-5.1043E-05],[101.93319,-4.9497E-05],[101.93663,-5.5168E-05],[101.94007,-5.3621E-05],[101.94351,-5.0012E-05],[101.94695,-5.3621E-05],[101.95039,-5.4137E-05],[101.95383,-4.8981E-05],[101.95727,-5.1043E-05],[101.9607,-5.2074E-05],[101.96414,-5.259E-05],[101.96758,-5.7746E-05],[101.97102,-5.6199E-05],[101.97446,-5.5684E-05],[101.9779,-5.3621E-05],[101.98134,-5.1559E-05],[101.98477,-5.6199E-05],[101.98821,-5.5168E-05],[101.99165,-5.4652E-05],[101.99509,-5.6199E-05],[101.99853,-5.6715E-05],[102.00197,-5.5168E-05],[102.00541,-5.0012E-05],[102.00885,-5.1559E-05],[102.01228,-4.9497E-05],[102.01572,-5.1043E-05],[102.01916,-5.259E-05],[102.0226,-4.7434E-05],[102.02604,-4.795E-05],[102.02948,-5.1043E-05],[102.03292,-5.259E-05],[102.03635,-5.2074E-05],[102.03979,-5.4137E-05],[102.04323,-5.4137E-05],[102.04667,-5.4137E-05],[102.05011,-5.259E-05],[102.05355,-5.0012E-05],[102.05699,-5.5168E-05],[102.06043,-5.3621E-05],[102.06386,-5.1043E-05],[102.0673,-5.0528E-05],[102.07074,-4.6919E-05],[102.07418,-5.1559E-05],[102.07762,-5.3106E-05],[102.08106,-5.0012E-05],[102.0845,-5.2074E-05],[102.08793,-5.4137E-05],[102.09137,-5.1043E-05],[102.09481,-5.259E-05],[102.09825,-5.4137E-05],[102.10169,-5.2074E-05],[102.10513,-5.4137E-05],[102.10857,-5.3106E-05],[102.11201,-5.0012E-05],[102.11544,-5.0012E-05],[102.11888,-5.5684E-05],[102.12232,-5.6199E-05],[102.12576,-4.7434E-05],[102.1292,-4.3825E-05],[102.13264,-4.5372E-05],[102.13608,-5.259E-05],[102.13951,-5.7746E-05],[102.14295,-5.3106E-05],[102.14639,-5.1043E-05],[102.14983,-4.8981E-05],[102.15327,-4.7434E-05],[102.15671,-5.3621E-05],[102.16015,-5.4137E-05]]}
-{"quant":[102.45,-5.2796E-05],"mems":[[102.35271,-5.1043E-05],[102.35615,-5.3106E-05],[102.35959,-5.5684E-05],[102.36303,-5.3106E-05],[102.36647,-5.3621E-05],[102.36991,-5.1559E-05],[102.37334,-5.2074E-05],[102.37678,-5.0528E-05],[102.38022,-5.4652E-05],[102.38366,-5.4652E-05],[102.3871,-4.8981E-05],[102.39054,-5.3106E-05],[102.39398,-5.1043E-05],[102.39741,-4.9497E-05],[102.40085,-5.1043E-05],[102.40429,-5.1559E-05],[102.40773,-5.259E-05],[102.41117,-4.5372E-05],[102.41461,-5.2074E-05],[102.41805,-6.1871E-05],[102.42149,-5.5168E-05],[102.42492,-5.4137E-05],[102.42836,-5.2074E-05],[102.4318,-4.8465E-05],[102.43524,-5.3106E-05],[102.43868,-5.3106E-05],[102.44212,-5.5168E-05],[102.44556,-5.4652E-05],[102.44899,-4.8465E-05],[102.45243,-5.2074E-05],[102.45587,-5.5684E-05],[102.45931,-5.0528E-05],[102.46275,-5.0012E-05],[102.46619,-5.259E-05],[102.46963,-5.2074E-05],[102.47307,-5.4652E-05],[102.4765,-5.1559E-05],[102.47994,-4.8465E-05],[102.48338,-5.2074E-05],[102.48682,-4.9497E-05],[102.49026,-5.4137E-05],[102.4937,-5.3621E-05],[102.49714,-4.795E-05],[102.50057,-5.259E-05],[102.50401,-5.6715E-05],[102.50745,-5.5684E-05],[102.51089,-5.3106E-05],[102.51433,-5.5168E-05],[102.51777,-5.5168E-05],[102.52121,-5.1043E-05],[102.52465,-5.1559E-05],[102.52808,-5.3621E-05],[102.53152,-5.1559E-05],[102.53496,-5.1559E-05],[102.5384,-5.4137E-05],[102.54184,-5.6199E-05],[102.54528,-5.4137E-05],[102.54872,-5.4137E-05],[102.55215,-5.259E-05],[102.55559,-4.8981E-05],[102.55903,-5.4652E-05],[102.56247,-5.2074E-05],[102.56591,-5.0012E-05],[102.56935,-5.3621E-05],[102.57279,-5.5684E-05],[102.57623,-5.6199E-05],[102.57966,-5.0528E-05],[102.5831,-5.1043E-05],[102.58654,-5.3621E-05],[102.58998,-4.8465E-05],[102.59342,-4.5887E-05],[102.59686,-5.1043E-05],[102.6003,-5.4137E-05],[102.60373,-5.259E-05],[102.60717,-5.3106E-05],[102.61061,-5.1043E-05],[102.61405,-5.0528E-05],[102.61749,-5.2074E-05],[102.62093,-5.3621E-05],[102.62437,-5.4137E-05],[102.62781,-5.259E-05],[102.63124,-5.3621E-05],[102.63468,-5.4137E-05],[102.63812,-5.4137E-05],[102.64156,-5.6199E-05],[102.645,-5.4652E-05],[102.64844,-5.4137E-05],[102.65188,-5.4652E-05]]}
-{"quant":[102.946,-5.2195E-05],"mems":[[102.84788,-5.2074E-05],[102.85132,-5.3106E-05],[102.85476,-5.6715E-05],[102.8582,-5.4137E-05],[102.86163,-5.259E-05],[102.86507,-5.5168E-05],[102.86851,-5.1559E-05],[102.87195,-5.3621E-05],[102.87539,-5.6199E-05],[102.87883,-5.4652E-05],[102.88227,-5.3106E-05],[102.88571,-5.3106E-05],[102.88914,-5.1559E-05],[102.89258,-5.1043E-05],[102.89602,-5.0012E-05],[102.89946,-5.2074E-05],[102.9029,-5.8777E-05],[102.90634,-5.5684E-05],[102.90978,-5.4137E-05],[102.91321,-5.5168E-05],[102.91665,-5.4137E-05],[102.92009,-5.2074E-05],[102.92353,-4.8981E-05],[102.92697,-5.0012E-05],[102.93041,-4.9497E-05],[102.93385,-5.259E-05],[102.93729,-5.5168E-05],[102.94072,-5.4652E-05],[102.94416,-5.1043E-05],[102.9476,-5.0528E-05],[102.95104,-5.4652E-05],[102.95448,-4.9497E-05],[102.95792,-5.5168E-05],[102.96136,-5.723E-05],[102.96479,-4.9497E-05],[102.96823,-4.8981E-05],[102.97167,-4.6403E-05],[102.97511,-5.3106E-05],[102.97855,-5.5168E-05],[102.98199,-5.4652E-05],[102.98543,-5.3621E-05],[102.98887,-4.6403E-05],[102.9923,-5.0012E-05],[102.99574,-5.1559E-05],[102.99918,-5.1043E-05],[103.00262,-5.2074E-05],[103.00606,-5.1559E-05],[103.0095,-5.259E-05],[103.01294,-5.0012E-05],[103.01637,-5.0528E-05],[103.01981,-5.5168E-05],[103.02325,-5.3106E-05],[103.02669,-4.8465E-05],[103.03013,-5.4137E-05],[103.03357,-5.5168E-05],[103.03701,-5.4137E-05],[103.04045,-5.723E-05],[103.04388,-5.3106E-05],[103.04732,-5.1043E-05],[103.05076,-5.259E-05],[103.0542,-5.1559E-05],[103.05764,-5.6715E-05],[103.06108,-5.7746E-05],[103.06452,-4.8981E-05],[103.06795,-5.0012E-05],[103.07139,-5.1043E-05],[103.07483,-5.3106E-05],[103.07827,-5.5684E-05],[103.08171,-5.1559E-05],[103.08515,-5.2074E-05],[103.08859,-5.259E-05],[103.09203,-5.5168E-05],[103.09546,-5.3621E-05],[103.0989,-5.3106E-05],[103.10234,-5.723E-05],[103.10578,-5.2074E-05],[103.10922,-4.9497E-05],[103.11266,-5.259E-05],[103.1161,-5.4137E-05],[103.11953,-5.259E-05],[103.12297,-5.1043E-05],[103.12641,-5.4137E-05],[103.12985,-4.9497E-05],[103.13329,-4.8981E-05],[103.13673,-5.4137E-05],[103.14017,-5.5684E-05],[103.14361,-5.723E-05],[103.14704,-5.259E-05]]}
-{"quant":[103.428,-0.78476],"mems":[[103.33617,-5.5168E-05],[103.33961,-5.6199E-05],[103.34305,-5.6199E-05],[103.34649,-5.2074E-05],[103.34993,-4.6919E-05],[103.35336,-4.8981E-05],[103.3568,-5.3621E-05],[103.36024,-5.1043E-05],[103.36368,-4.8465E-05],[103.36712,-4.8981E-05],[103.37056,-4.8465E-05],[103.374,-5.259E-05],[103.37743,-5.3621E-05],[103.38087,-5.1559E-05],[103.38431,-5.6715E-05],[103.38775,-5.0528E-05],[103.39119,-4.5887E-05],[103.39463,-5.6199E-05],[103.39807,-5.6199E-05],[103.40151,-5.4137E-05],[103.40494,-5.4137E-05],[103.40838,-5.3106E-05],[103.41182,-5.3106E-05],[103.41526,-5.4137E-05],[103.4187,-5.259E-05],[103.42214,-5.3106E-05],[103.42558,-5.5168E-05],[103.42901,-4.795E-05],[103.43245,-4.4856E-05],[103.43589,-4.795E-05],[103.43933,-5.259E-05],[103.44277,-5.3621E-05],[103.44621,-5.0012E-05],[103.44965,-5.0012E-05],[103.45309,-5.259E-05],[103.45652,-5.3621E-05],[103.45996,-5.4652E-05],[103.4634,-5.5168E-05],[103.46684,-5.5168E-05],[103.47028,-5.723E-05],[103.47372,-5.6715E-05],[103.47716,-5.3106E-05],[103.48059,-5.1043E-05],[103.48403,-5.6199E-05],[103.48747,-5.5168E-05],[103.49091,-5.2074E-05],[103.49435,-5.7746E-05],[103.49779,-5.259E-05],[103.50123,-4.7434E-05],[103.50467,-5.4137E-05],[103.5081,-5.3621E-05],[103.51154,-5.259E-05],[103.51498,-5.6199E-05],[103.51842,-5.3106E-05],[103.52186,-4.9497E-05],[103.5253,-5.2074E-05],[103.52874,-5.1559E-05],[103.53217,-5.4137E-05],[103.53561,-5.8777E-05],[103.53905,-5.723E-05],[103.54249,-5.6715E-05],[103.54593,-5.259E-05],[103.54937,-5.2074E-05],[103.55281,-5.259E-05],[103.55625,-5.1559E-05],[103.55968,-5.4137E-05],[103.56312,-5.1043E-05],[103.56656,-4.795E-05],[103.57,-5.1559E-05],[103.57343,-5.4652E-05],[103.57687,-5.4652E-05],[103.5803,-5.4137E-05],[103.58374,-5.8262E-05],[103.58717,-5.6199E-05],[103.59061,-5.1559E-05],[103.59404,-5.4652E-05],[103.59748,-5.5684E-05],[103.60091,-5.259E-05],[103.60435,-5.0012E-05],[103.60778,-5.0528E-05],[103.61122,-4.8465E-05],[103.61465,-4.8981E-05],[103.61809,-5.2074E-05],[103.62152,-5.3621E-05],[103.62495,-5.2074E-05],[103.62839,-5.1559E-05],[103.63182,-5.3621E-05],[103.63526,-5.0528E-05]]}
-{"quant":[103.937,-5.2487E-05],"mems":[[103.8379,-5.3106E-05],[103.84134,-5.7746E-05],[103.84477,-5.5168E-05],[103.84821,-5.2074E-05],[103.85164,-5.2074E-05],[103.85508,-5.0528E-05],[103.85851,-4.9497E-05],[103.86195,-5.2074E-05],[103.86538,-5.4137E-05],[103.86882,-4.8465E-05],[103.87225,-4.5887E-05],[103.87569,-4.9497E-05],[103.87912,-5.2074E-05],[103.88255,-5.259E-05],[103.88599,-4.9497E-05],[103.88942,-5.5684E-05],[103.89286,-5.5684E-05],[103.89629,-5.0528E-05],[103.89973,-5.259E-05],[103.90316,-5.3106E-05],[103.9066,-5.6199E-05],[103.91003,-5.259E-05],[103.91347,-5.0012E-05],[103.9169,-5.259E-05],[103.92034,-5.0528E-05],[103.92377,-5.0528E-05],[103.92721,-5.2074E-05],[103.93064,-5.1559E-05],[103.93407,-5.0012E-05],[103.93751,-5.5168E-05],[103.94094,-5.6715E-05],[103.94438,-5.723E-05],[103.94781,-5.5168E-05],[103.95125,-4.6919E-05],[103.95468,-5.1559E-05],[103.95812,-5.6199E-05],[103.96155,-5.6715E-05],[103.96499,-5.5684E-05],[103.96842,-5.0528E-05],[103.97186,-4.8465E-05],[103.97529,-4.6403E-05],[103.97873,-4.8981E-05],[103.98216,-5.4652E-05],[103.98559,-5.1559E-05],[103.98903,-5.0012E-05],[103.99246,-5.0528E-05],[103.9959,-5.2074E-05],[103.99933,-5.5168E-05],[104.00277,-5.259E-05],[104.0062,-5.0528E-05],[104.00964,-5.1559E-05],[104.01307,-5.0528E-05],[104.01651,-4.9497E-05],[104.01994,-5.0012E-05],[104.02338,-5.3621E-05],[104.02681,-5.4137E-05],[104.03025,-5.0528E-05],[104.03368,-5.5168E-05],[104.03711,-5.6715E-05],[104.04055,-5.259E-05],[104.04398,-5.3106E-05],[104.04742,-5.0528E-05],[104.05085,-4.7434E-05],[104.05429,-4.9497E-05],[104.05772,-5.3621E-05],[104.06116,-5.259E-05],[104.06459,-5.0528E-05],[104.06803,-5.1043E-05],[104.07146,-5.3106E-05],[104.0749,-5.0528E-05],[104.07833,-4.8981E-05],[104.08177,-5.3621E-05],[104.0852,-5.5684E-05],[104.08863,-5.5168E-05],[104.09207,-5.2074E-05],[104.0955,-5.0012E-05],[104.09894,-5.4137E-05],[104.10237,-5.6199E-05],[104.10581,-5.1043E-05],[104.10924,-5.1043E-05],[104.11268,-5.1559E-05],[104.11611,-5.2074E-05],[104.11955,-5.3621E-05],[104.12298,-5.1559E-05],[104.12642,-5.2074E-05],[104.12985,-5.1043E-05],[104.13329,-5.1559E-05],[104.13672,-5.4652E-05],[104.14015,-5.5168E-05]]}
-{"quant":[104.838,-5.1834E-05],"mems":[[104.74122,-5.3621E-05],[104.74466,-5.3621E-05],[104.74809,-5.259E-05],[104.75153,-4.9497E-05],[104.75496,-5.0012E-05],[104.75839,-4.7434E-05],[104.76183,-5.3621E-05],[104.76526,-5.5168E-05],[104.7687,-5.0528E-05],[104.77213,-5.4137E-05],[104.77557,-5.1559E-05],[104.779,-4.8465E-05],[104.78244,-5.1559E-05],[104.78587,-5.0528E-05],[104.78931,-5.259E-05],[104.79274,-5.3621E-05],[104.79618,-5.0528E-05],[104.79961,-4.8465E-05],[104.80305,-5.1043E-05],[104.80648,-4.9497E-05],[104.80991,-4.7434E-05],[104.81335,-5.0012E-05],[104.81678,-5.2074E-05],[104.82022,-5.3621E-05],[104.82365,-5.2074E-05],[104.82709,-5.3106E-05],[104.83052,-5.5168E-05],[104.83396,-5.0012E-05],[104.83739,-5.3106E-05],[104.84083,-5.4137E-05],[104.84426,-4.9497E-05],[104.8477,-5.2074E-05],[104.85113,-4.8465E-05],[104.85457,-5.1559E-05],[104.858,-5.2074E-05],[104.86143,-4.9497E-05],[104.86487,-5.1043E-05],[104.8683,-4.9497E-05],[104.87174,-5.5684E-05],[104.87517,-5.5168E-05],[104.87861,-5.4137E-05],[104.88204,-5.3621E-05],[104.88548,-5.1559E-05],[104.88891,-5.0528E-05],[104.89235,-5.2074E-05],[104.89578,-5.5684E-05],[104.89922,-5.259E-05],[104.90265,-5.3621E-05],[104.90609,-5.3106E-05],[104.90952,-4.6919E-05],[104.91295,-4.7434E-05],[104.91639,-5.259E-05],[104.91982,-5.6199E-05],[104.92326,-5.3106E-05],[104.92669,-4.6403E-05],[104.93013,-4.4341E-05],[104.93356,-5.259E-05],[104.937,-5.6715E-05],[104.94043,-5.3106E-05],[104.94387,-5.2074E-05],[104.9473,-4.8981E-05],[104.95074,-5.0012E-05],[104.95417,-5.5168E-05],[104.95761,-5.6715E-05],[104.96104,-5.3621E-05],[104.96447,-5.1043E-05],[104.96791,-4.7434E-05],[104.97134,-4.795E-05],[104.97478,-5.6199E-05],[104.97821,-5.8777E-05],[104.98165,-5.7746E-05],[104.98508,-5.4137E-05],[104.98852,-4.8981E-05],[104.99195,-5.259E-05],[104.99539,-5.4137E-05],[104.99882,-5.2074E-05],[105.00226,-5.1043E-05],[105.00569,-5.1043E-05],[105.00913,-5.5168E-05],[105.01256,-5.1559E-05],[105.01599,-4.9497E-05],[105.01943,-5.7746E-05],[105.02286,-5.3621E-05],[105.0263,-4.6919E-05],[105.02973,-4.9497E-05],[105.03317,-5.2074E-05],[105.0366,-5.4652E-05],[105.04004,-5.259E-05]]}
-{"quant":[105.322,-5.1593E-05],"mems":[[105.22207,-5.1559E-05],[105.22551,-5.1043E-05],[105.22894,-5.0528E-05],[105.23238,-5.1043E-05],[105.23581,-5.2074E-05],[105.23925,-5.259E-05],[105.24268,-5.3106E-05],[105.24612,-5.259E-05],[105.24955,-5.5168E-05],[105.25299,-5.723E-05],[105.25642,-5.4652E-05],[105.25986,-5.5168E-05],[105.26329,-5.6715E-05],[105.26673,-5.4137E-05],[105.27016,-5.259E-05],[105.27359,-5.1043E-05],[105.27703,-4.9497E-05],[105.28046,-5.0528E-05],[105.2839,-5.0528E-05],[105.28733,-5.1559E-05],[105.29077,-5.259E-05],[105.2942,-5.5684E-05],[105.29764,-5.8262E-05],[105.30107,-5.5168E-05],[105.30451,-5.4652E-05],[105.30794,-5.4137E-05],[105.31138,-5.8777E-05],[105.31481,-5.9808E-05],[105.31825,-5.6199E-05],[105.32168,-5.6199E-05],[105.32511,-4.795E-05],[105.32855,-4.7434E-05],[105.33198,-5.5684E-05],[105.33542,-5.3106E-05],[105.33885,-5.1043E-05],[105.34229,-5.3621E-05],[105.34572,-5.1559E-05],[105.34916,-5.3106E-05],[105.35259,-5.3106E-05],[105.35603,-5.3621E-05],[105.35946,-5.5168E-05],[105.3629,-5.0528E-05],[105.36633,-4.8981E-05],[105.36977,-5.2074E-05],[105.3732,-5.4137E-05],[105.37663,-5.4652E-05],[105.38007,-5.2074E-05],[105.3835,-4.8981E-05],[105.38694,-4.795E-05],[105.39037,-4.9497E-05],[105.39381,-5.5168E-05],[105.39724,-5.3621E-05],[105.40068,-5.0528E-05],[105.40411,-5.2074E-05],[105.40755,-5.1043E-05],[105.41098,-5.3621E-05],[105.41442,-5.4137E-05],[105.41785,-4.8465E-05],[105.42129,-4.6919E-05],[105.42472,-4.795E-05],[105.42815,-5.3106E-05],[105.43159,-5.6715E-05],[105.43502,-5.4137E-05],[105.43846,-5.4137E-05],[105.44189,-5.5684E-05],[105.44533,-5.4652E-05],[105.44876,-5.0012E-05],[105.4522,-5.1559E-05],[105.45563,-5.4652E-05],[105.45907,-5.4652E-05],[105.4625,-5.4137E-05],[105.46594,-5.0528E-05],[105.46937,-5.1559E-05],[105.47281,-5.3621E-05],[105.47624,-5.3106E-05],[105.47967,-5.723E-05],[105.48311,-5.4652E-05],[105.48654,-4.7434E-05],[105.48998,-5.3106E-05],[105.49341,-5.8777E-05],[105.49685,-5.3621E-05],[105.50028,-5.0012E-05],[105.50372,-4.8981E-05],[105.50715,-4.6403E-05],[105.51059,-5.259E-05],[105.51402,-5.9808E-05],[105.51746,-5.723E-05],[105.52089,-5.5684E-05],[105.52433,-5.6715E-05]]}
-{"quant":[105.831,-5.2934E-05],"mems":[[105.73384,-5.5684E-05],[105.73727,-5.259E-05],[105.74071,-5.0528E-05],[105.74414,-4.9497E-05],[105.74758,-4.9497E-05],[105.75101,-5.1043E-05],[105.75445,-4.795E-05],[105.75788,-5.0012E-05],[105.76132,-5.0528E-05],[105.76475,-4.6919E-05],[105.76819,-4.9497E-05],[105.77162,-5.2074E-05],[105.77506,-5.3621E-05],[105.77849,-5.4137E-05],[105.78193,-5.1043E-05],[105.78536,-5.1043E-05],[105.78879,-5.3621E-05],[105.79223,-5.5684E-05],[105.79566,-5.3106E-05],[105.7991,-5.4137E-05],[105.80253,-5.3106E-05],[105.80597,-5.0528E-05],[105.8094,-5.3621E-05],[105.81284,-5.4652E-05],[105.81627,-5.4137E-05],[105.81971,-5.0528E-05],[105.82314,-5.0012E-05],[105.82658,-4.8465E-05],[105.83001,-4.7434E-05],[105.83345,-5.3621E-05],[105.83688,-5.4652E-05],[105.84031,-5.259E-05],[105.84375,-5.1559E-05],[105.84718,-5.3106E-05],[105.85062,-5.5168E-05],[105.85405,-5.7746E-05],[105.85749,-5.6715E-05],[105.86092,-5.259E-05],[105.86436,-5.1043E-05],[105.86779,-4.6919E-05],[105.87123,-5.0528E-05],[105.87466,-5.8777E-05],[105.8781,-5.8262E-05],[105.88153,-5.0528E-05],[105.88497,-4.4856E-05],[105.8884,-5.3106E-05],[105.89183,-5.5684E-05],[105.89527,-5.1559E-05],[105.8987,-5.3106E-05],[105.90214,-5.259E-05],[105.90557,-5.2074E-05],[105.90901,-5.5168E-05],[105.91244,-5.2074E-05],[105.91588,-5.1043E-05],[105.91931,-5.259E-05],[105.92275,-5.2074E-05],[105.92618,-5.4137E-05],[105.92962,-5.1043E-05],[105.93305,-5.3106E-05],[105.93649,-5.5168E-05],[105.93992,-5.4652E-05],[105.94335,-5.3621E-05],[105.94679,-5.259E-05],[105.95022,-5.6199E-05],[105.95366,-5.4652E-05],[105.95709,-5.8262E-05],[105.96053,-5.6715E-05],[105.96396,-5.0528E-05],[105.9674,-5.5168E-05],[105.97083,-5.5168E-05],[105.97427,-5.3106E-05],[105.9777,-5.4652E-05],[105.98114,-5.4652E-05],[105.98457,-5.2074E-05],[105.98801,-5.1043E-05],[105.99144,-5.1559E-05],[105.99487,-5.0528E-05],[105.99831,-5.3106E-05],[106.00174,-5.6715E-05],[106.00518,-5.3106E-05],[106.00861,-5.0528E-05],[106.01205,-5.3106E-05],[106.01548,-5.5168E-05],[106.01892,-5.4652E-05],[106.02235,-5.0528E-05],[106.02579,-5.1043E-05],[106.02922,-5.3621E-05],[106.03266,-5.0528E-05]]}
-{"quant":[106.36,-5.1903E-05],"mems":[[106.26287,-5.9293E-05],[106.26631,-5.4652E-05],[106.26974,-5.4652E-05],[106.27318,-5.5684E-05],[106.27662,-4.8465E-05],[106.28006,-5.259E-05],[106.28349,-5.4137E-05],[106.28693,-4.5887E-05],[106.29037,-4.9497E-05],[106.29381,-4.8981E-05],[106.29724,-4.9497E-05],[106.30068,-5.3106E-05],[106.30412,-5.0012E-05],[106.30755,-5.0012E-05],[106.31099,-5.0012E-05],[106.31443,-5.259E-05],[106.31787,-5.259E-05],[106.3213,-5.4137E-05],[106.32474,-5.3621E-05],[106.32818,-5.3106E-05],[106.33162,-5.3621E-05],[106.33505,-5.2074E-05],[106.33849,-5.5684E-05],[106.34193,-5.259E-05],[106.34537,-5.259E-05],[106.3488,-5.5684E-05],[106.35224,-5.259E-05],[106.35568,-5.4137E-05],[106.35911,-5.259E-05],[106.36255,-5.3621E-05],[106.36599,-5.3106E-05],[106.36943,-5.2074E-05],[106.37286,-5.8777E-05],[106.3763,-5.5168E-05],[106.37974,-5.2074E-05],[106.38318,-5.3621E-05],[106.38661,-5.0012E-05],[106.39005,-5.0012E-05],[106.39349,-5.0012E-05],[106.39693,-5.2074E-05],[106.40036,-5.259E-05],[106.4038,-4.795E-05],[106.40724,-5.0528E-05],[106.41067,-5.3106E-05],[106.41411,-5.4137E-05],[106.41755,-5.3106E-05],[106.42099,-4.5887E-05],[106.42442,-5.1043E-05],[106.42786,-5.1043E-05],[106.4313,-4.8981E-05],[106.43474,-5.6199E-05],[106.43817,-5.1043E-05],[106.44161,-5.0012E-05],[106.44505,-5.0528E-05],[106.44849,-4.6919E-05],[106.45192,-5.1559E-05],[106.45536,-5.3621E-05],[106.4588,-5.4652E-05],[106.46223,-5.3621E-05],[106.46567,-5.259E-05],[106.46911,-5.3106E-05],[106.47255,-5.5684E-05],[106.47598,-5.5168E-05],[106.47942,-5.5684E-05],[106.48286,-5.3621E-05],[106.4863,-4.9497E-05],[106.48973,-5.723E-05],[106.49317,-5.5168E-05],[106.49661,-5.259E-05],[106.50005,-5.3621E-05],[106.50348,-5.4137E-05],[106.50692,-5.6715E-05],[106.51036,-5.1043E-05],[106.51379,-5.5168E-05],[106.51723,-5.4652E-05],[106.52067,-5.0012E-05],[106.52411,-5.6199E-05],[106.52754,-5.4652E-05],[106.53098,-5.1043E-05],[106.53442,-5.0528E-05],[106.53786,-4.9497E-05],[106.54129,-5.0528E-05],[106.54473,-5.2074E-05],[106.54817,-5.4652E-05],[106.55161,-5.3621E-05],[106.55504,-5.3621E-05],[106.55848,-5.5684E-05],[106.56192,-5.1043E-05]]}
-{"quant":[107.203,-5.2074E-05],"mems":[[107.10502,-5.0012E-05],[107.10845,-5.1559E-05],[107.11189,-5.1559E-05],[107.11533,-5.2074E-05],[107.11877,-5.5168E-05],[107.1222,-5.4652E-05],[107.12564,-5.1043E-05],[107.12908,-4.8981E-05],[107.13251,-4.5887E-05],[107.13595,-4.795E-05],[107.13939,-5.259E-05],[107.14283,-5.0012E-05],[107.14626,-5.0012E-05],[107.1497,-5.5168E-05],[107.15314,-5.6715E-05],[107.15658,-5.4652E-05],[107.16001,-5.6199E-05],[107.16345,-5.3621E-05],[107.16689,-5.1043E-05],[107.17033,-5.6199E-05],[107.17376,-5.259E-05],[107.1772,-4.6919E-05],[107.18064,-5.259E-05],[107.18407,-5.3621E-05],[107.18751,-5.0528E-05],[107.19095,-5.4652E-05],[107.19439,-5.4137E-05],[107.19782,-5.1559E-05],[107.20126,-5.0012E-05],[107.2047,-4.795E-05],[107.20814,-5.3621E-05],[107.21157,-5.0012E-05],[107.21501,-4.7434E-05],[107.21845,-5.1559E-05],[107.22189,-4.5887E-05],[107.22532,-5.0528E-05],[107.22876,-5.3106E-05],[107.2322,-5.3106E-05],[107.23563,-5.4137E-05],[107.23907,-4.8981E-05],[107.24251,-5.5168E-05],[107.24595,-5.4652E-05],[107.24938,-5.4652E-05],[107.25282,-5.723E-05],[107.25626,-5.4652E-05],[107.2597,-5.8777E-05],[107.26313,-5.3621E-05],[107.26657,-4.9497E-05],[107.27001,-5.0528E-05],[107.27345,-5.0012E-05],[107.27688,-5.3621E-05],[107.28032,-5.0528E-05],[107.28376,-4.9497E-05],[107.28719,-5.4137E-05],[107.29063,-5.1559E-05],[107.29407,-5.259E-05],[107.29751,-5.5168E-05],[107.30094,-4.9497E-05],[107.30438,-5.0528E-05],[107.30782,-5.6715E-05],[107.31126,-5.6715E-05],[107.31469,-5.723E-05],[107.31813,-5.5684E-05],[107.32157,-5.1559E-05],[107.32501,-4.9497E-05],[107.32844,-5.1559E-05],[107.33188,-5.5168E-05],[107.33532,-5.3621E-05],[107.33875,-5.4137E-05],[107.34219,-5.5168E-05],[107.34563,-5.259E-05],[107.34907,-5.3621E-05],[107.3525,-5.6715E-05],[107.35594,-5.5168E-05],[107.35938,-5.3106E-05],[107.36282,-5.0528E-05],[107.36625,-4.8981E-05],[107.36969,-5.1559E-05],[107.37313,-5.4137E-05],[107.37657,-5.3621E-05],[107.38,-5.2074E-05],[107.38344,-5.0012E-05],[107.38688,-5.2074E-05],[107.39031,-5.3621E-05],[107.39375,-4.9497E-05],[107.39719,-5.5168E-05],[107.40063,-5.6715E-05],[107.40406,-5.0528E-05]]}
-{"quant":[107.74,-5.1576E-05],"mems":[[107.64124,-5.3106E-05],[107.64468,-5.1559E-05],[107.64811,-5.259E-05],[107.65155,-5.0528E-05],[107.65499,-5.259E-05],[107.65843,-5.5168E-05],[107.66186,-5.1559E-05],[107.6653,-4.7434E-05],[107.66874,-4.9497E-05],[107.67218,-5.4137E-05],[107.67561,-5.4137E-05],[107.67905,-5.3621E-05],[107.68249,-5.1043E-05],[107.68593,-5.2074E-05],[107.68936,-5.3621E-05],[107.6928,-5.0012E-05],[107.69624,-5.0012E-05],[107.69967,-5.0528E-05],[107.70311,-4.6403E-05],[107.70655,-4.7434E-05],[107.70999,-5.4652E-05],[107.71342,-5.3106E-05],[107.71686,-5.723E-05],[107.7203,-5.6199E-05],[107.72374,-4.795E-05],[107.72717,-5.2074E-05],[107.73061,-5.1559E-05],[107.73405,-4.8981E-05],[107.73749,-5.0528E-05],[107.74092,-5.4137E-05],[107.74436,-5.6199E-05],[107.7478,-5.4137E-05],[107.75123,-5.3621E-05],[107.75467,-5.5168E-05],[107.75811,-5.1559E-05],[107.76155,-4.8981E-05],[107.76498,-5.1559E-05],[107.76842,-4.9497E-05],[107.77186,-5.259E-05],[107.7753,-5.5168E-05],[107.77873,-5.2074E-05],[107.78217,-5.4652E-05],[107.78561,-5.2074E-05],[107.78905,-5.0528E-05],[107.79248,-5.0012E-05],[107.79592,-5.1559E-05],[107.79936,-5.4137E-05],[107.80279,-4.9497E-05],[107.80623,-5.3106E-05],[107.80967,-5.3106E-05],[107.81311,-5.0012E-05],[107.81654,-5.3621E-05],[107.81998,-4.8465E-05],[107.82342,-4.0216E-05],[107.82686,-4.0732E-05],[107.83029,-5.1559E-05],[107.83373,-5.5684E-05],[107.83717,-5.2074E-05],[107.84061,-5.1559E-05],[107.84404,-5.259E-05],[107.84748,-5.259E-05],[107.85092,-5.6199E-05],[107.85435,-5.723E-05],[107.85779,-5.5168E-05],[107.86123,-5.4652E-05],[107.86467,-5.4137E-05],[107.8681,-5.3106E-05],[107.87154,-5.259E-05],[107.87498,-5.259E-05],[107.87842,-5.0012E-05],[107.88185,-5.0012E-05],[107.88529,-5.1559E-05],[107.88873,-5.1559E-05],[107.89217,-5.2074E-05],[107.8956,-5.0528E-05],[107.89904,-4.795E-05],[107.90248,-5.1043E-05],[107.90591,-5.6199E-05],[107.90935,-5.4652E-05],[107.91279,-5.4137E-05],[107.91623,-5.3621E-05],[107.91966,-5.259E-05],[107.9231,-5.1043E-05],[107.92654,-5.1559E-05],[107.92998,-5.2074E-05],[107.93341,-5.259E-05],[107.93685,-5.5684E-05],[107.94029,-5.259E-05]]}
-{"quant":[108.291,-5.2985E-05],"mems":[[108.19121,-5.6715E-05],[108.19465,-5.4652E-05],[108.19809,-5.1559E-05],[108.20153,-5.1559E-05],[108.20496,-5.1043E-05],[108.2084,-5.6199E-05],[108.21184,-5.4652E-05],[108.21527,-5.3621E-05],[108.21871,-5.4137E-05],[108.22215,-5.1559E-05],[108.22559,-4.8465E-05],[108.22902,-4.7434E-05],[108.23246,-5.0012E-05],[108.2359,-5.0528E-05],[108.23934,-5.1559E-05],[108.24277,-5.1043E-05],[108.24621,-5.3106E-05],[108.24965,-5.259E-05],[108.25309,-5.0012E-05],[108.25652,-5.4137E-05],[108.25996,-5.4137E-05],[108.2634,-5.4652E-05],[108.26683,-5.5168E-05],[108.27027,-5.4652E-05],[108.27371,-5.4652E-05],[108.27715,-5.0012E-05],[108.28058,-5.259E-05],[108.28402,-5.4137E-05],[108.28746,-5.1043E-05],[108.2909,-5.1043E-05],[108.29433,-5.3106E-05],[108.29777,-5.1043E-05],[108.30121,-4.8981E-05],[108.30465,-5.3621E-05],[108.30808,-5.5168E-05],[108.31152,-5.723E-05],[108.31496,-5.5684E-05],[108.31839,-5.1559E-05],[108.32183,-5.0012E-05],[108.32527,-4.6919E-05],[108.32871,-4.9497E-05],[108.33214,-5.1559E-05],[108.33558,-5.3621E-05],[108.33902,-5.723E-05],[108.34246,-5.0012E-05],[108.34589,-5.1043E-05],[108.34933,-5.4137E-05],[108.35277,-5.4137E-05],[108.35621,-5.8777E-05],[108.35964,-5.6715E-05],[108.36308,-5.1559E-05],[108.36652,-5.0528E-05],[108.36995,-5.4652E-05],[108.37339,-5.6199E-05],[108.37683,-5.3621E-05],[108.38027,-5.1559E-05],[108.3837,-5.2074E-05],[108.38714,-5.3106E-05],[108.39058,-5.3621E-05],[108.39402,-5.259E-05],[108.39745,-4.9497E-05],[108.40089,-5.1559E-05],[108.40433,-4.9497E-05],[108.40777,-5.1043E-05],[108.4112,-5.4652E-05],[108.41464,-5.0012E-05],[108.41808,-5.0012E-05],[108.42151,-5.0528E-05],[108.42495,-4.7434E-05],[108.42839,-5.259E-05],[108.43183,-5.6199E-05],[108.43526,-4.8981E-05],[108.4387,-4.795E-05],[108.44214,-5.3621E-05],[108.44558,-5.723E-05],[108.44901,-5.5684E-05],[108.45245,-5.0012E-05],[108.45589,-5.0528E-05],[108.45933,-5.1559E-05],[108.46276,-5.3106E-05],[108.4662,-5.3621E-05],[108.46964,-5.1043E-05],[108.47307,-5.4652E-05],[108.47651,-5.259E-05],[108.47995,-5.1559E-05],[108.48339,-5.0012E-05],[108.48682,-4.9497E-05],[108.49026,-5.8262E-05],[108.4937,-5.723E-05]]}
-{"quant":[108.82,-1.8481],"mems":[[108.72056,-5.3106E-05],[108.724,-4.8981E-05],[108.72749,-5.5168E-05],[108.73098,-5.723E-05],[108.73447,-5.0528E-05],[108.73796,-5.259E-05],[108.74145,-5.4137E-05],[108.74494,-5.5684E-05],[108.74843,-5.5168E-05],[108.75191,-5.4137E-05],[108.7554,-5.2074E-05],[108.75889,-5.259E-05],[108.76238,-5.0012E-05],[108.76587,-4.8981E-05],[108.76936,-5.3106E-05],[108.77285,-5.0528E-05],[108.77634,-4.8981E-05],[108.77983,-4.7434E-05],[108.78332,-4.5887E-05],[108.78681,-4.795E-05],[108.7903,-5.4137E-05],[108.79379,-5.9293E-05],[108.79728,-5.6199E-05],[108.80077,-4.8465E-05],[108.80425,-4.5887E-05],[108.80774,-5.4137E-05],[108.81123,-5.8262E-05],[108.81472,-5.259E-05],[108.81821,-4.8981E-05],[108.8217,-5.0528E-05],[108.82519,-5.6199E-05],[108.82868,-5.259E-05],[108.83217,-5.1043E-05],[108.83566,-5.6715E-05],[108.83915,-5.4652E-05],[108.84264,-5.0012E-05],[108.84613,-5.0528E-05],[108.84962,-5.4652E-05],[108.85311,-5.1559E-05],[108.85659,-5.3106E-05],[108.86008,-5.6715E-05],[108.86357,-5.1559E-05],[108.86706,-5.2074E-05],[108.87055,-5.4652E-05],[108.87404,-5.4652E-05],[108.87753,-5.3106E-05],[108.88102,-5.5168E-05],[108.88451,-5.259E-05],[108.888,-4.6919E-05],[108.89149,-4.8981E-05],[108.89498,-5.0012E-05],[108.89847,-5.3106E-05],[108.90196,-5.1559E-05],[108.90545,-4.5887E-05],[108.90893,-5.0012E-05],[108.91242,-5.4137E-05],[108.91591,-5.6199E-05],[108.9194,-5.4652E-05],[108.92289,-5.1559E-05],[108.92638,-4.8981E-05],[108.92987,-4.795E-05],[108.93336,-5.0012E-05],[108.93685,-5.4652E-05],[108.94034,-5.3621E-05],[108.94383,-5.2074E-05],[108.94732,-5.4652E-05],[108.95081,-4.6919E-05],[108.9543,-4.7434E-05],[108.95779,-5.259E-05],[108.96127,-4.8981E-05],[108.96476,-5.1559E-05],[108.96825,-4.9497E-05],[108.97174,-4.795E-05],[108.97523,-5.4652E-05],[108.97872,-5.4652E-05],[108.98221,-5.1043E-05],[108.9857,-5.0528E-05],[108.98919,-5.3621E-05],[108.99268,-5.6199E-05],[108.99617,-5.4137E-05],[108.99966,-5.4137E-05],[109.00315,-4.8465E-05],[109.00664,-4.5887E-05],[109.01013,-5.0528E-05],[109.01361,-5.3106E-05],[109.0171,-5.2074E-05],[109.02059,-4.9497E-05]]}
-{"quant":[109.322,-5.3398E-05],"mems":[[109.22297,-5.2074E-05],[109.22646,-5.5684E-05],[109.22995,-5.4652E-05],[109.23344,-5.1559E-05],[109.23693,-5.1559E-05],[109.24042,-5.4652E-05],[109.24391,-5.4137E-05],[109.2474,-5.5684E-05],[109.25089,-5.4652E-05],[109.25438,-5.4652E-05],[109.25787,-5.3106E-05],[109.26136,-5.2074E-05],[109.26485,-5.3106E-05],[109.26834,-4.8981E-05],[109.27183,-5.1559E-05],[109.27531,-5.8262E-05],[109.2788,-5.5684E-05],[109.28229,-4.9497E-05],[109.28578,-5.1559E-05],[109.28927,-5.4652E-05],[109.29276,-5.259E-05],[109.29625,-5.6715E-05],[109.29974,-5.5168E-05],[109.30323,-5.4137E-05],[109.30672,-5.5168E-05],[109.31021,-5.0012E-05],[109.3137,-5.259E-05],[109.31719,-4.9497E-05],[109.32068,-5.0012E-05],[109.32417,-5.7746E-05],[109.32765,-5.2074E-05],[109.33114,-5.2074E-05],[109.33463,-5.4652E-05],[109.33812,-5.4137E-05],[109.34161,-5.5168E-05],[109.3451,-5.0012E-05],[109.34859,-5.5684E-05],[109.35208,-5.6199E-05],[109.35557,-5.1043E-05],[109.35906,-5.5168E-05],[109.36255,-5.1559E-05],[109.36604,-5.2074E-05],[109.36953,-5.1043E-05],[109.37302,-5.1043E-05],[109.37651,-5.9808E-05],[109.37999,-5.7746E-05],[109.38348,-5.5168E-05],[109.38697,-5.3621E-05],[109.39046,-5.2074E-05],[109.39395,-5.259E-05],[109.39744,-5.1043E-05],[109.40093,-5.2074E-05],[109.40442,-5.3621E-05],[109.40791,-4.9497E-05],[109.4114,-4.4341E-05],[109.41489,-5.1043E-05],[109.41838,-5.723E-05],[109.42187,-5.6199E-05],[109.42536,-5.6199E-05],[109.42885,-5.0012E-05],[109.43233,-4.795E-05],[109.43582,-5.5168E-05],[109.43931,-5.2074E-05],[109.4428,-4.4341E-05],[109.44629,-5.0528E-05],[109.44978,-5.4652E-05],[109.45327,-5.1559E-05],[109.45676,-5.4137E-05],[109.46025,-5.3106E-05],[109.46374,-5.5168E-05],[109.46723,-5.1559E-05],[109.47072,-4.8465E-05],[109.47421,-5.3621E-05],[109.4777,-5.3621E-05],[109.48119,-5.5168E-05],[109.48467,-5.259E-05],[109.48816,-4.4341E-05],[109.49165,-4.6919E-05],[109.49514,-5.3106E-05],[109.49863,-5.4137E-05],[109.50212,-5.259E-05],[109.50561,-4.9497E-05],[109.5091,-4.9497E-05],[109.51259,-5.4137E-05],[109.51608,-5.2074E-05],[109.51957,-4.8465E-05],[109.52306,-5.4652E-05]]}
-{"quant":[109.896,-5.2813E-05],"mems":[[109.79871,-5.1043E-05],[109.8022,-5.2074E-05],[109.80569,-5.3106E-05],[109.80918,-5.5684E-05],[109.81267,-5.5684E-05],[109.81616,-5.3106E-05],[109.81965,-4.795E-05],[109.82314,-5.3621E-05],[109.82663,-5.6715E-05],[109.83012,-4.9497E-05],[109.83361,-5.2074E-05],[109.8371,-5.0528E-05],[109.84059,-5.1043E-05],[109.84408,-5.6199E-05],[109.84757,-5.5168E-05],[109.85105,-5.5684E-05],[109.85454,-5.3621E-05],[109.85803,-5.1043E-05],[109.86152,-5.0012E-05],[109.86501,-5.4137E-05],[109.8685,-5.6199E-05],[109.87199,-5.1043E-05],[109.87548,-4.9497E-05],[109.87897,-4.6919E-05],[109.88246,-4.795E-05],[109.88595,-5.5168E-05],[109.88944,-5.8777E-05],[109.89293,-5.6715E-05],[109.89642,-5.6715E-05],[109.89991,-5.6715E-05],[109.90339,-5.0528E-05],[109.90688,-4.8981E-05],[109.91037,-5.0528E-05],[109.91386,-5.1043E-05],[109.91735,-5.1043E-05],[109.92084,-5.2074E-05],[109.92433,-5.5168E-05],[109.92782,-5.5684E-05],[109.93131,-5.6199E-05],[109.9348,-5.723E-05],[109.93829,-5.4652E-05],[109.94178,-5.1559E-05],[109.94527,-5.1043E-05],[109.94876,-5.259E-05],[109.95225,-5.1043E-05],[109.95573,-5.3106E-05],[109.95922,-5.2074E-05],[109.96271,-4.795E-05],[109.9662,-5.2074E-05],[109.96969,-5.2074E-05],[109.97318,-5.3106E-05],[109.97667,-5.5168E-05],[109.98016,-5.259E-05],[109.98365,-5.0012E-05],[109.98714,-5.1559E-05],[109.99063,-5.723E-05],[109.99412,-5.4137E-05],[109.99761,-5.0528E-05],[110.0011,-5.2074E-05],[110.00459,-5.0528E-05],[110.00807,-5.1559E-05],[110.01156,-5.5168E-05],[110.01505,-5.2074E-05],[110.01854,-4.8981E-05],[110.02203,-5.3621E-05],[110.02552,-5.5168E-05],[110.02901,-5.2074E-05],[110.0325,-5.3621E-05],[110.03599,-5.5684E-05],[110.03948,-5.5684E-05],[110.04297,-5.3106E-05],[110.04646,-5.0528E-05],[110.04995,-5.4652E-05],[110.05344,-5.259E-05],[110.05693,-5.0012E-05],[110.06041,-5.3106E-05],[110.0639,-5.4137E-05],[110.06739,-5.6199E-05],[110.07088,-5.4652E-05],[110.07437,-5.3621E-05],[110.07786,-5.5684E-05],[110.08135,-5.4137E-05],[110.08484,-5.4652E-05],[110.08833,-5.259E-05],[110.09182,-5.4652E-05],[110.09531,-5.259E-05],[110.0988,-4.8981E-05]]}
-{"quant":[110.378,-5.2643E-05],"mems":[[110.28024,-4.6403E-05],[110.28373,-4.6403E-05],[110.28722,-4.9497E-05],[110.29071,-5.1559E-05],[110.2942,-5.3106E-05],[110.29769,-5.4137E-05],[110.30118,-5.1559E-05],[110.30467,-4.9497E-05],[110.30816,-4.795E-05],[110.31165,-5.0012E-05],[110.31514,-5.3621E-05],[110.31863,-5.259E-05],[110.32211,-5.3106E-05],[110.3256,-5.259E-05],[110.32909,-5.259E-05],[110.33258,-5.259E-05],[110.33607,-5.3621E-05],[110.33956,-5.6715E-05],[110.34305,-5.5684E-05],[110.34654,-5.3106E-05],[110.35003,-5.723E-05],[110.35352,-5.5684E-05],[110.35701,-5.0012E-05],[110.3605,-5.5684E-05],[110.36399,-5.5684E-05],[110.36748,-5.0528E-05],[110.37097,-5.5684E-05],[110.37445,-5.4652E-05],[110.37794,-5.1043E-05],[110.38143,-5.4652E-05],[110.38492,-5.259E-05],[110.38841,-5.3106E-05],[110.3919,-5.0528E-05],[110.39539,-4.8981E-05],[110.39888,-5.3621E-05],[110.40237,-5.3106E-05],[110.40586,-5.2074E-05],[110.40935,-4.9497E-05],[110.41284,-5.1043E-05],[110.41633,-5.3621E-05],[110.41982,-5.3106E-05],[110.42331,-5.1559E-05],[110.42679,-5.259E-05],[110.43028,-5.5168E-05],[110.43377,-5.2074E-05],[110.43726,-5.4137E-05],[110.44075,-5.3621E-05],[110.44424,-5.259E-05],[110.44773,-5.1559E-05],[110.45122,-4.8465E-05],[110.45471,-5.3106E-05],[110.4582,-5.4652E-05],[110.46169,-5.4137E-05],[110.46518,-5.259E-05],[110.46867,-4.8981E-05],[110.47216,-5.2074E-05],[110.47565,-5.723E-05],[110.47913,-5.6199E-05],[110.48262,-5.5168E-05],[110.48611,-5.5684E-05],[110.4896,-5.4137E-05],[110.49309,-5.723E-05],[110.49658,-5.723E-05],[110.50007,-5.3106E-05],[110.50356,-5.3621E-05],[110.50705,-5.6199E-05],[110.51054,-5.6715E-05],[110.51403,-5.4652E-05],[110.51752,-5.6715E-05],[110.52101,-5.3106E-05],[110.5245,-5.1559E-05],[110.52799,-5.3621E-05],[110.53147,-5.2074E-05],[110.53496,-5.723E-05],[110.53845,-5.6715E-05],[110.54194,-5.4652E-05],[110.54543,-5.7746E-05],[110.54892,-5.5168E-05],[110.55241,-5.5168E-05],[110.5559,-5.4652E-05],[110.55939,-5.1043E-05],[110.56288,-5.1559E-05],[110.56637,-5.1043E-05],[110.56986,-4.9497E-05],[110.57335,-5.0528E-05],[110.57684,-5.4137E-05],[110.58033,-5.4137E-05]]}
-{"quant":[110.86,-5.275E-05],"mems":[[110.76177,-5.3621E-05],[110.76526,-4.8981E-05],[110.76875,-5.259E-05],[110.77224,-5.6199E-05],[110.77573,-5.3621E-05],[110.77922,-5.3106E-05],[110.78271,-5.3106E-05],[110.7862,-4.8981E-05],[110.78969,-4.5887E-05],[110.79317,-5.2074E-05],[110.79666,-5.5168E-05],[110.80015,-5.259E-05],[110.80364,-5.2074E-05],[110.80713,-5.4137E-05],[110.81062,-5.2074E-05],[110.81411,-5.2074E-05],[110.8176,-5.4652E-05],[110.82109,-5.1559E-05],[110.82458,-5.1559E-05],[110.82807,-5.3621E-05],[110.83156,-5.0528E-05],[110.83505,-5.2074E-05],[110.83854,-5.5168E-05],[110.84203,-5.4137E-05],[110.84551,-5.4652E-05],[110.849,-5.2074E-05],[110.85249,-5.1043E-05],[110.85598,-4.8981E-05],[110.85947,-5.0012E-05],[110.86296,-5.4652E-05],[110.86645,-5.3621E-05],[110.86994,-5.2074E-05],[110.87343,-5.2074E-05],[110.87692,-5.6199E-05],[110.88041,-5.6199E-05],[110.8839,-4.795E-05],[110.88739,-4.8465E-05],[110.89088,-5.1559E-05],[110.89437,-5.2074E-05],[110.89785,-5.5684E-05],[110.90134,-5.2074E-05],[110.90483,-5.259E-05],[110.90832,-5.5684E-05],[110.91181,-5.0012E-05],[110.9153,-5.4137E-05],[110.91879,-5.3621E-05],[110.92228,-5.1043E-05],[110.92577,-5.1559E-05],[110.92926,-4.9497E-05],[110.93275,-5.3106E-05],[110.93624,-5.3621E-05],[110.93973,-5.8777E-05],[110.94322,-5.6199E-05],[110.94671,-5.0528E-05],[110.95019,-5.0528E-05],[110.95368,-4.9497E-05],[110.95717,-5.259E-05],[110.96066,-5.4137E-05],[110.96415,-5.259E-05],[110.96764,-4.5372E-05],[110.97113,-4.6403E-05],[110.97462,-4.8981E-05],[110.97811,-4.8465E-05],[110.9816,-5.5684E-05],[110.98509,-5.6715E-05],[110.98858,-5.6715E-05],[110.99207,-5.6715E-05],[110.99556,-5.1559E-05],[110.99905,-4.9497E-05],[111.00253,-5.2074E-05],[111.00602,-5.5684E-05],[111.00951,-5.5684E-05],[111.013,-5.0528E-05],[111.01649,-5.1043E-05],[111.01998,-5.5168E-05],[111.02347,-5.3621E-05],[111.02696,-5.3106E-05],[111.03045,-4.8981E-05],[111.03394,-5.0012E-05],[111.03743,-4.8981E-05],[111.04092,-4.8981E-05],[111.04441,-5.3621E-05],[111.0479,-4.795E-05],[111.05139,-5.0528E-05],[111.05487,-5.4652E-05],[111.05836,-4.8465E-05],[111.06185,-4.8465E-05]]}
-{"quant":[111.325,-1.3816],"mems":[[111.22585,-5.4652E-05],[111.22934,-5.3621E-05],[111.23283,-5.4137E-05],[111.23632,-5.0528E-05],[111.23981,-4.9497E-05],[111.2433,-4.8981E-05],[111.24679,-4.9497E-05],[111.25028,-5.3106E-05],[111.25377,-5.1559E-05],[111.25726,-5.0528E-05],[111.26075,-5.2074E-05],[111.26423,-5.1043E-05],[111.26772,-5.1043E-05],[111.27121,-5.259E-05],[111.2747,-4.795E-05],[111.27819,-4.7434E-05],[111.28168,-4.8981E-05],[111.28517,-5.0528E-05],[111.28866,-5.4137E-05],[111.29215,-4.8981E-05],[111.29564,-4.8981E-05],[111.29913,-4.8465E-05],[111.30262,-4.8465E-05],[111.30611,-5.3106E-05],[111.3096,-5.1043E-05],[111.31309,-4.9497E-05],[111.31657,-5.1043E-05],[111.32006,-5.259E-05],[111.32355,-5.259E-05],[111.32704,-5.1559E-05],[111.33053,-5.3106E-05],[111.33402,-5.259E-05],[111.33751,-5.4652E-05],[111.341,-5.4652E-05],[111.34444,-5.723E-05],[111.34788,-5.9808E-05],[111.35132,-5.259E-05],[111.35475,-5.3106E-05],[111.35819,-5.3106E-05],[111.36163,-4.9497E-05],[111.36507,-5.2074E-05],[111.36851,-5.5684E-05],[111.37195,-5.4652E-05],[111.37539,-5.0012E-05],[111.37883,-5.6199E-05],[111.38226,-5.6715E-05],[111.3857,-5.6199E-05],[111.38914,-5.6715E-05],[111.39258,-5.4652E-05],[111.39602,-5.6199E-05],[111.39946,-5.2074E-05],[111.4029,-5.1043E-05],[111.40633,-5.0528E-05],[111.40977,-5.3106E-05],[111.41321,-5.8262E-05],[111.41665,-5.3106E-05],[111.42009,-5.4652E-05],[111.42353,-5.6715E-05],[111.42697,-5.259E-05],[111.43041,-5.2074E-05],[111.43384,-5.3106E-05],[111.43728,-5.1043E-05],[111.44072,-4.795E-05],[111.44416,-5.2074E-05],[111.4476,-5.5168E-05],[111.45104,-5.0012E-05],[111.45448,-4.795E-05],[111.45791,-4.8465E-05],[111.46135,-4.8981E-05],[111.46479,-5.0528E-05],[111.46823,-5.0528E-05],[111.47167,-5.259E-05],[111.47511,-5.3621E-05],[111.47855,-5.1559E-05],[111.48199,-5.2074E-05],[111.48542,-5.259E-05],[111.48886,-5.5168E-05],[111.4923,-5.4652E-05],[111.49574,-5.1559E-05],[111.49918,-5.2074E-05],[111.50262,-5.3621E-05],[111.50606,-5.5168E-05],[111.50949,-5.1043E-05],[111.51293,-5.1043E-05],[111.51637,-5.4137E-05],[111.51981,-5.2074E-05],[111.52325,-5.259E-05],[111.52669,-5.2074E-05]]}
-{"quant":[111.788,-5.244E-05],"mems":[[111.68831,-5.5168E-05],[111.69174,-5.6199E-05],[111.69518,-5.4652E-05],[111.69862,-5.0012E-05],[111.70206,-5.3621E-05],[111.7055,-5.5684E-05],[111.70894,-5.2074E-05],[111.71238,-5.3106E-05],[111.71581,-5.4652E-05],[111.71925,-5.1559E-05],[111.72269,-5.3106E-05],[111.72613,-5.3106E-05],[111.72957,-5.1559E-05],[111.73301,-5.3621E-05],[111.73645,-4.8465E-05],[111.73989,-5.0528E-05],[111.74332,-5.6199E-05],[111.74676,-5.1559E-05],[111.7502,-5.259E-05],[111.75364,-5.1043E-05],[111.75708,-5.259E-05],[111.76052,-5.5168E-05],[111.76396,-5.1559E-05],[111.76739,-5.5168E-05],[111.77083,-5.4652E-05],[111.77427,-5.1559E-05],[111.77771,-5.2074E-05],[111.78115,-5.1043E-05],[111.78459,-5.4137E-05],[111.78803,-5.4137E-05],[111.79147,-5.0528E-05],[111.7949,-5.1559E-05],[111.79834,-5.3621E-05],[111.80178,-5.2074E-05],[111.80522,-5.0012E-05],[111.80866,-5.1043E-05],[111.8121,-5.2074E-05],[111.81554,-5.1043E-05],[111.81897,-4.8981E-05],[111.82241,-5.2074E-05],[111.82585,-5.5168E-05],[111.82929,-5.4652E-05],[111.83273,-5.3621E-05],[111.83617,-5.1559E-05],[111.83961,-5.3106E-05],[111.84305,-5.6715E-05],[111.84648,-5.4652E-05],[111.84992,-5.259E-05],[111.85336,-5.1043E-05],[111.8568,-4.8981E-05],[111.86024,-4.795E-05],[111.86368,-5.4652E-05],[111.86712,-5.723E-05],[111.87055,-5.4652E-05],[111.87399,-5.3106E-05],[111.87743,-5.0528E-05],[111.88087,-5.1559E-05],[111.88431,-5.1043E-05],[111.88775,-5.4652E-05],[111.89119,-5.1043E-05],[111.89463,-4.795E-05],[111.89806,-5.3106E-05],[111.9015,-5.259E-05],[111.90494,-5.6199E-05],[111.90838,-5.4652E-05],[111.91182,-5.259E-05],[111.91526,-5.1043E-05],[111.9187,-4.8981E-05],[111.92213,-5.4137E-05],[111.92557,-5.2074E-05],[111.92901,-5.259E-05],[111.93245,-5.1559E-05],[111.93589,-5.3106E-05],[111.93933,-5.6715E-05],[111.94277,-5.6199E-05],[111.94621,-5.7746E-05],[111.94964,-5.6199E-05],[111.95308,-5.5168E-05],[111.95652,-5.1043E-05],[111.95996,-4.795E-05],[111.9634,-5.3106E-05],[111.96684,-5.3106E-05],[111.97028,-5.5684E-05],[111.97371,-5.3621E-05],[111.97715,-4.7434E-05],[111.98059,-4.4856E-05],[111.98403,-5.2074E-05],[111.98747,-5.7746E-05],[111.99091,-5.3621E-05]]}
-{"quant":[112.402,-5.3948E-05],"mems":[[112.30383,-5.4137E-05],[112.30727,-5.3621E-05],[112.3107,-5.6199E-05],[112.31414,-5.6199E-05],[112.31758,-5.5684E-05],[112.32102,-5.4137E-05],[112.32446,-5.723E-05],[112.3279,-5.8262E-05],[112.33134,-5.259E-05],[112.33477,-5.3106E-05],[112.33821,-5.1043E-05],[112.34165,-5.1043E-05],[112.34509,-5.2074E-05],[112.34853,-5.0012E-05],[112.35197,-5.3106E-05],[112.35541,-5.259E-05],[112.35885,-4.795E-05],[112.36228,-5.1559E-05],[112.36572,-5.6715E-05],[112.36916,-5.3621E-05],[112.3726,-5.5684E-05],[112.37604,-5.5168E-05],[112.37948,-4.795E-05],[112.38292,-5.2074E-05],[112.38635,-5.259E-05],[112.38979,-5.1043E-05],[112.39323,-5.5168E-05],[112.39667,-5.3621E-05],[112.40011,-5.5684E-05],[112.40355,-5.723E-05],[112.40699,-5.6199E-05],[112.41043,-5.1559E-05],[112.41386,-4.7434E-05],[112.4173,-5.259E-05],[112.42074,-5.4652E-05],[112.42418,-5.5684E-05],[112.42762,-5.723E-05],[112.43106,-5.4137E-05],[112.4345,-4.9497E-05],[112.43793,-4.9497E-05],[112.44137,-5.1043E-05],[112.44481,-5.1043E-05],[112.44825,-5.3106E-05],[112.45169,-5.5168E-05],[112.45513,-5.259E-05],[112.45857,-5.1043E-05],[112.46201,-5.3106E-05],[112.46544,-5.259E-05],[112.46888,-5.259E-05],[112.47232,-5.723E-05],[112.47576,-5.6199E-05],[112.4792,-4.9497E-05],[112.48264,-5.2074E-05],[112.48608,-5.6199E-05],[112.48951,-5.6715E-05],[112.49295,-6.1355E-05],[112.49639,-5.6715E-05],[112.49983,-5.5168E-05],[112.50327,-5.9293E-05],[112.50671,-5.5168E-05],[112.51015,-5.5684E-05],[112.51359,-5.4652E-05],[112.51702,-5.3106E-05],[112.52046,-5.3106E-05],[112.5239,-5.2074E-05],[112.52734,-5.5684E-05],[112.53078,-5.4652E-05],[112.53422,-5.2074E-05],[112.53766,-4.8465E-05],[112.54109,-5.259E-05],[112.54453,-5.6199E-05],[112.54797,-5.3106E-05],[112.55141,-5.4137E-05],[112.55485,-5.1559E-05],[112.55829,-5.0528E-05],[112.56173,-5.1043E-05],[112.56517,-5.1559E-05],[112.5686,-5.4137E-05],[112.57204,-5.5168E-05],[112.57548,-5.259E-05],[112.57892,-4.6919E-05],[112.58236,-5.0528E-05],[112.5858,-5.2074E-05],[112.58924,-5.4652E-05],[112.59267,-5.5684E-05],[112.59611,-4.8981E-05],[112.59955,-5.1559E-05],[112.60299,-5.4652E-05]]}
-{"quant":[112.913,-5.3243E-05],"mems":[[112.81619,-4.9497E-05],[112.81963,-5.0528E-05],[112.82307,-5.5684E-05],[112.8265,-5.5684E-05],[112.82994,-5.6199E-05],[112.83338,-4.9497E-05],[112.83682,-5.0528E-05],[112.84026,-5.723E-05],[112.8437,-5.1559E-05],[112.84714,-4.8981E-05],[112.85057,-5.259E-05],[112.85401,-5.5684E-05],[112.85745,-5.3621E-05],[112.86089,-5.4137E-05],[112.86433,-5.4137E-05],[112.86777,-5.3621E-05],[112.87121,-5.0528E-05],[112.87465,-4.8981E-05],[112.87808,-5.0012E-05],[112.88152,-5.2074E-05],[112.88496,-5.6199E-05],[112.8884,-5.3106E-05],[112.89184,-5.0528E-05],[112.89528,-5.0012E-05],[112.89872,-4.9497E-05],[112.90215,-5.2074E-05],[112.90559,-5.6199E-05],[112.90903,-5.6199E-05],[112.91247,-5.3621E-05],[112.91591,-5.6199E-05],[112.91935,-5.8262E-05],[112.92279,-5.7746E-05],[112.92623,-5.5168E-05],[112.92966,-5.1559E-05],[112.9331,-5.0528E-05],[112.93654,-5.1559E-05],[112.93998,-5.1559E-05],[112.94342,-5.3106E-05],[112.94686,-5.259E-05],[112.9503,-5.2074E-05],[112.95373,-5.3621E-05],[112.95717,-5.0528E-05],[112.96061,-5.0528E-05],[112.96405,-5.4137E-05],[112.96749,-5.6715E-05],[112.97093,-5.9293E-05],[112.97437,-5.5168E-05],[112.97781,-4.8981E-05],[112.98124,-5.3621E-05],[112.98468,-5.6715E-05],[112.98812,-5.0012E-05],[112.99156,-5.0528E-05],[112.995,-5.1559E-05],[112.99844,-5.0528E-05],[113.00188,-5.3621E-05],[113.00531,-5.3106E-05],[113.00875,-5.3106E-05],[113.01219,-5.3621E-05],[113.01563,-5.1559E-05],[113.01907,-5.5168E-05],[113.02251,-5.4137E-05],[113.02595,-5.0012E-05],[113.02939,-5.1559E-05],[113.03282,-5.0528E-05],[113.03626,-4.795E-05],[113.0397,-5.3106E-05],[113.04314,-5.4652E-05],[113.04658,-5.1559E-05],[113.05002,-5.1559E-05],[113.05346,-5.4137E-05],[113.05689,-5.5684E-05],[113.06033,-5.5168E-05],[113.06377,-5.6199E-05],[113.06721,-5.5168E-05],[113.07065,-5.2074E-05],[113.07409,-5.5168E-05],[113.07753,-5.3621E-05],[113.08097,-5.3621E-05],[113.0844,-5.6199E-05],[113.08784,-5.3621E-05],[113.09128,-5.6199E-05],[113.09472,-5.259E-05],[113.09816,-4.8465E-05],[113.1016,-5.0012E-05],[113.10504,-5.259E-05],[113.10847,-5.4652E-05],[113.11191,-5.4137E-05],[113.11535,-5.4652E-05]]}
-{"quant":[113.392,-5.3742E-05],"mems":[[113.29416,-5.6199E-05],[113.2976,-5.3106E-05],[113.30104,-5.4652E-05],[113.30448,-5.3621E-05],[113.30792,-5.6199E-05],[113.31136,-5.7746E-05],[113.31479,-5.2074E-05],[113.31823,-5.2074E-05],[113.32167,-5.259E-05],[113.32511,-5.2074E-05],[113.32855,-5.6199E-05],[113.33199,-5.4652E-05],[113.33543,-4.8465E-05],[113.33887,-4.6919E-05],[113.3423,-4.7434E-05],[113.34574,-5.4652E-05],[113.34918,-5.7746E-05],[113.35262,-5.723E-05],[113.35606,-5.3621E-05],[113.3595,-4.6919E-05],[113.36294,-5.4652E-05],[113.36637,-5.4652E-05],[113.36981,-5.259E-05],[113.37325,-5.723E-05],[113.37669,-5.4652E-05],[113.38013,-5.5168E-05],[113.38357,-5.6715E-05],[113.38701,-5.8777E-05],[113.39045,-6.0839E-05],[113.39388,-5.723E-05],[113.39732,-5.4652E-05],[113.40076,-5.3106E-05],[113.4042,-5.2074E-05],[113.40764,-5.1043E-05],[113.41108,-5.3106E-05],[113.41452,-5.723E-05],[113.41795,-5.5684E-05],[113.42139,-5.3621E-05],[113.42483,-5.5684E-05],[113.42827,-5.4652E-05],[113.43171,-5.6199E-05],[113.43515,-5.3106E-05],[113.43859,-4.8981E-05],[113.44203,-5.4652E-05],[113.44546,-5.5684E-05],[113.4489,-5.1559E-05],[113.45234,-5.5168E-05],[113.45578,-5.3106E-05],[113.45922,-5.0012E-05],[113.46266,-5.7746E-05],[113.4661,-5.9808E-05],[113.46953,-5.4137E-05],[113.47297,-5.3106E-05],[113.47641,-5.4137E-05],[113.47985,-5.1043E-05],[113.48329,-5.0528E-05],[113.48673,-5.3621E-05],[113.49017,-5.1043E-05],[113.49361,-5.0528E-05],[113.49704,-5.1043E-05],[113.50048,-5.1559E-05],[113.50392,-5.6715E-05],[113.50736,-5.8777E-05],[113.5108,-5.5168E-05],[113.51424,-4.8465E-05],[113.51768,-5.0012E-05],[113.52111,-5.5168E-05],[113.52455,-5.6199E-05],[113.52799,-5.8262E-05],[113.53143,-5.4652E-05],[113.53487,-5.1043E-05],[113.53831,-5.3621E-05],[113.54175,-5.4652E-05],[113.54519,-5.3621E-05],[113.54862,-5.4652E-05],[113.55206,-5.3106E-05],[113.5555,-5.4137E-05],[113.55894,-5.5684E-05],[113.56238,-5.4137E-05],[113.56582,-5.4652E-05],[113.56926,-5.0012E-05],[113.57269,-4.795E-05],[113.57613,-5.1043E-05],[113.57957,-5.4137E-05],[113.58301,-5.1559E-05],[113.58645,-5.1043E-05],[113.58989,-5.4137E-05],[113.59333,-5.2074E-05]]}
-{"quant":[113.883,-1.025],"mems":[[113.82716,-5.5684E-05],[113.83059,-5.8777E-05],[113.83403,-5.8777E-05],[113.83747,-5.3106E-05],[113.84091,-5.4652E-05],[113.84435,-5.6715E-05],[113.84779,-5.4137E-05],[113.85123,-5.4137E-05],[113.85467,-5.2074E-05],[113.8581,-5.3621E-05],[113.86154,-5.8262E-05],[113.86498,-5.5168E-05],[113.86842,-5.3621E-05],[113.87186,-5.4137E-05],[113.8753,-4.9497E-05],[113.87874,-5.4137E-05],[113.88217,-5.5684E-05],[113.88561,-5.6199E-05],[113.88905,-5.6715E-05],[113.89249,-5.5168E-05],[113.89593,-5.3621E-05],[113.89937,-5.0012E-05],[113.90281,-5.3621E-05],[113.90625,-5.3621E-05],[113.90968,-5.4137E-05],[113.91312,-5.6715E-05],[113.91656,-5.3106E-05],[113.92,-5.1043E-05],[113.92338,-5.1559E-05],[113.92677,-5.5684E-05],[113.93015,-5.4137E-05],[113.93353,-5.4137E-05],[113.93691,-5.3621E-05],[113.9403,-5.259E-05],[113.94368,-5.5168E-05],[113.94706,-5.8262E-05],[113.95044,-5.5684E-05],[113.95383,-4.7434E-05],[113.95721,-5.259E-05],[113.96059,-5.3621E-05],[113.96397,-5.1043E-05],[113.96736,-5.5168E-05],[113.97074,-5.3621E-05],[113.97412,-5.6715E-05],[113.97751,-5.6715E-05],[113.98089,-5.4652E-05],[113.98427,-5.3621E-05],[113.98765,-5.6715E-05],[113.99104,-5.6199E-05],[113.99442,-5.0528E-05],[113.9978,-5.4652E-05],[114.00118,-5.4652E-05],[114.00457,-5.3106E-05],[114.00795,-5.3106E-05],[114.01133,-5.3106E-05],[114.01471,-5.259E-05],[114.0181,-4.6403E-05],[114.02148,-4.6403E-05],[114.02486,-5.0012E-05],[114.02825,-5.4137E-05],[114.03163,-5.3106E-05],[114.03501,-5.1559E-05],[114.03839,-5.723E-05],[114.04178,-5.5684E-05],[114.04516,-5.4652E-05],[114.04854,-5.6715E-05],[114.05192,-5.3621E-05],[114.05531,-5.2074E-05],[114.05869,-5.4137E-05],[114.06207,-5.6199E-05],[114.06545,-5.8262E-05],[114.06884,-5.4652E-05],[114.07222,-4.8465E-05],[114.0756,-4.8465E-05],[114.07899,-4.7434E-05],[114.08237,-5.0528E-05],[114.08575,-5.259E-05],[114.08913,-5.0012E-05],[114.09252,-5.1043E-05],[114.0959,-5.4652E-05],[114.09928,-5.5684E-05],[114.10266,-5.3106E-05],[114.10605,-5.3621E-05],[114.10943,-5.3106E-05],[114.11281,-4.8981E-05],[114.11619,-5.0012E-05],[114.11958,-5.8262E-05],[114.12296,-5.723E-05]]}
-{"quant":[114.396,-5.2407E-05],"mems":[[114.29886,-5.0528E-05],[114.30224,-5.3621E-05],[114.30562,-5.2074E-05],[114.30901,-5.1043E-05],[114.31239,-5.5168E-05],[114.31577,-5.4652E-05],[114.31915,-5.1559E-05],[114.32254,-5.4652E-05],[114.32592,-5.0528E-05],[114.3293,-4.4341E-05],[114.33269,-5.1043E-05],[114.33607,-5.4137E-05],[114.33945,-5.1043E-05],[114.34283,-5.4137E-05],[114.34622,-5.3106E-05],[114.3496,-5.0528E-05],[114.35298,-5.4137E-05],[114.35636,-5.259E-05],[114.35975,-5.6199E-05],[114.36313,-5.5168E-05],[114.36651,-5.0012E-05],[114.36989,-5.0528E-05],[114.37328,-4.8465E-05],[114.37666,-5.5168E-05],[114.38004,-5.5684E-05],[114.38343,-4.8981E-05],[114.38681,-4.8465E-05],[114.39019,-4.8465E-05],[114.39357,-5.0012E-05],[114.39696,-5.2074E-05],[114.40034,-5.1043E-05],[114.40372,-5.3106E-05],[114.4071,-5.3106E-05],[114.41049,-5.2074E-05],[114.41387,-5.259E-05],[114.41725,-5.1559E-05],[114.42063,-5.259E-05],[114.42402,-5.1559E-05],[114.4274,-5.0528E-05],[114.43078,-5.1559E-05],[114.43417,-5.0528E-05],[114.43755,-5.2074E-05],[114.44093,-5.7746E-05],[114.44431,-5.4652E-05],[114.4477,-4.6919E-05],[114.45108,-4.9497E-05],[114.45446,-5.5168E-05],[114.45784,-5.6199E-05],[114.46123,-5.4652E-05],[114.46461,-5.1559E-05],[114.46799,-4.8981E-05],[114.47137,-5.1559E-05],[114.47476,-5.5168E-05],[114.47814,-5.4137E-05],[114.48152,-5.1559E-05],[114.48491,-5.259E-05],[114.48829,-5.259E-05],[114.49167,-5.1559E-05],[114.49505,-5.259E-05],[114.49844,-5.3106E-05],[114.50182,-5.4137E-05],[114.5052,-5.0528E-05],[114.50858,-5.3106E-05],[114.51197,-5.8777E-05],[114.51535,-5.4137E-05],[114.51873,-5.3106E-05],[114.52211,-5.0528E-05],[114.5255,-5.0012E-05],[114.52888,-5.3621E-05],[114.53226,-5.0012E-05],[114.53565,-5.4137E-05],[114.53903,-5.4652E-05],[114.54241,-5.3621E-05],[114.54579,-5.5168E-05],[114.54918,-5.1043E-05],[114.55256,-5.3621E-05],[114.55594,-5.4652E-05],[114.55932,-5.3106E-05],[114.56271,-5.3106E-05],[114.56609,-5.3621E-05],[114.56947,-5.2074E-05],[114.57285,-5.0528E-05],[114.57624,-5.8262E-05],[114.57962,-5.5684E-05],[114.583,-5.1559E-05],[114.58639,-5.4652E-05],[114.58977,-5.5684E-05],[114.59315,-5.8777E-05],[114.59653,-5.4652E-05]]}
-{"quant":[115.037,-5.2693E-05],"mems":[[114.93818,-5.3621E-05],[114.94157,-5.0528E-05],[114.94495,-4.8981E-05],[114.94833,-5.6715E-05],[114.95171,-5.6199E-05],[114.9551,-5.4137E-05],[114.95848,-4.9497E-05],[114.96186,-5.1559E-05],[114.96524,-5.6715E-05],[114.96863,-5.4137E-05],[114.97201,-4.8465E-05],[114.97539,-4.8981E-05],[114.97877,-5.3106E-05],[114.98216,-5.3621E-05],[114.98554,-5.6715E-05],[114.98892,-5.8262E-05],[114.99231,-5.3106E-05],[114.99569,-5.3106E-05],[114.99907,-5.3106E-05],[115.00245,-5.4652E-05],[115.00584,-5.6715E-05],[115.00922,-5.4652E-05],[115.0126,-5.4652E-05],[115.01598,-5.2074E-05],[115.01937,-5.3106E-05],[115.02275,-5.4652E-05],[115.02613,-5.4652E-05],[115.02951,-5.723E-05],[115.0329,-5.4652E-05],[115.03628,-5.0012E-05],[115.03966,-4.8981E-05],[115.04305,-5.4137E-05],[115.04643,-5.2074E-05],[115.04981,-5.3106E-05],[115.05319,-5.6199E-05],[115.05658,-5.0528E-05],[115.05996,-5.1559E-05],[115.06334,-5.3106E-05],[115.06672,-5.3106E-05],[115.07011,-5.6199E-05],[115.07349,-5.2074E-05],[115.07687,-5.0528E-05],[115.08025,-5.5684E-05],[115.08364,-5.259E-05],[115.08702,-5.3621E-05],[115.0904,-5.5684E-05],[115.09379,-4.8981E-05],[115.09717,-5.259E-05],[115.10055,-5.1043E-05],[115.10393,-5.1043E-05],[115.10732,-5.4137E-05],[115.1107,-5.3621E-05],[115.11408,-5.259E-05],[115.11746,-5.3106E-05],[115.12085,-5.7746E-05],[115.12423,-5.3106E-05],[115.12761,-5.1559E-05],[115.13099,-5.1043E-05],[115.13438,-4.9497E-05],[115.13776,-5.1559E-05],[115.14114,-5.259E-05],[115.14453,-5.3106E-05],[115.14791,-5.3106E-05],[115.15129,-5.2074E-05],[115.15467,-5.1559E-05],[115.15806,-5.259E-05],[115.16144,-5.259E-05],[115.16482,-5.4652E-05],[115.1682,-5.6715E-05],[115.17159,-5.4137E-05],[115.17497,-5.6199E-05],[115.17835,-5.3621E-05],[115.18173,-5.1043E-05],[115.18512,-5.9293E-05],[115.1885,-5.7746E-05],[115.19188,-5.6715E-05],[115.19527,-5.5168E-05],[115.19865,-5.1559E-05],[115.20203,-5.4652E-05],[115.20541,-5.1043E-05],[115.2088,-5.3106E-05],[115.21218,-5.5684E-05],[115.21556,-4.8981E-05],[115.21894,-5.0012E-05],[115.22233,-5.3106E-05],[115.22571,-5.4652E-05],[115.22909,-5.2074E-05],[115.23247,-5.1043E-05],[115.23586,-5.3106E-05],[115.23924,-5.3106E-05]]}
-{"quant":[115.6,-5.1991E-05],"mems":[[115.50309,-5.259E-05],[115.50647,-5.5168E-05],[115.50985,-5.3621E-05],[115.51324,-5.9293E-05],[115.51662,-5.5168E-05],[115.52,-5.0528E-05],[115.52338,-5.2074E-05],[115.52677,-4.8981E-05],[115.53015,-5.0012E-05],[115.53353,-5.1559E-05],[115.53691,-5.2074E-05],[115.5403,-5.2074E-05],[115.54368,-5.4137E-05],[115.54706,-5.5168E-05],[115.55045,-5.1559E-05],[115.55383,-4.795E-05],[115.55721,-5.1559E-05],[115.56059,-5.6199E-05],[115.56398,-5.3106E-05],[115.56736,-5.0012E-05],[115.57074,-5.2074E-05],[115.57412,-5.3621E-05],[115.57751,-5.1559E-05],[115.58089,-5.4137E-05],[115.58427,-5.4137E-05],[115.58765,-5.0528E-05],[115.59104,-4.9497E-05],[115.59442,-5.1559E-05],[115.5978,-5.5168E-05],[115.60119,-5.5168E-05],[115.60457,-5.3106E-05],[115.60795,-5.1559E-05],[115.61133,-5.3106E-05],[115.61472,-5.4652E-05],[115.6181,-5.3106E-05],[115.62148,-4.9497E-05],[115.62486,-4.9497E-05],[115.62825,-5.2074E-05],[115.63163,-5.3621E-05],[115.63501,-5.6199E-05],[115.63839,-5.3621E-05],[115.64178,-5.5168E-05],[115.64516,-4.8981E-05],[115.64854,-4.4856E-05],[115.65193,-5.2074E-05],[115.65531,-4.9497E-05],[115.65869,-5.1559E-05],[115.66207,-5.3106E-05],[115.66546,-5.0528E-05],[115.66884,-5.1559E-05],[115.67222,-5.259E-05],[115.6756,-5.3106E-05],[115.67899,-4.8465E-05],[115.68237,-5.259E-05],[115.68575,-5.259E-05],[115.68913,-4.9497E-05],[115.69252,-5.4652E-05],[115.6959,-5.1559E-05],[115.69928,-5.1043E-05],[115.70267,-5.3106E-05],[115.70605,-5.1043E-05],[115.70943,-5.1043E-05],[115.71281,-5.4652E-05],[115.7162,-5.9808E-05],[115.71958,-5.723E-05],[115.72296,-5.3621E-05],[115.72634,-5.1043E-05],[115.72973,-5.259E-05],[115.73311,-5.3106E-05],[115.73649,-5.3106E-05],[115.73987,-5.8777E-05],[115.74326,-5.5168E-05],[115.74664,-5.3106E-05],[115.75002,-5.5168E-05],[115.75341,-5.4137E-05],[115.75679,-5.259E-05],[115.76017,-5.259E-05],[115.76355,-5.1043E-05],[115.76694,-5.1043E-05],[115.77032,-5.4137E-05],[115.7737,-5.3106E-05],[115.77708,-5.6715E-05],[115.78047,-5.2074E-05],[115.78385,-4.4856E-05],[115.78723,-5.3106E-05],[115.79061,-5.8262E-05],[115.794,-5.5168E-05],[115.79738,-5.1559E-05],[115.80076,-5.1043E-05]]}
-{"quant":[116.093,-5.2676E-05],"mems":[[115.99357,-5.9293E-05],[115.99696,-5.259E-05],[116.00034,-5.1559E-05],[116.00372,-5.259E-05],[116.00711,-5.0012E-05],[116.01049,-5.1043E-05],[116.01387,-5.4137E-05],[116.01725,-5.0528E-05],[116.02064,-4.795E-05],[116.02402,-5.4137E-05],[116.0274,-5.4652E-05],[116.03078,-5.5168E-05],[116.03417,-5.4652E-05],[116.03755,-5.259E-05],[116.04093,-5.4652E-05],[116.04431,-5.5168E-05],[116.0477,-5.4137E-05],[116.05108,-5.4137E-05],[116.05446,-5.4652E-05],[116.05785,-5.1559E-05],[116.06123,-5.259E-05],[116.06461,-5.3106E-05],[116.06799,-5.0528E-05],[116.07138,-5.6199E-05],[116.07476,-5.5684E-05],[116.07814,-4.8981E-05],[116.08152,-5.4652E-05],[116.08491,-5.8262E-05],[116.08829,-5.6715E-05],[116.09167,-5.3621E-05],[116.09505,-4.8981E-05],[116.09844,-5.1043E-05],[116.10182,-5.1559E-05],[116.1052,-5.259E-05],[116.10859,-5.4137E-05],[116.11197,-5.3106E-05],[116.11535,-5.4137E-05],[116.11873,-5.4137E-05],[116.12212,-5.1043E-05],[116.1255,-5.259E-05],[116.12888,-5.1559E-05],[116.13226,-5.1043E-05],[116.13565,-5.3106E-05],[116.13903,-4.8465E-05],[116.14241,-4.8981E-05],[116.14579,-5.1043E-05],[116.14918,-5.259E-05],[116.15256,-5.4137E-05],[116.15594,-5.259E-05],[116.15933,-5.3106E-05],[116.16271,-5.4137E-05],[116.16609,-5.3106E-05],[116.16947,-5.1559E-05],[116.17286,-5.3106E-05],[116.17624,-5.5684E-05],[116.17962,-5.4137E-05],[116.183,-5.3106E-05],[116.18639,-5.4652E-05],[116.18977,-5.6715E-05],[116.19315,-5.4137E-05],[116.19653,-5.3106E-05],[116.19992,-5.1559E-05],[116.2033,-5.0528E-05],[116.20668,-5.3106E-05],[116.21007,-5.5168E-05],[116.21345,-5.3621E-05],[116.21683,-5.1559E-05],[116.22021,-5.6199E-05],[116.2236,-5.7746E-05],[116.22698,-5.7746E-05],[116.23036,-5.3106E-05],[116.23374,-4.8981E-05],[116.23713,-5.259E-05],[116.24051,-5.3106E-05],[116.24389,-5.5684E-05],[116.24727,-5.5684E-05],[116.25066,-5.4652E-05],[116.25404,-5.4652E-05],[116.25742,-4.9497E-05],[116.26081,-5.1043E-05],[116.26419,-5.723E-05],[116.26757,-5.2074E-05],[116.27095,-5.259E-05],[116.27434,-5.6199E-05],[116.27772,-4.9497E-05],[116.2811,-5.1559E-05],[116.28448,-5.3621E-05],[116.28787,-5.3106E-05],[116.29125,-5.5684E-05],[116.29463,-5.0528E-05]]}
-{"quant":[116.553,-0.63997],"mems":[[116.45362,-5.1559E-05],[116.457,-5.3106E-05],[116.46045,-5.5168E-05],[116.46391,-5.6715E-05],[116.46736,-5.1559E-05],[116.47081,-5.1559E-05],[116.47427,-5.4652E-05],[116.47772,-5.1559E-05],[116.48117,-5.259E-05],[116.48463,-5.4652E-05],[116.48808,-5.3106E-05],[116.49153,-5.3106E-05],[116.49499,-5.4137E-05],[116.49844,-5.1559E-05],[116.50189,-4.795E-05],[116.50535,-5.1043E-05],[116.5088,-5.7746E-05],[116.51225,-5.4652E-05],[116.51571,-4.9497E-05],[116.51916,-5.6199E-05],[116.52261,-5.4652E-05],[116.52607,-5.3621E-05],[116.52952,-5.3106E-05],[116.53297,-4.795E-05],[116.53643,-5.259E-05],[116.53988,-5.259E-05],[116.54333,-5.1559E-05],[116.54679,-5.0528E-05],[116.55024,-4.7434E-05],[116.55369,-5.1043E-05],[116.55715,-5.3106E-05],[116.5606,-5.5168E-05],[116.56405,-5.8262E-05],[116.56751,-5.3621E-05],[116.57096,-5.0012E-05],[116.57441,-5.2074E-05],[116.57787,-4.8465E-05],[116.58132,-4.6403E-05],[116.58477,-5.1559E-05],[116.58823,-4.9497E-05],[116.59168,-4.8465E-05],[116.59513,-5.259E-05],[116.59859,-5.6715E-05],[116.60204,-5.8262E-05],[116.60549,-5.5684E-05],[116.60895,-5.6715E-05],[116.6124,-5.4652E-05],[116.61585,-4.8981E-05],[116.61931,-5.3621E-05],[116.62276,-5.6199E-05],[116.62621,-5.4652E-05],[116.62967,-5.6199E-05],[116.63312,-5.3621E-05],[116.63657,-5.5168E-05],[116.64003,-5.1043E-05],[116.64348,-5.1559E-05],[116.64693,-5.8777E-05],[116.65039,-5.6199E-05],[116.65384,-5.6715E-05],[116.65729,-5.4137E-05],[116.66075,-5.3621E-05],[116.6642,-5.5168E-05],[116.66765,-5.259E-05],[116.67111,-5.9808E-05],[116.67456,-5.8777E-05],[116.67801,-5.2074E-05],[116.68147,-5.259E-05],[116.68492,-5.0012E-05],[116.68837,-5.1559E-05],[116.69183,-5.1043E-05],[116.69528,-5.3106E-05],[116.69873,-5.7746E-05],[116.70219,-5.2074E-05],[116.70564,-5.4652E-05],[116.70909,-5.1043E-05],[116.71255,-4.5887E-05],[116.716,-5.4137E-05],[116.71945,-5.4652E-05],[116.72291,-5.2074E-05],[116.72636,-5.2074E-05],[116.72981,-5.3106E-05],[116.73327,-5.3106E-05],[116.73672,-5.0528E-05],[116.74017,-5.4137E-05],[116.74363,-5.8777E-05],[116.74708,-5.3621E-05],[116.75053,-5.0528E-05],[116.75399,-4.7434E-05]]}
-{"quant":[117.014,-5.2882E-05],"mems":[[116.91629,-5.3621E-05],[116.91975,-5.4652E-05],[116.9232,-5.0012E-05],[116.92665,-5.4652E-05],[116.93011,-5.4137E-05],[116.93356,-5.1559E-05],[116.93701,-5.1559E-05],[116.94047,-5.723E-05],[116.94392,-5.6199E-05],[116.94737,-5.1043E-05],[116.95083,-5.5168E-05],[116.95428,-5.0012E-05],[116.95773,-4.9497E-05],[116.96119,-5.4137E-05],[116.96464,-5.5168E-05],[116.96809,-5.5168E-05],[116.97155,-4.8981E-05],[116.975,-5.0012E-05],[116.97845,-5.1559E-05],[116.98191,-5.6715E-05],[116.98536,-5.6715E-05],[116.98881,-5.1559E-05],[116.99227,-5.6715E-05],[116.99572,-5.5168E-05],[116.99917,-5.4652E-05],[117.00263,-5.9293E-05],[117.00608,-5.5168E-05],[117.00953,-5.1559E-05],[117.01299,-4.9497E-05],[117.01644,-5.0528E-05],[117.01989,-5.4137E-05],[117.02335,-5.1043E-05],[117.0268,-4.9497E-05],[117.03025,-5.1559E-05],[117.03371,-4.8465E-05],[117.03716,-5.1043E-05],[117.04061,-5.2074E-05],[117.04407,-5.5168E-05],[117.04752,-5.6715E-05],[117.05097,-5.2074E-05],[117.05443,-5.5684E-05],[117.05788,-5.259E-05],[117.06133,-5.1559E-05],[117.06479,-5.4137E-05],[117.06824,-5.0528E-05],[117.07169,-5.4137E-05],[117.07515,-5.6199E-05],[117.0786,-5.4137E-05],[117.08205,-5.4652E-05],[117.08551,-5.4652E-05],[117.08896,-5.3621E-05],[117.09241,-5.0528E-05],[117.09587,-4.8465E-05],[117.09932,-5.4652E-05],[117.10277,-5.4137E-05],[117.10623,-5.4137E-05],[117.10968,-5.6199E-05],[117.11313,-5.1559E-05],[117.11659,-5.259E-05],[117.12004,-5.4652E-05],[117.12349,-5.4137E-05],[117.12695,-5.0012E-05],[117.1304,-4.9497E-05],[117.13385,-5.1043E-05],[117.13731,-5.3621E-05],[117.14076,-5.2074E-05],[117.14421,-5.0528E-05],[117.14767,-5.6199E-05],[117.15112,-5.3621E-05],[117.15457,-4.9497E-05],[117.15803,-4.795E-05],[117.16148,-5.1043E-05],[117.16493,-5.723E-05],[117.16839,-5.9808E-05],[117.17184,-5.259E-05],[117.17529,-4.5887E-05],[117.17875,-5.1043E-05],[117.1822,-5.4137E-05],[117.18565,-5.7746E-05],[117.18911,-5.5684E-05],[117.19256,-4.8465E-05],[117.19601,-5.0012E-05],[117.19947,-5.4652E-05],[117.20292,-5.6199E-05],[117.20637,-5.3621E-05],[117.20983,-5.1559E-05],[117.21328,-5.5168E-05],[117.21673,-5.4137E-05]]}
-{"quant":[117.54,-5.247E-05],"mems":[[117.4412,-5.6199E-05],[117.44465,-5.9293E-05],[117.44811,-5.723E-05],[117.45156,-5.259E-05],[117.45501,-4.9497E-05],[117.45847,-5.1043E-05],[117.46192,-4.9497E-05],[117.46537,-5.0528E-05],[117.46883,-5.7746E-05],[117.47228,-5.1043E-05],[117.47573,-4.7434E-05],[117.47919,-5.4652E-05],[117.48264,-5.4137E-05],[117.48609,-5.1043E-05],[117.48955,-5.0012E-05],[117.493,-5.4652E-05],[117.49645,-5.259E-05],[117.49991,-5.1559E-05],[117.50336,-5.4652E-05],[117.50681,-5.3621E-05],[117.51027,-5.4137E-05],[117.51372,-5.2074E-05],[117.51717,-5.1043E-05],[117.52063,-4.9497E-05],[117.52408,-5.4137E-05],[117.52753,-5.3621E-05],[117.53099,-4.5887E-05],[117.53444,-5.1043E-05],[117.53789,-4.8465E-05],[117.54135,-5.2074E-05],[117.5448,-5.6715E-05],[117.54825,-4.8465E-05],[117.55171,-5.1043E-05],[117.55516,-5.4137E-05],[117.55861,-5.259E-05],[117.56207,-5.4652E-05],[117.56552,-5.8262E-05],[117.56897,-5.6715E-05],[117.57243,-5.259E-05],[117.57588,-4.9497E-05],[117.57933,-5.1559E-05],[117.58279,-5.5684E-05],[117.58624,-4.8981E-05],[117.58969,-5.4137E-05],[117.59315,-5.3621E-05],[117.5966,-4.6919E-05],[117.60005,-5.1043E-05],[117.60351,-5.0528E-05],[117.60696,-5.4137E-05],[117.61041,-5.1559E-05],[117.61387,-4.6919E-05],[117.61732,-5.1559E-05],[117.62077,-5.1559E-05],[117.62423,-5.0012E-05],[117.62768,-5.1043E-05],[117.63113,-5.5684E-05],[117.63459,-5.6199E-05],[117.63804,-5.259E-05],[117.64149,-5.3621E-05],[117.64495,-5.5168E-05],[117.6484,-5.723E-05],[117.65185,-5.6199E-05],[117.65531,-5.1043E-05],[117.65876,-4.8981E-05],[117.66221,-5.4137E-05],[117.66567,-5.8262E-05],[117.66912,-5.1559E-05],[117.67257,-4.9497E-05],[117.67603,-5.4652E-05],[117.67948,-5.6715E-05],[117.68293,-5.6199E-05],[117.68639,-5.1559E-05],[117.68984,-5.3106E-05],[117.69329,-5.3106E-05],[117.69675,-5.0528E-05],[117.7002,-5.3106E-05],[117.70365,-5.7746E-05],[117.70711,-5.8777E-05],[117.71056,-5.259E-05],[117.71401,-5.3621E-05],[117.71747,-5.4652E-05],[117.72092,-5.259E-05],[117.72437,-5.4137E-05],[117.72783,-5.5684E-05],[117.73128,-5.3106E-05],[117.73473,-5.1043E-05],[117.73819,-5.3106E-05],[117.74164,-5.4652E-05]]}
-{"quant":[118.009,-5.3226E-05],"mems":[[117.91085,-5.3106E-05],[117.91431,-5.259E-05],[117.91776,-5.7746E-05],[117.92121,-5.5684E-05],[117.92467,-5.1559E-05],[117.92812,-5.5168E-05],[117.93157,-5.4137E-05],[117.93503,-4.8465E-05],[117.93848,-4.8981E-05],[117.94193,-5.2074E-05],[117.94539,-5.7746E-05],[117.94884,-5.8777E-05],[117.95229,-5.723E-05],[117.95575,-5.3106E-05],[117.9592,-5.0012E-05],[117.96265,-5.259E-05],[117.96611,-5.2074E-05],[117.96956,-5.4652E-05],[117.97301,-5.2074E-05],[117.97647,-5.2074E-05],[117.97992,-5.4652E-05],[117.98337,-5.3106E-05],[117.98683,-5.6199E-05],[117.99028,-5.5684E-05],[117.99373,-5.259E-05],[117.99719,-5.0012E-05],[118.00064,-4.6403E-05],[118.00409,-4.9497E-05],[118.00755,-5.4652E-05],[118.011,-5.3106E-05],[118.01445,-5.2074E-05],[118.01791,-5.259E-05],[118.02136,-5.1559E-05],[118.02481,-5.259E-05],[118.02827,-5.0528E-05],[118.03172,-5.2074E-05],[118.03517,-5.1559E-05],[118.03863,-5.1559E-05],[118.04208,-5.9808E-05],[118.04553,-5.6199E-05],[118.04899,-5.1043E-05],[118.05244,-5.1043E-05],[118.05589,-5.259E-05],[118.05935,-5.0528E-05],[118.0628,-5.5168E-05],[118.06625,-6.0324E-05],[118.06971,-5.7746E-05],[118.07316,-5.6199E-05],[118.07661,-5.1559E-05],[118.08007,-5.2074E-05],[118.08352,-5.2074E-05],[118.08697,-5.4652E-05],[118.09043,-5.9293E-05],[118.09388,-5.3621E-05],[118.09733,-5.3106E-05],[118.10079,-4.8465E-05],[118.10424,-5.0012E-05],[118.10769,-5.4137E-05],[118.11115,-4.9497E-05],[118.1146,-5.4137E-05],[118.11805,-5.3106E-05],[118.12151,-5.259E-05],[118.12496,-5.1559E-05],[118.12841,-4.5372E-05],[118.13187,-5.0012E-05],[118.13532,-5.1559E-05],[118.13877,-5.4652E-05],[118.14223,-5.6199E-05],[118.14568,-5.3621E-05],[118.14913,-5.5684E-05],[118.15259,-5.3106E-05],[118.15604,-5.3106E-05],[118.15949,-5.8777E-05],[118.16295,-5.9293E-05],[118.1664,-5.5168E-05],[118.16985,-5.2074E-05],[118.17331,-5.4652E-05],[118.17676,-5.1559E-05],[118.18021,-5.1043E-05],[118.18367,-5.5684E-05],[118.18712,-5.5168E-05],[118.19057,-5.3106E-05],[118.19403,-5.1043E-05],[118.19748,-4.9497E-05],[118.20093,-5.1043E-05],[118.20439,-5.3621E-05],[118.20784,-5.6199E-05],[118.21129,-5.2074E-05]]}
-{"quant":[118.474,-5.1989E-05],"mems":[[118.37705,-5.4137E-05],[118.38051,-5.6199E-05],[118.38396,-5.3621E-05],[118.38741,-5.1559E-05],[118.39087,-5.259E-05],[118.39432,-5.5168E-05],[118.39777,-5.3621E-05],[118.40123,-4.6919E-05],[118.40468,-5.0528E-05],[118.40813,-5.3621E-05],[118.41159,-5.7746E-05],[118.41504,-5.8777E-05],[118.41849,-5.1559E-05],[118.42195,-5.6199E-05],[118.4254,-5.7746E-05],[118.42885,-5.4652E-05],[118.43231,-5.5684E-05],[118.43576,-5.0012E-05],[118.43921,-5.0528E-05],[118.44267,-5.6199E-05],[118.44612,-5.6199E-05],[118.44957,-5.5168E-05],[118.45303,-5.4137E-05],[118.45648,-5.259E-05],[118.45993,-5.0528E-05],[118.46339,-5.3106E-05],[118.46684,-5.3621E-05],[118.47029,-5.2074E-05],[118.47375,-5.3106E-05],[118.4772,-5.4137E-05],[118.48065,-5.1559E-05],[118.48411,-5.4652E-05],[118.48756,-5.723E-05],[118.49101,-5.0528E-05],[118.49447,-5.3621E-05],[118.49792,-5.3621E-05],[118.50137,-5.0012E-05],[118.50483,-5.2074E-05],[118.50828,-5.1043E-05],[118.51173,-5.4652E-05],[118.51519,-5.3106E-05],[118.51864,-4.7434E-05],[118.52209,-4.8465E-05],[118.52555,-5.3621E-05],[118.529,-5.4137E-05],[118.53245,-5.1559E-05],[118.53591,-5.1559E-05],[118.53936,-4.6919E-05],[118.54281,-5.1043E-05],[118.54627,-5.5684E-05],[118.54972,-5.1559E-05],[118.55317,-5.3106E-05],[118.55663,-5.259E-05],[118.56008,-4.7434E-05],[118.56353,-4.5372E-05],[118.56699,-5.3621E-05],[118.57044,-5.6199E-05],[118.57389,-5.0012E-05],[118.57735,-5.3106E-05],[118.5808,-5.3621E-05],[118.58425,-5.4652E-05],[118.58771,-5.259E-05],[118.59116,-4.8981E-05],[118.59461,-5.4652E-05],[118.59807,-5.2074E-05],[118.60152,-5.3106E-05],[118.60497,-5.4652E-05],[118.60843,-5.0012E-05],[118.61188,-5.259E-05],[118.61533,-5.2074E-05],[118.61879,-5.0528E-05],[118.62224,-5.259E-05],[118.62569,-5.0012E-05],[118.62915,-5.1559E-05],[118.6326,-5.4137E-05],[118.63605,-5.0528E-05],[118.63951,-5.259E-05],[118.64296,-5.6715E-05],[118.64641,-5.7746E-05],[118.64987,-5.3106E-05],[118.65332,-5.2074E-05],[118.65677,-5.5168E-05],[118.66023,-5.2074E-05],[118.66368,-4.8465E-05],[118.66713,-5.5168E-05],[118.67059,-5.6715E-05],[118.67404,-4.9497E-05]]}
-{"quant":[118.945,-0.35593],"mems":[[118.85707,-5.259E-05],[118.86052,-4.9497E-05],[118.86397,-5.0012E-05],[118.86743,-5.259E-05],[118.87088,-5.3621E-05],[118.87433,-5.6199E-05],[118.87779,-5.3106E-05],[118.88124,-5.2074E-05],[118.88469,-5.6715E-05],[118.88815,-5.5168E-05],[118.8916,-5.0528E-05],[118.89505,-4.8465E-05],[118.89851,-5.1043E-05],[118.90196,-5.0012E-05],[118.90541,-4.8981E-05],[118.90887,-5.3106E-05],[118.91232,-5.4137E-05],[118.91577,-5.4652E-05],[118.91923,-5.259E-05],[118.92268,-5.259E-05],[118.92613,-5.3621E-05],[118.92959,-5.3106E-05],[118.93304,-5.4652E-05],[118.93649,-5.2074E-05],[118.93995,-4.9497E-05],[118.9434,-5.0528E-05],[118.94685,-5.6199E-05],[118.95031,-5.5684E-05],[118.95376,-5.3106E-05],[118.95721,-5.259E-05],[118.96067,-5.0528E-05],[118.96412,-5.1043E-05],[118.96757,-5.0012E-05],[118.97103,-5.6199E-05],[118.97448,-5.723E-05],[118.97793,-4.9497E-05],[118.98139,-4.9497E-05],[118.98484,-5.3106E-05],[118.98829,-5.5684E-05],[118.99175,-5.723E-05],[118.9952,-5.6715E-05],[118.99865,-5.3621E-05],[119.00211,-4.8981E-05],[119.00556,-4.6919E-05],[119.00901,-5.259E-05],[119.01247,-5.5168E-05],[119.01592,-5.5168E-05],[119.01937,-5.6199E-05],[119.02283,-5.259E-05],[119.02628,-5.6199E-05],[119.02973,-5.8262E-05],[119.03319,-5.3106E-05],[119.03664,-5.259E-05],[119.04009,-4.8981E-05],[119.04355,-4.795E-05],[119.047,-5.259E-05],[119.05042,-5.4137E-05],[119.05385,-5.2074E-05],[119.05727,-4.7434E-05],[119.06069,-5.0528E-05],[119.06411,-5.5684E-05],[119.06754,-5.5684E-05],[119.07096,-5.4137E-05],[119.07438,-5.1043E-05],[119.0778,-4.9497E-05],[119.08123,-5.1559E-05],[119.08465,-5.5684E-05],[119.08807,-5.723E-05],[119.09149,-5.6199E-05],[119.09492,-5.4137E-05],[119.09834,-5.3106E-05],[119.10176,-5.0528E-05],[119.10519,-5.0012E-05],[119.10861,-5.6199E-05],[119.11203,-5.6715E-05],[119.11545,-5.3621E-05],[119.11888,-5.6199E-05],[119.1223,-5.6715E-05],[119.12572,-5.4652E-05],[119.12914,-5.8262E-05],[119.13257,-5.1559E-05],[119.13599,-4.5372E-05],[119.13941,-5.259E-05],[119.14283,-5.2074E-05],[119.14626,-5.4137E-05],[119.14968,-5.5168E-05],[119.1531,-5.3621E-05],[119.15653,-5.5168E-05]]}
-{"quant":[119.411,-5.2968E-05],"mems":[[119.31397,-5.4137E-05],[119.31739,-5.2074E-05],[119.32081,-5.259E-05],[119.32424,-5.1043E-05],[119.32766,-5.4652E-05],[119.33108,-5.259E-05],[119.3345,-4.795E-05],[119.33793,-4.8465E-05],[119.34135,-5.1043E-05],[119.34477,-5.4652E-05],[119.34819,-5.4137E-05],[119.35162,-5.3621E-05],[119.35504,-5.4137E-05],[119.35846,-5.0528E-05],[119.36189,-4.8981E-05],[119.36531,-5.3621E-05],[119.36873,-5.7746E-05],[119.37215,-5.3621E-05],[119.37558,-5.3106E-05],[119.379,-5.2074E-05],[119.38242,-5.3106E-05],[119.38584,-5.6715E-05],[119.38927,-5.6715E-05],[119.39269,-5.6715E-05],[119.39611,-5.4652E-05],[119.39953,-5.2074E-05],[119.40296,-5.5168E-05],[119.40638,-5.9808E-05],[119.4098,-5.5168E-05],[119.41323,-5.1559E-05],[119.41665,-5.0528E-05],[119.42007,-4.5887E-05],[119.42349,-4.9497E-05],[119.42692,-5.5684E-05],[119.43034,-5.5684E-05],[119.43376,-5.259E-05],[119.43718,-5.1043E-05],[119.44061,-5.0012E-05],[119.44403,-4.7434E-05],[119.44745,-4.9497E-05],[119.45087,-5.5168E-05],[119.4543,-5.8777E-05],[119.45772,-5.7746E-05],[119.46114,-5.5168E-05],[119.46457,-5.5168E-05],[119.46799,-5.8262E-05],[119.47141,-5.5168E-05],[119.47483,-4.7434E-05],[119.47826,-5.1043E-05],[119.48168,-5.7746E-05],[119.4851,-5.4652E-05],[119.48852,-5.1559E-05],[119.49195,-5.3106E-05],[119.49537,-5.1559E-05],[119.49879,-5.0012E-05],[119.50221,-5.4652E-05],[119.50564,-5.723E-05],[119.50906,-5.4137E-05],[119.51248,-5.1043E-05],[119.51591,-5.1559E-05],[119.51933,-4.8465E-05],[119.52275,-5.259E-05],[119.52617,-5.6715E-05],[119.5296,-5.3106E-05],[119.53302,-5.2074E-05],[119.53644,-4.9497E-05],[119.53986,-5.259E-05],[119.54329,-5.6715E-05],[119.54671,-4.9497E-05],[119.55013,-4.8981E-05],[119.55355,-5.5684E-05],[119.55698,-5.2074E-05],[119.5604,-5.1559E-05],[119.56382,-5.3621E-05],[119.56725,-5.1559E-05],[119.57067,-5.6199E-05],[119.57409,-5.3106E-05],[119.57751,-4.795E-05],[119.58094,-5.2074E-05],[119.58436,-5.1043E-05],[119.58778,-4.9497E-05],[119.5912,-5.1559E-05],[119.59463,-5.1043E-05],[119.59805,-4.8981E-05],[119.60147,-5.1043E-05],[119.60489,-5.723E-05],[119.60832,-5.6715E-05],[119.61174,-5.4137E-05]]}
-{"quant":[120.067,-5.2642E-05],"mems":[[119.9677,-5.6715E-05],[119.97112,-5.6199E-05],[119.97454,-5.0012E-05],[119.97797,-4.5887E-05],[119.98139,-5.1559E-05],[119.98481,-4.6919E-05],[119.98823,-5.0012E-05],[119.99166,-5.3621E-05],[119.99508,-4.795E-05],[119.9985,-5.3621E-05],[120.00192,-5.4137E-05],[120.00535,-5.1559E-05],[120.00877,-5.1043E-05],[120.01219,-4.9497E-05],[120.01561,-5.2074E-05],[120.01904,-5.1043E-05],[120.02246,-4.8465E-05],[120.02588,-5.4652E-05],[120.02931,-5.6199E-05],[120.03273,-5.1559E-05],[120.03615,-4.9497E-05],[120.03957,-5.0528E-05],[120.043,-5.4652E-05],[120.04642,-5.3621E-05],[120.04984,-5.3621E-05],[120.05326,-5.3621E-05],[120.05669,-5.3106E-05],[120.06011,-5.6715E-05],[120.06353,-5.6199E-05],[120.06695,-5.7746E-05],[120.07038,-5.6715E-05],[120.0738,-5.1043E-05],[120.07722,-5.0012E-05],[120.08065,-5.1559E-05],[120.08407,-5.4137E-05],[120.08749,-5.6199E-05],[120.09091,-5.6199E-05],[120.09434,-5.5684E-05],[120.09776,-5.3621E-05],[120.10118,-4.9497E-05],[120.1046,-5.259E-05],[120.10803,-5.4652E-05],[120.11145,-5.1043E-05],[120.11487,-5.1043E-05],[120.11829,-5.259E-05],[120.12172,-5.1043E-05],[120.12514,-5.3621E-05],[120.12856,-5.5684E-05],[120.13199,-5.723E-05],[120.13541,-5.5684E-05],[120.13883,-5.3621E-05],[120.14225,-5.3621E-05],[120.14568,-4.6403E-05],[120.1491,-4.6403E-05],[120.15252,-5.2074E-05],[120.15594,-4.7434E-05],[120.15937,-5.0528E-05],[120.16279,-5.5168E-05],[120.16621,-5.1559E-05],[120.16963,-5.259E-05],[120.17306,-5.3621E-05],[120.17648,-4.9497E-05],[120.1799,-5.259E-05],[120.18333,-5.5168E-05],[120.18675,-5.3621E-05],[120.19017,-5.6199E-05],[120.19359,-5.0012E-05],[120.19702,-5.0012E-05],[120.20044,-5.6715E-05],[120.20386,-5.5168E-05],[120.20728,-5.2074E-05],[120.21071,-4.9497E-05],[120.21413,-5.723E-05],[120.21755,-5.6199E-05],[120.22097,-5.0528E-05],[120.2244,-5.3106E-05],[120.22782,-5.2074E-05],[120.23124,-5.3106E-05],[120.23467,-5.3621E-05],[120.23809,-5.4652E-05],[120.24151,-5.4137E-05],[120.24493,-5.1559E-05],[120.24836,-5.4137E-05],[120.25178,-5.259E-05],[120.2552,-5.0528E-05],[120.25862,-5.259E-05],[120.26205,-5.2074E-05],[120.26547,-5.5168E-05],[120.26889,-5.5684E-05]]}
-{"quant":[120.537,-5.3157E-05],"mems":[[120.44003,-5.8262E-05],[120.44345,-5.4652E-05],[120.44687,-5.4652E-05],[120.45029,-5.4652E-05],[120.45372,-4.9497E-05],[120.45714,-5.723E-05],[120.46056,-5.3106E-05],[120.46398,-4.8981E-05],[120.46741,-5.2074E-05],[120.47083,-4.6403E-05],[120.47425,-5.1559E-05],[120.47767,-5.5684E-05],[120.4811,-5.4652E-05],[120.48452,-5.5168E-05],[120.48794,-5.3106E-05],[120.49137,-5.3106E-05],[120.49479,-5.3106E-05],[120.49821,-4.9497E-05],[120.50163,-5.1043E-05],[120.50506,-5.6715E-05],[120.50848,-5.4652E-05],[120.5119,-4.8465E-05],[120.51532,-4.8981E-05],[120.51875,-5.4137E-05],[120.52217,-5.4137E-05],[120.52559,-5.2074E-05],[120.52901,-5.1559E-05],[120.53244,-4.8465E-05],[120.53586,-5.259E-05],[120.53928,-5.5168E-05],[120.54271,-5.3106E-05],[120.54613,-5.723E-05],[120.54955,-5.5168E-05],[120.55297,-4.9497E-05],[120.5564,-5.1043E-05],[120.55982,-5.259E-05],[120.56324,-5.3106E-05],[120.56666,-5.7746E-05],[120.57009,-5.3621E-05],[120.57351,-5.0528E-05],[120.57693,-5.4652E-05],[120.58035,-5.5168E-05],[120.58378,-5.259E-05],[120.5872,-5.1559E-05],[120.59062,-5.4652E-05],[120.59405,-5.2074E-05],[120.59747,-5.0528E-05],[120.60089,-5.723E-05],[120.60431,-5.8262E-05],[120.60774,-5.3621E-05],[120.61116,-5.259E-05],[120.61458,-5.1559E-05],[120.618,-5.2074E-05],[120.62143,-5.4137E-05],[120.62485,-5.2074E-05],[120.62827,-5.0012E-05],[120.63169,-4.6919E-05],[120.63512,-5.2074E-05],[120.63854,-5.4137E-05],[120.64196,-4.9497E-05],[120.64539,-5.1559E-05],[120.64881,-5.3106E-05],[120.65223,-5.3106E-05],[120.65565,-5.259E-05],[120.65908,-5.0528E-05],[120.6625,-5.0528E-05],[120.66592,-5.1559E-05],[120.66934,-4.9497E-05],[120.67277,-5.259E-05],[120.67619,-5.4652E-05],[120.67961,-5.3106E-05],[120.68303,-5.3106E-05],[120.68646,-5.3106E-05],[120.68988,-5.3106E-05],[120.6933,-5.2074E-05],[120.69673,-5.4652E-05],[120.70015,-5.6199E-05],[120.70357,-5.5684E-05],[120.70699,-5.4137E-05],[120.71042,-4.9497E-05],[120.71384,-5.1559E-05],[120.71726,-5.8777E-05],[120.72068,-5.723E-05],[120.72411,-5.1043E-05],[120.72753,-4.8465E-05],[120.73095,-4.7434E-05],[120.73437,-5.0012E-05],[120.7378,-5.5168E-05]]}
-{"quant":[121.019,-5.2453E-05],"mems":[[120.9192,-5.3621E-05],[120.92262,-5.5684E-05],[120.92604,-5.3621E-05],[120.92947,-5.723E-05],[120.93289,-5.4652E-05],[120.93631,-4.5887E-05],[120.93973,-5.1043E-05],[120.94316,-5.1043E-05],[120.94658,-4.9497E-05],[120.95,-5.1559E-05],[120.95343,-5.259E-05],[120.95685,-5.1043E-05],[120.96027,-5.4137E-05],[120.96369,-6.0324E-05],[120.96712,-5.259E-05],[120.97054,-5.1043E-05],[120.97396,-5.6715E-05],[120.97738,-5.4137E-05],[120.98081,-5.259E-05],[120.98423,-5.1043E-05],[120.98765,-5.1559E-05],[120.99107,-5.5684E-05],[120.9945,-5.3106E-05],[120.99792,-5.3106E-05],[121.00134,-5.6199E-05],[121.00477,-5.2074E-05],[121.00819,-5.1559E-05],[121.01161,-5.4137E-05],[121.01503,-5.6199E-05],[121.01846,-5.5168E-05],[121.02188,-5.259E-05],[121.0253,-4.8981E-05],[121.02872,-4.8465E-05],[121.03215,-5.3621E-05],[121.03557,-5.4652E-05],[121.03899,-5.3106E-05],[121.04241,-5.0012E-05],[121.04584,-5.0528E-05],[121.04926,-5.259E-05],[121.05268,-5.259E-05],[121.05611,-5.3106E-05],[121.05953,-5.4652E-05],[121.06295,-5.723E-05],[121.06637,-5.259E-05],[121.0698,-4.4341E-05],[121.07322,-4.6403E-05],[121.07664,-5.1559E-05],[121.08006,-5.3106E-05],[121.08349,-5.4652E-05],[121.08691,-5.3106E-05],[121.09033,-4.9497E-05],[121.09375,-5.4137E-05],[121.09718,-5.7746E-05],[121.1006,-5.6715E-05],[121.10402,-5.5168E-05],[121.10745,-5.1043E-05],[121.11087,-5.1559E-05],[121.11429,-5.1559E-05],[121.11771,-5.3621E-05],[121.12114,-5.4652E-05],[121.12456,-5.3106E-05],[121.12798,-5.3621E-05],[121.1314,-4.9497E-05],[121.13483,-5.4137E-05],[121.13825,-5.4137E-05],[121.14167,-5.6715E-05],[121.14509,-5.7746E-05],[121.14852,-5.0528E-05],[121.15194,-5.6715E-05],[121.15536,-5.3621E-05],[121.15879,-4.8981E-05],[121.16221,-5.259E-05],[121.16563,-5.4137E-05],[121.16905,-5.4137E-05],[121.17248,-5.2074E-05],[121.1759,-5.4652E-05],[121.17932,-5.0528E-05],[121.18274,-4.8981E-05],[121.18617,-4.8981E-05],[121.18959,-4.9497E-05],[121.19301,-5.6199E-05],[121.19643,-5.2074E-05],[121.19986,-5.1043E-05],[121.20328,-5.5684E-05],[121.2067,-5.4652E-05],[121.21013,-5.4137E-05],[121.21355,-5.2074E-05],[121.21697,-5.1043E-05],[121.22039,-5.6199E-05]]}
-{"quant":[121.489,-0.13617],"mems":[[121.39153,-5.1559E-05],[121.39495,-5.3106E-05],[121.39837,-5.723E-05],[121.40179,-5.6199E-05],[121.40522,-5.1043E-05],[121.40864,-5.0528E-05],[121.41206,-5.4652E-05],[121.41549,-5.3621E-05],[121.41891,-5.0012E-05],[121.42233,-4.8465E-05],[121.42575,-4.8981E-05],[121.42918,-5.1043E-05],[121.4326,-5.0012E-05],[121.43602,-5.1559E-05],[121.43944,-5.4652E-05],[121.44287,-5.3106E-05],[121.44629,-5.259E-05],[121.44971,-5.259E-05],[121.45313,-5.4137E-05],[121.45656,-5.5684E-05],[121.45998,-5.5168E-05],[121.4634,-5.1043E-05],[121.46683,-4.8465E-05],[121.47025,-5.3106E-05],[121.47367,-5.3621E-05],[121.47709,-5.5684E-05],[121.48052,-5.5168E-05],[121.48394,-5.0012E-05],[121.48736,-5.3106E-05],[121.49078,-5.3621E-05],[121.49421,-5.0528E-05],[121.49763,-4.9497E-05],[121.50105,-5.1043E-05],[121.50447,-5.2074E-05],[121.5079,-5.0528E-05],[121.51132,-5.1559E-05],[121.51474,-5.723E-05],[121.51817,-5.723E-05],[121.52159,-5.4652E-05],[121.52501,-5.259E-05],[121.52843,-5.0012E-05],[121.53186,-5.1043E-05],[121.53528,-5.3106E-05],[121.5387,-5.3621E-05],[121.54212,-5.3106E-05],[121.54555,-5.0012E-05],[121.54897,-4.8981E-05],[121.55239,-5.259E-05],[121.55581,-5.3106E-05],[121.55924,-5.0012E-05],[121.56266,-5.259E-05],[121.56608,-5.3106E-05],[121.56951,-5.4652E-05],[121.57293,-6.0324E-05],[121.57635,-5.3106E-05],[121.57977,-5.1559E-05],[121.5832,-5.0528E-05],[121.58662,-4.6919E-05],[121.59004,-5.5168E-05],[121.59346,-5.3106E-05],[121.59689,-5.2074E-05],[121.60031,-5.3106E-05],[121.60373,-5.1043E-05],[121.60715,-5.1559E-05],[121.61058,-5.1043E-05],[121.614,-5.3621E-05],[121.61744,-5.5168E-05],[121.62087,-5.1559E-05],[121.62431,-4.6919E-05],[121.62775,-5.2074E-05],[121.63119,-5.723E-05],[121.63462,-5.8262E-05],[121.63806,-5.7746E-05],[121.6415,-5.5684E-05],[121.64494,-5.259E-05],[121.64837,-5.0528E-05],[121.65181,-5.259E-05],[121.65525,-5.0528E-05],[121.65869,-5.5684E-05],[121.66212,-5.5684E-05],[121.66556,-4.7434E-05],[121.669,-4.6919E-05],[121.67243,-4.6919E-05],[121.67587,-5.259E-05],[121.67931,-5.259E-05],[121.68275,-5.0528E-05],[121.68618,-5.3106E-05],[121.68962,-5.4652E-05]]}
-{"quant":[121.957,-5.2951E-05],"mems":[[121.85805,-5.3621E-05],[121.86149,-5.4137E-05],[121.86493,-5.4137E-05],[121.86836,-5.4137E-05],[121.8718,-5.9808E-05],[121.87524,-5.4137E-05],[121.87867,-5.259E-05],[121.88211,-5.7746E-05],[121.88555,-5.5684E-05],[121.88899,-5.5168E-05],[121.89242,-5.3106E-05],[121.89586,-5.4137E-05],[121.8993,-5.2074E-05],[121.90274,-5.0528E-05],[121.90617,-5.4652E-05],[121.90961,-5.3106E-05],[121.91305,-5.0528E-05],[121.91649,-5.3106E-05],[121.91992,-5.723E-05],[121.92336,-5.4137E-05],[121.9268,-5.2074E-05],[121.93023,-5.1559E-05],[121.93367,-5.3621E-05],[121.93711,-5.4137E-05],[121.94055,-5.4137E-05],[121.94398,-5.4652E-05],[121.94742,-5.0012E-05],[121.95086,-5.2074E-05],[121.9543,-5.3621E-05],[121.95773,-5.1559E-05],[121.96117,-5.1559E-05],[121.96461,-5.259E-05],[121.96805,-5.6199E-05],[121.97148,-5.723E-05],[121.97492,-5.3621E-05],[121.97836,-5.3106E-05],[121.98179,-5.5168E-05],[121.98523,-4.8465E-05],[121.98867,-4.7434E-05],[121.99211,-5.1559E-05],[121.99554,-5.259E-05],[121.99898,-5.5684E-05],[122.00242,-5.259E-05],[122.00586,-5.0528E-05],[122.00929,-5.1043E-05],[122.01273,-5.1043E-05],[122.01617,-5.6199E-05],[122.01961,-5.6715E-05],[122.02304,-5.3621E-05],[122.02648,-5.3106E-05],[122.02992,-5.4137E-05],[122.03335,-5.3106E-05],[122.03679,-5.259E-05],[122.04023,-5.4652E-05],[122.04367,-5.2074E-05],[122.0471,-5.2074E-05],[122.05054,-5.723E-05],[122.05398,-5.2074E-05],[122.05742,-4.8981E-05],[122.06085,-5.1043E-05],[122.06429,-5.0528E-05],[122.06773,-5.2074E-05],[122.07117,-5.3621E-05],[122.0746,-5.3106E-05],[122.07804,-5.3106E-05],[122.08148,-5.3106E-05],[122.08491,-5.259E-05],[122.08835,-5.3621E-05],[122.09179,-5.4137E-05],[122.09523,-5.1559E-05],[122.09866,-5.1559E-05],[122.1021,-5.4652E-05],[122.10554,-5.0528E-05],[122.10898,-4.5887E-05],[122.11241,-5.0012E-05],[122.11585,-5.6199E-05],[122.11929,-5.8262E-05],[122.12273,-5.3106E-05],[122.12616,-4.8981E-05],[122.1296,-5.1043E-05],[122.13304,-5.2074E-05],[122.13647,-5.4652E-05],[122.13991,-5.3106E-05],[122.14335,-5.0528E-05],[122.14679,-5.4137E-05],[122.15022,-4.9497E-05],[122.15366,-5.2074E-05],[122.1571,-5.1559E-05]]}
-{"quant":[122.597,-5.3871E-05],"mems":[[122.49739,-5.1043E-05],[122.50083,-4.8465E-05],[122.50427,-4.795E-05],[122.50771,-4.9497E-05],[122.51114,-5.3106E-05],[122.51458,-5.4652E-05],[122.51802,-5.5168E-05],[122.52146,-5.1559E-05],[122.52489,-5.0012E-05],[122.52833,-5.0012E-05],[122.53177,-5.2074E-05],[122.53521,-5.259E-05],[122.53864,-5.259E-05],[122.54208,-5.0528E-05],[122.54552,-4.9497E-05],[122.54895,-5.1043E-05],[122.55239,-5.3106E-05],[122.55583,-5.2074E-05],[122.55927,-4.8981E-05],[122.5627,-5.1043E-05],[122.56614,-4.8465E-05],[122.56958,-4.8465E-05],[122.57302,-5.3106E-05],[122.57645,-5.3621E-05],[122.57989,-5.4137E-05],[122.58333,-5.1043E-05],[122.58677,-5.0012E-05],[122.5902,-5.3106E-05],[122.59364,-5.3621E-05],[122.59708,-5.3106E-05],[122.60051,-5.1043E-05],[122.60395,-5.3106E-05],[122.60739,-5.5684E-05],[122.61083,-5.5168E-05],[122.61426,-5.5168E-05],[122.6177,-5.6199E-05],[122.62114,-5.5168E-05],[122.62458,-5.4137E-05],[122.62801,-5.3106E-05],[122.63145,-5.0012E-05],[122.63489,-5.3106E-05],[122.63833,-5.7746E-05],[122.64176,-5.4137E-05],[122.6452,-5.1043E-05],[122.64864,-5.5684E-05],[122.65207,-5.8262E-05],[122.65551,-5.4137E-05],[122.65895,-5.5684E-05],[122.66239,-5.1559E-05],[122.66582,-4.8465E-05],[122.66926,-5.3106E-05],[122.6727,-5.5168E-05],[122.67614,-5.723E-05],[122.67957,-5.6715E-05],[122.68301,-5.3106E-05],[122.68645,-5.0528E-05],[122.68989,-5.1559E-05],[122.69332,-5.3621E-05],[122.69676,-5.5684E-05],[122.7002,-5.1559E-05],[122.70363,-5.0012E-05],[122.70707,-5.2074E-05],[122.71051,-5.3621E-05],[122.71395,-5.6199E-05],[122.71738,-5.5684E-05],[122.72082,-5.723E-05],[122.72426,-5.5684E-05],[122.7277,-5.2074E-05],[122.73113,-5.259E-05],[122.73457,-5.3621E-05],[122.73801,-5.4137E-05],[122.74145,-5.1559E-05],[122.74488,-4.9497E-05],[122.74832,-5.4652E-05],[122.75176,-5.5168E-05],[122.75519,-5.1559E-05],[122.75863,-5.4652E-05],[122.76207,-5.1043E-05],[122.76551,-5.0528E-05],[122.76894,-5.5684E-05],[122.77238,-5.2074E-05],[122.77582,-5.1043E-05],[122.77926,-5.1043E-05],[122.78269,-5.259E-05],[122.78613,-5.3621E-05],[122.78957,-5.1043E-05],[122.79301,-5.1559E-05],[122.79644,-5.0528E-05],[122.79988,-5.2074E-05]]}
-{"quant":[123.056,-5.3535E-05],"mems":[[122.958,-5.3621E-05],[122.96143,-5.4652E-05],[122.96487,-5.2074E-05],[122.96831,-5.5168E-05],[122.97175,-5.8262E-05],[122.97518,-5.6199E-05],[122.97862,-6.1355E-05],[122.98206,-5.723E-05],[122.9855,-5.259E-05],[122.98893,-5.6199E-05],[122.99237,-5.3621E-05],[122.99581,-5.7746E-05],[122.99925,-6.0324E-05],[123.00268,-5.2074E-05],[123.00612,-5.1043E-05],[123.00956,-5.4137E-05],[123.01299,-5.5684E-05],[123.01643,-5.6715E-05],[123.01987,-5.0528E-05],[123.02331,-4.7434E-05],[123.02674,-5.0012E-05],[123.03018,-5.259E-05],[123.03362,-5.3621E-05],[123.03706,-5.259E-05],[123.04049,-5.3106E-05],[123.04393,-5.4137E-05],[123.04737,-5.3621E-05],[123.05081,-5.3621E-05],[123.05424,-5.6715E-05],[123.05768,-5.3106E-05],[123.06112,-5.0528E-05],[123.06455,-5.723E-05],[123.06799,-5.8777E-05],[123.07143,-5.4652E-05],[123.07487,-5.3106E-05],[123.0783,-5.5684E-05],[123.08174,-5.259E-05],[123.08518,-5.0012E-05],[123.08862,-5.1043E-05],[123.09205,-4.9497E-05],[123.09549,-5.4652E-05],[123.09893,-5.6199E-05],[123.10237,-5.3621E-05],[123.1058,-5.1043E-05],[123.10924,-5.3621E-05],[123.11268,-5.7746E-05],[123.11611,-5.1559E-05],[123.11955,-4.9497E-05],[123.12299,-5.1559E-05],[123.12643,-5.3621E-05],[123.12986,-5.4137E-05],[123.1333,-5.5684E-05],[123.13674,-5.9293E-05],[123.14018,-5.6715E-05],[123.14361,-5.2074E-05],[123.14705,-5.0528E-05],[123.15049,-5.259E-05],[123.15393,-5.3621E-05],[123.15736,-5.2074E-05],[123.1608,-5.2074E-05],[123.16424,-4.4341E-05],[123.16767,-4.5372E-05],[123.17111,-5.6199E-05],[123.17455,-5.5168E-05],[123.17799,-5.723E-05],[123.18142,-5.4137E-05],[123.18486,-5.0012E-05],[123.1883,-5.723E-05],[123.19174,-5.3621E-05],[123.19517,-5.5684E-05],[123.19861,-5.7746E-05],[123.20205,-5.0528E-05],[123.20549,-5.2074E-05],[123.20892,-5.4137E-05],[123.21236,-5.5684E-05],[123.2158,-5.5684E-05],[123.21923,-5.2074E-05],[123.22267,-5.2074E-05],[123.22611,-5.259E-05],[123.22955,-5.3106E-05],[123.23298,-5.6715E-05],[123.23642,-5.6715E-05],[123.23986,-5.1043E-05],[123.2433,-5.2074E-05],[123.24673,-5.1559E-05],[123.25017,-5.0528E-05],[123.25361,-5.6199E-05],[123.25705,-5.6199E-05]]}
-{"quant":[123.505,-5.2573E-05],"mems":[[123.40829,-5.4652E-05],[123.41173,-5.4137E-05],[123.41516,-5.0012E-05],[123.4186,-4.8465E-05],[123.42204,-4.7434E-05],[123.42547,-4.8981E-05],[123.42891,-5.723E-05],[123.43235,-5.9293E-05],[123.43579,-5.3621E-05],[123.43922,-5.3621E-05],[123.44266,-5.7746E-05],[123.4461,-5.7746E-05],[123.44954,-5.4137E-05],[123.45297,-5.4137E-05],[123.45641,-5.6199E-05],[123.45985,-5.0012E-05],[123.46329,-5.0012E-05],[123.46672,-5.2074E-05],[123.47016,-5.1559E-05],[123.4736,-5.7746E-05],[123.47703,-5.5684E-05],[123.48047,-5.5168E-05],[123.48391,-5.4137E-05],[123.48735,-4.8981E-05],[123.49078,-5.4137E-05],[123.49422,-5.5684E-05],[123.49766,-5.1559E-05],[123.5011,-5.2074E-05],[123.50453,-5.5168E-05],[123.50797,-5.5168E-05],[123.51141,-5.259E-05],[123.51485,-5.2074E-05],[123.51828,-5.2074E-05],[123.52172,-5.4137E-05],[123.52516,-5.0012E-05],[123.52859,-5.2074E-05],[123.53203,-5.4652E-05],[123.53547,-5.3621E-05],[123.53891,-5.0012E-05],[123.54234,-4.5887E-05],[123.54578,-5.259E-05],[123.54922,-5.259E-05],[123.55266,-5.3621E-05],[123.55609,-5.3106E-05],[123.55953,-5.0012E-05],[123.56297,-4.7434E-05],[123.56641,-4.6403E-05],[123.56984,-5.5168E-05],[123.57328,-5.4652E-05],[123.57672,-5.3106E-05],[123.58015,-5.4652E-05],[123.58359,-5.259E-05],[123.58703,-5.5168E-05],[123.59047,-5.3621E-05],[123.5939,-5.4652E-05],[123.59734,-5.4652E-05],[123.60078,-5.1559E-05],[123.60422,-5.4652E-05],[123.60765,-5.4652E-05],[123.61109,-5.5684E-05],[123.61453,-5.6199E-05],[123.61797,-5.2074E-05],[123.6214,-5.1043E-05],[123.62484,-4.6919E-05],[123.62828,-4.9497E-05],[123.63171,-5.5168E-05],[123.63515,-4.9497E-05],[123.63859,-5.0012E-05],[123.64203,-5.259E-05],[123.64546,-5.0528E-05],[123.6489,-5.3621E-05],[123.65234,-5.7746E-05],[123.65578,-6.0839E-05],[123.65921,-5.5684E-05],[123.66265,-4.8981E-05],[123.66609,-5.259E-05],[123.66953,-5.5168E-05],[123.67296,-5.4137E-05],[123.6764,-5.6715E-05],[123.67984,-5.2074E-05],[123.68327,-5.2074E-05],[123.68671,-5.5168E-05],[123.69015,-5.0012E-05],[123.69359,-5.4137E-05],[123.69702,-5.4137E-05],[123.70046,-4.6919E-05],[123.7039,-5.1043E-05],[123.70734,-5.7746E-05]]}
-{"quant":[123.988,-5.3501E-05],"mems":[[123.88951,-5.2074E-05],[123.89295,-5.259E-05],[123.89639,-5.4652E-05],[123.89983,-5.3106E-05],[123.90326,-5.259E-05],[123.9067,-5.5684E-05],[123.91014,-5.6199E-05],[123.91358,-5.3621E-05],[123.91701,-5.1559E-05],[123.92045,-4.795E-05],[123.92389,-4.795E-05],[123.92733,-5.0012E-05],[123.93076,-5.2074E-05],[123.9342,-5.3106E-05],[123.93764,-5.259E-05],[123.94107,-5.5684E-05],[123.94451,-5.259E-05],[123.94795,-5.259E-05],[123.95139,-5.7746E-05],[123.95482,-5.259E-05],[123.95826,-5.259E-05],[123.9617,-5.1043E-05],[123.96514,-5.1559E-05],[123.96857,-5.723E-05],[123.97201,-5.3621E-05],[123.97545,-5.6715E-05],[123.97889,-5.5168E-05],[123.98232,-5.0528E-05],[123.98576,-5.1559E-05],[123.9892,-5.5168E-05],[123.99263,-5.6199E-05],[123.99607,-5.4137E-05],[123.99951,-5.0528E-05],[124.00295,-4.9497E-05],[124.00638,-5.9808E-05],[124.00982,-5.9293E-05],[124.01326,-5.6715E-05],[124.0167,-5.7746E-05],[124.02013,-5.2074E-05],[124.02357,-5.2074E-05],[124.02701,-5.1043E-05],[124.03045,-5.2074E-05],[124.03388,-5.4137E-05],[124.03732,-5.259E-05],[124.04076,-5.0528E-05],[124.04419,-5.1559E-05],[124.04763,-5.5168E-05],[124.05107,-5.259E-05],[124.05451,-5.1043E-05],[124.05794,-5.8262E-05],[124.06138,-5.6715E-05],[124.06482,-4.8981E-05],[124.06826,-5.0528E-05],[124.07169,-5.3621E-05],[124.07513,-5.2074E-05],[124.07857,-5.2074E-05],[124.08201,-5.4137E-05],[124.08544,-5.2074E-05],[124.08888,-5.259E-05],[124.09232,-5.3106E-05],[124.09575,-5.0528E-05],[124.09919,-5.0012E-05],[124.10263,-5.0012E-05],[124.10607,-5.2074E-05],[124.1095,-5.4652E-05],[124.11294,-5.4652E-05],[124.11638,-5.4137E-05],[124.11982,-5.5684E-05],[124.12325,-5.259E-05],[124.12669,-4.8465E-05],[124.13013,-5.259E-05],[124.13357,-5.3621E-05],[124.137,-5.0012E-05],[124.14044,-5.1559E-05],[124.14388,-5.3621E-05],[124.14731,-5.2074E-05],[124.15075,-5.6199E-05],[124.15419,-5.7746E-05],[124.15763,-5.3106E-05],[124.16106,-5.5168E-05],[124.1645,-5.3621E-05],[124.16794,-5.2074E-05],[124.17138,-5.3621E-05],[124.17481,-5.4652E-05],[124.17825,-5.4137E-05],[124.18169,-5.259E-05],[124.18513,-5.0528E-05],[124.18856,-5.259E-05]]}
-{"quant":[124.498,-5.2264E-05],"mems":[[124.39856,-5.4137E-05],[124.402,-5.2074E-05],[124.40545,-5.0528E-05],[124.40889,-5.1559E-05],[124.41233,-5.4652E-05],[124.41577,-5.4137E-05],[124.41922,-5.3106E-05],[124.42266,-5.4652E-05],[124.4261,-5.6715E-05],[124.42954,-5.6715E-05],[124.43299,-5.8262E-05],[124.43643,-5.5168E-05],[124.43987,-5.7746E-05],[124.44331,-5.6715E-05],[124.44676,-5.1559E-05],[124.4502,-5.6715E-05],[124.45364,-5.4652E-05],[124.45709,-5.3106E-05],[124.46053,-5.6199E-05],[124.46397,-5.3621E-05],[124.46741,-4.8465E-05],[124.47086,-5.2074E-05],[124.4743,-5.6715E-05],[124.47774,-5.1043E-05],[124.48118,-5.1559E-05],[124.48463,-5.4652E-05],[124.48807,-4.9497E-05],[124.49151,-5.1043E-05],[124.49495,-5.5684E-05],[124.4984,-5.3106E-05],[124.50184,-5.0528E-05],[124.50528,-5.0528E-05],[124.50873,-5.3106E-05],[124.51217,-5.3106E-05],[124.51561,-5.259E-05],[124.51905,-5.0528E-05],[124.5225,-4.7434E-05],[124.52594,-5.1043E-05],[124.52938,-5.1043E-05],[124.53282,-5.1559E-05],[124.53627,-5.3621E-05],[124.53971,-5.259E-05],[124.54315,-5.2074E-05],[124.54659,-5.4137E-05],[124.55004,-5.6715E-05],[124.55348,-5.5168E-05],[124.55692,-5.2074E-05],[124.56037,-5.3621E-05],[124.56381,-5.3106E-05],[124.56725,-5.1559E-05],[124.57069,-5.3621E-05],[124.57414,-5.0012E-05],[124.57758,-5.259E-05],[124.58102,-5.4137E-05],[124.58446,-4.6919E-05],[124.58791,-5.0528E-05],[124.59135,-5.3621E-05],[124.59479,-5.4137E-05],[124.59823,-5.3106E-05],[124.60168,-5.4137E-05],[124.60512,-5.4137E-05],[124.60856,-5.0012E-05],[124.61201,-5.3621E-05],[124.61545,-4.9497E-05],[124.61889,-5.2074E-05],[124.62233,-5.5168E-05],[124.62578,-5.259E-05],[124.62922,-5.259E-05],[124.63266,-5.1043E-05],[124.6361,-5.2074E-05],[124.63955,-5.0012E-05],[124.64299,-5.1559E-05],[124.64643,-5.723E-05],[124.64987,-6.1355E-05],[124.65332,-5.9808E-05],[124.65676,-5.4137E-05],[124.6602,-4.795E-05],[124.66365,-4.8981E-05],[124.66709,-5.259E-05],[124.67053,-5.3621E-05],[124.67397,-5.7746E-05],[124.67742,-5.0528E-05],[124.68086,-5.1043E-05],[124.6843,-5.5684E-05],[124.68774,-5.4137E-05],[124.69119,-5.8777E-05],[124.69463,-5.6199E-05],[124.69807,-5.4652E-05]]}
-{"quant":[125.177,-5.3415E-05],"mems":[[125.08021,-4.9497E-05],[125.08365,-4.6403E-05],[125.08709,-5.0528E-05],[125.09054,-5.4137E-05],[125.09398,-5.3621E-05],[125.09742,-5.259E-05],[125.10086,-5.4652E-05],[125.10431,-5.259E-05],[125.10775,-5.3621E-05],[125.11119,-5.5684E-05],[125.11463,-5.0528E-05],[125.11808,-5.3106E-05],[125.12152,-4.795E-05],[125.12496,-4.7434E-05],[125.12841,-5.7746E-05],[125.13185,-5.3106E-05],[125.13529,-5.5168E-05],[125.13873,-5.7746E-05],[125.14218,-5.5168E-05],[125.14562,-5.3621E-05],[125.14906,-4.8981E-05],[125.1525,-5.4137E-05],[125.15595,-5.3621E-05],[125.15939,-4.8465E-05],[125.16283,-5.1559E-05],[125.16627,-5.259E-05],[125.16972,-5.2074E-05],[125.17316,-5.3621E-05],[125.1766,-5.4652E-05],[125.18005,-5.5168E-05],[125.18349,-5.3106E-05],[125.18693,-5.5684E-05],[125.19037,-5.7746E-05],[125.19382,-5.1043E-05],[125.19726,-5.259E-05],[125.2007,-5.6715E-05],[125.20414,-5.723E-05],[125.20759,-5.4652E-05],[125.21103,-4.7434E-05],[125.21447,-5.0012E-05],[125.21791,-5.5168E-05],[125.22136,-5.4652E-05],[125.2248,-5.3106E-05],[125.22824,-5.5168E-05],[125.23169,-5.4137E-05],[125.23513,-5.4652E-05],[125.23857,-5.6199E-05],[125.24201,-5.2074E-05],[125.24546,-5.4652E-05],[125.2489,-5.4137E-05],[125.25234,-5.1043E-05],[125.25578,-5.2074E-05],[125.25923,-5.2074E-05],[125.26267,-4.9497E-05],[125.26611,-5.2074E-05],[125.26955,-5.4652E-05],[125.273,-5.0528E-05],[125.27644,-5.3621E-05],[125.27988,-5.1559E-05],[125.28333,-5.1043E-05],[125.28677,-5.8262E-05],[125.29021,-5.6199E-05],[125.29365,-5.6199E-05],[125.2971,-5.6715E-05],[125.30054,-5.3106E-05],[125.30398,-5.1043E-05],[125.30742,-5.5684E-05],[125.31087,-5.8262E-05],[125.31431,-5.3621E-05],[125.31775,-5.5684E-05],[125.32119,-5.8777E-05],[125.32464,-5.1043E-05],[125.32808,-4.9497E-05],[125.33152,-5.5684E-05],[125.33497,-5.723E-05],[125.33841,-5.7746E-05],[125.34185,-5.1043E-05],[125.34529,-5.0012E-05],[125.34874,-5.5684E-05],[125.35218,-5.5168E-05],[125.35562,-5.259E-05],[125.35906,-5.3621E-05],[125.36251,-5.259E-05],[125.36595,-4.795E-05],[125.36939,-5.6715E-05],[125.37283,-5.7746E-05],[125.37628,-5.3106E-05],[125.37972,-5.6199E-05]]}
-{"quant":[125.639,-5.3553E-05],"mems":[[125.54153,-5.0012E-05],[125.54497,-5.4652E-05],[125.54841,-5.6199E-05],[125.55185,-5.5168E-05],[125.5553,-5.7746E-05],[125.55874,-5.3621E-05],[125.56218,-5.1043E-05],[125.56562,-4.8981E-05],[125.56907,-5.259E-05],[125.57251,-5.4137E-05],[125.57595,-5.0528E-05],[125.57939,-5.3106E-05],[125.58284,-5.723E-05],[125.58628,-5.4137E-05],[125.58972,-5.1559E-05],[125.59317,-5.3621E-05],[125.59661,-5.3621E-05],[125.60005,-4.8981E-05],[125.60349,-4.6403E-05],[125.60694,-5.3106E-05],[125.61038,-5.4652E-05],[125.61382,-5.5684E-05],[125.61726,-5.723E-05],[125.62071,-5.0012E-05],[125.62415,-4.6919E-05],[125.62759,-5.259E-05],[125.63103,-5.6199E-05],[125.63448,-5.6715E-05],[125.63792,-5.723E-05],[125.64136,-5.6199E-05],[125.64481,-5.259E-05],[125.64825,-5.1559E-05],[125.65169,-5.7746E-05],[125.65513,-5.3621E-05],[125.65858,-4.8465E-05],[125.66202,-5.2074E-05],[125.66546,-5.5168E-05],[125.6689,-5.7746E-05],[125.67235,-5.259E-05],[125.67579,-5.259E-05],[125.67923,-5.3621E-05],[125.68267,-5.1559E-05],[125.68612,-5.4137E-05],[125.68956,-5.3621E-05],[125.693,-5.2074E-05],[125.69645,-5.1559E-05],[125.69989,-5.259E-05],[125.70333,-4.9497E-05],[125.70677,-5.0012E-05],[125.71022,-5.4137E-05],[125.71366,-5.5684E-05],[125.7171,-5.723E-05],[125.72054,-5.4137E-05],[125.72399,-5.2074E-05],[125.72743,-5.8777E-05],[125.73087,-5.9293E-05],[125.73431,-5.5684E-05],[125.73776,-5.4137E-05],[125.7412,-4.6403E-05],[125.74464,-5.1043E-05],[125.74809,-5.4652E-05],[125.75153,-4.9497E-05],[125.75497,-5.259E-05],[125.75841,-5.3106E-05],[125.76186,-5.1043E-05],[125.7653,-5.1043E-05],[125.76874,-5.2074E-05],[125.77218,-5.0012E-05],[125.77563,-5.0528E-05],[125.77907,-5.7746E-05],[125.78251,-5.3106E-05],[125.78595,-5.0528E-05],[125.7894,-5.3621E-05],[125.79284,-5.0528E-05],[125.79628,-5.3621E-05],[125.79973,-5.3106E-05],[125.80317,-5.1559E-05],[125.80661,-5.259E-05],[125.81005,-5.259E-05],[125.8135,-5.6199E-05],[125.81694,-5.6199E-05],[125.82038,-5.3106E-05],[125.82382,-5.1043E-05],[125.82727,-5.3621E-05],[125.83071,-5.4652E-05],[125.83415,-5.4652E-05],[125.83759,-5.7746E-05],[125.84104,-5.5684E-05]]}
-{"quant":[126.101,-5.2178E-05],"mems":[[126.00284,-5.5684E-05],[126.00629,-5.4137E-05],[126.00973,-5.6199E-05],[126.01317,-5.6715E-05],[126.01661,-5.4137E-05],[126.02006,-5.3621E-05],[126.0235,-5.0012E-05],[126.02694,-5.3621E-05],[126.03038,-5.4652E-05],[126.03383,-5.259E-05],[126.03727,-5.5168E-05],[126.04071,-5.259E-05],[126.04415,-5.5168E-05],[126.0476,-5.6715E-05],[126.05104,-5.4137E-05],[126.05448,-5.3621E-05],[126.05793,-5.4137E-05],[126.06137,-5.3106E-05],[126.06481,-5.5684E-05],[126.06825,-5.5684E-05],[126.0717,-5.5168E-05],[126.07514,-5.6199E-05],[126.07858,-5.1043E-05],[126.08202,-5.4137E-05],[126.08547,-5.3106E-05],[126.08891,-5.5684E-05],[126.09235,-5.8262E-05],[126.09579,-5.4137E-05],[126.09924,-5.723E-05],[126.10268,-5.1559E-05],[126.10612,-5.3106E-05],[126.10957,-5.8262E-05],[126.11301,-5.4652E-05],[126.11645,-5.259E-05],[126.11989,-5.2074E-05],[126.12334,-5.0528E-05],[126.12678,-5.0528E-05],[126.13022,-5.6199E-05],[126.13366,-5.5168E-05],[126.13711,-5.2074E-05],[126.14055,-5.0528E-05],[126.14399,-5.0528E-05],[126.14743,-5.0012E-05],[126.15088,-4.795E-05],[126.15432,-5.2074E-05],[126.15776,-5.1043E-05],[126.16121,-4.9497E-05],[126.16465,-5.5168E-05],[126.16809,-5.259E-05],[126.17153,-5.3621E-05],[126.17498,-5.723E-05],[126.17842,-5.0528E-05],[126.18186,-4.7434E-05],[126.1853,-4.9497E-05],[126.18875,-5.1043E-05],[126.19219,-5.259E-05],[126.19563,-5.3621E-05],[126.19907,-5.1559E-05],[126.20252,-5.2074E-05],[126.20596,-5.6199E-05],[126.2094,-5.723E-05],[126.21285,-5.6715E-05],[126.21629,-5.1043E-05],[126.21973,-5.0012E-05],[126.22317,-5.1559E-05],[126.22662,-5.259E-05],[126.23006,-5.2074E-05],[126.2335,-5.1043E-05],[126.23694,-6.0324E-05],[126.24039,-5.6715E-05],[126.24383,-5.2074E-05],[126.24727,-5.5684E-05],[126.25071,-5.4137E-05],[126.25416,-5.4137E-05],[126.2576,-5.259E-05],[126.26104,-5.1043E-05],[126.26449,-5.259E-05],[126.26793,-5.8777E-05],[126.27137,-5.723E-05],[126.27481,-5.0528E-05],[126.27826,-5.259E-05],[126.2817,-4.8465E-05],[126.28514,-4.8981E-05],[126.28858,-5.723E-05],[126.29203,-5.723E-05],[126.29547,-5.3621E-05],[126.29891,-5.1559E-05],[126.30235,-5.4652E-05]]}
-{"quant":[126.556,-5.259E-05],"mems":[[126.45727,-5.3106E-05],[126.46072,-5.1043E-05],[126.46416,-5.4652E-05],[126.4676,-5.8777E-05],[126.47105,-5.9293E-05],[126.47449,-5.7746E-05],[126.47793,-5.0012E-05],[126.48137,-5.1559E-05],[126.48482,-5.6199E-05],[126.48826,-5.3106E-05],[126.4917,-5.0012E-05],[126.49514,-5.0528E-05],[126.49859,-5.6715E-05],[126.50203,-5.259E-05],[126.50547,-5.259E-05],[126.50891,-5.5168E-05],[126.51236,-5.259E-05],[126.5158,-5.5168E-05],[126.51924,-5.2074E-05],[126.52269,-5.1559E-05],[126.52613,-5.3621E-05],[126.52957,-5.3621E-05],[126.53301,-5.5684E-05],[126.53646,-5.0528E-05],[126.5399,-4.9497E-05],[126.54334,-5.0528E-05],[126.54678,-4.795E-05],[126.55023,-5.5168E-05],[126.55367,-5.5168E-05],[126.55711,-5.0528E-05],[126.56055,-4.9497E-05],[126.564,-4.8465E-05],[126.56744,-5.259E-05],[126.57088,-5.3621E-05],[126.57433,-5.1559E-05],[126.57777,-5.1043E-05],[126.58121,-4.9497E-05],[126.58465,-4.9497E-05],[126.5881,-5.5168E-05],[126.59154,-5.8262E-05],[126.59498,-5.5684E-05],[126.59842,-5.5684E-05],[126.60187,-5.2074E-05],[126.60531,-5.1043E-05],[126.60875,-5.4652E-05],[126.61219,-5.4652E-05],[126.61564,-5.3621E-05],[126.61908,-5.259E-05],[126.62252,-5.0528E-05],[126.62597,-5.3621E-05],[126.62941,-5.5684E-05],[126.63285,-5.3106E-05],[126.63629,-5.0528E-05],[126.63974,-4.795E-05],[126.64318,-5.0528E-05],[126.64662,-5.259E-05],[126.65006,-5.3621E-05],[126.65351,-5.5168E-05],[126.65695,-5.4652E-05],[126.66039,-5.3621E-05],[126.66383,-5.2074E-05],[126.66728,-5.2074E-05],[126.67072,-5.1043E-05],[126.67416,-5.3621E-05],[126.67761,-5.3106E-05],[126.68105,-5.3106E-05],[126.68449,-5.3106E-05],[126.68793,-5.2074E-05],[126.69138,-5.3106E-05],[126.69482,-5.0528E-05],[126.69826,-5.0012E-05],[126.7017,-5.0012E-05],[126.70515,-5.3621E-05],[126.70859,-5.723E-05],[126.71203,-5.6199E-05],[126.71547,-5.6715E-05],[126.71892,-5.5684E-05],[126.72236,-5.3621E-05],[126.7258,-5.8262E-05],[126.72925,-5.6715E-05],[126.73269,-5.4652E-05],[126.73613,-5.9808E-05],[126.73957,-5.4137E-05],[126.74302,-5.259E-05],[126.74646,-5.6199E-05],[126.7499,-5.5684E-05],[126.75334,-5.6199E-05],[126.75679,-5.2074E-05]]}
-{"quant":[127.035,-5.4137E-05],"mems":[[126.93643,-5.3621E-05],[126.93989,-5.6715E-05],[126.94334,-5.5168E-05],[126.9468,-5.0012E-05],[126.95026,-5.1043E-05],[126.95371,-5.3621E-05],[126.95717,-5.1559E-05],[126.96062,-4.7434E-05],[126.96408,-5.0528E-05],[126.96754,-5.2074E-05],[126.97099,-5.1559E-05],[126.97445,-5.2074E-05],[126.9779,-5.4652E-05],[126.98136,-5.3106E-05],[126.98482,-5.3106E-05],[126.98827,-5.5168E-05],[126.99173,-5.3621E-05],[126.99518,-5.259E-05],[126.99864,-4.9497E-05],[127.0021,-5.3621E-05],[127.00555,-5.8262E-05],[127.00901,-5.6715E-05],[127.01246,-5.6199E-05],[127.01592,-5.3621E-05],[127.01938,-5.259E-05],[127.02283,-5.259E-05],[127.02629,-5.4137E-05],[127.02974,-5.4652E-05],[127.0332,-5.5168E-05],[127.03666,-5.4652E-05],[127.04011,-4.8465E-05],[127.04357,-5.2074E-05],[127.04702,-5.4652E-05],[127.05048,-4.9497E-05],[127.05394,-5.6199E-05],[127.05739,-5.723E-05],[127.06085,-4.6403E-05],[127.0643,-5.1559E-05],[127.06776,-5.4652E-05],[127.07122,-5.259E-05],[127.07467,-5.6199E-05],[127.07813,-5.259E-05],[127.08158,-5.1043E-05],[127.08504,-5.7746E-05],[127.0885,-5.9808E-05],[127.09195,-5.5168E-05],[127.09541,-5.8262E-05],[127.09886,-5.4137E-05],[127.10232,-5.1043E-05],[127.10578,-5.6715E-05],[127.10923,-5.4652E-05],[127.11269,-5.8262E-05],[127.11614,-5.4652E-05],[127.1196,-5.2074E-05],[127.12306,-5.5684E-05],[127.12651,-5.0528E-05],[127.12997,-5.5168E-05],[127.13342,-5.7746E-05],[127.13688,-5.4652E-05],[127.14034,-5.5684E-05],[127.14379,-5.5168E-05],[127.14725,-5.4652E-05],[127.1507,-5.0012E-05],[127.15416,-5.1559E-05],[127.15762,-5.4652E-05],[127.16107,-4.795E-05],[127.16453,-4.8981E-05],[127.16798,-5.723E-05],[127.17144,-5.5168E-05],[127.1749,-5.4652E-05],[127.17835,-5.3621E-05],[127.18181,-5.0528E-05],[127.18526,-5.259E-05],[127.18872,-5.3621E-05],[127.19218,-5.6715E-05],[127.19563,-5.4652E-05],[127.19909,-4.8465E-05],[127.20254,-4.8981E-05],[127.206,-5.0528E-05],[127.20946,-5.4137E-05],[127.21291,-5.6199E-05],[127.21637,-5.4652E-05],[127.21982,-5.2074E-05],[127.22328,-5.0012E-05],[127.22674,-5.4652E-05],[127.23019,-5.3621E-05],[127.23365,-5.1559E-05],[127.2371,-5.4652E-05]]}
-{"quant":[127.631,-5.3071E-05],"mems":[[127.53432,-5.3621E-05],[127.53778,-5.6715E-05],[127.54123,-5.5168E-05],[127.54469,-5.1559E-05],[127.54814,-5.0012E-05],[127.5516,-5.4137E-05],[127.55506,-5.6715E-05],[127.55851,-5.5168E-05],[127.56197,-5.259E-05],[127.56542,-4.9497E-05],[127.56888,-5.1043E-05],[127.57234,-5.3621E-05],[127.57579,-5.5684E-05],[127.57925,-5.5684E-05],[127.5827,-5.6715E-05],[127.58616,-5.3106E-05],[127.58962,-5.2074E-05],[127.59307,-5.259E-05],[127.59653,-5.259E-05],[127.59998,-5.5168E-05],[127.60344,-4.6919E-05],[127.6069,-5.0012E-05],[127.61035,-5.6715E-05],[127.61381,-5.3621E-05],[127.61726,-5.4652E-05],[127.62072,-5.4137E-05],[127.62418,-5.259E-05],[127.62763,-5.0528E-05],[127.63109,-5.1559E-05],[127.63454,-5.2074E-05],[127.638,-5.0012E-05],[127.64146,-5.1559E-05],[127.64491,-5.1559E-05],[127.64837,-5.0528E-05],[127.65182,-5.259E-05],[127.65528,-5.2074E-05],[127.65874,-5.723E-05],[127.66219,-5.0012E-05],[127.66565,-4.5887E-05],[127.6691,-5.5168E-05],[127.67256,-5.6715E-05],[127.67602,-5.7746E-05],[127.67947,-5.259E-05],[127.68293,-5.1559E-05],[127.68638,-5.6199E-05],[127.68984,-5.6715E-05],[127.6933,-5.4652E-05],[127.69675,-5.2074E-05],[127.70021,-5.5168E-05],[127.70366,-5.1559E-05],[127.70712,-4.8981E-05],[127.71058,-5.4652E-05],[127.71403,-5.6715E-05],[127.71749,-5.6715E-05],[127.72094,-5.1559E-05],[127.7244,-5.1043E-05],[127.72786,-5.5168E-05],[127.73131,-5.2074E-05],[127.73477,-5.5168E-05],[127.73822,-5.5684E-05],[127.74168,-5.0012E-05],[127.74514,-4.7434E-05],[127.74859,-5.0528E-05],[127.75205,-5.6199E-05],[127.7555,-5.3621E-05],[127.75896,-5.2074E-05],[127.76242,-5.3621E-05],[127.76587,-5.1043E-05],[127.76933,-5.2074E-05],[127.77278,-5.3106E-05],[127.77624,-5.5684E-05],[127.7797,-5.6715E-05],[127.78315,-5.2074E-05],[127.78661,-5.1043E-05],[127.79006,-5.259E-05],[127.79352,-5.3106E-05],[127.79698,-5.1043E-05],[127.80043,-5.4137E-05],[127.80389,-5.2074E-05],[127.80734,-4.7434E-05],[127.8108,-5.3621E-05],[127.81426,-5.5168E-05],[127.81771,-5.1559E-05],[127.82117,-5.259E-05],[127.82462,-5.0012E-05],[127.82808,-4.9497E-05],[127.83154,-5.5168E-05]]}
-{"quant":[128.127,-5.2573E-05],"mems":[[128.02853,-5.0012E-05],[128.03198,-5.259E-05],[128.03544,-5.3621E-05],[128.0389,-5.3106E-05],[128.04235,-5.5684E-05],[128.04581,-5.4137E-05],[128.04926,-5.3106E-05],[128.05272,-5.259E-05],[128.05618,-5.2074E-05],[128.05963,-5.2074E-05],[128.06309,-5.3106E-05],[128.06654,-5.1559E-05],[128.07,-5.5684E-05],[128.07346,-5.8262E-05],[128.07691,-5.4652E-05],[128.08037,-5.4652E-05],[128.08382,-5.0528E-05],[128.08728,-4.9497E-05],[128.09074,-5.4137E-05],[128.09419,-5.8262E-05],[128.09765,-5.259E-05],[128.1011,-5.3621E-05],[128.10456,-5.7746E-05],[128.10802,-5.4652E-05],[128.11147,-5.5168E-05],[128.11493,-5.1043E-05],[128.11838,-5.4137E-05],[128.12184,-5.6715E-05],[128.1253,-5.4137E-05],[128.12875,-5.6715E-05],[128.13221,-5.4652E-05],[128.13566,-5.5684E-05],[128.13912,-5.7746E-05],[128.14258,-5.3106E-05],[128.14603,-4.9497E-05],[128.14949,-5.0528E-05],[128.15294,-5.2074E-05],[128.1564,-5.3106E-05],[128.15986,-5.2074E-05],[128.16331,-5.2074E-05],[128.16677,-5.259E-05],[128.17022,-5.0012E-05],[128.17368,-4.8981E-05],[128.17714,-5.1043E-05],[128.18059,-5.1043E-05],[128.18405,-5.1043E-05],[128.1875,-5.3106E-05],[128.19096,-5.1043E-05],[128.19442,-5.6199E-05],[128.19787,-5.723E-05],[128.20133,-5.1043E-05],[128.20478,-5.259E-05],[128.20824,-4.9497E-05],[128.2117,-5.2074E-05],[128.21515,-5.6199E-05],[128.21861,-5.1559E-05],[128.22206,-5.1559E-05],[128.22552,-5.3621E-05],[128.22898,-4.9497E-05],[128.23243,-5.3621E-05],[128.23589,-6.0324E-05],[128.23934,-5.5684E-05],[128.2428,-5.5684E-05],[128.24626,-5.259E-05],[128.24971,-5.1043E-05],[128.25317,-5.2074E-05],[128.25662,-5.1559E-05],[128.26008,-5.4137E-05],[128.26354,-5.5168E-05],[128.26699,-5.4652E-05],[128.27045,-5.2074E-05],[128.2739,-5.8262E-05],[128.27736,-6.0839E-05],[128.28082,-5.7746E-05],[128.28427,-5.723E-05],[128.28773,-5.259E-05],[128.29118,-5.6715E-05],[128.29464,-6.0324E-05],[128.2981,-5.5168E-05],[128.30155,-5.3106E-05],[128.30501,-5.1559E-05],[128.30846,-4.9497E-05],[128.31192,-5.4137E-05],[128.31538,-5.4652E-05],[128.31883,-4.8981E-05],[128.32229,-5.4137E-05],[128.32574,-5.259E-05],[128.3292,-4.8981E-05]]}
-{"quant":[128.629,-5.302E-05],"mems":[[128.52965,-4.5372E-05],[128.5331,-5.0528E-05],[128.53656,-5.5684E-05],[128.54002,-5.3106E-05],[128.54347,-4.9497E-05],[128.54693,-4.6919E-05],[128.55038,-5.0528E-05],[128.55384,-5.1043E-05],[128.5573,-5.0528E-05],[128.56075,-5.2074E-05],[128.56421,-5.1559E-05],[128.56766,-5.3621E-05],[128.57112,-5.5684E-05],[128.57458,-5.4652E-05],[128.57803,-5.7746E-05],[128.58149,-5.259E-05],[128.58494,-4.8981E-05],[128.5884,-5.0528E-05],[128.59186,-5.0528E-05],[128.59531,-5.6199E-05],[128.59877,-5.5168E-05],[128.60222,-5.2074E-05],[128.60568,-5.1043E-05],[128.60914,-5.1559E-05],[128.61259,-5.2074E-05],[128.61605,-5.3106E-05],[128.6195,-5.3621E-05],[128.62296,-5.1043E-05],[128.62642,-5.2074E-05],[128.62987,-5.0528E-05],[128.63333,-5.259E-05],[128.63678,-5.4652E-05],[128.64024,-5.1043E-05],[128.6437,-5.1559E-05],[128.64715,-5.0528E-05],[128.65061,-5.0012E-05],[128.65406,-5.2074E-05],[128.65752,-5.6199E-05],[128.66098,-5.8262E-05],[128.66443,-5.259E-05],[128.66789,-5.0012E-05],[128.67134,-5.3106E-05],[128.6748,-5.4652E-05],[128.67826,-5.5168E-05],[128.68171,-5.4137E-05],[128.68517,-5.2074E-05],[128.68862,-5.4137E-05],[128.69208,-5.3106E-05],[128.69554,-5.1559E-05],[128.69899,-5.8262E-05],[128.70245,-5.6715E-05],[128.7059,-5.0528E-05],[128.70936,-5.4652E-05],[128.71282,-5.1043E-05],[128.71627,-4.8465E-05],[128.71973,-5.4652E-05],[128.72318,-5.3106E-05],[128.72664,-5.4137E-05],[128.7301,-5.1043E-05],[128.73355,-4.8981E-05],[128.73701,-5.1043E-05],[128.74046,-4.6403E-05],[128.74392,-5.0012E-05],[128.74738,-5.4652E-05],[128.75083,-5.0012E-05],[128.75429,-4.8981E-05],[128.75774,-5.4652E-05],[128.7612,-5.5684E-05],[128.76466,-5.0012E-05],[128.76811,-5.259E-05],[128.77157,-5.5168E-05],[128.77502,-4.795E-05],[128.77848,-5.1043E-05],[128.78194,-4.9497E-05],[128.78539,-5.0528E-05],[128.78885,-5.6715E-05],[128.7923,-4.795E-05],[128.79576,-4.9497E-05],[128.79922,-5.3106E-05],[128.80267,-5.2074E-05],[128.80613,-4.9497E-05],[128.80958,-4.6919E-05],[128.81304,-5.3621E-05],[128.8165,-5.6715E-05],[128.81995,-5.723E-05],[128.82341,-5.5684E-05],[128.82686,-5.5684E-05],[128.83032,-5.5684E-05]]}
-{"quant":[129.104,-5.3088E-05],"mems":[[129.00658,-5.259E-05],[129.01003,-5.1043E-05],[129.01349,-5.259E-05],[129.01694,-5.6199E-05],[129.0204,-5.723E-05],[129.02386,-5.3106E-05],[129.02731,-5.1559E-05],[129.03077,-5.3106E-05],[129.03422,-5.1559E-05],[129.03768,-5.0528E-05],[129.04114,-5.5168E-05],[129.04459,-5.3106E-05],[129.04805,-5.1043E-05],[129.0515,-5.2074E-05],[129.05496,-4.9497E-05],[129.05842,-5.3621E-05],[129.06187,-5.3106E-05],[129.06533,-5.0528E-05],[129.06878,-5.3621E-05],[129.07224,-5.1559E-05],[129.0757,-5.4137E-05],[129.07915,-6.0324E-05],[129.08261,-5.6715E-05],[129.08606,-5.3621E-05],[129.08952,-4.8981E-05],[129.09298,-5.1559E-05],[129.09643,-6.2386E-05],[129.09989,-5.8262E-05],[129.10334,-5.3106E-05],[129.1068,-5.259E-05],[129.11026,-5.3621E-05],[129.11371,-5.259E-05],[129.11717,-5.0012E-05],[129.12062,-5.5684E-05],[129.12408,-5.5684E-05],[129.12754,-5.259E-05],[129.13099,-5.1043E-05],[129.13445,-5.1559E-05],[129.1379,-5.5684E-05],[129.14136,-5.3106E-05],[129.14482,-4.8465E-05],[129.14827,-4.8981E-05],[129.15173,-5.259E-05],[129.15518,-5.5684E-05],[129.15864,-5.6199E-05],[129.1621,-5.2074E-05],[129.16555,-5.1043E-05],[129.16901,-5.1559E-05],[129.17246,-5.3621E-05],[129.17592,-5.2074E-05],[129.17938,-5.3621E-05],[129.18283,-5.723E-05],[129.18629,-5.4652E-05],[129.18974,-5.1559E-05],[129.1932,-5.1043E-05],[129.19666,-5.6199E-05],[129.20011,-5.9293E-05],[129.20357,-5.3106E-05],[129.20702,-4.9497E-05],[129.21048,-5.0528E-05],[129.21394,-5.723E-05],[129.21739,-6.2902E-05],[129.22085,-5.7746E-05],[129.2243,-5.3106E-05],[129.22776,-5.3106E-05],[129.23122,-5.1043E-05],[129.23467,-4.8981E-05],[129.23813,-5.3621E-05],[129.24158,-5.5168E-05],[129.24504,-5.0012E-05],[129.2485,-4.7434E-05],[129.25195,-4.795E-05],[129.25541,-5.0012E-05],[129.25886,-5.1043E-05],[129.26232,-5.3106E-05],[129.26578,-5.5168E-05],[129.26923,-5.0528E-05],[129.27269,-4.8981E-05],[129.27614,-5.4137E-05],[129.2796,-5.4652E-05],[129.28306,-5.4652E-05],[129.28651,-5.4137E-05],[129.28997,-5.2074E-05],[129.29342,-5.3106E-05],[129.29688,-5.6199E-05],[129.30034,-5.4137E-05],[129.30379,-4.9497E-05],[129.30725,-4.9497E-05]]}
-{"quant":[129.684,-5.1748E-05],"mems":[[129.58445,-5.1559E-05],[129.58787,-4.8465E-05],[129.59128,-5.3621E-05],[129.59469,-5.9293E-05],[129.59811,-5.3621E-05],[129.60152,-5.4652E-05],[129.60493,-5.1559E-05],[129.60835,-4.8981E-05],[129.61176,-5.1559E-05],[129.61517,-5.4137E-05],[129.61859,-5.4137E-05],[129.622,-5.0012E-05],[129.62541,-5.4137E-05],[129.62883,-5.3621E-05],[129.63224,-5.0012E-05],[129.63565,-5.5684E-05],[129.63907,-5.5168E-05],[129.64248,-4.6403E-05],[129.64589,-4.5372E-05],[129.64931,-5.259E-05],[129.65272,-5.259E-05],[129.65613,-5.3106E-05],[129.65955,-5.3621E-05],[129.66296,-5.4137E-05],[129.66637,-5.4652E-05],[129.66979,-5.1559E-05],[129.6732,-5.0012E-05],[129.67661,-5.3621E-05],[129.68003,-5.8262E-05],[129.68344,-5.3106E-05],[129.68685,-4.8465E-05],[129.69027,-5.0528E-05],[129.69368,-5.3106E-05],[129.69709,-5.6199E-05],[129.70051,-5.4652E-05],[129.70392,-5.0528E-05],[129.70733,-4.8981E-05],[129.71075,-5.0012E-05],[129.71416,-5.3106E-05],[129.71757,-5.3106E-05],[129.72099,-5.1043E-05],[129.7244,-5.1559E-05],[129.72781,-5.3106E-05],[129.73123,-5.0528E-05],[129.73464,-5.3106E-05],[129.73805,-5.259E-05],[129.74147,-4.9497E-05],[129.74488,-5.0528E-05],[129.74829,-5.0528E-05],[129.75171,-5.5168E-05],[129.75512,-5.1043E-05],[129.75853,-4.8465E-05],[129.76195,-5.5168E-05],[129.76536,-5.4137E-05],[129.76877,-4.8981E-05],[129.77219,-4.8465E-05],[129.7756,-5.1043E-05],[129.77901,-5.3621E-05],[129.78243,-5.4652E-05],[129.78584,-5.0528E-05],[129.78925,-5.0012E-05],[129.79267,-5.6199E-05],[129.79608,-5.6199E-05],[129.79949,-4.7434E-05],[129.80291,-4.5372E-05],[129.80632,-4.6403E-05],[129.80973,-4.5372E-05],[129.81315,-5.3621E-05],[129.81656,-5.6199E-05],[129.81997,-5.3106E-05],[129.82339,-5.2074E-05],[129.8268,-5.2074E-05],[129.83021,-5.4137E-05],[129.83363,-5.4137E-05],[129.83704,-5.6199E-05],[129.84045,-5.3621E-05],[129.84387,-5.1043E-05],[129.84728,-5.6199E-05],[129.85069,-5.723E-05],[129.85411,-5.6715E-05],[129.85752,-5.5684E-05],[129.86093,-5.0012E-05],[129.86435,-5.0012E-05],[129.86776,-5.6199E-05],[129.87117,-5.723E-05],[129.87459,-5.7746E-05],[129.878,-5.5684E-05],[129.88141,-5.3621E-05],[129.88483,-5.1043E-05]]}
-{"quant":[130.161,-5.2557E-05],"mems":[[130.06232,-5.2074E-05],[130.06573,-5.2074E-05],[130.06915,-5.0012E-05],[130.07256,-5.2074E-05],[130.07597,-5.1559E-05],[130.07939,-5.259E-05],[130.0828,-5.1559E-05],[130.08621,-4.5372E-05],[130.08963,-5.0012E-05],[130.09304,-5.2074E-05],[130.09645,-5.259E-05],[130.09987,-5.6715E-05],[130.10328,-5.4137E-05],[130.10669,-5.1559E-05],[130.11011,-5.1043E-05],[130.11352,-5.5168E-05],[130.11693,-5.259E-05],[130.12035,-5.5168E-05],[130.12376,-5.5684E-05],[130.12717,-5.259E-05],[130.13059,-5.8262E-05],[130.134,-5.1043E-05],[130.13741,-4.9497E-05],[130.14083,-5.1559E-05],[130.14424,-5.1559E-05],[130.14765,-5.3106E-05],[130.15107,-5.0528E-05],[130.15448,-5.3106E-05],[130.15789,-5.4137E-05],[130.16131,-5.259E-05],[130.16472,-5.3621E-05],[130.16813,-5.3621E-05],[130.17155,-5.4137E-05],[130.17496,-5.7746E-05],[130.17837,-5.4652E-05],[130.18179,-4.4856E-05],[130.1852,-4.8465E-05],[130.18861,-5.6715E-05],[130.19203,-5.3621E-05],[130.19544,-5.1559E-05],[130.19885,-5.1559E-05],[130.20227,-5.0012E-05],[130.20568,-5.5168E-05],[130.20909,-5.7746E-05],[130.21251,-5.7746E-05],[130.21592,-5.4652E-05],[130.21933,-4.9497E-05],[130.22275,-5.4137E-05],[130.22616,-5.3621E-05],[130.22957,-5.2074E-05],[130.23299,-5.5168E-05],[130.2364,-5.3106E-05],[130.23981,-5.1559E-05],[130.24323,-5.0528E-05],[130.24664,-5.1043E-05],[130.25005,-5.1043E-05],[130.25347,-5.2074E-05],[130.25688,-5.2074E-05],[130.26029,-4.7434E-05],[130.26371,-4.7434E-05],[130.26712,-5.0012E-05],[130.27053,-5.259E-05],[130.27395,-5.5684E-05],[130.27736,-5.5684E-05],[130.28077,-5.2074E-05],[130.28419,-4.795E-05],[130.2876,-5.0528E-05],[130.29101,-5.5168E-05],[130.29443,-5.259E-05],[130.29784,-5.2074E-05],[130.30125,-5.3106E-05],[130.30467,-4.8465E-05],[130.30808,-4.8465E-05],[130.31149,-5.1559E-05],[130.31491,-5.5684E-05],[130.31832,-5.4137E-05],[130.32173,-4.6403E-05],[130.32515,-5.3106E-05],[130.32856,-5.3621E-05],[130.33197,-5.0528E-05],[130.33539,-5.7746E-05],[130.3388,-5.6199E-05],[130.34221,-5.0528E-05],[130.34563,-5.1043E-05],[130.34904,-5.4137E-05],[130.35245,-5.1559E-05],[130.35587,-5.0528E-05],[130.35928,-5.3106E-05],[130.36269,-4.9497E-05]]}
-{"quant":[130.632,-5.2307E-05],"mems":[[130.53336,-4.795E-05],[130.53677,-5.6715E-05],[130.54019,-4.8465E-05],[130.5436,-4.795E-05],[130.54701,-5.4137E-05],[130.55043,-5.1559E-05],[130.55384,-5.1043E-05],[130.55725,-5.0012E-05],[130.56067,-5.3621E-05],[130.56408,-5.1559E-05],[130.56749,-4.8465E-05],[130.57091,-5.6715E-05],[130.57432,-5.723E-05],[130.57773,-5.0012E-05],[130.58115,-4.8981E-05],[130.58456,-5.1559E-05],[130.58797,-5.2074E-05],[130.59139,-5.3106E-05],[130.5948,-4.9497E-05],[130.59821,-5.259E-05],[130.60163,-5.5684E-05],[130.60504,-5.3621E-05],[130.60845,-5.4652E-05],[130.61187,-4.9497E-05],[130.61528,-4.8465E-05],[130.61869,-4.8981E-05],[130.62211,-4.7434E-05],[130.62552,-5.1043E-05],[130.62893,-5.0528E-05],[130.63235,-5.259E-05],[130.63576,-5.723E-05],[130.63917,-5.4652E-05],[130.64259,-5.3621E-05],[130.646,-5.723E-05],[130.64941,-5.6715E-05],[130.65283,-5.4137E-05],[130.65624,-5.2074E-05],[130.65965,-5.0012E-05],[130.66307,-5.1043E-05],[130.66648,-5.259E-05],[130.66989,-5.1043E-05],[130.67331,-5.3106E-05],[130.67672,-5.1559E-05],[130.68013,-5.0012E-05],[130.68355,-5.3621E-05],[130.68696,-5.2074E-05],[130.69037,-4.795E-05],[130.69379,-5.1043E-05],[130.6972,-5.1043E-05],[130.70061,-4.9497E-05],[130.70403,-5.259E-05],[130.70744,-5.259E-05],[130.71085,-5.3621E-05],[130.71427,-5.3106E-05],[130.71768,-4.795E-05],[130.72109,-5.0528E-05],[130.72451,-5.3621E-05],[130.72792,-5.4652E-05],[130.73133,-5.2074E-05],[130.73475,-4.795E-05],[130.73816,-5.259E-05],[130.74157,-5.3621E-05],[130.74499,-5.0528E-05],[130.7484,-5.4137E-05],[130.75181,-5.6199E-05],[130.75523,-5.259E-05],[130.75864,-4.8465E-05],[130.76205,-4.6919E-05],[130.76547,-5.3621E-05],[130.76888,-5.5684E-05],[130.77229,-5.0528E-05],[130.77571,-4.8465E-05],[130.77912,-5.0528E-05],[130.78253,-5.4137E-05],[130.78595,-5.4137E-05],[130.78936,-5.259E-05],[130.79277,-5.259E-05],[130.79619,-4.5887E-05],[130.7996,-4.6403E-05],[130.80301,-5.6715E-05],[130.80643,-5.4137E-05],[130.80984,-5.6199E-05],[130.81325,-5.8262E-05],[130.81667,-4.795E-05],[130.82008,-4.8465E-05],[130.82349,-5.1559E-05],[130.82691,-5.2074E-05],[130.83032,-5.3621E-05],[130.83373,-5.3621E-05]]}
-{"quant":[131.121,-5.3449E-05],"mems":[[131.02147,-5.4137E-05],[131.02488,-5.8262E-05],[131.02829,-5.259E-05],[131.03171,-5.2074E-05],[131.03512,-5.4652E-05],[131.03853,-5.1043E-05],[131.04195,-5.2074E-05],[131.04536,-5.6199E-05],[131.04877,-5.8777E-05],[131.05219,-5.4652E-05],[131.0556,-5.1043E-05],[131.05901,-5.4652E-05],[131.06243,-5.3621E-05],[131.06584,-5.1043E-05],[131.06925,-5.1043E-05],[131.07267,-5.1559E-05],[131.07608,-4.8981E-05],[131.07949,-4.8465E-05],[131.08291,-5.5168E-05],[131.08632,-5.6715E-05],[131.08973,-5.5168E-05],[131.09315,-5.4137E-05],[131.09656,-5.2074E-05],[131.09997,-4.9497E-05],[131.10339,-5.4137E-05],[131.1068,-5.8777E-05],[131.11021,-5.3106E-05],[131.11363,-5.1043E-05],[131.11704,-5.1043E-05],[131.12045,-4.9497E-05],[131.12387,-5.1043E-05],[131.12728,-5.259E-05],[131.13069,-5.2074E-05],[131.13411,-4.9497E-05],[131.13752,-4.9497E-05],[131.14093,-5.1043E-05],[131.14435,-5.0012E-05],[131.14776,-5.1043E-05],[131.15117,-5.5684E-05],[131.15459,-5.4652E-05],[131.158,-5.4137E-05],[131.16141,-6.0324E-05],[131.16483,-6.1871E-05],[131.16824,-5.9808E-05],[131.17165,-5.4137E-05],[131.17507,-4.795E-05],[131.17848,-5.259E-05],[131.18189,-5.1043E-05],[131.18531,-4.9497E-05],[131.18872,-5.7746E-05],[131.19213,-5.7746E-05],[131.19555,-5.3621E-05],[131.19896,-5.3106E-05],[131.20237,-5.3106E-05],[131.20579,-5.4137E-05],[131.2092,-5.4652E-05],[131.21261,-5.2074E-05],[131.21603,-5.0012E-05],[131.21944,-5.2074E-05],[131.22285,-5.6715E-05],[131.22627,-5.0012E-05],[131.22968,-4.7434E-05],[131.23309,-5.4652E-05],[131.23651,-5.0012E-05],[131.23992,-5.0012E-05],[131.24333,-5.3621E-05],[131.24675,-5.4137E-05],[131.25016,-5.4137E-05],[131.25357,-5.1043E-05],[131.25699,-5.3106E-05],[131.2604,-5.0528E-05],[131.26381,-5.4137E-05],[131.26723,-5.7746E-05],[131.27064,-4.8981E-05],[131.27405,-4.6919E-05],[131.27747,-5.3106E-05],[131.28088,-5.259E-05],[131.28429,-5.0012E-05],[131.28771,-5.1043E-05],[131.29112,-5.0528E-05],[131.29453,-5.1559E-05],[131.29795,-5.3106E-05],[131.30136,-5.6715E-05],[131.30477,-5.723E-05],[131.30819,-5.3621E-05],[131.3116,-5.3621E-05],[131.31501,-5.3621E-05],[131.31843,-5.4137E-05],[131.32184,-5.4652E-05]]}
-{"quant":[131.582,-5.3192E-05],"mems":[[131.48227,-5.1043E-05],[131.48568,-5.3106E-05],[131.48909,-5.4137E-05],[131.49251,-5.1559E-05],[131.49592,-5.1559E-05],[131.49933,-5.5168E-05],[131.50275,-5.259E-05],[131.50616,-5.2074E-05],[131.50957,-4.9497E-05],[131.51299,-5.0012E-05],[131.5164,-5.4137E-05],[131.51981,-5.3621E-05],[131.52323,-5.3621E-05],[131.52664,-4.8981E-05],[131.53005,-5.1559E-05],[131.53347,-5.3621E-05],[131.53688,-4.5887E-05],[131.54029,-5.0528E-05],[131.54371,-5.4137E-05],[131.54712,-5.1559E-05],[131.55053,-5.0528E-05],[131.55395,-4.8465E-05],[131.55736,-5.0528E-05],[131.56077,-5.2074E-05],[131.56419,-5.4137E-05],[131.5676,-5.2074E-05],[131.57101,-5.0012E-05],[131.57443,-5.3106E-05],[131.57784,-5.1043E-05],[131.58125,-5.0528E-05],[131.58467,-5.3106E-05],[131.58808,-5.4137E-05],[131.59149,-5.1559E-05],[131.59491,-4.8465E-05],[131.59832,-5.4652E-05],[131.60173,-5.6199E-05],[131.60515,-5.1559E-05],[131.60856,-5.1559E-05],[131.61197,-5.1559E-05],[131.61539,-5.3106E-05],[131.6188,-5.5684E-05],[131.62221,-5.3621E-05],[131.62563,-5.4137E-05],[131.62904,-5.4137E-05],[131.63245,-5.259E-05],[131.63587,-5.4137E-05],[131.63928,-5.5684E-05],[131.64269,-5.8777E-05],[131.64611,-5.6715E-05],[131.64952,-5.259E-05],[131.65293,-5.1559E-05],[131.65635,-5.1559E-05],[131.65976,-5.3621E-05],[131.66317,-5.3106E-05],[131.66659,-5.1043E-05],[131.67,-4.7434E-05],[131.67341,-5.1559E-05],[131.67683,-5.5168E-05],[131.68024,-5.1559E-05],[131.68365,-5.5168E-05],[131.68707,-5.5684E-05],[131.69048,-5.1559E-05],[131.69389,-5.1559E-05],[131.69731,-5.5168E-05],[131.70072,-5.5168E-05],[131.70413,-5.259E-05],[131.70755,-5.259E-05],[131.71096,-4.9497E-05],[131.71437,-5.1043E-05],[131.71779,-5.4652E-05],[131.7212,-5.5168E-05],[131.72461,-5.4652E-05],[131.72803,-5.1559E-05],[131.73144,-5.1559E-05],[131.73485,-5.1559E-05],[131.73827,-5.7746E-05],[131.74168,-5.9293E-05],[131.74509,-5.259E-05],[131.74851,-5.0012E-05],[131.75192,-5.2074E-05],[131.75533,-5.5168E-05],[131.75875,-5.5168E-05],[131.76216,-5.6715E-05],[131.76557,-5.3106E-05],[131.76899,-5.1559E-05],[131.7724,-5.259E-05],[131.77581,-5.1043E-05],[131.77923,-5.5684E-05],[131.78264,-5.5168E-05]]}
-{"quant":[132.027,-5.3071E-05],"mems":[[131.92945,-5.1043E-05],[131.9329,-5.3106E-05],[131.93634,-5.7746E-05],[131.93979,-5.6715E-05],[131.94324,-5.3621E-05],[131.94669,-4.9497E-05],[131.95014,-4.9497E-05],[131.95358,-5.259E-05],[131.95703,-5.2074E-05],[131.96048,-5.5684E-05],[131.96393,-5.5168E-05],[131.96738,-5.1559E-05],[131.97082,-5.4137E-05],[131.97427,-5.5684E-05],[131.97772,-5.4652E-05],[131.98117,-5.1043E-05],[131.98462,-5.4652E-05],[131.98806,-5.4137E-05],[131.99151,-4.8981E-05],[131.99496,-5.4137E-05],[131.99841,-5.723E-05],[132.00186,-5.4137E-05],[132.0053,-4.9497E-05],[132.00875,-4.6403E-05],[132.0122,-4.8465E-05],[132.01565,-4.9497E-05],[132.0191,-5.0528E-05],[132.02254,-5.3621E-05],[132.02599,-5.723E-05],[132.02944,-5.5168E-05],[132.03289,-5.2074E-05],[132.03634,-5.4652E-05],[132.03978,-5.4652E-05],[132.04323,-5.2074E-05],[132.04668,-5.0528E-05],[132.05013,-5.3106E-05],[132.05358,-5.723E-05],[132.05702,-5.2074E-05],[132.06047,-5.3106E-05],[132.06392,-5.5168E-05],[132.06737,-5.1043E-05],[132.07082,-5.4652E-05],[132.07426,-5.4137E-05],[132.07771,-5.6715E-05],[132.08116,-5.6715E-05],[132.08461,-5.3106E-05],[132.08806,-5.5684E-05],[132.0915,-5.2074E-05],[132.09495,-5.4137E-05],[132.0984,-5.5168E-05],[132.10185,-5.0528E-05],[132.1053,-5.259E-05],[132.10874,-4.8465E-05],[132.11219,-4.7434E-05],[132.11564,-5.5684E-05],[132.11909,-5.259E-05],[132.12254,-4.9497E-05],[132.12598,-5.1043E-05],[132.12943,-5.1043E-05],[132.13288,-5.7746E-05],[132.13633,-5.6715E-05],[132.13978,-5.5168E-05],[132.14322,-5.6199E-05],[132.14667,-4.9497E-05],[132.15012,-5.1559E-05],[132.15357,-5.3621E-05],[132.15702,-5.6199E-05],[132.16046,-5.5684E-05],[132.16391,-5.0012E-05],[132.16736,-5.3106E-05],[132.17081,-5.259E-05],[132.17426,-5.3106E-05],[132.1777,-5.2074E-05],[132.18115,-5.4137E-05],[132.1846,-5.7746E-05],[132.18805,-5.1043E-05],[132.1915,-5.0012E-05],[132.19494,-4.9497E-05],[132.19839,-5.1043E-05],[132.20184,-5.1559E-05],[132.20529,-4.9497E-05],[132.20874,-5.4137E-05],[132.21218,-5.2074E-05],[132.21563,-5.3621E-05],[132.21908,-5.4137E-05],[132.22253,-5.5168E-05],[132.22598,-5.3106E-05],[132.22942,-4.7434E-05]]}
-{"quant":[132.695,-5.2212E-05],"mems":[[132.59836,-5.8777E-05],[132.60181,-5.4137E-05],[132.60526,-5.259E-05],[132.6087,-5.0528E-05],[132.61215,-5.1043E-05],[132.6156,-5.3106E-05],[132.61905,-5.2074E-05],[132.6225,-5.8262E-05],[132.62594,-5.9293E-05],[132.62939,-5.1043E-05],[132.63284,-5.4652E-05],[132.63629,-5.7746E-05],[132.63974,-5.3621E-05],[132.64318,-5.1043E-05],[132.64663,-5.1043E-05],[132.65008,-5.0012E-05],[132.65353,-5.0012E-05],[132.65698,-5.5684E-05],[132.66042,-5.4137E-05],[132.66387,-5.3106E-05],[132.66732,-5.259E-05],[132.67077,-5.0528E-05],[132.67422,-5.3106E-05],[132.67766,-5.1559E-05],[132.68111,-5.3621E-05],[132.68456,-5.4652E-05],[132.68801,-5.3106E-05],[132.69146,-5.4137E-05],[132.6949,-5.1559E-05],[132.69835,-5.259E-05],[132.7018,-5.4652E-05],[132.70525,-5.4652E-05],[132.7087,-4.7434E-05],[132.71214,-4.795E-05],[132.71559,-5.723E-05],[132.71904,-5.3621E-05],[132.72249,-5.2074E-05],[132.72594,-5.0012E-05],[132.72938,-4.9497E-05],[132.73283,-5.1559E-05],[132.73628,-5.1559E-05],[132.73973,-5.3621E-05],[132.74318,-5.4652E-05],[132.74662,-5.1043E-05],[132.75007,-4.795E-05],[132.75352,-5.4137E-05],[132.75697,-5.7746E-05],[132.76042,-5.6715E-05],[132.76386,-5.4137E-05],[132.76731,-4.9497E-05],[132.77076,-5.1559E-05],[132.77421,-5.0012E-05],[132.77766,-4.8465E-05],[132.7811,-5.3106E-05],[132.78455,-5.3621E-05],[132.788,-4.9497E-05],[132.79145,-5.0012E-05],[132.7949,-5.1043E-05],[132.79834,-5.6715E-05],[132.80179,-5.6715E-05],[132.80524,-5.0012E-05],[132.80869,-5.3621E-05],[132.81214,-5.1559E-05],[132.81558,-5.0528E-05],[132.81903,-5.3106E-05],[132.82248,-4.9497E-05],[132.82593,-4.8465E-05],[132.82938,-4.7434E-05],[132.83282,-4.7434E-05],[132.83627,-5.0528E-05],[132.83972,-5.5168E-05],[132.84317,-5.8777E-05],[132.84662,-5.723E-05],[132.85006,-5.1043E-05],[132.85351,-5.2074E-05],[132.85696,-5.8777E-05],[132.86041,-5.1559E-05],[132.86386,-4.8981E-05],[132.8673,-5.2074E-05],[132.87075,-4.795E-05],[132.8742,-5.0528E-05],[132.87765,-4.9497E-05],[132.8811,-5.1559E-05],[132.88454,-5.0528E-05],[132.88799,-4.6919E-05],[132.89144,-4.8465E-05],[132.89489,-5.3621E-05],[132.89834,-5.8777E-05]]}
-{"quant":[133.219,-5.3887E-05],"mems":[[133.11901,-5.5168E-05],[133.12246,-5.6199E-05],[133.1259,-5.6199E-05],[133.12935,-5.3106E-05],[133.1328,-5.2074E-05],[133.13625,-5.3621E-05],[133.1397,-5.3106E-05],[133.14314,-5.2074E-05],[133.14659,-5.2074E-05],[133.15004,-5.1043E-05],[133.15349,-5.1559E-05],[133.15694,-5.1559E-05],[133.16038,-5.3106E-05],[133.16383,-5.1043E-05],[133.16728,-4.7434E-05],[133.17073,-4.6919E-05],[133.17418,-5.3106E-05],[133.17762,-5.8262E-05],[133.18107,-5.5168E-05],[133.18452,-5.7746E-05],[133.18797,-5.6199E-05],[133.19142,-5.3106E-05],[133.19486,-5.6715E-05],[133.19831,-5.5168E-05],[133.20176,-5.2074E-05],[133.20521,-4.8981E-05],[133.20866,-5.1043E-05],[133.2121,-5.1559E-05],[133.21555,-5.1559E-05],[133.219,-5.6715E-05],[133.22245,-5.5168E-05],[133.2259,-5.5168E-05],[133.22934,-5.1559E-05],[133.23279,-4.9497E-05],[133.23624,-5.4137E-05],[133.23969,-5.259E-05],[133.24314,-5.4652E-05],[133.24658,-5.5168E-05],[133.25003,-5.6199E-05],[133.25348,-5.9293E-05],[133.25693,-5.8777E-05],[133.26038,-5.8777E-05],[133.26382,-5.0012E-05],[133.26727,-5.0012E-05],[133.27072,-5.5168E-05],[133.27417,-5.4652E-05],[133.27762,-5.4652E-05],[133.28106,-5.2074E-05],[133.28451,-5.3106E-05],[133.28796,-5.2074E-05],[133.29141,-5.3621E-05],[133.29486,-5.5684E-05],[133.2983,-5.2074E-05],[133.30175,-5.5684E-05],[133.3052,-5.5168E-05],[133.30865,-4.9497E-05],[133.3121,-5.1043E-05],[133.31554,-5.3621E-05],[133.31899,-5.2074E-05],[133.32244,-5.259E-05],[133.32589,-5.4652E-05],[133.32934,-5.259E-05],[133.33278,-5.3106E-05],[133.33623,-5.3106E-05],[133.33968,-5.0528E-05],[133.34313,-5.5168E-05],[133.34658,-5.4652E-05],[133.35002,-5.3106E-05],[133.35347,-5.3106E-05],[133.35692,-5.1559E-05],[133.36037,-5.5168E-05],[133.36382,-5.2074E-05],[133.36726,-5.259E-05],[133.37071,-5.6199E-05],[133.37416,-5.5168E-05],[133.37761,-5.9808E-05],[133.38106,-5.6715E-05],[133.3845,-5.5684E-05],[133.38795,-5.259E-05],[133.3914,-4.8981E-05],[133.39485,-5.5168E-05],[133.3983,-5.4652E-05],[133.40174,-5.723E-05],[133.40519,-5.9293E-05],[133.40864,-5.2074E-05],[133.41209,-5.0012E-05],[133.41554,-5.2074E-05],[133.41898,-5.5684E-05],[133.42243,-5.5168E-05]]}
-{"quant":[133.704,-5.4257E-05],"mems":[[133.60518,-5.6715E-05],[133.60862,-5.4652E-05],[133.61207,-5.6715E-05],[133.61552,-5.4652E-05],[133.61897,-5.259E-05],[133.62242,-5.4137E-05],[133.62586,-5.1043E-05],[133.62931,-5.0528E-05],[133.63276,-5.3621E-05],[133.63621,-5.7746E-05],[133.63966,-5.259E-05],[133.6431,-5.3621E-05],[133.64655,-5.6715E-05],[133.65,-5.3621E-05],[133.65345,-5.259E-05],[133.6569,-5.2074E-05],[133.66034,-5.259E-05],[133.66379,-5.4137E-05],[133.66724,-5.3621E-05],[133.67069,-4.8465E-05],[133.67414,-4.8981E-05],[133.67758,-5.6715E-05],[133.68103,-5.7746E-05],[133.68448,-5.259E-05],[133.68793,-4.9497E-05],[133.69138,-5.2074E-05],[133.69482,-5.3106E-05],[133.69827,-5.6715E-05],[133.70172,-5.6715E-05],[133.70517,-5.4137E-05],[133.70862,-5.4137E-05],[133.71206,-4.7434E-05],[133.71551,-5.1559E-05],[133.71896,-6.1355E-05],[133.72241,-5.6715E-05],[133.72586,-4.8981E-05],[133.7293,-5.5168E-05],[133.73275,-5.8262E-05],[133.7362,-5.259E-05],[133.73965,-5.4652E-05],[133.7431,-5.4137E-05],[133.74654,-5.259E-05],[133.74999,-5.259E-05],[133.75344,-4.8981E-05],[133.75689,-5.4137E-05],[133.76034,-5.6715E-05],[133.76378,-5.3106E-05],[133.76723,-5.5684E-05],[133.77068,-5.1043E-05],[133.77413,-5.1043E-05],[133.77758,-5.5684E-05],[133.78102,-5.6715E-05],[133.78447,-5.8262E-05],[133.78792,-5.259E-05],[133.79137,-5.1043E-05],[133.79482,-5.3106E-05],[133.79826,-5.8777E-05],[133.80171,-6.0324E-05],[133.80516,-5.6199E-05],[133.80861,-5.4652E-05],[133.81206,-5.1559E-05],[133.8155,-5.6715E-05],[133.81895,-5.5168E-05],[133.8224,-5.4652E-05],[133.82585,-5.723E-05],[133.8293,-5.1559E-05],[133.83274,-5.3106E-05],[133.83619,-5.4137E-05],[133.83964,-5.5168E-05],[133.84309,-5.3621E-05],[133.84654,-5.1559E-05],[133.84998,-5.2074E-05],[133.85343,-5.5168E-05],[133.85688,-5.723E-05],[133.86033,-5.3621E-05],[133.86378,-5.1043E-05],[133.86722,-5.0528E-05],[133.87067,-5.7746E-05],[133.87412,-5.5684E-05],[133.87757,-5.4137E-05],[133.88102,-5.723E-05],[133.88446,-5.2074E-05],[133.88791,-5.3621E-05],[133.89136,-5.259E-05],[133.89481,-5.259E-05],[133.89826,-5.3621E-05],[133.9017,-5.723E-05],[133.90515,-5.9293E-05]]}
-{"quant":[134.216,-5.4601E-05],"mems":[[134.11893,-5.5168E-05],[134.12238,-5.5684E-05],[134.12582,-5.5168E-05],[134.12927,-5.7746E-05],[134.13272,-5.4652E-05],[134.13617,-5.5168E-05],[134.13962,-5.6715E-05],[134.14306,-5.259E-05],[134.14651,-4.795E-05],[134.14996,-4.9497E-05],[134.15341,-5.1043E-05],[134.15686,-5.3621E-05],[134.1603,-5.4137E-05],[134.16375,-5.3106E-05],[134.1672,-5.723E-05],[134.17065,-5.0012E-05],[134.1741,-5.0012E-05],[134.17754,-5.6715E-05],[134.18099,-5.3106E-05],[134.18444,-5.2074E-05],[134.18789,-5.1559E-05],[134.19134,-5.259E-05],[134.19478,-5.3106E-05],[134.19823,-5.3106E-05],[134.20168,-5.4652E-05],[134.20513,-5.4137E-05],[134.20858,-5.3106E-05],[134.21202,-5.0012E-05],[134.21547,-5.3106E-05],[134.21892,-5.5168E-05],[134.22237,-5.259E-05],[134.22582,-5.4652E-05],[134.22926,-4.8981E-05],[134.23271,-5.0528E-05],[134.23616,-5.6715E-05],[134.23961,-5.6199E-05],[134.24306,-5.9808E-05],[134.2465,-5.723E-05],[134.24995,-5.5684E-05],[134.2534,-5.5684E-05],[134.25685,-5.5684E-05],[134.2603,-5.4652E-05],[134.26374,-5.3621E-05],[134.26719,-5.1559E-05],[134.27064,-4.6919E-05],[134.27409,-5.2074E-05],[134.27754,-5.4137E-05],[134.28098,-5.5168E-05],[134.28443,-5.723E-05],[134.28788,-5.2074E-05],[134.29133,-5.3621E-05],[134.29478,-5.723E-05],[134.29822,-5.723E-05],[134.30167,-5.7746E-05],[134.30512,-5.4652E-05],[134.30857,-5.5168E-05],[134.31202,-5.7746E-05],[134.31546,-5.4137E-05],[134.31891,-5.4137E-05],[134.32236,-5.5684E-05],[134.32581,-5.4652E-05],[134.32926,-5.5684E-05],[134.3327,-5.4652E-05],[134.33615,-5.6715E-05],[134.3396,-5.9293E-05],[134.34305,-5.259E-05],[134.3465,-5.2074E-05],[134.34994,-5.259E-05],[134.35339,-5.3621E-05],[134.35684,-5.4137E-05],[134.36029,-5.0528E-05],[134.36374,-5.0012E-05],[134.36718,-5.1043E-05],[134.37063,-5.4652E-05],[134.37408,-5.1559E-05],[134.37753,-5.4652E-05],[134.38098,-5.6199E-05],[134.38442,-5.1559E-05],[134.38787,-5.3106E-05],[134.39132,-4.8981E-05],[134.39477,-5.4137E-05],[134.39822,-5.6715E-05],[134.40166,-5.3106E-05],[134.40511,-5.5684E-05],[134.40856,-5.8262E-05],[134.41201,-5.6199E-05],[134.41546,-5.0528E-05],[134.4189,-5.3621E-05]]}
-{"quant":[134.739,-5.2882E-05],"mems":[[134.63908,-5.3106E-05],[134.64252,-5.259E-05],[134.64595,-5.4137E-05],[134.64939,-5.4652E-05],[134.65282,-5.1559E-05],[134.65626,-5.0012E-05],[134.65969,-5.5684E-05],[134.66313,-5.6199E-05],[134.66656,-5.1559E-05],[134.66999,-5.3106E-05],[134.67343,-5.4652E-05],[134.67686,-5.6199E-05],[134.6803,-5.4137E-05],[134.68373,-5.259E-05],[134.68717,-5.3621E-05],[134.6906,-5.0528E-05],[134.69404,-5.259E-05],[134.69747,-5.3106E-05],[134.70091,-5.259E-05],[134.70434,-5.5684E-05],[134.70778,-5.5684E-05],[134.71121,-5.3106E-05],[134.71465,-5.3621E-05],[134.71808,-5.6199E-05],[134.72151,-5.0012E-05],[134.72495,-4.9497E-05],[134.72838,-5.1559E-05],[134.73182,-4.8465E-05],[134.73525,-5.4137E-05],[134.73869,-5.3106E-05],[134.74212,-5.1559E-05],[134.74556,-5.8262E-05],[134.74899,-5.1559E-05],[134.75243,-4.9497E-05],[134.75586,-5.6199E-05],[134.7593,-5.3621E-05],[134.76273,-5.0528E-05],[134.76617,-4.8465E-05],[134.7696,-5.1559E-05],[134.77303,-5.3621E-05],[134.77647,-5.1559E-05],[134.7799,-5.1043E-05],[134.78334,-4.8981E-05],[134.78677,-5.5684E-05],[134.79021,-5.3621E-05],[134.79364,-4.8981E-05],[134.79708,-5.4652E-05],[134.80051,-5.723E-05],[134.80395,-5.723E-05],[134.80738,-5.5684E-05],[134.81082,-5.259E-05],[134.81425,-4.9497E-05],[134.81769,-5.2074E-05],[134.82112,-5.1559E-05],[134.82455,-5.2074E-05],[134.82799,-5.7746E-05],[134.83142,-5.3106E-05],[134.83486,-5.259E-05],[134.83829,-5.4652E-05],[134.84173,-5.1043E-05],[134.84516,-5.259E-05],[134.8486,-5.1559E-05],[134.85203,-5.3106E-05],[134.85547,-5.7746E-05],[134.8589,-5.8777E-05],[134.86234,-5.4652E-05],[134.86577,-5.4652E-05],[134.86921,-5.5684E-05],[134.87264,-5.0012E-05],[134.87607,-5.723E-05],[134.87951,-5.9293E-05],[134.88294,-5.1559E-05],[134.88638,-5.3621E-05],[134.88981,-5.5684E-05],[134.89325,-5.259E-05],[134.89668,-4.8465E-05],[134.90012,-5.4652E-05],[134.90355,-5.5168E-05],[134.90699,-5.0528E-05],[134.91042,-5.5684E-05],[134.91386,-5.7746E-05],[134.91729,-5.8777E-05],[134.92073,-5.6199E-05],[134.92416,-5.2074E-05],[134.92759,-5.4652E-05],[134.93103,-5.5684E-05],[134.93446,-5.5684E-05],[134.9379,-5.723E-05],[134.94133,-5.8777E-05]]}
-{"quant":[135.483,-5.271E-05],"mems":[[135.38441,-5.0012E-05],[135.38784,-4.8465E-05],[135.39127,-4.795E-05],[135.39471,-5.0528E-05],[135.39814,-5.4137E-05],[135.40158,-5.9808E-05],[135.40501,-5.6199E-05],[135.40845,-5.1043E-05],[135.41188,-5.5168E-05],[135.41532,-5.0528E-05],[135.41875,-5.3621E-05],[135.42219,-5.3621E-05],[135.42562,-5.0528E-05],[135.42906,-5.259E-05],[135.43249,-5.2074E-05],[135.43593,-5.4137E-05],[135.43936,-5.2074E-05],[135.44279,-5.1043E-05],[135.44623,-5.2074E-05],[135.44966,-5.1043E-05],[135.4531,-5.2074E-05],[135.45653,-5.259E-05],[135.45997,-5.4137E-05],[135.4634,-5.0528E-05],[135.46684,-5.0012E-05],[135.47027,-5.3621E-05],[135.47371,-5.1559E-05],[135.47714,-5.259E-05],[135.48058,-5.4137E-05],[135.48401,-5.259E-05],[135.48745,-5.0012E-05],[135.49088,-4.795E-05],[135.49431,-5.3621E-05],[135.49775,-5.5168E-05],[135.50118,-5.6199E-05],[135.50462,-5.8777E-05],[135.50805,-5.0012E-05],[135.51149,-4.5887E-05],[135.51492,-5.0528E-05],[135.51836,-5.4652E-05],[135.52179,-5.1043E-05],[135.52523,-4.7434E-05],[135.52866,-4.7434E-05],[135.5321,-5.2074E-05],[135.53553,-5.9808E-05],[135.53897,-5.5168E-05],[135.5424,-5.1559E-05],[135.54583,-5.1559E-05],[135.54927,-4.8465E-05],[135.5527,-5.4137E-05],[135.55614,-5.5168E-05],[135.55957,-5.259E-05],[135.56301,-5.6199E-05],[135.56644,-5.5684E-05],[135.56988,-5.2074E-05],[135.57331,-5.3106E-05],[135.57675,-5.5684E-05],[135.58018,-5.4652E-05],[135.58362,-5.2074E-05],[135.58705,-5.4652E-05],[135.59049,-5.4137E-05],[135.59392,-5.1559E-05],[135.59735,-5.4137E-05],[135.60079,-5.723E-05],[135.60422,-5.6715E-05],[135.60766,-5.0528E-05],[135.61109,-4.9497E-05],[135.61453,-4.8981E-05],[135.61796,-4.9497E-05],[135.6214,-5.3621E-05],[135.62483,-5.3106E-05],[135.62827,-4.7434E-05],[135.6317,-5.0528E-05],[135.63514,-6.1871E-05],[135.63857,-5.7746E-05],[135.64201,-5.259E-05],[135.64544,-5.8262E-05],[135.64887,-5.2074E-05],[135.65231,-5.0012E-05],[135.65574,-5.5168E-05],[135.65918,-5.0012E-05],[135.66261,-5.3106E-05],[135.66605,-5.3621E-05],[135.66948,-5.3621E-05],[135.67292,-5.1559E-05],[135.67635,-5.1559E-05],[135.67979,-5.8777E-05],[135.68322,-5.5168E-05]]}
-{"quant":[135.986,-5.1559E-05],"mems":[[135.8893,-5.4652E-05],[135.89274,-4.9497E-05],[135.89617,-4.8465E-05],[135.89961,-5.1559E-05],[135.90304,-4.8981E-05],[135.90647,-4.8981E-05],[135.90991,-4.8981E-05],[135.91334,-5.3621E-05],[135.91678,-5.7746E-05],[135.92021,-5.3621E-05],[135.92365,-5.8262E-05],[135.92708,-5.2074E-05],[135.93052,-4.6403E-05],[135.93395,-5.3106E-05],[135.93739,-5.4652E-05],[135.94082,-5.6715E-05],[135.94426,-5.6199E-05],[135.94769,-5.5168E-05],[135.95113,-5.1559E-05],[135.95456,-5.2074E-05],[135.95799,-5.9293E-05],[135.96143,-5.7746E-05],[135.96486,-5.3106E-05],[135.9683,-5.0528E-05],[135.97173,-5.259E-05],[135.97517,-5.6715E-05],[135.9786,-5.3106E-05],[135.98204,-5.3106E-05],[135.98547,-5.1043E-05],[135.98891,-4.9497E-05],[135.99234,-5.1559E-05],[135.99578,-4.9497E-05],[135.99921,-4.8981E-05],[136.00265,-5.0012E-05],[136.00608,-5.2074E-05],[136.00951,-4.8465E-05],[136.01295,-5.1043E-05],[136.01638,-5.3106E-05],[136.01982,-5.2074E-05],[136.02325,-5.6199E-05],[136.02669,-5.2074E-05],[136.03012,-5.2074E-05],[136.03356,-5.3106E-05],[136.03699,-5.2074E-05],[136.04043,-5.0528E-05],[136.04386,-5.0012E-05],[136.0473,-5.0012E-05],[136.05073,-5.3106E-05],[136.05417,-5.6715E-05],[136.0576,-5.259E-05],[136.06103,-5.1559E-05],[136.06447,-5.3106E-05],[136.0679,-5.0012E-05],[136.07134,-4.9497E-05],[136.07477,-5.259E-05],[136.07821,-5.259E-05],[136.08164,-5.4137E-05],[136.08508,-5.0528E-05],[136.08851,-4.795E-05],[136.09195,-5.5684E-05],[136.09538,-5.7746E-05],[136.09882,-5.4137E-05],[136.10225,-5.1043E-05],[136.10569,-4.6919E-05],[136.10912,-4.8465E-05],[136.11255,-5.1559E-05],[136.11599,-5.0528E-05],[136.11942,-5.0012E-05],[136.12286,-4.6919E-05],[136.12629,-4.8981E-05],[136.12973,-5.259E-05],[136.13316,-5.2074E-05],[136.1366,-5.4652E-05],[136.14003,-5.4137E-05],[136.14347,-5.4652E-05],[136.1469,-5.4652E-05],[136.15034,-5.3621E-05],[136.15377,-5.4652E-05],[136.15721,-5.2074E-05],[136.16064,-5.1559E-05],[136.16407,-4.7434E-05],[136.16751,-4.7434E-05],[136.17094,-5.5168E-05],[136.17438,-5.7746E-05],[136.17781,-5.259E-05],[136.18125,-5.2074E-05],[136.18468,-5.3621E-05],[136.18812,-5.3621E-05]]}
-{"quant":[136.45,-5.4171E-05],"mems":[[136.35298,-5.6715E-05],[136.35642,-5.4652E-05],[136.35985,-5.723E-05],[136.36329,-5.6199E-05],[136.36672,-5.1559E-05],[136.37015,-4.6919E-05],[136.37359,-5.0012E-05],[136.37702,-5.723E-05],[136.38046,-5.6199E-05],[136.38389,-5.4137E-05],[136.38733,-5.0528E-05],[136.39076,-5.259E-05],[136.3942,-5.3621E-05],[136.39763,-5.5168E-05],[136.40107,-5.6199E-05],[136.4045,-5.2074E-05],[136.40794,-5.6199E-05],[136.41137,-5.5684E-05],[136.41481,-5.4652E-05],[136.41824,-5.3621E-05],[136.42167,-5.0528E-05],[136.42511,-5.0012E-05],[136.42854,-5.1043E-05],[136.43198,-5.3106E-05],[136.43541,-5.4137E-05],[136.43885,-5.3621E-05],[136.44228,-5.2074E-05],[136.44572,-5.3621E-05],[136.44915,-5.259E-05],[136.45259,-5.4137E-05],[136.45602,-5.5684E-05],[136.45946,-5.5168E-05],[136.46289,-5.5168E-05],[136.46633,-5.5168E-05],[136.46976,-5.6715E-05],[136.47319,-5.723E-05],[136.47663,-5.6199E-05],[136.48006,-5.0528E-05],[136.4835,-5.4137E-05],[136.48693,-5.4652E-05],[136.49037,-5.1043E-05],[136.4938,-5.6199E-05],[136.49724,-5.2074E-05],[136.50067,-5.4137E-05],[136.50411,-5.8777E-05],[136.50754,-5.3621E-05],[136.51098,-5.723E-05],[136.51441,-5.4652E-05],[136.51785,-5.1043E-05],[136.52128,-5.2074E-05],[136.52471,-5.0012E-05],[136.52815,-5.259E-05],[136.53158,-5.1043E-05],[136.53502,-5.5684E-05],[136.53845,-5.723E-05],[136.54189,-5.0528E-05],[136.54532,-5.259E-05],[136.54876,-5.4137E-05],[136.55219,-5.5684E-05],[136.55563,-5.6199E-05],[136.55906,-5.4137E-05],[136.5625,-5.5168E-05],[136.56593,-5.0528E-05],[136.56937,-4.9497E-05],[136.5728,-5.4137E-05],[136.57623,-5.4652E-05],[136.57967,-5.4652E-05],[136.5831,-5.3106E-05],[136.58654,-4.8981E-05],[136.58997,-5.0528E-05],[136.59341,-5.3106E-05],[136.59684,-5.3106E-05],[136.60028,-5.259E-05],[136.60371,-4.8981E-05],[136.60715,-5.1559E-05],[136.61058,-5.723E-05],[136.61402,-5.7746E-05],[136.61745,-5.5168E-05],[136.62089,-5.3621E-05],[136.62432,-5.3106E-05],[136.62775,-5.0528E-05],[136.63119,-5.2074E-05],[136.63462,-5.3621E-05],[136.63806,-5.1559E-05],[136.64149,-5.5684E-05],[136.64493,-5.5168E-05],[136.64836,-5.3621E-05],[136.6518,-5.6715E-05]]}
-{"quant":[136.92,-0.1908],"mems":[[136.82697,-5.6199E-05],[136.8304,-5.5684E-05],[136.83383,-5.3621E-05],[136.83727,-5.0012E-05],[136.8407,-5.3106E-05],[136.84414,-5.1559E-05],[136.84757,-4.9497E-05],[136.85101,-5.4652E-05],[136.85444,-5.2074E-05],[136.85788,-5.259E-05],[136.86131,-5.4137E-05],[136.86475,-5.1559E-05],[136.86818,-5.4137E-05],[136.87162,-5.6715E-05],[136.87505,-6.0324E-05],[136.87849,-6.0839E-05],[136.88192,-5.5684E-05],[136.88535,-5.6199E-05],[136.88879,-5.5168E-05],[136.89222,-5.3106E-05],[136.89566,-5.1043E-05],[136.89909,-5.1043E-05],[136.90253,-5.259E-05],[136.90596,-5.5684E-05],[136.9094,-5.6199E-05],[136.91283,-5.4652E-05],[136.91627,-5.6199E-05],[136.9197,-5.259E-05],[136.92314,-5.0012E-05],[136.92657,-5.0528E-05],[136.93001,-5.1559E-05],[136.93344,-5.1559E-05],[136.93687,-5.1043E-05],[136.94031,-5.1559E-05],[136.94374,-5.0012E-05],[136.94718,-5.1043E-05],[136.95061,-5.5168E-05],[136.95405,-5.6199E-05],[136.95748,-5.4137E-05],[136.96092,-5.4137E-05],[136.96435,-5.2074E-05],[136.96779,-4.9497E-05],[136.97122,-5.3621E-05],[136.97466,-5.0012E-05],[136.97809,-4.6919E-05],[136.98153,-5.4137E-05],[136.98496,-5.6715E-05],[136.98839,-5.4652E-05],[136.99183,-5.6715E-05],[136.99526,-5.5168E-05],[136.9987,-5.0012E-05],[137.00213,-4.9497E-05],[137.00557,-5.3106E-05],[137.009,-5.5684E-05],[137.01244,-5.5684E-05],[137.01587,-5.2074E-05],[137.01931,-5.2074E-05],[137.02274,-5.5168E-05],[137.02618,-5.4137E-05],[137.02961,-5.5684E-05],[137.03305,-5.3621E-05],[137.03648,-5.3106E-05],[137.03991,-5.4652E-05],[137.04335,-5.259E-05],[137.04678,-5.1559E-05],[137.05022,-5.2074E-05],[137.05365,-5.6199E-05],[137.05709,-5.3621E-05],[137.06052,-5.2074E-05],[137.06396,-5.3621E-05],[137.06739,-5.2074E-05],[137.07083,-5.259E-05],[137.07426,-5.1559E-05],[137.0777,-5.3106E-05],[137.08113,-5.3621E-05],[137.08457,-5.0528E-05],[137.088,-5.1559E-05],[137.09143,-5.4652E-05],[137.09486,-5.259E-05],[137.0983,-5.4652E-05],[137.10173,-5.7746E-05],[137.10516,-4.9497E-05],[137.10859,-4.8981E-05],[137.11202,-5.4652E-05],[137.11546,-5.3621E-05],[137.11889,-5.6199E-05],[137.12232,-5.5168E-05],[137.12575,-5.6199E-05]]}
-{"quant":[137.388,-5.4429E-05],"mems":[[137.29049,-5.3106E-05],[137.29392,-5.6715E-05],[137.29735,-5.5168E-05],[137.30078,-5.3106E-05],[137.30422,-5.3106E-05],[137.30765,-5.6199E-05],[137.31108,-5.9808E-05],[137.31451,-5.6199E-05],[137.31794,-5.1043E-05],[137.32138,-5.1043E-05],[137.32481,-5.3106E-05],[137.32824,-4.8981E-05],[137.33167,-4.9497E-05],[137.3351,-5.3106E-05],[137.33854,-5.1043E-05],[137.34197,-5.3106E-05],[137.3454,-5.2074E-05],[137.34883,-5.3106E-05],[137.35226,-5.5684E-05],[137.3557,-5.6199E-05],[137.35913,-5.2074E-05],[137.36256,-4.8981E-05],[137.36599,-5.3621E-05],[137.36942,-5.259E-05],[137.37286,-5.0528E-05],[137.37629,-5.4652E-05],[137.37972,-5.3106E-05],[137.38315,-5.1559E-05],[137.38658,-5.5168E-05],[137.39002,-5.5684E-05],[137.39345,-5.5684E-05],[137.39688,-5.3621E-05],[137.40031,-5.259E-05],[137.40374,-5.6199E-05],[137.40718,-5.6715E-05],[137.41061,-5.6199E-05],[137.41404,-5.6715E-05],[137.41747,-5.3621E-05],[137.4209,-5.3106E-05],[137.42434,-5.1043E-05],[137.42777,-4.7434E-05],[137.4312,-5.5168E-05],[137.43463,-5.7746E-05],[137.43806,-5.259E-05],[137.4415,-5.3106E-05],[137.44493,-5.4652E-05],[137.44836,-5.1559E-05],[137.45179,-5.1559E-05],[137.45522,-5.1559E-05],[137.45866,-5.4652E-05],[137.46209,-5.5684E-05],[137.46552,-5.259E-05],[137.46895,-5.723E-05],[137.47238,-5.8777E-05],[137.47582,-5.5168E-05],[137.47925,-5.3621E-05],[137.48268,-5.5168E-05],[137.48611,-5.5168E-05],[137.48954,-5.8262E-05],[137.49298,-6.2386E-05],[137.49641,-5.9808E-05],[137.49984,-5.5168E-05],[137.50327,-5.2074E-05],[137.5067,-4.9497E-05],[137.51014,-5.4652E-05],[137.51357,-5.4652E-05],[137.517,-5.2074E-05],[137.52043,-5.6715E-05],[137.52386,-4.795E-05],[137.5273,-5.0528E-05],[137.53073,-5.5684E-05],[137.53416,-5.1559E-05],[137.53759,-5.5168E-05],[137.54102,-4.8981E-05],[137.54446,-5.3106E-05],[137.54789,-5.8777E-05],[137.55132,-5.4652E-05],[137.55475,-5.259E-05],[137.55818,-4.795E-05],[137.56162,-5.1043E-05],[137.56505,-5.2074E-05],[137.56848,-5.0012E-05],[137.57191,-5.5168E-05],[137.57534,-5.7746E-05],[137.57878,-5.723E-05],[137.58221,-5.4652E-05],[137.58564,-5.1559E-05],[137.58907,-5.3621E-05]]}
-{"quant":[137.99,-5.3793E-05],"mems":[[137.89109,-5.3106E-05],[137.89452,-5.259E-05],[137.89795,-4.9497E-05],[137.90138,-5.0012E-05],[137.90482,-5.0012E-05],[137.90825,-5.6199E-05],[137.91168,-6.1355E-05],[137.91511,-5.723E-05],[137.91854,-5.1559E-05],[137.92198,-5.2074E-05],[137.92541,-5.3106E-05],[137.92884,-5.7746E-05],[137.93227,-5.7746E-05],[137.9357,-4.9497E-05],[137.93914,-5.0012E-05],[137.94257,-4.9497E-05],[137.946,-5.2074E-05],[137.94943,-5.6199E-05],[137.95286,-5.259E-05],[137.9563,-5.1043E-05],[137.95973,-5.259E-05],[137.96316,-5.4652E-05],[137.96659,-5.3621E-05],[137.97002,-5.8262E-05],[137.97346,-5.3106E-05],[137.97689,-4.8465E-05],[137.98032,-5.5684E-05],[137.98375,-4.6919E-05],[137.98718,-5.0012E-05],[137.99062,-5.4652E-05],[137.99405,-5.259E-05],[137.99748,-5.5684E-05],[138.00091,-5.0012E-05],[138.00434,-5.3106E-05],[138.00778,-5.5168E-05],[138.01121,-5.5684E-05],[138.01464,-5.723E-05],[138.01807,-5.4137E-05],[138.0215,-5.4652E-05],[138.02494,-5.3106E-05],[138.02837,-5.5168E-05],[138.0318,-5.7746E-05],[138.03523,-5.6199E-05],[138.03866,-5.7746E-05],[138.0421,-5.4652E-05],[138.04553,-5.1043E-05],[138.04896,-5.4137E-05],[138.05239,-5.3621E-05],[138.05582,-5.2074E-05],[138.05926,-5.4652E-05],[138.06269,-5.3106E-05],[138.06612,-5.259E-05],[138.06955,-5.259E-05],[138.07298,-5.0528E-05],[138.07642,-5.3621E-05],[138.07985,-5.0528E-05],[138.08328,-4.8981E-05],[138.08671,-5.4652E-05],[138.09014,-5.4137E-05],[138.09358,-5.1043E-05],[138.09701,-5.0528E-05],[138.10044,-5.259E-05],[138.10387,-5.5168E-05],[138.1073,-5.3621E-05],[138.11074,-5.4137E-05],[138.11417,-5.7746E-05],[138.1176,-5.4652E-05],[138.12103,-4.9497E-05],[138.12446,-5.0528E-05],[138.1279,-5.7746E-05],[138.13133,-5.7746E-05],[138.13476,-5.259E-05],[138.13819,-5.259E-05],[138.14162,-4.9497E-05],[138.14506,-5.1559E-05],[138.14849,-5.3621E-05],[138.15192,-5.5684E-05],[138.15535,-5.6715E-05],[138.15878,-5.2074E-05],[138.16222,-5.1559E-05],[138.16565,-5.4652E-05],[138.16908,-5.4652E-05],[138.17251,-5.1043E-05],[138.17594,-5.4652E-05],[138.17938,-5.259E-05],[138.18281,-5.3621E-05],[138.18624,-5.6199E-05],[138.18967,-5.2074E-05],[138.1931,-5.4137E-05]]}
-{"quant":[138.438,-5.3999E-05],"mems":[[138.34068,-4.795E-05],[138.34411,-5.0012E-05],[138.34754,-5.6715E-05],[138.35098,-5.5684E-05],[138.35441,-5.3621E-05],[138.35784,-5.0012E-05],[138.36127,-5.0528E-05],[138.3647,-5.3621E-05],[138.36814,-5.3621E-05],[138.37157,-5.3621E-05],[138.375,-5.4137E-05],[138.37843,-5.6715E-05],[138.38186,-5.3106E-05],[138.3853,-5.5168E-05],[138.38873,-5.9808E-05],[138.39216,-5.4137E-05],[138.39559,-5.5684E-05],[138.39902,-5.1043E-05],[138.40246,-5.1043E-05],[138.40589,-5.9808E-05],[138.40932,-5.5168E-05],[138.41275,-5.3106E-05],[138.41618,-5.6715E-05],[138.41962,-5.4652E-05],[138.42305,-5.1559E-05],[138.42648,-5.3621E-05],[138.42991,-5.1559E-05],[138.43334,-5.1043E-05],[138.43678,-5.5684E-05],[138.44021,-5.4652E-05],[138.44364,-5.3106E-05],[138.44707,-5.2074E-05],[138.4505,-5.1043E-05],[138.45394,-5.4652E-05],[138.45737,-5.259E-05],[138.4608,-4.8981E-05],[138.46423,-5.5168E-05],[138.46766,-5.3106E-05],[138.4711,-5.259E-05],[138.47453,-5.6199E-05],[138.47796,-5.3621E-05],[138.48139,-5.8262E-05],[138.48482,-5.6715E-05],[138.48826,-5.259E-05],[138.49169,-5.5684E-05],[138.49512,-5.6199E-05],[138.49855,-5.5168E-05],[138.50198,-5.4137E-05],[138.50542,-5.4137E-05],[138.50885,-5.5684E-05],[138.51228,-5.8262E-05],[138.51571,-5.723E-05],[138.51914,-5.4652E-05],[138.52258,-5.4137E-05],[138.52601,-5.2074E-05],[138.52944,-5.2074E-05],[138.53287,-5.4652E-05],[138.5363,-5.1043E-05],[138.53974,-4.9497E-05],[138.54317,-5.1559E-05],[138.5466,-5.6715E-05],[138.55003,-5.8777E-05],[138.55346,-5.3106E-05],[138.5569,-5.0528E-05],[138.56033,-5.2074E-05],[138.56376,-5.4137E-05],[138.56719,-5.4137E-05],[138.57062,-5.723E-05],[138.57406,-5.6199E-05],[138.57749,-5.0528E-05],[138.58092,-5.3106E-05],[138.58435,-5.6199E-05],[138.58778,-5.4652E-05],[138.59122,-5.3106E-05],[138.59465,-5.4137E-05],[138.59808,-5.3621E-05],[138.60151,-5.1559E-05],[138.60494,-5.4652E-05],[138.60838,-5.8777E-05],[138.61181,-5.259E-05],[138.61524,-4.6403E-05],[138.61867,-4.795E-05],[138.6221,-5.3106E-05],[138.62554,-6.1871E-05],[138.62897,-5.8262E-05],[138.6324,-5.259E-05],[138.63583,-5.1559E-05],[138.63926,-4.8981E-05]]}
-{"quant":[138.883,-5.3656E-05],"mems":[[138.78341,-5.2074E-05],[138.78684,-5.3621E-05],[138.79027,-5.0012E-05],[138.7937,-5.3621E-05],[138.79714,-5.0012E-05],[138.80057,-4.8981E-05],[138.804,-5.4652E-05],[138.80743,-5.259E-05],[138.81086,-5.5168E-05],[138.8143,-5.5684E-05],[138.81773,-5.259E-05],[138.82116,-5.1559E-05],[138.82459,-5.1559E-05],[138.82802,-5.259E-05],[138.83146,-5.4137E-05],[138.83489,-5.1043E-05],[138.83832,-4.8981E-05],[138.84175,-5.6199E-05],[138.84518,-5.723E-05],[138.84862,-5.2074E-05],[138.85205,-5.6199E-05],[138.85548,-5.6715E-05],[138.85891,-5.3621E-05],[138.86234,-5.4652E-05],[138.86578,-5.5684E-05],[138.86921,-5.723E-05],[138.87264,-5.2074E-05],[138.87607,-4.9497E-05],[138.8795,-5.3621E-05],[138.88294,-5.723E-05],[138.88637,-5.8262E-05],[138.8898,-5.2074E-05],[138.89323,-5.0528E-05],[138.89666,-5.3106E-05],[138.9001,-5.3621E-05],[138.90353,-5.2074E-05],[138.90696,-5.1043E-05],[138.91039,-5.259E-05],[138.91382,-5.1559E-05],[138.91726,-5.3621E-05],[138.92069,-5.5684E-05],[138.92412,-5.3621E-05],[138.92755,-5.5168E-05],[138.93098,-5.4137E-05],[138.93442,-5.1043E-05],[138.93785,-5.2074E-05],[138.94128,-5.5684E-05],[138.94471,-5.6715E-05],[138.94814,-5.2074E-05],[138.95158,-5.259E-05],[138.95501,-5.3106E-05],[138.95844,-4.9497E-05],[138.96187,-5.0012E-05],[138.9653,-5.259E-05],[138.96874,-5.5168E-05],[138.97217,-5.5168E-05],[138.9756,-5.5684E-05],[138.97903,-5.4137E-05],[138.98246,-5.8777E-05],[138.9859,-5.8262E-05],[138.98933,-5.1559E-05],[138.99276,-5.5168E-05],[138.99619,-5.3106E-05],[138.99962,-5.5684E-05],[139.00306,-5.6199E-05],[139.00649,-5.0528E-05],[139.00992,-5.3106E-05],[139.01335,-5.259E-05],[139.01678,-5.2074E-05],[139.02022,-5.259E-05],[139.02365,-5.7746E-05],[139.02708,-5.9293E-05],[139.03051,-5.8777E-05],[139.03394,-5.6715E-05],[139.03738,-5.1559E-05],[139.04081,-5.5684E-05],[139.04424,-5.6715E-05],[139.04767,-5.5684E-05],[139.0511,-5.5684E-05],[139.05454,-5.259E-05],[139.05797,-5.3621E-05],[139.0614,-5.5684E-05],[139.06483,-5.5168E-05],[139.06826,-5.5684E-05],[139.0717,-5.2074E-05],[139.07513,-5.1559E-05],[139.07856,-5.3621E-05],[139.08199,-5.3621E-05],[139.08542,-5.5684E-05]]}
-{"quant":[139.335,-5.2762E-05],"mems":[[139.23643,-5.8777E-05],[139.23986,-5.3106E-05],[139.2433,-5.723E-05],[139.24673,-6.1355E-05],[139.25016,-5.4652E-05],[139.25359,-5.1043E-05],[139.25702,-5.2074E-05],[139.26046,-5.5168E-05],[139.26389,-5.4137E-05],[139.26732,-5.4652E-05],[139.27075,-5.5168E-05],[139.27418,-5.5684E-05],[139.27762,-5.3621E-05],[139.28105,-5.2074E-05],[139.28448,-6.0324E-05],[139.28791,-5.6199E-05],[139.29134,-5.3106E-05],[139.29478,-5.5684E-05],[139.29821,-5.3106E-05],[139.30164,-5.723E-05],[139.30507,-5.7746E-05],[139.3085,-5.5684E-05],[139.31194,-5.3106E-05],[139.31537,-4.9497E-05],[139.3188,-5.1559E-05],[139.32223,-5.1559E-05],[139.32566,-5.2074E-05],[139.3291,-5.4652E-05],[139.33253,-5.1559E-05],[139.33596,-4.8981E-05],[139.33939,-5.1559E-05],[139.34282,-5.0012E-05],[139.34626,-5.0528E-05],[139.34969,-5.9293E-05],[139.35312,-5.5168E-05],[139.35655,-5.259E-05],[139.35998,-5.3621E-05],[139.36342,-5.0012E-05],[139.36685,-5.3106E-05],[139.37028,-5.2074E-05],[139.37371,-5.3106E-05],[139.37714,-5.4137E-05],[139.38058,-5.1043E-05],[139.38401,-5.259E-05],[139.38744,-5.1559E-05],[139.39087,-5.1559E-05],[139.3943,-5.5684E-05],[139.39774,-5.259E-05],[139.40117,-5.0012E-05],[139.4046,-5.4652E-05],[139.40803,-5.5168E-05],[139.41146,-5.4137E-05],[139.4149,-5.1559E-05],[139.41833,-5.3106E-05],[139.42176,-5.6199E-05],[139.42519,-5.4652E-05],[139.42862,-5.1559E-05],[139.43206,-5.0012E-05],[139.43549,-5.259E-05],[139.43892,-5.1043E-05],[139.44235,-5.3621E-05],[139.44578,-5.5684E-05],[139.44922,-5.2074E-05],[139.45265,-5.259E-05],[139.45608,-5.1043E-05],[139.45951,-5.1559E-05],[139.46294,-5.5168E-05],[139.46638,-5.4652E-05],[139.46981,-5.4137E-05],[139.47324,-5.259E-05],[139.47667,-5.3621E-05],[139.4801,-5.4652E-05],[139.48354,-5.4652E-05],[139.48697,-5.5168E-05],[139.4904,-5.4652E-05],[139.49383,-5.5168E-05],[139.49726,-5.3621E-05],[139.5007,-5.1559E-05],[139.50413,-5.5684E-05],[139.50756,-5.3621E-05],[139.51099,-5.259E-05],[139.51442,-5.5168E-05],[139.51786,-5.0012E-05],[139.52129,-5.3106E-05],[139.52472,-5.5684E-05],[139.52815,-5.4652E-05],[139.53158,-5.3106E-05],[139.53502,-5.3106E-05]]}
-{"quant":[139.806,-5.437E-05],"mems":[[139.70667,-6.0324E-05],[139.7101,-5.4652E-05],[139.71354,-4.8465E-05],[139.71698,-5.4137E-05],[139.72041,-5.5684E-05],[139.72385,-5.4652E-05],[139.72728,-6.3417E-05],[139.73072,-5.8262E-05],[139.73416,-4.6403E-05],[139.73759,-5.3106E-05],[139.74103,-5.5684E-05],[139.74446,-5.1559E-05],[139.7479,-5.259E-05],[139.75134,-5.4652E-05],[139.75477,-5.5684E-05],[139.75821,-5.1559E-05],[139.76164,-5.259E-05],[139.76508,-5.0528E-05],[139.76852,-4.9497E-05],[139.77195,-5.2074E-05],[139.77539,-5.0012E-05],[139.77882,-5.259E-05],[139.78226,-5.4652E-05],[139.7857,-5.6715E-05],[139.78913,-5.6199E-05],[139.79257,-5.1559E-05],[139.796,-5.1043E-05],[139.79944,-5.8262E-05],[139.80288,-5.5684E-05],[139.80631,-5.3621E-05],[139.80975,-6.0324E-05],[139.81318,-5.5168E-05],[139.81662,-4.7434E-05],[139.82006,-5.2074E-05],[139.82349,-5.5168E-05],[139.82693,-5.5684E-05],[139.83036,-5.5684E-05],[139.8338,-4.8465E-05],[139.83724,-5.259E-05],[139.84067,-5.8262E-05],[139.84411,-5.9293E-05],[139.84754,-5.6715E-05],[139.85098,-5.259E-05],[139.85442,-5.3106E-05],[139.85785,-5.259E-05],[139.86129,-5.4652E-05],[139.86472,-5.6199E-05],[139.86816,-5.7746E-05],[139.8716,-5.5684E-05],[139.87503,-5.0012E-05],[139.87847,-5.4652E-05],[139.8819,-5.5684E-05],[139.88534,-5.2074E-05],[139.88878,-5.4137E-05],[139.89221,-5.259E-05],[139.89565,-5.4137E-05],[139.89908,-5.4652E-05],[139.90252,-5.3106E-05],[139.90596,-5.6715E-05],[139.90939,-5.4652E-05],[139.91283,-5.3106E-05],[139.91626,-5.723E-05],[139.9197,-5.5168E-05],[139.92314,-5.4137E-05],[139.92657,-6.0839E-05],[139.93001,-5.9808E-05],[139.93344,-5.4137E-05],[139.93688,-5.6715E-05],[139.94032,-5.4137E-05],[139.94375,-5.4137E-05],[139.94719,-5.6199E-05],[139.95062,-5.1043E-05],[139.95406,-5.259E-05],[139.9575,-5.3621E-05],[139.96093,-5.5684E-05],[139.96437,-5.9293E-05],[139.9678,-5.6715E-05],[139.97124,-5.7746E-05],[139.97468,-5.4137E-05],[139.97811,-5.2074E-05],[139.98155,-5.2074E-05],[139.98498,-4.7434E-05],[139.98842,-5.259E-05],[139.99186,-4.8981E-05],[139.99529,-4.3309E-05],[139.99873,-5.4137E-05],[140.00216,-5.6199E-05],[140.0056,-5.5168E-05],[140.00904,-5.723E-05]]}
-{"quant":[140.53,-5.424E-05],"mems":[[140.43166,-5.723E-05],[140.4351,-5.1559E-05],[140.43854,-5.4652E-05],[140.44197,-5.5684E-05],[140.44541,-5.3621E-05],[140.44884,-5.6715E-05],[140.45228,-5.4137E-05],[140.45572,-4.9497E-05],[140.45915,-5.5168E-05],[140.46259,-5.5168E-05],[140.46602,-5.8262E-05],[140.46946,-5.9293E-05],[140.4729,-5.0528E-05],[140.47633,-5.4137E-05],[140.47977,-5.4652E-05],[140.4832,-5.4652E-05],[140.48664,-5.5684E-05],[140.49008,-5.3621E-05],[140.49351,-5.259E-05],[140.49695,-5.2074E-05],[140.50038,-5.723E-05],[140.50382,-5.7746E-05],[140.50726,-5.4137E-05],[140.51069,-5.2074E-05],[140.51413,-4.8465E-05],[140.51756,-5.2074E-05],[140.521,-5.5168E-05],[140.52444,-5.4137E-05],[140.52787,-5.5684E-05],[140.53131,-5.4137E-05],[140.53474,-5.259E-05],[140.53818,-5.4137E-05],[140.54162,-5.4652E-05],[140.54505,-5.723E-05],[140.54849,-5.723E-05],[140.55192,-5.259E-05],[140.55536,-5.1043E-05],[140.5588,-5.259E-05],[140.56223,-5.4137E-05],[140.56567,-5.4137E-05],[140.5691,-5.5684E-05],[140.57254,-5.4137E-05],[140.57598,-5.3106E-05],[140.57941,-5.6199E-05],[140.58285,-5.1559E-05],[140.58628,-5.3106E-05],[140.58972,-5.6715E-05],[140.59316,-5.3106E-05],[140.59659,-5.5168E-05],[140.60003,-5.8777E-05],[140.60346,-5.9808E-05],[140.6069,-5.5684E-05],[140.61034,-5.2074E-05],[140.61377,-5.0528E-05],[140.61721,-4.8465E-05],[140.62064,-5.2074E-05],[140.62408,-5.5684E-05],[140.62752,-5.5684E-05],[140.63095,-5.5168E-05],[140.63439,-5.6199E-05],[140.63782,-5.5168E-05],[140.64126,-5.259E-05],[140.6447,-5.3106E-05],[140.64813,-5.4652E-05],[140.65157,-5.0528E-05],[140.655,-4.6403E-05],[140.65844,-5.1043E-05],[140.66188,-5.5168E-05],[140.66531,-5.6199E-05],[140.66875,-5.2074E-05],[140.67218,-4.5887E-05],[140.67562,-5.1559E-05],[140.67906,-5.8262E-05],[140.68249,-5.8262E-05],[140.68593,-5.4137E-05],[140.68936,-4.8981E-05],[140.6928,-5.259E-05],[140.69624,-5.6199E-05],[140.69967,-5.5168E-05],[140.70311,-5.6715E-05],[140.70654,-5.6715E-05],[140.70998,-5.5168E-05],[140.71342,-5.4137E-05],[140.71685,-5.3621E-05],[140.72029,-5.3106E-05],[140.72372,-5.2074E-05],[140.72716,-5.1043E-05],[140.7306,-5.0528E-05]]}
-{"quant":[140.99,-5.4446E-05],"mems":[[140.89209,-5.5684E-05],[140.89552,-5.4137E-05],[140.89896,-5.4652E-05],[140.9024,-5.5168E-05],[140.90583,-5.3621E-05],[140.90927,-5.0528E-05],[140.9127,-4.9497E-05],[140.91614,-5.4137E-05],[140.91958,-5.4652E-05],[140.92301,-5.259E-05],[140.92645,-4.8981E-05],[140.92988,-5.0012E-05],[140.93332,-5.4652E-05],[140.93676,-5.1043E-05],[140.94019,-5.2074E-05],[140.94363,-5.4137E-05],[140.94706,-5.3106E-05],[140.9505,-5.3106E-05],[140.95394,-5.1559E-05],[140.95737,-5.6199E-05],[140.96081,-5.9293E-05],[140.96424,-5.723E-05],[140.96768,-5.6199E-05],[140.97112,-5.3106E-05],[140.97455,-5.1559E-05],[140.97799,-5.4137E-05],[140.98142,-5.5684E-05],[140.98486,-5.4652E-05],[140.9883,-5.3106E-05],[140.99173,-5.4137E-05],[140.99517,-5.2074E-05],[140.9986,-5.8262E-05],[141.00204,-5.8777E-05],[141.00548,-5.8262E-05],[141.00891,-5.8262E-05],[141.01235,-4.8981E-05],[141.01578,-4.9497E-05],[141.01922,-5.4652E-05],[141.02266,-5.6715E-05],[141.02609,-5.3621E-05],[141.02953,-5.6715E-05],[141.03296,-5.7746E-05],[141.0364,-5.2074E-05],[141.03984,-5.4652E-05],[141.04327,-5.3106E-05],[141.04671,-5.4652E-05],[141.05014,-5.5168E-05],[141.05358,-5.2074E-05],[141.05702,-5.5684E-05],[141.06045,-5.8777E-05],[141.06389,-5.7746E-05],[141.06732,-5.5168E-05],[141.07076,-5.1043E-05],[141.0742,-5.1559E-05],[141.07763,-5.5168E-05],[141.08107,-5.4137E-05],[141.0845,-4.8981E-05],[141.08794,-5.2074E-05],[141.09138,-5.3621E-05],[141.09481,-5.0012E-05],[141.09825,-5.7746E-05],[141.10168,-6.0839E-05],[141.10512,-5.4137E-05],[141.10856,-5.0528E-05],[141.11199,-4.9497E-05],[141.11543,-4.8465E-05],[141.11886,-4.8465E-05],[141.1223,-5.0012E-05],[141.12574,-5.4652E-05],[141.12917,-5.7746E-05],[141.13261,-5.4652E-05],[141.13604,-5.6199E-05],[141.13948,-5.6199E-05],[141.14292,-5.3621E-05],[141.14635,-5.2074E-05],[141.14979,-5.1559E-05],[141.15322,-5.3106E-05],[141.15666,-5.3621E-05],[141.1601,-5.4652E-05],[141.16353,-5.3106E-05],[141.16697,-5.4652E-05],[141.1704,-5.5168E-05],[141.17384,-5.1043E-05],[141.17728,-5.0012E-05],[141.18071,-5.259E-05],[141.18415,-5.259E-05],[141.18758,-5.1043E-05],[141.19102,-5.1043E-05]]}
-{"quant":[141.456,-5.3742E-05],"mems":[[141.35938,-5.723E-05],[141.36282,-5.7746E-05],[141.36626,-5.5684E-05],[141.36969,-5.5168E-05],[141.37313,-5.4652E-05],[141.37656,-5.5168E-05],[141.38,-5.9293E-05],[141.38344,-5.5168E-05],[141.38687,-5.1043E-05],[141.39031,-5.2074E-05],[141.39374,-5.3621E-05],[141.39718,-5.1559E-05],[141.40062,-5.4652E-05],[141.40405,-5.6199E-05],[141.40749,-5.4652E-05],[141.41092,-5.2074E-05],[141.41436,-4.8465E-05],[141.4178,-5.6715E-05],[141.42123,-5.5168E-05],[141.42467,-5.0528E-05],[141.4281,-5.5168E-05],[141.43154,-5.1043E-05],[141.43498,-5.0528E-05],[141.43841,-5.4137E-05],[141.44185,-5.4137E-05],[141.44528,-5.4652E-05],[141.44872,-4.9497E-05],[141.45216,-4.795E-05],[141.45559,-5.3106E-05],[141.45903,-5.4137E-05],[141.46246,-5.8262E-05],[141.4659,-5.6715E-05],[141.46934,-5.2074E-05],[141.47277,-5.6199E-05],[141.47621,-5.3106E-05],[141.47964,-5.4137E-05],[141.48308,-5.6715E-05],[141.48652,-5.3106E-05],[141.48995,-5.4652E-05],[141.49339,-5.3106E-05],[141.49682,-5.1043E-05],[141.50026,-5.3621E-05],[141.5037,-5.3106E-05],[141.50713,-5.1559E-05],[141.51057,-5.2074E-05],[141.514,-5.5168E-05],[141.51744,-5.8777E-05],[141.52088,-5.4137E-05],[141.52431,-5.0528E-05],[141.52775,-5.3106E-05],[141.53118,-5.4652E-05],[141.53462,-5.3106E-05],[141.53806,-5.3106E-05],[141.54149,-5.5684E-05],[141.54493,-5.1043E-05],[141.54836,-5.0012E-05],[141.5518,-5.3621E-05],[141.55524,-5.1559E-05],[141.55867,-5.4137E-05],[141.56211,-5.9293E-05],[141.56554,-5.7746E-05],[141.56898,-5.259E-05],[141.57242,-4.8981E-05],[141.57585,-5.5168E-05],[141.57929,-5.5168E-05],[141.58272,-5.1043E-05],[141.58616,-5.1559E-05],[141.5896,-4.9497E-05],[141.59303,-4.9497E-05],[141.59647,-4.9497E-05],[141.5999,-5.3106E-05],[141.60334,-5.6199E-05],[141.60678,-5.6199E-05],[141.61021,-5.3621E-05],[141.61365,-5.1043E-05],[141.61708,-5.1559E-05],[141.62052,-5.4137E-05],[141.62396,-5.9293E-05],[141.62739,-5.5168E-05],[141.63083,-5.1043E-05],[141.63426,-5.5168E-05],[141.6377,-5.4652E-05],[141.64114,-5.5684E-05],[141.64457,-5.5684E-05],[141.64801,-5.3621E-05],[141.65144,-5.3106E-05],[141.65488,-5.6199E-05],[141.65832,-5.723E-05]]}
-{"quant":[141.912,-5.3432E-05],"mems":[[141.81294,-5.9808E-05],[141.81637,-5.7746E-05],[141.81981,-5.259E-05],[141.82324,-5.5684E-05],[141.82668,-5.5168E-05],[141.83012,-4.795E-05],[141.83355,-5.0012E-05],[141.83699,-5.7746E-05],[141.84042,-5.6199E-05],[141.84386,-5.4652E-05],[141.8473,-5.0528E-05],[141.85073,-4.9497E-05],[141.85417,-5.4137E-05],[141.8576,-5.2074E-05],[141.86104,-4.9497E-05],[141.86448,-4.8465E-05],[141.86791,-5.5168E-05],[141.87135,-5.8262E-05],[141.87478,-5.9808E-05],[141.87822,-6.0324E-05],[141.88166,-5.6199E-05],[141.88509,-5.3621E-05],[141.88853,-4.9497E-05],[141.89196,-5.5168E-05],[141.8954,-5.9293E-05],[141.89884,-5.5684E-05],[141.90227,-5.6199E-05],[141.90571,-5.5168E-05],[141.90914,-5.3621E-05],[141.91258,-5.5168E-05],[141.91602,-5.4137E-05],[141.91945,-5.1559E-05],[141.92289,-5.5168E-05],[141.92632,-5.5168E-05],[141.92976,-5.0012E-05],[141.9332,-5.0528E-05],[141.93663,-5.3621E-05],[141.94007,-5.5168E-05],[141.9435,-5.8262E-05],[141.94694,-5.6199E-05],[141.95038,-5.3106E-05],[141.95381,-5.4652E-05],[141.95725,-5.3106E-05],[141.96068,-5.3621E-05],[141.96412,-5.3621E-05],[141.96756,-5.1559E-05],[141.97099,-4.8981E-05],[141.97443,-4.9497E-05],[141.97786,-5.5684E-05],[141.9813,-5.5684E-05],[141.98474,-5.4652E-05],[141.98817,-5.4652E-05],[141.99161,-5.3621E-05],[141.99504,-5.4137E-05],[141.99848,-5.1043E-05],[142.00192,-5.1559E-05],[142.00535,-5.259E-05],[142.00879,-5.2074E-05],[142.01222,-5.4137E-05],[142.01566,-5.723E-05],[142.0191,-6.2386E-05],[142.02253,-5.8262E-05],[142.02597,-5.259E-05],[142.0294,-5.3621E-05],[142.03284,-5.259E-05],[142.03628,-5.4652E-05],[142.03971,-5.4137E-05],[142.04315,-5.5168E-05],[142.04658,-5.5168E-05],[142.05002,-5.1043E-05],[142.05346,-5.4652E-05],[142.05689,-5.0528E-05],[142.06033,-5.3621E-05],[142.06376,-5.3106E-05],[142.0672,-5.0012E-05],[142.07064,-5.8262E-05],[142.07407,-5.2074E-05],[142.07751,-5.3106E-05],[142.08094,-5.6715E-05],[142.08438,-5.2074E-05],[142.08782,-5.4137E-05],[142.09125,-5.4652E-05],[142.09469,-5.2074E-05],[142.09812,-5.6715E-05],[142.10156,-6.1355E-05],[142.105,-5.3106E-05],[142.10843,-5.2074E-05],[142.11187,-5.259E-05],[142.1153,-5.5684E-05]]}
-{"quant":[142.38,-5.522E-05],"mems":[[142.28025,-5.5684E-05],[142.28369,-5.8777E-05],[142.28712,-5.1043E-05],[142.29056,-4.9497E-05],[142.294,-5.3621E-05],[142.29743,-5.3106E-05],[142.30087,-5.4652E-05],[142.30431,-6.0324E-05],[142.30775,-5.7746E-05],[142.31118,-5.2074E-05],[142.31462,-5.3106E-05],[142.31806,-5.3621E-05],[142.3215,-5.6199E-05],[142.32493,-5.6199E-05],[142.32837,-5.2074E-05],[142.33181,-5.4652E-05],[142.33525,-5.4137E-05],[142.33868,-5.3106E-05],[142.34212,-5.4137E-05],[142.34556,-5.2074E-05],[142.34899,-5.3621E-05],[142.35243,-5.5684E-05],[142.35587,-5.6715E-05],[142.35931,-6.0324E-05],[142.36274,-5.8262E-05],[142.36618,-5.2074E-05],[142.36962,-5.1043E-05],[142.37306,-5.2074E-05],[142.37649,-5.259E-05],[142.37993,-5.5684E-05],[142.38337,-5.7746E-05],[142.38681,-5.259E-05],[142.39024,-5.6199E-05],[142.39368,-5.7746E-05],[142.39712,-5.5168E-05],[142.40055,-5.5168E-05],[142.40399,-5.4652E-05],[142.40743,-5.6715E-05],[142.41087,-5.4137E-05],[142.4143,-5.4137E-05],[142.41774,-5.8262E-05],[142.42118,-5.5684E-05],[142.42462,-5.5168E-05],[142.42805,-5.4652E-05],[142.43149,-5.259E-05],[142.43493,-5.4652E-05],[142.43837,-5.7746E-05],[142.4418,-5.4652E-05],[142.44524,-4.9497E-05],[142.44868,-5.0528E-05],[142.45211,-5.5684E-05],[142.45555,-5.9293E-05],[142.45899,-5.5168E-05],[142.46243,-5.2074E-05],[142.46586,-5.3106E-05],[142.4693,-5.3106E-05],[142.47274,-5.7746E-05],[142.47618,-6.2386E-05],[142.47961,-5.723E-05],[142.48305,-5.3106E-05],[142.48649,-4.9497E-05],[142.48993,-4.8465E-05],[142.49336,-5.3106E-05],[142.4968,-5.259E-05],[142.50024,-5.1559E-05],[142.50367,-5.1559E-05],[142.50711,-5.4137E-05],[142.51055,-5.723E-05],[142.51399,-5.2074E-05],[142.51742,-5.3106E-05],[142.52086,-5.723E-05],[142.5243,-5.4652E-05],[142.52774,-5.259E-05],[142.53117,-5.5168E-05],[142.53461,-5.723E-05],[142.53805,-5.5168E-05],[142.54149,-5.6199E-05],[142.54492,-5.3106E-05],[142.54836,-5.3106E-05],[142.5518,-5.5684E-05],[142.55523,-5.4652E-05],[142.55867,-5.8262E-05],[142.56211,-5.2074E-05],[142.56555,-5.259E-05],[142.56898,-5.3106E-05],[142.57242,-4.8465E-05],[142.57586,-5.2074E-05],[142.5793,-5.1559E-05],[142.58273,-5.1043E-05]]}
-{"quant":[143.079,-5.491E-05],"mems":[[142.98146,-5.6199E-05],[142.9849,-5.2074E-05],[142.98834,-5.4652E-05],[142.99178,-5.1559E-05],[142.99521,-5.3621E-05],[142.99865,-5.4652E-05],[143.00209,-5.5168E-05],[143.00553,-5.259E-05],[143.00896,-5.0012E-05],[143.0124,-5.3621E-05],[143.01584,-5.5684E-05],[143.01927,-5.4652E-05],[143.02271,-5.6199E-05],[143.02615,-5.3621E-05],[143.02959,-5.1559E-05],[143.03302,-5.5168E-05],[143.03646,-5.3621E-05],[143.0399,-5.3621E-05],[143.04334,-5.5684E-05],[143.04677,-5.1559E-05],[143.05021,-5.3621E-05],[143.05365,-5.5168E-05],[143.05709,-5.2074E-05],[143.06052,-5.4137E-05],[143.06396,-5.4137E-05],[143.0674,-5.5684E-05],[143.07083,-5.5168E-05],[143.07427,-5.0012E-05],[143.07771,-5.259E-05],[143.08115,-5.6715E-05],[143.08458,-5.259E-05],[143.08802,-5.259E-05],[143.09146,-5.8262E-05],[143.0949,-5.8777E-05],[143.09833,-5.723E-05],[143.10177,-5.7746E-05],[143.10521,-4.9497E-05],[143.10865,-4.5887E-05],[143.11208,-5.5684E-05],[143.11552,-5.6715E-05],[143.11896,-5.6199E-05],[143.12239,-5.3621E-05],[143.12583,-5.2074E-05],[143.12927,-5.4652E-05],[143.13271,-5.4652E-05],[143.13614,-5.5684E-05],[143.13958,-5.4137E-05],[143.14302,-5.6715E-05],[143.14646,-6.1355E-05],[143.14989,-6.1355E-05],[143.15333,-5.6715E-05],[143.15677,-5.3106E-05],[143.16021,-5.4137E-05],[143.16364,-5.5684E-05],[143.16708,-5.3106E-05],[143.17052,-5.0528E-05],[143.17395,-5.6715E-05],[143.17739,-5.5168E-05],[143.18083,-5.0012E-05],[143.18427,-5.3621E-05],[143.1877,-4.9497E-05],[143.19114,-5.1559E-05],[143.19458,-5.9808E-05],[143.19802,-6.1355E-05],[143.20145,-6.0324E-05],[143.20489,-5.6199E-05],[143.20833,-5.1559E-05],[143.21177,-5.3106E-05],[143.2152,-5.9808E-05],[143.21864,-5.6715E-05],[143.22208,-5.1559E-05],[143.22551,-5.2074E-05],[143.22895,-5.259E-05],[143.23239,-5.6715E-05],[143.23583,-5.723E-05],[143.23926,-5.6715E-05],[143.2427,-5.4652E-05],[143.24614,-5.4652E-05],[143.24958,-5.6715E-05],[143.25301,-5.3621E-05],[143.25645,-5.4652E-05],[143.25989,-5.4137E-05],[143.26333,-5.1559E-05],[143.26676,-5.2074E-05],[143.2702,-5.3106E-05],[143.27364,-5.8777E-05],[143.27707,-5.8777E-05],[143.28051,-5.5168E-05]]}
-{"quant":[143.545,-5.3971E-05],"mems":[[143.4455,-4.5887E-05],[143.44894,-5.1559E-05],[143.45238,-5.9293E-05],[143.45582,-5.7746E-05],[143.45925,-5.4137E-05],[143.46269,-5.259E-05],[143.46613,-5.1043E-05],[143.46957,-5.4137E-05],[143.473,-5.6199E-05],[143.47644,-5.4652E-05],[143.47988,-5.723E-05],[143.48331,-5.0012E-05],[143.48675,-4.8465E-05],[143.49019,-5.4652E-05],[143.49363,-5.1559E-05],[143.49706,-5.3621E-05],[143.5005,-5.5684E-05],[143.50394,-5.6715E-05],[143.50738,-5.5684E-05],[143.51081,-5.3106E-05],[143.51425,-5.8262E-05],[143.51769,-5.8777E-05],[143.52113,-5.6715E-05],[143.52456,-5.4652E-05],[143.528,-5.2074E-05],[143.53144,-5.5168E-05],[143.53487,-5.7746E-05],[143.53831,-5.723E-05],[143.54175,-5.4137E-05],[143.54519,-5.2074E-05],[143.54862,-4.8981E-05],[143.55206,-5.2074E-05],[143.5555,-5.8777E-05],[143.55894,-5.1559E-05],[143.56237,-4.9497E-05],[143.56581,-5.723E-05],[143.56925,-5.5168E-05],[143.57269,-5.4652E-05],[143.57612,-5.5684E-05],[143.57956,-5.3621E-05],[143.583,-5.4137E-05],[143.58643,-5.4137E-05],[143.58987,-5.5684E-05],[143.59331,-5.5168E-05],[143.59675,-5.3621E-05],[143.60018,-5.3106E-05],[143.60362,-5.3106E-05],[143.60706,-5.9293E-05],[143.6105,-6.0324E-05],[143.61393,-5.5168E-05],[143.61737,-5.3106E-05],[143.62081,-5.259E-05],[143.62425,-5.2074E-05],[143.62768,-5.0528E-05],[143.63112,-5.2074E-05],[143.63456,-5.2074E-05],[143.63799,-5.3621E-05],[143.64143,-5.6715E-05],[143.64487,-5.4137E-05],[143.64831,-5.3106E-05],[143.65174,-5.5168E-05],[143.65518,-5.3621E-05],[143.65862,-5.4652E-05],[143.66206,-5.5168E-05],[143.66549,-5.1559E-05],[143.66893,-5.259E-05],[143.67237,-5.6199E-05],[143.67581,-5.5168E-05],[143.67924,-5.259E-05],[143.68268,-5.4652E-05],[143.68612,-5.3106E-05],[143.68955,-5.5168E-05],[143.69299,-5.9293E-05],[143.69643,-6.2386E-05],[143.69987,-5.9808E-05],[143.7033,-5.5684E-05],[143.70674,-5.6715E-05],[143.71018,-5.2074E-05],[143.71362,-5.5684E-05],[143.71705,-5.7746E-05],[143.72049,-5.7746E-05],[143.72393,-5.5168E-05],[143.72737,-5.1043E-05],[143.7308,-5.4652E-05],[143.73424,-5.5684E-05],[143.73768,-5.8262E-05],[143.74111,-5.8777E-05],[143.74455,-5.723E-05],[143.74799,-5.4137E-05]]}
-{"quant":[144.033,-5.3987E-05],"mems":[[143.93361,-5.3106E-05],[143.93704,-5.723E-05],[143.94048,-5.8262E-05],[143.94392,-5.2074E-05],[143.94735,-5.3106E-05],[143.95079,-5.4137E-05],[143.95423,-5.3621E-05],[143.95767,-5.3106E-05],[143.9611,-5.3106E-05],[143.96454,-5.6199E-05],[143.96798,-5.259E-05],[143.97142,-5.2074E-05],[143.97485,-5.6715E-05],[143.97829,-5.5684E-05],[143.98173,-5.7746E-05],[143.98517,-5.5684E-05],[143.9886,-5.3106E-05],[143.99204,-5.6715E-05],[143.99548,-5.6199E-05],[143.99891,-5.5684E-05],[144.00235,-5.3621E-05],[144.00579,-5.2074E-05],[144.00923,-5.4652E-05],[144.01266,-5.6715E-05],[144.0161,-5.6199E-05],[144.01954,-5.1043E-05],[144.02298,-5.1043E-05],[144.02641,-5.4652E-05],[144.02985,-5.259E-05],[144.03329,-5.3106E-05],[144.03673,-5.3621E-05],[144.04016,-5.3106E-05],[144.0436,-5.259E-05],[144.04704,-5.259E-05],[144.05047,-5.259E-05],[144.05391,-5.4652E-05],[144.05735,-5.6715E-05],[144.06079,-5.3621E-05],[144.06422,-5.0012E-05],[144.06766,-4.8981E-05],[144.0711,-5.2074E-05],[144.07454,-5.7746E-05],[144.07797,-6.0839E-05],[144.08141,-5.4652E-05],[144.08485,-5.259E-05],[144.08829,-5.4652E-05],[144.09172,-5.5168E-05],[144.09516,-5.6715E-05],[144.0986,-5.1043E-05],[144.10203,-5.259E-05],[144.10547,-5.5684E-05],[144.10891,-5.259E-05],[144.11235,-5.723E-05],[144.11578,-5.3621E-05],[144.11922,-5.1559E-05],[144.12266,-5.259E-05],[144.1261,-5.1559E-05],[144.12953,-5.5168E-05],[144.13297,-5.5684E-05],[144.13641,-5.8262E-05],[144.13985,-5.3621E-05],[144.14328,-5.1559E-05],[144.14672,-5.5168E-05],[144.15016,-5.0528E-05],[144.15359,-5.0012E-05],[144.15703,-5.2074E-05],[144.16047,-5.259E-05],[144.16391,-4.9497E-05],[144.16734,-4.9497E-05],[144.17078,-5.5684E-05],[144.17422,-5.5684E-05],[144.17766,-5.6199E-05],[144.18109,-5.723E-05],[144.18453,-5.4137E-05],[144.18797,-5.1043E-05],[144.19141,-5.0528E-05],[144.19484,-5.1043E-05],[144.19828,-5.3106E-05],[144.20172,-5.4137E-05],[144.20515,-5.3621E-05],[144.20859,-5.6199E-05],[144.21203,-5.5684E-05],[144.21547,-5.3106E-05],[144.2189,-5.259E-05],[144.22234,-5.4652E-05],[144.22578,-5.5168E-05],[144.22922,-5.259E-05],[144.23265,-5.5168E-05],[144.23609,-5.5168E-05]]}
-{"quant":[144.51,-5.4326E-05],"mems":[[144.41139,-5.6715E-05],[144.41483,-5.3621E-05],[144.41827,-5.4137E-05],[144.42171,-4.9497E-05],[144.42514,-5.259E-05],[144.42858,-5.2074E-05],[144.43202,-4.9497E-05],[144.43546,-5.3106E-05],[144.43889,-5.1559E-05],[144.44233,-5.0528E-05],[144.44577,-4.8465E-05],[144.44921,-5.0012E-05],[144.45264,-5.4137E-05],[144.45608,-5.3106E-05],[144.45952,-5.1043E-05],[144.46295,-5.3621E-05],[144.46639,-5.4652E-05],[144.46983,-5.3106E-05],[144.47327,-5.8777E-05],[144.4767,-5.8262E-05],[144.48014,-5.4137E-05],[144.48358,-5.4137E-05],[144.48702,-5.5684E-05],[144.49045,-5.5684E-05],[144.49389,-5.3621E-05],[144.49733,-5.4652E-05],[144.50077,-5.2074E-05],[144.5042,-5.723E-05],[144.50764,-6.0324E-05],[144.51108,-5.3621E-05],[144.51451,-5.723E-05],[144.51795,-5.9808E-05],[144.52139,-5.6715E-05],[144.52483,-5.3106E-05],[144.52826,-5.1043E-05],[144.5317,-5.7746E-05],[144.53514,-5.8777E-05],[144.53858,-5.4137E-05],[144.54201,-5.4137E-05],[144.54545,-5.3106E-05],[144.54889,-5.3106E-05],[144.55233,-5.4652E-05],[144.55576,-5.5684E-05],[144.5592,-5.2074E-05],[144.56264,-5.0528E-05],[144.56607,-5.6715E-05],[144.56951,-5.4137E-05],[144.57295,-5.3106E-05],[144.57639,-5.5684E-05],[144.57982,-4.8465E-05],[144.58326,-4.795E-05],[144.5867,-5.259E-05],[144.59014,-5.5168E-05],[144.59357,-5.8262E-05],[144.59701,-5.5684E-05],[144.60045,-5.259E-05],[144.60389,-5.4137E-05],[144.60732,-5.5684E-05],[144.61076,-5.4137E-05],[144.6142,-5.4137E-05],[144.61763,-5.4137E-05],[144.62107,-5.259E-05],[144.62451,-5.3621E-05],[144.62795,-5.0012E-05],[144.63138,-5.259E-05],[144.63482,-5.8777E-05],[144.63826,-5.3106E-05],[144.6417,-5.1043E-05],[144.64513,-5.2074E-05],[144.64857,-5.8262E-05],[144.65201,-6.0839E-05],[144.65545,-5.9293E-05],[144.65888,-5.8777E-05],[144.66232,-5.4137E-05],[144.66576,-5.1559E-05],[144.66919,-5.2074E-05],[144.67263,-5.5168E-05],[144.67607,-5.259E-05],[144.67951,-5.1043E-05],[144.68294,-5.1043E-05],[144.68638,-5.4137E-05],[144.68982,-5.7746E-05],[144.69326,-5.3106E-05],[144.69669,-5.6199E-05],[144.70013,-5.723E-05],[144.70357,-5.3106E-05],[144.70701,-5.1043E-05],[144.71044,-5.5684E-05]]}
-{"quant":[145.001,-5.3449E-05],"mems":[[144.90293,-5.4137E-05],[144.90637,-5.3106E-05],[144.90981,-5.3621E-05],[144.91325,-5.3621E-05],[144.91668,-5.2074E-05],[144.92012,-5.6715E-05],[144.92356,-5.4137E-05],[144.92699,-5.1043E-05],[144.93043,-5.4652E-05],[144.93387,-5.4652E-05],[144.93731,-5.8262E-05],[144.94074,-5.5168E-05],[144.94418,-5.0528E-05],[144.94762,-5.3621E-05],[144.95106,-5.7746E-05],[144.95449,-5.6715E-05],[144.95793,-5.5168E-05],[144.96137,-5.4137E-05],[144.96481,-5.3106E-05],[144.96824,-5.6715E-05],[144.97168,-5.5168E-05],[144.97512,-5.6715E-05],[144.97855,-6.1871E-05],[144.98199,-5.4652E-05],[144.98543,-5.2074E-05],[144.98887,-5.8262E-05],[144.9923,-5.9293E-05],[144.99574,-5.6715E-05],[144.99918,-5.5168E-05],[145.00262,-5.1559E-05],[145.00605,-4.795E-05],[145.00949,-5.0012E-05],[145.01293,-5.4652E-05],[145.01637,-5.4137E-05],[145.0198,-5.259E-05],[145.02324,-5.1559E-05],[145.02668,-4.795E-05],[145.03011,-4.6403E-05],[145.03355,-5.5168E-05],[145.03699,-5.8262E-05],[145.04043,-5.1043E-05],[145.04386,-5.4652E-05],[145.0473,-5.4652E-05],[145.05074,-5.259E-05],[145.05418,-5.9808E-05],[145.05761,-5.6199E-05],[145.06105,-5.0528E-05],[145.06449,-5.259E-05],[145.06793,-5.4652E-05],[145.07136,-5.6199E-05],[145.0748,-5.7746E-05],[145.07824,-5.8262E-05],[145.08167,-5.3106E-05],[145.08511,-5.3106E-05],[145.08855,-5.6199E-05],[145.09199,-5.5168E-05],[145.09542,-5.3621E-05],[145.09886,-5.1559E-05],[145.1023,-5.1559E-05],[145.10574,-5.259E-05],[145.10917,-5.5684E-05],[145.11261,-5.5168E-05],[145.11605,-5.4137E-05],[145.11949,-5.723E-05],[145.12292,-5.4137E-05],[145.12636,-5.4652E-05],[145.1298,-5.8262E-05],[145.13323,-5.6715E-05],[145.13667,-5.4137E-05],[145.14011,-5.3106E-05],[145.14355,-5.4137E-05],[145.14698,-5.5684E-05],[145.15042,-5.4137E-05],[145.15386,-5.1559E-05],[145.1573,-5.1043E-05],[145.16073,-5.259E-05],[145.16417,-5.4652E-05],[145.16761,-5.3106E-05],[145.17105,-5.6715E-05],[145.17448,-5.6199E-05],[145.17792,-5.4652E-05],[145.18136,-5.5168E-05],[145.18479,-5.0528E-05],[145.18823,-5.3621E-05],[145.19167,-5.1043E-05],[145.19511,-5.2074E-05],[145.19854,-5.6715E-05],[145.20198,-5.1559E-05]]}
-{"quant":[145.706,-5.271E-05],"mems":[[145.60759,-5.5168E-05],[145.61102,-5.3621E-05],[145.61446,-4.8981E-05],[145.6179,-4.9497E-05],[145.62134,-5.2074E-05],[145.62477,-5.5684E-05],[145.62821,-5.6715E-05],[145.63165,-5.7746E-05],[145.63509,-5.5684E-05],[145.63852,-5.3106E-05],[145.64196,-5.2074E-05],[145.6454,-5.3621E-05],[145.64883,-5.4137E-05],[145.65227,-5.1559E-05],[145.65571,-5.3106E-05],[145.65915,-5.4137E-05],[145.66258,-5.6715E-05],[145.66602,-5.4652E-05],[145.66946,-5.259E-05],[145.6729,-5.1043E-05],[145.67633,-5.2074E-05],[145.67977,-5.6715E-05],[145.68321,-5.1559E-05],[145.68665,-5.259E-05],[145.69008,-5.4652E-05],[145.69352,-5.3621E-05],[145.69696,-5.4137E-05],[145.70039,-5.1043E-05],[145.70383,-4.795E-05],[145.70727,-5.259E-05],[145.71071,-5.6715E-05],[145.71414,-5.259E-05],[145.71758,-5.259E-05],[145.72102,-4.6919E-05],[145.72446,-4.795E-05],[145.72789,-5.5168E-05],[145.73133,-5.5684E-05],[145.73477,-6.1355E-05],[145.73821,-5.723E-05],[145.74164,-5.1043E-05],[145.74508,-5.5168E-05],[145.74852,-5.723E-05],[145.75195,-5.1559E-05],[145.75539,-5.1559E-05],[145.75883,-5.3621E-05],[145.76227,-4.8465E-05],[145.7657,-4.8465E-05],[145.76914,-5.1559E-05],[145.77258,-5.1559E-05],[145.77602,-5.0528E-05],[145.77945,-5.2074E-05],[145.78289,-5.1043E-05],[145.78633,-5.4137E-05],[145.78977,-5.5684E-05],[145.7932,-5.3621E-05],[145.79664,-5.5168E-05],[145.80008,-4.8981E-05],[145.80351,-4.795E-05],[145.80695,-5.3106E-05],[145.81039,-5.259E-05],[145.81383,-5.2074E-05],[145.81726,-5.259E-05],[145.8207,-5.3106E-05],[145.82414,-5.1559E-05],[145.82758,-5.0528E-05],[145.83101,-5.0528E-05],[145.83445,-4.8981E-05],[145.83789,-5.3621E-05],[145.84133,-5.3106E-05],[145.84476,-5.0012E-05],[145.8482,-5.5684E-05],[145.85164,-5.5168E-05],[145.85507,-5.3106E-05],[145.85851,-5.3621E-05],[145.86195,-5.4652E-05],[145.86539,-5.3621E-05],[145.86882,-5.6199E-05],[145.87226,-5.8777E-05],[145.8757,-5.723E-05],[145.87914,-5.3106E-05],[145.88257,-4.795E-05],[145.88601,-5.6715E-05],[145.88945,-5.3106E-05],[145.89289,-5.2074E-05],[145.89632,-5.9808E-05],[145.89976,-5.3106E-05],[145.9032,-5.259E-05],[145.90663,-5.3106E-05]]}
-{"quant":[146.174,-5.4687E-05],"mems":[[146.07506,-4.8465E-05],[146.0785,-5.1559E-05],[146.08194,-5.6199E-05],[146.08538,-5.4137E-05],[146.08881,-5.2074E-05],[146.09225,-5.6715E-05],[146.09569,-5.5684E-05],[146.09913,-5.5168E-05],[146.10256,-5.1559E-05],[146.106,-5.259E-05],[146.10944,-5.6715E-05],[146.11287,-5.3621E-05],[146.11631,-5.0528E-05],[146.11975,-4.8465E-05],[146.12319,-5.1043E-05],[146.12662,-5.0012E-05],[146.13006,-5.3621E-05],[146.1335,-5.723E-05],[146.13694,-5.5168E-05],[146.14037,-5.4652E-05],[146.14381,-5.0528E-05],[146.14725,-5.1043E-05],[146.15069,-5.5168E-05],[146.15412,-5.5684E-05],[146.15756,-5.4137E-05],[146.161,-5.1043E-05],[146.16443,-5.1043E-05],[146.16787,-5.4137E-05],[146.17131,-5.6199E-05],[146.17475,-5.3621E-05],[146.17818,-5.4652E-05],[146.18162,-5.5168E-05],[146.18506,-5.1559E-05],[146.1885,-5.5684E-05],[146.19193,-5.7746E-05],[146.19537,-5.6199E-05],[146.19881,-5.6715E-05],[146.20225,-5.3106E-05],[146.20568,-5.3106E-05],[146.20912,-5.5168E-05],[146.21256,-5.259E-05],[146.21599,-5.6715E-05],[146.21943,-5.6199E-05],[146.22287,-5.1043E-05],[146.22631,-5.4652E-05],[146.22974,-5.5684E-05],[146.23318,-5.9808E-05],[146.23662,-5.4652E-05],[146.24006,-5.0528E-05],[146.24349,-5.723E-05],[146.24693,-5.4137E-05],[146.25037,-5.6199E-05],[146.25381,-5.4652E-05],[146.25724,-5.2074E-05],[146.26068,-5.1559E-05],[146.26412,-5.259E-05],[146.26755,-5.6715E-05],[146.27099,-5.5684E-05],[146.27443,-5.5168E-05],[146.27787,-4.8981E-05],[146.2813,-5.0012E-05],[146.28474,-5.6199E-05],[146.28818,-5.4137E-05],[146.29162,-5.6199E-05],[146.29505,-5.7746E-05],[146.29849,-5.4652E-05],[146.30193,-5.2074E-05],[146.30537,-5.259E-05],[146.3088,-5.723E-05],[146.31224,-5.6715E-05],[146.31568,-5.5168E-05],[146.31911,-5.4652E-05],[146.32255,-5.4137E-05],[146.32599,-5.4652E-05],[146.32943,-5.3106E-05],[146.33286,-5.3621E-05],[146.3363,-5.4137E-05],[146.33974,-5.259E-05],[146.34318,-5.4652E-05],[146.34661,-5.723E-05],[146.35005,-5.6199E-05],[146.35349,-5.5684E-05],[146.35693,-5.5168E-05],[146.36036,-5.3106E-05],[146.3638,-5.6715E-05],[146.36724,-5.9808E-05],[146.37067,-5.259E-05],[146.37411,-5.0528E-05]]}
-{"quant":[146.643,-5.3278E-05],"mems":[[146.54598,-5.5168E-05],[146.54942,-5.4137E-05],[146.55285,-5.5684E-05],[146.55629,-5.2074E-05],[146.55973,-5.259E-05],[146.56317,-5.6199E-05],[146.5666,-5.3621E-05],[146.57004,-6.0324E-05],[146.57348,-5.8777E-05],[146.57691,-5.1043E-05],[146.58035,-5.2074E-05],[146.58379,-5.4652E-05],[146.58723,-6.1355E-05],[146.59066,-5.8262E-05],[146.5941,-5.5168E-05],[146.59754,-5.5168E-05],[146.60098,-4.795E-05],[146.60441,-5.1559E-05],[146.60785,-5.4652E-05],[146.61129,-5.3621E-05],[146.61473,-5.5684E-05],[146.61816,-5.4137E-05],[146.6216,-5.259E-05],[146.62504,-5.4652E-05],[146.62847,-5.7746E-05],[146.63191,-5.8262E-05],[146.63535,-5.3106E-05],[146.63879,-4.795E-05],[146.64222,-5.2074E-05],[146.64566,-5.8777E-05],[146.6491,-5.5168E-05],[146.65254,-5.259E-05],[146.65597,-5.4137E-05],[146.65941,-4.8981E-05],[146.66285,-5.2074E-05],[146.66629,-5.4137E-05],[146.66972,-5.1559E-05],[146.67316,-5.259E-05],[146.6766,-5.3621E-05],[146.68003,-5.5168E-05],[146.68347,-5.6199E-05],[146.68691,-5.4652E-05],[146.69035,-5.0528E-05],[146.69378,-5.3106E-05],[146.69722,-5.3621E-05],[146.70066,-4.8981E-05],[146.7041,-5.723E-05],[146.70753,-5.5168E-05],[146.71097,-4.9497E-05],[146.71441,-5.4137E-05],[146.71785,-5.2074E-05],[146.72128,-4.8981E-05],[146.72472,-5.1043E-05],[146.72816,-5.5168E-05],[146.73159,-5.6199E-05],[146.73503,-5.4652E-05],[146.73847,-5.3621E-05],[146.74191,-5.1559E-05],[146.74534,-5.3106E-05],[146.74878,-5.6199E-05],[146.75222,-5.723E-05],[146.75566,-5.259E-05],[146.75909,-5.1043E-05],[146.76253,-5.3106E-05],[146.76597,-5.6715E-05],[146.76941,-5.6199E-05],[146.77284,-5.1043E-05],[146.77628,-5.259E-05],[146.77972,-4.8465E-05],[146.78315,-5.1043E-05],[146.78659,-5.8262E-05],[146.79003,-5.5684E-05],[146.79347,-5.723E-05],[146.7969,-5.259E-05],[146.80034,-5.0012E-05],[146.80378,-5.1559E-05],[146.80722,-5.1559E-05],[146.81065,-5.5168E-05],[146.81409,-5.6715E-05],[146.81753,-5.723E-05],[146.82097,-5.4652E-05],[146.8244,-5.3106E-05],[146.82784,-5.0528E-05],[146.83128,-5.2074E-05],[146.83471,-5.5684E-05],[146.83815,-5.2074E-05],[146.84159,-5.2074E-05],[146.84503,-5.5168E-05]]}
-{"quant":[147.102,-5.5271E-05],"mems":[[147.00314,-5.3621E-05],[147.00658,-5.259E-05],[147.01002,-5.259E-05],[147.01346,-5.2074E-05],[147.01689,-5.0012E-05],[147.02033,-5.4137E-05],[147.02377,-5.6199E-05],[147.02721,-5.723E-05],[147.03064,-5.5168E-05],[147.03408,-5.6199E-05],[147.03752,-5.5168E-05],[147.04095,-5.1559E-05],[147.04439,-5.723E-05],[147.04783,-5.5684E-05],[147.05127,-5.3621E-05],[147.0547,-5.6199E-05],[147.05814,-5.0528E-05],[147.06158,-5.0012E-05],[147.06502,-5.6199E-05],[147.06845,-5.6715E-05],[147.07189,-5.4137E-05],[147.07533,-5.1043E-05],[147.07877,-5.1559E-05],[147.0822,-5.3621E-05],[147.08564,-5.259E-05],[147.08908,-5.6199E-05],[147.09251,-5.6199E-05],[147.09595,-5.6715E-05],[147.09939,-5.5168E-05],[147.10283,-4.9497E-05],[147.10626,-5.8262E-05],[147.1097,-5.9808E-05],[147.11314,-5.4652E-05],[147.11658,-5.9293E-05],[147.12001,-5.6199E-05],[147.12345,-5.4652E-05],[147.12689,-5.6199E-05],[147.13033,-5.4137E-05],[147.13376,-5.3106E-05],[147.1372,-5.3621E-05],[147.14064,-5.3621E-05],[147.14407,-5.5168E-05],[147.14751,-5.4137E-05],[147.15095,-5.3621E-05],[147.15439,-5.5168E-05],[147.15782,-5.3106E-05],[147.16126,-5.259E-05],[147.1647,-5.5168E-05],[147.16814,-5.3621E-05],[147.17157,-5.6715E-05],[147.17501,-5.7746E-05],[147.17845,-5.0528E-05],[147.18189,-5.5684E-05],[147.18532,-5.9293E-05],[147.18876,-5.723E-05],[147.1922,-5.6715E-05],[147.19563,-5.4137E-05],[147.19907,-5.6199E-05],[147.20251,-5.8262E-05],[147.20595,-5.9293E-05],[147.20938,-5.4137E-05],[147.21282,-4.8465E-05],[147.21626,-5.1043E-05],[147.2197,-5.259E-05],[147.22313,-5.5684E-05],[147.22657,-5.9293E-05],[147.23001,-5.723E-05],[147.23345,-5.5168E-05],[147.23688,-5.5684E-05],[147.24032,-5.1043E-05],[147.24376,-4.9497E-05],[147.24719,-5.4652E-05],[147.25063,-5.4137E-05],[147.25407,-5.259E-05],[147.25751,-5.6199E-05],[147.26094,-5.4137E-05],[147.26438,-4.9497E-05],[147.26782,-5.6715E-05],[147.27126,-5.9808E-05],[147.27469,-5.5684E-05],[147.27813,-5.4652E-05],[147.28157,-5.3621E-05],[147.28501,-5.4137E-05],[147.28844,-5.259E-05],[147.29188,-5.3621E-05],[147.29532,-5.4652E-05],[147.29875,-5.3106E-05],[147.30219,-5.5168E-05]]}
-{"quant":[147.556,-5.3177E-05],"mems":[[147.45877,-5.2074E-05],[147.46231,-5.5168E-05],[147.46585,-5.8777E-05],[147.4694,-5.3621E-05],[147.47294,-5.4137E-05],[147.47648,-5.4137E-05],[147.48002,-5.5684E-05],[147.48357,-5.5168E-05],[147.48711,-5.3106E-05],[147.49065,-5.8262E-05],[147.49419,-5.2074E-05],[147.49774,-5.259E-05],[147.50128,-5.5168E-05],[147.50482,-5.2074E-05],[147.50837,-5.723E-05],[147.51191,-5.6199E-05],[147.51545,-5.259E-05],[147.51899,-5.1559E-05],[147.52254,-5.0012E-05],[147.52608,-5.3621E-05],[147.52962,-5.6715E-05],[147.53316,-5.259E-05],[147.53671,-5.3621E-05],[147.54025,-5.4652E-05],[147.54379,-5.3106E-05],[147.54733,-5.8262E-05],[147.55088,-5.6715E-05],[147.55442,-5.6715E-05],[147.55796,-5.5684E-05],[147.56151,-5.2074E-05],[147.56505,-5.4137E-05],[147.56859,-5.3106E-05],[147.57213,-5.4652E-05],[147.57568,-5.5684E-05],[147.57922,-5.5684E-05],[147.58276,-5.1043E-05],[147.5863,-4.7434E-05],[147.58985,-5.5168E-05],[147.59339,-5.4652E-05],[147.59693,-5.259E-05],[147.60047,-5.6199E-05],[147.60402,-5.3106E-05],[147.60756,-5.2074E-05],[147.6111,-5.4137E-05],[147.61465,-5.5168E-05],[147.61819,-5.2074E-05],[147.62173,-4.8465E-05],[147.62527,-5.0528E-05],[147.62882,-5.0012E-05],[147.63236,-5.1559E-05],[147.6359,-5.4652E-05],[147.63944,-5.5684E-05],[147.64299,-5.5684E-05],[147.64653,-5.259E-05],[147.65007,-5.259E-05],[147.65361,-5.3106E-05],[147.65716,-5.259E-05],[147.6607,-5.4652E-05],[147.66424,-5.3106E-05],[147.66779,-5.259E-05],[147.67133,-5.3621E-05],[147.67487,-5.3621E-05],[147.67841,-5.4137E-05],[147.68196,-5.3106E-05],[147.6855,-5.3106E-05],[147.68904,-5.259E-05],[147.69258,-5.6199E-05],[147.69613,-5.3106E-05],[147.69967,-5.3106E-05],[147.70321,-5.3621E-05],[147.70675,-4.8465E-05],[147.7103,-5.0528E-05],[147.71384,-5.259E-05],[147.71738,-5.6199E-05],[147.72093,-5.4652E-05],[147.72447,-5.0012E-05],[147.72801,-5.1043E-05],[147.73155,-5.4652E-05],[147.7351,-5.5684E-05],[147.73864,-5.6199E-05],[147.74218,-5.6715E-05],[147.74572,-5.3621E-05],[147.74927,-5.5168E-05],[147.75281,-5.4137E-05],[147.75635,-5.2074E-05]]}
-{"quant":[148.168,-5.3995E-05],"mems":[[148.06811,-5.5684E-05],[148.07165,-4.9497E-05],[148.07519,-5.3106E-05],[148.07873,-5.3106E-05],[148.08228,-5.1559E-05],[148.08582,-5.5684E-05],[148.08936,-5.4652E-05],[148.09291,-4.795E-05],[148.09645,-5.0012E-05],[148.09999,-5.3621E-05],[148.10353,-5.259E-05],[148.10708,-5.5684E-05],[148.11062,-5.0012E-05],[148.11416,-4.7434E-05],[148.1177,-5.4137E-05],[148.12125,-5.1559E-05],[148.12479,-4.8981E-05],[148.12833,-5.1559E-05],[148.13187,-5.6199E-05],[148.13542,-5.6715E-05],[148.13896,-5.1559E-05],[148.1425,-5.723E-05],[148.14605,-5.723E-05],[148.14959,-5.4137E-05],[148.15313,-5.6715E-05],[148.15667,-5.2074E-05],[148.16022,-5.0528E-05],[148.16376,-5.1043E-05],[148.1673,-5.5684E-05],[148.17084,-5.5684E-05],[148.17439,-5.259E-05],[148.17793,-5.6199E-05],[148.18147,-5.2074E-05],[148.18501,-5.259E-05],[148.18856,-5.723E-05],[148.1921,-5.5684E-05],[148.19564,-5.4652E-05],[148.19919,-5.5684E-05],[148.20273,-5.1559E-05],[148.20627,-4.8465E-05],[148.20981,-4.9497E-05],[148.21336,-5.1559E-05],[148.2169,-5.3106E-05],[148.22044,-5.259E-05],[148.22398,-5.1043E-05],[148.22753,-5.4137E-05],[148.23107,-5.9293E-05],[148.23461,-5.8777E-05],[148.23815,-5.6715E-05],[148.2417,-5.5168E-05],[148.24524,-5.5168E-05],[148.24878,-5.5168E-05],[148.25233,-5.3106E-05],[148.25587,-5.3621E-05],[148.25941,-5.259E-05],[148.26295,-5.3106E-05],[148.2665,-5.4652E-05],[148.27004,-5.4137E-05],[148.27358,-5.1559E-05],[148.27712,-5.4137E-05],[148.28067,-5.5168E-05],[148.28421,-4.8465E-05],[148.28775,-5.0528E-05],[148.29129,-5.3106E-05],[148.29484,-5.0012E-05],[148.29838,-5.4137E-05],[148.30192,-5.5168E-05],[148.30547,-5.2074E-05],[148.30901,-5.8262E-05],[148.31255,-6.1355E-05],[148.31609,-5.6199E-05],[148.31964,-5.3106E-05],[148.32318,-4.8981E-05],[148.32672,-5.0528E-05],[148.33026,-5.5684E-05],[148.33381,-5.7746E-05],[148.33735,-5.5684E-05],[148.34089,-5.5168E-05],[148.34443,-5.3621E-05],[148.34798,-5.1043E-05],[148.35152,-5.3621E-05],[148.35506,-5.7746E-05],[148.35861,-5.6199E-05],[148.36215,-5.4137E-05],[148.36569,-5.3106E-05],[148.36923,-5.259E-05]]}
-{"quant":[148.647,-5.4368E-05],"mems":[[148.54991,-5.6199E-05],[148.55345,-5.723E-05],[148.55699,-5.4652E-05],[148.56054,-5.6199E-05],[148.56408,-5.6715E-05],[148.56762,-5.5168E-05],[148.57117,-5.0528E-05],[148.57471,-5.6199E-05],[148.57825,-5.8777E-05],[148.58179,-5.5684E-05],[148.58534,-5.5684E-05],[148.58888,-4.9497E-05],[148.59242,-4.7434E-05],[148.59596,-5.5168E-05],[148.59951,-6.0324E-05],[148.60305,-5.9293E-05],[148.60659,-5.7746E-05],[148.61013,-5.7746E-05],[148.61368,-5.5168E-05],[148.61722,-5.1043E-05],[148.62076,-5.5168E-05],[148.62431,-5.5168E-05],[148.62785,-5.259E-05],[148.63139,-5.6715E-05],[148.63493,-5.5168E-05],[148.63848,-5.3106E-05],[148.64202,-5.1043E-05],[148.64556,-5.1043E-05],[148.6491,-5.5168E-05],[148.65265,-5.4652E-05],[148.65619,-5.3621E-05],[148.65973,-5.5684E-05],[148.66327,-5.723E-05],[148.66682,-5.5684E-05],[148.67036,-5.5168E-05],[148.6739,-5.4137E-05],[148.67745,-5.3106E-05],[148.68099,-5.6715E-05],[148.68453,-5.259E-05],[148.68807,-4.8981E-05],[148.69162,-5.5684E-05],[148.69516,-5.4137E-05],[148.6987,-5.3106E-05],[148.70224,-5.723E-05],[148.70579,-5.3106E-05],[148.70933,-5.5684E-05],[148.71287,-5.5168E-05],[148.71641,-4.6403E-05],[148.71996,-5.2074E-05],[148.7235,-5.5684E-05],[148.72704,-5.5168E-05],[148.73059,-5.5168E-05],[148.73413,-5.2074E-05],[148.73767,-5.3106E-05],[148.74121,-5.6199E-05],[148.74476,-5.9293E-05],[148.7483,-5.4652E-05],[148.75184,-5.3106E-05],[148.75538,-5.3621E-05],[148.75893,-5.0012E-05],[148.76247,-4.9497E-05],[148.76601,-5.4652E-05],[148.76955,-5.6715E-05],[148.7731,-5.4652E-05],[148.77664,-5.4137E-05],[148.78018,-5.259E-05],[148.78373,-5.3106E-05],[148.78727,-5.259E-05],[148.79081,-5.2074E-05],[148.79435,-5.4652E-05],[148.7979,-5.0528E-05],[148.80144,-5.259E-05],[148.80498,-5.8262E-05],[148.80852,-5.6199E-05],[148.81207,-5.5168E-05],[148.81561,-5.3106E-05],[148.81915,-5.3106E-05],[148.82269,-5.3106E-05],[148.82624,-5.4137E-05],[148.82978,-5.6715E-05],[148.83332,-5.8777E-05],[148.83687,-5.6199E-05],[148.84041,-4.8981E-05],[148.84395,-4.8465E-05],[148.84749,-5.259E-05]]}
-{"quant":[149.104,-5.3088E-05],"mems":[[149.00691,-4.795E-05],[149.01046,-5.723E-05],[149.014,-5.6715E-05],[149.01754,-5.1043E-05],[149.02108,-5.6199E-05],[149.02463,-5.5168E-05],[149.02817,-5.3621E-05],[149.03171,-5.8777E-05],[149.03525,-5.5684E-05],[149.0388,-5.1043E-05],[149.04234,-5.3106E-05],[149.04588,-5.4137E-05],[149.04943,-5.1559E-05],[149.05297,-5.1559E-05],[149.05651,-5.259E-05],[149.06005,-5.0528E-05],[149.0636,-5.6715E-05],[149.06714,-5.9293E-05],[149.07068,-5.5684E-05],[149.07422,-5.3106E-05],[149.07777,-5.3621E-05],[149.08131,-5.5168E-05],[149.08485,-5.0528E-05],[149.08839,-4.8981E-05],[149.09194,-5.259E-05],[149.09548,-5.6199E-05],[149.09902,-5.6715E-05],[149.10257,-5.3621E-05],[149.10611,-4.9497E-05],[149.10965,-5.1043E-05],[149.11319,-5.5168E-05],[149.11674,-5.0528E-05],[149.12028,-5.0012E-05],[149.12382,-5.5168E-05],[149.12736,-4.9497E-05],[149.13091,-5.1559E-05],[149.13445,-5.7746E-05],[149.13799,-5.3621E-05],[149.14153,-5.1559E-05],[149.14508,-5.5168E-05],[149.14862,-5.4652E-05],[149.15216,-5.3621E-05],[149.15571,-5.259E-05],[149.15925,-5.3621E-05],[149.16279,-5.6715E-05],[149.16633,-5.2074E-05],[149.16988,-5.1559E-05],[149.17342,-5.5168E-05],[149.17696,-5.259E-05],[149.1805,-5.3621E-05],[149.18405,-5.4137E-05],[149.18759,-5.1043E-05],[149.19113,-4.7434E-05],[149.19467,-5.0528E-05],[149.19822,-5.5684E-05],[149.20176,-5.5684E-05],[149.2053,-5.8262E-05],[149.20885,-5.8777E-05],[149.21239,-5.5684E-05],[149.21593,-5.6199E-05],[149.21947,-5.4652E-05],[149.22302,-5.8262E-05],[149.22656,-5.4137E-05],[149.2301,-5.4137E-05],[149.23364,-5.8777E-05],[149.23719,-5.1559E-05],[149.24073,-5.259E-05],[149.24427,-5.3621E-05],[149.24781,-5.259E-05],[149.25136,-5.3106E-05],[149.2549,-5.4137E-05],[149.25844,-5.7746E-05],[149.26199,-5.6715E-05],[149.26553,-5.3106E-05],[149.26907,-4.7434E-05],[149.27261,-5.0012E-05],[149.27616,-5.5684E-05],[149.2797,-5.4652E-05],[149.28324,-5.5684E-05],[149.28678,-5.6199E-05],[149.29033,-5.259E-05],[149.29387,-5.1043E-05],[149.29741,-5.3621E-05],[149.30095,-5.6199E-05],[149.3045,-5.4652E-05]]}
-{"quant":[149.567,-5.4208E-05],"mems":[[149.46746,-5.4652E-05],[149.471,-5.4652E-05],[149.47455,-5.2074E-05],[149.47809,-4.7434E-05],[149.48163,-4.9497E-05],[149.48517,-5.5168E-05],[149.48872,-5.2074E-05],[149.49226,-5.3621E-05],[149.4958,-5.4137E-05],[149.49934,-5.4652E-05],[149.50289,-5.6715E-05],[149.50643,-5.3621E-05],[149.50997,-5.5684E-05],[149.51351,-5.7746E-05],[149.51706,-5.8262E-05],[149.5206,-5.6715E-05],[149.52414,-5.3621E-05],[149.52769,-5.259E-05],[149.53123,-5.3106E-05],[149.53477,-5.5168E-05],[149.53831,-5.3106E-05],[149.54186,-4.795E-05],[149.5454,-4.9497E-05],[149.54894,-5.259E-05],[149.55248,-5.3106E-05],[149.55603,-5.2074E-05],[149.55957,-5.1559E-05],[149.56311,-5.723E-05],[149.56665,-5.6715E-05],[149.5702,-5.3621E-05],[149.57374,-5.8262E-05],[149.57728,-5.3621E-05],[149.58083,-4.6919E-05],[149.58437,-5.2074E-05],[149.58791,-5.8262E-05],[149.59145,-5.5684E-05],[149.595,-5.259E-05],[149.59854,-5.2074E-05],[149.60208,-5.4652E-05],[149.60562,-5.6715E-05],[149.60917,-5.3621E-05],[149.61271,-5.4137E-05],[149.61625,-5.1043E-05],[149.61979,-5.0012E-05],[149.62334,-5.5168E-05],[149.62688,-5.7746E-05],[149.63042,-5.8777E-05],[149.63397,-5.5684E-05],[149.63751,-5.3106E-05],[149.64105,-5.4652E-05],[149.64459,-5.4137E-05],[149.64814,-5.3106E-05],[149.65168,-5.2074E-05],[149.65522,-5.3106E-05],[149.65876,-5.8262E-05],[149.66231,-5.259E-05],[149.66585,-5.259E-05],[149.66939,-5.7746E-05],[149.67293,-5.3106E-05],[149.67648,-5.6715E-05],[149.68002,-5.3106E-05],[149.68356,-4.7434E-05],[149.68711,-5.2074E-05],[149.69065,-5.3106E-05],[149.69419,-5.3106E-05],[149.69773,-5.259E-05],[149.70128,-5.259E-05],[149.70482,-5.1043E-05],[149.70836,-5.259E-05],[149.7119,-5.4137E-05],[149.71545,-5.1559E-05],[149.71899,-5.6199E-05],[149.72253,-5.5168E-05],[149.72607,-5.1559E-05],[149.72962,-5.2074E-05],[149.73316,-5.259E-05],[149.7367,-5.4652E-05],[149.74025,-5.723E-05],[149.74379,-5.723E-05],[149.74733,-5.3106E-05],[149.75087,-5.1559E-05],[149.75442,-5.4137E-05],[149.75796,-5.4652E-05],[149.7615,-5.6715E-05],[149.76504,-5.5168E-05],[149.76859,-5.2074E-05]]}
-{"quant":[150.045,-0.16795],"mems":[[149.94572,-5.1559E-05],[149.94926,-5.0528E-05],[149.95281,-5.6715E-05],[149.95635,-5.5684E-05],[149.95989,-5.4652E-05],[149.96343,-5.4652E-05],[149.96698,-5.4137E-05],[149.97052,-5.2074E-05],[149.97406,-4.8981E-05],[149.9776,-5.6199E-05],[149.98115,-6.2386E-05],[149.98469,-5.723E-05],[149.98823,-5.1043E-05],[149.99177,-5.3106E-05],[149.99532,-5.3621E-05],[149.99886,-5.1559E-05],[150.0024,-5.5684E-05],[150.00595,-5.2074E-05],[150.00949,-4.8981E-05],[150.01303,-5.1043E-05],[150.01657,-5.0528E-05],[150.02012,-5.5168E-05],[150.02366,-5.6715E-05],[150.0272,-5.4652E-05],[150.03074,-5.2074E-05],[150.03429,-5.0012E-05],[150.03783,-5.1043E-05],[150.04137,-5.3106E-05],[150.04491,-5.0528E-05],[150.04846,-4.9497E-05],[150.052,-5.0528E-05],[150.05548,-5.0528E-05],[150.05896,-5.1043E-05],[150.06244,-5.3621E-05],[150.06592,-5.5168E-05],[150.0694,-5.3106E-05],[150.07288,-5.2074E-05],[150.07636,-5.259E-05],[150.07984,-5.259E-05],[150.08332,-5.5168E-05],[150.0868,-5.3621E-05],[150.09028,-4.8465E-05],[150.09376,-4.8465E-05],[150.09724,-4.795E-05],[150.10072,-5.4652E-05],[150.1042,-5.6715E-05],[150.10768,-5.259E-05],[150.11116,-5.5168E-05],[150.11464,-4.9497E-05],[150.11812,-4.8981E-05],[150.1216,-5.4137E-05],[150.12508,-5.4137E-05],[150.12856,-5.3621E-05],[150.13204,-5.1559E-05],[150.13552,-5.4652E-05],[150.139,-5.6199E-05],[150.14248,-5.4137E-05],[150.14596,-5.259E-05],[150.14944,-5.4137E-05],[150.15292,-5.4137E-05],[150.1564,-5.5168E-05],[150.15988,-5.7746E-05],[150.16336,-5.4137E-05],[150.16684,-5.5684E-05],[150.17032,-5.5168E-05],[150.1738,-5.4652E-05],[150.17728,-5.2074E-05],[150.18076,-5.0012E-05],[150.18424,-5.4137E-05],[150.18772,-5.5684E-05],[150.1912,-5.8777E-05],[150.19468,-5.6715E-05],[150.19816,-5.4137E-05],[150.20164,-5.0012E-05],[150.20512,-5.1559E-05],[150.2086,-5.7746E-05],[150.21208,-5.3106E-05],[150.21556,-5.5168E-05],[150.21904,-5.3621E-05],[150.22252,-5.4652E-05],[150.226,-5.8262E-05],[150.22948,-5.3621E-05],[150.23296,-5.0528E-05],[150.23644,-4.9497E-05],[150.23992,-5.3621E-05],[150.2434,-5.4652E-05],[150.24688,-5.2074E-05]]}
-{"quant":[150.502,-5.4962E-05],"mems":[[150.40348,-5.3621E-05],[150.40696,-5.1559E-05],[150.41044,-5.5168E-05],[150.41392,-5.0528E-05],[150.4174,-5.0528E-05],[150.42088,-5.5168E-05],[150.42436,-5.4137E-05],[150.42784,-5.3621E-05],[150.43132,-5.259E-05],[150.4348,-5.4137E-05],[150.43828,-5.3621E-05],[150.44176,-5.1043E-05],[150.44524,-5.259E-05],[150.44872,-5.4652E-05],[150.4522,-5.3106E-05],[150.45568,-4.8465E-05],[150.45916,-4.8465E-05],[150.46264,-5.3106E-05],[150.46612,-5.4652E-05],[150.4696,-5.259E-05],[150.47308,-5.6715E-05],[150.47656,-5.6715E-05],[150.48004,-5.1043E-05],[150.48352,-5.3621E-05],[150.487,-5.6715E-05],[150.49048,-5.5684E-05],[150.49396,-5.6199E-05],[150.49744,-5.3621E-05],[150.50092,-5.3106E-05],[150.5044,-5.9293E-05],[150.50788,-5.6715E-05],[150.51136,-5.3106E-05],[150.51484,-5.5168E-05],[150.51832,-5.1559E-05],[150.5218,-5.4137E-05],[150.52528,-5.5168E-05],[150.52876,-5.8262E-05],[150.53224,-5.6199E-05],[150.53572,-4.6403E-05],[150.5392,-5.1043E-05],[150.54268,-5.0528E-05],[150.54616,-5.3106E-05],[150.54964,-5.8777E-05],[150.55312,-5.6715E-05],[150.5566,-5.2074E-05],[150.56008,-5.259E-05],[150.56356,-5.8777E-05],[150.56704,-5.6199E-05],[150.57052,-5.9293E-05],[150.574,-6.0839E-05],[150.57748,-5.4137E-05],[150.58096,-5.3621E-05],[150.58444,-5.7746E-05],[150.58792,-5.7746E-05],[150.5914,-5.723E-05],[150.59488,-5.6715E-05],[150.59836,-4.9497E-05],[150.60184,-5.3106E-05],[150.60532,-5.3106E-05],[150.6088,-5.3106E-05],[150.61228,-5.723E-05],[150.61576,-5.1043E-05],[150.61924,-4.5887E-05],[150.62272,-4.8981E-05],[150.6262,-5.4137E-05],[150.62968,-5.2074E-05],[150.63316,-5.6199E-05],[150.63664,-5.4652E-05],[150.64012,-5.3621E-05],[150.6436,-5.723E-05],[150.64708,-5.0012E-05],[150.65056,-5.4137E-05],[150.65404,-5.3106E-05],[150.65752,-4.8465E-05],[150.661,-5.3106E-05],[150.66448,-5.0528E-05],[150.66796,-5.4137E-05],[150.67144,-5.7746E-05],[150.67492,-5.4137E-05],[150.6784,-5.259E-05],[150.68188,-5.0012E-05],[150.68536,-5.0528E-05],[150.68884,-5.5168E-05],[150.69232,-5.6199E-05],[150.6958,-5.5684E-05],[150.69928,-5.1043E-05],[150.70276,-4.9497E-05]]}
-{"quant":[151.062,-5.3035E-05],"mems":[[150.96376,-5.0528E-05],[150.96724,-4.8465E-05],[150.97072,-5.3106E-05],[150.9742,-5.5684E-05],[150.97768,-5.5168E-05],[150.98116,-5.1559E-05],[150.98464,-4.9497E-05],[150.98812,-5.1043E-05],[150.9916,-4.795E-05],[150.99508,-5.0528E-05],[150.99856,-5.1043E-05],[151.00204,-5.0528E-05],[151.00552,-5.259E-05],[151.009,-5.0012E-05],[151.01248,-5.4137E-05],[151.01596,-5.3621E-05],[151.01944,-5.3621E-05],[151.02292,-5.4137E-05],[151.0264,-5.259E-05],[151.02988,-5.5684E-05],[151.03336,-5.3106E-05],[151.03684,-5.3621E-05],[151.04032,-5.5684E-05],[151.0438,-5.259E-05],[151.04728,-4.9497E-05],[151.05076,-4.9497E-05],[151.05424,-5.1043E-05],[151.05772,-5.4652E-05],[151.0612,-5.4137E-05],[151.06468,-4.8981E-05],[151.06816,-5.2074E-05],[151.07164,-5.5168E-05],[151.07512,-5.5684E-05],[151.0786,-5.6199E-05],[151.08208,-5.1043E-05],[151.08556,-4.9497E-05],[151.08904,-5.2074E-05],[151.09252,-5.2074E-05],[151.096,-5.6715E-05],[151.09948,-5.6715E-05],[151.10296,-4.8465E-05],[151.10644,-4.795E-05],[151.10992,-5.4137E-05],[151.1134,-5.3621E-05],[151.11688,-5.1043E-05],[151.12036,-5.2074E-05],[151.12384,-4.795E-05],[151.12732,-4.9497E-05],[151.1308,-5.259E-05],[151.13428,-5.6199E-05],[151.13776,-5.6715E-05],[151.14124,-5.3106E-05],[151.14472,-5.5168E-05],[151.1482,-5.3621E-05],[151.15168,-5.4137E-05],[151.15516,-5.4652E-05],[151.15864,-5.5168E-05],[151.16212,-5.5684E-05],[151.1656,-4.9497E-05],[151.16908,-5.1043E-05],[151.17256,-5.3106E-05],[151.17604,-5.1559E-05],[151.17952,-5.3621E-05],[151.183,-5.4137E-05],[151.18648,-4.9497E-05],[151.18996,-5.0528E-05],[151.19344,-5.1559E-05],[151.19692,-5.1559E-05],[151.2004,-5.6199E-05],[151.20388,-5.1559E-05],[151.20736,-4.9497E-05],[151.21084,-5.4652E-05],[151.21432,-5.6199E-05],[151.2178,-5.3106E-05],[151.22128,-5.259E-05],[151.22476,-5.259E-05],[151.22824,-4.5887E-05],[151.23172,-4.8465E-05],[151.2352,-5.6715E-05],[151.23868,-5.5168E-05],[151.24216,-5.259E-05],[151.24564,-5.1559E-05],[151.24912,-5.1559E-05],[151.2526,-5.4652E-05],[151.25608,-5.3621E-05],[151.25956,-5.4137E-05],[151.26304,-5.5684E-05]]}
-{"quant":[151.522,-5.3449E-05],"mems":[[151.42312,-4.795E-05],[151.4266,-5.4652E-05],[151.43008,-5.2074E-05],[151.43356,-5.259E-05],[151.43704,-5.3621E-05],[151.44052,-5.259E-05],[151.444,-5.4652E-05],[151.44748,-4.8465E-05],[151.45096,-4.8465E-05],[151.45444,-5.5684E-05],[151.45792,-5.723E-05],[151.4614,-5.6199E-05],[151.46488,-5.3106E-05],[151.46836,-4.8465E-05],[151.47184,-4.8981E-05],[151.47532,-5.6199E-05],[151.4788,-5.5684E-05],[151.48228,-4.8465E-05],[151.48576,-5.0528E-05],[151.48924,-5.259E-05],[151.49272,-5.2074E-05],[151.4962,-5.3106E-05],[151.49968,-4.8981E-05],[151.50316,-5.259E-05],[151.50664,-5.723E-05],[151.51012,-4.8981E-05],[151.5136,-4.5372E-05],[151.51708,-5.1559E-05],[151.52056,-5.2074E-05],[151.52404,-5.2074E-05],[151.52752,-5.2074E-05],[151.531,-5.0528E-05],[151.53448,-5.2074E-05],[151.53796,-5.8262E-05],[151.54144,-5.6199E-05],[151.54492,-5.1559E-05],[151.5484,-5.4652E-05],[151.55188,-5.3621E-05],[151.55536,-5.3621E-05],[151.55884,-5.5168E-05],[151.56232,-5.5168E-05],[151.5658,-5.1559E-05],[151.56928,-4.8981E-05],[151.57276,-5.2074E-05],[151.57624,-5.2074E-05],[151.57972,-5.3106E-05],[151.5832,-5.0012E-05],[151.58668,-5.0012E-05],[151.59016,-5.3621E-05],[151.59364,-5.3621E-05],[151.59712,-5.3106E-05],[151.6006,-5.5684E-05],[151.60408,-5.7746E-05],[151.60756,-5.8262E-05],[151.61104,-5.5168E-05],[151.61452,-5.0528E-05],[151.618,-5.4652E-05],[151.62148,-5.4137E-05],[151.62496,-5.4137E-05],[151.62844,-5.6715E-05],[151.63192,-5.1559E-05],[151.6354,-5.2074E-05],[151.63888,-5.2074E-05],[151.64236,-5.6199E-05],[151.64584,-5.8262E-05],[151.64932,-5.5168E-05],[151.6528,-5.5684E-05],[151.65628,-5.0528E-05],[151.65976,-4.9497E-05],[151.66324,-5.1559E-05],[151.66672,-5.0012E-05],[151.6702,-4.9497E-05],[151.67368,-5.1043E-05],[151.67716,-5.1559E-05],[151.68064,-5.1043E-05],[151.68412,-5.3106E-05],[151.6876,-5.2074E-05],[151.69108,-4.9497E-05],[151.69456,-5.4137E-05],[151.69804,-5.4137E-05],[151.70152,-5.3621E-05],[151.705,-5.2074E-05],[151.70848,-5.0528E-05],[151.71196,-5.1043E-05],[151.71544,-5.1559E-05],[151.71892,-5.2074E-05],[151.7224,-5.1043E-05]]}
-{"quant":[152.029,-5.3355E-05],"mems":[[151.9312,-5.723E-05],[151.93468,-5.4652E-05],[151.93816,-5.259E-05],[151.94164,-5.4652E-05],[151.94512,-5.1559E-05],[151.9486,-5.5168E-05],[151.95208,-5.8262E-05],[151.95556,-5.1043E-05],[151.95904,-4.795E-05],[151.96252,-5.3621E-05],[151.966,-5.723E-05],[151.96948,-5.4137E-05],[151.97296,-5.3621E-05],[151.97644,-5.4137E-05],[151.97992,-5.1559E-05],[151.9834,-5.7746E-05],[151.98688,-6.2386E-05],[151.99036,-5.4652E-05],[151.99384,-5.1559E-05],[151.99732,-4.8981E-05],[152.0008,-5.0528E-05],[152.00428,-5.6199E-05],[152.00776,-5.3621E-05],[152.01124,-5.1043E-05],[152.01472,-5.259E-05],[152.0182,-5.3106E-05],[152.02168,-5.0012E-05],[152.02516,-5.3621E-05],[152.02864,-5.5684E-05],[152.03212,-5.0012E-05],[152.0356,-5.4652E-05],[152.03908,-5.8262E-05],[152.04256,-5.4652E-05],[152.04604,-4.8981E-05],[152.04952,-5.1043E-05],[152.053,-5.259E-05],[152.05648,-4.7434E-05],[152.05996,-5.4652E-05],[152.06344,-5.4652E-05],[152.06692,-5.1043E-05],[152.0704,-5.4652E-05],[152.07388,-5.3621E-05],[152.07736,-5.5168E-05],[152.08084,-5.3621E-05],[152.08432,-5.4137E-05],[152.0878,-5.6715E-05],[152.09128,-5.259E-05],[152.09476,-5.0528E-05],[152.09824,-5.1559E-05],[152.10172,-5.3621E-05],[152.1052,-5.4652E-05],[152.10868,-5.5684E-05],[152.11216,-5.6199E-05],[152.11564,-5.2074E-05],[152.11912,-5.4137E-05],[152.1226,-5.4652E-05],[152.12608,-5.1559E-05],[152.12956,-5.4137E-05],[152.13304,-5.259E-05],[152.13652,-5.0528E-05],[152.14,-5.1559E-05],[152.14348,-5.3106E-05],[152.14696,-5.5684E-05],[152.15044,-5.4652E-05],[152.15392,-5.3106E-05],[152.1574,-5.1559E-05],[152.16088,-5.3621E-05],[152.16436,-5.6199E-05],[152.16784,-5.259E-05],[152.17132,-5.0528E-05],[152.1748,-5.0012E-05],[152.17828,-5.0528E-05],[152.18176,-5.259E-05],[152.18524,-5.1559E-05],[152.18872,-5.259E-05],[152.1922,-5.259E-05],[152.19568,-5.0528E-05],[152.19916,-5.1043E-05],[152.20264,-5.3621E-05],[152.20612,-5.4137E-05],[152.2096,-5.4652E-05],[152.21308,-5.6199E-05],[152.21656,-5.5168E-05],[152.22004,-5.3106E-05],[152.22352,-5.6199E-05],[152.227,-5.723E-05],[152.23048,-5.1559E-05]]}
-{"quant":[152.513,-0.66069],"mems":[[152.51932,-5.5684E-05],[152.5228,-5.6715E-05],[152.52628,-5.3621E-05],[152.52976,-5.4137E-05],[152.53324,-5.6199E-05],[152.53672,-5.8262E-05],[152.5402,-5.1559E-05],[152.54368,-4.8981E-05],[152.54716,-5.3106E-05],[152.55064,-5.259E-05],[152.55412,-5.3106E-05],[152.5576,-4.795E-05],[152.56108,-4.7434E-05],[152.56456,-5.0528E-05],[152.56804,-5.1043E-05],[152.57152,-5.4652E-05],[152.575,-5.5168E-05],[152.57848,-5.5684E-05],[152.58196,-5.2074E-05],[152.58544,-5.1559E-05],[152.58892,-5.5684E-05],[152.5924,-5.3106E-05],[152.59588,-5.3621E-05],[152.59936,-5.4137E-05],[152.60284,-5.7746E-05],[152.60632,-6.0839E-05],[152.6098,-5.6715E-05],[152.61328,-5.6715E-05],[152.61676,-5.4137E-05],[152.62024,-5.4137E-05],[152.62372,-5.9808E-05],[152.6272,-6.1871E-05],[152.63068,-6.2386E-05],[152.63416,-5.723E-05],[152.63764,-5.4652E-05],[152.64112,-5.3106E-05],[152.6446,-5.2074E-05],[152.64808,-5.3621E-05],[152.65156,-5.3621E-05],[152.65504,-5.2074E-05],[152.65852,-5.0012E-05],[152.662,-5.1043E-05],[152.6653,-5.0528E-05],[152.66859,-5.3621E-05],[152.67189,-5.6199E-05],[152.67518,-5.3106E-05],[152.67848,-4.9497E-05],[152.68178,-4.7434E-05],[152.68507,-5.2074E-05],[152.68837,-5.4137E-05],[152.69166,-5.4652E-05],[152.69496,-5.3106E-05],[152.69826,-5.0528E-05],[152.70155,-5.3106E-05],[152.70485,-5.1559E-05],[152.70814,-5.2074E-05],[152.71144,-5.259E-05],[152.71474,-5.1043E-05],[152.71803,-5.5168E-05],[152.72133,-5.4137E-05],[152.72462,-5.2074E-05],[152.72792,-5.5684E-05],[152.73122,-5.4137E-05],[152.73451,-5.0012E-05],[152.73781,-4.9497E-05],[152.7411,-5.2074E-05],[152.7444,-5.3106E-05],[152.7477,-4.8981E-05],[152.75099,-5.3106E-05],[152.75429,-5.5684E-05],[152.75758,-4.8981E-05],[152.76088,-5.4137E-05],[152.76418,-5.7746E-05],[152.76747,-5.3621E-05],[152.77077,-5.5684E-05],[152.77406,-5.1559E-05],[152.77736,-4.8465E-05],[152.78066,-5.1559E-05],[152.78395,-5.6715E-05],[152.78725,-6.1871E-05],[152.79054,-5.6199E-05],[152.79384,-5.1043E-05],[152.79714,-5.3106E-05],[152.80043,-5.8777E-05],[152.80373,-5.6199E-05],[152.80702,-5.1559E-05],[152.81032,-5.259E-05],[152.81362,-5.0012E-05]]}
-{"quant":[153.04,-5.3251E-05],"mems":[[152.94216,-5.3621E-05],[152.94546,-5.1043E-05],[152.94875,-5.259E-05],[152.95205,-5.0528E-05],[152.95534,-5.4137E-05],[152.95864,-5.6199E-05],[152.96194,-5.3621E-05],[152.96523,-5.5168E-05],[152.96853,-5.3621E-05],[152.97182,-4.7434E-05],[152.97512,-5.0012E-05],[152.97842,-5.259E-05],[152.98171,-5.0528E-05],[152.98501,-5.2074E-05],[152.9883,-5.0012E-05],[152.9916,-5.1559E-05],[152.9949,-5.3106E-05],[152.99819,-5.4652E-05],[153.00149,-5.4137E-05],[153.00478,-5.2074E-05],[153.00808,-5.1043E-05],[153.01138,-5.2074E-05],[153.01467,-6.0324E-05],[153.01797,-5.723E-05],[153.02126,-5.4137E-05],[153.02456,-5.0528E-05],[153.02786,-4.8465E-05],[153.03115,-5.8777E-05],[153.03445,-5.6199E-05],[153.03774,-5.2074E-05],[153.04104,-5.1043E-05],[153.04434,-4.9497E-05],[153.04763,-5.2074E-05],[153.05093,-5.5168E-05],[153.05422,-5.4137E-05],[153.05752,-5.3106E-05],[153.06082,-5.259E-05],[153.06411,-4.9497E-05],[153.06741,-4.9497E-05],[153.0707,-4.795E-05],[153.074,-5.2074E-05],[153.0773,-5.4652E-05],[153.08059,-5.5684E-05],[153.08389,-5.5168E-05],[153.08718,-4.8981E-05],[153.09048,-5.259E-05],[153.09378,-5.3106E-05],[153.09707,-5.3621E-05],[153.10037,-5.6715E-05],[153.10366,-5.4652E-05],[153.10696,-5.6715E-05],[153.11026,-5.3621E-05],[153.11355,-5.2074E-05],[153.11685,-5.5168E-05],[153.12014,-5.3621E-05],[153.12344,-5.1043E-05],[153.12674,-5.1043E-05],[153.13003,-5.6715E-05],[153.13333,-5.8777E-05],[153.13662,-5.4137E-05],[153.13992,-5.4137E-05],[153.14322,-5.5168E-05],[153.14651,-5.2074E-05],[153.14981,-5.1559E-05],[153.1531,-5.4137E-05],[153.1564,-5.1559E-05],[153.1597,-4.8981E-05],[153.16299,-5.6715E-05],[153.16629,-5.723E-05],[153.16958,-5.259E-05],[153.17288,-5.4652E-05],[153.17618,-5.4137E-05],[153.17947,-5.3106E-05],[153.18277,-5.4652E-05],[153.18606,-5.6715E-05],[153.18936,-5.6199E-05],[153.19266,-5.1043E-05],[153.19595,-4.795E-05],[153.19925,-5.0012E-05],[153.20254,-5.3106E-05],[153.20584,-5.5168E-05],[153.20914,-5.7746E-05],[153.21243,-5.723E-05],[153.21573,-5.259E-05],[153.21902,-5.3106E-05],[153.22232,-5.4652E-05],[153.22562,-4.9497E-05],[153.22891,-5.0012E-05],[153.23221,-5.3106E-05],[153.2355,-5.3621E-05],[153.2388,-5.5684E-05],[153.2421,-5.1559E-05]]}
-{"quant":[153.827,-5.3538E-05],"mems":[[153.7299,-5.4652E-05],[153.7332,-5.5168E-05],[153.7365,-5.1559E-05],[153.73979,-5.1043E-05],[153.74309,-5.2074E-05],[153.74638,-5.5684E-05],[153.74968,-5.4137E-05],[153.75298,-5.0528E-05],[153.75627,-5.2074E-05],[153.75957,-4.8465E-05],[153.76286,-4.8981E-05],[153.76616,-5.1559E-05],[153.76946,-5.259E-05],[153.77275,-5.0528E-05],[153.77605,-5.0528E-05],[153.77934,-5.4652E-05],[153.78264,-5.2074E-05],[153.78594,-5.4137E-05],[153.78923,-5.4652E-05],[153.79253,-5.2074E-05],[153.79582,-6.0324E-05],[153.79912,-5.5168E-05],[153.80242,-5.0528E-05],[153.80571,-5.6199E-05],[153.80901,-5.1043E-05],[153.8123,-5.1043E-05],[153.8156,-5.6715E-05],[153.8189,-5.4652E-05],[153.82219,-5.1559E-05],[153.82549,-5.1043E-05],[153.82878,-5.259E-05],[153.83208,-5.0012E-05],[153.83538,-5.259E-05],[153.83867,-5.723E-05],[153.84197,-5.6199E-05],[153.84526,-5.259E-05],[153.84856,-5.0528E-05],[153.85186,-5.259E-05],[153.85515,-5.6199E-05],[153.85845,-5.6715E-05],[153.86174,-5.4137E-05],[153.86504,-5.2074E-05],[153.86834,-5.1559E-05],[153.87163,-5.4652E-05],[153.87493,-5.4137E-05],[153.87822,-5.3621E-05],[153.88152,-5.5684E-05],[153.88482,-5.5168E-05],[153.88811,-5.5168E-05],[153.89141,-5.1559E-05],[153.8947,-5.5168E-05],[153.898,-5.8777E-05],[153.9013,-5.5168E-05],[153.90459,-5.1043E-05],[153.90789,-4.6919E-05],[153.91118,-5.3106E-05],[153.91448,-5.5684E-05],[153.91778,-5.4652E-05],[153.92107,-5.4652E-05],[153.92437,-4.8981E-05],[153.92766,-5.0528E-05],[153.93096,-5.3621E-05],[153.93426,-5.4652E-05],[153.93755,-5.3621E-05],[153.94085,-4.8465E-05],[153.94414,-4.3825E-05],[153.94744,-4.4856E-05],[153.95074,-5.3106E-05],[153.95403,-5.6199E-05],[153.95733,-5.6199E-05],[153.96062,-5.723E-05],[153.96392,-5.4137E-05],[153.96722,-5.4137E-05],[153.97051,-5.6199E-05],[153.97381,-5.6199E-05],[153.9771,-5.5168E-05],[153.9804,-5.259E-05],[153.9837,-5.3106E-05],[153.98699,-5.5684E-05],[153.99029,-5.4137E-05],[153.99358,-5.4652E-05],[153.99688,-5.5684E-05],[154.00018,-5.259E-05],[154.00347,-5.2074E-05],[154.00677,-4.8465E-05],[154.01006,-4.9497E-05],[154.01336,-5.5684E-05],[154.01666,-5.259E-05],[154.01995,-4.8981E-05],[154.02325,-5.259E-05],[154.02654,-5.3106E-05],[154.02984,-5.0528E-05]]}
-{"quant":[154.37,-5.3056E-05],"mems":[[154.27045,-5.1043E-05],[154.27374,-5.5168E-05],[154.27704,-5.4137E-05],[154.28034,-5.5168E-05],[154.28363,-5.4137E-05],[154.28693,-5.4652E-05],[154.29022,-5.4137E-05],[154.29352,-5.0528E-05],[154.29682,-5.9808E-05],[154.30011,-5.9808E-05],[154.30341,-5.4652E-05],[154.3067,-5.6199E-05],[154.31,-5.4652E-05],[154.3133,-5.4652E-05],[154.31659,-5.1043E-05],[154.31989,-5.2074E-05],[154.32318,-5.5168E-05],[154.32648,-5.5684E-05],[154.32978,-5.7746E-05],[154.33307,-5.3106E-05],[154.33637,-5.2074E-05],[154.33966,-5.2074E-05],[154.34296,-5.1559E-05],[154.34626,-5.3621E-05],[154.34955,-5.259E-05],[154.35285,-5.0528E-05],[154.35614,-5.259E-05],[154.35944,-5.259E-05],[154.36274,-5.1559E-05],[154.36603,-5.3106E-05],[154.36933,-5.3621E-05],[154.37262,-5.3106E-05],[154.37592,-5.0528E-05],[154.37922,-4.8981E-05],[154.38251,-5.1043E-05],[154.38581,-5.2074E-05],[154.3891,-5.5684E-05],[154.3924,-5.723E-05],[154.3957,-5.6199E-05],[154.39899,-5.5168E-05],[154.40229,-5.4137E-05],[154.40558,-5.6199E-05],[154.40888,-4.9497E-05],[154.41218,-5.0012E-05],[154.41547,-5.6199E-05],[154.41877,-5.4652E-05],[154.42206,-5.3106E-05],[154.42536,-4.8465E-05],[154.42866,-5.2074E-05],[154.43195,-5.5684E-05],[154.43525,-5.6199E-05],[154.43854,-5.5168E-05],[154.44184,-5.0528E-05],[154.44514,-4.8981E-05],[154.44843,-4.7434E-05],[154.45173,-5.0528E-05],[154.45502,-5.5168E-05],[154.45832,-5.4652E-05],[154.46162,-5.4137E-05],[154.46491,-5.1559E-05],[154.46821,-5.4652E-05],[154.4715,-5.5684E-05],[154.4748,-5.5168E-05],[154.4781,-5.6715E-05],[154.48139,-5.259E-05],[154.48469,-5.1559E-05],[154.48798,-5.0528E-05],[154.49128,-5.6715E-05],[154.49458,-5.7746E-05],[154.49787,-5.1043E-05],[154.50117,-5.1559E-05],[154.50446,-5.4652E-05],[154.50776,-5.6715E-05],[154.51106,-5.4652E-05],[154.51435,-5.4137E-05],[154.51765,-5.4137E-05],[154.52094,-5.3621E-05],[154.52424,-5.5168E-05],[154.52754,-5.5684E-05],[154.53083,-5.3106E-05],[154.53413,-5.3621E-05],[154.53742,-5.6199E-05],[154.54072,-5.1559E-05],[154.54402,-5.1559E-05],[154.54731,-5.4137E-05],[154.55061,-4.9497E-05],[154.5539,-4.9497E-05],[154.5572,-4.9497E-05],[154.5605,-5.259E-05],[154.56379,-5.5684E-05],[154.56709,-5.3621E-05],[154.57038,-5.6199E-05]]}
-{"quant":[154.894,-5.1709E-05],"mems":[[154.79451,-5.5168E-05],[154.79781,-5.6199E-05],[154.8011,-5.6715E-05],[154.8044,-5.3106E-05],[154.8077,-5.4652E-05],[154.81099,-5.9808E-05],[154.81429,-5.7746E-05],[154.81758,-5.9293E-05],[154.82088,-5.7746E-05],[154.82418,-5.3621E-05],[154.82747,-5.5684E-05],[154.83077,-5.5168E-05],[154.83406,-5.2074E-05],[154.83736,-5.5168E-05],[154.84066,-5.3621E-05],[154.84395,-4.8981E-05],[154.84725,-5.0528E-05],[154.85054,-5.1043E-05],[154.85384,-5.259E-05],[154.85714,-5.1559E-05],[154.86043,-5.259E-05],[154.86373,-5.3621E-05],[154.86702,-5.259E-05],[154.87032,-5.4137E-05],[154.87362,-5.2074E-05],[154.87691,-5.1559E-05],[154.88021,-5.0528E-05],[154.8835,-5.2074E-05],[154.8868,-5.1043E-05],[154.8901,-5.3106E-05],[154.89339,-5.6715E-05],[154.89669,-5.0012E-05],[154.89998,-4.8981E-05],[154.90328,-4.6403E-05],[154.90658,-4.9497E-05],[154.90987,-5.3621E-05],[154.91317,-4.9497E-05],[154.91646,-5.1043E-05],[154.91976,-5.0012E-05],[154.92306,-5.0012E-05],[154.92635,-4.8981E-05],[154.92965,-4.8465E-05],[154.93294,-5.2074E-05],[154.93624,-5.2074E-05],[154.93954,-5.1043E-05],[154.94283,-5.2074E-05],[154.94613,-5.5168E-05],[154.94942,-5.3106E-05],[154.95272,-5.1559E-05],[154.95602,-5.259E-05],[154.95931,-5.259E-05],[154.96261,-5.1043E-05],[154.9659,-5.0528E-05],[154.9692,-5.6715E-05],[154.9725,-5.5684E-05],[154.97579,-5.3621E-05],[154.97909,-5.3106E-05],[154.98238,-5.3621E-05],[154.98568,-5.4652E-05],[154.98898,-5.5684E-05],[154.99227,-5.259E-05],[154.99557,-4.6919E-05],[154.99886,-5.0012E-05],[155.00216,-5.2074E-05],[155.00546,-5.4137E-05],[155.00875,-5.3621E-05],[155.01205,-5.2074E-05],[155.01534,-5.5684E-05],[155.01864,-5.2074E-05],[155.02194,-5.1559E-05],[155.02523,-5.4137E-05],[155.02853,-5.3106E-05],[155.03182,-5.1559E-05],[155.03512,-5.1559E-05],[155.03842,-5.2074E-05],[155.04171,-5.259E-05],[155.04501,-5.5684E-05],[155.0483,-5.6199E-05],[155.0516,-5.5168E-05],[155.0549,-5.2074E-05],[155.05819,-5.1043E-05],[155.06149,-5.5168E-05],[155.06478,-5.4652E-05],[155.06808,-5.3106E-05],[155.07138,-5.1559E-05],[155.07467,-5.2074E-05],[155.07797,-5.4137E-05],[155.08126,-5.4652E-05],[155.08456,-5.4652E-05],[155.08786,-5.2074E-05],[155.09115,-5.1043E-05],[155.09445,-5.259E-05]]}
-{"quant":[155.416,-5.3415E-05],"mems":[[155.3194,-5.5168E-05],[155.32283,-5.3621E-05],[155.32627,-5.1559E-05],[155.3297,-5.2074E-05],[155.33313,-5.2074E-05],[155.33657,-5.1043E-05],[155.34,-5.5684E-05],[155.34343,-5.7746E-05],[155.34687,-5.5168E-05],[155.3503,-5.3106E-05],[155.35373,-5.1043E-05],[155.35717,-5.3106E-05],[155.3606,-5.259E-05],[155.36403,-5.1043E-05],[155.36747,-5.3621E-05],[155.3709,-5.4652E-05],[155.37433,-5.259E-05],[155.37777,-5.723E-05],[155.3812,-5.4652E-05],[155.38463,-4.8981E-05],[155.38807,-5.1559E-05],[155.3915,-5.0528E-05],[155.39493,-5.5684E-05],[155.39837,-5.3106E-05],[155.4018,-5.259E-05],[155.40523,-5.1559E-05],[155.40867,-4.6919E-05],[155.4121,-5.0012E-05],[155.41553,-5.4137E-05],[155.41897,-5.4137E-05],[155.4224,-5.0528E-05],[155.42583,-5.723E-05],[155.42927,-5.4137E-05],[155.4327,-4.9497E-05],[155.43613,-5.3621E-05],[155.43957,-5.3621E-05],[155.443,-5.259E-05],[155.44643,-5.259E-05],[155.44987,-5.4652E-05],[155.4533,-5.4137E-05],[155.45673,-5.3106E-05],[155.46017,-5.3621E-05],[155.4636,-5.259E-05],[155.46703,-5.1043E-05],[155.47047,-5.6715E-05],[155.4739,-5.6199E-05],[155.47733,-5.2074E-05],[155.48077,-5.8262E-05],[155.4842,-5.4652E-05],[155.48763,-5.0012E-05],[155.49107,-5.3621E-05],[155.4945,-5.4137E-05],[155.49793,-5.3106E-05],[155.50137,-5.4137E-05],[155.5048,-5.3106E-05],[155.50823,-5.0528E-05],[155.51167,-5.1043E-05],[155.5151,-5.0528E-05],[155.51853,-5.723E-05],[155.52197,-5.6715E-05],[155.5254,-4.795E-05],[155.52883,-5.1043E-05],[155.53227,-4.6919E-05],[155.5357,-4.8981E-05],[155.53913,-5.8777E-05],[155.54257,-5.5168E-05],[155.546,-5.1559E-05],[155.54943,-5.1559E-05],[155.55287,-4.8465E-05],[155.5563,-5.4137E-05],[155.55973,-5.8777E-05],[155.56317,-5.2074E-05],[155.5666,-5.259E-05],[155.57003,-5.3106E-05],[155.57347,-5.1559E-05],[155.5769,-5.5168E-05],[155.58033,-5.6199E-05],[155.58377,-5.4652E-05],[155.5872,-5.3621E-05],[155.59063,-5.4652E-05],[155.59407,-5.4137E-05],[155.5975,-5.3106E-05],[155.60093,-5.5168E-05],[155.60437,-5.6199E-05],[155.6078,-5.6715E-05],[155.61123,-5.3106E-05],[155.61467,-5.1043E-05],[155.6181,-5.2074E-05]]}
-{"quant":[156.163,-5.3896E-05],"mems":[[156.06443,-5.3106E-05],[156.06787,-4.9497E-05],[156.0713,-4.9497E-05],[156.07473,-5.1043E-05],[156.07817,-5.8262E-05],[156.0816,-5.6199E-05],[156.08503,-5.2074E-05],[156.08847,-5.5168E-05],[156.0919,-4.9497E-05],[156.09533,-5.259E-05],[156.09877,-5.9808E-05],[156.1022,-5.723E-05],[156.10563,-5.5168E-05],[156.10907,-5.5684E-05],[156.1125,-5.6715E-05],[156.11593,-5.5684E-05],[156.11937,-5.5168E-05],[156.1228,-4.9497E-05],[156.12623,-4.8981E-05],[156.12967,-5.0012E-05],[156.1331,-4.795E-05],[156.13653,-5.4652E-05],[156.13997,-5.4652E-05],[156.1434,-5.4652E-05],[156.14683,-5.7746E-05],[156.15027,-5.5684E-05],[156.1537,-5.259E-05],[156.15713,-5.4137E-05],[156.16057,-5.7746E-05],[156.164,-5.4137E-05],[156.16743,-5.5684E-05],[156.17087,-5.3106E-05],[156.1743,-5.259E-05],[156.17773,-5.6715E-05],[156.18117,-5.5684E-05],[156.1846,-5.723E-05],[156.18803,-5.3106E-05],[156.19147,-5.4137E-05],[156.1949,-5.5684E-05],[156.19833,-5.5168E-05],[156.20177,-5.5168E-05],[156.2052,-5.3621E-05],[156.20863,-5.6199E-05],[156.21207,-5.259E-05],[156.2155,-5.3106E-05],[156.21893,-5.8262E-05],[156.22237,-5.4652E-05],[156.2258,-5.1559E-05],[156.22923,-5.3106E-05],[156.23267,-5.3106E-05],[156.2361,-5.1559E-05],[156.23953,-5.3621E-05],[156.24297,-5.5168E-05],[156.2464,-5.3621E-05],[156.24983,-4.8981E-05],[156.25327,-5.0012E-05],[156.2567,-5.4137E-05],[156.26013,-5.4137E-05],[156.26357,-5.1043E-05],[156.267,-4.8465E-05],[156.27043,-5.2074E-05],[156.27387,-5.6715E-05],[156.2773,-5.2074E-05],[156.28073,-5.3106E-05],[156.28417,-5.6199E-05],[156.2876,-5.2074E-05],[156.29103,-5.2074E-05],[156.29447,-5.3106E-05],[156.2979,-5.5684E-05],[156.30133,-5.4652E-05],[156.30477,-5.3106E-05],[156.3082,-5.3106E-05],[156.31163,-5.0012E-05],[156.31507,-5.5168E-05],[156.3185,-5.8777E-05],[156.32193,-5.8262E-05],[156.32537,-5.5684E-05],[156.3288,-4.9497E-05],[156.33223,-5.3621E-05],[156.33567,-5.4652E-05],[156.3391,-5.0012E-05],[156.34253,-5.6199E-05],[156.34597,-5.3106E-05],[156.3494,-5.1043E-05],[156.35283,-5.4137E-05],[156.35627,-5.1559E-05],[156.3597,-5.5168E-05],[156.36313,-5.4652E-05]]}
-{"quant":[156.626,-5.3312E-05],"mems":[[156.52793,-5.0528E-05],[156.53137,-5.5168E-05],[156.5348,-5.3106E-05],[156.53823,-5.0012E-05],[156.54167,-5.6715E-05],[156.5451,-5.2074E-05],[156.54853,-5.1043E-05],[156.55197,-5.259E-05],[156.5554,-5.723E-05],[156.55883,-6.1355E-05],[156.56227,-5.1043E-05],[156.5657,-5.2074E-05],[156.56913,-4.9497E-05],[156.57257,-4.6403E-05],[156.576,-5.4137E-05],[156.57943,-5.259E-05],[156.58287,-5.9293E-05],[156.5863,-5.7746E-05],[156.58973,-5.0528E-05],[156.59317,-5.3621E-05],[156.5966,-5.2074E-05],[156.60003,-5.4137E-05],[156.60347,-5.1043E-05],[156.6069,-5.259E-05],[156.61033,-5.5168E-05],[156.61377,-5.0012E-05],[156.6172,-5.5168E-05],[156.62063,-5.3621E-05],[156.62407,-5.259E-05],[156.6275,-5.3106E-05],[156.63093,-5.3621E-05],[156.63437,-5.5168E-05],[156.6378,-5.3621E-05],[156.64123,-5.3621E-05],[156.64467,-4.8981E-05],[156.6481,-5.259E-05],[156.65153,-5.723E-05],[156.65497,-5.8262E-05],[156.6584,-5.5684E-05],[156.66183,-5.4652E-05],[156.66527,-5.723E-05],[156.6687,-4.7434E-05],[156.67213,-4.9497E-05],[156.67557,-5.259E-05],[156.679,-5.1559E-05],[156.68243,-5.8262E-05],[156.68587,-5.4652E-05],[156.6893,-5.6199E-05],[156.69273,-5.5684E-05],[156.69617,-5.0012E-05],[156.6996,-5.259E-05],[156.70303,-5.3106E-05],[156.70647,-5.1559E-05],[156.7099,-4.7434E-05],[156.71333,-4.9497E-05],[156.71677,-5.3106E-05],[156.7202,-5.1043E-05],[156.72363,-5.5684E-05],[156.72707,-5.5684E-05],[156.7305,-5.4137E-05],[156.73393,-6.0324E-05],[156.73737,-5.4652E-05],[156.7408,-5.0528E-05],[156.74423,-5.7746E-05],[156.74767,-5.4137E-05],[156.7511,-5.1043E-05],[156.75453,-5.8777E-05],[156.75797,-5.7746E-05],[156.7614,-5.259E-05],[156.76483,-5.723E-05],[156.76827,-5.4652E-05],[156.7717,-5.0528E-05],[156.77513,-5.259E-05],[156.77857,-5.3106E-05],[156.782,-5.3621E-05],[156.78543,-5.2074E-05],[156.78887,-5.1559E-05],[156.7923,-5.3621E-05],[156.79573,-5.8262E-05],[156.79917,-5.7746E-05],[156.8026,-5.5168E-05],[156.80603,-5.5684E-05],[156.80947,-5.4137E-05],[156.8129,-5.5168E-05],[156.81633,-5.1559E-05],[156.81977,-4.8981E-05],[156.8232,-5.259E-05],[156.82663,-5.1559E-05]]}
-{"quant":[157.123,-5.3295E-05],"mems":[[157.02577,-5.259E-05],[157.0292,-5.0528E-05],[157.03263,-5.6199E-05],[157.03607,-5.723E-05],[157.0395,-5.8262E-05],[157.04293,-5.6715E-05],[157.04637,-4.9497E-05],[157.0498,-5.259E-05],[157.05323,-5.3106E-05],[157.05667,-5.2074E-05],[157.0601,-5.6715E-05],[157.06353,-5.259E-05],[157.06697,-5.1559E-05],[157.0704,-5.3106E-05],[157.07383,-5.1559E-05],[157.07727,-5.5684E-05],[157.0807,-5.4137E-05],[157.08413,-5.2074E-05],[157.08757,-5.1043E-05],[157.091,-4.9497E-05],[157.09443,-5.1559E-05],[157.09787,-5.4137E-05],[157.1013,-5.5168E-05],[157.10473,-5.4137E-05],[157.10817,-5.4137E-05],[157.1116,-5.6199E-05],[157.11503,-5.3106E-05],[157.11847,-5.4652E-05],[157.1219,-5.5684E-05],[157.12533,-4.9497E-05],[157.12877,-5.4137E-05],[157.1322,-5.723E-05],[157.13563,-5.4652E-05],[157.13907,-5.3106E-05],[157.1425,-5.3621E-05],[157.14593,-5.3621E-05],[157.14937,-5.259E-05],[157.1528,-5.3106E-05],[157.15623,-5.1559E-05],[157.15967,-5.5684E-05],[157.1631,-5.7746E-05],[157.16653,-5.3106E-05],[157.16997,-5.3106E-05],[157.1734,-5.3621E-05],[157.17683,-5.4137E-05],[157.18027,-5.5684E-05],[157.1837,-5.3106E-05],[157.18713,-5.0528E-05],[157.19057,-5.4652E-05],[157.194,-5.5168E-05],[157.19743,-4.9497E-05],[157.20087,-5.1043E-05],[157.2043,-5.2074E-05],[157.20773,-5.2074E-05],[157.21117,-5.5168E-05],[157.2146,-5.259E-05],[157.21803,-5.1559E-05],[157.22147,-5.3106E-05],[157.2249,-5.2074E-05],[157.22833,-5.0528E-05],[157.23177,-4.9497E-05],[157.2352,-5.3106E-05],[157.23863,-5.4137E-05],[157.24207,-5.2074E-05],[157.2455,-5.0528E-05],[157.24893,-5.4652E-05],[157.25237,-5.5168E-05],[157.2558,-5.1043E-05],[157.25923,-5.4652E-05],[157.26267,-5.6199E-05],[157.2661,-5.259E-05],[157.26953,-5.1043E-05],[157.27297,-5.5168E-05],[157.2764,-5.8262E-05],[157.27983,-5.6715E-05],[157.28327,-5.259E-05],[157.2867,-5.5168E-05],[157.29013,-5.6199E-05],[157.29357,-5.4652E-05],[157.297,-5.723E-05],[157.30043,-5.3621E-05],[157.30387,-5.2074E-05],[157.3073,-5.0528E-05],[157.31073,-5.6199E-05],[157.31417,-5.8777E-05],[157.3176,-5.723E-05],[157.32103,-6.0839E-05],[157.32447,-5.3106E-05]]}
-{"quant":[157.594,-1.4811],"mems":[[157.49613,-5.3106E-05],[157.49957,-5.3621E-05],[157.503,-5.4137E-05],[157.50643,-5.3106E-05],[157.50987,-5.0528E-05],[157.5133,-5.6715E-05],[157.51673,-5.5684E-05],[157.52017,-5.0528E-05],[157.5236,-5.3106E-05],[157.52703,-5.3106E-05],[157.53047,-5.2074E-05],[157.5339,-5.4137E-05],[157.53733,-5.4137E-05],[157.54077,-5.3621E-05],[157.5442,-5.259E-05],[157.54763,-5.1559E-05],[157.55107,-5.4137E-05],[157.5545,-5.6199E-05],[157.55793,-5.4652E-05],[157.56137,-4.8465E-05],[157.5648,-5.0012E-05],[157.56823,-5.3621E-05],[157.57167,-5.259E-05],[157.5751,-5.723E-05],[157.57853,-5.5684E-05],[157.58197,-5.1043E-05],[157.5854,-5.1043E-05],[157.58883,-5.3106E-05],[157.59227,-5.5168E-05],[157.5957,-5.1043E-05],[157.59913,-5.2074E-05],[157.60257,-5.6715E-05],[157.606,-5.4137E-05],[157.60943,-5.259E-05],[157.61287,-5.5684E-05],[157.6163,-5.4652E-05],[157.61973,-5.5168E-05],[157.62317,-5.5684E-05],[157.6266,-4.7434E-05],[157.63003,-4.6403E-05],[157.63347,-5.3621E-05],[157.6369,-5.4137E-05],[157.64033,-5.5168E-05],[157.64377,-5.1559E-05],[157.6472,-4.8465E-05],[157.65063,-5.3106E-05],[157.65407,-5.4137E-05],[157.6575,-5.6199E-05],[157.66093,-5.2074E-05],[157.66437,-4.8981E-05],[157.6678,-5.0012E-05],[157.67123,-5.4137E-05],[157.67467,-5.6199E-05],[157.6781,-5.0012E-05],[157.68153,-5.4137E-05],[157.68497,-5.5168E-05],[157.6884,-5.6199E-05],[157.69183,-5.6199E-05],[157.69527,-5.259E-05],[157.6987,-5.1559E-05],[157.70213,-4.6919E-05],[157.70557,-5.3621E-05],[157.709,-5.5684E-05],[157.71244,-5.1043E-05],[157.71587,-5.0528E-05],[157.71931,-4.8981E-05],[157.72275,-5.1559E-05],[157.72619,-5.259E-05],[157.72962,-5.2074E-05],[157.73306,-5.5168E-05],[157.7365,-5.5684E-05],[157.73994,-5.259E-05],[157.74337,-5.1043E-05],[157.74681,-4.8981E-05],[157.75025,-5.4137E-05],[157.75369,-5.2074E-05],[157.75712,-4.8981E-05],[157.76056,-5.4652E-05],[157.764,-5.259E-05],[157.76743,-5.2074E-05],[157.77087,-5.6199E-05],[157.77431,-5.4652E-05],[157.77775,-5.4652E-05],[157.78118,-5.8262E-05],[157.78462,-5.4137E-05],[157.78806,-4.6919E-05],[157.7915,-5.0528E-05],[157.79493,-5.4137E-05]]}
-{"quant":[158.067,-5.4085E-05],"mems":[[157.97024,-5.3621E-05],[157.97367,-5.2074E-05],[157.97711,-5.1559E-05],[157.98055,-5.1043E-05],[157.98399,-5.4137E-05],[157.98742,-5.259E-05],[157.99086,-5.259E-05],[157.9943,-5.6715E-05],[157.99774,-5.3621E-05],[158.00117,-5.4137E-05],[158.00461,-5.4652E-05],[158.00805,-4.6919E-05],[158.01149,-5.1043E-05],[158.01492,-5.259E-05],[158.01836,-4.8465E-05],[158.0218,-5.5168E-05],[158.02523,-5.6715E-05],[158.02867,-5.3106E-05],[158.03211,-5.3621E-05],[158.03555,-5.5168E-05],[158.03898,-5.6715E-05],[158.04242,-5.4137E-05],[158.04586,-5.259E-05],[158.0493,-5.5168E-05],[158.05273,-5.6199E-05],[158.05617,-5.6199E-05],[158.05961,-5.1043E-05],[158.06305,-4.6403E-05],[158.06648,-4.8981E-05],[158.06992,-5.6715E-05],[158.07336,-5.9293E-05],[158.07679,-5.3621E-05],[158.08023,-5.4137E-05],[158.08367,-5.3106E-05],[158.08711,-5.4652E-05],[158.09054,-5.4137E-05],[158.09398,-5.3621E-05],[158.09742,-5.9293E-05],[158.10086,-5.9293E-05],[158.10429,-5.6199E-05],[158.10773,-5.3106E-05],[158.11117,-5.6715E-05],[158.11461,-5.259E-05],[158.11804,-5.1559E-05],[158.12148,-5.4137E-05],[158.12492,-5.0528E-05],[158.12835,-5.5684E-05],[158.13179,-5.4137E-05],[158.13523,-5.0012E-05],[158.13867,-5.3106E-05],[158.1421,-5.6715E-05],[158.14554,-5.7746E-05],[158.14898,-5.4137E-05],[158.15242,-5.4137E-05],[158.15585,-5.0012E-05],[158.15929,-5.1559E-05],[158.16273,-5.0528E-05],[158.16617,-4.7434E-05],[158.1696,-5.4652E-05],[158.17304,-5.5684E-05],[158.17648,-5.3621E-05],[158.17991,-4.8981E-05],[158.18335,-4.6403E-05],[158.18679,-5.2074E-05],[158.19023,-5.4137E-05],[158.19366,-5.7746E-05],[158.1971,-5.8777E-05],[158.20054,-5.2074E-05],[158.20398,-5.1043E-05],[158.20741,-5.7746E-05],[158.21085,-5.5684E-05],[158.21429,-5.5168E-05],[158.21773,-5.5168E-05],[158.22116,-5.1043E-05],[158.2246,-5.3106E-05],[158.22804,-4.9497E-05],[158.23147,-5.3621E-05],[158.23491,-5.6199E-05],[158.23835,-5.3621E-05],[158.24179,-5.5684E-05],[158.24522,-4.9497E-05],[158.24866,-5.4137E-05],[158.2521,-5.8262E-05],[158.25554,-5.4137E-05],[158.25897,-5.4137E-05],[158.26241,-4.9497E-05],[158.26585,-5.0528E-05],[158.26929,-5.1559E-05]]}
-{"quant":[158.662,-5.2934E-05],"mems":[[158.5649,-5.0012E-05],[158.56833,-5.3106E-05],[158.57177,-5.4137E-05],[158.57521,-5.1043E-05],[158.57865,-5.259E-05],[158.58208,-5.3621E-05],[158.58552,-5.0528E-05],[158.58896,-5.5684E-05],[158.59239,-5.8262E-05],[158.59583,-5.4652E-05],[158.59927,-5.4652E-05],[158.60271,-5.5168E-05],[158.60614,-5.259E-05],[158.60958,-5.4652E-05],[158.61302,-5.8777E-05],[158.61646,-5.3621E-05],[158.61989,-5.2074E-05],[158.62333,-4.9497E-05],[158.62677,-4.9497E-05],[158.63021,-5.3621E-05],[158.63364,-5.3621E-05],[158.63708,-5.7746E-05],[158.64052,-5.3621E-05],[158.64395,-4.6919E-05],[158.64739,-5.0012E-05],[158.65083,-5.1559E-05],[158.65427,-5.3621E-05],[158.6577,-5.6199E-05],[158.66114,-5.6199E-05],[158.66458,-5.0012E-05],[158.66802,-4.5372E-05],[158.67145,-5.0528E-05],[158.67489,-5.3621E-05],[158.67833,-4.8981E-05],[158.68177,-4.9497E-05],[158.6852,-4.9497E-05],[158.68864,-4.7434E-05],[158.69208,-5.4652E-05],[158.69551,-5.6199E-05],[158.69895,-5.4137E-05],[158.70239,-5.2074E-05],[158.70583,-4.795E-05],[158.70926,-5.4652E-05],[158.7127,-5.3106E-05],[158.71614,-5.4137E-05],[158.71958,-5.6715E-05],[158.72301,-4.9497E-05],[158.72645,-5.3621E-05],[158.72989,-5.4137E-05],[158.73333,-5.5684E-05],[158.73676,-5.5684E-05],[158.7402,-5.1559E-05],[158.74364,-5.5168E-05],[158.74707,-5.8777E-05],[158.75051,-5.8777E-05],[158.75395,-5.3106E-05],[158.75739,-5.259E-05],[158.76082,-5.3106E-05],[158.76426,-5.7746E-05],[158.7677,-5.5684E-05],[158.77114,-5.0012E-05],[158.77457,-5.1559E-05],[158.77801,-4.8981E-05],[158.78145,-5.2074E-05],[158.78489,-5.2074E-05],[158.78832,-5.3621E-05],[158.79176,-5.3106E-05],[158.7952,-5.1559E-05],[158.79863,-5.5168E-05],[158.80207,-5.3621E-05],[158.80551,-5.5684E-05],[158.80895,-5.5168E-05],[158.81238,-5.5684E-05],[158.81582,-5.8262E-05],[158.81926,-5.6715E-05],[158.8227,-5.3621E-05],[158.82613,-5.259E-05],[158.82957,-5.5684E-05],[158.83301,-5.4652E-05],[158.83645,-5.8262E-05],[158.83988,-5.6199E-05],[158.84332,-5.0012E-05],[158.84676,-5.3106E-05],[158.85019,-5.7746E-05],[158.85363,-5.8777E-05],[158.85707,-5.7746E-05],[158.86051,-5.4137E-05],[158.86394,-5.3106E-05]]}
-{"quant":[159.139,-5.4463E-05],"mems":[[159.03925,-5.723E-05],[159.04269,-5.6199E-05],[159.04612,-5.0528E-05],[159.04956,-5.3621E-05],[159.053,-5.1559E-05],[159.05643,-5.3621E-05],[159.05987,-5.0528E-05],[159.06331,-5.2074E-05],[159.06675,-5.6199E-05],[159.07018,-4.9497E-05],[159.07362,-5.259E-05],[159.07706,-5.4652E-05],[159.0805,-5.5168E-05],[159.08393,-5.1043E-05],[159.08737,-5.1559E-05],[159.09081,-5.259E-05],[159.09425,-5.0528E-05],[159.09768,-5.7746E-05],[159.10112,-5.5684E-05],[159.10456,-5.3621E-05],[159.10799,-5.8777E-05],[159.11143,-5.7746E-05],[159.11487,-5.7746E-05],[159.11831,-5.5168E-05],[159.12174,-4.8981E-05],[159.12518,-5.4652E-05],[159.12862,-5.6199E-05],[159.13206,-5.2074E-05],[159.13549,-5.3621E-05],[159.13893,-5.3106E-05],[159.14237,-5.3106E-05],[159.14581,-5.4137E-05],[159.14924,-5.4137E-05],[159.15268,-5.3621E-05],[159.15612,-5.8262E-05],[159.15955,-5.5168E-05],[159.16299,-4.8981E-05],[159.16643,-5.5168E-05],[159.16987,-5.723E-05],[159.1733,-5.3621E-05],[159.17674,-5.4652E-05],[159.18018,-5.3621E-05],[159.18362,-5.1043E-05],[159.18705,-5.5168E-05],[159.19049,-5.5168E-05],[159.19393,-5.3106E-05],[159.19737,-5.8262E-05],[159.2008,-5.2074E-05],[159.20424,-4.795E-05],[159.20768,-5.3106E-05],[159.21111,-5.3106E-05],[159.21455,-5.8777E-05],[159.21799,-5.8777E-05],[159.22143,-5.4652E-05],[159.22486,-5.3621E-05],[159.2283,-5.4652E-05],[159.23174,-5.723E-05],[159.23518,-5.4652E-05],[159.23861,-5.723E-05],[159.24205,-5.3621E-05],[159.24549,-5.1559E-05],[159.24893,-5.4652E-05],[159.25236,-5.3106E-05],[159.2558,-5.4652E-05],[159.25924,-5.259E-05],[159.26267,-5.2074E-05],[159.26611,-5.259E-05],[159.26955,-5.7746E-05],[159.27299,-5.723E-05],[159.27642,-5.4652E-05],[159.27986,-5.4137E-05],[159.2833,-5.0012E-05],[159.28674,-5.5684E-05],[159.29017,-5.8262E-05],[159.29361,-5.5168E-05],[159.29705,-5.1559E-05],[159.30049,-5.0012E-05],[159.30392,-5.3106E-05],[159.30736,-5.4137E-05],[159.3108,-5.6199E-05],[159.31423,-5.7746E-05],[159.31767,-5.5684E-05],[159.32111,-5.0528E-05],[159.32455,-4.7434E-05],[159.32798,-4.8981E-05],[159.33142,-4.9497E-05],[159.33486,-5.0012E-05],[159.3383,-5.2074E-05],[159.34173,-5.4137E-05]]}
-{"quant":[159.607,-5.3467E-05],"mems":[[159.51016,-5.4652E-05],[159.5136,-5.1043E-05],[159.51704,-5.1043E-05],[159.52047,-5.5168E-05],[159.52391,-5.0528E-05],[159.52735,-5.0528E-05],[159.53079,-5.4137E-05],[159.53422,-5.1559E-05],[159.53766,-5.0012E-05],[159.5411,-5.0012E-05],[159.54454,-4.7434E-05],[159.54797,-5.5168E-05],[159.55141,-6.3933E-05],[159.55485,-5.9808E-05],[159.55829,-5.3621E-05],[159.56172,-5.0012E-05],[159.56516,-4.795E-05],[159.5686,-4.7434E-05],[159.57203,-5.1043E-05],[159.57547,-5.3621E-05],[159.57891,-5.4652E-05],[159.58235,-5.3621E-05],[159.58578,-5.4137E-05],[159.58922,-5.6199E-05],[159.59266,-5.5684E-05],[159.5961,-5.6199E-05],[159.59953,-5.4137E-05],[159.60297,-5.1043E-05],[159.60641,-5.1559E-05],[159.60985,-5.4652E-05],[159.61328,-5.4652E-05],[159.61672,-5.5684E-05],[159.62016,-5.1559E-05],[159.62359,-5.1559E-05],[159.62703,-5.3621E-05],[159.63047,-4.8465E-05],[159.63391,-5.5168E-05],[159.63734,-5.6199E-05],[159.64078,-5.1559E-05],[159.64422,-5.1559E-05],[159.64766,-5.3106E-05],[159.65109,-5.6199E-05],[159.65453,-5.5168E-05],[159.65797,-5.5168E-05],[159.66141,-5.2074E-05],[159.66484,-5.0528E-05],[159.66828,-5.2074E-05],[159.67172,-5.3621E-05],[159.67515,-5.3106E-05],[159.67859,-5.1043E-05],[159.68203,-5.4137E-05],[159.68547,-5.5168E-05],[159.6889,-5.259E-05],[159.69234,-5.259E-05],[159.69578,-5.7746E-05],[159.69922,-5.6199E-05],[159.70265,-5.0528E-05],[159.70609,-5.1559E-05],[159.70953,-5.6715E-05],[159.71297,-6.1355E-05],[159.7164,-5.259E-05],[159.71984,-4.8465E-05],[159.72328,-5.259E-05],[159.72671,-5.4652E-05],[159.73015,-5.4652E-05],[159.73359,-5.1043E-05],[159.73703,-5.259E-05],[159.74046,-5.3106E-05],[159.7439,-5.1559E-05],[159.74734,-5.259E-05],[159.75078,-5.4652E-05],[159.75421,-5.3106E-05],[159.75765,-5.2074E-05],[159.76109,-5.2074E-05],[159.76453,-4.795E-05],[159.76796,-5.3621E-05],[159.7714,-5.723E-05],[159.77484,-5.0528E-05],[159.77827,-5.1559E-05],[159.78171,-5.4652E-05],[159.78515,-5.0528E-05],[159.78859,-4.9497E-05],[159.79202,-4.9497E-05],[159.79546,-5.1559E-05],[159.7989,-5.3621E-05],[159.80234,-5.2074E-05],[159.80577,-5.3106E-05],[159.80921,-5.5168E-05]]}
-{"quant":[160.068,-5.2831E-05],"mems":[[159.97077,-5.6715E-05],[159.9742,-4.8981E-05],[159.97764,-5.0012E-05],[159.98108,-5.6199E-05],[159.98451,-5.1043E-05],[159.98795,-5.4137E-05],[159.99139,-5.723E-05],[159.99483,-5.5684E-05],[159.99826,-5.3106E-05],[160.0017,-5.2074E-05],[160.00514,-5.4137E-05],[160.00858,-5.5168E-05],[160.01201,-5.6199E-05],[160.01545,-5.259E-05],[160.01889,-5.1043E-05],[160.02233,-5.1043E-05],[160.02576,-4.6919E-05],[160.0292,-5.1559E-05],[160.03264,-5.3621E-05],[160.03607,-5.4137E-05],[160.03951,-5.5168E-05],[160.04295,-5.259E-05],[160.04639,-5.4652E-05],[160.04982,-4.795E-05],[160.05326,-4.7434E-05],[160.0567,-5.3106E-05],[160.06014,-4.3309E-05],[160.06357,-4.6403E-05],[160.06701,-5.4137E-05],[160.07045,-5.5684E-05],[160.07389,-5.4137E-05],[160.07732,-4.9497E-05],[160.08076,-5.4652E-05],[160.0842,-5.3621E-05],[160.08763,-5.259E-05],[160.09107,-5.5684E-05],[160.09451,-5.259E-05],[160.09795,-5.1559E-05],[160.10138,-5.259E-05],[160.10482,-5.3621E-05],[160.10826,-5.6199E-05],[160.1117,-5.6199E-05],[160.11513,-5.1043E-05],[160.11857,-5.1043E-05],[160.12201,-4.795E-05],[160.12545,-4.6919E-05],[160.12888,-5.3621E-05],[160.13232,-5.2074E-05],[160.13576,-5.3621E-05],[160.13919,-5.3621E-05],[160.14263,-4.9497E-05],[160.14607,-5.1559E-05],[160.14951,-5.5684E-05],[160.15294,-5.5684E-05],[160.15638,-5.3621E-05],[160.15982,-5.4652E-05],[160.16326,-5.2074E-05],[160.16669,-5.2074E-05],[160.17013,-5.1559E-05],[160.17357,-5.2074E-05],[160.17701,-5.5684E-05],[160.18044,-5.3106E-05],[160.18388,-5.2074E-05],[160.18732,-5.5168E-05],[160.19075,-5.2074E-05],[160.19419,-5.2074E-05],[160.19763,-5.4652E-05],[160.20107,-4.6403E-05],[160.2045,-4.8981E-05],[160.20794,-5.723E-05],[160.21138,-5.3621E-05],[160.21482,-5.6715E-05],[160.21825,-5.6199E-05],[160.22169,-5.1559E-05],[160.22513,-5.1043E-05],[160.22857,-4.8981E-05],[160.232,-5.1559E-05],[160.23544,-5.259E-05],[160.23888,-5.0528E-05],[160.24231,-4.6919E-05],[160.24575,-4.6403E-05],[160.24919,-5.0012E-05],[160.25263,-5.2074E-05],[160.25606,-5.3106E-05],[160.2595,-5.259E-05],[160.26294,-4.8981E-05],[160.26638,-5.1043E-05],[160.26981,-5.7746E-05]]}
-{"quant":[160.545,-5.3673E-05],"mems":[[160.44512,-5.3106E-05],[160.44855,-5.5168E-05],[160.45199,-5.3621E-05],[160.45543,-5.1559E-05],[160.45887,-5.1559E-05],[160.4623,-5.4137E-05],[160.46574,-5.5684E-05],[160.46918,-5.4137E-05],[160.47262,-5.3106E-05],[160.47605,-4.795E-05],[160.47949,-5.0528E-05],[160.48293,-5.3106E-05],[160.48637,-5.0012E-05],[160.4898,-5.4652E-05],[160.49324,-5.7746E-05],[160.49668,-5.723E-05],[160.50011,-5.1559E-05],[160.50355,-4.795E-05],[160.50699,-5.1559E-05],[160.51043,-5.4652E-05],[160.51386,-5.2074E-05],[160.5173,-5.1043E-05],[160.52074,-4.795E-05],[160.52418,-4.5372E-05],[160.52761,-5.4137E-05],[160.53105,-5.3621E-05],[160.53449,-4.7434E-05],[160.53793,-5.1043E-05],[160.54136,-4.8465E-05],[160.5448,-5.0528E-05],[160.54824,-5.6715E-05],[160.55167,-5.723E-05],[160.55511,-5.8262E-05],[160.55855,-5.5684E-05],[160.56199,-5.259E-05],[160.56542,-5.259E-05],[160.56886,-5.2074E-05],[160.5723,-5.1559E-05],[160.57574,-5.1559E-05],[160.57917,-4.8981E-05],[160.58261,-5.1559E-05],[160.58605,-5.1559E-05],[160.58949,-4.4856E-05],[160.59292,-5.2074E-05],[160.59636,-5.9808E-05],[160.5998,-5.4652E-05],[160.60323,-5.259E-05],[160.60667,-5.3621E-05],[160.61011,-5.4652E-05],[160.61355,-5.3106E-05],[160.61698,-5.3106E-05],[160.62042,-5.723E-05],[160.62386,-5.723E-05],[160.6273,-5.6715E-05],[160.63073,-5.3621E-05],[160.63417,-5.3621E-05],[160.63761,-5.259E-05],[160.64105,-4.8981E-05],[160.64448,-5.6199E-05],[160.64792,-5.5168E-05],[160.65136,-5.2074E-05],[160.65479,-5.4652E-05],[160.65823,-4.8465E-05],[160.66167,-5.1043E-05],[160.66511,-5.6199E-05],[160.66854,-5.7746E-05],[160.67198,-5.5168E-05],[160.67542,-5.1559E-05],[160.67886,-5.1559E-05],[160.68229,-5.259E-05],[160.68573,-5.5684E-05],[160.68917,-5.0528E-05],[160.69261,-4.8981E-05],[160.69604,-5.0528E-05],[160.69948,-5.0012E-05],[160.70292,-5.1559E-05],[160.70635,-5.4137E-05],[160.70979,-5.6715E-05],[160.71323,-5.6715E-05],[160.71667,-5.3106E-05],[160.7201,-5.3106E-05],[160.72354,-5.4137E-05],[160.72698,-5.0012E-05],[160.73042,-5.1043E-05],[160.73385,-5.0012E-05],[160.73729,-5.0528E-05],[160.74073,-5.1043E-05],[160.74417,-5.3106E-05],[160.7476,-5.4652E-05]]}
-{"quant":[161.23,-5.3518E-05],"mems":[[161.13258,-5.6199E-05],[161.13602,-5.1043E-05],[161.13946,-5.4652E-05],[161.1429,-5.4137E-05],[161.14633,-5.1559E-05],[161.14977,-5.3621E-05],[161.15321,-5.4137E-05],[161.15665,-5.5168E-05],[161.16008,-4.8981E-05],[161.16352,-4.8465E-05],[161.16696,-5.4137E-05],[161.17039,-5.3621E-05],[161.17383,-5.5168E-05],[161.17727,-5.5684E-05],[161.18071,-5.0012E-05],[161.18414,-4.795E-05],[161.18758,-5.1559E-05],[161.19102,-5.5168E-05],[161.19446,-5.5684E-05],[161.19789,-5.7746E-05],[161.20133,-5.723E-05],[161.20477,-5.5168E-05],[161.20821,-5.1043E-05],[161.21164,-5.1559E-05],[161.21508,-5.6715E-05],[161.21852,-5.3106E-05],[161.22195,-5.0012E-05],[161.22539,-5.3106E-05],[161.22883,-5.4137E-05],[161.23227,-5.1043E-05],[161.2357,-4.795E-05],[161.23914,-5.2074E-05],[161.24258,-5.1559E-05],[161.24602,-5.3621E-05],[161.24945,-5.7746E-05],[161.25289,-5.3621E-05],[161.25633,-5.0012E-05],[161.25977,-4.8465E-05],[161.2632,-5.5684E-05],[161.26664,-5.8262E-05],[161.27008,-5.5168E-05],[161.27351,-5.7746E-05],[161.27695,-5.4137E-05],[161.28039,-5.2074E-05],[161.28383,-5.259E-05],[161.28726,-5.3106E-05],[161.2907,-5.1559E-05],[161.29414,-4.795E-05],[161.29758,-5.1559E-05],[161.30101,-5.4652E-05],[161.30445,-5.3621E-05],[161.30789,-5.8262E-05],[161.31133,-5.9293E-05],[161.31476,-5.6199E-05],[161.3182,-5.4652E-05],[161.32164,-4.9497E-05],[161.32507,-5.259E-05],[161.32851,-5.5168E-05],[161.33195,-5.5684E-05],[161.33539,-5.5684E-05],[161.33882,-5.0012E-05],[161.34226,-5.2074E-05],[161.3457,-5.5168E-05],[161.34914,-5.4137E-05],[161.35257,-5.2074E-05],[161.35601,-5.3106E-05],[161.35945,-5.1043E-05],[161.36289,-5.1559E-05],[161.36632,-5.6715E-05],[161.36976,-5.4652E-05],[161.3732,-5.4137E-05],[161.37663,-5.1559E-05],[161.38007,-4.9497E-05],[161.38351,-5.1043E-05],[161.38695,-5.259E-05],[161.39038,-5.6715E-05],[161.39382,-5.3621E-05],[161.39726,-5.3621E-05],[161.4007,-5.0528E-05],[161.40413,-5.0012E-05],[161.40757,-5.7746E-05],[161.41101,-5.5168E-05],[161.41445,-5.3621E-05],[161.41788,-5.3621E-05],[161.42132,-5.0012E-05],[161.42476,-5.0528E-05],[161.42819,-5.1043E-05],[161.43163,-5.0528E-05]]}
-{"quant":[161.7,-5.3398E-05],"mems":[[161.60006,-5.0528E-05],[161.6035,-4.8981E-05],[161.60694,-5.723E-05],[161.61037,-5.5168E-05],[161.61381,-5.6199E-05],[161.61725,-5.4137E-05],[161.62069,-4.8465E-05],[161.62412,-5.1043E-05],[161.62756,-5.1559E-05],[161.631,-5.4652E-05],[161.63443,-5.3621E-05],[161.63787,-4.8465E-05],[161.64131,-5.0528E-05],[161.64475,-5.7746E-05],[161.64818,-5.5168E-05],[161.65162,-4.9497E-05],[161.65506,-5.4137E-05],[161.6585,-5.4652E-05],[161.66193,-5.0528E-05],[161.66537,-5.1559E-05],[161.66881,-5.259E-05],[161.67225,-5.2074E-05],[161.67568,-5.1559E-05],[161.67912,-4.8981E-05],[161.68256,-5.0012E-05],[161.68599,-5.5168E-05],[161.68943,-5.4137E-05],[161.69287,-4.795E-05],[161.69631,-4.4856E-05],[161.69974,-4.8981E-05],[161.70318,-5.259E-05],[161.70662,-5.2074E-05],[161.71006,-5.4137E-05],[161.71349,-5.0528E-05],[161.71693,-5.2074E-05],[161.72037,-5.4652E-05],[161.72381,-5.2074E-05],[161.72724,-5.3621E-05],[161.73068,-5.259E-05],[161.73412,-5.4137E-05],[161.73755,-5.2074E-05],[161.74099,-5.1559E-05],[161.74443,-5.1043E-05],[161.74787,-5.1559E-05],[161.7513,-5.3621E-05],[161.75474,-5.1559E-05],[161.75818,-5.4137E-05],[161.76162,-5.3621E-05],[161.76505,-5.6199E-05],[161.76849,-5.723E-05],[161.77193,-5.5168E-05],[161.77537,-5.4137E-05],[161.7788,-4.9497E-05],[161.78224,-5.3106E-05],[161.78568,-5.6715E-05],[161.78911,-5.259E-05],[161.79255,-5.3621E-05],[161.79599,-5.3621E-05],[161.79943,-5.4137E-05],[161.80286,-5.8262E-05],[161.8063,-5.7746E-05],[161.80974,-5.3621E-05],[161.81318,-4.795E-05],[161.81661,-5.0528E-05],[161.82005,-5.4652E-05],[161.82349,-5.0012E-05],[161.82693,-5.2074E-05],[161.83036,-5.2074E-05],[161.8338,-5.0012E-05],[161.83724,-4.8465E-05],[161.84067,-4.795E-05],[161.84411,-5.3621E-05],[161.84755,-5.3621E-05],[161.85099,-5.4137E-05],[161.85442,-5.1559E-05],[161.85786,-5.0528E-05],[161.8613,-5.4137E-05],[161.86474,-5.3621E-05],[161.86817,-5.4137E-05],[161.87161,-5.3621E-05],[161.87505,-5.6715E-05],[161.87849,-5.4137E-05],[161.88192,-5.1559E-05],[161.88536,-5.4137E-05],[161.8888,-5.4137E-05],[161.89223,-5.1043E-05],[161.89567,-4.5372E-05],[161.89911,-5.1043E-05],[161.90255,-5.3621E-05]]}
-{"quant":[162.172,-5.0923E-05],"mems":[[162.07441,-5.6715E-05],[162.07785,-5.5684E-05],[162.08129,-5.3621E-05],[162.08473,-5.4652E-05],[162.08816,-5.259E-05],[162.0916,-5.259E-05],[162.09504,-5.1043E-05],[162.09847,-5.1559E-05],[162.10191,-5.3106E-05],[162.10535,-5.0528E-05],[162.10879,-5.3621E-05],[162.11222,-5.3621E-05],[162.11566,-5.723E-05],[162.1191,-5.8262E-05],[162.12254,-5.3621E-05],[162.12597,-5.6715E-05],[162.12941,-5.4652E-05],[162.13285,-5.2074E-05],[162.13629,-4.9497E-05],[162.13972,-5.0012E-05],[162.14316,-5.4137E-05],[162.1466,-5.4652E-05],[162.15003,-5.2074E-05],[162.15347,-5.259E-05],[162.15691,-5.1559E-05],[162.16035,-4.8465E-05],[162.16378,-5.3621E-05],[162.16722,-5.8262E-05],[162.17066,-5.6199E-05],[162.1741,-5.259E-05],[162.17753,-5.0528E-05],[162.18097,-4.3825E-05],[162.18441,-4.6919E-05],[162.18785,-5.4652E-05],[162.19128,-5.0528E-05],[162.19472,-5.3106E-05],[162.19816,-5.259E-05],[162.20159,-5.0012E-05],[162.20503,-5.0012E-05],[162.20847,-5.3106E-05],[162.21191,-5.1559E-05],[162.21534,-4.6919E-05],[162.21878,-4.8981E-05],[162.22222,-4.9497E-05],[162.22566,-5.0528E-05],[162.22909,-5.2074E-05],[162.23253,-5.3106E-05],[162.23597,-5.3621E-05],[162.23941,-5.2074E-05],[162.24284,-5.1043E-05],[162.24628,-5.6715E-05],[162.24972,-5.2074E-05],[162.25315,-4.5887E-05],[162.25659,-5.5684E-05],[162.26003,-5.259E-05],[162.26347,-5.0012E-05],[162.2669,-5.1043E-05],[162.27034,-4.6919E-05],[162.27378,-4.9497E-05],[162.27722,-4.8465E-05],[162.28065,-5.0012E-05],[162.28409,-5.0012E-05],[162.28753,-4.9497E-05],[162.29097,-5.3621E-05],[162.2944,-5.5168E-05],[162.29784,-5.7746E-05],[162.30128,-5.3106E-05],[162.30471,-5.3621E-05],[162.30815,-5.5168E-05],[162.31159,-5.0528E-05],[162.31503,-5.2074E-05],[162.31846,-5.2074E-05],[162.3219,-5.3106E-05],[162.32534,-4.9497E-05],[162.32878,-5.1043E-05],[162.33221,-5.6715E-05],[162.33565,-5.2074E-05],[162.33909,-5.3621E-05],[162.34253,-5.7746E-05],[162.34596,-5.1559E-05],[162.3494,-5.0528E-05],[162.35284,-5.259E-05],[162.35627,-5.259E-05],[162.35971,-5.2074E-05],[162.36315,-4.795E-05],[162.36659,-4.8981E-05],[162.37002,-5.3621E-05],[162.37346,-5.1559E-05]]}
-{"quant":[162.623,-5.2882E-05],"mems":[[162.5247,-5.259E-05],[162.52814,-5.5168E-05],[162.53158,-5.3621E-05],[162.53502,-5.4137E-05],[162.53845,-5.1559E-05],[162.54189,-4.6919E-05],[162.54533,-5.2074E-05],[162.54877,-5.1559E-05],[162.5522,-5.2074E-05],[162.55564,-5.2074E-05],[162.55908,-5.0528E-05],[162.56251,-5.6715E-05],[162.56595,-5.7746E-05],[162.56939,-5.6715E-05],[162.57283,-5.259E-05],[162.57626,-5.0012E-05],[162.5797,-5.259E-05],[162.58314,-5.4652E-05],[162.58658,-5.723E-05],[162.59001,-5.4137E-05],[162.59345,-5.5168E-05],[162.59689,-5.9293E-05],[162.60033,-5.6199E-05],[162.60376,-5.5684E-05],[162.6072,-5.1559E-05],[162.61064,-5.3106E-05],[162.61407,-5.3106E-05],[162.61751,-4.6919E-05],[162.62095,-4.8465E-05],[162.62439,-5.2074E-05],[162.62782,-5.6715E-05],[162.63126,-5.4652E-05],[162.6347,-5.4137E-05],[162.63814,-5.6199E-05],[162.64157,-5.3106E-05],[162.64501,-5.7746E-05],[162.64845,-5.723E-05],[162.65189,-4.8981E-05],[162.65532,-4.795E-05],[162.65876,-5.0528E-05],[162.6622,-5.3621E-05],[162.66563,-5.6199E-05],[162.66907,-5.5168E-05],[162.67251,-5.3621E-05],[162.67595,-5.1559E-05],[162.67938,-4.6403E-05],[162.68282,-4.6919E-05],[162.68626,-5.1043E-05],[162.6897,-5.2074E-05],[162.69313,-5.3621E-05],[162.69657,-5.3106E-05],[162.70001,-5.3106E-05],[162.70345,-5.5168E-05],[162.70688,-5.3621E-05],[162.71032,-5.3106E-05],[162.71376,-5.0528E-05],[162.71719,-4.8981E-05],[162.72063,-5.4652E-05],[162.72407,-5.4652E-05],[162.72751,-5.4137E-05],[162.73094,-5.259E-05],[162.73438,-5.1043E-05],[162.73782,-5.1559E-05],[162.74126,-5.3106E-05],[162.74469,-5.6199E-05],[162.74813,-5.4652E-05],[162.75157,-5.5168E-05],[162.75501,-5.4652E-05],[162.75844,-5.2074E-05],[162.76188,-5.259E-05],[162.76532,-5.5168E-05],[162.76875,-5.6715E-05],[162.77219,-5.5168E-05],[162.77563,-5.1559E-05],[162.77907,-5.259E-05],[162.7825,-5.7746E-05],[162.78594,-5.723E-05],[162.78938,-5.6715E-05],[162.79282,-5.5168E-05],[162.79625,-5.1043E-05],[162.79969,-5.2074E-05],[162.80313,-5.5168E-05],[162.80657,-5.5684E-05],[162.81,-5.1043E-05],[162.81344,-4.7434E-05],[162.81688,-5.1043E-05],[162.82031,-5.4137E-05],[162.82375,-5.259E-05]]}
-{"quant":[163.077,-5.1731E-05],"mems":[[162.97819,-5.0012E-05],[162.98173,-5.0012E-05],[162.98527,-5.1559E-05],[162.98881,-5.4137E-05],[162.99234,-5.4137E-05],[162.99588,-5.3106E-05],[162.99942,-5.0528E-05],[163.00296,-5.1559E-05],[163.00649,-5.3106E-05],[163.01003,-5.4137E-05],[163.01357,-5.2074E-05],[163.01711,-5.1043E-05],[163.02064,-5.0528E-05],[163.02418,-4.8981E-05],[163.02772,-5.723E-05],[163.03125,-5.6715E-05],[163.03479,-5.0528E-05],[163.03833,-5.0528E-05],[163.04187,-4.9497E-05],[163.0454,-5.0528E-05],[163.04894,-4.8981E-05],[163.05248,-4.9497E-05],[163.05602,-5.259E-05],[163.05955,-5.1559E-05],[163.06309,-5.3621E-05],[163.06663,-5.259E-05],[163.07017,-5.2074E-05],[163.0737,-5.2074E-05],[163.07724,-5.0528E-05],[163.08078,-5.3621E-05],[163.08431,-4.9497E-05],[163.08785,-4.9497E-05],[163.09139,-5.6715E-05],[163.09493,-5.3621E-05],[163.09846,-5.1043E-05],[163.102,-4.5887E-05],[163.10554,-4.5372E-05],[163.10908,-5.259E-05],[163.11261,-5.3106E-05],[163.11615,-5.3106E-05],[163.11969,-5.259E-05],[163.12323,-5.3106E-05],[163.12676,-5.259E-05],[163.1303,-5.0012E-05],[163.13384,-5.0012E-05],[163.13737,-5.3106E-05],[163.14091,-5.3106E-05],[163.14445,-4.9497E-05],[163.14799,-5.1043E-05],[163.15152,-4.8981E-05],[163.15506,-5.4137E-05],[163.1586,-5.8777E-05],[163.16214,-5.2074E-05],[163.16567,-5.0528E-05],[163.16921,-5.2074E-05],[163.17275,-5.5684E-05],[163.17629,-5.0528E-05],[163.17982,-4.9497E-05],[163.18336,-5.1043E-05],[163.1869,-5.259E-05],[163.19043,-5.723E-05],[163.19397,-5.259E-05],[163.19751,-5.4137E-05],[163.20105,-5.3106E-05],[163.20458,-5.3106E-05],[163.20812,-5.5168E-05],[163.21166,-5.0012E-05],[163.2152,-5.0528E-05],[163.21873,-4.8981E-05],[163.22227,-5.0012E-05],[163.22581,-5.2074E-05],[163.22935,-4.8981E-05],[163.23288,-5.2074E-05],[163.23642,-5.3621E-05],[163.23996,-5.2074E-05],[163.24349,-5.2074E-05],[163.24703,-5.1043E-05],[163.25057,-5.0012E-05],[163.25411,-4.8981E-05],[163.25764,-5.2074E-05],[163.26118,-5.2074E-05],[163.26472,-4.7434E-05],[163.26826,-4.8465E-05],[163.27179,-4.795E-05],[163.27533,-5.0528E-05],[163.27887,-5.1559E-05]]}
-{"quant":[163.678,-5.1284E-05],"mems":[[163.57954,-5.5168E-05],[163.58308,-5.4137E-05],[163.58662,-5.5684E-05],[163.59015,-5.4652E-05],[163.59369,-5.3621E-05],[163.59723,-5.1559E-05],[163.60077,-4.8465E-05],[163.6043,-4.9497E-05],[163.60784,-5.1559E-05],[163.61138,-5.3106E-05],[163.61491,-5.1043E-05],[163.61845,-4.8465E-05],[163.62199,-5.3106E-05],[163.62553,-5.3621E-05],[163.62906,-5.6199E-05],[163.6326,-5.723E-05],[163.63614,-4.9497E-05],[163.63968,-5.0012E-05],[163.64321,-5.5168E-05],[163.64675,-5.5684E-05],[163.65029,-5.2074E-05],[163.65383,-4.8465E-05],[163.65736,-4.8465E-05],[163.6609,-4.6919E-05],[163.66444,-4.8981E-05],[163.66797,-4.795E-05],[163.67151,-4.6919E-05],[163.67505,-5.0528E-05],[163.67859,-4.9497E-05],[163.68212,-4.9497E-05],[163.68566,-5.1043E-05],[163.6892,-5.3106E-05],[163.69274,-5.2074E-05],[163.69627,-4.795E-05],[163.69981,-5.1043E-05],[163.70335,-5.1559E-05],[163.70689,-5.5684E-05],[163.71042,-5.6715E-05],[163.71396,-4.8981E-05],[163.7175,-4.7434E-05],[163.72103,-4.795E-05],[163.72457,-5.3621E-05],[163.72811,-5.3621E-05],[163.73165,-5.0528E-05],[163.73518,-5.1559E-05],[163.73872,-4.6403E-05],[163.74226,-5.259E-05],[163.7458,-5.4652E-05],[163.74933,-5.0528E-05],[163.75287,-5.259E-05],[163.75641,-5.2074E-05],[163.75995,-5.259E-05],[163.76348,-4.8981E-05],[163.76702,-4.8981E-05],[163.77056,-5.3621E-05],[163.77409,-5.259E-05],[163.77763,-5.259E-05],[163.78117,-4.8465E-05],[163.78471,-5.1043E-05],[163.78824,-5.8777E-05],[163.79178,-5.5684E-05],[163.79532,-5.5168E-05],[163.79886,-5.4137E-05],[163.80239,-4.795E-05],[163.80593,-5.4137E-05],[163.80947,-5.6715E-05],[163.81301,-5.1559E-05],[163.81654,-5.2074E-05],[163.82008,-5.0012E-05],[163.82362,-4.795E-05],[163.82715,-5.0012E-05],[163.83069,-4.8981E-05],[163.83423,-4.8981E-05],[163.83777,-5.1043E-05],[163.8413,-4.8465E-05],[163.84484,-5.1559E-05],[163.84838,-5.8262E-05],[163.85192,-5.6199E-05],[163.85545,-5.4137E-05],[163.85899,-5.4137E-05],[163.86253,-5.259E-05],[163.86607,-5.0528E-05],[163.8696,-5.1559E-05],[163.87314,-5.2074E-05],[163.87668,-4.795E-05],[163.88021,-5.0012E-05]]}
-{"quant":[164.136,-5.3177E-05],"mems":[[164.03939,-5.3621E-05],[164.04293,-5.1559E-05],[164.04647,-5.0012E-05],[164.05001,-5.4137E-05],[164.05354,-5.5684E-05],[164.05708,-5.4137E-05],[164.06062,-4.9497E-05],[164.06416,-5.259E-05],[164.06769,-5.5168E-05],[164.07123,-5.1559E-05],[164.07477,-5.5684E-05],[164.07831,-5.5168E-05],[164.08184,-5.259E-05],[164.08538,-5.723E-05],[164.08892,-5.3106E-05],[164.09245,-5.3621E-05],[164.09599,-5.6199E-05],[164.09953,-5.1043E-05],[164.10307,-5.6715E-05],[164.1066,-5.723E-05],[164.11014,-5.3621E-05],[164.11368,-5.3621E-05],[164.11722,-5.1559E-05],[164.12075,-5.2074E-05],[164.12429,-5.0528E-05],[164.12783,-5.4652E-05],[164.13137,-5.259E-05],[164.1349,-5.1559E-05],[164.13844,-5.3621E-05],[164.14198,-4.9497E-05],[164.14551,-5.3621E-05],[164.14905,-5.3621E-05],[164.15259,-4.9497E-05],[164.15613,-5.3106E-05],[164.15966,-5.6715E-05],[164.1632,-5.6199E-05],[164.16674,-5.4652E-05],[164.17028,-5.4652E-05],[164.17381,-5.5168E-05],[164.17735,-5.3106E-05],[164.18089,-5.1043E-05],[164.18443,-5.259E-05],[164.18796,-5.1559E-05],[164.1915,-4.8981E-05],[164.19504,-5.2074E-05],[164.19857,-5.3621E-05],[164.20211,-5.7746E-05],[164.20565,-5.6715E-05],[164.20919,-5.259E-05],[164.21272,-5.4137E-05],[164.21626,-5.1043E-05],[164.2198,-5.4652E-05],[164.22334,-5.259E-05],[164.22687,-4.8981E-05],[164.23041,-5.4652E-05],[164.23395,-5.259E-05],[164.23749,-5.3106E-05],[164.24102,-5.5684E-05],[164.24456,-5.4137E-05],[164.2481,-5.5684E-05],[164.25163,-5.6715E-05],[164.25517,-5.259E-05],[164.25871,-5.4137E-05],[164.26225,-5.723E-05],[164.26578,-5.3106E-05],[164.26932,-5.2074E-05],[164.27286,-5.1559E-05],[164.2764,-5.1559E-05],[164.27993,-5.3621E-05],[164.28347,-5.5684E-05],[164.28701,-5.4652E-05],[164.29055,-5.0012E-05],[164.29408,-5.0528E-05],[164.29762,-5.0528E-05],[164.30116,-4.9497E-05],[164.30469,-5.3621E-05],[164.30823,-5.0012E-05],[164.31177,-4.8465E-05],[164.31531,-5.1559E-05],[164.31884,-5.3106E-05],[164.32238,-5.8777E-05],[164.32592,-6.0324E-05],[164.32946,-5.723E-05],[164.33299,-5.259E-05],[164.33653,-5.2074E-05]]}
-{"quant":[164.59,-5.3212E-05],"mems":[[164.49217,-5.5684E-05],[164.49571,-5.5684E-05],[164.49925,-5.3621E-05],[164.50279,-5.259E-05],[164.50632,-5.0012E-05],[164.50986,-5.0528E-05],[164.5134,-5.259E-05],[164.51693,-4.9497E-05],[164.52047,-5.0012E-05],[164.52401,-5.4137E-05],[164.52755,-5.4652E-05],[164.53108,-5.5684E-05],[164.53462,-5.1043E-05],[164.53816,-4.6919E-05],[164.5417,-4.8465E-05],[164.54523,-4.9497E-05],[164.54877,-5.3621E-05],[164.55231,-5.5684E-05],[164.55585,-5.3106E-05],[164.55938,-5.1559E-05],[164.56292,-5.0528E-05],[164.56646,-5.3106E-05],[164.56999,-5.4652E-05],[164.57353,-5.2074E-05],[164.57707,-5.6715E-05],[164.58061,-5.3106E-05],[164.58414,-5.3106E-05],[164.58768,-5.5168E-05],[164.59122,-5.259E-05],[164.59476,-5.8262E-05],[164.59829,-5.4137E-05],[164.60183,-5.0528E-05],[164.60537,-5.4137E-05],[164.60891,-5.1559E-05],[164.61244,-5.2074E-05],[164.61598,-5.259E-05],[164.61952,-5.1043E-05],[164.62305,-5.4652E-05],[164.62659,-5.3621E-05],[164.63013,-5.1559E-05],[164.63367,-5.4652E-05],[164.6372,-5.5684E-05],[164.64074,-5.5684E-05],[164.64428,-5.259E-05],[164.64782,-4.8981E-05],[164.65135,-5.3106E-05],[164.65489,-5.3621E-05],[164.65843,-5.259E-05],[164.66197,-5.5684E-05],[164.6655,-5.6199E-05],[164.66904,-5.3621E-05],[164.67258,-4.9497E-05],[164.67611,-5.4137E-05],[164.67965,-5.5684E-05],[164.68319,-4.8981E-05],[164.68673,-5.3106E-05],[164.69026,-5.259E-05],[164.6938,-5.1043E-05],[164.69734,-5.4652E-05],[164.70088,-5.4652E-05],[164.70441,-5.6715E-05],[164.70795,-5.4137E-05],[164.71149,-5.4137E-05],[164.71503,-5.4652E-05],[164.71856,-4.795E-05],[164.7221,-5.1043E-05],[164.72564,-5.4652E-05],[164.72917,-5.0528E-05],[164.73271,-5.6199E-05],[164.73625,-5.9293E-05],[164.73979,-5.4137E-05],[164.74332,-5.259E-05],[164.74686,-5.2074E-05],[164.7504,-5.3106E-05],[164.75394,-5.0528E-05],[164.75747,-5.2074E-05],[164.76101,-5.6199E-05],[164.76455,-5.0012E-05],[164.76809,-4.9497E-05],[164.77162,-5.0012E-05],[164.77516,-4.7434E-05],[164.7787,-5.2074E-05],[164.78223,-5.3106E-05],[164.78577,-4.8981E-05],[164.78931,-5.259E-05],[164.79285,-5.4652E-05]]}
-{"quant":[165.043,-5.3959E-05],"mems":[[164.94495,-5.4652E-05],[164.94849,-5.2074E-05],[164.95203,-5.2074E-05],[164.95556,-5.5168E-05],[164.9591,-4.8981E-05],[164.96264,-5.259E-05],[164.96618,-5.6199E-05],[164.96971,-5.3106E-05],[164.97325,-5.259E-05],[164.97679,-5.3106E-05],[164.98033,-5.4652E-05],[164.98386,-4.8981E-05],[164.9874,-4.9497E-05],[164.99094,-5.4652E-05],[164.99447,-5.259E-05],[164.99801,-5.1043E-05],[165.00155,-5.4137E-05],[165.00509,-5.723E-05],[165.00862,-5.259E-05],[165.01216,-4.795E-05],[165.0157,-5.259E-05],[165.01924,-5.5684E-05],[165.02277,-5.4652E-05],[165.02631,-5.4137E-05],[165.02985,-5.3621E-05],[165.03339,-5.5168E-05],[165.03692,-5.259E-05],[165.04046,-5.1559E-05],[165.044,-5.4137E-05],[165.04753,-5.1559E-05],[165.05107,-5.3106E-05],[165.05461,-5.4652E-05],[165.05815,-5.2074E-05],[165.06168,-5.723E-05],[165.06522,-6.0839E-05],[165.06876,-5.6715E-05],[165.0723,-5.6715E-05],[165.07583,-5.8262E-05],[165.07937,-5.6199E-05],[165.08291,-5.5684E-05],[165.08645,-5.2074E-05],[165.08998,-5.2074E-05],[165.09352,-5.3106E-05],[165.09706,-5.0012E-05],[165.10059,-5.3106E-05],[165.10413,-5.8262E-05],[165.10767,-5.4137E-05],[165.11121,-5.259E-05],[165.11474,-5.3106E-05],[165.11828,-5.259E-05],[165.12182,-5.4652E-05],[165.12536,-5.4137E-05],[165.12889,-5.4137E-05],[165.13243,-4.6403E-05],[165.13597,-4.5372E-05],[165.13951,-5.5684E-05],[165.14304,-5.6199E-05],[165.14658,-5.3106E-05],[165.15012,-5.3621E-05],[165.15365,-5.1043E-05],[165.15719,-4.8981E-05],[165.16073,-5.5168E-05],[165.16427,-5.5168E-05],[165.1678,-5.1043E-05],[165.17134,-5.6199E-05],[165.17488,-5.1043E-05],[165.17842,-4.8981E-05],[165.18195,-5.5168E-05],[165.18549,-5.3106E-05],[165.18903,-5.2074E-05],[165.19257,-5.1559E-05],[165.1961,-5.3106E-05],[165.19964,-5.1043E-05],[165.20318,-4.8981E-05],[165.20671,-5.4137E-05],[165.21025,-6.0324E-05],[165.21379,-5.6199E-05],[165.21733,-4.7434E-05],[165.22086,-4.8981E-05],[165.2244,-4.8465E-05],[165.22794,-5.1043E-05],[165.23148,-5.5168E-05],[165.23501,-5.1559E-05],[165.23855,-4.9497E-05],[165.24209,-4.6919E-05],[165.24563,-4.9497E-05]]}
-{"quant":[165.506,-0.96683],"mems":[[165.42603,-4.8465E-05],[165.42957,-5.0012E-05],[165.4331,-5.6715E-05],[165.43664,-4.8981E-05],[165.44018,-5.4137E-05],[165.44372,-5.0012E-05],[165.44725,-4.795E-05],[165.45079,-5.4137E-05],[165.45433,-5.259E-05],[165.45787,-5.3621E-05],[165.4614,-4.7434E-05],[165.46494,-4.6403E-05],[165.46848,-5.1559E-05],[165.47201,-5.4652E-05],[165.47555,-5.4137E-05],[165.47909,-5.0012E-05],[165.48263,-4.8981E-05],[165.48616,-4.5887E-05],[165.4897,-4.8465E-05],[165.49324,-5.0528E-05],[165.49678,-5.1559E-05],[165.50031,-5.4137E-05],[165.50385,-5.0528E-05],[165.50739,-4.8981E-05],[165.51093,-5.0012E-05],[165.51446,-5.259E-05],[165.518,-5.6715E-05],[165.52141,-5.723E-05],[165.52482,-5.2074E-05],[165.52823,-5.0012E-05],[165.53164,-5.259E-05],[165.53505,-5.3106E-05],[165.53846,-5.1559E-05],[165.54187,-5.259E-05],[165.54527,-5.6715E-05],[165.54868,-5.2074E-05],[165.55209,-4.7434E-05],[165.5555,-5.5684E-05],[165.55891,-5.4652E-05],[165.56232,-4.8465E-05],[165.56573,-4.9497E-05],[165.56914,-5.5168E-05],[165.57255,-6.0839E-05],[165.57596,-6.2902E-05],[165.57937,-5.723E-05],[165.58278,-5.1559E-05],[165.58619,-5.3621E-05],[165.5896,-5.0012E-05],[165.59301,-4.9497E-05],[165.59641,-5.4652E-05],[165.59982,-5.6199E-05],[165.60323,-5.3106E-05],[165.60664,-4.6403E-05],[165.61005,-5.4137E-05],[165.61346,-5.6199E-05],[165.61687,-5.4137E-05],[165.62028,-5.8262E-05],[165.62369,-5.723E-05],[165.6271,-5.8777E-05],[165.63051,-5.5168E-05],[165.63392,-5.6715E-05],[165.63733,-5.0528E-05],[165.64074,-4.8981E-05],[165.64415,-5.4652E-05],[165.64755,-5.1043E-05],[165.65096,-5.8777E-05],[165.65437,-5.4137E-05],[165.65778,-4.8465E-05],[165.66119,-4.9497E-05],[165.6646,-4.795E-05],[165.66801,-5.259E-05],[165.67142,-5.1043E-05],[165.67483,-5.6715E-05],[165.67824,-5.8262E-05],[165.68165,-5.259E-05],[165.68506,-5.3621E-05],[165.68847,-5.1043E-05],[165.69188,-5.259E-05],[165.69529,-5.259E-05],[165.69869,-5.1043E-05],[165.7021,-5.6199E-05],[165.70551,-5.5684E-05],[165.70892,-5.4137E-05],[165.71233,-5.3106E-05],[165.71574,-5.1559E-05],[165.71915,-5.5684E-05],[165.72256,-5.3106E-05],[165.72597,-4.7434E-05]]}
-{"quant":[165.983,-5.247E-05],"mems":[[165.88621,-5.0012E-05],[165.88962,-5.6199E-05],[165.89303,-5.6715E-05],[165.89644,-5.4137E-05],[165.89985,-4.795E-05],[165.90325,-4.5372E-05],[165.90666,-5.0012E-05],[165.91007,-5.4137E-05],[165.91348,-5.259E-05],[165.91689,-5.3106E-05],[165.9203,-5.4137E-05],[165.92371,-5.0528E-05],[165.92712,-5.2074E-05],[165.93053,-5.5168E-05],[165.93394,-5.5684E-05],[165.93735,-5.7746E-05],[165.94076,-5.3621E-05],[165.94417,-5.1559E-05],[165.94758,-5.1559E-05],[165.95099,-5.4137E-05],[165.95439,-5.6715E-05],[165.9578,-5.4652E-05],[165.96121,-5.6715E-05],[165.96462,-5.4652E-05],[165.96803,-5.5168E-05],[165.97144,-6.0324E-05],[165.97485,-5.7746E-05],[165.97826,-5.259E-05],[165.98167,-5.3106E-05],[165.98508,-5.5684E-05],[165.98849,-5.259E-05],[165.9919,-5.259E-05],[165.99531,-5.4652E-05],[165.99872,-5.3621E-05],[166.00213,-5.4137E-05],[166.00553,-5.3621E-05],[166.00894,-5.4137E-05],[166.01235,-5.6199E-05],[166.01576,-6.0839E-05],[166.01917,-5.4137E-05],[166.02258,-4.3825E-05],[166.02599,-4.795E-05],[166.0294,-4.795E-05],[166.03281,-5.2074E-05],[166.03622,-5.5684E-05],[166.03963,-5.0528E-05],[166.04304,-4.8465E-05],[166.04645,-5.1559E-05],[166.04986,-5.3106E-05],[166.05327,-5.0012E-05],[166.05667,-5.0528E-05],[166.06008,-4.8465E-05],[166.06349,-4.8981E-05],[166.0669,-5.2074E-05],[166.07031,-5.259E-05],[166.07372,-5.4137E-05],[166.07713,-5.2074E-05],[166.08054,-5.6199E-05],[166.08395,-5.5684E-05],[166.08736,-4.9497E-05],[166.09077,-5.3621E-05],[166.09418,-5.4652E-05],[166.09759,-5.259E-05],[166.101,-5.1043E-05],[166.10441,-5.259E-05],[166.10781,-5.4652E-05],[166.11122,-5.0012E-05],[166.11463,-5.0528E-05],[166.11804,-5.0528E-05],[166.12145,-4.8465E-05],[166.12486,-5.1043E-05],[166.12827,-5.3621E-05],[166.13168,-5.1559E-05],[166.13509,-5.1043E-05],[166.1385,-5.1043E-05],[166.14191,-4.5372E-05],[166.14532,-4.8465E-05],[166.14873,-5.1559E-05],[166.15214,-5.0528E-05],[166.15555,-5.3621E-05],[166.15895,-5.259E-05],[166.16236,-4.9497E-05],[166.16577,-4.8981E-05],[166.16918,-5.2074E-05],[166.17259,-5.3106E-05],[166.176,-5.4652E-05],[166.17941,-5.3621E-05],[166.18282,-5.0528E-05],[166.18623,-5.4652E-05]]}
-{"quant":[166.529,-5.2212E-05],"mems":[[166.4317,-4.8981E-05],[166.43511,-4.6403E-05],[166.43852,-4.3825E-05],[166.44193,-4.8465E-05],[166.44534,-5.3621E-05],[166.44875,-5.7746E-05],[166.45216,-5.6199E-05],[166.45557,-5.3106E-05],[166.45898,-5.1043E-05],[166.46239,-4.6919E-05],[166.46579,-4.7434E-05],[166.4692,-5.3621E-05],[166.47261,-5.5684E-05],[166.47602,-5.259E-05],[166.47943,-5.2074E-05],[166.48284,-5.723E-05],[166.48625,-5.723E-05],[166.48966,-5.259E-05],[166.49307,-5.1043E-05],[166.49648,-4.8465E-05],[166.49989,-5.0012E-05],[166.5033,-5.2074E-05],[166.50671,-4.9497E-05],[166.51012,-4.8981E-05],[166.51353,-4.8981E-05],[166.51693,-5.0528E-05],[166.52034,-5.1043E-05],[166.52375,-5.0528E-05],[166.52716,-5.259E-05],[166.53057,-5.259E-05],[166.53398,-5.0528E-05],[166.53739,-4.7434E-05],[166.5408,-5.0012E-05],[166.54421,-5.5168E-05],[166.54762,-5.3621E-05],[166.55103,-5.5684E-05],[166.55444,-5.2074E-05],[166.55785,-4.6403E-05],[166.56126,-5.2074E-05],[166.56467,-5.5684E-05],[166.56807,-5.6199E-05],[166.57148,-5.1559E-05],[166.57489,-4.8465E-05],[166.5783,-4.7434E-05],[166.58171,-5.3621E-05],[166.58512,-5.723E-05],[166.58853,-4.7434E-05],[166.59194,-4.8465E-05],[166.59535,-5.0528E-05],[166.59876,-4.8981E-05],[166.60217,-5.1559E-05],[166.60558,-5.3621E-05],[166.60899,-5.5684E-05],[166.6124,-5.7746E-05],[166.61581,-5.723E-05],[166.61921,-5.1559E-05],[166.62262,-5.3106E-05],[166.62603,-5.3106E-05],[166.62944,-5.1559E-05],[166.63285,-5.3621E-05],[166.63626,-5.2074E-05],[166.63967,-5.4652E-05],[166.64308,-5.6715E-05],[166.64649,-5.5684E-05],[166.6499,-5.5168E-05],[166.65331,-5.4652E-05],[166.65672,-5.2074E-05],[166.66013,-5.0528E-05],[166.66354,-5.1559E-05],[166.66695,-5.259E-05],[166.67035,-5.6715E-05],[166.67376,-5.723E-05],[166.67717,-5.1559E-05],[166.68058,-5.3621E-05],[166.68399,-5.723E-05],[166.6874,-5.5684E-05],[166.69081,-5.5168E-05],[166.69422,-5.1559E-05],[166.69763,-4.8981E-05],[166.70104,-5.259E-05],[166.70445,-5.5684E-05],[166.70786,-5.5684E-05],[166.71127,-5.3621E-05],[166.71468,-5.1043E-05],[166.71809,-5.3106E-05],[166.72149,-5.4652E-05],[166.7249,-5.0012E-05],[166.72831,-5.1559E-05],[166.73172,-5.1043E-05]]}
-{"quant":[166.997,-5.3139E-05],"mems":[[166.89878,-5.723E-05],[166.90219,-5.8262E-05],[166.9056,-5.7746E-05],[166.90901,-5.8777E-05],[166.91242,-5.2074E-05],[166.91583,-5.0012E-05],[166.91924,-5.259E-05],[166.92265,-5.2074E-05],[166.92605,-4.9497E-05],[166.92946,-4.9497E-05],[166.93287,-5.1559E-05],[166.93628,-4.6919E-05],[166.93969,-5.2074E-05],[166.9431,-5.5168E-05],[166.94651,-5.3621E-05],[166.94992,-5.723E-05],[166.95333,-5.3106E-05],[166.95674,-5.1043E-05],[166.96015,-5.4137E-05],[166.96356,-5.723E-05],[166.96697,-5.7746E-05],[166.97038,-5.4137E-05],[166.97379,-5.2074E-05],[166.97719,-5.4137E-05],[166.9806,-5.2074E-05],[166.98401,-5.0012E-05],[166.98742,-5.6199E-05],[166.99083,-5.6715E-05],[166.99424,-5.2074E-05],[166.99765,-5.4137E-05],[167.00106,-5.7746E-05],[167.00447,-5.5684E-05],[167.00788,-5.4137E-05],[167.01129,-5.1559E-05],[167.0147,-4.9497E-05],[167.01811,-5.5684E-05],[167.02152,-5.4137E-05],[167.02493,-5.2074E-05],[167.02833,-5.5168E-05],[167.03174,-5.3621E-05],[167.03515,-5.3621E-05],[167.03856,-5.4652E-05],[167.04197,-5.4652E-05],[167.04538,-5.2074E-05],[167.04879,-5.3106E-05],[167.0522,-5.6199E-05],[167.05561,-5.4137E-05],[167.05902,-5.3621E-05],[167.06243,-5.4137E-05],[167.06584,-5.1559E-05],[167.06925,-5.259E-05],[167.07266,-5.1043E-05],[167.07607,-4.8981E-05],[167.07947,-5.3106E-05],[167.08288,-5.1043E-05],[167.08629,-5.3621E-05],[167.0897,-5.259E-05],[167.09311,-4.6403E-05],[167.09652,-5.1559E-05],[167.09993,-5.5168E-05],[167.10334,-5.3621E-05],[167.10675,-5.4137E-05],[167.11016,-5.3106E-05],[167.11357,-5.1043E-05],[167.11698,-5.723E-05],[167.12039,-5.8777E-05],[167.1238,-5.259E-05],[167.12721,-5.259E-05],[167.13061,-5.3621E-05],[167.13402,-5.0528E-05],[167.13743,-5.0528E-05],[167.14084,-5.1559E-05],[167.14425,-5.2074E-05],[167.14766,-5.5684E-05],[167.15107,-5.5684E-05],[167.15448,-5.3621E-05],[167.15789,-5.1559E-05],[167.1613,-5.4137E-05],[167.16471,-5.6715E-05],[167.16812,-5.3106E-05],[167.17153,-5.259E-05],[167.17494,-5.3621E-05],[167.17835,-5.4137E-05],[167.18175,-5.1559E-05],[167.18516,-4.8981E-05],[167.18857,-5.1043E-05],[167.19198,-5.1043E-05],[167.19539,-5.259E-05],[167.1988,-5.723E-05]]}
-{"quant":[167.509,-5.3388E-05],"mems":[[167.41018,-4.6919E-05],[167.41359,-5.3106E-05],[167.417,-5.8262E-05],[167.42041,-5.3106E-05],[167.42382,-4.8981E-05],[167.42723,-5.1043E-05],[167.43064,-5.259E-05],[167.43405,-5.2074E-05],[167.43745,-5.6199E-05],[167.44086,-4.9497E-05],[167.44427,-4.6403E-05],[167.44768,-5.1043E-05],[167.45109,-5.0528E-05],[167.4545,-5.4652E-05],[167.45791,-5.3621E-05],[167.46132,-4.7434E-05],[167.46473,-5.0012E-05],[167.46814,-5.2074E-05],[167.47155,-5.5168E-05],[167.47496,-5.4137E-05],[167.47837,-5.2074E-05],[167.48178,-5.5168E-05],[167.48519,-5.2074E-05],[167.48859,-5.3106E-05],[167.492,-5.259E-05],[167.49541,-4.6919E-05],[167.49882,-5.0528E-05],[167.50223,-5.5168E-05],[167.50564,-5.4137E-05],[167.50905,-5.0012E-05],[167.51246,-5.0012E-05],[167.51587,-5.5168E-05],[167.51928,-5.723E-05],[167.52269,-5.5168E-05],[167.5261,-5.1559E-05],[167.52951,-5.3106E-05],[167.53292,-5.5684E-05],[167.53633,-5.4137E-05],[167.53973,-5.4652E-05],[167.54314,-5.3621E-05],[167.54655,-5.2074E-05],[167.54996,-5.1043E-05],[167.55337,-5.2074E-05],[167.55678,-5.5684E-05],[167.56019,-5.6199E-05],[167.5636,-5.3621E-05],[167.56701,-5.1559E-05],[167.57042,-5.4137E-05],[167.57383,-5.5168E-05],[167.57724,-5.3621E-05],[167.58065,-5.3621E-05],[167.58406,-5.1043E-05],[167.58747,-4.8981E-05],[167.59087,-5.1559E-05],[167.59428,-5.1559E-05],[167.59769,-5.5684E-05],[167.6011,-5.8777E-05],[167.60451,-4.9497E-05],[167.60792,-5.1043E-05],[167.61133,-5.7746E-05],[167.61474,-5.9293E-05],[167.61815,-5.5684E-05],[167.62156,-4.9497E-05],[167.62497,-5.5684E-05],[167.62838,-5.5684E-05],[167.63179,-5.4137E-05],[167.6352,-5.723E-05],[167.63861,-5.4137E-05],[167.64201,-5.5684E-05],[167.64542,-5.0528E-05],[167.64883,-4.6403E-05],[167.65224,-5.0012E-05],[167.65565,-5.3621E-05],[167.65906,-5.4652E-05],[167.66247,-4.8981E-05],[167.66588,-5.0012E-05],[167.66929,-5.0528E-05],[167.6727,-5.259E-05],[167.67611,-6.0324E-05],[167.67952,-5.5168E-05],[167.68293,-5.1559E-05],[167.68634,-4.9497E-05],[167.68975,-5.2074E-05],[167.69315,-5.8777E-05],[167.69656,-5.5684E-05],[167.69997,-5.4652E-05],[167.70338,-5.1559E-05],[167.70679,-4.5887E-05],[167.7102,-4.7434E-05]]}
-{"quant":[167.969,-1.3229],"mems":[[167.92499,-4.795E-05],[167.9284,-5.259E-05],[167.93181,-5.2074E-05],[167.93522,-5.0528E-05],[167.93863,-5.3621E-05],[167.94204,-5.5684E-05],[167.94545,-5.4652E-05],[167.94885,-5.5168E-05],[167.95226,-5.5684E-05],[167.95567,-5.0012E-05],[167.95908,-4.795E-05],[167.96249,-5.259E-05],[167.9659,-5.3106E-05],[167.96931,-5.5684E-05],[167.97272,-5.6715E-05],[167.97613,-5.7746E-05],[167.97954,-5.4652E-05],[167.98295,-4.6403E-05],[167.98636,-4.9497E-05],[167.98977,-5.3621E-05],[167.99318,-5.3106E-05],[167.99659,-5.1043E-05],[167.99999,-5.2074E-05],[168.0034,-5.2074E-05],[168.00681,-5.2074E-05],[168.01022,-5.3621E-05],[168.01363,-5.1559E-05],[168.01704,-5.3621E-05],[168.02045,-5.259E-05],[168.02386,-4.7434E-05],[168.02727,-5.0012E-05],[168.03068,-5.1043E-05],[168.03409,-5.1559E-05],[168.0375,-5.259E-05],[168.04091,-5.4137E-05],[168.04432,-5.3621E-05],[168.04773,-5.2074E-05],[168.05113,-5.259E-05],[168.05454,-5.259E-05],[168.05795,-5.6715E-05],[168.06136,-5.1043E-05],[168.06477,-4.7434E-05],[168.06818,-5.4652E-05],[168.07159,-5.3621E-05],[168.075,-5.0528E-05],[168.07837,-5.2074E-05],[168.08173,-5.3621E-05],[168.0851,-4.8981E-05],[168.08847,-4.8465E-05],[168.09183,-5.0012E-05],[168.0952,-5.0012E-05],[168.09857,-5.1559E-05],[168.10193,-5.0012E-05],[168.1053,-5.1559E-05],[168.10867,-5.4652E-05],[168.11203,-5.723E-05],[168.1154,-5.6199E-05],[168.11877,-5.3621E-05],[168.12213,-5.5168E-05],[168.1255,-5.4137E-05],[168.12887,-5.4137E-05],[168.13223,-5.5168E-05],[168.1356,-5.3621E-05],[168.13897,-5.3106E-05],[168.14233,-5.2074E-05],[168.1457,-5.3106E-05],[168.14907,-5.5684E-05],[168.15243,-5.9293E-05],[168.1558,-5.8262E-05],[168.15917,-5.259E-05],[168.16253,-5.4137E-05],[168.1659,-5.5684E-05],[168.16927,-5.4137E-05],[168.17263,-5.3106E-05],[168.176,-5.5168E-05],[168.17937,-5.4652E-05],[168.18273,-5.0528E-05],[168.1861,-5.0528E-05],[168.18947,-5.0528E-05],[168.19283,-5.3106E-05],[168.1962,-5.3621E-05],[168.19957,-5.1559E-05],[168.20293,-5.3106E-05],[168.2063,-5.5684E-05],[168.20967,-5.4652E-05],[168.21303,-5.4137E-05],[168.2164,-5.4652E-05],[168.21977,-5.6715E-05]]}
-{"quant":[168.452,-5.2074E-05],"mems":[[168.35443,-4.8981E-05],[168.3578,-4.8465E-05],[168.36117,-5.259E-05],[168.36453,-5.5168E-05],[168.3679,-5.2074E-05],[168.37127,-5.5168E-05],[168.37463,-5.3621E-05],[168.378,-4.6919E-05],[168.38137,-4.8981E-05],[168.38473,-5.6199E-05],[168.3881,-5.9293E-05],[168.39147,-5.4652E-05],[168.39483,-5.4137E-05],[168.3982,-5.2074E-05],[168.40157,-5.0528E-05],[168.40493,-5.3621E-05],[168.4083,-5.0012E-05],[168.41167,-4.8981E-05],[168.41503,-4.8465E-05],[168.4184,-5.3106E-05],[168.42177,-5.4137E-05],[168.42513,-5.0528E-05],[168.4285,-5.4652E-05],[168.43187,-5.3106E-05],[168.43523,-5.1559E-05],[168.4386,-5.4652E-05],[168.44197,-5.5684E-05],[168.44533,-5.5168E-05],[168.4487,-5.4652E-05],[168.45207,-5.0528E-05],[168.45543,-5.2074E-05],[168.4588,-5.0528E-05],[168.46217,-5.1043E-05],[168.46553,-5.3106E-05],[168.4689,-4.7434E-05],[168.47227,-5.0528E-05],[168.47563,-5.1559E-05],[168.479,-5.3621E-05],[168.48237,-5.2074E-05],[168.48573,-4.9497E-05],[168.4891,-5.723E-05],[168.49247,-5.5168E-05],[168.49583,-5.0528E-05],[168.4992,-5.3621E-05],[168.50257,-5.5684E-05],[168.50593,-5.4137E-05],[168.5093,-5.4652E-05],[168.51267,-5.4137E-05],[168.51603,-5.2074E-05],[168.5194,-5.2074E-05],[168.52277,-5.0528E-05],[168.52613,-4.8981E-05],[168.5295,-5.0528E-05],[168.53287,-5.1043E-05],[168.53623,-5.1043E-05],[168.5396,-5.4652E-05],[168.54297,-5.4137E-05],[168.54633,-5.1043E-05],[168.5497,-5.0528E-05],[168.55307,-5.0528E-05],[168.55643,-5.2074E-05],[168.5598,-5.6715E-05],[168.56317,-5.9293E-05],[168.56653,-5.4137E-05],[168.5699,-5.3621E-05],[168.57327,-5.259E-05],[168.57663,-5.1043E-05],[168.58,-5.5168E-05],[168.58337,-5.4137E-05],[168.58673,-5.5168E-05],[168.5901,-5.3106E-05],[168.59347,-4.7434E-05],[168.59683,-5.0012E-05],[168.6002,-5.5168E-05],[168.60357,-5.6199E-05],[168.60693,-5.5684E-05],[168.6103,-5.4652E-05],[168.61367,-5.259E-05],[168.61703,-5.259E-05],[168.6204,-5.4652E-05],[168.62377,-5.4137E-05],[168.62713,-5.1043E-05],[168.6305,-5.3621E-05],[168.63387,-5.1043E-05],[168.63723,-5.1559E-05],[168.6406,-5.7746E-05],[168.64397,-5.4137E-05],[168.64733,-5.1559E-05],[168.6507,-5.2074E-05],[168.65407,-5.5684E-05]]}
-{"quant":[169.147,-5.2324E-05],"mems":[[169.04797,-5.1559E-05],[169.05133,-5.1559E-05],[169.0547,-5.4137E-05],[169.05807,-5.1559E-05],[169.06143,-4.9497E-05],[169.0648,-5.5168E-05],[169.06817,-5.6199E-05],[169.07153,-5.3621E-05],[169.0749,-5.2074E-05],[169.07827,-5.4652E-05],[169.08163,-5.6715E-05],[169.085,-5.3621E-05],[169.08837,-5.259E-05],[169.09173,-5.3106E-05],[169.0951,-5.3621E-05],[169.09847,-5.0012E-05],[169.10183,-5.0012E-05],[169.1052,-5.6715E-05],[169.10857,-5.6199E-05],[169.11193,-5.1043E-05],[169.1153,-5.2074E-05],[169.11867,-5.0528E-05],[169.12203,-5.0528E-05],[169.1254,-5.4652E-05],[169.12877,-5.6715E-05],[169.13213,-5.5684E-05],[169.1355,-5.1559E-05],[169.13887,-4.8981E-05],[169.14223,-5.0012E-05],[169.1456,-5.2074E-05],[169.14897,-5.4137E-05],[169.15233,-5.1043E-05],[169.1557,-4.8981E-05],[169.15907,-5.1559E-05],[169.16243,-5.2074E-05],[169.1658,-5.4652E-05],[169.16917,-5.2074E-05],[169.17253,-4.8465E-05],[169.1759,-5.1559E-05],[169.17927,-5.259E-05],[169.18263,-5.5168E-05],[169.186,-5.6715E-05],[169.18937,-5.5168E-05],[169.19273,-5.0528E-05],[169.1961,-5.1043E-05],[169.19947,-5.5684E-05],[169.20283,-5.4652E-05],[169.2062,-5.0012E-05],[169.20957,-4.9497E-05],[169.21293,-4.795E-05],[169.2163,-4.6919E-05],[169.21967,-5.5684E-05],[169.22303,-5.9808E-05],[169.2264,-5.6715E-05],[169.22977,-5.6199E-05],[169.23313,-5.0528E-05],[169.2365,-4.9497E-05],[169.23987,-5.2074E-05],[169.24323,-4.9497E-05],[169.2466,-5.1043E-05],[169.24997,-5.0528E-05],[169.25333,-5.1559E-05],[169.2567,-5.1559E-05],[169.26007,-5.1559E-05],[169.26343,-5.723E-05],[169.2668,-5.3621E-05],[169.27017,-5.0528E-05],[169.27353,-5.0012E-05],[169.2769,-4.8981E-05],[169.28027,-5.0528E-05],[169.28363,-5.2074E-05],[169.287,-5.4652E-05],[169.29037,-5.3106E-05],[169.29373,-5.5684E-05],[169.2971,-5.2074E-05],[169.30047,-5.1559E-05],[169.30383,-5.9293E-05],[169.3072,-5.4137E-05],[169.31057,-5.259E-05],[169.31393,-5.5168E-05],[169.3173,-5.3621E-05],[169.32067,-5.4652E-05],[169.32403,-5.9808E-05],[169.3274,-5.3621E-05],[169.33077,-5.0012E-05],[169.33413,-5.723E-05],[169.3375,-5.3106E-05],[169.34087,-5.5684E-05],[169.34423,-6.0839E-05],[169.3476,-5.6199E-05]]}
-{"quant":[169.618,-5.3255E-05],"mems":[[169.5193,-5.2074E-05],[169.52267,-5.723E-05],[169.52603,-5.5684E-05],[169.5294,-5.4137E-05],[169.53277,-5.3621E-05],[169.53613,-4.8465E-05],[169.5395,-5.1559E-05],[169.54287,-4.795E-05],[169.54623,-4.8465E-05],[169.5496,-5.4652E-05],[169.55297,-5.5684E-05],[169.55633,-5.4652E-05],[169.5597,-5.4652E-05],[169.56307,-5.4137E-05],[169.56643,-5.2074E-05],[169.5698,-5.5168E-05],[169.57317,-5.3106E-05],[169.57653,-5.2074E-05],[169.5799,-5.259E-05],[169.58327,-5.0528E-05],[169.58663,-5.3106E-05],[169.59,-4.795E-05],[169.59337,-4.8981E-05],[169.59673,-5.3621E-05],[169.6001,-4.8465E-05],[169.60347,-4.8465E-05],[169.60683,-5.1043E-05],[169.6102,-5.3106E-05],[169.61357,-5.4137E-05],[169.61693,-5.6199E-05],[169.6203,-5.6715E-05],[169.62367,-5.1559E-05],[169.62703,-5.1559E-05],[169.6304,-5.2074E-05],[169.63377,-5.1043E-05],[169.63713,-5.3106E-05],[169.6405,-5.259E-05],[169.64387,-5.4137E-05],[169.64723,-5.6199E-05],[169.6506,-5.5168E-05],[169.65397,-5.6715E-05],[169.65733,-5.6715E-05],[169.6607,-5.3621E-05],[169.66407,-5.1043E-05],[169.66743,-5.2074E-05],[169.6708,-5.0012E-05],[169.67417,-4.9497E-05],[169.67753,-5.3621E-05],[169.6809,-5.6715E-05],[169.68427,-5.4137E-05],[169.68763,-5.259E-05],[169.691,-5.4137E-05],[169.69437,-5.2074E-05],[169.69773,-5.6715E-05],[169.7011,-5.5168E-05],[169.70447,-5.0012E-05],[169.70783,-5.3621E-05],[169.7112,-5.0528E-05],[169.71457,-5.1043E-05],[169.71793,-5.4137E-05],[169.7213,-5.259E-05],[169.72467,-5.2074E-05],[169.72803,-5.259E-05],[169.7314,-5.5684E-05],[169.73477,-5.5168E-05],[169.73813,-5.1043E-05],[169.7415,-4.6919E-05],[169.74487,-5.1559E-05],[169.74823,-5.6715E-05],[169.7516,-5.5684E-05],[169.75497,-5.6199E-05],[169.75833,-5.5684E-05],[169.7617,-5.1043E-05],[169.76507,-4.6919E-05],[169.76843,-5.2074E-05],[169.7718,-5.3106E-05],[169.77517,-5.3621E-05],[169.77853,-5.8777E-05],[169.7819,-4.8981E-05],[169.78527,-4.7434E-05],[169.78863,-5.8262E-05],[169.792,-5.3106E-05],[169.79537,-5.0012E-05],[169.79873,-5.3621E-05],[169.8021,-5.2074E-05],[169.80547,-5.4652E-05],[169.80883,-5.4652E-05],[169.8122,-5.1043E-05],[169.81557,-5.2074E-05],[169.81893,-5.259E-05]]}
-{"quant":[170.091,-5.2158E-05],"mems":[[169.994,-5.5168E-05],[169.99737,-4.8465E-05],[170.00073,-5.0012E-05],[170.0041,-5.259E-05],[170.00747,-5.1043E-05],[170.01083,-5.2074E-05],[170.0142,-5.3621E-05],[170.01757,-5.2074E-05],[170.02093,-5.3621E-05],[170.0243,-5.8262E-05],[170.02767,-5.9293E-05],[170.03103,-5.6715E-05],[170.0344,-5.3621E-05],[170.03777,-5.2074E-05],[170.04113,-4.8981E-05],[170.0445,-4.8465E-05],[170.04787,-5.4137E-05],[170.05123,-5.259E-05],[170.0546,-4.5887E-05],[170.05797,-4.7434E-05],[170.06133,-5.2074E-05],[170.0647,-5.1043E-05],[170.06807,-5.3621E-05],[170.07143,-5.6199E-05],[170.0748,-5.4652E-05],[170.07817,-5.3621E-05],[170.08153,-5.6199E-05],[170.0849,-5.6715E-05],[170.08827,-4.9497E-05],[170.09163,-4.9497E-05],[170.095,-5.2074E-05],[170.09837,-5.0012E-05],[170.10173,-5.259E-05],[170.1051,-5.259E-05],[170.10847,-5.1043E-05],[170.11183,-5.259E-05],[170.1152,-4.8465E-05],[170.11857,-4.6403E-05],[170.12193,-5.0012E-05],[170.1253,-5.5168E-05],[170.12867,-5.723E-05],[170.13203,-5.2074E-05],[170.1354,-5.3621E-05],[170.13877,-5.4137E-05],[170.14213,-5.3621E-05],[170.1455,-5.1559E-05],[170.14887,-4.9497E-05],[170.15223,-4.9497E-05],[170.1556,-4.6919E-05],[170.15897,-5.2074E-05],[170.16233,-5.5168E-05],[170.1657,-5.4137E-05],[170.16907,-5.3106E-05],[170.17243,-5.1559E-05],[170.1758,-5.1559E-05],[170.17917,-5.1043E-05],[170.18253,-5.6199E-05],[170.1859,-5.4652E-05],[170.18927,-5.2074E-05],[170.19263,-5.6715E-05],[170.196,-4.9497E-05],[170.19937,-5.4137E-05],[170.20273,-5.9293E-05],[170.2061,-5.1559E-05],[170.20947,-5.5168E-05],[170.21283,-5.259E-05],[170.2162,-4.9497E-05],[170.21957,-5.3106E-05],[170.22293,-5.4652E-05],[170.2263,-5.4137E-05],[170.22967,-5.0528E-05],[170.23303,-5.0012E-05],[170.2364,-5.3106E-05],[170.23977,-5.4652E-05],[170.24313,-5.0528E-05],[170.2465,-5.3621E-05],[170.24987,-5.8262E-05],[170.25323,-5.3106E-05],[170.2566,-4.9497E-05],[170.25997,-5.4652E-05],[170.26333,-5.5684E-05],[170.2667,-5.2074E-05],[170.27007,-5.7746E-05],[170.27343,-5.5168E-05],[170.2768,-5.3621E-05],[170.28017,-5.7746E-05],[170.28353,-5.3106E-05],[170.2869,-5.4652E-05],[170.29027,-4.8465E-05],[170.29363,-4.5887E-05]]}
-{"quant":[170.578,-1.5848],"mems":[[170.4788,-5.5684E-05],[170.48217,-4.8981E-05],[170.48553,-5.0528E-05],[170.4889,-5.1559E-05],[170.49227,-5.259E-05],[170.49563,-5.6199E-05],[170.499,-5.6715E-05],[170.50237,-5.4137E-05],[170.50573,-5.1043E-05],[170.5091,-5.259E-05],[170.51247,-5.1559E-05],[170.51583,-5.2074E-05],[170.5192,-5.4137E-05],[170.52257,-5.3106E-05],[170.52593,-5.1559E-05],[170.5293,-5.0012E-05],[170.53267,-5.0528E-05],[170.53603,-5.259E-05],[170.5394,-5.3621E-05],[170.54277,-5.4652E-05],[170.54613,-5.4652E-05],[170.5495,-5.0012E-05],[170.55287,-4.9497E-05],[170.55623,-5.259E-05],[170.5596,-5.4652E-05],[170.56297,-5.5168E-05],[170.56633,-5.259E-05],[170.5697,-5.723E-05],[170.57307,-5.5168E-05],[170.57643,-5.2074E-05],[170.5798,-5.3106E-05],[170.58317,-5.0012E-05],[170.58653,-5.259E-05],[170.5899,-5.259E-05],[170.59327,-5.4137E-05],[170.59663,-5.4652E-05],[170.6,-5.4652E-05],[170.60353,-5.5168E-05],[170.60706,-5.5168E-05],[170.61058,-5.723E-05],[170.61411,-5.4652E-05],[170.61764,-5.5168E-05],[170.62117,-5.4137E-05],[170.6247,-4.8981E-05],[170.62822,-5.0012E-05],[170.63175,-5.1043E-05],[170.63528,-5.3106E-05],[170.63881,-5.8777E-05],[170.64234,-5.9808E-05],[170.64586,-5.2074E-05],[170.64939,-5.1559E-05],[170.65292,-5.5168E-05],[170.65645,-5.4137E-05],[170.65998,-5.5684E-05],[170.6635,-5.4137E-05],[170.66703,-5.6715E-05],[170.67056,-5.723E-05],[170.67409,-5.1043E-05],[170.67762,-5.5168E-05],[170.68114,-5.2074E-05],[170.68467,-4.8465E-05],[170.6882,-5.259E-05],[170.69173,-5.3621E-05],[170.69526,-5.5684E-05],[170.69878,-5.259E-05],[170.70231,-5.3621E-05],[170.70584,-5.3621E-05],[170.70937,-5.0012E-05],[170.7129,-5.3106E-05],[170.71642,-5.3621E-05],[170.71995,-5.4137E-05],[170.72348,-5.2074E-05],[170.72701,-5.0012E-05],[170.73054,-4.9497E-05],[170.73406,-4.8981E-05],[170.73759,-5.4652E-05],[170.74112,-5.3621E-05],[170.74465,-5.5684E-05],[170.74818,-5.3106E-05],[170.7517,-4.8465E-05],[170.75523,-5.5684E-05],[170.75876,-5.3106E-05],[170.76229,-4.9497E-05],[170.76582,-5.4652E-05],[170.76934,-5.4137E-05],[170.77287,-5.1559E-05],[170.7764,-5.3106E-05],[170.77993,-5.4652E-05]]}
-{"quant":[171.044,-5.2074E-05],"mems":[[170.94574,-5.1043E-05],[170.94927,-4.8981E-05],[170.9528,-5.259E-05],[170.95633,-5.0528E-05],[170.95986,-5.0528E-05],[170.96338,-5.2074E-05],[170.96691,-5.3106E-05],[170.97044,-5.1559E-05],[170.97397,-5.0012E-05],[170.9775,-5.3106E-05],[170.98102,-5.1559E-05],[170.98455,-5.259E-05],[170.98808,-5.5684E-05],[170.99161,-4.9497E-05],[170.99514,-5.0012E-05],[170.99866,-5.5168E-05],[171.00219,-5.3621E-05],[171.00572,-5.1043E-05],[171.00925,-4.8981E-05],[171.01278,-5.0528E-05],[171.0163,-4.8981E-05],[171.01983,-5.1559E-05],[171.02336,-5.4652E-05],[171.02689,-5.0528E-05],[171.03042,-4.795E-05],[171.03394,-5.1043E-05],[171.03747,-5.0528E-05],[171.041,-5.1559E-05],[171.04453,-5.723E-05],[171.04806,-5.4137E-05],[171.05158,-5.4137E-05],[171.05511,-5.1043E-05],[171.05864,-5.0012E-05],[171.06217,-5.4652E-05],[171.0657,-5.1043E-05],[171.06922,-5.5684E-05],[171.07275,-5.4137E-05],[171.07628,-4.8465E-05],[171.07981,-5.2074E-05],[171.08334,-4.9497E-05],[171.08686,-5.1043E-05],[171.09039,-5.259E-05],[171.09392,-4.8981E-05],[171.09745,-5.0012E-05],[171.10098,-5.2074E-05],[171.1045,-5.2074E-05],[171.10803,-5.259E-05],[171.11156,-5.5168E-05],[171.11509,-5.5684E-05],[171.11862,-5.2074E-05],[171.12214,-4.9497E-05],[171.12567,-5.1043E-05],[171.1292,-5.6199E-05],[171.13273,-5.3621E-05],[171.13626,-4.7434E-05],[171.13978,-4.795E-05],[171.14331,-5.0012E-05],[171.14684,-5.2074E-05],[171.15037,-5.4137E-05],[171.1539,-5.4137E-05],[171.15742,-5.259E-05],[171.16095,-5.5168E-05],[171.16448,-4.9497E-05],[171.16801,-4.5887E-05],[171.17154,-5.6199E-05],[171.17506,-5.259E-05],[171.17859,-4.9497E-05],[171.18212,-5.8262E-05],[171.18565,-5.9808E-05],[171.18918,-5.9293E-05],[171.1927,-6.0324E-05],[171.19623,-5.5684E-05],[171.19976,-5.1559E-05],[171.20329,-5.5168E-05],[171.20682,-5.3621E-05],[171.21034,-5.259E-05],[171.21387,-5.3621E-05],[171.2174,-5.259E-05],[171.22093,-5.2074E-05],[171.22446,-5.723E-05],[171.22798,-6.0839E-05],[171.23151,-5.4137E-05],[171.23504,-5.259E-05],[171.23857,-5.5684E-05],[171.2421,-5.3106E-05],[171.24562,-5.5168E-05]]}
-{"quant":[171.669,-5.2697E-05],"mems":[[171.5702,-5.0012E-05],[171.57373,-5.259E-05],[171.57726,-5.1559E-05],[171.58078,-5.4137E-05],[171.58431,-5.4137E-05],[171.58784,-5.0528E-05],[171.59137,-5.3106E-05],[171.5949,-5.1559E-05],[171.59842,-5.1559E-05],[171.60195,-5.0012E-05],[171.60548,-4.795E-05],[171.60901,-5.1559E-05],[171.61254,-5.5684E-05],[171.61606,-5.7746E-05],[171.61959,-5.8777E-05],[171.62312,-5.5684E-05],[171.62665,-5.3621E-05],[171.63018,-5.3621E-05],[171.6337,-5.3106E-05],[171.63723,-5.723E-05],[171.64076,-5.6715E-05],[171.64429,-5.5684E-05],[171.64782,-5.3621E-05],[171.65134,-5.0012E-05],[171.65487,-5.7746E-05],[171.6584,-5.9808E-05],[171.66193,-5.5684E-05],[171.66546,-5.3621E-05],[171.66898,-5.2074E-05],[171.67251,-5.3621E-05],[171.67604,-5.3621E-05],[171.67957,-5.4652E-05],[171.6831,-5.259E-05],[171.68662,-5.3621E-05],[171.69015,-5.8262E-05],[171.69368,-5.3621E-05],[171.69721,-4.9497E-05],[171.70074,-5.3106E-05],[171.70426,-5.4652E-05],[171.70779,-5.259E-05],[171.71132,-5.2074E-05],[171.71485,-5.1559E-05],[171.71838,-5.2074E-05],[171.7219,-5.1043E-05],[171.72543,-5.4652E-05],[171.72896,-5.5168E-05],[171.73249,-4.6403E-05],[171.73602,-5.1559E-05],[171.73954,-5.6199E-05],[171.74307,-5.259E-05],[171.7466,-5.259E-05],[171.75013,-5.259E-05],[171.75366,-4.8981E-05],[171.75718,-5.0528E-05],[171.76071,-5.3106E-05],[171.76424,-5.1559E-05],[171.76777,-5.3106E-05],[171.7713,-5.259E-05],[171.77482,-5.1043E-05],[171.77835,-5.6199E-05],[171.78188,-5.4652E-05],[171.78541,-5.1043E-05],[171.78894,-5.3621E-05],[171.79246,-5.3106E-05],[171.79599,-5.0012E-05],[171.79952,-4.795E-05],[171.80305,-5.1043E-05],[171.80658,-5.4652E-05],[171.8101,-5.723E-05],[171.81363,-5.3106E-05],[171.81716,-5.2074E-05],[171.82069,-5.8262E-05],[171.82422,-5.3106E-05],[171.82774,-4.8981E-05],[171.83127,-4.9497E-05],[171.8348,-5.0012E-05],[171.83833,-5.0012E-05],[171.84186,-4.8981E-05],[171.84538,-5.259E-05],[171.84891,-5.5168E-05],[171.85244,-5.3621E-05],[171.85597,-5.1043E-05],[171.8595,-5.4137E-05],[171.86302,-5.7746E-05],[171.86655,-5.6715E-05],[171.87008,-5.4137E-05]]}
-{"quant":[172.149,-5.2981E-05],"mems":[[172.05001,-5.0528E-05],[172.05354,-5.4652E-05],[172.05706,-5.8777E-05],[172.06059,-5.5684E-05],[172.06412,-5.259E-05],[172.06765,-5.3106E-05],[172.07118,-5.4137E-05],[172.0747,-5.6715E-05],[172.07823,-5.5684E-05],[172.08176,-4.5887E-05],[172.08529,-4.795E-05],[172.08882,-5.5684E-05],[172.09234,-5.4137E-05],[172.09587,-5.2074E-05],[172.0994,-4.9497E-05],[172.10293,-5.3621E-05],[172.10646,-5.6715E-05],[172.10998,-5.3106E-05],[172.11351,-5.5168E-05],[172.11704,-5.723E-05],[172.12057,-5.2074E-05],[172.1241,-5.259E-05],[172.12762,-5.5168E-05],[172.13115,-5.4652E-05],[172.13468,-5.3621E-05],[172.13821,-4.9497E-05],[172.14174,-5.0528E-05],[172.14526,-5.3106E-05],[172.14879,-5.3106E-05],[172.15232,-5.3106E-05],[172.15585,-5.2074E-05],[172.15938,-5.3621E-05],[172.1629,-5.3621E-05],[172.16643,-5.4652E-05],[172.16996,-5.259E-05],[172.17349,-5.2074E-05],[172.17702,-5.3621E-05],[172.18054,-4.8465E-05],[172.18407,-4.9497E-05],[172.1876,-5.0012E-05],[172.19113,-4.8981E-05],[172.19466,-5.259E-05],[172.19818,-5.259E-05],[172.20171,-5.1043E-05],[172.20524,-4.9497E-05],[172.20877,-5.2074E-05],[172.2123,-5.4137E-05],[172.21582,-5.5168E-05],[172.21935,-5.6199E-05],[172.22288,-5.3106E-05],[172.22641,-5.4137E-05],[172.22994,-5.6715E-05],[172.23346,-5.4137E-05],[172.23699,-5.6199E-05],[172.24052,-5.723E-05],[172.24405,-5.1559E-05],[172.24758,-5.259E-05],[172.2511,-5.5168E-05],[172.25463,-5.5168E-05],[172.25816,-5.8262E-05],[172.26169,-5.8262E-05],[172.26522,-5.0012E-05],[172.26874,-4.8981E-05],[172.27227,-5.259E-05],[172.2758,-5.0528E-05],[172.27933,-5.5684E-05],[172.28286,-5.7746E-05],[172.28638,-5.0012E-05],[172.28991,-5.1043E-05],[172.29344,-5.6715E-05],[172.29697,-5.5168E-05],[172.3005,-5.3106E-05],[172.30402,-5.259E-05],[172.30755,-5.0012E-05],[172.31108,-5.1043E-05],[172.31461,-5.3106E-05],[172.31814,-5.4137E-05],[172.32166,-5.259E-05],[172.32519,-5.1043E-05],[172.32872,-5.4137E-05],[172.33225,-5.3106E-05],[172.33578,-5.6199E-05],[172.3393,-5.8262E-05],[172.34283,-5.3621E-05],[172.34636,-5.5168E-05],[172.34989,-5.4137E-05]]}
-{"quant":[172.677,-5.3363E-05],"mems":[[172.57921,-5.3621E-05],[172.58274,-5.4652E-05],[172.58626,-5.5168E-05],[172.58979,-5.259E-05],[172.59332,-5.259E-05],[172.59685,-5.4652E-05],[172.60038,-5.6715E-05],[172.6039,-5.5168E-05],[172.60743,-5.8777E-05],[172.61096,-5.7746E-05],[172.61449,-4.8981E-05],[172.61802,-5.3621E-05],[172.62154,-5.6715E-05],[172.62507,-5.3621E-05],[172.6286,-5.2074E-05],[172.63213,-5.0012E-05],[172.63566,-4.9497E-05],[172.63918,-5.0012E-05],[172.64271,-5.4652E-05],[172.64624,-5.4652E-05],[172.64977,-5.3106E-05],[172.6533,-5.5684E-05],[172.65682,-5.2074E-05],[172.66035,-4.9497E-05],[172.66388,-5.3621E-05],[172.66741,-5.6715E-05],[172.67094,-5.4137E-05],[172.67446,-5.3621E-05],[172.67799,-5.4137E-05],[172.68152,-5.4137E-05],[172.68505,-5.7746E-05],[172.68858,-5.259E-05],[172.6921,-4.8981E-05],[172.69563,-5.4652E-05],[172.69916,-5.3621E-05],[172.70269,-5.4137E-05],[172.70622,-5.5684E-05],[172.70974,-5.3106E-05],[172.71327,-5.1559E-05],[172.7168,-5.0012E-05],[172.72033,-5.2074E-05],[172.72386,-5.6199E-05],[172.72738,-5.5684E-05],[172.73091,-5.4137E-05],[172.73444,-5.1559E-05],[172.73797,-4.8465E-05],[172.7415,-5.1043E-05],[172.74502,-5.1559E-05],[172.74855,-5.1559E-05],[172.75208,-5.6715E-05],[172.75561,-5.0528E-05],[172.75914,-4.6919E-05],[172.76266,-5.5168E-05],[172.76619,-5.8262E-05],[172.76972,-5.723E-05],[172.77325,-5.6199E-05],[172.77678,-5.259E-05],[172.7803,-5.4652E-05],[172.78383,-5.5168E-05],[172.78736,-5.3106E-05],[172.79089,-5.6715E-05],[172.79442,-5.2074E-05],[172.79794,-5.0528E-05],[172.80147,-5.1043E-05],[172.805,-5.3106E-05],[172.80853,-5.723E-05],[172.81206,-5.1559E-05],[172.81558,-5.3621E-05],[172.81911,-5.4137E-05],[172.82264,-5.3621E-05],[172.82617,-5.6199E-05],[172.8297,-5.6199E-05],[172.83322,-5.259E-05],[172.83675,-5.2074E-05],[172.84028,-5.3106E-05],[172.84381,-5.1043E-05],[172.84734,-5.7746E-05],[172.85086,-5.8262E-05],[172.85439,-5.3621E-05],[172.85792,-5.2074E-05],[172.86145,-4.8465E-05],[172.86498,-5.0528E-05],[172.8685,-5.0528E-05],[172.87203,-5.1043E-05],[172.87556,-5.2074E-05],[172.87909,-5.0012E-05]]}
-{"quant":[173.145,-1.8122],"mems":[[173.04843,-5.0012E-05],[173.05196,-5.4652E-05],[173.05549,-5.9808E-05],[173.05902,-5.7746E-05],[173.06254,-5.259E-05],[173.06607,-5.2074E-05],[173.0696,-5.8777E-05],[173.07313,-5.3106E-05],[173.07666,-5.0528E-05],[173.08018,-5.3621E-05],[173.08371,-5.0528E-05],[173.08724,-5.1559E-05],[173.09077,-5.259E-05],[173.0943,-5.4652E-05],[173.09782,-5.4652E-05],[173.10135,-5.5168E-05],[173.10488,-5.2074E-05],[173.10841,-5.0012E-05],[173.11194,-5.3621E-05],[173.11546,-5.259E-05],[173.11899,-5.0528E-05],[173.12252,-4.6919E-05],[173.12605,-4.9497E-05],[173.12958,-5.1559E-05],[173.1331,-5.259E-05],[173.13663,-5.6199E-05],[173.14016,-5.259E-05],[173.14369,-5.2074E-05],[173.14722,-4.9497E-05],[173.15074,-4.9497E-05],[173.15427,-5.5168E-05],[173.1578,-5.0012E-05],[173.16133,-5.4137E-05],[173.16486,-5.8777E-05],[173.16838,-5.2074E-05],[173.17191,-5.3621E-05],[173.17544,-5.9293E-05],[173.17897,-5.6199E-05],[173.1825,-5.1559E-05],[173.18602,-5.259E-05],[173.18955,-5.0012E-05],[173.19308,-4.9497E-05],[173.19661,-5.5168E-05],[173.20014,-5.8777E-05],[173.20366,-5.2074E-05],[173.20719,-4.795E-05],[173.21072,-5.259E-05],[173.21425,-5.3106E-05],[173.21778,-5.3621E-05],[173.2213,-5.4652E-05],[173.22483,-5.259E-05],[173.22836,-4.8981E-05],[173.23189,-4.9497E-05],[173.23542,-5.2074E-05],[173.23894,-5.723E-05],[173.24247,-5.9293E-05],[173.246,-5.3106E-05],[173.24946,-5.1043E-05],[173.25291,-4.8465E-05],[173.25637,-5.0528E-05],[173.25983,-5.8262E-05],[173.26329,-5.5168E-05],[173.26674,-5.2074E-05],[173.2702,-5.1043E-05],[173.27366,-5.259E-05],[173.27712,-5.3621E-05],[173.28057,-4.7434E-05],[173.28403,-4.8465E-05],[173.28749,-4.8981E-05],[173.29095,-5.0012E-05],[173.2944,-5.2074E-05],[173.29786,-5.0012E-05],[173.30132,-5.2074E-05],[173.30477,-5.259E-05],[173.30823,-5.2074E-05],[173.31169,-5.1043E-05],[173.31515,-5.2074E-05],[173.3186,-5.3106E-05],[173.32206,-5.5168E-05],[173.32552,-5.5168E-05],[173.32898,-4.6919E-05],[173.33243,-4.8981E-05],[173.33589,-5.2074E-05],[173.33935,-4.8981E-05],[173.34281,-5.259E-05],[173.34626,-5.0528E-05]]}
-{"quant":[173.608,-5.4154E-05],"mems":[[173.50876,-5.6715E-05],[173.51221,-5.6199E-05],[173.51567,-5.6715E-05],[173.51913,-5.7746E-05],[173.52259,-5.7746E-05],[173.52604,-5.8262E-05],[173.5295,-5.7746E-05],[173.53296,-5.5168E-05],[173.53642,-5.259E-05],[173.53987,-5.9293E-05],[173.54333,-5.9293E-05],[173.54679,-5.1559E-05],[173.55025,-5.3106E-05],[173.5537,-5.4652E-05],[173.55716,-5.259E-05],[173.56062,-5.723E-05],[173.56407,-5.5168E-05],[173.56753,-5.3106E-05],[173.57099,-5.259E-05],[173.57445,-5.0012E-05],[173.5779,-5.7746E-05],[173.58136,-5.723E-05],[173.58482,-5.5168E-05],[173.58828,-5.6715E-05],[173.59173,-5.3621E-05],[173.59519,-5.0012E-05],[173.59865,-5.0528E-05],[173.60211,-5.6715E-05],[173.60556,-5.259E-05],[173.60902,-5.0012E-05],[173.61248,-5.3621E-05],[173.61593,-5.4652E-05],[173.61939,-5.2074E-05],[173.62285,-5.3106E-05],[173.62631,-5.8777E-05],[173.62976,-5.3621E-05],[173.63322,-5.2074E-05],[173.63668,-5.2074E-05],[173.64014,-5.1559E-05],[173.64359,-5.5168E-05],[173.64705,-5.3621E-05],[173.65051,-5.259E-05],[173.65397,-4.8981E-05],[173.65742,-5.0528E-05],[173.66088,-5.8262E-05],[173.66434,-6.0839E-05],[173.66779,-6.0324E-05],[173.67125,-5.723E-05],[173.67471,-5.6715E-05],[173.67817,-6.0839E-05],[173.68162,-5.4652E-05],[173.68508,-5.0012E-05],[173.68854,-5.5684E-05],[173.692,-5.4137E-05],[173.69545,-5.259E-05],[173.69891,-5.3106E-05],[173.70237,-5.3621E-05],[173.70583,-5.259E-05],[173.70928,-5.1559E-05],[173.71274,-5.259E-05],[173.7162,-5.4652E-05],[173.71965,-5.3106E-05],[173.72311,-5.4137E-05],[173.72657,-5.6715E-05],[173.73003,-5.1559E-05],[173.73348,-4.8981E-05],[173.73694,-5.3621E-05],[173.7404,-5.4652E-05],[173.74386,-5.4652E-05],[173.74731,-5.1559E-05],[173.75077,-5.0528E-05],[173.75423,-5.6199E-05],[173.75769,-5.6199E-05],[173.76114,-5.4652E-05],[173.7646,-5.1559E-05],[173.76806,-5.3106E-05],[173.77151,-5.4652E-05],[173.77497,-5.1559E-05],[173.77843,-5.6715E-05],[173.78189,-4.9497E-05],[173.78534,-4.6403E-05],[173.7888,-5.1043E-05],[173.79226,-4.4856E-05],[173.79572,-5.0012E-05],[173.79917,-5.2074E-05],[173.80263,-5.2074E-05],[173.80609,-5.5168E-05],[173.80955,-5.2074E-05]]}
-{"quant":[174.309,-5.3484E-05],"mems":[[174.2106,-5.1043E-05],[174.21405,-5.3106E-05],[174.21751,-5.5684E-05],[174.22097,-5.6715E-05],[174.22443,-5.6199E-05],[174.22788,-5.4137E-05],[174.23134,-5.0012E-05],[174.2348,-5.0012E-05],[174.23825,-5.1043E-05],[174.24171,-5.259E-05],[174.24517,-5.4137E-05],[174.24863,-5.3106E-05],[174.25208,-5.5684E-05],[174.25554,-4.8981E-05],[174.259,-5.0528E-05],[174.26246,-5.7746E-05],[174.26591,-5.4652E-05],[174.26937,-5.7746E-05],[174.27283,-5.6199E-05],[174.27629,-5.3106E-05],[174.27974,-5.4137E-05],[174.2832,-5.5168E-05],[174.28666,-5.7746E-05],[174.29011,-5.4137E-05],[174.29357,-5.1043E-05],[174.29703,-5.0012E-05],[174.30049,-5.1559E-05],[174.30394,-5.5684E-05],[174.3074,-5.4652E-05],[174.31086,-5.4652E-05],[174.31432,-5.3106E-05],[174.31777,-5.0012E-05],[174.32123,-5.259E-05],[174.32469,-5.0528E-05],[174.32815,-4.6919E-05],[174.3316,-5.0012E-05],[174.33506,-4.9497E-05],[174.33852,-5.4137E-05],[174.34197,-5.6715E-05],[174.34543,-5.5168E-05],[174.34889,-5.6199E-05],[174.35235,-5.3106E-05],[174.3558,-5.3621E-05],[174.35926,-5.4652E-05],[174.36272,-5.3621E-05],[174.36618,-5.3621E-05],[174.36963,-5.6199E-05],[174.37309,-5.4137E-05],[174.37655,-5.1043E-05],[174.38001,-5.3621E-05],[174.38346,-5.1043E-05],[174.38692,-5.4137E-05],[174.39038,-5.4137E-05],[174.39383,-5.4652E-05],[174.39729,-5.4652E-05],[174.40075,-5.2074E-05],[174.40421,-5.8262E-05],[174.40766,-5.723E-05],[174.41112,-5.5168E-05],[174.41458,-5.6715E-05],[174.41804,-5.723E-05],[174.42149,-5.3106E-05],[174.42495,-5.4137E-05],[174.42841,-5.6199E-05],[174.43187,-5.2074E-05],[174.43532,-5.0012E-05],[174.43878,-5.0012E-05],[174.44224,-5.5168E-05],[174.44569,-5.5168E-05],[174.44915,-5.259E-05],[174.45261,-5.0012E-05],[174.45607,-5.1559E-05],[174.45952,-5.5684E-05],[174.46298,-5.5684E-05],[174.46644,-5.9808E-05],[174.4699,-5.6715E-05],[174.47335,-5.1559E-05],[174.47681,-5.5168E-05],[174.48027,-5.259E-05],[174.48373,-4.8981E-05],[174.48718,-5.259E-05],[174.49064,-5.4652E-05],[174.4941,-5.1043E-05],[174.49755,-5.3621E-05],[174.50101,-5.9293E-05],[174.50447,-5.5168E-05],[174.50793,-5.3106E-05],[174.51138,-5.3106E-05]]}
-{"quant":[174.772,-5.3656E-05],"mems":[[174.67388,-5.3621E-05],[174.67734,-5.1559E-05],[174.68079,-5.3621E-05],[174.68425,-5.5684E-05],[174.68771,-5.3621E-05],[174.69117,-5.0012E-05],[174.69462,-5.0528E-05],[174.69808,-5.0012E-05],[174.70154,-5.1559E-05],[174.70499,-5.8262E-05],[174.70845,-5.3621E-05],[174.71191,-5.2074E-05],[174.71537,-5.259E-05],[174.71882,-5.1559E-05],[174.72228,-5.7746E-05],[174.72574,-5.6199E-05],[174.7292,-5.9293E-05],[174.73265,-5.4137E-05],[174.73611,-4.8465E-05],[174.73957,-5.4137E-05],[174.74303,-5.0012E-05],[174.74648,-5.259E-05],[174.74994,-5.5684E-05],[174.7534,-5.259E-05],[174.75685,-5.2074E-05],[174.76031,-5.2074E-05],[174.76377,-5.6199E-05],[174.76723,-5.723E-05],[174.77068,-5.259E-05],[174.77414,-5.0528E-05],[174.7776,-5.2074E-05],[174.78106,-5.6715E-05],[174.78451,-5.4652E-05],[174.78797,-5.259E-05],[174.79143,-5.5168E-05],[174.79489,-5.4652E-05],[174.79834,-5.3621E-05],[174.8018,-5.4652E-05],[174.80526,-5.6199E-05],[174.80871,-5.5168E-05],[174.81217,-5.7746E-05],[174.81563,-5.2074E-05],[174.81909,-5.0012E-05],[174.82254,-5.6199E-05],[174.826,-5.4137E-05],[174.82946,-5.723E-05],[174.83292,-5.259E-05],[174.83637,-4.795E-05],[174.83983,-5.3106E-05],[174.84329,-5.4652E-05],[174.84675,-5.8262E-05],[174.8502,-5.4652E-05],[174.85366,-5.1043E-05],[174.85712,-5.3106E-05],[174.86057,-5.3106E-05],[174.86403,-5.5168E-05],[174.86749,-5.3621E-05],[174.87095,-4.9497E-05],[174.8744,-4.9497E-05],[174.87786,-5.3106E-05],[174.88132,-5.1043E-05],[174.88478,-5.0528E-05],[174.88823,-5.4137E-05],[174.89169,-5.723E-05],[174.89515,-5.5168E-05],[174.89861,-5.0528E-05],[174.90206,-5.259E-05],[174.90552,-4.9497E-05],[174.90898,-5.0012E-05],[174.91243,-5.2074E-05],[174.91589,-5.259E-05],[174.91935,-5.259E-05],[174.92281,-5.259E-05],[174.92626,-5.6199E-05],[174.92972,-5.1559E-05],[174.93318,-5.5168E-05],[174.93664,-5.4137E-05],[174.94009,-5.259E-05],[174.94355,-5.6199E-05],[174.94701,-5.3621E-05],[174.95047,-5.5168E-05],[174.95392,-5.2074E-05],[174.95738,-5.0012E-05],[174.96084,-5.259E-05],[174.96429,-5.259E-05],[174.96775,-5.5684E-05],[174.97121,-5.723E-05],[174.97467,-5.4137E-05]]}
-{"quant":[175.252,-5.2332E-05],"mems":[[175.15445,-5.4652E-05],[175.15791,-4.5887E-05],[175.16136,-4.8465E-05],[175.16482,-5.259E-05],[175.16828,-5.5168E-05],[175.17173,-5.1559E-05],[175.17519,-4.795E-05],[175.17865,-5.0528E-05],[175.18211,-5.259E-05],[175.18556,-5.259E-05],[175.18902,-5.4652E-05],[175.19248,-5.5684E-05],[175.19594,-5.4652E-05],[175.19939,-5.3106E-05],[175.20285,-5.2074E-05],[175.20631,-5.6199E-05],[175.20977,-5.6199E-05],[175.21322,-5.4137E-05],[175.21668,-5.1559E-05],[175.22014,-5.3621E-05],[175.22359,-5.9293E-05],[175.22705,-5.5684E-05],[175.23051,-5.3621E-05],[175.23397,-5.5684E-05],[175.23742,-5.5168E-05],[175.24088,-5.259E-05],[175.24434,-5.5684E-05],[175.2478,-5.8262E-05],[175.25125,-5.4137E-05],[175.25471,-5.3621E-05],[175.25817,-5.1559E-05],[175.26163,-5.2074E-05],[175.26508,-5.723E-05],[175.26854,-5.1559E-05],[175.272,-4.8981E-05],[175.27545,-5.3106E-05],[175.27891,-5.259E-05],[175.28237,-5.1043E-05],[175.28583,-4.795E-05],[175.28928,-4.9497E-05],[175.29274,-5.5168E-05],[175.2962,-5.3621E-05],[175.29966,-5.1043E-05],[175.30311,-4.5887E-05],[175.30657,-5.0528E-05],[175.31003,-5.6199E-05],[175.31349,-5.1559E-05],[175.31694,-5.259E-05],[175.3204,-5.2074E-05],[175.32386,-5.0528E-05],[175.32731,-5.3621E-05],[175.33077,-5.723E-05],[175.33423,-5.6199E-05],[175.33769,-4.9497E-05],[175.34114,-5.1043E-05],[175.3446,-5.2074E-05],[175.34806,-5.259E-05],[175.35152,-5.7746E-05],[175.35497,-5.1559E-05],[175.35843,-5.1559E-05],[175.36189,-5.5684E-05],[175.36535,-5.6199E-05],[175.3688,-5.9293E-05],[175.37226,-5.4137E-05],[175.37572,-5.3621E-05],[175.37917,-5.259E-05],[175.38263,-5.1043E-05],[175.38609,-5.5684E-05],[175.38955,-5.3621E-05],[175.393,-5.259E-05],[175.39646,-5.0012E-05],[175.39992,-4.8981E-05],[175.40338,-5.0012E-05],[175.40683,-5.3106E-05],[175.41029,-5.4652E-05],[175.41375,-5.3621E-05],[175.41721,-5.3621E-05],[175.42066,-4.9497E-05],[175.42412,-5.0528E-05],[175.42758,-5.4137E-05],[175.43103,-5.2074E-05],[175.43449,-5.3621E-05],[175.43795,-5.2074E-05],[175.44141,-5.0012E-05],[175.44486,-5.3621E-05],[175.44832,-5.723E-05],[175.45178,-5.723E-05],[175.45524,-5.5684E-05]]}
-{"quant":[175.722,-0.099182],"mems":[[175.67996,-5.4652E-05],[175.68342,-4.8981E-05],[175.68688,-4.795E-05],[175.69033,-5.259E-05],[175.69379,-4.9497E-05],[175.69725,-5.2074E-05],[175.70071,-5.4137E-05],[175.70416,-5.5168E-05],[175.70762,-5.4137E-05],[175.71108,-5.1043E-05],[175.71454,-5.5168E-05],[175.71799,-5.4652E-05],[175.72145,-4.9497E-05],[175.72491,-4.795E-05],[175.72837,-4.9497E-05],[175.73182,-5.0012E-05],[175.73528,-5.6715E-05],[175.73874,-5.2074E-05],[175.74219,-4.4856E-05],[175.74565,-5.3106E-05],[175.74911,-5.5684E-05],[175.75257,-5.5168E-05],[175.75602,-5.3621E-05],[175.75948,-5.2074E-05],[175.76294,-5.259E-05],[175.7664,-5.259E-05],[175.76985,-5.3106E-05],[175.77331,-5.259E-05],[175.77677,-5.0012E-05],[175.78023,-4.5372E-05],[175.78368,-4.5372E-05],[175.78714,-4.8465E-05],[175.7906,-5.3106E-05],[175.79405,-5.259E-05],[175.79751,-5.3106E-05],[175.80097,-5.5684E-05],[175.80443,-5.1559E-05],[175.80788,-5.4137E-05],[175.81134,-5.5684E-05],[175.8148,-5.4652E-05],[175.81826,-5.3106E-05],[175.82171,-4.6919E-05],[175.82517,-5.0528E-05],[175.82863,-5.5684E-05],[175.83209,-5.3621E-05],[175.83554,-5.3621E-05],[175.839,-5.4652E-05],[175.84236,-5.2074E-05],[175.84572,-5.1043E-05],[175.84908,-5.0012E-05],[175.85243,-5.3621E-05],[175.85579,-5.723E-05],[175.85915,-4.8465E-05],[175.86251,-4.7434E-05],[175.86587,-5.4652E-05],[175.86923,-5.3621E-05],[175.87259,-5.7746E-05],[175.87595,-6.0324E-05],[175.8793,-5.3621E-05],[175.88266,-5.4137E-05],[175.88602,-5.4137E-05],[175.88938,-5.0528E-05],[175.89274,-5.0528E-05],[175.8961,-5.3621E-05],[175.89946,-5.1559E-05],[175.90281,-4.8981E-05],[175.90617,-5.2074E-05],[175.90953,-5.3106E-05],[175.91289,-5.4137E-05],[175.91625,-4.8981E-05],[175.91961,-4.8981E-05],[175.92297,-5.3106E-05],[175.92633,-5.5684E-05],[175.92968,-5.7746E-05],[175.93304,-5.4652E-05],[175.9364,-5.4652E-05],[175.93976,-5.0012E-05],[175.94312,-5.0012E-05],[175.94648,-5.5168E-05],[175.94984,-5.3621E-05],[175.95319,-5.0528E-05],[175.95655,-4.5887E-05],[175.95991,-4.8981E-05],[175.96327,-5.6199E-05],[175.96663,-5.259E-05],[175.96999,-5.4137E-05],[175.97335,-5.4137E-05],[175.97671,-4.5887E-05]]}
-{"quant":[176.202,-5.3982E-05],"mems":[[176.10433,-5.259E-05],[176.10769,-5.3621E-05],[176.11105,-5.9293E-05],[176.11441,-5.6715E-05],[176.11777,-5.4652E-05],[176.12113,-5.3621E-05],[176.12449,-5.259E-05],[176.12785,-5.5684E-05],[176.1312,-5.3106E-05],[176.13456,-5.4137E-05],[176.13792,-5.3106E-05],[176.14128,-5.1043E-05],[176.14464,-5.5168E-05],[176.148,-5.1043E-05],[176.15136,-5.259E-05],[176.15471,-5.3106E-05],[176.15807,-5.1559E-05],[176.16143,-5.6715E-05],[176.16479,-5.1559E-05],[176.16815,-5.2074E-05],[176.17151,-5.5684E-05],[176.17487,-4.9497E-05],[176.17823,-5.1043E-05],[176.18158,-5.723E-05],[176.18494,-5.5684E-05],[176.1883,-5.5684E-05],[176.19166,-5.4652E-05],[176.19502,-5.1559E-05],[176.19838,-5.5168E-05],[176.20174,-5.723E-05],[176.20509,-5.259E-05],[176.20845,-4.9497E-05],[176.21181,-5.4652E-05],[176.21517,-5.259E-05],[176.21853,-5.1043E-05],[176.22189,-5.5684E-05],[176.22525,-5.2074E-05],[176.22861,-5.1043E-05],[176.23196,-5.5168E-05],[176.23532,-5.4652E-05],[176.23868,-5.4652E-05],[176.24204,-5.8262E-05],[176.2454,-5.5168E-05],[176.24876,-5.2074E-05],[176.25212,-5.1559E-05],[176.25547,-5.3621E-05],[176.25883,-5.723E-05],[176.26219,-5.7746E-05],[176.26555,-5.5168E-05],[176.26891,-5.1559E-05],[176.27227,-5.3106E-05],[176.27563,-5.7746E-05],[176.27899,-5.723E-05],[176.28234,-5.1559E-05],[176.2857,-5.0528E-05],[176.28906,-5.0528E-05],[176.29242,-5.5684E-05],[176.29578,-5.6715E-05],[176.29914,-5.4137E-05],[176.3025,-5.6199E-05],[176.30585,-5.2074E-05],[176.30921,-5.259E-05],[176.31257,-5.0012E-05],[176.31593,-5.3621E-05],[176.31929,-5.723E-05],[176.32265,-5.1559E-05],[176.32601,-5.1043E-05],[176.32937,-5.2074E-05],[176.33272,-5.4137E-05],[176.33608,-5.1559E-05],[176.33944,-5.1559E-05],[176.3428,-5.5684E-05],[176.34616,-5.0528E-05],[176.34952,-5.1043E-05],[176.35288,-5.3106E-05],[176.35623,-5.259E-05],[176.35959,-5.4652E-05],[176.36295,-5.5684E-05],[176.36631,-5.259E-05],[176.36967,-5.0528E-05],[176.37303,-5.259E-05],[176.37639,-5.3621E-05],[176.37975,-5.5168E-05],[176.3831,-5.1559E-05],[176.38646,-4.8981E-05],[176.38982,-5.259E-05],[176.39318,-5.0012E-05],[176.39654,-5.1043E-05],[176.3999,-5.4137E-05],[176.40326,-5.4137E-05]]}
-{"quant":[176.912,-5.3887E-05],"mems":[[176.81301,-5.4652E-05],[176.81637,-5.2074E-05],[176.81973,-5.1043E-05],[176.82309,-5.0528E-05],[176.82645,-5.2074E-05],[176.82981,-5.259E-05],[176.83317,-5.2074E-05],[176.83652,-5.0528E-05],[176.83988,-5.3106E-05],[176.84324,-5.5684E-05],[176.8466,-5.6199E-05],[176.84996,-5.5684E-05],[176.85332,-5.259E-05],[176.85668,-5.4137E-05],[176.86003,-5.7746E-05],[176.86339,-5.6199E-05],[176.86675,-5.6199E-05],[176.87011,-5.4652E-05],[176.87347,-5.0528E-05],[176.87683,-5.259E-05],[176.88019,-5.4137E-05],[176.88355,-5.5168E-05],[176.8869,-5.8262E-05],[176.89026,-5.723E-05],[176.89362,-5.1559E-05],[176.89698,-4.5887E-05],[176.90034,-5.0012E-05],[176.9037,-5.4652E-05],[176.90706,-5.6199E-05],[176.91041,-5.4137E-05],[176.91377,-4.8981E-05],[176.91713,-4.9497E-05],[176.92049,-5.3106E-05],[176.92385,-5.723E-05],[176.92721,-5.4652E-05],[176.93057,-5.2074E-05],[176.93393,-5.1559E-05],[176.93728,-5.4137E-05],[176.94064,-5.8262E-05],[176.944,-5.5684E-05],[176.94736,-5.4137E-05],[176.95072,-4.8465E-05],[176.95408,-4.6919E-05],[176.95744,-5.0528E-05],[176.96079,-5.6199E-05],[176.96415,-5.8777E-05],[176.96751,-5.3621E-05],[176.97087,-5.5684E-05],[176.97423,-5.8262E-05],[176.97759,-6.0839E-05],[176.98095,-6.0839E-05],[176.98431,-5.7746E-05],[176.98766,-5.1043E-05],[176.99102,-4.6919E-05],[176.99438,-4.9497E-05],[176.99774,-4.8981E-05],[177.0011,-5.723E-05],[177.00446,-5.9808E-05],[177.00782,-5.8262E-05],[177.01117,-5.3106E-05],[177.01453,-4.8465E-05],[177.01789,-5.4137E-05],[177.02125,-5.4652E-05],[177.02461,-5.9293E-05],[177.02797,-5.6715E-05],[177.03133,-5.2074E-05],[177.03469,-5.4137E-05],[177.03804,-5.1559E-05],[177.0414,-5.4137E-05],[177.04476,-5.6199E-05],[177.04812,-5.4652E-05],[177.05148,-5.1559E-05],[177.05484,-5.1559E-05],[177.0582,-5.3106E-05],[177.06155,-5.5684E-05],[177.06491,-5.5684E-05],[177.06827,-5.1559E-05],[177.07163,-5.723E-05],[177.07499,-5.723E-05],[177.07835,-5.259E-05],[177.08171,-5.5168E-05],[177.08507,-5.8262E-05],[177.08842,-5.6199E-05],[177.09178,-5.5168E-05],[177.09514,-5.723E-05],[177.0985,-5.4652E-05],[177.10186,-5.5684E-05],[177.10522,-5.259E-05],[177.10858,-5.4137E-05],[177.11193,-6.0324E-05],[177.11529,-5.9808E-05]]}
-{"quant":[177.366,-5.3887E-05],"mems":[[177.26643,-4.795E-05],[177.26979,-4.6403E-05],[177.27315,-5.3106E-05],[177.27651,-5.3621E-05],[177.27987,-5.4137E-05],[177.28323,-5.3621E-05],[177.28659,-5.0528E-05],[177.28994,-5.5684E-05],[177.2933,-5.3106E-05],[177.29666,-5.4137E-05],[177.30002,-5.6715E-05],[177.30338,-5.259E-05],[177.30674,-5.1043E-05],[177.3101,-5.2074E-05],[177.31345,-5.4652E-05],[177.31681,-5.6199E-05],[177.32017,-5.5684E-05],[177.32353,-5.3621E-05],[177.32689,-5.0528E-05],[177.33025,-5.3621E-05],[177.33361,-5.3621E-05],[177.33697,-5.0528E-05],[177.34032,-5.1559E-05],[177.34368,-5.2074E-05],[177.34704,-5.1559E-05],[177.3504,-5.5168E-05],[177.35376,-5.3106E-05],[177.35712,-4.8981E-05],[177.36048,-5.3106E-05],[177.36383,-5.2074E-05],[177.36719,-5.259E-05],[177.37055,-5.5684E-05],[177.37391,-5.6199E-05],[177.37727,-5.6715E-05],[177.38063,-5.2074E-05],[177.38399,-5.259E-05],[177.38735,-5.4652E-05],[177.3907,-5.6199E-05],[177.39406,-5.9808E-05],[177.39742,-5.4652E-05],[177.40078,-5.0528E-05],[177.40414,-5.0528E-05],[177.4075,-5.4652E-05],[177.41086,-5.7746E-05],[177.41421,-5.5684E-05],[177.41757,-5.3621E-05],[177.42093,-5.3621E-05],[177.42429,-5.5168E-05],[177.42765,-5.259E-05],[177.43101,-5.3106E-05],[177.43437,-5.0528E-05],[177.43773,-5.1043E-05],[177.44108,-5.4137E-05],[177.44444,-5.3621E-05],[177.4478,-5.723E-05],[177.45116,-5.2074E-05],[177.45452,-4.795E-05],[177.45788,-5.3106E-05],[177.46124,-5.3621E-05],[177.46459,-5.5168E-05],[177.46795,-5.3621E-05],[177.47131,-5.1559E-05],[177.47467,-5.4652E-05],[177.47803,-5.3106E-05],[177.48139,-5.0012E-05],[177.48475,-5.4652E-05],[177.48811,-5.5684E-05],[177.49146,-5.4137E-05],[177.49482,-5.8262E-05],[177.49818,-5.5168E-05],[177.50154,-5.1559E-05],[177.5049,-5.4652E-05],[177.50826,-5.3621E-05],[177.51162,-5.6715E-05],[177.51497,-5.5684E-05],[177.51833,-5.259E-05],[177.52169,-5.4137E-05],[177.52505,-5.4137E-05],[177.52841,-5.4137E-05],[177.53177,-5.3621E-05],[177.53513,-5.4652E-05],[177.53849,-5.0528E-05],[177.54184,-4.795E-05],[177.5452,-5.3621E-05],[177.54856,-5.4652E-05],[177.55192,-5.4137E-05],[177.55528,-5.3106E-05],[177.55864,-5.3106E-05],[177.562,-5.5168E-05],[177.56535,-5.259E-05],[177.56871,-5.4652E-05]]}
-{"quant":[177.887,-5.2124E-05],"mems":[[177.78703,-5.4652E-05],[177.79039,-5.3106E-05],[177.79374,-5.3106E-05],[177.7971,-5.4137E-05],[177.80046,-5.0012E-05],[177.80382,-5.5168E-05],[177.80718,-5.5684E-05],[177.81054,-5.2074E-05],[177.8139,-5.3621E-05],[177.81725,-5.1559E-05],[177.82061,-5.6199E-05],[177.82397,-5.5684E-05],[177.82733,-5.3621E-05],[177.83069,-5.259E-05],[177.83405,-5.0012E-05],[177.83741,-5.4137E-05],[177.84077,-5.4652E-05],[177.84412,-5.4137E-05],[177.84748,-5.259E-05],[177.85084,-5.2074E-05],[177.8542,-5.5684E-05],[177.85756,-5.5168E-05],[177.86092,-5.0528E-05],[177.86428,-4.9497E-05],[177.86763,-5.4137E-05],[177.87099,-5.3106E-05],[177.87435,-5.3621E-05],[177.87771,-5.5684E-05],[177.88107,-5.1043E-05],[177.88443,-5.3106E-05],[177.88779,-5.3106E-05],[177.89115,-4.9497E-05],[177.8945,-5.259E-05],[177.89786,-5.4652E-05],[177.90122,-5.259E-05],[177.90458,-5.0012E-05],[177.90794,-5.2074E-05],[177.9113,-4.8981E-05],[177.91466,-4.6403E-05],[177.91801,-5.5168E-05],[177.92137,-5.4652E-05],[177.92473,-5.0012E-05],[177.92809,-5.3621E-05],[177.93145,-5.0528E-05],[177.93481,-4.9497E-05],[177.93817,-5.6199E-05],[177.94153,-5.6199E-05],[177.94488,-5.6199E-05],[177.94824,-5.3621E-05],[177.9516,-5.1559E-05],[177.95496,-5.1043E-05],[177.95832,-5.0012E-05],[177.96168,-5.4137E-05],[177.96504,-5.2074E-05],[177.96839,-5.0528E-05],[177.97175,-4.8465E-05],[177.97511,-5.0012E-05],[177.97847,-5.9293E-05],[177.98183,-5.259E-05],[177.98519,-4.8465E-05],[177.98855,-5.2074E-05],[177.99191,-5.0012E-05],[177.99526,-5.259E-05],[177.99862,-5.4137E-05],[178.00198,-5.4652E-05],[178.00534,-5.2074E-05],[178.0087,-4.795E-05],[178.01206,-5.5684E-05],[178.01542,-5.8262E-05],[178.01877,-5.3106E-05],[178.02213,-5.3621E-05],[178.02549,-5.6199E-05],[178.02885,-5.3106E-05],[178.03221,-5.0528E-05],[178.03557,-5.8262E-05],[178.03893,-5.9293E-05],[178.04229,-5.3106E-05],[178.04564,-5.3621E-05],[178.049,-5.0528E-05],[178.05236,-5.1559E-05],[178.05572,-5.2074E-05],[178.05908,-4.795E-05],[178.06244,-5.259E-05],[178.0658,-5.2074E-05],[178.06915,-5.4137E-05],[178.07251,-5.9293E-05],[178.07587,-5.259E-05],[178.07923,-5.1043E-05],[178.08259,-5.2074E-05],[178.08595,-4.6919E-05],[178.08931,-5.1559E-05]]}
-{"quant":[178.352,-0.15296],"mems":[[178.25388,-5.2074E-05],[178.25724,-5.3106E-05],[178.2606,-5.5168E-05],[178.26396,-5.3621E-05],[178.26732,-5.3106E-05],[178.27067,-5.3621E-05],[178.27403,-5.4652E-05],[178.27739,-5.5684E-05],[178.28075,-5.3106E-05],[178.28411,-5.4137E-05],[178.28747,-5.3106E-05],[178.29083,-5.0012E-05],[178.29419,-5.0012E-05],[178.29754,-5.0012E-05],[178.3009,-5.3621E-05],[178.30426,-5.1043E-05],[178.30762,-4.8465E-05],[178.31098,-5.6715E-05],[178.31434,-5.3621E-05],[178.3177,-4.8465E-05],[178.32105,-5.259E-05],[178.32441,-5.3106E-05],[178.32777,-4.9497E-05],[178.33113,-4.9497E-05],[178.33449,-5.259E-05],[178.33785,-5.1043E-05],[178.34121,-5.259E-05],[178.34457,-5.5684E-05],[178.34792,-5.5168E-05],[178.35128,-5.0012E-05],[178.35464,-4.795E-05],[178.358,-5.1043E-05],[178.36148,-4.795E-05],[178.36496,-5.259E-05],[178.36844,-5.4137E-05],[178.37193,-5.259E-05],[178.37541,-5.259E-05],[178.37889,-4.5372E-05],[178.38237,-4.795E-05],[178.38585,-5.5684E-05],[178.38933,-5.723E-05],[178.39281,-5.3621E-05],[178.39629,-5.1043E-05],[178.39978,-5.0012E-05],[178.40326,-5.1043E-05],[178.40674,-5.5684E-05],[178.41022,-5.5684E-05],[178.4137,-5.723E-05],[178.41718,-5.5168E-05],[178.42066,-4.8981E-05],[178.42415,-5.259E-05],[178.42763,-5.5168E-05],[178.43111,-5.3621E-05],[178.43459,-5.3106E-05],[178.43807,-4.795E-05],[178.44155,-5.0012E-05],[178.44503,-5.5168E-05],[178.44851,-5.2074E-05],[178.452,-5.4652E-05],[178.45548,-5.4652E-05],[178.45896,-5.3106E-05],[178.46244,-5.5684E-05],[178.46592,-5.0528E-05],[178.4694,-5.1559E-05],[178.47288,-5.6199E-05],[178.47637,-5.5168E-05],[178.47985,-5.259E-05],[178.48333,-4.8981E-05],[178.48681,-5.3106E-05],[178.49029,-5.7746E-05],[178.49377,-5.7746E-05],[178.49725,-5.3621E-05],[178.50073,-4.8465E-05],[178.50422,-5.5168E-05],[178.5077,-5.7746E-05],[178.51118,-5.1559E-05],[178.51466,-5.3621E-05],[178.51814,-5.0528E-05],[178.52162,-4.8981E-05],[178.5251,-5.3106E-05],[178.52859,-5.4137E-05],[178.53207,-5.9808E-05],[178.53555,-5.4652E-05],[178.53903,-4.6919E-05],[178.54251,-5.0012E-05],[178.54599,-5.0528E-05],[178.54947,-5.4137E-05],[178.55295,-5.6199E-05]]}
-{"quant":[178.812,-5.2418E-05],"mems":[[178.7131,-5.259E-05],[178.71658,-5.7746E-05],[178.72006,-5.3106E-05],[178.72354,-5.1043E-05],[178.72702,-5.6199E-05],[178.7305,-5.5684E-05],[178.73398,-5.2074E-05],[178.73747,-5.259E-05],[178.74095,-5.3106E-05],[178.74443,-5.0012E-05],[178.74791,-5.5168E-05],[178.75139,-5.8777E-05],[178.75487,-5.2074E-05],[178.75835,-5.0012E-05],[178.76183,-5.2074E-05],[178.76532,-4.9497E-05],[178.7688,-4.9497E-05],[178.77228,-5.1559E-05],[178.77576,-5.3621E-05],[178.77924,-5.0528E-05],[178.78272,-4.7434E-05],[178.7862,-5.2074E-05],[178.78969,-5.6199E-05],[178.79317,-5.2074E-05],[178.79665,-4.6403E-05],[178.80013,-5.2074E-05],[178.80361,-4.795E-05],[178.80709,-4.5372E-05],[178.81057,-5.0528E-05],[178.81405,-5.0528E-05],[178.81754,-5.5684E-05],[178.82102,-5.4652E-05],[178.8245,-5.259E-05],[178.82798,-5.5168E-05],[178.83146,-5.4652E-05],[178.83494,-5.723E-05],[178.83842,-5.7746E-05],[178.84191,-5.259E-05],[178.84539,-4.795E-05],[178.84887,-4.5887E-05],[178.85235,-5.0528E-05],[178.85583,-5.6715E-05],[178.85931,-5.4652E-05],[178.86279,-5.259E-05],[178.86627,-4.8981E-05],[178.86976,-4.8465E-05],[178.87324,-5.3106E-05],[178.87672,-5.3106E-05],[178.8802,-5.4137E-05],[178.88368,-5.1043E-05],[178.88716,-5.259E-05],[178.89064,-5.5168E-05],[178.89413,-5.2074E-05],[178.89761,-5.3106E-05],[178.90109,-5.0012E-05],[178.90457,-4.5887E-05],[178.90805,-4.8465E-05],[178.91153,-5.259E-05],[178.91501,-5.4652E-05],[178.91849,-5.4137E-05],[178.92198,-5.5168E-05],[178.92546,-5.3106E-05],[178.92894,-5.0528E-05],[178.93242,-5.6715E-05],[178.9359,-5.9293E-05],[178.93938,-5.5168E-05],[178.94286,-5.1559E-05],[178.94635,-5.0528E-05],[178.94983,-5.3106E-05],[178.95331,-5.4137E-05],[178.95679,-5.3621E-05],[178.96027,-5.3106E-05],[178.96375,-5.5684E-05],[178.96723,-5.1559E-05],[178.97071,-4.795E-05],[178.9742,-5.259E-05],[178.97768,-4.8465E-05],[178.98116,-4.9497E-05],[178.98464,-5.5684E-05],[178.98812,-5.4137E-05],[178.9916,-5.3621E-05],[178.99508,-5.259E-05],[178.99857,-5.0528E-05],[179.00205,-5.0012E-05],[179.00553,-5.1043E-05],[179.00901,-5.1559E-05],[179.01249,-5.4137E-05]]}
-{"quant":[179.447,-5.3295E-05],"mems":[[179.35018,-5.6199E-05],[179.35366,-5.3106E-05],[179.35714,-5.5684E-05],[179.36062,-5.1559E-05],[179.36411,-5.3621E-05],[179.36759,-5.2074E-05],[179.37107,-4.6919E-05],[179.37455,-5.1559E-05],[179.37803,-5.2074E-05],[179.38151,-5.259E-05],[179.38499,-5.4137E-05],[179.38847,-5.2074E-05],[179.39196,-5.1043E-05],[179.39544,-5.0012E-05],[179.39892,-4.6919E-05],[179.4024,-4.3825E-05],[179.40588,-4.8465E-05],[179.40936,-5.3621E-05],[179.41284,-5.3106E-05],[179.41633,-5.259E-05],[179.41981,-5.5168E-05],[179.42329,-5.2074E-05],[179.42677,-4.7434E-05],[179.43025,-4.8465E-05],[179.43373,-5.259E-05],[179.43721,-5.5684E-05],[179.44069,-5.4652E-05],[179.44418,-5.2074E-05],[179.44766,-5.1559E-05],[179.45114,-5.5168E-05],[179.45462,-5.3106E-05],[179.4581,-4.9497E-05],[179.46158,-5.3621E-05],[179.46506,-5.5684E-05],[179.46855,-5.4137E-05],[179.47203,-5.3621E-05],[179.47551,-5.4137E-05],[179.47899,-5.2074E-05],[179.48247,-5.1043E-05],[179.48595,-5.0528E-05],[179.48943,-5.2074E-05],[179.49291,-5.3621E-05],[179.4964,-4.9497E-05],[179.49988,-5.5168E-05],[179.50336,-5.6715E-05],[179.50684,-5.2074E-05],[179.51032,-5.4137E-05],[179.5138,-5.3621E-05],[179.51728,-5.7746E-05],[179.52077,-5.6715E-05],[179.52425,-5.2074E-05],[179.52773,-5.5684E-05],[179.53121,-5.1559E-05],[179.53469,-5.2074E-05],[179.53817,-5.7746E-05],[179.54165,-5.1559E-05],[179.54513,-4.9497E-05],[179.54862,-5.3106E-05],[179.5521,-5.1043E-05],[179.55558,-4.8981E-05],[179.55906,-5.1043E-05],[179.56254,-5.259E-05],[179.56602,-5.259E-05],[179.5695,-5.3106E-05],[179.57299,-5.3106E-05],[179.57647,-5.3106E-05],[179.57995,-5.2074E-05],[179.58343,-5.2074E-05],[179.58691,-5.4137E-05],[179.59039,-5.1043E-05],[179.59387,-5.0012E-05],[179.59735,-5.1559E-05],[179.60084,-5.4652E-05],[179.60432,-5.9808E-05],[179.6078,-5.3106E-05],[179.61128,-4.8465E-05],[179.61476,-5.3621E-05],[179.61824,-5.5684E-05],[179.62172,-5.8777E-05],[179.62521,-5.9808E-05],[179.62869,-5.6199E-05],[179.63217,-5.1043E-05],[179.63565,-5.2074E-05],[179.63913,-5.4137E-05],[179.64261,-5.1043E-05],[179.64609,-5.0012E-05],[179.64957,-5.1043E-05]]}
-{"quant":[179.918,-5.3159E-05],"mems":[[179.82016,-4.7434E-05],[179.82364,-5.0528E-05],[179.82712,-5.3106E-05],[179.8306,-4.9497E-05],[179.83409,-5.3106E-05],[179.83757,-5.259E-05],[179.84105,-5.6715E-05],[179.84453,-5.6199E-05],[179.84801,-5.259E-05],[179.85149,-5.5168E-05],[179.85497,-5.5684E-05],[179.85845,-5.4137E-05],[179.86194,-5.259E-05],[179.86542,-5.1559E-05],[179.8689,-4.8981E-05],[179.87238,-5.259E-05],[179.87586,-5.3106E-05],[179.87934,-5.6199E-05],[179.88282,-5.723E-05],[179.88631,-5.259E-05],[179.88979,-5.5168E-05],[179.89327,-5.1559E-05],[179.89675,-5.1043E-05],[179.90023,-5.5168E-05],[179.90371,-5.3621E-05],[179.90719,-5.0012E-05],[179.91067,-5.2074E-05],[179.91416,-5.5684E-05],[179.91764,-5.1559E-05],[179.92112,-5.3621E-05],[179.9246,-5.5684E-05],[179.92808,-5.4652E-05],[179.93156,-5.1559E-05],[179.93504,-5.0528E-05],[179.93853,-5.1559E-05],[179.94201,-5.0012E-05],[179.94549,-5.3106E-05],[179.94897,-5.0528E-05],[179.95245,-5.1043E-05],[179.95593,-5.4652E-05],[179.95941,-5.4652E-05],[179.96289,-5.6199E-05],[179.96638,-5.4652E-05],[179.96986,-5.4652E-05],[179.97334,-5.4137E-05],[179.97682,-5.3106E-05],[179.9803,-5.4652E-05],[179.98378,-5.6715E-05],[179.98726,-5.3106E-05],[179.99075,-5.3106E-05],[179.99423,-5.6715E-05],[179.99771,-4.7434E-05],[180.00119,-4.8465E-05],[180.00467,-5.5684E-05],[180.00815,-5.5684E-05],[180.01163,-5.4137E-05],[180.01511,-5.0528E-05],[180.0186,-5.1043E-05],[180.02208,-5.3106E-05],[180.02556,-5.6199E-05],[180.02904,-5.5684E-05],[180.03252,-5.2074E-05],[180.036,-5.4652E-05],[180.03948,-5.259E-05],[180.04297,-5.5168E-05],[180.04645,-5.6715E-05],[180.04993,-5.1559E-05],[180.05341,-5.259E-05],[180.05689,-4.8465E-05],[180.06037,-5.259E-05],[180.06385,-5.7746E-05],[180.06733,-5.6715E-05],[180.07082,-5.723E-05],[180.0743,-4.9497E-05],[180.07778,-5.259E-05],[180.08126,-5.2074E-05],[180.08474,-5.1559E-05],[180.08822,-5.5684E-05],[180.0917,-4.8981E-05],[180.09519,-5.259E-05],[180.09867,-5.4137E-05],[180.10215,-4.9497E-05],[180.10563,-5.4137E-05],[180.10911,-5.4652E-05],[180.11259,-5.0012E-05],[180.11607,-4.7434E-05],[180.11955,-5.3106E-05]]}
-{"quant":[180.403,-5.4429E-05],"mems":[[180.30407,-5.1559E-05],[180.30755,-5.6715E-05],[180.31103,-5.8777E-05],[180.31451,-5.3621E-05],[180.31799,-5.1559E-05],[180.32147,-4.8465E-05],[180.32495,-5.2074E-05],[180.32843,-5.5168E-05],[180.33192,-5.4652E-05],[180.3354,-5.259E-05],[180.33888,-4.6919E-05],[180.34236,-5.3621E-05],[180.34584,-5.6199E-05],[180.34932,-5.5168E-05],[180.3528,-5.5684E-05],[180.35629,-5.1559E-05],[180.35977,-5.4652E-05],[180.36325,-5.3621E-05],[180.36673,-4.8981E-05],[180.37021,-5.3106E-05],[180.37369,-5.6715E-05],[180.37717,-5.259E-05],[180.38065,-5.1043E-05],[180.38414,-5.259E-05],[180.38762,-5.5168E-05],[180.3911,-5.8262E-05],[180.39458,-5.4137E-05],[180.39806,-4.9497E-05],[180.40154,-5.1043E-05],[180.40502,-5.5684E-05],[180.40851,-5.5684E-05],[180.41199,-5.1559E-05],[180.41547,-5.259E-05],[180.41895,-5.6199E-05],[180.42243,-5.4652E-05],[180.42591,-5.2074E-05],[180.42939,-5.2074E-05],[180.43287,-5.3106E-05],[180.43636,-5.6199E-05],[180.43984,-5.5168E-05],[180.44332,-5.3106E-05],[180.4468,-5.3106E-05],[180.45028,-5.4652E-05],[180.45376,-5.4137E-05],[180.45724,-5.3621E-05],[180.46073,-5.723E-05],[180.46421,-5.4652E-05],[180.46769,-5.2074E-05],[180.47117,-5.3106E-05],[180.47465,-5.7746E-05],[180.47813,-5.8262E-05],[180.48161,-5.0012E-05],[180.48509,-5.1559E-05],[180.48858,-5.4652E-05],[180.49206,-5.6199E-05],[180.49554,-5.723E-05],[180.49902,-5.5684E-05],[180.5025,-5.5684E-05],[180.50598,-5.5168E-05],[180.50946,-6.0324E-05],[180.51295,-6.0839E-05],[180.51643,-5.4652E-05],[180.51991,-5.5168E-05],[180.52339,-5.6715E-05],[180.52687,-5.4652E-05],[180.53035,-5.6715E-05],[180.53383,-5.4652E-05],[180.53731,-4.8981E-05],[180.5408,-5.1559E-05],[180.54428,-5.0528E-05],[180.54776,-5.2074E-05],[180.55124,-5.5168E-05],[180.55472,-4.8465E-05],[180.5582,-5.1559E-05],[180.56168,-5.259E-05],[180.56517,-5.0012E-05],[180.56865,-5.5684E-05],[180.57213,-5.723E-05],[180.57561,-5.4137E-05],[180.57909,-5.1559E-05],[180.58257,-5.3106E-05],[180.58605,-5.259E-05],[180.58953,-5.2074E-05],[180.59302,-5.5168E-05],[180.5965,-5.5168E-05],[180.59998,-5.4652E-05],[180.60346,-5.723E-05]]}
-{"quant":[180.858,-0.15935],"mems":[[180.79145,-5.5168E-05],[180.79493,-5.6715E-05],[180.79841,-5.4652E-05],[180.8019,-5.6715E-05],[180.80538,-5.0528E-05],[180.80886,-5.0012E-05],[180.81234,-5.6715E-05],[180.81582,-5.2074E-05],[180.8193,-4.9497E-05],[180.82278,-4.9497E-05],[180.82627,-5.0012E-05],[180.82975,-5.2074E-05],[180.83323,-5.6199E-05],[180.83671,-5.6199E-05],[180.84019,-5.4137E-05],[180.84367,-5.3106E-05],[180.84715,-5.0012E-05],[180.85063,-5.5684E-05],[180.85412,-5.259E-05],[180.8576,-5.4137E-05],[180.86108,-5.723E-05],[180.86456,-5.1043E-05],[180.86804,-5.1559E-05],[180.87152,-4.8981E-05],[180.875,-5.2074E-05],[180.87849,-5.4652E-05],[180.88197,-5.1043E-05],[180.88545,-5.259E-05],[180.88893,-5.723E-05],[180.89241,-5.7746E-05],[180.89589,-5.3621E-05],[180.89937,-5.4137E-05],[180.90285,-5.8262E-05],[180.90634,-5.8262E-05],[180.90982,-5.3106E-05],[180.9133,-5.5684E-05],[180.91678,-5.7746E-05],[180.92026,-5.0012E-05],[180.92374,-5.1559E-05],[180.92722,-5.2074E-05],[180.93071,-4.6919E-05],[180.93419,-5.1559E-05],[180.93767,-5.5684E-05],[180.94115,-5.5684E-05],[180.94463,-5.5168E-05],[180.94811,-5.6199E-05],[180.95159,-5.3106E-05],[180.95507,-5.259E-05],[180.95856,-5.5684E-05],[180.96204,-4.8981E-05],[180.96552,-4.8981E-05],[180.969,-5.259E-05],[180.97239,-5.0528E-05],[180.97578,-4.9497E-05],[180.97916,-5.3106E-05],[180.98255,-5.5168E-05],[180.98594,-5.2074E-05],[180.98933,-4.9497E-05],[180.99272,-5.3106E-05],[180.9961,-6.1355E-05],[180.99949,-5.8262E-05],[181.00288,-5.3106E-05],[181.00627,-5.1559E-05],[181.00966,-5.0012E-05],[181.01304,-5.3106E-05],[181.01643,-5.4137E-05],[181.01982,-5.3621E-05],[181.02321,-5.4137E-05],[181.0266,-5.0528E-05],[181.02998,-4.795E-05],[181.03337,-5.0528E-05],[181.03676,-5.2074E-05],[181.04015,-5.259E-05],[181.04354,-5.4137E-05],[181.04692,-5.4137E-05],[181.05031,-5.4137E-05],[181.0537,-5.3106E-05],[181.05709,-5.259E-05],[181.06048,-5.0528E-05],[181.06386,-5.2074E-05],[181.06725,-5.259E-05],[181.07064,-5.1043E-05],[181.07403,-5.6199E-05],[181.07742,-5.6715E-05],[181.0808,-5.5684E-05],[181.08419,-5.5168E-05],[181.08758,-5.1043E-05],[181.09097,-5.4652E-05]]}
-{"quant":[181.331,-5.4004E-05],"mems":[[181.23326,-5.2074E-05],[181.23665,-5.3621E-05],[181.24004,-5.259E-05],[181.24343,-4.8465E-05],[181.24682,-5.1043E-05],[181.2502,-5.259E-05],[181.25359,-5.4137E-05],[181.25698,-5.4652E-05],[181.26037,-5.259E-05],[181.26376,-5.1559E-05],[181.26714,-4.8981E-05],[181.27053,-5.1043E-05],[181.27392,-5.3621E-05],[181.27731,-5.0012E-05],[181.2807,-5.3621E-05],[181.28408,-5.4137E-05],[181.28747,-5.2074E-05],[181.29086,-5.5684E-05],[181.29425,-5.4137E-05],[181.29764,-5.2074E-05],[181.30102,-5.2074E-05],[181.30441,-5.4652E-05],[181.3078,-5.8777E-05],[181.31119,-5.723E-05],[181.31458,-5.259E-05],[181.31796,-5.3621E-05],[181.32135,-5.4137E-05],[181.32474,-5.259E-05],[181.32813,-5.3621E-05],[181.33152,-5.6199E-05],[181.3349,-5.7746E-05],[181.33829,-5.3106E-05],[181.34168,-5.4137E-05],[181.34507,-5.3106E-05],[181.34846,-5.4137E-05],[181.35184,-5.5684E-05],[181.35523,-5.0528E-05],[181.35862,-5.5684E-05],[181.36201,-5.1559E-05],[181.3654,-4.8465E-05],[181.36878,-5.5168E-05],[181.37217,-5.6715E-05],[181.37556,-5.7746E-05],[181.37895,-5.2074E-05],[181.38234,-5.1559E-05],[181.38572,-5.1559E-05],[181.38911,-5.259E-05],[181.3925,-5.6715E-05],[181.39589,-5.259E-05],[181.39928,-5.2074E-05],[181.40266,-5.2074E-05],[181.40605,-5.2074E-05],[181.40944,-5.7746E-05],[181.41283,-5.7746E-05],[181.41622,-5.4137E-05],[181.4196,-4.8465E-05],[181.42299,-4.8981E-05],[181.42638,-5.8262E-05],[181.42977,-5.9293E-05],[181.43316,-5.6199E-05],[181.43654,-5.4652E-05],[181.43993,-5.1043E-05],[181.44332,-5.0012E-05],[181.44671,-5.4652E-05],[181.4501,-5.9293E-05],[181.45348,-5.4137E-05],[181.45687,-5.0528E-05],[181.46026,-5.2074E-05],[181.46365,-5.5168E-05],[181.46704,-5.4652E-05],[181.47042,-5.0012E-05],[181.47381,-5.3621E-05],[181.4772,-5.2074E-05],[181.48059,-5.0528E-05],[181.48398,-5.1043E-05],[181.48736,-5.259E-05],[181.49075,-5.6715E-05],[181.49414,-5.4137E-05],[181.49753,-5.4137E-05],[181.50092,-5.6715E-05],[181.5043,-5.2074E-05],[181.50769,-5.2074E-05],[181.51108,-5.723E-05],[181.51447,-5.3621E-05],[181.51786,-5.5168E-05],[181.52124,-5.3621E-05],[181.52463,-5.5168E-05],[181.52802,-6.1355E-05],[181.53141,-5.6199E-05]]}
-{"quant":[182.058,-5.3415E-05],"mems":[[181.9583,-5.1043E-05],[181.96168,-5.6715E-05],[181.96507,-5.3106E-05],[181.96846,-4.6403E-05],[181.97185,-5.1043E-05],[181.97524,-5.4652E-05],[181.97862,-4.9497E-05],[181.98201,-5.1043E-05],[181.9854,-5.6715E-05],[181.98879,-5.3621E-05],[181.99218,-5.3106E-05],[181.99556,-5.6199E-05],[181.99895,-5.8777E-05],[182.00234,-5.723E-05],[182.00573,-5.259E-05],[182.00912,-5.1559E-05],[182.0125,-5.0528E-05],[182.01589,-5.259E-05],[182.01928,-5.7746E-05],[182.02267,-5.723E-05],[182.02606,-5.4652E-05],[182.02944,-5.1559E-05],[182.03283,-4.7434E-05],[182.03622,-5.0528E-05],[182.03961,-5.5168E-05],[182.043,-5.1559E-05],[182.04638,-4.795E-05],[182.04977,-5.4652E-05],[182.05316,-5.3106E-05],[182.05655,-5.3106E-05],[182.05994,-5.4652E-05],[182.06332,-5.0012E-05],[182.06671,-5.0528E-05],[182.0701,-4.9497E-05],[182.07349,-5.2074E-05],[182.07688,-5.6199E-05],[182.08026,-5.7746E-05],[182.08365,-5.5684E-05],[182.08704,-5.1043E-05],[182.09043,-5.0012E-05],[182.09382,-5.2074E-05],[182.0972,-5.723E-05],[182.10059,-5.7746E-05],[182.10398,-5.4137E-05],[182.10737,-5.4652E-05],[182.11076,-5.3621E-05],[182.11414,-5.5168E-05],[182.11753,-5.3106E-05],[182.12092,-5.1559E-05],[182.12431,-5.4137E-05],[182.1277,-5.1559E-05],[182.13108,-5.1559E-05],[182.13447,-5.3106E-05],[182.13786,-5.6199E-05],[182.14125,-5.259E-05],[182.14464,-5.1043E-05],[182.14802,-5.259E-05],[182.15141,-4.9497E-05],[182.1548,-5.7746E-05],[182.15819,-5.5684E-05],[182.16158,-5.259E-05],[182.16496,-5.3621E-05],[182.16835,-5.3106E-05],[182.17174,-5.4652E-05],[182.17513,-5.0528E-05],[182.17852,-5.3621E-05],[182.1819,-5.6199E-05],[182.18529,-5.4652E-05],[182.18868,-5.3106E-05],[182.19207,-5.5168E-05],[182.19546,-5.4652E-05],[182.19884,-5.4137E-05],[182.20223,-5.7746E-05],[182.20562,-5.3106E-05],[182.20901,-5.3106E-05],[182.2124,-5.6199E-05],[182.21578,-5.6199E-05],[182.21917,-5.6715E-05],[182.22256,-5.3621E-05],[182.22595,-5.1559E-05],[182.22934,-5.1559E-05],[182.23272,-5.3106E-05],[182.23611,-5.7746E-05],[182.2395,-5.9293E-05],[182.24289,-5.5684E-05],[182.24628,-5.1043E-05],[182.24966,-5.259E-05],[182.25305,-5.6715E-05],[182.25644,-5.3621E-05],[182.25983,-5.259E-05]]}
-{"quant":[182.534,-5.3239E-05],"mems":[[182.436,-5.8777E-05],[182.43939,-5.3106E-05],[182.44278,-4.7434E-05],[182.44617,-5.0012E-05],[182.44956,-5.1043E-05],[182.45294,-5.1043E-05],[182.45633,-5.4652E-05],[182.45972,-5.4652E-05],[182.46311,-5.3621E-05],[182.4665,-4.8981E-05],[182.46988,-5.3621E-05],[182.47327,-5.6199E-05],[182.47666,-5.3621E-05],[182.48005,-5.5168E-05],[182.48344,-4.3825E-05],[182.48682,-4.7434E-05],[182.49021,-5.6715E-05],[182.4936,-5.4137E-05],[182.49699,-5.3106E-05],[182.50038,-5.4137E-05],[182.50376,-5.3621E-05],[182.50715,-5.0012E-05],[182.51054,-5.3106E-05],[182.51393,-5.4652E-05],[182.51732,-5.1043E-05],[182.5207,-5.1559E-05],[182.52409,-5.259E-05],[182.52748,-5.5168E-05],[182.53087,-5.7746E-05],[182.53426,-5.6199E-05],[182.53764,-5.259E-05],[182.54103,-5.1559E-05],[182.54442,-4.8981E-05],[182.54781,-5.2074E-05],[182.5512,-5.5168E-05],[182.55458,-5.3621E-05],[182.55797,-5.6199E-05],[182.56136,-5.5684E-05],[182.56475,-5.0528E-05],[182.56814,-4.8981E-05],[182.57152,-5.0528E-05],[182.57491,-5.0012E-05],[182.5783,-5.1043E-05],[182.58169,-5.3106E-05],[182.58508,-5.3621E-05],[182.58846,-5.6715E-05],[182.59185,-5.8777E-05],[182.59524,-5.5684E-05],[182.59863,-5.1043E-05],[182.60202,-5.1559E-05],[182.6054,-5.259E-05],[182.60879,-5.6715E-05],[182.61218,-5.8777E-05],[182.61557,-5.3621E-05],[182.61896,-5.3106E-05],[182.62234,-5.2074E-05],[182.62573,-4.9497E-05],[182.62912,-5.3621E-05],[182.63251,-5.5168E-05],[182.6359,-5.1559E-05],[182.63928,-5.0528E-05],[182.64267,-5.6199E-05],[182.64606,-5.8262E-05],[182.64945,-5.5168E-05],[182.65284,-5.3621E-05],[182.65622,-5.3621E-05],[182.65961,-5.3106E-05],[182.663,-4.9497E-05],[182.66639,-5.2074E-05],[182.66978,-5.3621E-05],[182.67316,-5.4137E-05],[182.67655,-5.6199E-05],[182.67994,-5.3621E-05],[182.68333,-5.2074E-05],[182.68672,-5.259E-05],[182.6901,-5.6199E-05],[182.69349,-5.6715E-05],[182.69688,-5.4652E-05],[182.70027,-5.0528E-05],[182.70366,-5.0012E-05],[182.70704,-5.6715E-05],[182.71043,-5.6199E-05],[182.71382,-5.7746E-05],[182.71721,-5.5168E-05],[182.7206,-4.795E-05],[182.72398,-5.1043E-05],[182.72737,-5.3621E-05],[182.73076,-5.2074E-05],[182.73415,-4.9497E-05]]}
-{"quant":[183.031,-5.2889E-05],"mems":[[182.93404,-5.3621E-05],[182.93743,-5.259E-05],[182.94082,-5.0528E-05],[182.9442,-5.6199E-05],[182.94759,-5.4137E-05],[182.95098,-5.4137E-05],[182.95437,-5.4137E-05],[182.95776,-5.5684E-05],[182.96114,-5.6715E-05],[182.96453,-5.1559E-05],[182.96792,-5.3621E-05],[182.97131,-5.3106E-05],[182.9747,-5.1043E-05],[182.97808,-5.3106E-05],[182.98147,-5.3621E-05],[182.98486,-5.2074E-05],[182.98825,-5.1043E-05],[182.99164,-5.6715E-05],[182.99502,-5.3621E-05],[182.99841,-4.9497E-05],[183.0018,-5.5168E-05],[183.00519,-5.4652E-05],[183.00858,-5.259E-05],[183.01196,-5.6199E-05],[183.01535,-5.4652E-05],[183.01874,-5.1043E-05],[183.02213,-5.3106E-05],[183.02552,-5.6199E-05],[183.0289,-5.4652E-05],[183.03229,-5.1559E-05],[183.03568,-5.0012E-05],[183.03907,-5.4652E-05],[183.04246,-5.7746E-05],[183.04584,-5.4652E-05],[183.04923,-5.3106E-05],[183.05262,-5.1043E-05],[183.05601,-5.0528E-05],[183.0594,-5.259E-05],[183.06278,-5.4137E-05],[183.06617,-5.6715E-05],[183.06956,-5.259E-05],[183.07295,-5.1043E-05],[183.07634,-5.3621E-05],[183.07972,-5.0528E-05],[183.08311,-5.2074E-05],[183.0865,-5.3621E-05],[183.08989,-5.3621E-05],[183.09328,-5.8777E-05],[183.09666,-5.5168E-05],[183.10005,-5.4652E-05],[183.10344,-5.6715E-05],[183.10683,-4.9497E-05],[183.11022,-5.1043E-05],[183.1136,-5.1559E-05],[183.11699,-4.8981E-05],[183.12038,-5.1043E-05],[183.12377,-5.3621E-05],[183.12716,-5.5168E-05],[183.13054,-5.0012E-05],[183.13393,-4.9497E-05],[183.13732,-5.3621E-05],[183.14071,-5.4137E-05],[183.1441,-5.2074E-05],[183.14748,-5.259E-05],[183.15087,-5.3621E-05],[183.15426,-5.5684E-05],[183.15765,-6.0839E-05],[183.16104,-5.8262E-05],[183.16442,-5.2074E-05],[183.16781,-5.5168E-05],[183.1712,-5.1043E-05],[183.17459,-4.9497E-05],[183.17798,-5.8777E-05],[183.18136,-5.5684E-05],[183.18475,-4.9497E-05],[183.18814,-5.1559E-05],[183.19153,-5.3106E-05],[183.19492,-5.0528E-05],[183.1983,-5.0012E-05],[183.20169,-5.0012E-05],[183.20508,-5.0528E-05],[183.20847,-5.259E-05],[183.21186,-5.0528E-05],[183.21524,-5.4137E-05],[183.21863,-5.5168E-05],[183.22202,-5.259E-05],[183.22541,-5.5684E-05],[183.2288,-5.6715E-05],[183.23218,-5.5684E-05]]}
-{"quant":[183.506,-0.10409],"mems":[[183.40836,-5.3621E-05],[183.41175,-5.0012E-05],[183.41514,-5.2074E-05],[183.41852,-5.259E-05],[183.42191,-5.1043E-05],[183.4253,-4.7434E-05],[183.42869,-4.7434E-05],[183.43208,-4.9497E-05],[183.43546,-5.0012E-05],[183.43885,-5.5684E-05],[183.44224,-5.0528E-05],[183.44563,-4.8465E-05],[183.44902,-5.259E-05],[183.4524,-5.0012E-05],[183.45579,-5.1043E-05],[183.45918,-5.5168E-05],[183.46257,-5.1043E-05],[183.46596,-4.9497E-05],[183.46934,-5.259E-05],[183.47273,-5.0012E-05],[183.47612,-5.4137E-05],[183.47951,-5.3621E-05],[183.4829,-4.8465E-05],[183.48628,-5.0012E-05],[183.48967,-4.9497E-05],[183.49306,-5.259E-05],[183.49645,-5.3621E-05],[183.49984,-5.0012E-05],[183.50322,-5.0012E-05],[183.50661,-5.0528E-05],[183.51,-5.0528E-05],[183.51352,-5.2074E-05],[183.51703,-5.259E-05],[183.52055,-5.1043E-05],[183.52407,-5.2074E-05],[183.52759,-5.0528E-05],[183.5311,-4.9497E-05],[183.53462,-5.0012E-05],[183.53814,-5.0528E-05],[183.54166,-5.259E-05],[183.54517,-4.8981E-05],[183.54869,-4.9497E-05],[183.55221,-5.1043E-05],[183.55573,-5.259E-05],[183.55924,-5.7746E-05],[183.56276,-5.5168E-05],[183.56628,-5.2074E-05],[183.56979,-5.3621E-05],[183.57331,-5.1559E-05],[183.57683,-5.0528E-05],[183.58035,-5.5168E-05],[183.58386,-5.7746E-05],[183.58738,-5.3621E-05],[183.5909,-5.1559E-05],[183.59442,-4.8465E-05],[183.59793,-5.1559E-05],[183.60145,-5.7746E-05],[183.60497,-5.2074E-05],[183.60849,-4.8465E-05],[183.612,-5.259E-05],[183.61552,-5.3621E-05],[183.61904,-5.3621E-05],[183.62255,-5.3106E-05],[183.62607,-5.0012E-05],[183.62959,-4.9497E-05],[183.63311,-5.1559E-05],[183.63662,-5.0528E-05],[183.64014,-5.1559E-05],[183.64366,-5.4137E-05],[183.64718,-5.2074E-05],[183.65069,-5.1559E-05],[183.65421,-5.5684E-05],[183.65773,-5.723E-05],[183.66125,-5.3621E-05],[183.66476,-5.259E-05],[183.66828,-5.4652E-05],[183.6718,-4.7434E-05],[183.67531,-4.8465E-05],[183.67883,-5.259E-05],[183.68235,-5.1043E-05],[183.68587,-5.5168E-05],[183.68938,-5.0528E-05],[183.6929,-5.0528E-05],[183.69642,-5.3106E-05],[183.69994,-5.0528E-05],[183.70345,-5.1043E-05],[183.70697,-5.4652E-05]]}
-{"quant":[183.964,-5.243E-05],"mems":[[183.86525,-5.6715E-05],[183.86877,-5.4652E-05],[183.87229,-5.4137E-05],[183.8758,-5.2074E-05],[183.87932,-5.2074E-05],[183.88284,-5.259E-05],[183.88635,-5.1043E-05],[183.88987,-4.8981E-05],[183.89339,-4.8465E-05],[183.89691,-4.8981E-05],[183.90042,-4.8981E-05],[183.90394,-5.0012E-05],[183.90746,-5.3106E-05],[183.91098,-5.4137E-05],[183.91449,-5.1559E-05],[183.91801,-4.8465E-05],[183.92153,-5.0012E-05],[183.92505,-5.4137E-05],[183.92856,-5.1043E-05],[183.93208,-4.8981E-05],[183.9356,-4.8465E-05],[183.93911,-4.8981E-05],[183.94263,-5.259E-05],[183.94615,-5.0012E-05],[183.94967,-5.259E-05],[183.95318,-5.3106E-05],[183.9567,-4.8465E-05],[183.96022,-5.259E-05],[183.96374,-5.5168E-05],[183.96725,-5.0528E-05],[183.97077,-4.9497E-05],[183.97429,-5.4137E-05],[183.97781,-5.3106E-05],[183.98132,-5.1043E-05],[183.98484,-5.4652E-05],[183.98836,-5.3621E-05],[183.99187,-5.3621E-05],[183.99539,-5.4652E-05],[183.99891,-5.5168E-05],[184.00243,-5.723E-05],[184.00594,-5.5168E-05],[184.00946,-5.1043E-05],[184.01298,-5.1559E-05],[184.0165,-5.1559E-05],[184.02001,-5.1559E-05],[184.02353,-5.1043E-05],[184.02705,-5.4137E-05],[184.03057,-5.723E-05],[184.03408,-5.259E-05],[184.0376,-5.1043E-05],[184.04112,-5.1043E-05],[184.04463,-5.2074E-05],[184.04815,-5.3621E-05],[184.05167,-5.5168E-05],[184.05519,-5.5168E-05],[184.0587,-4.795E-05],[184.06222,-4.2794E-05],[184.06574,-4.8465E-05],[184.06926,-5.4652E-05],[184.07277,-5.4652E-05],[184.07629,-5.1043E-05],[184.07981,-5.1043E-05],[184.08333,-5.1043E-05],[184.08684,-4.8981E-05],[184.09036,-5.4652E-05],[184.09388,-5.5168E-05],[184.09739,-5.259E-05],[184.10091,-5.259E-05],[184.10443,-5.259E-05],[184.10795,-5.6715E-05],[184.11146,-5.5684E-05],[184.11498,-5.5168E-05],[184.1185,-5.259E-05],[184.12202,-5.0528E-05],[184.12553,-5.8262E-05],[184.12905,-5.5168E-05],[184.13257,-5.0528E-05],[184.13609,-5.5168E-05],[184.1396,-5.3621E-05],[184.14312,-5.0012E-05],[184.14664,-5.5684E-05],[184.15015,-5.723E-05],[184.15367,-5.259E-05],[184.15719,-5.2074E-05],[184.16071,-4.8981E-05],[184.16422,-5.0528E-05]]}
-{"quant":[184.609,-5.4599E-05],"mems":[[184.51244,-5.3621E-05],[184.51596,-5.5168E-05],[184.51947,-5.1559E-05],[184.52299,-5.259E-05],[184.52651,-5.2074E-05],[184.53003,-5.0528E-05],[184.53354,-5.5684E-05],[184.53706,-5.2074E-05],[184.54058,-4.8981E-05],[184.5441,-5.4652E-05],[184.54761,-5.3621E-05],[184.55113,-5.259E-05],[184.55465,-5.259E-05],[184.55817,-5.1559E-05],[184.56168,-5.5168E-05],[184.5652,-5.4137E-05],[184.56872,-5.259E-05],[184.57223,-4.9497E-05],[184.57575,-4.9497E-05],[184.57927,-5.723E-05],[184.58279,-5.6199E-05],[184.5863,-5.259E-05],[184.58982,-4.795E-05],[184.59334,-4.7434E-05],[184.59686,-5.4652E-05],[184.60037,-5.5684E-05],[184.60389,-5.8777E-05],[184.60741,-5.6715E-05],[184.61093,-5.5684E-05],[184.61444,-5.5684E-05],[184.61796,-5.259E-05],[184.62148,-5.6199E-05],[184.62499,-5.723E-05],[184.62851,-5.6715E-05],[184.63203,-5.5168E-05],[184.63555,-5.4137E-05],[184.63906,-5.6199E-05],[184.64258,-5.7746E-05],[184.6461,-5.4652E-05],[184.64962,-5.259E-05],[184.65313,-5.259E-05],[184.65665,-5.0528E-05],[184.66017,-5.0012E-05],[184.66369,-5.5684E-05],[184.6672,-5.6715E-05],[184.67072,-5.3106E-05],[184.67424,-5.259E-05],[184.67775,-5.3106E-05],[184.68127,-5.5168E-05],[184.68479,-5.723E-05],[184.68831,-5.6199E-05],[184.69182,-5.3106E-05],[184.69534,-5.3106E-05],[184.69886,-5.4652E-05],[184.70238,-5.6715E-05],[184.70589,-5.5168E-05],[184.70941,-5.3106E-05],[184.71293,-5.259E-05],[184.71645,-4.8981E-05],[184.71996,-5.2074E-05],[184.72348,-5.1559E-05],[184.727,-5.1559E-05],[184.73051,-5.4137E-05],[184.73403,-5.3106E-05],[184.73755,-5.3621E-05],[184.74107,-5.6199E-05],[184.74458,-5.8262E-05],[184.7481,-5.4137E-05],[184.75162,-5.723E-05],[184.75514,-5.6715E-05],[184.75865,-5.2074E-05],[184.76217,-5.6715E-05],[184.76569,-5.3621E-05],[184.76921,-5.4137E-05],[184.77272,-5.6199E-05],[184.77624,-5.1559E-05],[184.77976,-4.9497E-05],[184.78327,-5.0528E-05],[184.78679,-5.5684E-05],[184.79031,-5.6199E-05],[184.79383,-5.2074E-05],[184.79734,-5.0012E-05],[184.80086,-5.1559E-05],[184.80438,-5.6199E-05],[184.8079,-5.5684E-05],[184.81141,-5.4652E-05]]}
-{"quant":[185.078,-5.357E-05],"mems":[[184.98025,-5.259E-05],[184.98376,-5.6199E-05],[184.98728,-5.3106E-05],[184.9908,-5.723E-05],[184.99431,-5.9293E-05],[184.99783,-5.0528E-05],[185.00135,-4.8465E-05],[185.00487,-5.3621E-05],[185.00838,-5.7746E-05],[185.0119,-5.5168E-05],[185.01542,-5.2074E-05],[185.01894,-5.3106E-05],[185.02245,-5.0528E-05],[185.02597,-5.1043E-05],[185.02949,-5.259E-05],[185.03301,-5.1559E-05],[185.03652,-5.4652E-05],[185.04004,-5.4137E-05],[185.04356,-5.0528E-05],[185.04707,-4.9497E-05],[185.05059,-4.8981E-05],[185.05411,-5.0528E-05],[185.05763,-5.259E-05],[185.06114,-5.259E-05],[185.06466,-5.3106E-05],[185.06818,-5.259E-05],[185.0717,-5.0528E-05],[185.07521,-5.1559E-05],[185.07873,-5.259E-05],[185.08225,-5.2074E-05],[185.08577,-5.3106E-05],[185.08928,-5.4652E-05],[185.0928,-5.259E-05],[185.09632,-5.259E-05],[185.09983,-5.3106E-05],[185.10335,-5.2074E-05],[185.10687,-5.4137E-05],[185.11039,-5.5684E-05],[185.1139,-5.5168E-05],[185.11742,-5.5684E-05],[185.12094,-5.6199E-05],[185.12446,-5.4137E-05],[185.12797,-5.6715E-05],[185.13149,-5.5684E-05],[185.13501,-4.8465E-05],[185.13853,-5.3106E-05],[185.14204,-5.0528E-05],[185.14556,-5.0528E-05],[185.14908,-5.5684E-05],[185.15259,-5.4137E-05],[185.15611,-5.7746E-05],[185.15963,-5.4137E-05],[185.16315,-4.9497E-05],[185.16666,-5.2074E-05],[185.17018,-5.6199E-05],[185.1737,-5.5168E-05],[185.17722,-5.259E-05],[185.18073,-5.1043E-05],[185.18425,-4.8465E-05],[185.18777,-5.2074E-05],[185.19129,-5.3106E-05],[185.1948,-5.259E-05],[185.19832,-5.6199E-05],[185.20184,-5.6199E-05],[185.20535,-5.3621E-05],[185.20887,-5.6199E-05],[185.21239,-5.4652E-05],[185.21591,-4.8981E-05],[185.21942,-5.1043E-05],[185.22294,-5.1559E-05],[185.22646,-5.2074E-05],[185.22998,-5.2074E-05],[185.23349,-5.1043E-05],[185.23701,-5.3621E-05],[185.24053,-5.1559E-05],[185.24405,-5.2074E-05],[185.24756,-5.4652E-05],[185.25108,-5.5684E-05],[185.2546,-5.4652E-05],[185.25811,-5.259E-05],[185.26163,-5.6715E-05],[185.26515,-5.4652E-05],[185.26867,-5.2074E-05],[185.27218,-5.6199E-05],[185.2757,-5.4652E-05],[185.27922,-5.3621E-05]]}
-{"quant":[185.575,-5.2519E-05],"mems":[[185.47619,-5.6715E-05],[185.47971,-5.2074E-05],[185.48322,-5.2074E-05],[185.48674,-5.4137E-05],[185.49026,-5.0012E-05],[185.49378,-4.8981E-05],[185.49729,-5.3621E-05],[185.50081,-5.4652E-05],[185.50433,-5.259E-05],[185.50785,-5.1559E-05],[185.51136,-4.8981E-05],[185.51488,-5.2074E-05],[185.5184,-5.6199E-05],[185.52191,-5.3106E-05],[185.52543,-5.2074E-05],[185.52895,-5.1043E-05],[185.53247,-5.0528E-05],[185.53598,-5.4652E-05],[185.5395,-5.6715E-05],[185.54302,-5.8777E-05],[185.54654,-5.7746E-05],[185.55005,-5.2074E-05],[185.55357,-4.8465E-05],[185.55709,-4.9497E-05],[185.56061,-5.2074E-05],[185.56412,-5.6199E-05],[185.56764,-5.6199E-05],[185.57116,-5.0528E-05],[185.57467,-5.1043E-05],[185.57819,-4.8465E-05],[185.58171,-5.3621E-05],[185.58523,-5.4137E-05],[185.58874,-4.4856E-05],[185.59226,-5.1043E-05],[185.59578,-5.259E-05],[185.5993,-5.7746E-05],[185.60281,-6.0839E-05],[185.60633,-5.259E-05],[185.60985,-5.3106E-05],[185.61337,-5.1559E-05],[185.61688,-4.9497E-05],[185.6204,-5.6199E-05],[185.62392,-5.5684E-05],[185.62743,-4.8981E-05],[185.63095,-5.1559E-05],[185.63447,-5.723E-05],[185.63799,-5.6715E-05],[185.6415,-5.4137E-05],[185.64502,-5.259E-05],[185.64854,-5.2074E-05],[185.65206,-4.9497E-05],[185.65557,-4.6919E-05],[185.65909,-5.259E-05],[185.66261,-5.2074E-05],[185.66613,-5.0528E-05],[185.66964,-5.3621E-05],[185.67316,-5.2074E-05],[185.67668,-5.0528E-05],[185.68019,-5.1043E-05],[185.68371,-5.3621E-05],[185.68723,-5.2074E-05],[185.69075,-5.0528E-05],[185.69426,-5.1043E-05],[185.69778,-5.259E-05],[185.7013,-5.6715E-05],[185.70482,-5.8262E-05],[185.70833,-5.4652E-05],[185.71185,-5.259E-05],[185.71537,-5.0012E-05],[185.71889,-4.5372E-05],[185.7224,-4.8465E-05],[185.72592,-5.0012E-05],[185.72944,-4.8981E-05],[185.73295,-5.1043E-05],[185.73647,-5.259E-05],[185.73999,-5.259E-05],[185.74351,-5.259E-05],[185.74702,-5.4137E-05],[185.75054,-5.1559E-05],[185.75406,-5.0528E-05],[185.75758,-5.4652E-05],[185.76109,-5.3106E-05],[185.76461,-5.4652E-05],[185.76813,-5.3106E-05],[185.77165,-5.1559E-05],[185.77516,-5.259E-05]]}
-{"quant":[186.048,-1.859],"mems":[[186.01786,-5.259E-05],[186.02138,-4.8981E-05],[186.02489,-5.4652E-05],[186.02841,-5.7746E-05],[186.03193,-5.8262E-05],[186.03545,-5.5684E-05],[186.03896,-5.3106E-05],[186.04248,-5.1043E-05],[186.046,-4.9497E-05],[186.04951,-5.723E-05],[186.05303,-5.259E-05],[186.05655,-5.4137E-05],[186.06007,-5.9293E-05],[186.06358,-5.3621E-05],[186.0671,-5.3621E-05],[186.07062,-5.2074E-05],[186.07414,-5.259E-05],[186.07765,-5.4652E-05],[186.08117,-5.4137E-05],[186.08469,-5.4652E-05],[186.08821,-5.4652E-05],[186.09172,-5.3621E-05],[186.09524,-5.2074E-05],[186.09876,-5.1559E-05],[186.10227,-5.3621E-05],[186.10579,-5.3106E-05],[186.10931,-5.259E-05],[186.11283,-5.6715E-05],[186.11634,-5.5168E-05],[186.11986,-5.1043E-05],[186.12338,-5.1043E-05],[186.1269,-4.6919E-05],[186.13041,-5.1043E-05],[186.13393,-5.7746E-05],[186.13745,-5.5684E-05],[186.14097,-5.4137E-05],[186.14448,-5.259E-05],[186.148,-5.259E-05],[186.15134,-5.4652E-05],[186.15468,-5.259E-05],[186.15802,-5.0528E-05],[186.16135,-5.1559E-05],[186.16469,-5.4652E-05],[186.16803,-5.4137E-05],[186.17137,-5.6715E-05],[186.17471,-5.9808E-05],[186.17805,-5.6715E-05],[186.18139,-5.6715E-05],[186.18473,-5.4137E-05],[186.18806,-5.4137E-05],[186.1914,-5.6199E-05],[186.19474,-5.259E-05],[186.19808,-5.3106E-05],[186.20142,-5.1559E-05],[186.20476,-5.1043E-05],[186.2081,-5.2074E-05],[186.21143,-5.1559E-05],[186.21477,-5.3106E-05],[186.21811,-5.259E-05],[186.22145,-5.0528E-05],[186.22479,-5.3106E-05],[186.22813,-5.4137E-05],[186.23147,-5.3621E-05],[186.23481,-5.4652E-05],[186.23814,-5.0012E-05],[186.24148,-5.259E-05],[186.24482,-5.2074E-05],[186.24816,-5.1559E-05],[186.2515,-5.3621E-05],[186.25484,-4.8981E-05],[186.25818,-5.3106E-05],[186.26151,-5.1043E-05],[186.26485,-5.0528E-05],[186.26819,-5.4137E-05],[186.27153,-5.259E-05],[186.27487,-5.6715E-05],[186.27821,-5.5168E-05],[186.28155,-5.3621E-05],[186.28489,-4.9497E-05],[186.28822,-4.795E-05],[186.29156,-5.1559E-05],[186.2949,-5.1559E-05],[186.29824,-5.3106E-05],[186.30158,-5.259E-05],[186.30492,-5.4137E-05],[186.30826,-5.0528E-05],[186.31159,-4.8465E-05],[186.31493,-5.1559E-05]]}
-{"quant":[186.503,-5.3322E-05],"mems":[[186.40508,-5.2074E-05],[186.40842,-5.6715E-05],[186.41175,-5.3621E-05],[186.41509,-4.9497E-05],[186.41843,-4.8465E-05],[186.42177,-5.1559E-05],[186.42511,-5.3621E-05],[186.42845,-5.3106E-05],[186.43179,-5.4652E-05],[186.43513,-4.9497E-05],[186.43846,-4.795E-05],[186.4418,-5.5168E-05],[186.44514,-5.6199E-05],[186.44848,-5.2074E-05],[186.45182,-5.0012E-05],[186.45516,-4.8465E-05],[186.4585,-5.1559E-05],[186.46183,-5.7746E-05],[186.46517,-5.3106E-05],[186.46851,-4.8465E-05],[186.47185,-5.0528E-05],[186.47519,-5.1559E-05],[186.47853,-5.3106E-05],[186.48187,-5.2074E-05],[186.48521,-5.3106E-05],[186.48854,-5.723E-05],[186.49188,-5.259E-05],[186.49522,-5.1043E-05],[186.49856,-5.259E-05],[186.5019,-5.4137E-05],[186.50524,-5.7746E-05],[186.50858,-5.3106E-05],[186.51191,-4.9497E-05],[186.51525,-5.0528E-05],[186.51859,-5.3621E-05],[186.52193,-5.6715E-05],[186.52527,-5.4137E-05],[186.52861,-5.4652E-05],[186.53195,-5.3106E-05],[186.53529,-5.2074E-05],[186.53862,-5.0012E-05],[186.54196,-4.6919E-05],[186.5453,-5.0528E-05],[186.54864,-5.4652E-05],[186.55198,-5.5168E-05],[186.55532,-5.5168E-05],[186.55866,-5.723E-05],[186.56199,-5.3106E-05],[186.56533,-5.259E-05],[186.56867,-5.3106E-05],[186.57201,-4.4856E-05],[186.57535,-5.259E-05],[186.57869,-5.8262E-05],[186.58203,-5.259E-05],[186.58537,-5.2074E-05],[186.5887,-4.8465E-05],[186.59204,-5.0012E-05],[186.59538,-5.3621E-05],[186.59872,-5.7746E-05],[186.60206,-6.0324E-05],[186.6054,-5.8777E-05],[186.60874,-5.8262E-05],[186.61207,-5.3621E-05],[186.61541,-5.4137E-05],[186.61875,-5.6199E-05],[186.62209,-5.5168E-05],[186.62543,-5.4652E-05],[186.62877,-5.2074E-05],[186.63211,-5.5168E-05],[186.63545,-5.7746E-05],[186.63878,-5.4137E-05],[186.64212,-5.0012E-05],[186.64546,-4.8465E-05],[186.6488,-5.2074E-05],[186.65214,-5.4137E-05],[186.65548,-5.1043E-05],[186.65882,-5.4137E-05],[186.66215,-5.3106E-05],[186.66549,-5.259E-05],[186.66883,-5.1559E-05],[186.67217,-4.7434E-05],[186.67551,-5.259E-05],[186.67885,-4.8981E-05],[186.68219,-4.795E-05],[186.68553,-5.1043E-05],[186.68886,-5.0528E-05],[186.6922,-5.1559E-05],[186.69554,-5.5168E-05],[186.69888,-5.9293E-05],[186.70222,-5.3621E-05],[186.70556,-5.2074E-05]]}
-{"quant":[187.21,-5.2906E-05],"mems":[[187.11287,-5.723E-05],[187.11621,-5.1559E-05],[187.11955,-5.1559E-05],[187.12289,-4.8981E-05],[187.12623,-5.3621E-05],[187.12957,-5.9808E-05],[187.13291,-5.4652E-05],[187.13625,-5.259E-05],[187.13958,-5.3621E-05],[187.14292,-5.6199E-05],[187.14626,-5.7746E-05],[187.1496,-5.4137E-05],[187.15294,-5.2074E-05],[187.15628,-5.0528E-05],[187.15962,-5.3106E-05],[187.16295,-5.3106E-05],[187.16629,-5.0528E-05],[187.16963,-5.3621E-05],[187.17297,-4.8981E-05],[187.17631,-4.6403E-05],[187.17965,-5.4137E-05],[187.18299,-5.5684E-05],[187.18633,-4.9497E-05],[187.18966,-4.5372E-05],[187.193,-4.5887E-05],[187.19634,-5.0528E-05],[187.19968,-5.0528E-05],[187.20302,-5.259E-05],[187.20636,-5.259E-05],[187.2097,-4.8981E-05],[187.21303,-5.0012E-05],[187.21637,-5.1043E-05],[187.21971,-5.4137E-05],[187.22305,-5.723E-05],[187.22639,-5.6199E-05],[187.22973,-5.259E-05],[187.23307,-5.4137E-05],[187.23641,-5.4137E-05],[187.23974,-5.1043E-05],[187.24308,-5.2074E-05],[187.24642,-5.259E-05],[187.24976,-5.4137E-05],[187.2531,-5.2074E-05],[187.25644,-5.1043E-05],[187.25978,-5.5168E-05],[187.26311,-5.5684E-05],[187.26645,-5.1043E-05],[187.26979,-5.1559E-05],[187.27313,-5.3621E-05],[187.27647,-5.1043E-05],[187.27981,-5.5684E-05],[187.28315,-5.3621E-05],[187.28649,-5.1559E-05],[187.28982,-5.5168E-05],[187.29316,-5.0528E-05],[187.2965,-5.1043E-05],[187.29984,-5.0528E-05],[187.30318,-5.0528E-05],[187.30652,-5.259E-05],[187.30986,-5.259E-05],[187.31319,-5.5684E-05],[187.31653,-5.723E-05],[187.31987,-5.259E-05],[187.32321,-4.6403E-05],[187.32655,-4.6919E-05],[187.32989,-5.1043E-05],[187.33323,-5.4652E-05],[187.33657,-5.7746E-05],[187.3399,-5.723E-05],[187.34324,-5.6199E-05],[187.34658,-5.2074E-05],[187.34992,-4.795E-05],[187.35326,-5.4137E-05],[187.3566,-5.5168E-05],[187.35994,-5.4652E-05],[187.36327,-5.6715E-05],[187.36661,-5.2074E-05],[187.36995,-5.4652E-05],[187.37329,-5.4137E-05],[187.37663,-5.723E-05],[187.37997,-5.8262E-05],[187.38331,-5.3106E-05],[187.38665,-5.5168E-05],[187.38998,-5.3106E-05],[187.39332,-5.4137E-05],[187.39666,-5.1559E-05],[187.4,-5.1559E-05],[187.40334,-5.259E-05],[187.40668,-4.7434E-05],[187.41002,-4.8465E-05]]}
-{"quant":[187.691,-5.3023E-05],"mems":[[187.59364,-4.6403E-05],[187.59698,-5.3621E-05],[187.60032,-5.1559E-05],[187.60366,-5.259E-05],[187.607,-5.6199E-05],[187.61034,-4.7434E-05],[187.61367,-5.0528E-05],[187.61701,-5.6199E-05],[187.62035,-5.3106E-05],[187.62369,-5.259E-05],[187.62703,-5.5168E-05],[187.63037,-5.723E-05],[187.63371,-5.259E-05],[187.63705,-5.5684E-05],[187.64038,-5.4137E-05],[187.64372,-4.8981E-05],[187.64706,-5.4652E-05],[187.6504,-5.5168E-05],[187.65374,-5.5168E-05],[187.65708,-5.1559E-05],[187.66042,-5.0528E-05],[187.66375,-5.3106E-05],[187.66709,-5.1043E-05],[187.67043,-5.3621E-05],[187.67377,-5.4652E-05],[187.67711,-5.1559E-05],[187.68045,-5.4137E-05],[187.68379,-5.5684E-05],[187.68713,-5.259E-05],[187.69046,-5.0528E-05],[187.6938,-4.9497E-05],[187.69714,-5.3106E-05],[187.70048,-5.6199E-05],[187.70382,-5.9808E-05],[187.70716,-5.6199E-05],[187.7105,-5.6715E-05],[187.71383,-5.6199E-05],[187.71717,-5.2074E-05],[187.72051,-5.6199E-05],[187.72385,-5.3621E-05],[187.72719,-5.5168E-05],[187.73053,-5.4137E-05],[187.73387,-4.5887E-05],[187.73721,-5.3621E-05],[187.74054,-5.6715E-05],[187.74388,-5.1559E-05],[187.74722,-5.3106E-05],[187.75056,-5.1043E-05],[187.7539,-4.9497E-05],[187.75724,-4.9497E-05],[187.76058,-5.0528E-05],[187.76391,-5.3106E-05],[187.76725,-4.8981E-05],[187.77059,-5.3106E-05],[187.77393,-5.1559E-05],[187.77727,-5.0012E-05],[187.78061,-5.6199E-05],[187.78395,-5.1559E-05],[187.78729,-5.3621E-05],[187.79062,-5.5168E-05],[187.79396,-5.0012E-05],[187.7973,-5.3621E-05],[187.80064,-5.8777E-05],[187.80398,-5.8777E-05],[187.80732,-5.6199E-05],[187.81066,-5.6199E-05],[187.81399,-5.0528E-05],[187.81733,-4.8981E-05],[187.82067,-5.259E-05],[187.82401,-5.4137E-05],[187.82735,-5.5684E-05],[187.83069,-4.8465E-05],[187.83403,-5.0012E-05],[187.83737,-5.0012E-05],[187.8407,-5.0012E-05],[187.84404,-5.723E-05],[187.84738,-5.1043E-05],[187.85072,-5.1559E-05],[187.85406,-5.4652E-05],[187.8574,-5.3106E-05],[187.86074,-5.8262E-05],[187.86407,-5.723E-05],[187.86741,-5.5168E-05],[187.87075,-5.3621E-05],[187.87409,-5.259E-05],[187.87743,-5.723E-05],[187.88077,-5.8262E-05],[187.88411,-5.5168E-05],[187.88745,-5.4652E-05],[187.89078,-5.3106E-05],[187.89412,-5.1559E-05]]}
-{"quant":[188.17,-5.2623E-05],"mems":[[188.07107,-4.8981E-05],[188.07441,-5.3621E-05],[188.07775,-5.3621E-05],[188.08109,-5.1559E-05],[188.08443,-5.2074E-05],[188.08777,-5.5168E-05],[188.0911,-5.6199E-05],[188.09444,-5.4137E-05],[188.09778,-5.2074E-05],[188.10112,-5.5168E-05],[188.10446,-5.259E-05],[188.1078,-4.7434E-05],[188.11114,-5.4137E-05],[188.11447,-5.9293E-05],[188.11781,-5.4652E-05],[188.12115,-5.1559E-05],[188.12449,-5.1043E-05],[188.12783,-5.3621E-05],[188.13117,-5.6715E-05],[188.13451,-5.4137E-05],[188.13785,-5.4652E-05],[188.14118,-5.1043E-05],[188.14452,-4.7434E-05],[188.14786,-5.4652E-05],[188.1512,-5.5168E-05],[188.15454,-5.3106E-05],[188.15788,-5.259E-05],[188.16122,-5.4137E-05],[188.16455,-5.1043E-05],[188.16789,-4.8465E-05],[188.17123,-5.723E-05],[188.17457,-5.3106E-05],[188.17791,-4.8981E-05],[188.18125,-5.0012E-05],[188.18459,-5.1043E-05],[188.18793,-5.6199E-05],[188.19126,-5.4652E-05],[188.1946,-5.3621E-05],[188.19794,-5.3621E-05],[188.20128,-5.0012E-05],[188.20462,-4.5372E-05],[188.20796,-5.0012E-05],[188.2113,-5.6199E-05],[188.21463,-5.3106E-05],[188.21797,-5.4137E-05],[188.22131,-5.3621E-05],[188.22465,-5.259E-05],[188.22799,-5.7746E-05],[188.23133,-5.6715E-05],[188.23467,-5.1559E-05],[188.23801,-4.9497E-05],[188.24134,-4.8981E-05],[188.24468,-5.1559E-05],[188.24802,-4.9497E-05],[188.25136,-4.8465E-05],[188.2547,-5.3621E-05],[188.25804,-5.3621E-05],[188.26138,-5.2074E-05],[188.26471,-5.5168E-05],[188.26805,-5.5168E-05],[188.27139,-5.4137E-05],[188.27473,-5.6199E-05],[188.27807,-5.2074E-05],[188.28141,-5.0528E-05],[188.28475,-5.5684E-05],[188.28809,-5.6715E-05],[188.29142,-5.0528E-05],[188.29476,-4.7434E-05],[188.2981,-5.1043E-05],[188.30144,-5.4652E-05],[188.30478,-5.6715E-05],[188.30812,-5.1559E-05],[188.31146,-5.4652E-05],[188.31479,-5.9808E-05],[188.31813,-5.4652E-05],[188.32147,-5.0012E-05],[188.32481,-5.5168E-05],[188.32815,-5.8777E-05],[188.33149,-5.3621E-05],[188.33483,-5.6199E-05],[188.33817,-5.3106E-05],[188.3415,-5.4652E-05],[188.34484,-5.3106E-05],[188.34818,-4.9497E-05],[188.35152,-5.5168E-05],[188.35486,-5.259E-05],[188.3582,-5.5168E-05],[188.36154,-5.259E-05],[188.36487,-4.8981E-05],[188.36821,-5.4137E-05],[188.37155,-5.3106E-05]]}
-{"quant":[188.642,-1.6443],"mems":[[188.54516,-5.259E-05],[188.5485,-5.3621E-05],[188.55184,-5.5168E-05],[188.55518,-5.9808E-05],[188.55852,-5.4137E-05],[188.56186,-5.4137E-05],[188.56519,-5.5684E-05],[188.56853,-5.3106E-05],[188.57187,-5.4137E-05],[188.57521,-5.3106E-05],[188.57855,-4.9497E-05],[188.58189,-5.0528E-05],[188.58523,-5.4137E-05],[188.58857,-5.4137E-05],[188.5919,-5.259E-05],[188.59524,-5.0528E-05],[188.59858,-5.1559E-05],[188.60192,-5.3106E-05],[188.60526,-5.3621E-05],[188.6086,-5.259E-05],[188.61194,-5.1559E-05],[188.61527,-5.723E-05],[188.61861,-5.4652E-05],[188.62195,-5.1559E-05],[188.62529,-5.2074E-05],[188.62863,-4.7434E-05],[188.63197,-5.1559E-05],[188.63531,-5.5168E-05],[188.63865,-5.2074E-05],[188.64198,-5.3621E-05],[188.64532,-5.0012E-05],[188.64866,-4.8981E-05],[188.652,-5.6199E-05],[188.65545,-5.3621E-05],[188.65889,-5.1043E-05],[188.66234,-5.2074E-05],[188.66578,-4.7434E-05],[188.66923,-4.4341E-05],[188.67267,-5.3106E-05],[188.67612,-5.5168E-05],[188.67956,-5.2074E-05],[188.68301,-5.4652E-05],[188.68645,-5.2074E-05],[188.6899,-5.3621E-05],[188.69334,-5.723E-05],[188.69679,-5.6199E-05],[188.70023,-5.5168E-05],[188.70368,-5.259E-05],[188.70713,-5.3621E-05],[188.71057,-5.723E-05],[188.71402,-5.4652E-05],[188.71746,-5.259E-05],[188.72091,-5.259E-05],[188.72435,-4.9497E-05],[188.7278,-5.259E-05],[188.73124,-5.4137E-05],[188.73469,-5.1559E-05],[188.73813,-5.2074E-05],[188.74158,-5.2074E-05],[188.74502,-5.5684E-05],[188.74847,-5.6715E-05],[188.75191,-5.0012E-05],[188.75536,-5.1559E-05],[188.75881,-5.5684E-05],[188.76225,-5.259E-05],[188.7657,-5.3621E-05],[188.76914,-5.0528E-05],[188.77259,-5.1559E-05],[188.77603,-5.8777E-05],[188.77948,-5.4137E-05],[188.78292,-5.4137E-05],[188.78637,-5.5168E-05],[188.78981,-5.1559E-05],[188.79326,-5.7746E-05],[188.7967,-5.723E-05],[188.80015,-5.259E-05],[188.80359,-5.5684E-05],[188.80704,-5.0528E-05],[188.81049,-4.6403E-05],[188.81393,-5.3621E-05],[188.81738,-5.3621E-05],[188.82082,-5.259E-05],[188.82427,-5.6199E-05],[188.82771,-5.3106E-05],[188.83116,-5.3106E-05],[188.8346,-5.4652E-05],[188.83805,-5.3106E-05],[188.84149,-5.6199E-05],[188.84494,-5.1043E-05]]}
-{"quant":[189.112,-5.2281E-05],"mems":[[189.01376,-5.3621E-05],[189.01721,-5.3106E-05],[189.02065,-5.3621E-05],[189.0241,-5.4137E-05],[189.02754,-5.5684E-05],[189.03099,-5.5684E-05],[189.03443,-5.259E-05],[189.03788,-5.0528E-05],[189.04132,-5.1043E-05],[189.04477,-5.0528E-05],[189.04821,-5.1043E-05],[189.05166,-5.4137E-05],[189.0551,-5.5684E-05],[189.05855,-5.8777E-05],[189.06199,-5.6715E-05],[189.06544,-5.1559E-05],[189.06889,-5.1559E-05],[189.07233,-5.6199E-05],[189.07578,-5.6715E-05],[189.07922,-5.1043E-05],[189.08267,-5.4652E-05],[189.08611,-5.3106E-05],[189.08956,-4.795E-05],[189.093,-5.0528E-05],[189.09645,-5.2074E-05],[189.09989,-5.5684E-05],[189.10334,-5.4652E-05],[189.10678,-5.0528E-05],[189.11023,-4.8465E-05],[189.11367,-4.9497E-05],[189.11712,-5.1043E-05],[189.12057,-5.3621E-05],[189.12401,-4.8981E-05],[189.12746,-4.8981E-05],[189.1309,-5.5168E-05],[189.13435,-5.259E-05],[189.13779,-5.5168E-05],[189.14124,-5.723E-05],[189.14468,-5.5168E-05],[189.14813,-5.1043E-05],[189.15157,-5.3621E-05],[189.15502,-5.3106E-05],[189.15846,-5.0528E-05],[189.16191,-5.8262E-05],[189.16535,-5.5168E-05],[189.1688,-4.8981E-05],[189.17225,-4.6919E-05],[189.17569,-5.3621E-05],[189.17914,-5.4137E-05],[189.18258,-5.2074E-05],[189.18603,-5.3621E-05],[189.18947,-4.7434E-05],[189.19292,-5.259E-05],[189.19636,-5.0012E-05],[189.19981,-5.259E-05],[189.20325,-5.8262E-05],[189.2067,-4.8981E-05],[189.21014,-5.0528E-05],[189.21359,-4.9497E-05],[189.21703,-5.259E-05],[189.22048,-5.6199E-05],[189.22393,-5.4137E-05],[189.22737,-5.3106E-05],[189.23082,-4.9497E-05],[189.23426,-5.3621E-05],[189.23771,-5.7746E-05],[189.24115,-5.723E-05],[189.2446,-5.3106E-05],[189.24804,-5.3621E-05],[189.25149,-5.7746E-05],[189.25493,-5.4137E-05],[189.25838,-5.3621E-05],[189.26182,-5.1559E-05],[189.26527,-4.8465E-05],[189.26871,-5.1043E-05],[189.27216,-5.7746E-05],[189.27561,-5.4652E-05],[189.27905,-5.0528E-05],[189.2825,-5.5684E-05],[189.28594,-5.259E-05],[189.28939,-5.1559E-05],[189.29283,-5.5684E-05],[189.29628,-5.723E-05],[189.29972,-5.7746E-05],[189.30317,-5.5684E-05],[189.30661,-4.7434E-05],[189.31006,-4.795E-05],[189.3135,-5.6199E-05]]}
-{"quant":[189.765,-5.3948E-05],"mems":[[189.66837,-5.3106E-05],[189.67182,-5.4137E-05],[189.67526,-5.5168E-05],[189.67871,-5.6199E-05],[189.68215,-5.5168E-05],[189.6856,-5.4137E-05],[189.68905,-5.2074E-05],[189.69249,-5.1559E-05],[189.69594,-5.2074E-05],[189.69938,-5.2074E-05],[189.70283,-5.5684E-05],[189.70627,-5.4652E-05],[189.70972,-5.259E-05],[189.71316,-5.2074E-05],[189.71661,-5.723E-05],[189.72005,-5.8777E-05],[189.7235,-5.2074E-05],[189.72694,-5.4137E-05],[189.73039,-4.8465E-05],[189.73383,-4.9497E-05],[189.73728,-5.6715E-05],[189.74073,-5.5684E-05],[189.74417,-5.4652E-05],[189.74762,-5.0528E-05],[189.75106,-5.4652E-05],[189.75451,-5.8777E-05],[189.75795,-5.3621E-05],[189.7614,-5.3621E-05],[189.76484,-5.6199E-05],[189.76829,-5.6715E-05],[189.77173,-5.3106E-05],[189.77518,-5.3621E-05],[189.77862,-5.4137E-05],[189.78207,-5.259E-05],[189.78551,-5.3621E-05],[189.78896,-5.259E-05],[189.79241,-5.3621E-05],[189.79585,-5.0528E-05],[189.7993,-5.1043E-05],[189.80274,-5.8262E-05],[189.80619,-5.4137E-05],[189.80963,-5.5168E-05],[189.81308,-5.8262E-05],[189.81652,-5.3621E-05],[189.81997,-5.0528E-05],[189.82341,-5.4137E-05],[189.82686,-5.3621E-05],[189.8303,-5.3106E-05],[189.83375,-5.6199E-05],[189.83719,-5.3621E-05],[189.84064,-5.3621E-05],[189.84409,-4.9497E-05],[189.84753,-5.2074E-05],[189.85098,-5.5684E-05],[189.85442,-5.1559E-05],[189.85787,-5.7746E-05],[189.86131,-5.7746E-05],[189.86476,-5.3106E-05],[189.8682,-5.5168E-05],[189.87165,-5.2074E-05],[189.87509,-4.8465E-05],[189.87854,-5.2074E-05],[189.88198,-5.6715E-05],[189.88543,-5.5684E-05],[189.88887,-5.1559E-05],[189.89232,-4.9497E-05],[189.89577,-5.2074E-05],[189.89921,-5.3621E-05],[189.90266,-5.5168E-05],[189.9061,-5.3106E-05],[189.90955,-5.3106E-05],[189.91299,-5.6199E-05],[189.91644,-5.3621E-05],[189.91988,-5.259E-05],[189.92333,-5.3106E-05],[189.92677,-5.1043E-05],[189.93022,-5.1559E-05],[189.93366,-5.6715E-05],[189.93711,-5.9808E-05],[189.94055,-5.8262E-05],[189.944,-5.4652E-05],[189.94745,-5.259E-05],[189.95089,-5.3106E-05],[189.95434,-5.3106E-05],[189.95778,-5.4652E-05],[189.96123,-5.8777E-05],[189.96467,-5.4137E-05],[189.96812,-5.0012E-05]]}
-{"quant":[190.248,-5.4206E-05],"mems":[[190.15072,-5.2074E-05],[190.15417,-5.0528E-05],[190.15761,-5.6199E-05],[190.16106,-5.4652E-05],[190.1645,-5.2074E-05],[190.16795,-5.2074E-05],[190.17139,-4.9497E-05],[190.17484,-5.6715E-05],[190.17828,-5.4137E-05],[190.18173,-5.1559E-05],[190.18517,-5.5684E-05],[190.18862,-5.5684E-05],[190.19206,-5.5684E-05],[190.19551,-5.6715E-05],[190.19895,-5.723E-05],[190.2024,-5.259E-05],[190.20585,-5.2074E-05],[190.20929,-5.2074E-05],[190.21274,-5.3106E-05],[190.21618,-5.5168E-05],[190.21963,-5.3621E-05],[190.22307,-5.2074E-05],[190.22652,-5.3621E-05],[190.22996,-5.6199E-05],[190.23341,-5.1043E-05],[190.23685,-5.259E-05],[190.2403,-5.5684E-05],[190.24374,-5.4137E-05],[190.24719,-5.7746E-05],[190.25063,-5.259E-05],[190.25408,-5.0528E-05],[190.25753,-5.5684E-05],[190.26097,-5.4137E-05],[190.26442,-5.4652E-05],[190.26786,-4.9497E-05],[190.27131,-5.0012E-05],[190.27475,-5.723E-05],[190.2782,-5.723E-05],[190.28164,-5.723E-05],[190.28509,-5.4137E-05],[190.28853,-5.4137E-05],[190.29198,-5.3106E-05],[190.29542,-5.3621E-05],[190.29887,-5.7746E-05],[190.30231,-5.723E-05],[190.30576,-5.4652E-05],[190.30921,-5.3621E-05],[190.31265,-5.5684E-05],[190.3161,-5.5168E-05],[190.31954,-5.3621E-05],[190.32299,-5.6199E-05],[190.32643,-5.7746E-05],[190.32988,-5.6199E-05],[190.33332,-5.4652E-05],[190.33677,-5.4652E-05],[190.34021,-5.259E-05],[190.34366,-4.8981E-05],[190.3471,-5.259E-05],[190.35055,-5.1043E-05],[190.35399,-5.2074E-05],[190.35744,-5.5684E-05],[190.36089,-5.5684E-05],[190.36433,-5.8777E-05],[190.36778,-4.9497E-05],[190.37122,-5.259E-05],[190.37467,-5.5168E-05],[190.37811,-4.8981E-05],[190.38156,-5.8777E-05],[190.385,-5.723E-05],[190.38845,-5.4137E-05],[190.39189,-5.0012E-05],[190.39534,-4.8981E-05],[190.39878,-5.5684E-05],[190.40223,-5.4137E-05],[190.40567,-5.4137E-05],[190.40912,-5.0012E-05],[190.41257,-5.259E-05],[190.41601,-5.723E-05],[190.41946,-5.5684E-05],[190.4229,-5.2074E-05],[190.42635,-4.6403E-05],[190.42979,-5.0012E-05],[190.43324,-5.4652E-05],[190.43668,-5.6715E-05],[190.44013,-5.723E-05],[190.44357,-5.3106E-05],[190.44702,-5.3621E-05],[190.45046,-5.3106E-05]]}
-{"quant":[190.757,-5.3604E-05],"mems":[[190.65718,-5.8777E-05],[190.66063,-5.6715E-05],[190.66407,-5.5684E-05],[190.66752,-5.2074E-05],[190.67097,-5.2074E-05],[190.67441,-5.5168E-05],[190.67786,-5.3106E-05],[190.6813,-5.5168E-05],[190.68475,-5.5684E-05],[190.68819,-4.9497E-05],[190.69164,-4.8465E-05],[190.69508,-5.1559E-05],[190.69853,-5.5684E-05],[190.70197,-5.4652E-05],[190.70542,-5.6199E-05],[190.70886,-5.7746E-05],[190.71231,-5.1559E-05],[190.71575,-5.1559E-05],[190.7192,-5.2074E-05],[190.72265,-5.2074E-05],[190.72609,-5.3106E-05],[190.72954,-5.1043E-05],[190.73298,-5.3106E-05],[190.73643,-5.6715E-05],[190.73987,-5.2074E-05],[190.74332,-5.0528E-05],[190.74676,-5.259E-05],[190.75021,-4.8981E-05],[190.75365,-5.1559E-05],[190.7571,-5.723E-05],[190.76054,-5.8262E-05],[190.76399,-5.4652E-05],[190.76743,-4.8981E-05],[190.77088,-5.0528E-05],[190.77433,-5.5684E-05],[190.77777,-5.6199E-05],[190.78122,-5.5168E-05],[190.78466,-5.259E-05],[190.78811,-5.259E-05],[190.79155,-5.0528E-05],[190.795,-5.5168E-05],[190.79844,-5.6715E-05],[190.80189,-5.3106E-05],[190.80533,-5.8262E-05],[190.80878,-5.1559E-05],[190.81222,-4.8981E-05],[190.81567,-5.4652E-05],[190.81911,-5.3106E-05],[190.82256,-5.4652E-05],[190.82601,-5.3621E-05],[190.82945,-5.0012E-05],[190.8329,-5.2074E-05],[190.83634,-5.3621E-05],[190.83979,-5.4652E-05],[190.84323,-5.5168E-05],[190.84668,-5.3621E-05],[190.85012,-5.4652E-05],[190.85357,-5.1559E-05],[190.85701,-5.0528E-05],[190.86046,-5.4652E-05],[190.8639,-5.5168E-05],[190.86735,-5.2074E-05],[190.87079,-4.9497E-05],[190.87424,-5.1559E-05],[190.87769,-5.723E-05],[190.88113,-5.6199E-05],[190.88458,-5.2074E-05],[190.88802,-5.0528E-05],[190.89147,-5.2074E-05],[190.89491,-5.4652E-05],[190.89836,-5.3621E-05],[190.9018,-5.4652E-05],[190.90525,-5.3106E-05],[190.90869,-5.0012E-05],[190.91214,-5.1559E-05],[190.91558,-5.259E-05],[190.91903,-5.3621E-05],[190.92247,-5.3106E-05],[190.92592,-5.4652E-05],[190.92937,-5.0528E-05],[190.93281,-4.7434E-05],[190.93626,-5.3621E-05],[190.9397,-5.6715E-05],[190.94315,-5.3621E-05],[190.94659,-4.8981E-05],[190.95004,-5.0528E-05],[190.95348,-5.1559E-05],[190.95693,-5.3621E-05],[190.96037,-5.723E-05]]}
-{"quant":[191.226,-1.3905],"mems":[[191.12919,-5.3106E-05],[191.13264,-5.259E-05],[191.13609,-5.1043E-05],[191.13953,-5.6199E-05],[191.14298,-5.3621E-05],[191.14642,-5.2074E-05],[191.14987,-5.259E-05],[191.15331,-4.9497E-05],[191.15676,-5.4137E-05],[191.1602,-5.6199E-05],[191.16365,-5.3106E-05],[191.16709,-5.4137E-05],[191.17054,-5.3106E-05],[191.17398,-5.259E-05],[191.17743,-5.2074E-05],[191.18087,-5.5168E-05],[191.18432,-5.5168E-05],[191.18777,-5.4652E-05],[191.19121,-5.4652E-05],[191.19466,-5.1043E-05],[191.1981,-5.723E-05],[191.20155,-5.723E-05],[191.20499,-5.4137E-05],[191.20844,-5.259E-05],[191.21188,-4.8465E-05],[191.21533,-5.1043E-05],[191.21877,-5.5168E-05],[191.22222,-5.5684E-05],[191.22566,-5.3621E-05],[191.22911,-5.259E-05],[191.23255,-5.3621E-05],[191.236,-5.5684E-05],[191.23951,-5.4652E-05],[191.24301,-5.4137E-05],[191.24652,-5.3106E-05],[191.25002,-5.0528E-05],[191.25353,-5.3106E-05],[191.25703,-5.4137E-05],[191.26054,-5.5684E-05],[191.26404,-5.6715E-05],[191.26755,-5.4652E-05],[191.27105,-5.3621E-05],[191.27456,-5.2074E-05],[191.27806,-5.4137E-05],[191.28157,-5.9293E-05],[191.28507,-6.0324E-05],[191.28858,-5.3621E-05],[191.29209,-5.2074E-05],[191.29559,-5.6199E-05],[191.2991,-5.2074E-05],[191.3026,-5.2074E-05],[191.30611,-5.3106E-05],[191.30961,-5.2074E-05],[191.31312,-5.6199E-05],[191.31662,-5.1559E-05],[191.32013,-5.259E-05],[191.32363,-5.7746E-05],[191.32714,-5.6199E-05],[191.33064,-5.0528E-05],[191.33415,-4.6403E-05],[191.33765,-5.5684E-05],[191.34116,-5.6199E-05],[191.34467,-4.6403E-05],[191.34817,-4.9497E-05],[191.35168,-5.3621E-05],[191.35518,-5.3106E-05],[191.35869,-5.5168E-05],[191.36219,-5.3621E-05],[191.3657,-5.5684E-05],[191.3692,-5.6199E-05],[191.37271,-5.2074E-05],[191.37621,-5.5684E-05],[191.37972,-5.1559E-05],[191.38322,-5.4137E-05],[191.38673,-5.5684E-05],[191.39023,-4.795E-05],[191.39374,-5.2074E-05],[191.39725,-5.0012E-05],[191.40075,-5.3106E-05],[191.40426,-5.3621E-05],[191.40776,-4.8465E-05],[191.41127,-4.9497E-05],[191.41477,-4.795E-05],[191.41828,-5.4137E-05],[191.42178,-5.5684E-05],[191.42529,-5.3621E-05],[191.42879,-5.4652E-05]]}
-{"quant":[191.681,-5.2556E-05],"mems":[[191.58303,-5.259E-05],[191.58653,-5.2074E-05],[191.59004,-5.5684E-05],[191.59354,-5.4652E-05],[191.59705,-5.8262E-05],[191.60055,-5.9808E-05],[191.60406,-5.1559E-05],[191.60757,-5.0012E-05],[191.61107,-5.4652E-05],[191.61458,-5.5684E-05],[191.61808,-5.2074E-05],[191.62159,-5.1043E-05],[191.62509,-5.6715E-05],[191.6286,-5.9293E-05],[191.6321,-5.6715E-05],[191.63561,-5.2074E-05],[191.63911,-5.1043E-05],[191.64262,-5.1559E-05],[191.64612,-5.1559E-05],[191.64963,-5.4137E-05],[191.65313,-5.259E-05],[191.65664,-5.3621E-05],[191.66015,-5.6199E-05],[191.66365,-5.3621E-05],[191.66716,-5.1043E-05],[191.67066,-4.9497E-05],[191.67417,-4.9497E-05],[191.67767,-5.0012E-05],[191.68118,-5.1559E-05],[191.68468,-5.3106E-05],[191.68819,-5.4137E-05],[191.69169,-5.3106E-05],[191.6952,-5.0012E-05],[191.6987,-5.3106E-05],[191.70221,-5.3621E-05],[191.70571,-5.4652E-05],[191.70922,-5.4137E-05],[191.71273,-5.0528E-05],[191.71623,-5.0012E-05],[191.71974,-4.6919E-05],[191.72324,-5.1559E-05],[191.72675,-5.4137E-05],[191.73025,-5.4652E-05],[191.73376,-5.5168E-05],[191.73726,-5.2074E-05],[191.74077,-5.1043E-05],[191.74427,-5.259E-05],[191.74778,-5.7746E-05],[191.75128,-5.7746E-05],[191.75479,-5.1559E-05],[191.75829,-5.1043E-05],[191.7618,-5.5168E-05],[191.76531,-5.3621E-05],[191.76881,-5.0012E-05],[191.77232,-5.4137E-05],[191.77582,-5.259E-05],[191.77933,-4.795E-05],[191.78283,-4.8981E-05],[191.78634,-4.9497E-05],[191.78984,-5.2074E-05],[191.79335,-5.5168E-05],[191.79685,-5.3106E-05],[191.80036,-5.4652E-05],[191.80386,-5.6199E-05],[191.80737,-5.4137E-05],[191.81087,-5.4652E-05],[191.81438,-5.1559E-05],[191.81789,-5.2074E-05],[191.82139,-5.4652E-05],[191.8249,-5.4652E-05],[191.8284,-5.1559E-05],[191.83191,-5.3621E-05],[191.83541,-5.5684E-05],[191.83892,-5.1559E-05],[191.84242,-5.3106E-05],[191.84593,-5.1043E-05],[191.84943,-5.5168E-05],[191.85294,-6.0839E-05],[191.85644,-5.4652E-05],[191.85995,-5.3621E-05],[191.86345,-5.4137E-05],[191.86696,-5.6715E-05],[191.87047,-5.3621E-05],[191.87397,-5.2074E-05],[191.87748,-5.6199E-05],[191.88098,-5.5684E-05],[191.88449,-5.3621E-05]]}
-{"quant":[192.315,-5.2848E-05],"mems":[[192.21749,-5.3106E-05],[192.221,-5.1043E-05],[192.2245,-5.2074E-05],[192.22801,-5.3621E-05],[192.23151,-4.9497E-05],[192.23502,-5.259E-05],[192.23853,-5.259E-05],[192.24203,-5.3106E-05],[192.24554,-5.1043E-05],[192.24904,-4.7434E-05],[192.25255,-5.5684E-05],[192.25605,-5.3106E-05],[192.25956,-5.0528E-05],[192.26306,-5.3106E-05],[192.26657,-5.1043E-05],[192.27007,-5.3106E-05],[192.27358,-5.259E-05],[192.27708,-5.5168E-05],[192.28059,-5.5168E-05],[192.28409,-5.1043E-05],[192.2876,-5.2074E-05],[192.29111,-5.3106E-05],[192.29461,-5.3106E-05],[192.29812,-5.5168E-05],[192.30162,-5.5168E-05],[192.30513,-5.259E-05],[192.30863,-5.0528E-05],[192.31214,-5.0012E-05],[192.31564,-5.4137E-05],[192.31915,-5.6199E-05],[192.32265,-5.259E-05],[192.32616,-5.2074E-05],[192.32966,-5.6715E-05],[192.33317,-5.3621E-05],[192.33667,-5.2074E-05],[192.34018,-5.3106E-05],[192.34369,-4.8981E-05],[192.34719,-4.9497E-05],[192.3507,-5.1043E-05],[192.3542,-5.4652E-05],[192.35771,-5.4652E-05],[192.36121,-5.1043E-05],[192.36472,-5.6199E-05],[192.36822,-5.723E-05],[192.37173,-5.0528E-05],[192.37523,-5.1043E-05],[192.37874,-5.3106E-05],[192.38224,-5.0528E-05],[192.38575,-5.4652E-05],[192.38925,-5.5168E-05],[192.39276,-4.9497E-05],[192.39627,-5.4137E-05],[192.39977,-5.5168E-05],[192.40328,-5.0528E-05],[192.40678,-5.4137E-05],[192.41029,-5.259E-05],[192.41379,-4.7434E-05],[192.4173,-5.3106E-05],[192.4208,-5.9808E-05],[192.42431,-5.723E-05],[192.42781,-5.0528E-05],[192.43132,-5.0528E-05],[192.43482,-5.3621E-05],[192.43833,-5.5684E-05],[192.44183,-5.1559E-05],[192.44534,-5.0528E-05],[192.44885,-5.1559E-05],[192.45235,-4.9497E-05],[192.45586,-5.0528E-05],[192.45936,-5.4137E-05],[192.46287,-5.723E-05],[192.46637,-5.259E-05],[192.46988,-5.1043E-05],[192.47338,-5.5684E-05],[192.47689,-5.723E-05],[192.48039,-5.6715E-05],[192.4839,-5.723E-05],[192.4874,-5.4652E-05],[192.49091,-5.1559E-05],[192.49441,-5.5168E-05],[192.49792,-5.5168E-05],[192.50143,-5.1559E-05],[192.50493,-5.1559E-05],[192.50844,-5.259E-05],[192.51194,-5.2074E-05],[192.51545,-5.4137E-05]]}
-{"quant":[192.799,-5.3484E-05],"mems":[[192.70123,-5.3106E-05],[192.70473,-5.4652E-05],[192.70824,-5.723E-05],[192.71175,-5.3106E-05],[192.71525,-4.9497E-05],[192.71876,-5.1043E-05],[192.72226,-5.1559E-05],[192.72577,-5.3106E-05],[192.72927,-5.259E-05],[192.73278,-5.259E-05],[192.73628,-5.3106E-05],[192.73979,-5.1043E-05],[192.74329,-5.723E-05],[192.7468,-5.6715E-05],[192.7503,-5.3106E-05],[192.75381,-5.6715E-05],[192.75731,-4.6403E-05],[192.76082,-4.4856E-05],[192.76433,-5.4652E-05],[192.76783,-5.5684E-05],[192.77134,-5.4137E-05],[192.77484,-5.1043E-05],[192.77835,-5.0528E-05],[192.78185,-5.259E-05],[192.78536,-5.259E-05],[192.78886,-5.5684E-05],[192.79237,-5.8262E-05],[192.79587,-5.3106E-05],[192.79938,-4.9497E-05],[192.80288,-5.4652E-05],[192.80639,-5.5168E-05],[192.80989,-5.3106E-05],[192.8134,-5.259E-05],[192.81691,-4.8465E-05],[192.82041,-4.7434E-05],[192.82392,-4.6403E-05],[192.82742,-5.2074E-05],[192.83093,-5.9808E-05],[192.83443,-5.4652E-05],[192.83794,-5.259E-05],[192.84144,-5.259E-05],[192.84495,-5.5684E-05],[192.84845,-5.5168E-05],[192.85196,-5.4652E-05],[192.85546,-5.1559E-05],[192.85897,-5.0528E-05],[192.86247,-5.8262E-05],[192.86598,-5.4137E-05],[192.86949,-5.5684E-05],[192.87299,-5.5684E-05],[192.8765,-4.8465E-05],[192.88,-5.1043E-05],[192.88351,-5.3621E-05],[192.88701,-5.8777E-05],[192.89052,-6.0324E-05],[192.89402,-5.1559E-05],[192.89753,-5.3106E-05],[192.90103,-5.723E-05],[192.90454,-5.8262E-05],[192.90804,-6.0324E-05],[192.91155,-5.3106E-05],[192.91505,-5.723E-05],[192.91856,-5.9293E-05],[192.92207,-5.2074E-05],[192.92557,-5.5168E-05],[192.92908,-5.5168E-05],[192.93258,-5.6199E-05],[192.93609,-5.4137E-05],[192.93959,-5.3621E-05],[192.9431,-5.8262E-05],[192.9466,-5.5168E-05],[192.95011,-5.6715E-05],[192.95361,-5.6199E-05],[192.95712,-5.723E-05],[192.96062,-5.723E-05],[192.96413,-4.795E-05],[192.96763,-5.1043E-05],[192.97114,-5.1559E-05],[192.97465,-5.0528E-05],[192.97815,-5.5684E-05],[192.98166,-5.1043E-05],[192.98516,-5.1043E-05],[192.98867,-5.4137E-05],[192.99217,-5.259E-05],[192.99568,-5.4137E-05],[192.99918,-5.5168E-05]]}
-{"quant":[193.292,-5.2556E-05],"mems":[[193.19548,-5.9293E-05],[193.19899,-5.8262E-05],[193.20249,-5.6199E-05],[193.206,-5.3106E-05],[193.2095,-4.8465E-05],[193.21301,-5.2074E-05],[193.21651,-5.723E-05],[193.22002,-5.1559E-05],[193.22352,-5.2074E-05],[193.22703,-5.4652E-05],[193.23053,-5.3106E-05],[193.23404,-5.3106E-05],[193.23755,-5.2074E-05],[193.24105,-5.0012E-05],[193.24456,-5.0528E-05],[193.24806,-5.4137E-05],[193.25157,-5.4652E-05],[193.25507,-5.6199E-05],[193.25858,-5.5168E-05],[193.26208,-5.3106E-05],[193.26559,-5.4652E-05],[193.26909,-5.259E-05],[193.2726,-5.6199E-05],[193.2761,-5.6715E-05],[193.27961,-5.6199E-05],[193.28311,-5.1043E-05],[193.28662,-4.7434E-05],[193.29013,-5.6199E-05],[193.29363,-5.5684E-05],[193.29714,-5.1043E-05],[193.30064,-5.0012E-05],[193.30415,-5.2074E-05],[193.30765,-5.259E-05],[193.31116,-4.8465E-05],[193.31466,-5.1043E-05],[193.31817,-5.5168E-05],[193.32167,-5.3621E-05],[193.32518,-4.8465E-05],[193.32868,-4.795E-05],[193.33219,-5.4652E-05],[193.33569,-5.723E-05],[193.3392,-5.1559E-05],[193.34271,-5.259E-05],[193.34621,-5.259E-05],[193.34972,-4.7434E-05],[193.35322,-5.4652E-05],[193.35673,-5.6715E-05],[193.36023,-5.5168E-05],[193.36374,-5.5168E-05],[193.36724,-5.0012E-05],[193.37075,-5.1559E-05],[193.37425,-5.3621E-05],[193.37776,-5.4137E-05],[193.38126,-5.4137E-05],[193.38477,-5.3106E-05],[193.38827,-5.259E-05],[193.39178,-5.1043E-05],[193.39529,-5.259E-05],[193.39879,-5.1559E-05],[193.4023,-5.3106E-05],[193.4058,-5.5168E-05],[193.40931,-4.795E-05],[193.41281,-5.0012E-05],[193.41632,-5.723E-05],[193.41982,-5.4137E-05],[193.42333,-5.3106E-05],[193.42683,-5.3106E-05],[193.43034,-5.1559E-05],[193.43384,-5.4137E-05],[193.43735,-5.4137E-05],[193.44085,-5.5168E-05],[193.44436,-5.3621E-05],[193.44787,-5.0528E-05],[193.45137,-5.6199E-05],[193.45488,-5.259E-05],[193.45838,-5.1043E-05],[193.46189,-5.5168E-05],[193.46539,-5.4652E-05],[193.4689,-5.723E-05],[193.4724,-5.6199E-05],[193.47591,-5.4652E-05],[193.47941,-5.723E-05],[193.48292,-5.3621E-05],[193.48642,-5.4652E-05],[193.48993,-5.9808E-05],[193.49343,-5.6715E-05]]}
-{"quant":[193.754,-1.0572],"mems":[[193.65468,-5.3106E-05],[193.65819,-5.4652E-05],[193.66169,-5.6199E-05],[193.6652,-5.3621E-05],[193.6687,-5.3106E-05],[193.67221,-5.4137E-05],[193.67571,-4.9497E-05],[193.67922,-5.4137E-05],[193.68272,-5.6199E-05],[193.68623,-5.4652E-05],[193.68973,-5.5168E-05],[193.69324,-5.0528E-05],[193.69674,-5.5168E-05],[193.70025,-5.4137E-05],[193.70375,-5.0528E-05],[193.70726,-5.4137E-05],[193.71077,-5.6199E-05],[193.71427,-5.5168E-05],[193.71778,-5.3106E-05],[193.72128,-5.6199E-05],[193.72479,-5.723E-05],[193.72829,-5.4652E-05],[193.7318,-5.1043E-05],[193.7353,-5.2074E-05],[193.73881,-5.4652E-05],[193.74231,-5.723E-05],[193.74582,-5.7746E-05],[193.74932,-5.2074E-05],[193.75283,-5.259E-05],[193.75633,-5.1043E-05],[193.75984,-4.6919E-05],[193.76335,-5.4652E-05],[193.76685,-5.723E-05],[193.77036,-5.259E-05],[193.77386,-5.3106E-05],[193.77737,-5.0528E-05],[193.78087,-5.259E-05],[193.78438,-5.8777E-05],[193.78788,-5.5168E-05],[193.79139,-4.5887E-05],[193.79489,-5.2074E-05],[193.7984,-5.6199E-05],[193.8019,-5.1559E-05],[193.80541,-5.2074E-05],[193.80891,-5.3621E-05],[193.81242,-5.3106E-05],[193.81593,-5.0012E-05],[193.81943,-5.3106E-05],[193.82294,-5.4652E-05],[193.82644,-5.0528E-05],[193.82995,-5.3621E-05],[193.83345,-5.3621E-05],[193.83696,-4.795E-05],[193.84046,-5.1559E-05],[193.84397,-5.9808E-05],[193.84747,-5.723E-05],[193.85098,-5.3621E-05],[193.85448,-5.6199E-05],[193.85799,-5.6715E-05],[193.86149,-5.4652E-05],[193.865,-5.5684E-05],[193.8686,-5.5684E-05],[193.87221,-5.259E-05],[193.87581,-5.3621E-05],[193.87941,-5.3106E-05],[193.88301,-4.8465E-05],[193.88662,-4.9497E-05],[193.89022,-5.6199E-05],[193.89382,-5.5684E-05],[193.89742,-4.8981E-05],[193.90103,-5.2074E-05],[193.90463,-5.6715E-05],[193.90823,-5.5684E-05],[193.91183,-5.1043E-05],[193.91544,-5.1559E-05],[193.91904,-5.259E-05],[193.92264,-5.0012E-05],[193.92625,-5.3621E-05],[193.92985,-5.259E-05],[193.93345,-5.1559E-05],[193.93705,-5.2074E-05],[193.94066,-5.0528E-05],[193.94426,-5.4137E-05],[193.94786,-5.3621E-05],[193.95146,-5.6199E-05],[193.95507,-6.1355E-05]]}
-{"quant":[194.237,-5.3763E-05],"mems":[[194.1388,-5.0528E-05],[194.14241,-4.9497E-05],[194.14601,-5.2074E-05],[194.14961,-5.0528E-05],[194.15321,-4.8465E-05],[194.15682,-5.5168E-05],[194.16042,-5.4137E-05],[194.16402,-5.1559E-05],[194.16762,-5.0012E-05],[194.17123,-4.9497E-05],[194.17483,-5.259E-05],[194.17843,-5.4137E-05],[194.18203,-5.3621E-05],[194.18564,-5.0012E-05],[194.18924,-5.2074E-05],[194.19284,-5.2074E-05],[194.19645,-5.3106E-05],[194.20005,-5.259E-05],[194.20365,-5.259E-05],[194.20725,-5.5168E-05],[194.21086,-5.6199E-05],[194.21446,-5.6715E-05],[194.21806,-5.5684E-05],[194.22166,-5.5684E-05],[194.22527,-5.7746E-05],[194.22887,-5.8777E-05],[194.23247,-4.795E-05],[194.23607,-4.5887E-05],[194.23968,-5.0012E-05],[194.24328,-5.0528E-05],[194.24688,-5.6199E-05],[194.25049,-5.5168E-05],[194.25409,-5.4137E-05],[194.25769,-5.3621E-05],[194.26129,-5.5168E-05],[194.2649,-5.7746E-05],[194.2685,-5.6199E-05],[194.2721,-5.5684E-05],[194.2757,-5.4137E-05],[194.27931,-5.6199E-05],[194.28291,-5.5168E-05],[194.28651,-5.1043E-05],[194.29011,-5.0012E-05],[194.29372,-5.259E-05],[194.29732,-5.2074E-05],[194.30092,-4.8981E-05],[194.30453,-5.3621E-05],[194.30813,-5.6715E-05],[194.31173,-5.3621E-05],[194.31533,-5.3621E-05],[194.31894,-5.259E-05],[194.32254,-5.2074E-05],[194.32614,-5.3621E-05],[194.32974,-5.4137E-05],[194.33335,-5.723E-05],[194.33695,-5.5168E-05],[194.34055,-5.2074E-05],[194.34415,-5.259E-05],[194.34776,-5.2074E-05],[194.35136,-5.6199E-05],[194.35496,-5.259E-05],[194.35857,-5.1559E-05],[194.36217,-5.3621E-05],[194.36577,-5.0012E-05],[194.36937,-5.4137E-05],[194.37298,-5.4652E-05],[194.37658,-5.6199E-05],[194.38018,-5.4652E-05],[194.38378,-4.8981E-05],[194.38739,-5.0012E-05],[194.39099,-5.2074E-05],[194.39459,-5.6715E-05],[194.39819,-5.4652E-05],[194.4018,-4.9497E-05],[194.4054,-5.6199E-05],[194.409,-5.8777E-05],[194.41261,-5.4652E-05],[194.41621,-5.3621E-05],[194.41981,-5.0528E-05],[194.42341,-4.6919E-05],[194.42702,-5.1043E-05],[194.43062,-5.3621E-05],[194.43422,-5.3106E-05],[194.43782,-5.3621E-05]]}
-{"quant":[194.993,-5.2829E-05],"mems":[[194.89536,-5.7746E-05],[194.89897,-5.723E-05],[194.90257,-5.259E-05],[194.90617,-5.1043E-05],[194.90977,-5.1043E-05],[194.91338,-5.3621E-05],[194.91698,-5.723E-05],[194.92058,-5.5168E-05],[194.92418,-5.0528E-05],[194.92779,-5.2074E-05],[194.93139,-5.259E-05],[194.93499,-5.3621E-05],[194.93859,-5.3621E-05],[194.9422,-5.259E-05],[194.9458,-5.0528E-05],[194.9494,-4.9497E-05],[194.95301,-5.5684E-05],[194.95661,-5.3106E-05],[194.96021,-5.4652E-05],[194.96381,-6.0324E-05],[194.96742,-5.1559E-05],[194.97102,-4.795E-05],[194.97462,-5.1043E-05],[194.97822,-5.0012E-05],[194.98183,-5.5684E-05],[194.98543,-5.8262E-05],[194.98903,-5.4137E-05],[194.99263,-5.4652E-05],[194.99624,-5.259E-05],[194.99984,-5.3621E-05],[195.00344,-5.8262E-05],[195.00705,-5.3621E-05],[195.01065,-5.2074E-05],[195.01425,-5.3621E-05],[195.01785,-5.1559E-05],[195.02146,-5.1043E-05],[195.02506,-4.9497E-05],[195.02866,-5.3106E-05],[195.03226,-5.6199E-05],[195.03587,-5.4137E-05],[195.03947,-5.259E-05],[195.04307,-4.8465E-05],[195.04667,-5.5684E-05],[195.05028,-5.5168E-05],[195.05388,-4.6919E-05],[195.05748,-5.2074E-05],[195.06109,-5.6199E-05],[195.06469,-5.4652E-05],[195.06829,-4.8465E-05],[195.07189,-4.8981E-05],[195.0755,-5.259E-05],[195.0791,-5.259E-05],[195.0827,-5.5168E-05],[195.0863,-5.5684E-05],[195.08991,-5.3621E-05],[195.09351,-5.1043E-05],[195.09711,-5.4652E-05],[195.10071,-5.4137E-05],[195.10432,-5.1043E-05],[195.10792,-5.0528E-05],[195.11152,-4.795E-05],[195.11513,-4.8981E-05],[195.11873,-5.6199E-05],[195.12233,-5.6715E-05],[195.12593,-5.4137E-05],[195.12954,-5.4652E-05],[195.13314,-4.6919E-05],[195.13674,-4.9497E-05],[195.14034,-5.3106E-05],[195.14395,-5.0528E-05],[195.14755,-5.4137E-05],[195.15115,-4.9497E-05],[195.15475,-5.1043E-05],[195.15836,-5.3621E-05],[195.16196,-5.3106E-05],[195.16556,-5.4137E-05],[195.16917,-5.259E-05],[195.17277,-5.5168E-05],[195.17637,-5.1559E-05],[195.17997,-4.8981E-05],[195.18358,-5.6715E-05],[195.18718,-5.4652E-05],[195.19078,-5.0012E-05],[195.19438,-5.2074E-05]]}
-{"quant":[195.478,-5.3515E-05],"mems":[[195.37812,-5.4652E-05],[195.38172,-5.1559E-05],[195.38533,-5.3621E-05],[195.38893,-5.4652E-05],[195.39253,-5.6199E-05],[195.39613,-5.7746E-05],[195.39974,-5.3621E-05],[195.40334,-5.1559E-05],[195.40694,-5.0528E-05],[195.41054,-5.4137E-05],[195.41415,-5.5168E-05],[195.41775,-5.259E-05],[195.42135,-5.1559E-05],[195.42495,-5.2074E-05],[195.42856,-5.259E-05],[195.43216,-5.3621E-05],[195.43576,-5.4652E-05],[195.43937,-5.2074E-05],[195.44297,-5.1559E-05],[195.44657,-5.259E-05],[195.45017,-5.6715E-05],[195.45378,-5.723E-05],[195.45738,-5.3621E-05],[195.46098,-5.5168E-05],[195.46458,-5.259E-05],[195.46819,-5.3621E-05],[195.47179,-5.7746E-05],[195.47539,-5.259E-05],[195.47899,-5.4137E-05],[195.4826,-5.9808E-05],[195.4862,-5.5168E-05],[195.4898,-4.8981E-05],[195.49341,-5.2074E-05],[195.49701,-5.6715E-05],[195.50061,-5.4137E-05],[195.50421,-5.4652E-05],[195.50782,-5.3106E-05],[195.51142,-5.3106E-05],[195.51502,-5.6199E-05],[195.51862,-5.3621E-05],[195.52223,-5.4652E-05],[195.52583,-5.3621E-05],[195.52943,-5.2074E-05],[195.53303,-5.3106E-05],[195.53664,-5.3621E-05],[195.54024,-5.6715E-05],[195.54384,-5.6715E-05],[195.54745,-5.6715E-05],[195.55105,-5.1043E-05],[195.55465,-4.9497E-05],[195.55825,-5.1559E-05],[195.56186,-4.795E-05],[195.56546,-5.5168E-05],[195.56906,-5.6199E-05],[195.57266,-5.2074E-05],[195.57627,-5.0528E-05],[195.57987,-4.8981E-05],[195.58347,-5.6199E-05],[195.58707,-5.6715E-05],[195.59068,-5.2074E-05],[195.59428,-5.2074E-05],[195.59788,-5.3106E-05],[195.60149,-4.9497E-05],[195.60509,-5.0012E-05],[195.60869,-5.3106E-05],[195.61229,-5.1043E-05],[195.6159,-5.1559E-05],[195.6195,-5.0012E-05],[195.6231,-5.6199E-05],[195.6267,-5.8262E-05],[195.63031,-5.5684E-05],[195.63391,-5.5684E-05],[195.63751,-5.2074E-05],[195.64111,-5.0012E-05],[195.64472,-5.1043E-05],[195.64832,-4.8981E-05],[195.65192,-4.8465E-05],[195.65553,-5.259E-05],[195.65913,-5.1043E-05],[195.66273,-5.2074E-05],[195.66633,-5.1559E-05],[195.66994,-4.9497E-05],[195.67354,-5.1559E-05],[195.67714,-4.8981E-05],[195.68074,-5.0012E-05]]}
-{"quant":[195.964,-5.3337E-05],"mems":[[195.86448,-5.3621E-05],[195.86808,-5.1043E-05],[195.87169,-4.7434E-05],[195.87529,-5.1043E-05],[195.87889,-5.4137E-05],[195.88249,-5.1043E-05],[195.8861,-5.0012E-05],[195.8897,-4.8981E-05],[195.8933,-4.6919E-05],[195.8969,-5.3621E-05],[195.90051,-5.3106E-05],[195.90411,-5.3106E-05],[195.90771,-5.4652E-05],[195.91131,-5.1043E-05],[195.91492,-5.723E-05],[195.91852,-5.8262E-05],[195.92212,-5.723E-05],[195.92573,-5.3621E-05],[195.92933,-4.9497E-05],[195.93293,-5.5168E-05],[195.93653,-5.5684E-05],[195.94014,-5.5168E-05],[195.94374,-5.5684E-05],[195.94734,-5.4137E-05],[195.95094,-5.2074E-05],[195.95455,-5.0012E-05],[195.95815,-5.259E-05],[195.96175,-5.3621E-05],[195.96535,-4.8981E-05],[195.96896,-5.4137E-05],[195.97256,-5.3621E-05],[195.97616,-4.5372E-05],[195.97977,-5.1043E-05],[195.98337,-5.4652E-05],[195.98697,-5.4652E-05],[195.99057,-5.4652E-05],[195.99418,-5.6199E-05],[195.99778,-5.7746E-05],[196.00138,-5.3621E-05],[196.00498,-5.5684E-05],[196.00859,-5.7746E-05],[196.01219,-5.7746E-05],[196.01579,-5.5168E-05],[196.01939,-5.7746E-05],[196.023,-6.1355E-05],[196.0266,-5.4137E-05],[196.0302,-5.2074E-05],[196.03381,-5.259E-05],[196.03741,-5.1043E-05],[196.04101,-4.8981E-05],[196.04461,-4.8981E-05],[196.04822,-5.3621E-05],[196.05182,-5.1043E-05],[196.05542,-5.1559E-05],[196.05902,-5.0012E-05],[196.06263,-4.8465E-05],[196.06623,-5.4137E-05],[196.06983,-5.259E-05],[196.07343,-5.1043E-05],[196.07704,-5.259E-05],[196.08064,-5.5684E-05],[196.08424,-5.4137E-05],[196.08785,-5.2074E-05],[196.09145,-5.5684E-05],[196.09505,-5.5168E-05],[196.09865,-5.3621E-05],[196.10226,-5.4137E-05],[196.10586,-5.4652E-05],[196.10946,-5.5168E-05],[196.11306,-5.6715E-05],[196.11667,-5.4137E-05],[196.12027,-5.3621E-05],[196.12387,-5.4137E-05],[196.12747,-5.5684E-05],[196.13108,-5.6715E-05],[196.13468,-5.259E-05],[196.13828,-5.3621E-05],[196.14189,-5.3106E-05],[196.14549,-5.259E-05],[196.14909,-5.4137E-05],[196.15269,-5.3106E-05],[196.1563,-5.4652E-05],[196.1599,-5.1559E-05],[196.1635,-4.7434E-05],[196.1671,-5.0012E-05]]}
-{"quant":[196.433,-0.68669],"mems":[[196.51656,-5.3621E-05],[196.52017,-5.259E-05],[196.52377,-5.1043E-05],[196.52737,-5.259E-05],[196.53097,-5.4652E-05],[196.53458,-4.7434E-05],[196.53818,-5.1559E-05],[196.54178,-5.3621E-05],[196.54538,-5.1043E-05],[196.54899,-5.6715E-05],[196.55259,-5.4652E-05],[196.55619,-5.0528E-05],[196.55979,-5.4137E-05],[196.5634,-5.7746E-05],[196.567,-5.3621E-05],[196.57019,-5.4137E-05],[196.57338,-5.723E-05],[196.57656,-5.259E-05],[196.57975,-5.259E-05],[196.58294,-5.3106E-05],[196.58613,-5.5168E-05],[196.58932,-5.723E-05],[196.5925,-5.3621E-05],[196.59569,-5.1559E-05],[196.59888,-5.1559E-05],[196.60207,-5.4137E-05],[196.60526,-5.3621E-05],[196.60844,-5.0012E-05],[196.61163,-4.8981E-05],[196.61482,-5.3106E-05],[196.61801,-5.4137E-05],[196.6212,-5.3621E-05],[196.62438,-5.5684E-05],[196.62757,-5.2074E-05],[196.63076,-5.1043E-05],[196.63395,-5.259E-05],[196.63714,-5.259E-05],[196.64032,-5.3621E-05],[196.64351,-5.4652E-05],[196.6467,-5.4137E-05],[196.64989,-5.259E-05],[196.65308,-5.0012E-05],[196.65626,-5.1559E-05],[196.65945,-5.5168E-05],[196.66264,-5.5684E-05],[196.66583,-5.4652E-05],[196.66902,-5.1043E-05],[196.6722,-5.1043E-05],[196.67539,-5.3106E-05],[196.67858,-5.8262E-05],[196.68177,-5.8777E-05],[196.68496,-5.259E-05],[196.68814,-5.5168E-05],[196.69133,-5.3106E-05],[196.69452,-5.2074E-05],[196.69771,-5.3106E-05],[196.7009,-5.2074E-05],[196.70408,-5.4137E-05],[196.70727,-5.4137E-05],[196.71046,-5.0528E-05],[196.71365,-4.6919E-05],[196.71684,-5.1559E-05],[196.72002,-5.5168E-05],[196.72321,-5.4137E-05],[196.7264,-5.4652E-05],[196.72959,-5.6199E-05],[196.73278,-5.7746E-05],[196.73596,-5.4652E-05],[196.73915,-5.3621E-05],[196.74234,-5.259E-05],[196.74553,-4.8465E-05],[196.74872,-5.0528E-05],[196.7519,-5.4137E-05],[196.75509,-5.259E-05],[196.75828,-5.4137E-05],[196.76147,-5.6199E-05],[196.76466,-5.1559E-05],[196.76784,-4.8465E-05],[196.77103,-5.3621E-05],[196.77422,-5.6199E-05],[196.77741,-5.723E-05],[196.7806,-5.4137E-05],[196.78378,-4.795E-05],[196.78697,-5.1559E-05],[196.79016,-5.6715E-05],[196.79335,-5.7746E-05],[196.79654,-5.259E-05],[196.79972,-5.3621E-05]]}
-{"quant":[196.933,-5.3621E-05],"mems":[[196.83479,-5.4652E-05],[196.83798,-5.3106E-05],[196.84117,-5.3106E-05],[196.84436,-5.259E-05],[196.84754,-5.5684E-05],[196.85073,-5.2074E-05],[196.85392,-5.1043E-05],[196.85711,-5.723E-05],[196.8603,-5.0012E-05],[196.86348,-5.2074E-05],[196.86667,-5.4652E-05],[196.86986,-4.9497E-05],[196.87305,-5.2074E-05],[196.87624,-4.9497E-05],[196.87942,-5.0528E-05],[196.88261,-5.723E-05],[196.8858,-5.5168E-05],[196.88899,-5.0528E-05],[196.89218,-5.2074E-05],[196.89536,-5.3621E-05],[196.89855,-5.4652E-05],[196.90174,-5.5684E-05],[196.90493,-5.9808E-05],[196.90812,-5.9293E-05],[196.9113,-5.3106E-05],[196.91449,-5.3106E-05],[196.91768,-5.3106E-05],[196.92087,-5.3106E-05],[196.92406,-5.7746E-05],[196.92724,-5.5684E-05],[196.93043,-5.1559E-05],[196.93362,-4.9497E-05],[196.93681,-5.0012E-05],[196.94,-5.8262E-05],[196.94318,-5.5168E-05],[196.94637,-4.795E-05],[196.94956,-5.4652E-05],[196.95275,-5.6715E-05],[196.95594,-5.259E-05],[196.95912,-5.259E-05],[196.96231,-5.5168E-05],[196.9655,-5.6199E-05],[196.96869,-5.6199E-05],[196.97188,-5.3621E-05],[196.97506,-5.0528E-05],[196.97825,-5.8262E-05],[196.98144,-5.9808E-05],[196.98463,-5.0528E-05],[196.98782,-5.0528E-05],[196.991,-5.4652E-05],[196.99419,-5.3621E-05],[196.99738,-5.3621E-05],[197.00057,-5.3106E-05],[197.00376,-5.0012E-05],[197.00694,-5.259E-05],[197.01013,-5.5168E-05],[197.01332,-5.723E-05],[197.01651,-5.6715E-05],[197.0197,-5.4137E-05],[197.02288,-5.259E-05],[197.02607,-5.0012E-05],[197.02926,-5.3106E-05],[197.03245,-5.2074E-05],[197.03564,-5.259E-05],[197.03882,-5.1043E-05],[197.04201,-4.6403E-05],[197.0452,-5.1043E-05],[197.04839,-5.5168E-05],[197.05158,-5.723E-05],[197.05476,-5.7746E-05],[197.05795,-5.259E-05],[197.06114,-5.2074E-05],[197.06433,-5.5684E-05],[197.06752,-5.5684E-05],[197.0707,-5.3621E-05],[197.07389,-4.8981E-05],[197.07708,-4.8465E-05],[197.08027,-4.9497E-05],[197.08346,-4.9497E-05],[197.08664,-5.3621E-05],[197.08983,-5.5168E-05],[197.09302,-5.0528E-05],[197.09621,-4.9497E-05],[197.0994,-4.8465E-05],[197.10258,-5.0528E-05],[197.10577,-5.5168E-05],[197.10896,-5.3106E-05],[197.11215,-5.3106E-05],[197.11534,-5.4652E-05],[197.11852,-5.3621E-05],[197.12171,-5.5168E-05],[197.1249,-5.3621E-05],[197.12809,-5.0528E-05],[197.13128,-5.1043E-05],[197.13446,-5.1559E-05]]}
-{"quant":[197.407,-5.2026E-05],"mems":[[197.3098,-5.5168E-05],[197.31299,-5.6715E-05],[197.31618,-5.6199E-05],[197.31937,-4.9497E-05],[197.32256,-5.5168E-05],[197.32574,-5.6199E-05],[197.32893,-5.3106E-05],[197.33212,-5.5168E-05],[197.33531,-5.3621E-05],[197.3385,-5.3106E-05],[197.34168,-5.1043E-05],[197.34487,-5.0528E-05],[197.34806,-5.4652E-05],[197.35125,-5.5168E-05],[197.35444,-5.3106E-05],[197.35762,-4.8465E-05],[197.36081,-5.3621E-05],[197.364,-5.6715E-05],[197.36719,-5.5168E-05],[197.37038,-5.723E-05],[197.37356,-5.4137E-05],[197.37675,-5.6199E-05],[197.37994,-5.6715E-05],[197.38313,-5.5684E-05],[197.38632,-5.8262E-05],[197.3895,-5.723E-05],[197.39269,-5.3106E-05],[197.39588,-5.3106E-05],[197.39907,-5.5168E-05],[197.40226,-5.4137E-05],[197.40544,-5.259E-05],[197.40863,-4.795E-05],[197.41182,-5.2074E-05],[197.41501,-5.3106E-05],[197.4182,-4.9497E-05],[197.42138,-5.3106E-05],[197.42457,-5.1043E-05],[197.42776,-5.2074E-05],[197.43095,-5.2074E-05],[197.43414,-4.9497E-05],[197.43732,-5.3621E-05],[197.44051,-5.259E-05],[197.4437,-5.3621E-05],[197.44689,-5.723E-05],[197.45008,-5.0528E-05],[197.45326,-5.0528E-05],[197.45645,-4.9497E-05],[197.45964,-5.0012E-05],[197.46283,-5.5684E-05],[197.46602,-5.1043E-05],[197.4692,-5.4137E-05],[197.47239,-5.6715E-05],[197.47558,-5.259E-05],[197.47877,-4.9497E-05],[197.48196,-5.4137E-05],[197.48514,-5.2074E-05],[197.48833,-4.795E-05],[197.49152,-5.4137E-05],[197.49471,-5.259E-05],[197.4979,-5.3106E-05],[197.50108,-5.0528E-05],[197.50427,-5.0528E-05],[197.50746,-5.2074E-05],[197.51065,-5.4652E-05],[197.51384,-5.7746E-05],[197.51702,-5.3621E-05],[197.52021,-5.259E-05],[197.5234,-4.8981E-05],[197.52659,-5.0012E-05],[197.52978,-5.2074E-05],[197.53296,-5.2074E-05],[197.53615,-5.259E-05],[197.53934,-5.5684E-05],[197.54253,-5.4137E-05],[197.54572,-5.1043E-05],[197.5489,-5.5684E-05],[197.55209,-5.6199E-05],[197.55528,-5.4652E-05],[197.55847,-5.2074E-05],[197.56166,-4.9497E-05],[197.56484,-4.9497E-05],[197.56803,-5.259E-05],[197.57122,-5.2074E-05],[197.57441,-5.259E-05],[197.5776,-5.3106E-05],[197.58078,-4.795E-05],[197.58397,-5.2074E-05],[197.58716,-5.4652E-05],[197.59035,-5.5168E-05],[197.59354,-5.5168E-05],[197.59672,-5.2074E-05],[197.59991,-5.5684E-05],[197.6031,-5.5684E-05],[197.60629,-5.4652E-05],[197.60948,-5.259E-05]]}
-{"quant":[198.119,-5.3121E-05],"mems":[[198.02073,-5.4652E-05],[198.02392,-5.4137E-05],[198.0271,-5.1559E-05],[198.03029,-4.8981E-05],[198.03348,-5.2074E-05],[198.03667,-5.259E-05],[198.03986,-4.795E-05],[198.04304,-4.8465E-05],[198.04623,-5.259E-05],[198.04942,-5.2074E-05],[198.05261,-5.6199E-05],[198.0558,-5.723E-05],[198.05898,-4.9497E-05],[198.06217,-5.259E-05],[198.06536,-5.9293E-05],[198.06855,-5.4652E-05],[198.07174,-5.259E-05],[198.07492,-5.1559E-05],[198.07811,-4.9497E-05],[198.0813,-5.1043E-05],[198.08449,-5.259E-05],[198.08768,-5.4137E-05],[198.09086,-5.3621E-05],[198.09405,-5.3106E-05],[198.09724,-5.1043E-05],[198.10043,-4.9497E-05],[198.10362,-5.5684E-05],[198.1068,-5.4652E-05],[198.10999,-5.259E-05],[198.11318,-5.723E-05],[198.11637,-5.5684E-05],[198.11956,-5.0528E-05],[198.12274,-5.1559E-05],[198.12593,-5.4137E-05],[198.12912,-5.259E-05],[198.13231,-5.1043E-05],[198.1355,-4.9497E-05],[198.13868,-4.8981E-05],[198.14187,-5.3106E-05],[198.14506,-5.4652E-05],[198.14825,-5.3106E-05],[198.15144,-5.1559E-05],[198.15462,-4.8465E-05],[198.15781,-4.8465E-05],[198.161,-5.259E-05],[198.16419,-5.4652E-05],[198.16738,-5.3106E-05],[198.17056,-5.1043E-05],[198.17375,-5.0012E-05],[198.17694,-4.795E-05],[198.18013,-5.3106E-05],[198.18332,-5.5684E-05],[198.1865,-5.2074E-05],[198.18969,-5.1559E-05],[198.19288,-5.2074E-05],[198.19607,-5.5684E-05],[198.19926,-5.5168E-05],[198.20244,-5.5684E-05],[198.20563,-5.723E-05],[198.20882,-5.5684E-05],[198.21201,-5.723E-05],[198.2152,-5.7746E-05],[198.21838,-5.8262E-05],[198.22157,-5.8777E-05],[198.22476,-5.8262E-05],[198.22795,-5.3621E-05],[198.23114,-5.0528E-05],[198.23432,-5.1559E-05],[198.23751,-5.1043E-05],[198.2407,-5.5168E-05],[198.24389,-5.4652E-05],[198.24708,-4.9497E-05],[198.25026,-4.8465E-05],[198.25345,-5.4652E-05],[198.25664,-5.8777E-05],[198.25983,-5.0528E-05],[198.26302,-4.6919E-05],[198.2662,-5.1043E-05],[198.26939,-5.1043E-05],[198.27258,-5.259E-05],[198.27577,-5.3621E-05],[198.27896,-5.1043E-05],[198.28214,-5.2074E-05],[198.28533,-5.259E-05],[198.28852,-5.2074E-05],[198.29171,-5.6199E-05],[198.2949,-5.8777E-05],[198.29808,-5.6715E-05],[198.30127,-5.3106E-05],[198.30446,-5.1559E-05],[198.30765,-5.2074E-05],[198.31084,-5.2074E-05],[198.31402,-5.3621E-05],[198.31721,-5.259E-05],[198.3204,-5.1043E-05]]}
-{"quant":[198.628,-5.2864E-05],"mems":[[198.53081,-5.3106E-05],[198.534,-5.2074E-05],[198.53718,-5.259E-05],[198.54037,-5.259E-05],[198.54356,-5.3106E-05],[198.54675,-5.1559E-05],[198.54994,-5.3621E-05],[198.55312,-5.5684E-05],[198.55631,-5.4137E-05],[198.5595,-5.0012E-05],[198.56269,-4.6403E-05],[198.56588,-5.0012E-05],[198.56906,-5.3621E-05],[198.57225,-5.3106E-05],[198.57544,-5.1043E-05],[198.57863,-5.1559E-05],[198.58182,-5.259E-05],[198.585,-5.259E-05],[198.58819,-5.7746E-05],[198.59138,-5.5168E-05],[198.59457,-4.8465E-05],[198.59776,-5.259E-05],[198.60094,-5.5684E-05],[198.60413,-5.259E-05],[198.60732,-5.2074E-05],[198.61051,-5.6715E-05],[198.6137,-5.6715E-05],[198.61688,-4.8465E-05],[198.62007,-4.9497E-05],[198.62326,-5.3106E-05],[198.62645,-5.1043E-05],[198.62964,-5.5168E-05],[198.63282,-5.0528E-05],[198.63601,-4.6919E-05],[198.6392,-5.5684E-05],[198.64239,-5.5684E-05],[198.64558,-5.6199E-05],[198.64876,-5.4137E-05],[198.65195,-5.0012E-05],[198.65514,-5.1559E-05],[198.65833,-5.0528E-05],[198.66152,-5.3106E-05],[198.6647,-5.3106E-05],[198.66789,-5.3621E-05],[198.67108,-5.4652E-05],[198.67427,-5.0012E-05],[198.67746,-5.1043E-05],[198.68064,-5.1043E-05],[198.68383,-5.0012E-05],[198.68702,-5.2074E-05],[198.69021,-5.259E-05],[198.6934,-5.1043E-05],[198.69658,-5.2074E-05],[198.69977,-5.8777E-05],[198.70296,-5.6199E-05],[198.70615,-5.4652E-05],[198.70934,-5.259E-05],[198.71252,-5.1043E-05],[198.71571,-5.8777E-05],[198.7189,-5.5168E-05],[198.72209,-5.1559E-05],[198.72528,-5.3106E-05],[198.72846,-4.8981E-05],[198.73165,-4.8981E-05],[198.73484,-5.3621E-05],[198.73803,-5.1559E-05],[198.74122,-4.9497E-05],[198.7444,-5.0528E-05],[198.74759,-5.0528E-05],[198.75078,-5.3621E-05],[198.75397,-5.1559E-05],[198.75716,-4.8981E-05],[198.76034,-5.4652E-05],[198.76353,-5.259E-05],[198.76672,-5.0012E-05],[198.76991,-5.3621E-05],[198.7731,-5.6715E-05],[198.77628,-5.0528E-05],[198.77947,-4.8465E-05],[198.78266,-5.259E-05],[198.78585,-5.0528E-05],[198.78904,-5.4137E-05],[198.79222,-5.6199E-05],[198.79541,-5.3621E-05],[198.7986,-5.259E-05],[198.80179,-4.7434E-05],[198.80498,-5.2074E-05],[198.80816,-5.4652E-05],[198.81135,-5.0012E-05],[198.81454,-5.0012E-05],[198.81773,-4.7434E-05],[198.82092,-4.795E-05],[198.8241,-5.4137E-05],[198.82729,-5.3106E-05],[198.83048,-5.2074E-05]]}
-{"quant":[199.116,-5.3337E-05],"mems":[[199.01727,-5.5168E-05],[199.02076,-5.3106E-05],[199.02425,-5.1043E-05],[199.02773,-4.795E-05],[199.03122,-4.9497E-05],[199.03471,-5.259E-05],[199.03819,-5.259E-05],[199.04168,-5.4137E-05],[199.04517,-4.9497E-05],[199.04865,-4.9497E-05],[199.05214,-5.1559E-05],[199.05563,-5.1559E-05],[199.05911,-5.5684E-05],[199.0626,-5.2074E-05],[199.06609,-5.2074E-05],[199.06957,-5.5168E-05],[199.07306,-5.2074E-05],[199.07655,-5.1043E-05],[199.08003,-5.1559E-05],[199.08352,-5.4652E-05],[199.08701,-5.4652E-05],[199.09049,-5.0528E-05],[199.09398,-5.1043E-05],[199.09747,-5.259E-05],[199.10095,-5.259E-05],[199.10444,-4.9497E-05],[199.10793,-5.0528E-05],[199.11141,-5.259E-05],[199.1149,-5.4137E-05],[199.11839,-5.8262E-05],[199.12187,-5.4652E-05],[199.12536,-5.4137E-05],[199.12885,-5.5168E-05],[199.13233,-4.9497E-05],[199.13582,-5.1559E-05],[199.13931,-5.4137E-05],[199.14279,-5.1043E-05],[199.14628,-5.1559E-05],[199.14977,-5.4137E-05],[199.15325,-5.3106E-05],[199.15674,-5.5684E-05],[199.16023,-5.3106E-05],[199.16371,-5.0528E-05],[199.1672,-5.3106E-05],[199.17069,-5.0528E-05],[199.17417,-5.259E-05],[199.17766,-5.4652E-05],[199.18115,-5.6199E-05],[199.18463,-5.3106E-05],[199.18812,-4.5887E-05],[199.19161,-4.7434E-05],[199.19509,-5.4652E-05],[199.19858,-5.8262E-05],[199.20207,-6.0324E-05],[199.20555,-5.7746E-05],[199.20904,-5.0012E-05],[199.21253,-5.2074E-05],[199.21601,-5.3621E-05],[199.2195,-5.6715E-05],[199.22299,-5.9808E-05],[199.22647,-5.4652E-05],[199.22996,-5.6199E-05],[199.23345,-5.3106E-05],[199.23693,-4.6919E-05],[199.24042,-5.3106E-05],[199.24391,-5.9293E-05],[199.24739,-5.5684E-05],[199.25088,-5.1559E-05],[199.25437,-5.4137E-05],[199.25785,-5.4652E-05],[199.26134,-5.5168E-05],[199.26483,-5.5168E-05],[199.26831,-5.3621E-05],[199.2718,-5.0012E-05],[199.27529,-4.6403E-05],[199.27877,-4.9497E-05],[199.28226,-5.4652E-05],[199.28575,-5.723E-05],[199.28923,-5.6199E-05],[199.29272,-5.3621E-05],[199.29621,-5.3621E-05],[199.29969,-5.3621E-05],[199.30318,-5.2074E-05],[199.30667,-5.5168E-05],[199.31015,-5.3621E-05],[199.31364,-4.795E-05],[199.31713,-5.1559E-05]]}
-{"quant":[199.939,-5.2178E-05],"mems":[[199.84013,-5.0012E-05],[199.84361,-5.0012E-05],[199.8471,-5.2074E-05],[199.85059,-5.1559E-05],[199.85407,-5.1043E-05],[199.85756,-5.0528E-05],[199.86105,-4.9497E-05],[199.86453,-4.8465E-05],[199.86802,-5.4652E-05],[199.87151,-5.6715E-05],[199.87499,-5.5684E-05],[199.87848,-5.4652E-05],[199.88197,-5.2074E-05],[199.88545,-5.259E-05],[199.88894,-5.4652E-05],[199.89243,-5.6199E-05],[199.89591,-5.6199E-05],[199.8994,-5.4137E-05],[199.90289,-5.0012E-05],[199.90637,-5.5684E-05],[199.90986,-5.6199E-05],[199.91335,-5.4652E-05],[199.91683,-5.5684E-05],[199.92032,-4.795E-05],[199.92381,-5.259E-05],[199.92729,-5.723E-05],[199.93078,-5.8262E-05],[199.93427,-5.8262E-05],[199.93775,-5.1043E-05],[199.94124,-5.0012E-05],[199.94473,-5.0012E-05],[199.94821,-5.1043E-05],[199.9517,-5.1559E-05],[199.95519,-5.0528E-05],[199.95867,-5.259E-05],[199.96216,-5.3106E-05],[199.96565,-4.8465E-05],[199.96913,-4.8465E-05],[199.97262,-5.259E-05],[199.97611,-5.4137E-05],[199.97959,-5.4137E-05],[199.98308,-5.1559E-05],[199.98657,-5.259E-05],[199.99005,-5.259E-05],[199.99354,-5.4137E-05],[199.99703,-5.6715E-05],[200.00051,-5.2074E-05],[200.004,-5.1559E-05],[200.00749,-4.8981E-05],[200.01097,-5.1559E-05],[200.01446,-5.5684E-05],[200.01795,-5.1043E-05],[200.02143,-5.1559E-05],[200.02492,-5.1043E-05],[200.02841,-5.0012E-05],[200.03189,-5.259E-05],[200.03538,-5.6715E-05],[200.03887,-5.723E-05],[200.04235,-5.1043E-05],[200.04584,-4.795E-05],[200.04933,-4.8981E-05],[200.05281,-5.6199E-05],[200.0563,-5.6715E-05],[200.05979,-5.1559E-05],[200.06327,-4.8981E-05],[200.06676,-4.795E-05],[200.07025,-5.1559E-05],[200.07373,-5.5168E-05],[200.07722,-5.6715E-05],[200.08071,-5.259E-05],[200.08419,-5.0528E-05],[200.08768,-5.4137E-05],[200.09117,-5.4652E-05],[200.09465,-5.4137E-05],[200.09814,-5.2074E-05],[200.10163,-5.0012E-05],[200.10511,-4.9497E-05],[200.1086,-5.2074E-05],[200.11209,-5.2074E-05],[200.11557,-5.3106E-05],[200.11906,-5.3621E-05],[200.12255,-5.5168E-05],[200.12603,-5.259E-05],[200.12952,-4.6919E-05],[200.13301,-5.259E-05],[200.13649,-5.5168E-05],[200.13998,-5.3621E-05]]}
-{"quant":[200.467,-5.3209E-05],"mems":[[200.3701,-5.2074E-05],[200.37359,-5.1043E-05],[200.37707,-5.0012E-05],[200.38056,-5.0528E-05],[200.38405,-5.259E-05],[200.38753,-4.8981E-05],[200.39102,-5.259E-05],[200.39451,-5.3106E-05],[200.39799,-5.3106E-05],[200.40148,-5.2074E-05],[200.40497,-5.1043E-05],[200.40845,-5.3621E-05],[200.41194,-5.5684E-05],[200.41543,-5.9293E-05],[200.41891,-5.3106E-05],[200.4224,-5.2074E-05],[200.42589,-5.4652E-05],[200.42937,-5.0012E-05],[200.43286,-5.1043E-05],[200.43635,-5.4652E-05],[200.43983,-5.6715E-05],[200.44332,-5.0528E-05],[200.44681,-4.6919E-05],[200.45029,-5.5168E-05],[200.45378,-5.4137E-05],[200.45727,-5.1559E-05],[200.46075,-5.3106E-05],[200.46424,-5.4137E-05],[200.46773,-5.4137E-05],[200.47121,-5.3106E-05],[200.4747,-5.3621E-05],[200.47819,-5.6715E-05],[200.48167,-5.6715E-05],[200.48516,-5.259E-05],[200.48865,-5.1559E-05],[200.49213,-5.1559E-05],[200.49562,-5.1559E-05],[200.49911,-5.4137E-05],[200.50259,-5.259E-05],[200.50608,-5.3106E-05],[200.50957,-5.5684E-05],[200.51305,-5.3106E-05],[200.51654,-5.5168E-05],[200.52003,-5.4652E-05],[200.52351,-5.0528E-05],[200.527,-5.4652E-05],[200.53049,-5.1043E-05],[200.53397,-5.1559E-05],[200.53746,-5.5684E-05],[200.54095,-5.3106E-05],[200.54443,-5.259E-05],[200.54792,-5.4137E-05],[200.55141,-5.3621E-05],[200.55489,-5.259E-05],[200.55838,-5.5684E-05],[200.56187,-5.259E-05],[200.56535,-4.9497E-05],[200.56884,-4.8981E-05],[200.57233,-4.6919E-05],[200.57581,-4.795E-05],[200.5793,-5.0528E-05],[200.58279,-5.723E-05],[200.58627,-5.8777E-05],[200.58976,-5.3106E-05],[200.59325,-5.0528E-05],[200.59673,-5.3621E-05],[200.60022,-5.3106E-05],[200.60371,-4.9497E-05],[200.60719,-5.3106E-05],[200.61068,-5.5168E-05],[200.61417,-5.2074E-05],[200.61765,-5.5168E-05],[200.62114,-5.8777E-05],[200.62463,-5.7746E-05],[200.62811,-5.4652E-05],[200.6316,-5.1043E-05],[200.63509,-5.2074E-05],[200.63857,-5.4137E-05],[200.64206,-5.2074E-05],[200.64555,-5.5168E-05],[200.64903,-5.9808E-05],[200.65252,-5.6199E-05],[200.65601,-5.5684E-05],[200.65949,-5.6199E-05],[200.66298,-5.0528E-05],[200.66647,-5.4137E-05],[200.66995,-5.4652E-05]]}
-{"quant":[200.947,-5.2264E-05],"mems":[[200.84777,-5.0012E-05],[200.85126,-5.3106E-05],[200.85475,-5.259E-05],[200.85823,-5.3621E-05],[200.86172,-4.9497E-05],[200.86521,-5.1043E-05],[200.86869,-5.3621E-05],[200.87218,-5.259E-05],[200.87567,-5.1559E-05],[200.87915,-4.7434E-05],[200.88264,-4.7434E-05],[200.88613,-5.0012E-05],[200.88961,-4.8981E-05],[200.8931,-5.259E-05],[200.89659,-5.259E-05],[200.90007,-4.5887E-05],[200.90356,-5.0528E-05],[200.90705,-5.4137E-05],[200.91053,-5.4652E-05],[200.91402,-5.5168E-05],[200.91751,-4.8465E-05],[200.92099,-4.8465E-05],[200.92448,-5.5684E-05],[200.92797,-5.5168E-05],[200.93145,-5.3621E-05],[200.93494,-5.3106E-05],[200.93843,-5.4652E-05],[200.94191,-5.7746E-05],[200.9454,-5.3106E-05],[200.94889,-5.4137E-05],[200.95237,-5.5168E-05],[200.95586,-5.1043E-05],[200.95935,-4.7434E-05],[200.96283,-4.795E-05],[200.96632,-5.2074E-05],[200.96981,-5.2074E-05],[200.97329,-5.5168E-05],[200.97678,-5.3106E-05],[200.98027,-5.0528E-05],[200.98375,-5.5168E-05],[200.98724,-5.723E-05],[200.99073,-5.4137E-05],[200.99421,-4.9497E-05],[200.9977,-4.8465E-05],[201.00119,-5.1043E-05],[201.00467,-5.5168E-05],[201.00816,-5.8777E-05],[201.01165,-5.4137E-05],[201.01513,-5.2074E-05],[201.01862,-5.1559E-05],[201.02211,-4.6919E-05],[201.02559,-5.259E-05],[201.02908,-5.2074E-05],[201.03257,-5.1559E-05],[201.03605,-5.3106E-05],[201.03954,-4.8465E-05],[201.04303,-5.4137E-05],[201.04651,-5.2074E-05],[201.05,-5.1043E-05],[201.05349,-5.5168E-05],[201.05697,-5.1559E-05],[201.06046,-5.4137E-05],[201.06395,-5.3106E-05],[201.06743,-5.259E-05],[201.07092,-5.259E-05],[201.07441,-5.0012E-05],[201.07789,-5.4137E-05],[201.08138,-5.6715E-05],[201.08487,-5.5684E-05],[201.08835,-5.1559E-05],[201.09184,-5.6715E-05],[201.09533,-5.723E-05],[201.09881,-5.1043E-05],[201.1023,-5.5684E-05],[201.10579,-5.3106E-05],[201.10927,-5.2074E-05],[201.11276,-5.3621E-05],[201.11625,-5.259E-05],[201.11973,-5.1559E-05],[201.12322,-4.8981E-05],[201.12671,-5.3106E-05],[201.13019,-5.3106E-05],[201.13368,-5.6715E-05],[201.13717,-5.6199E-05],[201.14065,-5.3106E-05],[201.14414,-5.5168E-05],[201.14763,-5.4137E-05]]}
-{"quant":[201.438,-1.7936],"mems":[[201.34985,-5.259E-05],[201.35334,-5.1043E-05],[201.35683,-5.1559E-05],[201.36031,-5.2074E-05],[201.3638,-4.795E-05],[201.36729,-5.3106E-05],[201.37077,-5.723E-05],[201.37426,-5.5168E-05],[201.37775,-5.1559E-05],[201.38123,-5.3621E-05],[201.38472,-5.4137E-05],[201.38821,-5.4652E-05],[201.39169,-5.4652E-05],[201.39518,-5.259E-05],[201.39867,-5.5168E-05],[201.40215,-4.795E-05],[201.40564,-5.0012E-05],[201.40913,-5.4652E-05],[201.41261,-5.1043E-05],[201.4161,-5.4652E-05],[201.41959,-5.4652E-05],[201.42307,-5.4137E-05],[201.42656,-5.259E-05],[201.43005,-5.4652E-05],[201.43353,-5.4652E-05],[201.43702,-5.259E-05],[201.44051,-5.5168E-05],[201.44399,-5.5168E-05],[201.44748,-5.6199E-05],[201.45097,-5.3106E-05],[201.45445,-5.2074E-05],[201.45794,-5.2074E-05],[201.46143,-5.2074E-05],[201.46491,-5.4652E-05],[201.4684,-4.9497E-05],[201.47189,-5.2074E-05],[201.47537,-5.5684E-05],[201.47886,-5.2074E-05],[201.48235,-5.2074E-05],[201.48583,-5.2074E-05],[201.48932,-5.2074E-05],[201.49281,-5.4652E-05],[201.49629,-5.4137E-05],[201.49978,-5.2074E-05],[201.50327,-5.3106E-05],[201.50675,-5.1559E-05],[201.51024,-5.3106E-05],[201.51373,-5.7746E-05],[201.51721,-5.8777E-05],[201.5207,-5.6199E-05],[201.52419,-5.3106E-05],[201.52767,-5.5684E-05],[201.53116,-5.723E-05],[201.53465,-5.7746E-05],[201.53813,-5.3621E-05],[201.54162,-5.259E-05],[201.54511,-5.6199E-05],[201.54859,-5.5168E-05],[201.55208,-5.6715E-05],[201.55557,-5.5684E-05],[201.55905,-5.1559E-05],[201.56254,-5.0528E-05],[201.56603,-4.8981E-05],[201.56951,-5.0528E-05],[201.573,-5.1043E-05],[201.57642,-4.8981E-05],[201.57983,-5.3621E-05],[201.58325,-5.259E-05],[201.58667,-4.8465E-05],[201.59009,-4.8981E-05],[201.5935,-5.4652E-05],[201.59692,-5.6199E-05],[201.60034,-5.3621E-05],[201.60376,-5.0528E-05],[201.60717,-5.0528E-05],[201.61059,-5.6199E-05],[201.61401,-5.6715E-05],[201.61743,-5.8262E-05],[201.62084,-5.259E-05],[201.62426,-4.8981E-05],[201.62768,-5.5684E-05],[201.63109,-5.3106E-05],[201.63451,-5.1043E-05],[201.63793,-5.3106E-05],[201.64135,-5.0528E-05],[201.64476,-4.9497E-05],[201.64818,-5.1559E-05],[201.6516,-5.3106E-05]]}
-{"quant":[201.91,-5.2418E-05],"mems":[[201.81221,-5.5684E-05],[201.81563,-5.6715E-05],[201.81905,-4.8981E-05],[201.82247,-4.9497E-05],[201.82588,-5.0012E-05],[201.8293,-5.1043E-05],[201.83272,-5.6199E-05],[201.83613,-5.5168E-05],[201.83955,-5.3106E-05],[201.84297,-4.8465E-05],[201.84639,-5.0528E-05],[201.8498,-5.5684E-05],[201.85322,-5.6715E-05],[201.85664,-5.8777E-05],[201.86006,-5.259E-05],[201.86347,-4.795E-05],[201.86689,-5.0528E-05],[201.87031,-5.0528E-05],[201.87373,-5.4137E-05],[201.87714,-5.4652E-05],[201.88056,-5.1043E-05],[201.88398,-5.2074E-05],[201.88739,-5.3106E-05],[201.89081,-5.4137E-05],[201.89423,-5.4652E-05],[201.89765,-5.4137E-05],[201.90106,-5.1043E-05],[201.90448,-4.7434E-05],[201.9079,-5.1559E-05],[201.91132,-5.3106E-05],[201.91473,-5.1559E-05],[201.91815,-5.4652E-05],[201.92157,-5.3106E-05],[201.92499,-5.0528E-05],[201.9284,-5.3106E-05],[201.93182,-5.4652E-05],[201.93524,-5.5168E-05],[201.93865,-5.6199E-05],[201.94207,-5.3106E-05],[201.94549,-4.5887E-05],[201.94891,-5.1043E-05],[201.95232,-5.723E-05],[201.95574,-5.3621E-05],[201.95916,-5.3106E-05],[201.96258,-5.3106E-05],[201.96599,-5.1043E-05],[201.96941,-5.4137E-05],[201.97283,-5.6715E-05],[201.97625,-5.259E-05],[201.97966,-5.259E-05],[201.98308,-5.259E-05],[201.9865,-5.259E-05],[201.98991,-5.0012E-05],[201.99333,-4.8981E-05],[201.99675,-5.1559E-05],[202.00017,-4.8465E-05],[202.00358,-4.8465E-05],[202.007,-5.1559E-05],[202.01042,-5.2074E-05],[202.01384,-5.0012E-05],[202.01725,-4.8465E-05],[202.02067,-4.7434E-05],[202.02409,-4.795E-05],[202.02751,-5.259E-05],[202.03092,-5.259E-05],[202.03434,-5.3106E-05],[202.03776,-5.3106E-05],[202.04117,-5.1559E-05],[202.04459,-5.3106E-05],[202.04801,-5.723E-05],[202.05143,-5.7746E-05],[202.05484,-5.0528E-05],[202.05826,-5.259E-05],[202.06168,-5.6199E-05],[202.0651,-5.259E-05],[202.06851,-5.8777E-05],[202.07193,-5.8777E-05],[202.07535,-4.9497E-05],[202.07877,-4.8465E-05],[202.08218,-5.1559E-05],[202.0856,-5.1559E-05],[202.08902,-5.0012E-05],[202.09243,-5.3106E-05],[202.09585,-5.4137E-05],[202.09927,-5.259E-05],[202.10269,-5.259E-05],[202.1061,-5.1559E-05],[202.10952,-5.6715E-05],[202.11294,-5.5168E-05]]}
-{"quant":[202.403,-5.3438E-05],"mems":[[202.30431,-5.3106E-05],[202.30773,-5.6199E-05],[202.31114,-5.4652E-05],[202.31456,-5.3106E-05],[202.31798,-5.1559E-05],[202.3214,-5.3106E-05],[202.32481,-5.3621E-05],[202.32823,-5.4137E-05],[202.33165,-5.5168E-05],[202.33507,-5.5684E-05],[202.33848,-5.3621E-05],[202.3419,-5.0012E-05],[202.34532,-5.4652E-05],[202.34873,-5.7746E-05],[202.35215,-5.3106E-05],[202.35557,-5.1043E-05],[202.35899,-4.8981E-05],[202.3624,-5.2074E-05],[202.36582,-5.3106E-05],[202.36924,-4.6919E-05],[202.37266,-5.4652E-05],[202.37607,-5.3621E-05],[202.37949,-5.0012E-05],[202.38291,-5.6199E-05],[202.38633,-5.1043E-05],[202.38974,-4.6403E-05],[202.39316,-5.2074E-05],[202.39658,-5.4137E-05],[202.39999,-5.259E-05],[202.40341,-5.5168E-05],[202.40683,-5.5168E-05],[202.41025,-5.1043E-05],[202.41366,-4.9497E-05],[202.41708,-5.259E-05],[202.4205,-5.259E-05],[202.42392,-5.4137E-05],[202.42733,-6.0324E-05],[202.43075,-5.7746E-05],[202.43417,-5.4137E-05],[202.43759,-5.0528E-05],[202.441,-5.0528E-05],[202.44442,-5.5168E-05],[202.44784,-5.259E-05],[202.45125,-4.8981E-05],[202.45467,-5.3621E-05],[202.45809,-5.3621E-05],[202.46151,-5.4137E-05],[202.46492,-5.5684E-05],[202.46834,-4.795E-05],[202.47176,-5.1559E-05],[202.47518,-5.8262E-05],[202.47859,-5.5684E-05],[202.48201,-5.3621E-05],[202.48543,-5.5168E-05],[202.48885,-5.5168E-05],[202.49226,-5.259E-05],[202.49568,-5.259E-05],[202.4991,-4.9497E-05],[202.50251,-5.1559E-05],[202.50593,-5.5684E-05],[202.50935,-5.3621E-05],[202.51277,-5.8777E-05],[202.51618,-5.5168E-05],[202.5196,-5.259E-05],[202.52302,-5.5684E-05],[202.52644,-5.3106E-05],[202.52985,-5.8777E-05],[202.53327,-5.6715E-05],[202.53669,-4.8981E-05],[202.54011,-5.0528E-05],[202.54352,-5.3106E-05],[202.54694,-5.3621E-05],[202.55036,-5.2074E-05],[202.55377,-5.0012E-05],[202.55719,-4.8981E-05],[202.56061,-4.9497E-05],[202.56403,-5.0528E-05],[202.56744,-5.2074E-05],[202.57086,-5.2074E-05],[202.57428,-5.0528E-05],[202.5777,-5.1559E-05],[202.58111,-5.2074E-05],[202.58453,-5.4137E-05],[202.58795,-5.5168E-05],[202.59137,-5.5684E-05],[202.59478,-5.5684E-05],[202.5982,-5.2074E-05],[202.60162,-5.259E-05],[202.60503,-5.3106E-05]]}
-{"quant":[203.067,-5.2539E-05],"mems":[[202.96727,-5.4652E-05],[202.97069,-5.6715E-05],[202.97411,-5.3106E-05],[202.97752,-5.0528E-05],[202.98094,-5.5168E-05],[202.98436,-5.5168E-05],[202.98778,-5.3106E-05],[202.99119,-5.1559E-05],[202.99461,-5.2074E-05],[202.99803,-4.8465E-05],[203.00145,-5.0528E-05],[203.00486,-5.2074E-05],[203.00828,-5.0528E-05],[203.0117,-5.3106E-05],[203.01511,-5.1559E-05],[203.01853,-5.4652E-05],[203.02195,-5.4137E-05],[203.02537,-5.3106E-05],[203.02878,-5.3621E-05],[203.0322,-5.0528E-05],[203.03562,-5.5684E-05],[203.03904,-5.259E-05],[203.04245,-5.259E-05],[203.04587,-5.9293E-05],[203.04929,-5.723E-05],[203.05271,-5.0528E-05],[203.05612,-5.0012E-05],[203.05954,-5.9293E-05],[203.06296,-5.8262E-05],[203.06637,-5.3621E-05],[203.06979,-5.3621E-05],[203.07321,-5.259E-05],[203.07663,-5.0528E-05],[203.08004,-5.0528E-05],[203.08346,-5.723E-05],[203.08688,-5.8262E-05],[203.0903,-5.3106E-05],[203.09371,-4.8981E-05],[203.09713,-5.3106E-05],[203.10055,-5.8262E-05],[203.10397,-5.259E-05],[203.10738,-4.9497E-05],[203.1108,-5.0528E-05],[203.11422,-4.9497E-05],[203.11763,-5.2074E-05],[203.12105,-5.3621E-05],[203.12447,-5.3106E-05],[203.12789,-5.5168E-05],[203.1313,-5.4137E-05],[203.13472,-5.1559E-05],[203.13814,-5.3106E-05],[203.14156,-5.3106E-05],[203.14497,-5.3106E-05],[203.14839,-5.3106E-05],[203.15181,-5.1559E-05],[203.15523,-4.9497E-05],[203.15864,-4.5887E-05],[203.16206,-5.0528E-05],[203.16548,-5.4652E-05],[203.16889,-5.3621E-05],[203.17231,-5.1043E-05],[203.17573,-5.1043E-05],[203.17915,-5.3106E-05],[203.18256,-5.0012E-05],[203.18598,-5.3621E-05],[203.1894,-5.7746E-05],[203.19282,-5.4652E-05],[203.19623,-5.4652E-05],[203.19965,-5.4137E-05],[203.20307,-5.3106E-05],[203.20649,-5.3106E-05],[203.2099,-5.259E-05],[203.21332,-5.1559E-05],[203.21674,-4.8465E-05],[203.22015,-5.5168E-05],[203.22357,-5.8777E-05],[203.22699,-5.1043E-05],[203.23041,-5.1043E-05],[203.23382,-5.259E-05],[203.23724,-5.1559E-05],[203.24066,-5.3106E-05],[203.24408,-5.1043E-05],[203.24749,-5.0012E-05],[203.25091,-5.3621E-05],[203.25433,-5.1043E-05],[203.25775,-4.8465E-05],[203.26116,-5.3621E-05],[203.26458,-5.6715E-05],[203.268,-5.4137E-05]]}
-{"quant":[203.532,-5.381E-05],"mems":[[203.43203,-5.259E-05],[203.43545,-5.259E-05],[203.43886,-5.2074E-05],[203.44228,-5.1043E-05],[203.4457,-5.4137E-05],[203.44912,-5.6199E-05],[203.45253,-5.1559E-05],[203.45595,-5.7746E-05],[203.45937,-5.723E-05],[203.46279,-5.6199E-05],[203.4662,-5.5684E-05],[203.46962,-5.2074E-05],[203.47304,-5.5168E-05],[203.47645,-5.3106E-05],[203.47987,-5.259E-05],[203.48329,-5.4137E-05],[203.48671,-5.259E-05],[203.49012,-4.8981E-05],[203.49354,-4.9497E-05],[203.49696,-5.259E-05],[203.50038,-5.4652E-05],[203.50379,-5.723E-05],[203.50721,-5.4652E-05],[203.51063,-5.259E-05],[203.51405,-5.4652E-05],[203.51746,-5.5684E-05],[203.52088,-5.5168E-05],[203.5243,-5.5168E-05],[203.52771,-5.5684E-05],[203.53113,-5.3106E-05],[203.53455,-5.4652E-05],[203.53797,-5.6199E-05],[203.54138,-5.6199E-05],[203.5448,-5.4137E-05],[203.54822,-5.0012E-05],[203.55164,-5.0012E-05],[203.55505,-5.0012E-05],[203.55847,-5.3621E-05],[203.56189,-5.1043E-05],[203.56531,-5.0012E-05],[203.56872,-5.6199E-05],[203.57214,-5.1559E-05],[203.57556,-5.259E-05],[203.57897,-5.8262E-05],[203.58239,-5.8262E-05],[203.58581,-5.8262E-05],[203.58923,-5.6715E-05],[203.59264,-5.0528E-05],[203.59606,-5.259E-05],[203.59948,-5.6199E-05],[203.6029,-5.0528E-05],[203.60631,-4.9497E-05],[203.60973,-5.3106E-05],[203.61315,-5.3621E-05],[203.61657,-5.4137E-05],[203.61998,-5.4137E-05],[203.6234,-5.4652E-05],[203.62682,-5.5684E-05],[203.63023,-5.5168E-05],[203.63365,-5.6715E-05],[203.63707,-5.6715E-05],[203.64049,-5.2074E-05],[203.6439,-5.723E-05],[203.64732,-5.3106E-05],[203.65074,-4.8465E-05],[203.65416,-5.4137E-05],[203.65757,-5.0012E-05],[203.66099,-5.1559E-05],[203.66441,-5.3621E-05],[203.66783,-4.9497E-05],[203.67124,-4.9497E-05],[203.67466,-5.0012E-05],[203.67808,-5.0528E-05],[203.68149,-5.4652E-05],[203.68491,-5.0528E-05],[203.68833,-4.3825E-05],[203.69175,-5.1559E-05],[203.69516,-5.3106E-05],[203.69858,-5.2074E-05],[203.702,-5.2074E-05],[203.70542,-4.8981E-05],[203.70883,-5.3106E-05],[203.71225,-5.3621E-05],[203.71567,-5.4137E-05],[203.71909,-5.6199E-05],[203.7225,-5.4137E-05],[203.72592,-5.3106E-05],[203.72934,-5.5684E-05],[203.73275,-5.5684E-05]]}
-{"quant":[204.012,-1.3411],"mems":[[203.91387,-5.2074E-05],[203.91729,-5.6715E-05],[203.92071,-5.3621E-05],[203.92413,-5.1043E-05],[203.92754,-5.4137E-05],[203.93096,-5.0528E-05],[203.93438,-4.8465E-05],[203.93779,-5.4652E-05],[203.94121,-5.4137E-05],[203.94463,-5.259E-05],[203.94805,-5.3106E-05],[203.95146,-5.0012E-05],[203.95488,-5.3106E-05],[203.9583,-5.3106E-05],[203.96172,-5.0012E-05],[203.96513,-5.3621E-05],[203.96855,-5.4652E-05],[203.97197,-5.3621E-05],[203.97539,-5.4137E-05],[203.9788,-5.3106E-05],[203.98222,-5.3621E-05],[203.98564,-5.0528E-05],[203.98905,-4.8465E-05],[203.99247,-5.5168E-05],[203.99589,-5.4137E-05],[203.99931,-5.3106E-05],[204.00272,-5.2074E-05],[204.00614,-5.0012E-05],[204.00956,-4.9497E-05],[204.01298,-4.7434E-05],[204.01639,-5.5168E-05],[204.01981,-5.6199E-05],[204.02323,-5.4652E-05],[204.02665,-5.4652E-05],[204.03006,-5.259E-05],[204.03348,-5.5684E-05],[204.0369,-5.5684E-05],[204.04031,-5.259E-05],[204.04373,-5.3621E-05],[204.04715,-5.3106E-05],[204.05057,-5.0012E-05],[204.05398,-5.4652E-05],[204.0574,-5.8262E-05],[204.06082,-5.4652E-05],[204.06424,-5.0012E-05],[204.06765,-4.5372E-05],[204.07107,-4.795E-05],[204.07449,-5.1043E-05],[204.07791,-5.4652E-05],[204.08132,-5.6715E-05],[204.08474,-5.3621E-05],[204.08816,-5.3621E-05],[204.09157,-5.0012E-05],[204.09499,-5.1559E-05],[204.09841,-5.5168E-05],[204.10183,-5.4652E-05],[204.10524,-5.259E-05],[204.10866,-4.8465E-05],[204.11208,-5.1043E-05],[204.1155,-4.8465E-05],[204.11891,-4.8465E-05],[204.12233,-5.2074E-05],[204.12575,-5.0528E-05],[204.12917,-5.3106E-05],[204.13258,-5.4137E-05],[204.136,-5.7746E-05],[204.13949,-5.4137E-05],[204.14298,-5.0528E-05],[204.14646,-4.9497E-05],[204.14995,-5.1043E-05],[204.15344,-5.7746E-05],[204.15693,-5.2074E-05],[204.16042,-5.3106E-05],[204.1639,-5.6199E-05],[204.16739,-5.1043E-05],[204.17088,-5.3106E-05],[204.17437,-5.5168E-05],[204.17786,-5.5684E-05],[204.18134,-5.1559E-05],[204.18483,-5.1043E-05],[204.18832,-5.6199E-05],[204.19181,-5.4137E-05],[204.1953,-5.5684E-05],[204.19878,-5.723E-05],[204.20227,-5.1043E-05],[204.20576,-5.1043E-05],[204.20925,-5.6199E-05],[204.21274,-5.3106E-05]]}
-{"quant":[204.502,-5.3484E-05],"mems":[[204.40458,-5.1043E-05],[204.40806,-5.4137E-05],[204.41155,-5.3106E-05],[204.41504,-5.3621E-05],[204.41853,-5.0528E-05],[204.42202,-4.8981E-05],[204.4255,-5.3621E-05],[204.42899,-4.8465E-05],[204.43248,-5.3621E-05],[204.43597,-5.0528E-05],[204.43946,-4.6919E-05],[204.44294,-5.6199E-05],[204.44643,-5.259E-05],[204.44992,-5.3106E-05],[204.45341,-5.259E-05],[204.4569,-5.4137E-05],[204.46038,-6.0839E-05],[204.46387,-5.6715E-05],[204.46736,-5.5684E-05],[204.47085,-5.4137E-05],[204.47434,-5.2074E-05],[204.47782,-5.4652E-05],[204.48131,-5.1559E-05],[204.4848,-5.0012E-05],[204.48829,-5.1559E-05],[204.49178,-5.0012E-05],[204.49526,-5.3621E-05],[204.49875,-5.6199E-05],[204.50224,-5.5684E-05],[204.50573,-5.6199E-05],[204.50922,-5.3106E-05],[204.5127,-5.259E-05],[204.51619,-5.7746E-05],[204.51968,-5.6199E-05],[204.52317,-5.3621E-05],[204.52666,-5.3106E-05],[204.53014,-5.259E-05],[204.53363,-5.3106E-05],[204.53712,-5.1043E-05],[204.54061,-5.6199E-05],[204.5441,-5.6715E-05],[204.54758,-5.0528E-05],[204.55107,-5.259E-05],[204.55456,-5.259E-05],[204.55805,-5.5684E-05],[204.56154,-5.7746E-05],[204.56502,-5.4652E-05],[204.56851,-5.259E-05],[204.572,-5.3106E-05],[204.57549,-5.0012E-05],[204.57898,-5.1043E-05],[204.58246,-5.4137E-05],[204.58595,-5.0528E-05],[204.58944,-5.1559E-05],[204.59293,-5.1559E-05],[204.59642,-5.723E-05],[204.5999,-5.3621E-05],[204.60339,-4.7434E-05],[204.60688,-5.4652E-05],[204.61037,-5.3106E-05],[204.61386,-5.3621E-05],[204.61734,-5.4652E-05],[204.62083,-5.3621E-05],[204.62432,-5.4137E-05],[204.62781,-5.4652E-05],[204.6313,-5.6199E-05],[204.63478,-5.3106E-05],[204.63827,-5.723E-05],[204.64176,-5.2074E-05],[204.64525,-4.8465E-05],[204.64874,-5.6715E-05],[204.65222,-5.1559E-05],[204.65571,-5.1043E-05],[204.6592,-5.4652E-05],[204.66269,-5.6199E-05],[204.66618,-5.6199E-05],[204.66966,-5.3621E-05],[204.67315,-5.9293E-05],[204.67664,-5.5684E-05],[204.68013,-5.0528E-05],[204.68362,-5.6199E-05],[204.6871,-5.3621E-05],[204.69059,-5.0012E-05],[204.69408,-5.0012E-05],[204.69757,-5.3106E-05],[204.70106,-5.259E-05],[204.70454,-5.3621E-05]]}
-{"quant":[205.251,-5.4498E-05],"mems":[[205.15101,-5.5168E-05],[205.1545,-5.1043E-05],[205.15798,-5.3106E-05],[205.16147,-5.4137E-05],[205.16496,-4.9497E-05],[205.16845,-5.3106E-05],[205.17194,-5.259E-05],[205.17542,-5.3621E-05],[205.17891,-5.4137E-05],[205.1824,-4.9497E-05],[205.18589,-5.1043E-05],[205.18938,-5.0528E-05],[205.19286,-5.5684E-05],[205.19635,-5.4652E-05],[205.19984,-4.8465E-05],[205.20333,-5.3106E-05],[205.20682,-5.3106E-05],[205.2103,-5.5684E-05],[205.21379,-5.7746E-05],[205.21728,-5.6199E-05],[205.22077,-5.259E-05],[205.22426,-5.1559E-05],[205.22774,-5.4652E-05],[205.23123,-5.3106E-05],[205.23472,-5.6715E-05],[205.23821,-5.8262E-05],[205.2417,-5.5684E-05],[205.24518,-5.3621E-05],[205.24867,-5.6715E-05],[205.25216,-6.4964E-05],[205.25565,-5.8262E-05],[205.25914,-5.4652E-05],[205.26262,-5.3621E-05],[205.26611,-5.1043E-05],[205.2696,-5.6715E-05],[205.27309,-5.8262E-05],[205.27658,-5.6199E-05],[205.28006,-5.3621E-05],[205.28355,-5.3621E-05],[205.28704,-5.3621E-05],[205.29053,-5.5168E-05],[205.29402,-5.5168E-05],[205.2975,-5.259E-05],[205.30099,-5.4137E-05],[205.30448,-5.0528E-05],[205.30797,-5.3106E-05],[205.31146,-5.4652E-05],[205.31494,-5.3621E-05],[205.31843,-5.723E-05],[205.32192,-5.3106E-05],[205.32541,-5.2074E-05],[205.3289,-5.0528E-05],[205.33238,-5.2074E-05],[205.33587,-5.6199E-05],[205.33936,-5.4652E-05],[205.34285,-5.6715E-05],[205.34634,-5.5168E-05],[205.34982,-5.1559E-05],[205.35331,-5.2074E-05],[205.3568,-5.1559E-05],[205.36029,-5.5684E-05],[205.36378,-5.4137E-05],[205.36726,-5.1043E-05],[205.37075,-5.4137E-05],[205.37424,-5.5168E-05],[205.37773,-5.4652E-05],[205.38122,-4.9497E-05],[205.3847,-4.8465E-05],[205.38819,-4.7434E-05],[205.39168,-5.3106E-05],[205.39517,-5.5684E-05],[205.39866,-5.1043E-05],[205.40214,-5.2074E-05],[205.40563,-4.7434E-05],[205.40912,-5.3621E-05],[205.41261,-5.6715E-05],[205.4161,-5.1559E-05],[205.41958,-5.2074E-05],[205.42307,-5.3621E-05],[205.42656,-5.259E-05],[205.43005,-5.0528E-05],[205.43354,-5.4652E-05],[205.43702,-5.259E-05],[205.44051,-5.3106E-05],[205.444,-5.259E-05],[205.44749,-5.259E-05],[205.45098,-5.723E-05],[205.45446,-5.5684E-05]]}
-{"quant":[205.729,-5.2607E-05],"mems":[[205.63235,-5.259E-05],[205.63584,-5.4652E-05],[205.63933,-5.4652E-05],[205.64282,-5.6199E-05],[205.6463,-5.1559E-05],[205.64979,-4.795E-05],[205.65328,-4.9497E-05],[205.65677,-5.1043E-05],[205.66026,-5.3621E-05],[205.66374,-5.5684E-05],[205.66723,-5.0528E-05],[205.67072,-5.1559E-05],[205.67421,-5.6199E-05],[205.6777,-5.723E-05],[205.68118,-5.8777E-05],[205.68467,-5.4652E-05],[205.68816,-5.3621E-05],[205.69165,-5.3106E-05],[205.69514,-5.0528E-05],[205.69862,-5.0528E-05],[205.70211,-5.0012E-05],[205.7056,-5.2074E-05],[205.70909,-4.9497E-05],[205.71258,-5.1559E-05],[205.71606,-5.5168E-05],[205.71955,-5.259E-05],[205.72304,-5.5168E-05],[205.72653,-5.3621E-05],[205.73002,-5.0012E-05],[205.7335,-5.4652E-05],[205.73699,-5.4652E-05],[205.74048,-5.5168E-05],[205.74397,-5.5168E-05],[205.74746,-5.0012E-05],[205.75094,-5.0528E-05],[205.75443,-5.3106E-05],[205.75792,-5.4137E-05],[205.76141,-5.5684E-05],[205.7649,-5.259E-05],[205.76838,-5.1043E-05],[205.77187,-5.0012E-05],[205.77536,-4.9497E-05],[205.77885,-5.1043E-05],[205.78234,-5.4137E-05],[205.78582,-5.5168E-05],[205.78931,-4.795E-05],[205.7928,-4.795E-05],[205.79629,-5.3106E-05],[205.79978,-5.2074E-05],[205.80326,-5.1043E-05],[205.80675,-5.259E-05],[205.81024,-5.8262E-05],[205.81373,-5.2074E-05],[205.81722,-5.1043E-05],[205.8207,-5.7746E-05],[205.82419,-5.3621E-05],[205.82768,-5.2074E-05],[205.83117,-5.2074E-05],[205.83466,-5.1043E-05],[205.83814,-5.259E-05],[205.84163,-5.259E-05],[205.84512,-5.259E-05],[205.84861,-5.3106E-05],[205.8521,-5.1559E-05],[205.85558,-5.5168E-05],[205.85907,-5.5684E-05],[205.86256,-4.6919E-05],[205.86605,-5.3106E-05],[205.86954,-5.5168E-05],[205.87302,-5.1559E-05],[205.87651,-5.2074E-05],[205.88,-5.0012E-05],[205.88349,-5.259E-05],[205.88698,-5.1043E-05],[205.89046,-5.0528E-05],[205.89395,-5.0012E-05],[205.89744,-5.3106E-05],[205.90093,-5.4137E-05],[205.90442,-5.1559E-05],[205.9079,-5.5168E-05],[205.91139,-4.5887E-05],[205.91488,-4.4341E-05],[205.91837,-5.3621E-05],[205.92186,-5.0012E-05],[205.92534,-5.1559E-05],[205.92883,-5.7746E-05],[205.93232,-6.0324E-05]]}
-{"quant":[206.197,-5.3587E-05],"mems":[[206.09974,-4.9497E-05],[206.10323,-5.6199E-05],[206.10672,-5.5684E-05],[206.11021,-5.3106E-05],[206.1137,-5.1043E-05],[206.11718,-5.2074E-05],[206.12067,-5.6715E-05],[206.12416,-5.6715E-05],[206.12765,-5.6199E-05],[206.13114,-5.4652E-05],[206.13462,-4.795E-05],[206.13811,-4.7434E-05],[206.1416,-5.2074E-05],[206.14509,-4.9497E-05],[206.14858,-4.5887E-05],[206.15206,-5.3106E-05],[206.15555,-5.723E-05],[206.15904,-5.1043E-05],[206.16253,-5.0012E-05],[206.16602,-5.0528E-05],[206.1695,-4.6403E-05],[206.17299,-4.8465E-05],[206.17648,-5.1043E-05],[206.17997,-5.1559E-05],[206.18346,-5.6715E-05],[206.18694,-5.4652E-05],[206.19043,-5.259E-05],[206.19392,-5.2074E-05],[206.19741,-4.9497E-05],[206.2009,-5.5168E-05],[206.20438,-5.8262E-05],[206.20787,-5.5684E-05],[206.21136,-5.8777E-05],[206.21485,-5.4652E-05],[206.21834,-4.795E-05],[206.22182,-5.6199E-05],[206.22531,-5.7746E-05],[206.2288,-4.9497E-05],[206.23229,-5.1043E-05],[206.23578,-4.8465E-05],[206.23926,-5.0012E-05],[206.24275,-5.723E-05],[206.24624,-5.7746E-05],[206.24973,-5.6715E-05],[206.25322,-5.3106E-05],[206.2567,-5.3106E-05],[206.26019,-5.3106E-05],[206.26368,-5.2074E-05],[206.26717,-5.5684E-05],[206.27066,-5.1043E-05],[206.27414,-5.3106E-05],[206.27763,-5.6715E-05],[206.28112,-5.1043E-05],[206.28461,-5.259E-05],[206.2881,-5.4137E-05],[206.29158,-5.259E-05],[206.29507,-5.3106E-05],[206.29856,-5.1559E-05],[206.30205,-5.2074E-05],[206.30554,-5.6199E-05],[206.30902,-5.6199E-05],[206.31251,-5.4652E-05],[206.316,-5.259E-05],[206.31949,-4.8465E-05],[206.32298,-5.3106E-05],[206.32646,-5.4652E-05],[206.32995,-5.4652E-05],[206.33344,-5.6715E-05],[206.33693,-5.4652E-05],[206.34042,-5.5684E-05],[206.3439,-5.1043E-05],[206.34739,-5.0012E-05],[206.35088,-5.4652E-05],[206.35437,-5.6715E-05],[206.35786,-5.723E-05],[206.36134,-5.259E-05],[206.36483,-5.2074E-05],[206.36832,-5.259E-05],[206.37181,-5.3621E-05],[206.3753,-5.3106E-05],[206.37878,-5.1559E-05],[206.38227,-5.4652E-05],[206.38576,-5.3621E-05],[206.38925,-5.1043E-05],[206.39274,-5.2074E-05],[206.39622,-5.259E-05],[206.39971,-5.1043E-05]]}
-{"quant":[206.742,-0.90269],"mems":[[206.69968,-5.4652E-05],[206.70317,-5.3106E-05],[206.70666,-5.5684E-05],[206.71014,-5.5684E-05],[206.71363,-5.1559E-05],[206.71712,-5.723E-05],[206.72061,-5.6199E-05],[206.7241,-5.0012E-05],[206.72758,-5.3106E-05],[206.73107,-5.5168E-05],[206.73456,-5.5168E-05],[206.73805,-5.6199E-05],[206.74154,-5.4652E-05],[206.74502,-5.3106E-05],[206.74851,-5.4137E-05],[206.752,-5.6199E-05],[206.75536,-5.5684E-05],[206.75871,-5.723E-05],[206.76207,-5.5168E-05],[206.76543,-5.1043E-05],[206.76879,-5.2074E-05],[206.77214,-5.259E-05],[206.7755,-5.259E-05],[206.77886,-5.2074E-05],[206.78222,-5.259E-05],[206.78557,-5.1559E-05],[206.78893,-5.4652E-05],[206.79229,-5.6715E-05],[206.79565,-5.259E-05],[206.799,-5.3106E-05],[206.80236,-5.2074E-05],[206.80572,-4.9497E-05],[206.80907,-5.4137E-05],[206.81243,-5.8262E-05],[206.81579,-5.4652E-05],[206.81915,-5.3621E-05],[206.8225,-5.3106E-05],[206.82586,-5.2074E-05],[206.82922,-5.6199E-05],[206.83258,-5.2074E-05],[206.83593,-5.259E-05],[206.83929,-5.6199E-05],[206.84265,-5.2074E-05],[206.84601,-5.259E-05],[206.84936,-5.1559E-05],[206.85272,-5.259E-05],[206.85608,-5.3106E-05],[206.85943,-5.5168E-05],[206.86279,-5.8262E-05],[206.86615,-5.4652E-05],[206.86951,-5.7746E-05],[206.87286,-6.0324E-05],[206.87622,-5.2074E-05],[206.87958,-5.2074E-05],[206.88294,-5.5168E-05],[206.88629,-4.8465E-05],[206.88965,-5.259E-05],[206.89301,-5.6715E-05],[206.89637,-5.4137E-05],[206.89972,-5.5168E-05],[206.90308,-5.4652E-05],[206.90644,-5.5168E-05],[206.90979,-5.1043E-05],[206.91315,-5.1043E-05],[206.91651,-4.6403E-05],[206.91987,-4.6403E-05],[206.92322,-5.3621E-05],[206.92658,-5.0012E-05],[206.92994,-5.723E-05],[206.9333,-5.4652E-05],[206.93665,-4.9497E-05],[206.94001,-5.259E-05],[206.94337,-5.0012E-05],[206.94673,-5.1043E-05],[206.95008,-5.1043E-05],[206.95344,-5.3621E-05],[206.9568,-5.1559E-05],[206.96015,-5.0528E-05],[206.96351,-5.6199E-05],[206.96687,-5.6199E-05],[206.97023,-5.4137E-05],[206.97358,-5.6199E-05],[206.97694,-5.5168E-05],[206.9803,-4.8981E-05],[206.98366,-4.9497E-05],[206.98701,-5.4652E-05],[206.99037,-5.6199E-05],[206.99373,-5.1043E-05]]}
-{"quant":[207.258,-5.2856E-05],"mems":[[207.15824,-5.1559E-05],[207.16159,-5.259E-05],[207.16495,-5.0012E-05],[207.16831,-5.0528E-05],[207.17167,-5.5684E-05],[207.17502,-5.6715E-05],[207.17838,-5.4137E-05],[207.18174,-5.4652E-05],[207.1851,-5.5684E-05],[207.18845,-5.0012E-05],[207.19181,-4.8465E-05],[207.19517,-5.4652E-05],[207.19853,-5.4652E-05],[207.20188,-5.6199E-05],[207.20524,-5.8262E-05],[207.2086,-5.259E-05],[207.21195,-4.9497E-05],[207.21531,-5.5168E-05],[207.21867,-5.1559E-05],[207.22203,-4.8465E-05],[207.22538,-5.6715E-05],[207.22874,-5.4137E-05],[207.2321,-4.7434E-05],[207.23546,-4.9497E-05],[207.23881,-5.3621E-05],[207.24217,-5.7746E-05],[207.24553,-5.723E-05],[207.24889,-5.4652E-05],[207.25224,-5.259E-05],[207.2556,-5.6715E-05],[207.25896,-5.6715E-05],[207.26231,-5.1043E-05],[207.26567,-5.2074E-05],[207.26903,-5.4652E-05],[207.27239,-5.1043E-05],[207.27574,-5.0528E-05],[207.2791,-5.6715E-05],[207.28246,-5.6199E-05],[207.28582,-5.3621E-05],[207.28917,-5.0528E-05],[207.29253,-4.795E-05],[207.29589,-5.3106E-05],[207.29925,-5.4137E-05],[207.3026,-4.9497E-05],[207.30596,-4.8981E-05],[207.30932,-5.2074E-05],[207.31267,-5.5168E-05],[207.31603,-5.7746E-05],[207.31939,-5.5684E-05],[207.32275,-5.5684E-05],[207.3261,-5.6199E-05],[207.32946,-5.1043E-05],[207.33282,-5.1043E-05],[207.33618,-5.2074E-05],[207.33953,-5.3621E-05],[207.34289,-5.2074E-05],[207.34625,-4.7434E-05],[207.34961,-5.0012E-05],[207.35296,-5.259E-05],[207.35632,-5.4652E-05],[207.35968,-5.4652E-05],[207.36303,-5.4652E-05],[207.36639,-5.4137E-05],[207.36975,-5.1559E-05],[207.37311,-5.6199E-05],[207.37646,-5.6199E-05],[207.37982,-5.3621E-05],[207.38318,-5.259E-05],[207.38654,-5.1043E-05],[207.38989,-5.1043E-05],[207.39325,-5.2074E-05],[207.39661,-5.723E-05],[207.39997,-5.4652E-05],[207.40332,-5.259E-05],[207.40668,-5.3621E-05],[207.41004,-5.1559E-05],[207.41339,-5.4652E-05],[207.41675,-5.5168E-05],[207.42011,-5.3621E-05],[207.42347,-5.3106E-05],[207.42682,-5.1043E-05],[207.43018,-5.259E-05],[207.43354,-5.7746E-05],[207.4369,-5.8262E-05],[207.44025,-5.3621E-05],[207.44361,-4.9497E-05],[207.44697,-5.1559E-05],[207.45033,-5.6715E-05],[207.45368,-5.8777E-05],[207.45704,-5.3621E-05],[207.4604,-4.8981E-05]]}
-{"quant":[207.959,-5.2557E-05],"mems":[[207.85992,-4.5372E-05],[207.86328,-5.0528E-05],[207.86663,-5.2074E-05],[207.86999,-5.1559E-05],[207.87335,-5.259E-05],[207.87671,-4.9497E-05],[207.88006,-5.6199E-05],[207.88342,-5.5168E-05],[207.88678,-5.1559E-05],[207.89014,-5.2074E-05],[207.89349,-4.6403E-05],[207.89685,-5.2074E-05],[207.90021,-5.2074E-05],[207.90357,-5.1043E-05],[207.90692,-5.8262E-05],[207.91028,-5.2074E-05],[207.91364,-4.9497E-05],[207.91699,-5.2074E-05],[207.92035,-5.0528E-05],[207.92371,-5.4137E-05],[207.92707,-5.259E-05],[207.93042,-4.8465E-05],[207.93378,-5.0012E-05],[207.93714,-5.259E-05],[207.9405,-5.723E-05],[207.94385,-5.6715E-05],[207.94721,-5.6715E-05],[207.95057,-5.6199E-05],[207.95393,-5.3106E-05],[207.95728,-5.2074E-05],[207.96064,-5.259E-05],[207.964,-5.4137E-05],[207.96735,-5.2074E-05],[207.97071,-5.0528E-05],[207.97407,-5.0012E-05],[207.97743,-5.1559E-05],[207.98078,-5.3106E-05],[207.98414,-5.2074E-05],[207.9875,-5.1559E-05],[207.99086,-5.0528E-05],[207.99421,-5.1559E-05],[207.99757,-4.8981E-05],[208.00093,-4.795E-05],[208.00429,-5.2074E-05],[208.00764,-5.5168E-05],[208.011,-5.1559E-05],[208.01436,-5.0012E-05],[208.01771,-5.1043E-05],[208.02107,-5.4652E-05],[208.02443,-5.4137E-05],[208.02779,-5.1043E-05],[208.03114,-5.5684E-05],[208.0345,-5.2074E-05],[208.03786,-5.1559E-05],[208.04122,-5.8262E-05],[208.04457,-6.0839E-05],[208.04793,-5.8262E-05],[208.05129,-4.8981E-05],[208.05465,-5.2074E-05],[208.058,-5.4137E-05],[208.06136,-5.1043E-05],[208.06472,-5.259E-05],[208.06807,-5.2074E-05],[208.07143,-5.1043E-05],[208.07479,-5.259E-05],[208.07815,-5.4137E-05],[208.0815,-5.6199E-05],[208.08486,-5.5684E-05],[208.08822,-5.3621E-05],[208.09158,-5.5168E-05],[208.09493,-5.4137E-05],[208.09829,-5.1559E-05],[208.10165,-5.0528E-05],[208.10501,-5.0012E-05],[208.10836,-5.2074E-05],[208.11172,-5.1043E-05],[208.11508,-5.3106E-05],[208.11843,-5.4652E-05],[208.12179,-5.4652E-05],[208.12515,-5.7746E-05],[208.12851,-5.1043E-05],[208.13186,-4.6919E-05],[208.13522,-5.1559E-05],[208.13858,-5.1559E-05],[208.14194,-5.0012E-05],[208.14529,-5.0528E-05],[208.14865,-4.9497E-05],[208.15201,-5.0528E-05],[208.15537,-5.5684E-05],[208.15872,-5.5168E-05],[208.16208,-5.3106E-05]]}
-{"quant":[208.44,-5.3555E-05],"mems":[[208.34002,-4.795E-05],[208.34338,-4.9497E-05],[208.34673,-5.0012E-05],[208.35009,-5.0012E-05],[208.35345,-5.3621E-05],[208.35681,-5.3106E-05],[208.36016,-5.5168E-05],[208.36352,-5.2074E-05],[208.36688,-5.1043E-05],[208.37023,-5.6199E-05],[208.37359,-5.8777E-05],[208.37695,-5.8777E-05],[208.38031,-5.5168E-05],[208.38366,-5.3621E-05],[208.38702,-5.1043E-05],[208.39038,-5.5168E-05],[208.39374,-5.3621E-05],[208.39709,-5.1559E-05],[208.40045,-5.4137E-05],[208.40381,-5.3106E-05],[208.40717,-5.5684E-05],[208.41052,-5.4652E-05],[208.41388,-5.2074E-05],[208.41724,-5.259E-05],[208.42059,-5.4137E-05],[208.42395,-5.259E-05],[208.42731,-5.3106E-05],[208.43067,-5.3621E-05],[208.43402,-5.4137E-05],[208.43738,-5.4137E-05],[208.44074,-5.4137E-05],[208.4441,-5.4652E-05],[208.44745,-5.3106E-05],[208.45081,-5.4652E-05],[208.45417,-5.6715E-05],[208.45753,-5.6199E-05],[208.46088,-5.3621E-05],[208.46424,-5.3621E-05],[208.4676,-5.259E-05],[208.47095,-5.259E-05],[208.47431,-5.259E-05],[208.47767,-5.1559E-05],[208.48103,-5.1559E-05],[208.48438,-5.259E-05],[208.48774,-5.6199E-05],[208.4911,-5.2074E-05],[208.49446,-5.2074E-05],[208.49781,-5.6199E-05],[208.50117,-5.1559E-05],[208.50453,-5.1043E-05],[208.50789,-5.5168E-05],[208.51124,-5.6199E-05],[208.5146,-5.1559E-05],[208.51796,-4.5887E-05],[208.52131,-5.0528E-05],[208.52467,-5.6199E-05],[208.52803,-5.6715E-05],[208.53139,-5.7746E-05],[208.53474,-5.6715E-05],[208.5381,-5.3106E-05],[208.54146,-5.1043E-05],[208.54482,-5.3621E-05],[208.54817,-5.4137E-05],[208.55153,-5.259E-05],[208.55489,-4.8981E-05],[208.55825,-4.9497E-05],[208.5616,-5.5684E-05],[208.56496,-5.6199E-05],[208.56832,-5.259E-05],[208.57167,-5.259E-05],[208.57503,-5.1559E-05],[208.57839,-5.0012E-05],[208.58175,-5.5684E-05],[208.5851,-5.723E-05],[208.58846,-5.5168E-05],[208.59182,-5.3106E-05],[208.59518,-5.1043E-05],[208.59853,-5.5168E-05],[208.60189,-5.3621E-05],[208.60525,-4.9497E-05],[208.60861,-5.1559E-05],[208.61196,-5.6199E-05],[208.61532,-5.5684E-05],[208.61868,-5.3621E-05],[208.62203,-5.1559E-05],[208.62539,-5.2074E-05],[208.62875,-5.6199E-05],[208.63211,-5.0012E-05],[208.63546,-5.1559E-05],[208.63882,-5.8262E-05],[208.64218,-5.259E-05]]}
-{"quant":[208.929,-5.3538E-05],"mems":[[208.83019,-4.8981E-05],[208.83355,-5.6715E-05],[208.8369,-5.6199E-05],[208.84026,-4.8981E-05],[208.84362,-5.1559E-05],[208.84698,-5.0528E-05],[208.85033,-5.3106E-05],[208.85369,-5.5684E-05],[208.85705,-5.1559E-05],[208.86041,-5.2074E-05],[208.86376,-5.3621E-05],[208.86712,-5.2074E-05],[208.87048,-5.1559E-05],[208.87383,-4.7434E-05],[208.87719,-5.2074E-05],[208.88055,-6.0324E-05],[208.88391,-5.4652E-05],[208.88726,-5.1043E-05],[208.89062,-5.3106E-05],[208.89398,-5.1559E-05],[208.89734,-5.0012E-05],[208.90069,-4.9497E-05],[208.90405,-4.8981E-05],[208.90741,-5.2074E-05],[208.91077,-5.2074E-05],[208.91412,-5.0528E-05],[208.91748,-5.4652E-05],[208.92084,-5.259E-05],[208.92419,-5.1043E-05],[208.92755,-5.6199E-05],[208.93091,-5.5684E-05],[208.93427,-4.8465E-05],[208.93762,-5.3621E-05],[208.94098,-5.7746E-05],[208.94434,-5.259E-05],[208.9477,-5.0528E-05],[208.95105,-5.3106E-05],[208.95441,-5.7746E-05],[208.95777,-5.4652E-05],[208.96113,-5.4137E-05],[208.96448,-5.4137E-05],[208.96784,-5.2074E-05],[208.9712,-5.4137E-05],[208.97455,-5.4137E-05],[208.97791,-5.3106E-05],[208.98127,-5.3621E-05],[208.98463,-5.1559E-05],[208.98798,-4.8465E-05],[208.99134,-5.4652E-05],[208.9947,-6.0839E-05],[208.99806,-5.3106E-05],[209.00141,-5.1043E-05],[209.00477,-5.4652E-05],[209.00813,-5.259E-05],[209.01149,-4.8465E-05],[209.01484,-4.7434E-05],[209.0182,-5.6715E-05],[209.02156,-5.9293E-05],[209.02491,-5.259E-05],[209.02827,-5.4137E-05],[209.03163,-5.4652E-05],[209.03499,-5.2074E-05],[209.03834,-5.1043E-05],[209.0417,-5.3106E-05],[209.04506,-5.5684E-05],[209.04842,-5.4137E-05],[209.05177,-5.2074E-05],[209.05513,-5.259E-05],[209.05849,-5.1043E-05],[209.06185,-4.9497E-05],[209.0652,-5.1559E-05],[209.06856,-5.0012E-05],[209.07192,-4.9497E-05],[209.07527,-5.5168E-05],[209.07863,-5.7746E-05],[209.08199,-5.6199E-05],[209.08535,-5.259E-05],[209.0887,-5.0012E-05],[209.09206,-5.1559E-05],[209.09542,-5.3106E-05],[209.09878,-5.259E-05],[209.10213,-5.1043E-05],[209.10549,-5.259E-05],[209.10885,-5.4652E-05],[209.11221,-5.3621E-05],[209.11556,-5.0528E-05],[209.11892,-5.2074E-05],[209.12228,-5.259E-05],[209.12563,-5.1043E-05],[209.12899,-5.5168E-05],[209.13235,-5.723E-05]]}
-{"quant":[209.395,-5.271E-05],"mems":[[209.29769,-5.259E-05],[209.30115,-5.0528E-05],[209.30461,-5.2074E-05],[209.30807,-5.4137E-05],[209.31154,-5.5168E-05],[209.315,-5.6199E-05],[209.31846,-5.0012E-05],[209.32192,-4.9497E-05],[209.32538,-4.795E-05],[209.32884,-5.3621E-05],[209.3323,-5.6715E-05],[209.33577,-4.7434E-05],[209.33923,-5.0012E-05],[209.34269,-5.3621E-05],[209.34615,-5.4137E-05],[209.34961,-5.5168E-05],[209.35307,-5.5168E-05],[209.35653,-5.5684E-05],[209.35999,-5.6199E-05],[209.36346,-5.1559E-05],[209.36692,-4.8981E-05],[209.37038,-5.3621E-05],[209.37384,-5.4137E-05],[209.3773,-5.4137E-05],[209.38076,-5.1559E-05],[209.38422,-5.1043E-05],[209.38769,-5.4137E-05],[209.39115,-5.4652E-05],[209.39461,-5.3621E-05],[209.39807,-4.8981E-05],[209.40153,-5.1043E-05],[209.40499,-5.0528E-05],[209.40845,-5.1043E-05],[209.41191,-5.259E-05],[209.41538,-5.259E-05],[209.41884,-5.6199E-05],[209.4223,-4.9497E-05],[209.42576,-4.6919E-05],[209.42922,-5.3106E-05],[209.43268,-5.5684E-05],[209.43614,-5.5168E-05],[209.43961,-5.0528E-05],[209.44307,-4.6403E-05],[209.44653,-5.1043E-05],[209.44999,-5.3621E-05],[209.45345,-5.3106E-05],[209.45691,-5.2074E-05],[209.46037,-5.2074E-05],[209.46383,-5.3621E-05],[209.4673,-5.2074E-05],[209.47076,-5.5684E-05],[209.47422,-5.7746E-05],[209.47768,-5.4652E-05],[209.48114,-4.795E-05],[209.4846,-4.8981E-05],[209.48806,-5.8777E-05],[209.49153,-5.7746E-05],[209.49499,-5.6199E-05],[209.49845,-5.5684E-05],[209.50191,-5.1559E-05],[209.50537,-5.2074E-05],[209.50883,-5.3621E-05],[209.51229,-5.3106E-05],[209.51575,-5.0528E-05],[209.51922,-5.1043E-05],[209.52268,-5.3106E-05],[209.52614,-5.1043E-05],[209.5296,-5.259E-05],[209.53306,-5.3106E-05],[209.53652,-5.1043E-05],[209.53998,-5.0012E-05],[209.54345,-5.2074E-05],[209.54691,-5.4137E-05],[209.55037,-5.4652E-05],[209.55383,-5.4137E-05],[209.55729,-5.3621E-05],[209.56075,-5.723E-05],[209.56421,-5.6715E-05],[209.56767,-5.5168E-05],[209.57114,-5.4137E-05],[209.5746,-5.4137E-05],[209.57806,-5.4652E-05],[209.58152,-5.3106E-05],[209.58498,-5.259E-05],[209.58844,-5.6199E-05],[209.5919,-6.0324E-05],[209.59537,-5.8777E-05]]}
-{"quant":[210.223,-5.3398E-05],"mems":[[210.12495,-5.6199E-05],[210.12841,-5.5684E-05],[210.13187,-5.259E-05],[210.13533,-5.259E-05],[210.13879,-5.5684E-05],[210.14226,-4.8981E-05],[210.14572,-5.2074E-05],[210.14918,-5.4652E-05],[210.15264,-5.1043E-05],[210.1561,-5.6199E-05],[210.15956,-5.259E-05],[210.16302,-4.795E-05],[210.16649,-4.795E-05],[210.16995,-5.0528E-05],[210.17341,-5.0528E-05],[210.17687,-5.1559E-05],[210.18033,-5.5168E-05],[210.18379,-5.5684E-05],[210.18725,-5.6715E-05],[210.19071,-5.7746E-05],[210.19418,-5.8262E-05],[210.19764,-5.4652E-05],[210.2011,-5.5168E-05],[210.20456,-5.3621E-05],[210.20802,-5.1043E-05],[210.21148,-5.2074E-05],[210.21494,-5.1043E-05],[210.21841,-5.5684E-05],[210.22187,-5.6199E-05],[210.22533,-5.3106E-05],[210.22879,-5.2074E-05],[210.23225,-5.1559E-05],[210.23571,-5.3106E-05],[210.23917,-5.5684E-05],[210.24263,-5.5684E-05],[210.2461,-5.1559E-05],[210.24956,-5.1559E-05],[210.25302,-5.3621E-05],[210.25648,-5.4137E-05],[210.25994,-5.259E-05],[210.2634,-5.0012E-05],[210.26686,-5.1559E-05],[210.27033,-5.5168E-05],[210.27379,-5.3106E-05],[210.27725,-5.3106E-05],[210.28071,-5.723E-05],[210.28417,-5.6199E-05],[210.28763,-5.4652E-05],[210.29109,-5.4652E-05],[210.29455,-5.4137E-05],[210.29802,-5.1559E-05],[210.30148,-5.3106E-05],[210.30494,-5.4137E-05],[210.3084,-4.8465E-05],[210.31186,-5.1559E-05],[210.31532,-5.723E-05],[210.31878,-5.723E-05],[210.32225,-5.3106E-05],[210.32571,-5.1043E-05],[210.32917,-5.1559E-05],[210.33263,-5.5684E-05],[210.33609,-5.723E-05],[210.33955,-5.5168E-05],[210.34301,-5.6715E-05],[210.34647,-5.0012E-05],[210.34994,-5.1559E-05],[210.3534,-5.4652E-05],[210.35686,-5.1043E-05],[210.36032,-5.3621E-05],[210.36378,-5.1043E-05],[210.36724,-4.8465E-05],[210.3707,-4.795E-05],[210.37417,-5.1559E-05],[210.37763,-5.4652E-05],[210.38109,-5.2074E-05],[210.38455,-5.2074E-05],[210.38801,-5.4652E-05],[210.39147,-5.4137E-05],[210.39493,-5.4652E-05],[210.39839,-5.259E-05],[210.40186,-5.1559E-05],[210.40532,-5.4137E-05],[210.40878,-5.1043E-05],[210.41224,-4.8981E-05],[210.4157,-5.4652E-05],[210.41916,-5.7746E-05],[210.42262,-5.5168E-05],[210.42609,-5.3621E-05]]}
-{"quant":[210.728,-5.4996E-05],"mems":[[210.6303,-5.8777E-05],[210.63377,-5.3106E-05],[210.63723,-4.8981E-05],[210.64069,-5.3106E-05],[210.64415,-5.4652E-05],[210.64761,-5.3621E-05],[210.65107,-5.5168E-05],[210.65453,-5.8777E-05],[210.65799,-5.5168E-05],[210.66146,-5.3106E-05],[210.66492,-5.4652E-05],[210.66838,-5.1043E-05],[210.67184,-5.3621E-05],[210.6753,-5.6199E-05],[210.67876,-5.0012E-05],[210.68222,-5.3106E-05],[210.68569,-5.8262E-05],[210.68915,-5.3106E-05],[210.69261,-5.5168E-05],[210.69607,-5.4137E-05],[210.69953,-5.2074E-05],[210.70299,-5.3106E-05],[210.70645,-5.4137E-05],[210.70991,-5.5684E-05],[210.71338,-5.1559E-05],[210.71684,-5.3621E-05],[210.7203,-5.6199E-05],[210.72376,-5.3106E-05],[210.72722,-5.4137E-05],[210.73068,-5.3621E-05],[210.73414,-5.3621E-05],[210.73761,-5.6715E-05],[210.74107,-5.5684E-05],[210.74453,-5.6715E-05],[210.74799,-5.6199E-05],[210.75145,-5.4137E-05],[210.75491,-5.4137E-05],[210.75837,-5.5168E-05],[210.76183,-5.723E-05],[210.7653,-5.3621E-05],[210.76876,-5.5684E-05],[210.77222,-5.6715E-05],[210.77568,-5.3106E-05],[210.77914,-5.6199E-05],[210.7826,-5.4652E-05],[210.78606,-5.3621E-05],[210.78953,-5.4137E-05],[210.79299,-5.3106E-05],[210.79645,-5.4652E-05],[210.79991,-5.4137E-05],[210.80337,-5.6199E-05],[210.80683,-5.1043E-05],[210.81029,-5.3621E-05],[210.81375,-6.0839E-05],[210.81722,-5.3621E-05],[210.82068,-5.4137E-05],[210.82414,-5.6715E-05],[210.8276,-5.723E-05],[210.83106,-5.3621E-05],[210.83452,-5.2074E-05],[210.83798,-5.4137E-05],[210.84145,-5.0528E-05],[210.84491,-5.3106E-05],[210.84837,-4.9497E-05],[210.85183,-5.1043E-05],[210.85529,-5.4137E-05],[210.85875,-5.4652E-05],[210.86221,-5.723E-05],[210.86567,-5.4137E-05],[210.86914,-5.6715E-05],[210.8726,-5.4652E-05],[210.87606,-5.259E-05],[210.87952,-5.5684E-05],[210.88298,-5.259E-05],[210.88644,-4.9497E-05],[210.8899,-5.0012E-05],[210.89337,-5.3621E-05],[210.89683,-5.4652E-05],[210.90029,-5.259E-05],[210.90375,-5.5684E-05],[210.90721,-5.259E-05],[210.91067,-4.9497E-05],[210.91413,-5.5168E-05],[210.91759,-5.4652E-05],[210.92106,-5.5684E-05],[210.92452,-5.6715E-05],[210.92798,-5.1043E-05],[210.93144,-4.8981E-05]]}
-{"quant":[211.198,-5.3248E-05],"mems":[[211.10105,-5.723E-05],[211.10451,-5.6199E-05],[211.10797,-5.3106E-05],[211.11143,-5.4137E-05],[211.11489,-5.3621E-05],[211.11835,-5.6199E-05],[211.12181,-5.5684E-05],[211.12527,-5.259E-05],[211.12874,-5.3106E-05],[211.1322,-4.8465E-05],[211.13566,-5.4137E-05],[211.13912,-5.8262E-05],[211.14258,-5.6199E-05],[211.14604,-5.4652E-05],[211.1495,-5.2074E-05],[211.15297,-5.0012E-05],[211.15643,-5.0528E-05],[211.15989,-5.723E-05],[211.16335,-5.7746E-05],[211.16681,-5.7746E-05],[211.17027,-5.3621E-05],[211.17373,-4.6919E-05],[211.17719,-5.4137E-05],[211.18066,-5.3106E-05],[211.18412,-5.4137E-05],[211.18758,-5.4652E-05],[211.19104,-5.0012E-05],[211.1945,-5.1043E-05],[211.19796,-4.7434E-05],[211.20142,-5.4137E-05],[211.20489,-5.5684E-05],[211.20835,-5.1043E-05],[211.21181,-5.7746E-05],[211.21527,-5.5684E-05],[211.21873,-5.1043E-05],[211.22219,-5.3106E-05],[211.22565,-5.4652E-05],[211.22911,-5.723E-05],[211.23258,-5.5168E-05],[211.23604,-5.3106E-05],[211.2395,-5.7746E-05],[211.24296,-5.6199E-05],[211.24642,-5.4652E-05],[211.24988,-5.2074E-05],[211.25334,-5.0528E-05],[211.25681,-5.3106E-05],[211.26027,-5.0528E-05],[211.26373,-5.3106E-05],[211.26719,-5.2074E-05],[211.27065,-5.1043E-05],[211.27411,-5.0528E-05],[211.27757,-5.1559E-05],[211.28103,-5.6199E-05],[211.2845,-5.1043E-05],[211.28796,-5.1043E-05],[211.29142,-5.1559E-05],[211.29488,-4.9497E-05],[211.29834,-5.3106E-05],[211.3018,-5.4137E-05],[211.30526,-5.5168E-05],[211.30873,-5.3106E-05],[211.31219,-5.1559E-05],[211.31565,-5.2074E-05],[211.31911,-5.3621E-05],[211.32257,-5.8262E-05],[211.32603,-5.5684E-05],[211.32949,-5.1559E-05],[211.33295,-5.723E-05],[211.33642,-5.6199E-05],[211.33988,-5.259E-05],[211.34334,-5.4137E-05],[211.3468,-5.3106E-05],[211.35026,-5.5684E-05],[211.35372,-5.1043E-05],[211.35718,-5.1043E-05],[211.36065,-5.7746E-05],[211.36411,-5.3106E-05],[211.36757,-5.6715E-05],[211.37103,-5.6715E-05],[211.37449,-4.9497E-05],[211.37795,-5.1559E-05],[211.38141,-5.3621E-05],[211.38487,-5.3106E-05],[211.38834,-5.4652E-05],[211.3918,-5.3106E-05],[211.39526,-5.0528E-05],[211.39872,-5.1043E-05]]}
-{"quant":[211.679,-0.040733],"mems":[[211.59255,-5.3106E-05],[211.59602,-4.6403E-05],[211.59948,-5.0528E-05],[211.60294,-5.6199E-05],[211.6064,-5.2074E-05],[211.60986,-5.3106E-05],[211.61332,-5.6715E-05],[211.61678,-5.259E-05],[211.62025,-5.1043E-05],[211.62371,-5.3106E-05],[211.62717,-5.4652E-05],[211.63063,-5.1559E-05],[211.63409,-5.1043E-05],[211.63755,-5.5168E-05],[211.64101,-5.1043E-05],[211.64447,-5.1559E-05],[211.64794,-5.4652E-05],[211.6514,-5.4652E-05],[211.65486,-5.3621E-05],[211.65832,-5.3106E-05],[211.66178,-5.6199E-05],[211.66524,-5.4137E-05],[211.6687,-5.8777E-05],[211.67217,-5.8262E-05],[211.67563,-4.9497E-05],[211.67909,-5.3106E-05],[211.68255,-5.5684E-05],[211.68601,-5.4137E-05],[211.68947,-5.259E-05],[211.69293,-5.3621E-05],[211.69639,-5.3621E-05],[211.69986,-5.1043E-05],[211.70332,-5.4137E-05],[211.70678,-5.4137E-05],[211.71024,-5.4652E-05],[211.7137,-5.259E-05],[211.71716,-5.0528E-05],[211.72062,-5.5684E-05],[211.72409,-5.3106E-05],[211.72755,-5.3106E-05],[211.73101,-5.6199E-05],[211.73447,-5.8262E-05],[211.73793,-5.6715E-05],[211.74139,-5.3106E-05],[211.74485,-5.259E-05],[211.74831,-5.3106E-05],[211.75178,-5.5168E-05],[211.75524,-4.9497E-05],[211.7587,-5.0528E-05],[211.76216,-5.4652E-05],[211.76562,-5.5684E-05],[211.76908,-5.5684E-05],[211.77254,-5.5168E-05],[211.77601,-5.6199E-05],[211.77947,-5.2074E-05],[211.78293,-5.6199E-05],[211.78639,-5.3621E-05],[211.78985,-5.0528E-05],[211.79331,-5.5684E-05],[211.79677,-5.3621E-05],[211.80023,-5.6199E-05],[211.8037,-5.5168E-05],[211.80716,-5.4652E-05],[211.81062,-5.7746E-05],[211.81408,-5.3106E-05],[211.81754,-5.0528E-05],[211.821,-5.5168E-05],[211.82446,-5.8262E-05],[211.82793,-5.4652E-05],[211.83139,-5.5684E-05],[211.83485,-5.259E-05],[211.83831,-5.0528E-05],[211.84177,-5.4137E-05],[211.84523,-5.5684E-05],[211.84869,-5.723E-05],[211.85215,-5.3621E-05],[211.85562,-5.0528E-05],[211.85908,-5.1559E-05],[211.86254,-5.1559E-05],[211.866,-5.5684E-05],[211.86942,-5.3621E-05],[211.87283,-4.5372E-05],[211.87625,-4.9497E-05],[211.87966,-5.2074E-05],[211.88308,-5.0528E-05],[211.8865,-5.723E-05],[211.88991,-5.6715E-05],[211.89333,-5.3106E-05]]}
-{"quant":[212.157,-5.2899E-05],"mems":[[212.0573,-5.259E-05],[212.06071,-6.1871E-05],[212.06413,-5.4652E-05],[212.06754,-5.4137E-05],[212.07096,-5.5684E-05],[212.07438,-4.795E-05],[212.07779,-5.3106E-05],[212.08121,-5.8777E-05],[212.08462,-5.6715E-05],[212.08804,-5.1559E-05],[212.09146,-5.259E-05],[212.09487,-5.5684E-05],[212.09829,-5.5684E-05],[212.1017,-5.5168E-05],[212.10512,-5.4137E-05],[212.10854,-5.4652E-05],[212.11195,-5.1043E-05],[212.11537,-4.9497E-05],[212.11878,-5.1559E-05],[212.1222,-5.5684E-05],[212.12562,-5.259E-05],[212.12903,-5.4137E-05],[212.13245,-5.8777E-05],[212.13586,-5.6199E-05],[212.13928,-5.6199E-05],[212.1427,-5.3106E-05],[212.14611,-5.5168E-05],[212.14953,-5.6199E-05],[212.15294,-5.0528E-05],[212.15636,-5.1559E-05],[212.15978,-5.3621E-05],[212.16319,-5.4137E-05],[212.16661,-5.6199E-05],[212.17002,-5.4652E-05],[212.17344,-4.9497E-05],[212.17686,-5.3106E-05],[212.18027,-5.3106E-05],[212.18369,-5.0012E-05],[212.1871,-5.259E-05],[212.19052,-5.1559E-05],[212.19394,-5.3621E-05],[212.19735,-5.0528E-05],[212.20077,-5.1559E-05],[212.20418,-6.0324E-05],[212.2076,-5.6199E-05],[212.21102,-5.3621E-05],[212.21443,-5.259E-05],[212.21785,-4.795E-05],[212.22126,-5.0528E-05],[212.22468,-5.4137E-05],[212.2281,-5.4137E-05],[212.23151,-5.3106E-05],[212.23493,-5.4652E-05],[212.23834,-5.5684E-05],[212.24176,-5.1559E-05],[212.24518,-5.1043E-05],[212.24859,-5.5168E-05],[212.25201,-5.5168E-05],[212.25542,-5.0528E-05],[212.25884,-4.6403E-05],[212.26226,-5.3621E-05],[212.26567,-5.8262E-05],[212.26909,-5.6199E-05],[212.2725,-5.4652E-05],[212.27592,-5.3621E-05],[212.27934,-5.5168E-05],[212.28275,-5.2074E-05],[212.28617,-4.9497E-05],[212.28958,-5.2074E-05],[212.293,-5.0528E-05],[212.29642,-4.8465E-05],[212.29983,-5.2074E-05],[212.30325,-5.3621E-05],[212.30666,-5.1559E-05],[212.31008,-4.795E-05],[212.3135,-4.795E-05],[212.31691,-5.3106E-05],[212.32033,-5.3106E-05],[212.32374,-5.3106E-05],[212.32716,-5.5684E-05],[212.33058,-5.2074E-05],[212.33399,-4.8465E-05],[212.33741,-5.5684E-05],[212.34082,-5.6715E-05],[212.34424,-5.5684E-05],[212.34766,-5.7746E-05],[212.35107,-5.3106E-05],[212.35449,-5.4137E-05],[212.3579,-5.6199E-05]]}
-{"quant":[212.806,-5.3896E-05],"mems":[[212.70634,-5.259E-05],[212.70975,-5.5168E-05],[212.71317,-5.4137E-05],[212.71658,-5.6715E-05],[212.72,-5.5168E-05],[212.72342,-5.4652E-05],[212.72683,-5.4137E-05],[212.73025,-4.8465E-05],[212.73366,-5.0012E-05],[212.73708,-5.3106E-05],[212.7405,-5.259E-05],[212.74391,-5.7746E-05],[212.74733,-5.7746E-05],[212.75074,-5.0528E-05],[212.75416,-5.3621E-05],[212.75758,-5.4652E-05],[212.76099,-5.1559E-05],[212.76441,-4.9497E-05],[212.76782,-4.8981E-05],[212.77124,-5.2074E-05],[212.77466,-5.0012E-05],[212.77807,-4.795E-05],[212.78149,-5.3106E-05],[212.7849,-5.4137E-05],[212.78832,-5.4652E-05],[212.79174,-5.723E-05],[212.79515,-5.723E-05],[212.79857,-5.7746E-05],[212.80198,-5.6715E-05],[212.8054,-5.8262E-05],[212.80882,-5.6715E-05],[212.81223,-5.0012E-05],[212.81565,-5.5684E-05],[212.81906,-5.6715E-05],[212.82248,-5.2074E-05],[212.8259,-5.5684E-05],[212.82931,-5.2074E-05],[212.83273,-5.0528E-05],[212.83614,-5.9808E-05],[212.83956,-5.6715E-05],[212.84298,-5.4137E-05],[212.84639,-5.6199E-05],[212.84981,-5.4137E-05],[212.85322,-5.4137E-05],[212.85664,-5.1559E-05],[212.86006,-5.259E-05],[212.86347,-5.3106E-05],[212.86689,-4.9497E-05],[212.8703,-5.6715E-05],[212.87372,-5.8262E-05],[212.87714,-5.1559E-05],[212.88055,-5.4652E-05],[212.88397,-4.9497E-05],[212.88738,-4.8465E-05],[212.8908,-5.723E-05],[212.89422,-5.3621E-05],[212.89763,-5.4137E-05],[212.90105,-5.723E-05],[212.90446,-5.4652E-05],[212.90788,-4.9497E-05],[212.9113,-4.8465E-05],[212.91471,-5.259E-05],[212.91813,-5.6199E-05],[212.92154,-5.5168E-05],[212.92496,-5.259E-05],[212.92838,-5.3106E-05],[212.93179,-5.2074E-05],[212.93521,-5.4652E-05],[212.93862,-5.7746E-05],[212.94204,-5.8777E-05],[212.94546,-5.4652E-05],[212.94887,-5.2074E-05],[212.95229,-5.4652E-05],[212.9557,-5.4137E-05],[212.95912,-5.6199E-05],[212.96254,-5.6715E-05],[212.96595,-5.3621E-05],[212.96937,-5.1043E-05],[212.97278,-5.6199E-05],[212.9762,-5.6715E-05],[212.97962,-5.3621E-05],[212.98303,-5.1043E-05],[212.98645,-4.6919E-05],[212.98986,-4.9497E-05],[212.99328,-5.0012E-05],[212.9967,-5.5684E-05],[213.00011,-5.9293E-05],[213.00353,-5.5168E-05],[213.00694,-5.2074E-05]]}
-{"quant":[213.289,-5.3604E-05],"mems":[[213.19141,-5.4137E-05],[213.19482,-5.0528E-05],[213.19824,-5.0528E-05],[213.20166,-5.4652E-05],[213.20507,-4.9497E-05],[213.20849,-4.8465E-05],[213.2119,-5.3621E-05],[213.21532,-5.4137E-05],[213.21874,-5.5684E-05],[213.22215,-5.5168E-05],[213.22557,-5.3106E-05],[213.22898,-5.3621E-05],[213.2324,-5.5168E-05],[213.23582,-5.0012E-05],[213.23923,-5.259E-05],[213.24265,-5.3106E-05],[213.24606,-4.8465E-05],[213.24948,-5.6715E-05],[213.2529,-5.9293E-05],[213.25631,-5.7746E-05],[213.25973,-5.4652E-05],[213.26314,-5.4652E-05],[213.26656,-5.259E-05],[213.26998,-5.1559E-05],[213.27339,-5.3621E-05],[213.27681,-5.0528E-05],[213.28022,-5.4137E-05],[213.28364,-5.3621E-05],[213.28706,-5.0012E-05],[213.29047,-5.3621E-05],[213.29389,-5.6715E-05],[213.2973,-5.7746E-05],[213.30072,-5.5168E-05],[213.30414,-5.4137E-05],[213.30755,-4.8981E-05],[213.31097,-4.8981E-05],[213.31438,-5.9293E-05],[213.3178,-5.3106E-05],[213.32122,-5.1043E-05],[213.32463,-5.5168E-05],[213.32805,-4.795E-05],[213.33146,-5.0012E-05],[213.33488,-5.3106E-05],[213.3383,-5.4652E-05],[213.34171,-5.5168E-05],[213.34513,-5.3106E-05],[213.34854,-5.3621E-05],[213.35196,-5.4137E-05],[213.35538,-5.6199E-05],[213.35879,-5.259E-05],[213.36221,-5.0528E-05],[213.36562,-5.3621E-05],[213.36904,-5.4652E-05],[213.37246,-5.7746E-05],[213.37587,-5.723E-05],[213.37929,-5.259E-05],[213.3827,-5.3621E-05],[213.38612,-5.3106E-05],[213.38954,-5.0528E-05],[213.39295,-5.259E-05],[213.39637,-5.4137E-05],[213.39978,-5.6199E-05],[213.4032,-5.259E-05],[213.40662,-4.8465E-05],[213.41003,-5.1559E-05],[213.41345,-5.2074E-05],[213.41686,-5.2074E-05],[213.42028,-5.4652E-05],[213.4237,-5.4137E-05],[213.42711,-5.0528E-05],[213.43053,-5.2074E-05],[213.43394,-5.8262E-05],[213.43736,-5.5168E-05],[213.44078,-5.1559E-05],[213.44419,-5.5684E-05],[213.44761,-5.259E-05],[213.45102,-5.4137E-05],[213.45444,-5.9293E-05],[213.45786,-5.3621E-05],[213.46127,-5.3621E-05],[213.46469,-5.5168E-05],[213.4681,-5.3106E-05],[213.47152,-5.259E-05],[213.47494,-5.7746E-05],[213.47835,-5.4137E-05],[213.48177,-4.7434E-05],[213.48518,-5.3106E-05],[213.4886,-5.1043E-05],[213.49202,-5.6199E-05]]}
-{"quant":[213.783,-5.2934E-05],"mems":[[213.68331,-5.5168E-05],[213.68673,-5.5684E-05],[213.69014,-5.3621E-05],[213.69356,-5.1559E-05],[213.69698,-5.0528E-05],[213.70039,-5.1559E-05],[213.70381,-5.3106E-05],[213.70722,-4.8465E-05],[213.71064,-4.8981E-05],[213.71406,-5.6199E-05],[213.71747,-5.6199E-05],[213.72089,-5.3106E-05],[213.7243,-5.1559E-05],[213.72772,-4.795E-05],[213.73114,-5.0528E-05],[213.73455,-5.259E-05],[213.73797,-5.3106E-05],[213.74138,-5.723E-05],[213.7448,-5.8262E-05],[213.74822,-5.6715E-05],[213.75163,-5.4137E-05],[213.75505,-5.259E-05],[213.75846,-5.259E-05],[213.76188,-5.1043E-05],[213.7653,-4.8465E-05],[213.76871,-4.9497E-05],[213.77213,-5.3621E-05],[213.77554,-5.4137E-05],[213.77896,-5.1043E-05],[213.78238,-4.8465E-05],[213.78579,-5.3621E-05],[213.78921,-5.5168E-05],[213.79262,-5.4137E-05],[213.79604,-5.4652E-05],[213.79946,-5.3621E-05],[213.80287,-5.4652E-05],[213.80629,-5.3621E-05],[213.8097,-5.4137E-05],[213.81312,-5.1559E-05],[213.81654,-4.9497E-05],[213.81995,-5.5684E-05],[213.82337,-5.6199E-05],[213.82678,-5.1559E-05],[213.8302,-4.8981E-05],[213.83362,-5.0012E-05],[213.83703,-5.8262E-05],[213.84045,-5.6715E-05],[213.84386,-5.2074E-05],[213.84728,-5.2074E-05],[213.8507,-5.0528E-05],[213.85411,-5.5684E-05],[213.85753,-5.3106E-05],[213.86094,-5.0012E-05],[213.86436,-5.0528E-05],[213.86778,-4.9497E-05],[213.87119,-5.3106E-05],[213.87461,-5.5684E-05],[213.87802,-5.4652E-05],[213.88144,-4.9497E-05],[213.88486,-4.9497E-05],[213.88827,-5.1559E-05],[213.89169,-5.1559E-05],[213.8951,-5.1043E-05],[213.89852,-4.7434E-05],[213.90194,-4.795E-05],[213.90535,-5.2074E-05],[213.90877,-5.4137E-05],[213.91218,-5.1559E-05],[213.9156,-5.2074E-05],[213.91902,-5.4652E-05],[213.92243,-5.1043E-05],[213.92585,-4.795E-05],[213.92926,-5.3106E-05],[213.93268,-5.4652E-05],[213.9361,-5.259E-05],[213.93951,-5.4137E-05],[213.94293,-4.8981E-05],[213.94634,-5.0528E-05],[213.94976,-5.4652E-05],[213.95318,-5.5168E-05],[213.95659,-5.4652E-05],[213.96001,-5.3621E-05],[213.96342,-5.4137E-05],[213.96684,-5.3106E-05],[213.97026,-5.4652E-05],[213.97367,-5.5168E-05],[213.97709,-5.4652E-05],[213.9805,-5.0012E-05],[213.98392,-5.0528E-05]]}
-{"quant":[214.282,-1.5026],"mems":[[214.18205,-5.4652E-05],[214.18546,-4.9497E-05],[214.18888,-5.5684E-05],[214.1923,-5.8262E-05],[214.19571,-5.259E-05],[214.19913,-5.4137E-05],[214.20254,-5.6715E-05],[214.20596,-5.5168E-05],[214.20938,-5.7746E-05],[214.21279,-5.6199E-05],[214.21621,-5.1559E-05],[214.21962,-5.2074E-05],[214.22304,-4.9497E-05],[214.22646,-5.3106E-05],[214.22987,-5.723E-05],[214.23329,-5.4137E-05],[214.2367,-5.1043E-05],[214.24012,-5.0012E-05],[214.24354,-5.1043E-05],[214.24695,-5.4137E-05],[214.25037,-5.7746E-05],[214.25378,-5.4137E-05],[214.2572,-5.2074E-05],[214.26062,-4.9497E-05],[214.26403,-5.0528E-05],[214.26745,-5.3621E-05],[214.27086,-5.5684E-05],[214.27428,-5.8777E-05],[214.2777,-4.8981E-05],[214.28111,-4.6919E-05],[214.28453,-5.1559E-05],[214.28794,-4.8465E-05],[214.29136,-5.2074E-05],[214.29478,-5.4137E-05],[214.29819,-5.2074E-05],[214.30161,-5.1043E-05],[214.30502,-5.6715E-05],[214.30844,-5.9293E-05],[214.31186,-5.2074E-05],[214.31527,-5.0528E-05],[214.31869,-5.0012E-05],[214.3221,-5.3621E-05],[214.32552,-5.259E-05],[214.32894,-4.6403E-05],[214.33235,-5.1559E-05],[214.33577,-5.3621E-05],[214.33918,-5.2074E-05],[214.3426,-5.0012E-05],[214.34602,-5.2074E-05],[214.34943,-5.723E-05],[214.35285,-5.3106E-05],[214.35626,-5.1559E-05],[214.35968,-4.8981E-05],[214.3631,-5.0528E-05],[214.36651,-5.2074E-05],[214.36993,-5.1043E-05],[214.37334,-5.259E-05],[214.37676,-5.259E-05],[214.38018,-5.1559E-05],[214.38359,-5.1559E-05],[214.38701,-5.5684E-05],[214.39042,-5.7746E-05],[214.39384,-5.5168E-05],[214.39726,-5.6715E-05],[214.40067,-5.5684E-05],[214.40409,-5.4137E-05],[214.4075,-5.4137E-05],[214.41092,-5.2074E-05],[214.41434,-5.4652E-05],[214.41775,-5.2074E-05],[214.42117,-4.7434E-05],[214.42458,-5.3621E-05],[214.428,-5.3106E-05],[214.43151,-5.3106E-05],[214.43502,-5.4137E-05],[214.43852,-5.0528E-05],[214.44203,-5.0528E-05],[214.44554,-5.4652E-05],[214.44905,-5.5684E-05],[214.45256,-5.2074E-05],[214.45606,-4.8981E-05],[214.45957,-4.8981E-05],[214.46308,-4.8465E-05],[214.46659,-4.8465E-05],[214.4701,-5.1559E-05],[214.4736,-5.1043E-05],[214.47711,-5.0528E-05],[214.48062,-5.1043E-05],[214.48413,-5.0012E-05]]}
-{"quant":[214.75,-5.2435E-05],"mems":[[214.65251,-5.5684E-05],[214.65602,-5.1043E-05],[214.65953,-5.5168E-05],[214.66304,-5.2074E-05],[214.66654,-5.0528E-05],[214.67005,-5.2074E-05],[214.67356,-5.259E-05],[214.67707,-5.4652E-05],[214.68058,-5.3106E-05],[214.68408,-5.3106E-05],[214.68759,-5.1043E-05],[214.6911,-5.259E-05],[214.69461,-5.1043E-05],[214.69812,-5.0012E-05],[214.70162,-5.3621E-05],[214.70513,-4.8465E-05],[214.70864,-5.4652E-05],[214.71215,-5.6715E-05],[214.71566,-5.259E-05],[214.71916,-5.6199E-05],[214.72267,-5.259E-05],[214.72618,-5.2074E-05],[214.72969,-5.4137E-05],[214.7332,-5.6199E-05],[214.7367,-5.1559E-05],[214.74021,-4.795E-05],[214.74372,-5.0012E-05],[214.74723,-4.6403E-05],[214.75074,-5.0012E-05],[214.75424,-5.3106E-05],[214.75775,-5.0012E-05],[214.76126,-5.4137E-05],[214.76477,-5.3621E-05],[214.76828,-5.3106E-05],[214.77178,-5.3621E-05],[214.77529,-5.3106E-05],[214.7788,-4.8981E-05],[214.78231,-5.1043E-05],[214.78582,-5.5684E-05],[214.78932,-5.2074E-05],[214.79283,-5.259E-05],[214.79634,-5.3106E-05],[214.79985,-5.2074E-05],[214.80336,-5.0528E-05],[214.80686,-5.1043E-05],[214.81037,-5.1559E-05],[214.81388,-5.6715E-05],[214.81739,-6.1871E-05],[214.8209,-5.5168E-05],[214.8244,-5.2074E-05],[214.82791,-5.4137E-05],[214.83142,-5.2074E-05],[214.83493,-5.0528E-05],[214.83844,-5.3621E-05],[214.84194,-4.8981E-05],[214.84545,-4.3309E-05],[214.84896,-4.8981E-05],[214.85247,-5.6199E-05],[214.85598,-5.5168E-05],[214.85948,-5.1043E-05],[214.86299,-5.0528E-05],[214.8665,-4.8981E-05],[214.87001,-5.1559E-05],[214.87352,-5.2074E-05],[214.87702,-5.3106E-05],[214.88053,-5.4652E-05],[214.88404,-5.3621E-05],[214.88755,-5.0012E-05],[214.89106,-4.795E-05],[214.89456,-5.5168E-05],[214.89807,-5.4137E-05],[214.90158,-5.1559E-05],[214.90509,-5.4137E-05],[214.9086,-5.3621E-05],[214.9121,-5.4137E-05],[214.91561,-5.2074E-05],[214.91912,-5.3106E-05],[214.92263,-5.259E-05],[214.92614,-5.0012E-05],[214.92964,-5.0528E-05],[214.93315,-5.0012E-05],[214.93666,-5.0528E-05],[214.94017,-5.4137E-05],[214.94368,-5.6199E-05],[214.94718,-5.0012E-05],[214.95069,-4.9497E-05]]}
-{"quant":[215.568,-5.3312E-05],"mems":[[215.46988,-5.259E-05],[215.47338,-5.1559E-05],[215.47689,-5.0012E-05],[215.4804,-5.259E-05],[215.48391,-5.8262E-05],[215.48742,-5.723E-05],[215.49092,-5.5684E-05],[215.49443,-5.0012E-05],[215.49794,-5.0012E-05],[215.50145,-5.2074E-05],[215.50496,-4.9497E-05],[215.50846,-5.4137E-05],[215.51197,-5.5168E-05],[215.51548,-5.1559E-05],[215.51899,-4.8465E-05],[215.5225,-4.9497E-05],[215.526,-5.6199E-05],[215.52951,-5.3106E-05],[215.53302,-5.0528E-05],[215.53653,-5.2074E-05],[215.54004,-4.8465E-05],[215.54354,-5.2074E-05],[215.54705,-5.7746E-05],[215.55056,-5.8262E-05],[215.55407,-5.0012E-05],[215.55758,-4.8981E-05],[215.56108,-5.4137E-05],[215.56459,-5.1559E-05],[215.5681,-5.5168E-05],[215.57161,-5.5684E-05],[215.57512,-5.3621E-05],[215.57862,-5.5684E-05],[215.58213,-5.0528E-05],[215.58564,-5.1559E-05],[215.58915,-5.723E-05],[215.59266,-5.5684E-05],[215.59616,-5.259E-05],[215.59967,-5.1559E-05],[215.60318,-5.0012E-05],[215.60669,-5.3106E-05],[215.6102,-5.6715E-05],[215.6137,-5.6199E-05],[215.61721,-5.4137E-05],[215.62072,-5.2074E-05],[215.62423,-5.8777E-05],[215.62774,-5.4652E-05],[215.63124,-5.3106E-05],[215.63475,-5.8777E-05],[215.63826,-5.2074E-05],[215.64177,-4.9497E-05],[215.64528,-4.8981E-05],[215.64878,-5.0012E-05],[215.65229,-5.1559E-05],[215.6558,-5.259E-05],[215.65931,-5.5168E-05],[215.66282,-5.259E-05],[215.66632,-5.0012E-05],[215.66983,-5.0012E-05],[215.67334,-5.5684E-05],[215.67685,-5.5168E-05],[215.68036,-5.2074E-05],[215.68386,-5.259E-05],[215.68737,-5.2074E-05],[215.69088,-5.5684E-05],[215.69439,-5.5168E-05],[215.6979,-5.723E-05],[215.7014,-5.723E-05],[215.70491,-4.8465E-05],[215.70842,-5.2074E-05],[215.71193,-5.4137E-05],[215.71544,-5.3621E-05],[215.71894,-5.6199E-05],[215.72245,-5.5684E-05],[215.72596,-5.2074E-05],[215.72947,-5.3106E-05],[215.73298,-5.723E-05],[215.73648,-5.4652E-05],[215.73999,-5.4137E-05],[215.7435,-5.5168E-05],[215.74701,-5.4137E-05],[215.75052,-5.3106E-05],[215.75402,-5.1559E-05],[215.75753,-5.0528E-05],[215.76104,-5.1559E-05],[215.76455,-5.1043E-05],[215.76806,-5.0012E-05]]}
-{"quant":[216.055,-5.3535E-05],"mems":[[215.95749,-5.2074E-05],[215.961,-5.4137E-05],[215.9645,-5.5684E-05],[215.96801,-5.2074E-05],[215.97152,-5.0012E-05],[215.97503,-5.259E-05],[215.97854,-5.1559E-05],[215.98204,-5.259E-05],[215.98555,-5.6199E-05],[215.98906,-5.1559E-05],[215.99257,-5.259E-05],[215.99608,-5.7746E-05],[215.99958,-5.6199E-05],[216.00309,-5.1559E-05],[216.0066,-5.1559E-05],[216.01011,-5.3106E-05],[216.01362,-5.259E-05],[216.01712,-5.3106E-05],[216.02063,-5.3106E-05],[216.02414,-5.3106E-05],[216.02765,-5.5684E-05],[216.03116,-5.4137E-05],[216.03466,-5.3106E-05],[216.03817,-5.5684E-05],[216.04168,-5.4652E-05],[216.04519,-5.2074E-05],[216.0487,-5.1559E-05],[216.0522,-5.3106E-05],[216.05571,-5.4137E-05],[216.05922,-5.6199E-05],[216.06273,-5.8777E-05],[216.06624,-5.3621E-05],[216.06974,-5.3106E-05],[216.07325,-5.3621E-05],[216.07676,-5.3621E-05],[216.08027,-5.7746E-05],[216.08378,-5.5684E-05],[216.08728,-5.4137E-05],[216.09079,-5.259E-05],[216.0943,-5.259E-05],[216.09781,-5.5168E-05],[216.10132,-5.3621E-05],[216.10482,-5.4137E-05],[216.10833,-5.1559E-05],[216.11184,-4.8981E-05],[216.11535,-5.4652E-05],[216.11886,-5.5168E-05],[216.12236,-5.3621E-05],[216.12587,-5.3621E-05],[216.12938,-5.1043E-05],[216.13289,-5.0012E-05],[216.1364,-5.1043E-05],[216.1399,-5.2074E-05],[216.14341,-5.1559E-05],[216.14692,-5.4137E-05],[216.15043,-5.3106E-05],[216.15394,-5.2074E-05],[216.15744,-5.4652E-05],[216.16095,-5.1559E-05],[216.16446,-5.0528E-05],[216.16797,-5.2074E-05],[216.17148,-5.2074E-05],[216.17498,-5.1043E-05],[216.17849,-5.5168E-05],[216.182,-5.723E-05],[216.18551,-5.259E-05],[216.18902,-5.3106E-05],[216.19252,-4.9497E-05],[216.19603,-5.1559E-05],[216.19954,-5.5684E-05],[216.20305,-5.0012E-05],[216.20656,-5.2074E-05],[216.21006,-5.2074E-05],[216.21357,-5.3621E-05],[216.21708,-5.6199E-05],[216.22059,-5.5168E-05],[216.2241,-5.259E-05],[216.2276,-4.9497E-05],[216.23111,-5.1043E-05],[216.23462,-5.1559E-05],[216.23813,-5.0012E-05],[216.24164,-5.3106E-05],[216.24514,-6.0839E-05],[216.24865,-5.9293E-05],[216.25216,-5.3106E-05],[216.25567,-5.259E-05]]}
-{"quant":[216.552,-5.3692E-05],"mems":[[216.45212,-5.5168E-05],[216.45562,-5.3621E-05],[216.45913,-5.259E-05],[216.46264,-5.4137E-05],[216.46615,-5.3621E-05],[216.46966,-5.259E-05],[216.47316,-5.259E-05],[216.47667,-5.3621E-05],[216.48018,-5.3621E-05],[216.48369,-5.4652E-05],[216.4872,-5.723E-05],[216.4907,-5.2074E-05],[216.49421,-5.1559E-05],[216.49772,-5.3106E-05],[216.50123,-4.8981E-05],[216.50474,-5.0528E-05],[216.50824,-5.4137E-05],[216.51175,-5.1043E-05],[216.51526,-4.8981E-05],[216.51877,-5.4137E-05],[216.52228,-5.3106E-05],[216.52578,-5.1559E-05],[216.52929,-5.4652E-05],[216.5328,-5.2074E-05],[216.53631,-5.3621E-05],[216.53982,-5.3621E-05],[216.54332,-5.0528E-05],[216.54683,-5.6715E-05],[216.55034,-5.8777E-05],[216.55385,-5.7746E-05],[216.55736,-5.3106E-05],[216.56086,-4.8465E-05],[216.56437,-5.3621E-05],[216.56788,-5.4652E-05],[216.57139,-5.8262E-05],[216.5749,-5.4652E-05],[216.5784,-4.7434E-05],[216.58191,-5.6715E-05],[216.58542,-5.6715E-05],[216.58893,-5.6715E-05],[216.59244,-5.6715E-05],[216.59594,-5.1043E-05],[216.59945,-5.5684E-05],[216.60296,-5.259E-05],[216.60647,-5.0012E-05],[216.60998,-5.8262E-05],[216.61348,-5.5168E-05],[216.61699,-5.1043E-05],[216.6205,-5.3621E-05],[216.62401,-5.3621E-05],[216.62752,-5.1559E-05],[216.63102,-5.1559E-05],[216.63453,-5.4137E-05],[216.63804,-5.3621E-05],[216.64155,-5.4137E-05],[216.64506,-5.259E-05],[216.64856,-5.0012E-05],[216.65207,-5.3621E-05],[216.65558,-5.3621E-05],[216.65909,-5.3621E-05],[216.6626,-5.1559E-05],[216.6661,-4.795E-05],[216.66961,-5.0528E-05],[216.67312,-5.3106E-05],[216.67663,-5.6199E-05],[216.68014,-5.5168E-05],[216.68364,-5.0528E-05],[216.68715,-5.1043E-05],[216.69066,-5.259E-05],[216.69417,-5.259E-05],[216.69768,-5.0528E-05],[216.70118,-4.8465E-05],[216.70469,-5.1559E-05],[216.7082,-5.5168E-05],[216.71171,-5.6199E-05],[216.71522,-5.6715E-05],[216.71872,-5.1043E-05],[216.72223,-4.8465E-05],[216.72574,-5.5684E-05],[216.72925,-5.723E-05],[216.73276,-5.1043E-05],[216.73626,-4.8981E-05],[216.73977,-5.3621E-05],[216.74328,-5.3621E-05],[216.74679,-5.259E-05],[216.7503,-5.3621E-05],[216.7538,-5.6715E-05]]}
-{"quant":[217.048,-1.0709],"mems":[[216.99586,-5.1559E-05],[216.99936,-5.4652E-05],[217.00287,-5.723E-05],[217.00638,-5.1559E-05],[217.00989,-5.0528E-05],[217.0134,-5.259E-05],[217.0169,-5.4652E-05],[217.02041,-5.6199E-05],[217.02392,-5.723E-05],[217.02743,-5.4652E-05],[217.03094,-5.2074E-05],[217.03444,-5.5168E-05],[217.03795,-5.3621E-05],[217.04146,-5.5684E-05],[217.04497,-5.5684E-05],[217.04848,-5.0012E-05],[217.05198,-5.2074E-05],[217.05549,-5.5168E-05],[217.059,-5.7746E-05],[217.06237,-5.8262E-05],[217.06574,-5.3106E-05],[217.0691,-5.2074E-05],[217.07247,-5.2074E-05],[217.07584,-5.3106E-05],[217.07921,-5.4652E-05],[217.08258,-5.4652E-05],[217.08594,-5.2074E-05],[217.08931,-4.795E-05],[217.09268,-4.5372E-05],[217.09605,-5.1559E-05],[217.09942,-5.6715E-05],[217.10278,-5.259E-05],[217.10615,-5.3106E-05],[217.10952,-5.2074E-05],[217.11289,-5.3621E-05],[217.11626,-5.5684E-05],[217.11962,-5.4137E-05],[217.12299,-5.6715E-05],[217.12636,-5.259E-05],[217.12973,-5.2074E-05],[217.1331,-5.259E-05],[217.13646,-5.0528E-05],[217.13983,-5.3106E-05],[217.1432,-5.4137E-05],[217.14657,-5.259E-05],[217.14994,-5.0012E-05],[217.1533,-5.3106E-05],[217.15667,-5.259E-05],[217.16004,-4.9497E-05],[217.16341,-5.2074E-05],[217.16678,-5.4137E-05],[217.17014,-5.1559E-05],[217.17351,-5.1559E-05],[217.17688,-5.6715E-05],[217.18025,-5.3621E-05],[217.18362,-5.1043E-05],[217.18698,-5.259E-05],[217.19035,-5.4137E-05],[217.19372,-5.6715E-05],[217.19709,-5.3621E-05],[217.20046,-5.3106E-05],[217.20382,-5.6715E-05],[217.20719,-5.4652E-05],[217.21056,-5.259E-05],[217.21393,-5.4652E-05],[217.2173,-5.3106E-05],[217.22066,-5.0012E-05],[217.22403,-5.4137E-05],[217.2274,-5.6199E-05],[217.23077,-5.1559E-05],[217.23414,-5.3621E-05],[217.2375,-5.3106E-05],[217.24087,-4.8981E-05],[217.24424,-5.1043E-05],[217.24761,-5.4652E-05],[217.25098,-5.6199E-05],[217.25434,-5.3621E-05],[217.25771,-5.3621E-05],[217.26108,-5.1559E-05],[217.26445,-4.6403E-05],[217.26782,-4.8981E-05],[217.27118,-5.259E-05],[217.27455,-5.259E-05],[217.27792,-5.1559E-05],[217.28129,-5.3106E-05],[217.28466,-5.1043E-05],[217.28802,-5.3106E-05],[217.29139,-5.7746E-05]]}
-{"quant":[217.534,-5.4601E-05],"mems":[[217.43622,-5.9808E-05],[217.43958,-5.3106E-05],[217.44295,-5.4137E-05],[217.44632,-5.3621E-05],[217.44969,-5.3621E-05],[217.45306,-5.5684E-05],[217.45642,-5.3621E-05],[217.45979,-5.0528E-05],[217.46316,-5.3621E-05],[217.46653,-5.0012E-05],[217.4699,-4.8465E-05],[217.47326,-5.5684E-05],[217.47663,-5.1559E-05],[217.48,-5.3621E-05],[217.48337,-5.3621E-05],[217.48674,-5.1043E-05],[217.4901,-5.6715E-05],[217.49347,-5.723E-05],[217.49684,-6.0324E-05],[217.50021,-5.8777E-05],[217.50358,-5.4652E-05],[217.50694,-5.8262E-05],[217.51031,-5.7746E-05],[217.51368,-5.723E-05],[217.51705,-5.6715E-05],[217.52042,-5.5168E-05],[217.52378,-5.5168E-05],[217.52715,-5.3621E-05],[217.53052,-5.4652E-05],[217.53389,-5.8262E-05],[217.53726,-5.7746E-05],[217.54062,-4.9497E-05],[217.54399,-5.3106E-05],[217.54736,-6.3417E-05],[217.55073,-5.8777E-05],[217.5541,-5.3621E-05],[217.55746,-5.4137E-05],[217.56083,-5.3621E-05],[217.5642,-5.4652E-05],[217.56757,-5.5684E-05],[217.57094,-5.4652E-05],[217.5743,-5.4137E-05],[217.57767,-5.1043E-05],[217.58104,-5.0012E-05],[217.58441,-5.6199E-05],[217.58778,-5.3106E-05],[217.59114,-5.8262E-05],[217.59451,-5.8777E-05],[217.59788,-5.1043E-05],[217.60125,-5.5168E-05],[217.60462,-5.4137E-05],[217.60798,-5.6715E-05],[217.61135,-5.6715E-05],[217.61472,-5.3621E-05],[217.61809,-5.2074E-05],[217.62146,-4.8465E-05],[217.62482,-5.3106E-05],[217.62819,-5.6715E-05],[217.63156,-5.4137E-05],[217.63493,-5.5684E-05],[217.6383,-5.5684E-05],[217.64166,-5.4652E-05],[217.64503,-5.9293E-05],[217.6484,-5.6715E-05],[217.65177,-5.2074E-05],[217.65514,-4.9497E-05],[217.6585,-4.9497E-05],[217.66187,-5.0528E-05],[217.66524,-5.1559E-05],[217.66861,-5.6199E-05],[217.67198,-5.1559E-05],[217.67534,-5.1043E-05],[217.67871,-5.2074E-05],[217.68208,-5.4137E-05],[217.68545,-5.723E-05],[217.68882,-5.5684E-05],[217.69218,-5.7746E-05],[217.69555,-5.3106E-05],[217.69892,-5.2074E-05],[217.70229,-5.5684E-05],[217.70566,-5.5168E-05],[217.70902,-5.4652E-05],[217.71239,-5.3106E-05],[217.71576,-5.1559E-05],[217.71913,-5.2074E-05],[217.7225,-5.723E-05],[217.72586,-5.4652E-05],[217.72923,-5.3106E-05],[217.7326,-5.259E-05],[217.73597,-5.0012E-05]]}
-{"quant":[218.363,-5.3071E-05],"mems":[[218.26474,-5.5168E-05],[218.26811,-5.4137E-05],[218.27148,-5.4137E-05],[218.27485,-5.8777E-05],[218.27822,-5.4652E-05],[218.28158,-5.5168E-05],[218.28495,-5.2074E-05],[218.28832,-4.8981E-05],[218.29169,-5.259E-05],[218.29506,-5.4652E-05],[218.29842,-5.7746E-05],[218.30179,-5.3621E-05],[218.30516,-5.6199E-05],[218.30853,-5.8777E-05],[218.3119,-5.4137E-05],[218.31526,-5.5168E-05],[218.31863,-5.6199E-05],[218.322,-5.3621E-05],[218.32537,-4.795E-05],[218.32874,-5.1043E-05],[218.3321,-5.4652E-05],[218.33547,-5.5168E-05],[218.33884,-5.6199E-05],[218.34221,-5.0012E-05],[218.34558,-4.7434E-05],[218.34894,-5.2074E-05],[218.35231,-5.723E-05],[218.35568,-5.7746E-05],[218.35905,-5.7746E-05],[218.36242,-5.4652E-05],[218.36578,-5.4652E-05],[218.36915,-5.6715E-05],[218.37252,-5.3621E-05],[218.37589,-5.4137E-05],[218.37926,-5.0528E-05],[218.38262,-4.795E-05],[218.38599,-4.9497E-05],[218.38936,-5.259E-05],[218.39273,-5.4137E-05],[218.3961,-5.4137E-05],[218.39946,-5.4137E-05],[218.40283,-4.795E-05],[218.4062,-5.3621E-05],[218.40957,-5.5168E-05],[218.41294,-5.4652E-05],[218.4163,-5.3106E-05],[218.41967,-4.8981E-05],[218.42304,-5.5168E-05],[218.42641,-5.259E-05],[218.42978,-5.5168E-05],[218.43314,-5.723E-05],[218.43651,-5.4137E-05],[218.43988,-5.3621E-05],[218.44325,-5.0528E-05],[218.44662,-5.259E-05],[218.44998,-5.3621E-05],[218.45335,-5.2074E-05],[218.45672,-5.0528E-05],[218.46009,-5.4137E-05],[218.46346,-5.5168E-05],[218.46682,-5.6199E-05],[218.47019,-5.5684E-05],[218.47356,-4.9497E-05],[218.47693,-5.4652E-05],[218.4803,-5.4137E-05],[218.48366,-5.0528E-05],[218.48703,-4.8981E-05],[218.4904,-5.0528E-05],[218.49377,-5.6199E-05],[218.49714,-5.6199E-05],[218.5005,-5.723E-05],[218.50387,-5.7746E-05],[218.50724,-5.7746E-05],[218.51061,-5.9808E-05],[218.51398,-5.4652E-05],[218.51734,-5.1559E-05],[218.52071,-5.3621E-05],[218.52408,-5.1559E-05],[218.52745,-5.3621E-05],[218.53082,-5.6199E-05],[218.53418,-5.3106E-05],[218.53755,-5.3621E-05],[218.54092,-5.4137E-05],[218.54429,-5.4137E-05],[218.54766,-5.5684E-05],[218.55102,-5.5684E-05],[218.55439,-5.3106E-05],[218.55776,-5.3621E-05],[218.56113,-5.5168E-05],[218.5645,-5.3106E-05]]}
-{"quant":[218.866,-5.244E-05],"mems":[[218.76658,-5.4652E-05],[218.76994,-5.7746E-05],[218.77331,-5.6199E-05],[218.77668,-5.2074E-05],[218.78005,-5.3106E-05],[218.78342,-5.6199E-05],[218.78678,-5.4137E-05],[218.79015,-5.5168E-05],[218.79352,-5.1043E-05],[218.79689,-4.9497E-05],[218.80026,-5.4652E-05],[218.80362,-5.1559E-05],[218.80699,-5.3106E-05],[218.81036,-5.4137E-05],[218.81373,-5.5168E-05],[218.8171,-5.1559E-05],[218.82046,-5.4652E-05],[218.82383,-5.723E-05],[218.8272,-5.0012E-05],[218.83057,-5.4137E-05],[218.83394,-5.3106E-05],[218.8373,-5.0528E-05],[218.84067,-5.3621E-05],[218.84404,-5.3106E-05],[218.84741,-5.1043E-05],[218.85078,-5.1559E-05],[218.85414,-5.5168E-05],[218.85751,-5.723E-05],[218.86088,-5.5168E-05],[218.86425,-5.2074E-05],[218.86762,-5.0012E-05],[218.87098,-4.5887E-05],[218.87435,-5.259E-05],[218.87772,-5.6199E-05],[218.88109,-5.2074E-05],[218.88446,-5.0012E-05],[218.88782,-4.795E-05],[218.89119,-5.1559E-05],[218.89456,-5.1559E-05],[218.89793,-5.0012E-05],[218.9013,-5.0528E-05],[218.90466,-5.259E-05],[218.90803,-5.3106E-05],[218.9114,-5.259E-05],[218.91477,-5.4652E-05],[218.91814,-5.1043E-05],[218.9215,-5.723E-05],[218.92487,-5.5684E-05],[218.92824,-4.9497E-05],[218.93161,-5.3106E-05],[218.93498,-5.1043E-05],[218.93834,-5.5168E-05],[218.94171,-5.7746E-05],[218.94508,-5.6715E-05],[218.94845,-5.3106E-05],[218.95182,-4.6919E-05],[218.95518,-5.259E-05],[218.95855,-5.7746E-05],[218.96192,-5.5168E-05],[218.96529,-5.1559E-05],[218.96866,-5.0012E-05],[218.97202,-5.0528E-05],[218.97539,-5.6715E-05],[218.97876,-5.6199E-05],[218.98213,-5.259E-05],[218.9855,-5.259E-05],[218.98886,-5.0528E-05],[218.99223,-5.3621E-05],[218.9956,-5.259E-05],[218.99897,-4.9497E-05],[219.00234,-5.1043E-05],[219.0057,-5.1043E-05],[219.00907,-4.9497E-05],[219.01244,-4.8981E-05],[219.01581,-5.3106E-05],[219.01918,-5.723E-05],[219.02254,-5.3106E-05],[219.02591,-5.0528E-05],[219.02928,-5.6199E-05],[219.03265,-5.5684E-05],[219.03602,-5.4137E-05],[219.03938,-5.2074E-05],[219.04275,-4.9497E-05],[219.04612,-5.4137E-05],[219.04949,-5.4137E-05],[219.05286,-5.0012E-05],[219.05622,-5.0528E-05],[219.05959,-5.6715E-05],[219.06296,-5.6715E-05],[219.06633,-5.1043E-05]]}
-{"quant":[219.335,-5.3388E-05],"mems":[[219.2381,-5.259E-05],[219.24146,-5.4137E-05],[219.24483,-5.259E-05],[219.2482,-5.5684E-05],[219.25157,-5.4652E-05],[219.25494,-5.3621E-05],[219.2583,-5.5684E-05],[219.26167,-5.4137E-05],[219.26504,-5.259E-05],[219.26841,-5.3106E-05],[219.27178,-5.6199E-05],[219.27514,-5.1043E-05],[219.27851,-5.1043E-05],[219.28188,-5.7746E-05],[219.28525,-5.1043E-05],[219.28862,-5.259E-05],[219.29198,-5.8262E-05],[219.29535,-5.4137E-05],[219.29872,-5.4137E-05],[219.30209,-5.5168E-05],[219.30546,-5.259E-05],[219.30882,-5.4137E-05],[219.31219,-5.6715E-05],[219.31556,-4.8981E-05],[219.31893,-4.7434E-05],[219.3223,-4.9497E-05],[219.32566,-5.0012E-05],[219.32903,-5.4652E-05],[219.3324,-5.3621E-05],[219.33577,-5.3106E-05],[219.33914,-5.6715E-05],[219.3425,-5.4137E-05],[219.34587,-5.4137E-05],[219.34924,-5.4652E-05],[219.35261,-5.5684E-05],[219.35598,-5.6715E-05],[219.35934,-5.1559E-05],[219.36271,-5.3621E-05],[219.36608,-5.6199E-05],[219.36945,-5.6199E-05],[219.37282,-5.3621E-05],[219.37618,-5.259E-05],[219.37955,-5.5684E-05],[219.38292,-5.0528E-05],[219.38629,-5.1043E-05],[219.38966,-5.1559E-05],[219.39302,-5.0528E-05],[219.39639,-5.259E-05],[219.39976,-5.0012E-05],[219.40313,-4.8981E-05],[219.4065,-5.1559E-05],[219.40986,-5.4137E-05],[219.41323,-5.3621E-05],[219.4166,-5.3621E-05],[219.41997,-5.5684E-05],[219.42334,-5.4652E-05],[219.4267,-5.2074E-05],[219.43007,-5.4137E-05],[219.43344,-5.3621E-05],[219.43681,-5.2074E-05],[219.44018,-4.9497E-05],[219.44354,-4.795E-05],[219.44691,-5.7746E-05],[219.45028,-5.5168E-05],[219.45365,-4.795E-05],[219.45702,-5.1043E-05],[219.46038,-5.4137E-05],[219.46375,-5.6199E-05],[219.46712,-5.5168E-05],[219.47049,-5.259E-05],[219.47386,-5.4137E-05],[219.47722,-5.4137E-05],[219.48059,-4.8465E-05],[219.48396,-5.1559E-05],[219.48733,-5.6199E-05],[219.4907,-5.5168E-05],[219.49406,-5.4137E-05],[219.49743,-5.4137E-05],[219.5008,-5.259E-05],[219.50417,-5.3106E-05],[219.50754,-5.5684E-05],[219.5109,-5.259E-05],[219.51427,-5.1559E-05],[219.51764,-5.5168E-05],[219.52101,-5.1043E-05],[219.52438,-5.1559E-05],[219.52774,-5.8262E-05],[219.53111,-5.3106E-05],[219.53448,-5.1559E-05],[219.53785,-4.8465E-05]]}
-{"quant":[219.799,-5.3484E-05],"mems":[[219.70191,-4.9497E-05],[219.70535,-5.3621E-05],[219.70879,-5.259E-05],[219.71223,-5.4652E-05],[219.71567,-5.3621E-05],[219.71911,-4.9497E-05],[219.72255,-5.2074E-05],[219.72599,-5.8262E-05],[219.72942,-5.259E-05],[219.73286,-5.0528E-05],[219.7363,-5.0528E-05],[219.73974,-5.0012E-05],[219.74318,-5.5168E-05],[219.74662,-5.7746E-05],[219.75006,-5.6715E-05],[219.75349,-5.0012E-05],[219.75693,-5.3621E-05],[219.76037,-5.4652E-05],[219.76381,-5.3621E-05],[219.76725,-5.5684E-05],[219.77069,-5.5168E-05],[219.77413,-5.6199E-05],[219.77757,-5.3106E-05],[219.781,-5.4137E-05],[219.78444,-5.9808E-05],[219.78788,-5.9808E-05],[219.79132,-5.723E-05],[219.79476,-5.5684E-05],[219.7982,-5.259E-05],[219.80164,-5.259E-05],[219.80507,-5.4652E-05],[219.80851,-5.259E-05],[219.81195,-5.259E-05],[219.81539,-5.1559E-05],[219.81883,-5.2074E-05],[219.82227,-5.5684E-05],[219.82571,-5.6199E-05],[219.82915,-5.8262E-05],[219.83258,-5.4652E-05],[219.83602,-5.1559E-05],[219.83946,-5.5168E-05],[219.8429,-5.2074E-05],[219.84634,-5.3621E-05],[219.84978,-5.4137E-05],[219.85322,-4.795E-05],[219.85665,-5.0528E-05],[219.86009,-5.3621E-05],[219.86353,-5.5684E-05],[219.86697,-5.723E-05],[219.87041,-5.6199E-05],[219.87385,-5.4652E-05],[219.87729,-5.5168E-05],[219.88073,-5.6199E-05],[219.88416,-5.4137E-05],[219.8876,-5.5168E-05],[219.89104,-5.4137E-05],[219.89448,-5.2074E-05],[219.89792,-4.6919E-05],[219.90136,-4.7434E-05],[219.9048,-5.259E-05],[219.90823,-5.1559E-05],[219.91167,-5.3621E-05],[219.91511,-5.5168E-05],[219.91855,-5.1043E-05],[219.92199,-5.1559E-05],[219.92543,-5.4652E-05],[219.92887,-5.5684E-05],[219.93231,-5.259E-05],[219.93574,-5.3621E-05],[219.93918,-5.5684E-05],[219.94262,-5.2074E-05],[219.94606,-5.3106E-05],[219.9495,-5.2074E-05],[219.95294,-5.1559E-05],[219.95638,-5.4137E-05],[219.95981,-5.2074E-05],[219.96325,-5.259E-05],[219.96669,-5.4137E-05],[219.97013,-5.6199E-05],[219.97357,-5.1559E-05],[219.97701,-4.795E-05],[219.98045,-5.259E-05],[219.98389,-5.1559E-05],[219.98732,-5.2074E-05],[219.99076,-5.3106E-05],[219.9942,-5.5684E-05],[219.99764,-5.7746E-05],[220.00108,-5.5168E-05]]}
-{"quant":[220.565,-5.239E-05],"mems":[[220.4653,-5.7746E-05],[220.46874,-5.5684E-05],[220.47218,-4.9497E-05],[220.47561,-5.3106E-05],[220.47905,-5.3621E-05],[220.48249,-5.4137E-05],[220.48593,-5.6199E-05],[220.48937,-5.5168E-05],[220.49281,-5.2074E-05],[220.49625,-4.9497E-05],[220.49969,-5.2074E-05],[220.50312,-5.259E-05],[220.50656,-5.6199E-05],[220.51,-5.6715E-05],[220.51344,-5.5168E-05],[220.51688,-5.0012E-05],[220.52032,-4.5372E-05],[220.52376,-5.2074E-05],[220.52719,-5.4652E-05],[220.53063,-5.5684E-05],[220.53407,-5.5168E-05],[220.53751,-5.3106E-05],[220.54095,-5.6715E-05],[220.54439,-5.4652E-05],[220.54783,-5.4137E-05],[220.55127,-5.723E-05],[220.5547,-5.5684E-05],[220.55814,-5.0528E-05],[220.56158,-4.8981E-05],[220.56502,-5.259E-05],[220.56846,-5.5168E-05],[220.5719,-5.4137E-05],[220.57534,-5.4137E-05],[220.57877,-5.2074E-05],[220.58221,-5.0012E-05],[220.58565,-5.1043E-05],[220.58909,-5.259E-05],[220.59253,-5.4652E-05],[220.59597,-5.2074E-05],[220.59941,-4.6919E-05],[220.60285,-4.8981E-05],[220.60628,-5.4137E-05],[220.60972,-5.4652E-05],[220.61316,-5.0012E-05],[220.6166,-5.0012E-05],[220.62004,-5.1559E-05],[220.62348,-5.3106E-05],[220.62692,-5.4137E-05],[220.63035,-4.9497E-05],[220.63379,-4.9497E-05],[220.63723,-5.3106E-05],[220.64067,-5.2074E-05],[220.64411,-5.4137E-05],[220.64755,-5.4137E-05],[220.65099,-5.3106E-05],[220.65443,-5.723E-05],[220.65786,-5.6199E-05],[220.6613,-5.0012E-05],[220.66474,-5.1043E-05],[220.66818,-5.2074E-05],[220.67162,-4.8981E-05],[220.67506,-5.1043E-05],[220.6785,-5.3106E-05],[220.68193,-5.0528E-05],[220.68537,-5.3621E-05],[220.68881,-5.6715E-05],[220.69225,-5.0528E-05],[220.69569,-5.0528E-05],[220.69913,-5.0012E-05],[220.70257,-4.8465E-05],[220.70601,-5.3106E-05],[220.70944,-5.4652E-05],[220.71288,-5.4137E-05],[220.71632,-5.0528E-05],[220.71976,-5.0528E-05],[220.7232,-5.5684E-05],[220.72664,-5.723E-05],[220.73008,-5.5168E-05],[220.73351,-5.1559E-05],[220.73695,-4.8465E-05],[220.74039,-4.795E-05],[220.74383,-5.1559E-05],[220.74727,-5.8777E-05],[220.75071,-5.7746E-05],[220.75415,-5.2074E-05],[220.75759,-4.795E-05],[220.76102,-5.3106E-05],[220.76446,-5.6199E-05],[220.7679,-5.5168E-05]]}
-{"quant":[221.023,-5.2367E-05],"mems":[[220.92608,-5.6715E-05],[220.92952,-5.3621E-05],[220.93296,-5.259E-05],[220.9364,-5.0528E-05],[220.93983,-5.259E-05],[220.94327,-5.4137E-05],[220.94671,-5.6715E-05],[220.95015,-5.7746E-05],[220.95359,-5.1559E-05],[220.95703,-5.1559E-05],[220.96047,-5.1559E-05],[220.96391,-5.4137E-05],[220.96734,-5.6715E-05],[220.97078,-5.3106E-05],[220.97422,-5.1043E-05],[220.97766,-5.1559E-05],[220.9811,-5.3621E-05],[220.98454,-5.4652E-05],[220.98798,-5.6199E-05],[220.99141,-5.4137E-05],[220.99485,-5.1043E-05],[220.99829,-5.3106E-05],[221.00173,-5.1043E-05],[221.00517,-5.0528E-05],[221.00861,-5.5684E-05],[221.01205,-5.4137E-05],[221.01549,-5.3106E-05],[221.01892,-5.0012E-05],[221.02236,-5.2074E-05],[221.0258,-5.5168E-05],[221.02924,-5.2074E-05],[221.03268,-5.2074E-05],[221.03612,-5.3621E-05],[221.03956,-5.5168E-05],[221.04299,-5.0528E-05],[221.04643,-5.3106E-05],[221.04987,-5.4652E-05],[221.05331,-5.259E-05],[221.05675,-5.259E-05],[221.06019,-4.5887E-05],[221.06363,-5.2074E-05],[221.06707,-5.259E-05],[221.0705,-4.8981E-05],[221.07394,-5.1043E-05],[221.07738,-4.8981E-05],[221.08082,-5.0528E-05],[221.08426,-5.3106E-05],[221.0877,-5.4652E-05],[221.09114,-5.2074E-05],[221.09457,-5.0012E-05],[221.09801,-5.1043E-05],[221.10145,-5.3106E-05],[221.10489,-5.0012E-05],[221.10833,-5.0012E-05],[221.11177,-5.3621E-05],[221.11521,-5.4137E-05],[221.11865,-5.5684E-05],[221.12208,-5.6199E-05],[221.12552,-5.5684E-05],[221.12896,-5.3106E-05],[221.1324,-5.1559E-05],[221.13584,-5.2074E-05],[221.13928,-5.2074E-05],[221.14272,-5.4652E-05],[221.14615,-5.1559E-05],[221.14959,-5.0528E-05],[221.15303,-5.3106E-05],[221.15647,-5.259E-05],[221.15991,-5.5684E-05],[221.16335,-5.7746E-05],[221.16679,-5.4652E-05],[221.17023,-5.4137E-05],[221.17366,-5.3621E-05],[221.1771,-5.2074E-05],[221.18054,-5.1043E-05],[221.18398,-5.4137E-05],[221.18742,-5.5168E-05],[221.19086,-5.3621E-05],[221.1943,-5.4137E-05],[221.19773,-4.8465E-05],[221.20117,-5.1559E-05],[221.20461,-5.6715E-05],[221.20805,-5.2074E-05],[221.21149,-4.9497E-05],[221.21493,-5.2074E-05],[221.21837,-5.3106E-05],[221.22181,-5.4652E-05],[221.22524,-5.6199E-05]]}
-{"quant":[221.495,-5.4515E-05],"mems":[[221.39718,-5.4137E-05],[221.40062,-5.1559E-05],[221.40405,-5.2074E-05],[221.40749,-5.8262E-05],[221.41093,-5.5168E-05],[221.41437,-5.2074E-05],[221.41781,-5.1043E-05],[221.42125,-5.2074E-05],[221.42469,-5.723E-05],[221.42813,-5.259E-05],[221.43156,-5.259E-05],[221.435,-5.7746E-05],[221.43844,-5.5684E-05],[221.44188,-5.4137E-05],[221.44532,-5.6199E-05],[221.44876,-5.3106E-05],[221.4522,-5.1559E-05],[221.45563,-5.6199E-05],[221.45907,-5.1559E-05],[221.46251,-5.1043E-05],[221.46595,-5.4137E-05],[221.46939,-5.259E-05],[221.47283,-5.259E-05],[221.47627,-5.1043E-05],[221.47971,-5.5168E-05],[221.48314,-5.5168E-05],[221.48658,-5.5168E-05],[221.49002,-5.5684E-05],[221.49346,-5.3621E-05],[221.4969,-5.259E-05],[221.50034,-5.0528E-05],[221.50378,-5.6199E-05],[221.50721,-5.723E-05],[221.51065,-5.3621E-05],[221.51409,-5.6199E-05],[221.51753,-5.259E-05],[221.52097,-5.1559E-05],[221.52441,-5.4652E-05],[221.52785,-5.3621E-05],[221.53129,-5.4137E-05],[221.53472,-5.0012E-05],[221.53816,-4.8981E-05],[221.5416,-5.4137E-05],[221.54504,-5.723E-05],[221.54848,-6.0324E-05],[221.55192,-5.5168E-05],[221.55536,-5.4137E-05],[221.55879,-5.3621E-05],[221.56223,-5.4137E-05],[221.56567,-5.9808E-05],[221.56911,-5.5168E-05],[221.57255,-5.4652E-05],[221.57599,-5.3106E-05],[221.57943,-5.2074E-05],[221.58287,-5.4652E-05],[221.5863,-5.3106E-05],[221.58974,-5.6715E-05],[221.59318,-5.9293E-05],[221.59662,-5.6199E-05],[221.60006,-5.259E-05],[221.6035,-5.5684E-05],[221.60694,-5.5684E-05],[221.61037,-5.1043E-05],[221.61381,-5.1043E-05],[221.61725,-4.9497E-05],[221.62069,-5.259E-05],[221.62413,-5.4137E-05],[221.62757,-5.2074E-05],[221.63101,-5.3621E-05],[221.63445,-5.0528E-05],[221.63788,-5.1043E-05],[221.64132,-5.5168E-05],[221.64476,-5.7746E-05],[221.6482,-5.6199E-05],[221.65164,-5.3621E-05],[221.65508,-5.3106E-05],[221.65852,-5.2074E-05],[221.66195,-5.4137E-05],[221.66539,-5.2074E-05],[221.66883,-5.5684E-05],[221.67227,-6.0324E-05],[221.67571,-5.0528E-05],[221.67915,-4.8465E-05],[221.68259,-5.259E-05],[221.68603,-5.6199E-05],[221.68946,-5.9293E-05],[221.6929,-5.3106E-05],[221.69634,-5.0012E-05]]}
-{"quant":[222.03,-0.49063],"mems":[[221.93017,-5.3106E-05],[221.93361,-5.3621E-05],[221.93705,-5.1043E-05],[221.94049,-5.4137E-05],[221.94393,-5.4652E-05],[221.94736,-5.4137E-05],[221.9508,-5.259E-05],[221.95424,-5.4652E-05],[221.95768,-5.4652E-05],[221.96112,-4.8465E-05],[221.96456,-5.1043E-05],[221.968,-5.3106E-05],[221.97143,-5.1043E-05],[221.97487,-5.0012E-05],[221.97831,-5.1559E-05],[221.98175,-5.1559E-05],[221.98519,-4.9497E-05],[221.98863,-5.5168E-05],[221.99207,-5.4137E-05],[221.99551,-5.259E-05],[221.99894,-5.2074E-05],[222.00238,-5.1559E-05],[222.00582,-5.5168E-05],[222.00926,-5.4137E-05],[222.0127,-5.6199E-05],[222.01614,-5.4652E-05],[222.01958,-5.2074E-05],[222.02301,-5.5168E-05],[222.02645,-5.5684E-05],[222.02989,-5.5684E-05],[222.03333,-5.2074E-05],[222.03677,-5.3106E-05],[222.04021,-5.1043E-05],[222.04365,-5.3106E-05],[222.04709,-5.259E-05],[222.05052,-5.2074E-05],[222.05396,-5.6715E-05],[222.0574,-5.0012E-05],[222.06084,-5.3106E-05],[222.06428,-5.7746E-05],[222.06772,-5.259E-05],[222.07116,-5.4137E-05],[222.07459,-5.4652E-05],[222.07803,-5.3106E-05],[222.08147,-5.6715E-05],[222.08491,-5.8262E-05],[222.08835,-5.259E-05],[222.09179,-5.6199E-05],[222.09523,-5.3621E-05],[222.09867,-4.5372E-05],[222.1021,-4.9497E-05],[222.10554,-5.1043E-05],[222.10898,-5.0012E-05],[222.11242,-5.1559E-05],[222.11586,-5.2074E-05],[222.1193,-5.3621E-05],[222.12274,-5.6199E-05],[222.12617,-5.4137E-05],[222.12961,-5.3621E-05],[222.13305,-5.4652E-05],[222.13649,-5.3621E-05],[222.13993,-4.8981E-05],[222.14337,-5.0012E-05],[222.14681,-5.4137E-05],[222.15025,-5.259E-05],[222.15368,-4.9497E-05],[222.15712,-4.8981E-05],[222.16056,-5.3106E-05],[222.164,-5.4652E-05],[222.16747,-5.723E-05],[222.17095,-6.1355E-05],[222.17442,-5.723E-05],[222.1779,-5.259E-05],[222.18137,-5.7746E-05],[222.18485,-5.8777E-05],[222.18832,-5.1559E-05],[222.1918,-5.0528E-05],[222.19527,-5.259E-05],[222.19875,-5.6199E-05],[222.20222,-5.6199E-05],[222.2057,-5.0528E-05],[222.20917,-5.2074E-05],[222.21265,-5.4652E-05],[222.21612,-4.7434E-05],[222.21959,-4.5372E-05],[222.22307,-5.4652E-05],[222.22654,-5.8777E-05],[222.23002,-5.8262E-05]]}
-{"quant":[222.515,-5.2555E-05],"mems":[[222.41765,-4.6403E-05],[222.42113,-4.9497E-05],[222.4246,-5.2074E-05],[222.42807,-5.5684E-05],[222.43155,-5.5168E-05],[222.43502,-5.259E-05],[222.4385,-5.259E-05],[222.44197,-4.8981E-05],[222.44545,-5.5684E-05],[222.44892,-5.5684E-05],[222.4524,-4.8465E-05],[222.45587,-5.3106E-05],[222.45935,-5.0012E-05],[222.46282,-4.9497E-05],[222.4663,-5.6199E-05],[222.46977,-5.6199E-05],[222.47325,-5.8262E-05],[222.47672,-5.5168E-05],[222.48019,-5.1559E-05],[222.48367,-5.259E-05],[222.48714,-5.7746E-05],[222.49062,-5.8777E-05],[222.49409,-5.1559E-05],[222.49757,-5.5168E-05],[222.50104,-5.5684E-05],[222.50452,-5.1043E-05],[222.50799,-5.259E-05],[222.51147,-5.4137E-05],[222.51494,-5.5684E-05],[222.51842,-5.5168E-05],[222.52189,-5.1043E-05],[222.52537,-4.6919E-05],[222.52884,-5.259E-05],[222.53231,-5.8262E-05],[222.53579,-5.4137E-05],[222.53926,-5.3106E-05],[222.54274,-5.2074E-05],[222.54621,-5.1043E-05],[222.54969,-5.3621E-05],[222.55316,-5.3106E-05],[222.55664,-5.4652E-05],[222.56011,-5.3621E-05],[222.56359,-5.3106E-05],[222.56706,-5.5168E-05],[222.57054,-5.6715E-05],[222.57401,-5.5684E-05],[222.57749,-5.1559E-05],[222.58096,-5.1043E-05],[222.58443,-4.8465E-05],[222.58791,-5.2074E-05],[222.59138,-5.3106E-05],[222.59486,-5.3621E-05],[222.59833,-5.3621E-05],[222.60181,-4.6919E-05],[222.60528,-5.2074E-05],[222.60876,-5.1559E-05],[222.61223,-4.8981E-05],[222.61571,-5.1043E-05],[222.61918,-4.8981E-05],[222.62266,-5.5168E-05],[222.62613,-5.5684E-05],[222.62961,-5.4652E-05],[222.63308,-5.6715E-05],[222.63655,-4.9497E-05],[222.64003,-5.1559E-05],[222.6435,-5.3621E-05],[222.64698,-5.3106E-05],[222.65045,-5.3621E-05],[222.65393,-5.259E-05],[222.6574,-5.5684E-05],[222.66088,-5.259E-05],[222.66435,-5.1559E-05],[222.66783,-5.4137E-05],[222.6713,-5.2074E-05],[222.67478,-5.4652E-05],[222.67825,-5.723E-05],[222.68173,-5.2074E-05],[222.6852,-5.0528E-05],[222.68867,-5.0012E-05],[222.69215,-5.259E-05],[222.69562,-5.6199E-05],[222.6991,-4.7434E-05],[222.70257,-4.6403E-05],[222.70605,-4.9497E-05],[222.70952,-5.0528E-05],[222.713,-5.4137E-05],[222.71647,-5.7746E-05]]}
-{"quant":[223.211,-5.3346E-05],"mems":[[223.11258,-5.1559E-05],[223.11606,-5.5168E-05],[223.11953,-5.2074E-05],[223.12301,-5.259E-05],[223.12648,-4.9497E-05],[223.12996,-5.0012E-05],[223.13343,-5.1559E-05],[223.13691,-5.0528E-05],[223.14038,-5.4652E-05],[223.14386,-5.4652E-05],[223.14733,-5.0528E-05],[223.15081,-5.1559E-05],[223.15428,-5.0012E-05],[223.15775,-5.1043E-05],[223.16123,-5.4137E-05],[223.1647,-5.2074E-05],[223.16818,-5.1559E-05],[223.17165,-5.1043E-05],[223.17513,-5.5168E-05],[223.1786,-5.723E-05],[223.18208,-5.6715E-05],[223.18555,-5.6199E-05],[223.18903,-5.6715E-05],[223.1925,-5.6715E-05],[223.19598,-5.259E-05],[223.19945,-5.3106E-05],[223.20293,-5.2074E-05],[223.2064,-5.259E-05],[223.20987,-5.4652E-05],[223.21335,-4.8981E-05],[223.21682,-4.7434E-05],[223.2203,-5.5168E-05],[223.22377,-5.723E-05],[223.22725,-5.0528E-05],[223.23072,-5.0528E-05],[223.2342,-5.6199E-05],[223.23767,-5.723E-05],[223.24115,-5.6715E-05],[223.24462,-5.259E-05],[223.2481,-4.795E-05],[223.25157,-5.4137E-05],[223.25505,-5.7746E-05],[223.25852,-5.6199E-05],[223.26199,-6.0839E-05],[223.26547,-5.6715E-05],[223.26894,-5.0528E-05],[223.27242,-4.8981E-05],[223.27589,-4.8465E-05],[223.27937,-5.5684E-05],[223.28284,-5.3621E-05],[223.28632,-5.1559E-05],[223.28979,-5.6715E-05],[223.29327,-5.259E-05],[223.29674,-5.4137E-05],[223.30022,-5.3621E-05],[223.30369,-5.0528E-05],[223.30717,-5.6199E-05],[223.31064,-5.4137E-05],[223.31411,-4.7434E-05],[223.31759,-5.259E-05],[223.32106,-5.723E-05],[223.32454,-5.2074E-05],[223.32801,-5.0012E-05],[223.33149,-5.5168E-05],[223.33496,-5.6715E-05],[223.33844,-5.723E-05],[223.34191,-5.6715E-05],[223.34539,-5.259E-05],[223.34886,-4.8465E-05],[223.35234,-5.0012E-05],[223.35581,-5.5168E-05],[223.35929,-5.6715E-05],[223.36276,-5.8262E-05],[223.36623,-5.6199E-05],[223.36971,-5.0528E-05],[223.37318,-5.0012E-05],[223.37666,-5.6199E-05],[223.38013,-5.5168E-05],[223.38361,-5.3106E-05],[223.38708,-5.4137E-05],[223.39056,-5.2074E-05],[223.39403,-5.4652E-05],[223.39751,-5.3106E-05],[223.40098,-5.3621E-05],[223.40446,-5.6715E-05],[223.40793,-5.259E-05],[223.41141,-5.3106E-05]]}
-{"quant":[223.707,-5.4386E-05],"mems":[[223.60946,-5.5684E-05],[223.61294,-4.9497E-05],[223.61641,-5.5684E-05],[223.61989,-5.8777E-05],[223.62336,-5.259E-05],[223.62683,-5.1559E-05],[223.63031,-4.9497E-05],[223.63378,-5.0528E-05],[223.63726,-5.2074E-05],[223.64073,-5.2074E-05],[223.64421,-5.0528E-05],[223.64768,-5.0012E-05],[223.65116,-5.3106E-05],[223.65463,-5.2074E-05],[223.65811,-5.6199E-05],[223.66158,-5.2074E-05],[223.66506,-4.7434E-05],[223.66853,-5.3621E-05],[223.67201,-5.259E-05],[223.67548,-5.6199E-05],[223.67895,-5.723E-05],[223.68243,-5.1559E-05],[223.6859,-5.259E-05],[223.68938,-5.3621E-05],[223.69285,-5.2074E-05],[223.69633,-5.0012E-05],[223.6998,-5.2074E-05],[223.70328,-5.5168E-05],[223.70675,-5.5168E-05],[223.71023,-5.5684E-05],[223.7137,-5.6199E-05],[223.71718,-5.3106E-05],[223.72065,-5.0012E-05],[223.72413,-5.5684E-05],[223.7276,-5.7746E-05],[223.73107,-5.2074E-05],[223.73455,-5.1043E-05],[223.73802,-5.259E-05],[223.7415,-5.4137E-05],[223.74497,-5.5168E-05],[223.74845,-5.8262E-05],[223.75192,-5.5684E-05],[223.7554,-5.0528E-05],[223.75887,-5.2074E-05],[223.76235,-5.6199E-05],[223.76582,-5.7746E-05],[223.7693,-5.4652E-05],[223.77277,-5.4137E-05],[223.77625,-4.9497E-05],[223.77972,-5.0012E-05],[223.78319,-5.6199E-05],[223.78667,-5.8262E-05],[223.79014,-5.9808E-05],[223.79362,-5.5684E-05],[223.79709,-5.3106E-05],[223.80057,-5.2074E-05],[223.80404,-5.4652E-05],[223.80752,-5.5168E-05],[223.81099,-5.3621E-05],[223.81447,-5.723E-05],[223.81794,-5.5168E-05],[223.82142,-5.8262E-05],[223.82489,-5.9808E-05],[223.82837,-5.4137E-05],[223.83184,-5.4137E-05],[223.83531,-5.3621E-05],[223.83879,-5.2074E-05],[223.84226,-5.2074E-05],[223.84574,-5.5684E-05],[223.84921,-5.3621E-05],[223.85269,-5.0528E-05],[223.85616,-5.1559E-05],[223.85964,-5.5168E-05],[223.86311,-5.6715E-05],[223.86659,-5.6715E-05],[223.87006,-5.5168E-05],[223.87354,-5.4137E-05],[223.87701,-5.7746E-05],[223.88049,-5.3106E-05],[223.88396,-5.0528E-05],[223.88743,-5.4652E-05],[223.89091,-5.6199E-05],[223.89438,-5.5168E-05],[223.89786,-5.259E-05],[223.90133,-5.5684E-05],[223.90481,-5.723E-05],[223.90828,-5.6715E-05]]}
-{"quant":[224.191,-5.3553E-05],"mems":[[224.09244,-5.4137E-05],[224.09591,-5.3621E-05],[224.09939,-5.2074E-05],[224.10286,-5.8262E-05],[224.10634,-5.723E-05],[224.10981,-4.9497E-05],[224.11329,-5.0528E-05],[224.11676,-5.0528E-05],[224.12024,-5.0012E-05],[224.12371,-5.4652E-05],[224.12719,-5.3621E-05],[224.13066,-5.1043E-05],[224.13414,-5.3106E-05],[224.13761,-5.4652E-05],[224.14109,-5.0012E-05],[224.14456,-4.9497E-05],[224.14803,-5.5684E-05],[224.15151,-5.7746E-05],[224.15498,-5.723E-05],[224.15846,-5.5168E-05],[224.16193,-5.5684E-05],[224.16541,-5.4137E-05],[224.16888,-5.4137E-05],[224.17236,-5.3621E-05],[224.17583,-5.1043E-05],[224.17931,-4.9497E-05],[224.18278,-5.1043E-05],[224.18626,-5.5684E-05],[224.18973,-5.1559E-05],[224.19321,-5.3621E-05],[224.19668,-5.3621E-05],[224.20015,-5.0012E-05],[224.20363,-5.8262E-05],[224.2071,-5.6199E-05],[224.21058,-5.4137E-05],[224.21405,-6.1355E-05],[224.21753,-5.723E-05],[224.221,-5.4652E-05],[224.22448,-5.8777E-05],[224.22795,-5.5168E-05],[224.23143,-5.3106E-05],[224.2349,-5.4137E-05],[224.23838,-5.2074E-05],[224.24185,-5.1043E-05],[224.24533,-5.0528E-05],[224.2488,-5.1559E-05],[224.25227,-5.3621E-05],[224.25575,-5.2074E-05],[224.25922,-5.1043E-05],[224.2627,-5.3106E-05],[224.26617,-5.5168E-05],[224.26965,-5.3106E-05],[224.27312,-5.3621E-05],[224.2766,-5.0528E-05],[224.28007,-4.4856E-05],[224.28355,-5.2074E-05],[224.28702,-5.5168E-05],[224.2905,-5.1559E-05],[224.29397,-5.5168E-05],[224.29745,-5.0012E-05],[224.30092,-5.1559E-05],[224.30439,-5.2074E-05],[224.30787,-5.259E-05],[224.31134,-5.9293E-05],[224.31482,-5.1043E-05],[224.31829,-4.795E-05],[224.32177,-5.1043E-05],[224.32524,-5.4137E-05],[224.32872,-6.0324E-05],[224.33219,-5.5684E-05],[224.33567,-5.4137E-05],[224.33914,-5.5168E-05],[224.34262,-5.3106E-05],[224.34609,-5.6715E-05],[224.34957,-5.723E-05],[224.35304,-5.4652E-05],[224.35651,-5.4137E-05],[224.35999,-5.0528E-05],[224.36346,-5.4137E-05],[224.36694,-5.9293E-05],[224.37041,-5.8262E-05],[224.37389,-5.7746E-05],[224.37736,-5.259E-05],[224.38084,-5.2074E-05],[224.38431,-5.4652E-05],[224.38779,-5.4652E-05],[224.39126,-5.2074E-05]]}
-{"quant":[224.64,-0.20783],"mems":[[224.54067,-5.3621E-05],[224.54415,-5.6199E-05],[224.54762,-5.4137E-05],[224.5511,-5.5684E-05],[224.55457,-5.5168E-05],[224.55805,-5.3621E-05],[224.56152,-5.2074E-05],[224.56499,-5.1559E-05],[224.56847,-5.3106E-05],[224.57194,-5.259E-05],[224.57542,-5.2074E-05],[224.57889,-5.3106E-05],[224.58237,-5.0012E-05],[224.58584,-5.2074E-05],[224.58932,-5.3106E-05],[224.59279,-5.1043E-05],[224.59627,-5.5684E-05],[224.59974,-5.6715E-05],[224.60322,-5.4137E-05],[224.60669,-5.1559E-05],[224.61017,-5.3106E-05],[224.61364,-5.4652E-05],[224.61711,-5.3106E-05],[224.62059,-5.259E-05],[224.62406,-4.795E-05],[224.62754,-5.1559E-05],[224.63101,-5.8262E-05],[224.63449,-5.7746E-05],[224.63796,-5.4652E-05],[224.64144,-5.1559E-05],[224.64491,-5.259E-05],[224.64839,-5.5168E-05],[224.65186,-5.5684E-05],[224.65534,-5.4137E-05],[224.65881,-5.4137E-05],[224.66229,-5.3621E-05],[224.66576,-5.1559E-05],[224.66923,-5.1043E-05],[224.67271,-5.5684E-05],[224.67618,-5.723E-05],[224.67966,-5.3106E-05],[224.68313,-5.5168E-05],[224.68661,-5.4137E-05],[224.69008,-5.4652E-05],[224.69356,-5.9808E-05],[224.69703,-5.7746E-05],[224.70051,-5.259E-05],[224.70398,-4.8465E-05],[224.70746,-5.4652E-05],[224.71093,-5.7746E-05],[224.71441,-5.259E-05],[224.71788,-5.5684E-05],[224.72135,-5.259E-05],[224.72483,-5.0528E-05],[224.7283,-5.2074E-05],[224.73178,-5.0012E-05],[224.73525,-5.3621E-05],[224.73873,-5.4652E-05],[224.7422,-5.0528E-05],[224.74568,-5.1559E-05],[224.74915,-5.5168E-05],[224.75263,-5.3106E-05],[224.7561,-5.723E-05],[224.75958,-5.5684E-05],[224.76305,-5.0012E-05],[224.76653,-5.0012E-05],[224.77,-5.1559E-05],[224.77347,-5.6715E-05],[224.77695,-5.5168E-05],[224.78042,-5.4137E-05],[224.7839,-5.6715E-05],[224.78737,-5.259E-05],[224.79085,-4.8465E-05],[224.79432,-5.3621E-05],[224.7978,-5.3621E-05],[224.80127,-4.5372E-05],[224.80475,-5.0012E-05],[224.80822,-4.8465E-05],[224.8117,-5.4137E-05],[224.81517,-5.9293E-05],[224.81865,-4.8981E-05],[224.82212,-5.3621E-05],[224.82559,-5.3106E-05],[224.82907,-5.0012E-05],[224.83254,-5.259E-05],[224.83602,-4.9497E-05],[224.83949,-5.1559E-05],[224.84297,-5.1043E-05]]}
-{"quant":[225.104,-5.3283E-05],"mems":[[225.00628,-4.795E-05],[225.00975,-5.4137E-05],[225.01323,-5.8777E-05],[225.0167,-5.4137E-05],[225.02018,-5.3106E-05],[225.02365,-5.723E-05],[225.02713,-5.5684E-05],[225.0306,-5.8262E-05],[225.03407,-5.4652E-05],[225.03755,-5.3106E-05],[225.04102,-5.259E-05],[225.0445,-5.5168E-05],[225.04797,-5.3106E-05],[225.05145,-5.0012E-05],[225.05492,-5.5684E-05],[225.0584,-5.6715E-05],[225.06187,-5.5684E-05],[225.06535,-5.0012E-05],[225.06882,-4.795E-05],[225.0723,-5.1559E-05],[225.07577,-5.2074E-05],[225.07925,-5.5684E-05],[225.08272,-5.7746E-05],[225.08619,-5.0528E-05],[225.08967,-4.9497E-05],[225.09314,-5.4137E-05],[225.09662,-5.6199E-05],[225.10009,-5.4652E-05],[225.10357,-5.1043E-05],[225.10704,-4.8465E-05],[225.11052,-4.9497E-05],[225.11399,-5.0012E-05],[225.11747,-4.8981E-05],[225.12094,-5.5168E-05],[225.12442,-5.8262E-05],[225.12789,-5.3106E-05],[225.13137,-5.259E-05],[225.13484,-5.6715E-05],[225.13831,-5.8262E-05],[225.14179,-5.723E-05],[225.14526,-5.4137E-05],[225.14874,-5.1559E-05],[225.15221,-5.259E-05],[225.15569,-5.0012E-05],[225.15916,-5.0012E-05],[225.16264,-5.3621E-05],[225.16611,-5.4652E-05],[225.16959,-5.1043E-05],[225.17306,-5.1559E-05],[225.17654,-5.2074E-05],[225.18001,-5.1559E-05],[225.18349,-5.3106E-05],[225.18696,-5.2074E-05],[225.19043,-5.3621E-05],[225.19391,-5.5684E-05],[225.19738,-5.723E-05],[225.20086,-5.723E-05],[225.20433,-5.5168E-05],[225.20781,-5.259E-05],[225.21128,-5.3106E-05],[225.21476,-5.6715E-05],[225.21823,-5.5684E-05],[225.22171,-5.259E-05],[225.22518,-5.3621E-05],[225.22866,-5.4652E-05],[225.23213,-5.3621E-05],[225.23561,-5.5684E-05],[225.23908,-5.7746E-05],[225.24255,-5.4137E-05],[225.24603,-5.259E-05],[225.2495,-5.1043E-05],[225.25298,-5.0528E-05],[225.25645,-5.6715E-05],[225.25993,-5.6199E-05],[225.2634,-5.5684E-05],[225.26688,-5.3106E-05],[225.27035,-4.8465E-05],[225.27383,-5.5684E-05],[225.2773,-5.723E-05],[225.28078,-5.0528E-05],[225.28425,-5.0528E-05],[225.28773,-5.4137E-05],[225.2912,-5.0528E-05],[225.29467,-5.2074E-05],[225.29815,-5.3106E-05],[225.30162,-5.259E-05],[225.3051,-5.4652E-05]]}
-{"quant":[225.571,-5.369E-05],"mems":[[225.47188,-5.0012E-05],[225.47536,-5.4652E-05],[225.47883,-5.6199E-05],[225.48231,-5.5684E-05],[225.48578,-5.4137E-05],[225.48926,-5.5168E-05],[225.49273,-5.0528E-05],[225.49621,-4.8981E-05],[225.49968,-5.3106E-05],[225.50315,-5.7746E-05],[225.50663,-5.8262E-05],[225.5101,-5.4652E-05],[225.51358,-5.0528E-05],[225.51705,-5.3621E-05],[225.52053,-5.6199E-05],[225.524,-5.4137E-05],[225.52748,-5.6199E-05],[225.53095,-5.5168E-05],[225.53443,-5.4652E-05],[225.5379,-5.723E-05],[225.54138,-5.5684E-05],[225.54485,-5.1559E-05],[225.54833,-5.0528E-05],[225.5518,-5.6199E-05],[225.55527,-5.3106E-05],[225.55875,-5.1043E-05],[225.56222,-5.3621E-05],[225.5657,-5.3106E-05],[225.56917,-5.6199E-05],[225.57265,-5.5168E-05],[225.57612,-5.3106E-05],[225.5796,-5.4652E-05],[225.58307,-5.4652E-05],[225.58655,-5.5168E-05],[225.59002,-5.5168E-05],[225.5935,-4.8981E-05],[225.59697,-5.4652E-05],[225.60045,-6.1355E-05],[225.60392,-5.5168E-05],[225.60739,-5.3106E-05],[225.61087,-5.2074E-05],[225.61434,-4.8981E-05],[225.61782,-5.259E-05],[225.62129,-5.2074E-05],[225.62477,-5.3621E-05],[225.62824,-5.5168E-05],[225.63172,-5.1043E-05],[225.63519,-5.1559E-05],[225.63867,-5.1559E-05],[225.64214,-5.5684E-05],[225.64562,-5.7746E-05],[225.64909,-5.3621E-05],[225.65257,-5.3621E-05],[225.65604,-5.1043E-05],[225.65951,-5.1559E-05],[225.66299,-5.5684E-05],[225.66646,-5.6199E-05],[225.66994,-5.2074E-05],[225.67341,-5.3621E-05],[225.67689,-5.5168E-05],[225.68036,-5.5684E-05],[225.68384,-5.6715E-05],[225.68731,-5.0528E-05],[225.69079,-4.6403E-05],[225.69426,-4.8981E-05],[225.69774,-5.6715E-05],[225.70121,-5.4652E-05],[225.70469,-5.259E-05],[225.70816,-5.7746E-05],[225.71163,-5.1559E-05],[225.71511,-5.2074E-05],[225.71858,-5.6199E-05],[225.72206,-5.259E-05],[225.72553,-5.5168E-05],[225.72901,-5.3106E-05],[225.73248,-5.0528E-05],[225.73596,-5.5684E-05],[225.73943,-5.3621E-05],[225.74291,-5.3621E-05],[225.74638,-5.6715E-05],[225.74986,-5.2074E-05],[225.75333,-5.259E-05],[225.75681,-5.7746E-05],[225.76028,-5.723E-05],[225.76375,-5.6199E-05],[225.76723,-5.4137E-05],[225.7707,-5.5168E-05],[225.77418,-5.4137E-05]]}
-{"quant":[226.302,-5.4292E-05],"mems":[[226.20504,-5.1043E-05],[226.20851,-5.4652E-05],[226.21199,-5.1559E-05],[226.21546,-4.795E-05],[226.21894,-5.2074E-05],[226.22241,-5.4137E-05],[226.22589,-5.3621E-05],[226.22936,-5.6715E-05],[226.23283,-5.5168E-05],[226.23631,-5.4137E-05],[226.23978,-5.259E-05],[226.24326,-5.3106E-05],[226.24673,-5.4652E-05],[226.25021,-5.5684E-05],[226.25368,-5.723E-05],[226.25716,-5.4137E-05],[226.26063,-5.1559E-05],[226.26411,-5.2074E-05],[226.26758,-5.1559E-05],[226.27106,-5.3621E-05],[226.27453,-5.3621E-05],[226.27801,-5.2074E-05],[226.28148,-5.259E-05],[226.28495,-5.259E-05],[226.28843,-5.8262E-05],[226.2919,-5.7746E-05],[226.29538,-5.3621E-05],[226.29885,-5.4652E-05],[226.30233,-5.1559E-05],[226.3058,-5.3106E-05],[226.30928,-5.6199E-05],[226.31275,-5.5168E-05],[226.31623,-5.6199E-05],[226.3197,-5.3621E-05],[226.32318,-5.2074E-05],[226.32665,-5.5684E-05],[226.33013,-5.6715E-05],[226.3336,-5.6715E-05],[226.33707,-5.5168E-05],[226.34055,-5.259E-05],[226.34402,-5.0528E-05],[226.3475,-5.2074E-05],[226.35097,-5.7746E-05],[226.35445,-5.3106E-05],[226.35792,-5.0528E-05],[226.3614,-5.5684E-05],[226.36487,-5.3621E-05],[226.36835,-5.259E-05],[226.37182,-5.4652E-05],[226.3753,-5.723E-05],[226.37877,-5.3621E-05],[226.38225,-5.0012E-05],[226.38572,-5.2074E-05],[226.38919,-5.5684E-05],[226.39267,-5.6199E-05],[226.39614,-5.723E-05],[226.39962,-5.8777E-05],[226.40309,-5.259E-05],[226.40657,-5.4652E-05],[226.41004,-5.5684E-05],[226.41352,-5.0528E-05],[226.41699,-5.3621E-05],[226.42047,-5.2074E-05],[226.42394,-5.2074E-05],[226.42742,-5.1559E-05],[226.43089,-5.5168E-05],[226.43437,-5.8777E-05],[226.43784,-5.0012E-05],[226.44131,-4.8465E-05],[226.44479,-5.3106E-05],[226.44826,-5.5684E-05],[226.45174,-5.5168E-05],[226.45521,-5.4652E-05],[226.45869,-5.3621E-05],[226.46216,-5.0012E-05],[226.46564,-5.4652E-05],[226.46911,-5.8777E-05],[226.47259,-5.3106E-05],[226.47606,-5.6199E-05],[226.47954,-5.3621E-05],[226.48301,-5.1043E-05],[226.48649,-5.5168E-05],[226.48996,-5.259E-05],[226.49343,-5.6199E-05],[226.49691,-5.6715E-05],[226.50038,-5.3621E-05],[226.50386,-5.4137E-05]]}
-{"quant":[226.798,-5.4017E-05],"mems":[[226.69844,-5.1559E-05],[226.70191,-5.2074E-05],[226.70539,-5.6199E-05],[226.70886,-5.259E-05],[226.71234,-5.4137E-05],[226.71581,-5.5684E-05],[226.71929,-5.6199E-05],[226.72276,-5.1559E-05],[226.72624,-4.795E-05],[226.72971,-5.3621E-05],[226.73319,-5.7746E-05],[226.73666,-5.6199E-05],[226.74014,-5.259E-05],[226.74361,-5.4652E-05],[226.74709,-5.5684E-05],[226.75056,-5.3621E-05],[226.75403,-5.5168E-05],[226.75751,-5.3621E-05],[226.76098,-5.1043E-05],[226.76446,-5.2074E-05],[226.76793,-5.0528E-05],[226.77141,-4.8981E-05],[226.77488,-5.3106E-05],[226.77836,-5.3621E-05],[226.78183,-5.2074E-05],[226.78531,-5.259E-05],[226.78878,-5.2074E-05],[226.79226,-5.5684E-05],[226.79573,-5.5168E-05],[226.79921,-5.4137E-05],[226.80268,-5.3621E-05],[226.80615,-4.795E-05],[226.80963,-4.8981E-05],[226.8131,-5.259E-05],[226.81658,-5.4652E-05],[226.82005,-5.3106E-05],[226.82353,-5.1559E-05],[226.827,-5.5168E-05],[226.83048,-5.4137E-05],[226.83395,-5.3621E-05],[226.83743,-5.7746E-05],[226.8409,-5.5168E-05],[226.84438,-5.1043E-05],[226.84785,-5.1043E-05],[226.85133,-5.4137E-05],[226.8548,-5.8777E-05],[226.85827,-5.6715E-05],[226.86175,-5.3621E-05],[226.86522,-5.259E-05],[226.8687,-5.4137E-05],[226.87217,-5.6199E-05],[226.87565,-5.4137E-05],[226.87912,-5.6715E-05],[226.8826,-5.6199E-05],[226.88607,-5.2074E-05],[226.88955,-5.1559E-05],[226.89302,-5.5168E-05],[226.8965,-5.8262E-05],[226.89997,-5.5684E-05],[226.90345,-5.4652E-05],[226.90692,-5.1043E-05],[226.91039,-5.4652E-05],[226.91387,-5.5684E-05],[226.91734,-5.259E-05],[226.92082,-5.5684E-05],[226.92429,-5.1559E-05],[226.92777,-5.3106E-05],[226.93124,-5.5684E-05],[226.93472,-5.2074E-05],[226.93819,-5.0012E-05],[226.94167,-4.7434E-05],[226.94514,-5.0528E-05],[226.94862,-4.9497E-05],[226.95209,-4.9497E-05],[226.95557,-5.3106E-05],[226.95904,-5.3621E-05],[226.96251,-5.7746E-05],[226.96599,-5.3106E-05],[226.96946,-5.3621E-05],[226.97294,-5.5168E-05],[226.97641,-5.2074E-05],[226.97989,-5.5684E-05],[226.98336,-5.723E-05],[226.98684,-5.5168E-05],[226.99031,-5.3621E-05],[226.99379,-5.6199E-05],[226.99726,-5.723E-05],[227.00074,-5.4652E-05]]}
-{"quant":[227.271,-0.0014298],"mems":[[227.21617,-5.1043E-05],[227.21964,-5.3106E-05],[227.22311,-5.3621E-05],[227.22659,-5.2074E-05],[227.23006,-5.1559E-05],[227.23354,-5.5168E-05],[227.23701,-5.6715E-05],[227.24049,-5.2074E-05],[227.24396,-5.2074E-05],[227.24744,-5.6199E-05],[227.25091,-5.1043E-05],[227.25439,-5.3106E-05],[227.25786,-5.7746E-05],[227.26134,-5.6715E-05],[227.26481,-6.0839E-05],[227.26829,-5.6715E-05],[227.27176,-5.1043E-05],[227.27523,-5.1559E-05],[227.27871,-5.6199E-05],[227.28218,-5.7746E-05],[227.28566,-5.4137E-05],[227.28913,-5.5684E-05],[227.29261,-5.3106E-05],[227.29608,-5.1559E-05],[227.29956,-5.5684E-05],[227.30303,-5.5168E-05],[227.30651,-5.2074E-05],[227.30998,-5.3621E-05],[227.31346,-5.6715E-05],[227.31693,-5.6199E-05],[227.32041,-5.5684E-05],[227.32388,-5.723E-05],[227.32735,-5.7746E-05],[227.33083,-5.6199E-05],[227.3343,-5.4137E-05],[227.33778,-5.4137E-05],[227.34125,-5.6199E-05],[227.34473,-5.4652E-05],[227.3482,-5.1043E-05],[227.35168,-5.2074E-05],[227.35515,-5.3621E-05],[227.35863,-5.259E-05],[227.3621,-5.259E-05],[227.36558,-5.4652E-05],[227.36905,-5.3106E-05],[227.37253,-5.0528E-05],[227.376,-5.1043E-05],[227.37937,-5.259E-05],[227.38275,-5.5684E-05],[227.38612,-5.4137E-05],[227.3895,-5.6715E-05],[227.39287,-5.6199E-05],[227.39625,-5.0012E-05],[227.39962,-5.5168E-05],[227.403,-5.6199E-05],[227.40637,-4.9497E-05],[227.40975,-5.1043E-05],[227.41312,-5.1043E-05],[227.4165,-5.2074E-05],[227.41987,-5.3106E-05],[227.42325,-5.1043E-05],[227.42662,-5.6199E-05],[227.42999,-5.259E-05],[227.43337,-5.1043E-05],[227.43674,-5.5168E-05],[227.44012,-5.259E-05],[227.44349,-5.2074E-05],[227.44687,-5.1559E-05],[227.45024,-5.4652E-05],[227.45362,-5.6199E-05],[227.45699,-5.6715E-05],[227.46037,-5.8262E-05],[227.46374,-5.4137E-05],[227.46712,-5.4652E-05],[227.47049,-5.723E-05],[227.47387,-5.5168E-05],[227.47724,-5.5168E-05],[227.48061,-5.6199E-05],[227.48399,-5.5168E-05],[227.48736,-5.5168E-05],[227.49074,-5.1043E-05],[227.49411,-5.1043E-05],[227.49749,-5.2074E-05],[227.50086,-5.1559E-05],[227.50424,-5.4137E-05],[227.50761,-5.5684E-05],[227.51099,-5.723E-05],[227.51436,-5.6199E-05]]}
-{"quant":[227.737,-5.4553E-05],"mems":[[227.63922,-5.723E-05],[227.6426,-4.8981E-05],[227.64597,-4.6919E-05],[227.64935,-5.259E-05],[227.65272,-5.259E-05],[227.6561,-5.259E-05],[227.65947,-5.4137E-05],[227.66285,-5.1043E-05],[227.66622,-4.8465E-05],[227.6696,-4.7434E-05],[227.67297,-5.3621E-05],[227.67635,-5.6715E-05],[227.67972,-5.1043E-05],[227.68309,-5.1559E-05],[227.68647,-5.3106E-05],[227.68984,-5.4652E-05],[227.69322,-5.4652E-05],[227.69659,-5.3621E-05],[227.69997,-5.9808E-05],[227.70334,-5.5684E-05],[227.70672,-4.8981E-05],[227.71009,-5.1559E-05],[227.71347,-5.4652E-05],[227.71684,-5.9808E-05],[227.72022,-5.9293E-05],[227.72359,-4.7434E-05],[227.72697,-4.795E-05],[227.73034,-5.723E-05],[227.73371,-5.723E-05],[227.73709,-5.9293E-05],[227.74046,-6.0324E-05],[227.74384,-5.259E-05],[227.74721,-5.3106E-05],[227.75059,-5.723E-05],[227.75396,-5.4652E-05],[227.75734,-5.5168E-05],[227.76071,-5.5684E-05],[227.76409,-5.723E-05],[227.76746,-5.4652E-05],[227.77084,-4.6403E-05],[227.77421,-5.4652E-05],[227.77759,-5.4137E-05],[227.78096,-5.0012E-05],[227.78433,-5.6199E-05],[227.78771,-5.7746E-05],[227.79108,-6.0324E-05],[227.79446,-5.8262E-05],[227.79783,-5.5684E-05],[227.80121,-5.4137E-05],[227.80458,-5.0528E-05],[227.80796,-5.4137E-05],[227.81133,-5.7746E-05],[227.81471,-5.4652E-05],[227.81808,-5.1043E-05],[227.82146,-5.3106E-05],[227.82483,-5.6715E-05],[227.82821,-5.259E-05],[227.83158,-4.8465E-05],[227.83495,-5.259E-05],[227.83833,-5.2074E-05],[227.8417,-4.9497E-05],[227.84508,-5.3106E-05],[227.84845,-5.7746E-05],[227.85183,-5.9293E-05],[227.8552,-5.5684E-05],[227.85858,-5.0012E-05],[227.86195,-4.8465E-05],[227.86533,-5.3106E-05],[227.8687,-5.5168E-05],[227.87208,-5.259E-05],[227.87545,-5.259E-05],[227.87883,-5.2074E-05],[227.8822,-4.9497E-05],[227.88557,-4.8981E-05],[227.88895,-5.0528E-05],[227.89232,-5.259E-05],[227.8957,-5.259E-05],[227.89907,-5.5684E-05],[227.90245,-5.7746E-05],[227.90582,-5.4137E-05],[227.9092,-5.1559E-05],[227.91257,-5.2074E-05],[227.91595,-5.4137E-05],[227.91932,-5.259E-05],[227.9227,-5.1559E-05],[227.92607,-5.3106E-05],[227.92945,-5.7746E-05],[227.93282,-5.5168E-05],[227.93619,-5.4652E-05],[227.93957,-5.723E-05]]}
-{"quant":[228.465,-5.4054E-05],"mems":[[228.36815,-5.5168E-05],[228.37153,-5.4652E-05],[228.3749,-5.3621E-05],[228.37828,-4.795E-05],[228.38165,-5.1559E-05],[228.38503,-5.3621E-05],[228.3884,-5.3621E-05],[228.39177,-5.3106E-05],[228.39515,-4.8981E-05],[228.39852,-4.9497E-05],[228.4019,-5.3621E-05],[228.40527,-5.259E-05],[228.40865,-5.5684E-05],[228.41202,-5.2074E-05],[228.4154,-4.9497E-05],[228.41877,-5.4137E-05],[228.42215,-4.8981E-05],[228.42552,-5.4137E-05],[228.4289,-5.3621E-05],[228.43227,-5.0012E-05],[228.43565,-5.1559E-05],[228.43902,-5.1559E-05],[228.44239,-5.6715E-05],[228.44577,-5.2074E-05],[228.44914,-5.1559E-05],[228.45252,-5.4137E-05],[228.45589,-5.4137E-05],[228.45927,-5.3106E-05],[228.46264,-5.0012E-05],[228.46602,-5.259E-05],[228.46939,-5.2074E-05],[228.47277,-4.8981E-05],[228.47614,-5.3621E-05],[228.47952,-5.5168E-05],[228.48289,-5.3106E-05],[228.48627,-5.3106E-05],[228.48964,-5.1043E-05],[228.49301,-5.1043E-05],[228.49639,-5.3106E-05],[228.49976,-5.8777E-05],[228.50314,-5.7746E-05],[228.50651,-5.6715E-05],[228.50989,-5.5168E-05],[228.51326,-5.1559E-05],[228.51664,-5.4652E-05],[228.52001,-5.0528E-05],[228.52339,-5.2074E-05],[228.52676,-5.9293E-05],[228.53014,-5.3621E-05],[228.53351,-4.795E-05],[228.53689,-5.4652E-05],[228.54026,-5.6715E-05],[228.54363,-5.4137E-05],[228.54701,-5.4652E-05],[228.55038,-5.3621E-05],[228.55376,-5.4652E-05],[228.55713,-5.5684E-05],[228.56051,-5.5168E-05],[228.56388,-5.6199E-05],[228.56726,-5.8262E-05],[228.57063,-5.5684E-05],[228.57401,-5.259E-05],[228.57738,-5.8262E-05],[228.58076,-5.4652E-05],[228.58413,-5.3621E-05],[228.58751,-5.2074E-05],[228.59088,-5.1043E-05],[228.59425,-5.4652E-05],[228.59763,-5.3106E-05],[228.601,-6.3417E-05],[228.60438,-6.0839E-05],[228.60775,-5.5168E-05],[228.61113,-5.6715E-05],[228.6145,-5.3621E-05],[228.61788,-5.5684E-05],[228.62125,-5.723E-05],[228.62463,-5.5684E-05],[228.628,-5.259E-05],[228.63138,-5.1043E-05],[228.63475,-5.4137E-05],[228.63813,-5.6715E-05],[228.6415,-5.3106E-05],[228.64487,-5.259E-05],[228.64825,-5.4137E-05],[228.65162,-5.1559E-05],[228.655,-5.1559E-05],[228.65837,-4.9497E-05],[228.66175,-5.0012E-05],[228.66512,-5.3621E-05]]}
-{"quant":[228.925,-5.4343E-05],"mems":[[228.82711,-5.1043E-05],[228.83048,-5.3106E-05],[228.83386,-5.4137E-05],[228.83723,-5.6199E-05],[228.84061,-5.6199E-05],[228.84398,-5.3621E-05],[228.84735,-5.4137E-05],[228.85073,-5.3106E-05],[228.8541,-5.5684E-05],[228.85748,-5.4652E-05],[228.86085,-5.3106E-05],[228.86423,-5.6199E-05],[228.8676,-5.2074E-05],[228.87098,-5.4137E-05],[228.87435,-5.723E-05],[228.87773,-5.4137E-05],[228.8811,-5.6199E-05],[228.88448,-5.723E-05],[228.88785,-5.5168E-05],[228.89123,-5.4137E-05],[228.8946,-5.2074E-05],[228.89797,-5.259E-05],[228.90135,-5.4652E-05],[228.90472,-5.5168E-05],[228.9081,-5.4652E-05],[228.91147,-5.1559E-05],[228.91485,-5.259E-05],[228.91822,-5.6715E-05],[228.9216,-5.3621E-05],[228.92497,-5.259E-05],[228.92835,-5.6715E-05],[228.93172,-5.9808E-05],[228.9351,-5.6199E-05],[228.93847,-5.259E-05],[228.94185,-5.723E-05],[228.94522,-5.4652E-05],[228.94859,-5.5684E-05],[228.95197,-5.5168E-05],[228.95534,-5.1043E-05],[228.95872,-5.3106E-05],[228.96209,-5.0528E-05],[228.96547,-4.9497E-05],[228.96884,-5.4137E-05],[228.97222,-6.0839E-05],[228.97559,-6.0324E-05],[228.97897,-5.4137E-05],[228.98234,-5.3106E-05],[228.98572,-5.3621E-05],[228.98909,-5.6199E-05],[228.99247,-5.6199E-05],[228.99584,-5.1043E-05],[228.99921,-5.1559E-05],[229.00259,-5.0528E-05],[229.00596,-5.259E-05],[229.00934,-5.9293E-05],[229.01271,-5.5168E-05],[229.01609,-5.4652E-05],[229.01946,-5.1559E-05],[229.02284,-4.795E-05],[229.02621,-5.5168E-05],[229.02959,-5.5684E-05],[229.03296,-5.2074E-05],[229.03634,-5.0528E-05],[229.03971,-4.8981E-05],[229.04309,-5.1043E-05],[229.04646,-5.4652E-05],[229.04983,-5.259E-05],[229.05321,-5.1043E-05],[229.05658,-5.6199E-05],[229.05996,-5.4652E-05],[229.06333,-5.5684E-05],[229.06671,-5.4137E-05],[229.07008,-4.795E-05],[229.07346,-5.6199E-05],[229.07683,-5.7746E-05],[229.08021,-5.3621E-05],[229.08358,-5.1559E-05],[229.08696,-4.9497E-05],[229.09033,-5.3106E-05],[229.09371,-5.3106E-05],[229.09708,-5.6199E-05],[229.10045,-5.5168E-05],[229.10383,-5.0012E-05],[229.1072,-5.259E-05],[229.11058,-5.6715E-05],[229.11395,-5.723E-05],[229.11733,-5.5684E-05],[229.1207,-5.3621E-05],[229.12408,-5.6715E-05],[229.12745,-5.9293E-05]]}
-{"quant":[229.405,-5.2367E-05],"mems":[[229.30631,-5.3106E-05],[229.30968,-5.5684E-05],[229.31306,-5.6715E-05],[229.31643,-5.259E-05],[229.31981,-5.1559E-05],[229.32318,-5.0012E-05],[229.32656,-5.4652E-05],[229.32993,-5.7746E-05],[229.33331,-5.6715E-05],[229.33668,-5.1559E-05],[229.34006,-5.1559E-05],[229.34343,-5.3106E-05],[229.34681,-5.2074E-05],[229.35018,-5.5168E-05],[229.35355,-5.3106E-05],[229.35693,-5.2074E-05],[229.3603,-6.0324E-05],[229.36368,-5.9808E-05],[229.36705,-5.2074E-05],[229.37043,-5.2074E-05],[229.3738,-4.9497E-05],[229.37718,-4.7434E-05],[229.38055,-5.4137E-05],[229.38393,-5.5684E-05],[229.3873,-5.5684E-05],[229.39068,-5.5168E-05],[229.39405,-4.8981E-05],[229.39743,-4.795E-05],[229.4008,-5.259E-05],[229.40417,-5.0528E-05],[229.40755,-4.8981E-05],[229.41092,-5.0012E-05],[229.4143,-5.0012E-05],[229.41767,-5.5168E-05],[229.42105,-5.8777E-05],[229.42442,-5.259E-05],[229.4278,-4.7434E-05],[229.43117,-4.8465E-05],[229.43455,-5.0528E-05],[229.43792,-5.3621E-05],[229.4413,-5.4652E-05],[229.44467,-5.2074E-05],[229.44805,-5.2074E-05],[229.45142,-5.3106E-05],[229.45479,-5.1559E-05],[229.45817,-5.3621E-05],[229.46154,-5.5168E-05],[229.46492,-5.259E-05],[229.46829,-5.0528E-05],[229.47167,-4.8465E-05],[229.47504,-5.259E-05],[229.47842,-5.9293E-05],[229.48179,-5.9293E-05],[229.48517,-5.5684E-05],[229.48854,-5.0528E-05],[229.49192,-5.259E-05],[229.49529,-5.1559E-05],[229.49867,-5.0012E-05],[229.50204,-5.0528E-05],[229.50541,-4.9497E-05],[229.50879,-5.3106E-05],[229.51216,-5.1559E-05],[229.51554,-5.2074E-05],[229.51891,-5.3106E-05],[229.52229,-5.0012E-05],[229.52566,-5.2074E-05],[229.52904,-5.1559E-05],[229.53241,-5.3106E-05],[229.53579,-5.6715E-05],[229.53916,-5.5168E-05],[229.54254,-5.723E-05],[229.54591,-5.5168E-05],[229.54929,-4.6403E-05],[229.55266,-5.1559E-05],[229.55603,-5.723E-05],[229.55941,-5.6199E-05],[229.56278,-5.5168E-05],[229.56616,-4.795E-05],[229.56953,-4.4856E-05],[229.57291,-4.8465E-05],[229.57628,-5.3106E-05],[229.57966,-5.3621E-05],[229.58303,-5.2074E-05],[229.58641,-5.259E-05],[229.58978,-5.1043E-05],[229.59316,-5.1559E-05],[229.59653,-5.4652E-05],[229.59991,-5.259E-05],[229.60328,-5.3106E-05],[229.60665,-4.9497E-05]]}
-{"quant":[229.899,-1.7635],"mems":[[229.79901,-5.1043E-05],[229.80239,-5.259E-05],[229.80576,-5.4652E-05],[229.80913,-4.6919E-05],[229.81251,-5.1043E-05],[229.81588,-5.3106E-05],[229.81926,-5.1043E-05],[229.82263,-5.1043E-05],[229.82601,-5.0012E-05],[229.82938,-5.1043E-05],[229.83276,-5.2074E-05],[229.83613,-5.1043E-05],[229.83951,-5.2074E-05],[229.84288,-5.4137E-05],[229.84626,-5.0528E-05],[229.84963,-5.259E-05],[229.85301,-5.5168E-05],[229.85638,-5.4652E-05],[229.85975,-5.723E-05],[229.86313,-5.259E-05],[229.8665,-5.0012E-05],[229.86988,-5.259E-05],[229.87325,-5.3621E-05],[229.87663,-5.6199E-05],[229.88,-5.723E-05],[229.88338,-5.2074E-05],[229.88675,-4.8981E-05],[229.89013,-5.2074E-05],[229.8935,-5.6199E-05],[229.89688,-5.8777E-05],[229.90025,-5.3106E-05],[229.90363,-5.259E-05],[229.907,-5.5684E-05],[229.9105,-5.259E-05],[229.91401,-5.6715E-05],[229.91751,-5.5168E-05],[229.92101,-5.5168E-05],[229.92451,-5.5168E-05],[229.92802,-5.3106E-05],[229.93152,-5.5168E-05],[229.93502,-5.1043E-05],[229.93852,-5.2074E-05],[229.94203,-5.0528E-05],[229.94553,-4.6919E-05],[229.94903,-5.5684E-05],[229.95253,-5.4652E-05],[229.95604,-5.3106E-05],[229.95954,-5.8777E-05],[229.96304,-5.5684E-05],[229.96655,-5.3106E-05],[229.97005,-5.3106E-05],[229.97355,-5.3106E-05],[229.97705,-5.6715E-05],[229.98056,-5.723E-05],[229.98406,-5.3106E-05],[229.98756,-5.3106E-05],[229.99106,-5.6715E-05],[229.99457,-5.3106E-05],[229.99807,-5.3621E-05],[230.00157,-5.4652E-05],[230.00507,-5.3621E-05],[230.00858,-5.4652E-05],[230.01208,-5.3106E-05],[230.01558,-5.3621E-05],[230.01909,-5.4137E-05],[230.02259,-5.6199E-05],[230.02609,-5.5168E-05],[230.02959,-5.0528E-05],[230.0331,-5.1043E-05],[230.0366,-5.5168E-05],[230.0401,-5.259E-05],[230.0436,-4.9497E-05],[230.04711,-5.259E-05],[230.05061,-4.9497E-05],[230.05411,-5.1043E-05],[230.05761,-5.4652E-05],[230.06112,-5.0012E-05],[230.06462,-5.0012E-05],[230.06812,-4.9497E-05],[230.07163,-5.2074E-05],[230.07513,-5.9808E-05],[230.07863,-5.1559E-05],[230.08213,-5.1043E-05],[230.08564,-5.5168E-05],[230.08914,-4.8981E-05],[230.09264,-5.3621E-05],[230.09614,-5.6199E-05],[230.09965,-5.259E-05]]}
-{"quant":[230.361,-5.3381E-05],"mems":[[230.26427,-5.5684E-05],[230.26777,-5.8262E-05],[230.27128,-5.4137E-05],[230.27478,-5.4652E-05],[230.27828,-6.0839E-05],[230.28179,-6.3417E-05],[230.28529,-5.723E-05],[230.28879,-5.3106E-05],[230.29229,-5.6715E-05],[230.2958,-5.0012E-05],[230.2993,-5.0528E-05],[230.3028,-5.9808E-05],[230.3063,-5.3621E-05],[230.30981,-5.3621E-05],[230.31331,-5.6715E-05],[230.31681,-5.5684E-05],[230.32031,-5.3106E-05],[230.32382,-5.2074E-05],[230.32732,-5.5684E-05],[230.33082,-5.0528E-05],[230.33433,-4.8981E-05],[230.33783,-5.0528E-05],[230.34133,-5.4652E-05],[230.34483,-5.7746E-05],[230.34834,-5.7746E-05],[230.35184,-5.4137E-05],[230.35534,-4.6919E-05],[230.35884,-5.2074E-05],[230.36235,-5.6199E-05],[230.36585,-5.7746E-05],[230.36935,-5.5168E-05],[230.37285,-5.259E-05],[230.37636,-5.7746E-05],[230.37986,-5.5168E-05],[230.38336,-5.3106E-05],[230.38687,-5.5684E-05],[230.39037,-5.5168E-05],[230.39387,-5.3621E-05],[230.39737,-5.2074E-05],[230.40088,-5.259E-05],[230.40438,-5.3621E-05],[230.40788,-5.3106E-05],[230.41138,-5.3106E-05],[230.41489,-5.4137E-05],[230.41839,-5.0528E-05],[230.42189,-5.3621E-05],[230.42539,-5.5684E-05],[230.4289,-4.795E-05],[230.4324,-4.8465E-05],[230.4359,-5.1559E-05],[230.43941,-5.3621E-05],[230.44291,-5.6199E-05],[230.44641,-5.5168E-05],[230.44991,-5.259E-05],[230.45342,-4.8981E-05],[230.45692,-5.4137E-05],[230.46042,-5.2074E-05],[230.46392,-5.0012E-05],[230.46743,-5.259E-05],[230.47093,-5.259E-05],[230.47443,-5.3106E-05],[230.47793,-5.1043E-05],[230.48144,-5.8777E-05],[230.48494,-5.8262E-05],[230.48844,-5.5168E-05],[230.49195,-5.259E-05],[230.49545,-4.7434E-05],[230.49895,-5.3106E-05],[230.50245,-5.3106E-05],[230.50596,-5.6199E-05],[230.50946,-5.8262E-05],[230.51296,-5.259E-05],[230.51646,-4.795E-05],[230.51997,-4.6403E-05],[230.52347,-5.1043E-05],[230.52697,-5.4137E-05],[230.53047,-5.4652E-05],[230.53398,-5.6715E-05],[230.53748,-5.259E-05],[230.54098,-5.259E-05],[230.54449,-5.7746E-05],[230.54799,-5.3106E-05],[230.55149,-5.6199E-05],[230.55499,-5.7746E-05],[230.5585,-5.5168E-05],[230.562,-5.6715E-05]]}
-{"quant":[231.128,-5.3638E-05],"mems":[[231.03136,-5.3621E-05],[231.03486,-5.5684E-05],[231.03836,-5.5168E-05],[231.04186,-5.5168E-05],[231.04537,-5.3621E-05],[231.04887,-5.6199E-05],[231.05237,-5.723E-05],[231.05587,-5.4652E-05],[231.05938,-5.3621E-05],[231.06288,-5.3621E-05],[231.06638,-5.6199E-05],[231.06989,-5.7746E-05],[231.07339,-5.5684E-05],[231.07689,-5.3106E-05],[231.08039,-5.3621E-05],[231.0839,-5.5684E-05],[231.0874,-5.1043E-05],[231.0909,-5.0012E-05],[231.0944,-5.4137E-05],[231.09791,-5.4652E-05],[231.10141,-5.5168E-05],[231.10491,-5.1559E-05],[231.10841,-4.8465E-05],[231.11192,-5.1043E-05],[231.11542,-5.5168E-05],[231.11892,-5.6715E-05],[231.12243,-5.3106E-05],[231.12593,-5.0528E-05],[231.12943,-5.3106E-05],[231.13293,-5.4652E-05],[231.13644,-5.5684E-05],[231.13994,-5.6199E-05],[231.14344,-5.1559E-05],[231.14694,-5.1043E-05],[231.15045,-5.3106E-05],[231.15395,-5.4137E-05],[231.15745,-5.8262E-05],[231.16095,-5.4137E-05],[231.16446,-5.3106E-05],[231.16796,-5.6715E-05],[231.17146,-4.8981E-05],[231.17497,-5.3621E-05],[231.17847,-5.723E-05],[231.18197,-5.0012E-05],[231.18547,-5.1559E-05],[231.18898,-4.9497E-05],[231.19248,-5.1043E-05],[231.19598,-5.4652E-05],[231.19948,-5.5168E-05],[231.20299,-5.4137E-05],[231.20649,-5.1043E-05],[231.20999,-5.4652E-05],[231.21349,-5.723E-05],[231.217,-5.4652E-05],[231.2205,-5.4137E-05],[231.224,-5.259E-05],[231.22751,-5.259E-05],[231.23101,-5.4652E-05],[231.23451,-5.6199E-05],[231.23801,-5.8777E-05],[231.24152,-5.723E-05],[231.24502,-5.8262E-05],[231.24852,-5.4137E-05],[231.25202,-4.795E-05],[231.25553,-5.4137E-05],[231.25903,-5.2074E-05],[231.26253,-5.3621E-05],[231.26603,-5.8777E-05],[231.26954,-5.1043E-05],[231.27304,-4.9497E-05],[231.27654,-5.3621E-05],[231.28005,-5.4652E-05],[231.28355,-5.3106E-05],[231.28705,-5.3106E-05],[231.29055,-5.2074E-05],[231.29406,-5.2074E-05],[231.29756,-5.6715E-05],[231.30106,-5.4137E-05],[231.30456,-4.9497E-05],[231.30807,-5.1559E-05],[231.31157,-5.3621E-05],[231.31507,-5.4652E-05],[231.31857,-5.3621E-05],[231.32208,-5.259E-05],[231.32558,-5.5684E-05],[231.32908,-5.4137E-05]]}
-{"quant":[231.603,-5.179E-05],"mems":[[231.50422,-5.8262E-05],[231.50772,-5.3621E-05],[231.51122,-5.3621E-05],[231.51472,-5.7746E-05],[231.51823,-5.5168E-05],[231.52173,-5.6715E-05],[231.52523,-5.1043E-05],[231.52873,-5.0528E-05],[231.53224,-5.6715E-05],[231.53574,-5.0012E-05],[231.53924,-5.1559E-05],[231.54275,-5.1559E-05],[231.54625,-5.0528E-05],[231.54975,-5.4137E-05],[231.55325,-5.4137E-05],[231.55676,-5.3106E-05],[231.56026,-4.8981E-05],[231.56376,-5.2074E-05],[231.56726,-5.4137E-05],[231.57077,-5.7746E-05],[231.57427,-5.4137E-05],[231.57777,-4.8465E-05],[231.58127,-5.3621E-05],[231.58478,-5.4137E-05],[231.58828,-5.3106E-05],[231.59178,-5.3106E-05],[231.59529,-5.5684E-05],[231.59879,-5.3106E-05],[231.60229,-4.9497E-05],[231.60579,-5.2074E-05],[231.6093,-5.259E-05],[231.6128,-5.4137E-05],[231.6163,-4.6919E-05],[231.6198,-4.6403E-05],[231.62331,-5.3621E-05],[231.62681,-5.259E-05],[231.63031,-5.3106E-05],[231.63381,-5.0012E-05],[231.63732,-4.6403E-05],[231.64082,-4.9497E-05],[231.64432,-5.4137E-05],[231.64783,-5.6715E-05],[231.65133,-5.6199E-05],[231.65483,-5.6199E-05],[231.65833,-5.1559E-05],[231.66184,-5.259E-05],[231.66534,-5.5168E-05],[231.66884,-5.2074E-05],[231.67234,-5.1559E-05],[231.67585,-5.0012E-05],[231.67935,-5.1559E-05],[231.68285,-5.5168E-05],[231.68635,-5.2074E-05],[231.68986,-5.0528E-05],[231.69336,-5.0012E-05],[231.69686,-4.7434E-05],[231.70037,-4.8465E-05],[231.70387,-5.3106E-05],[231.70737,-5.259E-05],[231.71087,-5.4137E-05],[231.71438,-5.4652E-05],[231.71788,-5.259E-05],[231.72138,-5.1043E-05],[231.72488,-4.9497E-05],[231.72839,-5.0012E-05],[231.73189,-5.0528E-05],[231.73539,-5.3106E-05],[231.73889,-5.3621E-05],[231.7424,-5.9293E-05],[231.7459,-5.8262E-05],[231.7494,-5.259E-05],[231.75291,-5.5684E-05],[231.75641,-5.1043E-05],[231.75991,-5.2074E-05],[231.76341,-5.1559E-05],[231.76692,-4.8981E-05],[231.77042,-5.4137E-05],[231.77392,-5.5168E-05],[231.77742,-5.3621E-05],[231.78093,-4.9497E-05],[231.78443,-5.3106E-05],[231.78793,-5.6715E-05],[231.79143,-5.3621E-05],[231.79494,-5.259E-05],[231.79844,-4.8465E-05],[231.80194,-4.8465E-05],[231.80545,-5.3106E-05]]}
-{"quant":[232.075,-5.4446E-05],"mems":[[231.97708,-5.0528E-05],[231.98058,-5.6199E-05],[231.98408,-5.4652E-05],[231.98758,-5.0012E-05],[231.99109,-5.7746E-05],[231.99459,-5.5168E-05],[231.99809,-5.1559E-05],[232.00159,-5.3621E-05],[232.0051,-5.3621E-05],[232.0086,-5.259E-05],[232.0121,-4.795E-05],[232.01561,-5.0012E-05],[232.01911,-5.3106E-05],[232.02261,-5.1043E-05],[232.02611,-4.8981E-05],[232.02962,-5.3106E-05],[232.03312,-5.9293E-05],[232.03662,-5.7746E-05],[232.04012,-5.5168E-05],[232.04363,-5.0012E-05],[232.04713,-5.1559E-05],[232.05063,-5.6199E-05],[232.05413,-5.5168E-05],[232.05764,-5.7746E-05],[232.06114,-5.6715E-05],[232.06464,-5.0528E-05],[232.06815,-5.2074E-05],[232.07165,-5.5168E-05],[232.07515,-5.5684E-05],[232.07865,-5.8777E-05],[232.08216,-5.6199E-05],[232.08566,-4.8465E-05],[232.08916,-5.1043E-05],[232.09266,-5.259E-05],[232.09617,-5.3621E-05],[232.09967,-5.8777E-05],[232.10317,-5.5684E-05],[232.10667,-5.2074E-05],[232.11018,-5.1043E-05],[232.11368,-5.3106E-05],[232.11718,-5.5684E-05],[232.12069,-5.6199E-05],[232.12419,-5.7746E-05],[232.12769,-5.4652E-05],[232.13119,-5.4652E-05],[232.1347,-5.6715E-05],[232.1382,-5.6715E-05],[232.1417,-5.6715E-05],[232.1452,-5.3621E-05],[232.14871,-5.3106E-05],[232.15221,-5.7746E-05],[232.15571,-5.6715E-05],[232.15921,-5.1559E-05],[232.16272,-5.4137E-05],[232.16622,-5.4137E-05],[232.16972,-5.1043E-05],[232.17323,-5.1559E-05],[232.17673,-5.3621E-05],[232.18023,-5.4137E-05],[232.18373,-5.1559E-05],[232.18724,-5.2074E-05],[232.19074,-4.7434E-05],[232.19424,-5.1559E-05],[232.19774,-5.9293E-05],[232.20125,-5.4137E-05],[232.20475,-5.723E-05],[232.20825,-5.4137E-05],[232.21175,-5.2074E-05],[232.21526,-5.9808E-05],[232.21876,-5.6199E-05],[232.22226,-5.3106E-05],[232.22577,-5.1559E-05],[232.22927,-5.0012E-05],[232.23277,-5.259E-05],[232.23627,-5.4137E-05],[232.23978,-5.5168E-05],[232.24328,-5.3106E-05],[232.24678,-5.259E-05],[232.25028,-5.0528E-05],[232.25379,-4.8465E-05],[232.25729,-5.4137E-05],[232.26079,-5.4137E-05],[232.26429,-5.3621E-05],[232.2678,-5.4137E-05],[232.2713,-5.259E-05],[232.2748,-5.5684E-05],[232.27831,-5.4137E-05]]}
-{"quant":[232.526,-1.712],"mems":[[232.48146,-5.5684E-05],[232.48496,-5.5168E-05],[232.48847,-5.3621E-05],[232.49197,-5.0012E-05],[232.49547,-5.1559E-05],[232.49897,-5.1043E-05],[232.50248,-5.3106E-05],[232.50598,-5.7746E-05],[232.50948,-5.4652E-05],[232.51298,-5.0012E-05],[232.51649,-5.1043E-05],[232.51999,-5.4652E-05],[232.52349,-5.3621E-05],[232.52699,-5.0528E-05],[232.5305,-5.2074E-05],[232.534,-5.1559E-05],[232.53736,-5.0528E-05],[232.54071,-5.2074E-05],[232.54407,-5.8777E-05],[232.54743,-5.8262E-05],[232.55079,-5.1559E-05],[232.55414,-5.259E-05],[232.5575,-5.5684E-05],[232.56086,-5.4652E-05],[232.56422,-5.259E-05],[232.56757,-5.2074E-05],[232.57093,-4.8465E-05],[232.57429,-4.5372E-05],[232.57765,-4.8981E-05],[232.581,-5.1559E-05],[232.58436,-5.5168E-05],[232.58772,-5.4652E-05],[232.59107,-4.8981E-05],[232.59443,-4.7434E-05],[232.59779,-5.0528E-05],[232.60115,-5.6199E-05],[232.6045,-5.7746E-05],[232.60786,-5.4652E-05],[232.61122,-5.259E-05],[232.61458,-5.1043E-05],[232.61793,-5.5168E-05],[232.62129,-5.8777E-05],[232.62465,-5.5684E-05],[232.62801,-5.5168E-05],[232.63136,-4.8981E-05],[232.63472,-5.1043E-05],[232.63808,-5.7746E-05],[232.64143,-5.259E-05],[232.64479,-5.5168E-05],[232.64815,-5.4652E-05],[232.65151,-5.1043E-05],[232.65486,-5.5684E-05],[232.65822,-5.6199E-05],[232.66158,-5.4137E-05],[232.66494,-5.4652E-05],[232.66829,-5.259E-05],[232.67165,-5.4137E-05],[232.67501,-5.723E-05],[232.67837,-5.5684E-05],[232.68172,-5.7746E-05],[232.68508,-5.4137E-05],[232.68844,-5.0528E-05],[232.69179,-5.3106E-05],[232.69515,-5.4652E-05],[232.69851,-5.4652E-05],[232.70187,-5.3106E-05],[232.70522,-5.259E-05],[232.70858,-5.4137E-05],[232.71194,-5.0528E-05],[232.7153,-5.259E-05],[232.71865,-5.6199E-05],[232.72201,-5.0528E-05],[232.72537,-5.6715E-05],[232.72873,-5.723E-05],[232.73208,-5.3621E-05],[232.73544,-5.8777E-05],[232.7388,-5.4137E-05],[232.74215,-5.3621E-05],[232.74551,-5.5684E-05],[232.74887,-5.1559E-05],[232.75223,-5.2074E-05],[232.75558,-5.3106E-05],[232.75894,-5.3106E-05],[232.7623,-5.3106E-05],[232.76566,-5.3106E-05],[232.76901,-5.3106E-05],[232.77237,-5.3106E-05],[232.77573,-5.1043E-05],[232.77909,-4.9497E-05]]}
-{"quant":[232.997,-5.3023E-05],"mems":[[232.89995,-5.8262E-05],[232.90331,-5.4652E-05],[232.90666,-4.8465E-05],[232.91002,-5.0528E-05],[232.91338,-5.4137E-05],[232.91674,-5.723E-05],[232.92009,-5.3106E-05],[232.92345,-5.5168E-05],[232.92681,-5.6199E-05],[232.93017,-5.4137E-05],[232.93352,-5.8777E-05],[232.93688,-5.7746E-05],[232.94024,-5.3106E-05],[232.94359,-5.259E-05],[232.94695,-5.3106E-05],[232.95031,-5.3106E-05],[232.95367,-5.259E-05],[232.95702,-4.9497E-05],[232.96038,-4.8465E-05],[232.96374,-5.0012E-05],[232.9671,-5.1043E-05],[232.97045,-5.4137E-05],[232.97381,-5.6199E-05],[232.97717,-5.2074E-05],[232.98053,-4.8465E-05],[232.98388,-5.1043E-05],[232.98724,-5.3106E-05],[232.9906,-5.4137E-05],[232.99395,-5.6199E-05],[232.99731,-5.6715E-05],[233.00067,-5.8777E-05],[233.00403,-5.4652E-05],[233.00738,-5.1559E-05],[233.01074,-5.723E-05],[233.0141,-5.4137E-05],[233.01746,-5.3106E-05],[233.02081,-5.4652E-05],[233.02417,-5.0012E-05],[233.02753,-4.8981E-05],[233.03089,-4.8981E-05],[233.03424,-5.2074E-05],[233.0376,-5.2074E-05],[233.04096,-5.1559E-05],[233.04431,-5.3621E-05],[233.04767,-5.4137E-05],[233.05103,-5.6715E-05],[233.05439,-5.4137E-05],[233.05774,-5.1043E-05],[233.0611,-5.1559E-05],[233.06446,-5.259E-05],[233.06782,-4.9497E-05],[233.07117,-4.8465E-05],[233.07453,-5.4652E-05],[233.07789,-5.4652E-05],[233.08125,-5.3621E-05],[233.0846,-5.6199E-05],[233.08796,-5.5168E-05],[233.09132,-5.5168E-05],[233.09467,-5.0012E-05],[233.09803,-4.795E-05],[233.10139,-5.1559E-05],[233.10475,-5.0012E-05],[233.1081,-4.9497E-05],[233.11146,-5.1559E-05],[233.11482,-4.7434E-05],[233.11818,-4.9497E-05],[233.12153,-5.3106E-05],[233.12489,-5.1043E-05],[233.12825,-5.5684E-05],[233.13161,-5.5168E-05],[233.13496,-5.0012E-05],[233.13832,-5.1043E-05],[233.14168,-4.7434E-05],[233.14503,-5.2074E-05],[233.14839,-5.5168E-05],[233.15175,-5.1559E-05],[233.15511,-5.5168E-05],[233.15846,-5.6199E-05],[233.16182,-5.259E-05],[233.16518,-5.2074E-05],[233.16854,-5.5168E-05],[233.17189,-5.6199E-05],[233.17525,-5.5684E-05],[233.17861,-5.259E-05],[233.18197,-5.259E-05],[233.18532,-5.4652E-05],[233.18868,-5.3621E-05],[233.19204,-5.4137E-05],[233.19539,-5.2074E-05],[233.19875,-5.259E-05]]}
-{"quant":[233.73,-5.2973E-05],"mems":[[233.63185,-5.1559E-05],[233.63521,-5.2074E-05],[233.63856,-5.3106E-05],[233.64192,-5.9293E-05],[233.64528,-5.4652E-05],[233.64863,-4.795E-05],[233.65199,-5.259E-05],[233.65535,-5.3621E-05],[233.65871,-5.1043E-05],[233.66206,-5.4652E-05],[233.66542,-5.2074E-05],[233.66878,-4.7434E-05],[233.67214,-5.0528E-05],[233.67549,-5.3106E-05],[233.67885,-5.3106E-05],[233.68221,-5.4652E-05],[233.68557,-5.2074E-05],[233.68892,-5.1559E-05],[233.69228,-5.259E-05],[233.69564,-5.259E-05],[233.69899,-5.259E-05],[233.70235,-4.795E-05],[233.70571,-4.8981E-05],[233.70907,-4.8465E-05],[233.71242,-4.795E-05],[233.71578,-5.5168E-05],[233.71914,-5.8777E-05],[233.7225,-5.4137E-05],[233.72585,-5.0528E-05],[233.72921,-5.4652E-05],[233.73257,-5.4652E-05],[233.73593,-5.2074E-05],[233.73928,-5.2074E-05],[233.74264,-5.3106E-05],[233.746,-5.1043E-05],[233.74935,-4.8981E-05],[233.75271,-5.259E-05],[233.75607,-5.3106E-05],[233.75943,-5.8777E-05],[233.76278,-5.7746E-05],[233.76614,-4.8981E-05],[233.7695,-5.4652E-05],[233.77286,-5.7746E-05],[233.77621,-5.3621E-05],[233.77957,-5.1043E-05],[233.78293,-4.8465E-05],[233.78629,-4.8465E-05],[233.78964,-5.3106E-05],[233.793,-5.5168E-05],[233.79636,-5.0012E-05],[233.79971,-4.8465E-05],[233.80307,-5.0012E-05],[233.80643,-5.2074E-05],[233.80979,-5.3106E-05],[233.81314,-5.6199E-05],[233.8165,-5.8262E-05],[233.81986,-5.6715E-05],[233.82322,-5.5684E-05],[233.82657,-5.2074E-05],[233.82993,-5.0528E-05],[233.83329,-5.3621E-05],[233.83665,-5.2074E-05],[233.84,-5.3621E-05],[233.84336,-5.6199E-05],[233.84672,-5.3106E-05],[233.85007,-5.5168E-05],[233.85343,-5.3106E-05],[233.85679,-5.1043E-05],[233.86015,-5.2074E-05],[233.8635,-4.795E-05],[233.86686,-5.3106E-05],[233.87022,-5.6715E-05],[233.87358,-5.4652E-05],[233.87693,-5.4652E-05],[233.88029,-5.0528E-05],[233.88365,-5.2074E-05],[233.88701,-5.3106E-05],[233.89036,-5.4137E-05],[233.89372,-5.9808E-05],[233.89708,-5.8777E-05],[233.90043,-5.3106E-05],[233.90379,-5.0528E-05],[233.90715,-5.3621E-05],[233.91051,-5.5168E-05],[233.91386,-5.6715E-05],[233.91722,-5.8262E-05],[233.92058,-5.259E-05],[233.92394,-5.1559E-05],[233.92729,-5.4652E-05],[233.93065,-5.5168E-05]]}
-{"quant":[234.228,-5.3738E-05],"mems":[[234.12873,-5.5684E-05],[234.13209,-5.2074E-05],[234.13545,-5.4137E-05],[234.13881,-5.1559E-05],[234.14216,-5.2074E-05],[234.14552,-5.4652E-05],[234.14888,-5.1559E-05],[234.15223,-5.259E-05],[234.15559,-5.2074E-05],[234.15895,-5.3621E-05],[234.16231,-5.5684E-05],[234.16566,-5.6715E-05],[234.16902,-5.8262E-05],[234.17238,-5.2074E-05],[234.17574,-4.8465E-05],[234.17909,-5.0012E-05],[234.18245,-5.2074E-05],[234.18581,-5.0528E-05],[234.18917,-5.0528E-05],[234.19252,-5.4137E-05],[234.19588,-5.1559E-05],[234.19924,-5.5168E-05],[234.20259,-5.9808E-05],[234.20595,-5.4137E-05],[234.20931,-5.0528E-05],[234.21267,-5.1559E-05],[234.21602,-5.2074E-05],[234.21938,-5.0528E-05],[234.22274,-5.2074E-05],[234.2261,-5.1559E-05],[234.22945,-5.4137E-05],[234.23281,-5.2074E-05],[234.23617,-4.7434E-05],[234.23953,-5.259E-05],[234.24288,-5.0012E-05],[234.24624,-5.2074E-05],[234.2496,-5.6715E-05],[234.25295,-4.9497E-05],[234.25631,-5.1559E-05],[234.25967,-5.9293E-05],[234.26303,-5.723E-05],[234.26638,-5.0012E-05],[234.26974,-5.3106E-05],[234.2731,-5.3621E-05],[234.27646,-5.3621E-05],[234.27981,-6.0324E-05],[234.28317,-6.1355E-05],[234.28653,-5.9293E-05],[234.28989,-5.259E-05],[234.29324,-4.9497E-05],[234.2966,-4.8465E-05],[234.29996,-5.3621E-05],[234.30331,-5.723E-05],[234.30667,-5.4652E-05],[234.31003,-5.7746E-05],[234.31339,-5.1559E-05],[234.31674,-5.1043E-05],[234.3201,-5.4652E-05],[234.32346,-5.4137E-05],[234.32682,-5.4652E-05],[234.33017,-5.2074E-05],[234.33353,-5.2074E-05],[234.33689,-5.5168E-05],[234.34025,-5.723E-05],[234.3436,-4.8465E-05],[234.34696,-4.795E-05],[234.35032,-5.1043E-05],[234.35367,-5.259E-05],[234.35703,-5.5168E-05],[234.36039,-5.3106E-05],[234.36375,-5.9293E-05],[234.3671,-5.723E-05],[234.37046,-5.0528E-05],[234.37382,-5.3106E-05],[234.37718,-5.6199E-05],[234.38053,-5.4137E-05],[234.38389,-4.8465E-05],[234.38725,-5.1559E-05],[234.39061,-4.9497E-05],[234.39396,-5.0528E-05],[234.39732,-5.8777E-05],[234.40068,-5.9808E-05],[234.40403,-5.5168E-05],[234.40739,-4.8465E-05],[234.41075,-4.7434E-05],[234.41411,-4.6919E-05],[234.41746,-5.4652E-05],[234.42082,-6.0324E-05],[234.42418,-5.5168E-05],[234.42754,-4.9497E-05],[234.43089,-5.0012E-05]]}
-{"quant":[234.782,-5.2357E-05],"mems":[[234.68269,-5.0012E-05],[234.68605,-5.0012E-05],[234.68941,-5.5684E-05],[234.69277,-5.723E-05],[234.69612,-5.6715E-05],[234.69948,-5.3106E-05],[234.70284,-5.3106E-05],[234.70619,-5.259E-05],[234.70955,-4.8465E-05],[234.71291,-4.795E-05],[234.71627,-5.259E-05],[234.71962,-5.2074E-05],[234.72298,-5.2074E-05],[234.72634,-5.0528E-05],[234.7297,-4.795E-05],[234.73305,-5.6199E-05],[234.73641,-5.6199E-05],[234.73977,-5.6199E-05],[234.74313,-5.5684E-05],[234.74648,-5.1559E-05],[234.74984,-5.3621E-05],[234.7532,-5.4652E-05],[234.75655,-5.7746E-05],[234.75991,-5.5684E-05],[234.76327,-5.5168E-05],[234.76663,-5.5168E-05],[234.76998,-5.2074E-05],[234.77334,-5.1043E-05],[234.7767,-5.3621E-05],[234.78006,-5.259E-05],[234.78341,-5.1043E-05],[234.78677,-5.6199E-05],[234.79013,-5.4652E-05],[234.79349,-5.2074E-05],[234.79684,-5.0528E-05],[234.8002,-5.1559E-05],[234.80356,-5.3106E-05],[234.80691,-5.259E-05],[234.81027,-5.4137E-05],[234.81363,-5.3106E-05],[234.81699,-5.5168E-05],[234.82034,-5.0528E-05],[234.8237,-4.7434E-05],[234.82706,-5.259E-05],[234.83042,-5.1559E-05],[234.83377,-5.1559E-05],[234.83713,-5.4652E-05],[234.84049,-5.1043E-05],[234.84385,-4.8465E-05],[234.8472,-5.5168E-05],[234.85056,-5.723E-05],[234.85392,-5.1043E-05],[234.85727,-4.795E-05],[234.86063,-5.1043E-05],[234.86399,-5.5168E-05],[234.86735,-5.8262E-05],[234.8707,-5.5168E-05],[234.87406,-5.1559E-05],[234.87742,-4.6919E-05],[234.88078,-4.5887E-05],[234.88413,-5.5684E-05],[234.88749,-5.6199E-05],[234.89085,-5.723E-05],[234.89421,-5.9293E-05],[234.89756,-5.259E-05],[234.90092,-5.1043E-05],[234.90428,-5.3621E-05],[234.90763,-5.4137E-05],[234.91099,-5.5168E-05],[234.91435,-5.4652E-05],[234.91771,-4.9497E-05],[234.92106,-5.1559E-05],[234.92442,-5.5684E-05],[234.92778,-5.6715E-05],[234.93114,-5.9808E-05],[234.93449,-5.4652E-05],[234.93785,-4.9497E-05],[234.94121,-5.0528E-05],[234.94457,-5.4652E-05],[234.94792,-5.5684E-05],[234.95128,-5.4137E-05],[234.95464,-5.4652E-05],[234.95799,-5.0012E-05],[234.96135,-5.1559E-05],[234.96471,-5.4137E-05],[234.96807,-5.3621E-05],[234.97142,-5.6715E-05],[234.97478,-5.1043E-05],[234.97814,-5.0012E-05],[234.9815,-5.4652E-05],[234.98485,-5.3106E-05]]}
-{"quant":[235.257,-5.4386E-05],"mems":[[235.15776,-5.1559E-05],[235.16129,-5.6199E-05],[235.16481,-5.6199E-05],[235.16834,-5.4137E-05],[235.17186,-5.3106E-05],[235.17539,-5.0528E-05],[235.17891,-4.8465E-05],[235.18244,-5.2074E-05],[235.18596,-4.9497E-05],[235.18949,-4.8981E-05],[235.19301,-5.4137E-05],[235.19654,-4.8981E-05],[235.20006,-5.1559E-05],[235.20359,-5.6199E-05],[235.20711,-5.5168E-05],[235.21064,-5.5168E-05],[235.21417,-5.3621E-05],[235.21769,-5.4652E-05],[235.22122,-5.4137E-05],[235.22474,-5.4652E-05],[235.22827,-5.4137E-05],[235.23179,-5.6199E-05],[235.23532,-5.5168E-05],[235.23884,-5.0012E-05],[235.24237,-5.259E-05],[235.24589,-5.1559E-05],[235.24942,-5.0528E-05],[235.25294,-5.1559E-05],[235.25647,-4.7434E-05],[235.25999,-5.0528E-05],[235.26352,-5.3621E-05],[235.26705,-5.4652E-05],[235.27057,-5.6199E-05],[235.2741,-5.5684E-05],[235.27762,-5.3106E-05],[235.28115,-4.9497E-05],[235.28467,-5.0528E-05],[235.2882,-5.7746E-05],[235.29172,-5.7746E-05],[235.29525,-5.4137E-05],[235.29877,-5.3106E-05],[235.3023,-5.0528E-05],[235.30582,-5.4137E-05],[235.30935,-5.4137E-05],[235.31287,-5.2074E-05],[235.3164,-5.4137E-05],[235.31993,-5.3621E-05],[235.32345,-5.3106E-05],[235.32698,-5.2074E-05],[235.3305,-5.8777E-05],[235.33403,-6.1871E-05],[235.33755,-5.5168E-05],[235.34108,-5.2074E-05],[235.3446,-5.2074E-05],[235.34813,-5.5684E-05],[235.35165,-5.6715E-05],[235.35518,-5.6715E-05],[235.3587,-5.7746E-05],[235.36223,-5.3106E-05],[235.36575,-5.259E-05],[235.36928,-5.4652E-05],[235.37281,-5.1043E-05],[235.37633,-5.0012E-05],[235.37986,-5.0528E-05],[235.38338,-5.5168E-05],[235.38691,-5.723E-05],[235.39043,-5.3621E-05],[235.39396,-5.6199E-05],[235.39748,-5.5168E-05],[235.40101,-4.8465E-05],[235.40453,-4.6919E-05],[235.40806,-5.1043E-05],[235.41158,-5.5684E-05],[235.41511,-5.5684E-05],[235.41863,-5.6715E-05],[235.42216,-5.259E-05],[235.42569,-4.9497E-05],[235.42921,-5.259E-05],[235.43274,-4.8981E-05],[235.43626,-4.9497E-05],[235.43979,-5.3106E-05],[235.44331,-5.3621E-05],[235.44684,-5.3106E-05],[235.45036,-5.6715E-05],[235.45389,-5.7746E-05],[235.45741,-5.1043E-05]]}
-{"quant":[236.077,-5.4154E-05],"mems":[[235.97916,-5.1559E-05],[235.98269,-5.2074E-05],[235.98621,-5.1043E-05],[235.98974,-4.6919E-05],[235.99326,-4.7434E-05],[235.99679,-5.4137E-05],[236.00031,-5.3106E-05],[236.00384,-5.259E-05],[236.00737,-5.5684E-05],[236.01089,-5.5168E-05],[236.01442,-5.3106E-05],[236.01794,-5.0528E-05],[236.02147,-4.8465E-05],[236.02499,-5.1559E-05],[236.02852,-5.5168E-05],[236.03204,-5.259E-05],[236.03557,-5.6715E-05],[236.03909,-5.5168E-05],[236.04262,-4.795E-05],[236.04614,-5.1043E-05],[236.04967,-5.259E-05],[236.05319,-5.3106E-05],[236.05672,-5.259E-05],[236.06025,-5.3106E-05],[236.06377,-5.6715E-05],[236.0673,-6.0324E-05],[236.07082,-5.9808E-05],[236.07435,-5.3106E-05],[236.07787,-5.1559E-05],[236.0814,-5.5168E-05],[236.08492,-5.6199E-05],[236.08845,-5.259E-05],[236.09197,-5.3621E-05],[236.0955,-5.8777E-05],[236.09902,-5.5684E-05],[236.10255,-4.8981E-05],[236.10607,-5.4137E-05],[236.1096,-5.8262E-05],[236.11313,-5.4652E-05],[236.11665,-5.3621E-05],[236.12018,-5.3621E-05],[236.1237,-5.3621E-05],[236.12723,-5.1559E-05],[236.13075,-5.4652E-05],[236.13428,-5.723E-05],[236.1378,-5.1559E-05],[236.14133,-5.4137E-05],[236.14485,-5.4652E-05],[236.14838,-5.3621E-05],[236.1519,-5.6715E-05],[236.15543,-5.4652E-05],[236.15895,-5.5168E-05],[236.16248,-5.4137E-05],[236.16601,-5.259E-05],[236.16953,-5.4652E-05],[236.17306,-5.6199E-05],[236.17658,-5.4652E-05],[236.18011,-4.795E-05],[236.18363,-4.8981E-05],[236.18716,-5.3621E-05],[236.19068,-5.4137E-05],[236.19421,-5.3621E-05],[236.19773,-5.1559E-05],[236.20126,-5.1559E-05],[236.20478,-5.0528E-05],[236.20831,-5.1043E-05],[236.21183,-5.0528E-05],[236.21536,-5.2074E-05],[236.21889,-5.3106E-05],[236.22241,-5.0528E-05],[236.22594,-5.1559E-05],[236.22946,-5.259E-05],[236.23299,-5.5684E-05],[236.23651,-5.4137E-05],[236.24004,-5.259E-05],[236.24356,-5.3621E-05],[236.24709,-4.9497E-05],[236.25061,-5.259E-05],[236.25414,-5.8262E-05],[236.25766,-5.7746E-05],[236.26119,-5.8262E-05],[236.26471,-5.5168E-05],[236.26824,-5.3106E-05],[236.27177,-5.5168E-05],[236.27529,-5.8777E-05],[236.27882,-5.8262E-05]]}
-{"quant":[236.574,-5.2384E-05],"mems":[[236.47623,-5.5684E-05],[236.47976,-5.7746E-05],[236.48329,-5.6715E-05],[236.48681,-5.6715E-05],[236.49034,-5.1559E-05],[236.49386,-5.1559E-05],[236.49739,-5.0528E-05],[236.50091,-5.259E-05],[236.50444,-5.4137E-05],[236.50796,-5.1043E-05],[236.51149,-4.8981E-05],[236.51501,-5.0528E-05],[236.51854,-5.4137E-05],[236.52206,-5.1559E-05],[236.52559,-5.0012E-05],[236.52911,-4.9497E-05],[236.53264,-5.2074E-05],[236.53617,-5.3106E-05],[236.53969,-5.4652E-05],[236.54322,-5.723E-05],[236.54674,-5.4652E-05],[236.55027,-5.4652E-05],[236.55379,-5.2074E-05],[236.55732,-5.1043E-05],[236.56084,-5.3106E-05],[236.56437,-5.6199E-05],[236.56789,-5.6199E-05],[236.57142,-4.8465E-05],[236.57494,-4.6403E-05],[236.57847,-4.795E-05],[236.58199,-4.8981E-05],[236.58552,-5.4137E-05],[236.58905,-5.259E-05],[236.59257,-5.4137E-05],[236.5961,-5.5684E-05],[236.59962,-5.259E-05],[236.60315,-5.7746E-05],[236.60667,-5.2074E-05],[236.6102,-5.0012E-05],[236.61372,-5.259E-05],[236.61725,-4.8981E-05],[236.62077,-5.0528E-05],[236.6243,-5.3106E-05],[236.62782,-5.4137E-05],[236.63135,-5.3106E-05],[236.63487,-5.1559E-05],[236.6384,-5.4137E-05],[236.64193,-5.5168E-05],[236.64545,-5.3106E-05],[236.64898,-5.7746E-05],[236.6525,-5.259E-05],[236.65603,-4.5887E-05],[236.65955,-5.3621E-05],[236.66308,-5.3621E-05],[236.6666,-5.2074E-05],[236.67013,-5.1559E-05],[236.67365,-5.1559E-05],[236.67718,-5.4137E-05],[236.6807,-5.1559E-05],[236.68423,-5.1559E-05],[236.68775,-5.2074E-05],[236.69128,-5.4137E-05],[236.69481,-5.2074E-05],[236.69833,-4.8465E-05],[236.70186,-5.4137E-05],[236.70538,-5.6199E-05],[236.70891,-5.2074E-05],[236.71243,-5.3621E-05],[236.71596,-4.7434E-05],[236.71948,-4.4856E-05],[236.72301,-5.1043E-05],[236.72653,-5.259E-05],[236.73006,-5.4137E-05],[236.73358,-5.0528E-05],[236.73711,-5.0528E-05],[236.74063,-5.4652E-05],[236.74416,-5.3621E-05],[236.74769,-5.1559E-05],[236.75121,-5.0012E-05],[236.75474,-5.1559E-05],[236.75826,-5.1559E-05],[236.76179,-5.1043E-05],[236.76531,-5.3106E-05],[236.76884,-5.6715E-05],[236.77236,-5.8777E-05],[236.77589,-5.4652E-05]]}
-{"quant":[237.082,-5.369E-05],"mems":[[236.98388,-5.3621E-05],[236.98741,-5.3106E-05],[236.99093,-5.5168E-05],[236.99446,-5.723E-05],[236.99798,-5.5168E-05],[237.00151,-5.259E-05],[237.00503,-4.9497E-05],[237.00856,-5.6715E-05],[237.01209,-5.6199E-05],[237.01561,-5.1559E-05],[237.01914,-5.3621E-05],[237.02266,-5.3106E-05],[237.02619,-5.6199E-05],[237.02971,-5.259E-05],[237.03324,-5.5168E-05],[237.03676,-6.0324E-05],[237.04029,-5.259E-05],[237.04381,-5.5684E-05],[237.04734,-5.723E-05],[237.05086,-5.4137E-05],[237.05439,-5.3621E-05],[237.05791,-5.1559E-05],[237.06144,-5.4137E-05],[237.06497,-5.4652E-05],[237.06849,-5.5684E-05],[237.07202,-5.5168E-05],[237.07554,-5.2074E-05],[237.07907,-5.0528E-05],[237.08259,-4.9497E-05],[237.08612,-4.9497E-05],[237.08964,-5.1559E-05],[237.09317,-5.3621E-05],[237.09669,-5.0012E-05],[237.10022,-5.0012E-05],[237.10374,-5.259E-05],[237.10727,-5.3106E-05],[237.11079,-5.5684E-05],[237.11432,-5.4137E-05],[237.11785,-5.259E-05],[237.12137,-5.5684E-05],[237.1249,-5.2074E-05],[237.12842,-5.1043E-05],[237.13195,-5.8262E-05],[237.13547,-5.8262E-05],[237.139,-5.3621E-05],[237.14252,-5.4652E-05],[237.14605,-5.6199E-05],[237.14957,-5.1043E-05],[237.1531,-5.259E-05],[237.15662,-5.3106E-05],[237.16015,-5.3106E-05],[237.16367,-5.7746E-05],[237.1672,-5.3621E-05],[237.17073,-5.4137E-05],[237.17425,-5.5168E-05],[237.17778,-5.5684E-05],[237.1813,-5.8262E-05],[237.18483,-5.4137E-05],[237.18835,-5.2074E-05],[237.19188,-5.3106E-05],[237.1954,-5.3621E-05],[237.19893,-5.259E-05],[237.20245,-5.1559E-05],[237.20598,-5.1043E-05],[237.2095,-4.795E-05],[237.21303,-4.8465E-05],[237.21655,-5.3106E-05],[237.22008,-5.5168E-05],[237.22361,-5.723E-05],[237.22713,-5.6715E-05],[237.23066,-5.0012E-05],[237.23418,-5.1559E-05],[237.23771,-5.6199E-05],[237.24123,-5.6199E-05],[237.24476,-5.5684E-05],[237.24828,-5.4652E-05],[237.25181,-5.4652E-05],[237.25533,-5.4137E-05],[237.25886,-5.5168E-05],[237.26238,-5.2074E-05],[237.26591,-4.9497E-05],[237.26943,-5.2074E-05],[237.27296,-5.259E-05],[237.27649,-5.6199E-05],[237.28001,-5.6199E-05],[237.28354,-5.3621E-05]]}
-{"quant":[237.578,-1.7951],"mems":[[237.48095,-5.4652E-05],[237.48448,-5.4137E-05],[237.48801,-5.8262E-05],[237.49153,-5.1043E-05],[237.49506,-5.0528E-05],[237.49858,-5.1559E-05],[237.50211,-5.1559E-05],[237.50563,-5.8777E-05],[237.50916,-5.4137E-05],[237.51268,-4.6403E-05],[237.51621,-5.2074E-05],[237.51973,-5.2074E-05],[237.52326,-5.259E-05],[237.52678,-5.4137E-05],[237.53031,-5.2074E-05],[237.53383,-5.0528E-05],[237.53736,-5.0012E-05],[237.54089,-5.3106E-05],[237.54441,-5.3621E-05],[237.54794,-5.4652E-05],[237.55146,-5.7746E-05],[237.55499,-5.259E-05],[237.55851,-4.8465E-05],[237.56204,-5.0012E-05],[237.56556,-5.259E-05],[237.56909,-5.4137E-05],[237.57261,-5.2074E-05],[237.57614,-5.2074E-05],[237.57966,-5.259E-05],[237.58319,-5.4137E-05],[237.58671,-5.6199E-05],[237.59024,-5.4137E-05],[237.59377,-5.5684E-05],[237.59729,-5.2074E-05],[237.60082,-4.9497E-05],[237.60434,-5.4652E-05],[237.60787,-5.5168E-05],[237.61139,-5.1559E-05],[237.61492,-5.0012E-05],[237.61844,-5.1043E-05],[237.62197,-4.8465E-05],[237.62549,-5.4652E-05],[237.62902,-5.7746E-05],[237.63254,-5.3621E-05],[237.63607,-5.4652E-05],[237.63959,-4.8981E-05],[237.64312,-4.795E-05],[237.64665,-5.1559E-05],[237.65017,-4.9497E-05],[237.6537,-5.1559E-05],[237.65722,-5.2074E-05],[237.66075,-5.0528E-05],[237.66427,-5.4137E-05],[237.6678,-5.259E-05],[237.67132,-5.259E-05],[237.67485,-5.6715E-05],[237.67837,-5.3621E-05],[237.6819,-5.1559E-05],[237.68542,-5.5684E-05],[237.68895,-5.5168E-05],[237.69247,-5.4652E-05],[237.696,-5.5168E-05],[237.69942,-4.8465E-05],[237.70285,-4.4856E-05],[237.70627,-5.1559E-05],[237.70969,-5.3621E-05],[237.71311,-5.6715E-05],[237.71654,-5.8777E-05],[237.71996,-5.1559E-05],[237.72338,-5.0528E-05],[237.7268,-5.4652E-05],[237.73023,-5.3621E-05],[237.73365,-5.4652E-05],[237.73707,-5.723E-05],[237.74049,-5.7746E-05],[237.74392,-5.7746E-05],[237.74734,-5.4652E-05],[237.75076,-5.9293E-05],[237.75419,-5.4652E-05],[237.75761,-4.7434E-05],[237.76103,-5.0528E-05],[237.76445,-4.9497E-05],[237.76788,-5.4652E-05],[237.7713,-5.3106E-05],[237.77472,-5.259E-05],[237.77814,-5.3621E-05],[237.78157,-4.8981E-05],[237.78499,-5.5168E-05],[237.78841,-5.3106E-05]]}
-{"quant":[238.064,-5.3432E-05],"mems":[[237.96639,-5.7746E-05],[237.96981,-5.6199E-05],[237.97324,-5.0528E-05],[237.97666,-5.4137E-05],[237.98008,-5.259E-05],[237.9835,-4.8981E-05],[237.98693,-5.723E-05],[237.99035,-5.6715E-05],[237.99377,-5.259E-05],[237.99719,-5.2074E-05],[238.00062,-5.3621E-05],[238.00404,-5.6715E-05],[238.00746,-5.5168E-05],[238.01089,-5.3106E-05],[238.01431,-5.4137E-05],[238.01773,-5.5684E-05],[238.02115,-5.4652E-05],[238.02458,-5.5684E-05],[238.028,-5.4652E-05],[238.03142,-5.3621E-05],[238.03484,-5.5684E-05],[238.03827,-5.4652E-05],[238.04169,-4.9497E-05],[238.04511,-4.9497E-05],[238.04853,-5.4137E-05],[238.05196,-5.0528E-05],[238.05538,-5.1043E-05],[238.0588,-5.3621E-05],[238.06223,-5.3106E-05],[238.06565,-5.5168E-05],[238.06907,-5.5168E-05],[238.07249,-5.4652E-05],[238.07592,-5.3106E-05],[238.07934,-5.259E-05],[238.08276,-5.259E-05],[238.08618,-4.9497E-05],[238.08961,-5.4137E-05],[238.09303,-5.7746E-05],[238.09645,-4.9497E-05],[238.09987,-4.4856E-05],[238.1033,-4.795E-05],[238.10672,-5.5684E-05],[238.11014,-5.7746E-05],[238.11357,-5.4137E-05],[238.11699,-5.259E-05],[238.12041,-5.1043E-05],[238.12383,-5.4652E-05],[238.12726,-5.4137E-05],[238.13068,-5.8262E-05],[238.1341,-5.7746E-05],[238.13752,-4.8981E-05],[238.14095,-5.259E-05],[238.14437,-5.4652E-05],[238.14779,-5.4652E-05],[238.15121,-5.4137E-05],[238.15464,-5.4652E-05],[238.15806,-5.4137E-05],[238.16148,-5.1559E-05],[238.16491,-5.4652E-05],[238.16833,-5.3621E-05],[238.17175,-5.259E-05],[238.17517,-5.3106E-05],[238.1786,-5.3621E-05],[238.18202,-5.1559E-05],[238.18544,-5.1043E-05],[238.18886,-5.259E-05],[238.19229,-4.795E-05],[238.19571,-5.1043E-05],[238.19913,-5.0012E-05],[238.20255,-5.0012E-05],[238.20598,-5.5168E-05],[238.2094,-5.3621E-05],[238.21282,-5.5168E-05],[238.21625,-5.5168E-05],[238.21967,-5.259E-05],[238.22309,-5.1043E-05],[238.22651,-5.259E-05],[238.22994,-5.5684E-05],[238.23336,-5.4652E-05],[238.23678,-5.4652E-05],[238.2402,-5.2074E-05],[238.24363,-5.0528E-05],[238.24705,-5.4137E-05],[238.25047,-6.1355E-05],[238.25389,-5.8777E-05],[238.25732,-5.0012E-05],[238.26074,-5.259E-05],[238.26416,-5.4652E-05]]}
-{"quant":[238.801,-5.3289E-05],"mems":[[238.70226,-5.1043E-05],[238.70569,-5.3106E-05],[238.70911,-5.5684E-05],[238.71253,-5.9293E-05],[238.71595,-5.4137E-05],[238.71938,-4.795E-05],[238.7228,-5.0528E-05],[238.72622,-5.2074E-05],[238.72965,-5.0528E-05],[238.73307,-5.0528E-05],[238.73649,-5.2074E-05],[238.73991,-4.9497E-05],[238.74334,-5.3621E-05],[238.74676,-5.259E-05],[238.75018,-4.795E-05],[238.7536,-5.4652E-05],[238.75703,-5.1559E-05],[238.76045,-4.8981E-05],[238.76387,-5.4652E-05],[238.76729,-5.723E-05],[238.77072,-5.7746E-05],[238.77414,-5.6199E-05],[238.77756,-5.2074E-05],[238.78099,-5.0012E-05],[238.78441,-5.2074E-05],[238.78783,-5.3106E-05],[238.79125,-5.4137E-05],[238.79468,-5.4137E-05],[238.7981,-5.0012E-05],[238.80152,-5.0528E-05],[238.80494,-5.3621E-05],[238.80837,-5.0528E-05],[238.81179,-5.3621E-05],[238.81521,-5.3621E-05],[238.81863,-4.8981E-05],[238.82206,-5.3106E-05],[238.82548,-5.723E-05],[238.8289,-5.6715E-05],[238.83233,-5.3621E-05],[238.83575,-5.0012E-05],[238.83917,-5.0528E-05],[238.84259,-5.259E-05],[238.84602,-5.3621E-05],[238.84944,-5.4137E-05],[238.85286,-5.0528E-05],[238.85628,-4.9497E-05],[238.85971,-5.4137E-05],[238.86313,-5.8262E-05],[238.86655,-5.5168E-05],[238.86997,-5.2074E-05],[238.8734,-5.5684E-05],[238.87682,-5.4137E-05],[238.88024,-5.1043E-05],[238.88367,-5.1559E-05],[238.88709,-5.6199E-05],[238.89051,-5.6715E-05],[238.89393,-5.0528E-05],[238.89736,-5.3106E-05],[238.90078,-5.4137E-05],[238.9042,-5.6715E-05],[238.90762,-5.8777E-05],[238.91105,-5.3106E-05],[238.91447,-5.259E-05],[238.91789,-5.1043E-05],[238.92131,-5.1043E-05],[238.92474,-5.4652E-05],[238.92816,-5.259E-05],[238.93158,-5.4137E-05],[238.93501,-5.3106E-05],[238.93843,-4.8465E-05],[238.94185,-5.259E-05],[238.94527,-5.259E-05],[238.9487,-5.5168E-05],[238.95212,-5.3621E-05],[238.95554,-4.8465E-05],[238.95896,-5.0012E-05],[238.96239,-4.8981E-05],[238.96581,-5.3106E-05],[238.96923,-5.2074E-05],[238.97265,-5.1559E-05],[238.97608,-5.1559E-05],[238.9795,-5.0012E-05],[238.98292,-5.4652E-05],[238.98635,-5.3106E-05],[238.98977,-5.5684E-05],[238.99319,-5.5684E-05],[238.99661,-5.0012E-05],[239.00004,-5.259E-05],[239.00346,-5.723E-05]]}
-{"quant":[239.266,-5.3329E-05],"mems":[[239.16775,-5.6715E-05],[239.17117,-5.259E-05],[239.17459,-5.1043E-05],[239.17801,-5.5168E-05],[239.18144,-5.2074E-05],[239.18486,-5.5168E-05],[239.18828,-5.5168E-05],[239.19171,-5.1559E-05],[239.19513,-5.4137E-05],[239.19855,-5.3621E-05],[239.20197,-5.4137E-05],[239.2054,-5.6199E-05],[239.20882,-5.0012E-05],[239.21224,-4.9497E-05],[239.21566,-5.0528E-05],[239.21909,-5.0012E-05],[239.22251,-5.5168E-05],[239.22593,-5.4652E-05],[239.22935,-5.2074E-05],[239.23278,-5.3106E-05],[239.2362,-5.4137E-05],[239.23962,-5.723E-05],[239.24305,-5.6715E-05],[239.24647,-5.8262E-05],[239.24989,-5.6715E-05],[239.25331,-4.8981E-05],[239.25674,-5.723E-05],[239.26016,-5.7746E-05],[239.26358,-5.259E-05],[239.267,-5.3621E-05],[239.27043,-5.3106E-05],[239.27385,-5.7746E-05],[239.27727,-5.3106E-05],[239.28069,-5.0528E-05],[239.28412,-5.3106E-05],[239.28754,-5.5168E-05],[239.29096,-5.1559E-05],[239.29439,-5.0012E-05],[239.29781,-5.4652E-05],[239.30123,-5.1043E-05],[239.30465,-5.9808E-05],[239.30808,-6.1871E-05],[239.3115,-5.4137E-05],[239.31492,-5.4652E-05],[239.31834,-5.2074E-05],[239.32177,-5.259E-05],[239.32519,-5.5168E-05],[239.32861,-5.3106E-05],[239.33203,-4.8465E-05],[239.33546,-4.8981E-05],[239.33888,-5.0012E-05],[239.3423,-5.1043E-05],[239.34573,-5.4137E-05],[239.34915,-5.723E-05],[239.35257,-5.4652E-05],[239.35599,-5.0012E-05],[239.35942,-5.0528E-05],[239.36284,-5.259E-05],[239.36626,-5.5168E-05],[239.36968,-5.3621E-05],[239.37311,-5.3621E-05],[239.37653,-5.259E-05],[239.37995,-5.2074E-05],[239.38337,-5.6715E-05],[239.3868,-5.4137E-05],[239.39022,-5.4137E-05],[239.39364,-5.3621E-05],[239.39707,-5.1043E-05],[239.40049,-5.6715E-05],[239.40391,-5.2074E-05],[239.40733,-4.9497E-05],[239.41076,-5.6199E-05],[239.41418,-5.3621E-05],[239.4176,-5.4652E-05],[239.42102,-5.259E-05],[239.42445,-5.0528E-05],[239.42787,-5.6715E-05],[239.43129,-5.3621E-05],[239.43471,-5.0012E-05],[239.43814,-5.3106E-05],[239.44156,-5.723E-05],[239.44498,-5.8777E-05],[239.44841,-5.4137E-05],[239.45183,-5.1043E-05],[239.45525,-4.9497E-05],[239.45867,-5.1559E-05],[239.4621,-5.5684E-05],[239.46552,-5.5168E-05],[239.46894,-5.723E-05]]}
-{"quant":[239.753,-5.3255E-05],"mems":[[239.65377,-5.4137E-05],[239.65719,-5.259E-05],[239.66061,-5.4652E-05],[239.66403,-5.4652E-05],[239.66746,-5.3621E-05],[239.67088,-5.0528E-05],[239.6743,-4.6919E-05],[239.67772,-5.3106E-05],[239.68115,-5.4652E-05],[239.68457,-5.5684E-05],[239.68799,-5.259E-05],[239.69141,-4.8981E-05],[239.69484,-4.8465E-05],[239.69826,-5.1043E-05],[239.70168,-5.6199E-05],[239.70511,-5.4137E-05],[239.70853,-5.4137E-05],[239.71195,-5.1559E-05],[239.71537,-4.7434E-05],[239.7188,-4.9497E-05],[239.72222,-5.5684E-05],[239.72564,-5.6199E-05],[239.72906,-5.2074E-05],[239.73249,-5.1559E-05],[239.73591,-5.0012E-05],[239.73933,-5.259E-05],[239.74275,-5.9293E-05],[239.74618,-5.9808E-05],[239.7496,-5.5168E-05],[239.75302,-5.2074E-05],[239.75645,-5.3621E-05],[239.75987,-5.3106E-05],[239.76329,-5.4652E-05],[239.76671,-5.6199E-05],[239.77014,-5.1559E-05],[239.77356,-4.9497E-05],[239.77698,-4.9497E-05],[239.7804,-5.4137E-05],[239.78383,-5.8262E-05],[239.78725,-5.5168E-05],[239.79067,-5.4137E-05],[239.79409,-5.3106E-05],[239.79752,-5.3621E-05],[239.80094,-5.6715E-05],[239.80436,-5.4137E-05],[239.80779,-5.1559E-05],[239.81121,-5.0528E-05],[239.81463,-4.8465E-05],[239.81805,-5.3106E-05],[239.82148,-5.8777E-05],[239.8249,-5.4137E-05],[239.82832,-5.259E-05],[239.83174,-5.5684E-05],[239.83517,-5.2074E-05],[239.83859,-5.1559E-05],[239.84201,-5.2074E-05],[239.84543,-5.1559E-05],[239.84886,-5.3621E-05],[239.85228,-5.3106E-05],[239.8557,-5.259E-05],[239.85913,-5.6199E-05],[239.86255,-5.5168E-05],[239.86597,-5.259E-05],[239.86939,-5.4137E-05],[239.87282,-5.2074E-05],[239.87624,-5.1559E-05],[239.87966,-5.3106E-05],[239.88308,-5.7746E-05],[239.88651,-5.8262E-05],[239.88993,-5.2074E-05],[239.89335,-5.1043E-05],[239.89677,-5.1043E-05],[239.9002,-5.259E-05],[239.90362,-5.5684E-05],[239.90704,-5.259E-05],[239.91047,-5.3106E-05],[239.91389,-5.2074E-05],[239.91731,-5.3106E-05],[239.92073,-5.5168E-05],[239.92416,-5.4137E-05],[239.92758,-5.723E-05],[239.931,-5.3621E-05],[239.93442,-4.8981E-05],[239.93785,-5.1559E-05],[239.94127,-5.5684E-05],[239.94469,-5.6199E-05],[239.94811,-5.4652E-05],[239.95154,-5.4137E-05],[239.95496,-5.4137E-05]]}
-{"quant":[240.25,-0.078861],"mems":[[240.20481,-5.8777E-05],[240.20824,-5.5684E-05],[240.21166,-5.1043E-05],[240.21508,-5.4137E-05],[240.21851,-5.5684E-05],[240.22193,-5.5168E-05],[240.22535,-5.1559E-05],[240.22877,-4.9497E-05],[240.2322,-5.1043E-05],[240.23562,-5.259E-05],[240.23904,-5.6715E-05],[240.24246,-5.5168E-05],[240.24589,-5.1559E-05],[240.24931,-5.4137E-05],[240.25273,-5.3106E-05],[240.25615,-5.6199E-05],[240.25958,-5.5684E-05],[240.263,-5.4137E-05],[240.26636,-5.6715E-05],[240.26973,-5.3621E-05],[240.27309,-5.6715E-05],[240.27646,-5.4652E-05],[240.27982,-5.1559E-05],[240.28318,-5.5168E-05],[240.28655,-5.3621E-05],[240.28991,-5.5684E-05],[240.29328,-5.5684E-05],[240.29664,-5.2074E-05],[240.3,-5.259E-05],[240.30337,-5.1559E-05],[240.30673,-5.2074E-05],[240.3101,-5.2074E-05],[240.31346,-5.3106E-05],[240.31682,-5.3106E-05],[240.32019,-5.0012E-05],[240.32355,-4.8981E-05],[240.32692,-4.6919E-05],[240.33028,-4.795E-05],[240.33364,-5.4652E-05],[240.33701,-5.6199E-05],[240.34037,-5.4137E-05],[240.34374,-5.3106E-05],[240.3471,-5.1559E-05],[240.35046,-5.2074E-05],[240.35383,-5.2074E-05],[240.35719,-5.1043E-05],[240.36056,-5.3106E-05],[240.36392,-5.6199E-05],[240.36728,-5.6199E-05],[240.37065,-5.5168E-05],[240.37401,-5.4652E-05],[240.37738,-5.0528E-05],[240.38074,-5.2074E-05],[240.3841,-5.3106E-05],[240.38747,-4.9497E-05],[240.39083,-5.3106E-05],[240.3942,-5.723E-05],[240.39756,-5.6715E-05],[240.40092,-5.4652E-05],[240.40429,-5.0528E-05],[240.40765,-5.259E-05],[240.41102,-5.1559E-05],[240.41438,-4.795E-05],[240.41774,-5.6199E-05],[240.42111,-5.8777E-05],[240.42447,-5.1043E-05],[240.42784,-4.8465E-05],[240.4312,-5.6199E-05],[240.43456,-5.6199E-05],[240.43793,-5.1043E-05],[240.44129,-5.1559E-05],[240.44466,-4.8981E-05],[240.44802,-4.6919E-05],[240.45138,-5.0012E-05],[240.45475,-5.4137E-05],[240.45811,-5.259E-05],[240.46148,-5.3106E-05],[240.46484,-5.4137E-05],[240.4682,-5.1559E-05],[240.47157,-5.3621E-05],[240.47493,-5.5684E-05],[240.4783,-5.6199E-05],[240.48166,-5.4652E-05],[240.48502,-5.0012E-05],[240.48839,-4.6919E-05],[240.49175,-5.3106E-05],[240.49512,-5.0528E-05],[240.49848,-4.7434E-05]]}
-{"quant":[240.731,-5.3054E-05],"mems":[[240.63304,-5.5168E-05],[240.6364,-5.4137E-05],[240.63977,-5.2074E-05],[240.64313,-4.8981E-05],[240.6465,-5.259E-05],[240.64986,-5.259E-05],[240.65322,-5.1043E-05],[240.65659,-5.3106E-05],[240.65995,-5.259E-05],[240.66332,-4.8465E-05],[240.66668,-4.9497E-05],[240.67004,-5.3621E-05],[240.67341,-5.4137E-05],[240.67677,-5.4137E-05],[240.68014,-5.1559E-05],[240.6835,-4.5372E-05],[240.68686,-5.259E-05],[240.69023,-5.8777E-05],[240.69359,-5.2074E-05],[240.69696,-5.4652E-05],[240.70032,-5.3621E-05],[240.70368,-5.259E-05],[240.70705,-5.6715E-05],[240.71041,-5.0528E-05],[240.71378,-5.0528E-05],[240.71714,-5.3106E-05],[240.7205,-5.3106E-05],[240.72387,-5.5168E-05],[240.72723,-5.6199E-05],[240.7306,-5.4137E-05],[240.73396,-5.3621E-05],[240.73732,-5.3106E-05],[240.74069,-5.2074E-05],[240.74405,-5.2074E-05],[240.74742,-4.9497E-05],[240.75078,-5.2074E-05],[240.75414,-5.3621E-05],[240.75751,-5.2074E-05],[240.76087,-5.3106E-05],[240.76424,-4.9497E-05],[240.7676,-5.1559E-05],[240.77096,-5.6199E-05],[240.77433,-5.8262E-05],[240.77769,-5.259E-05],[240.78106,-4.9497E-05],[240.78442,-5.5168E-05],[240.78778,-5.4652E-05],[240.79115,-5.3106E-05],[240.79451,-5.4137E-05],[240.79788,-5.5168E-05],[240.80124,-5.4652E-05],[240.8046,-5.4137E-05],[240.80797,-5.5168E-05],[240.81133,-5.3621E-05],[240.8147,-5.0528E-05],[240.81806,-5.0528E-05],[240.82142,-5.3106E-05],[240.82479,-5.259E-05],[240.82815,-5.3106E-05],[240.83152,-5.3106E-05],[240.83488,-4.7434E-05],[240.83824,-4.7434E-05],[240.84161,-5.259E-05],[240.84497,-5.0528E-05],[240.84834,-5.0012E-05],[240.8517,-5.6199E-05],[240.85506,-5.723E-05],[240.85843,-5.259E-05],[240.86179,-4.9497E-05],[240.86516,-5.259E-05],[240.86852,-5.4137E-05],[240.87188,-5.4137E-05],[240.87525,-5.4652E-05],[240.87861,-5.3621E-05],[240.88198,-5.3621E-05],[240.88534,-5.3106E-05],[240.8887,-5.2074E-05],[240.89207,-5.4137E-05],[240.89543,-5.5684E-05],[240.8988,-5.3621E-05],[240.90216,-5.2074E-05],[240.90552,-5.5168E-05],[240.90889,-5.6715E-05],[240.91225,-5.5684E-05],[240.91562,-5.259E-05],[240.91898,-4.8981E-05],[240.92234,-4.8981E-05],[240.92571,-5.2074E-05],[240.92907,-5.3621E-05],[240.93244,-5.259E-05]]}
-{"quant":[241.519,-5.2174E-05],"mems":[[241.42022,-5.2074E-05],[241.42358,-4.9497E-05],[241.42694,-4.8465E-05],[241.43031,-5.1043E-05],[241.43367,-5.259E-05],[241.43704,-5.3106E-05],[241.4404,-5.1559E-05],[241.44376,-5.0012E-05],[241.44713,-5.1043E-05],[241.45049,-5.3106E-05],[241.45386,-5.4137E-05],[241.45722,-4.9497E-05],[241.46058,-5.1043E-05],[241.46395,-5.4652E-05],[241.46731,-5.3621E-05],[241.47068,-5.3106E-05],[241.47404,-5.259E-05],[241.4774,-5.0528E-05],[241.48077,-5.1043E-05],[241.48413,-5.3621E-05],[241.4875,-5.259E-05],[241.49086,-5.1559E-05],[241.49422,-5.4652E-05],[241.49759,-5.4137E-05],[241.50095,-5.0012E-05],[241.50432,-5.1559E-05],[241.50768,-5.0528E-05],[241.51104,-5.1043E-05],[241.51441,-5.5168E-05],[241.51777,-5.259E-05],[241.52114,-5.0528E-05],[241.5245,-5.3621E-05],[241.52786,-5.2074E-05],[241.53123,-4.8465E-05],[241.53459,-5.0528E-05],[241.53796,-5.1559E-05],[241.54132,-4.9497E-05],[241.54468,-4.8981E-05],[241.54805,-5.1559E-05],[241.55141,-5.4652E-05],[241.55478,-5.6199E-05],[241.55814,-5.3621E-05],[241.5615,-5.3106E-05],[241.56487,-5.3106E-05],[241.56823,-5.5684E-05],[241.5716,-5.259E-05],[241.57496,-5.0012E-05],[241.57832,-5.3621E-05],[241.58169,-4.795E-05],[241.58505,-5.1043E-05],[241.58842,-5.3621E-05],[241.59178,-5.2074E-05],[241.59514,-5.1043E-05],[241.59851,-4.8981E-05],[241.60187,-5.1559E-05],[241.60524,-5.1559E-05],[241.6086,-5.5684E-05],[241.61196,-5.5168E-05],[241.61533,-5.3621E-05],[241.61869,-5.4652E-05],[241.62206,-5.1043E-05],[241.62542,-5.3106E-05],[241.62878,-5.723E-05],[241.63215,-5.723E-05],[241.63551,-5.3106E-05],[241.63888,-5.259E-05],[241.64224,-5.259E-05],[241.6456,-5.259E-05],[241.64897,-5.5684E-05],[241.65233,-5.8777E-05],[241.6557,-5.6199E-05],[241.65906,-5.1559E-05],[241.66242,-5.0012E-05],[241.66579,-4.8981E-05],[241.66915,-5.1559E-05],[241.67252,-5.259E-05],[241.67588,-5.4652E-05],[241.67924,-5.0012E-05],[241.68261,-4.795E-05],[241.68597,-5.5168E-05],[241.68934,-5.3106E-05],[241.6927,-5.2074E-05],[241.69606,-5.259E-05],[241.69943,-5.1043E-05],[241.70279,-4.7434E-05],[241.70616,-4.8465E-05],[241.70952,-5.3106E-05],[241.71288,-5.259E-05],[241.71625,-5.259E-05],[241.71961,-5.0528E-05]]}
-{"quant":[241.98,-5.2274E-05],"mems":[[241.88108,-5.3621E-05],[241.88445,-5.5684E-05],[241.88781,-5.3106E-05],[241.89118,-5.3106E-05],[241.89454,-5.5168E-05],[241.8979,-5.3106E-05],[241.90127,-4.6919E-05],[241.90463,-5.1043E-05],[241.908,-5.6199E-05],[241.91136,-5.1559E-05],[241.91472,-4.9497E-05],[241.91809,-5.2074E-05],[241.92145,-5.723E-05],[241.92482,-5.4137E-05],[241.92818,-5.4652E-05],[241.93154,-5.6715E-05],[241.93491,-5.1559E-05],[241.93827,-5.4652E-05],[241.94164,-5.9293E-05],[241.945,-5.9293E-05],[241.94836,-5.4652E-05],[241.95173,-5.2074E-05],[241.95509,-5.2074E-05],[241.95846,-5.2074E-05],[241.96182,-5.6199E-05],[241.96518,-5.4137E-05],[241.96855,-5.4137E-05],[241.97191,-5.259E-05],[241.97528,-4.9497E-05],[241.97864,-5.259E-05],[241.982,-5.3621E-05],[241.98537,-5.5684E-05],[241.98873,-5.723E-05],[241.9921,-5.4652E-05],[241.99546,-5.1043E-05],[241.99882,-5.1559E-05],[242.00219,-5.1043E-05],[242.00555,-5.259E-05],[242.00892,-5.0528E-05],[242.01228,-4.5887E-05],[242.01564,-4.7434E-05],[242.01901,-4.795E-05],[242.02237,-5.1559E-05],[242.02574,-5.3106E-05],[242.0291,-5.1559E-05],[242.03246,-5.0528E-05],[242.03583,-5.1043E-05],[242.03919,-5.1043E-05],[242.04256,-5.2074E-05],[242.04592,-5.2074E-05],[242.04928,-4.795E-05],[242.05265,-5.1043E-05],[242.05601,-5.2074E-05],[242.05938,-4.9497E-05],[242.06274,-5.0528E-05],[242.0661,-5.259E-05],[242.06947,-5.5684E-05],[242.07283,-5.6199E-05],[242.0762,-5.723E-05],[242.07956,-5.7746E-05],[242.08292,-5.7746E-05],[242.08629,-5.4137E-05],[242.08965,-4.5887E-05],[242.09302,-4.6403E-05],[242.09638,-5.1559E-05],[242.09974,-5.1559E-05],[242.10311,-5.259E-05],[242.10647,-5.4137E-05],[242.10984,-5.1559E-05],[242.1132,-5.2074E-05],[242.11656,-5.3106E-05],[242.11993,-5.0528E-05],[242.12329,-5.3106E-05],[242.12666,-5.3106E-05],[242.13002,-4.9497E-05],[242.13338,-4.795E-05],[242.13675,-5.0012E-05],[242.14011,-5.3621E-05],[242.14348,-5.4652E-05],[242.14684,-5.3106E-05],[242.1502,-5.1043E-05],[242.15357,-5.2074E-05],[242.15693,-5.4137E-05],[242.1603,-5.4652E-05],[242.16366,-5.3621E-05],[242.16702,-5.3106E-05],[242.17039,-5.3106E-05],[242.17375,-5.2074E-05],[242.17712,-5.4652E-05],[242.18048,-5.4137E-05]]}
-{"quant":[242.444,-5.2889E-05],"mems":[[242.34532,-5.0528E-05],[242.34868,-5.259E-05],[242.35204,-5.4137E-05],[242.35541,-5.5168E-05],[242.35877,-5.4137E-05],[242.36214,-5.3621E-05],[242.3655,-5.5684E-05],[242.36886,-5.4652E-05],[242.37223,-5.5684E-05],[242.37559,-5.4137E-05],[242.37896,-5.3106E-05],[242.38232,-5.6199E-05],[242.38568,-5.0528E-05],[242.38905,-5.0012E-05],[242.39241,-5.0528E-05],[242.39578,-5.2074E-05],[242.39914,-5.3106E-05],[242.4025,-5.0012E-05],[242.40587,-4.7434E-05],[242.40923,-5.1559E-05],[242.4126,-5.3621E-05],[242.41596,-4.8981E-05],[242.41932,-5.5684E-05],[242.42269,-5.4652E-05],[242.42605,-5.3621E-05],[242.42942,-5.4137E-05],[242.43278,-4.9497E-05],[242.43614,-5.5684E-05],[242.43951,-5.4652E-05],[242.44287,-4.8981E-05],[242.44624,-4.8465E-05],[242.4496,-5.0528E-05],[242.45296,-5.3106E-05],[242.45633,-5.6199E-05],[242.45969,-5.2074E-05],[242.46306,-4.795E-05],[242.46642,-5.4137E-05],[242.46978,-5.3621E-05],[242.47315,-5.0528E-05],[242.47651,-5.259E-05],[242.47988,-5.3621E-05],[242.48324,-5.259E-05],[242.4866,-4.8465E-05],[242.48997,-5.1043E-05],[242.49333,-5.3621E-05],[242.4967,-5.2074E-05],[242.50006,-5.259E-05],[242.50342,-4.8465E-05],[242.50679,-5.4137E-05],[242.51015,-5.3621E-05],[242.51352,-5.2074E-05],[242.51688,-5.9293E-05],[242.52024,-5.5684E-05],[242.52361,-5.259E-05],[242.52697,-5.3106E-05],[242.53034,-5.5684E-05],[242.5337,-5.6199E-05],[242.53706,-5.6199E-05],[242.54043,-5.259E-05],[242.54379,-5.1043E-05],[242.54716,-5.5684E-05],[242.55052,-5.1559E-05],[242.55388,-5.3621E-05],[242.55725,-5.3621E-05],[242.56061,-4.7434E-05],[242.56398,-4.795E-05],[242.56734,-5.1043E-05],[242.5707,-5.4652E-05],[242.57407,-5.1559E-05],[242.57743,-4.8465E-05],[242.5808,-4.795E-05],[242.58416,-4.8465E-05],[242.58752,-5.6715E-05],[242.59089,-5.6715E-05],[242.59425,-5.4652E-05],[242.59762,-5.4652E-05],[242.60098,-5.0528E-05],[242.60434,-5.1043E-05],[242.60771,-5.259E-05],[242.61107,-5.1043E-05],[242.61444,-4.9497E-05],[242.6178,-4.795E-05],[242.62116,-4.6403E-05],[242.62453,-5.259E-05],[242.62789,-5.5684E-05],[242.63126,-5.4137E-05],[242.63462,-5.5684E-05],[242.63798,-5.2074E-05],[242.64135,-4.8981E-05],[242.64471,-5.1043E-05]]}
-{"quant":[242.909,-5.3781E-05],"mems":[[242.81056,-5.5168E-05],[242.81406,-5.3106E-05],[242.81757,-5.0012E-05],[242.82108,-5.2074E-05],[242.82459,-5.1559E-05],[242.8281,-5.3106E-05],[242.8316,-5.6199E-05],[242.83511,-5.259E-05],[242.83862,-4.795E-05],[242.84213,-4.7434E-05],[242.84564,-5.4652E-05],[242.84914,-5.5168E-05],[242.85265,-4.9497E-05],[242.85616,-5.2074E-05],[242.85967,-5.3621E-05],[242.86318,-5.2074E-05],[242.86668,-5.6199E-05],[242.87019,-5.7746E-05],[242.8737,-5.3106E-05],[242.87721,-5.259E-05],[242.88072,-5.2074E-05],[242.88422,-4.9497E-05],[242.88773,-5.2074E-05],[242.89124,-5.6715E-05],[242.89475,-5.6715E-05],[242.89826,-5.0528E-05],[242.90176,-5.2074E-05],[242.90527,-5.2074E-05],[242.90878,-4.8465E-05],[242.91229,-5.723E-05],[242.9158,-5.7746E-05],[242.9193,-5.2074E-05],[242.92281,-5.1043E-05],[242.92632,-5.2074E-05],[242.92983,-5.5684E-05],[242.93334,-5.259E-05],[242.93684,-5.0528E-05],[242.94035,-5.3106E-05],[242.94386,-5.723E-05],[242.94737,-5.9293E-05],[242.95088,-5.4652E-05],[242.95438,-5.1559E-05],[242.95789,-5.0528E-05],[242.9614,-4.8981E-05],[242.96491,-5.3106E-05],[242.96842,-5.259E-05],[242.97192,-4.8465E-05],[242.97543,-5.5684E-05],[242.97894,-5.5168E-05],[242.98245,-5.2074E-05],[242.98596,-5.6199E-05],[242.98946,-5.8777E-05],[242.99297,-5.6199E-05],[242.99648,-5.1043E-05],[242.99999,-5.3621E-05],[243.0035,-5.5168E-05],[243.007,-5.4137E-05],[243.01051,-5.3106E-05],[243.01402,-5.3621E-05],[243.01753,-5.3106E-05],[243.02104,-5.1559E-05],[243.02454,-5.4137E-05],[243.02805,-5.1559E-05],[243.03156,-5.259E-05],[243.03507,-5.4652E-05],[243.03858,-5.0012E-05],[243.04208,-4.8465E-05],[243.04559,-5.0012E-05],[243.0491,-5.3106E-05],[243.05261,-5.5168E-05],[243.05612,-5.4137E-05],[243.05962,-5.259E-05],[243.06313,-5.0012E-05],[243.06664,-5.0528E-05],[243.07015,-5.4652E-05],[243.07366,-5.3621E-05],[243.07716,-5.1043E-05],[243.08067,-4.9497E-05],[243.08418,-5.0012E-05],[243.08769,-5.6199E-05],[243.0912,-5.8777E-05],[243.0947,-5.5684E-05],[243.09821,-5.259E-05],[243.10172,-4.9497E-05],[243.10523,-4.7434E-05],[243.10874,-5.1043E-05],[243.11224,-5.1559E-05]]}
-{"quant":[243.772,-5.291E-05],"mems":[[243.67352,-4.7434E-05],[243.67703,-5.2074E-05],[243.68054,-5.5684E-05],[243.68405,-5.3106E-05],[243.68756,-5.5168E-05],[243.69106,-5.259E-05],[243.69457,-5.0012E-05],[243.69808,-5.2074E-05],[243.70159,-5.0528E-05],[243.7051,-5.4137E-05],[243.7086,-5.3106E-05],[243.71211,-5.0528E-05],[243.71562,-5.1559E-05],[243.71913,-4.8981E-05],[243.72264,-5.0528E-05],[243.72614,-5.1559E-05],[243.72965,-5.4137E-05],[243.73316,-5.0012E-05],[243.73667,-4.5372E-05],[243.74018,-5.259E-05],[243.74368,-5.259E-05],[243.74719,-4.9497E-05],[243.7507,-5.3621E-05],[243.75421,-5.3621E-05],[243.75772,-5.1559E-05],[243.76122,-5.723E-05],[243.76473,-5.5168E-05],[243.76824,-5.259E-05],[243.77175,-5.3621E-05],[243.77526,-5.1559E-05],[243.77876,-5.3106E-05],[243.78227,-5.259E-05],[243.78578,-5.4137E-05],[243.78929,-5.3106E-05],[243.7928,-5.0012E-05],[243.7963,-5.259E-05],[243.79981,-5.6199E-05],[243.80332,-5.7746E-05],[243.80683,-5.6199E-05],[243.81034,-5.3106E-05],[243.81384,-5.0528E-05],[243.81735,-5.0528E-05],[243.82086,-4.8981E-05],[243.82437,-5.1043E-05],[243.82788,-5.259E-05],[243.83138,-5.259E-05],[243.83489,-5.2074E-05],[243.8384,-5.1559E-05],[243.84191,-5.4137E-05],[243.84542,-5.6715E-05],[243.84892,-5.7746E-05],[243.85243,-5.4137E-05],[243.85594,-5.1559E-05],[243.85945,-5.259E-05],[243.86296,-5.2074E-05],[243.86646,-5.259E-05],[243.86997,-5.3106E-05],[243.87348,-4.9497E-05],[243.87699,-4.8981E-05],[243.8805,-5.259E-05],[243.884,-5.259E-05],[243.88751,-5.259E-05],[243.89102,-5.5684E-05],[243.89453,-5.8262E-05],[243.89804,-5.0012E-05],[243.90154,-4.9497E-05],[243.90505,-5.3621E-05],[243.90856,-4.9497E-05],[243.91207,-5.0012E-05],[243.91558,-5.1559E-05],[243.91908,-5.3106E-05],[243.92259,-5.2074E-05],[243.9261,-5.259E-05],[243.92961,-5.5684E-05],[243.93312,-5.259E-05],[243.93662,-5.2074E-05],[243.94013,-5.4652E-05],[243.94364,-5.4137E-05],[243.94715,-5.0012E-05],[243.95066,-4.795E-05],[243.95416,-5.0012E-05],[243.95767,-5.259E-05],[243.96118,-5.6199E-05],[243.96469,-5.6715E-05],[243.9682,-5.6199E-05],[243.9717,-5.5684E-05],[243.97521,-5.4652E-05]]}
-{"quant":[244.263,-5.3319E-05],"mems":[[244.16464,-5.259E-05],[244.16815,-5.1559E-05],[244.17166,-5.4137E-05],[244.17517,-5.5168E-05],[244.17868,-5.5684E-05],[244.18218,-5.5684E-05],[244.18569,-5.9293E-05],[244.1892,-5.5168E-05],[244.19271,-5.4137E-05],[244.19622,-5.4137E-05],[244.19972,-4.8465E-05],[244.20323,-5.259E-05],[244.20674,-4.7434E-05],[244.21025,-4.7434E-05],[244.21376,-5.4652E-05],[244.21726,-5.3621E-05],[244.22077,-5.3621E-05],[244.22428,-5.3106E-05],[244.22779,-5.259E-05],[244.2313,-5.259E-05],[244.2348,-5.5684E-05],[244.23831,-5.6199E-05],[244.24182,-5.5168E-05],[244.24533,-5.3106E-05],[244.24884,-5.0528E-05],[244.25234,-5.4137E-05],[244.25585,-5.1043E-05],[244.25936,-5.4137E-05],[244.26287,-5.6715E-05],[244.26638,-5.1043E-05],[244.26988,-5.5168E-05],[244.27339,-5.8262E-05],[244.2769,-5.6715E-05],[244.28041,-5.6715E-05],[244.28392,-5.7746E-05],[244.28742,-5.2074E-05],[244.29093,-5.0528E-05],[244.29444,-5.6715E-05],[244.29795,-5.5684E-05],[244.30146,-5.7746E-05],[244.30496,-5.3621E-05],[244.30847,-4.7434E-05],[244.31198,-5.1043E-05],[244.31549,-5.2074E-05],[244.319,-5.4137E-05],[244.3225,-5.1559E-05],[244.32601,-5.2074E-05],[244.32952,-5.3621E-05],[244.33303,-4.9497E-05],[244.33654,-5.3621E-05],[244.34004,-5.2074E-05],[244.34355,-4.9497E-05],[244.34706,-5.0012E-05],[244.35057,-5.0528E-05],[244.35408,-5.4137E-05],[244.35758,-5.4652E-05],[244.36109,-5.5168E-05],[244.3646,-5.3106E-05],[244.36811,-5.3106E-05],[244.37162,-5.2074E-05],[244.37512,-5.1559E-05],[244.37863,-5.4652E-05],[244.38214,-5.0012E-05],[244.38565,-4.7434E-05],[244.38916,-5.259E-05],[244.39266,-5.0528E-05],[244.39617,-4.6919E-05],[244.39968,-5.5168E-05],[244.40319,-5.4137E-05],[244.4067,-4.795E-05],[244.4102,-5.1559E-05],[244.41371,-5.259E-05],[244.41722,-5.3621E-05],[244.42073,-5.4137E-05],[244.42424,-5.2074E-05],[244.42774,-5.259E-05],[244.43125,-5.5168E-05],[244.43476,-5.259E-05],[244.43827,-5.3621E-05],[244.44178,-5.6715E-05],[244.44528,-5.5168E-05],[244.44879,-5.5684E-05],[244.4523,-5.5684E-05],[244.45581,-5.259E-05],[244.45932,-4.9497E-05],[244.46282,-4.9497E-05],[244.46633,-5.0528E-05]]}
-{"quant":[244.762,-5.2288E-05],"mems":[[244.66278,-5.1043E-05],[244.66629,-5.5168E-05],[244.6698,-5.2074E-05],[244.6733,-4.795E-05],[244.67681,-5.1043E-05],[244.68032,-5.0528E-05],[244.68383,-5.259E-05],[244.68734,-5.2074E-05],[244.69084,-4.8465E-05],[244.69435,-5.1043E-05],[244.69786,-5.2074E-05],[244.70137,-5.6199E-05],[244.70488,-5.723E-05],[244.70838,-5.5168E-05],[244.71189,-5.5684E-05],[244.7154,-4.9497E-05],[244.71891,-5.0528E-05],[244.72242,-5.5168E-05],[244.72592,-5.6715E-05],[244.72943,-5.4137E-05],[244.73294,-4.9497E-05],[244.73645,-5.3621E-05],[244.73996,-5.6715E-05],[244.74346,-5.6715E-05],[244.74697,-5.8777E-05],[244.75048,-5.6715E-05],[244.75399,-5.4137E-05],[244.7575,-5.1559E-05],[244.761,-4.8981E-05],[244.76451,-5.1559E-05],[244.76802,-5.0528E-05],[244.77153,-5.1043E-05],[244.77504,-5.3106E-05],[244.77854,-5.0528E-05],[244.78205,-5.3621E-05],[244.78556,-5.3621E-05],[244.78907,-5.3621E-05],[244.79258,-5.5684E-05],[244.79608,-5.0012E-05],[244.79959,-4.9497E-05],[244.8031,-5.259E-05],[244.80661,-5.1043E-05],[244.81012,-4.8981E-05],[244.81362,-5.0012E-05],[244.81713,-5.3106E-05],[244.82064,-5.1559E-05],[244.82415,-5.5684E-05],[244.82766,-5.6199E-05],[244.83116,-5.1559E-05],[244.83467,-5.2074E-05],[244.83818,-4.8981E-05],[244.84169,-5.3621E-05],[244.8452,-5.6715E-05],[244.8487,-5.5168E-05],[244.85221,-5.2074E-05],[244.85572,-4.6919E-05],[244.85923,-5.2074E-05],[244.86274,-5.5168E-05],[244.86624,-5.0012E-05],[244.86975,-4.795E-05],[244.87326,-5.0012E-05],[244.87677,-4.7434E-05],[244.88028,-5.0012E-05],[244.88378,-5.259E-05],[244.88729,-5.259E-05],[244.8908,-5.3106E-05],[244.89431,-4.8981E-05],[244.89782,-5.259E-05],[244.90132,-5.1559E-05],[244.90483,-5.1559E-05],[244.90834,-5.5684E-05],[244.91185,-5.3621E-05],[244.91536,-5.6715E-05],[244.91886,-5.259E-05],[244.92237,-5.0528E-05],[244.92588,-5.5684E-05],[244.92939,-5.4652E-05],[244.9329,-5.1559E-05],[244.9364,-5.0012E-05],[244.93991,-5.1559E-05],[244.94342,-5.3106E-05],[244.94693,-5.723E-05],[244.95044,-5.4137E-05],[244.95394,-5.1043E-05],[244.95745,-5.4652E-05],[244.96096,-5.0528E-05],[244.96447,-5.4652E-05]]}
-{"quant":[245.235,-0.51547],"mems":[[245.13636,-5.6199E-05],[245.13987,-5.6199E-05],[245.14338,-5.6715E-05],[245.14688,-5.3106E-05],[245.15039,-5.1043E-05],[245.1539,-5.4137E-05],[245.15741,-5.4652E-05],[245.16092,-5.4652E-05],[245.16442,-5.3106E-05],[245.16793,-5.4137E-05],[245.17144,-5.4137E-05],[245.17495,-4.9497E-05],[245.17846,-5.1043E-05],[245.18196,-5.3621E-05],[245.18547,-5.2074E-05],[245.18898,-4.9497E-05],[245.19249,-5.3621E-05],[245.196,-5.9808E-05],[245.1995,-5.5168E-05],[245.20301,-5.1043E-05],[245.20652,-5.0528E-05],[245.21003,-5.0528E-05],[245.21354,-4.9497E-05],[245.21704,-4.7434E-05],[245.22055,-4.8981E-05],[245.22406,-4.9497E-05],[245.22757,-4.795E-05],[245.23108,-5.1559E-05],[245.23458,-5.3621E-05],[245.23809,-5.5684E-05],[245.2416,-5.5168E-05],[245.24511,-5.1043E-05],[245.24862,-4.795E-05],[245.25212,-4.8465E-05],[245.25563,-5.6715E-05],[245.25914,-5.1043E-05],[245.26265,-4.8465E-05],[245.26616,-5.0528E-05],[245.26966,-4.8981E-05],[245.27317,-5.1559E-05],[245.27668,-5.0012E-05],[245.28019,-4.7434E-05],[245.2837,-4.5887E-05],[245.2872,-4.8981E-05],[245.29071,-5.4137E-05],[245.29422,-5.259E-05],[245.29773,-5.3106E-05],[245.30124,-5.8262E-05],[245.30474,-5.3621E-05],[245.30825,-4.8981E-05],[245.31176,-4.8981E-05],[245.31527,-4.8981E-05],[245.31878,-5.1559E-05],[245.32228,-5.0528E-05],[245.32579,-5.1559E-05],[245.3293,-5.4137E-05],[245.33281,-5.3106E-05],[245.33632,-5.5684E-05],[245.33982,-5.3621E-05],[245.34333,-5.1043E-05],[245.34684,-5.1559E-05],[245.35035,-4.7434E-05],[245.35386,-5.4137E-05],[245.35736,-5.8262E-05],[245.36087,-5.3106E-05],[245.36438,-5.1043E-05],[245.36789,-5.259E-05],[245.3714,-5.259E-05],[245.3749,-4.8465E-05],[245.37841,-5.3106E-05],[245.38192,-5.4137E-05],[245.38543,-5.2074E-05],[245.38894,-5.259E-05],[245.39244,-5.0012E-05],[245.39595,-5.4137E-05],[245.39946,-5.4137E-05],[245.40297,-5.0012E-05],[245.40648,-5.259E-05],[245.40998,-5.3106E-05],[245.41349,-5.4652E-05],[245.417,-5.6199E-05],[245.42079,-5.3106E-05],[245.42458,-5.4137E-05],[245.42838,-5.1043E-05],[245.43217,-4.8465E-05],[245.43596,-5.259E-05]]}
-{"quant":[245.722,-5.2877E-05],"mems":[[245.62556,-5.1559E-05],[245.62935,-4.7434E-05],[245.63314,-5.0528E-05],[245.63694,-5.5168E-05],[245.64073,-5.5168E-05],[245.64452,-5.0012E-05],[245.64831,-4.6919E-05],[245.6521,-4.795E-05],[245.6559,-5.3621E-05],[245.65969,-5.7746E-05],[245.66348,-5.5684E-05],[245.66727,-5.1559E-05],[245.67106,-5.0528E-05],[245.67486,-5.2074E-05],[245.67865,-5.3106E-05],[245.68244,-5.3621E-05],[245.68623,-5.2074E-05],[245.69002,-5.1559E-05],[245.69382,-5.4137E-05],[245.69761,-5.2074E-05],[245.7014,-4.795E-05],[245.70519,-5.259E-05],[245.70898,-5.0528E-05],[245.71278,-4.8981E-05],[245.71657,-5.259E-05],[245.72036,-5.1559E-05],[245.72415,-5.1559E-05],[245.72794,-5.259E-05],[245.73174,-5.6199E-05],[245.73553,-5.259E-05],[245.73932,-5.0012E-05],[245.74311,-5.2074E-05],[245.7469,-5.1043E-05],[245.7507,-5.1559E-05],[245.75449,-5.3621E-05],[245.75828,-5.6715E-05],[245.76207,-5.4652E-05],[245.76586,-5.0528E-05],[245.76966,-5.4652E-05],[245.77345,-5.6715E-05],[245.77724,-5.5168E-05],[245.78103,-5.259E-05],[245.78482,-5.0012E-05],[245.78862,-5.4137E-05],[245.79241,-5.4137E-05],[245.7962,-5.3106E-05],[245.79999,-5.3106E-05],[245.80378,-4.7434E-05],[245.80758,-4.8465E-05],[245.81137,-5.5684E-05],[245.81516,-5.4137E-05],[245.81895,-5.1559E-05],[245.82274,-5.3621E-05],[245.82654,-5.2074E-05],[245.83033,-5.1559E-05],[245.83412,-5.3106E-05],[245.83791,-5.5168E-05],[245.8417,-5.6715E-05],[245.8455,-4.9497E-05],[245.84929,-4.7434E-05],[245.85308,-5.259E-05],[245.85687,-5.3621E-05],[245.86066,-5.3621E-05],[245.86446,-5.2074E-05],[245.86825,-5.1559E-05],[245.87204,-5.0012E-05],[245.87583,-4.9497E-05],[245.87962,-5.1043E-05],[245.88342,-5.1043E-05],[245.88721,-5.723E-05],[245.891,-5.6715E-05],[245.89479,-5.0528E-05],[245.89858,-5.5168E-05],[245.90238,-5.7746E-05],[245.90617,-5.259E-05],[245.90996,-5.3621E-05],[245.91375,-5.0528E-05],[245.91754,-4.2794E-05],[245.92134,-4.8981E-05],[245.92513,-5.3621E-05]]}
-{"quant":[246.192,-5.3793E-05],"mems":[[246.09577,-5.1043E-05],[246.09956,-4.8981E-05],[246.10335,-4.8465E-05],[246.10714,-5.1043E-05],[246.11094,-5.1559E-05],[246.11473,-5.1559E-05],[246.11852,-4.9497E-05],[246.12231,-5.259E-05],[246.1261,-5.3106E-05],[246.1299,-5.1559E-05],[246.13369,-5.1043E-05],[246.13748,-4.795E-05],[246.14127,-5.259E-05],[246.14506,-5.5168E-05],[246.14886,-5.6199E-05],[246.15265,-5.723E-05],[246.15644,-5.0528E-05],[246.16023,-4.8465E-05],[246.16402,-5.3621E-05],[246.16782,-5.6715E-05],[246.17161,-5.259E-05],[246.1754,-4.8465E-05],[246.17919,-5.0528E-05],[246.18298,-4.8981E-05],[246.18678,-5.0012E-05],[246.19057,-5.5684E-05],[246.19436,-5.6715E-05],[246.19815,-5.1559E-05],[246.20194,-5.3621E-05],[246.20574,-5.9808E-05],[246.20953,-5.5684E-05],[246.21332,-5.4652E-05],[246.21711,-5.4137E-05],[246.2209,-4.8981E-05],[246.2247,-5.4137E-05],[246.22849,-5.3621E-05],[246.23228,-5.3106E-05],[246.23607,-6.0324E-05],[246.23986,-5.259E-05],[246.24366,-5.0012E-05],[246.24745,-5.8262E-05],[246.25124,-5.3621E-05],[246.25503,-5.2074E-05],[246.25882,-5.4137E-05],[246.26262,-5.259E-05],[246.26641,-5.5684E-05],[246.2702,-5.1043E-05],[246.27399,-5.3106E-05],[246.27778,-5.5684E-05],[246.28158,-5.259E-05],[246.28537,-5.1559E-05],[246.28916,-4.8981E-05],[246.29295,-5.4137E-05],[246.29674,-5.5168E-05],[246.30054,-5.3621E-05],[246.30433,-5.2074E-05],[246.30812,-4.8981E-05],[246.31191,-5.1559E-05],[246.3157,-4.795E-05],[246.3195,-5.0012E-05],[246.32329,-5.3621E-05],[246.32708,-5.2074E-05],[246.33087,-5.3106E-05],[246.33466,-5.0528E-05],[246.33846,-5.4652E-05],[246.34225,-5.4652E-05],[246.34604,-5.259E-05],[246.34983,-5.4652E-05],[246.35362,-5.0528E-05],[246.35742,-4.795E-05],[246.36121,-5.5168E-05],[246.365,-5.8262E-05],[246.36879,-5.2074E-05],[246.37258,-5.3106E-05],[246.37638,-5.1559E-05],[246.38017,-5.2074E-05],[246.38396,-5.6715E-05],[246.38775,-5.6715E-05],[246.39154,-5.4652E-05],[246.39534,-5.3621E-05]]}
-{"quant":[246.893,-5.1712E-05],"mems":[[246.7935,-5.3106E-05],[246.79729,-5.1043E-05],[246.80108,-5.723E-05],[246.80487,-5.3621E-05],[246.80866,-5.2074E-05],[246.81246,-5.3106E-05],[246.81625,-5.1559E-05],[246.82004,-4.9497E-05],[246.82383,-5.259E-05],[246.82762,-5.4652E-05],[246.83142,-5.5168E-05],[246.83521,-5.259E-05],[246.839,-4.8465E-05],[246.84279,-5.259E-05],[246.84658,-5.3106E-05],[246.85038,-5.2074E-05],[246.85417,-5.3106E-05],[246.85796,-5.1043E-05],[246.86175,-4.8465E-05],[246.86554,-4.8981E-05],[246.86934,-5.259E-05],[246.87313,-5.2074E-05],[246.87692,-5.1559E-05],[246.88071,-5.6199E-05],[246.8845,-5.5684E-05],[246.8883,-5.2074E-05],[246.89209,-5.3106E-05],[246.89588,-5.0012E-05],[246.89967,-5.2074E-05],[246.90346,-5.3106E-05],[246.90726,-4.7434E-05],[246.91105,-4.8981E-05],[246.91484,-5.3621E-05],[246.91863,-5.5684E-05],[246.92242,-5.4137E-05],[246.92622,-5.0528E-05],[246.93001,-4.7434E-05],[246.9338,-5.1559E-05],[246.93759,-5.259E-05],[246.94138,-4.8981E-05],[246.94518,-5.1043E-05],[246.94897,-4.8465E-05],[246.95276,-5.0012E-05],[246.95655,-5.4137E-05],[246.96034,-5.2074E-05],[246.96414,-5.4137E-05],[246.96793,-5.5168E-05],[246.97172,-5.4652E-05],[246.97551,-5.0528E-05],[246.9793,-5.0012E-05],[246.9831,-5.5168E-05],[246.98689,-5.4652E-05],[246.99068,-5.3106E-05],[246.99447,-4.6919E-05],[246.99826,-4.8465E-05],[247.00206,-5.723E-05],[247.00585,-5.7746E-05],[247.00964,-5.7746E-05],[247.01343,-5.9808E-05],[247.01722,-5.4652E-05],[247.02102,-4.9497E-05],[247.02481,-5.723E-05],[247.0286,-6.1355E-05],[247.03239,-5.6715E-05],[247.03618,-5.6199E-05],[247.03998,-5.0528E-05],[247.04377,-5.4137E-05],[247.04756,-5.9808E-05],[247.05135,-5.4137E-05],[247.05514,-5.259E-05],[247.05894,-5.3106E-05],[247.06273,-5.4137E-05],[247.06652,-5.1559E-05],[247.07031,-5.0012E-05],[247.0741,-5.1559E-05],[247.0779,-5.1043E-05],[247.08169,-5.6715E-05],[247.08548,-5.3106E-05],[247.08927,-5.0528E-05],[247.09306,-5.6715E-05]]}
-{"quant":[247.37,-5.2724E-05],"mems":[[247.27129,-5.5684E-05],[247.27508,-5.5684E-05],[247.27887,-5.4652E-05],[247.28266,-5.3106E-05],[247.28646,-4.7434E-05],[247.29025,-5.4137E-05],[247.29404,-5.5168E-05],[247.29783,-5.0528E-05],[247.30162,-5.259E-05],[247.30542,-4.6919E-05],[247.30921,-4.795E-05],[247.313,-5.5168E-05],[247.31679,-5.4137E-05],[247.32058,-5.4137E-05],[247.32438,-5.3106E-05],[247.32817,-4.8981E-05],[247.33196,-5.1559E-05],[247.33575,-5.1559E-05],[247.33954,-4.8465E-05],[247.34334,-5.4652E-05],[247.34713,-5.4652E-05],[247.35092,-5.259E-05],[247.35471,-5.4137E-05],[247.3585,-5.5684E-05],[247.3623,-5.5684E-05],[247.36609,-5.259E-05],[247.36988,-5.4137E-05],[247.37367,-5.5684E-05],[247.37746,-5.4137E-05],[247.38126,-5.5168E-05],[247.38505,-5.5684E-05],[247.38884,-5.5168E-05],[247.39263,-5.6199E-05],[247.39642,-5.3621E-05],[247.40022,-5.1043E-05],[247.40401,-5.6715E-05],[247.4078,-5.4137E-05],[247.41159,-5.0528E-05],[247.41538,-4.9497E-05],[247.41918,-4.8981E-05],[247.42297,-5.1559E-05],[247.42676,-5.1043E-05],[247.43055,-5.1559E-05],[247.43434,-4.8981E-05],[247.43814,-5.259E-05],[247.44193,-5.6715E-05],[247.44572,-5.6715E-05],[247.44951,-5.3106E-05],[247.4533,-5.0528E-05],[247.4571,-5.3106E-05],[247.46089,-5.1043E-05],[247.46468,-5.0528E-05],[247.46847,-4.8981E-05],[247.47226,-5.0528E-05],[247.47606,-5.4652E-05],[247.47985,-5.3106E-05],[247.48364,-5.1559E-05],[247.48743,-5.3621E-05],[247.49122,-5.4137E-05],[247.49502,-5.3621E-05],[247.49881,-5.4652E-05],[247.5026,-4.8981E-05],[247.50639,-5.0528E-05],[247.51018,-5.723E-05],[247.51398,-5.3621E-05],[247.51777,-5.6715E-05],[247.52156,-5.6715E-05],[247.52535,-5.1559E-05],[247.52914,-5.8777E-05],[247.53294,-5.4652E-05],[247.53673,-5.259E-05],[247.54052,-5.9293E-05],[247.54431,-5.7746E-05],[247.5481,-5.723E-05],[247.5519,-5.3621E-05],[247.55569,-5.5168E-05],[247.55948,-5.1559E-05],[247.56327,-4.795E-05],[247.56706,-5.0528E-05],[247.57086,-5.0012E-05]]}
-{"quant":[247.901,-5.406E-05],"mems":[[247.80217,-5.3106E-05],[247.80596,-5.6199E-05],[247.80975,-5.3621E-05],[247.81354,-5.1043E-05],[247.81734,-5.3621E-05],[247.82113,-5.1043E-05],[247.82492,-5.259E-05],[247.82871,-4.7434E-05],[247.8325,-4.4856E-05],[247.8363,-5.3106E-05],[247.84009,-5.3621E-05],[247.84388,-5.2074E-05],[247.84767,-5.2074E-05],[247.85146,-4.795E-05],[247.85526,-5.0012E-05],[247.85905,-5.259E-05],[247.86284,-5.3621E-05],[247.86663,-5.4137E-05],[247.87042,-5.2074E-05],[247.87422,-5.0528E-05],[247.87801,-5.0012E-05],[247.8818,-5.1559E-05],[247.88559,-5.1559E-05],[247.88938,-5.4652E-05],[247.89318,-5.5684E-05],[247.89697,-5.3106E-05],[247.90076,-5.5168E-05],[247.90455,-5.3106E-05],[247.90834,-5.4652E-05],[247.91214,-5.9808E-05],[247.91593,-5.4137E-05],[247.91972,-5.1043E-05],[247.92351,-5.1043E-05],[247.9273,-4.9497E-05],[247.9311,-5.1043E-05],[247.93489,-5.8262E-05],[247.93868,-5.9808E-05],[247.94247,-5.3106E-05],[247.94626,-5.259E-05],[247.95006,-5.4137E-05],[247.95385,-5.1559E-05],[247.95764,-5.259E-05],[247.96143,-5.5168E-05],[247.96522,-5.1559E-05],[247.96902,-5.2074E-05],[247.97281,-5.7746E-05],[247.9766,-5.8777E-05],[247.98039,-5.259E-05],[247.98418,-5.2074E-05],[247.98798,-5.7746E-05],[247.99177,-5.4137E-05],[247.99556,-5.259E-05],[247.99935,-5.6199E-05],[248.00314,-5.259E-05],[248.00694,-4.6919E-05],[248.01073,-4.9497E-05],[248.01452,-5.4652E-05],[248.01831,-5.5168E-05],[248.0221,-5.5684E-05],[248.0259,-5.6715E-05],[248.02969,-5.8262E-05],[248.03348,-5.3621E-05],[248.03727,-5.0528E-05],[248.04106,-5.4652E-05],[248.04486,-5.4652E-05],[248.04865,-5.4137E-05],[248.05244,-5.4137E-05],[248.05623,-5.0528E-05],[248.06002,-4.8465E-05],[248.06382,-4.9497E-05],[248.06761,-5.0012E-05],[248.0714,-5.0012E-05],[248.07519,-5.3621E-05],[248.07898,-5.5168E-05],[248.08278,-5.1043E-05],[248.08657,-4.9497E-05],[248.09036,-5.4137E-05],[248.09415,-5.5684E-05],[248.09794,-5.0012E-05],[248.10174,-5.3106E-05]]}
-{"quant":[248.357,-0.91181],"mems":[[248.5322,-5.3621E-05],[248.53521,-4.9497E-05],[248.53823,-5.1043E-05],[248.54124,-5.4652E-05],[248.54425,-5.6715E-05],[248.54727,-5.7746E-05],[248.55028,-5.3106E-05],[248.55329,-5.2074E-05],[248.55631,-5.5168E-05],[248.55932,-5.723E-05],[248.56233,-5.6199E-05],[248.56535,-5.259E-05],[248.56836,-4.8981E-05],[248.57137,-5.1043E-05],[248.57439,-5.4652E-05],[248.5774,-5.8262E-05],[248.58041,-6.0324E-05],[248.58343,-5.1559E-05],[248.58644,-4.7434E-05],[248.58945,-4.7434E-05],[248.59247,-4.8465E-05],[248.59548,-5.3106E-05],[248.59849,-5.5684E-05],[248.60151,-5.5168E-05],[248.60452,-4.9497E-05],[248.60753,-4.6919E-05],[248.61055,-5.259E-05],[248.61356,-5.5168E-05],[248.61657,-5.3621E-05],[248.61959,-5.259E-05],[248.6226,-5.0012E-05],[248.62561,-5.1043E-05],[248.62863,-5.5684E-05],[248.63164,-5.6715E-05],[248.63465,-5.4137E-05],[248.63767,-4.9497E-05],[248.64068,-5.1559E-05],[248.64369,-5.5684E-05],[248.64671,-5.5168E-05],[248.64972,-5.6199E-05],[248.65273,-5.5168E-05],[248.65575,-5.259E-05],[248.65876,-5.4137E-05],[248.66177,-5.3621E-05],[248.66479,-5.3106E-05],[248.6678,-5.4652E-05],[248.67081,-5.259E-05],[248.67383,-4.9497E-05],[248.67684,-4.8981E-05],[248.67985,-5.4137E-05],[248.68287,-5.5168E-05],[248.68588,-5.4137E-05],[248.68889,-5.6715E-05],[248.69191,-5.3621E-05],[248.69492,-4.5887E-05],[248.69793,-4.8465E-05],[248.70095,-5.4652E-05],[248.70396,-5.0528E-05],[248.70697,-4.8465E-05],[248.70999,-5.3621E-05],[248.713,-5.3621E-05],[248.71601,-5.2074E-05],[248.71903,-5.7746E-05],[248.72204,-5.9293E-05],[248.72505,-5.5168E-05],[248.72807,-5.0012E-05],[248.73108,-5.0012E-05],[248.73409,-5.6199E-05],[248.73711,-5.4137E-05],[248.74012,-5.1559E-05],[248.74313,-5.2074E-05],[248.74615,-5.0528E-05],[248.74916,-5.3621E-05],[248.75217,-5.723E-05],[248.75519,-5.3106E-05],[248.7582,-5.2074E-05],[248.76121,-5.6715E-05],[248.76423,-5.1559E-05],[248.76724,-4.8465E-05],[248.77025,-5.2074E-05],[248.77327,-5.6715E-05],[248.77628,-5.7746E-05],[248.77929,-5.4137E-05],[248.78231,-5.5168E-05],[248.78532,-5.5684E-05],[248.78833,-5.4137E-05],[248.79135,-5.3106E-05],[248.79436,-5.3621E-05],[248.79737,-5.1043E-05]]}
-{"quant":[248.832,-5.2484E-05],"mems":[[248.73409,-5.6199E-05],[248.73711,-5.4137E-05],[248.74012,-5.1559E-05],[248.74313,-5.2074E-05],[248.74615,-5.0528E-05],[248.74916,-5.3621E-05],[248.75217,-5.723E-05],[248.75519,-5.3106E-05],[248.7582,-5.2074E-05],[248.76121,-5.6715E-05],[248.76423,-5.1559E-05],[248.76724,-4.8465E-05],[248.77025,-5.2074E-05],[248.77327,-5.6715E-05],[248.77628,-5.7746E-05],[248.77929,-5.4137E-05],[248.78231,-5.5168E-05],[248.78532,-5.5684E-05],[248.78833,-5.4137E-05],[248.79135,-5.3106E-05],[248.79436,-5.3621E-05],[248.79737,-5.1043E-05],[248.80039,-4.8981E-05],[248.8034,-5.259E-05],[248.80641,-5.7746E-05],[248.80943,-5.6715E-05],[248.81244,-5.3106E-05],[248.81545,-5.2074E-05],[248.81847,-4.9497E-05],[248.82148,-5.6199E-05],[248.82449,-5.5684E-05],[248.82751,-5.3106E-05],[248.83052,-5.5168E-05],[248.83353,-5.2074E-05],[248.83655,-5.259E-05],[248.83956,-5.4137E-05],[248.84257,-5.8777E-05],[248.84559,-5.4652E-05],[248.8486,-5.1043E-05],[248.85161,-5.4652E-05],[248.85463,-5.0528E-05],[248.85764,-5.1043E-05],[248.86065,-5.6199E-05],[248.86367,-5.259E-05],[248.86668,-4.4341E-05],[248.86969,-4.7434E-05],[248.87271,-5.6715E-05],[248.87572,-5.5168E-05],[248.87873,-5.4137E-05],[248.88175,-5.4652E-05],[248.88476,-5.1043E-05],[248.88777,-5.259E-05],[248.89079,-5.4137E-05],[248.8938,-5.3106E-05],[248.89681,-5.3621E-05],[248.89983,-5.0012E-05],[248.90284,-4.4341E-05],[248.90585,-5.1043E-05],[248.90887,-5.6715E-05],[248.91188,-5.3106E-05],[248.91489,-5.0528E-05],[248.91791,-5.1043E-05],[248.92092,-5.0528E-05],[248.92393,-4.9497E-05],[248.92695,-5.5168E-05],[248.92996,-5.723E-05],[248.93297,-5.0012E-05],[248.93599,-4.9497E-05],[248.939,-5.3621E-05],[248.94201,-5.3106E-05],[248.94503,-5.259E-05],[248.94804,-5.259E-05],[248.95105,-5.3106E-05],[248.95407,-5.2074E-05],[248.95708,-5.2074E-05],[248.96009,-5.2074E-05],[248.96311,-4.9497E-05],[248.96612,-5.4137E-05],[248.96913,-5.1043E-05],[248.97215,-4.9497E-05],[248.97516,-5.0528E-05],[248.97817,-5.0012E-05],[248.98119,-5.4652E-05],[248.9842,-5.2074E-05],[248.98721,-5.0012E-05],[248.99023,-4.9497E-05],[248.99324,-4.8981E-05],[248.99625,-5.3621E-05],[248.99927,-5.5168E-05],[249.00228,-5.3621E-05],[249.00529,-4.8465E-05],[249.00831,-4.7434E-05],[249.01132,-5.4137E-05],[249.01433,-5.4652E-05],[249.01735,-5.3106E-05],[249.02036,-5.723E-05],[249.02337,-5.259E-05],[249.02639,-5.0012E-05],[249.0294,-5.6199E-05],[249.03241,-5.4137E-05]]}
-{"quant":[249.657,-5.3075E-05],"mems":[[249.55975,-5.7746E-05],[249.56276,-5.5684E-05],[249.56577,-5.1559E-05],[249.56879,-5.1043E-05],[249.5718,-5.2074E-05],[249.57481,-5.259E-05],[249.57783,-5.3621E-05],[249.58084,-5.2074E-05],[249.58385,-5.5684E-05],[249.58687,-5.1559E-05],[249.58988,-5.0528E-05],[249.59289,-5.6715E-05],[249.59591,-5.3106E-05],[249.59892,-5.3106E-05],[249.60193,-5.1559E-05],[249.60495,-5.2074E-05],[249.60796,-5.3106E-05],[249.61097,-5.1043E-05],[249.61399,-5.2074E-05],[249.617,-5.1559E-05],[249.62001,-5.2074E-05],[249.62303,-5.259E-05],[249.62604,-5.6715E-05],[249.62905,-5.723E-05],[249.63207,-5.4652E-05],[249.63508,-5.3621E-05],[249.63809,-4.7434E-05],[249.64111,-5.0528E-05],[249.64412,-5.1043E-05],[249.64713,-5.3106E-05],[249.65015,-5.5684E-05],[249.65316,-5.259E-05],[249.65617,-5.4652E-05],[249.65919,-5.1559E-05],[249.6622,-5.6199E-05],[249.66521,-5.5684E-05],[249.66823,-5.1043E-05],[249.67124,-5.5684E-05],[249.67425,-4.6919E-05],[249.67727,-5.0012E-05],[249.68028,-5.6715E-05],[249.68329,-5.259E-05],[249.68631,-5.2074E-05],[249.68932,-4.9497E-05],[249.69233,-4.9497E-05],[249.69535,-5.4137E-05],[249.69836,-5.2074E-05],[249.70137,-5.259E-05],[249.70439,-5.6715E-05],[249.7074,-5.4652E-05],[249.71041,-5.4652E-05],[249.71343,-4.8981E-05],[249.71644,-4.8465E-05],[249.71945,-5.8262E-05],[249.72247,-5.6715E-05],[249.72548,-4.9497E-05],[249.72849,-4.9497E-05],[249.73151,-5.4137E-05],[249.73452,-5.2074E-05],[249.73753,-5.3621E-05],[249.74055,-5.7746E-05],[249.74356,-5.3106E-05],[249.74657,-5.1559E-05],[249.74959,-5.259E-05],[249.7526,-5.6199E-05],[249.75561,-5.6199E-05],[249.75863,-5.3621E-05],[249.76164,-5.259E-05],[249.76465,-5.3621E-05],[249.76767,-5.5684E-05],[249.77068,-5.6199E-05],[249.77369,-5.2074E-05],[249.77671,-4.9497E-05],[249.77972,-5.3621E-05],[249.78273,-5.3621E-05],[249.78575,-5.8262E-05],[249.78876,-5.9293E-05],[249.79177,-5.5168E-05],[249.79479,-5.259E-05],[249.7978,-5.1559E-05],[249.80081,-5.8777E-05],[249.80383,-5.723E-05],[249.80684,-5.4652E-05],[249.80985,-5.3106E-05],[249.81287,-5.1043E-05],[249.81588,-5.3621E-05],[249.81889,-5.4137E-05],[249.82191,-5.4652E-05],[249.82492,-5.1043E-05],[249.82793,-5.2074E-05],[249.83095,-5.4137E-05],[249.83396,-5.2074E-05],[249.83697,-5.0012E-05],[249.83999,-5.0528E-05],[249.843,-5.5684E-05],[249.84601,-5.1043E-05],[249.84903,-4.795E-05],[249.85204,-5.4652E-05],[249.85505,-5.3106E-05],[249.85807,-5.259E-05]]}
-{"quant":[250.137,-5.1893E-05],"mems":[[250.03887,-5.1043E-05],[250.04188,-5.5168E-05],[250.04489,-5.0528E-05],[250.04791,-4.7434E-05],[250.05092,-5.259E-05],[250.05393,-5.5684E-05],[250.05695,-5.259E-05],[250.05996,-4.8981E-05],[250.06297,-5.3621E-05],[250.06599,-5.9293E-05],[250.069,-5.9293E-05],[250.07201,-5.5684E-05],[250.07503,-5.3106E-05],[250.07804,-4.9497E-05],[250.08105,-5.3106E-05],[250.08407,-5.4652E-05],[250.08708,-4.9497E-05],[250.09009,-5.1559E-05],[250.09311,-5.1043E-05],[250.09612,-5.1559E-05],[250.09913,-5.3621E-05],[250.10215,-5.5168E-05],[250.10516,-6.0839E-05],[250.10817,-5.5684E-05],[250.11119,-4.8465E-05],[250.1142,-4.9497E-05],[250.11721,-5.2074E-05],[250.12023,-5.5684E-05],[250.12324,-5.3106E-05],[250.12625,-4.5887E-05],[250.12927,-4.8981E-05],[250.13228,-5.5168E-05],[250.13529,-5.6715E-05],[250.13831,-5.4652E-05],[250.14132,-5.259E-05],[250.14433,-5.259E-05],[250.14735,-5.1559E-05],[250.15036,-5.3106E-05],[250.15337,-5.4652E-05],[250.15639,-5.6199E-05],[250.1594,-5.5684E-05],[250.16241,-5.1559E-05],[250.16543,-4.8981E-05],[250.16844,-4.8981E-05],[250.17145,-5.0528E-05],[250.17447,-5.3621E-05],[250.17748,-5.1559E-05],[250.18049,-5.0528E-05],[250.18351,-5.5684E-05],[250.18652,-5.0528E-05],[250.18953,-5.1559E-05],[250.19255,-5.8777E-05],[250.19556,-5.6199E-05],[250.19857,-5.4137E-05],[250.20159,-5.0012E-05],[250.2046,-4.6403E-05],[250.20761,-4.7434E-05],[250.21063,-5.4137E-05],[250.21364,-5.5168E-05],[250.21665,-4.4856E-05],[250.21967,-4.4341E-05],[250.22268,-4.8981E-05],[250.22569,-5.3621E-05],[250.22871,-5.4652E-05],[250.23172,-4.795E-05],[250.23473,-4.8465E-05],[250.23775,-5.4652E-05],[250.24076,-5.5168E-05],[250.24377,-5.4137E-05],[250.24679,-5.4652E-05],[250.2498,-4.9497E-05],[250.25281,-4.8465E-05],[250.25583,-5.1559E-05],[250.25884,-5.0012E-05],[250.26185,-5.3621E-05],[250.26487,-5.3621E-05],[250.26788,-5.0528E-05],[250.27089,-5.2074E-05],[250.27391,-5.1043E-05],[250.27692,-5.259E-05],[250.27993,-5.5168E-05],[250.28295,-5.8777E-05],[250.28596,-5.4137E-05],[250.28897,-4.6403E-05],[250.29199,-5.2074E-05],[250.295,-5.5168E-05],[250.29801,-5.0528E-05],[250.30103,-5.3106E-05],[250.30404,-5.4652E-05],[250.30705,-5.0012E-05],[250.31007,-5.0528E-05],[250.31308,-5.259E-05],[250.31609,-5.2074E-05],[250.31911,-5.0528E-05],[250.32212,-4.6403E-05],[250.32513,-5.0528E-05],[250.32815,-5.723E-05],[250.33116,-5.5168E-05],[250.33417,-5.0528E-05],[250.33719,-4.8981E-05]]}
-{"quant":[250.663,-5.3381E-05],"mems":[[250.5657,-5.4652E-05],[250.56914,-5.8262E-05],[250.57258,-5.7746E-05],[250.57602,-5.6199E-05],[250.57946,-5.5168E-05],[250.5829,-5.5168E-05],[250.58633,-5.723E-05],[250.58977,-5.259E-05],[250.59321,-4.8465E-05],[250.59665,-4.795E-05],[250.60009,-4.4856E-05],[250.60353,-5.0012E-05],[250.60697,-5.6199E-05],[250.61041,-5.4652E-05],[250.61384,-5.3106E-05],[250.61728,-5.1043E-05],[250.62072,-5.5168E-05],[250.62416,-5.6715E-05],[250.6276,-4.9497E-05],[250.63104,-5.2074E-05],[250.63448,-5.2074E-05],[250.63791,-4.7434E-05],[250.64135,-5.4652E-05],[250.64479,-5.6715E-05],[250.64823,-5.1559E-05],[250.65167,-5.3106E-05],[250.65511,-5.3621E-05],[250.65855,-5.1559E-05],[250.66199,-5.1559E-05],[250.66542,-5.4652E-05],[250.66886,-5.6715E-05],[250.6723,-5.2074E-05],[250.67574,-5.3106E-05],[250.67918,-5.5168E-05],[250.68262,-5.3106E-05],[250.68606,-5.3621E-05],[250.68949,-5.0012E-05],[250.69293,-5.1043E-05],[250.69637,-5.2074E-05],[250.69981,-5.1559E-05],[250.70325,-5.5168E-05],[250.70669,-5.2074E-05],[250.71013,-5.5168E-05],[250.71357,-5.4652E-05],[250.717,-5.1043E-05],[250.72044,-5.6199E-05],[250.72388,-5.723E-05],[250.72732,-5.9808E-05],[250.73076,-5.1559E-05],[250.7342,-4.7434E-05],[250.73764,-5.3621E-05],[250.74107,-4.9497E-05],[250.74451,-5.4137E-05],[250.74795,-5.7746E-05],[250.75139,-5.0012E-05],[250.75483,-5.0528E-05],[250.75827,-5.4137E-05],[250.76171,-5.3621E-05],[250.76515,-5.4652E-05],[250.76858,-5.5168E-05],[250.77202,-5.4137E-05],[250.77546,-5.1559E-05],[250.7789,-5.1559E-05],[250.78234,-5.1043E-05],[250.78578,-5.3621E-05],[250.78922,-5.8262E-05],[250.79265,-5.4137E-05],[250.79609,-5.259E-05],[250.79953,-5.5684E-05],[250.80297,-5.3106E-05],[250.80641,-5.3106E-05],[250.80985,-5.5168E-05],[250.81329,-5.3106E-05],[250.81673,-5.2074E-05],[250.82016,-5.1043E-05],[250.8236,-5.0528E-05],[250.82704,-5.1043E-05],[250.83048,-5.1559E-05],[250.83392,-4.8981E-05],[250.83736,-5.0012E-05],[250.8408,-5.1559E-05],[250.84423,-4.7434E-05],[250.84767,-5.1559E-05],[250.85111,-5.259E-05],[250.85455,-5.2074E-05],[250.85799,-5.723E-05],[250.86143,-5.4137E-05],[250.86487,-5.3621E-05]]}
-{"quant":[251.497,-5.3449E-05],"mems":[[251.39786,-5.5168E-05],[251.4013,-5.1043E-05],[251.40474,-5.1559E-05],[251.40818,-5.0012E-05],[251.41161,-4.8981E-05],[251.41505,-5.1559E-05],[251.41849,-4.8981E-05],[251.42193,-5.5168E-05],[251.42537,-5.6199E-05],[251.42881,-5.4137E-05],[251.43225,-5.4137E-05],[251.43569,-4.9497E-05],[251.43912,-5.7746E-05],[251.44256,-5.8777E-05],[251.446,-5.2074E-05],[251.44944,-5.1043E-05],[251.45288,-5.0012E-05],[251.45632,-5.259E-05],[251.45976,-5.4137E-05],[251.46319,-5.3106E-05],[251.46663,-5.5168E-05],[251.47007,-6.1355E-05],[251.47351,-5.3621E-05],[251.47695,-4.795E-05],[251.48039,-5.259E-05],[251.48383,-4.9497E-05],[251.48727,-5.2074E-05],[251.4907,-5.5168E-05],[251.49414,-5.0528E-05],[251.49758,-5.3106E-05],[251.50102,-5.6199E-05],[251.50446,-5.3106E-05],[251.5079,-5.3621E-05],[251.51134,-5.4137E-05],[251.51477,-5.1559E-05],[251.51821,-4.795E-05],[251.52165,-4.9497E-05],[251.52509,-5.0528E-05],[251.52853,-5.259E-05],[251.53197,-5.8262E-05],[251.53541,-5.4652E-05],[251.53885,-5.259E-05],[251.54228,-5.8777E-05],[251.54572,-6.0324E-05],[251.54916,-5.4652E-05],[251.5526,-5.1559E-05],[251.55604,-5.4137E-05],[251.55948,-5.5168E-05],[251.56292,-5.5684E-05],[251.56635,-5.5168E-05],[251.56979,-5.4137E-05],[251.57323,-5.3106E-05],[251.57667,-4.9497E-05],[251.58011,-5.1043E-05],[251.58355,-5.6715E-05],[251.58699,-5.5684E-05],[251.59043,-5.259E-05],[251.59386,-4.9497E-05],[251.5973,-4.795E-05],[251.60074,-5.0012E-05],[251.60418,-5.2074E-05],[251.60762,-5.4652E-05],[251.61106,-5.3106E-05],[251.6145,-4.8465E-05],[251.61793,-5.0012E-05],[251.62137,-5.6715E-05],[251.62481,-5.6199E-05],[251.62825,-5.4137E-05],[251.63169,-5.3621E-05],[251.63513,-5.3106E-05],[251.63857,-5.4652E-05],[251.64201,-5.0528E-05],[251.64544,-5.0528E-05],[251.64888,-5.3106E-05],[251.65232,-5.0528E-05],[251.65576,-5.2074E-05],[251.6592,-4.8465E-05],[251.66264,-5.0528E-05],[251.66608,-5.5684E-05],[251.66951,-5.3106E-05],[251.67295,-5.259E-05],[251.67639,-4.6919E-05],[251.67983,-5.0012E-05],[251.68327,-5.5168E-05],[251.68671,-5.0012E-05],[251.69015,-5.4137E-05],[251.69359,-5.4137E-05],[251.69702,-5.1559E-05]]}
-{"quant":[251.99,-5.2573E-05],"mems":[[251.89303,-5.3621E-05],[251.89647,-5.259E-05],[251.89991,-5.259E-05],[251.90334,-5.6199E-05],[251.90678,-5.5684E-05],[251.91022,-5.723E-05],[251.91366,-5.3106E-05],[251.9171,-5.0012E-05],[251.92054,-5.5168E-05],[251.92398,-5.259E-05],[251.92741,-5.1043E-05],[251.93085,-5.4137E-05],[251.93429,-5.1043E-05],[251.93773,-5.259E-05],[251.94117,-5.3621E-05],[251.94461,-5.0012E-05],[251.94805,-5.0012E-05],[251.95149,-4.9497E-05],[251.95492,-4.9497E-05],[251.95836,-5.0012E-05],[251.9618,-5.4137E-05],[251.96524,-5.6199E-05],[251.96868,-5.0528E-05],[251.97212,-4.9497E-05],[251.97556,-5.2074E-05],[251.97899,-5.4652E-05],[251.98243,-5.3621E-05],[251.98587,-5.4652E-05],[251.98931,-5.1559E-05],[251.99275,-5.0528E-05],[251.99619,-5.2074E-05],[251.99963,-5.0012E-05],[252.00307,-5.5168E-05],[252.0065,-5.3621E-05],[252.00994,-5.0528E-05],[252.01338,-5.2074E-05],[252.01682,-5.1559E-05],[252.02026,-5.3106E-05],[252.0237,-5.4137E-05],[252.02714,-5.259E-05],[252.03057,-5.1043E-05],[252.03401,-5.4652E-05],[252.03745,-5.5168E-05],[252.04089,-5.1559E-05],[252.04433,-5.0528E-05],[252.04777,-5.1559E-05],[252.05121,-4.8981E-05],[252.05465,-5.0012E-05],[252.05808,-5.4137E-05],[252.06152,-5.0528E-05],[252.06496,-5.3106E-05],[252.0684,-5.5684E-05],[252.07184,-5.3621E-05],[252.07528,-5.1559E-05],[252.07872,-5.5168E-05],[252.08215,-5.7746E-05],[252.08559,-5.6199E-05],[252.08903,-5.3621E-05],[252.09247,-4.6919E-05],[252.09591,-4.8465E-05],[252.09935,-5.1043E-05],[252.10279,-4.7434E-05],[252.10623,-4.795E-05],[252.10966,-5.0012E-05],[252.1131,-5.6715E-05],[252.11654,-5.6715E-05],[252.11998,-5.0012E-05],[252.12342,-5.2074E-05],[252.12686,-5.1559E-05],[252.1303,-5.0012E-05],[252.13373,-4.5372E-05],[252.13717,-4.4856E-05],[252.14061,-4.9497E-05],[252.14405,-5.0528E-05],[252.14749,-5.3106E-05],[252.15093,-4.8465E-05],[252.15437,-4.7434E-05],[252.15781,-5.0012E-05],[252.16124,-5.3621E-05],[252.16468,-5.6715E-05],[252.16812,-5.3106E-05],[252.17156,-5.4137E-05],[252.175,-5.1043E-05],[252.17844,-4.8465E-05],[252.18188,-5.4652E-05],[252.18531,-5.4137E-05],[252.18875,-5.0528E-05],[252.19219,-5.3106E-05]]}
-{"quant":[252.467,-5.1679E-05],"mems":[[252.36756,-5.8777E-05],[252.371,-5.5168E-05],[252.37444,-4.8465E-05],[252.37788,-5.1559E-05],[252.38132,-5.723E-05],[252.38476,-5.4652E-05],[252.3882,-5.259E-05],[252.39163,-5.0012E-05],[252.39507,-4.6403E-05],[252.39851,-5.0012E-05],[252.40195,-5.5168E-05],[252.40539,-5.1043E-05],[252.40883,-5.259E-05],[252.41227,-5.4652E-05],[252.41571,-5.3106E-05],[252.41914,-5.3106E-05],[252.42258,-5.1559E-05],[252.42602,-5.4137E-05],[252.42946,-5.5684E-05],[252.4329,-5.1559E-05],[252.43634,-4.8465E-05],[252.43978,-5.6199E-05],[252.44321,-5.6715E-05],[252.44665,-5.1559E-05],[252.45009,-5.1043E-05],[252.45353,-4.795E-05],[252.45697,-4.8465E-05],[252.46041,-4.6919E-05],[252.46385,-5.1043E-05],[252.46729,-5.3621E-05],[252.47072,-5.1043E-05],[252.47416,-4.8981E-05],[252.4776,-4.795E-05],[252.48104,-5.1559E-05],[252.48448,-5.0528E-05],[252.48792,-5.5684E-05],[252.49136,-5.4137E-05],[252.49479,-4.9497E-05],[252.49823,-5.3106E-05],[252.50167,-5.0012E-05],[252.50511,-5.0012E-05],[252.50855,-4.8981E-05],[252.51199,-4.5887E-05],[252.51543,-4.9497E-05],[252.51887,-5.259E-05],[252.5223,-4.9497E-05],[252.52574,-5.0528E-05],[252.52918,-5.3106E-05],[252.53262,-5.1559E-05],[252.53606,-5.0528E-05],[252.5395,-5.5168E-05],[252.54294,-5.723E-05],[252.54637,-5.0528E-05],[252.54981,-5.2074E-05],[252.55325,-5.4652E-05],[252.55669,-5.0012E-05],[252.56013,-5.6199E-05],[252.56357,-5.7746E-05],[252.56701,-4.8465E-05],[252.57045,-4.8981E-05],[252.57388,-5.6199E-05],[252.57732,-5.4652E-05],[252.58076,-5.3106E-05],[252.5842,-5.4652E-05],[252.58764,-5.2074E-05],[252.59108,-5.0012E-05],[252.59452,-5.1043E-05],[252.59795,-5.2074E-05],[252.60139,-5.0528E-05],[252.60483,-5.1043E-05],[252.60827,-5.3106E-05],[252.61171,-5.1043E-05],[252.61515,-4.9497E-05],[252.61859,-5.1559E-05],[252.62203,-5.3106E-05],[252.62546,-5.3621E-05],[252.6289,-5.5684E-05],[252.63234,-5.4137E-05],[252.63578,-5.2074E-05],[252.63922,-5.3106E-05],[252.64266,-5.4137E-05],[252.6461,-5.5168E-05],[252.64953,-5.3106E-05],[252.65297,-4.8981E-05],[252.65641,-5.0012E-05],[252.65985,-5.5168E-05],[252.66329,-5.6715E-05],[252.66673,-5.259E-05],[252.67017,-5.1559E-05]]}
-{"quant":[252.952,-1.544],"mems":[[252.85242,-5.0528E-05],[252.85585,-5.3106E-05],[252.85929,-5.259E-05],[252.86273,-5.3106E-05],[252.86617,-5.9808E-05],[252.86961,-5.259E-05],[252.87305,-5.3621E-05],[252.87649,-5.6199E-05],[252.87993,-5.259E-05],[252.88336,-5.4137E-05],[252.8868,-5.5684E-05],[252.89024,-5.4652E-05],[252.89368,-5.1043E-05],[252.89712,-5.0528E-05],[252.90056,-5.1559E-05],[252.904,-5.1043E-05],[252.90743,-4.5887E-05],[252.91087,-4.8981E-05],[252.91431,-5.4137E-05],[252.91775,-4.9497E-05],[252.92119,-5.4652E-05],[252.92463,-5.3621E-05],[252.92807,-5.1559E-05],[252.93151,-5.0012E-05],[252.93494,-4.4856E-05],[252.93838,-5.1043E-05],[252.94182,-5.723E-05],[252.94526,-5.6199E-05],[252.9487,-5.1559E-05],[252.95214,-5.259E-05],[252.95558,-5.723E-05],[252.95901,-5.8262E-05],[252.96245,-5.723E-05],[252.96589,-5.3621E-05],[252.96933,-4.9497E-05],[252.97277,-5.0012E-05],[252.97621,-5.1043E-05],[252.97965,-5.0012E-05],[252.98309,-5.1559E-05],[252.98652,-5.1043E-05],[252.98996,-5.0528E-05],[252.9934,-5.3621E-05],[252.99684,-5.4137E-05],[253.00028,-5.2074E-05],[253.00372,-5.259E-05],[253.00716,-5.3106E-05],[253.01059,-5.4137E-05],[253.01403,-5.3621E-05],[253.01747,-4.9497E-05],[253.02091,-5.0012E-05],[253.02435,-5.4652E-05],[253.02779,-5.4652E-05],[253.03123,-5.1559E-05],[253.03467,-5.259E-05],[253.0381,-5.1559E-05],[253.04154,-5.0528E-05],[253.04498,-5.4652E-05],[253.04842,-5.2074E-05],[253.05186,-4.8981E-05],[253.0553,-5.0012E-05],[253.05874,-4.795E-05],[253.06217,-5.0528E-05],[253.06561,-5.1043E-05],[253.06905,-5.3621E-05],[253.07249,-5.5168E-05],[253.07593,-4.9497E-05],[253.07937,-5.0528E-05],[253.08281,-5.2074E-05],[253.08625,-5.5684E-05],[253.08968,-5.3106E-05],[253.09312,-4.5372E-05],[253.09656,-4.7434E-05],[253.1,-5.3106E-05],[253.1035,-5.6199E-05],[253.10699,-5.259E-05],[253.11049,-5.259E-05],[253.11399,-5.4137E-05],[253.11749,-5.3621E-05],[253.12098,-4.8981E-05],[253.12448,-4.8981E-05],[253.12798,-5.259E-05],[253.13148,-4.8981E-05],[253.13497,-4.6919E-05],[253.13847,-4.6919E-05],[253.14197,-4.6919E-05],[253.14547,-5.1559E-05],[253.14896,-5.723E-05],[253.15246,-5.723E-05]]}
-{"quant":[253.438,-5.2917E-05],"mems":[[253.34132,-5.0528E-05],[253.34481,-5.4137E-05],[253.34831,-5.5684E-05],[253.35181,-5.4137E-05],[253.35531,-5.5684E-05],[253.3588,-5.0012E-05],[253.3623,-4.6403E-05],[253.3658,-5.1043E-05],[253.36929,-5.3106E-05],[253.37279,-5.6199E-05],[253.37629,-5.7746E-05],[253.37979,-4.8981E-05],[253.38328,-4.8465E-05],[253.38678,-5.3621E-05],[253.39028,-5.3106E-05],[253.39378,-5.4652E-05],[253.39727,-5.259E-05],[253.40077,-5.259E-05],[253.40427,-5.6199E-05],[253.40777,-5.3621E-05],[253.41126,-5.1559E-05],[253.41476,-5.4652E-05],[253.41826,-5.259E-05],[253.42175,-4.6919E-05],[253.42525,-5.259E-05],[253.42875,-5.4652E-05],[253.43225,-5.259E-05],[253.43574,-5.8777E-05],[253.43924,-5.3621E-05],[253.44274,-4.8465E-05],[253.44624,-5.4652E-05],[253.44973,-5.9808E-05],[253.45323,-5.6715E-05],[253.45673,-5.259E-05],[253.46023,-4.9497E-05],[253.46372,-4.8981E-05],[253.46722,-5.4652E-05],[253.47072,-5.8262E-05],[253.47421,-6.0324E-05],[253.47771,-4.9497E-05],[253.48121,-4.6403E-05],[253.48471,-5.723E-05],[253.4882,-5.1559E-05],[253.4917,-5.0012E-05],[253.4952,-5.4137E-05],[253.4987,-5.1043E-05],[253.50219,-4.8465E-05],[253.50569,-5.2074E-05],[253.50919,-5.3106E-05],[253.51269,-5.3106E-05],[253.51618,-5.4137E-05],[253.51968,-4.795E-05],[253.52318,-5.1559E-05],[253.52667,-5.5684E-05],[253.53017,-5.5168E-05],[253.53367,-5.9293E-05],[253.53717,-5.2074E-05],[253.54066,-4.7434E-05],[253.54416,-4.7434E-05],[253.54766,-5.2074E-05],[253.55116,-5.6715E-05],[253.55465,-5.1559E-05],[253.55815,-5.1559E-05],[253.56165,-5.3106E-05],[253.56515,-5.4137E-05],[253.56864,-5.4652E-05],[253.57214,-5.4652E-05],[253.57564,-5.4652E-05],[253.57913,-5.3621E-05],[253.58263,-5.0528E-05],[253.58613,-4.7434E-05],[253.58963,-5.4652E-05],[253.59312,-5.3621E-05],[253.59662,-4.9497E-05],[253.60012,-5.259E-05],[253.60362,-4.9497E-05],[253.60711,-5.3621E-05],[253.61061,-5.3621E-05],[253.61411,-5.2074E-05],[253.61761,-5.3106E-05],[253.6211,-4.6403E-05],[253.6246,-5.1043E-05],[253.6281,-5.3106E-05],[253.63159,-5.1043E-05],[253.63509,-5.259E-05],[253.63859,-5.1043E-05]]}
-{"quant":[254.222,-5.161E-05],"mems":[[254.12472,-4.6403E-05],[254.12822,-4.5372E-05],[254.13171,-5.0012E-05],[254.13521,-4.9497E-05],[254.13871,-5.1043E-05],[254.14221,-5.5684E-05],[254.1457,-5.5684E-05],[254.1492,-5.3621E-05],[254.1527,-5.2074E-05],[254.15619,-5.3621E-05],[254.15969,-5.3621E-05],[254.16319,-5.5168E-05],[254.16669,-5.3106E-05],[254.17018,-5.0012E-05],[254.17368,-5.1559E-05],[254.17718,-4.9497E-05],[254.18068,-5.0012E-05],[254.18417,-5.1559E-05],[254.18767,-5.1043E-05],[254.19117,-5.2074E-05],[254.19467,-5.3106E-05],[254.19816,-5.1559E-05],[254.20166,-5.259E-05],[254.20516,-5.8777E-05],[254.20865,-5.4137E-05],[254.21215,-4.8465E-05],[254.21565,-4.8981E-05],[254.21915,-5.1559E-05],[254.22264,-5.3106E-05],[254.22614,-4.795E-05],[254.22964,-4.9497E-05],[254.23314,-5.1559E-05],[254.23663,-4.9497E-05],[254.24013,-5.259E-05],[254.24363,-5.1043E-05],[254.24713,-4.8981E-05],[254.25062,-5.2074E-05],[254.25412,-5.0528E-05],[254.25762,-5.4137E-05],[254.26111,-5.1043E-05],[254.26461,-5.0012E-05],[254.26811,-5.8777E-05],[254.27161,-5.3621E-05],[254.2751,-5.259E-05],[254.2786,-5.3621E-05],[254.2821,-5.2074E-05],[254.2856,-5.0528E-05],[254.28909,-4.8981E-05],[254.29259,-5.0528E-05],[254.29609,-4.9497E-05],[254.29959,-5.1559E-05],[254.30308,-5.259E-05],[254.30658,-5.259E-05],[254.31008,-5.4652E-05],[254.31357,-5.1043E-05],[254.31707,-4.8981E-05],[254.32057,-5.259E-05],[254.32407,-5.2074E-05],[254.32756,-5.259E-05],[254.33106,-5.4137E-05],[254.33456,-5.3106E-05],[254.33806,-5.259E-05],[254.34155,-5.6199E-05],[254.34505,-5.5684E-05],[254.34855,-5.0528E-05],[254.35205,-5.0012E-05],[254.35554,-5.259E-05],[254.35904,-5.4652E-05],[254.36254,-5.4137E-05],[254.36603,-5.259E-05],[254.36953,-5.4137E-05],[254.37303,-5.8262E-05],[254.37653,-5.2074E-05],[254.38002,-5.2074E-05],[254.38352,-5.6199E-05],[254.38702,-5.0012E-05],[254.39052,-4.8981E-05],[254.39401,-4.8981E-05],[254.39751,-4.6403E-05],[254.40101,-5.0012E-05],[254.40451,-5.4652E-05],[254.408,-5.259E-05],[254.4115,-5.1043E-05],[254.415,-5.4652E-05],[254.41849,-5.0528E-05],[254.42199,-5.0528E-05],[254.42549,-5.723E-05]]}
-{"quant":[254.677,-5.3243E-05],"mems":[[254.57937,-5.2074E-05],[254.58287,-5.259E-05],[254.58637,-5.4652E-05],[254.58986,-5.259E-05],[254.59336,-5.1043E-05],[254.59686,-5.1559E-05],[254.60036,-4.5372E-05],[254.60385,-4.6919E-05],[254.60735,-5.259E-05],[254.61085,-5.0528E-05],[254.61435,-5.1559E-05],[254.61784,-5.3106E-05],[254.62134,-4.8465E-05],[254.62484,-5.1043E-05],[254.62833,-5.9293E-05],[254.63183,-5.259E-05],[254.63533,-4.6919E-05],[254.63883,-5.2074E-05],[254.64232,-5.1559E-05],[254.64582,-5.4652E-05],[254.64932,-5.5684E-05],[254.65282,-5.7746E-05],[254.65631,-5.4137E-05],[254.65981,-4.8981E-05],[254.66331,-5.259E-05],[254.66681,-5.1043E-05],[254.6703,-5.4137E-05],[254.6738,-5.4137E-05],[254.6773,-4.9497E-05],[254.68079,-5.0012E-05],[254.68429,-4.9497E-05],[254.68779,-5.3106E-05],[254.69129,-5.1559E-05],[254.69478,-5.1559E-05],[254.69828,-5.3621E-05],[254.70178,-4.6919E-05],[254.70528,-4.8981E-05],[254.70877,-5.5684E-05],[254.71227,-5.3106E-05],[254.71577,-5.4652E-05],[254.71927,-5.4652E-05],[254.72276,-5.0528E-05],[254.72626,-5.3621E-05],[254.72976,-5.4652E-05],[254.73325,-5.5168E-05],[254.73675,-5.4652E-05],[254.74025,-5.259E-05],[254.74375,-5.1559E-05],[254.74724,-5.3621E-05],[254.75074,-5.9808E-05],[254.75424,-5.7746E-05],[254.75774,-5.4137E-05],[254.76123,-5.5684E-05],[254.76473,-5.0528E-05],[254.76823,-5.1559E-05],[254.77173,-5.3106E-05],[254.77522,-5.6199E-05],[254.77872,-5.9293E-05],[254.78222,-5.3621E-05],[254.78571,-5.4652E-05],[254.78921,-5.5684E-05],[254.79271,-5.8262E-05],[254.79621,-5.8777E-05],[254.7997,-5.4652E-05],[254.8032,-5.1559E-05],[254.8067,-4.9497E-05],[254.8102,-5.4652E-05],[254.81369,-5.5684E-05],[254.81719,-5.5684E-05],[254.82069,-5.2074E-05],[254.82419,-4.2278E-05],[254.82768,-4.5372E-05],[254.83118,-5.3106E-05],[254.83468,-4.8981E-05],[254.83817,-4.8981E-05],[254.84167,-5.3106E-05],[254.84517,-5.0012E-05],[254.84867,-5.259E-05],[254.85216,-5.2074E-05],[254.85566,-5.259E-05],[254.85916,-5.6715E-05],[254.86266,-5.0528E-05],[254.86615,-5.1043E-05],[254.86965,-5.4652E-05],[254.87315,-5.2074E-05],[254.87665,-5.259E-05],[254.88014,-5.4137E-05]]}
-{"quant":[255.132,-5.2288E-05],"mems":[[255.03403,-5.259E-05],[255.03752,-5.4137E-05],[255.04102,-5.5684E-05],[255.04452,-5.3621E-05],[255.04801,-4.8981E-05],[255.05151,-5.1559E-05],[255.05501,-4.8465E-05],[255.05851,-4.3309E-05],[255.062,-5.0012E-05],[255.0655,-5.2074E-05],[255.069,-5.5168E-05],[255.0725,-5.6199E-05],[255.07599,-5.5168E-05],[255.07949,-5.3106E-05],[255.08299,-5.0528E-05],[255.08649,-5.3621E-05],[255.08998,-4.795E-05],[255.09348,-4.8465E-05],[255.09698,-5.8262E-05],[255.10047,-5.4137E-05],[255.10397,-5.1043E-05],[255.10747,-5.1559E-05],[255.11097,-5.259E-05],[255.11446,-5.4137E-05],[255.11796,-5.0012E-05],[255.12146,-5.0528E-05],[255.12496,-5.3106E-05],[255.12845,-5.3106E-05],[255.13195,-5.3621E-05],[255.13545,-5.3106E-05],[255.13895,-5.7746E-05],[255.14244,-5.6715E-05],[255.14594,-5.259E-05],[255.14944,-5.4652E-05],[255.15293,-5.1559E-05],[255.15643,-5.1043E-05],[255.15993,-5.5168E-05],[255.16343,-5.1559E-05],[255.16692,-4.8465E-05],[255.17042,-5.0528E-05],[255.17392,-5.259E-05],[255.17742,-5.259E-05],[255.18091,-5.3106E-05],[255.18441,-5.1559E-05],[255.18791,-4.795E-05],[255.19141,-5.1043E-05],[255.1949,-5.4137E-05],[255.1984,-5.0528E-05],[255.2019,-4.795E-05],[255.20539,-5.0012E-05],[255.20889,-5.1559E-05],[255.21239,-5.3106E-05],[255.21589,-5.1559E-05],[255.21938,-5.1559E-05],[255.22288,-5.6715E-05],[255.22638,-5.7746E-05],[255.22988,-5.3106E-05],[255.23337,-4.6403E-05],[255.23687,-4.8981E-05],[255.24037,-5.6715E-05],[255.24387,-5.7746E-05],[255.24736,-5.5684E-05],[255.25086,-5.1559E-05],[255.25436,-4.9497E-05],[255.25785,-5.3106E-05],[255.26135,-5.3621E-05],[255.26485,-5.5168E-05],[255.26835,-5.4652E-05],[255.27184,-5.259E-05],[255.27534,-5.2074E-05],[255.27884,-5.1559E-05],[255.28234,-5.2074E-05],[255.28583,-5.1043E-05],[255.28933,-4.8465E-05],[255.29283,-4.6919E-05],[255.29633,-5.3621E-05],[255.29982,-5.1043E-05],[255.30332,-4.8465E-05],[255.30682,-5.4137E-05],[255.31031,-5.0528E-05],[255.31381,-5.6199E-05],[255.31731,-5.6199E-05],[255.32081,-5.1559E-05],[255.3243,-5.4137E-05],[255.3278,-4.795E-05],[255.3313,-5.1043E-05],[255.3348,-5.259E-05]]}
-{"quant":[255.606,-0.10388],"mems":[[255.54464,-5.6715E-05],[255.54813,-5.2074E-05],[255.55163,-5.5168E-05],[255.55513,-4.9497E-05],[255.55863,-4.5887E-05],[255.56212,-5.4137E-05],[255.56562,-5.5684E-05],[255.56912,-6.0839E-05],[255.57261,-5.723E-05],[255.57611,-5.3621E-05],[255.57961,-4.6919E-05],[255.58311,-4.2278E-05],[255.5866,-4.6403E-05],[255.5901,-4.795E-05],[255.5936,-5.259E-05],[255.5971,-5.4652E-05],[255.60059,-5.4652E-05],[255.60409,-5.5168E-05],[255.60759,-5.1559E-05],[255.61109,-5.0528E-05],[255.61458,-5.1559E-05],[255.61808,-5.259E-05],[255.62158,-5.6715E-05],[255.62507,-5.723E-05],[255.62857,-5.259E-05],[255.63207,-5.259E-05],[255.63557,-5.4652E-05],[255.63906,-5.0528E-05],[255.64256,-5.0012E-05],[255.64606,-5.0528E-05],[255.64956,-5.259E-05],[255.65305,-5.723E-05],[255.65655,-5.3621E-05],[255.66005,-5.1043E-05],[255.66355,-5.1043E-05],[255.66704,-5.2074E-05],[255.67054,-5.3621E-05],[255.67404,-5.2074E-05],[255.67753,-5.4137E-05],[255.68103,-5.1559E-05],[255.68453,-5.4652E-05],[255.68803,-5.9808E-05],[255.69152,-5.2074E-05],[255.69502,-5.1043E-05],[255.69852,-5.3621E-05],[255.70202,-5.4137E-05],[255.70551,-5.4652E-05],[255.70901,-5.723E-05],[255.71251,-5.4137E-05],[255.71601,-5.0012E-05],[255.7195,-5.2074E-05],[255.723,-5.2074E-05],[255.72638,-5.5684E-05],[255.72976,-5.259E-05],[255.73314,-5.0528E-05],[255.73652,-5.1043E-05],[255.7399,-4.6919E-05],[255.74328,-4.9497E-05],[255.74666,-5.3621E-05],[255.75004,-5.1559E-05],[255.75342,-4.5887E-05],[255.7568,-5.0012E-05],[255.76018,-5.6715E-05],[255.76356,-5.4652E-05],[255.76694,-5.3106E-05],[255.77032,-5.4652E-05],[255.7737,-5.2074E-05],[255.77708,-5.0528E-05],[255.78046,-5.4137E-05],[255.78384,-5.5168E-05],[255.78722,-5.4652E-05],[255.7906,-5.259E-05],[255.79398,-5.2074E-05],[255.79736,-5.3106E-05],[255.80074,-5.6715E-05],[255.80412,-6.0324E-05],[255.8075,-5.5684E-05],[255.81088,-5.5168E-05],[255.81426,-5.6715E-05],[255.81764,-5.2074E-05],[255.82102,-5.4137E-05],[255.8244,-5.6715E-05],[255.82778,-5.2074E-05],[255.83116,-5.0528E-05],[255.83454,-5.0528E-05],[255.83792,-4.8981E-05],[255.8413,-5.1043E-05],[255.84468,-5.3621E-05]]}
-{"quant":[256.116,-5.3226E-05],"mems":[[256.01706,-5.1559E-05],[256.02044,-5.2074E-05],[256.02382,-5.2074E-05],[256.0272,-5.3106E-05],[256.03058,-5.3106E-05],[256.03396,-5.4652E-05],[256.03734,-5.7746E-05],[256.04072,-5.723E-05],[256.0441,-5.7746E-05],[256.04748,-5.5168E-05],[256.05086,-5.4137E-05],[256.05424,-5.5684E-05],[256.05762,-5.0012E-05],[256.061,-5.1043E-05],[256.06438,-5.7746E-05],[256.06776,-5.5684E-05],[256.07114,-4.8465E-05],[256.07452,-5.1043E-05],[256.0779,-5.723E-05],[256.08128,-5.4652E-05],[256.08466,-5.2074E-05],[256.08804,-4.9497E-05],[256.09142,-5.0528E-05],[256.0948,-5.0528E-05],[256.09818,-4.9497E-05],[256.10156,-5.0012E-05],[256.10494,-5.2074E-05],[256.10832,-5.1559E-05],[256.1117,-5.0528E-05],[256.11508,-5.4137E-05],[256.11846,-5.6199E-05],[256.12184,-5.6715E-05],[256.12522,-5.723E-05],[256.1286,-5.3106E-05],[256.13198,-4.8981E-05],[256.13536,-5.1559E-05],[256.13874,-5.3621E-05],[256.14212,-5.3106E-05],[256.1455,-5.3621E-05],[256.14888,-5.4652E-05],[256.15226,-5.3621E-05],[256.15564,-5.0528E-05],[256.15902,-5.3621E-05],[256.1624,-5.723E-05],[256.16578,-5.4137E-05],[256.16916,-5.4652E-05],[256.17254,-5.3106E-05],[256.17592,-5.259E-05],[256.1793,-5.3621E-05],[256.18268,-5.1559E-05],[256.18606,-5.1043E-05],[256.18944,-5.2074E-05],[256.19282,-4.9497E-05],[256.1962,-4.7434E-05],[256.19958,-5.8777E-05],[256.20296,-6.1355E-05],[256.20634,-5.1043E-05],[256.20972,-4.8465E-05],[256.2131,-5.1559E-05],[256.21648,-5.2074E-05],[256.21986,-5.4137E-05],[256.22324,-5.5168E-05],[256.22662,-4.9497E-05],[256.23,-5.259E-05],[256.23338,-5.3621E-05],[256.23676,-5.1043E-05],[256.24014,-5.1559E-05],[256.24352,-5.1559E-05],[256.2469,-5.1043E-05],[256.25028,-4.7434E-05],[256.25366,-4.8465E-05],[256.25704,-4.795E-05],[256.26042,-5.3621E-05],[256.2638,-5.4652E-05],[256.26718,-4.795E-05],[256.27056,-5.259E-05],[256.27394,-5.0528E-05],[256.27732,-5.4137E-05],[256.2807,-5.5684E-05],[256.28408,-5.2074E-05],[256.28746,-5.0528E-05],[256.29084,-4.8981E-05],[256.29422,-5.259E-05],[256.2976,-5.4137E-05],[256.30098,-5.4652E-05],[256.30436,-5.3106E-05],[256.30774,-5.259E-05],[256.31112,-5.2074E-05],[256.3145,-5.259E-05],[256.31788,-5.0528E-05]]}
-{"quant":[256.996,-5.2507E-05],"mems":[[256.89924,-5.3106E-05],[256.90262,-5.3106E-05],[256.906,-5.723E-05],[256.90938,-5.5168E-05],[256.91276,-5.0528E-05],[256.91614,-5.4137E-05],[256.91952,-5.1043E-05],[256.9229,-5.5168E-05],[256.92628,-5.723E-05],[256.92966,-5.259E-05],[256.93304,-5.259E-05],[256.93642,-4.9497E-05],[256.9398,-5.0528E-05],[256.94318,-5.3621E-05],[256.94656,-5.6715E-05],[256.94994,-5.2074E-05],[256.95332,-4.8981E-05],[256.9567,-5.3106E-05],[256.96008,-4.8465E-05],[256.96346,-4.795E-05],[256.96684,-5.1043E-05],[256.97022,-5.4652E-05],[256.9736,-5.5168E-05],[256.97698,-5.1043E-05],[256.98036,-5.259E-05],[256.98374,-5.3106E-05],[256.98712,-5.3106E-05],[256.9905,-5.1559E-05],[256.99388,-5.0012E-05],[256.99726,-5.0012E-05],[257.00064,-4.795E-05],[257.00402,-4.8981E-05],[257.0074,-5.5168E-05],[257.01078,-5.2074E-05],[257.01416,-4.8981E-05],[257.01754,-5.1043E-05],[257.02092,-5.0528E-05],[257.0243,-5.259E-05],[257.02768,-5.2074E-05],[257.03106,-5.3106E-05],[257.03444,-5.4137E-05],[257.03782,-5.259E-05],[257.0412,-5.4137E-05],[257.04458,-5.8262E-05],[257.04796,-5.5168E-05],[257.05134,-4.8981E-05],[257.05472,-5.1559E-05],[257.0581,-5.1043E-05],[257.06148,-5.3106E-05],[257.06486,-5.5684E-05],[257.06824,-5.259E-05],[257.07162,-5.4137E-05],[257.075,-5.1043E-05],[257.07838,-4.9497E-05],[257.08176,-5.3621E-05],[257.08514,-5.6199E-05],[257.08852,-5.3621E-05],[257.0919,-4.9497E-05],[257.09528,-5.3621E-05],[257.09866,-5.6715E-05],[257.10204,-5.6199E-05],[257.10542,-5.5684E-05],[257.1088,-5.4137E-05],[257.11218,-5.259E-05],[257.11556,-4.795E-05],[257.11894,-5.0012E-05],[257.12232,-5.4652E-05],[257.1257,-5.2074E-05],[257.12908,-5.5684E-05],[257.13246,-5.4652E-05],[257.13584,-4.8465E-05],[257.13922,-5.1043E-05],[257.1426,-4.8981E-05],[257.14598,-4.8981E-05],[257.14936,-5.6199E-05],[257.15274,-5.1559E-05],[257.15612,-5.0012E-05],[257.1595,-5.4652E-05],[257.16288,-5.3621E-05],[257.16626,-5.6199E-05],[257.16964,-5.6199E-05],[257.17302,-5.4137E-05],[257.1764,-5.5168E-05],[257.17978,-5.259E-05],[257.18316,-5.1043E-05],[257.18654,-5.3621E-05],[257.18992,-5.1559E-05],[257.1933,-5.1043E-05],[257.19668,-5.1043E-05]]}
-{"quant":[257.462,-5.3023E-05],"mems":[[257.3623,-5.3106E-05],[257.36568,-5.4137E-05],[257.36906,-5.5684E-05],[257.37244,-5.3621E-05],[257.37582,-5.3106E-05],[257.3792,-5.6715E-05],[257.38258,-5.5168E-05],[257.38596,-4.7434E-05],[257.38934,-5.1043E-05],[257.39272,-5.0528E-05],[257.3961,-5.1559E-05],[257.39948,-5.6715E-05],[257.40286,-5.3621E-05],[257.40624,-5.6715E-05],[257.40962,-5.1043E-05],[257.413,-4.8981E-05],[257.41638,-5.4137E-05],[257.41976,-5.3621E-05],[257.42314,-5.259E-05],[257.42652,-5.1043E-05],[257.4299,-5.259E-05],[257.43328,-5.2074E-05],[257.43666,-5.6199E-05],[257.44004,-5.4652E-05],[257.44342,-4.8465E-05],[257.4468,-4.6919E-05],[257.45018,-4.9497E-05],[257.45356,-5.3621E-05],[257.45694,-5.4137E-05],[257.46032,-5.5168E-05],[257.4637,-5.6199E-05],[257.46708,-5.9293E-05],[257.47046,-5.723E-05],[257.47384,-5.0012E-05],[257.47722,-4.8981E-05],[257.4806,-5.1559E-05],[257.48398,-5.259E-05],[257.48736,-5.1559E-05],[257.49074,-5.1559E-05],[257.49412,-5.2074E-05],[257.4975,-5.1559E-05],[257.50088,-5.1043E-05],[257.50426,-5.2074E-05],[257.50764,-5.1559E-05],[257.51102,-5.1043E-05],[257.5144,-5.4137E-05],[257.51778,-5.9293E-05],[257.52116,-5.7746E-05],[257.52454,-4.795E-05],[257.52792,-4.8981E-05],[257.5313,-5.4652E-05],[257.53468,-5.5168E-05],[257.53806,-5.6199E-05],[257.54144,-5.4137E-05],[257.54482,-5.3106E-05],[257.5482,-5.2074E-05],[257.55158,-5.4137E-05],[257.55496,-5.3106E-05],[257.55834,-4.7434E-05],[257.56172,-5.1559E-05],[257.5651,-5.5684E-05],[257.56848,-5.3621E-05],[257.57186,-5.1559E-05],[257.57524,-5.1043E-05],[257.57862,-4.6919E-05],[257.582,-4.6919E-05],[257.58538,-4.9497E-05],[257.58876,-4.8465E-05],[257.59214,-5.2074E-05],[257.59552,-5.1043E-05],[257.5989,-5.0012E-05],[257.60228,-5.5684E-05],[257.60566,-5.5684E-05],[257.60904,-5.0528E-05],[257.61242,-5.5168E-05],[257.6158,-5.5168E-05],[257.61918,-5.2074E-05],[257.62256,-5.0012E-05],[257.62594,-4.3825E-05],[257.62932,-4.3309E-05],[257.6327,-5.0528E-05],[257.63608,-5.5684E-05],[257.63946,-5.2074E-05],[257.64284,-5.259E-05],[257.64622,-5.4652E-05],[257.6496,-5.6715E-05],[257.65298,-5.5168E-05],[257.65636,-5.2074E-05],[257.65974,-5.5684E-05],[257.66312,-5.3106E-05]]}
-{"quant":[257.93,-5.2773E-05],"mems":[[257.83212,-5.8262E-05],[257.8355,-6.0324E-05],[257.83888,-5.3621E-05],[257.84226,-5.4137E-05],[257.84564,-4.8465E-05],[257.84902,-4.8981E-05],[257.8524,-5.7746E-05],[257.85578,-5.2074E-05],[257.85916,-4.9497E-05],[257.86254,-5.0528E-05],[257.86592,-5.2074E-05],[257.8693,-5.259E-05],[257.87268,-5.0528E-05],[257.87606,-5.1043E-05],[257.87944,-5.1559E-05],[257.88282,-4.8981E-05],[257.8862,-5.1043E-05],[257.88958,-5.4652E-05],[257.89296,-5.3106E-05],[257.89634,-5.5684E-05],[257.89972,-5.4652E-05],[257.9031,-5.0012E-05],[257.90648,-5.1559E-05],[257.90986,-5.3621E-05],[257.91324,-5.1559E-05],[257.91662,-4.9497E-05],[257.92,-4.795E-05],[257.92338,-5.3106E-05],[257.92676,-5.5168E-05],[257.93014,-5.259E-05],[257.93352,-5.0012E-05],[257.9369,-4.8465E-05],[257.94028,-5.259E-05],[257.94366,-5.4137E-05],[257.94704,-5.7746E-05],[257.95042,-5.6199E-05],[257.9538,-5.259E-05],[257.95718,-5.3621E-05],[257.96056,-5.4137E-05],[257.96394,-5.8262E-05],[257.96732,-5.5684E-05],[257.9707,-5.1559E-05],[257.97408,-5.259E-05],[257.97746,-5.259E-05],[257.98084,-4.9497E-05],[257.98422,-5.1043E-05],[257.9876,-5.3106E-05],[257.99098,-5.3106E-05],[257.99436,-5.5684E-05],[257.99774,-5.259E-05],[258.00112,-5.259E-05],[258.0045,-5.5684E-05],[258.00788,-5.3621E-05],[258.01126,-5.1559E-05],[258.01464,-5.2074E-05],[258.01802,-5.2074E-05],[258.0214,-5.0012E-05],[258.02478,-4.9497E-05],[258.02816,-5.0528E-05],[258.03154,-5.0528E-05],[258.03492,-5.0528E-05],[258.0383,-4.8981E-05],[258.04168,-5.0528E-05],[258.04506,-5.2074E-05],[258.04844,-5.4137E-05],[258.05182,-5.6199E-05],[258.0552,-4.9497E-05],[258.05858,-5.259E-05],[258.06196,-5.2074E-05],[258.06534,-4.9497E-05],[258.06872,-5.8262E-05],[258.0721,-4.9497E-05],[258.07548,-4.8981E-05],[258.07886,-5.6715E-05],[258.08224,-5.1043E-05],[258.08562,-4.6403E-05],[258.089,-4.6919E-05],[258.09238,-5.1559E-05],[258.09576,-5.2074E-05],[258.09914,-5.0528E-05],[258.10252,-5.1043E-05],[258.1059,-5.259E-05],[258.10928,-5.3621E-05],[258.11266,-5.0528E-05],[258.11604,-4.8981E-05],[258.11942,-5.1559E-05],[258.1228,-5.259E-05],[258.12618,-5.1559E-05],[258.12956,-5.259E-05],[258.13294,-4.9497E-05]]}
-{"quant":[258.438,-5.2023E-05],"mems":[[258.34082,-5.1559E-05],[258.34427,-5.4652E-05],[258.34772,-5.3106E-05],[258.35117,-5.0528E-05],[258.35462,-5.4652E-05],[258.35807,-5.4652E-05],[258.36152,-5.5168E-05],[258.36497,-5.5168E-05],[258.36842,-5.1559E-05],[258.37187,-4.8465E-05],[258.37532,-4.8981E-05],[258.37877,-5.259E-05],[258.38222,-5.5684E-05],[258.38567,-5.6199E-05],[258.38913,-5.3621E-05],[258.39258,-5.1559E-05],[258.39603,-5.4137E-05],[258.39948,-5.5168E-05],[258.40293,-5.4652E-05],[258.40638,-5.6199E-05],[258.40983,-5.5684E-05],[258.41328,-5.5168E-05],[258.41673,-5.0012E-05],[258.42018,-5.2074E-05],[258.42363,-5.7746E-05],[258.42708,-5.3106E-05],[258.43053,-5.4652E-05],[258.43398,-5.3106E-05],[258.43743,-5.0528E-05],[258.44089,-5.5684E-05],[258.44434,-5.4652E-05],[258.44779,-5.259E-05],[258.45124,-5.1043E-05],[258.45469,-5.1043E-05],[258.45814,-5.3106E-05],[258.46159,-5.3106E-05],[258.46504,-5.5168E-05],[258.46849,-5.259E-05],[258.47194,-5.0528E-05],[258.47539,-5.1559E-05],[258.47884,-4.9497E-05],[258.48229,-5.0012E-05],[258.48574,-5.0528E-05],[258.48919,-5.2074E-05],[258.49265,-5.0528E-05],[258.4961,-4.9497E-05],[258.49955,-5.4137E-05],[258.503,-5.3621E-05],[258.50645,-5.3621E-05],[258.5099,-5.5168E-05],[258.51335,-5.259E-05],[258.5168,-4.8981E-05],[258.52025,-5.1559E-05],[258.5237,-5.5168E-05],[258.52715,-5.1559E-05],[258.5306,-4.9497E-05],[258.53405,-4.795E-05],[258.5375,-4.8981E-05],[258.54095,-5.4652E-05],[258.54441,-5.6199E-05],[258.54786,-5.3106E-05],[258.55131,-5.3621E-05],[258.55476,-5.5168E-05],[258.55821,-5.0528E-05],[258.56166,-5.2074E-05],[258.56511,-5.5684E-05],[258.56856,-5.4137E-05],[258.57201,-5.0528E-05],[258.57546,-5.1559E-05],[258.57891,-5.6715E-05],[258.58236,-5.5684E-05],[258.58581,-5.5168E-05],[258.58926,-5.723E-05],[258.59271,-5.5684E-05],[258.59617,-5.2074E-05],[258.59962,-5.0528E-05],[258.60307,-5.1043E-05],[258.60652,-5.1043E-05],[258.60997,-5.1559E-05],[258.61342,-5.1043E-05],[258.61687,-5.259E-05],[258.62032,-5.3106E-05],[258.62377,-5.4137E-05],[258.62722,-5.8777E-05],[258.63067,-5.723E-05],[258.63412,-5.2074E-05],[258.63757,-4.795E-05],[258.64102,-5.259E-05]]}
-{"quant":[258.914,-5.3329E-05],"mems":[[258.81701,-4.8981E-05],[258.82046,-5.259E-05],[258.82391,-5.4137E-05],[258.82736,-5.1559E-05],[258.83081,-4.795E-05],[258.83426,-4.9497E-05],[258.83771,-5.1043E-05],[258.84116,-5.0528E-05],[258.84461,-5.1559E-05],[258.84806,-5.3621E-05],[258.85151,-5.1559E-05],[258.85497,-5.259E-05],[258.85842,-5.259E-05],[258.86187,-4.9497E-05],[258.86532,-5.3106E-05],[258.86877,-5.723E-05],[258.87222,-5.4652E-05],[258.87567,-5.4137E-05],[258.87912,-5.6715E-05],[258.88257,-5.7746E-05],[258.88602,-5.6199E-05],[258.88947,-5.3106E-05],[258.89292,-5.4137E-05],[258.89637,-5.6199E-05],[258.89982,-5.4652E-05],[258.90327,-5.5168E-05],[258.90673,-5.4652E-05],[258.91018,-5.1043E-05],[258.91363,-5.5168E-05],[258.91708,-5.3106E-05],[258.92053,-4.9497E-05],[258.92398,-5.9293E-05],[258.92743,-5.8262E-05],[258.93088,-5.3621E-05],[258.93433,-5.5168E-05],[258.93778,-5.1559E-05],[258.94123,-5.3621E-05],[258.94468,-5.3106E-05],[258.94813,-5.2074E-05],[258.95158,-5.2074E-05],[258.95503,-5.1559E-05],[258.95849,-5.5684E-05],[258.96194,-5.0528E-05],[258.96539,-5.0012E-05],[258.96884,-5.6199E-05],[258.97229,-5.259E-05],[258.97574,-4.7434E-05],[258.97919,-5.1043E-05],[258.98264,-5.4137E-05],[258.98609,-5.3621E-05],[258.98954,-5.259E-05],[258.99299,-5.1043E-05],[258.99644,-5.1559E-05],[258.99989,-5.1559E-05],[259.00334,-5.5168E-05],[259.00679,-5.9293E-05],[259.01025,-5.8777E-05],[259.0137,-5.5168E-05],[259.01715,-5.0528E-05],[259.0206,-4.9497E-05],[259.02405,-5.2074E-05],[259.0275,-5.5168E-05],[259.03095,-5.259E-05],[259.0344,-4.9497E-05],[259.03785,-4.5887E-05],[259.0413,-4.8465E-05],[259.04475,-5.723E-05],[259.0482,-5.6715E-05],[259.05165,-5.259E-05],[259.0551,-5.3106E-05],[259.05855,-5.5684E-05],[259.06201,-5.5684E-05],[259.06546,-5.5168E-05],[259.06891,-5.5684E-05],[259.07236,-5.6715E-05],[259.07581,-5.5168E-05],[259.07926,-5.259E-05],[259.08271,-5.4652E-05],[259.08616,-5.4137E-05],[259.08961,-4.8981E-05],[259.09306,-5.1043E-05],[259.09651,-5.1559E-05],[259.09996,-5.0012E-05],[259.10341,-5.1559E-05],[259.10686,-5.3621E-05],[259.11031,-5.4137E-05],[259.11377,-5.1043E-05],[259.11722,-5.259E-05]]}
-{"quant":[259.381,-5.3742E-05],"mems":[[259.28285,-5.1559E-05],[259.2863,-5.4137E-05],[259.28975,-5.4652E-05],[259.2932,-5.0528E-05],[259.29665,-5.3106E-05],[259.3001,-5.5168E-05],[259.30355,-5.6715E-05],[259.307,-5.7746E-05],[259.31045,-5.6199E-05],[259.3139,-5.5168E-05],[259.31735,-5.3621E-05],[259.32081,-5.1559E-05],[259.32426,-5.2074E-05],[259.32771,-5.6199E-05],[259.33116,-5.1559E-05],[259.33461,-5.2074E-05],[259.33806,-5.259E-05],[259.34151,-4.9497E-05],[259.34496,-5.3621E-05],[259.34841,-5.6199E-05],[259.35186,-5.5168E-05],[259.35531,-5.0012E-05],[259.35876,-4.6919E-05],[259.36221,-4.6403E-05],[259.36566,-5.1559E-05],[259.36911,-5.723E-05],[259.37257,-5.723E-05],[259.37602,-5.4652E-05],[259.37947,-5.4137E-05],[259.38292,-5.4137E-05],[259.38637,-4.9497E-05],[259.38982,-5.5168E-05],[259.39327,-5.7746E-05],[259.39672,-4.9497E-05],[259.40017,-5.1559E-05],[259.40362,-5.8262E-05],[259.40707,-5.6715E-05],[259.41052,-5.6199E-05],[259.41397,-5.6715E-05],[259.41742,-4.9497E-05],[259.42087,-4.8465E-05],[259.42433,-5.5168E-05],[259.42778,-5.3106E-05],[259.43123,-5.4137E-05],[259.43468,-5.723E-05],[259.43813,-5.4137E-05],[259.44158,-5.1043E-05],[259.44503,-5.3621E-05],[259.44848,-5.2074E-05],[259.45193,-5.1559E-05],[259.45538,-5.4137E-05],[259.45883,-5.2074E-05],[259.46228,-5.3621E-05],[259.46573,-5.4652E-05],[259.46918,-5.6715E-05],[259.47263,-5.4137E-05],[259.47609,-5.5168E-05],[259.47954,-5.4652E-05],[259.48299,-5.1559E-05],[259.48644,-5.723E-05],[259.48989,-5.6199E-05],[259.49334,-5.5684E-05],[259.49679,-5.1559E-05],[259.50024,-5.0012E-05],[259.50369,-5.3106E-05],[259.50714,-5.4652E-05],[259.51059,-5.4652E-05],[259.51404,-5.0528E-05],[259.51749,-5.2074E-05],[259.52094,-4.6403E-05],[259.52439,-4.5887E-05],[259.52785,-5.259E-05],[259.5313,-5.3106E-05],[259.53475,-5.3621E-05],[259.5382,-5.1559E-05],[259.54165,-5.1559E-05],[259.5451,-5.4137E-05],[259.54855,-5.5168E-05],[259.552,-5.2074E-05],[259.55545,-5.0528E-05],[259.5589,-5.0528E-05],[259.56235,-4.8465E-05],[259.5658,-5.0012E-05],[259.56925,-4.8981E-05],[259.5727,-4.8465E-05],[259.57615,-5.3621E-05],[259.57961,-5.1043E-05],[259.58306,-4.8981E-05]]}
-{"quant":[260.257,-5.2831E-05],"mems":[[260.15932,-5.259E-05],[260.16277,-5.259E-05],[260.16622,-5.5684E-05],[260.16967,-5.5168E-05],[260.17312,-5.3106E-05],[260.17657,-5.5168E-05],[260.18002,-5.3106E-05],[260.18347,-5.2074E-05],[260.18692,-5.4137E-05],[260.19037,-5.259E-05],[260.19382,-5.3106E-05],[260.19727,-5.3106E-05],[260.20073,-5.0528E-05],[260.20418,-5.0528E-05],[260.20763,-5.5168E-05],[260.21108,-5.4652E-05],[260.21453,-5.4652E-05],[260.21798,-5.259E-05],[260.22143,-5.0012E-05],[260.22488,-5.3621E-05],[260.22833,-5.4137E-05],[260.23178,-5.5168E-05],[260.23523,-5.3106E-05],[260.23868,-5.1043E-05],[260.24213,-4.7434E-05],[260.24558,-5.0012E-05],[260.24903,-5.5168E-05],[260.25249,-5.2074E-05],[260.25594,-5.3621E-05],[260.25939,-5.6199E-05],[260.26284,-5.6199E-05],[260.26629,-5.3621E-05],[260.26974,-5.2074E-05],[260.27319,-5.4137E-05],[260.27664,-5.259E-05],[260.28009,-4.7434E-05],[260.28354,-4.6919E-05],[260.28699,-5.6715E-05],[260.29044,-5.723E-05],[260.29389,-5.2074E-05],[260.29734,-5.259E-05],[260.30079,-5.2074E-05],[260.30425,-4.6403E-05],[260.3077,-4.7434E-05],[260.31115,-5.7746E-05],[260.3146,-5.6715E-05],[260.31805,-5.2074E-05],[260.3215,-4.8981E-05],[260.32495,-4.2794E-05],[260.3284,-4.8465E-05],[260.33185,-5.4137E-05],[260.3353,-5.1559E-05],[260.33875,-5.5168E-05],[260.3422,-5.5168E-05],[260.34565,-5.1559E-05],[260.3491,-5.6199E-05],[260.35255,-5.723E-05],[260.35601,-5.7746E-05],[260.35946,-5.5684E-05],[260.36291,-5.4137E-05],[260.36636,-5.4652E-05],[260.36981,-5.4652E-05],[260.37326,-5.1043E-05],[260.37671,-5.259E-05],[260.38016,-6.2386E-05],[260.38361,-5.4137E-05],[260.38706,-5.0528E-05],[260.39051,-5.6199E-05],[260.39396,-5.4137E-05],[260.39741,-5.1043E-05],[260.40086,-4.8981E-05],[260.40431,-5.0528E-05],[260.40777,-5.3106E-05],[260.41122,-5.4652E-05],[260.41467,-4.9497E-05],[260.41812,-5.1559E-05],[260.42157,-5.5168E-05],[260.42502,-4.8981E-05],[260.42847,-5.2074E-05],[260.43192,-5.4652E-05],[260.43537,-5.4137E-05],[260.43882,-5.6715E-05],[260.44227,-5.3106E-05],[260.44572,-5.0528E-05],[260.44917,-5.3106E-05],[260.45262,-5.3621E-05],[260.45607,-4.9497E-05],[260.45953,-4.9497E-05]]}
-{"quant":[260.72,-0.92975],"mems":[[260.62171,-5.5168E-05],[260.62516,-5.3621E-05],[260.62861,-5.0528E-05],[260.63206,-5.3106E-05],[260.63551,-5.6199E-05],[260.63896,-5.4652E-05],[260.64241,-5.2074E-05],[260.64586,-5.1043E-05],[260.64931,-5.0528E-05],[260.65276,-5.8262E-05],[260.65621,-5.6199E-05],[260.65966,-5.0012E-05],[260.66311,-5.0012E-05],[260.66657,-5.1043E-05],[260.67002,-5.6715E-05],[260.67347,-5.6199E-05],[260.67692,-5.3106E-05],[260.68037,-5.4137E-05],[260.68382,-5.3106E-05],[260.68727,-5.2074E-05],[260.69072,-5.4137E-05],[260.69417,-5.723E-05],[260.69762,-5.5168E-05],[260.70107,-5.259E-05],[260.70452,-5.2074E-05],[260.70797,-5.4652E-05],[260.71142,-5.5168E-05],[260.71487,-4.6403E-05],[260.71833,-4.7434E-05],[260.72178,-5.2074E-05],[260.72523,-5.3621E-05],[260.72868,-5.4652E-05],[260.73213,-5.1043E-05],[260.73558,-5.0528E-05],[260.73903,-5.0012E-05],[260.74248,-4.9497E-05],[260.74593,-5.4137E-05],[260.74938,-5.5684E-05],[260.75283,-5.6715E-05],[260.75628,-5.8262E-05],[260.75973,-5.259E-05],[260.76318,-5.0012E-05],[260.76663,-5.4652E-05],[260.77009,-5.8262E-05],[260.77354,-5.8777E-05],[260.77699,-5.6715E-05],[260.78044,-5.5684E-05],[260.78389,-5.1043E-05],[260.78734,-4.9497E-05],[260.79079,-5.259E-05],[260.79424,-5.6715E-05],[260.79769,-5.4652E-05],[260.80114,-4.6403E-05],[260.80459,-5.3621E-05],[260.80804,-5.4652E-05],[260.81149,-5.0012E-05],[260.81494,-5.4137E-05],[260.81839,-5.3106E-05],[260.82185,-5.5168E-05],[260.8253,-5.1559E-05],[260.82875,-4.795E-05],[260.8322,-5.723E-05],[260.83565,-5.5684E-05],[260.8391,-5.1559E-05],[260.84255,-5.3106E-05],[271.396,-5.3106E-05]]}
-{"quant":[261.211,-1.0201],"mems":[[271.396,-5.3106E-05]]}
-{"quant":[261.706,-1.1211],"mems":[[271.396,-5.3106E-05]]}
-{"quant":[262.175,-1.2221],"mems":[[271.396,-5.3106E-05]]}
-{"quant":[262.866,-1.3128],"mems":[[271.396,-5.3106E-05]]}
-{"quant":[263.328,-1.4003],"mems":[[271.396,-5.3106E-05]]}
-{"quant":[263.814,-1.4948],"mems":[[271.396,-5.3106E-05]]}
-{"quant":[264.313,-1.5913],"mems":[[271.396,-5.3106E-05]]}
-{"quant":[264.785,-1.6809],"mems":[[271.396,-5.3106E-05]]}
-{"quant":[265.261,-1.7687],"mems":[[271.396,-5.3106E-05]]}
-{"quant":[265.754,-1.8594],"mems":[[271.396,-5.3106E-05]]}
-{"quant":[266.28,-0.066611],"mems":[[271.396,-5.3106E-05]]}
-{"quant":[266.778,-0.16267],"mems":[[271.396,-5.3106E-05]]}
-{"quant":[267.288,-0.25919],"mems":[[271.396,-5.3106E-05]]}
-{"quant":[267.778,-0.33961],"mems":[[271.396,-5.3106E-05]]}
-{"quant":[268.268,-0.41446],"mems":[[271.396,-5.3106E-05]]}
-{"quant":[268.787,-0.50212],"mems":[[271.396,-5.3106E-05]]}
-{"quant":[269.317,-0.58441],"mems":[[271.396,-5.3106E-05]]}
-{"quant":[269.849,-0.66188],"mems":[[271.396,-5.3106E-05]]}
-{"quant":[270.34,-0.7415],"mems":[[271.396,-5.3106E-05]]}
-{"quant":[270.866,-0.81702],"mems":[[271.396,-5.3106E-05]]}
-{"quant":[271.376,-0.88517],"mems":[[271.396,-5.3106E-05],[271.39957,-5.4652E-05],[271.40315,-5.4652E-05],[271.40672,-5.6199E-05],[271.41029,-6.0839E-05],[271.41387,-5.6199E-05],[271.41744,-5.3621E-05],[271.42101,-5.7746E-05],[271.42459,-5.3621E-05],[271.42816,-5.2074E-05],[271.43173,-5.1043E-05],[271.43531,-4.7434E-05],[271.43888,-4.795E-05],[271.44245,-5.0528E-05],[271.44603,-5.3106E-05],[271.4496,-5.6715E-05],[271.45317,-5.2074E-05],[271.45675,-4.7434E-05],[271.46032,-5.2074E-05],[271.46389,-5.4137E-05],[271.46747,-5.723E-05],[271.47104,-5.6199E-05],[271.47461,-5.0012E-05],[271.47819,-5.1559E-05],[271.48176,-5.259E-05],[271.48533,-5.0012E-05],[271.48891,-5.3106E-05],[271.49248,-5.1559E-05],[271.49605,-4.8465E-05],[271.49963,-5.1559E-05],[271.5032,-5.4652E-05],[271.50677,-5.4137E-05],[271.51035,-5.4652E-05],[271.51392,-5.5684E-05],[271.51749,-5.3106E-05],[271.52107,-5.3621E-05],[271.52464,-5.3621E-05],[271.52821,-5.4137E-05],[271.53179,-5.9293E-05],[271.53536,-5.5168E-05],[271.53893,-5.4137E-05],[271.54251,-5.3106E-05],[271.54608,-5.4137E-05],[271.54965,-5.723E-05],[271.55323,-5.5168E-05],[271.5568,-5.5168E-05],[271.56037,-5.2074E-05],[271.56395,-5.3106E-05],[271.56752,-5.6199E-05],[271.57109,-5.3621E-05],[271.57467,-5.5168E-05],[271.57824,-5.4652E-05]]}
-{"quant":[271.862,-5.3355E-05],"mems":[[271.76405,-5.1559E-05],[271.76763,-5.0528E-05],[271.7712,-5.4137E-05],[271.77477,-5.3106E-05],[271.77835,-5.3106E-05],[271.78192,-5.4137E-05],[271.78549,-5.259E-05],[271.78907,-4.8981E-05],[271.79264,-4.8981E-05],[271.79621,-5.0528E-05],[271.79979,-5.6715E-05],[271.80336,-5.8777E-05],[271.80693,-5.5168E-05],[271.81051,-5.4137E-05],[271.81408,-5.6199E-05],[271.81765,-5.723E-05],[271.82123,-5.5684E-05],[271.8248,-5.4137E-05],[271.82837,-4.795E-05],[271.83195,-4.5887E-05],[271.83552,-5.4137E-05],[271.83909,-5.3621E-05],[271.84267,-5.3621E-05],[271.84624,-5.5168E-05],[271.84981,-5.1043E-05],[271.85339,-5.0528E-05],[271.85696,-5.2074E-05],[271.86053,-5.6199E-05],[271.86411,-5.723E-05],[271.86768,-5.3106E-05],[271.87125,-4.8465E-05],[271.87483,-5.0528E-05],[271.8784,-5.3106E-05],[271.88197,-5.4137E-05],[271.88555,-5.723E-05],[271.88912,-5.4652E-05],[271.89269,-5.259E-05],[271.89627,-5.3621E-05],[271.89984,-5.3106E-05],[271.90341,-5.3621E-05],[271.90699,-5.3106E-05],[271.91056,-5.5168E-05],[271.91413,-5.5684E-05],[271.91771,-5.3106E-05],[271.92128,-5.3621E-05],[271.92485,-5.3621E-05],[271.92843,-5.4652E-05],[271.932,-5.3106E-05],[271.93557,-5.1043E-05],[271.93915,-5.6199E-05],[271.94272,-5.723E-05],[271.94629,-5.3106E-05],[271.94987,-5.1559E-05],[271.95344,-5.1559E-05],[271.95701,-5.259E-05],[271.96059,-5.0528E-05],[271.96416,-5.0012E-05],[271.96773,-4.8981E-05],[271.97131,-5.1559E-05],[271.97488,-4.9497E-05],[271.97845,-4.5887E-05],[271.98203,-5.259E-05],[271.9856,-5.3106E-05],[271.98917,-4.8981E-05],[271.99275,-5.1559E-05],[271.99632,-5.0012E-05],[271.99989,-4.6919E-05],[272.00347,-5.3621E-05],[272.00704,-5.5684E-05],[272.01061,-5.0012E-05],[272.01419,-5.2074E-05],[272.01776,-5.1043E-05],[272.02133,-5.0012E-05],[272.02491,-5.7746E-05],[272.02848,-5.7746E-05],[272.03205,-5.3621E-05],[272.03563,-4.795E-05],[272.0392,-4.5887E-05],[272.04277,-5.0012E-05],[272.04635,-5.3106E-05],[272.04992,-5.3621E-05],[272.05349,-5.259E-05],[272.05707,-5.259E-05],[272.06064,-5.3106E-05],[272.06421,-5.6715E-05]]}
-{"quant":[272.432,-5.259E-05],"mems":[[272.33221,-4.795E-05],[272.33579,-5.2074E-05],[272.33936,-5.259E-05],[272.34293,-5.6199E-05],[272.34651,-5.6715E-05],[272.35008,-5.0528E-05],[272.35365,-5.1043E-05],[272.35723,-5.0528E-05],[272.3608,-5.1559E-05],[272.36437,-5.259E-05],[272.36795,-5.5684E-05],[272.37152,-5.5684E-05],[272.37509,-5.5168E-05],[272.37867,-5.1559E-05],[272.38224,-4.4341E-05],[272.38581,-5.3621E-05],[272.38939,-5.6199E-05],[272.39296,-5.0528E-05],[272.39653,-5.4137E-05],[272.40011,-5.5168E-05],[272.40368,-5.1559E-05],[272.40725,-5.0528E-05],[272.41083,-5.1559E-05],[272.4144,-5.0012E-05],[272.41797,-5.0012E-05],[272.42155,-5.1043E-05],[272.42512,-5.0012E-05],[272.42869,-5.4137E-05],[272.43227,-5.4137E-05],[272.43584,-5.2074E-05],[272.43941,-5.4137E-05],[272.44299,-5.2074E-05],[272.44656,-5.4652E-05],[272.45013,-5.5168E-05],[272.45371,-5.0528E-05],[272.45728,-5.2074E-05],[272.46085,-4.9497E-05],[272.46443,-5.3106E-05],[272.468,-5.7746E-05],[272.47157,-5.1559E-05],[272.47515,-5.0528E-05],[272.47872,-5.0528E-05],[272.48229,-5.0528E-05],[272.48587,-4.9497E-05],[272.48944,-4.8981E-05],[272.49301,-4.7434E-05],[272.49659,-4.6403E-05],[272.50016,-5.0012E-05],[272.50373,-5.3106E-05],[272.50731,-5.6199E-05],[272.51088,-5.5684E-05],[272.51445,-5.5168E-05],[272.51803,-5.2074E-05],[272.5216,-5.259E-05],[272.52517,-5.8777E-05],[272.52875,-5.8777E-05],[272.53232,-5.2074E-05],[272.53589,-4.9497E-05],[272.53947,-4.8465E-05],[272.54304,-5.3621E-05],[272.54661,-6.2902E-05],[272.55019,-5.6199E-05],[272.55376,-4.9497E-05],[272.55733,-5.3106E-05],[272.56091,-5.259E-05],[272.56448,-5.259E-05],[272.56805,-5.3106E-05],[272.57163,-5.1559E-05],[272.5752,-4.8981E-05],[272.57877,-4.6403E-05],[272.58235,-5.3621E-05],[272.58592,-5.723E-05],[272.58949,-5.5168E-05],[272.59307,-5.7746E-05],[272.59664,-5.1043E-05],[272.60021,-4.795E-05],[272.60379,-5.0528E-05],[272.60736,-5.0528E-05],[272.61093,-5.3106E-05],[272.61451,-5.1559E-05],[272.61808,-5.3106E-05],[272.62165,-5.0012E-05],[272.62523,-4.8981E-05],[272.6288,-5.259E-05],[272.63237,-5.0012E-05]]}
-{"quant":[273.137,-5.3888E-05],"mems":[[273.03973,-5.6199E-05],[273.04331,-5.6199E-05],[273.04688,-5.6199E-05],[273.05045,-5.3106E-05],[273.05403,-5.4137E-05],[273.0576,-5.5168E-05],[273.06117,-5.6199E-05],[273.06475,-5.5684E-05],[273.06832,-5.259E-05],[273.07189,-5.2074E-05],[273.07547,-4.8981E-05],[273.07904,-4.9497E-05],[273.08261,-5.3621E-05],[273.08619,-5.6199E-05],[273.08976,-5.1559E-05],[273.09333,-4.8981E-05],[273.09691,-5.5168E-05],[273.10048,-5.2074E-05],[273.10405,-5.0012E-05],[273.10763,-5.8262E-05],[273.1112,-5.5684E-05],[273.11477,-5.4652E-05],[273.11835,-5.8262E-05],[273.12192,-5.2074E-05],[273.12549,-5.0528E-05],[273.12907,-5.4652E-05],[273.13264,-5.3621E-05],[273.13621,-5.4137E-05],[273.13979,-5.3621E-05],[273.14336,-5.259E-05],[273.14693,-5.4652E-05],[273.15051,-5.3106E-05],[273.15408,-5.5168E-05],[273.15765,-5.8777E-05],[273.16123,-5.4137E-05],[273.1648,-5.259E-05],[273.16837,-5.1559E-05],[273.17195,-5.3621E-05],[273.17552,-5.6715E-05],[273.17909,-5.259E-05],[273.18267,-5.3621E-05],[273.18624,-5.259E-05],[273.18981,-5.1043E-05],[273.19339,-4.9497E-05],[273.19696,-5.1559E-05],[273.20053,-5.6199E-05],[273.20411,-5.259E-05],[273.20768,-5.1559E-05],[273.21125,-5.3621E-05],[273.21483,-5.8262E-05],[273.2184,-5.9808E-05],[273.22197,-5.5168E-05],[273.22555,-5.4652E-05],[273.22912,-5.3621E-05],[273.23269,-5.4137E-05],[273.23627,-5.3621E-05],[273.23984,-5.2074E-05],[273.24341,-5.5684E-05],[273.24699,-5.3106E-05],[273.25056,-5.259E-05],[273.25413,-5.4652E-05],[273.25771,-5.5168E-05],[273.26128,-5.6199E-05],[273.26485,-5.3106E-05],[273.26843,-5.1043E-05],[273.272,-5.3106E-05],[273.27557,-5.4652E-05],[273.27915,-5.5684E-05],[273.28272,-5.4652E-05],[273.28629,-5.1559E-05],[273.28987,-4.9497E-05],[273.29344,-5.5684E-05],[273.29701,-5.6715E-05],[273.30059,-5.4652E-05],[273.30416,-5.1559E-05],[273.30773,-4.9497E-05],[273.31131,-5.3621E-05],[273.31488,-5.2074E-05],[273.31845,-5.5684E-05],[273.32203,-5.5168E-05],[273.3256,-5.0528E-05],[273.32917,-5.6715E-05],[273.33275,-5.5168E-05],[273.33632,-5.4652E-05],[273.33989,-5.6715E-05]]}
-{"quant":[273.967,-1.1868],"mems":[[273.86875,-5.2074E-05],[273.87232,-5.1043E-05],[273.87589,-5.4137E-05],[273.87947,-5.7746E-05],[273.88304,-5.2074E-05],[273.88661,-4.8465E-05],[273.89019,-4.8465E-05],[273.89376,-5.1559E-05],[273.89733,-5.723E-05],[273.90091,-5.5684E-05],[273.90448,-5.4652E-05],[273.90805,-5.259E-05],[273.91163,-4.9497E-05],[273.9152,-5.3106E-05],[273.91877,-5.7746E-05],[273.92235,-5.3621E-05],[273.92592,-5.2074E-05],[273.92949,-5.1559E-05],[273.93307,-4.8981E-05],[273.93664,-5.3106E-05],[273.94021,-5.259E-05],[273.94379,-5.3106E-05],[273.94736,-5.259E-05],[273.95093,-5.1043E-05],[273.95451,-5.3106E-05],[273.95808,-5.4137E-05],[273.96165,-5.7746E-05],[273.96523,-5.723E-05],[273.9688,-5.3621E-05],[273.97237,-5.0012E-05],[273.97595,-5.3621E-05],[273.97952,-5.5684E-05],[273.98309,-5.3621E-05],[273.98667,-5.4652E-05],[273.99024,-5.1043E-05],[273.99381,-5.0528E-05],[273.99739,-5.259E-05],[274.00096,-5.723E-05],[274.00453,-5.6715E-05],[274.00811,-5.0012E-05],[274.01168,-5.3621E-05],[274.01525,-5.5684E-05],[274.01883,-5.3621E-05],[274.0224,-5.259E-05],[274.02597,-5.5168E-05],[274.02955,-5.4137E-05],[274.03312,-5.259E-05],[274.03669,-5.0528E-05],[274.04027,-5.2074E-05],[274.04384,-5.4652E-05],[274.04741,-4.9497E-05],[274.05099,-5.2074E-05],[274.05456,-5.2074E-05],[274.05813,-5.4652E-05],[274.06171,-5.5168E-05],[274.06528,-5.3106E-05],[274.06885,-5.6199E-05],[274.07243,-5.259E-05],[320.164,-5.2074E-05]]}
-{"quant":[274.756,-1.2444],"mems":[[320.164,-5.2074E-05]]}
-{"quant":[275.408,-1.2997],"mems":[[320.164,-5.2074E-05]]}
-{"quant":[275.955,-1.3523],"mems":[[320.164,-5.2074E-05]]}
-{"quant":[276.514,-1.4133],"mems":[[320.164,-5.2074E-05]]}
-{"quant":[279.396,-1.4824],"mems":[[320.164,-5.2074E-05]]}
-{"quant":[279.955,-1.5363],"mems":[[320.164,-5.2074E-05]]}
-{"quant":[280.497,-1.5735],"mems":[[320.164,-5.2074E-05]]}
-{"quant":[280.982,-1.6208],"mems":[[320.164,-5.2074E-05]]}
-{"quant":[281.528,-1.6831],"mems":[[320.164,-5.2074E-05]]}
-{"quant":[282.068,-1.7441],"mems":[[320.164,-5.2074E-05]]}
-{"quant":[282.591,-1.7923],"mems":[[320.164,-5.2074E-05]]}
-{"quant":[283.14,-1.8285],"mems":[[320.164,-5.2074E-05]]}
-{"quant":[283.661,-1.8611],"mems":[[320.164,-5.2074E-05]]}
-{"quant":[284.227,-0.0051298],"mems":[[320.164,-5.2074E-05]]}
-{"quant":[284.86,-0.033174],"mems":[[320.164,-5.2074E-05]]}
-{"quant":[285.428,-0.058356],"mems":[[320.164,-5.2074E-05]]}
-{"quant":[285.939,-0.084894],"mems":[[320.164,-5.2074E-05]]}
-{"quant":[286.507,-0.10812],"mems":[[320.164,-5.2074E-05]]}
-{"quant":[287.048,-0.12397],"mems":[[320.164,-5.2074E-05]]}
-{"quant":[287.558,-0.13243],"mems":[[320.164,-5.2074E-05]]}
-{"quant":[288.128,-0.13826],"mems":[[320.164,-5.2074E-05]]}
-{"quant":[288.626,-0.15248],"mems":[[320.164,-5.2074E-05]]}
-{"quant":[289.125,-0.17703],"mems":[[320.164,-5.2074E-05]]}
-{"quant":[289.662,-0.1978],"mems":[[320.164,-5.2074E-05]]}
-{"quant":[290.214,-0.20679],"mems":[[320.164,-5.2074E-05]]}
-{"quant":[290.759,-0.20115],"mems":[[320.164,-5.2074E-05]]}
-{"quant":[291.314,-0.17859],"mems":[[320.164,-5.2074E-05]]}
-{"quant":[291.817,-0.14867],"mems":[[320.164,-5.2074E-05]]}
-{"quant":[292.349,-0.11883],"mems":[[320.164,-5.2074E-05]]}
-{"quant":[292.882,-0.10557],"mems":[[320.164,-5.2074E-05]]}
-{"quant":[293.471,-0.11464],"mems":[[320.164,-5.2074E-05]]}
-{"quant":[294.013,-0.12398],"mems":[[320.164,-5.2074E-05]]}
-{"quant":[294.64,-0.10928],"mems":[[320.164,-5.2074E-05]]}
-{"quant":[295.196,-0.076533],"mems":[[320.164,-5.2074E-05]]}
-{"quant":[295.73,-0.041083],"mems":[[320.164,-5.2074E-05]]}
-{"quant":[296.237,-0.0086894],"mems":[[320.164,-5.2074E-05]]}
-{"quant":[296.73,-1.8545],"mems":[[320.164,-5.2074E-05]]}
-{"quant":[297.28,-1.8146],"mems":[[320.164,-5.2074E-05]]}
-{"quant":[297.834,-1.7766],"mems":[[320.164,-5.2074E-05]]}
-{"quant":[298.379,-1.7405],"mems":[[320.164,-5.2074E-05]]}
-{"quant":[298.929,-1.712],"mems":[[320.164,-5.2074E-05]]}
-{"quant":[299.419,-1.6787],"mems":[[320.164,-5.2074E-05]]}
-{"quant":[299.915,-1.6283],"mems":[[320.164,-5.2074E-05]]}
-{"quant":[300.4,-1.562],"mems":[[320.164,-5.2074E-05]]}
-{"quant":[300.877,-1.4873],"mems":[[320.164,-5.2074E-05]]}
-{"quant":[301.399,-1.4207],"mems":[[320.164,-5.2074E-05]]}
-{"quant":[301.994,-1.3659],"mems":[[320.164,-5.2074E-05]]}
-{"quant":[302.596,-1.3119],"mems":[[320.164,-5.2074E-05]]}
-{"quant":[303.095,-1.2558],"mems":[[320.164,-5.2074E-05]]}
-{"quant":[303.618,-1.1983],"mems":[[320.164,-5.2074E-05]]}
-{"quant":[304.147,-1.1411],"mems":[[320.164,-5.2074E-05]]}
-{"quant":[304.658,-1.078],"mems":[[320.164,-5.2074E-05]]}
-{"quant":[305.15,-1.0113],"mems":[[320.164,-5.2074E-05]]}
-{"quant":[305.647,-0.93086],"mems":[[320.164,-5.2074E-05]]}
-{"quant":[306.153,-0.83601],"mems":[[320.164,-5.2074E-05]]}
-{"quant":[306.685,-0.74585],"mems":[[320.164,-5.2074E-05]]}
-{"quant":[307.207,-0.66804],"mems":[[320.164,-5.2074E-05]]}
-{"quant":[307.681,-0.59932],"mems":[[320.164,-5.2074E-05]]}
-{"quant":[308.224,-0.52814],"mems":[[320.164,-5.2074E-05]]}
-{"quant":[308.731,-0.45347],"mems":[[320.164,-5.2074E-05]]}
-{"quant":[309.206,-0.37979],"mems":[[320.164,-5.2074E-05]]}
-{"quant":[309.714,-0.29712],"mems":[[320.164,-5.2074E-05]]}
-{"quant":[310.232,-0.19861],"mems":[[320.164,-5.2074E-05]]}
-{"quant":[310.727,-0.10098],"mems":[[320.164,-5.2074E-05]]}
-{"quant":[311.251,-0.012307],"mems":[[320.164,-5.2074E-05]]}
-{"quant":[311.767,-1.8073],"mems":[[320.164,-5.2074E-05]]}
-{"quant":[312.28,-1.7114],"mems":[[320.164,-5.2074E-05]]}
-{"quant":[312.767,-1.6185],"mems":[[320.164,-5.2074E-05]]}
-{"quant":[313.265,-1.5372],"mems":[[320.164,-5.2074E-05]]}
-{"quant":[313.807,-1.4533],"mems":[[320.164,-5.2074E-05]]}
-{"quant":[314.311,-1.3533],"mems":[[320.164,-5.2074E-05]]}
-{"quant":[314.844,-1.2478],"mems":[[320.164,-5.2074E-05]]}
-{"quant":[315.384,-1.1489],"mems":[[320.164,-5.2074E-05]]}
-{"quant":[315.917,-1.0524],"mems":[[320.164,-5.2074E-05]]}
-{"quant":[316.449,-0.96194],"mems":[[320.164,-5.2074E-05]]}
-{"quant":[316.97,-0.88141],"mems":[[320.164,-5.2074E-05]]}
-{"quant":[317.5,-0.79861],"mems":[[320.164,-5.2074E-05]]}
-{"quant":[318.02,-0.70095],"mems":[[320.164,-5.2074E-05]]}
-{"quant":[318.497,-0.59537],"mems":[[320.164,-5.2074E-05]]}
-{"quant":[318.981,-0.48959],"mems":[[320.164,-5.2074E-05]]}
-{"quant":[319.467,-0.38851],"mems":[[320.164,-5.2074E-05]]}
-{"quant":[319.989,-0.30187],"mems":[[320.30372,-5.4652E-05],[320.30731,-5.5684E-05],[320.31089,-5.4652E-05],[320.31447,-5.4137E-05],[320.31805,-5.4652E-05],[320.32164,-5.6715E-05],[320.32522,-5.4137E-05],[320.3288,-5.0528E-05],[320.33239,-5.3106E-05],[320.33597,-5.1043E-05],[320.33955,-5.2074E-05],[320.34313,-5.3106E-05],[320.34672,-5.1559E-05],[320.3503,-5.4137E-05],[320.35388,-5.4137E-05],[320.35746,-5.6199E-05],[320.36105,-5.8262E-05],[320.36463,-5.259E-05],[320.36821,-4.8981E-05],[320.37179,-5.1043E-05],[320.37538,-4.9497E-05],[320.37896,-5.3621E-05],[320.38254,-5.723E-05],[320.38613,-5.8262E-05],[320.38971,-5.9293E-05],[320.39329,-5.7746E-05],[320.39687,-5.5684E-05],[320.40046,-5.1043E-05],[320.40404,-5.1559E-05],[320.40762,-5.3106E-05],[320.4112,-4.9497E-05],[320.41479,-4.9497E-05],[320.41837,-5.3106E-05],[320.42195,-5.259E-05],[320.42553,-4.9497E-05],[320.42912,-5.1043E-05],[320.4327,-5.6715E-05],[320.43628,-5.6199E-05],[320.43987,-5.4137E-05],[320.44345,-5.4137E-05],[320.44703,-5.1043E-05],[320.45061,-5.1559E-05],[320.4542,-5.4652E-05],[320.45778,-5.4652E-05],[320.46136,-5.4137E-05],[320.46494,-5.723E-05],[320.46853,-5.723E-05],[320.47211,-5.1043E-05],[320.47569,-5.2074E-05],[320.47927,-5.6199E-05],[320.48286,-5.3106E-05],[320.48644,-4.9497E-05],[320.49002,-5.3621E-05],[320.49361,-5.4137E-05],[320.49719,-5.5168E-05],[320.50077,-5.4652E-05],[320.50435,-5.3106E-05],[320.50794,-5.3621E-05],[320.51152,-4.8465E-05],[320.5151,-4.8465E-05],[320.51868,-4.9497E-05],[320.52227,-4.795E-05],[320.52585,-5.1559E-05],[320.52943,-5.2074E-05],[320.53301,-5.5684E-05],[320.5366,-5.4137E-05],[320.54018,-4.6919E-05],[320.54376,-5.0528E-05],[320.54735,-5.5168E-05],[320.55093,-5.4652E-05],[320.55451,-5.5168E-05],[320.55809,-5.4137E-05],[320.56168,-4.7434E-05]]}
-{"quant":[320.486,-5.2199E-05],"mems":[[320.38613,-5.8262E-05],[320.38971,-5.9293E-05],[320.39329,-5.7746E-05],[320.39687,-5.5684E-05],[320.40046,-5.1043E-05],[320.40404,-5.1559E-05],[320.40762,-5.3106E-05],[320.4112,-4.9497E-05],[320.41479,-4.9497E-05],[320.41837,-5.3106E-05],[320.42195,-5.259E-05],[320.42553,-4.9497E-05],[320.42912,-5.1043E-05],[320.4327,-5.6715E-05],[320.43628,-5.6199E-05],[320.43987,-5.4137E-05],[320.44345,-5.4137E-05],[320.44703,-5.1043E-05],[320.45061,-5.1559E-05],[320.4542,-5.4652E-05],[320.45778,-5.4652E-05],[320.46136,-5.4137E-05],[320.46494,-5.723E-05],[320.46853,-5.723E-05],[320.47211,-5.1043E-05],[320.47569,-5.2074E-05],[320.47927,-5.6199E-05],[320.48286,-5.3106E-05],[320.48644,-4.9497E-05],[320.49002,-5.3621E-05],[320.49361,-5.4137E-05],[320.49719,-5.5168E-05],[320.50077,-5.4652E-05],[320.50435,-5.3106E-05],[320.50794,-5.3621E-05],[320.51152,-4.8465E-05],[320.5151,-4.8465E-05],[320.51868,-4.9497E-05],[320.52227,-4.795E-05],[320.52585,-5.1559E-05],[320.52943,-5.2074E-05],[320.53301,-5.5684E-05],[320.5366,-5.4137E-05],[320.54018,-4.6919E-05],[320.54376,-5.0528E-05],[320.54735,-5.5168E-05],[320.55093,-5.4652E-05],[320.55451,-5.5168E-05],[320.55809,-5.4137E-05],[320.56168,-4.7434E-05],[320.56526,-5.3106E-05],[320.56884,-5.7746E-05],[320.57242,-5.0012E-05],[320.57601,-4.9497E-05],[320.57959,-4.8465E-05],[320.58317,-5.259E-05],[320.58675,-5.6715E-05],[320.59034,-5.3621E-05],[320.59392,-5.6199E-05],[320.5975,-4.9497E-05],[320.60109,-4.8465E-05],[320.60467,-5.723E-05],[320.60825,-5.3621E-05],[320.61183,-5.1043E-05],[320.61542,-5.1043E-05],[320.619,-5.0012E-05],[320.62258,-5.3621E-05],[320.62616,-5.3106E-05],[320.62975,-5.1043E-05],[320.63333,-5.3106E-05],[320.63691,-5.3106E-05],[320.64049,-5.0528E-05],[320.64408,-4.9497E-05],[320.64766,-5.1043E-05],[320.65124,-5.2074E-05],[320.65483,-5.1043E-05],[320.65841,-5.5168E-05],[320.66199,-5.3106E-05],[320.66557,-4.8981E-05],[320.66916,-5.5684E-05],[320.67274,-6.0324E-05],[320.67632,-5.9293E-05],[320.6799,-5.259E-05],[320.68349,-5.259E-05],[320.68707,-5.6715E-05]]}
-{"quant":[321.018,-5.3106E-05],"mems":[[320.91994,-5.259E-05],[320.92353,-5.4652E-05],[320.92711,-5.4652E-05],[320.93069,-4.9497E-05],[320.93427,-5.4137E-05],[320.93786,-5.6199E-05],[320.94144,-5.2074E-05],[320.94502,-5.0012E-05],[320.9486,-5.4652E-05],[320.95219,-5.4652E-05],[320.95577,-5.0528E-05],[320.95935,-5.7746E-05],[320.96293,-5.5168E-05],[320.96652,-5.1043E-05],[320.9701,-5.259E-05],[320.97368,-4.7434E-05],[320.97727,-5.1043E-05],[320.98085,-5.259E-05],[320.98443,-5.3106E-05],[320.98801,-5.4652E-05],[320.9916,-5.0528E-05],[320.99518,-5.1559E-05],[320.99876,-5.2074E-05],[321.00234,-5.3106E-05],[321.00593,-5.2074E-05],[321.00951,-5.4137E-05],[321.01309,-5.4652E-05],[321.01667,-5.259E-05],[321.02026,-5.6715E-05],[321.02384,-5.3106E-05],[321.02742,-5.0012E-05],[321.03101,-4.9497E-05],[321.03459,-4.8465E-05],[321.03817,-5.0012E-05],[321.04175,-5.0528E-05],[321.04534,-5.2074E-05],[321.04892,-5.4652E-05],[321.0525,-5.723E-05],[321.05608,-5.259E-05],[321.05967,-5.0012E-05],[321.06325,-5.4652E-05],[321.06683,-5.3621E-05],[321.07041,-5.0012E-05],[321.074,-5.6715E-05],[321.07758,-5.5168E-05],[321.08116,-5.2074E-05],[321.08475,-5.8777E-05],[321.08833,-5.4137E-05],[321.09191,-5.1559E-05],[321.09549,-5.2074E-05],[321.09908,-5.0012E-05],[321.10266,-5.259E-05],[321.10624,-5.3106E-05],[321.10982,-5.5168E-05],[321.11341,-5.7746E-05],[321.11699,-5.5168E-05],[321.12057,-5.259E-05],[321.12415,-5.2074E-05],[321.12774,-5.3106E-05],[321.13132,-5.6715E-05],[321.1349,-5.7746E-05],[321.13849,-5.259E-05],[321.14207,-5.2074E-05],[321.14565,-5.0528E-05],[321.14923,-5.2074E-05],[321.15282,-5.5168E-05],[321.1564,-5.1043E-05],[321.15998,-5.0528E-05],[321.16356,-5.4137E-05],[321.16715,-5.9293E-05],[321.17073,-5.7746E-05],[321.17431,-5.1043E-05],[321.17789,-5.1559E-05],[321.18148,-5.1559E-05],[321.18506,-5.4652E-05],[321.18864,-5.7746E-05],[321.19223,-5.5168E-05],[321.19581,-5.723E-05],[321.19939,-5.4137E-05],[321.20297,-5.4137E-05],[321.20656,-5.2074E-05],[321.21014,-5.1043E-05],[321.21372,-5.5684E-05],[321.2173,-5.1043E-05],[321.22089,-5.4137E-05]]}
-{"quant":[321.621,-5.3106E-05],"mems":[[321.52183,-5.5684E-05],[321.52541,-5.4137E-05],[321.529,-5.8262E-05],[321.53258,-5.2074E-05],[321.53616,-5.0528E-05],[321.53974,-5.4652E-05],[321.54333,-5.3106E-05],[321.54691,-5.2074E-05],[321.55049,-5.5684E-05],[321.55407,-5.2074E-05],[321.55766,-4.9497E-05],[321.56124,-5.3621E-05],[321.56482,-5.6715E-05],[321.56841,-5.8262E-05],[321.57199,-5.5168E-05],[321.57557,-5.4137E-05],[321.57915,-5.259E-05],[321.58274,-5.0528E-05],[321.58632,-5.0012E-05],[321.5899,-5.5684E-05],[321.59348,-5.6715E-05],[321.59707,-5.0012E-05],[321.60065,-5.2074E-05],[321.60423,-5.4137E-05],[321.60781,-5.4652E-05],[321.6114,-5.4652E-05],[321.61498,-5.4652E-05],[321.61856,-5.5168E-05],[321.62215,-5.0012E-05],[321.62573,-5.0528E-05],[321.62931,-5.723E-05],[321.63289,-5.8262E-05],[321.63648,-5.5684E-05],[321.64006,-4.8465E-05],[321.64364,-5.1559E-05],[321.64722,-5.723E-05],[321.65081,-5.4137E-05],[321.65439,-5.6199E-05],[321.65797,-5.3106E-05],[321.66155,-4.795E-05],[321.66514,-5.259E-05],[321.66872,-5.3106E-05],[321.6723,-5.4137E-05],[321.67589,-5.5684E-05],[321.67947,-5.259E-05],[321.68305,-5.1559E-05],[321.68663,-5.1559E-05],[321.69022,-5.4652E-05],[321.6938,-5.3621E-05],[321.69738,-5.2074E-05],[321.70096,-5.5168E-05],[321.70455,-4.7434E-05],[321.70813,-4.8981E-05],[321.71171,-5.6199E-05],[321.71529,-5.3621E-05],[321.71888,-5.4652E-05],[321.72246,-5.2074E-05],[321.72604,-5.3106E-05],[321.72963,-5.723E-05],[321.73321,-5.5684E-05],[321.73679,-5.259E-05],[321.74037,-5.259E-05],[321.74396,-5.3621E-05],[321.74754,-5.723E-05],[321.75112,-5.4652E-05],[321.7547,-5.3106E-05],[321.75829,-5.8262E-05],[321.76187,-5.3621E-05],[321.76545,-5.259E-05],[321.76903,-5.4137E-05],[321.77262,-5.3621E-05],[321.7762,-5.6199E-05],[321.77978,-5.259E-05],[321.78337,-5.1043E-05],[321.78695,-5.3621E-05],[321.79053,-5.5168E-05],[321.79411,-5.3106E-05],[321.7977,-5.4652E-05],[321.80128,-5.5684E-05],[321.80486,-5.5684E-05],[321.80844,-5.4652E-05],[321.81203,-5.2074E-05],[321.81561,-5.8262E-05],[321.81919,-5.4137E-05],[321.82277,-5.259E-05]]}
-{"quant":[322.241,-5.3763E-05],"mems":[[322.14163,-5.5684E-05],[322.14521,-5.9293E-05],[322.1488,-5.9293E-05],[322.15238,-5.4137E-05],[322.15596,-5.6199E-05],[322.15955,-5.6715E-05],[322.16313,-5.6715E-05],[322.16671,-5.6199E-05],[322.17029,-5.5684E-05],[322.17388,-5.4137E-05],[322.17746,-5.0528E-05],[322.18104,-4.9497E-05],[322.18462,-5.3106E-05],[322.18821,-5.8262E-05],[322.19179,-5.6715E-05],[322.19537,-5.8777E-05],[322.19895,-5.6715E-05],[322.20254,-4.8465E-05],[322.20612,-5.4137E-05],[322.2097,-5.6715E-05],[322.21329,-5.3621E-05],[322.21687,-5.4137E-05],[322.22045,-5.3621E-05],[322.22403,-5.4137E-05],[322.22762,-5.5684E-05],[322.2312,-5.3621E-05],[322.23478,-5.1043E-05],[322.23836,-5.7746E-05],[322.24195,-5.4652E-05],[322.24553,-5.0012E-05],[322.24911,-5.5684E-05],[322.25269,-5.5684E-05],[322.25628,-5.6199E-05],[322.25986,-5.723E-05],[322.26344,-5.5168E-05],[322.26703,-5.3621E-05],[322.27061,-5.2074E-05],[322.27419,-5.259E-05],[322.27777,-5.259E-05],[322.28136,-5.1043E-05],[322.28494,-5.0528E-05],[322.28852,-5.1043E-05],[322.2921,-5.1559E-05],[322.29569,-4.9497E-05],[322.29927,-5.2074E-05],[322.30285,-5.5168E-05],[322.30643,-5.1559E-05],[322.31002,-5.2074E-05],[322.3136,-5.4137E-05],[322.31718,-5.6715E-05],[322.32077,-5.8262E-05],[322.32435,-5.4137E-05],[322.32793,-5.2074E-05],[322.33151,-5.6715E-05],[322.3351,-5.5684E-05],[322.33868,-5.1559E-05],[322.34226,-5.9808E-05],[322.34584,-5.723E-05],[322.34943,-5.2074E-05],[322.35301,-5.4652E-05],[322.35659,-5.2074E-05],[322.36017,-5.2074E-05],[322.36376,-5.2074E-05],[322.36734,-5.1559E-05],[322.37092,-4.8981E-05],[322.37451,-5.2074E-05],[322.37809,-5.8262E-05],[322.38167,-5.4652E-05],[322.38525,-5.4652E-05],[322.38884,-5.3621E-05],[322.39242,-4.9497E-05],[322.396,-5.3106E-05],[322.39958,-5.3621E-05],[322.40317,-5.3106E-05],[322.40675,-5.6715E-05],[322.41033,-5.4137E-05],[322.41391,-5.3106E-05],[322.4175,-5.4652E-05],[322.42108,-5.1559E-05],[322.42466,-5.5684E-05],[322.42825,-5.9808E-05],[322.43183,-5.3621E-05],[322.43541,-5.3106E-05],[322.43899,-5.5684E-05],[322.44258,-5.3621E-05]]}
-{"quant":[322.765,-1.7266],"mems":[[322.66828,-5.723E-05],[322.67187,-6.1355E-05],[322.67545,-5.3106E-05],[322.67903,-5.0528E-05],[322.68261,-5.1043E-05],[322.6862,-5.1043E-05],[322.68978,-5.3621E-05],[322.69336,-5.4652E-05],[322.69695,-5.3106E-05],[322.70053,-4.7434E-05],[322.70411,-5.0528E-05],[322.70769,-5.723E-05],[322.71128,-5.259E-05],[322.71486,-5.1043E-05],[322.71844,-5.5168E-05],[322.72202,-5.1043E-05],[322.72561,-5.0012E-05],[322.72919,-5.3621E-05],[322.73277,-5.4652E-05],[322.73635,-5.5684E-05],[322.73994,-5.259E-05],[322.74352,-4.8465E-05],[322.7471,-4.9497E-05],[322.75069,-5.3621E-05],[322.75427,-5.4652E-05],[322.75785,-5.259E-05],[322.76143,-4.9497E-05],[322.76502,-5.259E-05],[322.7686,-5.5684E-05],[322.77218,-5.2074E-05],[322.77576,-5.2074E-05],[322.77935,-5.259E-05],[322.78293,-5.4137E-05],[322.78651,-5.4137E-05],[322.79009,-5.4652E-05],[322.79368,-5.2074E-05],[322.79726,-4.9497E-05],[322.80084,-5.1043E-05],[322.80443,-5.3621E-05],[322.80801,-5.6715E-05],[322.81159,-5.259E-05],[322.81517,-5.1559E-05],[322.81876,-5.3621E-05],[322.82234,-5.3106E-05],[322.82592,-5.2074E-05],[322.8295,-5.723E-05],[322.83309,-5.6199E-05],[322.83667,-5.259E-05],[322.84025,-5.9808E-05],[322.84383,-5.5168E-05],[322.84742,-5.2074E-05],[541.934,-5.5684E-05]]}
-{"quant":[323.325,-1.6477],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[323.883,-1.5687],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[324.419,-1.4871],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[332.912,-1.4048],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[333.458,-1.3179],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[333.983,-1.2353],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[334.507,-1.1686],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[334.986,-1.0997],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[335.489,-1.0143],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[336.057,-0.93575],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[336.573,-0.86502],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[337.105,-0.79071],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[337.618,-0.71711],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[338.149,-0.64587],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[338.64,-0.57274],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[339.127,-0.51445],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[339.668,-0.47378],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[340.166,-0.42664],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[340.631,-0.36264],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[341.105,-0.29117],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[341.598,-0.24285],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[342.106,-0.21371],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[342.62,-0.17675],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[343.09,-0.13045],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[343.613,-0.079729],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[344.106,-0.033622],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[344.663,-0.0014986],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[345.177,-1.8558],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[345.667,-1.8208],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[346.155,-1.803],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[346.624,-1.7923],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[347.151,-1.774],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[347.66,-1.7577],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[348.213,-1.7394],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[348.732,-1.7208],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[349.287,-1.7102],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[349.809,-1.7107],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[350.327,-1.7138],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[350.796,-1.7116],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[351.313,-1.7151],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[351.848,-1.7267],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[352.424,-1.7427],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[352.935,-1.757],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[353.481,-1.7673],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[354.022,-1.7859],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[354.556,-1.8132],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[355.092,-1.8423],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[355.599,-1.8645],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[356.097,-1.8805],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[356.639,-0.023729],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[357.167,-0.067541],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[357.681,-0.10487],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[358.156,-0.14398],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[358.71,-0.19551],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[359.221,-0.23779],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[359.776,-0.27346],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[360.276,-0.322],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[360.789,-0.38582],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[361.325,-0.45853],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[361.858,-0.53289],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[362.425,-0.59807],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[363.034,-0.65029],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[363.541,-0.70233],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[364.07,-0.76715],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[364.616,-0.838],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[365.142,-0.91085],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[365.735,-0.9884],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[366.242,-1.0565],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[366.744,-1.1178],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[367.346,-1.1885],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[367.877,-1.2666],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[368.379,-1.3521],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[368.898,-1.4558],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[369.397,-1.5593],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[369.933,-1.6493],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[370.462,-1.7269],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[370.981,-1.7986],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[371.467,-1.8788],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[372.088,-0.086481],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[372.634,-0.18472],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[373.154,-0.27907],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[373.773,-0.36994],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[374.585,-0.45367],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[375.343,-0.53738],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[376.151,-0.63297],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[376.778,-0.73662],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[377.451,-0.83911],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[377.962,-0.93843],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[378.551,-1.0337],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[379.264,-1.1205],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[379.809,-1.1962],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[380.381,-1.2781],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[380.905,-1.382],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[381.44,-1.4924],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[381.962,-1.5936],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[382.53,-1.6886],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[383.008,-1.7745],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[383.502,-1.8608],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[383.993,-0.064566],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[384.482,-0.15389],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[385.02,-0.24474],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[385.528,-0.33376],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[386.034,-0.41982],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[386.554,-0.49389],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[387.045,-0.56551],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[387.582,-0.64127],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[388.084,-0.72296],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[388.739,-0.81253],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[389.392,-0.89732],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[389.929,-0.97094],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[390.464,-1.0426],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[391.026,-1.1154],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[391.576,-1.1834],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[392.083,-1.2509],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[392.622,-1.3118],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[393.165,-1.3696],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[393.706,-1.4345],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[394.222,-1.4939],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[394.742,-1.5488],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[395.274,-1.6021],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[395.795,-1.6462],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[396.339,-1.6865],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[396.866,-1.7316],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[397.397,-1.7768],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[397.992,-1.8049],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[398.533,-1.83],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[399.309,-1.8664],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[399.849,-0.021396],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[400.367,-0.065281],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[400.902,-0.10738],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[401.419,-0.13882],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[401.932,-0.14963],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[402.491,-0.14457],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[402.989,-0.14417],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[403.483,-0.15727],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[403.98,-0.17554],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[404.504,-0.19086],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[405.02,-0.20351],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[405.517,-0.20637],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[406.022,-0.19124],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[406.562,-0.16889],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[407.093,-0.15196],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[407.586,-0.14754],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[408.078,-0.14051],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[408.609,-0.11836],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[409.18,-0.098968],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[409.683,-0.083628],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[410.159,-0.063831],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[410.646,-0.029241],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[411.173,-1.8627],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[411.74,-1.8166],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[412.261,-1.7803],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[412.835,-1.7492],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[413.372,-1.7249],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[413.943,-1.6865],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[414.45,-1.6239],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[414.986,-1.5567],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[415.5,-1.4943],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[416.09,-1.4448],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[416.612,-1.39],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[417.113,-1.3172],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[417.608,-1.2486],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[418.106,-1.1913],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[418.605,-1.14],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[419.108,-1.083],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[419.62,-1.0121],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[420.125,-0.92088],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[420.602,-0.81831],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[421.117,-0.73115],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[421.649,-0.66329],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[422.147,-0.59848],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[422.623,-0.53062],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[423.11,-0.4577],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[423.601,-0.37819],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[424.138,-0.28165],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[424.624,-0.17397],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[425.112,-0.082028],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[425.628,-0.0060372],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[426.116,-1.8124],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[426.586,-1.7149],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[427.11,-1.6049],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[427.613,-1.509],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[428.123,-1.4253],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[428.619,-1.3394],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[429.104,-1.2513],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[429.664,-1.1541],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[430.152,-1.0494],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[430.677,-0.9541],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[431.195,-0.8611],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[431.745,-0.76036],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[432.258,-0.65984],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[432.75,-0.57041],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[433.255,-0.49543],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[433.773,-0.41297],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[434.287,-0.32377],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[434.851,-0.23182],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[435.377,-0.13173],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[435.861,-0.034197],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[436.342,-1.8267],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[436.825,-1.7375],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[437.34,-1.6555],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[437.862,-1.58],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[438.456,-1.4987],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[438.955,-1.4104],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[439.457,-1.3208],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[440.001,-1.2392],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[440.564,-1.1643],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[441.168,-1.0895],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[441.728,-1.009],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[442.273,-0.92203],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[442.872,-0.84455],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[443.401,-0.78533],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[443.919,-0.73225],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[444.465,-0.66399],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[445.099,-0.59094],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[445.709,-0.53154],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[446.289,-0.47763],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[446.901,-0.42195],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[447.418,-0.36061],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[447.939,-0.29643],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[448.434,-0.24577],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[448.958,-0.20339],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[449.523,-0.16176],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[450.029,-0.12656],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[450.551,-0.085209],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[451.056,-0.043469],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[451.572,-0.014303],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[452.057,-1.8843],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[452.582,-1.8642],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[453.155,-1.8336],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[453.69,-1.8048],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[454.283,-1.7705],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[454.834,-1.7428],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[455.52,-1.7343],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[456.146,-1.7403],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[456.726,-1.7367],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[457.277,-1.7144],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[457.846,-1.7031],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[458.414,-1.7138],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[458.92,-1.7255],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[459.451,-1.735],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[459.958,-1.7413],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[460.527,-1.744],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[461.152,-1.7547],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[461.784,-1.7794],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[462.329,-1.8122],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[462.833,-1.8431],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[463.388,-1.8689],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[463.913,-0.0057531],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[464.392,-0.0295],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[464.875,-0.063284],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[465.405,-0.10977],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[465.904,-0.16301],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[466.376,-0.2082],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[466.923,-0.24475],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[467.445,-0.29879],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[467.974,-0.35811],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[468.524,-0.40081],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[469.006,-0.4573],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[469.528,-0.52597],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[470.063,-0.58358],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[470.579,-0.64038],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[471.101,-0.69809],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[471.62,-0.75425],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[472.143,-0.82141],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[472.646,-0.90409],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[473.171,-0.98474],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[473.653,-1.0598],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[474.158,-1.1416],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[474.685,-1.2239],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[475.201,-1.2981],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[475.691,-1.3712],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[476.212,-1.4496],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[476.737,-1.5332],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[477.236,-1.6183],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[477.751,-1.7045],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[478.306,-1.7925],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[478.805,-1.8827],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[479.287,-0.091779],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[479.769,-0.18222],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[480.256,-0.26627],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[480.738,-0.35057],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[481.243,-0.44623],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[481.749,-0.55592],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[482.286,-0.65847],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[482.758,-0.75353],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[483.293,-0.84741],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[483.818,-0.94122],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[484.375,-1.03],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[484.905,-1.1152],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[485.397,-1.2095],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[485.932,-1.3052],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[486.472,-1.3999],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[486.981,-1.4985],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[487.481,-1.5918],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[487.961,-1.6802],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[488.502,-1.7769],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[489.032,-1.8734],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[489.577,-0.077415],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[490.066,-0.15659],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[490.56,-0.22985],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[491.036,-0.3143],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[491.531,-0.39776],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[492.028,-0.4708],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[492.552,-0.55214],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[493.049,-0.65354],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[493.563,-0.75591],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[494.107,-0.82997],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[494.642,-0.8843],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[495.143,-0.94681],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[495.643,-1.0254],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[496.162,-1.1127],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[496.658,-1.1999],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[497.15,-1.2731],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[497.621,-1.3197],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[498.098,-1.3531],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[498.574,-1.4045],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[499.069,-1.4694],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[499.563,-1.5387],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[500.053,-1.6043],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[500.56,-1.6582],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[501.042,-1.7015],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[501.566,-1.7398],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[502.084,-1.7765],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[502.589,-1.8141],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[503.069,-1.8548],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[503.554,-0.0032375],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[504.046,-0.022413],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[504.595,-0.038287],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[505.085,-0.0604],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[505.581,-0.092045],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[506.054,-0.11796],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[506.53,-0.13038],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[507.074,-0.14994],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[507.553,-0.17853],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[508.05,-0.20057],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[508.534,-0.19821],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[509.032,-0.18694],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[509.537,-0.17798],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[510.044,-0.16473],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[510.576,-0.15471],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[511.054,-0.14012],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[511.527,-0.131],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[512.033,-0.13443],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[512.521,-0.13581],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[513.009,-0.12212],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[513.535,-0.084443],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[514.013,-0.035361],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[514.499,-1.8777],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[515.028,-1.8524],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[515.528,-1.8335],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[516.008,-1.8027],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[516.504,-1.759],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[516.999,-1.7087],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[517.496,-1.6621],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[518.03,-1.6221],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[518.512,-1.5724],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[519.021,-1.5083],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[519.511,-1.4319],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[519.998,-1.3598],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[520.513,-1.3008],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[520.989,-1.2602],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[521.503,-1.2106],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[521.984,-1.1336],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[522.492,-1.059],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[522.982,-0.98442],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[523.524,-0.90818],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[524.011,-0.83366],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[524.527,-0.76544],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[525.025,-0.70235],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[525.518,-0.62695],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[525.995,-0.53188],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[526.47,-0.42619],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[526.928,-0.32943],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[527.409,-0.25704],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[527.922,-0.18762],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[528.522,-0.10274],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[529.004,-0.012522],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[529.527,-1.8074],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[530.028,-1.7135],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[530.554,-1.6197],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[531.051,-1.5327],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[531.539,-1.4428],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[532.012,-1.3433],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[532.507,-1.2463],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[533.018,-1.1497],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[533.544,-1.0458],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[534.065,-0.95437],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[534.597,-0.87047],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[535.148,-0.77527],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[535.674,-0.67911],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[536.164,-0.58531],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[536.662,-0.48599],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[537.138,-0.3969],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[537.637,-0.31647],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[538.164,-0.23652],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[538.681,-0.14628],"mems":[[541.934,-5.5684E-05]]}
-{"quant":[539.192,-0.044265],"mems":[[541.934,-5.5684E-05],[541.93737,-5.4652E-05],[541.94074,-4.795E-05],[541.9441,-5.259E-05],[541.94747,-5.259E-05],[541.95084,-4.8981E-05],[541.95421,-5.4137E-05],[541.95758,-5.4137E-05],[541.96094,-5.0012E-05],[541.96431,-5.4652E-05],[541.96768,-5.7746E-05],[541.97105,-5.5684E-05],[541.97442,-5.0528E-05],[541.97778,-4.9497E-05],[541.98115,-5.3621E-05],[541.98452,-5.0528E-05],[541.98789,-5.1559E-05],[541.99126,-5.3621E-05],[541.99462,-5.1559E-05],[541.99799,-4.8981E-05],[542.00136,-5.2074E-05],[542.00473,-5.7746E-05]]}
-{"quant":[539.675,-1.8329],"mems":[[542.09566,-5.259E-05],[542.09903,-5.5168E-05],[542.1024,-5.6199E-05],[542.10577,-5.723E-05],[542.10914,-5.6199E-05],[542.1125,-5.2074E-05],[542.11587,-4.8465E-05],[542.11924,-4.9497E-05],[542.12261,-5.1559E-05],[542.12598,-5.3106E-05],[542.12934,-5.4137E-05],[542.13271,-5.4137E-05],[542.13608,-5.1559E-05],[542.13945,-5.4652E-05],[542.14282,-5.5684E-05],[542.14618,-4.7434E-05],[542.14955,-4.7434E-05],[542.15292,-5.1043E-05],[542.15629,-5.1559E-05],[542.15966,-5.4137E-05],[542.16302,-5.4652E-05],[542.16639,-5.6715E-05],[542.16976,-5.8262E-05],[542.17313,-5.3621E-05],[542.1765,-5.2074E-05],[542.17986,-5.5684E-05],[542.18323,-5.5168E-05],[542.1866,-5.5168E-05],[542.18997,-5.5168E-05],[542.19334,-5.3621E-05],[542.1967,-5.4652E-05],[542.20007,-5.259E-05],[542.20344,-5.4137E-05],[542.20681,-5.6715E-05],[542.21018,-5.1043E-05],[542.21354,-5.2074E-05],[542.21691,-5.3621E-05],[542.22028,-5.6199E-05],[542.22365,-6.0839E-05],[542.22702,-5.4137E-05],[542.23038,-5.259E-05],[542.23375,-5.5684E-05],[542.23712,-5.4137E-05],[542.24049,-5.6199E-05]]}
-{"quant":[540.202,-1.74],"mems":[[542.34826,-5.723E-05],[542.35163,-5.5684E-05],[542.355,-5.723E-05],[542.35837,-5.723E-05],[542.36174,-5.5168E-05],[542.3651,-5.4137E-05],[542.36847,-5.4652E-05],[542.37184,-5.4652E-05],[542.37521,-4.8981E-05],[542.37858,-5.6199E-05],[542.38194,-5.5684E-05],[542.38531,-5.0012E-05],[542.38868,-5.259E-05],[542.39205,-5.1043E-05],[542.39542,-5.6199E-05],[542.39878,-5.4137E-05],[542.40215,-5.5684E-05],[542.40552,-5.7746E-05],[542.40889,-5.1559E-05],[542.41226,-5.5168E-05],[542.41562,-5.3106E-05],[542.41899,-5.1043E-05],[542.42236,-5.4652E-05],[542.42573,-5.5168E-05],[542.4291,-5.3621E-05],[542.43246,-5.1043E-05],[542.43583,-5.5684E-05],[542.4392,-5.6715E-05],[542.44257,-5.1043E-05],[542.44594,-5.3106E-05],[542.4493,-5.723E-05],[542.45267,-5.4137E-05],[542.45604,-5.0528E-05],[542.45941,-5.1043E-05],[542.46278,-5.259E-05],[542.46614,-5.3106E-05],[542.46951,-5.723E-05],[542.47288,-6.0839E-05],[542.47625,-5.8262E-05],[542.47962,-5.1559E-05],[542.48298,-5.1043E-05],[542.48635,-5.1559E-05],[542.48972,-5.1043E-05],[542.49309,-5.4652E-05]]}
-{"quant":[540.732,-1.6513],"mems":[[542.60423,-5.3621E-05],[542.6076,-5.5168E-05],[542.61097,-5.5168E-05],[542.61434,-5.259E-05],[542.6177,-5.5684E-05],[542.62107,-5.3621E-05],[542.62444,-5.0528E-05],[542.62781,-5.3621E-05],[542.63118,-5.4137E-05],[542.63454,-5.6199E-05],[542.63791,-5.259E-05],[542.64128,-5.3106E-05],[542.64465,-5.4652E-05],[542.64802,-5.0012E-05],[542.65138,-5.2074E-05],[542.65475,-5.259E-05],[542.65812,-5.2074E-05],[542.66149,-5.3621E-05],[542.66486,-5.3621E-05],[542.66822,-5.0528E-05],[542.67159,-5.3621E-05],[542.67496,-5.8262E-05],[542.67833,-5.723E-05],[542.6817,-5.4137E-05],[542.68506,-5.1043E-05],[542.68843,-5.2074E-05],[542.6918,-5.2074E-05],[542.69517,-5.4652E-05],[542.69854,-5.259E-05],[542.7019,-5.0528E-05],[542.70527,-5.6199E-05],[542.70864,-5.2074E-05],[542.71201,-5.259E-05],[542.71538,-5.4137E-05],[542.71874,-5.0528E-05],[542.72211,-5.2074E-05],[542.72548,-5.259E-05],[542.72885,-5.0528E-05],[542.73222,-4.795E-05],[542.73558,-5.1559E-05],[542.73895,-5.2074E-05],[542.74232,-5.0012E-05],[542.74569,-5.1559E-05],[542.74906,-5.4652E-05]]}
-{"quant":[541.263,-1.5694],"mems":[[542.8602,-5.4137E-05],[542.86357,-5.3621E-05],[542.86694,-5.2074E-05],[542.8703,-5.0528E-05],[542.87367,-4.9497E-05],[542.87704,-5.4137E-05],[542.88041,-5.3621E-05],[542.88378,-5.3621E-05],[542.88714,-5.4652E-05],[542.89051,-5.6715E-05],[542.89388,-5.4652E-05],[542.89725,-5.0012E-05],[542.90062,-5.3621E-05],[542.90398,-5.2074E-05],[542.90735,-5.3106E-05],[542.91072,-5.6199E-05],[542.91409,-5.3106E-05],[542.91746,-5.0528E-05],[542.92082,-5.0528E-05],[542.92419,-5.3621E-05],[542.92756,-5.723E-05],[542.93093,-4.8465E-05],[542.9343,-4.8981E-05],[542.93766,-5.9293E-05],[542.94103,-5.5168E-05],[542.9444,-5.3621E-05],[542.94777,-5.259E-05],[542.95114,-5.2074E-05],[542.9545,-5.4652E-05],[542.95787,-5.1043E-05],[542.96124,-5.3106E-05],[542.96461,-5.4652E-05],[542.96798,-4.9497E-05],[542.97134,-5.1043E-05],[542.97471,-4.9497E-05],[542.97808,-4.795E-05],[542.98145,-5.4652E-05],[542.98482,-5.4137E-05],[542.98818,-5.0528E-05],[542.99155,-5.3106E-05],[542.99492,-5.1559E-05],[542.99829,-5.3621E-05],[543.00166,-6.0839E-05],[543.00502,-5.6199E-05]]}
-{"quant":[541.794,-1.4906],"mems":[[543.11617,-5.5168E-05],[543.11954,-5.5684E-05],[543.1229,-5.7746E-05],[543.12627,-5.4137E-05],[543.12964,-5.2074E-05],[543.13301,-5.259E-05],[543.13638,-5.3106E-05],[543.13974,-5.4652E-05],[543.14311,-5.4137E-05],[543.14648,-5.3106E-05],[543.14985,-5.259E-05],[543.15322,-4.795E-05],[543.15658,-4.9497E-05],[543.15995,-5.6199E-05],[543.16332,-5.3106E-05],[543.16669,-5.0012E-05],[543.17006,-5.4652E-05],[543.17342,-5.1559E-05],[543.17679,-5.3621E-05],[543.18016,-5.723E-05],[543.18353,-5.4652E-05],[543.1869,-5.1559E-05],[543.19026,-4.795E-05],[543.19363,-5.3106E-05],[543.197,-5.5684E-05],[543.20037,-5.0528E-05],[543.20374,-5.4137E-05],[543.2071,-5.2074E-05],[543.21047,-5.1043E-05],[543.21384,-5.1559E-05],[543.21721,-5.1559E-05],[543.22058,-5.5168E-05],[543.22394,-5.259E-05],[543.22731,-5.259E-05],[543.23068,-4.8465E-05],[543.23405,-5.0012E-05],[543.23742,-5.723E-05],[543.24078,-5.3621E-05],[543.24415,-5.5168E-05],[543.24752,-5.4652E-05],[543.25089,-5.5168E-05],[543.25426,-5.9293E-05],[543.25762,-5.5684E-05],[543.26099,-5.6715E-05]]}
-{"quant":[542.301,-5.3821E-05],"mems":[[542.20344,-5.4137E-05],[542.20681,-5.6715E-05],[542.21018,-5.1043E-05],[542.21354,-5.2074E-05],[542.21691,-5.3621E-05],[542.22028,-5.6199E-05],[542.22365,-6.0839E-05],[542.22702,-5.4137E-05],[542.23038,-5.259E-05],[542.23375,-5.5684E-05],[542.23712,-5.4137E-05],[542.24049,-5.6199E-05],[542.24386,-5.7746E-05],[542.24722,-5.4652E-05],[542.25059,-5.259E-05],[542.25396,-5.8262E-05],[542.25733,-5.7746E-05],[542.2607,-5.5168E-05],[542.26406,-5.8777E-05],[542.26743,-5.723E-05],[542.2708,-5.1043E-05],[542.27417,-4.5372E-05],[542.27754,-5.1043E-05],[542.2809,-5.4137E-05],[542.28427,-5.2074E-05],[542.28764,-5.259E-05],[542.29101,-5.1559E-05],[542.29438,-5.7746E-05],[542.29774,-5.8777E-05],[542.30111,-5.7746E-05],[542.30448,-5.6715E-05],[542.30785,-5.1043E-05],[542.31122,-5.1559E-05],[542.31458,-4.8981E-05],[542.31795,-4.8465E-05],[542.32132,-5.3106E-05],[542.32469,-5.0528E-05],[542.32806,-5.3106E-05],[542.33142,-5.5168E-05],[542.33479,-5.4652E-05],[542.33816,-5.8262E-05],[542.34153,-5.1559E-05],[542.3449,-5.1043E-05],[542.34826,-5.723E-05],[542.35163,-5.5684E-05],[542.355,-5.723E-05],[542.35837,-5.723E-05],[542.36174,-5.5168E-05],[542.3651,-5.4137E-05],[542.36847,-5.4652E-05],[542.37184,-5.4652E-05],[542.37521,-4.8981E-05],[542.37858,-5.6199E-05],[542.38194,-5.5684E-05],[542.38531,-5.0012E-05],[542.38868,-5.259E-05],[542.39205,-5.1043E-05],[542.39542,-5.6199E-05],[542.39878,-5.4137E-05],[542.40215,-5.5684E-05],[542.40552,-5.7746E-05],[542.40889,-5.1559E-05],[542.41226,-5.5168E-05],[542.41562,-5.3106E-05],[542.41899,-5.1043E-05],[542.42236,-5.4652E-05],[542.42573,-5.5168E-05],[542.4291,-5.3621E-05],[542.43246,-5.1043E-05],[542.43583,-5.5684E-05],[542.4392,-5.6715E-05],[542.44257,-5.1043E-05],[542.44594,-5.3106E-05],[542.4493,-5.723E-05],[542.45267,-5.4137E-05],[542.45604,-5.0528E-05],[542.45941,-5.1043E-05],[542.46278,-5.259E-05],[542.46614,-5.3106E-05],[542.46951,-5.723E-05],[542.47288,-6.0839E-05],[542.47625,-5.8262E-05],[542.47962,-5.1559E-05],[542.48298,-5.1043E-05],[542.48635,-5.1559E-05],[542.48972,-5.1043E-05],[542.49309,-5.4652E-05],[542.49646,-5.259E-05],[542.49982,-5.3621E-05],[542.50319,-5.3106E-05]]}
-{"quant":[542.868,-5.2956E-05],"mems":[[542.76926,-5.4652E-05],[542.77263,-5.723E-05],[542.776,-5.6199E-05],[542.77937,-5.1559E-05],[542.78274,-5.3621E-05],[542.7861,-5.3106E-05],[542.78947,-5.2074E-05],[542.79284,-5.259E-05],[542.79621,-4.8465E-05],[542.79958,-4.9497E-05],[542.80294,-5.1559E-05],[542.80631,-5.259E-05],[542.80968,-5.5168E-05],[542.81305,-5.5168E-05],[542.81642,-5.6199E-05],[542.81978,-5.1043E-05],[542.82315,-5.1043E-05],[542.82652,-5.6199E-05],[542.82989,-5.3106E-05],[542.83326,-5.1559E-05],[542.83662,-5.1559E-05],[542.83999,-5.0012E-05],[542.84336,-5.6199E-05],[542.84673,-5.9808E-05],[542.8501,-5.723E-05],[542.85346,-5.4652E-05],[542.85683,-5.2074E-05],[542.8602,-5.4137E-05],[542.86357,-5.3621E-05],[542.86694,-5.2074E-05],[542.8703,-5.0528E-05],[542.87367,-4.9497E-05],[542.87704,-5.4137E-05],[542.88041,-5.3621E-05],[542.88378,-5.3621E-05],[542.88714,-5.4652E-05],[542.89051,-5.6715E-05],[542.89388,-5.4652E-05],[542.89725,-5.0012E-05],[542.90062,-5.3621E-05],[542.90398,-5.2074E-05],[542.90735,-5.3106E-05],[542.91072,-5.6199E-05],[542.91409,-5.3106E-05],[542.91746,-5.0528E-05],[542.92082,-5.0528E-05],[542.92419,-5.3621E-05],[542.92756,-5.723E-05],[542.93093,-4.8465E-05],[542.9343,-4.8981E-05],[542.93766,-5.9293E-05],[542.94103,-5.5168E-05],[542.9444,-5.3621E-05],[542.94777,-5.259E-05],[542.95114,-5.2074E-05],[542.9545,-5.4652E-05],[542.95787,-5.1043E-05],[542.96124,-5.3106E-05],[542.96461,-5.4652E-05],[542.96798,-4.9497E-05],[542.97134,-5.1043E-05],[542.97471,-4.9497E-05],[542.97808,-4.795E-05],[542.98145,-5.4652E-05],[542.98482,-5.4137E-05],[542.98818,-5.0528E-05],[542.99155,-5.3106E-05],[542.99492,-5.1559E-05],[542.99829,-5.3621E-05],[543.00166,-6.0839E-05],[543.00502,-5.6199E-05],[543.00839,-5.723E-05],[543.01176,-5.7746E-05],[543.01513,-5.4137E-05],[543.0185,-5.259E-05],[543.02186,-5.0012E-05],[543.02523,-5.3106E-05],[543.0286,-5.4137E-05],[543.03197,-5.5684E-05],[543.03534,-5.6715E-05],[543.0387,-5.259E-05],[543.04207,-5.5168E-05],[543.04544,-5.8777E-05],[543.04881,-5.8777E-05],[543.05218,-5.6199E-05],[543.05554,-5.5684E-05],[543.05891,-5.8262E-05],[543.06228,-5.4137E-05],[543.06565,-5.6199E-05],[543.06902,-5.4652E-05]]}
-{"quant":[543.368,-5.4187E-05],"mems":[[543.2711,-5.3106E-05],[543.27446,-5.4652E-05],[543.27783,-5.4137E-05],[543.2812,-5.2074E-05],[543.28457,-5.1559E-05],[543.28794,-5.3106E-05],[543.2913,-5.259E-05],[543.29467,-5.3621E-05],[543.29804,-5.2074E-05],[543.30141,-5.3621E-05],[543.30478,-5.3106E-05],[543.30814,-4.6919E-05],[543.31151,-4.8981E-05],[543.31488,-5.3106E-05],[543.31825,-5.5684E-05],[543.32162,-5.2074E-05],[543.32498,-5.2074E-05],[543.32835,-5.3621E-05],[543.33172,-5.259E-05],[543.33509,-5.5684E-05],[543.33846,-5.3621E-05],[543.34182,-5.2074E-05],[543.34519,-5.2074E-05],[543.34856,-5.0528E-05],[543.35193,-5.0528E-05],[543.3553,-5.0012E-05],[543.35866,-5.0528E-05],[543.36203,-5.3621E-05],[543.3654,-5.0528E-05],[543.36877,-5.2074E-05],[543.37214,-5.3621E-05],[543.3755,-5.3106E-05],[543.37887,-5.4652E-05],[543.38224,-5.3106E-05],[543.38561,-5.259E-05],[543.38898,-5.1559E-05],[543.39234,-5.259E-05],[543.39571,-5.3621E-05],[543.39908,-5.6715E-05],[543.40245,-5.4652E-05],[543.40582,-5.1043E-05],[543.40918,-5.5684E-05],[543.41255,-5.723E-05],[543.41592,-6.0324E-05],[543.41929,-5.5684E-05],[543.42266,-5.1043E-05],[543.42602,-5.0012E-05],[543.42939,-5.3621E-05],[543.43276,-5.723E-05],[543.43613,-5.1559E-05],[543.4395,-5.3106E-05],[543.44286,-5.6199E-05],[543.44623,-5.4137E-05],[543.4496,-5.6715E-05],[543.45297,-5.8262E-05],[543.45634,-5.7746E-05],[543.4597,-5.5168E-05],[543.46307,-5.0528E-05],[543.46644,-5.259E-05],[543.46981,-5.3621E-05],[543.47318,-5.1043E-05],[543.47654,-5.0528E-05],[543.47991,-5.0528E-05],[543.48328,-5.4137E-05],[543.48665,-5.259E-05],[543.49002,-5.723E-05],[543.49338,-5.7746E-05],[543.49675,-5.3106E-05],[543.50012,-5.5684E-05],[543.50349,-5.0528E-05],[543.50686,-5.3621E-05],[543.51022,-5.7746E-05],[543.51359,-5.5684E-05],[543.51696,-5.6199E-05],[543.52033,-4.795E-05],[543.5237,-4.9497E-05],[543.52706,-5.6715E-05],[543.53043,-5.4652E-05],[543.5338,-5.1559E-05],[543.53717,-5.4652E-05],[543.54054,-5.259E-05],[543.5439,-5.0012E-05],[543.54727,-5.1559E-05],[543.55064,-5.0528E-05],[543.55401,-5.4137E-05],[543.55738,-5.2074E-05],[543.56074,-4.9497E-05],[543.56411,-5.2074E-05],[543.56748,-4.8981E-05],[543.57085,-5.259E-05]]}
-{"quant":[543.853,-5.3422E-05],"mems":[[543.75609,-5.3106E-05],[543.75946,-5.4137E-05],[543.76282,-5.4137E-05],[543.76619,-5.6715E-05],[543.76956,-5.3106E-05],[543.77293,-5.5168E-05],[543.7763,-5.4652E-05],[543.77966,-5.3621E-05],[543.78303,-5.3621E-05],[543.7864,-5.259E-05],[543.78977,-5.5684E-05],[543.79314,-5.259E-05],[543.7965,-4.8981E-05],[543.79987,-5.0528E-05],[543.80324,-5.5684E-05],[543.80661,-5.7746E-05],[543.80998,-5.1043E-05],[543.81334,-5.259E-05],[543.81671,-5.5168E-05],[543.82008,-5.259E-05],[543.82345,-5.4137E-05],[543.82682,-5.6199E-05],[543.83018,-5.723E-05],[543.83355,-5.259E-05],[543.83692,-5.1043E-05],[543.84029,-5.6199E-05],[543.84366,-5.5684E-05],[543.84702,-5.5168E-05],[543.85039,-5.6199E-05],[543.85376,-5.4652E-05],[543.85713,-5.0012E-05],[543.8605,-5.1043E-05],[543.86386,-5.723E-05],[543.86723,-5.6715E-05],[543.8706,-5.5168E-05],[543.87397,-5.1559E-05],[543.87734,-5.0012E-05],[543.8807,-5.2074E-05],[543.88407,-5.3106E-05],[543.88744,-5.5168E-05],[543.89081,-5.5684E-05],[543.89418,-5.2074E-05],[543.89754,-4.9497E-05],[543.90091,-5.1559E-05],[543.90428,-5.4137E-05],[543.90765,-5.4137E-05],[543.91102,-5.5684E-05],[543.91438,-5.3621E-05],[543.91775,-5.1043E-05],[543.92112,-5.2074E-05],[543.92449,-5.4652E-05],[543.92786,-5.6199E-05],[543.93122,-5.1043E-05],[543.93459,-5.0012E-05],[543.93796,-5.4652E-05],[543.94133,-5.723E-05],[543.9447,-5.5168E-05],[543.94806,-5.5168E-05],[543.95143,-5.4652E-05],[543.9548,-5.1043E-05],[543.95817,-5.2074E-05],[543.96154,-5.3621E-05],[543.9649,-5.3621E-05],[543.96827,-5.2074E-05],[543.97164,-5.3621E-05],[543.97501,-5.1559E-05],[543.97838,-5.1559E-05],[543.98174,-5.6199E-05],[543.98511,-5.1043E-05],[543.98848,-5.4652E-05],[543.99185,-5.1043E-05],[543.99522,-4.7434E-05],[543.99858,-5.5168E-05],[544.00195,-5.3106E-05],[544.00532,-5.4652E-05],[544.00869,-5.2074E-05],[544.01206,-5.0012E-05],[544.01542,-5.1559E-05],[544.01879,-4.9497E-05],[544.02216,-5.1043E-05],[544.02553,-5.0012E-05],[544.0289,-5.2074E-05],[544.03226,-5.1043E-05],[544.03563,-5.1559E-05],[544.039,-5.3621E-05],[544.04237,-5.5168E-05],[544.04574,-5.6199E-05],[544.0491,-5.5684E-05],[544.05247,-5.3106E-05],[544.05584,-5.4137E-05]]}
-{"quant":[544.317,-1.0741],"mems":[[544.2175,-5.259E-05],[544.22087,-4.9497E-05],[544.22424,-5.2074E-05],[544.22761,-5.8262E-05],[544.23098,-5.4137E-05],[544.23434,-5.3621E-05],[544.23771,-5.4652E-05],[544.24108,-5.5684E-05],[544.24445,-5.4137E-05],[544.24782,-4.8981E-05],[544.25118,-5.259E-05],[544.25455,-5.4137E-05],[544.25792,-5.6199E-05],[544.26129,-5.6715E-05],[544.26466,-5.259E-05],[544.26802,-5.3621E-05],[544.27139,-5.3621E-05],[544.27476,-4.8465E-05],[544.27813,-5.0012E-05],[544.2815,-5.0528E-05],[544.28486,-4.6403E-05],[544.28823,-5.259E-05],[544.2916,-5.6199E-05],[544.29497,-5.6715E-05],[544.29834,-5.5168E-05],[544.3017,-5.1559E-05],[544.30507,-5.3106E-05],[544.30844,-5.259E-05],[544.31181,-5.1559E-05],[544.31518,-5.4137E-05],[544.31854,-5.6199E-05],[544.32191,-5.259E-05],[544.32528,-4.8981E-05],[544.32865,-5.3106E-05],[544.33202,-5.6715E-05],[544.33538,-5.259E-05],[544.33875,-5.4137E-05],[544.34212,-5.3106E-05],[544.34549,-4.9497E-05],[544.34886,-5.5684E-05],[544.35222,-5.3621E-05],[544.35559,-4.9497E-05],[544.35896,-5.1559E-05],[544.36233,-5.0012E-05],[544.3657,-5.1043E-05],[544.36906,-5.259E-05],[544.37243,-5.723E-05],[544.3758,-5.4652E-05],[544.37917,-5.4137E-05],[544.38254,-5.8262E-05],[544.3859,-5.1559E-05],[544.38927,-5.5168E-05],[544.39264,-5.8262E-05],[544.39601,-5.4137E-05],[544.39938,-5.3106E-05],[544.40274,-5.0012E-05],[544.40611,-5.2074E-05],[544.40948,-5.4137E-05],[544.41285,-5.5168E-05],[544.41622,-5.2074E-05],[544.41958,-5.1559E-05],[544.42295,-5.1043E-05],[544.42632,-4.6919E-05],[544.42969,-5.3621E-05],[544.43306,-5.4652E-05],[544.43642,-5.4652E-05],[544.43979,-5.259E-05],[544.44316,-4.795E-05],[544.44653,-5.0528E-05],[544.4499,-5.0012E-05],[544.45326,-5.3621E-05],[544.45663,-5.3621E-05],[1516.499,-5.5168E-05]]}
-{"quant":[544.829,-1.0015],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[545.309,-0.93475],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[545.877,-0.87],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[546.368,-0.79549],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[546.866,-0.71022],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[586.243,-0.63367],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[586.753,-0.58464],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[587.306,-0.54393],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[587.809,-0.48498],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[588.301,-0.41265],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[588.81,-0.34597],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[589.314,-0.28563],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[589.806,-0.24094],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[590.297,-0.21599],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[590.788,-0.18437],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[591.263,-0.13968],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[591.763,-0.089393],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[592.271,-0.046398],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[592.762,-0.015483],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[593.257,-1.8693],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[593.749,-1.8358],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[594.247,-1.8029],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[594.744,-1.7752],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[595.275,-1.7595],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[595.754,-1.7585],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[596.224,-1.7529],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[596.693,-1.7331],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[597.184,-1.7233],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[597.707,-1.7212],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[598.183,-1.713],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[598.671,-1.71],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[599.17,-1.7216],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[599.677,-1.7403],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[600.211,-1.7476],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[600.708,-1.7467],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[601.211,-1.7524],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[601.705,-1.7742],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[602.212,-1.8087],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[602.724,-1.8431],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[603.223,-1.8773],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[603.734,-0.017112],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[604.28,-0.034109],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[604.769,-0.063523],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[605.254,-0.11047],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[605.733,-0.16446],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[606.235,-0.20744],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[606.703,-0.24656],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[607.189,-0.29399],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[607.705,-0.34751],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[608.21,-0.40107],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[608.711,-0.45615],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[609.207,-0.51251],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[609.701,-0.57007],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[610.23,-0.6264],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[610.75,-0.68567],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[611.253,-0.7571],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[611.75,-0.83974],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[612.217,-0.92978],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[612.721,-1.0079],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[613.266,-1.0733],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[613.784,-1.1355],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[614.284,-1.1989],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[614.819,-1.2707],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[615.35,-1.3533],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[615.876,-1.4463],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[616.379,-1.5435],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[616.887,-1.6401],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[617.427,-1.7338],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[617.948,-1.8178],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[618.462,-0.005913],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[618.966,-0.086493],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[619.461,-0.18328],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[619.96,-0.28247],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[620.473,-0.37509],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[620.942,-0.45653],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[621.427,-0.54402],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[621.928,-0.64568],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[622.451,-0.74736],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[622.935,-0.8407],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[623.429,-0.92877],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[623.956,-1.0157],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[624.468,-1.1101],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[624.952,-1.2141],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[625.527,-1.3124],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[626.02,-1.4033],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[626.516,-1.4963],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[627.031,-1.5942],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[627.542,-1.685],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[628.051,-1.7708],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[628.544,-1.8596],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[629.035,-0.066487],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[629.529,-0.16284],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[630.023,-0.25126],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[630.535,-0.33381],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[631.067,-0.41744],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[631.588,-0.4931],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[632.096,-0.56728],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[632.574,-0.65055],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[633.08,-0.74118],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[633.599,-0.82488],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[634.122,-0.90378],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[634.632,-0.98312],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[635.123,-1.0509],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[635.608,-1.111],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[636.153,-1.1696],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[636.711,-1.2377],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[637.196,-1.3178],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[637.74,-1.3874],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[638.247,-1.4351],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[638.783,-1.4822],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[639.3,-1.5325],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[639.907,-1.583],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[640.415,-1.6446],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[640.943,-1.7047],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[641.548,-1.7512],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[642.064,-1.7878],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[642.6,-1.8273],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[643.125,-1.8738],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[643.666,-0.024127],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[644.155,-0.038459],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[644.638,-0.048763],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[645.134,-0.064543],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[645.618,-0.093076],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[646.106,-0.13132],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[646.612,-0.15833],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[647.085,-0.16414],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[647.563,-0.16933],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[648.057,-0.18336],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[648.599,-0.18686],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[649.193,-0.17817],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[649.695,-0.17201],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[650.212,-0.16892],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[650.717,-0.16612],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[651.238,-0.16353],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[651.824,-0.14908],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[652.32,-0.13575],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[652.806,-0.11786],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[653.288,-0.088227],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[653.824,-0.064274],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[654.377,-0.039357],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[654.921,-0.0069128],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[655.452,-1.8555],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[656.013,-1.8189],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[656.519,-1.7831],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[657.017,-1.7404],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[657.58,-1.6825],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[658.081,-1.6247],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[658.613,-1.5811],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[659.325,-1.551],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[659.847,-1.5136],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[660.383,-1.4594],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[660.951,-1.3906],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[661.464,-1.3193],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[661.963,-1.2627],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[662.451,-1.203],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[662.934,-1.1354],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[663.437,-1.0675],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[663.963,-0.99647],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[664.503,-0.91892],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[665.143,-0.83991],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[665.761,-0.76082],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[666.276,-0.68372],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[666.787,-0.60645],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[667.318,-0.52661],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[667.839,-0.44777],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[668.383,-0.36645],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[668.878,-0.277],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[669.383,-0.1918],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[669.905,-0.11443],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[670.406,-0.031607],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[670.908,-1.8241],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[671.389,-1.7234],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[671.936,-1.6211],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[672.449,-1.518],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[673.012,-1.4163],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[673.502,-1.3215],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[674.005,-1.2332],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[674.528,-1.1534],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[675.071,-1.0704],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[675.58,-0.97574],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[676.132,-0.88424],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[676.675,-0.79607],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[677.201,-0.69791],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[677.68,-0.58622],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[678.181,-0.47758],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[678.681,-0.3841],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[679.262,-0.30127],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[679.824,-0.2173],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[680.324,-0.12961],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[680.832,-0.044881],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[681.361,-1.8408],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[681.915,-1.7457],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[682.431,-1.6557],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[682.954,-1.5657],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[683.454,-1.4756],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[683.985,-1.3966],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[684.561,-1.3226],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[685.065,-1.242],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[685.562,-1.1621],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[686.043,-1.087],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[686.522,-1.0053],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[687.085,-0.92677],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[687.594,-0.85659],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[688.078,-0.78303],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[688.573,-0.71115],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[689.075,-0.64988],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[689.593,-0.59024],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[690.086,-0.52944],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[690.572,-0.47745],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[691.064,-0.42789],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[691.57,-0.37319],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[692.135,-0.3128],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[692.708,-0.25341],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[693.26,-0.20781],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[693.831,-0.172],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[694.347,-0.13124],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[694.847,-0.083049],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[695.377,-0.040867],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[695.909,-0.013806],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[696.441,-1.8695],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[696.95,-1.839],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[697.449,-1.8155],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[698.002,-1.7946],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[698.513,-1.7755],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[699.0,-1.7515],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[699.504,-1.7299],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[700.061,-1.7207],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[700.554,-1.7156],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[701.029,-1.7161],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[701.521,-1.7202],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[702.053,-1.7232],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[702.576,-1.7276],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[703.091,-1.7312],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[703.583,-1.7399],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[704.081,-1.761],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[704.622,-1.7861],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[705.126,-1.8052],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[705.666,-1.8125],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[706.158,-1.821],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[706.663,-1.8439],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[707.155,-1.8781],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[707.658,-0.038749],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[708.178,-0.089227],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[708.679,-0.13419],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[709.162,-0.16517],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[709.64,-0.19735],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[710.118,-0.24064],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[710.619,-0.29415],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[711.125,-0.34664],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[711.689,-0.39616],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[712.2,-0.45724],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[712.72,-0.52302],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[713.243,-0.58318],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[713.748,-0.64419],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[714.284,-0.70535],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[714.864,-0.76731],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[715.372,-0.83433],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[715.846,-0.90588],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[716.402,-0.9844],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[716.961,-1.0617],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[717.447,-1.1362],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[718.012,-1.2138],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[718.539,-1.2918],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[719.027,-1.3764],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[719.534,-1.4673],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[720.029,-1.5483],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[720.519,-1.6285],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[721.017,-1.7133],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[721.507,-1.7952],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[721.988,-0.00015211],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[722.467,-0.098222],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[722.988,-0.19286],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[723.473,-0.28652],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[723.974,-0.38009],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[724.463,-0.47167],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[724.974,-0.56372],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[725.514,-0.65074],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[726.062,-0.732],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[726.578,-0.82531],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[727.077,-0.92544],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[727.575,-1.0293],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[728.07,-1.1325],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[728.61,-1.2295],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[729.123,-1.321],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[729.599,-1.4081],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[730.099,-1.4962],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[730.619,-1.5805],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[731.107,-1.6671],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[731.609,-1.7518],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[732.084,-1.8408],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[732.581,-0.057372],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[733.112,-0.16026],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[733.639,-0.25834],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[734.174,-0.33782],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[734.717,-0.41495],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[735.297,-0.50213],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[735.824,-0.58766],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[736.348,-0.67059],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[736.886,-0.74801],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[737.443,-0.82227],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[737.962,-0.8943],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[738.463,-0.96484],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[738.992,-1.0371],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[739.52,-1.1152],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[740.029,-1.191],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[740.513,-1.2535],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[741.019,-1.307],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[741.532,-1.3604],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[742.051,-1.42],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[742.581,-1.4851],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[743.118,-1.5452],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[743.622,-1.6007],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[744.161,-1.644],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[744.7,-1.6806],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[745.204,-1.7266],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[745.81,-1.7729],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[746.319,-1.8136],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[746.818,-1.8593],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[747.342,-0.014209],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[747.884,-0.03472],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[748.38,-0.053672],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[748.923,-0.079332],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[749.437,-0.10251],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[749.997,-0.11819],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[750.497,-0.14184],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[750.989,-0.17476],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[751.509,-0.19364],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[752.025,-0.19513],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[752.536,-0.18165],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[753.095,-0.16462],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[753.611,-0.1662],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[754.229,-0.18142],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[754.794,-0.18138],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[755.305,-0.16395],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[755.87,-0.14391],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[756.436,-0.12342],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[756.968,-0.096634],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[757.483,-0.06645],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[757.968,-0.051273],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[758.471,-0.037396],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[759.002,-0.012667],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[759.515,-1.8683],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[760.055,-1.8374],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[760.549,-1.7975],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[761.052,-1.7479],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[761.556,-1.7016],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[762.084,-1.6548],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[762.638,-1.6097],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[763.149,-1.5596],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[763.669,-1.4908],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[764.165,-1.4304],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[764.665,-1.3862],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[765.185,-1.3345],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[765.693,-1.2694],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[766.209,-1.1886],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[766.709,-1.1124],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[767.227,-1.0579],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[767.758,-1.0041],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[768.253,-0.92853],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[768.737,-0.84108],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[769.252,-0.75488],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[769.8,-0.6674],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[770.336,-0.58673],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[770.83,-0.51784],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[771.322,-0.44401],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[771.813,-0.3612],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[772.373,-0.28143],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[772.912,-0.18752],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[773.453,-0.079293],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[773.951,-1.8675],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[774.458,-1.7813],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[774.97,-1.6986],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[775.513,-1.6172],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[776.027,-1.5359],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[776.516,-1.4497],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[777.032,-1.3419],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[777.538,-1.2241],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[778.044,-1.1331],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[778.528,-1.0599],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[779.022,-0.9814],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[779.566,-0.89127],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[780.097,-0.78647],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[780.624,-0.67771],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[781.161,-0.57959],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[781.659,-0.49348],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[782.174,-0.41371],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[782.679,-0.32629],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[783.256,-0.2231],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[783.759,-0.11091],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[784.301,-0.0078873],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[784.804,-1.8151],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[785.305,-1.7471],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[785.908,-1.6738],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[786.485,-1.5873],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[786.998,-1.4946],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[787.509,-1.4002],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[788.006,-1.3084],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[788.579,-1.2284],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[789.061,-1.1588],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[789.551,-1.0867],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[790.083,-1.0039],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[790.615,-0.92457],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[791.118,-0.85299],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[791.641,-0.78612],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[792.181,-0.72241],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[792.68,-0.65725],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[793.208,-0.58222],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[793.689,-0.51209],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[794.204,-0.45566],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[794.714,-0.40568],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[795.237,-0.3669],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[795.783,-0.31965],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[796.331,-0.26095],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[796.874,-0.2108],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[797.397,-0.16517],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[797.925,-0.11753],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[798.453,-0.071258],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[798.982,-0.031561],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[799.509,-0.0023032],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[800.032,-1.863],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[800.561,-1.842],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[801.058,-1.8179],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[801.609,-1.7849],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[802.118,-1.7551],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[802.63,-1.7312],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[803.131,-1.7162],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[803.662,-1.719],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[804.174,-1.7274],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[804.683,-1.727],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[805.186,-1.7211],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[805.723,-1.7114],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[806.224,-1.7074],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[806.729,-1.7176],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[807.229,-1.7355],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[807.75,-1.7549],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[808.269,-1.7755],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[808.78,-1.7966],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[809.286,-1.8133],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[809.795,-1.8279],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[810.284,-1.8461],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[810.775,-1.8719],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[811.302,-0.02424],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[811.789,-0.068747],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[812.342,-0.11039],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[812.823,-0.15198],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[813.365,-0.20421],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[813.88,-0.25468],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[814.389,-0.29007],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[814.921,-0.32566],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[815.449,-0.36973],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[816.001,-0.4258],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[816.545,-0.49234],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[817.043,-0.56768],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[817.601,-0.65161],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[818.127,-0.73165],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[818.621,-0.79622],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[819.179,-0.84978],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[819.669,-0.90542],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[820.164,-0.96527],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[820.656,-1.038],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[821.183,-1.1255],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[821.7,-1.2174],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[822.218,-1.3022],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[822.789,-1.38],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[823.324,-1.4642],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[823.845,-1.562],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[824.387,-1.6524],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[824.913,-1.7283],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[825.415,-1.8038],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[825.922,-1.882],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[826.464,-0.087727],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[827.006,-0.18349],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[827.506,-0.27405],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[828.007,-0.37061],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[828.546,-0.46837],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[829.046,-0.55258],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[829.595,-0.6412],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[830.163,-0.73983],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[830.684,-0.8315],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[831.229,-0.9281],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[831.737,-1.0329],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[832.295,-1.1259],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[832.815,-1.2119],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[833.352,-1.3042],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[833.863,-1.3995],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[834.39,-1.5005],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[834.981,-1.6009],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[835.56,-1.6915],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[836.096,-1.7737],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[836.609,-1.8505],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[837.152,-0.05209],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[837.67,-0.14754],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[838.182,-0.23975],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[838.731,-0.32611],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[839.278,-0.41385],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[839.804,-0.51118],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[840.379,-0.60036],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[840.833,-0.66682],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[841.251,-0.73059],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[841.689,-0.80462],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[842.106,-0.88824],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[842.55,-0.96685],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[842.974,-1.0393],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[843.382,-1.1127],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[843.853,-1.1802],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[844.271,-1.2452],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[844.695,-1.3074],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[845.11,-1.368],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[845.559,-1.4305],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[845.981,-1.4905],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[846.405,-1.5507],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[846.857,-1.6054],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[847.287,-1.6503],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[847.731,-1.6831],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[848.151,-1.7148],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[848.569,-1.7609],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[848.991,-1.8128],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[849.564,-1.8531],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[850.067,-1.8825],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[850.475,-0.022977],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[850.913,-0.048386],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[851.366,-0.07344],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[851.793,-0.0994],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[852.213,-0.13004],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[852.65,-0.14909],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[853.138,-0.15805],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[853.561,-0.16083],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[853.983,-0.17369],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[854.399,-0.19432],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[854.824,-0.19797],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[855.275,-0.19091],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[855.691,-0.18579],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[856.121,-0.17868],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[856.581,-0.16095],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[857.009,-0.13722],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[857.445,-0.11584],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[857.892,-0.10007],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[858.292,-0.091282],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[858.714,-0.076935],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[859.137,-0.050273],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[859.543,-0.016112],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[859.985,-1.8601],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[860.393,-1.8252],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[860.833,-1.7985],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[861.278,-1.7648],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[861.722,-1.7162],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[862.149,-1.6571],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[862.59,-1.6022],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[863.026,-1.5511],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[863.507,-1.4974],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[863.963,-1.443],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[864.406,-1.3807],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[864.843,-1.3173],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[865.268,-1.2595],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[865.71,-1.195],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[866.145,-1.1359],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[866.585,-1.0758],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[867.046,-0.99713],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[867.47,-0.91669],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[867.964,-0.83821],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[868.393,-0.76139],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[868.829,-0.68807],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[869.25,-0.60825],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[869.69,-0.52097],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[870.116,-0.43446],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[870.559,-0.35181],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[871.032,-0.2638],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[871.487,-0.17567],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[871.929,-0.093389],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[872.38,-0.013776],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[872.858,-1.8169],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[873.298,-1.7245],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[873.72,-1.6202],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[874.121,-1.5183],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[874.564,-1.4282],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[874.997,-1.3474],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[875.47,-1.2627],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[875.952,-1.1665],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[876.374,-1.0629],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[876.8,-0.95911],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[877.259,-0.86348],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[877.764,-0.776],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[878.223,-0.68975],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[878.686,-0.60169],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[879.136,-0.51265],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[879.558,-0.42464],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[880.003,-0.3253],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[880.482,-0.22001],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[880.955,-0.12491],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[881.422,-0.037435],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[881.835,-1.8407],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[882.255,-1.7569],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[882.674,-1.6659],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[883.097,-1.5734],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[883.534,-1.4891],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[883.945,-1.4027],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[884.35,-1.3098],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[884.768,-1.2217],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[885.184,-1.1454],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[885.639,-1.0779],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[886.074,-1.0054],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[886.509,-0.92447],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[886.942,-0.84384],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[887.399,-0.77729],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[887.849,-0.72476],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[888.3,-0.66941],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[888.831,-0.60145],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[889.367,-0.5249],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[889.836,-0.45436],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[890.333,-0.39875],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[890.792,-0.36066],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[891.22,-0.32389],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[891.636,-0.2692],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[892.068,-0.21054],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[892.511,-0.16378],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[892.968,-0.13263],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[893.4,-0.10192],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[893.814,-0.060052],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[894.245,-0.016259],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[894.684,-1.8558],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[895.132,-1.8159],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[895.6,-1.8008],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[896.059,-1.8025],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[896.506,-1.797],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[896.919,-1.775],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[897.359,-1.748],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[897.844,-1.7236],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[898.309,-1.704],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[898.75,-1.689],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[899.151,-1.6908],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[899.567,-1.7221],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[899.976,-1.7433],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[900.411,-1.7375],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[900.818,-1.7316],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[901.242,-1.7333],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[901.661,-1.7495],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[902.084,-1.7771],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[902.491,-1.8101],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[902.993,-1.8466],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[903.43,-1.878],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[903.862,-0.017538],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[904.282,-0.040841],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[904.693,-0.069098],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[905.145,-0.098943],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[905.573,-0.14233],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[906.013,-0.19505],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[906.43,-0.24283],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[906.839,-0.29165],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[907.292,-0.34026],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[907.706,-0.38805],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[908.108,-0.43698],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[908.504,-0.49712],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[908.901,-0.5734],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[909.324,-0.64671],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[909.766,-0.71031],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[910.187,-0.77205],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[910.618,-0.83531],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[911.032,-0.90276],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[911.51,-0.98222],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[911.984,-1.0661],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[912.403,-1.1455],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[912.867,-1.2195],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[913.38,-1.2986],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[913.963,-1.3814],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[914.467,-1.4555],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[914.926,-1.5379],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[915.367,-1.6286],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[915.807,-1.7049],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[916.254,-1.7805],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[916.718,-1.8731],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[917.179,-0.093681],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[917.606,-0.20139],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[918.07,-0.29896],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[918.481,-0.38908],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[918.89,-0.47311],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[919.313,-0.557],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[919.755,-0.65111],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[920.195,-0.74725],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[920.602,-0.83643],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[921.038,-0.92269],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[921.461,-1.0164],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[921.903,-1.1206],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[922.347,-1.2178],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[922.8,-1.3097],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[923.234,-1.4077],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[923.667,-1.5027],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[924.141,-1.5917],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[924.584,-1.6803],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[925.046,-1.7753],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[925.482,-1.8718],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[925.892,-0.078209],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[926.293,-0.1661],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[926.736,-0.25001],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[927.169,-0.33701],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[927.645,-0.42111],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[928.08,-0.4992],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[928.503,-0.58282],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[928.951,-0.66631],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[929.398,-0.74801],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[929.819,-0.82901],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[930.289,-0.90033],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[930.784,-0.96681],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[931.231,-1.0397],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[931.677,-1.1097],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[932.117,-1.1774],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[932.569,-1.2468],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[932.988,-1.3155],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[933.423,-1.3877],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[933.884,-1.4486],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[934.323,-1.4987],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[934.769,-1.547],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[935.174,-1.5907],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[935.6,-1.6306],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[936.0,-1.6728],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[936.414,-1.7235],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[936.847,-1.7783],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[937.283,-1.8244],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[937.707,-1.8555],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[938.127,-1.8839],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[938.575,-0.030879],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[939.005,-0.062502],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[939.448,-0.096725],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[939.939,-0.12265],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[940.377,-0.13282],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[940.803,-0.13739],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[941.225,-0.1475],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[941.641,-0.16056],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[942.055,-0.17369],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[942.481,-0.18667],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[942.959,-0.19176],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[943.375,-0.18621],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[943.838,-0.1766],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[944.272,-0.17287],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[944.714,-0.16399],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[945.162,-0.15126],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[945.63,-0.14139],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[946.081,-0.1218],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[946.505,-0.096147],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[946.942,-0.066813],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[947.41,-0.033607],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[947.872,0.00035949],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[948.298,-1.8558],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[948.725,-1.8337],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[949.139,-1.8015],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[949.552,-1.7564],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[949.998,-1.7047],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[950.448,-1.6512],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[950.894,-1.6062],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[951.297,-1.5583],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[951.725,-1.5016],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[952.131,-1.4435],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[952.597,-1.3777],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[953.048,-1.3155],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[953.474,-1.2597],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[953.877,-1.2022],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[954.297,-1.1379],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[954.766,-1.0673],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[955.219,-1.0021],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[955.663,-0.93242],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[956.1,-0.84927],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[956.58,-0.7531],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[957.106,-0.6633],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[957.695,-0.59103],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[958.169,-0.52038],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[958.618,-0.45287],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[959.081,-0.38117],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[959.606,-0.29574],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[960.065,-0.19324],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[960.522,-0.084099],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[960.958,-1.8735],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[961.38,-1.787],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[961.794,-1.7017],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[962.238,-1.6152],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[962.692,-1.5275],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[963.108,-1.4404],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[963.525,-1.348],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[963.967,-1.2508],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[964.39,-1.158],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[964.838,-1.066],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[965.299,-0.97252],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[965.774,-0.87711],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[966.261,-0.77866],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[966.703,-0.68362],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[967.212,-0.59561],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[967.706,-0.50593],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[968.269,-0.40673],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[968.733,-0.31264],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[969.186,-0.22344],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[969.609,-0.12896],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[970.057,-0.033814],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[970.475,-1.8305],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[970.9,-1.7506],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[971.394,-1.6718],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[971.83,-1.588],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[972.284,-1.4922],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[972.7,-1.3861],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[973.155,-1.2913],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[973.592,-1.2217],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[974.085,-1.1582],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[974.519,-1.0807],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[974.938,-0.99386],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[975.36,-0.91779],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[975.797,-0.85492],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[976.244,-0.79584],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[976.726,-0.72522],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[977.155,-0.64296],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[977.585,-0.57297],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[978.013,-0.52051],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[978.45,-0.47318],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[978.862,-0.41698],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[979.316,-0.3615],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[979.729,-0.3167],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[980.196,-0.2685],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[980.614,-0.21548],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[981.045,-0.17543],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[981.485,-0.13938],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[981.908,-0.089425],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[982.365,-0.040113],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[982.785,-0.0022301],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[983.22,-1.8568],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[983.649,-1.8302],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[984.064,-1.8057],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[984.505,-1.7795],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[984.936,-1.7477],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[985.413,-1.7302],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[985.878,-1.7369],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[986.334,-1.7458],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[986.759,-1.7412],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[987.188,-1.7296],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[987.588,-1.7128],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[988.012,-1.6978],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[988.465,-1.7014],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[988.901,-1.7176],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[989.324,-1.7359],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[989.751,-1.7486],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[990.17,-1.7595],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[990.585,-1.7754],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[991.054,-1.7875],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[991.508,-1.8129],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[991.988,-1.8535],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[992.419,-0.0057987],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[992.852,-0.035695],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[993.309,-0.063122],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[993.759,-0.10135],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[994.196,-0.1474],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[994.682,-0.20061],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[995.143,-0.25193],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[995.641,-0.29688],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[996.073,-0.34351],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[996.564,-0.39131],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[996.977,-0.44289],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[997.419,-0.4963],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[997.838,-0.5532],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[998.26,-0.62057],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[998.696,-0.69295],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[999.122,-0.7758],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[999.561,-0.86049],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[999.999,-0.92848],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1000.47,-0.99544],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1000.89,-1.0707],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1001.31,-1.145],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1001.76,-1.2139],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1002.21,-1.2843],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1002.62,-1.3675],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1003.03,-1.4678],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1003.46,-1.5661],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1003.89,-1.6479],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1004.35,-1.7255],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1004.79,-1.8064],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1005.23,-0.0064415],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1005.66,-0.09373],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1006.06,-0.17925],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1006.5,-0.26744],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1006.98,-0.3656],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1007.4,-0.46839],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1007.83,-0.56931],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1008.28,-0.66006],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1008.71,-0.74369],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1009.17,-0.83147],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1009.65,-0.92972],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1010.09,-1.0359],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1010.53,-1.1362],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1010.97,-1.2316],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1011.41,-1.318],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1011.89,-1.4003],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1012.34,-1.4955],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1012.79,-1.6025],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1013.21,-1.7018],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1013.71,-1.7846],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1014.2,-1.8672],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1014.65,-0.070826],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1015.09,-0.15814],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1015.56,-0.2421],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1016.05,-0.33079],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1016.48,-0.4232],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1016.91,-0.50474],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1017.36,-0.57968],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1017.8,-0.6598],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1018.27,-0.745],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1018.69,-0.82943],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1019.11,-0.90498],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1019.54,-0.96693],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1020.01,-1.0279],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1020.44,-1.1003],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1020.86,-1.1748],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1021.28,-1.2447],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1021.73,-1.3077],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1022.18,-1.3661],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1022.65,-1.422],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1023.11,-1.4728],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1023.53,-1.5256],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1023.94,-1.5777],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1024.4,-1.6314],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1024.82,-1.6885],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1025.24,-1.737],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1025.66,-1.7821],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1026.06,-1.8245],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1026.5,-1.8589],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1026.91,-0.00058184],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1027.35,-0.025915],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1027.79,-0.058059],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1028.21,-0.093346],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1028.64,-0.12421],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1029.07,-0.14505],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1029.52,-0.15662],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1029.95,-0.15948],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1030.41,-0.16033],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1030.89,-0.16292],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1031.34,-0.17447],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1031.78,-0.18871],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1032.23,-0.1874],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1032.71,-0.17452],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1033.27,-0.16014],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1033.7,-0.1542],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1034.12,-0.15576],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1034.56,-0.1458],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1035.04,-0.12047],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1035.51,-0.093929],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1035.96,-0.070283],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1036.39,-0.036531],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1036.8,-1.8704],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1037.23,-1.8297],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1037.68,-1.8086],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1038.2,-1.7845],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1038.74,-1.749],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1039.3,-1.7101],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1039.75,-1.6564],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1040.19,-1.591],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1040.65,-1.5364],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1041.09,-1.4896],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1041.57,-1.4434],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1042.01,-1.3933],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1042.44,-1.3351],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1042.9,-1.2661],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1043.35,-1.1901],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1043.8,-1.1183],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1044.23,-1.0528],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1044.65,-0.99495],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1045.1,-0.93533],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1045.53,-0.85775],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1045.97,-0.76994],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1046.41,-0.68122],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1046.85,-0.59903],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1047.3,-0.52101],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1047.73,-0.441],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1048.19,-0.35301],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1048.66,-0.26576],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1049.09,-0.18668],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1049.51,-0.10847],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1049.92,-0.027008],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1050.34,-1.8143],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1050.75,-1.7086],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1051.19,-1.6068],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1051.64,-1.516],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1052.05,-1.4296],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1052.46,-1.3282],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1052.89,-1.2261],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1053.33,-1.1365],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1053.8,-1.0533],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1054.26,-0.96998],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1054.74,-0.87464],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1055.25,-0.77407],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1055.73,-0.67813],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1056.24,-0.58361],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1056.74,-0.48995],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1057.19,-0.40374],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1057.67,-0.32292],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1058.12,-0.23444],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1058.57,-0.14242],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1059.01,-0.046636],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1059.47,-1.8355],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1059.91,-1.7538],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1060.35,-1.6751],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1060.76,-1.5878],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1061.19,-1.5037],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1061.6,-1.4184],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1062.02,-1.3245],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1062.47,-1.2344],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1062.88,-1.148],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1063.29,-1.0635],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1063.71,-0.98891],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1064.13,-0.92275],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1064.65,-0.85388],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1065.12,-0.78878],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1065.6,-0.72443],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1066.05,-0.65285],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1066.51,-0.58205],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1066.95,-0.51615],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1067.38,-0.46359],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1067.8,-0.41593],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1068.24,-0.36301],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1068.69,-0.31307],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1069.12,-0.26158],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1069.55,-0.21084],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1069.97,-0.16491],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1070.38,-0.11252],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1070.78,-0.0666],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1071.2,-0.038322],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1071.65,-0.0090191],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1072.05,-1.864],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1072.54,-1.846],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1072.97,-1.8288],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1073.44,-1.8108],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1073.89,-1.785],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1074.38,-1.7474],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1074.84,-1.7151],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1075.28,-1.7047],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1075.7,-1.7221],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1076.13,-1.7429],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1076.61,-1.7437],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1077.03,-1.7329],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1077.47,-1.7253],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1077.92,-1.7266],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1078.35,-1.7323],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1078.8,-1.7428],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1079.24,-1.7678],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1079.7,-1.7901],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1080.12,-1.7994],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1080.54,-1.808],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1080.99,-1.8323],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1081.46,-1.8771],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1081.91,-0.04355],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1082.36,-0.093687],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1082.82,-0.12986],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1083.27,-0.15237],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1083.7,-0.18332],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1084.13,-0.23203],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1084.57,-0.29115],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1085.03,-0.34868],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1085.49,-0.40806],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1085.92,-0.47212],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1086.33,-0.52536],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1086.75,-0.5641],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1087.23,-0.61234],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1087.67,-0.68781],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1088.14,-0.77664],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1088.57,-0.85961],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1089.07,-0.92853],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1089.51,-0.99262],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1089.97,-1.0614],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1090.41,-1.1311],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1090.85,-1.2032],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1091.28,-1.2843],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1091.72,-1.3761],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1092.18,-1.4629],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1092.67,-1.5412],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1093.12,-1.622],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1093.54,-1.712],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1093.97,-1.8073],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1094.43,-0.011405],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1094.93,-0.099069],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1095.42,-0.1836],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1095.91,-0.27285],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1096.36,-0.37268],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1096.79,-0.46839],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1097.22,-0.56103],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1097.69,-0.65982],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1098.11,-0.75412],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1098.54,-0.84207],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1099.02,-0.93368],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1099.46,-1.0305],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1099.89,-1.1338],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1100.33,-1.2365],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1100.78,-1.3306],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1101.21,-1.415],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1101.65,-1.4971],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1102.11,-1.5904],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1102.53,-1.6901],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1102.96,-1.7803],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1103.4,-1.8647],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1103.81,-0.068027],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1104.23,-0.16238],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1104.64,-0.25348],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1105.07,-0.33963],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1105.53,-0.42498],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1105.97,-0.50306],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1106.41,-0.57401],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1106.84,-0.64941],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1107.3,-0.72917],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1107.75,-0.80931],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1108.18,-0.89004],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1108.62,-0.96392],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1109.04,-1.0362],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1109.48,-1.1133],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1109.91,-1.1794],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1110.34,-1.2291],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1110.77,-1.283],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1111.22,-1.3495],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1111.65,-1.4232],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1112.09,-1.4863],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1112.52,-1.5339],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1112.94,-1.5854],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1113.36,-1.6435],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1113.82,-1.6925],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1114.28,-1.737],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1114.73,-1.7745],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1115.16,-1.8021],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1115.61,-1.8398],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1116.05,-0.0011944],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1116.49,-0.032167],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1116.92,-0.054058],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1117.35,-0.07621],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1117.77,-0.096041],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1118.23,-0.12277],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1118.66,-0.14012],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1119.08,-0.1445],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1119.52,-0.15413],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1119.95,-0.16874],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1120.37,-0.17573],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1120.8,-0.17998],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1121.27,-0.19175],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1121.71,-0.19658],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1122.14,-0.18512],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1122.57,-0.16887],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1123.01,-0.1539],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1123.46,-0.13567],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1123.94,-0.10692],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1124.41,-0.084741],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1124.85,-0.07115],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1125.27,-0.049434],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1125.71,-0.022175],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1126.17,-1.8716],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1126.62,-1.826],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1127.04,-1.7878],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1127.46,-1.7588],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1127.91,-1.721],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1128.35,-1.6669],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1128.79,-1.6079],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1129.23,-1.5568],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1129.63,-1.5033],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1130.07,-1.4372],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1130.5,-1.376],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1130.96,-1.3309],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1131.38,-1.2809],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1131.87,-1.2099],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1132.3,-1.1292],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1132.71,-1.0517],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1133.14,-0.9794],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1133.59,-0.90872],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1134.03,-0.83665],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1134.51,-0.76799],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1134.97,-0.69574],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1135.47,-0.6062],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1135.91,-0.50569],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1136.38,-0.41926],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1136.81,-0.34665],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1137.22,-0.27401],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1137.64,-0.1958],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1138.04,-0.10303],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1138.46,-0.0042385],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1138.97,-1.7939],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1139.41,-1.7039],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1139.88,-1.6204],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1140.34,-1.5326],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1140.82,-1.4429],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1141.32,-1.3503],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1141.75,-1.2517],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1142.19,-1.1603],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1142.64,-1.0699],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1143.09,-0.9712],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1143.56,-0.86896],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1144.0,-0.77404],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1144.47,-0.68586],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1144.9,-0.59384],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1145.34,-0.50237],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1145.78,-0.41127],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1146.2,-0.31511],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1146.62,-0.21753],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1147.04,-0.11448],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1147.49,-0.01953],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1147.94,-1.8229],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1148.38,-1.7374],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1148.83,-1.6516],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1149.27,-1.5724],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1149.7,-1.4892],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1150.16,-1.4029],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1150.59,-1.323],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1151.04,-1.2429],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1151.48,-1.1618],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1151.91,-1.0823],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1152.34,-1.006],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1152.78,-0.93159],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1153.26,-0.85943],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1153.73,-0.7974],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1154.16,-0.73233],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1154.61,-0.66412],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1155.07,-0.59504],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1155.5,-0.52323],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1155.93,-0.46024],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1156.36,-0.40694],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1156.83,-0.366],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1157.25,-0.31534],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1157.69,-0.25039],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1158.14,-0.19692],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1158.57,-0.16371],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1158.98,-0.13516],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1159.41,-0.093639],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1159.85,-0.052984],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1160.26,-0.022566],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1160.68,-1.8793],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1161.09,-1.847],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1161.54,-1.8165],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1161.97,-1.7987],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1162.4,-1.7857],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1162.83,-1.7625],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1163.27,-1.7308],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1163.73,-1.7125],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1164.22,-1.7147],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1164.66,-1.7242],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1165.11,-1.7309],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1165.55,-1.7264],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1165.99,-1.7149],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1166.44,-1.7185],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1166.89,-1.7377],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1167.35,-1.7517],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1167.76,-1.765],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1168.19,-1.7879],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1168.61,-1.8088],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1169.03,-1.8307],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1169.46,-1.8591],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1169.9,-0.011064],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1170.33,-0.053903],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1170.75,-0.092997],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1171.16,-0.12177],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1171.61,-0.14867],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1172.08,-0.18927],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1172.54,-0.23799],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1172.99,-0.29056],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1173.44,-0.34634],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1173.87,-0.40564],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1174.31,-0.47243],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1174.79,-0.53805],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1175.24,-0.59337],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1175.7,-0.64708],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1176.16,-0.70271],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1176.58,-0.75952],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1177.02,-0.82636],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1177.44,-0.90315],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1177.87,-0.98516],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1178.31,-1.0563],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1178.73,-1.1245],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1179.17,-1.2108],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1179.61,-1.293],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1180.06,-1.3706],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1180.49,-1.4573],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1180.96,-1.5443],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1181.44,-1.628],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1181.87,-1.7196],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1182.31,-1.8127],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1182.77,-0.013438],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1183.22,-0.098466],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1183.64,-0.18447],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1184.09,-0.27326],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1184.53,-0.367],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1184.95,-0.46243],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1185.44,-0.55541],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1185.87,-0.64233],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1186.28,-0.73496],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1186.75,-0.84049],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1187.19,-0.93955],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1187.66,-1.0332],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1188.09,-1.1206],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1188.59,-1.2015],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1189.05,-1.2881],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1189.48,-1.3858],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1189.94,-1.4891],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1190.39,-1.597],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1190.81,-1.7012],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1191.27,-1.7894],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1191.71,-1.8639],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1192.13,-0.066591],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1192.59,-0.16854],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1193.03,-0.25517],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1193.46,-0.32463],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1193.91,-0.39583],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1194.34,-0.48249],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1194.79,-0.58098],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1195.26,-0.68416],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1195.68,-0.77217],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1196.11,-0.84047],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1196.54,-0.89828],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1197.0,-0.96007],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1197.47,-1.03],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1197.9,-1.1012],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1198.36,-1.1616],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1198.78,-1.2177],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1199.22,-1.2813],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1199.67,-1.3504],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1200.14,-1.426],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1200.57,-1.4976],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1200.99,-1.5571],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1201.42,-1.6004],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1201.85,-1.6343],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1202.29,-1.6744],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1202.72,-1.7287],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1203.17,-1.7845],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1203.61,-1.8234],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1204.06,-1.8537],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1204.49,-0.00064406],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1204.91,-0.034082],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1205.36,-0.062875],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1205.79,-0.086517],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1206.21,-0.10798],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1206.65,-0.12455],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1207.15,-0.14166],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1207.61,-0.16199],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1208.05,-0.182],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1208.5,-0.18527],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1208.94,-0.17334],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1209.41,-0.16476],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1209.84,-0.16978],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1210.29,-0.18458],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1210.75,-0.18562],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1211.19,-0.16896],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1211.65,-0.14648],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1212.1,-0.12516],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1212.58,-0.10757],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1213.0,-0.086822],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1213.46,-0.057057],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1213.91,-0.024506],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1214.37,-1.8828],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1214.84,-1.8546],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1215.29,-1.8143],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1215.75,-1.7737],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1216.21,-1.7514],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1216.68,-1.7251],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1217.13,-1.6758],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1217.59,-1.6157],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1218.04,-1.5526],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1218.51,-1.4949],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1218.97,-1.4434],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1219.42,-1.3844],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1219.86,-1.319],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1220.29,-1.2527],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1220.72,-1.1914],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1221.2,-1.1294],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1221.68,-1.0616],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1222.13,-0.99594],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1222.54,-0.92753],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1222.96,-0.85175],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1223.38,-0.76647],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1223.85,-0.6838],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1224.28,-0.60267],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1224.72,-0.51308],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1225.18,-0.42007],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1225.67,-0.32966],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1226.11,-0.25495],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1226.55,-0.18775],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1227.0,-0.1159],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1227.44,-0.038751],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1227.86,-1.827],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1228.3,-1.7221],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1228.77,-1.6254],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1229.2,-1.5367],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1229.66,-1.4422],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1230.1,-1.3317],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1230.55,-1.2278],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1231.02,-1.1384],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1231.47,-1.0591],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1231.92,-0.98183],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1232.37,-0.89181],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1232.8,-0.78768],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1233.21,-0.68074],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1233.66,-0.58074],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1234.15,-0.48957],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1234.58,-0.41179],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1235.01,-0.33223],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1235.45,-0.23524],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1235.91,-0.12758],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1236.42,-0.027873],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1236.87,-1.825],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1237.3,-1.7378],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1237.76,-1.6555],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1238.19,-1.5766],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1238.61,-1.5033],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1239.05,-1.4312],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1239.48,-1.3399],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1239.92,-1.2413],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1240.34,-1.1574],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1240.78,-1.0836],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1241.21,-1.0176],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1241.66,-0.9505],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1242.07,-0.87975],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1242.51,-0.80956],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1242.96,-0.72804],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1243.39,-0.64599],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1243.84,-0.57448],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1244.31,-0.5113],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1244.77,-0.4625],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1245.26,-0.40811],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1245.72,-0.34206],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1246.19,-0.28448],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1246.66,-0.23438],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1247.09,-0.19401],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1247.52,-0.16299],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1247.96,-0.12511],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1248.39,-0.085617],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1248.83,-0.049666],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1249.26,-0.01408],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1249.68,-1.8646],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1250.17,-1.8328],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1250.64,-1.807],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1251.08,-1.7862],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1251.57,-1.7706],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1252.02,-1.7547],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1252.46,-1.7456],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1252.93,-1.7381],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1253.49,-1.7201],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1254.01,-1.7035],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1254.47,-1.6968],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1254.97,-1.708],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1255.42,-1.724],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1255.88,-1.7339],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1256.36,-1.7472],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1256.83,-1.7656],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1257.24,-1.7729],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1257.67,-1.7679],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1258.11,-1.7796],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1258.53,-1.8185],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1258.95,-1.8588],"mems":[[1516.499,-5.5168E-05]]}
-{"quant":[1259.38,-1.8844],"mems":[[1516.499,-5.5168E-05]]}
diff --git a/Axel-hub/DATA/19-10-17_14-41-27_X.jlg b/Axel-hub/DATA/19-10-17_14-41-27_X.jlg
deleted file mode 100644
index d6f9b3c2..00000000
--- a/Axel-hub/DATA/19-10-17_14-41-27_X.jlg
+++ /dev/null
@@ -1,522 +0,0 @@
-#{"K":0.4,"phi0":0.0,"scale":1.0,"offset":0.0}
-{"quant":[2.49753,0.024534],"mems":[[2.401616,-3.8154E-05],[2.4058,-3.8154E-05],[2.409984,-3.506E-05],[2.414168,-3.5576E-05],[2.418352,-2.8873E-05],[2.422536,-3.2998E-05],[2.42672,-3.3513E-05],[2.430904,-3.6607E-05],[2.435088,-4.0216E-05],[2.439272,-3.2482E-05],[2.443456,-3.2998E-05],[2.44764,-3.2998E-05],[2.451824,-3.6091E-05],[2.456008,-3.6607E-05],[2.460192,-3.6091E-05],[2.464376,-4.2794E-05],[2.46856,-3.7638E-05],[2.472744,-3.1967E-05],[2.476928,-3.5576E-05],[2.481112,-3.7122E-05],[2.485296,-3.9185E-05],[2.48948,-3.97E-05],[2.493664,-3.6091E-05],[2.497848,-3.1451E-05],[2.502032,-3.8669E-05],[2.506216,-4.2278E-05],[2.5104,-3.8669E-05],[2.514584,-4.1247E-05],[2.518768,-3.6607E-05],[2.522952,-3.6091E-05],[2.527136,-3.7122E-05],[2.53132,-3.1967E-05],[2.535504,-3.2998E-05],[2.539688,-3.2998E-05],[2.543872,-3.4544E-05],[2.548056,-3.506E-05],[2.55224,-3.4544E-05],[2.556424,-3.7638E-05],[2.560608,-4.2278E-05],[2.564792,-4.1247E-05],[2.568976,-3.3513E-05],[2.57316,-3.506E-05],[2.577344,-3.8669E-05],[2.581528,-3.9185E-05],[2.585712,-3.9185E-05],[2.589896,-3.6091E-05],[2.59408,-3.042E-05],[2.598264,-3.1967E-05],[2.602448,-3.5576E-05],[2.606632,-3.2998E-05],[2.610816,-3.7638E-05],[2.615,-3.7122E-05],[2.619184,-3.4544E-05],[2.623368,-3.97E-05],[2.627552,-3.8154E-05],[2.631736,-3.7122E-05],[2.63592,-3.6091E-05],[2.640104,-3.2998E-05],[2.644288,-3.4029E-05],[2.648472,-3.9185E-05],[2.652656,-4.0732E-05],[2.65684,-3.7122E-05],[2.661024,-3.3513E-05],[2.665208,-3.506E-05],[2.669392,-3.7638E-05],[2.673576,-3.97E-05],[2.67776,-3.6607E-05],[2.681944,-3.2998E-05],[2.686128,-3.8154E-05],[2.690312,-3.7638E-05],[2.694496,-3.2998E-05]]}
-{"quant":[3.07805,0.025431],"mems":[[3.2563,-3.4544E-05],[3.25968,-3.8669E-05],[3.26306,-4.0732E-05],[3.26644,-3.7638E-05],[3.26982,-3.6607E-05],[3.2732,-3.8154E-05],[3.27658,-4.1763E-05],[3.27996,-4.2794E-05],[3.28334,-4.2278E-05],[3.28672,-3.7638E-05],[3.2901,-3.7122E-05],[3.29348,-3.8669E-05],[3.29686,-3.8154E-05],[3.30024,-4.0732E-05],[3.30362,-3.9185E-05],[3.307,-3.3513E-05],[3.31038,-3.6607E-05],[3.31376,-3.97E-05],[3.31714,-3.4029E-05],[3.32052,-3.4029E-05],[3.3239,-3.3513E-05],[3.32728,-3.6607E-05],[3.33066,-3.8669E-05],[3.33404,-3.8669E-05],[3.33742,-3.97E-05],[3.3408,-3.1967E-05],[3.34418,-3.4029E-05],[3.34756,-3.6607E-05],[3.35094,-3.8669E-05],[3.35432,-3.7638E-05],[3.3577,-3.6607E-05],[3.36108,-4.1247E-05],[3.36446,-3.97E-05],[3.36784,-3.7638E-05],[3.37122,-3.2482E-05],[3.3746,-3.8154E-05],[3.37798,-4.2278E-05],[3.38136,-3.506E-05],[3.38474,-3.8669E-05],[3.38812,-3.5576E-05],[3.3915,-3.506E-05],[3.39488,-3.7638E-05],[3.39826,-3.6091E-05],[3.40164,-4.2278E-05],[3.40502,-3.97E-05],[3.4084,-3.6091E-05],[3.41178,-3.8669E-05],[3.41516,-3.9185E-05],[3.41854,-3.5576E-05],[3.42192,-3.4544E-05],[3.4253,-3.7122E-05],[3.42868,-3.4029E-05],[3.43206,-3.6607E-05],[3.43544,-3.6607E-05],[3.43882,-3.6091E-05],[3.4422,-3.97E-05],[3.44558,-3.7122E-05],[3.44896,-4.0732E-05],[3.45234,-4.1763E-05],[3.45572,-3.7122E-05],[3.4591,-3.8669E-05],[3.46248,-3.7122E-05],[3.46586,-3.4029E-05],[3.46924,-3.4544E-05],[3.47262,-3.6607E-05],[3.476,-3.7638E-05],[3.47938,-3.7638E-05],[3.48276,-3.4544E-05],[3.48614,-3.5576E-05],[3.48952,-3.8154E-05],[3.4929,-3.3513E-05],[3.49628,-3.4544E-05],[3.49966,-3.3513E-05],[3.50304,-3.6091E-05],[3.50642,-3.97E-05],[3.5098,-3.7122E-05],[3.51318,-3.97E-05],[3.51656,-3.5576E-05],[3.51994,-3.7122E-05],[3.52332,-3.7122E-05],[3.5267,-3.6091E-05]]}
-{"quant":[3.49917,0.039255],"mems":[[3.40164,-4.2278E-05],[3.40502,-3.97E-05],[3.4084,-3.6091E-05],[3.41178,-3.8669E-05],[3.41516,-3.9185E-05],[3.41854,-3.5576E-05],[3.42192,-3.4544E-05],[3.4253,-3.7122E-05],[3.42868,-3.4029E-05],[3.43206,-3.6607E-05],[3.43544,-3.6607E-05],[3.43882,-3.6091E-05],[3.4422,-3.97E-05],[3.44558,-3.7122E-05],[3.44896,-4.0732E-05],[3.45234,-4.1763E-05],[3.45572,-3.7122E-05],[3.4591,-3.8669E-05],[3.46248,-3.7122E-05],[3.46586,-3.4029E-05],[3.46924,-3.4544E-05],[3.47262,-3.6607E-05],[3.476,-3.7638E-05],[3.47938,-3.7638E-05],[3.48276,-3.4544E-05],[3.48614,-3.5576E-05],[3.48952,-3.8154E-05],[3.4929,-3.3513E-05],[3.49628,-3.4544E-05],[3.49966,-3.3513E-05],[3.50304,-3.6091E-05],[3.50642,-3.97E-05],[3.5098,-3.7122E-05],[3.51318,-3.97E-05],[3.51656,-3.5576E-05],[3.51994,-3.7122E-05],[3.52332,-3.7122E-05],[3.5267,-3.6091E-05],[3.53008,-4.2278E-05],[3.53346,-3.9185E-05],[3.53684,-3.6607E-05],[3.54022,-3.97E-05],[3.5436,-3.6607E-05],[3.54698,-3.2482E-05],[3.55036,-3.6091E-05],[3.55374,-3.7122E-05],[3.55712,-3.2482E-05],[3.5605,-3.6091E-05],[3.56388,-3.97E-05],[3.56726,-3.97E-05],[3.57064,-4.1247E-05],[3.57402,-4.0732E-05],[3.5774,-4.0216E-05],[3.58078,-3.6607E-05],[3.58416,-3.2482E-05],[3.58754,-3.6091E-05],[3.59092,-4.0732E-05],[3.5943,-3.8154E-05],[3.59768,-3.9185E-05],[3.60106,-3.8669E-05],[3.60444,-3.4029E-05],[3.60782,-3.7638E-05],[3.6112,-4.0216E-05],[3.61458,-3.6091E-05],[3.61796,-2.8873E-05],[3.62134,-3.506E-05],[3.62472,-3.8154E-05],[3.6281,-3.97E-05],[3.63148,-4.0216E-05],[3.63486,-3.506E-05],[3.63824,-3.4544E-05],[3.64162,-3.7122E-05],[3.645,-4.4341E-05],[3.64838,-3.5576E-05],[3.65176,-3.1451E-05],[3.65514,-3.9185E-05],[3.65852,-3.4544E-05],[3.6619,-3.7638E-05],[3.66528,-3.8669E-05],[3.66866,-3.7638E-05],[3.67204,-4.1247E-05],[3.67542,-3.97E-05],[3.6788,-3.6607E-05],[3.68218,-3.6091E-05],[3.68556,-3.4029E-05],[3.68894,-3.2998E-05],[3.69232,-3.2482E-05],[3.6957,-3.2998E-05],[3.69908,-3.9185E-05]]}
-{"quant":[3.94967,0.07323],"mems":[[3.85118,-3.4029E-05],[3.85456,-3.1967E-05],[3.85794,-3.6091E-05],[3.86132,-3.7122E-05],[3.8647,-3.4544E-05],[3.86808,-3.7638E-05],[3.87146,-3.8669E-05],[3.87484,-3.7638E-05],[3.87822,-3.506E-05],[3.8816,-3.8154E-05],[3.88498,-3.8669E-05],[3.88836,-3.4544E-05],[3.89174,-3.7122E-05],[3.89512,-3.4544E-05],[3.8985,-3.6607E-05],[3.90188,-3.8154E-05],[3.90526,-3.4544E-05],[3.90864,-3.6091E-05],[3.91202,-3.506E-05],[3.9154,-3.6607E-05],[3.91878,-3.7638E-05],[3.92216,-3.8669E-05],[3.92554,-3.8154E-05],[3.92892,-3.4029E-05],[3.9323,-3.6607E-05],[3.93568,-3.2998E-05],[3.93906,-3.4029E-05],[3.94244,-4.0216E-05],[3.94582,-3.8669E-05],[3.9492,-3.6607E-05],[3.95258,-3.5576E-05],[3.95596,-3.6607E-05],[3.95934,-3.6091E-05],[3.96272,-3.8669E-05],[3.9661,-3.8154E-05],[3.96948,-3.1967E-05],[3.97286,-3.97E-05],[3.97624,-4.0216E-05],[3.97962,-3.506E-05],[3.983,-3.9185E-05],[3.98638,-3.6607E-05],[3.98976,-3.8669E-05],[3.99314,-3.97E-05],[3.99652,-3.2482E-05],[3.9999,-3.6607E-05],[4.00328,-3.7122E-05],[4.00666,-3.3513E-05],[4.01004,-3.5576E-05],[4.01342,-3.5576E-05],[4.0168,-3.5576E-05],[4.02018,-3.6091E-05],[4.02356,-3.5576E-05],[4.02694,-3.7638E-05],[4.03032,-3.7122E-05],[4.0337,-3.7122E-05],[4.03708,-3.7122E-05],[4.04046,-3.5576E-05],[4.04384,-3.97E-05],[4.04722,-3.9185E-05],[4.0506,-3.506E-05],[4.05398,-3.2998E-05],[4.05736,-3.6091E-05],[4.06074,-3.6091E-05],[4.06412,-3.2998E-05],[4.0675,-3.9185E-05],[4.07088,-3.6607E-05],[4.07426,-3.1967E-05],[4.07764,-3.4544E-05],[4.08102,-3.042E-05],[4.0844,-3.5576E-05],[4.08778,-4.1763E-05],[4.09116,-3.6091E-05],[4.09454,-3.9185E-05],[4.09792,-3.9185E-05],[4.1013,-3.4544E-05],[4.10468,-3.97E-05],[4.10806,-3.9185E-05],[4.11144,-3.6091E-05],[4.11482,-3.4544E-05],[4.1182,-3.2482E-05],[4.12158,-3.4544E-05],[4.12496,-3.6607E-05],[4.12834,-3.8669E-05],[4.13172,-3.0935E-05],[4.1351,-3.6091E-05],[4.13848,-4.4856E-05],[4.14186,-3.6091E-05],[4.14524,-3.506E-05],[4.14862,-3.3513E-05]]}
-{"quant":[4.3582,0.11379],"mems":[[4.26016,-4.0732E-05],[4.26354,-4.0732E-05],[4.26692,-3.4029E-05],[4.2703,-3.1451E-05],[4.27368,-3.2998E-05],[4.27706,-3.9185E-05],[4.28044,-4.0732E-05],[4.28382,-3.5576E-05],[4.2872,-3.506E-05],[4.29058,-3.2482E-05],[4.29396,-3.6091E-05],[4.29734,-4.0216E-05],[4.30072,-3.7638E-05],[4.3041,-4.0216E-05],[4.30748,-3.506E-05],[4.31086,-3.7122E-05],[4.31424,-3.5576E-05],[4.31762,-3.0935E-05],[4.321,-3.8669E-05],[4.32438,-3.7122E-05],[4.32776,-3.6091E-05],[4.33114,-4.0216E-05],[4.33452,-3.8154E-05],[4.3379,-3.7122E-05],[4.34128,-3.6607E-05],[4.34466,-3.4544E-05],[4.34804,-3.7122E-05],[4.35142,-3.7122E-05],[4.3548,-3.6091E-05],[4.35818,-3.7638E-05],[4.36156,-3.4029E-05],[4.36494,-3.4029E-05],[4.36832,-3.4029E-05],[4.3717,-3.5576E-05],[4.37508,-4.1763E-05],[4.37846,-3.9185E-05],[4.38184,-3.6091E-05],[4.38522,-3.8154E-05],[4.3886,-3.4544E-05],[4.39198,-3.1451E-05],[4.39536,-3.506E-05],[4.39874,-3.8669E-05],[4.40212,-3.9185E-05],[4.4055,-3.8669E-05],[4.40888,-3.8154E-05],[4.41226,-3.5576E-05],[4.41564,-3.8669E-05],[4.41902,-3.6091E-05],[4.4224,-3.4544E-05],[4.42578,-3.8154E-05],[4.42916,-3.8669E-05],[4.43254,-3.97E-05],[4.43592,-3.7638E-05],[4.4393,-3.6091E-05],[4.44268,-3.6607E-05],[4.44606,-3.7122E-05],[4.44944,-3.6607E-05],[4.45282,-3.7638E-05],[4.4562,-3.7638E-05],[4.45958,-3.9185E-05],[4.46296,-3.9185E-05],[4.46634,-3.2998E-05],[4.46972,-3.8154E-05],[4.4731,-3.6091E-05],[4.47648,-3.1967E-05],[4.47986,-3.4544E-05],[4.48324,-3.2998E-05],[4.48662,-3.7638E-05],[4.49,-3.8154E-05],[4.49338,-3.8154E-05],[4.49676,-3.9185E-05],[4.50014,-3.6607E-05],[4.50352,-3.2998E-05],[4.5069,-3.4544E-05],[4.51028,-4.0732E-05],[4.51366,-3.8154E-05],[4.51704,-3.9185E-05],[4.52042,-3.506E-05],[4.5238,-3.2482E-05],[4.52718,-4.1247E-05],[4.53056,-3.7122E-05],[4.53394,-3.6091E-05],[4.53732,-3.9185E-05],[4.5407,-3.2482E-05],[4.54408,-3.042E-05],[4.54746,-3.4544E-05],[4.55084,-3.9185E-05],[4.55422,-3.7122E-05],[4.5576,-3.506E-05]]}
-{"quant":[4.76327,0.15634],"mems":[[4.66576,-4.2278E-05],[4.66914,-4.0216E-05],[4.67252,-3.506E-05],[4.6759,-3.8669E-05],[4.67928,-3.4029E-05],[4.68266,-2.8357E-05],[4.68604,-3.7122E-05],[4.68942,-3.6607E-05],[4.6928,-3.2998E-05],[4.69618,-3.6091E-05],[4.69956,-3.6091E-05],[4.70294,-3.7638E-05],[4.70632,-3.7122E-05],[4.7097,-3.6607E-05],[4.71308,-3.7122E-05],[4.71646,-3.1451E-05],[4.71984,-2.9389E-05],[4.72322,-3.1451E-05],[4.7266,-3.3513E-05],[4.72998,-3.6607E-05],[4.73336,-3.6607E-05],[4.73674,-3.1967E-05],[4.74012,-3.1451E-05],[4.7435,-3.1451E-05],[4.74688,-3.1451E-05],[4.75026,-3.7638E-05],[4.75364,-3.8154E-05],[4.75702,-3.6091E-05],[4.7604,-3.6091E-05],[4.76378,-3.7122E-05],[4.76716,-4.0732E-05],[4.77054,-3.506E-05],[4.77392,-3.4544E-05],[4.7773,-3.7122E-05],[4.78068,-3.3513E-05],[4.78406,-3.3513E-05],[4.78744,-3.2482E-05],[4.79082,-3.3513E-05],[4.7942,-3.3513E-05],[4.79758,-3.2482E-05],[4.80096,-3.3513E-05],[4.80434,-3.4544E-05],[4.80772,-3.506E-05],[4.8111,-3.5576E-05],[4.81448,-3.9185E-05],[4.81786,-3.4544E-05],[4.82124,-3.0935E-05],[4.82462,-3.3513E-05],[4.828,-3.5576E-05],[4.83138,-3.97E-05],[4.83476,-3.7638E-05],[4.83814,-3.4029E-05],[4.84152,-3.4029E-05],[4.8449,-3.9185E-05],[4.84828,-3.6091E-05],[4.85166,-3.1451E-05],[4.85504,-3.3513E-05],[4.85842,-3.0935E-05],[4.8618,-3.8669E-05],[4.86518,-3.8669E-05],[4.86856,-3.2998E-05],[4.87194,-3.4544E-05],[4.87532,-3.1451E-05],[4.8787,-3.1451E-05],[4.88208,-3.7122E-05],[4.88546,-4.2278E-05],[4.88884,-4.2278E-05],[4.89222,-3.4544E-05],[4.8956,-3.1967E-05],[4.89898,-3.8154E-05],[4.90236,-3.7122E-05],[4.90574,-3.9185E-05],[4.90912,-4.0216E-05],[4.9125,-3.5576E-05],[4.91588,-3.5576E-05],[4.91926,-3.4029E-05],[4.92264,-3.9185E-05],[4.92602,-4.3825E-05],[4.9294,-3.8669E-05],[4.93278,-3.4029E-05],[4.93616,-3.8669E-05],[4.93954,-3.97E-05],[4.94292,-4.0216E-05],[4.9463,-4.0732E-05],[4.94968,-3.4544E-05],[4.95306,-3.4029E-05],[4.95644,-3.1967E-05],[4.95982,-3.2998E-05],[4.9632,-3.6607E-05]]}
-{"quant":[5.17965,0.19469],"mems":[[5.0815,-3.6091E-05],[5.08488,-3.5576E-05],[5.08826,-3.6091E-05],[5.09164,-3.5576E-05],[5.09502,-3.4544E-05],[5.0984,-3.2998E-05],[5.10178,-4.1763E-05],[5.10516,-4.1247E-05],[5.10854,-3.7638E-05],[5.11192,-3.5576E-05],[5.1153,-3.5576E-05],[5.11868,-3.8669E-05],[5.12206,-3.6091E-05],[5.12544,-3.4544E-05],[5.12882,-3.3513E-05],[5.1322,-3.4544E-05],[5.13558,-3.8154E-05],[5.13896,-3.9185E-05],[5.14234,-3.8669E-05],[5.14572,-3.6607E-05],[5.1491,-3.5576E-05],[5.15248,-3.6091E-05],[5.15586,-3.7122E-05],[5.15924,-3.97E-05],[5.16262,-4.1247E-05],[5.166,-3.6091E-05],[5.16938,-3.1451E-05],[5.17276,-3.0935E-05],[5.17614,-3.6091E-05],[5.17952,-4.0216E-05],[5.1829,-3.6091E-05],[5.18628,-3.8154E-05],[5.18966,-3.9185E-05],[5.19304,-3.4544E-05],[5.19642,-3.6607E-05],[5.1998,-3.4544E-05],[5.20318,-3.2998E-05],[5.20656,-3.6091E-05],[5.20994,-3.3513E-05],[5.21332,-3.1967E-05],[5.2167,-3.5576E-05],[5.22008,-3.7122E-05],[5.22346,-3.97E-05],[5.22684,-3.7638E-05],[5.23022,-3.4029E-05],[5.2336,-3.6607E-05],[5.23698,-3.8669E-05],[5.24036,-3.6607E-05],[5.24374,-3.8154E-05],[5.24712,-4.0216E-05],[5.2505,-3.7638E-05],[5.25388,-3.4029E-05],[5.25726,-3.4544E-05],[5.26064,-3.5576E-05],[5.26402,-3.506E-05],[5.2674,-3.506E-05],[5.27078,-3.5576E-05],[5.27416,-3.7638E-05],[5.27754,-3.506E-05],[5.28092,-3.7122E-05],[5.2843,-3.9185E-05],[5.28768,-3.6091E-05],[5.29106,-3.8669E-05],[5.29444,-4.1247E-05],[5.29782,-3.97E-05],[5.3012,-3.8669E-05],[5.30458,-4.2278E-05],[5.30796,-4.1247E-05],[5.31134,-3.6607E-05],[5.31472,-3.6091E-05],[5.3181,-3.6091E-05],[5.32148,-4.2794E-05],[5.32486,-4.3309E-05],[5.32824,-3.3513E-05],[5.33162,-3.3513E-05],[5.335,-3.7122E-05],[5.33838,-3.4544E-05],[5.34176,-3.2482E-05],[5.34514,-3.4544E-05],[5.34852,-3.7638E-05],[5.3519,-3.7122E-05],[5.35528,-3.7122E-05],[5.35866,-3.7122E-05],[5.36204,-3.7638E-05],[5.36542,-3.4544E-05],[5.3688,-3.2482E-05],[5.37218,-3.5576E-05],[5.37556,-3.8154E-05],[5.37894,-4.0216E-05]]}
-{"quant":[5.56034,0.23705],"mems":[[5.62906,-3.6607E-05],[5.63244,-3.97E-05],[5.63582,-3.8669E-05],[5.6392,-3.8154E-05],[5.64258,-3.506E-05],[5.64596,-4.0216E-05],[5.64934,-3.9185E-05],[5.65272,-3.6091E-05],[5.6561,-3.6607E-05],[5.65948,-3.6607E-05],[5.66286,-3.6091E-05],[5.66624,-3.3513E-05],[5.66962,-3.97E-05],[5.673,-3.6091E-05],[5.6764373,-3.3513E-05],[5.6798747,-3.8154E-05],[5.683312,-3.6607E-05],[5.6867493,-3.8669E-05],[5.6901867,-3.6091E-05],[5.693624,-3.9185E-05],[5.6970613,-4.1763E-05],[5.7004987,-3.6091E-05],[5.703936,-3.4544E-05],[5.7073733,-3.7638E-05],[5.7108107,-4.2278E-05],[5.714248,-3.6091E-05],[5.7176853,-3.4029E-05],[5.7211227,-3.6607E-05],[5.72456,-3.506E-05],[5.7279973,-4.1247E-05],[5.7314347,-4.2794E-05],[5.734872,-3.6607E-05],[5.7383093,-3.2998E-05],[5.7417467,-3.1967E-05],[5.745184,-3.8669E-05],[5.7486213,-4.1247E-05],[5.7520587,-3.7122E-05],[5.755496,-3.9185E-05],[5.7589333,-3.7122E-05],[5.7623707,-2.9389E-05],[5.765808,-3.6091E-05],[5.7692453,-4.3309E-05],[5.7726827,-3.6091E-05],[5.77612,-3.7122E-05],[5.7795573,-3.6607E-05],[5.7829947,-3.2998E-05],[5.786432,-3.8154E-05],[5.7898693,-3.7122E-05],[5.7933067,-3.97E-05],[5.796744,-3.8669E-05],[5.8001813,-3.506E-05],[5.8036187,-3.506E-05],[5.807056,-3.2998E-05],[5.8104933,-3.7122E-05],[5.8139307,-3.7638E-05],[5.817368,-3.6091E-05],[5.8208053,-4.1763E-05],[5.8242427,-4.0732E-05],[5.82768,-3.8669E-05],[5.8311173,-3.8154E-05],[5.8345547,-3.6091E-05],[5.837992,-3.4544E-05],[5.8414293,-3.2482E-05],[5.8448667,-3.6091E-05],[5.848304,-4.2278E-05],[5.8517413,-3.9185E-05],[5.8551787,-3.506E-05],[5.858616,-3.506E-05],[5.8620533,-3.506E-05],[5.8654907,-3.6607E-05],[5.868928,-3.6607E-05],[5.8723653,-4.1247E-05],[5.8758027,-4.2794E-05],[5.87924,-3.5576E-05],[5.8826773,-3.5576E-05],[5.8861147,-3.8154E-05],[5.889552,-3.9185E-05],[5.8929893,-3.9185E-05],[5.8964267,-3.506E-05],[5.899864,-3.8669E-05],[5.9033013,-3.9185E-05],[5.9067387,-3.7122E-05],[5.910176,-3.7638E-05]]}
-{"quant":[5.96166,0.28148],"mems":[[5.8620533,-3.506E-05],[5.8654907,-3.6607E-05],[5.868928,-3.6607E-05],[5.8723653,-4.1247E-05],[5.8758027,-4.2794E-05],[5.87924,-3.5576E-05],[5.8826773,-3.5576E-05],[5.8861147,-3.8154E-05],[5.889552,-3.9185E-05],[5.8929893,-3.9185E-05],[5.8964267,-3.506E-05],[5.899864,-3.8669E-05],[5.9033013,-3.9185E-05],[5.9067387,-3.7122E-05],[5.910176,-3.7638E-05],[5.9136133,-3.7122E-05],[5.9170507,-3.7638E-05],[5.920488,-3.7638E-05],[5.9239253,-3.97E-05],[5.9273627,-3.6607E-05],[5.9308,-3.5576E-05],[5.9342373,-3.8669E-05],[5.9376747,-3.6091E-05],[5.941112,-3.6607E-05],[5.9445493,-3.6607E-05],[5.9479867,-3.5576E-05],[5.951424,-3.8669E-05],[5.9548613,-3.7638E-05],[5.9582987,-3.6091E-05],[5.961736,-3.7638E-05],[5.9651733,-3.6607E-05],[5.9686107,-3.8154E-05],[5.972048,-3.7122E-05],[5.9754853,-3.6091E-05],[5.9789227,-3.6607E-05],[5.98236,-3.4544E-05],[5.9857973,-3.3513E-05],[5.9892347,-3.2482E-05],[5.992672,-3.5576E-05],[5.9961093,-3.7122E-05],[5.9995467,-3.7638E-05],[6.002984,-3.7638E-05],[6.0064213,-3.8154E-05],[6.0098587,-4.2794E-05],[6.013296,-4.1763E-05],[6.0167333,-3.7638E-05],[6.0201707,-3.5576E-05],[6.023608,-3.6091E-05],[6.0270453,-3.97E-05],[6.0304827,-3.9185E-05],[6.03392,-4.0216E-05],[6.0373573,-3.6091E-05],[6.0407947,-3.2482E-05],[6.044232,-3.8669E-05],[6.0476693,-3.9185E-05],[6.0511067,-3.506E-05],[6.054544,-3.2998E-05],[6.0579813,-3.4029E-05],[6.0614187,-3.7638E-05],[6.064856,-3.6091E-05],[6.0682933,-3.6607E-05],[6.0717307,-3.9185E-05],[6.075168,-3.8669E-05],[6.0786053,-3.8669E-05],[6.0820427,-3.9185E-05],[6.08548,-3.7122E-05],[6.0889173,-3.7638E-05],[6.0923547,-3.7122E-05],[6.095792,-3.6607E-05],[6.0992293,-3.9185E-05],[6.1026667,-3.6607E-05],[6.106104,-3.6091E-05],[6.1095413,-3.7638E-05],[6.1129787,-3.6607E-05],[6.116416,-3.5576E-05],[6.1198533,-3.506E-05],[6.1232907,-3.5576E-05],[6.126728,-3.4029E-05],[6.1301653,-3.3513E-05],[6.1336027,-3.5576E-05],[6.13704,-3.6091E-05],[6.1404773,-3.3513E-05],[6.1439147,-3.5576E-05],[6.147352,-3.8669E-05],[6.1507893,-3.8154E-05],[6.1542267,-3.7122E-05],[6.157664,-3.7638E-05],[6.1611013,-3.7122E-05]]}
-{"quant":[6.36107,0.3178],"mems":[[6.2642213,-3.6091E-05],[6.2676587,-3.9185E-05],[6.271096,-4.3309E-05],[6.2745333,-3.8669E-05],[6.2779707,-3.6607E-05],[6.281408,-3.7122E-05],[6.2848453,-3.9185E-05],[6.2882827,-4.1247E-05],[6.29172,-4.0216E-05],[6.2951573,-3.8669E-05],[6.2985947,-3.7638E-05],[6.302032,-3.6607E-05],[6.3054693,-3.6091E-05],[6.3089067,-3.7122E-05],[6.312344,-4.0216E-05],[6.3157813,-3.8154E-05],[6.3192187,-3.4544E-05],[6.322656,-3.7638E-05],[6.3260933,-3.6607E-05],[6.3295307,-4.0216E-05],[6.332968,-3.9185E-05],[6.3364053,-3.3513E-05],[6.3398427,-3.7122E-05],[6.34328,-3.6091E-05],[6.3467173,-3.9185E-05],[6.3501547,-4.3309E-05],[6.353592,-4.0216E-05],[6.3570293,-3.6091E-05],[6.3604667,-3.4544E-05],[6.363904,-3.6607E-05],[6.3673413,-3.9185E-05],[6.3707787,-3.9185E-05],[6.374216,-3.7638E-05],[6.3776533,-3.6091E-05],[6.3810907,-3.2998E-05],[6.384528,-3.6091E-05],[6.3879653,-3.5576E-05],[6.3914027,-3.2482E-05],[6.39484,-3.2998E-05],[6.3982773,-3.2998E-05],[6.4017147,-3.2998E-05],[6.405152,-3.2998E-05],[6.4085893,-3.4029E-05],[6.4120267,-3.8154E-05],[6.415464,-3.4544E-05],[6.4189013,-2.8357E-05],[6.4223387,-3.2482E-05],[6.425776,-3.9185E-05],[6.4292133,-3.7638E-05],[6.4326507,-3.1451E-05],[6.436088,-3.5576E-05],[6.4395253,-3.7638E-05],[6.4429627,-3.6607E-05],[6.4464,-4.0732E-05],[6.4498373,-3.6091E-05],[6.4532747,-3.4544E-05],[6.456712,-3.7638E-05],[6.4601493,-3.2998E-05],[6.4635867,-3.2998E-05],[6.467024,-3.6091E-05],[6.4704613,-3.8669E-05],[6.4738987,-3.8154E-05],[6.477336,-3.8154E-05],[6.4807733,-3.7122E-05],[6.4842107,-3.6091E-05],[6.487648,-4.0732E-05],[6.4910853,-4.1247E-05],[6.4945227,-4.1763E-05],[6.49796,-4.1247E-05],[6.5013973,-3.9185E-05],[6.5048347,-3.8154E-05],[6.508272,-3.6091E-05],[6.5117093,-3.7122E-05],[6.5151467,-3.7122E-05],[6.518584,-4.1763E-05],[6.5220213,-3.97E-05],[6.5254587,-3.4544E-05],[6.528896,-4.0216E-05],[6.5323333,-3.9185E-05],[6.5357707,-3.6607E-05],[6.539208,-3.7122E-05],[6.5426453,-3.7638E-05],[6.5460827,-3.8154E-05],[6.54952,-3.7638E-05],[6.5529573,-3.8154E-05],[6.5563947,-3.506E-05],[6.559832,-3.2998E-05]]}
-{"quant":[6.7617,0.35098],"mems":[[6.662952,-3.6091E-05],[6.6663893,-3.4029E-05],[6.6698267,-3.8154E-05],[6.673264,-3.97E-05],[6.6767013,-3.7638E-05],[6.6801387,-3.2482E-05],[6.683576,-3.4544E-05],[6.6870133,-3.5576E-05],[6.6904507,-3.2998E-05],[6.693888,-3.5576E-05],[6.6973253,-3.8154E-05],[6.7007627,-3.7122E-05],[6.7042,-3.6091E-05],[6.7076373,-3.8669E-05],[6.7110747,-3.506E-05],[6.714512,-3.4544E-05],[6.7179493,-4.0216E-05],[6.7213867,-4.1247E-05],[6.724824,-3.97E-05],[6.7282613,-4.0732E-05],[6.7316987,-4.1763E-05],[6.735136,-3.7122E-05],[6.7385733,-3.7122E-05],[6.7420107,-4.1247E-05],[6.745448,-3.97E-05],[6.7488853,-3.3513E-05],[6.7523227,-3.5576E-05],[6.75576,-3.4029E-05],[6.7591973,-3.4544E-05],[6.7626347,-3.6607E-05],[6.766072,-3.1967E-05],[6.7695093,-3.9185E-05],[6.7729467,-3.5576E-05],[6.776384,-3.2482E-05],[6.7798213,-3.506E-05],[6.7832587,-3.2998E-05],[6.786696,-3.6607E-05],[6.7901333,-3.506E-05],[6.7935707,-3.6091E-05],[6.797008,-3.4544E-05],[6.8004453,-3.2998E-05],[6.8038827,-3.506E-05],[6.80732,-3.6607E-05],[6.8107573,-3.9185E-05],[6.8141947,-3.5576E-05],[6.817632,-3.506E-05],[6.8210693,-3.6091E-05],[6.8245067,-3.506E-05],[6.827944,-3.7638E-05],[6.8313813,-3.8154E-05],[6.8348187,-3.9185E-05],[6.838256,-3.5576E-05],[6.8416933,-3.2482E-05],[6.8451307,-3.6607E-05],[6.848568,-3.6091E-05],[6.8520053,-3.8154E-05],[6.8554427,-3.6607E-05],[6.85888,-3.042E-05],[6.8623173,-3.2482E-05],[6.8657547,-3.506E-05],[6.869192,-3.9185E-05],[6.8726293,-3.9185E-05],[6.8760667,-3.4029E-05],[6.879504,-3.2482E-05],[6.8829413,-3.6607E-05],[6.8863787,-4.0732E-05],[6.889816,-4.1247E-05],[6.8932533,-4.1247E-05],[6.8966907,-3.6607E-05],[6.900128,-2.9389E-05],[6.9035653,-3.2998E-05],[6.9070027,-3.6607E-05],[6.91044,-3.8154E-05],[6.9138773,-3.8669E-05],[6.9173147,-3.5576E-05],[6.920752,-3.5576E-05],[6.9241893,-3.4029E-05],[6.9276267,-3.6607E-05],[6.931064,-4.1763E-05],[6.9345013,-3.8669E-05],[6.9379387,-3.4544E-05],[6.941376,-3.506E-05],[6.9448133,-3.8154E-05],[6.9482507,-3.7638E-05],[6.951688,-3.6607E-05],[6.9551253,-3.4544E-05],[6.9585627,-3.4029E-05]]}
-{"quant":[7.15817,0.38984],"mems":[[7.0582453,-3.506E-05],[7.0616827,-3.1967E-05],[7.06512,-4.0216E-05],[7.0685573,-4.1247E-05],[7.0719947,-3.8669E-05],[7.075432,-3.6607E-05],[7.0788693,-3.1967E-05],[7.0823067,-3.2998E-05],[7.085744,-3.7638E-05],[7.0891813,-3.8154E-05],[7.0926187,-3.506E-05],[7.096056,-3.5576E-05],[7.0994933,-3.5576E-05],[7.1029307,-3.506E-05],[7.106368,-3.97E-05],[7.1098053,-4.0732E-05],[7.1132427,-3.97E-05],[7.11668,-3.5576E-05],[7.1201173,-3.1451E-05],[7.1235547,-3.6091E-05],[7.126992,-3.97E-05],[7.1304293,-4.0216E-05],[7.1338667,-3.7122E-05],[7.137304,-3.6607E-05],[7.1407413,-3.4029E-05],[7.1441787,-3.3513E-05],[7.147616,-3.97E-05],[7.1510533,-3.7122E-05],[7.1544907,-3.8154E-05],[7.157928,-4.0216E-05],[7.1613653,-3.6091E-05],[7.1648027,-3.9185E-05],[7.16824,-3.7638E-05],[7.1716773,-3.506E-05],[7.1751147,-3.7122E-05],[7.178552,-3.3513E-05],[7.1819893,-3.4544E-05],[7.1854267,-4.0732E-05],[7.188864,-3.5576E-05],[7.1923013,-3.6091E-05],[7.1957387,-3.8154E-05],[7.199176,-3.506E-05],[7.2026133,-4.0216E-05],[7.2060507,-4.1763E-05],[7.209488,-3.7638E-05],[7.2129253,-3.5576E-05],[7.2163627,-3.9185E-05],[7.2198,-3.97E-05],[7.2232373,-3.7122E-05],[7.2266747,-3.7122E-05],[7.230112,-3.2482E-05],[7.2335493,-3.4544E-05],[7.2369867,-3.6607E-05],[7.240424,-3.7638E-05],[7.2438613,-3.6607E-05],[7.2472987,-3.4544E-05],[7.250736,-3.4029E-05],[7.2541733,-3.3513E-05],[7.2576107,-3.8154E-05],[7.261048,-3.5576E-05],[7.2644853,-3.3513E-05],[7.2679227,-3.97E-05],[7.27136,-3.97E-05],[7.2747973,-3.6091E-05],[7.2782347,-3.5576E-05],[7.281672,-3.7122E-05],[7.2851093,-3.6091E-05],[7.2885467,-3.8154E-05],[7.291984,-3.5576E-05],[7.2954213,-3.4029E-05],[7.2988587,-3.6607E-05],[7.302296,-3.5576E-05],[7.3057333,-3.8669E-05],[7.3091707,-3.6607E-05],[7.312608,-3.8154E-05],[7.3160453,-3.97E-05],[7.3194827,-3.2998E-05],[7.32292,-3.7638E-05],[7.3263573,-3.8154E-05],[7.3297947,-3.7638E-05],[7.333232,-3.9185E-05],[7.3366693,-3.506E-05],[7.3401067,-3.5576E-05],[7.343544,-3.8669E-05],[7.3469813,-4.1247E-05],[7.3504187,-3.6607E-05],[7.353856,-3.7638E-05],[7.3572933,-3.9185E-05]]}
-{"quant":[7.55165,0.42399],"mems":[[7.4535387,-3.6607E-05],[7.456976,-3.6091E-05],[7.4604133,-3.6091E-05],[7.4638507,-3.3513E-05],[7.467288,-3.2998E-05],[7.4707253,-3.3513E-05],[7.4741627,-3.3513E-05],[7.4776,-3.506E-05],[7.4810373,-3.8154E-05],[7.4844747,-4.0732E-05],[7.487912,-3.8154E-05],[7.4913493,-3.4544E-05],[7.4947867,-3.8669E-05],[7.498224,-3.5576E-05],[7.5016613,-3.7122E-05],[7.5050987,-4.5372E-05],[7.508536,-3.7122E-05],[7.5119733,-3.506E-05],[7.5154107,-4.0216E-05],[7.518848,-4.0216E-05],[7.5222853,-3.4544E-05],[7.5257227,-3.4544E-05],[7.52916,-3.97E-05],[7.5325973,-3.4029E-05],[7.5360347,-3.4029E-05],[7.539472,-3.5576E-05],[7.5429093,-3.3513E-05],[7.5463467,-3.506E-05],[7.549784,-3.8669E-05],[7.5532213,-3.8154E-05],[7.5566587,-3.7122E-05],[7.560096,-3.7638E-05],[7.5635333,-3.6607E-05],[7.5669707,-3.9185E-05],[7.570408,-4.0216E-05],[7.5738453,-3.5576E-05],[7.5772827,-3.1967E-05],[7.58072,-3.5576E-05],[7.5841573,-4.0732E-05],[7.5875947,-3.97E-05],[7.591032,-3.7638E-05],[7.5944693,-3.4544E-05],[7.5979067,-3.4029E-05],[7.601344,-3.7638E-05],[7.6047813,-3.8669E-05],[7.6082187,-3.8154E-05],[7.611656,-3.1451E-05],[7.6150933,-3.3513E-05],[7.6185307,-3.8154E-05],[7.621968,-3.7638E-05],[7.6254053,-3.97E-05],[7.6288427,-3.7122E-05],[7.63228,-3.4544E-05],[7.6357173,-3.1451E-05],[7.6391547,-3.4029E-05],[7.642592,-3.6091E-05],[7.6460293,-3.6091E-05],[7.6494667,-3.8669E-05],[7.652904,-3.4029E-05],[7.6563413,-3.4544E-05],[7.6597787,-3.2998E-05],[7.663216,-3.506E-05],[7.6666533,-3.5576E-05],[7.6700907,-3.3513E-05],[7.673528,-4.0732E-05],[7.6769653,-3.7638E-05],[7.6804027,-4.1247E-05],[7.68384,-4.0732E-05],[7.6872773,-3.4029E-05],[7.6907147,-3.97E-05],[7.694152,-3.8154E-05],[7.6975893,-3.4029E-05],[7.7010267,-3.2482E-05],[7.704464,-3.0935E-05],[7.7079013,-3.6091E-05],[7.7113387,-4.1247E-05],[7.714776,-3.5576E-05],[7.7182133,-3.2482E-05],[7.7216507,-3.7122E-05],[7.725088,-3.7638E-05],[7.7285253,-4.0216E-05],[7.7319627,-4.1247E-05],[7.7354,-3.506E-05],[7.7388373,-3.4029E-05],[7.7422747,-3.7122E-05],[7.745712,-3.6091E-05],[7.7491493,-3.97E-05]]}
-{"quant":[7.94485,0.45403],"mems":[[7.8453947,-3.97E-05],[7.848832,-3.7122E-05],[7.8522693,-3.506E-05],[7.8557067,-3.4544E-05],[7.859144,-3.6091E-05],[7.8625813,-3.97E-05],[7.8660187,-3.7122E-05],[7.869456,-3.4544E-05],[7.8728933,-3.4544E-05],[7.8763307,-3.506E-05],[7.879768,-3.6607E-05],[7.8832053,-4.0732E-05],[7.8866427,-3.8154E-05],[7.89008,-3.6091E-05],[7.8935173,-3.6091E-05],[7.8969547,-3.2482E-05],[7.900392,-3.6607E-05],[7.9038293,-4.2794E-05],[7.9072667,-4.3309E-05],[7.910704,-4.2278E-05],[7.9141413,-3.7638E-05],[7.9175787,-3.4544E-05],[7.921016,-3.7122E-05],[7.9244533,-3.8154E-05],[7.9278907,-3.6607E-05],[7.931328,-3.7122E-05],[7.9347653,-3.4544E-05],[7.9382027,-3.3513E-05],[7.94164,-3.5576E-05],[7.9450773,-4.0732E-05],[7.9485147,-4.1763E-05],[7.951952,-3.5576E-05],[7.9553893,-3.5576E-05],[7.9588267,-3.6091E-05],[7.962264,-3.97E-05],[7.9657013,-4.1763E-05],[7.9691387,-3.7122E-05],[7.972576,-3.6091E-05],[7.9760133,-3.4029E-05],[7.9794507,-3.9185E-05],[7.982888,-4.0216E-05],[7.9863253,-3.7122E-05],[7.9897627,-3.8669E-05],[7.9932,-3.2998E-05],[7.9966373,-3.042E-05],[8.0000747,-3.5576E-05],[8.003512,-3.8669E-05],[8.0069493,-3.9185E-05],[8.0103867,-3.9185E-05],[8.013824,-3.6607E-05],[8.0172613,-3.5576E-05],[8.0206987,-3.5576E-05],[8.024136,-3.7122E-05],[8.0275733,-3.8154E-05],[8.0310107,-3.8154E-05],[8.034448,-4.1763E-05],[8.0378853,-3.8154E-05],[8.0413227,-3.4544E-05],[8.04476,-3.6607E-05],[8.0481973,-3.8154E-05],[8.0516347,-3.97E-05],[8.055072,-3.6607E-05],[8.0585093,-3.506E-05],[8.0619467,-3.97E-05],[8.065384,-4.2278E-05],[8.0688213,-4.0216E-05],[8.0722587,-3.8154E-05],[8.075696,-3.4544E-05],[8.0791333,-3.3513E-05],[8.0825707,-3.6607E-05],[8.086008,-3.4544E-05],[8.0894453,-3.6091E-05],[8.0928827,-3.506E-05],[8.09632,-3.042E-05],[8.0997573,-3.6607E-05],[8.1031947,-4.1763E-05],[8.106632,-4.2794E-05],[8.1100693,-3.7638E-05],[8.1135067,-3.2482E-05],[8.116944,-3.6091E-05],[8.1203813,-3.5576E-05],[8.1238187,-3.6091E-05],[8.127256,-3.6091E-05],[8.1306933,-3.5576E-05],[8.1341307,-3.5576E-05],[8.137568,-2.9389E-05],[8.1410053,-3.2998E-05],[8.1444427,-3.8154E-05]]}
-{"quant":[8.3372,0.48764],"mems":[[8.35408,-3.7122E-05],[8.357516,-3.5576E-05],[8.360952,-3.5576E-05],[8.364388,-3.5576E-05],[8.367824,-3.8669E-05],[8.37126,-4.1247E-05],[8.374696,-3.7638E-05],[8.378132,-3.4544E-05],[8.381568,-3.7122E-05],[8.385004,-3.9185E-05],[8.38844,-3.8154E-05],[8.391876,-3.506E-05],[8.395312,-3.4029E-05],[8.398748,-3.4544E-05],[8.402184,-3.7122E-05],[8.40562,-3.8154E-05],[8.409056,-3.8154E-05],[8.412492,-3.5576E-05],[8.415928,-3.2482E-05],[8.419364,-3.8669E-05],[8.4228,-4.1247E-05],[8.426236,-4.0216E-05],[8.429672,-3.7638E-05],[8.433108,-3.2482E-05],[8.436544,-3.506E-05],[8.43998,-3.7122E-05],[8.443416,-3.506E-05],[8.446852,-3.9185E-05],[8.450288,-3.8154E-05],[8.453724,-3.1967E-05],[8.45716,-3.7638E-05],[8.460596,-4.1247E-05],[8.464032,-4.2794E-05],[8.467468,-4.3309E-05],[8.470904,-3.97E-05],[8.47434,-4.0216E-05],[8.477776,-3.4029E-05],[8.481212,-3.4544E-05],[8.484648,-4.0732E-05],[8.488084,-3.5576E-05],[8.49152,-3.5576E-05],[8.494956,-3.97E-05],[8.498392,-3.7638E-05],[8.501828,-3.8669E-05],[8.505264,-3.9185E-05],[8.5087,-3.8669E-05],[8.512136,-4.0216E-05],[8.515572,-3.7122E-05],[8.519008,-3.2998E-05],[8.522444,-3.3513E-05],[8.52588,-3.7122E-05],[8.529316,-3.5576E-05],[8.532752,-3.7638E-05],[8.536188,-3.97E-05],[8.539624,-3.7638E-05],[8.54306,-3.9185E-05],[8.546496,-3.6607E-05],[8.549932,-3.7122E-05],[8.553368,-3.8669E-05],[8.556804,-3.6091E-05],[8.56024,-3.6091E-05],[8.563676,-3.4544E-05],[8.567112,-3.6607E-05],[8.570548,-4.0216E-05],[8.573984,-3.4029E-05],[8.57742,-3.2482E-05],[8.580856,-3.8154E-05],[8.584292,-3.6091E-05],[8.587728,-3.5576E-05],[8.591164,-3.4029E-05],[8.5946,-3.3513E-05],[8.598036,-4.0732E-05],[8.601472,-3.7122E-05],[8.604908,-3.506E-05],[8.608344,-3.8669E-05],[8.61178,-3.506E-05],[8.615216,-3.3513E-05],[8.618652,-3.6607E-05],[8.622088,-3.9185E-05],[8.625524,-3.506E-05],[8.62896,-3.2998E-05],[8.632396,-3.2482E-05],[8.635832,-3.2482E-05],[8.639268,-3.8154E-05]]}
-{"quant":[8.79885,0.51339],"mems":[[8.701116,-3.506E-05],[8.704552,-3.8669E-05],[8.707988,-4.0732E-05],[8.711424,-3.7122E-05],[8.71486,-3.6607E-05],[8.718296,-3.6091E-05],[8.721732,-3.7122E-05],[8.725168,-3.7122E-05],[8.728604,-3.5576E-05],[8.73204,-3.6091E-05],[8.735476,-3.5576E-05],[8.738912,-3.7122E-05],[8.742348,-3.7638E-05],[8.745784,-3.5576E-05],[8.74922,-3.7638E-05],[8.752656,-3.6607E-05],[8.756092,-3.4029E-05],[8.759528,-3.3513E-05],[8.762964,-3.6091E-05],[8.7664,-3.8669E-05],[8.769836,-3.506E-05],[8.773272,-3.506E-05],[8.776708,-3.5576E-05],[8.780144,-3.9185E-05],[8.78358,-4.1247E-05],[8.787016,-3.6091E-05],[8.790452,-3.4544E-05],[8.793888,-3.506E-05],[8.797324,-3.6607E-05],[8.80076,-3.5576E-05],[8.804196,-3.8669E-05],[8.807632,-4.0732E-05],[8.811068,-3.7122E-05],[8.814504,-3.5576E-05],[8.81794,-3.6607E-05],[8.821376,-4.0732E-05],[8.824812,-3.7638E-05],[8.828248,-3.8154E-05],[8.831684,-4.0732E-05],[8.83512,-3.3513E-05],[8.838556,-3.6091E-05],[8.841992,-4.1247E-05],[8.845428,-4.0732E-05],[8.848864,-4.1247E-05],[8.8523,-3.7122E-05],[8.855736,-3.7638E-05],[8.859172,-3.7122E-05],[8.862608,-3.8154E-05],[8.866044,-3.8669E-05],[8.86948,-3.6091E-05],[8.872916,-3.8669E-05],[8.876352,-3.7638E-05],[8.879788,-3.7122E-05],[8.883224,-3.9185E-05],[8.88666,-3.7122E-05],[8.890096,-3.3513E-05],[8.893532,-3.7122E-05],[8.896968,-3.8669E-05],[8.900404,-3.4029E-05],[8.90384,-3.506E-05],[8.907276,-3.6091E-05],[8.910712,-3.4544E-05],[8.914148,-3.2482E-05],[8.917584,-3.6607E-05],[8.92102,-3.506E-05],[8.924456,-3.6091E-05],[8.927892,-3.7638E-05],[8.931328,-3.3513E-05],[8.934764,-3.9185E-05],[8.9382,-3.5576E-05],[8.941636,-3.6607E-05],[8.945072,-4.2278E-05],[8.948508,-3.5576E-05],[8.951944,-3.506E-05],[8.95538,-3.506E-05],[8.958816,-3.5576E-05],[8.962252,-3.6607E-05],[8.965688,-3.5576E-05],[8.969124,-3.7638E-05],[8.97256,-3.3513E-05],[8.975996,-3.0935E-05],[8.979432,-3.6607E-05],[8.982868,-3.6091E-05],[8.986304,-3.506E-05],[8.98974,-3.8669E-05],[8.993176,-3.8154E-05],[8.996612,-3.97E-05]]}
-{"quant":[9.17983,0.54603],"mems":[[9.082512,-3.6607E-05],[9.085948,-3.2482E-05],[9.089384,-3.0935E-05],[9.09282,-2.9904E-05],[9.096256,-3.5576E-05],[9.099692,-3.9185E-05],[9.103128,-3.2998E-05],[9.106564,-3.8154E-05],[9.11,-3.8669E-05],[9.113436,-3.2482E-05],[9.116872,-3.5576E-05],[9.120308,-3.9185E-05],[9.123744,-3.9185E-05],[9.12718,-3.506E-05],[9.130616,-3.7122E-05],[9.134052,-3.8154E-05],[9.137488,-3.6091E-05],[9.140924,-3.6607E-05],[9.14436,-3.4544E-05],[9.147796,-3.7638E-05],[9.151232,-3.5576E-05],[9.154668,-3.4029E-05],[9.158104,-3.7122E-05],[9.16154,-3.6607E-05],[9.164976,-3.8154E-05],[9.168412,-3.8154E-05],[9.171848,-3.9185E-05],[9.175284,-4.0732E-05],[9.17872,-4.1763E-05],[9.182156,-3.97E-05],[9.185592,-3.9185E-05],[9.189028,-3.6091E-05],[9.192464,-3.2998E-05],[9.1959,-3.7122E-05],[9.199336,-3.4544E-05],[9.202772,-3.4029E-05],[9.206208,-3.2998E-05],[9.209644,-3.6091E-05],[9.21308,-3.7638E-05],[9.216516,-3.7638E-05],[9.219952,-4.0216E-05],[9.223388,-3.4029E-05],[9.226824,-3.7638E-05],[9.23026,-3.8154E-05],[9.233696,-3.2482E-05],[9.237132,-3.97E-05],[9.240568,-4.0216E-05],[9.244004,-3.6091E-05],[9.24744,-3.6091E-05],[9.250876,-3.4029E-05],[9.254312,-3.2482E-05],[9.257748,-3.506E-05],[9.261184,-3.8154E-05],[9.26462,-4.1247E-05],[9.268056,-3.8154E-05],[9.271492,-3.506E-05],[9.274928,-3.7638E-05],[9.278364,-3.9185E-05],[9.2818,-3.6091E-05],[9.285236,-3.6607E-05],[9.288672,-3.6607E-05],[9.292108,-3.5576E-05],[9.295544,-3.9185E-05],[9.29898,-3.9185E-05],[9.302416,-3.7638E-05],[9.305852,-3.7122E-05],[9.309288,-3.4029E-05],[9.312724,-3.5576E-05],[9.31616,-3.97E-05],[9.319596,-3.8154E-05],[9.323032,-3.7638E-05],[9.326468,-3.8669E-05],[9.329904,-3.7122E-05],[9.33334,-3.3513E-05],[9.336776,-3.3513E-05],[9.340212,-3.4544E-05],[9.343648,-3.6091E-05],[9.347084,-3.8154E-05],[9.35052,-3.6607E-05],[9.353956,-3.6091E-05],[9.357392,-3.3513E-05],[9.360828,-3.3513E-05],[9.364264,-4.0216E-05],[9.3677,-4.1763E-05],[9.371136,-3.4544E-05],[9.374572,-3.2998E-05],[9.378008,-3.6091E-05]]}
-{"quant":[9.55184,0.58804],"mems":[[9.4536,-3.2998E-05],[9.457036,-3.6091E-05],[9.460472,-3.7638E-05],[9.463908,-3.5576E-05],[9.467344,-3.2998E-05],[9.47078,-3.1451E-05],[9.474216,-3.8154E-05],[9.477652,-3.6607E-05],[9.481088,-3.2998E-05],[9.484524,-3.8669E-05],[9.48796,-3.7638E-05],[9.491396,-3.4544E-05],[9.494832,-3.506E-05],[9.498268,-3.4544E-05],[9.501704,-3.8154E-05],[9.50514,-3.8154E-05],[9.508576,-3.6607E-05],[9.512012,-3.8669E-05],[9.515448,-3.506E-05],[9.518884,-3.5576E-05],[9.52232,-3.5576E-05],[9.525756,-3.5576E-05],[9.529192,-3.7638E-05],[9.532628,-3.4029E-05],[9.536064,-3.4029E-05],[9.5395,-3.6091E-05],[9.542936,-3.8669E-05],[9.546372,-3.9185E-05],[9.549808,-3.6091E-05],[9.553244,-3.6607E-05],[9.55668,-4.1763E-05],[9.560116,-4.1763E-05],[9.563552,-3.97E-05],[9.566988,-3.8669E-05],[9.570424,-3.6607E-05],[9.57386,-3.6607E-05],[9.577296,-4.0216E-05],[9.580732,-3.8669E-05],[9.584168,-3.4029E-05],[9.587604,-3.8154E-05],[9.59104,-3.5576E-05],[9.594476,-3.2998E-05],[9.597912,-3.7638E-05],[9.601348,-3.97E-05],[9.604784,-4.2794E-05],[9.60822,-3.6091E-05],[9.611656,-3.0935E-05],[9.615092,-3.5576E-05],[9.618528,-3.7638E-05],[9.621964,-3.7122E-05],[9.6254,-3.7638E-05],[9.628836,-3.8154E-05],[9.632272,-3.2482E-05],[9.635708,-3.4029E-05],[9.639144,-3.97E-05],[9.64258,-3.97E-05],[9.646016,-4.1247E-05],[9.649452,-3.8154E-05],[9.652888,-3.6091E-05],[9.656324,-3.6607E-05],[9.65976,-3.5576E-05],[9.663196,-3.4029E-05],[9.666632,-3.3513E-05],[9.670068,-3.7638E-05],[9.673504,-3.6607E-05],[9.67694,-3.4029E-05],[9.680376,-3.7122E-05],[9.683812,-3.7122E-05],[9.687248,-3.7638E-05],[9.690684,-3.8154E-05],[9.69412,-3.3513E-05],[9.697556,-3.6091E-05],[9.700992,-3.5576E-05],[9.704428,-3.4029E-05],[9.707864,-3.8154E-05],[9.7113,-3.6607E-05],[9.714736,-3.0935E-05],[9.718172,-3.0935E-05],[9.721608,-3.6091E-05],[9.725044,-3.9185E-05],[9.72848,-3.8669E-05],[9.731916,-3.5576E-05],[9.735352,-3.506E-05],[9.738788,-3.7122E-05],[9.742224,-4.0732E-05],[9.74566,-3.6607E-05],[9.749096,-3.4029E-05]]}
-{"quant":[9.92039,0.62552],"mems":[[9.821252,-3.9185E-05],[9.824688,-3.8669E-05],[9.828124,-3.506E-05],[9.83156,-3.4029E-05],[9.834996,-3.506E-05],[9.838432,-4.1247E-05],[9.841868,-4.0732E-05],[9.845304,-3.8669E-05],[9.84874,-3.8669E-05],[9.852176,-3.3513E-05],[9.855612,-3.3513E-05],[9.859048,-3.4029E-05],[9.862484,-3.5576E-05],[9.86592,-3.506E-05],[9.869356,-3.7122E-05],[9.872792,-3.9185E-05],[9.876228,-3.8669E-05],[9.879664,-3.8154E-05],[9.8831,-3.6607E-05],[9.886536,-3.97E-05],[9.889972,-3.8669E-05],[9.893408,-3.6091E-05],[9.896844,-3.8669E-05],[9.90028,-4.0732E-05],[9.903716,-3.97E-05],[9.907152,-3.7638E-05],[9.910588,-3.6607E-05],[9.914024,-3.4029E-05],[9.91746,-3.5576E-05],[9.920896,-3.8154E-05],[9.924332,-3.8154E-05],[9.927768,-4.0216E-05],[9.931204,-4.0216E-05],[9.93464,-3.4544E-05],[9.938076,-3.5576E-05],[9.941512,-3.7638E-05],[9.944948,-3.506E-05],[9.948384,-3.9185E-05],[9.95182,-3.8669E-05],[9.955256,-3.3513E-05],[9.958692,-3.5576E-05],[9.962128,-3.7122E-05],[9.965564,-3.6091E-05],[9.969,-3.8669E-05],[9.972436,-3.7122E-05],[9.975872,-3.6091E-05],[9.979308,-3.9185E-05],[9.982744,-3.7122E-05],[9.98618,-3.4544E-05],[9.989616,-3.1967E-05],[9.993052,-3.1967E-05],[9.996488,-3.1967E-05],[9.999924,-3.506E-05],[10.00336,-4.3309E-05],[10.006796,-4.0216E-05],[10.010232,-3.3513E-05],[10.013668,-3.0935E-05],[10.017104,-3.4029E-05],[10.02054,-3.6091E-05],[10.023976,-3.8154E-05],[10.027412,-3.8669E-05],[10.030848,-3.3513E-05],[10.034284,-3.5576E-05],[10.03772,-3.4029E-05],[10.041156,-3.2998E-05],[10.044592,-4.0732E-05],[10.048028,-3.97E-05],[10.051464,-3.506E-05],[10.0549,-3.4544E-05],[10.058336,-3.4029E-05],[10.061772,-3.7638E-05],[10.065208,-4.2794E-05],[10.068644,-3.7638E-05],[10.07208,-3.4544E-05],[10.075516,-3.8669E-05],[10.078952,-4.0216E-05],[10.082388,-4.0216E-05],[10.085824,-4.2278E-05],[10.08926,-4.1247E-05],[10.092696,-3.4029E-05],[10.096132,-3.7122E-05],[10.099568,-4.3825E-05],[10.103004,-4.1763E-05],[10.10644,-3.9185E-05],[10.109876,-3.3513E-05],[10.113312,-3.0935E-05],[10.116748,-3.6607E-05],[10.120184,-3.6091E-05]]}
-{"quant":[10.2904,0.66067],"mems":[[10.19234,-3.7638E-05],[10.195776,-3.7638E-05],[10.199212,-3.6607E-05],[10.202648,-3.7122E-05],[10.206084,-3.1451E-05],[10.20952,-3.4029E-05],[10.212956,-3.6091E-05],[10.216392,-3.6607E-05],[10.219828,-3.8154E-05],[10.223264,-3.1967E-05],[10.2267,-3.506E-05],[10.230136,-3.5576E-05],[10.233572,-3.4029E-05],[10.237008,-3.8669E-05],[10.240444,-3.8669E-05],[10.24388,-4.0732E-05],[10.247316,-3.7122E-05],[10.250752,-3.1451E-05],[10.254188,-3.6607E-05],[10.257624,-3.9185E-05],[10.26106,-3.7122E-05],[10.264496,-3.7638E-05],[10.267932,-3.7122E-05],[10.271368,-3.4029E-05],[10.274804,-3.5576E-05],[10.27824,-3.8669E-05],[10.281676,-3.8669E-05],[10.285112,-3.6607E-05],[10.288548,-3.4029E-05],[10.291984,-3.506E-05],[10.29542,-3.6607E-05],[10.298856,-4.0732E-05],[10.302292,-4.0732E-05],[10.305728,-3.506E-05],[10.309164,-3.3513E-05],[10.3126,-3.2482E-05],[10.316036,-3.1967E-05],[10.319472,-3.6091E-05],[10.322908,-3.8154E-05],[10.326344,-3.97E-05],[10.32978,-3.6607E-05],[10.333216,-3.506E-05],[10.336652,-3.9185E-05],[10.340088,-3.8669E-05],[10.343524,-3.6091E-05],[10.34696,-3.5576E-05],[10.350396,-3.6607E-05],[10.353832,-3.7122E-05],[10.357268,-3.4029E-05],[10.360704,-3.9185E-05],[10.36414,-4.1247E-05],[10.367576,-3.506E-05],[10.371012,-3.4544E-05],[10.374448,-3.7638E-05],[10.377884,-3.8669E-05],[10.38132,-3.7122E-05],[10.384756,-3.7122E-05],[10.388192,-3.6607E-05],[10.391628,-3.4544E-05],[10.395064,-3.2482E-05],[10.3985,-3.506E-05],[10.401936,-4.4341E-05],[10.405372,-4.0732E-05],[10.408808,-3.4029E-05],[10.412244,-3.506E-05],[10.41568,-3.7122E-05],[10.419116,-3.8669E-05],[10.422552,-3.6607E-05],[10.425988,-3.7122E-05],[10.429424,-3.6607E-05],[10.43286,-3.3513E-05],[10.436296,-3.6607E-05],[10.439732,-4.0216E-05],[10.443168,-3.7122E-05],[10.446604,-3.5576E-05],[10.45004,-3.4029E-05],[10.453476,-3.0935E-05],[10.456912,-3.3513E-05],[10.460348,-3.8669E-05],[10.463784,-4.2278E-05],[10.46722,-3.6091E-05],[10.470656,-3.4029E-05],[10.474092,-3.8669E-05],[10.477528,-3.97E-05],[10.480964,-4.0732E-05],[10.4844,-3.7122E-05],[10.487836,-3.6607E-05]]}
-{"quant":[10.6649,0.69102],"mems":[[10.666508,-3.8154E-05],[10.669944,-3.5576E-05],[10.67338,-3.6607E-05],[10.676816,-3.6091E-05],[10.680252,-3.2482E-05],[10.683688,-3.0935E-05],[10.687124,-3.2482E-05],[10.69056,-3.2998E-05],[10.693996,-3.6091E-05],[10.697432,-3.4029E-05],[10.700868,-3.042E-05],[10.704304,-3.4544E-05],[10.70774,-3.506E-05],[10.711176,-3.6607E-05],[10.714612,-3.6091E-05],[10.718048,-3.042E-05],[10.721484,-3.4544E-05],[10.72492,-3.4544E-05],[10.728356,-3.1451E-05],[10.731792,-3.2482E-05],[10.735228,-3.3513E-05],[10.738664,-4.0216E-05],[10.7421,-3.8669E-05],[10.745536,-3.7638E-05],[10.748972,-3.7122E-05],[10.752408,-3.506E-05],[10.755844,-3.8154E-05],[10.75928,-3.4029E-05],[10.762716,-3.5576E-05],[10.766152,-3.8154E-05],[10.769588,-3.6607E-05],[10.773024,-3.6091E-05],[10.77646,-3.7122E-05],[10.779896,-3.7122E-05],[10.783332,-3.97E-05],[10.786768,-3.8154E-05],[10.790204,-3.1451E-05],[10.79364,-3.7122E-05],[10.797076,-4.1763E-05],[10.800512,-3.97E-05],[10.803948,-3.506E-05],[10.807384,-3.6607E-05],[10.81082,-3.8154E-05],[10.814256,-3.7638E-05],[10.817692,-3.8154E-05],[10.821128,-3.4544E-05],[10.824564,-3.9185E-05],[10.828,-4.3309E-05],[10.831436,-4.0732E-05],[10.834872,-3.6607E-05],[10.838308,-3.506E-05],[10.841744,-3.2998E-05],[10.84518,-3.2482E-05],[10.848616,-3.6607E-05],[10.852052,-3.7638E-05],[10.855488,-3.7638E-05],[10.858924,-3.6607E-05],[10.86236,-3.7638E-05],[10.865796,-3.8669E-05],[10.869232,-3.7122E-05],[10.872668,-3.7122E-05],[10.876104,-3.8669E-05],[10.87954,-3.7638E-05],[10.882976,-3.506E-05],[10.886412,-3.4029E-05],[10.889848,-3.4029E-05],[10.893284,-3.7122E-05],[10.89672,-3.506E-05],[10.900156,-3.4029E-05],[10.903592,-3.5576E-05],[10.907028,-3.2482E-05],[10.910464,-3.506E-05],[10.9139,-3.4544E-05],[10.917336,-3.7638E-05],[10.920772,-4.1763E-05],[10.924208,-3.7122E-05],[10.927644,-3.1967E-05],[10.93108,-2.9389E-05],[10.934516,-3.3513E-05],[10.937952,-3.4029E-05],[10.941388,-3.8154E-05],[10.944824,-3.97E-05],[10.94826,-3.2998E-05],[10.951696,-3.5576E-05],[10.955132,-3.7122E-05]]}
-{"quant":[11.0436,0.71299],"mems":[[10.944824,-3.97E-05],[10.94826,-3.2998E-05],[10.951696,-3.5576E-05],[10.955132,-3.7122E-05],[10.958568,-3.5576E-05],[10.962004,-3.8154E-05],[10.96544,-3.4544E-05],[10.968876,-3.1967E-05],[10.972312,-3.5576E-05],[10.975748,-3.7638E-05],[10.979184,-3.7122E-05],[10.98262,-3.8669E-05],[10.986056,-3.7638E-05],[10.989492,-3.1967E-05],[10.992928,-3.3513E-05],[10.996364,-4.0732E-05],[10.9998,-3.97E-05],[11.003236,-3.6091E-05],[11.006672,-3.506E-05],[11.010108,-3.3513E-05],[11.013544,-4.0732E-05],[11.01698,-4.0216E-05],[11.020416,-3.4544E-05],[11.023852,-3.3513E-05],[11.027288,-2.9904E-05],[11.030724,-3.4544E-05],[11.03416,-3.9185E-05],[11.037596,-4.0216E-05],[11.041032,-4.1763E-05],[11.044468,-3.6091E-05],[11.047904,-3.7122E-05],[11.05134,-3.8154E-05],[11.054776,-3.6091E-05],[11.058212,-3.8669E-05],[11.061648,-3.6607E-05],[11.065084,-3.4544E-05],[11.06852,-3.4029E-05],[11.071956,-3.4544E-05],[11.075392,-3.4544E-05],[11.078828,-3.4544E-05],[11.082264,-3.4029E-05],[11.0857,-3.1967E-05],[11.089136,-3.7638E-05],[11.092572,-4.0732E-05],[11.096008,-4.1247E-05],[11.099444,-3.8669E-05],[11.10288,-3.6607E-05],[11.106316,-3.6607E-05],[11.109752,-3.2998E-05],[11.113188,-3.7122E-05],[11.116624,-4.0216E-05],[11.12006,-4.1247E-05],[11.123496,-3.7122E-05],[11.126932,-3.506E-05],[11.130368,-3.4544E-05],[11.133804,-2.9389E-05],[11.13724,-3.506E-05],[11.140676,-3.9185E-05],[11.144112,-3.8154E-05],[11.147548,-3.4029E-05],[11.150984,-3.8154E-05],[11.15442,-4.5372E-05],[11.157856,-4.0732E-05],[11.161292,-3.7122E-05],[11.164728,-3.1451E-05],[11.168164,-3.6091E-05],[11.1716,-4.2794E-05],[11.175036,-4.1247E-05],[11.178472,-4.0216E-05],[11.181908,-3.6607E-05],[11.185344,-3.8669E-05],[11.18878,-3.7122E-05],[11.192216,-3.7122E-05],[11.195652,-3.8154E-05],[11.199088,-3.6607E-05],[11.202524,-3.7122E-05],[11.20596,-3.2482E-05],[11.209396,-3.2482E-05],[11.212832,-3.6607E-05],[11.216268,-3.8669E-05],[11.219704,-3.7638E-05],[11.22314,-4.0216E-05],[11.226576,-3.9185E-05],[11.230012,-2.9904E-05],[11.233448,-3.2998E-05],[11.236884,-3.6607E-05],[11.24032,-3.9185E-05]]}
-{"quant":[11.4453,0.72986],"mems":[[11.346836,-3.6091E-05],[11.350272,-3.1967E-05],[11.353708,-3.8669E-05],[11.357144,-3.7638E-05],[11.36058,-3.506E-05],[11.364016,-3.4029E-05],[11.367452,-3.1967E-05],[11.370888,-3.2998E-05],[11.374324,-3.4029E-05],[11.37776,-3.8154E-05],[11.381196,-3.9185E-05],[11.384632,-3.6607E-05],[11.388068,-3.4544E-05],[11.391504,-3.4544E-05],[11.39494,-3.97E-05],[11.398376,-3.97E-05],[11.401812,-3.506E-05],[11.405248,-3.7122E-05],[11.408684,-3.7638E-05],[11.41212,-3.4029E-05],[11.415556,-3.4544E-05],[11.418992,-3.506E-05],[11.422428,-3.7122E-05],[11.425864,-3.7122E-05],[11.4293,-3.0935E-05],[11.432736,-3.6091E-05],[11.436172,-4.1763E-05],[11.439608,-3.7122E-05],[11.443044,-3.8669E-05],[11.44648,-3.8154E-05],[11.449916,-3.506E-05],[11.453352,-3.7122E-05],[11.456788,-3.8154E-05],[11.460224,-4.1763E-05],[11.46366,-3.9185E-05],[11.467096,-3.2482E-05],[11.470532,-3.2482E-05],[11.473968,-3.3513E-05],[11.477404,-3.7122E-05],[11.48084,-3.4029E-05],[11.484276,-3.1451E-05],[11.487712,-3.7122E-05],[11.491148,-3.8669E-05],[11.494584,-4.1247E-05],[11.49802,-4.0216E-05],[11.501456,-3.4544E-05],[11.504892,-3.7638E-05],[11.508328,-3.7638E-05],[11.511764,-3.9185E-05],[11.5152,-4.2278E-05],[11.518636,-3.8669E-05],[11.522072,-3.5576E-05],[11.525508,-3.3513E-05],[11.528944,-3.2482E-05],[11.53238,-3.4029E-05],[11.535816,-3.7122E-05],[11.539252,-3.4544E-05],[11.542688,-3.6607E-05],[11.546124,-3.8669E-05],[11.54956,-3.7638E-05],[11.552996,-3.8669E-05],[11.556432,-3.5576E-05],[11.559868,-3.2482E-05],[11.563304,-3.3513E-05],[11.56674,-3.2998E-05],[11.570176,-3.1967E-05],[11.573612,-3.9185E-05],[11.577048,-4.1247E-05],[11.580484,-4.2278E-05],[11.58392,-4.3825E-05],[11.587356,-3.506E-05],[11.590792,-3.1967E-05],[11.594228,-3.506E-05],[11.597664,-3.6607E-05],[11.6011,-3.4544E-05],[11.604536,-3.4544E-05],[11.607972,-3.5576E-05],[11.611408,-3.7638E-05],[11.614844,-4.3309E-05],[11.61828,-4.0216E-05],[11.621716,-3.6091E-05],[11.625152,-3.2998E-05],[11.628588,-3.4029E-05],[11.632024,-3.8669E-05],[11.63546,-3.7638E-05],[11.638896,-3.7122E-05],[11.642332,-3.6607E-05]]}
-{"quant":[11.8062,0.75497],"mems":[[11.707616,-3.6091E-05],[11.711052,-4.1247E-05],[11.714488,-3.5576E-05],[11.717924,-3.7638E-05],[11.72136,-3.7122E-05],[11.724796,-3.3513E-05],[11.728232,-3.6091E-05],[11.731668,-3.6607E-05],[11.735104,-3.4029E-05],[11.73854,-3.7122E-05],[11.741976,-3.7122E-05],[11.745412,-3.0935E-05],[11.748848,-3.2482E-05],[11.752284,-3.6607E-05],[11.75572,-3.6091E-05],[11.759156,-3.6607E-05],[11.762592,-3.8154E-05],[11.766028,-3.5576E-05],[11.769464,-3.1451E-05],[11.7729,-3.506E-05],[11.776336,-3.4544E-05],[11.779772,-3.3513E-05],[11.783208,-3.4544E-05],[11.786644,-3.2998E-05],[11.79008,-3.4029E-05],[11.793516,-3.6091E-05],[11.796952,-3.2998E-05],[11.800388,-3.1967E-05],[11.803824,-3.5576E-05],[11.80726,-3.4544E-05],[11.810696,-3.6607E-05],[11.814132,-3.8154E-05],[11.817568,-3.5576E-05],[11.821004,-3.8669E-05],[11.82444,-3.4544E-05],[11.827876,-3.2482E-05],[11.831312,-3.8669E-05],[11.834748,-3.5576E-05],[11.838184,-2.9904E-05],[11.84162,-3.506E-05],[11.845056,-3.8669E-05],[11.848492,-3.2998E-05],[11.851928,-3.4029E-05],[11.855364,-3.6607E-05],[11.8588,-3.6607E-05],[11.862236,-3.6607E-05],[11.865672,-3.0935E-05],[11.869108,-3.6091E-05],[11.872544,-3.97E-05],[11.87598,-3.3513E-05],[11.879416,-3.7122E-05],[11.882852,-3.4544E-05],[11.886288,-3.5576E-05],[11.889724,-3.9185E-05],[11.89316,-3.4544E-05],[11.896596,-3.5576E-05],[11.900032,-3.0935E-05],[11.903468,-2.8873E-05],[11.906904,-3.3513E-05],[11.91034,-3.2482E-05],[11.913776,-3.506E-05],[11.917212,-3.97E-05],[11.920648,-3.97E-05],[11.924084,-3.8669E-05],[11.92752,-4.0216E-05],[11.930956,-3.9185E-05],[11.934392,-3.4544E-05],[11.937828,-3.7122E-05],[11.941264,-4.1247E-05],[11.9447,-3.7638E-05],[11.948136,-3.6091E-05],[11.951572,-3.8669E-05],[11.955008,-3.97E-05],[11.958444,-3.8154E-05],[11.96188,-3.7638E-05],[11.965316,-3.4029E-05],[11.968752,-3.4029E-05],[11.972188,-3.7638E-05],[11.975624,-3.8154E-05],[11.97906,-3.9185E-05],[11.982496,-3.7122E-05],[11.985932,-3.2482E-05],[11.989368,-3.4544E-05],[11.992804,-4.0216E-05],[11.99624,-3.8669E-05],[11.999676,-3.6607E-05],[12.003112,-3.9185E-05]]}
-{"quant":[12.1596,0.7918],"mems":[[12.061524,-3.7638E-05],[12.06496,-3.3513E-05],[12.068396,-3.5576E-05],[12.071832,-3.97E-05],[12.075268,-4.0216E-05],[12.078704,-3.97E-05],[12.08214,-3.6607E-05],[12.085576,-2.9904E-05],[12.089012,-3.2482E-05],[12.092448,-3.8669E-05],[12.095884,-4.1247E-05],[12.09932,-3.8669E-05],[12.102756,-3.506E-05],[12.106192,-4.0732E-05],[12.109628,-3.4029E-05],[12.113064,-3.1451E-05],[12.1165,-3.8669E-05],[12.119936,-3.4544E-05],[12.123372,-3.5576E-05],[12.126808,-3.1967E-05],[12.130244,-2.8873E-05],[12.13368,-3.7122E-05],[12.137116,-3.8154E-05],[12.140552,-3.9185E-05],[12.143988,-3.7122E-05],[12.147424,-3.2998E-05],[12.15086,-3.6607E-05],[12.154296,-3.7122E-05],[12.157732,-4.1247E-05],[12.161168,-3.8669E-05],[12.164604,-3.1967E-05],[12.16804,-3.506E-05],[12.171476,-3.6091E-05],[12.174912,-3.8669E-05],[12.178348,-3.506E-05],[12.181784,-3.4029E-05],[12.18522,-3.97E-05],[12.188656,-3.6091E-05],[12.192092,-3.6091E-05],[12.195528,-3.8669E-05],[12.198964,-3.7638E-05],[12.2024,-3.506E-05],[12.205836,-3.2482E-05],[12.209272,-3.506E-05],[12.212708,-4.1247E-05],[12.216144,-3.8669E-05],[12.21958,-3.4544E-05],[12.223016,-3.5576E-05],[12.226452,-3.4544E-05],[12.229888,-3.8154E-05],[12.233324,-3.8154E-05],[12.23676,-3.506E-05],[12.240196,-3.8154E-05],[12.243632,-3.7638E-05],[12.247068,-3.8154E-05],[12.250504,-4.2278E-05],[12.25394,-4.2278E-05],[12.257376,-4.2794E-05],[12.260812,-4.1247E-05],[12.264248,-3.4544E-05],[12.267684,-3.0935E-05],[12.27112,-3.5576E-05],[12.274556,-3.9185E-05],[12.277992,-3.9185E-05],[12.281428,-3.8154E-05],[12.284864,-3.6607E-05],[12.2883,-3.506E-05],[12.291736,-3.5576E-05],[12.295172,-3.8154E-05],[12.298608,-3.8669E-05],[12.302044,-3.9185E-05],[12.30548,-3.4544E-05],[12.308916,-3.0935E-05],[12.312352,-3.6607E-05],[12.315788,-3.506E-05],[12.319224,-3.506E-05],[12.32266,-3.5576E-05],[12.326096,-3.4029E-05],[12.329532,-3.4029E-05],[12.332968,-3.6607E-05],[12.336404,-3.6607E-05],[12.33984,-3.4544E-05],[12.343276,-3.6607E-05],[12.346712,-3.4544E-05],[12.350148,-3.7638E-05],[12.353584,-3.9185E-05],[12.35702,-4.0216E-05]]}
-{"quant":[12.5157,0.82598],"mems":[[12.418868,-3.7638E-05],[12.422304,-3.6607E-05],[12.42574,-3.8154E-05],[12.429176,-3.7638E-05],[12.432612,-3.6607E-05],[12.436048,-3.8154E-05],[12.439484,-3.9185E-05],[12.44292,-3.5576E-05],[12.446356,-3.6607E-05],[12.449792,-4.3309E-05],[12.453228,-3.8669E-05],[12.456664,-3.2998E-05],[12.4601,-3.4544E-05],[12.463536,-3.5576E-05],[12.466972,-3.4544E-05],[12.470408,-3.3513E-05],[12.473844,-3.6091E-05],[12.47728,-3.7122E-05],[12.480716,-3.3513E-05],[12.484152,-3.7122E-05],[12.487588,-3.6607E-05],[12.491024,-3.4029E-05],[12.49446,-3.97E-05],[12.497896,-3.97E-05],[12.501332,-3.97E-05],[12.504768,-3.4544E-05],[12.508204,-3.5576E-05],[12.51164,-4.2278E-05],[12.515076,-4.0732E-05],[12.518512,-4.0216E-05],[12.521948,-3.4544E-05],[12.525384,-3.3513E-05],[12.52882,-3.8154E-05],[12.532256,-3.5576E-05],[12.535692,-3.6607E-05],[12.539128,-4.0216E-05],[12.542564,-3.6091E-05],[12.546,-3.2998E-05],[12.549436,-3.5576E-05],[12.552872,-3.8154E-05],[12.556308,-4.2278E-05],[12.559744,-3.7122E-05],[12.56318,-3.4544E-05],[12.566616,-3.8669E-05],[12.570052,-3.97E-05],[12.573488,-3.8669E-05],[12.576924,-3.1451E-05],[12.58036,-3.2998E-05],[12.583796,-3.6091E-05],[12.587232,-3.1967E-05],[12.590668,-3.2998E-05],[12.594104,-3.506E-05],[12.59754,-3.5576E-05],[12.600976,-3.6607E-05],[12.604412,-3.4544E-05],[12.607848,-3.042E-05],[12.611284,-3.4544E-05],[12.61472,-3.7638E-05],[12.618156,-3.4544E-05],[12.621592,-3.4029E-05],[12.625028,-3.2998E-05],[12.628464,-3.6607E-05],[12.6319,-3.7638E-05],[12.635336,-3.506E-05],[12.638772,-4.1247E-05],[12.642208,-3.9185E-05],[12.645644,-3.0935E-05],[12.64908,-3.1967E-05],[12.652516,-3.7638E-05],[12.655952,-3.97E-05],[12.659388,-3.5576E-05],[12.662824,-3.9185E-05],[12.66626,-3.97E-05],[12.669696,-4.0216E-05],[12.673132,-4.3309E-05],[12.676568,-3.4544E-05],[12.680004,-3.506E-05],[12.68344,-3.7638E-05],[12.686876,-3.3513E-05],[12.690312,-3.506E-05],[12.693748,-3.4544E-05],[12.697184,-3.7122E-05],[12.70062,-3.9185E-05],[12.704056,-4.0216E-05],[12.707492,-4.0216E-05],[12.710928,-3.506E-05],[12.714364,-3.506E-05]]}
-{"quant":[12.8781,0.85042],"mems":[[12.779648,-3.6607E-05],[12.783084,-3.97E-05],[12.78652,-3.7122E-05],[12.789956,-3.506E-05],[12.793392,-3.7122E-05],[12.796828,-3.8154E-05],[12.800264,-3.6091E-05],[12.8037,-3.2482E-05],[12.807136,-3.2482E-05],[12.810572,-4.0216E-05],[12.814008,-3.97E-05],[12.817444,-3.4544E-05],[12.82088,-3.97E-05],[12.824316,-3.5576E-05],[12.827752,-3.6091E-05],[12.831188,-4.4341E-05],[12.834624,-3.8154E-05],[12.83806,-3.4029E-05],[12.841496,-3.4029E-05],[12.844932,-3.4029E-05],[12.848368,-3.2482E-05],[12.851804,-3.1451E-05],[12.85524,-3.9185E-05],[12.858676,-3.97E-05],[12.862112,-4.0216E-05],[12.865548,-3.7122E-05],[12.868984,-3.506E-05],[12.87242,-3.7122E-05],[12.875856,-3.506E-05],[12.879292,-3.6091E-05],[12.882728,-3.4029E-05],[12.886164,-3.4544E-05],[12.8896,-3.506E-05],[12.893036,-3.5576E-05],[12.896472,-4.0216E-05],[12.899908,-3.9185E-05],[12.903344,-3.4544E-05],[12.90678,-3.1451E-05],[12.910216,-3.6607E-05],[12.913652,-4.0216E-05],[12.917088,-3.7638E-05],[12.920524,-3.9185E-05],[12.92396,-3.8669E-05],[12.927396,-3.6091E-05],[12.930832,-3.7122E-05],[12.934268,-3.7122E-05],[12.937704,-3.8154E-05],[12.94114,-3.7638E-05],[12.944576,-3.5576E-05],[12.948012,-3.6607E-05],[12.951448,-3.4029E-05],[12.954884,-4.1247E-05],[12.95832,-3.97E-05],[12.961756,-3.2998E-05],[12.965192,-3.8669E-05],[12.968628,-3.7638E-05],[12.972064,-3.8154E-05],[12.9755,-3.7638E-05],[12.978936,-3.2998E-05],[12.982372,-3.4544E-05],[12.985808,-3.6607E-05],[12.989244,-3.8154E-05],[12.99268,-3.7122E-05],[12.996116,-3.506E-05],[12.999552,-3.506E-05],[13.002988,-3.7122E-05],[13.006424,-3.6607E-05],[13.00986,-3.6091E-05],[13.013296,-3.6091E-05],[13.016732,-3.7122E-05],[13.020168,-4.0732E-05],[13.023604,-3.2998E-05],[13.02704,-2.9389E-05],[13.030476,-3.5576E-05],[13.033912,-3.8154E-05],[13.037348,-3.8154E-05],[13.040784,-3.5576E-05],[13.04422,-2.8873E-05],[13.047656,-3.4029E-05],[13.051092,-4.1763E-05],[13.054528,-3.5576E-05],[13.057964,-3.7122E-05],[13.0614,-3.6091E-05],[13.064836,-3.4029E-05],[13.068272,-3.8669E-05],[13.071708,-3.7122E-05],[13.075144,-3.7122E-05]]}
-{"quant":[13.2295,0.86985],"mems":[[13.212584,-3.1451E-05],[13.21602,-3.3513E-05],[13.219456,-3.7638E-05],[13.222892,-3.3513E-05],[13.226328,-3.6607E-05],[13.229764,-3.97E-05],[13.2332,-3.8669E-05],[13.236636,-3.7122E-05],[13.240072,-3.6607E-05],[13.243508,-3.3513E-05],[13.246944,-3.4544E-05],[13.25038,-3.7638E-05],[13.253816,-3.4544E-05],[13.257252,-3.4029E-05],[13.260688,-3.4544E-05],[13.264124,-3.7122E-05],[13.26756,-3.5576E-05],[13.270996,-3.6091E-05],[13.274432,-3.8154E-05],[13.277868,-3.4544E-05],[13.281304,-3.3513E-05],[13.28474,-2.9389E-05],[13.288176,-3.6091E-05],[13.291612,-4.1763E-05],[13.295048,-3.4544E-05],[13.298484,-3.7122E-05],[13.30192,-3.4544E-05],[13.305356,-3.4029E-05],[13.308792,-3.6091E-05],[13.312228,-3.506E-05],[13.315664,-3.6607E-05],[13.3191,-3.042E-05],[13.322536,-3.2482E-05],[13.325972,-3.7638E-05],[13.329408,-3.8154E-05],[13.332844,-3.7638E-05],[13.33628,-3.8154E-05],[13.339716,-4.1247E-05],[13.343152,-3.8669E-05],[13.346588,-3.6607E-05],[13.350024,-3.3513E-05],[13.35346,-3.7638E-05],[13.356896,-4.0216E-05],[13.360332,-3.4029E-05],[13.363768,-3.6091E-05],[13.367204,-4.1763E-05],[13.37064,-4.3309E-05],[13.374076,-3.5576E-05],[13.377512,-2.8873E-05],[13.380948,-3.4029E-05],[13.384384,-3.4029E-05],[13.38782,-3.4029E-05],[13.391256,-3.506E-05],[13.394692,-3.6091E-05],[13.398128,-3.8669E-05],[13.401564,-3.4029E-05],[13.405,-4.0216E-05],[13.408439,-3.8669E-05],[13.411877,-3.3513E-05],[13.415316,-3.97E-05],[13.418755,-3.1967E-05],[13.422193,-3.2482E-05],[13.425632,-3.506E-05],[13.429071,-3.2482E-05],[13.432509,-3.6091E-05],[13.435948,-3.7122E-05],[13.439387,-3.8154E-05],[13.442825,-3.2482E-05],[13.446264,-3.506E-05],[13.449703,-3.8154E-05],[13.453141,-3.2482E-05],[13.45658,-3.4544E-05],[13.460019,-3.6607E-05],[13.463457,-3.3513E-05],[13.466896,-3.5576E-05],[13.470335,-3.8154E-05],[13.473773,-3.7638E-05],[13.477212,-3.6091E-05],[13.480651,-3.3513E-05],[13.484089,-3.7122E-05],[13.487528,-3.5576E-05],[13.490967,-3.7122E-05],[13.494405,-4.0216E-05],[13.497844,-3.7638E-05],[13.501283,-3.5576E-05],[13.504721,-3.3513E-05]]}
-{"quant":[13.5965,0.88784],"mems":[[13.497844,-3.7638E-05],[13.501283,-3.5576E-05],[13.504721,-3.3513E-05],[13.50816,-3.6607E-05],[13.511599,-3.4544E-05],[13.515037,-3.4544E-05],[13.518476,-3.8669E-05],[13.521915,-3.5576E-05],[13.525353,-3.4544E-05],[13.528792,-3.8669E-05],[13.532231,-4.0732E-05],[13.535669,-3.506E-05],[13.539108,-3.7122E-05],[13.542547,-3.7638E-05],[13.545985,-3.4029E-05],[13.549424,-3.9185E-05],[13.552863,-3.6607E-05],[13.556301,-3.2998E-05],[13.55974,-3.4544E-05],[13.563179,-3.506E-05],[13.566617,-3.8154E-05],[13.570056,-3.2998E-05],[13.573495,-3.506E-05],[13.576933,-4.1247E-05],[13.580372,-3.4029E-05],[13.583811,-3.4544E-05],[13.587249,-3.9185E-05],[13.590688,-3.97E-05],[13.594127,-3.8154E-05],[13.597565,-3.4029E-05],[13.601004,-3.6607E-05],[13.604443,-3.7638E-05],[13.607881,-3.7122E-05],[13.61132,-3.7122E-05],[13.614759,-3.7122E-05],[13.618197,-3.6607E-05],[13.621636,-3.4544E-05],[13.625075,-3.6607E-05],[13.628513,-3.6607E-05],[13.631952,-3.2482E-05],[13.635391,-3.2482E-05],[13.638829,-3.5576E-05],[13.642268,-3.2998E-05],[13.645707,-2.8357E-05],[13.649145,-3.042E-05],[13.652584,-3.7122E-05],[13.656023,-4.2278E-05],[13.659461,-3.8154E-05],[13.6629,-3.2998E-05],[13.666339,-3.4029E-05],[13.669777,-3.1967E-05],[13.673216,-3.5576E-05],[13.676655,-3.6607E-05],[13.680093,-3.4544E-05],[13.683532,-3.3513E-05],[13.686971,-3.5576E-05],[13.690409,-3.8669E-05],[13.693848,-3.4544E-05],[13.697287,-3.506E-05],[13.700725,-3.2482E-05],[13.704164,-3.4029E-05],[13.707603,-3.97E-05],[13.711041,-3.7122E-05],[13.71448,-3.6091E-05],[13.717919,-3.4029E-05],[13.721357,-3.3513E-05],[13.724796,-3.6091E-05],[13.728235,-3.9185E-05],[13.731673,-4.2278E-05],[13.735112,-3.8669E-05],[13.738551,-3.6091E-05],[13.741989,-3.9185E-05],[13.745428,-3.97E-05],[13.748867,-3.7122E-05],[13.752305,-3.506E-05],[13.755744,-3.9185E-05],[13.759183,-3.9185E-05],[13.762621,-3.4544E-05],[13.76606,-3.7638E-05],[13.769499,-3.9185E-05],[13.772937,-3.7638E-05],[13.776376,-3.6607E-05],[13.779815,-3.4029E-05],[13.783253,-3.0935E-05],[13.786692,-2.9904E-05],[13.790131,-3.4029E-05],[13.793569,-3.506E-05]]}
-{"quant":[13.9813,0.90368],"mems":[[13.882975,-3.4029E-05],[13.886413,-3.6091E-05],[13.889852,-3.7122E-05],[13.893291,-3.7638E-05],[13.896729,-4.0732E-05],[13.900168,-3.506E-05],[13.903607,-3.5576E-05],[13.907045,-4.0732E-05],[13.910484,-3.6607E-05],[13.913923,-3.8154E-05],[13.917361,-4.1247E-05],[13.9208,-3.6091E-05],[13.924239,-3.2482E-05],[13.927677,-3.6607E-05],[13.931116,-4.0732E-05],[13.934555,-4.0732E-05],[13.937993,-4.3309E-05],[13.941432,-4.0216E-05],[13.944871,-3.8154E-05],[13.948309,-4.1247E-05],[13.951748,-3.7638E-05],[13.955187,-3.5576E-05],[13.958625,-3.8154E-05],[13.962064,-3.9185E-05],[13.965503,-3.8154E-05],[13.968941,-3.8154E-05],[13.97238,-3.6607E-05],[13.975819,-3.4029E-05],[13.979257,-3.7122E-05],[13.982696,-3.7638E-05],[13.986135,-3.6091E-05],[13.989573,-3.97E-05],[13.993012,-4.1247E-05],[13.996451,-4.1763E-05],[13.999889,-3.6091E-05],[14.003328,-3.4029E-05],[14.006767,-3.97E-05],[14.010205,-3.4544E-05],[14.013644,-3.6091E-05],[14.017083,-3.8154E-05],[14.020521,-3.1451E-05],[14.02396,-3.4029E-05],[14.027399,-3.6607E-05],[14.030837,-4.1247E-05],[14.034276,-4.1247E-05],[14.037715,-3.6607E-05],[14.041153,-3.5576E-05],[14.044592,-3.4544E-05],[14.048031,-3.8154E-05],[14.051469,-3.5576E-05],[14.054908,-3.6607E-05],[14.058347,-3.8154E-05],[14.061785,-3.1967E-05],[14.065224,-3.2998E-05],[14.068663,-3.5576E-05],[14.072101,-3.4029E-05],[14.07554,-3.4029E-05],[14.078979,-3.506E-05],[14.082417,-3.4544E-05],[14.085856,-3.9185E-05],[14.089295,-4.0216E-05],[14.092733,-3.4544E-05],[14.096172,-3.3513E-05],[14.099611,-3.506E-05],[14.103049,-3.2998E-05],[14.106488,-3.1967E-05],[14.109927,-3.9185E-05],[14.113365,-3.97E-05],[14.116804,-3.8154E-05],[14.120243,-3.6091E-05],[14.123681,-3.2998E-05],[14.12712,-3.9185E-05],[14.130559,-3.9185E-05],[14.133997,-3.7638E-05],[14.137436,-3.6091E-05],[14.140875,-3.6091E-05],[14.144313,-3.7638E-05],[14.147752,-3.4544E-05],[14.151191,-4.0732E-05],[14.154629,-3.9185E-05],[14.158068,-3.5576E-05],[14.161507,-3.6091E-05],[14.164945,-3.1967E-05],[14.168384,-3.6091E-05],[14.171823,-4.0216E-05],[14.175261,-3.7122E-05],[14.1787,-3.6091E-05]]}
-{"quant":[14.3297,0.9266],"mems":[[14.23028,-3.506E-05],[14.233719,-3.7122E-05],[14.237157,-3.9185E-05],[14.240596,-3.2482E-05],[14.244035,-3.1967E-05],[14.247473,-3.3513E-05],[14.250912,-3.4544E-05],[14.254351,-3.7122E-05],[14.257789,-3.5576E-05],[14.261228,-3.5576E-05],[14.264667,-3.6091E-05],[14.268105,-3.8154E-05],[14.271544,-3.8154E-05],[14.274983,-3.6091E-05],[14.278421,-3.5576E-05],[14.28186,-3.2482E-05],[14.285299,-3.1967E-05],[14.288737,-3.3513E-05],[14.292176,-3.3513E-05],[14.295615,-3.2998E-05],[14.299053,-3.3513E-05],[14.302492,-3.5576E-05],[14.305931,-3.7638E-05],[14.309369,-3.4544E-05],[14.312808,-3.2998E-05],[14.316247,-3.506E-05],[14.319685,-3.2998E-05],[14.323124,-3.3513E-05],[14.326563,-3.7122E-05],[14.330001,-3.97E-05],[14.33344,-4.2278E-05],[14.336879,-3.1967E-05],[14.340317,-3.1967E-05],[14.343756,-3.7122E-05],[14.347195,-3.5576E-05],[14.350633,-3.7638E-05],[14.354072,-3.2998E-05],[14.357511,-3.7638E-05],[14.360949,-3.8669E-05],[14.364388,-3.042E-05],[14.367827,-3.2998E-05],[14.371265,-3.7122E-05],[14.374704,-3.7122E-05],[14.378143,-3.2482E-05],[14.381581,-3.4029E-05],[14.38502,-3.8154E-05],[14.388459,-3.2482E-05],[14.391897,-3.2482E-05],[14.395336,-4.0732E-05],[14.398775,-4.0216E-05],[14.402213,-3.506E-05],[14.405652,-3.7638E-05],[14.409091,-3.8154E-05],[14.412529,-3.4029E-05],[14.415968,-3.4544E-05],[14.419407,-3.4544E-05],[14.422845,-3.1451E-05],[14.426284,-3.3513E-05],[14.429723,-3.4029E-05],[14.433161,-3.6091E-05],[14.4366,-3.6607E-05],[14.440039,-3.2482E-05],[14.443477,-3.0935E-05],[14.446916,-3.4544E-05],[14.450355,-3.8154E-05],[14.453793,-3.1451E-05],[14.457232,-3.5576E-05],[14.460671,-3.9185E-05],[14.464109,-3.1451E-05],[14.467548,-3.1451E-05],[14.470987,-3.3513E-05],[14.474425,-3.7122E-05],[14.477864,-3.7638E-05],[14.481303,-3.8154E-05],[14.484741,-3.9185E-05],[14.48818,-3.7638E-05],[14.491619,-3.8154E-05],[14.495057,-3.7122E-05],[14.498496,-3.8154E-05],[14.501935,-3.4544E-05],[14.505373,-3.4544E-05],[14.508812,-4.0216E-05],[14.512251,-3.4544E-05],[14.515689,-3.4544E-05],[14.519128,-3.9185E-05],[14.522567,-3.7122E-05],[14.526005,-3.6607E-05],[14.529444,-3.506E-05]]}
-{"quant":[14.6884,0.96539],"mems":[[14.59134,-3.042E-05],[14.594779,-3.6091E-05],[14.598217,-3.7122E-05],[14.601656,-3.2998E-05],[14.605095,-3.0935E-05],[14.608533,-3.506E-05],[14.611972,-3.7638E-05],[14.615411,-3.506E-05],[14.618849,-3.4029E-05],[14.622288,-3.6607E-05],[14.625727,-4.1247E-05],[14.629165,-4.0732E-05],[14.632604,-3.97E-05],[14.636043,-3.6607E-05],[14.639481,-3.7122E-05],[14.64292,-4.1763E-05],[14.646359,-3.7638E-05],[14.649797,-3.7122E-05],[14.653236,-3.6091E-05],[14.656675,-3.1967E-05],[14.660113,-3.042E-05],[14.663552,-3.1967E-05],[14.666991,-3.9185E-05],[14.670429,-3.97E-05],[14.673868,-3.6091E-05],[14.677307,-3.4029E-05],[14.680745,-3.4544E-05],[14.684184,-3.9185E-05],[14.687623,-4.0216E-05],[14.691061,-3.9185E-05],[14.6945,-3.8154E-05],[14.697939,-3.506E-05],[14.701377,-3.2482E-05],[14.704816,-3.7122E-05],[14.708255,-3.97E-05],[14.711693,-3.6607E-05],[14.715132,-3.7638E-05],[14.718571,-3.506E-05],[14.722009,-3.6607E-05],[14.725448,-4.0732E-05],[14.728887,-3.6091E-05],[14.732325,-3.6091E-05],[14.735764,-3.5576E-05],[14.739203,-3.7122E-05],[14.742641,-3.97E-05],[14.74608,-3.7638E-05],[14.749519,-3.8154E-05],[14.752957,-3.6091E-05],[14.756396,-3.6607E-05],[14.759835,-3.6091E-05],[14.763273,-3.7638E-05],[14.766712,-4.3309E-05],[14.770151,-4.0216E-05],[14.773589,-3.7122E-05],[14.777028,-3.7122E-05],[14.780467,-3.6091E-05],[14.783905,-3.506E-05],[14.787344,-3.8154E-05],[14.790783,-3.8669E-05],[14.794221,-3.3513E-05],[14.79766,-3.4544E-05],[14.801099,-3.506E-05],[14.804537,-3.2998E-05],[14.807976,-3.6607E-05],[14.811415,-3.9185E-05],[14.814853,-3.6607E-05],[14.818292,-3.506E-05],[14.821731,-3.3513E-05],[14.825169,-3.5576E-05],[14.828608,-3.506E-05],[14.832047,-3.506E-05],[14.835485,-4.1763E-05],[14.838924,-3.6607E-05],[14.842363,-3.506E-05],[14.845801,-3.9185E-05],[14.84924,-3.9185E-05],[14.852679,-4.2278E-05],[14.856117,-3.97E-05],[14.859556,-3.506E-05],[14.862995,-3.4029E-05],[14.866433,-3.7638E-05],[14.869872,-3.8669E-05],[14.873311,-3.4544E-05],[14.876749,-3.5576E-05],[14.880188,-3.9185E-05],[14.883627,-4.3825E-05],[14.887065,-4.2794E-05]]}
-{"quant":[15.074,0.99791],"mems":[[14.976471,-3.6607E-05],[14.979909,-3.506E-05],[14.983348,-3.7122E-05],[14.986787,-4.0732E-05],[14.990225,-4.1247E-05],[14.993664,-4.1763E-05],[14.997103,-3.97E-05],[15.000541,-4.0732E-05],[15.00398,-3.7638E-05],[15.007419,-3.5576E-05],[15.010857,-3.4029E-05],[15.014296,-3.1451E-05],[15.017735,-3.6607E-05],[15.021173,-3.6091E-05],[15.024612,-3.3513E-05],[15.028051,-3.3513E-05],[15.031489,-3.7122E-05],[15.034928,-3.7638E-05],[15.038367,-3.1451E-05],[15.041805,-2.8873E-05],[15.045244,-2.8873E-05],[15.048683,-3.5576E-05],[15.052121,-3.6091E-05],[15.05556,-3.4544E-05],[15.058999,-3.5576E-05],[15.062437,-3.6607E-05],[15.065876,-3.7638E-05],[15.069315,-3.506E-05],[15.072753,-3.7638E-05],[15.076192,-4.0732E-05],[15.079631,-3.4029E-05],[15.083069,-3.3513E-05],[15.086508,-3.7122E-05],[15.089947,-3.3513E-05],[15.093385,-3.5576E-05],[15.096824,-3.506E-05],[15.100263,-3.4029E-05],[15.103701,-3.7638E-05],[15.10714,-3.6091E-05],[15.110579,-3.4544E-05],[15.114017,-3.1451E-05],[15.117456,-3.2998E-05],[15.120895,-3.506E-05],[15.124333,-3.506E-05],[15.127772,-4.0216E-05],[15.131211,-3.8669E-05],[15.134649,-3.7122E-05],[15.138088,-3.6607E-05],[15.141527,-3.506E-05],[15.144965,-3.8154E-05],[15.148404,-4.1763E-05],[15.151843,-4.0732E-05],[15.155281,-4.0216E-05],[15.15872,-3.9185E-05],[15.162159,-3.506E-05],[15.165597,-3.6607E-05],[15.169036,-3.506E-05],[15.172475,-3.6607E-05],[15.175913,-3.6091E-05],[15.179352,-3.4029E-05],[15.182791,-3.8154E-05],[15.186229,-3.6607E-05],[15.189668,-3.8154E-05],[15.193107,-4.1247E-05],[15.196545,-3.5576E-05],[15.199984,-3.4544E-05],[15.203423,-3.7638E-05],[15.206861,-4.0732E-05],[15.2103,-4.1247E-05],[15.213739,-3.6091E-05],[15.217177,-3.4544E-05],[15.220616,-3.6607E-05],[15.224055,-3.6091E-05],[15.227493,-3.9185E-05],[15.230932,-4.1763E-05],[15.234371,-4.0732E-05],[15.237809,-4.0216E-05],[15.241248,-3.5576E-05],[15.244687,-3.4029E-05],[15.248125,-3.6607E-05],[15.251564,-3.7638E-05],[15.255003,-3.5576E-05],[15.258441,-3.8154E-05],[15.26188,-3.8669E-05],[15.265319,-3.5576E-05],[15.268757,-3.6607E-05],[15.272196,-3.4544E-05]]}
-{"quant":[15.5063,1.011],"mems":[[15.406304,-3.97E-05],[15.409743,-3.97E-05],[15.413181,-3.5576E-05],[15.41662,-3.1967E-05],[15.420059,-3.7638E-05],[15.423497,-3.506E-05],[15.426936,-3.5576E-05],[15.430375,-3.8669E-05],[15.433813,-3.7122E-05],[15.437252,-3.8669E-05],[15.440691,-3.3513E-05],[15.444129,-3.506E-05],[15.447568,-3.3513E-05],[15.451007,-3.2998E-05],[15.454445,-3.8154E-05],[15.457884,-3.7122E-05],[15.461323,-4.0732E-05],[15.464761,-3.97E-05],[15.4682,-3.6091E-05],[15.471639,-3.4029E-05],[15.475077,-3.1451E-05],[15.478516,-3.042E-05],[15.481955,-3.3513E-05],[15.485393,-3.6607E-05],[15.488832,-3.1967E-05],[15.492271,-3.6091E-05],[15.495709,-3.9185E-05],[15.499148,-3.6607E-05],[15.502587,-3.7638E-05],[15.506025,-3.97E-05],[15.509464,-4.2794E-05],[15.512903,-4.0732E-05],[15.516341,-3.7122E-05],[15.51978,-3.6091E-05],[15.523219,-3.3513E-05],[15.526657,-3.5576E-05],[15.530096,-4.1247E-05],[15.533535,-4.0216E-05],[15.536973,-3.6091E-05],[15.540412,-3.6091E-05],[15.543851,-3.3513E-05],[15.547289,-3.7122E-05],[15.550728,-3.97E-05],[15.554167,-3.4029E-05],[15.557605,-3.4029E-05],[15.561044,-3.2482E-05],[15.564483,-3.6091E-05],[15.567921,-3.7122E-05],[15.57136,-3.7638E-05],[15.574799,-3.8669E-05],[15.578237,-3.506E-05],[15.581676,-4.0216E-05],[15.585115,-4.0732E-05],[15.588553,-3.9185E-05],[15.591992,-3.9185E-05],[15.595431,-3.6091E-05],[15.598869,-3.6091E-05],[15.602308,-3.9185E-05],[15.605747,-4.3309E-05],[15.609185,-4.1763E-05],[15.612624,-3.7638E-05],[15.616063,-3.506E-05],[15.619501,-3.506E-05],[15.62294,-3.7122E-05],[15.626379,-4.1247E-05],[15.629817,-3.7122E-05],[15.633256,-3.4029E-05],[15.636695,-4.0732E-05],[15.640133,-3.9185E-05],[15.643572,-3.8154E-05],[15.647011,-3.9185E-05],[15.650449,-3.7638E-05],[15.653888,-3.9185E-05],[15.657327,-3.4544E-05],[15.660765,-3.97E-05],[15.664204,-4.5372E-05],[15.667643,-3.8154E-05],[15.671081,-3.8154E-05],[15.67452,-3.6091E-05],[15.677959,-3.506E-05],[15.681397,-3.7122E-05],[15.684836,-3.5576E-05],[15.688275,-3.97E-05],[15.691713,-3.7122E-05],[15.695152,-3.4544E-05],[15.698591,-3.6091E-05],[15.702029,-3.6091E-05],[15.705468,-4.1247E-05]]}
-{"quant":[15.8961,1.0288],"mems":[[15.867085,-3.8154E-05],[15.870524,-4.0216E-05],[15.873963,-3.8669E-05],[15.877401,-3.506E-05],[15.88084,-3.2998E-05],[15.884279,-3.2482E-05],[15.887717,-3.4029E-05],[15.891156,-3.6607E-05],[15.894595,-3.97E-05],[15.898033,-3.9185E-05],[15.901472,-3.97E-05],[15.904911,-4.0216E-05],[15.908349,-3.7122E-05],[15.911788,-4.4341E-05],[15.915227,-4.2794E-05],[15.918665,-3.7122E-05],[15.922104,-3.506E-05],[15.925543,-3.4544E-05],[15.928981,-4.2278E-05],[15.93242,-3.6091E-05],[15.935859,-3.4544E-05],[15.939297,-3.9185E-05],[15.942736,-3.506E-05],[15.946175,-4.0216E-05],[15.949613,-3.7638E-05],[15.953052,-3.1451E-05],[15.956491,-3.7638E-05],[15.959929,-3.5576E-05],[15.963368,-3.4544E-05],[15.966807,-3.6607E-05],[15.970245,-3.4029E-05],[15.973684,-3.8669E-05],[15.977123,-3.7122E-05],[15.980561,-3.4029E-05],[15.984,-3.8154E-05],[15.987437,-3.6091E-05],[15.990875,-3.7122E-05],[15.994312,-3.6091E-05],[15.997749,-3.2482E-05],[16.001187,-3.7122E-05],[16.004624,-3.7638E-05],[16.008061,-3.8154E-05],[16.011499,-3.9185E-05],[16.014936,-3.9185E-05],[16.018373,-3.8669E-05],[16.021811,-3.4029E-05],[16.025248,-3.97E-05],[16.028685,-4.1247E-05],[16.032123,-3.2998E-05],[16.03556,-3.3513E-05],[16.038997,-3.97E-05],[16.042435,-4.0216E-05],[16.045872,-3.7122E-05],[16.049309,-3.8154E-05],[16.052747,-3.9185E-05],[16.056184,-3.8154E-05],[16.059621,-3.5576E-05],[16.063059,-3.6091E-05],[16.066496,-4.1763E-05],[16.069933,-3.9185E-05],[16.073371,-3.6091E-05],[16.076808,-3.7122E-05],[16.080245,-3.4544E-05],[16.083683,-3.2998E-05],[16.08712,-3.4029E-05],[16.090557,-3.8669E-05],[16.093995,-3.6607E-05],[16.097432,-3.3513E-05],[16.100869,-3.3513E-05],[16.104307,-3.042E-05],[16.107744,-3.2998E-05],[16.111181,-3.2482E-05],[16.114619,-3.2482E-05],[16.118056,-3.4544E-05],[16.121493,-3.2998E-05],[16.124931,-3.8154E-05],[16.128368,-3.9185E-05],[16.131805,-3.6607E-05],[16.135243,-3.4544E-05],[16.13868,-2.6811E-05],[16.142117,-3.1451E-05],[16.145555,-3.8154E-05],[16.148992,-3.7122E-05],[16.152429,-3.97E-05],[16.155867,-3.6607E-05],[16.159304,-3.3513E-05]]}
-{"quant":[16.3124,1.0496],"mems":[[16.214301,-3.4544E-05],[16.217739,-3.4029E-05],[16.221176,-3.4029E-05],[16.224613,-3.4029E-05],[16.228051,-4.0216E-05],[16.231488,-4.2794E-05],[16.234925,-3.9185E-05],[16.238363,-3.4544E-05],[16.2418,-3.6091E-05],[16.245237,-3.97E-05],[16.248675,-3.506E-05],[16.252112,-3.1967E-05],[16.255549,-3.4544E-05],[16.258987,-3.6607E-05],[16.262424,-3.6607E-05],[16.265861,-3.5576E-05],[16.269299,-3.506E-05],[16.272736,-3.2482E-05],[16.276173,-3.6091E-05],[16.279611,-4.0732E-05],[16.283048,-3.6091E-05],[16.286485,-3.506E-05],[16.289923,-3.97E-05],[16.29336,-3.6091E-05],[16.296797,-2.9904E-05],[16.300235,-3.1451E-05],[16.303672,-3.2482E-05],[16.307109,-3.5576E-05],[16.310547,-4.2278E-05],[16.313984,-3.7638E-05],[16.317421,-3.3513E-05],[16.320859,-3.8154E-05],[16.324296,-3.6607E-05],[16.327733,-3.5576E-05],[16.331171,-3.7122E-05],[16.334608,-3.4544E-05],[16.338045,-3.3513E-05],[16.341483,-3.6607E-05],[16.34492,-3.506E-05],[16.348357,-3.8154E-05],[16.351795,-4.1763E-05],[16.355232,-3.8669E-05],[16.358669,-3.6607E-05],[16.362107,-3.8154E-05],[16.365544,-3.8154E-05],[16.368981,-3.6607E-05],[16.372419,-3.3513E-05],[16.375856,-3.1451E-05],[16.379293,-3.4029E-05],[16.382731,-3.7122E-05],[16.386168,-3.8154E-05],[16.389605,-3.7122E-05],[16.393043,-3.7122E-05],[16.39648,-3.6091E-05],[16.399917,-3.8154E-05],[16.403355,-3.97E-05],[16.406792,-3.5576E-05],[16.410229,-3.7122E-05],[16.413667,-3.6091E-05],[16.417104,-3.2482E-05],[16.420541,-3.2482E-05],[16.423979,-3.4544E-05],[16.427416,-3.4544E-05],[16.430853,-3.1967E-05],[16.434291,-3.2998E-05],[16.437728,-3.0935E-05],[16.441165,-3.3513E-05],[16.444603,-3.7638E-05],[16.44804,-3.7122E-05],[16.451477,-3.9185E-05],[16.454915,-3.6607E-05],[16.458352,-3.4029E-05],[16.461789,-3.3513E-05],[16.465227,-3.2998E-05],[16.468664,-3.2998E-05],[16.472101,-3.4544E-05],[16.475539,-3.6607E-05],[16.478976,-3.9185E-05],[16.482413,-3.8154E-05],[16.485851,-3.7122E-05],[16.489288,-3.8154E-05],[16.492725,-3.9185E-05],[16.496163,-3.7638E-05],[16.4996,-3.2998E-05],[16.503037,-3.506E-05],[16.506475,-3.6607E-05],[16.509912,-3.4544E-05]]}
-{"quant":[16.7016,1.0627],"mems":[[16.60272,-3.8154E-05],[16.606157,-4.0732E-05],[16.609595,-4.0216E-05],[16.613032,-3.8669E-05],[16.616469,-3.7638E-05],[16.619907,-3.6607E-05],[16.623344,-4.1763E-05],[16.626781,-4.1247E-05],[16.630219,-3.7122E-05],[16.633656,-3.5576E-05],[16.637093,-2.9904E-05],[16.640531,-3.0935E-05],[16.643968,-3.6607E-05],[16.647405,-3.7122E-05],[16.650843,-3.4029E-05],[16.65428,-3.2482E-05],[16.657717,-3.3513E-05],[16.661155,-3.1451E-05],[16.664592,-3.4544E-05],[16.668029,-3.8154E-05],[16.671467,-3.7122E-05],[16.674904,-3.7638E-05],[16.678341,-3.6091E-05],[16.681779,-3.2998E-05],[16.685216,-3.506E-05],[16.688653,-4.2794E-05],[16.692091,-3.5576E-05],[16.695528,-2.9904E-05],[16.698965,-3.6091E-05],[16.702403,-3.3513E-05],[16.70584,-3.5576E-05],[16.709277,-3.9185E-05],[16.712715,-3.8669E-05],[16.716152,-4.0732E-05],[16.719589,-3.9185E-05],[16.723027,-3.8669E-05],[16.726464,-3.6607E-05],[16.729901,-3.6091E-05],[16.733339,-3.0935E-05],[16.736776,-3.0935E-05],[16.740213,-3.7122E-05],[16.743651,-3.4029E-05],[16.747088,-3.7638E-05],[16.750525,-3.7638E-05],[16.753963,-3.6091E-05],[16.7574,-3.7638E-05],[16.760837,-3.506E-05],[16.764275,-3.9185E-05],[16.767712,-3.6607E-05],[16.771149,-3.7122E-05],[16.774587,-4.0216E-05],[16.778024,-3.506E-05],[16.781461,-3.97E-05],[16.784899,-4.0216E-05],[16.788336,-3.3513E-05],[16.791773,-3.4544E-05],[16.795211,-3.4029E-05],[16.798648,-3.4029E-05],[16.802085,-3.8154E-05],[16.805523,-3.4544E-05],[16.80896,-3.6607E-05],[16.812397,-3.8669E-05],[16.815835,-3.4029E-05],[16.819272,-3.7122E-05],[16.822709,-3.6091E-05],[16.826147,-3.7122E-05],[16.829584,-3.7638E-05],[16.833021,-3.6091E-05],[16.836459,-3.8669E-05],[16.839896,-3.4029E-05],[16.843333,-3.7122E-05],[16.846771,-3.6607E-05],[16.850208,-3.0935E-05],[16.853645,-3.2998E-05],[16.857083,-3.1451E-05],[16.86052,-3.8154E-05],[16.863957,-3.8669E-05],[16.867395,-3.7122E-05],[16.870832,-4.0732E-05],[16.874269,-3.6091E-05],[16.877707,-3.4544E-05],[16.881144,-3.8669E-05],[16.884581,-4.0732E-05],[16.888019,-3.8154E-05],[16.891456,-4.1763E-05],[16.894893,-3.8154E-05],[16.898331,-3.4544E-05]]}
-{"quant":[17.0854,1.0765],"mems":[[16.987701,-4.1247E-05],[16.991139,-3.6607E-05],[16.994576,-3.2998E-05],[16.998013,-3.4544E-05],[17.001451,-3.2482E-05],[17.004888,-3.4029E-05],[17.008325,-4.0732E-05],[17.011763,-3.6607E-05],[17.0152,-3.3513E-05],[17.018637,-3.5576E-05],[17.022075,-3.6091E-05],[17.025512,-4.2794E-05],[17.028949,-3.8154E-05],[17.032387,-3.4029E-05],[17.035824,-3.6607E-05],[17.039261,-3.3513E-05],[17.042699,-3.6091E-05],[17.046136,-3.7122E-05],[17.049573,-3.4029E-05],[17.053011,-3.2998E-05],[17.056448,-3.4544E-05],[17.059885,-3.6607E-05],[17.063323,-3.5576E-05],[17.06676,-3.5576E-05],[17.070197,-3.7638E-05],[17.073635,-3.4544E-05],[17.077072,-2.9389E-05],[17.080509,-3.2998E-05],[17.083947,-3.7122E-05],[17.087384,-3.4029E-05],[17.090821,-3.3513E-05],[17.094259,-3.7122E-05],[17.097696,-3.7122E-05],[17.101133,-3.7122E-05],[17.104571,-3.6607E-05],[17.108008,-3.7638E-05],[17.111445,-3.506E-05],[17.114883,-2.8357E-05],[17.11832,-3.2482E-05],[17.121757,-3.4544E-05],[17.125195,-3.1967E-05],[17.128632,-3.6091E-05],[17.132069,-3.6607E-05],[17.135507,-3.0935E-05],[17.138944,-3.506E-05],[17.142381,-3.8669E-05],[17.145819,-3.2482E-05],[17.149256,-4.0216E-05],[17.152693,-3.9185E-05],[17.156131,-3.2482E-05],[17.159568,-4.1247E-05],[17.163005,-4.0732E-05],[17.166443,-4.0732E-05],[17.16988,-3.6607E-05],[17.173317,-3.3513E-05],[17.176755,-3.97E-05],[17.180192,-3.9185E-05],[17.183629,-4.0216E-05],[17.187067,-3.8669E-05],[17.190504,-3.6091E-05],[17.193941,-3.5576E-05],[17.197379,-3.6091E-05],[17.200816,-3.7638E-05],[17.204253,-3.97E-05],[17.207691,-4.0732E-05],[17.211128,-3.8669E-05],[17.214565,-3.6607E-05],[17.218003,-3.4544E-05],[17.22144,-3.7122E-05],[17.224877,-3.7638E-05],[17.228315,-3.6091E-05],[17.231752,-3.1967E-05],[17.235189,-3.042E-05],[17.238627,-3.3513E-05],[17.242064,-3.6091E-05],[17.245501,-3.8669E-05],[17.248939,-3.506E-05],[17.252376,-3.3513E-05],[17.255813,-3.2482E-05],[17.259251,-3.1967E-05],[17.262688,-3.8669E-05],[17.266125,-3.4029E-05],[17.269563,-3.2482E-05],[17.273,-3.7122E-05],[17.276437,-3.6607E-05],[17.279875,-3.9185E-05],[17.283312,-4.0732E-05]]}
-{"quant":[17.5077,1.0982],"mems":[[17.410493,-3.4544E-05],[17.413931,-3.3513E-05],[17.417368,-3.3513E-05],[17.420805,-3.4544E-05],[17.424243,-3.9185E-05],[17.42768,-4.1247E-05],[17.431117,-4.0216E-05],[17.434555,-3.7122E-05],[17.437992,-3.6091E-05],[17.441429,-4.0732E-05],[17.444867,-4.3309E-05],[17.448304,-3.8154E-05],[17.451741,-3.4544E-05],[17.455179,-3.2998E-05],[17.458616,-3.1967E-05],[17.462053,-3.9185E-05],[17.465491,-4.3309E-05],[17.468928,-3.8154E-05],[17.472365,-4.0732E-05],[17.475803,-3.7638E-05],[17.47924,-3.7638E-05],[17.482677,-4.1247E-05],[17.486115,-3.7638E-05],[17.489552,-4.0216E-05],[17.492989,-3.8154E-05],[17.496427,-3.6091E-05],[17.499864,-3.8154E-05],[17.503301,-3.9185E-05],[17.506739,-3.9185E-05],[17.510176,-3.6607E-05],[17.513613,-3.7122E-05],[17.517051,-3.6607E-05],[17.520488,-3.7638E-05],[17.523925,-3.7122E-05],[17.527363,-3.8669E-05],[17.5308,-4.2278E-05],[17.534237,-3.7122E-05],[17.537675,-3.506E-05],[17.541112,-3.4029E-05],[17.544549,-3.8669E-05],[17.547987,-4.1763E-05],[17.551424,-3.5576E-05],[17.554861,-3.506E-05],[17.558299,-3.5576E-05],[17.561736,-3.4544E-05],[17.565173,-3.6607E-05],[17.568611,-3.8669E-05],[17.572048,-3.5576E-05],[17.575485,-3.0935E-05],[17.578923,-3.6091E-05],[17.58236,-4.0216E-05],[17.585797,-3.7122E-05],[17.589235,-3.6091E-05],[17.592672,-2.9389E-05],[17.596109,-3.1967E-05],[17.599547,-3.8154E-05],[17.602984,-3.2998E-05],[17.606421,-3.2998E-05],[17.609859,-3.4544E-05],[17.613296,-3.506E-05],[17.616733,-3.7638E-05],[17.620171,-3.6607E-05],[17.623608,-3.506E-05],[17.627045,-3.7122E-05],[17.630483,-3.4029E-05],[17.63392,-3.042E-05],[17.637357,-3.1451E-05],[17.640795,-3.4029E-05],[17.644232,-3.6607E-05],[17.647669,-3.8154E-05],[17.651107,-3.6607E-05],[17.654544,-3.2482E-05],[17.657981,-3.2998E-05],[17.661419,-3.6091E-05],[17.664856,-3.8154E-05],[17.668293,-3.5576E-05],[17.671731,-4.1763E-05],[17.675168,-3.97E-05],[17.678605,-3.4544E-05],[17.682043,-3.9185E-05],[17.68548,-3.7122E-05],[17.688917,-3.97E-05],[17.692355,-3.1967E-05],[17.695792,-3.2482E-05],[17.699229,-3.9185E-05],[17.702667,-3.3513E-05],[17.706104,-3.7122E-05]]}
-{"quant":[17.9009,1.116],"mems":[[17.802349,-3.7638E-05],[17.805787,-3.8154E-05],[17.809224,-3.7122E-05],[17.812661,-3.8669E-05],[17.816099,-3.4544E-05],[17.819536,-3.2482E-05],[17.822973,-3.8154E-05],[17.826411,-4.1247E-05],[17.829848,-4.0216E-05],[17.833285,-3.8154E-05],[17.836723,-4.1247E-05],[17.84016,-3.6607E-05],[17.843597,-3.506E-05],[17.847035,-3.8669E-05],[17.850472,-3.7122E-05],[17.853909,-3.0935E-05],[17.857347,-2.9904E-05],[17.860784,-3.6091E-05],[17.864221,-3.4544E-05],[17.867659,-3.2998E-05],[17.871096,-3.2998E-05],[17.874533,-3.3513E-05],[17.877971,-3.4544E-05],[17.881408,-3.5576E-05],[17.884845,-3.97E-05],[17.888283,-3.8154E-05],[17.89172,-3.2998E-05],[17.895157,-3.1967E-05],[17.898595,-3.4544E-05],[17.902032,-3.7122E-05],[17.905469,-3.2998E-05],[17.908907,-3.042E-05],[17.912344,-3.8669E-05],[17.915781,-3.7122E-05],[17.919219,-3.5576E-05],[17.922656,-4.3825E-05],[17.926093,-3.9185E-05],[17.929531,-3.4029E-05],[17.932968,-3.1967E-05],[17.936405,-2.9389E-05],[17.939843,-3.2998E-05],[17.94328,-3.9185E-05],[17.946717,-3.7122E-05],[17.950155,-3.7638E-05],[17.953592,-3.8154E-05],[17.957029,-3.5576E-05],[17.960467,-3.97E-05],[17.963904,-3.8669E-05],[17.967341,-3.7638E-05],[17.970779,-3.9185E-05],[17.974216,-3.7122E-05],[17.977653,-3.7122E-05],[17.981091,-3.7638E-05],[17.984528,-3.8154E-05],[17.987965,-3.5576E-05],[17.991403,-3.4029E-05],[17.99484,-3.6091E-05],[17.998277,-3.8669E-05],[18.001715,-4.1247E-05],[18.005152,-3.9185E-05],[18.008589,-3.7122E-05],[18.012027,-3.9185E-05],[18.015464,-3.8154E-05],[18.018901,-3.7638E-05],[18.022339,-3.6091E-05],[18.025776,-3.7638E-05],[18.029213,-3.6607E-05],[18.032651,-3.5576E-05],[18.036088,-3.8669E-05],[18.039525,-3.4029E-05],[18.042963,-3.8669E-05],[18.0464,-4.2794E-05],[18.049837,-3.8154E-05],[18.053275,-3.6091E-05],[18.056712,-3.7122E-05],[18.060149,-3.7638E-05],[18.063587,-3.6091E-05],[18.067024,-3.8154E-05],[18.070461,-3.5576E-05],[18.073899,-3.0935E-05],[18.077336,-3.4544E-05],[18.080773,-3.97E-05],[18.084211,-3.6607E-05],[18.087648,-3.4029E-05],[18.091085,-3.5576E-05],[18.094523,-3.4029E-05],[18.09796,-3.4029E-05]]}
-{"quant":[18.3008,1.1249],"mems":[[18.20108,-3.7638E-05],[18.204517,-3.7122E-05],[18.207955,-4.1763E-05],[18.211392,-3.4029E-05],[18.214829,-3.4029E-05],[18.218267,-3.8154E-05],[18.221704,-3.506E-05],[18.225141,-3.8154E-05],[18.228579,-3.2998E-05],[18.232016,-3.3513E-05],[18.235453,-3.97E-05],[18.238891,-3.506E-05],[18.242328,-3.6607E-05],[18.245765,-4.3309E-05],[18.249203,-3.97E-05],[18.25264,-3.3513E-05],[18.256077,-3.5576E-05],[18.259515,-3.6091E-05],[18.262952,-3.4544E-05],[18.266389,-3.7638E-05],[18.269827,-3.6607E-05],[18.273264,-3.5576E-05],[18.276701,-3.5576E-05],[18.280139,-3.6607E-05],[18.283576,-3.6607E-05],[18.287013,-3.5576E-05],[18.290451,-3.5576E-05],[18.293888,-3.5576E-05],[18.297325,-3.9185E-05],[18.300763,-3.7122E-05],[18.3042,-3.8154E-05],[18.307637,-3.8669E-05],[18.311075,-3.5576E-05],[18.314512,-4.0732E-05],[18.317949,-4.0216E-05],[18.321387,-3.8154E-05],[18.324824,-3.4544E-05],[18.328261,-3.7638E-05],[18.331699,-4.1763E-05],[18.335136,-3.5576E-05],[18.338573,-3.5576E-05],[18.342011,-3.4544E-05],[18.345448,-3.506E-05],[18.348885,-3.9185E-05],[18.352323,-3.506E-05],[18.35576,-3.4029E-05],[18.359197,-3.8154E-05],[18.362635,-3.7638E-05],[18.366072,-3.7122E-05],[18.369509,-3.7638E-05],[18.372947,-3.3513E-05],[18.376384,-3.6607E-05],[18.379821,-3.97E-05],[18.383259,-3.7638E-05],[18.386696,-4.1247E-05],[18.390133,-3.6607E-05],[18.393571,-3.1967E-05],[18.397008,-3.6091E-05],[18.400445,-3.97E-05],[18.403883,-4.1763E-05],[18.40732,-3.8154E-05],[18.410757,-3.6091E-05],[18.414195,-3.6607E-05],[18.417632,-3.8669E-05],[18.421069,-3.5576E-05],[18.424507,-3.1967E-05],[18.427944,-3.8154E-05],[18.431381,-3.5576E-05],[18.434819,-3.0935E-05],[18.438256,-3.6091E-05],[18.441693,-3.7638E-05],[18.445131,-3.5576E-05],[18.448568,-3.8154E-05],[18.452005,-3.6091E-05],[18.455443,-3.6091E-05],[18.45888,-3.8154E-05],[18.462317,-3.4029E-05],[18.465755,-3.4029E-05],[18.469192,-3.2482E-05],[18.472629,-3.042E-05],[18.476067,-3.2482E-05],[18.479504,-3.6607E-05],[18.482941,-3.9185E-05],[18.486379,-3.4029E-05],[18.489816,-3.6091E-05],[18.493253,-3.7122E-05],[18.496691,-3.4544E-05],[18.500128,-3.6091E-05]]}
-{"quant":[18.6779,1.1414],"mems":[[18.579193,-3.506E-05],[18.582632,-3.506E-05],[18.586071,-3.7638E-05],[18.589509,-3.7122E-05],[18.592948,-3.506E-05],[18.596387,-3.7122E-05],[18.599825,-3.8154E-05],[18.603264,-3.4029E-05],[18.606703,-3.6607E-05],[18.610141,-3.9185E-05],[18.61358,-3.4029E-05],[18.617019,-3.1967E-05],[18.620457,-2.9904E-05],[18.623896,-3.4029E-05],[18.627335,-3.9185E-05],[18.630773,-3.4544E-05],[18.634212,-3.0935E-05],[18.637651,-3.3513E-05],[18.641089,-3.6091E-05],[18.644528,-3.4544E-05],[18.647967,-3.5576E-05],[18.651405,-3.2998E-05],[18.654844,-3.5576E-05],[18.658283,-3.5576E-05],[18.661721,-3.3513E-05],[18.66516,-3.7122E-05],[18.668599,-3.5576E-05],[18.672037,-3.8154E-05],[18.675476,-4.2794E-05],[18.678915,-3.97E-05],[18.682353,-3.7122E-05],[18.685792,-3.4029E-05],[18.689231,-3.8669E-05],[18.692669,-3.6607E-05],[18.696108,-3.506E-05],[18.699547,-4.0216E-05],[18.702985,-3.6091E-05],[18.706424,-3.2482E-05],[18.709863,-3.4029E-05],[18.713301,-3.506E-05],[18.71674,-3.7122E-05],[18.720179,-4.1763E-05],[18.723617,-3.6091E-05],[18.727056,-3.0935E-05],[18.730495,-3.5576E-05],[18.733933,-3.4544E-05],[18.737372,-3.7638E-05],[18.740811,-3.97E-05],[18.744249,-3.7638E-05],[18.747688,-3.9185E-05],[18.751127,-3.7122E-05],[18.754565,-3.6091E-05],[18.758004,-3.6607E-05],[18.761443,-3.6091E-05],[18.764881,-3.7122E-05],[18.76832,-3.8154E-05],[18.771759,-3.7122E-05],[18.775197,-3.7122E-05],[18.778636,-3.6607E-05],[18.782075,-3.506E-05],[18.785513,-3.6607E-05],[18.788952,-3.7122E-05],[18.792391,-3.4544E-05],[18.795829,-3.042E-05],[18.799268,-3.2482E-05],[18.802707,-3.4029E-05],[18.806145,-3.1967E-05],[18.809584,-3.3513E-05],[18.813023,-3.2482E-05],[18.816461,-3.6091E-05],[18.8199,-3.7122E-05],[18.823339,-3.6607E-05],[18.826777,-4.0216E-05],[18.830216,-3.6091E-05],[18.833655,-3.506E-05],[18.837093,-3.1967E-05],[18.840532,-3.042E-05],[18.843971,-3.4544E-05],[18.847409,-3.4029E-05],[18.850848,-3.506E-05],[18.854287,-3.2482E-05],[18.857725,-3.5576E-05],[18.861164,-3.8154E-05],[18.864603,-3.4029E-05],[18.868041,-3.3513E-05],[18.87148,-3.4029E-05],[18.874919,-3.8669E-05]]}
-{"quant":[19.1463,1.158],"mems":[[19.046852,-3.7638E-05],[19.050291,-3.042E-05],[19.053729,-3.1967E-05],[19.057168,-3.7122E-05],[19.060607,-3.506E-05],[19.064045,-3.8154E-05],[19.067484,-3.7122E-05],[19.070923,-3.506E-05],[19.074361,-3.9185E-05],[19.0778,-3.5576E-05],[19.081239,-3.7638E-05],[19.084677,-3.9185E-05],[19.088116,-3.2998E-05],[19.091555,-3.4544E-05],[19.094993,-3.7122E-05],[19.098432,-3.9185E-05],[19.101871,-4.0216E-05],[19.105309,-3.8154E-05],[19.108748,-3.9185E-05],[19.112187,-3.6091E-05],[19.115625,-3.7638E-05],[19.119064,-4.2278E-05],[19.122503,-3.8669E-05],[19.125941,-4.0732E-05],[19.12938,-4.3309E-05],[19.132819,-3.8669E-05],[19.136257,-3.6607E-05],[19.139696,-3.4544E-05],[19.143135,-3.4029E-05],[19.146573,-3.8154E-05],[19.150012,-3.6091E-05],[19.153451,-3.3513E-05],[19.156889,-3.7638E-05],[19.160328,-4.0732E-05],[19.163767,-3.97E-05],[19.167205,-3.7122E-05],[19.170644,-4.0216E-05],[19.174083,-4.1247E-05],[19.177521,-3.8154E-05],[19.18096,-3.5576E-05],[19.184399,-3.2998E-05],[19.187837,-3.8669E-05],[19.191276,-3.97E-05],[19.194715,-3.5576E-05],[19.198153,-3.8154E-05],[19.201592,-3.8154E-05],[19.205031,-3.9185E-05],[19.208469,-3.7638E-05],[19.211908,-3.2998E-05],[19.215347,-3.4544E-05],[19.218785,-3.7122E-05],[19.222224,-3.8154E-05],[19.225663,-3.7638E-05],[19.229101,-3.2998E-05],[19.23254,-3.1967E-05],[19.235979,-3.506E-05],[19.239417,-3.2998E-05],[19.242856,-3.8154E-05],[19.246295,-3.9185E-05],[19.249733,-3.1967E-05],[19.253172,-3.4544E-05],[19.256611,-3.6091E-05],[19.260049,-3.8669E-05],[19.263488,-4.1247E-05],[19.266927,-3.506E-05],[19.270365,-3.6091E-05],[19.273804,-4.0732E-05],[19.277243,-3.9185E-05],[19.280681,-4.0732E-05],[19.28412,-3.97E-05],[19.287559,-3.9185E-05],[19.290997,-3.6607E-05],[19.294436,-2.9389E-05],[19.297875,-3.1967E-05],[19.301313,-3.7638E-05],[19.304752,-3.8154E-05],[19.308191,-3.6091E-05],[19.311629,-3.3513E-05],[19.315068,-3.5576E-05],[19.318507,-3.6607E-05],[19.321945,-3.5576E-05],[19.325384,-3.506E-05],[19.328823,-3.2998E-05],[19.332261,-3.1967E-05],[19.3357,-3.042E-05],[19.339139,-3.1967E-05],[19.342577,-3.8669E-05],[19.346016,-3.4544E-05]]}
-{"quant":[19.5353,1.1689],"mems":[[19.435421,-3.7122E-05],[19.43886,-3.3513E-05],[19.442299,-3.4029E-05],[19.445737,-3.4544E-05],[19.449176,-3.4544E-05],[19.452615,-3.6607E-05],[19.456053,-3.6607E-05],[19.459492,-3.506E-05],[19.462931,-3.6091E-05],[19.466369,-3.506E-05],[19.469808,-3.1967E-05],[19.473247,-2.7842E-05],[19.476685,-3.0935E-05],[19.480124,-3.8669E-05],[19.483563,-3.6091E-05],[19.487001,-3.5576E-05],[19.49044,-3.4544E-05],[19.493879,-3.4029E-05],[19.497317,-3.7638E-05],[19.500756,-3.3513E-05],[19.504195,-3.2998E-05],[19.507633,-3.6091E-05],[19.511072,-3.4029E-05],[19.514511,-3.4544E-05],[19.517949,-3.6607E-05],[19.521388,-3.4029E-05],[19.524827,-3.1451E-05],[19.528265,-3.3513E-05],[19.531704,-3.6091E-05],[19.535143,-4.1763E-05],[19.538581,-4.1763E-05],[19.54202,-3.506E-05],[19.545459,-3.7122E-05],[19.548897,-3.7638E-05],[19.552336,-3.2998E-05],[19.555775,-3.97E-05],[19.559213,-3.97E-05],[19.562652,-3.5576E-05],[19.566091,-3.6607E-05],[19.569529,-3.2482E-05],[19.572968,-3.7638E-05],[19.576407,-4.0732E-05],[19.579845,-3.7638E-05],[19.583284,-3.6607E-05],[19.586723,-3.2998E-05],[19.590161,-3.6607E-05],[19.5936,-3.8669E-05],[19.597039,-3.8154E-05],[19.600477,-3.8154E-05],[19.603916,-3.6091E-05],[19.607355,-3.506E-05],[19.610793,-2.9389E-05],[19.614232,-3.0935E-05],[19.617671,-3.8154E-05],[19.621109,-3.8154E-05],[19.624548,-3.5576E-05],[19.627987,-3.2998E-05],[19.631425,-3.506E-05],[19.634864,-3.6607E-05],[19.638303,-4.1247E-05],[19.641741,-3.8669E-05],[19.64518,-3.4029E-05],[19.648619,-3.6607E-05],[19.652057,-3.506E-05],[19.655496,-3.2998E-05],[19.658935,-3.6091E-05],[19.662373,-4.0732E-05],[19.665812,-3.8669E-05],[19.669251,-3.6607E-05],[19.672689,-3.6091E-05],[19.676128,-3.6607E-05],[19.679567,-3.8154E-05],[19.683005,-3.8669E-05],[19.686444,-3.7638E-05],[19.689883,-3.0935E-05],[19.693321,-2.8873E-05],[19.69676,-3.6607E-05],[19.700199,-3.7122E-05],[19.703637,-3.9185E-05],[19.707076,-4.1763E-05],[19.710515,-3.2998E-05],[19.713953,-3.4544E-05],[19.717392,-3.97E-05],[19.720831,-3.8154E-05],[19.724269,-3.9185E-05],[19.727708,-3.8669E-05],[19.731147,-3.9185E-05],[19.734585,-3.7122E-05]]}
-{"quant":[19.9205,1.175],"mems":[[19.820552,-3.6091E-05],[19.823991,-3.4029E-05],[19.827429,-3.2482E-05],[19.830868,-3.2998E-05],[19.834307,-3.0935E-05],[19.837745,-3.506E-05],[19.841184,-3.6607E-05],[19.844623,-2.9904E-05],[19.848061,-3.506E-05],[19.8515,-3.97E-05],[19.854939,-3.6091E-05],[19.858377,-3.8669E-05],[19.861816,-4.0732E-05],[19.865255,-3.506E-05],[19.868693,-3.4029E-05],[19.872132,-3.6091E-05],[19.875571,-3.8669E-05],[19.879009,-3.9185E-05],[19.882448,-3.7638E-05],[19.885887,-3.9185E-05],[19.889325,-3.7122E-05],[19.892764,-3.8669E-05],[19.896203,-4.1247E-05],[19.899641,-3.6607E-05],[19.90308,-3.506E-05],[19.906519,-3.6607E-05],[19.909957,-4.1247E-05],[19.913396,-3.8669E-05],[19.916835,-3.6607E-05],[19.920273,-4.1247E-05],[19.923712,-3.3513E-05],[19.927151,-3.3513E-05],[19.930589,-3.8154E-05],[19.934028,-3.5576E-05],[19.937467,-3.8154E-05],[19.940905,-3.1451E-05],[19.944344,-3.5576E-05],[19.947783,-3.97E-05],[19.951221,-3.3513E-05],[19.95466,-3.4029E-05],[19.958099,-3.2482E-05],[19.961537,-3.5576E-05],[19.964976,-3.7122E-05],[19.968415,-3.6091E-05],[19.971853,-3.97E-05],[19.975292,-3.7638E-05],[19.978731,-3.4029E-05],[19.982169,-3.4544E-05],[19.985608,-3.9185E-05],[19.989047,-3.8669E-05],[19.992485,-3.6607E-05],[19.995924,-4.0732E-05],[19.999363,-3.97E-05],[20.002801,-4.0732E-05],[20.00624,-4.0732E-05],[20.009679,-3.4544E-05],[20.013117,-3.97E-05],[20.016556,-3.6607E-05],[20.019995,-3.2998E-05],[20.023433,-3.6607E-05],[20.026872,-3.1451E-05],[20.030311,-3.506E-05],[20.033749,-3.8669E-05],[20.037188,-3.8669E-05],[20.040627,-3.9185E-05],[20.044065,-3.5576E-05],[20.047504,-3.4029E-05],[20.050943,-3.042E-05],[20.054381,-3.4029E-05],[20.05782,-4.1763E-05],[20.061259,-3.97E-05],[20.064697,-3.97E-05],[20.068136,-3.7638E-05],[20.071575,-2.9389E-05],[20.075013,-3.5576E-05],[20.078452,-4.1763E-05],[20.081891,-3.4544E-05],[20.085329,-3.506E-05],[20.088768,-3.4029E-05],[20.092207,-3.4029E-05],[20.095645,-4.1247E-05],[20.099084,-3.9185E-05],[20.102523,-3.1451E-05],[20.105961,-3.1967E-05],[20.1094,-3.4029E-05],[20.112839,-3.6607E-05],[20.116277,-3.97E-05],[20.119716,-3.7638E-05]]}
-{"quant":[20.2868,1.1722],"mems":[[20.188489,-3.8669E-05],[20.191928,-3.7638E-05],[20.195367,-3.7638E-05],[20.198805,-4.0216E-05],[20.202244,-3.6091E-05],[20.205683,-4.1763E-05],[20.209121,-3.6091E-05],[20.21256,-3.1967E-05],[20.215999,-4.1763E-05],[20.219437,-3.6607E-05],[20.222876,-3.3513E-05],[20.226315,-3.506E-05],[20.229753,-3.5576E-05],[20.233192,-3.5576E-05],[20.236631,-3.8669E-05],[20.240069,-3.8154E-05],[20.243508,-3.5576E-05],[20.246947,-4.2278E-05],[20.250385,-3.6607E-05],[20.253824,-2.9904E-05],[20.257263,-3.4544E-05],[20.260701,-3.7638E-05],[20.26414,-3.506E-05],[20.267579,-3.3513E-05],[20.271017,-3.6091E-05],[20.274456,-3.3513E-05],[20.277895,-3.2482E-05],[20.281333,-3.4029E-05],[20.284772,-3.1967E-05],[20.288211,-3.3513E-05],[20.291649,-3.5576E-05],[20.295088,-3.5576E-05],[20.298527,-3.8154E-05],[20.301965,-3.506E-05],[20.305404,-3.2998E-05],[20.308843,-3.4544E-05],[20.312281,-3.2998E-05],[20.31572,-3.506E-05],[20.319159,-3.8669E-05],[20.322597,-3.8669E-05],[20.326036,-3.2998E-05],[20.329475,-3.1967E-05],[20.332913,-3.4029E-05],[20.336352,-3.3513E-05],[20.339791,-3.6091E-05],[20.343229,-3.042E-05],[20.346668,-2.8357E-05],[20.350107,-3.6091E-05],[20.353545,-3.4029E-05],[20.356984,-3.5576E-05],[20.360423,-3.4544E-05],[20.363861,-3.3513E-05],[20.3673,-3.8669E-05],[20.370739,-3.2998E-05],[20.374177,-3.2998E-05],[20.377616,-3.7122E-05],[20.381055,-3.2998E-05],[20.384493,-3.3513E-05],[20.387932,-3.2482E-05],[20.391371,-3.8154E-05],[20.394809,-3.9185E-05],[20.398248,-3.4544E-05],[20.401687,-3.6607E-05],[20.405125,-3.1451E-05],[20.408564,-3.2998E-05],[20.412003,-3.4544E-05],[20.415441,-3.3513E-05],[20.41888,-3.6607E-05],[20.422319,-3.7638E-05],[20.425757,-3.8154E-05],[20.429196,-3.5576E-05],[20.432635,-3.9185E-05],[20.436073,-3.97E-05],[20.439512,-3.4544E-05],[20.442951,-3.506E-05],[20.446389,-3.4544E-05],[20.449828,-3.1451E-05],[20.453267,-3.2998E-05],[20.456705,-3.6607E-05],[20.460144,-3.8154E-05],[20.463583,-3.97E-05],[20.467021,-3.7638E-05],[20.47046,-3.7122E-05],[20.473899,-3.6607E-05],[20.477337,-3.5576E-05],[20.480776,-3.9185E-05],[20.484215,-3.506E-05]]}
-{"quant":[20.6608,1.1705],"mems":[[20.563304,-3.7122E-05],[20.566743,-3.1967E-05],[20.570181,-3.1967E-05],[20.57362,-3.1451E-05],[20.577059,-3.7122E-05],[20.580497,-3.8154E-05],[20.583936,-3.6607E-05],[20.587375,-3.3513E-05],[20.590813,-3.2482E-05],[20.594252,-3.8669E-05],[20.597691,-3.7638E-05],[20.601129,-3.4029E-05],[20.604568,-3.4544E-05],[20.608007,-3.4544E-05],[20.611445,-3.5576E-05],[20.614884,-3.6607E-05],[20.618323,-3.8154E-05],[20.621761,-3.5576E-05],[20.6252,-3.6091E-05],[20.628639,-3.6091E-05],[20.632077,-3.4544E-05],[20.635516,-3.9185E-05],[20.638955,-3.6607E-05],[20.642393,-3.8154E-05],[20.645832,-3.8154E-05],[20.649271,-3.4029E-05],[20.652709,-3.2998E-05],[20.656148,-3.3513E-05],[20.659587,-3.6091E-05],[20.663025,-3.6091E-05],[20.666464,-3.6091E-05],[20.669903,-3.6607E-05],[20.673341,-4.1763E-05],[20.67678,-4.1247E-05],[20.680219,-3.5576E-05],[20.683657,-3.6091E-05],[20.687096,-3.5576E-05],[20.690535,-3.3513E-05],[20.693973,-4.1247E-05],[20.697412,-4.1763E-05],[20.700851,-3.2998E-05],[20.704289,-3.7122E-05],[20.707728,-4.0216E-05],[20.711167,-3.5576E-05],[20.714605,-3.4544E-05],[20.718044,-3.5576E-05],[20.721483,-3.5576E-05],[20.724921,-3.2998E-05],[20.72836,-2.8873E-05],[20.731799,-3.042E-05],[20.735237,-3.7638E-05],[20.738676,-4.0216E-05],[20.742115,-4.0216E-05],[20.745553,-3.6091E-05],[20.748992,-3.4029E-05],[20.752431,-3.8154E-05],[20.755869,-3.6091E-05],[20.759308,-3.7122E-05],[20.762747,-4.1247E-05],[20.766185,-3.6607E-05],[20.769624,-3.4544E-05],[20.773063,-3.506E-05],[20.776501,-3.6091E-05],[20.77994,-3.7122E-05],[20.783379,-4.1247E-05],[20.786817,-3.7638E-05],[20.790256,-3.4029E-05],[20.793695,-3.97E-05],[20.797133,-3.6091E-05],[20.800572,-3.6607E-05],[20.804011,-3.8669E-05],[20.807449,-4.0216E-05],[20.810888,-4.1247E-05],[20.814327,-3.8669E-05],[20.817765,-3.8669E-05],[20.821204,-3.7122E-05],[20.824643,-3.7122E-05],[20.828081,-3.2482E-05],[20.83152,-3.6091E-05],[20.834959,-4.2278E-05],[20.838397,-3.97E-05],[20.841836,-3.6607E-05],[20.845275,-3.2998E-05],[20.848713,-3.4544E-05],[20.852152,-3.1451E-05],[20.855591,-3.1451E-05],[20.859029,-3.5576E-05]]}
-{"quant":[21.0242,1.1738],"mems":[[20.962189,-3.7122E-05],[20.965628,-3.4544E-05],[20.969067,-3.4029E-05],[20.972505,-3.5576E-05],[20.975944,-3.7638E-05],[20.979383,-4.1247E-05],[20.982821,-4.0216E-05],[20.98626,-3.7122E-05],[20.989699,-3.6607E-05],[20.993137,-3.1967E-05],[20.996576,-3.3513E-05],[21.000015,-3.7122E-05],[21.003453,-3.4029E-05],[21.006892,-3.2482E-05],[21.010331,-3.4029E-05],[21.013769,-3.4544E-05],[21.017208,-3.6091E-05],[21.020647,-3.8669E-05],[21.024085,-2.7842E-05],[21.027524,-2.8873E-05],[21.030963,-3.7638E-05],[21.034401,-3.1967E-05],[21.03784,-3.506E-05],[21.041279,-3.7638E-05],[21.044717,-3.506E-05],[21.048156,-3.2482E-05],[21.051595,-3.1967E-05],[21.055033,-3.8154E-05],[21.058472,-3.2998E-05],[21.061911,-3.0935E-05],[21.065349,-3.4544E-05],[21.068788,-3.6607E-05],[21.072227,-3.97E-05],[21.075665,-3.6091E-05],[21.079104,-3.4544E-05],[21.082543,-3.1967E-05],[21.085981,-3.2482E-05],[21.08942,-3.8669E-05],[21.092859,-3.8154E-05],[21.096297,-4.0216E-05],[21.099736,-3.9185E-05],[21.103175,-3.6607E-05],[21.106613,-3.6091E-05],[21.110052,-3.506E-05],[21.113491,-3.7638E-05],[21.116929,-3.5576E-05],[21.120368,-3.4029E-05],[21.123807,-3.8154E-05],[21.127245,-3.9185E-05],[21.130684,-3.4544E-05],[21.134123,-3.6091E-05],[21.137561,-3.6091E-05],[21.141,-3.4029E-05],[21.144463,-3.8154E-05],[21.147925,-3.2998E-05],[21.151388,-3.4029E-05],[21.154851,-3.7122E-05],[21.158313,-3.7122E-05],[21.161776,-4.1763E-05],[21.165239,-3.7638E-05],[21.168701,-3.7122E-05],[21.172164,-3.4544E-05],[21.175627,-3.2998E-05],[21.179089,-3.8154E-05],[21.182552,-3.6091E-05],[21.186015,-3.4544E-05],[21.189477,-3.4029E-05],[21.19294,-3.5576E-05],[21.196403,-4.0216E-05],[21.199865,-3.7638E-05],[21.203328,-3.5576E-05],[21.206791,-3.5576E-05],[21.210253,-3.2482E-05],[21.213716,-3.7122E-05],[21.217179,-3.5576E-05],[21.220641,-3.1967E-05],[21.224104,-3.6091E-05],[21.227567,-3.5576E-05],[21.231029,-3.7638E-05],[21.234492,-3.7638E-05],[21.237955,-3.8669E-05],[21.241417,-3.8154E-05],[21.24488,-3.506E-05],[21.248343,-3.8154E-05],[21.251805,-3.2998E-05],[21.255268,-3.2998E-05]]}
-{"quant":[21.4399,1.1773],"mems":[[21.341835,-3.4029E-05],[21.345297,-3.4544E-05],[21.34876,-3.4544E-05],[21.352223,-3.7122E-05],[21.355685,-3.8154E-05],[21.359148,-3.7122E-05],[21.362611,-3.8669E-05],[21.366073,-3.0935E-05],[21.369536,-2.8873E-05],[21.372999,-3.1451E-05],[21.376461,-3.1451E-05],[21.379924,-3.5576E-05],[21.383387,-3.3513E-05],[21.386849,-3.4029E-05],[21.390312,-3.1967E-05],[21.393775,-3.1967E-05],[21.397237,-3.8154E-05],[21.4007,-3.6607E-05],[21.404163,-3.6607E-05],[21.407625,-3.6607E-05],[21.411088,-3.7122E-05],[21.414551,-3.6607E-05],[21.418013,-3.4029E-05],[21.421476,-3.3513E-05],[21.424939,-3.3513E-05],[21.428401,-3.2482E-05],[21.431864,-3.3513E-05],[21.435327,-3.4544E-05],[21.438789,-3.3513E-05],[21.442252,-3.2998E-05],[21.445715,-3.2998E-05],[21.449177,-3.506E-05],[21.45264,-3.6607E-05],[21.456103,-3.9185E-05],[21.459565,-3.8154E-05],[21.463028,-3.4544E-05],[21.466491,-3.6091E-05],[21.469953,-3.6607E-05],[21.473416,-3.8154E-05],[21.476879,-3.7638E-05],[21.480341,-3.7122E-05],[21.483804,-3.6091E-05],[21.487267,-3.4029E-05],[21.490729,-3.6091E-05],[21.494192,-3.6091E-05],[21.497655,-3.4544E-05],[21.501117,-3.6091E-05],[21.50458,-3.7122E-05],[21.508043,-3.8154E-05],[21.511505,-3.6607E-05],[21.514968,-3.7122E-05],[21.518431,-3.5576E-05],[21.521893,-3.2482E-05],[21.525356,-3.7122E-05],[21.528819,-3.6607E-05],[21.532281,-3.6607E-05],[21.535744,-3.5576E-05],[21.539207,-3.1451E-05],[21.542669,-3.2998E-05],[21.546132,-3.3513E-05],[21.549595,-3.3513E-05],[21.553057,-3.042E-05],[21.55652,-3.5576E-05],[21.559983,-3.6607E-05],[21.563445,-3.506E-05],[21.566908,-3.8154E-05],[21.570371,-3.2998E-05],[21.573833,-3.5576E-05],[21.577296,-3.7638E-05],[21.580759,-3.5576E-05],[21.584221,-3.6091E-05],[21.587684,-3.3513E-05],[21.591147,-3.6091E-05],[21.594609,-4.1763E-05],[21.598072,-3.8669E-05],[21.601535,-3.8669E-05],[21.604997,-4.0216E-05],[21.60846,-3.7122E-05],[21.611923,-4.1247E-05],[21.615385,-3.6091E-05],[21.618848,-3.1967E-05],[21.622311,-3.506E-05],[21.625773,-3.2998E-05],[21.629236,-3.5576E-05],[21.632699,-3.6091E-05],[21.636161,-3.8669E-05],[21.639624,-3.6607E-05]]}
-{"quant":[21.8324,1.1746],"mems":[[21.733116,-3.4544E-05],[21.736579,-3.506E-05],[21.740041,-3.6091E-05],[21.743504,-3.2998E-05],[21.746967,-3.506E-05],[21.750429,-3.3513E-05],[21.753892,-2.9389E-05],[21.757355,-3.2482E-05],[21.760817,-3.9185E-05],[21.76428,-3.6607E-05],[21.767743,-3.2482E-05],[21.771205,-3.1967E-05],[21.774668,-3.6607E-05],[21.778131,-4.1247E-05],[21.781593,-3.8669E-05],[21.785056,-3.8154E-05],[21.788519,-3.506E-05],[21.791981,-3.5576E-05],[21.795444,-3.6091E-05],[21.798907,-3.6091E-05],[21.802369,-3.6607E-05],[21.805832,-3.0935E-05],[21.809295,-3.2998E-05],[21.812757,-3.7122E-05],[21.81622,-3.6607E-05],[21.819683,-3.6607E-05],[21.823145,-3.7638E-05],[21.826608,-3.8669E-05],[21.830071,-3.7638E-05],[21.833533,-3.506E-05],[21.836996,-3.4544E-05],[21.840459,-3.8669E-05],[21.843921,-4.3309E-05],[21.847384,-3.9185E-05],[21.850847,-3.1451E-05],[21.854309,-3.2482E-05],[21.857772,-3.5576E-05],[21.861235,-3.4029E-05],[21.864697,-3.6091E-05],[21.86816,-3.8154E-05],[21.871623,-3.4544E-05],[21.875085,-3.506E-05],[21.878548,-4.0732E-05],[21.882011,-3.9185E-05],[21.885473,-3.7638E-05],[21.888936,-3.8154E-05],[21.892399,-3.0935E-05],[21.895861,-3.4029E-05],[21.899324,-4.0216E-05],[21.902787,-3.5576E-05],[21.906249,-3.8154E-05],[21.909712,-3.8154E-05],[21.913175,-3.042E-05],[21.916637,-3.4544E-05],[21.9201,-4.3309E-05],[21.923563,-4.1247E-05],[21.927025,-3.6091E-05],[21.930488,-3.6091E-05],[21.933951,-3.4544E-05],[21.937413,-3.6091E-05],[21.940876,-3.7638E-05],[21.944339,-3.8154E-05],[21.947801,-3.4029E-05],[21.951264,-3.3513E-05],[21.954727,-3.6607E-05],[21.958189,-3.4029E-05],[21.961652,-3.5576E-05],[21.965115,-3.7122E-05],[21.968577,-3.5576E-05],[21.97204,-3.0935E-05],[21.975503,-3.1451E-05],[21.978965,-3.7122E-05],[21.982428,-3.6607E-05],[21.985891,-3.4029E-05],[21.989353,-3.506E-05],[21.992816,-3.6607E-05],[21.996279,-3.6607E-05],[21.999741,-3.8154E-05],[22.003204,-3.2998E-05],[22.006667,-3.2998E-05],[22.010129,-4.0216E-05],[22.013592,-3.6607E-05],[22.017055,-3.6091E-05],[22.020517,-3.8669E-05],[22.02398,-3.7638E-05],[22.027443,-3.4544E-05],[22.030905,-3.2998E-05]]}
-{"quant":[22.2096,1.1775],"mems":[[22.110547,-3.1967E-05],[22.114009,-3.4029E-05],[22.117472,-3.6091E-05],[22.120935,-3.7122E-05],[22.124397,-4.0732E-05],[22.12786,-3.7638E-05],[22.131323,-3.5576E-05],[22.134785,-3.4544E-05],[22.138248,-3.4029E-05],[22.141711,-3.8154E-05],[22.145173,-3.9185E-05],[22.148636,-3.7122E-05],[22.152099,-3.7122E-05],[22.155561,-3.2998E-05],[22.159024,-3.2482E-05],[22.162487,-3.7122E-05],[22.165949,-3.7122E-05],[22.169412,-3.2482E-05],[22.172875,-2.8873E-05],[22.176337,-3.4029E-05],[22.1798,-3.5576E-05],[22.183263,-3.6091E-05],[22.186725,-3.97E-05],[22.190188,-3.4029E-05],[22.193651,-3.5576E-05],[22.197113,-4.1247E-05],[22.200576,-3.6091E-05],[22.204039,-3.4029E-05],[22.207501,-3.7122E-05],[22.210964,-3.7122E-05],[22.214427,-3.7122E-05],[22.217889,-3.8154E-05],[22.221352,-3.8154E-05],[22.224815,-3.8669E-05],[22.228277,-3.6091E-05],[22.23174,-3.1451E-05],[22.235203,-3.2482E-05],[22.238665,-3.1451E-05],[22.242128,-3.4029E-05],[22.245591,-4.0216E-05],[22.249053,-3.5576E-05],[22.252516,-3.6607E-05],[22.255979,-4.0732E-05],[22.259441,-3.6091E-05],[22.262904,-3.506E-05],[22.266367,-3.6091E-05],[22.269829,-3.6607E-05],[22.273292,-3.7122E-05],[22.276755,-3.4029E-05],[22.280217,-3.8669E-05],[22.28368,-3.8669E-05],[22.287143,-3.6091E-05],[22.290605,-3.8154E-05],[22.294068,-3.2998E-05],[22.297531,-3.4029E-05],[22.300993,-3.7122E-05],[22.304456,-3.6607E-05],[22.307919,-3.6607E-05],[22.311381,-3.7122E-05],[22.314844,-3.4029E-05],[22.318307,-3.042E-05],[22.321769,-3.6091E-05],[22.325232,-3.7122E-05],[22.328695,-3.97E-05],[22.332157,-3.9185E-05],[22.33562,-3.7122E-05],[22.339083,-3.7638E-05],[22.342545,-3.506E-05],[22.346008,-4.1763E-05],[22.349471,-3.97E-05],[22.352933,-3.7122E-05],[22.356396,-3.6091E-05],[22.359859,-3.2482E-05],[22.363321,-3.9185E-05],[22.366784,-3.506E-05],[22.370247,-3.6091E-05],[22.373709,-3.8154E-05],[22.377172,-3.6607E-05],[22.380635,-4.0732E-05],[22.384097,-3.4544E-05],[22.38756,-3.7122E-05],[22.391023,-4.2794E-05],[22.394485,-3.7122E-05],[22.397948,-3.506E-05],[22.401411,-3.7122E-05],[22.404873,-3.4544E-05],[22.408336,-3.2482E-05]]}
-{"quant":[22.5906,1.1875],"mems":[[22.49144,-4.0732E-05],[22.494903,-3.8154E-05],[22.498365,-3.6607E-05],[22.501828,-3.8154E-05],[22.505291,-3.2998E-05],[22.508753,-3.506E-05],[22.512216,-4.2794E-05],[22.515679,-3.9185E-05],[22.519141,-3.8669E-05],[22.522604,-4.0732E-05],[22.526067,-3.9185E-05],[22.529529,-4.0732E-05],[22.532992,-3.7638E-05],[22.536455,-3.6091E-05],[22.539917,-4.0216E-05],[22.54338,-3.8669E-05],[22.546843,-3.506E-05],[22.550305,-3.3513E-05],[22.553768,-3.5576E-05],[22.557231,-3.3513E-05],[22.560693,-3.3513E-05],[22.564156,-3.8669E-05],[22.567619,-3.4029E-05],[22.571081,-3.506E-05],[22.574544,-3.8669E-05],[22.578007,-3.8154E-05],[22.581469,-4.2794E-05],[22.584932,-3.8154E-05],[22.588395,-3.506E-05],[22.591857,-3.8154E-05],[22.59532,-3.6607E-05],[22.598783,-3.4544E-05],[22.602245,-3.5576E-05],[22.605708,-3.8154E-05],[22.609171,-3.5576E-05],[22.612633,-3.3513E-05],[22.616096,-3.4544E-05],[22.619559,-3.6091E-05],[22.623021,-3.7122E-05],[22.626484,-3.8669E-05],[22.629947,-3.97E-05],[22.633409,-3.6091E-05],[22.636872,-3.7638E-05],[22.640335,-4.1247E-05],[22.643797,-3.5576E-05],[22.64726,-3.1967E-05],[22.650723,-3.7122E-05],[22.654185,-3.506E-05],[22.657648,-3.4544E-05],[22.661111,-4.2794E-05],[22.664573,-4.1763E-05],[22.668036,-3.7122E-05],[22.671499,-3.6607E-05],[22.674961,-3.3513E-05],[22.678424,-3.3513E-05],[22.681887,-3.8154E-05],[22.685349,-3.7638E-05],[22.688812,-3.8154E-05],[22.692275,-4.1763E-05],[22.695737,-3.7122E-05],[22.6992,-3.5576E-05],[22.702663,-3.506E-05],[22.706125,-3.6091E-05],[22.709588,-3.3513E-05],[22.713051,-3.042E-05],[22.716513,-3.7122E-05],[22.719976,-3.6091E-05],[22.723439,-3.7638E-05],[22.726901,-3.8154E-05],[22.730364,-3.5576E-05],[22.733827,-3.7122E-05],[22.737289,-3.506E-05],[22.740752,-3.506E-05],[22.744215,-3.4029E-05],[22.747677,-3.3513E-05],[22.75114,-3.506E-05],[22.754603,-3.4544E-05],[22.758065,-3.4544E-05],[22.761528,-3.506E-05],[22.764991,-3.7638E-05],[22.768453,-4.0732E-05],[22.771916,-3.97E-05],[22.775379,-3.4544E-05],[22.778841,-3.2998E-05],[22.782304,-3.7122E-05],[22.785767,-3.7122E-05],[22.789229,-3.7638E-05]]}
-{"quant":[22.9723,1.196],"mems":[[22.872333,-3.7638E-05],[22.875796,-3.2482E-05],[22.879259,-3.6091E-05],[22.882721,-4.0732E-05],[22.886184,-3.8669E-05],[22.889647,-3.8154E-05],[22.893109,-3.6091E-05],[22.896572,-3.6607E-05],[22.900035,-3.4029E-05],[22.903497,-3.7122E-05],[22.90696,-3.8154E-05],[22.910423,-3.4029E-05],[22.913885,-3.2482E-05],[22.917348,-3.7638E-05],[22.920811,-4.0732E-05],[22.924273,-3.7122E-05],[22.927736,-3.7638E-05],[22.931199,-3.4029E-05],[22.934661,-3.6091E-05],[22.938124,-3.506E-05],[22.941587,-3.506E-05],[22.945049,-3.97E-05],[22.948512,-3.5576E-05],[22.951975,-3.7122E-05],[22.955437,-3.4544E-05],[22.9589,-3.4029E-05],[22.962363,-3.7638E-05],[22.965825,-3.7122E-05],[22.969288,-3.7122E-05],[22.972751,-3.8154E-05],[22.976213,-3.4544E-05],[22.979676,-3.2998E-05],[22.983139,-3.97E-05],[22.986601,-3.7122E-05],[22.990064,-3.4029E-05],[22.993527,-3.8669E-05],[22.996989,-3.9185E-05],[23.000452,-4.0732E-05],[23.003915,-4.1763E-05],[23.007377,-3.7638E-05],[23.01084,-3.7638E-05],[23.014303,-3.4544E-05],[23.017765,-3.4029E-05],[23.021228,-3.4029E-05],[23.024691,-3.2998E-05],[23.028153,-3.6091E-05],[23.031616,-3.4029E-05],[23.035079,-3.506E-05],[23.038541,-3.4029E-05],[23.042004,-3.6091E-05],[23.045467,-4.1763E-05],[23.048929,-3.4544E-05],[23.052392,-3.3513E-05],[23.055855,-3.8154E-05],[23.059317,-3.3513E-05],[23.06278,-3.1967E-05],[23.066243,-3.6607E-05],[23.069705,-3.7638E-05],[23.073168,-3.506E-05],[23.076631,-3.7638E-05],[23.080093,-3.8669E-05],[23.083556,-3.7122E-05],[23.087019,-3.7122E-05],[23.090481,-3.4544E-05],[23.093944,-3.8154E-05],[23.097407,-3.4544E-05],[23.100869,-2.8873E-05],[23.104332,-3.7122E-05],[23.107795,-3.6091E-05],[23.111257,-3.8669E-05],[23.11472,-3.8669E-05],[23.118183,-3.0935E-05],[23.121645,-3.3513E-05],[23.125108,-3.3513E-05],[23.128571,-3.5576E-05],[23.132033,-3.5576E-05],[23.135496,-2.9389E-05],[23.138959,-2.9904E-05],[23.142421,-3.2998E-05],[23.145884,-3.5576E-05],[23.149347,-3.506E-05],[23.152809,-3.9185E-05],[23.156272,-4.0732E-05],[23.159735,-3.4544E-05],[23.163197,-3.4544E-05],[23.16666,-3.6091E-05],[23.170123,-3.506E-05]]}
-{"quant":[23.333,1.202],"mems":[[23.235913,-3.2482E-05],[23.239376,-3.5576E-05],[23.242839,-3.3513E-05],[23.246301,-3.5576E-05],[23.249764,-3.8669E-05],[23.253227,-3.8154E-05],[23.256689,-3.8154E-05],[23.260152,-3.6091E-05],[23.263615,-3.8154E-05],[23.267077,-3.6091E-05],[23.27054,-3.6607E-05],[23.274003,-3.7122E-05],[23.277465,-2.9389E-05],[23.280928,-3.6607E-05],[23.284391,-4.1763E-05],[23.287853,-3.7122E-05],[23.291316,-3.6607E-05],[23.294779,-3.3513E-05],[23.298241,-3.2482E-05],[23.301704,-3.4544E-05],[23.305167,-4.0732E-05],[23.308629,-3.8154E-05],[23.312092,-3.4029E-05],[23.315555,-4.0216E-05],[23.319017,-3.8154E-05],[23.32248,-3.8154E-05],[23.325943,-3.8154E-05],[23.329405,-3.5576E-05],[23.332868,-3.6607E-05],[23.336331,-3.5576E-05],[23.339793,-3.5576E-05],[23.343256,-3.4029E-05],[23.346719,-3.7122E-05],[23.350181,-4.0732E-05],[23.353644,-4.0216E-05],[23.357107,-3.6607E-05],[23.360569,-3.1967E-05],[23.364032,-3.506E-05],[23.367495,-4.0216E-05],[23.370957,-3.5576E-05],[23.37442,-2.8873E-05],[23.377883,-3.2998E-05],[23.381345,-3.6091E-05],[23.384808,-3.506E-05],[23.388271,-3.97E-05],[23.391733,-3.97E-05],[23.395196,-3.7122E-05],[23.398659,-3.506E-05],[23.402121,-3.3513E-05],[23.405584,-3.506E-05],[23.409047,-3.2482E-05],[23.412509,-3.7122E-05],[23.415972,-3.8669E-05],[23.419435,-3.506E-05],[23.422897,-3.5576E-05],[23.42636,-3.2482E-05],[23.429823,-3.8154E-05],[23.433285,-4.1247E-05],[23.436748,-3.8669E-05],[23.440211,-3.97E-05],[23.443673,-3.6091E-05],[23.447136,-3.4544E-05],[23.450599,-3.5576E-05],[23.454061,-3.4029E-05],[23.457524,-3.5576E-05],[23.460987,-3.9185E-05],[23.464449,-3.6607E-05],[23.467912,-3.506E-05],[23.471375,-3.8154E-05],[23.474837,-3.7638E-05],[23.4783,-3.506E-05],[23.481763,-3.7638E-05],[23.485225,-4.0216E-05],[23.488688,-3.4029E-05],[23.492151,-3.4029E-05],[23.495613,-3.7122E-05],[23.499076,-3.2998E-05],[23.502539,-3.5576E-05],[23.506001,-4.1247E-05],[23.509464,-4.0216E-05],[23.512927,-3.8154E-05],[23.516389,-3.2482E-05],[23.519852,-2.9389E-05],[23.523315,-3.1967E-05],[23.526777,-3.2998E-05],[23.53024,-3.7638E-05]]}
-{"quant":[23.7144,1.1869],"mems":[[23.647971,-3.2482E-05],[23.651433,-3.1967E-05],[23.654896,-3.1451E-05],[23.658359,-3.2482E-05],[23.661821,-3.3513E-05],[23.665284,-4.1247E-05],[23.668747,-4.0216E-05],[23.672209,-3.6607E-05],[23.675672,-3.7122E-05],[23.679135,-3.4029E-05],[23.682597,-3.8154E-05],[23.68606,-3.7638E-05],[23.689523,-3.4029E-05],[23.692985,-3.6607E-05],[23.696448,-3.8154E-05],[23.699911,-3.5576E-05],[23.703373,-3.5576E-05],[23.706836,-3.9185E-05],[23.710299,-3.5576E-05],[23.713761,-3.4544E-05],[23.717224,-3.7638E-05],[23.720687,-3.2998E-05],[23.724149,-3.4544E-05],[23.727612,-3.97E-05],[23.731075,-3.8669E-05],[23.734537,-3.6091E-05],[23.738,-3.97E-05],[23.741456,-3.8154E-05],[23.744912,-3.506E-05],[23.748368,-4.2278E-05],[23.751824,-3.6607E-05],[23.75528,-3.7122E-05],[23.758736,-4.0216E-05],[23.762192,-2.9904E-05],[23.765648,-3.4544E-05],[23.769104,-4.0216E-05],[23.77256,-3.8154E-05],[23.776016,-3.8669E-05],[23.779472,-3.9185E-05],[23.782928,-3.7638E-05],[23.786384,-3.5576E-05],[23.78984,-3.6607E-05],[23.793296,-3.7638E-05],[23.796752,-3.506E-05],[23.800208,-3.6607E-05],[23.803664,-3.97E-05],[23.80712,-3.7638E-05],[23.810576,-3.7122E-05],[23.814032,-3.5576E-05],[23.817488,-3.0935E-05],[23.820944,-3.6607E-05],[23.8244,-4.2278E-05],[23.827856,-4.1247E-05],[23.831312,-3.9185E-05],[23.834768,-3.7122E-05],[23.838224,-3.3513E-05],[23.84168,-3.5576E-05],[23.845136,-3.97E-05],[23.848592,-3.7638E-05],[23.852048,-3.5576E-05],[23.855504,-3.6091E-05],[23.85896,-3.6091E-05],[23.862416,-3.4029E-05],[23.865872,-3.5576E-05],[23.869328,-3.8669E-05],[23.872784,-3.5576E-05],[23.87624,-3.6091E-05],[23.879696,-3.6607E-05],[23.883152,-3.6091E-05],[23.886608,-4.0732E-05],[23.890064,-3.8669E-05],[23.89352,-3.6607E-05],[23.896976,-4.0732E-05],[23.900432,-3.8669E-05],[23.903888,-3.6091E-05],[23.907344,-3.9185E-05],[23.9108,-3.8669E-05],[23.914256,-3.6091E-05],[23.917712,-3.97E-05],[23.921168,-3.8154E-05],[23.924624,-3.7638E-05],[23.92808,-3.8154E-05],[23.931536,-3.4029E-05],[23.934992,-3.4029E-05],[23.938448,-3.4029E-05],[23.941904,-3.506E-05],[23.94536,-3.4544E-05]]}
-{"quant":[24.1094,1.1625],"mems":[[24.011024,-3.97E-05],[24.01448,-3.7638E-05],[24.017936,-3.506E-05],[24.021392,-3.7122E-05],[24.024848,-3.4029E-05],[24.028304,-3.8669E-05],[24.03176,-3.6091E-05],[24.035216,-3.1967E-05],[24.038672,-3.4544E-05],[24.042128,-3.2998E-05],[24.045584,-3.6091E-05],[24.04904,-3.5576E-05],[24.052496,-3.8669E-05],[24.055952,-3.7122E-05],[24.059408,-3.1451E-05],[24.062864,-3.2482E-05],[24.06632,-3.4029E-05],[24.069776,-3.6607E-05],[24.073232,-4.0732E-05],[24.076688,-3.9185E-05],[24.080144,-3.1451E-05],[24.0836,-3.3513E-05],[24.087056,-3.7122E-05],[24.090512,-3.6607E-05],[24.093968,-3.506E-05],[24.097424,-3.4544E-05],[24.10088,-3.7122E-05],[24.104336,-3.5576E-05],[24.107792,-3.8154E-05],[24.111248,-3.7638E-05],[24.114704,-3.2482E-05],[24.11816,-3.2482E-05],[24.121616,-3.1967E-05],[24.125072,-3.4544E-05],[24.128528,-3.7122E-05],[24.131984,-4.2278E-05],[24.13544,-4.1763E-05],[24.138896,-3.506E-05],[24.142352,-3.4544E-05],[24.145808,-3.5576E-05],[24.149264,-3.7638E-05],[24.15272,-3.8669E-05],[24.156176,-3.4544E-05],[24.159632,-2.9904E-05],[24.163088,-3.042E-05],[24.166544,-3.6091E-05],[24.17,-3.506E-05],[24.173456,-3.2998E-05],[24.176912,-3.6607E-05],[24.180368,-3.506E-05],[24.183824,-3.7638E-05],[24.18728,-3.8669E-05],[24.190736,-3.5576E-05],[24.194192,-3.8154E-05],[24.197648,-3.2998E-05],[24.201104,-3.4029E-05],[24.20456,-3.7638E-05],[24.208016,-3.1967E-05],[24.211472,-3.6091E-05],[24.214928,-3.7122E-05],[24.218384,-3.3513E-05],[24.22184,-3.1967E-05],[24.225296,-3.4029E-05],[24.228752,-3.8669E-05],[24.232208,-3.97E-05],[24.235664,-4.1247E-05],[24.23912,-3.8154E-05],[24.242576,-3.5576E-05],[24.246032,-3.6091E-05],[24.249488,-3.5576E-05],[24.252944,-4.0216E-05],[24.2564,-3.8669E-05],[24.259856,-3.7122E-05],[24.263312,-4.0732E-05],[24.266768,-3.6607E-05],[24.270224,-3.7638E-05],[24.27368,-4.0732E-05],[24.277136,-3.7638E-05],[24.280592,-3.5576E-05],[24.284048,-3.5576E-05],[24.287504,-3.7122E-05],[24.29096,-3.97E-05],[24.294416,-3.8154E-05],[24.297872,-3.6607E-05],[24.301328,-3.7122E-05],[24.304784,-3.8669E-05],[24.30824,-3.5576E-05]]}
-{"quant":[24.4643,1.1439],"mems":[[24.366992,-2.7326E-05],[24.370448,-3.2998E-05],[24.373904,-3.3513E-05],[24.37736,-3.6607E-05],[24.380816,-3.9185E-05],[24.384272,-3.6091E-05],[24.387728,-3.2998E-05],[24.391184,-3.3513E-05],[24.39464,-3.7638E-05],[24.398096,-3.8669E-05],[24.401552,-3.8154E-05],[24.405008,-3.8669E-05],[24.408464,-3.8154E-05],[24.41192,-3.7638E-05],[24.415376,-3.7122E-05],[24.418832,-3.9185E-05],[24.422288,-3.5576E-05],[24.425744,-3.506E-05],[24.4292,-3.6607E-05],[24.432656,-3.506E-05],[24.436112,-3.7638E-05],[24.439568,-3.7122E-05],[24.443024,-3.5576E-05],[24.44648,-3.6607E-05],[24.449936,-3.6091E-05],[24.453392,-3.6091E-05],[24.456848,-3.8669E-05],[24.460304,-3.9185E-05],[24.46376,-3.7638E-05],[24.467216,-3.506E-05],[24.470672,-3.4544E-05],[24.474128,-3.8669E-05],[24.477584,-3.4544E-05],[24.48104,-3.2998E-05],[24.484496,-3.7122E-05],[24.487952,-3.6607E-05],[24.491408,-3.8154E-05],[24.494864,-4.2278E-05],[24.49832,-3.6091E-05],[24.501776,-3.1967E-05],[24.505232,-3.7638E-05],[24.508688,-3.5576E-05],[24.512144,-3.4544E-05],[24.5156,-3.6091E-05],[24.519056,-4.1247E-05],[24.522512,-3.9185E-05],[24.525968,-3.2998E-05],[24.529424,-3.9185E-05],[24.53288,-3.7638E-05],[24.536336,-3.7122E-05],[24.539792,-3.8154E-05],[24.543248,-3.0935E-05],[24.546704,-3.2998E-05],[24.55016,-4.0732E-05],[24.553616,-4.4341E-05],[24.557072,-4.0732E-05],[24.560528,-3.6607E-05],[24.563984,-3.6091E-05],[24.56744,-3.1967E-05],[24.570896,-3.0935E-05],[24.574352,-3.5576E-05],[24.577808,-3.8669E-05],[24.581264,-3.6607E-05],[24.58472,-3.506E-05],[24.588176,-3.7122E-05],[24.591632,-3.6091E-05],[24.595088,-3.506E-05],[24.598544,-3.9185E-05],[24.602,-3.9185E-05],[24.605456,-3.4544E-05],[24.608912,-3.6607E-05],[24.612368,-3.6091E-05],[24.615824,-3.7638E-05],[24.61928,-3.7638E-05],[24.622736,-3.1451E-05],[24.626192,-3.7122E-05],[24.629648,-4.3309E-05],[24.633104,-4.1763E-05],[24.63656,-3.7638E-05],[24.640016,-3.8669E-05],[24.643472,-4.0216E-05],[24.646928,-3.8154E-05],[24.650384,-3.8154E-05],[24.65384,-3.6091E-05],[24.657296,-3.4029E-05],[24.660752,-3.4029E-05],[24.664208,-3.6607E-05]]}
-{"quant":[24.8163,1.1349],"mems":[[24.719504,-3.7122E-05],[24.72296,-3.5576E-05],[24.726416,-3.6607E-05],[24.729872,-3.7122E-05],[24.733328,-4.0216E-05],[24.736784,-3.7122E-05],[24.74024,-3.8154E-05],[24.743696,-3.5576E-05],[24.747152,-3.4544E-05],[24.750608,-4.2794E-05],[24.754064,-3.97E-05],[24.75752,-3.8154E-05],[24.760976,-3.6091E-05],[24.764432,-3.6091E-05],[24.767888,-3.7122E-05],[24.771344,-3.2998E-05],[24.7748,-3.6091E-05],[24.778256,-3.6091E-05],[24.781712,-3.6607E-05],[24.785168,-3.8669E-05],[24.788624,-3.9185E-05],[24.79208,-4.0216E-05],[24.795536,-3.6607E-05],[24.798992,-3.8154E-05],[24.802448,-3.7122E-05],[24.805904,-3.506E-05],[24.80936,-3.6091E-05],[24.812816,-3.5576E-05],[24.816272,-3.4029E-05],[24.819728,-3.4544E-05],[24.823184,-3.8154E-05],[24.82664,-3.8154E-05],[24.830096,-3.97E-05],[24.833552,-4.0216E-05],[24.837008,-3.7638E-05],[24.840464,-3.8154E-05],[24.84392,-3.7122E-05],[24.847376,-3.4544E-05],[24.850832,-4.1247E-05],[24.854288,-3.97E-05],[24.857744,-3.2998E-05],[24.8612,-4.0216E-05],[24.864656,-3.7638E-05],[24.868112,-3.506E-05],[24.871568,-4.0216E-05],[24.875024,-3.97E-05],[24.87848,-3.506E-05],[24.881936,-3.3513E-05],[24.885392,-3.7638E-05],[24.888848,-3.9185E-05],[24.892304,-4.0216E-05],[24.89576,-4.2278E-05],[24.899216,-4.0216E-05],[24.902672,-3.7122E-05],[24.906128,-3.7122E-05],[24.909584,-3.6607E-05],[24.91304,-3.4029E-05],[24.916496,-3.4029E-05],[24.919952,-3.7122E-05],[24.923408,-3.4544E-05],[24.926864,-3.4029E-05],[24.93032,-3.97E-05],[24.933776,-3.9185E-05],[24.937232,-3.8669E-05],[24.940688,-3.7638E-05],[24.944144,-3.4029E-05],[24.9476,-3.3513E-05],[24.951056,-3.4544E-05],[24.954512,-3.7638E-05],[24.957968,-3.8669E-05],[24.961424,-4.1247E-05],[24.96488,-3.7638E-05],[24.968336,-3.5576E-05],[24.971792,-4.0216E-05],[24.975248,-3.97E-05],[24.978704,-3.6091E-05],[24.98216,-3.2998E-05],[24.985616,-3.8154E-05],[24.989072,-3.97E-05],[24.992528,-3.4544E-05],[24.995984,-3.7122E-05],[24.99944,-3.8669E-05],[25.002896,-3.6091E-05],[25.006352,-3.4544E-05],[25.009808,-3.6091E-05],[25.013264,-3.9185E-05]]}
-{"quant":[25.1988,1.1362],"mems":[[25.099664,-3.7638E-05],[25.10312,-3.4029E-05],[25.106576,-3.6091E-05],[25.110032,-3.3513E-05],[25.113488,-3.4029E-05],[25.116944,-3.506E-05],[25.1204,-3.8154E-05],[25.123856,-3.7122E-05],[25.127312,-3.2998E-05],[25.130768,-3.5576E-05],[25.134224,-3.4544E-05],[25.13768,-3.7638E-05],[25.141136,-3.7122E-05],[25.144592,-3.2482E-05],[25.148048,-3.5576E-05],[25.151504,-3.6091E-05],[25.15496,-3.5576E-05],[25.158416,-3.7122E-05],[25.161872,-3.8154E-05],[25.165328,-3.6091E-05],[25.168784,-3.4029E-05],[25.17224,-3.4544E-05],[25.175696,-3.1451E-05],[25.179152,-3.4544E-05],[25.182608,-3.6607E-05],[25.186064,-3.6607E-05],[25.18952,-4.0732E-05],[25.192976,-3.8669E-05],[25.196432,-3.8669E-05],[25.199888,-3.5576E-05],[25.203344,-3.2482E-05],[25.2068,-3.6607E-05],[25.210256,-3.5576E-05],[25.213712,-3.2998E-05],[25.217168,-3.2998E-05],[25.220624,-3.8154E-05],[25.22408,-3.506E-05],[25.227536,-3.1967E-05],[25.230992,-4.0216E-05],[25.234448,-3.8669E-05],[25.237904,-3.7638E-05],[25.24136,-3.97E-05],[25.244816,-3.7638E-05],[25.248272,-3.9185E-05],[25.251728,-3.8669E-05],[25.255184,-3.6091E-05],[25.25864,-3.4544E-05],[25.262096,-3.1451E-05],[25.265552,-3.4544E-05],[25.269008,-3.7122E-05],[25.272464,-3.7122E-05],[25.27592,-4.0216E-05],[25.279376,-4.0216E-05],[25.282832,-3.9185E-05],[25.286288,-3.7122E-05],[25.289744,-3.3513E-05],[25.2932,-4.0732E-05],[25.296656,-4.1247E-05],[25.300112,-3.8669E-05],[25.303568,-3.8154E-05],[25.307024,-3.7638E-05],[25.31048,-3.6607E-05],[25.313936,-3.4029E-05],[25.317392,-4.0216E-05],[25.320848,-3.97E-05],[25.324304,-4.0216E-05],[25.32776,-3.8154E-05],[25.331216,-3.506E-05],[25.334672,-4.0732E-05],[25.338128,-3.7638E-05],[25.341584,-3.7122E-05],[25.34504,-3.8154E-05],[25.348496,-3.4544E-05],[25.351952,-3.97E-05],[25.355408,-3.97E-05],[25.358864,-3.506E-05],[25.36232,-3.7638E-05],[25.365776,-3.7638E-05],[25.369232,-3.8669E-05],[25.372688,-3.8669E-05],[25.376144,-3.4544E-05],[25.3796,-3.7122E-05],[25.383056,-3.5576E-05],[25.386512,-3.2482E-05],[25.389968,-3.7638E-05],[25.393424,-3.5576E-05],[25.39688,-3.5576E-05]]}
-{"quant":[25.5709,1.1354],"mems":[[25.472912,-4.1763E-05],[25.476368,-3.8154E-05],[25.479824,-3.7122E-05],[25.48328,-3.9185E-05],[25.486736,-3.6607E-05],[25.490192,-3.4544E-05],[25.493648,-3.2998E-05],[25.497104,-3.8154E-05],[25.50056,-3.97E-05],[25.504016,-4.0216E-05],[25.507472,-3.9185E-05],[25.510928,-3.8669E-05],[25.514384,-4.1763E-05],[25.51784,-3.9185E-05],[25.521296,-4.1247E-05],[25.524752,-3.3513E-05],[25.528208,-3.042E-05],[25.531664,-4.1763E-05],[25.53512,-3.9185E-05],[25.538576,-3.4544E-05],[25.542032,-3.4544E-05],[25.545488,-3.3513E-05],[25.548944,-3.3513E-05],[25.5524,-3.7638E-05],[25.555856,-3.97E-05],[25.559312,-4.0216E-05],[25.562768,-3.8669E-05],[25.566224,-3.3513E-05],[25.56968,-3.7122E-05],[25.573136,-3.97E-05],[25.576592,-3.5576E-05],[25.580048,-3.6607E-05],[25.583504,-3.8154E-05],[25.58696,-3.3513E-05],[25.590416,-3.1451E-05],[25.593872,-3.506E-05],[25.597328,-3.4029E-05],[25.600784,-3.6091E-05],[25.60424,-3.3513E-05],[25.607696,-3.2998E-05],[25.611152,-4.2278E-05],[25.614608,-3.7638E-05],[25.618064,-3.6091E-05],[25.62152,-3.8669E-05],[25.624976,-3.8669E-05],[25.628432,-3.8154E-05],[25.631888,-3.506E-05],[25.635344,-4.2794E-05],[25.6388,-4.3825E-05],[25.642256,-3.2998E-05],[25.645712,-3.1451E-05],[25.649168,-3.2998E-05],[25.652624,-4.0216E-05],[25.65608,-4.4856E-05],[25.659536,-4.0216E-05],[25.662992,-3.8154E-05],[25.666448,-3.5576E-05],[25.669904,-3.2998E-05],[25.67336,-3.4029E-05],[25.676816,-3.9185E-05],[25.680272,-3.9185E-05],[25.683728,-3.3513E-05],[25.687184,-3.6607E-05],[25.69064,-3.7122E-05],[25.694096,-3.4544E-05],[25.697552,-3.2998E-05],[25.701008,-3.2998E-05],[25.704464,-3.6607E-05],[25.70792,-3.8154E-05],[25.711376,-3.7122E-05],[25.714832,-3.2482E-05],[25.718288,-3.8154E-05],[25.721744,-4.1763E-05],[25.7252,-3.4544E-05],[25.728656,-3.4544E-05],[25.732112,-4.0216E-05],[25.735568,-3.6607E-05],[25.739024,-3.3513E-05],[25.74248,-3.6091E-05],[25.745936,-3.042E-05],[25.749392,-2.8873E-05],[25.752848,-3.6607E-05],[25.756304,-3.7638E-05],[25.75976,-3.5576E-05],[25.763216,-3.5576E-05],[25.766672,-3.4544E-05],[25.770128,-3.9185E-05]]}
-{"quant":[25.9486,1.1313],"mems":[[25.849616,-3.4544E-05],[25.853072,-3.5576E-05],[25.856528,-3.3513E-05],[25.859984,-3.8154E-05],[25.86344,-4.1247E-05],[25.866896,-3.506E-05],[25.870352,-3.1967E-05],[25.873808,-3.042E-05],[25.877264,-3.042E-05],[25.88072,-3.9185E-05],[25.884176,-4.0216E-05],[25.887632,-3.6091E-05],[25.891088,-3.7638E-05],[25.894544,-3.7638E-05],[25.898,-3.7638E-05],[25.901456,-3.8154E-05],[25.904912,-3.6091E-05],[25.908368,-3.4029E-05],[25.911824,-3.4544E-05],[25.91528,-3.7122E-05],[25.918736,-3.6091E-05],[25.922192,-3.9185E-05],[25.925648,-3.5576E-05],[25.929104,-2.7842E-05],[25.93256,-3.2998E-05],[25.936016,-3.506E-05],[25.939472,-4.2794E-05],[25.942928,-4.1247E-05],[25.946384,-3.6091E-05],[25.94984,-3.97E-05],[25.953296,-3.2482E-05],[25.956752,-3.4544E-05],[25.960208,-3.6607E-05],[25.963664,-3.2482E-05],[25.96712,-3.7122E-05],[25.970576,-3.506E-05],[25.974032,-3.5576E-05],[25.977488,-3.7638E-05],[25.980944,-3.5576E-05],[25.9844,-3.506E-05],[25.987856,-4.2278E-05],[25.991312,-4.1763E-05],[25.994768,-3.4029E-05],[25.998224,-3.6091E-05],[26.00168,-3.97E-05],[26.005136,-3.6607E-05],[26.008592,-3.1451E-05],[26.012048,-3.3513E-05],[26.015504,-3.6607E-05],[26.01896,-3.3513E-05],[26.022416,-3.6607E-05],[26.025872,-3.506E-05],[26.029328,-3.1451E-05],[26.032784,-4.0216E-05],[26.03624,-4.1247E-05],[26.039696,-4.0732E-05],[26.043152,-4.2278E-05],[26.046608,-3.6607E-05],[26.050064,-3.5576E-05],[26.05352,-3.1967E-05],[26.056976,-3.2998E-05],[26.060432,-3.8669E-05],[26.063888,-4.2278E-05],[26.067344,-3.9185E-05],[26.0708,-3.2998E-05],[26.074256,-3.6607E-05],[26.077712,-3.7638E-05],[26.081168,-3.506E-05],[26.084624,-3.6091E-05],[26.08808,-3.4544E-05],[26.091536,-3.4029E-05],[26.094992,-3.7638E-05],[26.098448,-3.6607E-05],[26.101904,-3.4544E-05],[26.10536,-3.7638E-05],[26.108816,-3.8154E-05],[26.112272,-3.97E-05],[26.115728,-3.97E-05],[26.119184,-3.3513E-05],[26.12264,-3.3513E-05],[26.126096,-3.5576E-05],[26.129552,-3.7122E-05],[26.133008,-3.9185E-05],[26.136464,-3.8669E-05],[26.13992,-4.1247E-05],[26.143376,-3.7638E-05],[26.146832,-3.2998E-05]]}
-{"quant":[26.3137,1.1155],"mems":[[26.288528,-3.506E-05],[26.291984,-3.506E-05],[26.29544,-3.8669E-05],[26.298896,-3.8669E-05],[26.302352,-3.97E-05],[26.305808,-3.8154E-05],[26.309264,-3.97E-05],[26.31272,-3.6091E-05],[26.316176,-3.506E-05],[26.319632,-3.9185E-05],[26.323088,-3.7638E-05],[26.326544,-3.9185E-05],[26.33,-3.8669E-05],[26.333393,-3.7638E-05],[26.336787,-3.7122E-05],[26.34018,-3.4544E-05],[26.343573,-3.3513E-05],[26.346967,-3.4544E-05],[26.35036,-3.7122E-05],[26.353753,-3.6091E-05],[26.357147,-3.5576E-05],[26.36054,-3.506E-05],[26.363933,-3.506E-05],[26.367327,-3.7638E-05],[26.37072,-3.8154E-05],[26.374113,-3.8669E-05],[26.377507,-3.7638E-05],[26.3809,-3.8154E-05],[26.384293,-3.9185E-05],[26.387687,-3.5576E-05],[26.39108,-4.0732E-05],[26.394473,-4.4341E-05],[26.397867,-3.7638E-05],[26.40126,-3.7638E-05],[26.404653,-3.6091E-05],[26.408047,-3.5576E-05],[26.41144,-3.7122E-05],[26.414833,-3.8154E-05],[26.418227,-3.7638E-05],[26.42162,-3.6091E-05],[26.425013,-3.506E-05],[26.428407,-2.9904E-05],[26.4318,-3.1967E-05],[26.435193,-3.4029E-05],[26.438587,-3.8154E-05],[26.44198,-4.1247E-05],[26.445373,-3.97E-05],[26.448767,-3.9185E-05],[26.45216,-3.6607E-05],[26.455553,-4.0216E-05],[26.458947,-3.8154E-05],[26.46234,-3.4544E-05],[26.465733,-3.7122E-05],[26.469127,-3.506E-05],[26.47252,-3.1451E-05],[26.475913,-3.6091E-05],[26.479307,-4.0732E-05],[26.4827,-3.1451E-05],[26.486093,-3.2482E-05],[26.489487,-3.4029E-05],[26.49288,-3.1967E-05],[26.496273,-3.8669E-05],[26.499667,-3.6607E-05],[26.50306,-3.6607E-05],[26.506453,-3.8669E-05],[26.509847,-3.6607E-05],[26.51324,-4.1763E-05],[26.516633,-4.0732E-05],[26.520027,-3.4544E-05],[26.52342,-3.1967E-05],[26.526813,-3.042E-05],[26.530207,-3.4029E-05],[26.5336,-3.5576E-05],[26.536993,-3.6091E-05],[26.540387,-3.9185E-05],[26.54378,-4.0216E-05],[26.547173,-3.7122E-05],[26.550567,-3.4544E-05],[26.55396,-3.5576E-05],[26.557353,-3.6607E-05],[26.560747,-3.7638E-05],[26.56414,-3.6091E-05],[26.567533,-3.5576E-05],[26.570927,-3.6091E-05],[26.57432,-3.7638E-05],[26.577713,-3.6607E-05]]}
-{"quant":[26.7051,1.0999],"mems":[[26.608253,-4.0732E-05],[26.611647,-4.2278E-05],[26.61504,-4.2278E-05],[26.618433,-4.2278E-05],[26.621827,-3.8154E-05],[26.62522,-3.0935E-05],[26.628613,-3.3513E-05],[26.632007,-3.8669E-05],[26.6354,-3.9185E-05],[26.638793,-3.4544E-05],[26.642187,-3.3513E-05],[26.64558,-3.8669E-05],[26.648973,-4.0732E-05],[26.652367,-4.0732E-05],[26.65576,-3.6091E-05],[26.659153,-3.5576E-05],[26.662547,-3.7122E-05],[26.66594,-3.5576E-05],[26.669333,-3.506E-05],[26.672727,-3.8154E-05],[26.67612,-3.6607E-05],[26.679513,-3.2482E-05],[26.682907,-3.8154E-05],[26.6863,-3.97E-05],[26.689693,-3.6091E-05],[26.693087,-3.9185E-05],[26.69648,-3.6607E-05],[26.699873,-3.4029E-05],[26.703267,-3.5576E-05],[26.70666,-3.4544E-05],[26.710053,-3.3513E-05],[26.713447,-2.9904E-05],[26.71684,-3.042E-05],[26.720233,-3.3513E-05],[26.723627,-3.1451E-05],[26.72702,-3.3513E-05],[26.730413,-3.6607E-05],[26.733807,-3.4544E-05],[26.7372,-3.8669E-05],[26.740593,-3.6091E-05],[26.743987,-3.6091E-05],[26.74738,-4.1763E-05],[26.750773,-3.7638E-05],[26.754167,-3.8154E-05],[26.75756,-3.97E-05],[26.760953,-3.4029E-05],[26.764347,-3.4029E-05],[26.76774,-3.7122E-05],[26.771133,-3.8669E-05],[26.774527,-3.8669E-05],[26.77792,-3.6607E-05],[26.781313,-3.8669E-05],[26.784707,-3.9185E-05],[26.7881,-3.8154E-05],[26.791493,-3.8154E-05],[26.794887,-3.7122E-05],[26.79828,-3.6091E-05],[26.801673,-3.4544E-05],[26.805067,-3.9185E-05],[26.80846,-3.9185E-05],[26.811853,-3.7122E-05],[26.815247,-3.7122E-05],[26.81864,-3.3513E-05],[26.822033,-3.506E-05],[26.825427,-3.5576E-05],[26.82882,-3.7122E-05],[26.832213,-3.506E-05],[26.835607,-3.4544E-05],[26.839,-3.6091E-05],[26.842393,-3.3513E-05],[26.845787,-3.9185E-05],[26.84918,-3.9185E-05],[26.852573,-3.8154E-05],[26.855967,-3.6091E-05],[26.85936,-3.506E-05],[26.862753,-4.0732E-05],[26.866147,-3.7122E-05],[26.86954,-3.5576E-05],[26.872933,-3.7122E-05],[26.876327,-3.9185E-05],[26.87972,-3.8154E-05],[26.883113,-4.0216E-05],[26.886507,-4.2278E-05],[26.8899,-3.4544E-05],[26.893293,-3.5576E-05],[26.896687,-3.7122E-05],[26.90008,-3.0935E-05],[26.903473,-3.2998E-05]]}
-{"quant":[27.0769,1.091],"mems":[[26.978127,-3.1451E-05],[26.98152,-3.6607E-05],[26.984913,-4.0216E-05],[26.988307,-3.6091E-05],[26.9917,-3.2482E-05],[26.995093,-3.7122E-05],[26.998487,-3.9185E-05],[27.00188,-3.4544E-05],[27.005273,-3.1967E-05],[27.008667,-3.7122E-05],[27.01206,-3.6091E-05],[27.015453,-3.1967E-05],[27.018847,-3.5576E-05],[27.02224,-3.6091E-05],[27.025633,-3.4029E-05],[27.029027,-3.5576E-05],[27.03242,-4.1247E-05],[27.035813,-3.506E-05],[27.039207,-3.506E-05],[27.0426,-3.9185E-05],[27.045993,-3.6091E-05],[27.049387,-4.1247E-05],[27.05278,-4.1763E-05],[27.056173,-4.1247E-05],[27.059567,-3.8154E-05],[27.06296,-3.8669E-05],[27.066353,-4.2794E-05],[27.069747,-4.2278E-05],[27.07314,-4.1247E-05],[27.076533,-3.8154E-05],[27.079927,-3.7638E-05],[27.08332,-3.1451E-05],[27.086713,-3.4029E-05],[27.090107,-3.8669E-05],[27.0935,-3.4029E-05],[27.096893,-3.7122E-05],[27.100287,-3.6091E-05],[27.10368,-3.2998E-05],[27.107073,-3.506E-05],[27.110467,-3.506E-05],[27.11386,-3.6091E-05],[27.117253,-3.4544E-05],[27.120647,-3.6091E-05],[27.12404,-3.7638E-05],[27.127433,-3.506E-05],[27.130827,-3.6607E-05],[27.13422,-3.5576E-05],[27.137613,-3.7638E-05],[27.141007,-3.9185E-05],[27.1444,-3.8154E-05],[27.147793,-3.8154E-05],[27.151187,-3.8154E-05],[27.15458,-3.7122E-05],[27.157973,-3.1967E-05],[27.161367,-3.4544E-05],[27.16476,-3.9185E-05],[27.168153,-3.8154E-05],[27.171547,-4.0732E-05],[27.17494,-3.7638E-05],[27.178333,-3.1967E-05],[27.181727,-3.506E-05],[27.18512,-3.506E-05],[27.188513,-3.1967E-05],[27.191907,-3.2998E-05],[27.1953,-3.6607E-05],[27.198693,-3.97E-05],[27.202087,-3.97E-05],[27.20548,-3.97E-05],[27.208873,-4.3309E-05],[27.212267,-4.4341E-05],[27.21566,-3.9185E-05],[27.219053,-3.6607E-05],[27.222447,-4.0732E-05],[27.22584,-4.1247E-05],[27.229233,-3.6607E-05],[27.232627,-3.6607E-05],[27.23602,-3.9185E-05],[27.239413,-4.1763E-05],[27.242807,-3.6091E-05],[27.2462,-3.3513E-05],[27.249593,-3.7122E-05],[27.252987,-3.6091E-05],[27.25638,-3.6091E-05],[27.259773,-3.6091E-05],[27.263167,-3.97E-05],[27.26656,-4.0732E-05],[27.269953,-3.7638E-05],[27.273347,-3.6607E-05],[27.27674,-3.506E-05]]}
-{"quant":[27.4641,1.0854],"mems":[[27.364967,-3.7122E-05],[27.36836,-3.9185E-05],[27.371753,-3.6091E-05],[27.375147,-3.4029E-05],[27.37854,-3.506E-05],[27.381933,-3.506E-05],[27.385327,-3.4029E-05],[27.38872,-3.5576E-05],[27.392113,-3.3513E-05],[27.395507,-3.4544E-05],[27.3989,-3.7122E-05],[27.402293,-3.6091E-05],[27.405687,-4.1763E-05],[27.40908,-4.0732E-05],[27.412473,-3.5576E-05],[27.415867,-3.8669E-05],[27.41926,-3.7122E-05],[27.422653,-3.6607E-05],[27.426047,-3.6607E-05],[27.42944,-3.2998E-05],[27.432833,-3.7638E-05],[27.436227,-3.7638E-05],[27.43962,-3.7638E-05],[27.443013,-4.1763E-05],[27.446407,-3.8154E-05],[27.4498,-3.6091E-05],[27.453193,-3.2998E-05],[27.456587,-3.506E-05],[27.45998,-4.0732E-05],[27.463373,-3.8669E-05],[27.466767,-3.5576E-05],[27.47016,-3.6091E-05],[27.473553,-3.6091E-05],[27.476947,-3.506E-05],[27.48034,-3.7122E-05],[27.483733,-3.7638E-05],[27.487127,-3.5576E-05],[27.49052,-3.4029E-05],[27.493913,-3.7122E-05],[27.497307,-3.6607E-05],[27.5007,-3.4544E-05],[27.504093,-3.7122E-05],[27.507487,-3.506E-05],[27.51088,-3.2998E-05],[27.514273,-3.5576E-05],[27.517667,-4.0216E-05],[27.52106,-3.7122E-05],[27.524453,-3.1967E-05],[27.527847,-2.9389E-05],[27.53124,-3.3513E-05],[27.534633,-4.2278E-05],[27.538027,-4.1247E-05],[27.54142,-3.9185E-05],[27.544813,-3.8669E-05],[27.548207,-3.7122E-05],[27.5516,-3.4544E-05],[27.554993,-3.2998E-05],[27.558387,-3.8669E-05],[27.56178,-3.8154E-05],[27.565173,-3.4544E-05],[27.568567,-3.8154E-05],[27.57196,-3.5576E-05],[27.575353,-3.4544E-05],[27.578747,-3.8669E-05],[27.58214,-3.7122E-05],[27.585533,-3.5576E-05],[27.588927,-3.7122E-05],[27.59232,-3.97E-05],[27.595713,-3.6607E-05],[27.599107,-3.8669E-05],[27.6025,-3.8154E-05],[27.605893,-3.1967E-05],[27.609287,-3.3513E-05],[27.61268,-3.506E-05],[27.616073,-3.8154E-05],[27.619467,-4.1247E-05],[27.62286,-3.7638E-05],[27.626253,-3.2998E-05],[27.629647,-3.4029E-05],[27.63304,-3.7638E-05],[27.636433,-3.8154E-05],[27.639827,-3.7122E-05],[27.64322,-3.6607E-05],[27.646613,-3.6607E-05],[27.650007,-3.4544E-05],[27.6534,-3.1967E-05],[27.656793,-3.6091E-05],[27.660187,-4.0732E-05],[27.66358,-3.7638E-05]]}
-{"quant":[27.8271,1.0816],"mems":[[27.728053,-3.5576E-05],[27.731447,-3.8154E-05],[27.73484,-3.7638E-05],[27.738233,-3.042E-05],[27.741627,-3.1451E-05],[27.74502,-3.6607E-05],[27.748413,-3.3513E-05],[27.751807,-3.8154E-05],[27.7552,-3.9185E-05],[27.758593,-3.7638E-05],[27.761987,-3.6091E-05],[27.76538,-3.5576E-05],[27.768773,-3.506E-05],[27.772167,-3.2998E-05],[27.77556,-3.7638E-05],[27.778953,-3.3513E-05],[27.782347,-3.5576E-05],[27.78574,-3.9185E-05],[27.789133,-3.1451E-05],[27.792527,-3.506E-05],[27.79592,-3.6091E-05],[27.799313,-3.3513E-05],[27.802707,-3.4029E-05],[27.8061,-3.506E-05],[27.809493,-3.5576E-05],[27.812887,-3.7122E-05],[27.81628,-3.8154E-05],[27.819673,-3.8669E-05],[27.823067,-3.7122E-05],[27.82646,-3.506E-05],[27.829853,-3.5576E-05],[27.833247,-3.5576E-05],[27.83664,-3.8669E-05],[27.840033,-3.3513E-05],[27.843427,-3.4029E-05],[27.84682,-3.6607E-05],[27.850213,-3.506E-05],[27.853607,-3.7638E-05],[27.857,-3.6607E-05],[27.860393,-3.6091E-05],[27.863787,-3.0935E-05],[27.86718,-3.042E-05],[27.870573,-3.7638E-05],[27.873967,-3.8154E-05],[27.87736,-3.2482E-05],[27.880753,-3.2482E-05],[27.884147,-3.4029E-05],[27.88754,-3.1451E-05],[27.890933,-3.7638E-05],[27.894327,-3.7122E-05],[27.89772,-3.7638E-05],[27.901113,-3.8669E-05],[27.904507,-3.3513E-05],[27.9079,-3.506E-05],[27.911293,-3.3513E-05],[27.914687,-3.7638E-05],[27.91808,-3.7638E-05],[27.921473,-3.2998E-05],[27.924867,-3.4544E-05],[27.92826,-3.2998E-05],[27.931653,-3.6607E-05],[27.935047,-3.8669E-05],[27.93844,-3.9185E-05],[27.941833,-3.7122E-05],[27.945227,-3.506E-05],[27.94862,-3.7122E-05],[27.952013,-3.8669E-05],[27.955407,-4.2794E-05],[27.9588,-3.7638E-05],[27.962193,-3.2998E-05],[27.965587,-3.6091E-05],[27.96898,-3.4544E-05],[27.972373,-3.6607E-05],[27.975767,-3.8154E-05],[27.97916,-3.1967E-05],[27.982553,-3.4029E-05],[27.985947,-3.6607E-05],[27.98934,-3.4544E-05],[27.992733,-3.7122E-05],[27.996127,-3.8669E-05],[27.99952,-3.506E-05],[28.002913,-3.1967E-05],[28.006307,-3.8669E-05],[28.0097,-4.2794E-05],[28.013093,-3.9185E-05],[28.016487,-3.6091E-05],[28.01988,-3.6607E-05],[28.023273,-3.4544E-05],[28.026667,-3.2482E-05]]}
-{"quant":[28.2237,1.0677],"mems":[[28.125073,-3.042E-05],[28.128467,-3.8669E-05],[28.13186,-3.7122E-05],[28.135253,-3.506E-05],[28.138647,-3.8154E-05],[28.14204,-3.6091E-05],[28.145433,-3.7638E-05],[28.148827,-3.6091E-05],[28.15222,-3.5576E-05],[28.155613,-3.8154E-05],[28.159007,-3.3513E-05],[28.1624,-3.1451E-05],[28.165793,-3.4029E-05],[28.169187,-3.6607E-05],[28.17258,-3.7638E-05],[28.175973,-3.7638E-05],[28.179367,-4.0216E-05],[28.18276,-3.8669E-05],[28.186153,-3.506E-05],[28.189547,-3.4029E-05],[28.19294,-3.7638E-05],[28.196333,-3.5576E-05],[28.199727,-3.2998E-05],[28.20312,-3.8154E-05],[28.206513,-3.506E-05],[28.209907,-3.506E-05],[28.2133,-3.97E-05],[28.216693,-3.7122E-05],[28.220087,-3.4544E-05],[28.22348,-3.2482E-05],[28.226873,-3.6091E-05],[28.230267,-3.4029E-05],[28.23366,-3.4029E-05],[28.237053,-3.6091E-05],[28.240447,-3.4029E-05],[28.24384,-3.8154E-05],[28.247233,-3.7638E-05],[28.250627,-3.506E-05],[28.25402,-3.6607E-05],[28.257413,-3.4029E-05],[28.260807,-3.042E-05],[28.2642,-3.7122E-05],[28.267593,-3.7638E-05],[28.270987,-3.4544E-05],[28.27438,-3.7638E-05],[28.277773,-3.7122E-05],[28.281167,-3.6607E-05],[28.28456,-3.5576E-05],[28.287953,-4.0216E-05],[28.291347,-3.97E-05],[28.29474,-3.7638E-05],[28.298133,-3.8669E-05],[28.301527,-3.4544E-05],[28.30492,-3.4029E-05],[28.308313,-4.0216E-05],[28.311707,-4.1247E-05],[28.3151,-3.2998E-05],[28.318493,-3.4029E-05],[28.321887,-3.6607E-05],[28.32528,-3.8154E-05],[28.328673,-3.9185E-05],[28.332067,-3.5576E-05],[28.33546,-3.506E-05],[28.338853,-3.2998E-05],[28.342247,-3.5576E-05],[28.34564,-3.97E-05],[28.349033,-4.1247E-05],[28.352427,-3.8669E-05],[28.35582,-3.2998E-05],[28.359213,-3.506E-05],[28.362607,-3.8669E-05],[28.366,-3.6091E-05],[28.369393,-3.7122E-05],[28.372787,-3.7638E-05],[28.37618,-3.4029E-05],[28.379573,-3.2998E-05],[28.382967,-3.506E-05],[28.38636,-3.9185E-05],[28.389753,-3.7638E-05],[28.393147,-3.6607E-05],[28.39654,-3.6607E-05],[28.399933,-3.4029E-05],[28.403327,-3.97E-05],[28.40672,-3.8154E-05],[28.410113,-3.7122E-05],[28.413507,-3.5576E-05],[28.4169,-3.042E-05],[28.420293,-4.1763E-05],[28.423687,-4.0732E-05]]}
-{"quant":[28.5995,1.0439],"mems":[[28.501733,-3.6607E-05],[28.505127,-3.97E-05],[28.50852,-4.0216E-05],[28.511913,-3.8154E-05],[28.515307,-3.506E-05],[28.5187,-3.5576E-05],[28.522093,-3.8669E-05],[28.525487,-3.7638E-05],[28.52888,-3.506E-05],[28.532273,-3.2998E-05],[28.535667,-2.9904E-05],[28.53906,-3.2482E-05],[28.542453,-3.8154E-05],[28.545847,-3.97E-05],[28.54924,-3.4029E-05],[28.552633,-3.4544E-05],[28.556027,-3.7122E-05],[28.55942,-3.506E-05],[28.562813,-3.97E-05],[28.566207,-3.6607E-05],[28.5696,-3.6607E-05],[28.572993,-3.9185E-05],[28.576387,-3.2998E-05],[28.57978,-3.5576E-05],[28.583173,-3.9185E-05],[28.586567,-3.8154E-05],[28.58996,-3.6091E-05],[28.593353,-3.2482E-05],[28.596747,-3.0935E-05],[28.60014,-3.1967E-05],[28.603533,-3.7638E-05],[28.606927,-3.9185E-05],[28.61032,-3.506E-05],[28.613713,-3.3513E-05],[28.617107,-3.4544E-05],[28.6205,-3.5576E-05],[28.623893,-3.97E-05],[28.627287,-4.1763E-05],[28.63068,-3.7638E-05],[28.634073,-3.5576E-05],[28.637467,-3.7122E-05],[28.64086,-3.2998E-05],[28.644253,-3.1967E-05],[28.647647,-3.7122E-05],[28.65104,-3.97E-05],[28.654433,-3.6091E-05],[28.657827,-3.4544E-05],[28.66122,-4.0216E-05],[28.664613,-4.1247E-05],[28.668007,-3.7638E-05],[28.6714,-3.8154E-05],[28.674793,-3.7122E-05],[28.678187,-3.5576E-05],[28.68158,-3.6091E-05],[28.684973,-3.8154E-05],[28.688367,-4.2278E-05],[28.69176,-3.97E-05],[28.695153,-3.6091E-05],[28.698547,-4.1247E-05],[28.70194,-3.8669E-05],[28.705333,-3.5576E-05],[28.708727,-3.7638E-05],[28.71212,-3.506E-05],[28.715513,-3.5576E-05],[28.718907,-3.6607E-05],[28.7223,-3.7638E-05],[28.725693,-3.7638E-05],[28.729087,-3.4544E-05],[28.73248,-3.3513E-05],[28.735873,-3.5576E-05],[28.739267,-3.6607E-05],[28.74266,-3.4029E-05],[28.746053,-3.8154E-05],[28.749447,-4.0732E-05],[28.75284,-3.3513E-05],[28.756233,-3.7638E-05],[28.759627,-3.6607E-05],[28.76302,-3.1451E-05],[28.766413,-3.7122E-05],[28.769807,-3.3513E-05],[28.7732,-3.2482E-05],[28.776593,-3.4544E-05],[28.779987,-4.0216E-05],[28.78338,-4.2278E-05],[28.786773,-3.2482E-05],[28.790167,-3.2482E-05],[28.79356,-3.2998E-05],[28.796953,-3.3513E-05]]}
-{"quant":[28.9905,1.0176],"mems":[[28.89218,-3.6607E-05],[28.895616,-3.6091E-05],[28.899052,-3.6607E-05],[28.902488,-4.0216E-05],[28.905924,-4.1247E-05],[28.90936,-3.506E-05],[28.912796,-3.4544E-05],[28.916232,-3.6091E-05],[28.919668,-3.5576E-05],[28.923104,-3.8669E-05],[28.92654,-3.7122E-05],[28.929976,-3.6607E-05],[28.933412,-3.6607E-05],[28.936848,-3.9185E-05],[28.940284,-4.0732E-05],[28.94372,-3.7638E-05],[28.947156,-3.6607E-05],[28.950592,-3.5576E-05],[28.954028,-4.0216E-05],[28.957464,-3.8154E-05],[28.9609,-3.4029E-05],[28.964336,-3.3513E-05],[28.967772,-3.5576E-05],[28.971208,-3.97E-05],[28.974644,-3.506E-05],[28.97808,-3.8669E-05],[28.981516,-3.7122E-05],[28.984952,-3.4029E-05],[28.988388,-3.9185E-05],[28.991824,-3.8669E-05],[28.99526,-4.0216E-05],[28.998696,-3.9185E-05],[29.002132,-3.7122E-05],[29.005568,-3.6607E-05],[29.009004,-3.7122E-05],[29.01244,-3.7122E-05],[29.015876,-3.8154E-05],[29.019312,-4.0216E-05],[29.022748,-3.7638E-05],[29.026184,-3.506E-05],[29.02962,-3.7638E-05],[29.033056,-3.5576E-05],[29.036492,-3.2998E-05],[29.039928,-3.7638E-05],[29.043364,-3.8154E-05],[29.0468,-3.8154E-05],[29.050236,-3.4029E-05],[29.053672,-3.506E-05],[29.057108,-4.1247E-05],[29.060544,-4.0732E-05],[29.06398,-4.0216E-05],[29.067416,-4.0216E-05],[29.070852,-3.9185E-05],[29.074288,-3.5576E-05],[29.077724,-3.7122E-05],[29.08116,-3.97E-05],[29.084596,-3.7638E-05],[29.088032,-3.4544E-05],[29.091468,-3.2482E-05],[29.094904,-3.6607E-05],[29.09834,-3.9185E-05],[29.101776,-3.7638E-05],[29.105212,-3.506E-05],[29.108648,-3.5576E-05],[29.112084,-3.506E-05],[29.11552,-3.7122E-05],[29.118956,-3.7122E-05],[29.122392,-3.2482E-05],[29.125828,-3.2998E-05],[29.129264,-3.506E-05],[29.1327,-3.4544E-05],[29.136136,-3.8669E-05],[29.139572,-3.97E-05],[29.143008,-3.8669E-05],[29.146444,-3.7122E-05],[29.14988,-3.0935E-05],[29.153316,-3.506E-05],[29.156752,-3.6091E-05],[29.160188,-3.1967E-05],[29.163624,-3.6607E-05],[29.16706,-3.4029E-05],[29.170496,-3.1451E-05],[29.173932,-3.4544E-05],[29.177368,-3.7638E-05],[29.180804,-4.0732E-05],[29.18424,-3.4029E-05],[29.187676,-3.0935E-05]]}
-{"quant":[29.4677,0.99452],"mems":[[29.369784,-3.2998E-05],[29.37322,-3.3513E-05],[29.376656,-3.4544E-05],[29.380092,-3.6091E-05],[29.383528,-3.7122E-05],[29.386964,-3.5576E-05],[29.3904,-3.2482E-05],[29.393836,-3.8669E-05],[29.397272,-4.1763E-05],[29.400708,-3.4029E-05],[29.404144,-3.042E-05],[29.40758,-3.1451E-05],[29.411016,-3.6607E-05],[29.414452,-3.8154E-05],[29.417888,-3.506E-05],[29.421324,-3.6091E-05],[29.42476,-3.506E-05],[29.428196,-3.6607E-05],[29.431632,-3.6091E-05],[29.435068,-3.5576E-05],[29.438504,-3.97E-05],[29.44194,-3.7122E-05],[29.445376,-3.6607E-05],[29.448812,-3.8154E-05],[29.452248,-3.7638E-05],[29.455684,-3.7122E-05],[29.45912,-3.506E-05],[29.462556,-3.5576E-05],[29.465992,-3.3513E-05],[29.469428,-3.4029E-05],[29.472864,-3.8154E-05],[29.4763,-3.3513E-05],[29.479736,-3.4544E-05],[29.483172,-3.6607E-05],[29.486608,-3.6091E-05],[29.490044,-3.4029E-05],[29.49348,-3.1451E-05],[29.496916,-3.506E-05],[29.500352,-3.9185E-05],[29.503788,-3.7638E-05],[29.507224,-3.5576E-05],[29.51066,-3.9185E-05],[29.514096,-3.8154E-05],[29.517532,-3.506E-05],[29.520968,-3.7122E-05],[29.524404,-3.2998E-05],[29.52784,-3.3513E-05],[29.531276,-3.4544E-05],[29.534712,-3.3513E-05],[29.538148,-3.8154E-05],[29.541584,-3.7638E-05],[29.54502,-3.506E-05],[29.548456,-3.2998E-05],[29.551892,-3.6091E-05],[29.555328,-3.7638E-05],[29.558764,-3.7638E-05],[29.5622,-4.0216E-05],[29.565636,-3.8669E-05],[29.569072,-3.7638E-05],[29.572508,-3.5576E-05],[29.575944,-4.0216E-05],[29.57938,-4.2278E-05],[29.582816,-3.8669E-05],[29.586252,-3.9185E-05],[29.589688,-3.7122E-05],[29.593124,-3.506E-05],[29.59656,-3.5576E-05],[29.599996,-3.8154E-05],[29.603432,-3.7122E-05],[29.606868,-3.4544E-05],[29.610304,-3.4544E-05],[29.61374,-3.6091E-05],[29.617176,-3.4029E-05],[29.620612,-3.2998E-05],[29.624048,-3.506E-05],[29.627484,-3.4029E-05],[29.63092,-3.4029E-05],[29.634356,-3.506E-05],[29.637792,-3.7638E-05],[29.641228,-3.2482E-05],[29.644664,-3.2998E-05],[29.6481,-3.5576E-05],[29.651536,-3.4544E-05],[29.654972,-4.1247E-05],[29.658408,-3.97E-05],[29.661844,-4.1763E-05],[29.66528,-3.8669E-05]]}
-{"quant":[29.8317,0.96953],"mems":[[29.734,-3.6607E-05],[29.737436,-4.1247E-05],[29.740872,-3.7122E-05],[29.744308,-3.2482E-05],[29.747744,-3.6607E-05],[29.75118,-3.8154E-05],[29.754616,-3.6607E-05],[29.758052,-3.7122E-05],[29.761488,-4.1763E-05],[29.764924,-4.0216E-05],[29.76836,-3.5576E-05],[29.771796,-3.5576E-05],[29.775232,-3.5576E-05],[29.778668,-3.6607E-05],[29.782104,-3.5576E-05],[29.78554,-3.506E-05],[29.788976,-4.1247E-05],[29.792412,-4.0732E-05],[29.795848,-3.5576E-05],[29.799284,-3.8154E-05],[29.80272,-3.97E-05],[29.806156,-3.6607E-05],[29.809592,-3.7638E-05],[29.813028,-3.97E-05],[29.816464,-3.7122E-05],[29.8199,-3.506E-05],[29.823336,-3.1967E-05],[29.826772,-3.2998E-05],[29.830208,-4.0732E-05],[29.833644,-3.8669E-05],[29.83708,-3.6091E-05],[29.840516,-3.7122E-05],[29.843952,-3.4029E-05],[29.847388,-3.0935E-05],[29.850824,-3.042E-05],[29.85426,-3.7122E-05],[29.857696,-3.97E-05],[29.861132,-3.6091E-05],[29.864568,-3.6091E-05],[29.868004,-3.4029E-05],[29.87144,-3.3513E-05],[29.874876,-3.9185E-05],[29.878312,-4.0216E-05],[29.881748,-3.6607E-05],[29.885184,-3.5576E-05],[29.88862,-3.5576E-05],[29.892056,-3.8154E-05],[29.895492,-4.0732E-05],[29.898928,-3.7122E-05],[29.902364,-3.7638E-05],[29.9058,-3.8154E-05],[29.909236,-3.7638E-05],[29.912672,-4.0732E-05],[29.916108,-3.7122E-05],[29.919544,-3.8154E-05],[29.92298,-4.0216E-05],[29.926416,-3.5576E-05],[29.929852,-3.506E-05],[29.933288,-3.6607E-05],[29.936724,-3.7122E-05],[29.94016,-3.4544E-05],[29.943596,-3.4029E-05],[29.947032,-3.5576E-05],[29.950468,-3.6607E-05],[29.953904,-3.7638E-05],[29.95734,-3.6091E-05],[29.960776,-3.4029E-05],[29.964212,-4.0216E-05],[29.967648,-4.1247E-05],[29.971084,-3.97E-05],[29.97452,-4.1247E-05],[29.977956,-3.6607E-05],[29.981392,-3.8669E-05],[29.984828,-3.8669E-05],[29.988264,-3.3513E-05],[29.9917,-3.8669E-05],[29.995136,-3.97E-05],[29.998572,-3.506E-05],[30.002008,-3.6607E-05],[30.005444,-3.8669E-05],[30.00888,-3.5576E-05],[30.012316,-3.2482E-05],[30.015752,-3.5576E-05],[30.019188,-3.5576E-05],[30.022624,-3.3513E-05],[30.02606,-3.4544E-05],[30.029496,-3.6607E-05]]}
-{"quant":[30.1965,0.94554],"mems":[[30.098216,-3.8669E-05],[30.101652,-3.3513E-05],[30.105088,-3.1451E-05],[30.108524,-3.1451E-05],[30.11196,-3.4029E-05],[30.115396,-3.9185E-05],[30.118832,-3.8669E-05],[30.122268,-3.9185E-05],[30.125704,-3.8154E-05],[30.12914,-3.4029E-05],[30.132576,-3.7122E-05],[30.136012,-3.8154E-05],[30.139448,-3.1967E-05],[30.142884,-3.042E-05],[30.14632,-2.7326E-05],[30.149756,-2.9389E-05],[30.153192,-3.8669E-05],[30.156628,-3.8669E-05],[30.160064,-3.6091E-05],[30.1635,-3.5576E-05],[30.166936,-3.4544E-05],[30.170372,-3.7122E-05],[30.173808,-3.506E-05],[30.177244,-3.7122E-05],[30.18068,-4.0732E-05],[30.184116,-3.7638E-05],[30.187552,-3.506E-05],[30.190988,-3.3513E-05],[30.194424,-3.6607E-05],[30.19786,-3.7122E-05],[30.201296,-4.0216E-05],[30.204732,-3.9185E-05],[30.208168,-3.7122E-05],[30.211604,-3.8669E-05],[30.21504,-3.8154E-05],[30.218476,-3.8669E-05],[30.221912,-3.506E-05],[30.225348,-3.7638E-05],[30.228784,-3.8669E-05],[30.23222,-3.4029E-05],[30.235656,-3.8669E-05],[30.239092,-4.2278E-05],[30.242528,-3.8669E-05],[30.245964,-3.506E-05],[30.2494,-3.8154E-05],[30.252836,-3.8154E-05],[30.256272,-3.7638E-05],[30.259708,-3.7638E-05],[30.263144,-3.042E-05],[30.26658,-3.3513E-05],[30.270016,-3.7638E-05],[30.273452,-3.7638E-05],[30.276888,-3.5576E-05],[30.280324,-3.1967E-05],[30.28376,-3.2998E-05],[30.287196,-3.1451E-05],[30.290632,-3.7638E-05],[30.294068,-4.0732E-05],[30.297504,-3.6091E-05],[30.30094,-3.8154E-05],[30.304376,-3.4029E-05],[30.307812,-3.7122E-05],[30.311248,-3.7638E-05],[30.314684,-3.2998E-05],[30.31812,-3.7122E-05],[30.321556,-3.7122E-05],[30.324992,-3.4544E-05],[30.328428,-3.4029E-05],[30.331864,-3.7638E-05],[30.3353,-3.6091E-05],[30.338736,-3.506E-05],[30.342172,-3.5576E-05],[30.345608,-3.3513E-05],[30.349044,-3.5576E-05],[30.35248,-3.7122E-05],[30.355916,-3.8669E-05],[30.359352,-3.5576E-05],[30.362788,-3.1967E-05],[30.366224,-3.2998E-05],[30.36966,-3.6607E-05],[30.373096,-4.0216E-05],[30.376532,-3.97E-05],[30.379968,-3.8669E-05],[30.383404,-3.7122E-05],[30.38684,-3.6607E-05],[30.390276,-4.0732E-05],[30.393712,-4.0732E-05]]}
-{"quant":[30.577,0.92675],"mems":[[30.479612,-3.6607E-05],[30.483048,-3.2998E-05],[30.486484,-3.506E-05],[30.48992,-3.8154E-05],[30.493356,-3.7122E-05],[30.496792,-3.9185E-05],[30.500228,-3.6607E-05],[30.503664,-3.6091E-05],[30.5071,-3.6091E-05],[30.510536,-3.5576E-05],[30.513972,-3.9185E-05],[30.517408,-3.6607E-05],[30.520844,-3.4544E-05],[30.52428,-3.3513E-05],[30.527716,-3.2482E-05],[30.531152,-3.8669E-05],[30.534588,-3.8669E-05],[30.538024,-3.3513E-05],[30.54146,-3.2998E-05],[30.544896,-3.6091E-05],[30.548332,-3.7122E-05],[30.551768,-3.506E-05],[30.555204,-3.3513E-05],[30.55864,-3.2482E-05],[30.562076,-3.6091E-05],[30.565512,-3.6091E-05],[30.568948,-3.2482E-05],[30.572384,-3.6607E-05],[30.57582,-3.5576E-05],[30.579256,-3.6607E-05],[30.582692,-3.9185E-05],[30.586128,-3.2998E-05],[30.589564,-3.3513E-05],[30.593,-3.2998E-05],[30.596436,-3.2482E-05],[30.599872,-3.4544E-05],[30.603308,-3.506E-05],[30.606744,-3.1967E-05],[30.61018,-2.9904E-05],[30.613616,-3.1451E-05],[30.617052,-3.4029E-05],[30.620488,-4.0216E-05],[30.623924,-3.6607E-05],[30.62736,-3.8669E-05],[30.630796,-3.9185E-05],[30.634232,-3.506E-05],[30.637668,-3.8154E-05],[30.641104,-3.8669E-05],[30.64454,-3.7638E-05],[30.647976,-3.5576E-05],[30.651412,-3.4029E-05],[30.654848,-3.4029E-05],[30.658284,-3.7638E-05],[30.66172,-3.8154E-05],[30.665156,-3.5576E-05],[30.668592,-3.3513E-05],[30.672028,-3.3513E-05],[30.675464,-3.2998E-05],[30.6789,-3.6607E-05],[30.682336,-3.9185E-05],[30.685772,-3.0935E-05],[30.689208,-3.3513E-05],[30.692644,-3.7638E-05],[30.69608,-3.6607E-05],[30.699516,-3.6607E-05],[30.702952,-3.7122E-05],[30.706388,-3.6091E-05],[30.709824,-3.506E-05],[30.71326,-3.5576E-05],[30.716696,-3.0935E-05],[30.720132,-3.042E-05],[30.723568,-3.6607E-05],[30.727004,-3.4544E-05],[30.73044,-3.4544E-05],[30.733876,-3.97E-05],[30.737312,-3.5576E-05],[30.740748,-3.4029E-05],[30.744184,-3.5576E-05],[30.74762,-3.5576E-05],[30.751056,-3.6607E-05],[30.754492,-3.9185E-05],[30.757928,-3.8154E-05],[30.761364,-3.506E-05],[30.7648,-3.8154E-05],[30.768236,-3.3513E-05],[30.771672,-3.7638E-05],[30.775108,-4.3309E-05]]}
-{"quant":[30.9317,0.9058],"mems":[[30.83352,-3.8669E-05],[30.836956,-3.8669E-05],[30.840392,-3.7122E-05],[30.843828,-3.042E-05],[30.847264,-3.1451E-05],[30.8507,-3.6607E-05],[30.854136,-3.2998E-05],[30.857572,-4.2278E-05],[30.861008,-3.9185E-05],[30.864444,-3.0935E-05],[30.86788,-3.5576E-05],[30.871316,-3.1967E-05],[30.874752,-3.2998E-05],[30.878188,-3.1967E-05],[30.881624,-3.1967E-05],[30.88506,-3.3513E-05],[30.888496,-3.506E-05],[30.891932,-3.9185E-05],[30.895368,-3.6091E-05],[30.898804,-3.6091E-05],[30.90224,-3.6607E-05],[30.905676,-3.506E-05],[30.909112,-3.6091E-05],[30.912548,-3.7638E-05],[30.915984,-3.7638E-05],[30.91942,-3.6091E-05],[30.922856,-3.97E-05],[30.926292,-3.8154E-05],[30.929728,-3.3513E-05],[30.933164,-3.6607E-05],[30.9366,-3.7122E-05],[30.940036,-3.8669E-05],[30.943472,-3.7638E-05],[30.946908,-3.1451E-05],[30.950344,-3.7122E-05],[30.95378,-3.7122E-05],[30.957216,-3.4544E-05],[30.960652,-3.7122E-05],[30.964088,-3.1967E-05],[30.967524,-3.1967E-05],[30.97096,-3.8669E-05],[30.974396,-3.8669E-05],[30.977832,-3.4029E-05],[30.981268,-3.506E-05],[30.984704,-3.506E-05],[30.98814,-3.3513E-05],[30.991576,-3.97E-05],[30.995012,-3.8669E-05],[30.998448,-3.6091E-05],[31.001884,-3.9185E-05],[31.00532,-3.5576E-05],[31.008756,-3.4029E-05],[31.012192,-3.4029E-05],[31.015628,-3.4544E-05],[31.019064,-3.506E-05],[31.0225,-3.4544E-05],[31.025936,-3.4029E-05],[31.029372,-3.4544E-05],[31.032808,-3.4544E-05],[31.036244,-3.4029E-05],[31.03968,-3.9185E-05],[31.043116,-4.1763E-05],[31.046552,-4.2278E-05],[31.049988,-3.8154E-05],[31.053424,-3.8669E-05],[31.05686,-3.6091E-05],[31.060296,-3.1451E-05],[31.063732,-3.8154E-05],[31.067168,-3.9185E-05],[31.070604,-4.1247E-05],[31.07404,-4.0732E-05],[31.077476,-3.506E-05],[31.080912,-3.97E-05],[31.084348,-3.7638E-05],[31.087784,-3.5576E-05],[31.09122,-3.6607E-05],[31.094656,-3.7122E-05],[31.098092,-4.1763E-05],[31.101528,-4.0732E-05],[31.104964,-3.8669E-05],[31.1084,-3.7638E-05],[31.111836,-3.8669E-05],[31.115272,-4.2278E-05],[31.118708,-4.0216E-05],[31.122144,-3.2998E-05],[31.12558,-3.506E-05],[31.129016,-3.8669E-05]]}
-{"quant":[31.2855,0.87924],"mems":[[31.221788,-3.9185E-05],[31.225224,-4.1247E-05],[31.22866,-3.6091E-05],[31.232096,-3.6091E-05],[31.235532,-3.97E-05],[31.238968,-3.8669E-05],[31.242404,-3.4544E-05],[31.24584,-3.6091E-05],[31.249276,-3.7122E-05],[31.252712,-3.506E-05],[31.256148,-3.506E-05],[31.259584,-3.8154E-05],[31.26302,-3.8669E-05],[31.266456,-3.6607E-05],[31.269892,-3.8154E-05],[31.273328,-3.7122E-05],[31.276764,-3.8154E-05],[31.2802,-3.9185E-05],[31.283636,-3.7122E-05],[31.287072,-3.7122E-05],[31.290508,-3.6091E-05],[31.293944,-3.7638E-05],[31.29738,-3.5576E-05],[31.300816,-3.3513E-05],[31.304252,-3.3513E-05],[31.307688,-3.3513E-05],[31.311124,-3.5576E-05],[31.31456,-3.8154E-05],[31.317996,-4.0216E-05],[31.321432,-3.7638E-05],[31.324868,-3.7122E-05],[31.328304,-3.8154E-05],[31.33174,-3.506E-05],[31.335176,-3.4029E-05],[31.338612,-3.8154E-05],[31.342048,-3.8669E-05],[31.345484,-3.6607E-05],[31.34892,-3.6607E-05],[31.352356,-3.8154E-05],[31.355792,-4.2794E-05],[31.359228,-3.8669E-05],[31.362664,-3.7122E-05],[31.3661,-3.7638E-05],[31.369536,-3.506E-05],[31.372972,-3.6091E-05],[31.376408,-3.042E-05],[31.379844,-2.8873E-05],[31.38328,-3.1967E-05],[31.386716,-3.506E-05],[31.390152,-3.9185E-05],[31.393588,-3.3513E-05],[31.397024,-3.0935E-05],[31.40046,-3.2482E-05],[31.403896,-3.6091E-05],[31.407332,-4.0732E-05],[31.410768,-4.0732E-05],[31.414204,-4.2278E-05],[31.41764,-3.506E-05],[31.421076,-3.4029E-05],[31.424512,-3.9185E-05],[31.427948,-3.7638E-05],[31.431384,-4.0732E-05],[31.43482,-3.8669E-05],[31.438256,-3.7122E-05],[31.441692,-3.8154E-05],[31.445128,-3.7122E-05],[31.448564,-3.97E-05],[31.452,-3.7122E-05],[31.455439,-3.8154E-05],[31.458877,-3.97E-05],[31.462316,-3.6091E-05],[31.465755,-3.6091E-05],[31.469193,-3.7638E-05],[31.472632,-3.7638E-05],[31.476071,-3.7122E-05],[31.479509,-3.7638E-05],[31.482948,-3.5576E-05],[31.486387,-3.4029E-05],[31.489825,-3.2998E-05],[31.493264,-3.7638E-05],[31.496703,-4.0216E-05],[31.500141,-3.5576E-05],[31.50358,-3.6607E-05],[31.507019,-3.8669E-05],[31.510457,-4.0216E-05],[31.513896,-3.506E-05],[31.517335,-3.0935E-05]]}
-{"quant":[31.6833,0.84997],"mems":[[31.586108,-3.506E-05],[31.589547,-3.7122E-05],[31.592985,-4.1247E-05],[31.596424,-3.8669E-05],[31.599863,-3.6091E-05],[31.603301,-3.4544E-05],[31.60674,-3.5576E-05],[31.610179,-3.8669E-05],[31.613617,-3.8669E-05],[31.617056,-3.9185E-05],[31.620495,-3.6607E-05],[31.623933,-3.4029E-05],[31.627372,-3.9185E-05],[31.630811,-4.1247E-05],[31.634249,-4.0732E-05],[31.637688,-4.1763E-05],[31.641127,-3.9185E-05],[31.644565,-3.4544E-05],[31.648004,-3.1451E-05],[31.651443,-3.4029E-05],[31.654881,-3.8669E-05],[31.65832,-3.7638E-05],[31.661759,-3.506E-05],[31.665197,-3.506E-05],[31.668636,-3.8154E-05],[31.672075,-4.1247E-05],[31.675513,-3.6091E-05],[31.678952,-3.1451E-05],[31.682391,-4.0216E-05],[31.685829,-4.2278E-05],[31.689268,-3.8154E-05],[31.692707,-4.1247E-05],[31.696145,-4.0216E-05],[31.699584,-3.6091E-05],[31.703023,-3.2482E-05],[31.706461,-3.4544E-05],[31.7099,-3.9185E-05],[31.713339,-4.5372E-05],[31.716777,-4.4856E-05],[31.720216,-3.97E-05],[31.723655,-3.8154E-05],[31.727093,-3.4544E-05],[31.730532,-3.6607E-05],[31.733971,-3.6091E-05],[31.737409,-3.8154E-05],[31.740848,-3.8669E-05],[31.744287,-3.6091E-05],[31.747725,-4.1763E-05],[31.751164,-3.9185E-05],[31.754603,-3.97E-05],[31.758041,-3.9185E-05],[31.76148,-3.9185E-05],[31.764919,-3.7122E-05],[31.768357,-3.1451E-05],[31.771796,-3.4029E-05],[31.775235,-3.4029E-05],[31.778673,-3.8154E-05],[31.782112,-3.7122E-05],[31.785551,-3.5576E-05],[31.788989,-3.8669E-05],[31.792428,-3.4029E-05],[31.795867,-3.3513E-05],[31.799305,-3.4544E-05],[31.802744,-3.6607E-05],[31.806183,-3.6607E-05],[31.809621,-3.7638E-05],[31.81306,-3.9185E-05],[31.816499,-3.5576E-05],[31.819937,-3.7638E-05],[31.823376,-3.4544E-05],[31.826815,-3.4544E-05],[31.830253,-4.0732E-05],[31.833692,-3.8154E-05],[31.837131,-3.6607E-05],[31.840569,-3.506E-05],[31.844008,-3.4544E-05],[31.847447,-3.5576E-05],[31.850885,-3.7122E-05],[31.854324,-3.9185E-05],[31.857763,-3.5576E-05],[31.861201,-3.506E-05],[31.86464,-3.5576E-05],[31.868079,-3.6091E-05],[31.871517,-3.5576E-05],[31.874956,-3.6607E-05],[31.878395,-4.2794E-05],[31.881833,-3.6091E-05]]}
-{"quant":[32.0534,0.82448],"mems":[[31.954045,-3.9185E-05],[31.957484,-3.8154E-05],[31.960923,-3.8154E-05],[31.964361,-3.6607E-05],[31.9678,-3.8669E-05],[31.971239,-4.2794E-05],[31.974677,-3.97E-05],[31.978116,-4.0216E-05],[31.981555,-3.7638E-05],[31.984993,-3.6607E-05],[31.988432,-3.8154E-05],[31.991871,-3.4029E-05],[31.995309,-3.7122E-05],[31.998748,-3.8154E-05],[32.002187,-3.7638E-05],[32.005625,-4.0216E-05],[32.009064,-3.7122E-05],[32.012503,-3.7122E-05],[32.015941,-3.7638E-05],[32.01938,-3.3513E-05],[32.022819,-3.5576E-05],[32.026257,-3.7638E-05],[32.029696,-3.3513E-05],[32.033135,-3.4029E-05],[32.036573,-3.7122E-05],[32.040012,-3.4544E-05],[32.043451,-3.5576E-05],[32.046889,-3.9185E-05],[32.050328,-3.7122E-05],[32.053767,-3.97E-05],[32.057205,-4.0732E-05],[32.060644,-3.6091E-05],[32.064083,-3.6091E-05],[32.067521,-3.9185E-05],[32.07096,-3.7638E-05],[32.074399,-3.2998E-05],[32.077837,-3.2998E-05],[32.081276,-4.0216E-05],[32.084715,-4.2794E-05],[32.088153,-4.1247E-05],[32.091592,-3.97E-05],[32.095031,-3.7122E-05],[32.098469,-3.9185E-05],[32.101908,-3.6091E-05],[32.105347,-3.4029E-05],[32.108785,-3.97E-05],[32.112224,-3.7638E-05],[32.115663,-3.8154E-05],[32.119101,-3.4544E-05],[32.12254,-3.2482E-05],[32.125979,-3.7122E-05],[32.129417,-3.6607E-05],[32.132856,-3.9185E-05],[32.136295,-3.5576E-05],[32.139733,-3.0935E-05],[32.143172,-3.506E-05],[32.146611,-4.1247E-05],[32.150049,-3.7122E-05],[32.153488,-3.5576E-05],[32.156927,-3.8669E-05],[32.160365,-3.2998E-05],[32.163804,-3.5576E-05],[32.167243,-3.4544E-05],[32.170681,-3.4029E-05],[32.17412,-3.97E-05],[32.177559,-3.7122E-05],[32.180997,-3.7122E-05],[32.184436,-3.6091E-05],[32.187875,-3.506E-05],[32.191313,-3.5576E-05],[32.194752,-3.4029E-05],[32.198191,-3.5576E-05],[32.201629,-3.506E-05],[32.205068,-3.506E-05],[32.208507,-4.0216E-05],[32.211945,-3.7638E-05],[32.215384,-3.3513E-05],[32.218823,-3.4029E-05],[32.222261,-3.3513E-05],[32.2257,-3.4544E-05],[32.229139,-3.5576E-05],[32.232577,-3.6091E-05],[32.236016,-3.6607E-05],[32.239455,-3.7122E-05],[32.242893,-3.8669E-05],[32.246332,-3.9185E-05],[32.249771,-3.9185E-05],[32.253209,-4.1247E-05]]}
-{"quant":[32.4136,0.79864],"mems":[[32.315105,-3.7638E-05],[32.318544,-3.7638E-05],[32.321983,-3.4029E-05],[32.325421,-3.8669E-05],[32.32886,-3.6607E-05],[32.332299,-3.7638E-05],[32.335737,-3.6607E-05],[32.339176,-3.4544E-05],[32.342615,-4.0732E-05],[32.346053,-3.7638E-05],[32.349492,-3.5576E-05],[32.352931,-3.4544E-05],[32.356369,-3.4544E-05],[32.359808,-3.7638E-05],[32.363247,-4.1763E-05],[32.366685,-4.3309E-05],[32.370124,-3.7122E-05],[32.373563,-3.8154E-05],[32.377001,-4.1247E-05],[32.38044,-3.8154E-05],[32.383879,-3.6091E-05],[32.387317,-4.0216E-05],[32.390756,-3.97E-05],[32.394195,-3.7122E-05],[32.397633,-3.8154E-05],[32.401072,-3.6607E-05],[32.404511,-4.0216E-05],[32.407949,-3.97E-05],[32.411388,-3.8669E-05],[32.414827,-3.7122E-05],[32.418265,-3.4029E-05],[32.421704,-3.8669E-05],[32.425143,-3.8154E-05],[32.428581,-3.6607E-05],[32.43202,-3.8154E-05],[32.435459,-3.3513E-05],[32.438897,-3.8154E-05],[32.442336,-4.1763E-05],[32.445775,-3.7638E-05],[32.449213,-4.1247E-05],[32.452652,-3.9185E-05],[32.456091,-3.5576E-05],[32.459529,-3.506E-05],[32.462968,-3.6091E-05],[32.466407,-3.8669E-05],[32.469845,-4.0732E-05],[32.473284,-4.0732E-05],[32.476723,-3.9185E-05],[32.480161,-3.7638E-05],[32.4836,-3.4029E-05],[32.487039,-3.7638E-05],[32.490477,-3.8154E-05],[32.493916,-3.506E-05],[32.497355,-3.5576E-05],[32.500793,-3.3513E-05],[32.504232,-3.7638E-05],[32.507671,-3.6607E-05],[32.511109,-3.506E-05],[32.514548,-3.8669E-05],[32.517987,-3.2482E-05],[32.521425,-3.1451E-05],[32.524864,-3.4544E-05],[32.528303,-3.7638E-05],[32.531741,-3.8669E-05],[32.53518,-3.6091E-05],[32.538619,-3.7638E-05],[32.542057,-3.506E-05],[32.545496,-4.0732E-05],[32.548935,-4.2794E-05],[32.552373,-3.7638E-05],[32.555812,-4.0216E-05],[32.559251,-3.6091E-05],[32.562689,-3.6091E-05],[32.566128,-3.9185E-05],[32.569567,-3.3513E-05],[32.573005,-3.3513E-05],[32.576444,-3.8669E-05],[32.579883,-3.8669E-05],[32.583321,-4.2278E-05],[32.58676,-4.0216E-05],[32.590199,-3.506E-05],[32.593637,-3.7122E-05],[32.597076,-3.6091E-05],[32.600515,-3.7638E-05],[32.603953,-3.8154E-05],[32.607392,-3.7638E-05],[32.610831,-4.0732E-05]]}
-{"quant":[32.7754,0.76811],"mems":[[32.676165,-3.4029E-05],[32.679604,-3.506E-05],[32.683043,-3.4029E-05],[32.686481,-3.2482E-05],[32.68992,-3.506E-05],[32.693359,-3.6091E-05],[32.696797,-3.7122E-05],[32.700236,-3.5576E-05],[32.703675,-3.3513E-05],[32.707113,-3.6091E-05],[32.710552,-3.97E-05],[32.713991,-3.6091E-05],[32.717429,-3.4544E-05],[32.720868,-3.6091E-05],[32.724307,-3.7638E-05],[32.727745,-3.97E-05],[32.731184,-3.6091E-05],[32.734623,-3.506E-05],[32.738061,-3.3513E-05],[32.7415,-3.042E-05],[32.744939,-3.3513E-05],[32.748377,-3.9185E-05],[32.751816,-3.97E-05],[32.755255,-4.0216E-05],[32.758693,-3.7638E-05],[32.762132,-3.5576E-05],[32.765571,-4.0216E-05],[32.769009,-3.9185E-05],[32.772448,-3.7638E-05],[32.775887,-3.4029E-05],[32.779325,-3.042E-05],[32.782764,-3.2482E-05],[32.786203,-3.3513E-05],[32.789641,-3.3513E-05],[32.79308,-3.6091E-05],[32.796519,-3.8154E-05],[32.799957,-3.8154E-05],[32.803396,-3.9185E-05],[32.806835,-3.97E-05],[32.810273,-4.0216E-05],[32.813712,-4.0216E-05],[32.817151,-3.6091E-05],[32.820589,-2.9904E-05],[32.824028,-3.4544E-05],[32.827467,-3.5576E-05],[32.830905,-3.2482E-05],[32.834344,-3.8669E-05],[32.837783,-3.4029E-05],[32.841221,-3.3513E-05],[32.84466,-3.97E-05],[32.848099,-3.9185E-05],[32.851537,-3.8669E-05],[32.854976,-3.7122E-05],[32.858415,-3.6091E-05],[32.861853,-3.4544E-05],[32.865292,-3.506E-05],[32.868731,-3.7122E-05],[32.872169,-3.9185E-05],[32.875608,-3.5576E-05],[32.879047,-3.4544E-05],[32.882485,-3.7638E-05],[32.885924,-3.6091E-05],[32.889363,-3.8154E-05],[32.892801,-4.2278E-05],[32.89624,-3.8669E-05],[32.899679,-3.1967E-05],[32.903117,-3.1451E-05],[32.906556,-3.3513E-05],[32.909995,-3.2482E-05],[32.913433,-3.7638E-05],[32.916872,-4.0732E-05],[32.920311,-3.4029E-05],[32.923749,-3.4029E-05],[32.927188,-3.5576E-05],[32.930627,-3.5576E-05],[32.934065,-3.7122E-05],[32.937504,-3.97E-05],[32.940943,-3.5576E-05],[32.944381,-3.6091E-05],[32.94782,-3.8154E-05],[32.951259,-3.4544E-05],[32.954697,-3.6091E-05],[32.958136,-3.6607E-05],[32.961575,-3.4544E-05],[32.965013,-3.6607E-05],[32.968452,-3.8154E-05],[32.971891,-3.7638E-05],[32.975329,-3.4544E-05]]}
-{"quant":[33.1489,0.73901],"mems":[[33.05098,-3.7122E-05],[33.054419,-3.2482E-05],[33.057857,-3.1451E-05],[33.061296,-3.4029E-05],[33.064735,-3.2998E-05],[33.068173,-3.4544E-05],[33.071612,-4.0216E-05],[33.075051,-3.6091E-05],[33.078489,-3.2998E-05],[33.081928,-3.4029E-05],[33.085367,-3.4029E-05],[33.088805,-3.97E-05],[33.092244,-3.8669E-05],[33.095683,-3.4544E-05],[33.099121,-3.7638E-05],[33.10256,-3.97E-05],[33.105999,-3.7122E-05],[33.109437,-3.6091E-05],[33.112876,-3.6091E-05],[33.116315,-3.4029E-05],[33.119753,-3.4029E-05],[33.123192,-3.2998E-05],[33.126631,-3.506E-05],[33.130069,-3.8669E-05],[33.133508,-3.7122E-05],[33.136947,-3.8669E-05],[33.140385,-3.506E-05],[33.143824,-3.1451E-05],[33.147263,-3.7122E-05],[33.150701,-3.8669E-05],[33.15414,-3.5576E-05],[33.157579,-3.2482E-05],[33.161017,-3.5576E-05],[33.164456,-3.9185E-05],[33.167895,-4.0216E-05],[33.171333,-4.0732E-05],[33.174772,-3.7638E-05],[33.178211,-3.8669E-05],[33.181649,-3.97E-05],[33.185088,-3.6607E-05],[33.188527,-3.8154E-05],[33.191965,-3.7122E-05],[33.195404,-3.3513E-05],[33.198843,-3.1967E-05],[33.202281,-3.2998E-05],[33.20572,-3.5576E-05],[33.209159,-3.6607E-05],[33.212597,-3.8669E-05],[33.216036,-3.6091E-05],[33.219475,-3.7122E-05],[33.222913,-3.9185E-05],[33.226352,-3.6607E-05],[33.229791,-3.5576E-05],[33.233229,-3.8154E-05],[33.236668,-3.8154E-05],[33.240107,-3.4544E-05],[33.243545,-3.9185E-05],[33.246984,-4.0732E-05],[33.250423,-3.5576E-05],[33.253861,-3.8154E-05],[33.2573,-3.8669E-05],[33.260739,-3.6607E-05],[33.264177,-3.97E-05],[33.267616,-3.7638E-05],[33.271055,-3.8154E-05],[33.274493,-4.1247E-05],[33.277932,-3.8154E-05],[33.281371,-3.9185E-05],[33.284809,-4.0216E-05],[33.288248,-3.8154E-05],[33.291687,-3.2482E-05],[33.295125,-3.2482E-05],[33.298564,-4.0732E-05],[33.302003,-3.9185E-05],[33.305441,-3.97E-05],[33.30888,-3.7122E-05],[33.312319,-3.4544E-05],[33.315757,-3.9185E-05],[33.319196,-3.7638E-05],[33.322635,-3.8154E-05],[33.326073,-3.97E-05],[33.329512,-3.9185E-05],[33.332951,-3.4544E-05],[33.336389,-3.2998E-05],[33.339828,-3.506E-05],[33.343267,-3.3513E-05],[33.346705,-4.1763E-05]]}
-{"quant":[33.5052,0.71003],"mems":[[33.408601,-4.2794E-05],[33.41204,-4.0732E-05],[33.415479,-3.506E-05],[33.418917,-3.4544E-05],[33.422356,-3.6091E-05],[33.425795,-3.8154E-05],[33.429233,-3.4544E-05],[33.432672,-3.1451E-05],[33.436111,-4.0216E-05],[33.439549,-3.8154E-05],[33.442988,-3.3513E-05],[33.446427,-4.0732E-05],[33.449865,-3.6607E-05],[33.453304,-3.7638E-05],[33.456743,-4.4856E-05],[33.460181,-3.8669E-05],[33.46362,-3.4029E-05],[33.467059,-3.4544E-05],[33.470497,-3.97E-05],[33.473936,-4.0216E-05],[33.477375,-3.506E-05],[33.480813,-3.7638E-05],[33.484252,-3.97E-05],[33.487691,-3.6091E-05],[33.491129,-3.5576E-05],[33.494568,-3.97E-05],[33.498007,-4.0216E-05],[33.501445,-3.7122E-05],[33.504884,-3.6607E-05],[33.508323,-3.97E-05],[33.511761,-4.1247E-05],[33.5152,-3.7638E-05],[33.518639,-3.7122E-05],[33.522077,-3.8669E-05],[33.525516,-3.6607E-05],[33.528955,-3.5576E-05],[33.532393,-3.4029E-05],[33.535832,-3.2482E-05],[33.539271,-3.1967E-05],[33.542709,-3.4029E-05],[33.546148,-3.7638E-05],[33.549587,-3.506E-05],[33.553025,-3.6607E-05],[33.556464,-3.7122E-05],[33.559903,-3.2482E-05],[33.563341,-3.6607E-05],[33.56678,-3.6091E-05],[33.570219,-3.5576E-05],[33.573657,-3.7122E-05],[33.577096,-3.1451E-05],[33.580535,-3.0935E-05],[33.583973,-3.3513E-05],[33.587412,-3.3513E-05],[33.590851,-3.5576E-05],[33.594289,-3.9185E-05],[33.597728,-3.6091E-05],[33.601167,-3.4544E-05],[33.604605,-3.8669E-05],[33.608044,-3.8154E-05],[33.611483,-3.6607E-05],[33.614921,-3.5576E-05],[33.61836,-3.506E-05],[33.621799,-3.7122E-05],[33.625237,-3.8669E-05],[33.628676,-3.6607E-05],[33.632115,-3.6607E-05],[33.635553,-4.0216E-05],[33.638992,-3.8154E-05],[33.642431,-3.2482E-05],[33.645869,-3.4029E-05],[33.649308,-3.7122E-05],[33.652747,-3.506E-05],[33.656185,-3.3513E-05],[33.659624,-3.5576E-05],[33.663063,-4.0216E-05],[33.666501,-3.7638E-05],[33.66994,-3.8669E-05],[33.673379,-3.8669E-05],[33.676817,-3.4544E-05],[33.680256,-3.7638E-05],[33.683695,-3.7122E-05],[33.687133,-3.7638E-05],[33.690572,-3.4544E-05],[33.694011,-3.2482E-05],[33.697449,-3.7122E-05],[33.700888,-3.506E-05],[33.704327,-3.9185E-05]]}
-{"quant":[33.8974,0.67462],"mems":[[33.831557,-3.3513E-05],[33.834996,-3.8154E-05],[33.838435,-3.4029E-05],[33.841873,-3.2482E-05],[33.845312,-3.8669E-05],[33.848751,-3.8154E-05],[33.852189,-3.6091E-05],[33.855628,-3.5576E-05],[33.859067,-3.7122E-05],[33.862505,-3.5576E-05],[33.865944,-3.9185E-05],[33.869383,-4.2278E-05],[33.872821,-4.1247E-05],[33.87626,-3.6091E-05],[33.879699,-2.8357E-05],[33.883137,-3.6091E-05],[33.886576,-3.8154E-05],[33.890015,-3.7122E-05],[33.893453,-4.2794E-05],[33.896892,-3.506E-05],[33.900331,-2.9389E-05],[33.903769,-3.2482E-05],[33.907208,-3.8154E-05],[33.910647,-3.9185E-05],[33.914085,-3.8154E-05],[33.917524,-3.7638E-05],[33.920963,-3.7638E-05],[33.924401,-3.6091E-05],[33.92784,-3.1451E-05],[33.931279,-3.2998E-05],[33.934717,-3.4544E-05],[33.938156,-3.2998E-05],[33.941595,-3.9185E-05],[33.945033,-4.3825E-05],[33.948472,-3.97E-05],[33.951911,-3.6607E-05],[33.955349,-3.5576E-05],[33.958788,-3.6607E-05],[33.962227,-3.6091E-05],[33.965665,-3.7122E-05],[33.969104,-3.7122E-05],[33.972543,-3.042E-05],[33.975981,-3.1967E-05],[33.97942,-3.5576E-05],[33.982859,-3.2998E-05],[33.986297,-3.2482E-05],[33.989736,-3.9185E-05],[33.993175,-3.8669E-05],[33.996613,-3.3513E-05],[34.000052,-3.5576E-05],[34.003491,-3.1967E-05],[34.006929,-3.6091E-05],[34.010368,-3.97E-05],[34.013807,-3.506E-05],[34.017245,-3.9185E-05],[34.020684,-3.8154E-05],[34.024123,-3.6607E-05],[34.027561,-3.8669E-05],[34.031,-3.5576E-05],[34.034437,-3.9185E-05],[34.037875,-4.0732E-05],[34.041312,-3.9185E-05],[34.044749,-3.97E-05],[34.048187,-3.4029E-05],[34.051624,-3.4029E-05],[34.055061,-3.506E-05],[34.058499,-3.1451E-05],[34.061936,-3.2998E-05],[34.065373,-3.7638E-05],[34.068811,-3.8669E-05],[34.072248,-3.3513E-05],[34.075685,-3.7638E-05],[34.079123,-4.2278E-05],[34.08256,-3.8154E-05],[34.085997,-3.7638E-05],[34.089435,-3.97E-05],[34.092872,-3.506E-05],[34.096309,-3.4029E-05],[34.099747,-3.8154E-05],[34.103184,-3.6091E-05],[34.106621,-3.2998E-05],[34.110059,-3.3513E-05],[34.113496,-3.0935E-05],[34.116933,-3.1967E-05],[34.120371,-3.2482E-05],[34.123808,-3.4544E-05],[34.127245,-3.7122E-05]]}
-{"quant":[34.3002,0.63563],"mems":[[34.202867,-3.1967E-05],[34.206304,-2.8357E-05],[34.209741,-3.6607E-05],[34.213179,-3.506E-05],[34.216616,-3.6607E-05],[34.220053,-3.6091E-05],[34.223491,-3.5576E-05],[34.226928,-3.506E-05],[34.230365,-3.506E-05],[34.233803,-3.4029E-05],[34.23724,-3.2998E-05],[34.240677,-3.7638E-05],[34.244115,-3.7122E-05],[34.247552,-4.0732E-05],[34.250989,-3.6607E-05],[34.254427,-3.3513E-05],[34.257864,-3.8669E-05],[34.261301,-3.4029E-05],[34.264739,-3.5576E-05],[34.268176,-3.9185E-05],[34.271613,-3.4544E-05],[34.275051,-3.6607E-05],[34.278488,-3.5576E-05],[34.281925,-3.2998E-05],[34.285363,-3.6091E-05],[34.2888,-3.7122E-05],[34.292237,-3.8154E-05],[34.295675,-3.6091E-05],[34.299112,-3.506E-05],[34.302549,-3.5576E-05],[34.305987,-3.7638E-05],[34.309424,-4.1247E-05],[34.312861,-3.6091E-05],[34.316299,-3.4029E-05],[34.319736,-3.6091E-05],[34.323173,-3.6607E-05],[34.326611,-3.7638E-05],[34.330048,-3.7122E-05],[34.333485,-3.506E-05],[34.336923,-3.3513E-05],[34.34036,-4.0732E-05],[34.343797,-4.1763E-05],[34.347235,-3.8669E-05],[34.350672,-3.7122E-05],[34.354109,-2.8873E-05],[34.357547,-3.1451E-05],[34.360984,-3.7638E-05],[34.364421,-4.0732E-05],[34.367859,-4.0216E-05],[34.371296,-3.8154E-05],[34.374733,-4.2278E-05],[34.378171,-3.9185E-05],[34.381608,-3.6091E-05],[34.385045,-3.6607E-05],[34.388483,-3.4544E-05],[34.39192,-3.4029E-05],[34.395357,-3.4029E-05],[34.398795,-3.7638E-05],[34.402232,-3.8669E-05],[34.405669,-4.0216E-05],[34.409107,-3.7638E-05],[34.412544,-3.2998E-05],[34.415981,-3.2998E-05],[34.419419,-3.4029E-05],[34.422856,-3.6607E-05],[34.426293,-3.7122E-05],[34.429731,-3.97E-05],[34.433168,-4.1247E-05],[34.436605,-3.9185E-05],[34.440043,-3.8669E-05],[34.44348,-3.4029E-05],[34.446917,-3.3513E-05],[34.450355,-3.6607E-05],[34.453792,-3.506E-05],[34.457229,-3.5576E-05],[34.460667,-3.6607E-05],[34.464104,-3.4544E-05],[34.467541,-3.5576E-05],[34.470979,-3.7638E-05],[34.474416,-3.4029E-05],[34.477853,-3.4029E-05],[34.481291,-3.7638E-05],[34.484728,-3.6091E-05],[34.488165,-3.6091E-05],[34.491603,-3.8154E-05],[34.49504,-3.506E-05],[34.498477,-3.5576E-05]]}
-{"quant":[34.6942,0.60307],"mems":[[34.594723,-3.6091E-05],[34.59816,-3.8669E-05],[34.601597,-3.8669E-05],[34.605035,-3.506E-05],[34.608472,-3.6607E-05],[34.611909,-3.6607E-05],[34.615347,-3.3513E-05],[34.618784,-3.8669E-05],[34.622221,-3.5576E-05],[34.625659,-3.506E-05],[34.629096,-3.97E-05],[34.632533,-3.4029E-05],[34.635971,-3.6091E-05],[34.639408,-3.8154E-05],[34.642845,-3.8154E-05],[34.646283,-3.97E-05],[34.64972,-3.3513E-05],[34.653157,-3.9185E-05],[34.656595,-4.1247E-05],[34.660032,-3.6607E-05],[34.663469,-4.2794E-05],[34.666907,-3.7638E-05],[34.670344,-3.1967E-05],[34.673781,-3.2998E-05],[34.677219,-3.2998E-05],[34.680656,-3.5576E-05],[34.684093,-3.5576E-05],[34.687531,-3.4029E-05],[34.690968,-3.5576E-05],[34.694405,-3.6607E-05],[34.697843,-3.1967E-05],[34.70128,-3.3513E-05],[34.704717,-4.1763E-05],[34.708155,-4.0216E-05],[34.711592,-3.2998E-05],[34.715029,-3.042E-05],[34.718467,-3.2482E-05],[34.721904,-3.2998E-05],[34.725341,-3.9185E-05],[34.728779,-3.4029E-05],[34.732216,-2.7842E-05],[34.735653,-3.8154E-05],[34.739091,-3.8154E-05],[34.742528,-3.6607E-05],[34.745965,-3.8669E-05],[34.749403,-3.5576E-05],[34.75284,-3.4029E-05],[34.756277,-3.2998E-05],[34.759715,-3.6091E-05],[34.763152,-3.4029E-05],[34.766589,-3.3513E-05],[34.770027,-3.7122E-05],[34.773464,-3.4544E-05],[34.776901,-3.4544E-05],[34.780339,-3.7638E-05],[34.783776,-3.6607E-05],[34.787213,-3.4544E-05],[34.790651,-3.506E-05],[34.794088,-3.6091E-05],[34.797525,-3.3513E-05],[34.800963,-3.1451E-05],[34.8044,-3.2998E-05],[34.807837,-3.3513E-05],[34.811275,-3.6607E-05],[34.814712,-3.6607E-05],[34.818149,-3.5576E-05],[34.821587,-3.8154E-05],[34.825024,-3.4544E-05],[34.828461,-3.6607E-05],[34.831899,-3.5576E-05],[34.835336,-3.0935E-05],[34.838773,-3.7122E-05],[34.842211,-3.6091E-05],[34.845648,-3.7122E-05],[34.849085,-3.97E-05],[34.852523,-3.8154E-05],[34.85596,-3.8154E-05],[34.859397,-3.6091E-05],[34.862835,-3.7122E-05],[34.866272,-3.9185E-05],[34.869709,-3.6607E-05],[34.873147,-3.3513E-05],[34.876584,-3.4544E-05],[34.880021,-3.7638E-05],[34.883459,-3.7122E-05],[34.886896,-4.0216E-05],[34.890333,-3.7638E-05],[34.893771,-3.6607E-05]]}
-{"quant":[35.0777,0.57864],"mems":[[34.979704,-3.506E-05],[34.983141,-3.9185E-05],[34.986579,-3.5576E-05],[34.990016,-3.4029E-05],[34.993453,-3.4029E-05],[34.996891,-3.7122E-05],[35.000328,-3.6607E-05],[35.003765,-3.7638E-05],[35.007203,-3.8154E-05],[35.01064,-3.3513E-05],[35.014077,-3.8669E-05],[35.017515,-3.4544E-05],[35.020952,-3.4029E-05],[35.024389,-3.9185E-05],[35.027827,-3.8154E-05],[35.031264,-3.6607E-05],[35.034701,-2.9904E-05],[35.038139,-3.2482E-05],[35.041576,-3.2998E-05],[35.045013,-3.3513E-05],[35.048451,-3.6091E-05],[35.051888,-3.1967E-05],[35.055325,-3.6091E-05],[35.058763,-3.6091E-05],[35.0622,-3.2998E-05],[35.065637,-3.9185E-05],[35.069075,-3.8669E-05],[35.072512,-3.2998E-05],[35.075949,-2.9904E-05],[35.079387,-2.9389E-05],[35.082824,-3.4544E-05],[35.086261,-3.4544E-05],[35.089699,-3.4544E-05],[35.093136,-3.5576E-05],[35.096573,-3.4029E-05],[35.100011,-3.3513E-05],[35.103448,-3.2998E-05],[35.106885,-3.6607E-05],[35.110323,-3.4029E-05],[35.11376,-3.506E-05],[35.117197,-3.8154E-05],[35.120635,-3.7122E-05],[35.124072,-3.6091E-05],[35.127509,-3.2998E-05],[35.130947,-3.4029E-05],[35.134384,-3.2482E-05],[35.137821,-3.1451E-05],[35.141259,-3.4544E-05],[35.144696,-3.7122E-05],[35.148133,-3.8669E-05],[35.151571,-3.1967E-05],[35.155008,-3.042E-05],[35.158445,-3.6607E-05],[35.161883,-3.6607E-05],[35.16532,-3.6091E-05],[35.168757,-3.4029E-05],[35.172195,-3.5576E-05],[35.175632,-3.506E-05],[35.179069,-3.2998E-05],[35.182507,-4.1247E-05],[35.185944,-4.2278E-05],[35.189381,-3.8154E-05],[35.192819,-3.8669E-05],[35.196256,-3.4544E-05],[35.199693,-3.1451E-05],[35.203131,-3.8669E-05],[35.206568,-3.8669E-05],[35.210005,-3.7122E-05],[35.213443,-3.9185E-05],[35.21688,-3.506E-05],[35.220317,-3.3513E-05],[35.223755,-3.1967E-05],[35.227192,-3.6091E-05],[35.230629,-3.97E-05],[35.234067,-3.4029E-05],[35.237504,-3.2998E-05],[35.240941,-3.6091E-05],[35.244379,-3.8154E-05],[35.247816,-3.8669E-05],[35.251253,-3.8669E-05],[35.254691,-3.8154E-05],[35.258128,-3.7638E-05],[35.261565,-3.7638E-05],[35.265003,-3.4029E-05],[35.26844,-3.5576E-05],[35.271877,-3.9185E-05],[35.275315,-3.506E-05]]}
-{"quant":[35.4645,0.55402],"mems":[[35.364685,-3.7122E-05],[35.368123,-3.2998E-05],[35.37156,-3.042E-05],[35.374997,-3.6607E-05],[35.378435,-4.0216E-05],[35.381872,-4.0216E-05],[35.385309,-4.1247E-05],[35.388747,-3.506E-05],[35.392184,-3.1451E-05],[35.395621,-3.506E-05],[35.399059,-3.9185E-05],[35.402496,-3.8154E-05],[35.405933,-3.7122E-05],[35.409371,-3.6091E-05],[35.412808,-3.7122E-05],[35.416245,-3.8669E-05],[35.419683,-3.6091E-05],[35.42312,-3.97E-05],[35.426557,-4.1247E-05],[35.429995,-4.0216E-05],[35.433432,-4.0216E-05],[35.436869,-3.7122E-05],[35.440307,-3.6607E-05],[35.443744,-3.5576E-05],[35.447181,-3.2482E-05],[35.450619,-3.1451E-05],[35.454056,-3.3513E-05],[35.457493,-4.0216E-05],[35.460931,-3.97E-05],[35.464368,-3.6091E-05],[35.467805,-3.2482E-05],[35.471243,-3.2482E-05],[35.47468,-4.0216E-05],[35.478117,-4.2794E-05],[35.481555,-3.9185E-05],[35.484992,-3.4544E-05],[35.488429,-3.4544E-05],[35.491867,-3.506E-05],[35.495304,-3.5576E-05],[35.498741,-3.8154E-05],[35.502179,-3.6091E-05],[35.505616,-3.5576E-05],[35.509053,-3.6607E-05],[35.512491,-3.1967E-05],[35.515928,-3.5576E-05],[35.519365,-3.7638E-05],[35.522803,-3.7122E-05],[35.52624,-4.0732E-05],[35.529677,-3.4544E-05],[35.533115,-3.6091E-05],[35.536552,-3.8154E-05],[35.539989,-3.5576E-05],[35.543427,-3.8154E-05],[35.546864,-3.7638E-05],[35.550301,-3.8669E-05],[35.553739,-3.6607E-05],[35.557176,-3.7638E-05],[35.560613,-3.7122E-05],[35.564051,-3.4544E-05],[35.567488,-4.1247E-05],[35.570925,-4.0732E-05],[35.574363,-3.6607E-05],[35.5778,-3.5576E-05],[35.581237,-3.6607E-05],[35.584675,-3.5576E-05],[35.588112,-3.0935E-05],[35.591549,-3.2998E-05],[35.594987,-3.2482E-05],[35.598424,-3.1967E-05],[35.601861,-3.8669E-05],[35.605299,-3.7122E-05],[35.608736,-3.7638E-05],[35.612173,-4.1247E-05],[35.615611,-3.7638E-05],[35.619048,-3.4029E-05],[35.622485,-3.4544E-05],[35.625923,-3.7638E-05],[35.62936,-3.5576E-05],[35.632797,-3.1451E-05],[35.636235,-3.4029E-05],[35.639672,-3.97E-05],[35.643109,-4.0732E-05],[35.646547,-3.7122E-05],[35.649984,-3.7122E-05],[35.653421,-3.7638E-05],[35.656859,-3.6607E-05],[35.660296,-3.5576E-05],[35.663733,-3.1967E-05]]}
-{"quant":[35.8422,0.52428],"mems":[[35.742792,-3.8669E-05],[35.746229,-3.9185E-05],[35.749667,-3.9185E-05],[35.753104,-3.7122E-05],[35.756541,-3.506E-05],[35.759979,-3.506E-05],[35.763416,-3.506E-05],[35.766853,-3.6091E-05],[35.770291,-3.506E-05],[35.773728,-3.042E-05],[35.777165,-3.5576E-05],[35.780603,-3.9185E-05],[35.78404,-3.4029E-05],[35.787477,-3.3513E-05],[35.790915,-3.2998E-05],[35.794352,-2.9904E-05],[35.797789,-3.506E-05],[35.801227,-3.97E-05],[35.804664,-3.4544E-05],[35.808101,-3.1967E-05],[35.811539,-3.2998E-05],[35.814976,-3.2482E-05],[35.818413,-3.1967E-05],[35.821851,-3.3513E-05],[35.825288,-3.6091E-05],[35.828725,-3.1967E-05],[35.832163,-3.3513E-05],[35.8356,-3.7638E-05],[35.839037,-3.97E-05],[35.842475,-4.1763E-05],[35.845912,-3.97E-05],[35.849349,-3.6091E-05],[35.852787,-3.506E-05],[35.856224,-3.6091E-05],[35.859661,-3.5576E-05],[35.863099,-3.6607E-05],[35.866536,-3.6607E-05],[35.869973,-3.6607E-05],[35.873411,-3.4544E-05],[35.876848,-3.4029E-05],[35.880285,-3.6091E-05],[35.883723,-3.4029E-05],[35.88716,-3.8154E-05],[35.890597,-3.6091E-05],[35.894035,-3.4544E-05],[35.897472,-4.0216E-05],[35.900909,-3.7638E-05],[35.904347,-3.8669E-05],[35.907784,-3.9185E-05],[35.911221,-3.8154E-05],[35.914659,-3.8154E-05],[35.918096,-3.6607E-05],[35.921533,-3.8669E-05],[35.924971,-3.7638E-05],[35.928408,-3.6091E-05],[35.931845,-3.506E-05],[35.935283,-3.6607E-05],[35.93872,-3.7122E-05],[35.942157,-3.506E-05],[35.945595,-3.8669E-05],[35.949032,-3.506E-05],[35.952469,-3.3513E-05],[35.955907,-3.7122E-05],[35.959344,-3.7122E-05],[35.962781,-4.0216E-05],[35.966219,-4.0732E-05],[35.969656,-3.7638E-05],[35.973093,-3.7122E-05],[35.976531,-3.4029E-05],[35.979968,-3.8154E-05],[35.983405,-3.8669E-05],[35.986843,-3.9185E-05],[35.99028,-3.7122E-05],[35.993717,-3.042E-05],[35.997155,-3.8669E-05],[36.000592,-3.9185E-05],[36.004029,-3.5576E-05],[36.007467,-3.8154E-05],[36.010904,-3.5576E-05],[36.014341,-3.6607E-05],[36.017779,-3.6091E-05],[36.021216,-3.506E-05],[36.024653,-3.7122E-05],[36.028091,-3.3513E-05],[36.031528,-3.4544E-05],[36.034965,-4.0216E-05],[36.038403,-3.9185E-05],[36.04184,-4.1247E-05]]}
-{"quant":[36.21,0.49272],"mems":[[36.110587,-3.7638E-05],[36.114024,-3.5576E-05],[36.117461,-3.6607E-05],[36.120899,-4.2794E-05],[36.124336,-3.7122E-05],[36.127773,-3.506E-05],[36.131211,-3.6607E-05],[36.134648,-3.3513E-05],[36.138085,-3.8669E-05],[36.141523,-4.0732E-05],[36.14496,-3.8154E-05],[36.148397,-3.6607E-05],[36.151835,-3.4029E-05],[36.155272,-3.6091E-05],[36.158709,-4.0732E-05],[36.162147,-4.0216E-05],[36.165584,-3.8154E-05],[36.169021,-3.7638E-05],[36.172459,-3.2998E-05],[36.175896,-3.3513E-05],[36.179333,-3.7122E-05],[36.182771,-3.7638E-05],[36.186208,-3.9185E-05],[36.189645,-3.8669E-05],[36.193083,-3.7638E-05],[36.19652,-3.7122E-05],[36.199957,-3.6607E-05],[36.203395,-3.8669E-05],[36.206832,-3.6607E-05],[36.210269,-3.2998E-05],[36.213707,-3.6607E-05],[36.217144,-3.4029E-05],[36.220581,-3.1967E-05],[36.224019,-3.9185E-05],[36.227456,-3.7638E-05],[36.230893,-3.2998E-05],[36.234331,-3.4544E-05],[36.237768,-3.506E-05],[36.241205,-3.7638E-05],[36.244643,-4.0216E-05],[36.24808,-3.7122E-05],[36.251517,-3.5576E-05],[36.254955,-3.6091E-05],[36.258392,-3.5576E-05],[36.261829,-3.4544E-05],[36.265267,-3.506E-05],[36.268704,-3.8154E-05],[36.272141,-3.506E-05],[36.275579,-3.6091E-05],[36.279016,-3.7122E-05],[36.282453,-3.7638E-05],[36.285891,-4.0216E-05],[36.289328,-3.7122E-05],[36.292765,-3.7122E-05],[36.296203,-3.7122E-05],[36.29964,-3.2998E-05],[36.303077,-3.5576E-05],[36.306515,-3.7638E-05],[36.309952,-3.97E-05],[36.313389,-3.9185E-05],[36.316827,-3.2482E-05],[36.320264,-3.8154E-05],[36.323701,-4.2794E-05],[36.327139,-3.8154E-05],[36.330576,-3.506E-05],[36.334013,-3.1451E-05],[36.337451,-3.6607E-05],[36.340888,-3.7638E-05],[36.344325,-3.7122E-05],[36.347763,-3.8154E-05],[36.3512,-3.3513E-05],[36.354637,-3.2482E-05],[36.358075,-3.4544E-05],[36.361512,-3.9185E-05],[36.364949,-3.97E-05],[36.368387,-3.8669E-05],[36.371824,-3.7122E-05],[36.375261,-3.506E-05],[36.378699,-3.506E-05],[36.382136,-4.0732E-05],[36.385573,-4.0216E-05],[36.389011,-3.2998E-05],[36.392448,-3.5576E-05],[36.395885,-3.5576E-05],[36.399323,-3.8154E-05],[36.40276,-3.97E-05],[36.406197,-3.6091E-05],[36.409635,-3.97E-05]]}
-{"quant":[36.5779,0.46136],"mems":[[36.502443,-3.6607E-05],[36.50588,-3.7638E-05],[36.509317,-4.2794E-05],[36.512755,-3.6091E-05],[36.516192,-3.1451E-05],[36.519629,-3.506E-05],[36.523067,-3.9185E-05],[36.526504,-3.97E-05],[36.529941,-3.6091E-05],[36.533379,-3.6607E-05],[36.536816,-3.9185E-05],[36.540253,-3.9185E-05],[36.543691,-3.97E-05],[36.547128,-4.1763E-05],[36.550565,-3.9185E-05],[36.554003,-3.8154E-05],[36.55744,-3.8154E-05],[36.560877,-3.8154E-05],[36.564315,-4.0216E-05],[36.567752,-3.7122E-05],[36.571189,-3.8154E-05],[36.574627,-4.0216E-05],[36.578064,-3.97E-05],[36.581501,-3.7638E-05],[36.584939,-3.6091E-05],[36.588376,-3.506E-05],[36.591813,-3.6607E-05],[36.595251,-3.6607E-05],[36.598688,-3.5576E-05],[36.602125,-4.2278E-05],[36.605563,-4.0216E-05],[36.609,-4.0216E-05],[36.612443,-3.8669E-05],[36.615885,-3.8154E-05],[36.619328,-4.3825E-05],[36.622771,-3.6607E-05],[36.626213,-3.9185E-05],[36.629656,-3.97E-05],[36.633099,-3.4544E-05],[36.636541,-4.0216E-05],[36.639984,-3.8669E-05],[36.643427,-3.7638E-05],[36.646869,-3.7638E-05],[36.650312,-3.4029E-05],[36.653755,-3.506E-05],[36.657197,-3.7122E-05],[36.66064,-3.7638E-05],[36.664083,-3.9185E-05],[36.667525,-3.6091E-05],[36.670968,-3.5576E-05],[36.674411,-4.1763E-05],[36.677853,-3.9185E-05],[36.681296,-4.0216E-05],[36.684739,-3.9185E-05],[36.688181,-3.6607E-05],[36.691624,-3.6091E-05],[36.695067,-3.506E-05],[36.698509,-3.97E-05],[36.701952,-4.1763E-05],[36.705395,-4.0216E-05],[36.708837,-3.7122E-05],[36.71228,-3.7122E-05],[36.715723,-3.8669E-05],[36.719165,-3.8154E-05],[36.722608,-3.8154E-05],[36.726051,-3.6091E-05],[36.729493,-3.5576E-05],[36.732936,-3.6091E-05],[36.736379,-3.5576E-05],[36.739821,-3.7122E-05],[36.743264,-3.8154E-05],[36.746707,-3.506E-05],[36.750149,-3.6091E-05],[36.753592,-3.2998E-05],[36.757035,-3.4544E-05],[36.760477,-4.1763E-05],[36.76392,-3.9185E-05],[36.767363,-3.7122E-05],[36.770805,-3.7122E-05],[36.774248,-3.97E-05],[36.777691,-3.6091E-05],[36.781133,-3.2482E-05],[36.784576,-3.5576E-05],[36.788019,-3.2998E-05],[36.791461,-3.506E-05],[36.794904,-3.4544E-05],[36.798347,-3.8669E-05]]}
-{"quant":[36.9842,0.42509],"mems":[[36.884413,-3.5576E-05],[36.887856,-3.2482E-05],[36.891299,-3.4029E-05],[36.894741,-3.5576E-05],[36.898184,-3.4544E-05],[36.901627,-3.2998E-05],[36.905069,-3.4544E-05],[36.908512,-4.0732E-05],[36.911955,-3.7638E-05],[36.915397,-3.506E-05],[36.91884,-3.8669E-05],[36.922283,-3.5576E-05],[36.925725,-3.7122E-05],[36.929168,-3.7122E-05],[36.932611,-3.506E-05],[36.936053,-3.8669E-05],[36.939496,-3.8669E-05],[36.942939,-4.0732E-05],[36.946381,-3.5576E-05],[36.949824,-3.3513E-05],[36.953267,-4.0216E-05],[36.956709,-3.6091E-05],[36.960152,-3.7638E-05],[36.963595,-3.7638E-05],[36.967037,-3.2998E-05],[36.97048,-3.2482E-05],[36.973923,-3.506E-05],[36.977365,-3.6607E-05],[36.980808,-3.6607E-05],[36.984251,-4.2278E-05],[36.987693,-4.3825E-05],[36.991136,-4.3309E-05],[36.994579,-3.506E-05],[36.998021,-3.6091E-05],[37.001464,-3.97E-05],[37.004907,-3.3513E-05],[37.008349,-3.4544E-05],[37.011792,-3.5576E-05],[37.015235,-3.97E-05],[37.018677,-4.0732E-05],[37.02212,-4.0216E-05],[37.025563,-3.7638E-05],[37.029005,-3.2998E-05],[37.032448,-3.4544E-05],[37.035891,-3.7638E-05],[37.039333,-3.7122E-05],[37.042776,-3.506E-05],[37.046219,-3.3513E-05],[37.049661,-3.2482E-05],[37.053104,-3.506E-05],[37.056547,-3.4544E-05],[37.059989,-3.6091E-05],[37.063432,-3.8669E-05],[37.066875,-3.6091E-05],[37.070317,-3.6091E-05],[37.07376,-3.7122E-05],[37.077203,-3.7122E-05],[37.080645,-3.6607E-05],[37.084088,-3.9185E-05],[37.087531,-3.5576E-05],[37.090973,-3.4029E-05],[37.094416,-3.7122E-05],[37.097859,-3.8669E-05],[37.101301,-3.9185E-05],[37.104744,-3.7638E-05],[37.108187,-3.7638E-05],[37.111629,-3.2998E-05],[37.115072,-3.2482E-05],[37.118515,-3.6607E-05],[37.121957,-3.8154E-05],[37.1254,-3.9185E-05],[37.128843,-3.7638E-05],[37.132285,-3.8154E-05],[37.135728,-3.97E-05],[37.139171,-3.7122E-05],[37.142613,-3.6091E-05],[37.146056,-3.7638E-05],[37.149499,-3.7122E-05],[37.152941,-3.506E-05],[37.156384,-3.5576E-05],[37.159827,-3.4544E-05],[37.163269,-3.1967E-05],[37.166712,-3.4544E-05],[37.170155,-3.6091E-05],[37.173597,-3.7638E-05],[37.17704,-3.8154E-05],[37.180483,-3.6091E-05],[37.183925,-3.506E-05]]}
-{"quant":[37.3404,0.38262],"mems":[[37.242451,-3.8669E-05],[37.245893,-4.1763E-05],[37.249336,-3.8669E-05],[37.252779,-3.4029E-05],[37.256221,-3.6607E-05],[37.259664,-4.1763E-05],[37.263107,-3.9185E-05],[37.266549,-3.7638E-05],[37.269992,-3.7638E-05],[37.273435,-3.506E-05],[37.276877,-3.8154E-05],[37.28032,-3.506E-05],[37.283763,-3.4544E-05],[37.287205,-3.97E-05],[37.290648,-3.6091E-05],[37.294091,-3.8154E-05],[37.297533,-4.0732E-05],[37.300976,-3.8154E-05],[37.304419,-3.6607E-05],[37.307861,-3.7122E-05],[37.311304,-3.5576E-05],[37.314747,-3.4544E-05],[37.318189,-4.1247E-05],[37.321632,-4.3309E-05],[37.325075,-3.6091E-05],[37.328517,-3.7638E-05],[37.33196,-3.9185E-05],[37.335403,-3.3513E-05],[37.338845,-3.2482E-05],[37.342288,-3.2998E-05],[37.345731,-3.6091E-05],[37.349173,-4.2794E-05],[37.352616,-4.0216E-05],[37.356059,-3.7638E-05],[37.359501,-4.0732E-05],[37.362944,-3.7122E-05],[37.366387,-3.506E-05],[37.369829,-3.5576E-05],[37.373272,-3.6091E-05],[37.376715,-3.7638E-05],[37.380157,-3.6091E-05],[37.3836,-4.0732E-05],[37.387043,-3.9185E-05],[37.390485,-3.2998E-05],[37.393928,-3.97E-05],[37.397371,-3.8154E-05],[37.400813,-3.5576E-05],[37.404256,-4.0216E-05],[37.407699,-3.7638E-05],[37.411141,-3.4029E-05],[37.414584,-3.3513E-05],[37.418027,-3.4029E-05],[37.421469,-3.6091E-05],[37.424912,-3.4544E-05],[37.428355,-3.506E-05],[37.431797,-3.6091E-05],[37.43524,-3.2482E-05],[37.438683,-3.6607E-05],[37.442125,-3.8154E-05],[37.445568,-3.3513E-05],[37.449011,-3.6091E-05],[37.452453,-3.6091E-05],[37.455896,-3.8154E-05],[37.459339,-4.0732E-05],[37.462781,-3.7122E-05],[37.466224,-3.506E-05],[37.469667,-3.4544E-05],[37.473109,-3.4544E-05],[37.476552,-3.6091E-05],[37.479995,-3.6607E-05],[37.483437,-3.8669E-05],[37.48688,-3.97E-05],[37.490323,-3.506E-05],[37.493765,-3.5576E-05],[37.497208,-3.8669E-05],[37.500651,-3.8154E-05],[37.504093,-3.8154E-05],[37.507536,-3.5576E-05],[37.510979,-3.7122E-05],[37.514421,-4.2278E-05],[37.517864,-3.97E-05],[37.521307,-3.6091E-05],[37.524749,-3.3513E-05],[37.528192,-3.0935E-05],[37.531635,-3.6091E-05],[37.535077,-3.8154E-05],[37.53852,-3.6607E-05]]}
-{"quant":[37.7215,0.33353],"mems":[[37.624587,-3.7638E-05],[37.628029,-3.9185E-05],[37.631472,-3.9185E-05],[37.634915,-3.8154E-05],[37.638357,-3.8154E-05],[37.6418,-3.97E-05],[37.645243,-3.7638E-05],[37.648685,-3.4029E-05],[37.652128,-3.506E-05],[37.655571,-3.4544E-05],[37.659013,-3.2998E-05],[37.662456,-3.6091E-05],[37.665899,-4.0732E-05],[37.669341,-3.7122E-05],[37.672784,-3.6091E-05],[37.676227,-3.7638E-05],[37.679669,-3.5576E-05],[37.683112,-4.0216E-05],[37.686555,-3.97E-05],[37.689997,-3.8669E-05],[37.69344,-4.0216E-05],[37.696883,-3.8669E-05],[37.700325,-4.0216E-05],[37.703768,-4.1247E-05],[37.707211,-3.97E-05],[37.710653,-3.7122E-05],[37.714096,-3.7638E-05],[37.717539,-3.8669E-05],[37.720981,-3.5576E-05],[37.724424,-3.97E-05],[37.727867,-4.1763E-05],[37.731309,-3.6607E-05],[37.734752,-3.7638E-05],[37.738195,-3.97E-05],[37.741637,-3.8154E-05],[37.74508,-3.7638E-05],[37.748523,-3.7638E-05],[37.751965,-3.5576E-05],[37.755408,-3.4029E-05],[37.758851,-4.0216E-05],[37.762293,-4.2278E-05],[37.765736,-3.9185E-05],[37.769179,-3.6091E-05],[37.772621,-3.6607E-05],[37.776064,-3.8669E-05],[37.779507,-3.6091E-05],[37.782949,-3.506E-05],[37.786392,-3.5576E-05],[37.789835,-3.4544E-05],[37.793277,-3.6607E-05],[37.79672,-3.7122E-05],[37.800163,-3.6091E-05],[37.803605,-3.2998E-05],[37.807048,-3.3513E-05],[37.810491,-3.506E-05],[37.813933,-3.4029E-05],[37.817376,-3.6607E-05],[37.820819,-3.8669E-05],[37.824261,-3.8669E-05],[37.827704,-3.7122E-05],[37.831147,-4.2278E-05],[37.834589,-3.5576E-05],[37.838032,-3.0935E-05],[37.841475,-3.8669E-05],[37.844917,-3.6091E-05],[37.84836,-4.0732E-05],[37.851803,-4.1763E-05],[37.855245,-4.3309E-05],[37.858688,-4.3309E-05],[37.862131,-3.7122E-05],[37.865573,-3.8669E-05],[37.869016,-3.6607E-05],[37.872459,-3.7122E-05],[37.875901,-3.4029E-05],[37.879344,-3.3513E-05],[37.882787,-3.8669E-05],[37.886229,-3.5576E-05],[37.889672,-3.042E-05],[37.893115,-2.8357E-05],[37.896557,-3.042E-05],[37.9,-3.9185E-05],[37.903443,-3.97E-05],[37.906885,-3.042E-05],[37.910328,-3.2482E-05],[37.913771,-3.7638E-05],[37.917213,-4.0216E-05],[37.920656,-4.3825E-05]]}
-{"quant":[38.0765,0.28777],"mems":[[37.979181,-3.97E-05],[37.982624,-3.506E-05],[37.986067,-3.8154E-05],[37.989509,-3.5576E-05],[37.992952,-3.7638E-05],[37.996395,-3.8669E-05],[37.999837,-3.6607E-05],[38.00328,-3.7122E-05],[38.006723,-3.97E-05],[38.010165,-4.0732E-05],[38.013608,-3.9185E-05],[38.017051,-3.6607E-05],[38.020493,-3.7638E-05],[38.023936,-3.8154E-05],[38.027379,-3.6607E-05],[38.030821,-3.6607E-05],[38.034264,-3.2998E-05],[38.037707,-3.1451E-05],[38.041149,-3.7638E-05],[38.044592,-3.7122E-05],[38.048035,-3.7638E-05],[38.051477,-3.97E-05],[38.05492,-3.506E-05],[38.058363,-3.8154E-05],[38.061805,-4.1247E-05],[38.065248,-3.8669E-05],[38.068691,-4.1763E-05],[38.072133,-3.7638E-05],[38.075576,-3.7122E-05],[38.079019,-4.3309E-05],[38.082461,-3.8154E-05],[38.085904,-3.8154E-05],[38.089347,-3.8154E-05],[38.092789,-3.6607E-05],[38.096232,-3.8154E-05],[38.099675,-3.6607E-05],[38.103117,-3.8154E-05],[38.10656,-4.2278E-05],[38.110003,-4.0216E-05],[38.113445,-3.5576E-05],[38.116888,-3.97E-05],[38.120331,-4.0216E-05],[38.123773,-4.1247E-05],[38.127216,-3.8669E-05],[38.130659,-3.4544E-05],[38.134101,-4.0216E-05],[38.137544,-4.2278E-05],[38.140987,-4.0732E-05],[38.144429,-3.7122E-05],[38.147872,-3.8669E-05],[38.151315,-3.8154E-05],[38.154757,-3.2482E-05],[38.1582,-3.8154E-05],[38.161643,-3.8154E-05],[38.165085,-3.3513E-05],[38.168528,-3.506E-05],[38.171971,-3.6607E-05],[38.175413,-3.8154E-05],[38.178856,-4.0216E-05],[38.182299,-4.0732E-05],[38.185741,-3.8154E-05],[38.189184,-3.8154E-05],[38.192627,-3.9185E-05],[38.196069,-3.8669E-05],[38.199512,-3.6091E-05],[38.202955,-3.7638E-05],[38.206397,-3.506E-05],[38.20984,-3.1451E-05],[38.213283,-3.7122E-05],[38.216725,-3.7122E-05],[38.220168,-3.9185E-05],[38.223611,-3.97E-05],[38.227053,-3.7638E-05],[38.230496,-3.8669E-05],[38.233939,-3.6091E-05],[38.237381,-3.6091E-05],[38.240824,-3.9185E-05],[38.244267,-3.6091E-05],[38.247709,-3.0935E-05],[38.251152,-3.1967E-05],[38.254595,-3.2998E-05],[38.258037,-3.7638E-05],[38.26148,-4.0216E-05],[38.264923,-3.6607E-05],[38.268365,-3.8154E-05],[38.271808,-3.97E-05],[38.275251,-3.8669E-05]]}
-{"quant":[38.4562,0.2528],"mems":[[38.357875,-3.8669E-05],[38.361317,-3.506E-05],[38.36476,-3.6091E-05],[38.368203,-3.7122E-05],[38.371645,-3.506E-05],[38.375088,-3.6091E-05],[38.378531,-3.7638E-05],[38.381973,-3.6607E-05],[38.385416,-3.5576E-05],[38.388859,-3.4029E-05],[38.392301,-3.6607E-05],[38.395744,-3.8669E-05],[38.399187,-3.506E-05],[38.402629,-3.6091E-05],[38.406072,-3.9185E-05],[38.409515,-3.9185E-05],[38.412957,-3.9185E-05],[38.4164,-3.8669E-05],[38.419843,-3.6607E-05],[38.423285,-3.7638E-05],[38.426728,-3.6091E-05],[38.430171,-3.2998E-05],[38.433613,-3.7122E-05],[38.437056,-3.6607E-05],[38.440499,-3.5576E-05],[38.443941,-3.97E-05],[38.447384,-3.506E-05],[38.450827,-3.3513E-05],[38.454269,-3.7638E-05],[38.457712,-3.8669E-05],[38.461155,-3.8669E-05],[38.464597,-3.97E-05],[38.46804,-4.0216E-05],[38.471483,-3.4544E-05],[38.474925,-3.7638E-05],[38.478368,-3.6091E-05],[38.481811,-3.4544E-05],[38.485253,-4.0216E-05],[38.488696,-3.8669E-05],[38.492139,-3.7638E-05],[38.495581,-3.7122E-05],[38.499024,-3.9185E-05],[38.502467,-4.0216E-05],[38.505909,-3.97E-05],[38.509352,-3.6607E-05],[38.512795,-3.5576E-05],[38.516237,-3.9185E-05],[38.51968,-3.5576E-05],[38.523123,-3.6091E-05],[38.526565,-3.5576E-05],[38.530008,-3.506E-05],[38.533451,-3.7638E-05],[38.536893,-3.7122E-05],[38.540336,-3.7122E-05],[38.543779,-3.0935E-05],[38.547221,-2.9389E-05],[38.550664,-3.1967E-05],[38.554107,-3.6091E-05],[38.557549,-4.1247E-05],[38.560992,-3.6091E-05],[38.564435,-3.506E-05],[38.567877,-3.6607E-05],[38.57132,-3.506E-05],[38.574763,-3.7122E-05],[38.578205,-3.6607E-05],[38.581648,-3.6091E-05],[38.585091,-3.7638E-05],[38.588533,-3.9185E-05],[38.591976,-4.1763E-05],[38.595419,-4.1763E-05],[38.598861,-4.0216E-05],[38.602304,-3.6607E-05],[38.605747,-3.8154E-05],[38.609189,-3.7122E-05],[38.612632,-3.5576E-05],[38.616075,-4.1763E-05],[38.619517,-4.1247E-05],[38.62296,-3.9185E-05],[38.626403,-3.97E-05],[38.629845,-3.506E-05],[38.633288,-3.6091E-05],[38.636731,-3.8669E-05],[38.640173,-3.7122E-05],[38.643616,-3.6607E-05],[38.647059,-3.6091E-05],[38.650501,-3.2482E-05],[38.653944,-3.2998E-05]]}
-{"quant":[38.8057,0.22241],"mems":[[38.709027,-3.7122E-05],[38.712469,-3.3513E-05],[38.715912,-3.2482E-05],[38.719355,-3.7122E-05],[38.722797,-3.97E-05],[38.72624,-3.7638E-05],[38.729683,-3.5576E-05],[38.733125,-3.7638E-05],[38.736568,-3.7638E-05],[38.740011,-3.8669E-05],[38.743453,-3.6091E-05],[38.746896,-3.506E-05],[38.750339,-3.506E-05],[38.753781,-3.7638E-05],[38.757224,-3.9185E-05],[38.760667,-3.8669E-05],[38.764109,-4.0732E-05],[38.767552,-3.97E-05],[38.770995,-3.8669E-05],[38.774437,-3.6607E-05],[38.77788,-3.7122E-05],[38.781323,-3.97E-05],[38.784765,-3.97E-05],[38.788208,-3.7122E-05],[38.791651,-3.2482E-05],[38.795093,-3.3513E-05],[38.798536,-3.5576E-05],[38.801979,-3.6091E-05],[38.805421,-3.8154E-05],[38.808864,-3.1967E-05],[38.812307,-3.2998E-05],[38.815749,-3.8154E-05],[38.819192,-3.4029E-05],[38.822635,-3.506E-05],[38.826077,-3.7122E-05],[38.82952,-3.4029E-05],[38.832963,-3.506E-05],[38.836405,-3.7122E-05],[38.839848,-3.7638E-05],[38.843291,-3.9185E-05],[38.846733,-3.6091E-05],[38.850176,-3.3513E-05],[38.853619,-3.7638E-05],[38.857061,-3.506E-05],[38.860504,-3.2998E-05],[38.863947,-3.5576E-05],[38.867389,-3.7122E-05],[38.870832,-3.6607E-05],[38.874275,-3.4544E-05],[38.877717,-4.0732E-05],[38.88116,-4.3309E-05],[38.884603,-3.9185E-05],[38.888045,-4.0216E-05],[38.891488,-3.506E-05],[38.894931,-3.3513E-05],[38.898373,-3.4029E-05],[38.901816,-3.4029E-05],[38.905259,-4.1763E-05],[38.908701,-3.9185E-05],[38.912144,-3.6607E-05],[38.915587,-3.7122E-05],[38.919029,-3.8669E-05],[38.922472,-4.1763E-05],[38.925915,-4.0732E-05],[38.929357,-3.8669E-05],[38.9328,-3.2998E-05],[38.936243,-3.4544E-05],[38.939685,-3.6607E-05],[38.943128,-3.8669E-05],[38.946571,-4.1763E-05],[38.950013,-3.4544E-05],[38.953456,-3.1967E-05],[38.956899,-3.506E-05],[38.960341,-3.6091E-05],[38.963784,-3.6607E-05],[38.967227,-3.5576E-05],[38.970669,-3.2482E-05],[38.974112,-3.3513E-05],[38.977555,-3.5576E-05],[38.980997,-3.2998E-05],[38.98444,-3.4544E-05],[38.987883,-3.7638E-05],[38.991325,-3.506E-05],[38.994768,-3.6607E-05],[38.998211,-4.2278E-05],[39.001653,-3.506E-05],[39.005096,-3.4029E-05]]}
-{"quant":[39.158,0.19306],"mems":[[39.060179,-3.7638E-05],[39.063621,-3.7122E-05],[39.067064,-3.7122E-05],[39.070507,-4.2794E-05],[39.073949,-4.2794E-05],[39.077392,-4.0732E-05],[39.080835,-3.5576E-05],[39.084277,-3.4544E-05],[39.08772,-3.7638E-05],[39.091163,-3.6091E-05],[39.094605,-3.7122E-05],[39.098048,-4.1247E-05],[39.101491,-4.0732E-05],[39.104933,-4.0216E-05],[39.108376,-3.7638E-05],[39.111819,-3.6091E-05],[39.115261,-3.7122E-05],[39.118704,-3.506E-05],[39.122147,-3.506E-05],[39.125589,-3.5576E-05],[39.129032,-3.4544E-05],[39.132475,-3.3513E-05],[39.135917,-3.7638E-05],[39.13936,-4.2278E-05],[39.142803,-4.3825E-05],[39.146245,-3.8669E-05],[39.149688,-3.1451E-05],[39.153131,-4.0216E-05],[39.156573,-4.1763E-05],[39.160016,-3.6091E-05],[39.163459,-4.0732E-05],[39.166901,-3.97E-05],[39.170344,-3.9185E-05],[39.173787,-3.6607E-05],[39.177229,-3.6091E-05],[39.180672,-4.1763E-05],[39.184115,-3.8154E-05],[39.187557,-3.1967E-05],[39.191,-3.0935E-05],[39.194507,-3.506E-05],[39.198013,-3.506E-05],[39.20152,-3.6091E-05],[39.205027,-3.8154E-05],[39.208533,-3.506E-05],[39.21204,-3.3513E-05],[39.215547,-3.2482E-05],[39.219053,-3.7122E-05],[39.22256,-4.0216E-05],[39.226067,-3.5576E-05],[39.229573,-3.8154E-05],[39.23308,-3.3513E-05],[39.236587,-3.4029E-05],[39.240093,-4.0216E-05],[39.2436,-3.2998E-05],[39.247107,-3.7638E-05],[39.250613,-3.97E-05],[39.25412,-3.506E-05],[39.257627,-3.7638E-05],[39.261133,-3.5576E-05],[39.26464,-3.7122E-05],[39.268147,-4.0732E-05],[39.271653,-3.8154E-05],[39.27516,-3.8669E-05],[39.278667,-3.8669E-05],[39.282173,-3.4544E-05],[39.28568,-3.7122E-05],[39.289187,-4.0216E-05],[39.292693,-3.5576E-05],[39.2962,-3.4029E-05],[39.299707,-3.2998E-05],[39.303213,-3.6091E-05],[39.30672,-4.0216E-05],[39.310227,-3.6091E-05],[39.313733,-3.2998E-05],[39.31724,-3.1967E-05],[39.320747,-4.0216E-05],[39.324253,-4.1763E-05],[39.32776,-3.4544E-05],[39.331267,-3.4029E-05],[39.334773,-3.2998E-05],[39.33828,-3.7638E-05],[39.341787,-3.9185E-05],[39.345293,-4.1247E-05],[39.3488,-3.97E-05],[39.352307,-3.042E-05],[39.355813,-3.4544E-05],[39.35932,-3.8154E-05]]}
-{"quant":[39.5459,0.16109],"mems":[[39.446987,-4.3309E-05],[39.450493,-4.0216E-05],[39.454,-3.9185E-05],[39.457507,-4.0216E-05],[39.461013,-4.3825E-05],[39.46452,-3.6091E-05],[39.468027,-3.1967E-05],[39.471533,-3.6607E-05],[39.47504,-3.042E-05],[39.478547,-3.3513E-05],[39.482053,-4.0216E-05],[39.48556,-4.0216E-05],[39.489067,-3.8669E-05],[39.492573,-3.1451E-05],[39.49608,-2.9904E-05],[39.499587,-3.7122E-05],[39.503093,-3.9185E-05],[39.5066,-3.8154E-05],[39.510107,-4.1247E-05],[39.513613,-3.4544E-05],[39.51712,-3.1967E-05],[39.520627,-3.7638E-05],[39.524133,-3.5576E-05],[39.52764,-3.6607E-05],[39.531147,-3.5576E-05],[39.534653,-3.6091E-05],[39.53816,-3.8154E-05],[39.541667,-3.7638E-05],[39.545173,-4.1247E-05],[39.54868,-3.8154E-05],[39.552187,-3.506E-05],[39.555693,-3.4029E-05],[39.5592,-3.4544E-05],[39.562707,-3.6607E-05],[39.566213,-3.5576E-05],[39.56972,-3.8154E-05],[39.573227,-3.9185E-05],[39.576733,-3.6091E-05],[39.58024,-3.6091E-05],[39.583747,-3.97E-05],[39.587253,-3.6607E-05],[39.59076,-3.1967E-05],[39.594267,-3.2482E-05],[39.597773,-3.4544E-05],[39.60128,-3.7122E-05],[39.604787,-3.8154E-05],[39.608293,-3.7638E-05],[39.6118,-3.6607E-05],[39.615307,-3.5576E-05],[39.618813,-3.4544E-05],[39.62232,-4.2794E-05],[39.625827,-4.3309E-05],[39.629333,-3.506E-05],[39.63284,-3.5576E-05],[39.636347,-3.1967E-05],[39.639853,-2.7326E-05],[39.64336,-3.7122E-05],[39.646867,-4.0732E-05],[39.650373,-3.6607E-05],[39.65388,-3.97E-05],[39.657387,-3.4544E-05],[39.660893,-3.506E-05],[39.6644,-4.0216E-05],[39.667907,-3.6091E-05],[39.671413,-4.0216E-05],[39.67492,-3.97E-05],[39.678427,-3.6607E-05],[39.681933,-4.0732E-05],[39.68544,-4.1247E-05],[39.688947,-3.7638E-05],[39.692453,-3.9185E-05],[39.69596,-3.7122E-05],[39.699467,-3.4544E-05],[39.702973,-3.7122E-05],[39.70648,-3.506E-05],[39.709987,-3.8154E-05],[39.713493,-3.7122E-05],[39.717,-3.2998E-05],[39.720507,-3.5576E-05],[39.724013,-3.8154E-05],[39.72752,-4.1763E-05],[39.731027,-3.9185E-05],[39.734533,-3.506E-05],[39.73804,-3.2998E-05],[39.741547,-3.1967E-05],[39.745053,-3.506E-05]]}
-{"quant":[39.9192,0.12165],"mems":[[39.8222,-3.6091E-05],[39.825707,-3.8669E-05],[39.829213,-3.8154E-05],[39.83272,-4.2794E-05],[39.836227,-3.8669E-05],[39.839733,-3.4544E-05],[39.84324,-3.4029E-05],[39.846747,-3.8669E-05],[39.850253,-4.1247E-05],[39.85376,-3.2998E-05],[39.857267,-3.8669E-05],[39.860773,-3.5576E-05],[39.86428,-3.2998E-05],[39.867787,-4.0732E-05],[39.871293,-4.0732E-05],[39.8748,-4.0732E-05],[39.878307,-3.6607E-05],[39.881813,-3.7638E-05],[39.88532,-3.7638E-05],[39.888827,-3.4544E-05],[39.892333,-3.8154E-05],[39.89584,-3.7638E-05],[39.899347,-4.0732E-05],[39.902853,-3.8669E-05],[39.90636,-3.7122E-05],[39.909867,-4.1247E-05],[39.913373,-3.506E-05],[39.91688,-3.7638E-05],[39.920387,-3.6091E-05],[39.923893,-3.4544E-05],[39.9274,-4.0732E-05],[39.930907,-3.5576E-05],[39.934413,-3.4029E-05],[39.93792,-3.4544E-05],[39.941427,-3.3513E-05],[39.944933,-3.4029E-05],[39.94844,-3.4029E-05],[39.951947,-3.7122E-05],[39.955453,-3.6091E-05],[39.95896,-3.506E-05],[39.962467,-3.7122E-05],[39.965973,-3.7638E-05],[39.96948,-3.8669E-05],[39.972987,-3.8669E-05],[39.976493,-3.6091E-05],[39.98,-3.8669E-05],[39.983507,-3.7122E-05],[39.987013,-3.4029E-05],[39.99052,-3.7638E-05],[39.994027,-3.5576E-05],[39.997533,-3.97E-05],[40.00104,-3.8154E-05],[40.004547,-3.4544E-05],[40.008053,-3.8154E-05],[40.01156,-3.8154E-05],[40.015067,-3.7638E-05],[40.018573,-3.5576E-05],[40.02208,-3.7122E-05],[40.025587,-3.7122E-05],[40.029093,-3.8154E-05],[40.0326,-3.97E-05],[40.036107,-4.0216E-05],[40.039613,-3.97E-05],[40.04312,-3.6091E-05],[40.046627,-3.6607E-05],[40.050133,-3.7122E-05],[40.05364,-3.97E-05],[40.057147,-4.3309E-05],[40.060653,-4.0216E-05],[40.06416,-3.8669E-05],[40.067667,-3.6091E-05],[40.071173,-3.7122E-05],[40.07468,-4.2278E-05],[40.078187,-3.506E-05],[40.081693,-3.3513E-05],[40.0852,-3.3513E-05],[40.088707,-3.506E-05],[40.092213,-4.1247E-05],[40.09572,-3.6091E-05],[40.099227,-3.6091E-05],[40.102733,-3.6607E-05],[40.10624,-3.6091E-05],[40.109747,-3.3513E-05],[40.113253,-3.3513E-05],[40.11676,-3.7638E-05]]}
-{"quant":[40.2859,0.0741],"mems":[[40.186893,-3.6607E-05],[40.1904,-3.6091E-05],[40.193907,-3.6091E-05],[40.197413,-3.8669E-05],[40.20092,-3.6091E-05],[40.204427,-3.97E-05],[40.207933,-3.5576E-05],[40.21144,-3.2482E-05],[40.214947,-3.8669E-05],[40.218453,-3.6607E-05],[40.22196,-3.3513E-05],[40.225467,-3.8154E-05],[40.228973,-3.506E-05],[40.23248,-3.2482E-05],[40.235987,-3.8669E-05],[40.239493,-3.6607E-05],[40.243,-3.6091E-05],[40.246507,-3.6091E-05],[40.250013,-3.1967E-05],[40.25352,-3.3513E-05],[40.257027,-4.0216E-05],[40.260533,-4.4856E-05],[40.26404,-3.4029E-05],[40.267547,-3.4544E-05],[40.271053,-3.7638E-05],[40.27456,-3.6607E-05],[40.278067,-4.0732E-05],[40.281573,-3.4544E-05],[40.28508,-3.4029E-05],[40.288587,-3.4544E-05],[40.292093,-3.4544E-05],[40.2956,-3.7638E-05],[40.299107,-3.8154E-05],[40.302613,-4.0732E-05],[40.30612,-3.2482E-05],[40.309627,-3.1967E-05],[40.313133,-3.4544E-05],[40.31664,-3.8154E-05],[40.320147,-4.1763E-05],[40.323653,-3.4544E-05],[40.32716,-3.6091E-05],[40.330667,-3.6607E-05],[40.334173,-3.2998E-05],[40.33768,-4.0216E-05],[40.341187,-4.1247E-05],[40.344693,-3.4544E-05],[40.3482,-3.1967E-05],[40.351707,-3.4029E-05],[40.355213,-3.5576E-05],[40.35872,-3.6607E-05],[40.362227,-3.7638E-05],[40.365733,-3.5576E-05],[40.36924,-3.506E-05],[40.372747,-3.2482E-05],[40.376253,-3.1967E-05],[40.37976,-3.5576E-05],[40.383267,-3.4544E-05],[40.386773,-3.8669E-05],[40.39028,-3.8154E-05],[40.393787,-3.6091E-05],[40.397293,-4.0216E-05],[40.4008,-3.8669E-05],[40.404307,-3.6607E-05],[40.407813,-3.7122E-05],[40.41132,-3.7122E-05],[40.414827,-3.5576E-05],[40.418333,-3.9185E-05],[40.42184,-3.97E-05],[40.425347,-3.506E-05],[40.428853,-3.6091E-05],[40.43236,-3.506E-05],[40.435867,-3.506E-05],[40.439373,-3.5576E-05],[40.44288,-3.6091E-05],[40.446387,-3.9185E-05],[40.449893,-3.9185E-05],[40.4534,-3.7638E-05],[40.456907,-3.5576E-05],[40.460413,-3.8154E-05],[40.46392,-3.9185E-05],[40.467427,-3.5576E-05],[40.470933,-3.5576E-05],[40.47444,-3.042E-05],[40.477947,-3.3513E-05],[40.481453,-4.6919E-05],[40.48496,-4.3309E-05]]}
-{"quant":[40.6583,0.033933],"mems":[[40.5586,-3.6091E-05],[40.562107,-3.506E-05],[40.565613,-3.6091E-05],[40.56912,-3.8669E-05],[40.572627,-3.5576E-05],[40.576133,-3.6607E-05],[40.57964,-3.5576E-05],[40.583147,-3.8154E-05],[40.586653,-3.97E-05],[40.59016,-3.6091E-05],[40.593667,-3.506E-05],[40.597173,-3.8154E-05],[40.60068,-3.97E-05],[40.604187,-3.7638E-05],[40.607693,-3.7122E-05],[40.6112,-3.1967E-05],[40.614707,-3.4029E-05],[40.618213,-3.9185E-05],[40.62172,-3.5576E-05],[40.625227,-3.7122E-05],[40.628733,-3.8669E-05],[40.63224,-3.8154E-05],[40.635747,-3.97E-05],[40.639253,-3.5576E-05],[40.64276,-3.6607E-05],[40.646267,-3.8154E-05],[40.649773,-3.5576E-05],[40.65328,-3.6091E-05],[40.656787,-3.4544E-05],[40.660293,-3.4544E-05],[40.6638,-3.5576E-05],[40.667307,-3.506E-05],[40.670813,-3.4544E-05],[40.67432,-3.3513E-05],[40.677827,-3.506E-05],[40.681333,-3.8154E-05],[40.68484,-4.0732E-05],[40.688347,-3.8154E-05],[40.691853,-3.2998E-05],[40.69536,-3.5576E-05],[40.698867,-3.8154E-05],[40.702373,-3.6607E-05],[40.70588,-3.9185E-05],[40.709387,-3.6091E-05],[40.712893,-3.5576E-05],[40.7164,-3.9185E-05],[40.719907,-3.8669E-05],[40.723413,-4.0732E-05],[40.72692,-3.9185E-05],[40.730427,-3.7122E-05],[40.733933,-3.9185E-05],[40.73744,-3.7122E-05],[40.740947,-3.97E-05],[40.744453,-3.97E-05],[40.74796,-4.0216E-05],[40.751467,-4.2794E-05],[40.754973,-4.1763E-05],[40.75848,-4.0732E-05],[40.761987,-3.4544E-05],[40.765493,-3.8669E-05],[40.769,-3.8669E-05],[40.772507,-3.2998E-05],[40.776013,-3.6607E-05],[40.77952,-3.4029E-05],[40.783027,-3.506E-05],[40.786533,-3.7638E-05],[40.79004,-3.9185E-05],[40.793547,-4.0216E-05],[40.797053,-3.4544E-05],[40.80056,-3.7122E-05],[40.804067,-3.97E-05],[40.807573,-3.7122E-05],[40.81108,-3.6091E-05],[40.814587,-3.7638E-05],[40.818093,-3.6607E-05],[40.8216,-3.6607E-05],[40.825107,-3.8669E-05],[40.828613,-3.7122E-05],[40.83212,-3.506E-05],[40.835627,-3.4544E-05],[40.839133,-3.2998E-05],[40.84264,-3.2998E-05],[40.846147,-3.6091E-05],[40.849653,-3.6607E-05],[40.85316,-3.9185E-05],[40.856667,-3.7638E-05]]}
-{"quant":[41.0501,0.001807],"mems":[[40.951347,-4.2278E-05],[40.954853,-4.1247E-05],[40.95836,-3.7638E-05],[40.961867,-3.506E-05],[40.965373,-3.506E-05],[40.96888,-4.0216E-05],[40.972387,-4.4341E-05],[40.975893,-3.97E-05],[40.9794,-3.6607E-05],[40.982907,-3.506E-05],[40.986413,-3.8669E-05],[40.98992,-3.8669E-05],[40.993427,-3.5576E-05],[40.996933,-3.9185E-05],[41.00044,-3.6091E-05],[41.003947,-3.4029E-05],[41.007453,-3.8154E-05],[41.01096,-3.8154E-05],[41.014467,-3.6607E-05],[41.017973,-3.7638E-05],[41.02148,-3.4029E-05],[41.024987,-3.2482E-05],[41.028493,-4.0216E-05],[41.032,-3.8669E-05],[41.035507,-3.4544E-05],[41.039013,-3.6607E-05],[41.04252,-3.4544E-05],[41.046027,-3.6091E-05],[41.049533,-3.6091E-05],[41.05304,-3.4544E-05],[41.056547,-3.6091E-05],[41.060053,-3.4544E-05],[41.06356,-3.7638E-05],[41.067067,-3.506E-05],[41.070573,-3.3513E-05],[41.07408,-3.7638E-05],[41.077587,-3.5576E-05],[41.081093,-3.1967E-05],[41.0846,-3.0935E-05],[41.088107,-3.5576E-05],[41.091613,-3.6607E-05],[41.09512,-3.9185E-05],[41.098627,-4.0732E-05],[41.102133,-3.4029E-05],[41.10564,-3.506E-05],[41.109147,-3.6091E-05],[41.112653,-3.7122E-05],[41.11616,-3.7122E-05],[41.119667,-3.7638E-05],[41.123173,-3.8669E-05],[41.12668,-3.7122E-05],[41.130187,-3.8154E-05],[41.133693,-3.8154E-05],[41.1372,-3.2998E-05],[41.140707,-3.2482E-05],[41.144213,-3.506E-05],[41.14772,-3.2998E-05],[41.151227,-3.506E-05],[41.154733,-3.7122E-05],[41.15824,-3.5576E-05],[41.161747,-3.7638E-05],[41.165253,-3.8669E-05],[41.16876,-4.0732E-05],[41.172267,-3.8669E-05],[41.175773,-3.6607E-05],[41.17928,-3.97E-05],[41.182787,-3.506E-05],[41.186293,-3.1967E-05],[41.1898,-3.5576E-05],[41.193307,-3.6607E-05],[41.196813,-3.7638E-05],[41.20032,-3.8154E-05],[41.203827,-3.4544E-05],[41.207333,-3.5576E-05],[41.21084,-3.6607E-05],[41.214347,-3.7122E-05],[41.217853,-3.8669E-05],[41.22136,-3.5576E-05],[41.224867,-3.4544E-05],[41.228373,-3.3513E-05],[41.23188,-3.7638E-05],[41.235387,-3.8669E-05],[41.238893,-3.506E-05],[41.2424,-3.97E-05],[41.245907,-3.6091E-05],[41.249413,-3.5576E-05]]}
-{"quant":[41.4191,-0.034499],"mems":[[41.319547,-3.7638E-05],[41.323053,-3.4544E-05],[41.32656,-3.2482E-05],[41.330067,-3.7122E-05],[41.333573,-3.7638E-05],[41.33708,-3.5576E-05],[41.340587,-4.0216E-05],[41.344093,-3.5576E-05],[41.3476,-3.1967E-05],[41.351107,-3.506E-05],[41.354613,-3.506E-05],[41.35812,-4.0732E-05],[41.361627,-4.1763E-05],[41.365133,-3.7122E-05],[41.36864,-3.7122E-05],[41.372147,-3.7122E-05],[41.375653,-4.1763E-05],[41.37916,-4.0216E-05],[41.382667,-3.2482E-05],[41.386173,-3.4544E-05],[41.38968,-3.6091E-05],[41.393187,-3.6607E-05],[41.396693,-3.6607E-05],[41.4002,-3.7122E-05],[41.403707,-3.97E-05],[41.407213,-3.8154E-05],[41.41072,-3.6091E-05],[41.414227,-3.506E-05],[41.417733,-3.7122E-05],[41.42124,-4.1247E-05],[41.424747,-4.0216E-05],[41.428253,-3.3513E-05],[41.43176,-3.2482E-05],[41.435267,-3.5576E-05],[41.438773,-3.7638E-05],[41.44228,-3.6607E-05],[41.445787,-3.506E-05],[41.449293,-3.97E-05],[41.4528,-3.8669E-05],[41.456307,-3.6607E-05],[41.459813,-4.0216E-05],[41.46332,-3.8154E-05],[41.466827,-3.506E-05],[41.470333,-3.8669E-05],[41.47384,-4.0732E-05],[41.477347,-3.8669E-05],[41.480853,-3.8669E-05],[41.48436,-3.8154E-05],[41.487867,-3.6091E-05],[41.491373,-3.3513E-05],[41.49488,-3.7638E-05],[41.498387,-4.1247E-05],[41.501893,-3.506E-05],[41.5054,-3.3513E-05],[41.508907,-3.3513E-05],[41.512413,-3.6607E-05],[41.51592,-4.1247E-05],[41.519427,-3.6091E-05],[41.522933,-3.4029E-05],[41.52644,-3.7122E-05],[41.529947,-3.8669E-05],[41.533453,-3.4544E-05],[41.53696,-3.3513E-05],[41.540467,-4.1247E-05],[41.543973,-3.8669E-05],[41.54748,-3.7638E-05],[41.550987,-3.506E-05],[41.554493,-2.9389E-05],[41.558,-3.4029E-05],[41.561507,-3.9185E-05],[41.565013,-3.7638E-05],[41.56852,-3.5576E-05],[41.572027,-3.5576E-05],[41.575533,-3.5576E-05],[41.57904,-4.0216E-05],[41.582547,-4.0732E-05],[41.586053,-3.5576E-05],[41.58956,-3.3513E-05],[41.593067,-3.6607E-05],[41.596573,-3.97E-05],[41.60008,-3.7638E-05],[41.603587,-3.9185E-05],[41.607093,-3.8154E-05],[41.6106,-3.506E-05],[41.614107,-3.506E-05],[41.617613,-3.6091E-05]]}
-{"quant":[41.8176,-0.067647],"mems":[[41.796453,-3.6607E-05],[41.79996,-3.6091E-05],[41.803467,-3.97E-05],[41.806973,-3.9185E-05],[41.81048,-3.7638E-05],[41.813987,-3.8669E-05],[41.817493,-3.6091E-05],[41.821,-3.2998E-05],[41.824364,-3.6607E-05],[41.827728,-3.9185E-05],[41.831092,-3.5576E-05],[41.834456,-3.1967E-05],[41.83782,-3.3513E-05],[41.841184,-3.506E-05],[41.844548,-3.5576E-05],[41.847912,-3.4544E-05],[41.851276,-3.1451E-05],[41.85464,-3.3513E-05],[41.858004,-3.042E-05],[41.861368,-2.9904E-05],[41.864732,-3.5576E-05],[41.868096,-3.8154E-05],[41.87146,-3.5576E-05],[41.874824,-3.3513E-05],[41.878188,-3.506E-05],[41.881552,-3.6607E-05],[41.884916,-3.4029E-05],[41.88828,-3.1967E-05],[41.891644,-3.8669E-05],[41.895008,-3.97E-05],[41.898372,-3.4544E-05],[41.901736,-3.6091E-05],[41.9051,-3.506E-05],[41.908464,-3.3513E-05],[41.911828,-3.7122E-05],[41.915192,-3.6607E-05],[41.918556,-3.7122E-05],[41.92192,-3.97E-05],[41.925284,-3.6607E-05],[41.928648,-3.6607E-05],[41.932012,-3.1967E-05],[41.935376,-3.1451E-05],[41.93874,-3.6607E-05],[41.942104,-3.1451E-05],[41.945468,-3.4544E-05],[41.948832,-3.5576E-05],[41.952196,-3.4029E-05],[41.95556,-3.8669E-05],[41.958924,-3.506E-05],[41.962288,-3.4544E-05],[41.965652,-3.4544E-05],[41.969016,-3.506E-05],[41.97238,-3.8669E-05],[41.975744,-3.8669E-05],[41.979108,-3.5576E-05],[41.982472,-3.1967E-05],[41.985836,-3.6607E-05],[41.9892,-4.1247E-05],[41.992564,-3.8154E-05],[41.995928,-3.7638E-05],[41.999292,-3.8669E-05],[42.002656,-3.5576E-05],[42.00602,-3.4544E-05],[42.009384,-3.0935E-05],[42.012748,-2.7842E-05],[42.016112,-3.1451E-05],[42.019476,-3.4029E-05],[42.02284,-3.6607E-05],[42.026204,-3.8669E-05],[42.029568,-3.7122E-05],[42.032932,-3.6607E-05],[42.036296,-4.1247E-05],[42.03966,-4.3309E-05],[42.043024,-3.8669E-05],[42.046388,-3.4029E-05],[42.049752,-3.8669E-05],[42.053116,-4.0216E-05],[42.05648,-3.6091E-05],[42.059844,-3.97E-05],[42.063208,-4.0732E-05],[42.066572,-3.6091E-05],[42.069936,-3.6607E-05],[42.0733,-3.7122E-05],[42.076664,-3.6091E-05],[42.080028,-3.5576E-05],[42.083392,-3.9185E-05],[42.086756,-3.6091E-05]]}
-{"quant":[42.2064,-0.09422],"mems":[[42.10694,-3.4029E-05],[42.110304,-3.5576E-05],[42.113668,-3.5576E-05],[42.117032,-3.8669E-05],[42.120396,-3.8669E-05],[42.12376,-3.4029E-05],[42.127124,-3.4029E-05],[42.130488,-3.2998E-05],[42.133852,-3.5576E-05],[42.137216,-3.8669E-05],[42.14058,-3.7638E-05],[42.143944,-3.9185E-05],[42.147308,-3.4544E-05],[42.150672,-3.5576E-05],[42.154036,-3.1967E-05],[42.1574,-3.4029E-05],[42.160764,-3.6607E-05],[42.164128,-3.3513E-05],[42.167492,-4.4856E-05],[42.170856,-4.3825E-05],[42.17422,-3.8669E-05],[42.177584,-3.7122E-05],[42.180948,-3.5576E-05],[42.184312,-3.506E-05],[42.187676,-3.4544E-05],[42.19104,-3.7638E-05],[42.194404,-3.8154E-05],[42.197768,-3.9185E-05],[42.201132,-3.8154E-05],[42.204496,-3.7122E-05],[42.20786,-3.97E-05],[42.211224,-3.7638E-05],[42.214588,-3.4544E-05],[42.217952,-3.7638E-05],[42.221316,-3.8154E-05],[42.22468,-3.4544E-05],[42.228044,-3.4029E-05],[42.231408,-3.7122E-05],[42.234772,-4.0216E-05],[42.238136,-3.9185E-05],[42.2415,-3.5576E-05],[42.244864,-3.0935E-05],[42.248228,-3.5576E-05],[42.251592,-4.0216E-05],[42.254956,-3.8669E-05],[42.25832,-3.9185E-05],[42.261684,-3.6607E-05],[42.265048,-3.8154E-05],[42.268412,-3.8154E-05],[42.271776,-3.6091E-05],[42.27514,-4.0216E-05],[42.278504,-4.2794E-05],[42.281868,-3.6091E-05],[42.285232,-3.0935E-05],[42.288596,-3.7638E-05],[42.29196,-4.0732E-05],[42.295324,-3.9185E-05],[42.298688,-3.8154E-05],[42.302052,-3.3513E-05],[42.305416,-3.4544E-05],[42.30878,-3.9185E-05],[42.312144,-3.97E-05],[42.315508,-4.2794E-05],[42.318872,-3.6091E-05],[42.322236,-3.2482E-05],[42.3256,-4.1247E-05],[42.328964,-4.0732E-05],[42.332328,-3.8669E-05],[42.335692,-3.6091E-05],[42.339056,-3.4544E-05],[42.34242,-3.4029E-05],[42.345784,-3.2482E-05],[42.349148,-3.1967E-05],[42.352512,-3.9185E-05],[42.355876,-3.97E-05],[42.35924,-3.3513E-05],[42.362604,-3.5576E-05],[42.365968,-3.6091E-05],[42.369332,-3.8669E-05],[42.372696,-3.5576E-05],[42.37606,-3.3513E-05],[42.379424,-3.4029E-05],[42.382788,-3.4029E-05],[42.386152,-3.7638E-05],[42.389516,-3.5576E-05],[42.39288,-3.97E-05],[42.396244,-4.2794E-05],[42.399608,-3.6607E-05],[42.402972,-3.6091E-05],[42.406336,-3.8154E-05]]}
-{"quant":[42.5604,-0.1293],"mems":[[42.463524,-3.8154E-05],[42.466888,-3.9185E-05],[42.470252,-3.4544E-05],[42.473616,-3.9185E-05],[42.47698,-3.4544E-05],[42.480344,-3.3513E-05],[42.483708,-3.2998E-05],[42.487072,-3.5576E-05],[42.490436,-3.8154E-05],[42.4938,-3.5576E-05],[42.497164,-4.1247E-05],[42.500528,-3.506E-05],[42.503892,-3.506E-05],[42.507256,-4.3309E-05],[42.51062,-4.0216E-05],[42.513984,-3.6091E-05],[42.517348,-3.6607E-05],[42.520712,-3.97E-05],[42.524076,-3.7638E-05],[42.52744,-3.506E-05],[42.530804,-3.4029E-05],[42.534168,-3.2998E-05],[42.537532,-3.2482E-05],[42.540896,-3.4029E-05],[42.54426,-4.2278E-05],[42.547624,-4.3309E-05],[42.550988,-3.7122E-05],[42.554352,-3.4029E-05],[42.557716,-3.4029E-05],[42.56108,-3.506E-05],[42.564444,-3.7638E-05],[42.567808,-3.8669E-05],[42.571172,-3.8669E-05],[42.574536,-3.7122E-05],[42.5779,-3.3513E-05],[42.581264,-3.6607E-05],[42.584628,-3.97E-05],[42.587992,-3.7638E-05],[42.591356,-3.7638E-05],[42.59472,-3.5576E-05],[42.598084,-3.4029E-05],[42.601448,-3.9185E-05],[42.604812,-3.97E-05],[42.608176,-3.7638E-05],[42.61154,-3.9185E-05],[42.614904,-3.506E-05],[42.618268,-3.1451E-05],[42.621632,-3.4544E-05],[42.624996,-3.6607E-05],[42.62836,-3.9185E-05],[42.631724,-3.8669E-05],[42.635088,-3.3513E-05],[42.638452,-3.4544E-05],[42.641816,-3.7638E-05],[42.64518,-3.7122E-05],[42.648544,-3.8669E-05],[42.651908,-4.1763E-05],[42.655272,-3.7638E-05],[42.658636,-3.4029E-05],[42.662,-3.6607E-05],[42.665364,-3.7122E-05],[42.668728,-3.8154E-05],[42.672092,-3.5576E-05],[42.675456,-3.2998E-05],[42.67882,-3.4029E-05],[42.682184,-3.506E-05],[42.685548,-3.8154E-05],[42.688912,-3.7638E-05],[42.692276,-3.2998E-05],[42.69564,-3.506E-05],[42.699004,-3.2998E-05],[42.702368,-2.8357E-05],[42.705732,-3.6607E-05],[42.709096,-3.506E-05],[42.71246,-3.1451E-05],[42.715824,-3.9185E-05],[42.719188,-3.6607E-05],[42.722552,-3.6607E-05],[42.725916,-3.8669E-05],[42.72928,-3.506E-05],[42.732644,-3.3513E-05],[42.736008,-3.6091E-05],[42.739372,-4.2794E-05],[42.742736,-4.1763E-05],[42.7461,-3.97E-05],[42.749464,-3.7638E-05],[42.752828,-3.1451E-05],[42.756192,-3.3513E-05],[42.759556,-3.5576E-05]]}
-{"quant":[42.9756,-0.16851],"mems":[[42.877296,-3.4029E-05],[42.88066,-3.7638E-05],[42.884024,-4.0216E-05],[42.887388,-4.1247E-05],[42.890752,-3.6091E-05],[42.894116,-3.7122E-05],[42.89748,-3.7122E-05],[42.900844,-3.7638E-05],[42.904208,-4.2278E-05],[42.907572,-3.6091E-05],[42.910936,-3.4544E-05],[42.9143,-3.6091E-05],[42.917664,-4.1763E-05],[42.921028,-4.2794E-05],[42.924392,-3.8669E-05],[42.927756,-3.7122E-05],[42.93112,-3.7122E-05],[42.934484,-4.2794E-05],[42.937848,-4.0732E-05],[42.941212,-3.6091E-05],[42.944576,-3.6091E-05],[42.94794,-3.2998E-05],[42.951304,-2.9389E-05],[42.954668,-3.4029E-05],[42.958032,-3.7638E-05],[42.961396,-3.97E-05],[42.96476,-3.97E-05],[42.968124,-3.4544E-05],[42.971488,-3.9185E-05],[42.974852,-3.8154E-05],[42.978216,-3.8669E-05],[42.98158,-3.8669E-05],[42.984944,-3.2998E-05],[42.988308,-3.7122E-05],[42.991672,-3.6607E-05],[42.995036,-3.8669E-05],[42.9984,-4.1763E-05],[43.001764,-3.6091E-05],[43.005128,-3.506E-05],[43.008492,-3.5576E-05],[43.011856,-3.5576E-05],[43.01522,-3.4029E-05],[43.018584,-3.7638E-05],[43.021948,-3.97E-05],[43.025312,-3.4544E-05],[43.028676,-3.506E-05],[43.03204,-3.4029E-05],[43.035404,-3.8669E-05],[43.038768,-3.8154E-05],[43.042132,-3.2482E-05],[43.045496,-3.8154E-05],[43.04886,-3.6607E-05],[43.052224,-3.5576E-05],[43.055588,-3.7122E-05],[43.058952,-3.2482E-05],[43.062316,-3.506E-05],[43.06568,-3.7638E-05],[43.069044,-3.6607E-05],[43.072408,-3.97E-05],[43.075772,-4.1763E-05],[43.079136,-3.6607E-05],[43.0825,-3.506E-05],[43.085864,-3.2998E-05],[43.089228,-3.2482E-05],[43.092592,-3.6091E-05],[43.095956,-3.7122E-05],[43.09932,-3.8154E-05],[43.102684,-3.2998E-05],[43.106048,-3.2482E-05],[43.109412,-3.6091E-05],[43.112776,-3.4029E-05],[43.11614,-3.6091E-05],[43.119504,-3.5576E-05],[43.122868,-3.2998E-05],[43.126232,-3.3513E-05],[43.129596,-3.4544E-05],[43.13296,-3.7122E-05],[43.136324,-3.8669E-05],[43.139688,-3.6607E-05],[43.143052,-3.6607E-05],[43.146416,-3.6607E-05],[43.14978,-3.2998E-05],[43.153144,-3.7122E-05],[43.156508,-3.7638E-05],[43.159872,-3.6091E-05],[43.163236,-3.8154E-05],[43.1666,-3.7122E-05],[43.169964,-4.1247E-05],[43.173328,-4.0216E-05]]}
-{"quant":[43.3522,-0.20596],"mems":[[43.254064,-3.8669E-05],[43.257428,-3.5576E-05],[43.260792,-3.4029E-05],[43.264156,-3.506E-05],[43.26752,-4.0732E-05],[43.270884,-3.6091E-05],[43.274248,-3.4029E-05],[43.277612,-3.6091E-05],[43.280976,-3.2998E-05],[43.28434,-3.6091E-05],[43.287704,-3.8669E-05],[43.291068,-4.0216E-05],[43.294432,-3.6607E-05],[43.297796,-3.6607E-05],[43.30116,-3.8669E-05],[43.304524,-3.7638E-05],[43.307888,-3.8669E-05],[43.311252,-3.6091E-05],[43.314616,-3.506E-05],[43.31798,-3.4544E-05],[43.321344,-3.7638E-05],[43.324708,-4.0216E-05],[43.328072,-3.7638E-05],[43.331436,-3.7122E-05],[43.3348,-3.5576E-05],[43.338164,-3.7122E-05],[43.341528,-3.7122E-05],[43.344892,-3.8154E-05],[43.348256,-4.1763E-05],[43.35162,-4.0216E-05],[43.354984,-3.8154E-05],[43.358348,-3.506E-05],[43.361712,-3.7122E-05],[43.365076,-3.97E-05],[43.36844,-3.8154E-05],[43.371804,-3.7638E-05],[43.375168,-3.7122E-05],[43.378532,-3.4544E-05],[43.381896,-3.1451E-05],[43.38526,-3.2998E-05],[43.388624,-3.1967E-05],[43.391988,-3.506E-05],[43.395352,-3.8154E-05],[43.398716,-3.4544E-05],[43.40208,-3.4544E-05],[43.405444,-3.4544E-05],[43.408808,-3.9185E-05],[43.412172,-3.9185E-05],[43.415536,-3.1967E-05],[43.4189,-3.6607E-05],[43.422264,-3.9185E-05],[43.425628,-3.4029E-05],[43.428992,-3.7122E-05],[43.432356,-3.97E-05],[43.43572,-3.6607E-05],[43.439084,-3.9185E-05],[43.442448,-3.6607E-05],[43.445812,-3.1451E-05],[43.449176,-3.506E-05],[43.45254,-3.7122E-05],[43.455904,-3.7122E-05],[43.459268,-3.8154E-05],[43.462632,-3.7638E-05],[43.465996,-3.97E-05],[43.46936,-3.8154E-05],[43.472724,-3.6607E-05],[43.476088,-3.8669E-05],[43.479452,-3.4544E-05],[43.482816,-3.506E-05],[43.48618,-3.6091E-05],[43.489544,-3.4029E-05],[43.492908,-3.2998E-05],[43.496272,-2.7842E-05],[43.499636,-3.042E-05],[43.503,-3.5576E-05],[43.506364,-3.6091E-05],[43.509728,-4.0732E-05],[43.513092,-3.4544E-05],[43.516456,-3.2998E-05],[43.51982,-3.7638E-05],[43.523184,-3.7122E-05],[43.526548,-3.8154E-05],[43.529912,-3.4544E-05],[43.533276,-3.4544E-05],[43.53664,-3.3513E-05],[43.540004,-3.9185E-05],[43.543368,-4.4341E-05],[43.546732,-3.9185E-05],[43.550096,-3.97E-05]]}
-{"quant":[43.7028,-0.24545],"mems":[[43.60392,-3.2482E-05],[43.607284,-3.1451E-05],[43.610648,-3.5576E-05],[43.614012,-3.5576E-05],[43.617376,-3.2998E-05],[43.62074,-3.1451E-05],[43.624104,-3.4029E-05],[43.627468,-3.7122E-05],[43.630832,-3.5576E-05],[43.634196,-3.506E-05],[43.63756,-3.2482E-05],[43.640924,-3.4029E-05],[43.644288,-3.6607E-05],[43.647652,-3.4029E-05],[43.651016,-3.1967E-05],[43.65438,-3.5576E-05],[43.657744,-3.7122E-05],[43.661108,-3.4029E-05],[43.664472,-3.8669E-05],[43.667836,-4.0216E-05],[43.6712,-3.6607E-05],[43.674564,-3.6091E-05],[43.677928,-3.5576E-05],[43.681292,-3.6091E-05],[43.684656,-4.0216E-05],[43.68802,-3.8154E-05],[43.691384,-3.5576E-05],[43.694748,-3.97E-05],[43.698112,-3.6091E-05],[43.701476,-3.4029E-05],[43.70484,-3.6607E-05],[43.708204,-3.8154E-05],[43.711568,-3.8154E-05],[43.714932,-3.0935E-05],[43.718296,-3.5576E-05],[43.72166,-3.8669E-05],[43.725024,-3.6607E-05],[43.728388,-4.2278E-05],[43.731752,-3.7122E-05],[43.735116,-3.4029E-05],[43.73848,-3.6607E-05],[43.741844,-3.4544E-05],[43.745208,-3.3513E-05],[43.748572,-3.4029E-05],[43.751936,-3.5576E-05],[43.7553,-4.0732E-05],[43.758664,-4.0216E-05],[43.762028,-3.6091E-05],[43.765392,-3.9185E-05],[43.768756,-3.9185E-05],[43.77212,-3.7638E-05],[43.775484,-3.6607E-05],[43.778848,-3.4029E-05],[43.782212,-3.5576E-05],[43.785576,-3.7638E-05],[43.78894,-3.5576E-05],[43.792304,-3.2482E-05],[43.795668,-3.6091E-05],[43.799032,-3.5576E-05],[43.802396,-3.6091E-05],[43.80576,-3.8669E-05],[43.809124,-3.4029E-05],[43.812488,-3.2998E-05],[43.815852,-3.4029E-05],[43.819216,-3.5576E-05],[43.82258,-3.7122E-05],[43.825944,-3.7638E-05],[43.829308,-3.6091E-05],[43.832672,-3.4544E-05],[43.836036,-3.5576E-05],[43.8394,-3.6091E-05],[43.842764,-3.1967E-05],[43.846128,-3.2998E-05],[43.849492,-3.6091E-05],[43.852856,-3.5576E-05],[43.85622,-3.9185E-05],[43.859584,-3.6607E-05],[43.862948,-3.2998E-05],[43.866312,-3.4029E-05],[43.869676,-3.4029E-05],[43.87304,-3.2998E-05],[43.876404,-3.4029E-05],[43.879768,-3.8154E-05],[43.883132,-3.6607E-05],[43.886496,-3.4544E-05],[43.88986,-3.506E-05],[43.893224,-3.7638E-05],[43.896588,-4.0216E-05],[43.899952,-3.8154E-05]]}
-{"quant":[44.0636,-0.28803],"mems":[[43.963868,-3.5576E-05],[43.967232,-3.2998E-05],[43.970596,-3.8154E-05],[43.97396,-3.8669E-05],[43.977324,-3.6607E-05],[43.980688,-3.8154E-05],[43.984052,-3.6607E-05],[43.987416,-3.6091E-05],[43.99078,-3.8154E-05],[43.994144,-3.5576E-05],[43.997508,-3.4544E-05],[44.000872,-3.9185E-05],[44.004236,-3.7638E-05],[44.0076,-3.97E-05],[44.010964,-3.97E-05],[44.014328,-3.8669E-05],[44.017692,-3.97E-05],[44.021056,-3.6091E-05],[44.02442,-3.6607E-05],[44.027784,-3.6091E-05],[44.031148,-3.97E-05],[44.034512,-3.7122E-05],[44.037876,-3.4544E-05],[44.04124,-4.0732E-05],[44.044604,-3.506E-05],[44.047968,-3.4029E-05],[44.051332,-3.7638E-05],[44.054696,-3.6607E-05],[44.05806,-3.6607E-05],[44.061424,-3.4029E-05],[44.064788,-3.7638E-05],[44.068152,-4.0732E-05],[44.071516,-3.97E-05],[44.07488,-3.9185E-05],[44.078244,-3.506E-05],[44.081608,-3.7638E-05],[44.084972,-3.97E-05],[44.088336,-4.1247E-05],[44.0917,-4.1763E-05],[44.095064,-3.8669E-05],[44.098428,-3.7122E-05],[44.101792,-3.5576E-05],[44.105156,-3.506E-05],[44.10852,-3.6091E-05],[44.111884,-3.97E-05],[44.115248,-3.6607E-05],[44.118612,-3.4029E-05],[44.121976,-3.7122E-05],[44.12534,-3.4029E-05],[44.128704,-3.6607E-05],[44.132068,-4.1247E-05],[44.135432,-3.3513E-05],[44.138796,-3.2998E-05],[44.14216,-3.4544E-05],[44.145524,-3.5576E-05],[44.148888,-3.9185E-05],[44.152252,-3.6091E-05],[44.155616,-3.9185E-05],[44.15898,-3.6607E-05],[44.162344,-3.2998E-05],[44.165708,-3.9185E-05],[44.169072,-3.8669E-05],[44.172436,-3.7122E-05],[44.1758,-3.8669E-05],[44.179164,-4.0216E-05],[44.182528,-3.97E-05],[44.185892,-3.4544E-05],[44.189256,-3.1967E-05],[44.19262,-3.6607E-05],[44.195984,-3.4029E-05],[44.199348,-3.1967E-05],[44.202712,-3.7122E-05],[44.206076,-3.6091E-05],[44.20944,-3.4544E-05],[44.212804,-3.1451E-05],[44.216168,-3.6091E-05],[44.219532,-3.8669E-05],[44.222896,-3.4029E-05],[44.22626,-3.8154E-05],[44.229624,-3.8669E-05],[44.232988,-3.4029E-05],[44.236352,-3.6607E-05],[44.239716,-3.5576E-05],[44.24308,-3.042E-05],[44.246444,-3.7122E-05],[44.249808,-3.8669E-05],[44.253172,-3.4544E-05],[44.256536,-3.2998E-05],[44.2599,-3.5576E-05],[44.263264,-3.6607E-05]]}
-{"quant":[44.4334,-0.32538],"mems":[[44.354312,-3.7638E-05],[44.357749,-3.7122E-05],[44.361187,-4.0216E-05],[44.364624,-4.1247E-05],[44.368061,-3.7638E-05],[44.371499,-3.6607E-05],[44.374936,-3.5576E-05],[44.378373,-3.7638E-05],[44.381811,-4.1247E-05],[44.385248,-3.506E-05],[44.388685,-3.4029E-05],[44.392123,-3.7122E-05],[44.39556,-3.7122E-05],[44.398997,-4.0732E-05],[44.402435,-3.7638E-05],[44.405872,-3.6091E-05],[44.409309,-3.2998E-05],[44.412747,-3.4029E-05],[44.416184,-3.5576E-05],[44.419621,-3.4029E-05],[44.423059,-3.6091E-05],[44.426496,-3.1967E-05],[44.429933,-3.7122E-05],[44.433371,-3.7638E-05],[44.436808,-3.0935E-05],[44.440245,-3.7638E-05],[44.443683,-3.8154E-05],[44.44712,-3.506E-05],[44.450557,-3.3513E-05],[44.453995,-3.7638E-05],[44.457432,-4.2278E-05],[44.460869,-3.8669E-05],[44.464307,-4.0216E-05],[44.467744,-3.9185E-05],[44.471181,-3.3513E-05],[44.474619,-3.2482E-05],[44.478056,-3.3513E-05],[44.481493,-3.7122E-05],[44.484931,-3.6607E-05],[44.488368,-3.6091E-05],[44.491805,-3.7638E-05],[44.495243,-3.6607E-05],[44.49868,-3.6607E-05],[44.502117,-3.7122E-05],[44.505555,-3.6607E-05],[44.508992,-3.7122E-05],[44.512429,-3.506E-05],[44.515867,-3.5576E-05],[44.519304,-3.7638E-05],[44.522741,-3.8154E-05],[44.526179,-3.6607E-05],[44.529616,-3.3513E-05],[44.533053,-3.1967E-05],[44.536491,-3.0935E-05],[44.539928,-3.8669E-05],[44.543365,-3.6607E-05],[44.546803,-3.6607E-05],[44.55024,-4.0732E-05],[44.553677,-3.6607E-05],[44.557115,-3.7122E-05],[44.560552,-3.8154E-05],[44.563989,-4.2278E-05],[44.567427,-3.97E-05],[44.570864,-4.0216E-05],[44.574301,-3.6607E-05],[44.577739,-3.506E-05],[44.581176,-4.0732E-05],[44.584613,-3.4544E-05],[44.588051,-3.6607E-05],[44.591488,-3.4029E-05],[44.594925,-3.2482E-05],[44.598363,-3.8669E-05],[44.6018,-3.8154E-05],[44.605237,-3.8154E-05],[44.608675,-3.6091E-05],[44.612112,-3.4544E-05],[44.615549,-3.506E-05],[44.618987,-3.506E-05],[44.622424,-3.4544E-05],[44.625861,-3.9185E-05],[44.629299,-3.6091E-05],[44.632736,-3.8154E-05],[44.636173,-4.3825E-05],[44.639611,-3.5576E-05],[44.643048,-3.9185E-05],[44.646485,-4.1763E-05],[44.649923,-3.7638E-05],[44.65336,-3.3513E-05]]}
-{"quant":[44.8924,-0.35778],"mems":[[44.794291,-3.042E-05],[44.797728,-3.4029E-05],[44.801165,-3.5576E-05],[44.804603,-3.7122E-05],[44.80804,-3.7122E-05],[44.811477,-3.4029E-05],[44.814915,-3.7122E-05],[44.818352,-3.7122E-05],[44.821789,-3.6091E-05],[44.825227,-3.8669E-05],[44.828664,-3.7122E-05],[44.832101,-3.3513E-05],[44.835539,-3.2482E-05],[44.838976,-3.7122E-05],[44.842413,-4.1247E-05],[44.845851,-3.5576E-05],[44.849288,-2.9904E-05],[44.852725,-3.1967E-05],[44.856163,-3.3513E-05],[44.8596,-3.7122E-05],[44.863037,-3.9185E-05],[44.866475,-3.8154E-05],[44.869912,-4.0216E-05],[44.873349,-3.8154E-05],[44.876787,-3.4029E-05],[44.880224,-3.042E-05],[44.883661,-3.4544E-05],[44.887099,-3.8154E-05],[44.890536,-3.506E-05],[44.893973,-3.5576E-05],[44.897411,-3.8669E-05],[44.900848,-4.1763E-05],[44.904285,-3.8154E-05],[44.907723,-3.6091E-05],[44.91116,-3.7638E-05],[44.914597,-3.506E-05],[44.918035,-3.7122E-05],[44.921472,-3.97E-05],[44.924909,-3.8154E-05],[44.928347,-3.8154E-05],[44.931784,-3.6091E-05],[44.935221,-3.1967E-05],[44.938659,-3.6091E-05],[44.942096,-4.2278E-05],[44.945533,-3.97E-05],[44.948971,-3.8154E-05],[44.952408,-3.7122E-05],[44.955845,-3.3513E-05],[44.959283,-3.4544E-05],[44.96272,-3.6091E-05],[44.966157,-3.6091E-05],[44.969595,-3.4544E-05],[44.973032,-3.6091E-05],[44.976469,-3.7638E-05],[44.979907,-3.3513E-05],[44.983344,-3.5576E-05],[44.986781,-3.5576E-05],[44.990219,-3.1967E-05],[44.993656,-3.3513E-05],[44.997093,-3.6091E-05],[45.000531,-3.5576E-05],[45.003968,-3.7638E-05],[45.007405,-4.1763E-05],[45.010843,-3.6607E-05],[45.01428,-3.3513E-05],[45.017717,-4.0216E-05],[45.021155,-3.7122E-05],[45.024592,-3.5576E-05],[45.028029,-3.8669E-05],[45.031467,-3.9185E-05],[45.034904,-3.6091E-05],[45.038341,-3.5576E-05],[45.041779,-3.7638E-05],[45.045216,-3.4544E-05],[45.048653,-3.4029E-05],[45.052091,-3.6607E-05],[45.055528,-3.4544E-05],[45.058965,-3.506E-05],[45.062403,-3.506E-05],[45.06584,-3.4029E-05],[45.069277,-3.6607E-05],[45.072715,-3.4544E-05],[45.076152,-3.506E-05],[45.079589,-3.4544E-05],[45.083027,-3.4029E-05],[45.086464,-3.8154E-05],[45.089901,-3.2998E-05]]}
-{"quant":[45.243,-0.39576],"mems":[[45.144899,-4.1247E-05],[45.148336,-3.4544E-05],[45.151773,-3.5576E-05],[45.155211,-3.2482E-05],[45.158648,-3.4544E-05],[45.162085,-3.5576E-05],[45.165523,-3.4029E-05],[45.16896,-3.8669E-05],[45.172397,-3.9185E-05],[45.175835,-3.7122E-05],[45.179272,-3.4544E-05],[45.182709,-3.9185E-05],[45.186147,-3.9185E-05],[45.189584,-3.4544E-05],[45.193021,-3.506E-05],[45.196459,-3.3513E-05],[45.199896,-3.4029E-05],[45.203333,-3.4029E-05],[45.206771,-3.7122E-05],[45.210208,-4.1247E-05],[45.213645,-4.0216E-05],[45.217083,-3.7638E-05],[45.22052,-3.4544E-05],[45.223957,-3.2998E-05],[45.227395,-2.9389E-05],[45.230832,-3.1451E-05],[45.234269,-3.7122E-05],[45.237707,-3.6607E-05],[45.241144,-3.6091E-05],[45.244581,-3.6607E-05],[45.248019,-3.5576E-05],[45.251456,-3.506E-05],[45.254893,-4.0732E-05],[45.258331,-3.9185E-05],[45.261768,-3.7638E-05],[45.265205,-3.8669E-05],[45.268643,-3.6607E-05],[45.27208,-3.7122E-05],[45.275517,-3.506E-05],[45.278955,-3.8154E-05],[45.282392,-4.2278E-05],[45.285829,-3.97E-05],[45.289267,-3.2482E-05],[45.292704,-3.6091E-05],[45.296141,-4.0732E-05],[45.299579,-3.4029E-05],[45.303016,-3.7638E-05],[45.306453,-3.3513E-05],[45.309891,-2.9904E-05],[45.313328,-3.6091E-05],[45.316765,-3.7122E-05],[45.320203,-3.9185E-05],[45.32364,-3.6091E-05],[45.327077,-3.4029E-05],[45.330515,-3.8669E-05],[45.333952,-3.506E-05],[45.337389,-3.506E-05],[45.340827,-3.4029E-05],[45.344264,-3.1967E-05],[45.347701,-3.8154E-05],[45.351139,-3.4029E-05],[45.354576,-3.1451E-05],[45.358013,-3.8154E-05],[45.361451,-3.7638E-05],[45.364888,-3.6091E-05],[45.368325,-3.2482E-05],[45.371763,-3.0935E-05],[45.3752,-3.3513E-05],[45.378637,-3.3513E-05],[45.382075,-3.506E-05],[45.385512,-4.0216E-05],[45.388949,-4.2278E-05],[45.392387,-3.4544E-05],[45.395824,-3.4029E-05],[45.399261,-3.4544E-05],[45.402699,-3.2482E-05],[45.406136,-4.0216E-05],[45.409573,-3.8154E-05],[45.413011,-3.1451E-05],[45.416448,-3.4544E-05],[45.419885,-3.6607E-05],[45.423323,-4.0216E-05],[45.42676,-3.7638E-05],[45.430197,-3.4544E-05],[45.433635,-3.6091E-05],[45.437072,-3.4029E-05],[45.440509,-3.7122E-05]]}
-{"quant":[45.6035,-0.44092],"mems":[[45.505819,-3.1967E-05],[45.509256,-3.3513E-05],[45.512693,-3.506E-05],[45.516131,-3.2998E-05],[45.519568,-3.6091E-05],[45.523005,-3.7638E-05],[45.526443,-3.7122E-05],[45.52988,-3.4544E-05],[45.533317,-3.5576E-05],[45.536755,-3.4544E-05],[45.540192,-3.8669E-05],[45.543629,-4.0216E-05],[45.547067,-3.6091E-05],[45.550504,-3.8669E-05],[45.553941,-3.506E-05],[45.557379,-3.7122E-05],[45.560816,-3.6607E-05],[45.564253,-3.4544E-05],[45.567691,-3.4029E-05],[45.571128,-3.042E-05],[45.574565,-3.2998E-05],[45.578003,-3.3513E-05],[45.58144,-3.7122E-05],[45.584877,-3.6091E-05],[45.588315,-3.5576E-05],[45.591752,-3.6607E-05],[45.595189,-3.2998E-05],[45.598627,-4.0216E-05],[45.602064,-4.2794E-05],[45.605501,-3.8669E-05],[45.608939,-3.7122E-05],[45.612376,-3.5576E-05],[45.615813,-3.4029E-05],[45.619251,-3.7122E-05],[45.622688,-3.506E-05],[45.626125,-3.0935E-05],[45.629563,-3.6607E-05],[45.633,-3.6607E-05],[45.636437,-3.5576E-05],[45.639875,-4.0216E-05],[45.643312,-3.7638E-05],[45.646749,-3.4544E-05],[45.650187,-3.7122E-05],[45.653624,-3.9185E-05],[45.657061,-3.9185E-05],[45.660499,-3.8669E-05],[45.663936,-3.8154E-05],[45.667373,-3.8154E-05],[45.670811,-3.7122E-05],[45.674248,-3.0935E-05],[45.677685,-3.4029E-05],[45.681123,-3.8669E-05],[45.68456,-3.4029E-05],[45.687997,-3.4029E-05],[45.691435,-3.5576E-05],[45.694872,-3.8669E-05],[45.698309,-3.97E-05],[45.701747,-3.2998E-05],[45.705184,-3.1451E-05],[45.708621,-3.2482E-05],[45.712059,-3.4544E-05],[45.715496,-3.8669E-05],[45.718933,-3.8154E-05],[45.722371,-3.4544E-05],[45.725808,-3.4544E-05],[45.729245,-3.5576E-05],[45.732683,-3.2998E-05],[45.73612,-3.8154E-05],[45.739557,-3.7122E-05],[45.742995,-3.2482E-05],[45.746432,-3.7122E-05],[45.749869,-3.5576E-05],[45.753307,-3.4544E-05],[45.756744,-3.7638E-05],[45.760181,-3.8669E-05],[45.763619,-4.2278E-05],[45.767056,-4.1763E-05],[45.770493,-3.9185E-05],[45.773931,-4.0216E-05],[45.777368,-4.2794E-05],[45.780805,-4.2278E-05],[45.784243,-3.7122E-05],[45.78768,-3.4544E-05],[45.791117,-3.3513E-05],[45.794555,-3.4544E-05],[45.797992,-4.0216E-05],[45.801429,-4.0216E-05]]}
-{"quant":[45.9524,-0.49111],"mems":[[45.852989,-3.4029E-05],[45.856427,-3.5576E-05],[45.859864,-3.506E-05],[45.863301,-3.4029E-05],[45.866739,-3.4544E-05],[45.870176,-3.4544E-05],[45.873613,-3.4544E-05],[45.877051,-3.4544E-05],[45.880488,-3.4544E-05],[45.883925,-3.8154E-05],[45.887363,-3.8669E-05],[45.8908,-3.6091E-05],[45.894237,-3.7122E-05],[45.897675,-3.8669E-05],[45.901112,-3.8154E-05],[45.904549,-3.7122E-05],[45.907987,-3.6607E-05],[45.911424,-3.6091E-05],[45.914861,-3.4544E-05],[45.918299,-3.3513E-05],[45.921736,-3.4544E-05],[45.925173,-3.6091E-05],[45.928611,-3.6091E-05],[45.932048,-3.5576E-05],[45.935485,-3.7638E-05],[45.938923,-3.8669E-05],[45.94236,-3.8669E-05],[45.945797,-3.7122E-05],[45.949235,-3.3513E-05],[45.952672,-3.506E-05],[45.956109,-3.6091E-05],[45.959547,-3.9185E-05],[45.962984,-3.97E-05],[45.966421,-3.4544E-05],[45.969859,-3.506E-05],[45.973296,-3.1967E-05],[45.976733,-3.4544E-05],[45.980171,-3.6607E-05],[45.983608,-3.2998E-05],[45.987045,-3.7122E-05],[45.990483,-3.4544E-05],[45.99392,-3.4544E-05],[45.997357,-3.9185E-05],[46.000795,-3.8154E-05],[46.004232,-3.1967E-05],[46.007669,-3.0935E-05],[46.011107,-3.5576E-05],[46.014544,-3.6091E-05],[46.017981,-3.6091E-05],[46.021419,-3.5576E-05],[46.024856,-3.97E-05],[46.028293,-3.8154E-05],[46.031731,-3.2482E-05],[46.035168,-3.6607E-05],[46.038605,-3.8669E-05],[46.042043,-3.506E-05],[46.04548,-3.6607E-05],[46.048917,-3.3513E-05],[46.052355,-3.042E-05],[46.055792,-3.4544E-05],[46.059229,-3.9185E-05],[46.062667,-3.7638E-05],[46.066104,-3.4544E-05],[46.069541,-3.6607E-05],[46.072979,-3.7638E-05],[46.076416,-3.506E-05],[46.079853,-3.5576E-05],[46.083291,-3.8154E-05],[46.086728,-3.7638E-05],[46.090165,-3.506E-05],[46.093603,-3.2482E-05],[46.09704,-3.506E-05],[46.100477,-3.5576E-05],[46.103915,-3.506E-05],[46.107352,-3.506E-05],[46.110789,-3.506E-05],[46.114227,-3.6607E-05],[46.117664,-3.506E-05],[46.121101,-3.4544E-05],[46.124539,-3.7122E-05],[46.127976,-4.0732E-05],[46.131413,-3.9185E-05],[46.134851,-3.5576E-05],[46.138288,-3.6091E-05],[46.141725,-3.9185E-05],[46.145163,-3.7638E-05],[46.1486,-3.7122E-05],[46.152037,-3.5576E-05]]}
-{"quant":[46.3138,-0.53109],"mems":[[46.213909,-3.2998E-05],[46.217347,-3.7122E-05],[46.220784,-4.0216E-05],[46.224221,-4.2794E-05],[46.227659,-3.7122E-05],[46.231096,-3.2482E-05],[46.234533,-3.7122E-05],[46.237971,-3.7122E-05],[46.241408,-3.3513E-05],[46.244845,-3.7122E-05],[46.248283,-4.2278E-05],[46.25172,-4.1763E-05],[46.255157,-3.6091E-05],[46.258595,-3.2998E-05],[46.262032,-3.8154E-05],[46.265469,-3.6607E-05],[46.268907,-3.2998E-05],[46.272344,-3.3513E-05],[46.275781,-3.1451E-05],[46.279219,-3.506E-05],[46.282656,-3.2998E-05],[46.286093,-3.2482E-05],[46.289531,-3.5576E-05],[46.292968,-3.5576E-05],[46.296405,-4.2794E-05],[46.299843,-3.8669E-05],[46.30328,-3.7122E-05],[46.306717,-3.9185E-05],[46.310155,-3.1451E-05],[46.313592,-3.8154E-05],[46.317029,-4.0216E-05],[46.320467,-4.1763E-05],[46.323904,-4.3825E-05],[46.327341,-3.8669E-05],[46.330779,-3.8154E-05],[46.334216,-3.8154E-05],[46.337653,-4.1247E-05],[46.341091,-3.6607E-05],[46.344528,-3.5576E-05],[46.347965,-3.506E-05],[46.351403,-3.0935E-05],[46.35484,-3.6091E-05],[46.358277,-3.4029E-05],[46.361715,-3.4029E-05],[46.365152,-4.1763E-05],[46.368589,-3.97E-05],[46.372027,-3.506E-05],[46.375464,-3.7122E-05],[46.378901,-4.0216E-05],[46.382339,-3.9185E-05],[46.385776,-3.97E-05],[46.389213,-3.7638E-05],[46.392651,-3.506E-05],[46.396088,-3.7638E-05],[46.399525,-3.1967E-05],[46.402963,-3.1451E-05],[46.4064,-3.6091E-05],[46.409837,-3.4029E-05],[46.413275,-3.5576E-05],[46.416712,-3.506E-05],[46.420149,-3.6091E-05],[46.423587,-3.8669E-05],[46.427024,-3.6091E-05],[46.430461,-3.1967E-05],[46.433899,-3.6091E-05],[46.437336,-3.8669E-05],[46.440773,-3.506E-05],[46.444211,-3.7638E-05],[46.447648,-3.506E-05],[46.451085,-3.2482E-05],[46.454523,-3.506E-05],[46.45796,-3.5576E-05],[46.461397,-3.8154E-05],[46.464835,-3.9185E-05],[46.468272,-3.97E-05],[46.471709,-3.8669E-05],[46.475147,-3.8154E-05],[46.478584,-3.8154E-05],[46.482021,-3.506E-05],[46.485459,-3.6607E-05],[46.488896,-3.5576E-05],[46.492333,-3.9185E-05],[46.495771,-3.8669E-05],[46.499208,-3.506E-05],[46.502645,-3.2482E-05],[46.506083,-3.1451E-05],[46.50952,-3.8669E-05],[46.512957,-3.5576E-05]]}
-{"quant":[46.7003,-0.55522],"mems":[[46.602328,-3.6091E-05],[46.605765,-3.7122E-05],[46.609203,-3.1451E-05],[46.61264,-3.5576E-05],[46.616077,-4.1763E-05],[46.619515,-3.6091E-05],[46.622952,-3.3513E-05],[46.626389,-3.3513E-05],[46.629827,-3.4029E-05],[46.633264,-3.4029E-05],[46.636701,-3.6607E-05],[46.640139,-3.506E-05],[46.643576,-3.8669E-05],[46.647013,-4.1763E-05],[46.650451,-3.7122E-05],[46.653888,-3.6607E-05],[46.657325,-3.7122E-05],[46.660763,-3.8154E-05],[46.6642,-3.506E-05],[46.667637,-3.7638E-05],[46.671075,-4.1247E-05],[46.674512,-3.7638E-05],[46.677949,-3.4544E-05],[46.681387,-3.2998E-05],[46.684824,-3.7122E-05],[46.688261,-3.6091E-05],[46.691699,-3.506E-05],[46.695136,-3.97E-05],[46.698573,-3.5576E-05],[46.702011,-3.4029E-05],[46.705448,-3.97E-05],[46.708885,-3.4544E-05],[46.712323,-3.4029E-05],[46.71576,-3.7638E-05],[46.719197,-3.4544E-05],[46.722635,-3.506E-05],[46.726072,-3.6091E-05],[46.729509,-3.8154E-05],[46.732947,-3.97E-05],[46.736384,-4.1763E-05],[46.739821,-3.7638E-05],[46.743259,-3.3513E-05],[46.746696,-3.6091E-05],[46.750133,-3.3513E-05],[46.753571,-3.506E-05],[46.757008,-3.6607E-05],[46.760445,-3.6091E-05],[46.763883,-3.4029E-05],[46.76732,-3.1967E-05],[46.770757,-3.6091E-05],[46.774195,-3.7638E-05],[46.777632,-3.9185E-05],[46.781069,-4.0732E-05],[46.784507,-3.97E-05],[46.787944,-3.9185E-05],[46.791381,-3.5576E-05],[46.794819,-3.5576E-05],[46.798256,-3.8669E-05],[46.801693,-3.7638E-05],[46.805131,-3.8154E-05],[46.808568,-3.6091E-05],[46.812005,-3.2998E-05],[46.815443,-3.3513E-05],[46.81888,-3.8154E-05],[46.822317,-3.7638E-05],[46.825755,-3.2998E-05],[46.829192,-3.4544E-05],[46.832629,-3.506E-05],[46.836067,-3.4029E-05],[46.839504,-3.7638E-05],[46.842941,-3.7638E-05],[46.846379,-3.4544E-05],[46.849816,-3.1967E-05],[46.853253,-3.2482E-05],[46.856691,-3.4029E-05],[46.860128,-3.1967E-05],[46.863565,-3.4029E-05],[46.867003,-3.6091E-05],[46.87044,-3.7122E-05],[46.873877,-3.4544E-05],[46.877315,-3.2482E-05],[46.880752,-3.7638E-05],[46.884189,-3.7122E-05],[46.887627,-3.6091E-05],[46.891064,-3.3513E-05],[46.894501,-3.6091E-05],[46.897939,-3.6607E-05]]}
-{"quant":[47.0865,-0.57124],"mems":[[46.987335,-3.506E-05],[46.990773,-3.2998E-05],[46.994212,-3.3513E-05],[46.997651,-3.4544E-05],[47.001089,-3.506E-05],[47.004528,-3.6091E-05],[47.007967,-3.6091E-05],[47.011405,-3.5576E-05],[47.014844,-3.6607E-05],[47.018283,-3.9185E-05],[47.021721,-3.7122E-05],[47.02516,-3.2998E-05],[47.028599,-3.6091E-05],[47.032037,-3.8669E-05],[47.035476,-4.0732E-05],[47.038915,-3.8154E-05],[47.042353,-3.2482E-05],[47.045792,-3.2482E-05],[47.049231,-3.4029E-05],[47.052669,-4.0216E-05],[47.056108,-3.7638E-05],[47.059547,-3.5576E-05],[47.062985,-3.9185E-05],[47.066424,-3.7638E-05],[47.069863,-3.3513E-05],[47.073301,-3.506E-05],[47.07674,-3.9185E-05],[47.080179,-3.5576E-05],[47.083617,-3.6607E-05],[47.087056,-3.7638E-05],[47.090495,-3.506E-05],[47.093933,-3.2998E-05],[47.097372,-3.4544E-05],[47.100811,-4.0216E-05],[47.104249,-3.9185E-05],[47.107688,-3.8154E-05],[47.111127,-3.2998E-05],[47.114565,-3.6091E-05],[47.118004,-4.0216E-05],[47.121443,-3.7638E-05],[47.124881,-3.4544E-05],[47.12832,-3.1967E-05],[47.131759,-3.6607E-05],[47.135197,-3.5576E-05],[47.138636,-3.4544E-05],[47.142075,-3.0935E-05],[47.145513,-3.0935E-05],[47.148952,-3.4544E-05],[47.152391,-3.2998E-05],[47.155829,-3.4029E-05],[47.159268,-3.5576E-05],[47.162707,-3.7638E-05],[47.166145,-3.506E-05],[47.169584,-3.4544E-05],[47.173023,-3.4544E-05],[47.176461,-3.7122E-05],[47.1799,-3.5576E-05],[47.183339,-3.4544E-05],[47.186777,-3.7638E-05],[47.190216,-3.2482E-05],[47.193655,-3.6091E-05],[47.197093,-3.97E-05],[47.200532,-3.7638E-05],[47.203971,-3.7122E-05],[47.207409,-3.5576E-05],[47.210848,-3.97E-05],[47.214287,-3.8669E-05],[47.217725,-3.6091E-05],[47.221164,-3.506E-05],[47.224603,-3.7638E-05],[47.228041,-3.506E-05],[47.23148,-3.1451E-05],[47.234919,-4.0216E-05],[47.238357,-3.8154E-05],[47.241796,-3.4544E-05],[47.245235,-3.4544E-05],[47.248673,-3.2482E-05],[47.252112,-3.8154E-05],[47.255551,-3.8669E-05],[47.258989,-3.8669E-05],[47.262428,-3.8669E-05],[47.265867,-3.6607E-05],[47.269305,-3.7122E-05],[47.272744,-3.4544E-05],[47.276183,-3.4544E-05],[47.279621,-3.7122E-05],[47.28306,-3.7638E-05],[47.286499,-3.3513E-05]]}
-{"quant":[47.5198,-0.59613],"mems":[[47.420607,-3.4029E-05],[47.424045,-3.8669E-05],[47.427484,-3.9185E-05],[47.430923,-3.7122E-05],[47.434361,-3.8154E-05],[47.4378,-3.8154E-05],[47.441239,-3.97E-05],[47.444677,-3.6607E-05],[47.448116,-3.2482E-05],[47.451555,-3.5576E-05],[47.454993,-3.6091E-05],[47.458432,-3.7638E-05],[47.461871,-3.9185E-05],[47.465309,-3.8154E-05],[47.468748,-3.6607E-05],[47.472187,-3.2998E-05],[47.475625,-3.506E-05],[47.479064,-3.5576E-05],[47.482503,-3.6091E-05],[47.485941,-3.4544E-05],[47.48938,-3.4029E-05],[47.492819,-3.7122E-05],[47.496257,-3.6607E-05],[47.499696,-3.8669E-05],[47.503135,-3.3513E-05],[47.506573,-3.1967E-05],[47.510012,-3.6607E-05],[47.513451,-3.8154E-05],[47.516889,-3.97E-05],[47.520328,-3.6607E-05],[47.523767,-3.6607E-05],[47.527205,-4.1247E-05],[47.530644,-4.2278E-05],[47.534083,-3.7638E-05],[47.537521,-3.4029E-05],[47.54096,-3.8154E-05],[47.544399,-3.6607E-05],[47.547837,-3.1967E-05],[47.551276,-3.4544E-05],[47.554715,-3.6091E-05],[47.558153,-3.7122E-05],[47.561592,-3.8669E-05],[47.565031,-3.2482E-05],[47.568469,-3.3513E-05],[47.571908,-4.1763E-05],[47.575347,-4.1763E-05],[47.578785,-3.6091E-05],[47.582224,-3.6091E-05],[47.585663,-3.7638E-05],[47.589101,-3.4544E-05],[47.59254,-3.7638E-05],[47.595979,-3.8154E-05],[47.599417,-3.4544E-05],[47.602856,-3.5576E-05],[47.606295,-3.9185E-05],[47.609733,-3.9185E-05],[47.613172,-3.1967E-05],[47.616611,-3.5576E-05],[47.620049,-3.97E-05],[47.623488,-4.0732E-05],[47.626927,-4.0732E-05],[47.630365,-3.4544E-05],[47.633804,-3.506E-05],[47.637243,-4.0732E-05],[47.640681,-4.1247E-05],[47.64412,-3.6607E-05],[47.647559,-3.6091E-05],[47.650997,-3.6607E-05],[47.654436,-3.7122E-05],[47.657875,-3.7638E-05],[47.661313,-3.7638E-05],[47.664752,-4.1247E-05],[47.668191,-3.7122E-05],[47.671629,-3.4029E-05],[47.675068,-3.6607E-05],[47.678507,-3.7638E-05],[47.681945,-3.7638E-05],[47.685384,-3.5576E-05],[47.688823,-4.2794E-05],[47.692261,-4.4856E-05],[47.6957,-3.6091E-05],[47.699139,-4.0216E-05],[47.702577,-3.8154E-05],[47.706016,-3.5576E-05],[47.709455,-3.8154E-05],[47.712893,-3.2482E-05],[47.716332,-3.506E-05],[47.719771,-3.7122E-05]]}
-{"quant":[47.8837,-0.63257],"mems":[[47.785105,-3.5576E-05],[47.788544,-3.4029E-05],[47.791983,-3.8154E-05],[47.795421,-4.0216E-05],[47.79886,-3.97E-05],[47.802299,-3.97E-05],[47.805737,-3.8154E-05],[47.809176,-3.6091E-05],[47.812615,-4.0732E-05],[47.816053,-4.1763E-05],[47.819492,-3.7122E-05],[47.822931,-3.7122E-05],[47.826369,-3.9185E-05],[47.829808,-4.1247E-05],[47.833247,-3.97E-05],[47.836685,-3.6091E-05],[47.840124,-3.7638E-05],[47.843563,-3.8154E-05],[47.847001,-3.9185E-05],[47.85044,-4.0732E-05],[47.853879,-4.1247E-05],[47.857317,-3.506E-05],[47.860756,-3.2482E-05],[47.864195,-3.7638E-05],[47.867633,-3.7122E-05],[47.871072,-3.97E-05],[47.874511,-3.97E-05],[47.877949,-3.6091E-05],[47.881388,-3.5576E-05],[47.884827,-3.5576E-05],[47.888265,-3.6607E-05],[47.891704,-3.7638E-05],[47.895143,-4.1763E-05],[47.898581,-4.3309E-05],[47.90202,-3.9185E-05],[47.905459,-3.3513E-05],[47.908897,-3.3513E-05],[47.912336,-3.6607E-05],[47.915775,-3.4029E-05],[47.919213,-3.506E-05],[47.922652,-3.7122E-05],[47.926091,-3.8154E-05],[47.929529,-3.4544E-05],[47.932968,-3.5576E-05],[47.936407,-3.7122E-05],[47.939845,-3.7122E-05],[47.943284,-3.97E-05],[47.946723,-3.4544E-05],[47.950161,-3.6091E-05],[47.9536,-3.8154E-05],[47.957039,-3.7122E-05],[47.960477,-3.7122E-05],[47.963916,-3.5576E-05],[47.967355,-3.6607E-05],[47.970793,-3.6607E-05],[47.974232,-3.6607E-05],[47.977671,-3.7638E-05],[47.981109,-4.0216E-05],[47.984548,-3.8154E-05],[47.987987,-3.6091E-05],[47.991425,-3.6607E-05],[47.994864,-3.97E-05],[47.998303,-4.1247E-05],[48.001741,-3.6607E-05],[48.00518,-3.3513E-05],[48.008619,-3.1451E-05],[48.012057,-3.9185E-05],[48.015496,-3.9185E-05],[48.018935,-3.6607E-05],[48.022373,-4.0216E-05],[48.025812,-3.6607E-05],[48.029251,-3.9185E-05],[48.032689,-4.1763E-05],[48.036128,-3.6091E-05],[48.039567,-3.1967E-05],[48.043005,-3.5576E-05],[48.046444,-3.4544E-05],[48.049883,-3.1451E-05],[48.053321,-3.6607E-05],[48.05676,-3.6091E-05],[48.060199,-3.8154E-05],[48.063637,-3.6607E-05],[48.067076,-3.3513E-05],[48.070515,-3.7122E-05],[48.073953,-3.7122E-05],[48.077392,-3.8669E-05],[48.080831,-4.0732E-05]]}
-{"quant":[48.2473,-0.66473],"mems":[[48.149604,-3.5576E-05],[48.153043,-3.6607E-05],[48.156481,-3.6607E-05],[48.15992,-4.0732E-05],[48.163359,-3.8154E-05],[48.166797,-3.9185E-05],[48.170236,-3.8669E-05],[48.173675,-3.8154E-05],[48.177113,-3.4544E-05],[48.180552,-3.4029E-05],[48.183991,-3.9185E-05],[48.187429,-3.7122E-05],[48.190868,-3.7122E-05],[48.194307,-3.506E-05],[48.197745,-3.6091E-05],[48.201184,-4.2794E-05],[48.204623,-4.1763E-05],[48.208061,-3.6091E-05],[48.2115,-3.5576E-05],[48.214939,-4.1763E-05],[48.218377,-3.9185E-05],[48.221816,-3.8669E-05],[48.225255,-4.0216E-05],[48.228693,-3.506E-05],[48.232132,-3.97E-05],[48.235571,-4.1247E-05],[48.239009,-3.7122E-05],[48.242448,-3.6607E-05],[48.245887,-3.6607E-05],[48.249325,-4.1247E-05],[48.252764,-4.1763E-05],[48.256203,-4.1763E-05],[48.259641,-4.1247E-05],[48.26308,-3.7638E-05],[48.266519,-3.8154E-05],[48.269957,-3.506E-05],[48.273396,-3.6091E-05],[48.276835,-3.5576E-05],[48.280273,-3.2482E-05],[48.283712,-3.7122E-05],[48.287151,-3.7638E-05],[48.290589,-3.4029E-05],[48.294028,-3.7638E-05],[48.297467,-3.8669E-05],[48.300905,-3.506E-05],[48.304344,-3.8669E-05],[48.307783,-3.8154E-05],[48.311221,-3.506E-05],[48.31466,-3.7122E-05],[48.318099,-3.7638E-05],[48.321537,-3.6607E-05],[48.324976,-3.506E-05],[48.328415,-3.5576E-05],[48.331853,-3.6091E-05],[48.335292,-3.7122E-05],[48.338731,-4.0732E-05],[48.342169,-3.9185E-05],[48.345608,-3.4029E-05],[48.349047,-3.4544E-05],[48.352485,-4.0216E-05],[48.355924,-3.8669E-05],[48.359363,-4.0216E-05],[48.362801,-3.97E-05],[48.36624,-2.7842E-05],[48.369679,-2.8357E-05],[48.373117,-3.8154E-05],[48.376556,-3.97E-05],[48.379995,-4.1763E-05],[48.383433,-3.97E-05],[48.386872,-3.5576E-05],[48.390311,-3.8669E-05],[48.393749,-3.8154E-05],[48.397188,-3.4544E-05],[48.400627,-3.2482E-05],[48.404065,-3.3513E-05],[48.407504,-3.6091E-05],[48.410943,-3.8669E-05],[48.414381,-4.1763E-05],[48.41782,-4.0216E-05],[48.421259,-3.6607E-05],[48.424697,-3.7122E-05],[48.428136,-3.7638E-05],[48.431575,-3.7638E-05],[48.435013,-3.8669E-05],[48.438452,-3.6091E-05],[48.441891,-3.2482E-05],[48.445329,-3.2482E-05]]}
-{"quant":[48.6382,-0.69046],"mems":[[48.541612,-4.0216E-05],[48.545051,-3.5576E-05],[48.548489,-3.4029E-05],[48.551928,-3.8154E-05],[48.555367,-3.6607E-05],[48.558805,-3.7122E-05],[48.562244,-3.6607E-05],[48.565683,-3.3513E-05],[48.569121,-3.3513E-05],[48.57256,-3.5576E-05],[48.575999,-3.9185E-05],[48.579437,-3.506E-05],[48.582876,-3.3513E-05],[48.586315,-3.7638E-05],[48.589753,-3.4544E-05],[48.593192,-3.5576E-05],[48.596631,-3.5576E-05],[48.600069,-3.4544E-05],[48.603508,-3.3513E-05],[48.606947,-3.1451E-05],[48.610385,-3.9185E-05],[48.613824,-3.8669E-05],[48.617263,-3.9185E-05],[48.620701,-3.9185E-05],[48.62414,-3.4544E-05],[48.627579,-3.506E-05],[48.631017,-3.4029E-05],[48.634456,-3.7638E-05],[48.637895,-3.6091E-05],[48.641333,-3.7122E-05],[48.644772,-3.8154E-05],[48.648211,-3.6091E-05],[48.651649,-3.7122E-05],[48.655088,-3.7122E-05],[48.658527,-3.6607E-05],[48.661965,-3.6607E-05],[48.665404,-3.8669E-05],[48.668843,-3.4029E-05],[48.672281,-3.6607E-05],[48.67572,-3.8669E-05],[48.679159,-3.7122E-05],[48.682597,-3.8154E-05],[48.686036,-3.7122E-05],[48.689475,-3.97E-05],[48.692913,-3.7638E-05],[48.696352,-3.7122E-05],[48.699791,-3.6607E-05],[48.703229,-3.042E-05],[48.706668,-3.1967E-05],[48.710107,-3.4544E-05],[48.713545,-3.7638E-05],[48.716984,-3.7638E-05],[48.720423,-3.6091E-05],[48.723861,-3.5576E-05],[48.7273,-3.2482E-05],[48.730739,-3.1967E-05],[48.734177,-3.6607E-05],[48.737616,-3.8669E-05],[48.741055,-3.6607E-05],[48.744493,-3.4029E-05],[48.747932,-3.2482E-05],[48.751371,-3.4029E-05],[48.754809,-3.6607E-05],[48.758248,-3.8154E-05],[48.761687,-3.4544E-05],[48.765125,-3.3513E-05],[48.768564,-3.4544E-05],[48.772003,-3.0935E-05],[48.775441,-3.5576E-05],[48.77888,-3.5576E-05],[48.782319,-3.2998E-05],[48.785757,-3.6607E-05],[48.789196,-3.3513E-05],[48.792635,-3.1451E-05],[48.796073,-3.3513E-05],[48.799512,-3.5576E-05],[48.802951,-3.6607E-05],[48.806389,-3.8669E-05],[48.809828,-3.7122E-05],[48.813267,-3.4544E-05],[48.816705,-3.97E-05],[48.820144,-3.8669E-05],[48.823583,-3.6607E-05],[48.827021,-3.8154E-05],[48.83046,-3.97E-05],[48.833899,-3.97E-05],[48.837337,-3.8669E-05]]}
-{"quant":[49.0032,-0.72299],"mems":[[48.906111,-3.4029E-05],[48.909549,-3.2482E-05],[48.912988,-4.0216E-05],[48.916427,-4.2278E-05],[48.919865,-4.0732E-05],[48.923304,-3.506E-05],[48.926743,-3.4544E-05],[48.930181,-3.97E-05],[48.93362,-4.0216E-05],[48.937059,-3.506E-05],[48.940497,-3.4029E-05],[48.943936,-3.5576E-05],[48.947375,-3.5576E-05],[48.950813,-3.8669E-05],[48.954252,-4.0732E-05],[48.957691,-3.8669E-05],[48.961129,-3.6091E-05],[48.964568,-3.4544E-05],[48.968007,-3.5576E-05],[48.971445,-3.6607E-05],[48.974884,-3.8154E-05],[48.978323,-3.97E-05],[48.981761,-3.8154E-05],[48.9852,-3.4544E-05],[48.988639,-3.6607E-05],[48.992077,-4.0216E-05],[48.995516,-3.8154E-05],[48.998955,-3.6607E-05],[49.002393,-3.5576E-05],[49.005832,-3.506E-05],[49.009271,-3.9185E-05],[49.012709,-4.1247E-05],[49.016148,-4.1247E-05],[49.019587,-4.0732E-05],[49.023025,-4.0216E-05],[49.026464,-3.506E-05],[49.029903,-3.7122E-05],[49.033341,-4.1763E-05],[49.03678,-3.9185E-05],[49.040219,-3.7638E-05],[49.043657,-3.506E-05],[49.047096,-3.6091E-05],[49.050535,-3.6091E-05],[49.053973,-3.9185E-05],[49.057412,-4.3309E-05],[49.060851,-4.0732E-05],[49.064289,-3.7122E-05],[49.067728,-3.4029E-05],[49.071167,-3.506E-05],[49.074605,-3.8669E-05],[49.078044,-3.8669E-05],[49.081483,-3.7122E-05],[49.084921,-3.8669E-05],[49.08836,-3.6607E-05],[49.091799,-3.8154E-05],[49.095237,-4.1763E-05],[49.098676,-3.8669E-05],[49.102115,-3.506E-05],[49.105553,-3.7638E-05],[49.108992,-4.1247E-05],[49.112431,-3.8669E-05],[49.115869,-4.2794E-05],[49.119308,-4.1247E-05],[49.122747,-3.4029E-05],[49.126185,-3.3513E-05],[49.129624,-3.4544E-05],[49.133063,-3.8669E-05],[49.136501,-4.0216E-05],[49.13994,-3.8669E-05],[49.143379,-3.7122E-05],[49.146817,-3.6607E-05],[49.150256,-3.7122E-05],[49.153695,-3.8669E-05],[49.157133,-3.6607E-05],[49.160572,-3.7122E-05],[49.164011,-3.5576E-05],[49.167449,-2.9904E-05],[49.170888,-3.4029E-05],[49.174327,-3.6607E-05],[49.177765,-3.6091E-05],[49.181204,-3.5576E-05],[49.184643,-3.4544E-05],[49.188081,-3.8669E-05],[49.19152,-3.506E-05],[49.194959,-3.4029E-05],[49.198397,-3.8154E-05],[49.201836,-3.506E-05]]}
-{"quant":[49.3527,-0.7641],"mems":[[49.274048,-3.8669E-05],[49.277487,-3.8669E-05],[49.280925,-3.6607E-05],[49.284364,-3.7122E-05],[49.287803,-3.8669E-05],[49.291241,-3.9185E-05],[49.29468,-4.0732E-05],[49.298119,-3.8669E-05],[49.301557,-3.9185E-05],[49.304996,-3.6091E-05],[49.308435,-3.506E-05],[49.311873,-3.9185E-05],[49.315312,-3.4544E-05],[49.318751,-3.6091E-05],[49.322189,-4.1763E-05],[49.325628,-4.0732E-05],[49.329067,-3.8154E-05],[49.332505,-3.9185E-05],[49.335944,-4.1247E-05],[49.339383,-3.6091E-05],[49.342821,-3.1451E-05],[49.34626,-3.2998E-05],[49.349699,-3.7122E-05],[49.353137,-4.0216E-05],[49.356576,-4.1247E-05],[49.360015,-3.4544E-05],[49.363453,-2.8873E-05],[49.366892,-3.2998E-05],[49.370331,-3.5576E-05],[49.373769,-3.6607E-05],[49.377208,-3.6607E-05],[49.380647,-3.9185E-05],[49.384085,-3.7122E-05],[49.387524,-3.3513E-05],[49.390963,-3.6607E-05],[49.394401,-3.6607E-05],[49.39784,-4.0732E-05],[49.401279,-3.8154E-05],[49.404717,-3.8154E-05],[49.408156,-4.2278E-05],[49.411595,-3.7638E-05],[49.415033,-3.6091E-05],[49.418472,-3.5576E-05],[49.421911,-3.6091E-05],[49.425349,-3.2998E-05],[49.428788,-3.1967E-05],[49.432227,-3.6607E-05],[49.435665,-3.7122E-05],[49.439104,-3.8154E-05],[49.442543,-3.9185E-05],[49.445981,-3.9185E-05],[49.44942,-4.2278E-05],[49.452859,-4.2794E-05],[49.456297,-3.9185E-05],[49.459736,-4.0216E-05],[49.463175,-3.6091E-05],[49.466613,-3.3513E-05],[49.470052,-3.97E-05],[49.473491,-3.7638E-05],[49.476929,-3.4544E-05],[49.480368,-3.7638E-05],[49.483807,-3.7638E-05],[49.487245,-3.6091E-05],[49.490684,-3.6607E-05],[49.494123,-3.6091E-05],[49.497561,-3.5576E-05],[49.501,-3.7638E-05],[49.504436,-3.6607E-05],[49.507872,-3.6607E-05],[49.511308,-3.7122E-05],[49.514744,-3.7638E-05],[49.51818,-3.8669E-05],[49.521616,-3.8669E-05],[49.525052,-3.8154E-05],[49.528488,-3.506E-05],[49.531924,-4.0216E-05],[49.53536,-3.97E-05],[49.538796,-3.4544E-05],[49.542232,-3.7638E-05],[49.545668,-3.5576E-05],[49.549104,-3.1967E-05],[49.55254,-3.4544E-05],[49.555976,-3.9185E-05],[49.559412,-4.0216E-05],[49.562848,-3.9185E-05],[49.566284,-3.4544E-05],[49.56972,-3.1967E-05],[49.573156,-3.5576E-05]]}
-{"quant":[49.7188,-0.80517],"mems":[[49.62126,-3.7638E-05],[49.624696,-3.6091E-05],[49.628132,-3.5576E-05],[49.631568,-3.6607E-05],[49.635004,-3.7122E-05],[49.63844,-3.3513E-05],[49.641876,-3.2482E-05],[49.645312,-3.506E-05],[49.648748,-3.4544E-05],[49.652184,-3.506E-05],[49.65562,-3.7638E-05],[49.659056,-3.506E-05],[49.662492,-3.7122E-05],[49.665928,-3.9185E-05],[49.669364,-3.7122E-05],[49.6728,-3.8669E-05],[49.676236,-3.506E-05],[49.679672,-3.4029E-05],[49.683108,-3.8669E-05],[49.686544,-4.0216E-05],[49.68998,-3.506E-05],[49.693416,-3.7638E-05],[49.696852,-3.8154E-05],[49.700288,-3.4029E-05],[49.703724,-3.506E-05],[49.70716,-3.3513E-05],[49.710596,-3.7638E-05],[49.714032,-3.6091E-05],[49.717468,-3.7122E-05],[49.720904,-4.1763E-05],[49.72434,-3.6607E-05],[49.727776,-3.7122E-05],[49.731212,-3.8154E-05],[49.734648,-3.7638E-05],[49.738084,-3.7638E-05],[49.74152,-3.7122E-05],[49.744956,-3.4029E-05],[49.748392,-3.7638E-05],[49.751828,-3.8669E-05],[49.755264,-3.5576E-05],[49.7587,-3.8669E-05],[49.762136,-3.4029E-05],[49.765572,-3.4544E-05],[49.769008,-3.6607E-05],[49.772444,-3.7638E-05],[49.77588,-4.0216E-05],[49.779316,-3.8154E-05],[49.782752,-3.6091E-05],[49.786188,-3.4029E-05],[49.789624,-3.7122E-05],[49.79306,-3.6091E-05],[49.796496,-3.5576E-05],[49.799932,-4.1247E-05],[49.803368,-3.8669E-05],[49.806804,-3.6091E-05],[49.81024,-3.5576E-05],[49.813676,-3.3513E-05],[49.817112,-3.7638E-05],[49.820548,-4.1763E-05],[49.823984,-3.6091E-05],[49.82742,-3.4029E-05],[49.830856,-3.6091E-05],[49.834292,-3.4029E-05],[49.837728,-3.9185E-05],[49.841164,-3.6091E-05],[49.8446,-3.3513E-05],[49.848036,-3.7122E-05],[49.851472,-3.6091E-05],[49.854908,-4.3309E-05],[49.858344,-3.8669E-05],[49.86178,-2.7326E-05],[49.865216,-3.1451E-05],[49.868652,-3.7122E-05],[49.872088,-3.97E-05],[49.875524,-3.6091E-05],[49.87896,-3.7122E-05],[49.882396,-3.7122E-05],[49.885832,-3.4029E-05],[49.889268,-3.7122E-05],[49.892704,-3.506E-05],[49.89614,-3.2482E-05],[49.899576,-3.4029E-05],[49.903012,-3.7122E-05],[49.906448,-3.6607E-05],[49.909884,-3.5576E-05],[49.91332,-3.6607E-05],[49.916756,-3.7122E-05]]}
-{"quant":[50.088,-0.83883],"mems":[[49.988912,-3.6607E-05],[49.992348,-3.7122E-05],[49.995784,-4.0216E-05],[49.99922,-3.8154E-05],[50.002656,-3.6091E-05],[50.006092,-3.7122E-05],[50.009528,-3.4029E-05],[50.012964,-3.8154E-05],[50.0164,-4.0216E-05],[50.019836,-3.3513E-05],[50.023272,-3.4544E-05],[50.026708,-4.1247E-05],[50.030144,-3.9185E-05],[50.03358,-3.7638E-05],[50.037016,-3.8669E-05],[50.040452,-3.2998E-05],[50.043888,-3.0935E-05],[50.047324,-3.8669E-05],[50.05076,-3.97E-05],[50.054196,-3.8154E-05],[50.057632,-3.9185E-05],[50.061068,-3.8154E-05],[50.064504,-3.97E-05],[50.06794,-3.8669E-05],[50.071376,-4.0216E-05],[50.074812,-3.9185E-05],[50.078248,-3.4544E-05],[50.081684,-3.5576E-05],[50.08512,-3.3513E-05],[50.088556,-3.4029E-05],[50.091992,-3.7122E-05],[50.095428,-3.5576E-05],[50.098864,-3.6607E-05],[50.1023,-3.8669E-05],[50.105736,-3.6607E-05],[50.109172,-3.6091E-05],[50.112608,-3.6607E-05],[50.116044,-3.506E-05],[50.11948,-3.1967E-05],[50.122916,-3.2482E-05],[50.126352,-3.6091E-05],[50.129788,-3.7122E-05],[50.133224,-3.6607E-05],[50.13666,-3.1967E-05],[50.140096,-3.2482E-05],[50.143532,-3.2482E-05],[50.146968,-3.2482E-05],[50.150404,-3.4029E-05],[50.15384,-3.3513E-05],[50.157276,-4.0216E-05],[50.160712,-3.7638E-05],[50.164148,-3.6607E-05],[50.167584,-3.97E-05],[50.17102,-4.0216E-05],[50.174456,-4.2278E-05],[50.177892,-3.4544E-05],[50.181328,-3.2482E-05],[50.184764,-3.2482E-05],[50.1882,-3.2998E-05],[50.191636,-3.7638E-05],[50.195072,-3.7638E-05],[50.198508,-3.97E-05],[50.201944,-3.9185E-05],[50.20538,-3.7122E-05],[50.208816,-3.97E-05],[50.212252,-4.0732E-05],[50.215688,-3.97E-05],[50.219124,-3.7638E-05],[50.22256,-3.6607E-05],[50.225996,-4.0216E-05],[50.229432,-4.0732E-05],[50.232868,-3.97E-05],[50.236304,-3.506E-05],[50.23974,-3.6091E-05],[50.243176,-4.0732E-05],[50.246612,-4.1247E-05],[50.250048,-4.0732E-05],[50.253484,-4.1763E-05],[50.25692,-4.0732E-05],[50.260356,-3.6091E-05],[50.263792,-3.8669E-05],[50.267228,-3.9185E-05],[50.270664,-3.9185E-05],[50.2741,-4.2278E-05],[50.277536,-3.7638E-05],[50.280972,-3.7122E-05],[50.284408,-3.5576E-05],[50.287844,-3.4029E-05]]}
-{"quant":[50.441,-0.86163],"mems":[[50.34282,-4.0216E-05],[50.346256,-3.97E-05],[50.349692,-3.7638E-05],[50.353128,-4.2278E-05],[50.356564,-4.1247E-05],[50.36,-3.6091E-05],[50.363436,-3.4544E-05],[50.366872,-3.8669E-05],[50.370308,-3.8669E-05],[50.373744,-3.6091E-05],[50.37718,-3.8669E-05],[50.380616,-3.7122E-05],[50.384052,-3.5576E-05],[50.387488,-3.5576E-05],[50.390924,-3.6607E-05],[50.39436,-3.7638E-05],[50.397796,-3.506E-05],[50.401232,-3.3513E-05],[50.404668,-3.7638E-05],[50.408104,-3.8154E-05],[50.41154,-3.7122E-05],[50.414976,-3.7122E-05],[50.418412,-3.7122E-05],[50.421848,-4.0216E-05],[50.425284,-3.7638E-05],[50.42872,-3.6607E-05],[50.432156,-3.5576E-05],[50.435592,-3.3513E-05],[50.439028,-3.2482E-05],[50.442464,-2.9904E-05],[50.4459,-3.8154E-05],[50.449336,-3.6607E-05],[50.452772,-3.4029E-05],[50.456208,-3.7122E-05],[50.459644,-3.1451E-05],[50.46308,-3.4029E-05],[50.466516,-4.0216E-05],[50.469952,-3.8154E-05],[50.473388,-3.6091E-05],[50.476824,-3.6091E-05],[50.48026,-3.5576E-05],[50.483696,-3.6607E-05],[50.487132,-3.6091E-05],[50.490568,-3.6607E-05],[50.494004,-3.6607E-05],[50.49744,-4.3309E-05],[50.500876,-4.3309E-05],[50.504312,-3.3513E-05],[50.507748,-3.6091E-05],[50.511184,-3.5576E-05],[50.51462,-3.6607E-05],[50.518056,-3.8154E-05],[50.521492,-3.4029E-05],[50.524928,-3.8669E-05],[50.528364,-3.8154E-05],[50.5318,-3.5576E-05],[50.535236,-3.7638E-05],[50.538672,-3.6091E-05],[50.542108,-3.8154E-05],[50.545544,-3.7122E-05],[50.54898,-3.2998E-05],[50.552416,-3.5576E-05],[50.555852,-3.6091E-05],[50.559288,-3.2998E-05],[50.562724,-3.4544E-05],[50.56616,-3.7122E-05],[50.569596,-3.5576E-05],[50.573032,-3.6091E-05],[50.576468,-3.506E-05],[50.579904,-3.1967E-05],[50.58334,-3.3513E-05],[50.586776,-3.8669E-05],[50.590212,-3.7122E-05],[50.593648,-3.1967E-05],[50.597084,-3.2998E-05],[50.60052,-3.506E-05],[50.603956,-3.6091E-05],[50.607392,-3.97E-05],[50.610828,-4.3309E-05],[50.614264,-3.8669E-05],[50.6177,-3.3513E-05],[50.621136,-2.9904E-05],[50.624572,-3.2998E-05],[50.628008,-4.1247E-05],[50.631444,-3.6091E-05],[50.63488,-3.1967E-05],[50.638316,-3.8154E-05]]}
-{"quant":[50.8011,-0.86998],"mems":[[50.7036,-3.4544E-05],[50.707036,-3.7122E-05],[50.710472,-3.8154E-05],[50.713908,-3.6091E-05],[50.717344,-3.7638E-05],[50.72078,-3.3513E-05],[50.724216,-3.97E-05],[50.727652,-3.7638E-05],[50.731088,-3.8669E-05],[50.734524,-4.0732E-05],[50.73796,-3.5576E-05],[50.741396,-3.7122E-05],[50.744832,-3.4544E-05],[50.748268,-3.97E-05],[50.751704,-3.8154E-05],[50.75514,-3.4029E-05],[50.758576,-4.0216E-05],[50.762012,-3.7122E-05],[50.765448,-3.506E-05],[50.768884,-4.0732E-05],[50.77232,-4.2794E-05],[50.775756,-4.0216E-05],[50.779192,-3.4029E-05],[50.782628,-3.1451E-05],[50.786064,-3.8669E-05],[50.7895,-4.3309E-05],[50.792936,-3.97E-05],[50.796372,-4.1763E-05],[50.799808,-4.1247E-05],[50.803244,-3.6607E-05],[50.80668,-3.7638E-05],[50.810116,-3.6607E-05],[50.813552,-3.5576E-05],[50.816988,-3.7638E-05],[50.820424,-3.6607E-05],[50.82386,-3.7638E-05],[50.827296,-3.7638E-05],[50.830732,-3.4029E-05],[50.834168,-3.6091E-05],[50.837604,-3.6091E-05],[50.84104,-3.5576E-05],[50.844476,-3.8154E-05],[50.847912,-4.0216E-05],[50.851348,-3.97E-05],[50.854784,-3.6091E-05],[50.85822,-3.6091E-05],[50.861656,-3.6091E-05],[50.865092,-3.7638E-05],[50.868528,-3.506E-05],[50.871964,-3.6607E-05],[50.8754,-3.9185E-05],[50.878836,-3.8669E-05],[50.882272,-3.9185E-05],[50.885708,-4.0732E-05],[50.889144,-4.2278E-05],[50.89258,-3.8669E-05],[50.896016,-3.9185E-05],[50.899452,-3.7122E-05],[50.902888,-3.4029E-05],[50.906324,-4.0732E-05],[50.90976,-4.0732E-05],[50.913196,-3.97E-05],[50.916632,-3.7638E-05],[50.920068,-3.1451E-05],[50.923504,-3.5576E-05],[50.92694,-4.1247E-05],[50.930376,-3.8154E-05],[50.933812,-3.6607E-05],[50.937248,-3.506E-05],[50.940684,-3.5576E-05],[50.94412,-3.6091E-05],[50.947556,-3.2998E-05],[50.950992,-3.4544E-05],[50.954428,-3.6607E-05],[50.957864,-3.2998E-05],[50.9613,-3.042E-05],[50.964736,-3.4029E-05],[50.968172,-4.0216E-05],[50.971608,-3.7638E-05],[50.975044,-3.1451E-05],[50.97848,-3.6607E-05],[50.981916,-3.8154E-05],[50.985352,-3.7122E-05],[50.988788,-3.5576E-05],[50.992224,-3.4544E-05],[50.99566,-3.7638E-05],[50.999096,-3.2998E-05]]}
-{"quant":[51.2063,-0.87702],"mems":[[51.109048,-3.7638E-05],[51.112484,-3.4029E-05],[51.11592,-3.4544E-05],[51.119356,-3.506E-05],[51.122792,-3.2998E-05],[51.126228,-3.1451E-05],[51.129664,-3.4544E-05],[51.1331,-4.0216E-05],[51.136536,-3.8154E-05],[51.139972,-3.4029E-05],[51.143408,-3.5576E-05],[51.146844,-3.8669E-05],[51.15028,-3.4544E-05],[51.153716,-3.2998E-05],[51.157152,-3.3513E-05],[51.160588,-3.1451E-05],[51.164024,-3.4544E-05],[51.16746,-3.6091E-05],[51.170896,-3.8154E-05],[51.174332,-4.0732E-05],[51.177768,-3.4029E-05],[51.181204,-3.6091E-05],[51.18464,-4.1247E-05],[51.188076,-3.9185E-05],[51.191512,-3.9185E-05],[51.194948,-3.6091E-05],[51.198384,-3.506E-05],[51.20182,-3.8154E-05],[51.205256,-4.1247E-05],[51.208692,-3.7638E-05],[51.212128,-3.4544E-05],[51.215564,-3.6607E-05],[51.219,-3.3513E-05],[51.222436,-3.2998E-05],[51.225872,-3.4029E-05],[51.229308,-3.6607E-05],[51.232744,-4.1247E-05],[51.23618,-4.0216E-05],[51.239616,-3.6091E-05],[51.243052,-3.8154E-05],[51.246488,-4.0216E-05],[51.249924,-3.7638E-05],[51.25336,-4.2278E-05],[51.256796,-3.6607E-05],[51.260232,-3.1451E-05],[51.263668,-3.8669E-05],[51.267104,-3.8154E-05],[51.27054,-4.2794E-05],[51.273976,-3.9185E-05],[51.277412,-3.4029E-05],[51.280848,-3.8154E-05],[51.284284,-3.1451E-05],[51.28772,-3.4029E-05],[51.291156,-3.8154E-05],[51.294592,-4.0216E-05],[51.298028,-4.0732E-05],[51.301464,-3.0935E-05],[51.3049,-3.4544E-05],[51.308336,-3.6091E-05],[51.311772,-3.2998E-05],[51.315208,-3.3513E-05],[51.318644,-3.1451E-05],[51.32208,-3.5576E-05],[51.325516,-3.6607E-05],[51.328952,-3.8669E-05],[51.332388,-3.7638E-05],[51.335824,-3.5576E-05],[51.33926,-3.2998E-05],[51.342696,-3.2998E-05],[51.346132,-3.8154E-05],[51.349568,-3.4544E-05],[51.353004,-3.7122E-05],[51.35644,-3.9185E-05],[51.359876,-3.4029E-05],[51.363312,-3.4544E-05],[51.366748,-3.7638E-05],[51.370184,-3.97E-05],[51.37362,-3.7122E-05],[51.377056,-3.1967E-05],[51.380492,-3.7122E-05],[51.383928,-4.2794E-05],[51.387364,-3.8154E-05],[51.3908,-3.6607E-05],[51.394236,-4.0216E-05],[51.397672,-4.0216E-05],[51.401108,-3.5576E-05],[51.404544,-3.8154E-05]]}
-{"quant":[51.5681,-0.90097],"mems":[[51.469828,-3.8154E-05],[51.473264,-3.4544E-05],[51.4767,-3.7638E-05],[51.480136,-3.506E-05],[51.483572,-3.97E-05],[51.487008,-3.8669E-05],[51.490444,-3.2998E-05],[51.49388,-3.8669E-05],[51.497316,-3.5576E-05],[51.500752,-3.3513E-05],[51.504188,-3.8669E-05],[51.507624,-3.97E-05],[51.51106,-3.5576E-05],[51.514496,-3.1967E-05],[51.517932,-3.5576E-05],[51.521368,-3.4029E-05],[51.524804,-3.7122E-05],[51.52824,-3.8669E-05],[51.531676,-3.9185E-05],[51.535112,-3.8154E-05],[51.538548,-3.506E-05],[51.541984,-3.9185E-05],[51.54542,-3.6091E-05],[51.548856,-3.6607E-05],[51.552292,-3.8669E-05],[51.555728,-3.7638E-05],[51.559164,-3.506E-05],[51.5626,-3.4029E-05],[51.566036,-4.0216E-05],[51.569472,-3.6607E-05],[51.572908,-3.97E-05],[51.576344,-4.0216E-05],[51.57978,-3.5576E-05],[51.583216,-4.0732E-05],[51.586652,-3.9185E-05],[51.590088,-3.8154E-05],[51.593524,-3.6607E-05],[51.59696,-3.3513E-05],[51.600396,-3.506E-05],[51.603832,-3.4544E-05],[51.607268,-3.6091E-05],[51.610704,-3.4029E-05],[51.61414,-3.6091E-05],[51.617576,-3.6091E-05],[51.621012,-3.6091E-05],[51.624448,-3.6091E-05],[51.627884,-3.1451E-05],[51.63132,-3.97E-05],[51.634756,-4.0732E-05],[51.638192,-3.8669E-05],[51.641628,-3.97E-05],[51.645064,-3.8154E-05],[51.6485,-3.6607E-05],[51.651936,-3.5576E-05],[51.655372,-3.8154E-05],[51.658808,-3.7122E-05],[51.662244,-3.7122E-05],[51.66568,-3.7122E-05],[51.669116,-3.6607E-05],[51.672552,-4.0732E-05],[51.675988,-4.1247E-05],[51.679424,-4.1763E-05],[51.68286,-4.0732E-05],[51.686296,-3.97E-05],[51.689732,-4.0216E-05],[51.693168,-4.0216E-05],[51.696604,-3.4544E-05],[51.70004,-2.9904E-05],[51.703476,-3.4029E-05],[51.706912,-3.97E-05],[51.710348,-3.7122E-05],[51.713784,-3.4029E-05],[51.71722,-3.6091E-05],[51.720656,-3.7122E-05],[51.724092,-3.97E-05],[51.727528,-3.506E-05],[51.730964,-3.4544E-05],[51.7344,-3.6607E-05],[51.737836,-3.2998E-05],[51.741272,-4.0216E-05],[51.744708,-4.4341E-05],[51.748144,-3.97E-05],[51.75158,-3.97E-05],[51.755016,-3.7638E-05],[51.758452,-3.5576E-05],[51.761888,-3.6091E-05],[51.765324,-3.506E-05]]}
-{"quant":[51.9372,-0.93784],"mems":[[51.858096,-3.506E-05],[51.861532,-3.7122E-05],[51.864968,-3.6607E-05],[51.868404,-3.7638E-05],[51.87184,-4.3825E-05],[51.875276,-4.2794E-05],[51.878712,-3.6091E-05],[51.882148,-3.1967E-05],[51.885584,-3.4544E-05],[51.88902,-3.6091E-05],[51.892456,-3.8154E-05],[51.895892,-4.1247E-05],[51.899328,-3.506E-05],[51.902764,-3.4544E-05],[51.9062,-3.6607E-05],[51.909636,-3.9185E-05],[51.913072,-3.8669E-05],[51.916508,-3.6091E-05],[51.919944,-3.9185E-05],[51.92338,-3.6607E-05],[51.926816,-3.8669E-05],[51.930252,-3.97E-05],[51.933688,-3.6607E-05],[51.937124,-3.8154E-05],[51.94056,-3.8154E-05],[51.943996,-3.9185E-05],[51.947432,-3.6607E-05],[51.950868,-3.8154E-05],[51.954304,-4.1763E-05],[51.95774,-3.8154E-05],[51.961176,-3.506E-05],[51.964612,-3.5576E-05],[51.968048,-4.1763E-05],[51.971484,-4.1763E-05],[51.97492,-3.6091E-05],[51.978356,-3.6607E-05],[51.981792,-4.1763E-05],[51.985228,-3.97E-05],[51.988664,-3.6607E-05],[51.9921,-4.0732E-05],[51.995536,-3.8154E-05],[51.998972,-3.6091E-05],[52.002408,-4.1763E-05],[52.005844,-3.8154E-05],[52.00928,-3.6607E-05],[52.012716,-4.0732E-05],[52.016152,-3.5576E-05],[52.019588,-3.3513E-05],[52.023024,-3.506E-05],[52.02646,-3.4544E-05],[52.029896,-3.8154E-05],[52.033332,-3.8154E-05],[52.036768,-3.6091E-05],[52.040204,-3.6091E-05],[52.04364,-4.0732E-05],[52.047076,-4.4341E-05],[52.050512,-3.7122E-05],[52.053948,-3.3513E-05],[52.057384,-3.506E-05],[52.06082,-3.6091E-05],[52.064256,-3.8669E-05],[52.067692,-3.7638E-05],[52.071128,-3.6091E-05],[52.074564,-3.6091E-05],[52.078,-3.5576E-05],[52.081437,-3.8669E-05],[52.084875,-3.506E-05],[52.088312,-3.3513E-05],[52.091749,-4.1247E-05],[52.095187,-3.8154E-05],[52.098624,-3.8154E-05],[52.102061,-3.6607E-05],[52.105499,-3.506E-05],[52.108936,-4.0216E-05],[52.112373,-3.5576E-05],[52.115811,-3.2482E-05],[52.119248,-3.1967E-05],[52.122685,-3.7122E-05],[52.126123,-4.1247E-05],[52.12956,-3.6607E-05],[52.132997,-3.7122E-05],[52.136435,-3.4029E-05],[52.139872,-3.5576E-05],[52.143309,-3.8154E-05],[52.146747,-3.506E-05],[52.150184,-4.0216E-05],[52.153621,-4.0732E-05]]}
-{"quant":[52.33,-0.97285],"mems":[[52.23268,-3.8154E-05],[52.236117,-3.6091E-05],[52.239555,-3.5576E-05],[52.242992,-3.7638E-05],[52.246429,-3.4544E-05],[52.249867,-3.2998E-05],[52.253304,-3.3513E-05],[52.256741,-3.7122E-05],[52.260179,-4.1247E-05],[52.263616,-4.1763E-05],[52.267053,-4.1247E-05],[52.270491,-3.9185E-05],[52.273928,-3.8154E-05],[52.277365,-3.8669E-05],[52.280803,-3.9185E-05],[52.28424,-3.7122E-05],[52.287677,-3.7638E-05],[52.291115,-4.0732E-05],[52.294552,-3.5576E-05],[52.297989,-3.4544E-05],[52.301427,-4.3309E-05],[52.304864,-4.2278E-05],[52.308301,-4.2278E-05],[52.311739,-4.2278E-05],[52.315176,-3.3513E-05],[52.318613,-3.506E-05],[52.322051,-3.8154E-05],[52.325488,-3.7122E-05],[52.328925,-3.7122E-05],[52.332363,-3.5576E-05],[52.3358,-3.4544E-05],[52.339237,-2.9904E-05],[52.342675,-3.1451E-05],[52.346112,-3.8154E-05],[52.349549,-3.506E-05],[52.352987,-3.2482E-05],[52.356424,-3.5576E-05],[52.359861,-3.8669E-05],[52.363299,-3.7122E-05],[52.366736,-3.3513E-05],[52.370173,-3.2998E-05],[52.373611,-3.506E-05],[52.377048,-3.506E-05],[52.380485,-3.6091E-05],[52.383923,-3.6091E-05],[52.38736,-3.1967E-05],[52.390797,-3.6607E-05],[52.394235,-3.7638E-05],[52.397672,-3.7122E-05],[52.401109,-3.7122E-05],[52.404547,-3.2482E-05],[52.407984,-3.7638E-05],[52.411421,-3.4544E-05],[52.414859,-3.5576E-05],[52.418296,-3.97E-05],[52.421733,-3.3513E-05],[52.425171,-3.7638E-05],[52.428608,-3.6607E-05],[52.432045,-3.4544E-05],[52.435483,-3.5576E-05],[52.43892,-3.8154E-05],[52.442357,-4.3825E-05],[52.445795,-3.97E-05],[52.449232,-4.1247E-05],[52.452669,-4.0732E-05],[52.456107,-3.3513E-05],[52.459544,-3.9185E-05],[52.462981,-4.0732E-05],[52.466419,-3.6607E-05],[52.469856,-4.0732E-05],[52.473293,-3.506E-05],[52.476731,-3.7122E-05],[52.480168,-4.0732E-05],[52.483605,-3.8669E-05],[52.487043,-4.3825E-05],[52.49048,-3.97E-05],[52.493917,-3.7638E-05],[52.497355,-3.5576E-05],[52.500792,-3.6091E-05],[52.504229,-4.1763E-05],[52.507667,-4.4341E-05],[52.511104,-4.0216E-05],[52.514541,-3.4029E-05],[52.517979,-3.7122E-05],[52.521416,-3.5576E-05],[52.524853,-3.7638E-05],[52.528291,-3.9185E-05]]}
-{"quant":[52.7224,-0.99835],"mems":[[52.624536,-3.7122E-05],[52.627973,-3.7638E-05],[52.631411,-3.9185E-05],[52.634848,-3.3513E-05],[52.638285,-3.4544E-05],[52.641723,-3.506E-05],[52.64516,-3.506E-05],[52.648597,-3.6091E-05],[52.652035,-3.4544E-05],[52.655472,-3.506E-05],[52.658909,-3.8669E-05],[52.662347,-4.1247E-05],[52.665784,-3.4029E-05],[52.669221,-3.5576E-05],[52.672659,-3.6091E-05],[52.676096,-3.5576E-05],[52.679533,-3.8669E-05],[52.682971,-3.506E-05],[52.686408,-3.506E-05],[52.689845,-3.4029E-05],[52.693283,-3.5576E-05],[52.69672,-3.6091E-05],[52.700157,-3.2998E-05],[52.703595,-3.4544E-05],[52.707032,-3.4544E-05],[52.710469,-3.4029E-05],[52.713907,-3.4544E-05],[52.717344,-3.6091E-05],[52.720781,-3.9185E-05],[52.724219,-3.9185E-05],[52.727656,-3.97E-05],[52.731093,-4.1763E-05],[52.734531,-3.506E-05],[52.737968,-3.2998E-05],[52.741405,-3.7122E-05],[52.744843,-3.506E-05],[52.74828,-3.6607E-05],[52.751717,-3.506E-05],[52.755155,-3.042E-05],[52.758592,-3.5576E-05],[52.762029,-3.8669E-05],[52.765467,-3.5576E-05],[52.768904,-3.506E-05],[52.772341,-3.6607E-05],[52.775779,-3.8154E-05],[52.779216,-3.506E-05],[52.782653,-3.5576E-05],[52.786091,-3.6091E-05],[52.789528,-3.506E-05],[52.792965,-3.7122E-05],[52.796403,-3.8669E-05],[52.79984,-4.3309E-05],[52.803277,-4.0216E-05],[52.806715,-3.8154E-05],[52.810152,-3.7638E-05],[52.813589,-3.506E-05],[52.817027,-3.6091E-05],[52.820464,-3.9185E-05],[52.823901,-3.97E-05],[52.827339,-3.6607E-05],[52.830776,-3.4544E-05],[52.834213,-3.2998E-05],[52.837651,-3.7122E-05],[52.841088,-4.2794E-05],[52.844525,-3.6091E-05],[52.847963,-3.4029E-05],[52.8514,-3.97E-05],[52.854837,-4.0216E-05],[52.858275,-4.0216E-05],[52.861712,-3.6607E-05],[52.865149,-3.4544E-05],[52.868587,-3.8154E-05],[52.872024,-3.7122E-05],[52.875461,-3.4544E-05],[52.878899,-3.7122E-05],[52.882336,-4.1247E-05],[52.885773,-3.8154E-05],[52.889211,-3.8669E-05],[52.892648,-3.8154E-05],[52.896085,-3.4544E-05],[52.899523,-4.0216E-05],[52.90296,-4.1763E-05],[52.906397,-3.6091E-05],[52.909835,-3.5576E-05],[52.913272,-3.5576E-05],[52.916709,-3.7638E-05],[52.920147,-3.7638E-05]]}
-{"quant":[53.0956,-1.0192],"mems":[[52.995768,-3.1967E-05],[52.999205,-3.8154E-05],[53.002643,-3.8669E-05],[53.00608,-3.8669E-05],[53.009517,-3.7122E-05],[53.012955,-3.5576E-05],[53.016392,-3.8669E-05],[53.019829,-3.3513E-05],[53.023267,-3.6607E-05],[53.026704,-4.3825E-05],[53.030141,-3.9185E-05],[53.033579,-3.4029E-05],[53.037016,-3.506E-05],[53.040453,-3.6091E-05],[53.043891,-3.6607E-05],[53.047328,-3.7638E-05],[53.050765,-3.6091E-05],[53.054203,-3.6607E-05],[53.05764,-3.5576E-05],[53.061077,-3.5576E-05],[53.064515,-3.9185E-05],[53.067952,-3.7638E-05],[53.071389,-3.4029E-05],[53.074827,-3.4029E-05],[53.078264,-3.6091E-05],[53.081701,-3.97E-05],[53.085139,-3.6091E-05],[53.088576,-3.5576E-05],[53.092013,-3.5576E-05],[53.095451,-3.3513E-05],[53.098888,-3.8154E-05],[53.102325,-3.6607E-05],[53.105763,-3.5576E-05],[53.1092,-3.6091E-05],[53.112637,-3.4544E-05],[53.116075,-3.5576E-05],[53.119512,-3.6607E-05],[53.122949,-3.7122E-05],[53.126387,-3.6607E-05],[53.129824,-3.5576E-05],[53.133261,-3.506E-05],[53.136699,-3.6091E-05],[53.140136,-3.2998E-05],[53.143573,-3.5576E-05],[53.147011,-4.0216E-05],[53.150448,-3.506E-05],[53.153885,-3.7122E-05],[53.157323,-3.9185E-05],[53.16076,-4.0216E-05],[53.164197,-3.9185E-05],[53.167635,-3.5576E-05],[53.171072,-3.5576E-05],[53.174509,-3.4544E-05],[53.177947,-3.6091E-05],[53.181384,-3.6091E-05],[53.184821,-3.5576E-05],[53.188259,-3.9185E-05],[53.191696,-3.8154E-05],[53.195133,-3.9185E-05],[53.198571,-4.2278E-05],[53.202008,-3.7638E-05],[53.205445,-3.6607E-05],[53.208883,-3.9185E-05],[53.21232,-3.6607E-05],[53.215757,-3.6091E-05],[53.219195,-3.7638E-05],[53.222632,-3.5576E-05],[53.226069,-3.6091E-05],[53.229507,-3.8154E-05],[53.232944,-3.7638E-05],[53.236381,-3.8154E-05],[53.239819,-4.0216E-05],[53.243256,-4.1247E-05],[53.246693,-4.1247E-05],[53.250131,-3.7122E-05],[53.253568,-3.6607E-05],[53.257005,-3.6607E-05],[53.260443,-3.8669E-05],[53.26388,-4.4341E-05],[53.267317,-3.9185E-05],[53.270755,-3.4029E-05],[53.274192,-3.4544E-05],[53.277629,-3.2998E-05],[53.281067,-3.5576E-05],[53.284504,-3.7638E-05],[53.287941,-3.7122E-05],[53.291379,-3.6607E-05],[53.294816,-3.4029E-05]]}
-{"quant":[53.4466,-1.0404],"mems":[[53.349813,-3.506E-05],[53.353251,-3.1967E-05],[53.356688,-3.7122E-05],[53.360125,-3.506E-05],[53.363563,-3.8154E-05],[53.367,-4.1247E-05],[53.370437,-3.9185E-05],[53.373875,-3.7638E-05],[53.377312,-3.506E-05],[53.380749,-3.9185E-05],[53.384187,-3.7122E-05],[53.387624,-3.5576E-05],[53.391061,-3.3513E-05],[53.394499,-3.2482E-05],[53.397936,-4.0216E-05],[53.401373,-3.8669E-05],[53.404811,-3.8669E-05],[53.408248,-3.7638E-05],[53.411685,-3.0935E-05],[53.415123,-3.1967E-05],[53.41856,-3.4029E-05],[53.421997,-3.6607E-05],[53.425435,-3.6607E-05],[53.428872,-3.5576E-05],[53.432309,-3.8154E-05],[53.435747,-3.506E-05],[53.439184,-3.6607E-05],[53.442621,-3.7638E-05],[53.446059,-3.6607E-05],[53.449496,-3.97E-05],[53.452933,-3.4029E-05],[53.456371,-3.3513E-05],[53.459808,-3.506E-05],[53.463245,-3.4544E-05],[53.466683,-3.9185E-05],[53.47012,-3.5576E-05],[53.473557,-3.8154E-05],[53.476995,-3.9185E-05],[53.480432,-3.7122E-05],[53.483869,-3.9185E-05],[53.487307,-3.7638E-05],[53.490744,-3.8154E-05],[53.494181,-3.506E-05],[53.497619,-3.4544E-05],[53.501056,-3.8154E-05],[53.504493,-3.6607E-05],[53.507931,-3.9185E-05],[53.511368,-3.7122E-05],[53.514805,-3.4029E-05],[53.518243,-3.9185E-05],[53.52168,-4.0216E-05],[53.525117,-3.7638E-05],[53.528555,-3.6091E-05],[53.531992,-3.4029E-05],[53.535429,-3.506E-05],[53.538867,-3.8154E-05],[53.542304,-3.8154E-05],[53.545741,-3.5576E-05],[53.549179,-3.5576E-05],[53.552616,-3.6607E-05],[53.556053,-4.0216E-05],[53.559491,-4.1763E-05],[53.562928,-3.9185E-05],[53.566365,-3.7122E-05],[53.569803,-3.2482E-05],[53.57324,-3.1967E-05],[53.576677,-3.4029E-05],[53.580115,-3.4544E-05],[53.583552,-3.6091E-05],[53.586989,-3.2998E-05],[53.590427,-3.2998E-05],[53.593864,-3.1967E-05],[53.597301,-3.1967E-05],[53.600739,-3.6091E-05],[53.604176,-3.1967E-05],[53.607613,-3.2482E-05],[53.611051,-3.7122E-05],[53.614488,-4.0732E-05],[53.617925,-4.2278E-05],[53.621363,-3.9185E-05],[53.6248,-4.0216E-05],[53.628237,-3.6607E-05],[53.631675,-3.4029E-05],[53.635112,-3.7638E-05],[53.638549,-4.0216E-05],[53.641987,-4.1763E-05],[53.645424,-3.8669E-05]]}
-{"quant":[53.8143,-1.0624],"mems":[[53.717608,-4.0732E-05],[53.721045,-3.97E-05],[53.724483,-3.3513E-05],[53.72792,-3.7122E-05],[53.731357,-3.5576E-05],[53.734795,-3.042E-05],[53.738232,-3.6607E-05],[53.741669,-3.7638E-05],[53.745107,-4.0216E-05],[53.748544,-3.7122E-05],[53.751981,-3.2998E-05],[53.755419,-3.6091E-05],[53.758856,-3.4544E-05],[53.762293,-3.7638E-05],[53.765731,-3.9185E-05],[53.769168,-3.8669E-05],[53.772605,-3.8669E-05],[53.776043,-3.8669E-05],[53.77948,-3.9185E-05],[53.782917,-4.0732E-05],[53.786355,-3.7638E-05],[53.789792,-3.042E-05],[53.793229,-3.506E-05],[53.796667,-3.6607E-05],[53.800104,-3.7122E-05],[53.803541,-3.97E-05],[53.806979,-3.506E-05],[53.810416,-3.4544E-05],[53.813853,-3.3513E-05],[53.817291,-3.7122E-05],[53.820728,-4.2794E-05],[53.824165,-4.1763E-05],[53.827603,-3.7638E-05],[53.83104,-3.6607E-05],[53.834477,-3.9185E-05],[53.837915,-3.6091E-05],[53.841352,-3.6091E-05],[53.844789,-3.6091E-05],[53.848227,-3.6607E-05],[53.851664,-3.5576E-05],[53.855101,-3.5576E-05],[53.858539,-3.9185E-05],[53.861976,-3.8669E-05],[53.865413,-3.7638E-05],[53.868851,-3.4544E-05],[53.872288,-3.1967E-05],[53.875725,-3.6091E-05],[53.879163,-4.1247E-05],[53.8826,-3.9185E-05],[53.886037,-3.8154E-05],[53.889475,-3.5576E-05],[53.892912,-3.0935E-05],[53.896349,-3.7122E-05],[53.899787,-3.8669E-05],[53.903224,-3.5576E-05],[53.906661,-3.2998E-05],[53.910099,-3.4544E-05],[53.913536,-3.7638E-05],[53.916973,-3.7122E-05],[53.920411,-3.8154E-05],[53.923848,-3.7122E-05],[53.927285,-3.7122E-05],[53.930723,-3.506E-05],[53.93416,-3.7638E-05],[53.937597,-3.8669E-05],[53.941035,-3.7122E-05],[53.944472,-3.7122E-05],[53.947909,-3.1451E-05],[53.951347,-3.6607E-05],[53.954784,-3.9185E-05],[53.958221,-3.9185E-05],[53.961659,-4.0216E-05],[53.965096,-3.6091E-05],[53.968533,-3.506E-05],[53.971971,-3.6091E-05],[53.975408,-4.1763E-05],[53.978845,-4.1763E-05],[53.982283,-3.9185E-05],[53.98572,-4.0732E-05],[53.989157,-3.6091E-05],[53.992595,-3.1967E-05],[53.996032,-3.6607E-05],[53.999469,-3.7638E-05],[54.002907,-3.6607E-05],[54.006344,-3.5576E-05],[54.009781,-3.6607E-05],[54.013219,-3.8154E-05]]}
-{"quant":[54.1886,-1.0823],"mems":[[54.08884,-3.8669E-05],[54.092277,-3.6091E-05],[54.095715,-3.2482E-05],[54.099152,-3.4544E-05],[54.102589,-3.7122E-05],[54.106027,-3.6091E-05],[54.109464,-3.4544E-05],[54.112901,-3.7122E-05],[54.116339,-3.6607E-05],[54.119776,-3.7122E-05],[54.123213,-3.7638E-05],[54.126651,-3.6607E-05],[54.130088,-3.6607E-05],[54.133525,-3.1967E-05],[54.136963,-3.2482E-05],[54.1404,-3.97E-05],[54.143837,-3.8154E-05],[54.147275,-3.6607E-05],[54.150712,-3.6091E-05],[54.154149,-3.3513E-05],[54.157587,-3.7638E-05],[54.161024,-3.9185E-05],[54.164461,-3.9185E-05],[54.167899,-4.0216E-05],[54.171336,-3.6607E-05],[54.174773,-3.7122E-05],[54.178211,-3.8154E-05],[54.181648,-3.3513E-05],[54.185085,-3.2998E-05],[54.188523,-3.506E-05],[54.19196,-3.3513E-05],[54.195397,-3.6607E-05],[54.198835,-3.8669E-05],[54.202272,-3.7638E-05],[54.205709,-3.8669E-05],[54.209147,-3.5576E-05],[54.212584,-3.7122E-05],[54.216021,-3.6607E-05],[54.219459,-3.8669E-05],[54.222896,-3.7638E-05],[54.226333,-3.1451E-05],[54.229771,-3.506E-05],[54.233208,-3.3513E-05],[54.236645,-3.7122E-05],[54.240083,-4.2794E-05],[54.24352,-3.97E-05],[54.246957,-3.97E-05],[54.250395,-3.8154E-05],[54.253832,-3.6091E-05],[54.257269,-3.3513E-05],[54.260707,-3.4544E-05],[54.264144,-4.0732E-05],[54.267581,-3.97E-05],[54.271019,-3.8669E-05],[54.274456,-3.6607E-05],[54.277893,-3.8154E-05],[54.281331,-3.8669E-05],[54.284768,-3.7638E-05],[54.288205,-3.8669E-05],[54.291643,-3.2482E-05],[54.29508,-3.4029E-05],[54.298517,-3.7122E-05],[54.301955,-3.6091E-05],[54.305392,-3.8669E-05],[54.308829,-3.7122E-05],[54.312267,-3.7638E-05],[54.315704,-4.1247E-05],[54.319141,-4.4341E-05],[54.322579,-4.0216E-05],[54.326016,-3.4544E-05],[54.329453,-3.97E-05],[54.332891,-4.0732E-05],[54.336328,-3.97E-05],[54.339765,-3.8669E-05],[54.343203,-3.506E-05],[54.34664,-3.7122E-05],[54.350077,-3.9185E-05],[54.353515,-3.7638E-05],[54.356952,-3.6607E-05],[54.360389,-3.7638E-05],[54.363827,-4.0732E-05],[54.367264,-4.2278E-05],[54.370701,-3.6091E-05],[54.374139,-3.5576E-05],[54.377576,-3.97E-05],[54.381013,-4.0216E-05],[54.384451,-3.97E-05],[54.387888,-3.8154E-05]]}
-{"quant":[54.5653,-1.0989],"mems":[[54.484133,-4.0216E-05],[54.487571,-3.7122E-05],[54.491008,-3.6607E-05],[54.494445,-3.97E-05],[54.497883,-4.1763E-05],[54.50132,-3.8154E-05],[54.504757,-3.8669E-05],[54.508195,-3.7638E-05],[54.511632,-3.7122E-05],[54.515069,-3.8669E-05],[54.518507,-3.9185E-05],[54.521944,-4.0732E-05],[54.525381,-3.7122E-05],[54.528819,-4.0732E-05],[54.532256,-3.97E-05],[54.535693,-3.7638E-05],[54.539131,-4.2278E-05],[54.542568,-3.7122E-05],[54.546005,-3.506E-05],[54.549443,-3.506E-05],[54.55288,-3.4544E-05],[54.556317,-3.9185E-05],[54.559755,-4.1247E-05],[54.563192,-3.8154E-05],[54.566629,-3.506E-05],[54.570067,-3.5576E-05],[54.573504,-3.6607E-05],[54.576941,-3.5576E-05],[54.580379,-3.3513E-05],[54.583816,-4.0216E-05],[54.587253,-3.97E-05],[54.590691,-3.8154E-05],[54.594128,-3.7122E-05],[54.597565,-3.6607E-05],[54.601003,-4.1763E-05],[54.60444,-3.4544E-05],[54.607877,-3.7122E-05],[54.611315,-4.0216E-05],[54.614752,-3.6091E-05],[54.618189,-4.0216E-05],[54.621627,-3.7638E-05],[54.625064,-3.7638E-05],[54.628501,-3.8154E-05],[54.631939,-3.6607E-05],[54.635376,-3.506E-05],[54.638813,-3.4029E-05],[54.642251,-4.0216E-05],[54.645688,-3.97E-05],[54.649125,-3.3513E-05],[54.652563,-3.7638E-05],[54.656,-3.97E-05],[54.659439,-3.7122E-05],[54.662877,-3.6607E-05],[54.666316,-3.4029E-05],[54.669755,-3.8154E-05],[54.673193,-4.0732E-05],[54.676632,-3.8669E-05],[54.680071,-3.8154E-05],[54.683509,-3.4544E-05],[54.686948,-3.6607E-05],[54.690387,-3.5576E-05],[54.693825,-3.4544E-05],[54.697264,-4.1247E-05],[54.700703,-4.1247E-05],[54.704141,-3.7122E-05],[54.70758,-3.506E-05],[54.711019,-3.6091E-05],[54.714457,-3.8154E-05],[54.717896,-4.0216E-05],[54.721335,-4.0732E-05],[54.724773,-3.6607E-05],[54.728212,-3.6091E-05],[54.731651,-3.6607E-05],[54.735089,-3.5576E-05],[54.738528,-3.8669E-05],[54.741967,-3.8154E-05],[54.745405,-3.7122E-05],[54.748844,-3.7122E-05],[54.752283,-3.5576E-05],[54.755721,-3.8154E-05],[54.75916,-3.8669E-05],[54.762599,-3.9185E-05],[54.766037,-3.6091E-05],[54.769476,-3.6091E-05],[54.772915,-3.7638E-05],[54.776353,-3.506E-05],[54.779792,-3.8669E-05]]}
-{"quant":[54.94,-1.1102],"mems":[[54.841688,-3.8669E-05],[54.845127,-3.506E-05],[54.848565,-3.5576E-05],[54.852004,-3.6607E-05],[54.855443,-3.9185E-05],[54.858881,-3.97E-05],[54.86232,-3.7122E-05],[54.865759,-3.5576E-05],[54.869197,-3.4544E-05],[54.872636,-3.506E-05],[54.876075,-3.8154E-05],[54.879513,-3.9185E-05],[54.882952,-3.5576E-05],[54.886391,-3.6607E-05],[54.889829,-3.6091E-05],[54.893268,-3.1967E-05],[54.896707,-3.6607E-05],[54.900145,-3.9185E-05],[54.903584,-4.1247E-05],[54.907023,-4.0732E-05],[54.910461,-3.8154E-05],[54.9139,-4.0216E-05],[54.917339,-4.0216E-05],[54.920777,-3.8669E-05],[54.924216,-3.7122E-05],[54.927655,-3.6091E-05],[54.931093,-3.6091E-05],[54.934532,-3.97E-05],[54.937971,-3.7122E-05],[54.941409,-3.506E-05],[54.944848,-3.8669E-05],[54.948287,-3.2482E-05],[54.951725,-3.042E-05],[54.955164,-3.6091E-05],[54.958603,-3.9185E-05],[54.962041,-4.2794E-05],[54.96548,-4.0216E-05],[54.968919,-3.8154E-05],[54.972357,-3.8154E-05],[54.975796,-3.6091E-05],[54.979235,-4.3825E-05],[54.982673,-4.5887E-05],[54.986112,-4.1763E-05],[54.989551,-3.7122E-05],[54.992989,-3.4544E-05],[54.996428,-4.0216E-05],[54.999867,-3.5576E-05],[55.003305,-3.4544E-05],[55.006744,-3.9185E-05],[55.010183,-3.506E-05],[55.013621,-3.3513E-05],[55.01706,-3.97E-05],[55.020499,-4.2794E-05],[55.023937,-4.0216E-05],[55.027376,-3.97E-05],[55.030815,-4.1763E-05],[55.034253,-3.97E-05],[55.037692,-3.8669E-05],[55.041131,-3.6091E-05],[55.044569,-3.7638E-05],[55.048008,-3.6091E-05],[55.051447,-3.4029E-05],[55.054885,-3.7122E-05],[55.058324,-3.5576E-05],[55.061763,-3.8669E-05],[55.065201,-4.1763E-05],[55.06864,-3.7638E-05],[55.072079,-3.5576E-05],[55.075517,-3.4544E-05],[55.078956,-3.3513E-05],[55.082395,-3.4029E-05],[55.085833,-3.7638E-05],[55.089272,-3.8669E-05],[55.092711,-3.6607E-05],[55.096149,-3.4544E-05],[55.099588,-3.7638E-05],[55.103027,-4.2278E-05],[55.106465,-4.1247E-05],[55.109904,-3.6607E-05],[55.113343,-3.506E-05],[55.116781,-3.8669E-05],[55.12022,-3.7122E-05],[55.123659,-3.4544E-05],[55.127097,-3.6091E-05],[55.130536,-3.6607E-05],[55.133975,-3.6091E-05],[55.137413,-3.4544E-05]]}
-{"quant":[55.326,-1.1212],"mems":[[55.226819,-3.0935E-05],[55.230257,-3.1967E-05],[55.233696,-3.8669E-05],[55.237135,-3.506E-05],[55.240573,-3.506E-05],[55.244012,-3.7638E-05],[55.247451,-3.5576E-05],[55.250889,-3.506E-05],[55.254328,-3.6091E-05],[55.257767,-3.8154E-05],[55.261205,-4.1763E-05],[55.264644,-3.97E-05],[55.268083,-4.0216E-05],[55.271521,-4.4341E-05],[55.27496,-3.97E-05],[55.278399,-3.5576E-05],[55.281837,-4.0216E-05],[55.285276,-3.6607E-05],[55.288715,-3.3513E-05],[55.292153,-3.8669E-05],[55.295592,-3.8154E-05],[55.299031,-4.1247E-05],[55.302469,-4.3825E-05],[55.305908,-3.97E-05],[55.309347,-3.97E-05],[55.312785,-4.0216E-05],[55.316224,-4.1247E-05],[55.319663,-3.8154E-05],[55.323101,-3.2998E-05],[55.32654,-3.7638E-05],[55.329979,-3.7122E-05],[55.333417,-3.506E-05],[55.336856,-3.6091E-05],[55.340295,-3.5576E-05],[55.343733,-3.7122E-05],[55.347172,-3.4544E-05],[55.350611,-3.8669E-05],[55.354049,-4.2278E-05],[55.357488,-4.0732E-05],[55.360927,-3.8669E-05],[55.364365,-3.4544E-05],[55.367804,-3.8154E-05],[55.371243,-3.8669E-05],[55.374681,-3.7638E-05],[55.37812,-3.6091E-05],[55.381559,-3.8154E-05],[55.384997,-4.0732E-05],[55.388436,-3.6091E-05],[55.391875,-3.4544E-05],[55.395313,-3.7638E-05],[55.398752,-3.8669E-05],[55.402191,-3.2998E-05],[55.405629,-3.4029E-05],[55.409068,-3.8669E-05],[55.412507,-3.4029E-05],[55.415945,-3.5576E-05],[55.419384,-3.6091E-05],[55.422823,-3.0935E-05],[55.426261,-3.2998E-05],[55.4297,-3.6091E-05],[55.433139,-4.0216E-05],[55.436577,-3.6091E-05],[55.440016,-3.3513E-05],[55.443455,-3.9185E-05],[55.446893,-4.0732E-05],[55.450332,-4.1247E-05],[55.453771,-4.0732E-05],[55.457209,-3.8669E-05],[55.460648,-3.506E-05],[55.464087,-3.6607E-05],[55.467525,-3.7638E-05],[55.470964,-3.3513E-05],[55.474403,-3.4544E-05],[55.477841,-3.9185E-05],[55.48128,-4.2278E-05],[55.484719,-4.2794E-05],[55.488157,-4.0216E-05],[55.491596,-3.7638E-05],[55.495035,-3.4544E-05],[55.498473,-3.7122E-05],[55.501912,-3.5576E-05],[55.505351,-3.4544E-05],[55.508789,-3.8669E-05],[55.512228,-3.4544E-05],[55.515667,-3.7638E-05],[55.519105,-3.8669E-05],[55.522544,-3.6091E-05],[55.525983,-3.7638E-05]]}
-{"quant":[55.6732,-1.1348],"mems":[[55.574124,-4.2278E-05],[55.577563,-4.4856E-05],[55.581001,-3.9185E-05],[55.58444,-3.7638E-05],[55.587879,-3.1967E-05],[55.591317,-3.7122E-05],[55.594756,-3.9185E-05],[55.598195,-3.2998E-05],[55.601633,-3.6091E-05],[55.605072,-3.4029E-05],[55.608511,-3.6607E-05],[55.611949,-3.97E-05],[55.615388,-3.6091E-05],[55.618827,-3.8154E-05],[55.622265,-3.506E-05],[55.625704,-3.4029E-05],[55.629143,-3.97E-05],[55.632581,-3.7638E-05],[55.63602,-3.5576E-05],[55.639459,-3.4544E-05],[55.642897,-3.4029E-05],[55.646336,-3.7122E-05],[55.649775,-3.1967E-05],[55.653213,-2.9389E-05],[55.656652,-3.6607E-05],[55.660091,-3.7638E-05],[55.663529,-3.4544E-05],[55.666968,-3.9185E-05],[55.670407,-4.0732E-05],[55.673845,-3.7122E-05],[55.677284,-3.1967E-05],[55.680723,-3.3513E-05],[55.684161,-3.4029E-05],[55.6876,-3.2482E-05],[55.691039,-3.6091E-05],[55.694477,-3.506E-05],[55.697916,-3.6607E-05],[55.701355,-4.0732E-05],[55.704793,-3.6091E-05],[55.708232,-3.3513E-05],[55.711671,-3.7122E-05],[55.715109,-3.5576E-05],[55.718548,-3.4029E-05],[55.721987,-3.4544E-05],[55.725425,-3.506E-05],[55.728864,-3.5576E-05],[55.732303,-3.7122E-05],[55.735741,-3.6607E-05],[55.73918,-3.6607E-05],[55.742619,-3.8669E-05],[55.746057,-3.5576E-05],[55.749496,-3.5576E-05],[55.752935,-3.5576E-05],[55.756373,-3.6607E-05],[55.759812,-3.97E-05],[55.763251,-3.7122E-05],[55.766689,-3.6607E-05],[55.770128,-3.0935E-05],[55.773567,-3.1451E-05],[55.777005,-3.6091E-05],[55.780444,-3.7122E-05],[55.783883,-3.8154E-05],[55.787321,-3.1451E-05],[55.79076,-3.4029E-05],[55.794199,-3.7122E-05],[55.797637,-3.7638E-05],[55.801076,-3.9185E-05],[55.804515,-3.5576E-05],[55.807953,-3.6091E-05],[55.811392,-3.7638E-05],[55.814831,-3.8669E-05],[55.818269,-4.0732E-05],[55.821708,-3.8669E-05],[55.825147,-3.506E-05],[55.828585,-3.5576E-05],[55.832024,-3.4029E-05],[55.835463,-3.2998E-05],[55.838901,-3.506E-05],[55.84234,-3.7638E-05],[55.845779,-3.8669E-05],[55.849217,-3.6607E-05],[55.852656,-3.7122E-05],[55.856095,-3.6607E-05],[55.859533,-3.3513E-05],[55.862972,-3.6091E-05],[55.866411,-3.97E-05],[55.869849,-3.6607E-05]]}
-{"quant":[56.0635,-1.1408],"mems":[[55.966132,-3.4544E-05],[55.969571,-3.5576E-05],[55.973009,-3.97E-05],[55.976448,-3.7122E-05],[55.979887,-3.7638E-05],[55.983325,-3.6091E-05],[55.986764,-3.5576E-05],[55.990203,-4.1763E-05],[55.993641,-4.0216E-05],[55.99708,-4.0732E-05],[56.000519,-3.8669E-05],[56.003957,-3.7122E-05],[56.007396,-3.8669E-05],[56.010835,-3.97E-05],[56.014273,-4.2794E-05],[56.017712,-3.9185E-05],[56.021151,-3.8669E-05],[56.024589,-4.0732E-05],[56.028028,-3.506E-05],[56.031467,-3.506E-05],[56.034905,-3.8154E-05],[56.038344,-3.5576E-05],[56.041783,-3.506E-05],[56.045221,-3.7638E-05],[56.04866,-3.7638E-05],[56.052099,-3.8669E-05],[56.055537,-3.8154E-05],[56.058976,-3.8669E-05],[56.062415,-4.2278E-05],[56.065853,-3.9185E-05],[56.069292,-3.7638E-05],[56.072731,-3.506E-05],[56.076169,-3.2482E-05],[56.079608,-3.6607E-05],[56.083047,-3.6607E-05],[56.086485,-3.7122E-05],[56.089924,-3.6607E-05],[56.093363,-3.6091E-05],[56.096801,-3.7122E-05],[56.10024,-3.4029E-05],[56.103679,-3.6091E-05],[56.107117,-3.6607E-05],[56.110556,-3.6091E-05],[56.113995,-4.0216E-05],[56.117433,-3.8669E-05],[56.120872,-3.6607E-05],[56.124311,-3.7122E-05],[56.127749,-3.7122E-05],[56.131188,-3.4029E-05],[56.134627,-3.7122E-05],[56.138065,-4.1247E-05],[56.141504,-3.6607E-05],[56.144943,-3.6607E-05],[56.148381,-3.7638E-05],[56.15182,-3.5576E-05],[56.155259,-3.9185E-05],[56.158697,-4.0216E-05],[56.162136,-3.7638E-05],[56.165575,-3.6091E-05],[56.169013,-3.1451E-05],[56.172452,-3.5576E-05],[56.175891,-3.6607E-05],[56.179329,-3.4544E-05],[56.182768,-3.8154E-05],[56.186207,-3.4544E-05],[56.189645,-3.8154E-05],[56.193084,-3.8154E-05],[56.196523,-3.4544E-05],[56.199961,-3.97E-05],[56.2034,-3.7638E-05],[56.206839,-3.5576E-05],[56.210277,-3.7638E-05],[56.213716,-3.9185E-05],[56.217155,-3.7122E-05],[56.220593,-3.3513E-05],[56.224032,-3.4544E-05],[56.227471,-3.506E-05],[56.230909,-3.4029E-05],[56.234348,-3.97E-05],[56.237787,-3.97E-05],[56.241225,-3.2998E-05],[56.244664,-3.3513E-05],[56.248103,-3.4029E-05],[56.251541,-3.7122E-05],[56.25498,-3.5576E-05],[56.258419,-3.4029E-05],[56.261857,-3.6607E-05]]}
-{"quant":[56.4498,-1.1394],"mems":[[56.351263,-3.8154E-05],[56.354701,-3.8154E-05],[56.35814,-3.7638E-05],[56.361579,-4.1763E-05],[56.365017,-4.5372E-05],[56.368456,-3.9185E-05],[56.371895,-4.0216E-05],[56.375333,-4.0732E-05],[56.378772,-3.97E-05],[56.382211,-3.8154E-05],[56.385649,-3.4544E-05],[56.389088,-3.7638E-05],[56.392527,-3.6607E-05],[56.395965,-3.6091E-05],[56.399404,-3.8154E-05],[56.402843,-3.7638E-05],[56.406281,-3.5576E-05],[56.40972,-3.5576E-05],[56.413159,-3.2482E-05],[56.416597,-3.1967E-05],[56.420036,-3.7638E-05],[56.423475,-3.4544E-05],[56.426913,-3.2998E-05],[56.430352,-3.6091E-05],[56.433791,-3.6091E-05],[56.437229,-3.6607E-05],[56.440668,-3.6091E-05],[56.444107,-3.6091E-05],[56.447545,-3.7638E-05],[56.450984,-3.5576E-05],[56.454423,-3.6091E-05],[56.457861,-4.1763E-05],[56.4613,-3.1967E-05],[56.464739,-2.8873E-05],[56.468177,-3.6091E-05],[56.471616,-3.7638E-05],[56.475055,-4.0216E-05],[56.478493,-3.8154E-05],[56.481932,-3.8154E-05],[56.485371,-3.8154E-05],[56.488809,-3.506E-05],[56.492248,-3.506E-05],[56.495687,-3.7122E-05],[56.499125,-3.8154E-05],[56.502564,-3.6091E-05],[56.506003,-3.5576E-05],[56.509441,-3.6607E-05],[56.51288,-4.0216E-05],[56.516319,-3.9185E-05],[56.519757,-4.0216E-05],[56.523196,-4.0216E-05],[56.526635,-3.8154E-05],[56.530073,-3.7122E-05],[56.533512,-3.506E-05],[56.536951,-3.506E-05],[56.540389,-3.6091E-05],[56.543828,-4.2794E-05],[56.547267,-3.8669E-05],[56.550705,-3.506E-05],[56.554144,-3.8154E-05],[56.557583,-3.506E-05],[56.561021,-3.6091E-05],[56.56446,-3.6091E-05],[56.567899,-3.6091E-05],[56.571337,-3.7638E-05],[56.574776,-3.6091E-05],[56.578215,-3.2482E-05],[56.581653,-3.6091E-05],[56.585092,-3.7638E-05],[56.588531,-3.6607E-05],[56.591969,-3.8154E-05],[56.595408,-3.97E-05],[56.598847,-4.3309E-05],[56.602285,-3.7122E-05],[56.605724,-3.5576E-05],[56.609163,-3.5576E-05],[56.612601,-3.4544E-05],[56.61604,-3.7122E-05],[56.619479,-3.4544E-05],[56.622917,-3.7122E-05],[56.626356,-3.6607E-05],[56.629795,-3.6607E-05],[56.633233,-3.5576E-05],[56.636672,-3.5576E-05],[56.640111,-3.9185E-05],[56.643549,-3.8669E-05],[56.646988,-3.4544E-05]]}
-{"quant":[56.817,-1.1452],"mems":[[56.7192,-3.6091E-05],[56.722639,-3.8669E-05],[56.726077,-3.7122E-05],[56.729516,-3.8154E-05],[56.732955,-4.0216E-05],[56.736393,-3.8154E-05],[56.739832,-3.9185E-05],[56.743271,-3.8154E-05],[56.746709,-2.9904E-05],[56.750148,-3.2998E-05],[56.753587,-3.5576E-05],[56.757025,-3.5576E-05],[56.760464,-3.8154E-05],[56.763903,-3.6091E-05],[56.767341,-4.0216E-05],[56.77078,-3.8669E-05],[56.774219,-3.6607E-05],[56.777657,-3.7122E-05],[56.781096,-3.7122E-05],[56.784535,-3.7638E-05],[56.787973,-3.8154E-05],[56.791412,-4.3825E-05],[56.794851,-3.7638E-05],[56.798289,-3.5576E-05],[56.801728,-3.6607E-05],[56.805167,-3.0935E-05],[56.808605,-3.6091E-05],[56.812044,-3.6607E-05],[56.815483,-3.9185E-05],[56.818921,-4.2278E-05],[56.82236,-3.6607E-05],[56.825799,-3.97E-05],[56.829237,-3.6607E-05],[56.832676,-3.1967E-05],[56.836115,-3.6091E-05],[56.839553,-3.7122E-05],[56.842992,-3.7638E-05],[56.846431,-3.7122E-05],[56.849869,-3.7638E-05],[56.853308,-3.8669E-05],[56.856747,-3.97E-05],[56.860185,-4.1763E-05],[56.863624,-3.6607E-05],[56.867063,-3.7638E-05],[56.870501,-4.0216E-05],[56.87394,-3.8154E-05],[56.877379,-3.8154E-05],[56.880817,-3.6607E-05],[56.884256,-3.7638E-05],[56.887695,-3.2482E-05],[56.891133,-3.4544E-05],[56.894572,-3.8154E-05],[56.898011,-3.3513E-05],[56.901449,-3.6607E-05],[56.904888,-3.7122E-05],[56.908327,-3.7638E-05],[56.911765,-3.6607E-05],[56.915204,-3.6091E-05],[56.918643,-3.97E-05],[56.922081,-3.6091E-05],[56.92552,-3.8154E-05],[56.928959,-4.0216E-05],[56.932397,-3.5576E-05],[56.935836,-3.97E-05],[56.939275,-4.0216E-05],[56.942713,-3.506E-05],[56.946152,-3.4029E-05],[56.949591,-3.8154E-05],[56.953029,-4.0216E-05],[56.956468,-3.8154E-05],[56.959907,-3.7122E-05],[56.963345,-3.9185E-05],[56.966784,-4.1247E-05],[56.970223,-4.0216E-05],[56.973661,-3.97E-05],[56.9771,-4.0732E-05],[56.980539,-3.8154E-05],[56.983977,-3.6091E-05],[56.987416,-3.8154E-05],[56.990855,-3.7638E-05],[56.994293,-3.7122E-05],[56.997732,-3.4544E-05],[57.001171,-3.2998E-05],[57.004609,-3.506E-05],[57.008048,-3.5576E-05],[57.011487,-3.8154E-05],[57.014925,-3.8154E-05]]}
-{"quant":[57.1961,-1.1612],"mems":[[57.111208,-3.6091E-05],[57.114647,-3.8154E-05],[57.118085,-4.0216E-05],[57.121524,-4.2794E-05],[57.124963,-3.7638E-05],[57.128401,-3.2482E-05],[57.13184,-3.6091E-05],[57.135279,-3.6091E-05],[57.138717,-3.2998E-05],[57.142156,-3.2998E-05],[57.145595,-3.1451E-05],[57.149033,-3.4029E-05],[57.152472,-3.7122E-05],[57.155911,-3.7638E-05],[57.159349,-3.8154E-05],[57.162788,-3.6091E-05],[57.166227,-3.9185E-05],[57.169665,-4.2278E-05],[57.173104,-3.8669E-05],[57.176543,-4.1247E-05],[57.179981,-4.3309E-05],[57.18342,-3.8669E-05],[57.186859,-3.5576E-05],[57.190297,-3.8669E-05],[57.193736,-4.0216E-05],[57.197175,-3.1967E-05],[57.200613,-3.2998E-05],[57.204052,-3.9185E-05],[57.207491,-3.7638E-05],[57.210929,-3.97E-05],[57.214368,-3.7638E-05],[57.217807,-3.7122E-05],[57.221245,-3.7638E-05],[57.224684,-3.6091E-05],[57.228123,-3.5576E-05],[57.231561,-3.6091E-05],[57.235,-3.5576E-05],[57.238437,-3.7638E-05],[57.241875,-3.97E-05],[57.245312,-3.6607E-05],[57.248749,-4.2794E-05],[57.252187,-4.1763E-05],[57.255624,-3.8154E-05],[57.259061,-3.97E-05],[57.262499,-3.6607E-05],[57.265936,-3.6091E-05],[57.269373,-3.6607E-05],[57.272811,-3.8669E-05],[57.276248,-3.3513E-05],[57.279685,-3.2482E-05],[57.283123,-3.8669E-05],[57.28656,-3.5576E-05],[57.289997,-3.7122E-05],[57.293435,-4.2794E-05],[57.296872,-4.3825E-05],[57.300309,-3.8669E-05],[57.303747,-3.6607E-05],[57.307184,-3.6607E-05],[57.310621,-3.2482E-05],[57.314059,-3.2482E-05],[57.317496,-3.2482E-05],[57.320933,-3.5576E-05],[57.324371,-4.0732E-05],[57.327808,-3.97E-05],[57.331245,-3.97E-05],[57.334683,-4.1247E-05],[57.33812,-4.3825E-05],[57.341557,-4.1763E-05],[57.344995,-4.1247E-05],[57.348432,-3.8154E-05],[57.351869,-2.7842E-05],[57.355307,-3.3513E-05],[57.358744,-4.1247E-05],[57.362181,-3.7638E-05],[57.365619,-3.8154E-05],[57.369056,-4.0216E-05],[57.372493,-3.97E-05],[57.375931,-4.1247E-05],[57.379368,-3.97E-05],[57.382805,-3.506E-05],[57.386243,-3.2998E-05],[57.38968,-3.506E-05],[57.393117,-3.7638E-05],[57.396555,-3.8154E-05],[57.399992,-3.8669E-05],[57.403429,-3.4544E-05],[57.406867,-3.3513E-05],[57.410304,-3.7122E-05]]}
-{"quant":[57.589,-1.1713],"mems":[[57.489363,-3.1967E-05],[57.4928,-3.5576E-05],[57.496237,-3.8669E-05],[57.499675,-3.8154E-05],[57.503112,-3.7122E-05],[57.506549,-3.4544E-05],[57.509987,-3.6091E-05],[57.513424,-4.1247E-05],[57.516861,-4.2278E-05],[57.520299,-4.0216E-05],[57.523736,-3.4544E-05],[57.527173,-3.2482E-05],[57.530611,-3.6091E-05],[57.534048,-3.7122E-05],[57.537485,-3.8154E-05],[57.540923,-3.8154E-05],[57.54436,-3.6607E-05],[57.547797,-3.8154E-05],[57.551235,-3.6607E-05],[57.554672,-3.8669E-05],[57.558109,-4.2278E-05],[57.561547,-3.97E-05],[57.564984,-3.8669E-05],[57.568421,-3.7638E-05],[57.571859,-3.8669E-05],[57.575296,-4.0732E-05],[57.578733,-3.9185E-05],[57.582171,-3.8154E-05],[57.585608,-3.7122E-05],[57.589045,-3.506E-05],[57.592483,-3.7122E-05],[57.59592,-3.97E-05],[57.599357,-3.6091E-05],[57.602795,-3.4544E-05],[57.606232,-3.3513E-05],[57.609669,-3.506E-05],[57.613107,-3.7122E-05],[57.616544,-3.7638E-05],[57.619981,-3.6091E-05],[57.623419,-3.3513E-05],[57.626856,-3.4544E-05],[57.630293,-3.6607E-05],[57.633731,-3.2998E-05],[57.637168,-3.2482E-05],[57.640605,-3.6607E-05],[57.644043,-3.2998E-05],[57.64748,-3.8154E-05],[57.650917,-3.7638E-05],[57.654355,-3.6607E-05],[57.657792,-4.0732E-05],[57.661229,-3.6091E-05],[57.664667,-3.9185E-05],[57.668104,-3.7638E-05],[57.671541,-3.9185E-05],[57.674979,-4.0732E-05],[57.678416,-3.9185E-05],[57.681853,-3.8669E-05],[57.685291,-3.2482E-05],[57.688728,-3.6607E-05],[57.692165,-3.8669E-05],[57.695603,-3.7638E-05],[57.69904,-3.97E-05],[57.702477,-3.4544E-05],[57.705915,-3.4544E-05],[57.709352,-3.7638E-05],[57.712789,-3.3513E-05],[57.716227,-3.8154E-05],[57.719664,-4.2794E-05],[57.723101,-3.7638E-05],[57.726539,-3.7638E-05],[57.729976,-3.9185E-05],[57.733413,-3.4544E-05],[57.736851,-3.8154E-05],[57.740288,-4.1247E-05],[57.743725,-4.0216E-05],[57.747163,-4.2278E-05],[57.7506,-3.7638E-05],[57.754037,-3.7122E-05],[57.757475,-3.4544E-05],[57.760912,-3.5576E-05],[57.764349,-3.506E-05],[57.767787,-3.0935E-05],[57.771224,-4.0216E-05],[57.774661,-4.0216E-05],[57.778099,-4.0732E-05],[57.781536,-3.9185E-05],[57.784973,-3.1967E-05],[57.788411,-3.4544E-05]]}
-{"quant":[57.9752,-1.1706],"mems":[[57.877781,-3.4544E-05],[57.881219,-3.4544E-05],[57.884656,-3.1967E-05],[57.888093,-3.7122E-05],[57.891531,-3.6607E-05],[57.894968,-3.5576E-05],[57.898405,-3.7122E-05],[57.901843,-3.5576E-05],[57.90528,-3.5576E-05],[57.908717,-3.8154E-05],[57.912155,-3.6607E-05],[57.915592,-3.4544E-05],[57.919029,-3.7638E-05],[57.922467,-3.8154E-05],[57.925904,-3.1451E-05],[57.929341,-3.6607E-05],[57.932779,-4.0216E-05],[57.936216,-3.8154E-05],[57.939653,-4.1763E-05],[57.943091,-3.97E-05],[57.946528,-3.7122E-05],[57.949965,-3.5576E-05],[57.953403,-3.9185E-05],[57.95684,-4.1247E-05],[57.960277,-3.6607E-05],[57.963715,-3.506E-05],[57.967152,-4.0216E-05],[57.970589,-3.9185E-05],[57.974027,-3.2482E-05],[57.977464,-3.3513E-05],[57.980901,-2.9904E-05],[57.984339,-3.4029E-05],[57.987776,-3.97E-05],[57.991213,-3.8669E-05],[57.994651,-3.97E-05],[57.998088,-3.2998E-05],[58.001525,-3.0935E-05],[58.004963,-2.9389E-05],[58.0084,-3.4029E-05],[58.011837,-3.8154E-05],[58.015275,-3.3513E-05],[58.018712,-3.7122E-05],[58.022149,-3.8154E-05],[58.025587,-3.8154E-05],[58.029024,-3.8669E-05],[58.032461,-3.4544E-05],[58.035899,-3.7122E-05],[58.039336,-3.8669E-05],[58.042773,-3.8669E-05],[58.046211,-4.1247E-05],[58.049648,-3.506E-05],[58.053085,-3.3513E-05],[58.056523,-3.97E-05],[58.05996,-4.1247E-05],[58.063397,-3.9185E-05],[58.066835,-3.3513E-05],[58.070272,-3.6091E-05],[58.073709,-3.7122E-05],[58.077147,-3.2482E-05],[58.080584,-3.506E-05],[58.084021,-3.4544E-05],[58.087459,-3.4029E-05],[58.090896,-3.4544E-05],[58.094333,-3.4029E-05],[58.097771,-3.506E-05],[58.101208,-3.3513E-05],[58.104645,-3.4029E-05],[58.108083,-3.3513E-05],[58.11152,-3.5576E-05],[58.114957,-3.7638E-05],[58.118395,-3.506E-05],[58.121832,-3.506E-05],[58.125269,-3.9185E-05],[58.128707,-4.0216E-05],[58.132144,-3.4544E-05],[58.135581,-3.6091E-05],[58.139019,-3.7122E-05],[58.142456,-3.042E-05],[58.145893,-3.4544E-05],[58.149331,-4.1763E-05],[58.152768,-4.0216E-05],[58.156205,-3.7122E-05],[58.159643,-3.3513E-05],[58.16308,-3.1451E-05],[58.166517,-3.6091E-05],[58.169955,-3.8669E-05],[58.173392,-3.7638E-05]]}
-{"quant":[58.3724,-1.1781],"mems":[[58.273075,-3.4029E-05],[58.276512,-3.6607E-05],[58.279949,-4.0732E-05],[58.283387,-3.506E-05],[58.286824,-3.4544E-05],[58.290261,-3.6091E-05],[58.293699,-3.8669E-05],[58.297136,-3.97E-05],[58.300573,-3.7638E-05],[58.304011,-3.506E-05],[58.307448,-3.6091E-05],[58.310885,-3.3513E-05],[58.314323,-3.4029E-05],[58.31776,-3.8154E-05],[58.321197,-3.506E-05],[58.324635,-3.7638E-05],[58.328072,-4.0732E-05],[58.331509,-3.8154E-05],[58.334947,-3.6091E-05],[58.338384,-3.3513E-05],[58.341821,-3.3513E-05],[58.345259,-3.6091E-05],[58.348696,-3.6607E-05],[58.352133,-3.4544E-05],[58.355571,-3.7638E-05],[58.359008,-3.6607E-05],[58.362445,-3.506E-05],[58.365883,-3.6607E-05],[58.36932,-3.7638E-05],[58.372757,-3.9185E-05],[58.376195,-3.97E-05],[58.379632,-3.6091E-05],[58.383069,-3.3513E-05],[58.386507,-3.8154E-05],[58.389944,-3.97E-05],[58.393381,-3.7122E-05],[58.396819,-3.506E-05],[58.400256,-3.8154E-05],[58.403693,-3.6607E-05],[58.407131,-3.6091E-05],[58.410568,-3.8669E-05],[58.414005,-3.2998E-05],[58.417443,-3.4029E-05],[58.42088,-3.7122E-05],[58.424317,-3.4544E-05],[58.427755,-3.6091E-05],[58.431192,-3.7638E-05],[58.434629,-3.8669E-05],[58.438067,-3.3513E-05],[58.441504,-2.9389E-05],[58.444941,-3.7638E-05],[58.448379,-3.9185E-05],[58.451816,-3.6091E-05],[58.455253,-3.7122E-05],[58.458691,-3.2998E-05],[58.462128,-3.1967E-05],[58.465565,-3.7122E-05],[58.469003,-3.8669E-05],[58.47244,-3.6091E-05],[58.475877,-3.8154E-05],[58.479315,-3.9185E-05],[58.482752,-3.506E-05],[58.486189,-3.506E-05],[58.489627,-3.8669E-05],[58.493064,-3.7122E-05],[58.496501,-3.7122E-05],[58.499939,-3.8669E-05],[58.503376,-3.7638E-05],[58.506813,-3.8154E-05],[58.510251,-3.8154E-05],[58.513688,-3.97E-05],[58.517125,-3.97E-05],[58.520563,-3.506E-05],[58.524,-3.1967E-05],[58.527437,-3.506E-05],[58.530875,-3.8154E-05],[58.534312,-3.5576E-05],[58.537749,-3.6091E-05],[58.541187,-3.506E-05],[58.544624,-3.506E-05],[58.548061,-3.4029E-05],[58.551499,-3.0935E-05],[58.554936,-3.4029E-05],[58.558373,-3.5576E-05],[58.561811,-3.5576E-05],[58.565248,-3.8669E-05],[58.568685,-4.1247E-05],[58.572123,-3.97E-05]]}
-{"quant":[58.7822,-1.1902],"mems":[[58.685555,-3.2998E-05],[58.688992,-3.97E-05],[58.692429,-4.3309E-05],[58.695867,-3.5576E-05],[58.699304,-3.4544E-05],[58.702741,-3.2482E-05],[58.706179,-3.042E-05],[58.709616,-3.5576E-05],[58.713053,-3.7122E-05],[58.716491,-3.7122E-05],[58.719928,-3.7122E-05],[58.723365,-3.4029E-05],[58.726803,-3.1967E-05],[58.73024,-3.506E-05],[58.733677,-4.0732E-05],[58.737115,-3.8669E-05],[58.740552,-3.5576E-05],[58.743989,-3.8154E-05],[58.747427,-3.3513E-05],[58.750864,-3.4544E-05],[58.754301,-4.1247E-05],[58.757739,-3.9185E-05],[58.761176,-3.506E-05],[58.764613,-3.1451E-05],[58.768051,-3.6607E-05],[58.771488,-3.506E-05],[58.774925,-3.6091E-05],[58.778363,-4.0216E-05],[58.7818,-3.3513E-05],[58.785237,-3.3513E-05],[58.788675,-3.9185E-05],[58.792112,-3.9185E-05],[58.795549,-3.4544E-05],[58.798987,-3.5576E-05],[58.802424,-3.4544E-05],[58.805861,-3.4544E-05],[58.809299,-3.97E-05],[58.812736,-3.7122E-05],[58.816173,-3.8154E-05],[58.819611,-3.7122E-05],[58.823048,-3.4029E-05],[58.826485,-3.2998E-05],[58.829923,-3.042E-05],[58.83336,-3.3513E-05],[58.836797,-3.5576E-05],[58.840235,-3.506E-05],[58.843672,-3.3513E-05],[58.847109,-3.2482E-05],[58.850547,-3.506E-05],[58.853984,-3.6607E-05],[58.857421,-3.97E-05],[58.860859,-4.0216E-05],[58.864296,-3.5576E-05],[58.867733,-3.5576E-05],[58.871171,-3.97E-05],[58.874608,-4.2278E-05],[58.878045,-3.5576E-05],[58.881483,-3.2482E-05],[58.88492,-3.7638E-05],[58.888357,-3.97E-05],[58.891795,-3.6607E-05],[58.895232,-3.5576E-05],[58.898669,-3.6091E-05],[58.902107,-3.506E-05],[58.905544,-3.8154E-05],[58.908981,-4.1247E-05],[58.912419,-3.8669E-05],[58.915856,-3.4544E-05],[58.919293,-3.5576E-05],[58.922731,-3.7122E-05],[58.926168,-3.506E-05],[58.929605,-4.2794E-05],[58.933043,-4.4341E-05],[58.93648,-3.8154E-05],[58.939917,-3.7122E-05],[58.943355,-3.6091E-05],[58.946792,-3.5576E-05],[58.950229,-4.0216E-05],[58.953667,-4.2794E-05],[58.957104,-3.506E-05],[58.960541,-3.4544E-05],[58.963979,-3.9185E-05],[58.967416,-3.7122E-05],[58.970853,-4.0732E-05],[58.974291,-3.97E-05],[58.977728,-3.2482E-05],[58.981165,-3.1967E-05]]}
-{"quant":[59.1974,-1.2019],"mems":[[59.098035,-4.0732E-05],[59.101472,-3.5576E-05],[59.104909,-3.2998E-05],[59.108347,-3.4544E-05],[59.111784,-3.6607E-05],[59.115221,-3.6091E-05],[59.118659,-3.6607E-05],[59.122096,-3.3513E-05],[59.125533,-3.2482E-05],[59.128971,-3.6607E-05],[59.132408,-3.7638E-05],[59.135845,-3.6607E-05],[59.139283,-3.3513E-05],[59.14272,-3.3513E-05],[59.146157,-3.4544E-05],[59.149595,-3.7122E-05],[59.153032,-3.8154E-05],[59.156469,-3.6607E-05],[59.159907,-3.6607E-05],[59.163344,-3.4029E-05],[59.166781,-3.4544E-05],[59.170219,-4.3825E-05],[59.173656,-3.97E-05],[59.177093,-3.4029E-05],[59.180531,-3.9185E-05],[59.183968,-3.2998E-05],[59.187405,-3.4029E-05],[59.190843,-4.1763E-05],[59.19428,-3.506E-05],[59.197717,-3.4544E-05],[59.201155,-3.7122E-05],[59.204592,-4.0732E-05],[59.208029,-4.2278E-05],[59.211467,-3.9185E-05],[59.214904,-3.5576E-05],[59.218341,-3.1967E-05],[59.221779,-3.4029E-05],[59.225216,-3.7122E-05],[59.228653,-3.9185E-05],[59.232091,-3.8669E-05],[59.235528,-3.506E-05],[59.238965,-3.6607E-05],[59.242403,-3.5576E-05],[59.24584,-3.5576E-05],[59.249277,-3.6607E-05],[59.252715,-3.7122E-05],[59.256152,-3.7638E-05],[59.259589,-3.6091E-05],[59.263027,-3.4544E-05],[59.266464,-3.6091E-05],[59.269901,-3.7122E-05],[59.273339,-3.4029E-05],[59.276776,-3.6607E-05],[59.280213,-3.4544E-05],[59.283651,-3.1451E-05],[59.287088,-3.5576E-05],[59.290525,-3.1967E-05],[59.293963,-3.5576E-05],[59.2974,-4.0732E-05],[59.300837,-3.8154E-05],[59.304275,-3.6607E-05],[59.307712,-3.6091E-05],[59.311149,-3.8669E-05],[59.314587,-4.0216E-05],[59.318024,-3.4029E-05],[59.321461,-2.9904E-05],[59.324899,-3.7122E-05],[59.328336,-4.1247E-05],[59.331773,-3.4544E-05],[59.335211,-3.2482E-05],[59.338648,-3.7122E-05],[59.342085,-3.2998E-05],[59.345523,-3.1451E-05],[59.34896,-3.4544E-05],[59.352397,-3.4029E-05],[59.355835,-3.7638E-05],[59.359272,-3.7638E-05],[59.362709,-3.4029E-05],[59.366147,-3.1451E-05],[59.369584,-3.4029E-05],[59.373021,-3.8154E-05],[59.376459,-3.5576E-05],[59.379896,-3.2998E-05],[59.383333,-3.4029E-05],[59.386771,-3.3513E-05],[59.390208,-3.5576E-05],[59.393645,-3.6607E-05],[59.397083,-3.7638E-05]]}
-{"quant":[59.5711,-1.2161],"mems":[[59.472704,-3.8154E-05],[59.476141,-3.5576E-05],[59.479579,-3.4029E-05],[59.483016,-3.4544E-05],[59.486453,-3.8154E-05],[59.489891,-3.6607E-05],[59.493328,-3.2998E-05],[59.496765,-3.4029E-05],[59.500203,-3.2998E-05],[59.50364,-2.9389E-05],[59.507077,-3.2482E-05],[59.510515,-3.4544E-05],[59.513952,-3.6607E-05],[59.517389,-3.8154E-05],[59.520827,-3.6091E-05],[59.524264,-3.9185E-05],[59.527701,-3.9185E-05],[59.531139,-3.4029E-05],[59.534576,-3.2482E-05],[59.538013,-3.4544E-05],[59.541451,-3.042E-05],[59.544888,-3.1967E-05],[59.548325,-4.0216E-05],[59.551763,-3.6091E-05],[59.5552,-3.8669E-05],[59.558637,-4.2278E-05],[59.562075,-3.7122E-05],[59.565512,-3.8669E-05],[59.568949,-3.8669E-05],[59.572387,-3.7122E-05],[59.575824,-3.8669E-05],[59.579261,-3.5576E-05],[59.582699,-3.1967E-05],[59.586136,-3.8154E-05],[59.589573,-4.1763E-05],[59.593011,-3.8669E-05],[59.596448,-3.7638E-05],[59.599885,-3.506E-05],[59.603323,-3.8154E-05],[59.60676,-3.97E-05],[59.610197,-3.2998E-05],[59.613635,-3.2998E-05],[59.617072,-3.6607E-05],[59.620509,-3.6607E-05],[59.623947,-3.506E-05],[59.627384,-3.3513E-05],[59.630821,-3.4544E-05],[59.634259,-3.6607E-05],[59.637696,-3.5576E-05],[59.641133,-3.506E-05],[59.644571,-3.2998E-05],[59.648008,-3.506E-05],[59.651445,-3.8154E-05],[59.654883,-3.4544E-05],[59.65832,-3.7638E-05],[59.661757,-3.7122E-05],[59.665195,-3.506E-05],[59.668632,-3.6607E-05],[59.672069,-3.6607E-05],[59.675507,-4.0216E-05],[59.678944,-3.5576E-05],[59.682381,-3.2998E-05],[59.685819,-4.0732E-05],[59.689256,-3.8154E-05],[59.692693,-3.4029E-05],[59.696131,-3.4544E-05],[59.699568,-3.6091E-05],[59.703005,-3.7122E-05],[59.706443,-3.7122E-05],[59.70988,-3.7638E-05],[59.713317,-3.4544E-05],[59.716755,-3.506E-05],[59.720192,-3.7122E-05],[59.723629,-3.506E-05],[59.727067,-3.7122E-05],[59.730504,-3.8154E-05],[59.733941,-3.7122E-05],[59.737379,-3.6607E-05],[59.740816,-3.2998E-05],[59.744253,-3.4029E-05],[59.747691,-3.7638E-05],[59.751128,-3.4544E-05],[59.754565,-3.6607E-05],[59.758003,-3.5576E-05],[59.76144,-3.7122E-05],[59.764877,-4.2278E-05],[59.768315,-3.3513E-05]]}
-{"quant":[59.9479,-1.2271],"mems":[[59.850811,-3.0935E-05],[59.854248,-3.0935E-05],[59.857685,-3.1967E-05],[59.861123,-3.6607E-05],[59.86456,-3.7638E-05],[59.867997,-3.7122E-05],[59.871435,-3.6607E-05],[59.874872,-3.2998E-05],[59.878309,-3.2482E-05],[59.881747,-3.1967E-05],[59.885184,-3.3513E-05],[59.888621,-3.6607E-05],[59.892059,-3.4029E-05],[59.895496,-3.6607E-05],[59.898933,-3.5576E-05],[59.902371,-3.3513E-05],[59.905808,-4.0732E-05],[59.909245,-3.6607E-05],[59.912683,-3.6607E-05],[59.91612,-3.6091E-05],[59.919557,-3.1967E-05],[59.922995,-3.97E-05],[59.926432,-3.7638E-05],[59.929869,-3.506E-05],[59.933307,-3.7638E-05],[59.936744,-3.5576E-05],[59.940181,-3.2482E-05],[59.943619,-3.1967E-05],[59.947056,-3.4029E-05],[59.950493,-3.9185E-05],[59.953931,-3.9185E-05],[59.957368,-3.506E-05],[59.960805,-4.0216E-05],[59.964243,-3.506E-05],[59.96768,-2.9904E-05],[59.971117,-3.4544E-05],[59.974555,-3.506E-05],[59.977992,-3.7122E-05],[59.981429,-3.506E-05],[59.984867,-3.6607E-05],[59.988304,-3.9185E-05],[59.991741,-3.6607E-05],[59.995179,-3.6091E-05],[59.998616,-3.5576E-05],[60.002053,-3.7638E-05],[60.005491,-3.7638E-05],[60.008928,-3.506E-05],[60.012365,-3.7638E-05],[60.015803,-3.8669E-05],[60.01924,-3.0935E-05],[60.022677,-3.2482E-05],[60.026115,-3.8669E-05],[60.029552,-3.3513E-05],[60.032989,-3.2998E-05],[60.036427,-3.6607E-05],[60.039864,-3.6091E-05],[60.043301,-3.2998E-05],[60.046739,-3.4544E-05],[60.050176,-3.7122E-05],[60.053613,-3.7638E-05],[60.057051,-3.7122E-05],[60.060488,-3.2998E-05],[60.063925,-3.8154E-05],[60.067363,-3.97E-05],[60.0708,-3.97E-05],[60.074237,-3.97E-05],[60.077675,-3.7122E-05],[60.081112,-3.7638E-05],[60.084549,-3.6091E-05],[60.087987,-3.6091E-05],[60.091424,-3.6091E-05],[60.094861,-3.6607E-05],[60.098299,-3.3513E-05],[60.101736,-3.1967E-05],[60.105173,-3.4544E-05],[60.108611,-3.7122E-05],[60.112048,-3.8669E-05],[60.115485,-3.6607E-05],[60.118923,-3.8154E-05],[60.12236,-3.8669E-05],[60.125797,-3.9185E-05],[60.129235,-4.1763E-05],[60.132672,-3.2998E-05],[60.136109,-2.8873E-05],[60.139547,-3.6607E-05],[60.142984,-3.6091E-05],[60.146421,-3.506E-05]]}
-{"quant":[60.3871,-1.2323],"mems":[[60.287352,-3.1967E-05],[60.290789,-3.1451E-05],[60.294227,-3.8669E-05],[60.297664,-3.7638E-05],[60.301101,-3.7122E-05],[60.304539,-4.1763E-05],[60.307976,-3.8669E-05],[60.311413,-3.9185E-05],[60.314851,-3.7638E-05],[60.318288,-3.506E-05],[60.321725,-3.8669E-05],[60.325163,-3.4544E-05],[60.3286,-3.7122E-05],[60.332037,-3.6091E-05],[60.335475,-3.5576E-05],[60.338912,-3.7122E-05],[60.342349,-3.3513E-05],[60.345787,-3.6607E-05],[60.349224,-3.5576E-05],[60.352661,-3.97E-05],[60.356099,-3.4544E-05],[60.359536,-3.1967E-05],[60.362973,-3.8154E-05],[60.366411,-3.6607E-05],[60.369848,-4.1763E-05],[60.373285,-3.9185E-05],[60.376723,-3.8154E-05],[60.38016,-3.6091E-05],[60.383597,-2.9389E-05],[60.387035,-3.7122E-05],[60.390472,-3.4544E-05],[60.393909,-3.1967E-05],[60.397347,-3.3513E-05],[60.400784,-3.3513E-05],[60.404221,-3.7122E-05],[60.407659,-3.6607E-05],[60.411096,-3.6607E-05],[60.414533,-3.7122E-05],[60.417971,-3.5576E-05],[60.421408,-3.1451E-05],[60.424845,-3.4544E-05],[60.428283,-3.8669E-05],[60.43172,-3.6607E-05],[60.435157,-3.4544E-05],[60.438595,-3.2482E-05],[60.442032,-3.4029E-05],[60.445469,-3.4544E-05],[60.448907,-3.7122E-05],[60.452344,-3.9185E-05],[60.455781,-3.506E-05],[60.459219,-3.506E-05],[60.462656,-3.7122E-05],[60.466093,-3.6091E-05],[60.469531,-3.4544E-05],[60.472968,-3.506E-05],[60.476405,-3.4544E-05],[60.479843,-3.8154E-05],[60.48328,-3.7122E-05],[60.486717,-3.2998E-05],[60.490155,-3.9185E-05],[60.493592,-3.7638E-05],[60.497029,-3.4029E-05],[60.500467,-3.8669E-05],[60.503904,-3.8154E-05],[60.507341,-4.1247E-05],[60.510779,-4.2794E-05],[60.514216,-3.8154E-05],[60.517653,-3.506E-05],[60.521091,-3.506E-05],[60.524528,-3.5576E-05],[60.527965,-3.8669E-05],[60.531403,-3.8669E-05],[60.53484,-3.7122E-05],[60.538277,-3.6091E-05],[60.541715,-3.1451E-05],[60.545152,-3.506E-05],[60.548589,-4.0732E-05],[60.552027,-3.8669E-05],[60.555464,-3.6607E-05],[60.558901,-3.6607E-05],[60.562339,-3.6607E-05],[60.565776,-3.5576E-05],[60.569213,-3.7638E-05],[60.572651,-3.5576E-05],[60.576088,-3.2482E-05],[60.579525,-3.5576E-05],[60.582963,-3.9185E-05],[60.5864,-3.97E-05]]}
-{"quant":[60.7495,-1.2373],"mems":[[60.651709,-3.7122E-05],[60.655147,-3.4544E-05],[60.658584,-3.2482E-05],[60.662021,-3.506E-05],[60.665459,-3.8154E-05],[60.668896,-3.7122E-05],[60.672333,-3.7638E-05],[60.675771,-3.4029E-05],[60.679208,-3.3513E-05],[60.682645,-3.6091E-05],[60.686083,-3.8154E-05],[60.68952,-3.8669E-05],[60.692957,-3.5576E-05],[60.696395,-3.3513E-05],[60.699832,-3.1451E-05],[60.703269,-3.4029E-05],[60.706707,-3.506E-05],[60.710144,-3.8154E-05],[60.713581,-3.97E-05],[60.717019,-3.4544E-05],[60.720456,-3.7638E-05],[60.723893,-3.7638E-05],[60.727331,-3.6607E-05],[60.730768,-4.0216E-05],[60.734205,-3.7638E-05],[60.737643,-3.6607E-05],[60.74108,-4.0732E-05],[60.744517,-3.9185E-05],[60.747955,-3.3513E-05],[60.751392,-3.506E-05],[60.754829,-3.6091E-05],[60.758267,-3.1451E-05],[60.761704,-3.7638E-05],[60.765141,-4.0216E-05],[60.768579,-3.97E-05],[60.772016,-3.6091E-05],[60.775453,-3.1451E-05],[60.778891,-3.8154E-05],[60.782328,-3.2998E-05],[60.785765,-3.2998E-05],[60.789203,-4.0732E-05],[60.79264,-3.8154E-05],[60.796077,-3.506E-05],[60.799515,-3.2482E-05],[60.802952,-3.5576E-05],[60.806389,-3.3513E-05],[60.809827,-3.2998E-05],[60.813264,-4.1763E-05],[60.816701,-3.8669E-05],[60.820139,-3.6607E-05],[60.823576,-3.4544E-05],[60.827013,-3.7638E-05],[60.830451,-3.9185E-05],[60.833888,-3.1451E-05],[60.837325,-3.506E-05],[60.840763,-3.4544E-05],[60.8442,-3.7122E-05],[60.847637,-3.9185E-05],[60.851075,-3.6091E-05],[60.854512,-3.7638E-05],[60.857949,-3.0935E-05],[60.861387,-3.3513E-05],[60.864824,-3.8669E-05],[60.868261,-3.5576E-05],[60.871699,-3.97E-05],[60.875136,-3.7638E-05],[60.878573,-3.6091E-05],[60.882011,-3.97E-05],[60.885448,-3.6091E-05],[60.888885,-3.9185E-05],[60.892323,-4.0216E-05],[60.89576,-3.6091E-05],[60.899197,-3.4544E-05],[60.902635,-3.2482E-05],[60.906072,-3.5576E-05],[60.909509,-3.5576E-05],[60.912947,-3.3513E-05],[60.916384,-3.7638E-05],[60.919821,-3.506E-05],[60.923259,-3.1967E-05],[60.926696,-3.7638E-05],[60.930133,-4.0216E-05],[60.933571,-3.6091E-05],[60.937008,-3.4029E-05],[60.940445,-3.6607E-05],[60.943883,-3.9185E-05],[60.94732,-3.97E-05]]}
-{"quant":[61.1207,-1.2362],"mems":[[61.022941,-3.5576E-05],[61.026379,-3.6091E-05],[61.029816,-4.0732E-05],[61.033253,-3.97E-05],[61.036691,-3.6607E-05],[61.040128,-3.7122E-05],[61.043565,-3.97E-05],[61.047003,-3.8669E-05],[61.05044,-3.8669E-05],[61.053877,-3.8154E-05],[61.057315,-3.6091E-05],[61.060752,-3.3513E-05],[61.064189,-3.2998E-05],[61.067627,-3.8154E-05],[61.071064,-3.97E-05],[61.074501,-4.0216E-05],[61.077939,-3.8154E-05],[61.081376,-3.8154E-05],[61.084813,-4.1763E-05],[61.088251,-3.97E-05],[61.091688,-3.7638E-05],[61.095125,-3.6607E-05],[61.098563,-3.6091E-05],[61.102,-3.97E-05],[61.105437,-4.3825E-05],[61.108875,-4.0732E-05],[61.112312,-3.6091E-05],[61.115749,-3.4029E-05],[61.119187,-3.1967E-05],[61.122624,-3.5576E-05],[61.126061,-3.6091E-05],[61.129499,-3.6091E-05],[61.132936,-3.8669E-05],[61.136373,-3.9185E-05],[61.139811,-3.7638E-05],[61.143248,-3.4029E-05],[61.146685,-3.4544E-05],[61.150123,-3.4544E-05],[61.15356,-3.3513E-05],[61.156997,-3.4544E-05],[61.160435,-3.6607E-05],[61.163872,-3.7122E-05],[61.167309,-3.5576E-05],[61.170747,-3.6091E-05],[61.174184,-3.3513E-05],[61.177621,-3.8669E-05],[61.181059,-4.0732E-05],[61.184496,-3.6091E-05],[61.187933,-3.8669E-05],[61.191371,-3.7638E-05],[61.194808,-3.8669E-05],[61.198245,-3.7122E-05],[61.201683,-3.4544E-05],[61.20512,-3.4544E-05],[61.208557,-3.4544E-05],[61.211995,-3.6091E-05],[61.215432,-3.6091E-05],[61.218869,-3.7638E-05],[61.222307,-3.6091E-05],[61.225744,-3.506E-05],[61.229181,-3.7122E-05],[61.232619,-3.2482E-05],[61.236056,-2.9904E-05],[61.239493,-3.506E-05],[61.242931,-3.6607E-05],[61.246368,-3.6091E-05],[61.249805,-3.6091E-05],[61.253243,-3.2998E-05],[61.25668,-3.4544E-05],[61.260117,-3.5576E-05],[61.263555,-3.7122E-05],[61.266992,-4.1763E-05],[61.270429,-4.0216E-05],[61.273867,-3.6091E-05],[61.277304,-3.7122E-05],[61.280741,-3.8669E-05],[61.284179,-3.9185E-05],[61.287616,-3.9185E-05],[61.291053,-3.5576E-05],[61.294491,-3.3513E-05],[61.297928,-3.506E-05],[61.301365,-3.8154E-05],[61.304803,-3.97E-05],[61.30824,-3.6607E-05],[61.311677,-3.6607E-05],[61.315115,-3.6091E-05],[61.318552,-3.506E-05]]}
-{"quant":[61.4954,-1.227],"mems":[[61.397611,-3.6091E-05],[61.401048,-3.7638E-05],[61.404485,-3.9185E-05],[61.407923,-3.9185E-05],[61.41136,-3.7638E-05],[61.414797,-3.7638E-05],[61.418235,-3.2998E-05],[61.421672,-3.2998E-05],[61.425109,-3.2482E-05],[61.428547,-3.2482E-05],[61.431984,-3.7638E-05],[61.435421,-3.7638E-05],[61.438859,-3.6091E-05],[61.442296,-3.7638E-05],[61.445733,-4.0216E-05],[61.449171,-3.8154E-05],[61.452608,-3.5576E-05],[61.456045,-3.5576E-05],[61.459483,-3.4544E-05],[61.46292,-3.6091E-05],[61.466357,-4.0216E-05],[61.469795,-4.2794E-05],[61.473232,-3.8154E-05],[61.476669,-3.4544E-05],[61.480107,-3.506E-05],[61.483544,-3.7122E-05],[61.486981,-4.0732E-05],[61.490419,-3.506E-05],[61.493856,-3.1451E-05],[61.497293,-3.6091E-05],[61.500731,-4.0732E-05],[61.504168,-4.3309E-05],[61.507605,-3.8669E-05],[61.511043,-3.8154E-05],[61.51448,-3.6607E-05],[61.517917,-3.1967E-05],[61.521355,-3.8669E-05],[61.524792,-3.97E-05],[61.528229,-3.6607E-05],[61.531667,-3.5576E-05],[61.535104,-3.1451E-05],[61.538541,-3.2998E-05],[61.541979,-3.2998E-05],[61.545416,-3.7122E-05],[61.548853,-3.6607E-05],[61.552291,-3.4029E-05],[61.555728,-3.97E-05],[61.559165,-3.4544E-05],[61.562603,-3.2998E-05],[61.56604,-3.4544E-05],[61.569477,-3.5576E-05],[61.572915,-3.7638E-05],[61.576352,-3.5576E-05],[61.579789,-3.8154E-05],[61.583227,-3.506E-05],[61.586664,-3.4029E-05],[61.590101,-3.6607E-05],[61.593539,-3.2998E-05],[61.596976,-3.2482E-05],[61.600413,-3.2998E-05],[61.603851,-3.4544E-05],[61.607288,-3.506E-05],[61.610725,-3.6607E-05],[61.614163,-3.2998E-05],[61.6176,-3.042E-05],[61.621037,-3.3513E-05],[61.624475,-3.6091E-05],[61.627912,-3.8669E-05],[61.631349,-4.0732E-05],[61.634787,-4.1247E-05],[61.638224,-3.9185E-05],[61.641661,-4.1763E-05],[61.645099,-3.8669E-05],[61.648536,-3.2998E-05],[61.651973,-3.4544E-05],[61.655411,-4.0732E-05],[61.658848,-4.0216E-05],[61.662285,-3.8669E-05],[61.665723,-4.2278E-05],[61.66916,-4.0216E-05],[61.672597,-3.97E-05],[61.676035,-3.5576E-05],[61.679472,-3.506E-05],[61.682909,-3.7638E-05],[61.686347,-3.3513E-05],[61.689784,-3.4029E-05],[61.693221,-3.6091E-05]]}
-{"quant":[61.869,-1.2186],"mems":[[61.77228,-3.7638E-05],[61.775717,-3.4544E-05],[61.779155,-3.6091E-05],[61.782592,-3.9185E-05],[61.786029,-3.7638E-05],[61.789467,-3.97E-05],[61.792904,-3.3513E-05],[61.796341,-2.8873E-05],[61.799779,-3.2482E-05],[61.803216,-3.4029E-05],[61.806653,-3.4029E-05],[61.810091,-3.3513E-05],[61.813528,-3.6091E-05],[61.816965,-3.5576E-05],[61.820403,-3.0935E-05],[61.82384,-3.506E-05],[61.827277,-3.97E-05],[61.830715,-3.7122E-05],[61.834152,-4.0732E-05],[61.837589,-4.0216E-05],[61.841027,-3.506E-05],[61.844464,-3.9185E-05],[61.847901,-4.0732E-05],[61.851339,-3.8154E-05],[61.854776,-3.9185E-05],[61.858213,-3.506E-05],[61.861651,-3.2998E-05],[61.865088,-3.97E-05],[61.868525,-3.8154E-05],[61.871963,-3.6091E-05],[61.8754,-3.4029E-05],[61.878837,-3.4029E-05],[61.882275,-4.1247E-05],[61.885712,-3.7122E-05],[61.889149,-3.9185E-05],[61.892587,-4.0732E-05],[61.896024,-3.3513E-05],[61.899461,-3.6607E-05],[61.902899,-4.1763E-05],[61.906336,-4.2278E-05],[61.909773,-3.7638E-05],[61.913211,-3.1967E-05],[61.916648,-3.506E-05],[61.920085,-3.9185E-05],[61.923523,-3.6091E-05],[61.92696,-3.8669E-05],[61.930397,-3.7122E-05],[61.933835,-3.2998E-05],[61.937272,-3.4029E-05],[61.940709,-3.2998E-05],[61.944147,-3.2998E-05],[61.947584,-3.8154E-05],[61.951021,-3.4029E-05],[61.954459,-3.2482E-05],[61.957896,-3.8669E-05],[61.961333,-3.506E-05],[61.964771,-3.6091E-05],[61.968208,-3.4029E-05],[61.971645,-3.0935E-05],[61.975083,-3.3513E-05],[61.97852,-3.3513E-05],[61.981957,-3.5576E-05],[61.985395,-3.6607E-05],[61.988832,-3.7638E-05],[61.992269,-3.6607E-05],[61.995707,-3.9185E-05],[61.999144,-3.97E-05],[62.002581,-3.5576E-05],[62.006019,-3.9185E-05],[62.009456,-4.1763E-05],[62.012893,-3.5576E-05],[62.016331,-3.4029E-05],[62.019768,-3.6091E-05],[62.023205,-3.2482E-05],[62.026643,-3.5576E-05],[62.03008,-4.0216E-05],[62.033517,-3.5576E-05],[62.036955,-3.506E-05],[62.040392,-3.4029E-05],[62.043829,-3.7638E-05],[62.047267,-3.9185E-05],[62.050704,-3.6091E-05],[62.054141,-3.8154E-05],[62.057579,-3.2998E-05],[62.061016,-3.6091E-05],[62.064453,-3.8154E-05],[62.067891,-3.3513E-05]]}
-{"quant":[62.2589,-1.201],"mems":[[62.174448,-3.4544E-05],[62.177885,-3.6607E-05],[62.181323,-3.6607E-05],[62.18476,-3.506E-05],[62.188197,-3.506E-05],[62.191635,-3.7638E-05],[62.195072,-3.97E-05],[62.198509,-3.7638E-05],[62.201947,-4.0216E-05],[62.205384,-4.0732E-05],[62.208821,-3.7122E-05],[62.212259,-3.4544E-05],[62.215696,-3.7122E-05],[62.219133,-3.8154E-05],[62.222571,-3.8154E-05],[62.226008,-3.6607E-05],[62.229445,-3.506E-05],[62.232883,-3.7638E-05],[62.23632,-3.5576E-05],[62.239757,-3.7122E-05],[62.243195,-3.97E-05],[62.246632,-4.2278E-05],[62.250069,-4.1247E-05],[62.253507,-3.3513E-05],[62.256944,-3.4029E-05],[62.260381,-3.9185E-05],[62.263819,-4.0216E-05],[62.267256,-3.506E-05],[62.270693,-3.4544E-05],[62.274131,-3.7122E-05],[62.277568,-3.4029E-05],[62.281005,-3.4544E-05],[62.284443,-3.6091E-05],[62.28788,-3.8154E-05],[62.291317,-4.0732E-05],[62.294755,-3.9185E-05],[62.298192,-3.97E-05],[62.301629,-4.2278E-05],[62.305067,-4.1247E-05],[62.308504,-3.7122E-05],[62.311941,-3.6607E-05],[62.315379,-3.6091E-05],[62.318816,-3.6091E-05],[62.322253,-3.97E-05],[62.325691,-3.8669E-05],[62.329128,-3.9185E-05],[62.332565,-4.1247E-05],[62.336003,-3.7638E-05],[62.33944,-3.7638E-05],[62.342877,-3.8154E-05],[62.346315,-3.8669E-05],[62.349752,-3.97E-05],[62.353189,-3.9185E-05],[62.356627,-3.8669E-05],[62.360064,-4.1763E-05],[62.363501,-4.0732E-05],[62.366939,-3.6091E-05],[62.370376,-3.5576E-05],[62.373813,-3.5576E-05],[62.377251,-3.9185E-05],[62.380688,-3.9185E-05],[62.384125,-4.1247E-05],[62.387563,-4.6403E-05],[62.391,-3.9185E-05],[62.394436,-3.9185E-05],[62.397872,-3.7122E-05],[62.401308,-3.1967E-05],[62.404744,-3.6091E-05],[62.40818,-3.8669E-05],[62.411616,-3.4544E-05],[62.415052,-3.2482E-05],[62.418488,-3.506E-05],[62.421924,-3.2998E-05],[62.42536,-3.5576E-05],[62.428796,-4.3309E-05],[62.432232,-4.0216E-05],[62.435668,-3.6091E-05],[62.439104,-3.1967E-05],[62.44254,-3.5576E-05],[62.445976,-3.7122E-05],[62.449412,-3.4029E-05],[62.452848,-3.8154E-05],[62.456284,-3.4544E-05],[62.45972,-3.7638E-05],[62.463156,-4.1763E-05],[62.466592,-3.506E-05],[62.470028,-3.5576E-05],[62.473464,-3.4544E-05]]}
-{"quant":[62.6608,-1.1811],"mems":[[62.5628,-3.97E-05],[62.566236,-3.4029E-05],[62.569672,-3.6607E-05],[62.573108,-3.6091E-05],[62.576544,-3.6607E-05],[62.57998,-3.97E-05],[62.583416,-4.3309E-05],[62.586852,-4.1247E-05],[62.590288,-3.4544E-05],[62.593724,-3.7122E-05],[62.59716,-3.9185E-05],[62.600596,-4.0732E-05],[62.604032,-4.0216E-05],[62.607468,-3.6607E-05],[62.610904,-3.3513E-05],[62.61434,-3.6091E-05],[62.617776,-4.0216E-05],[62.621212,-3.8154E-05],[62.624648,-3.7638E-05],[62.628084,-3.7638E-05],[62.63152,-3.5576E-05],[62.634956,-3.3513E-05],[62.638392,-3.4029E-05],[62.641828,-3.8669E-05],[62.645264,-3.6091E-05],[62.6487,-3.6607E-05],[62.652136,-3.9185E-05],[62.655572,-3.506E-05],[62.659008,-3.5576E-05],[62.662444,-3.7638E-05],[62.66588,-3.4029E-05],[62.669316,-3.3513E-05],[62.672752,-3.5576E-05],[62.676188,-3.6091E-05],[62.679624,-3.5576E-05],[62.68306,-3.506E-05],[62.686496,-4.0216E-05],[62.689932,-4.2278E-05],[62.693368,-3.6607E-05],[62.696804,-3.4544E-05],[62.70024,-4.0216E-05],[62.703676,-4.0732E-05],[62.707112,-3.7638E-05],[62.710548,-3.7638E-05],[62.713984,-3.8154E-05],[62.71742,-3.8669E-05],[62.720856,-3.8154E-05],[62.724292,-3.4029E-05],[62.727728,-3.1967E-05],[62.731164,-3.4544E-05],[62.7346,-3.4544E-05],[62.738036,-3.7122E-05],[62.741472,-3.506E-05],[62.744908,-3.5576E-05],[62.748344,-3.7638E-05],[62.75178,-3.4544E-05],[62.755216,-3.9185E-05],[62.758652,-3.8669E-05],[62.762088,-3.97E-05],[62.765524,-4.0732E-05],[62.76896,-3.8669E-05],[62.772396,-4.2278E-05],[62.775832,-4.0732E-05],[62.779268,-3.7638E-05],[62.782704,-4.0216E-05],[62.78614,-4.0732E-05],[62.789576,-3.7122E-05],[62.793012,-3.506E-05],[62.796448,-3.2998E-05],[62.799884,-3.7122E-05],[62.80332,-3.9185E-05],[62.806756,-3.8154E-05],[62.810192,-3.97E-05],[62.813628,-3.2998E-05],[62.817064,-3.7638E-05],[62.8205,-4.1247E-05],[62.823936,-3.8669E-05],[62.827372,-4.2794E-05],[62.830808,-3.6091E-05],[62.834244,-3.5576E-05],[62.83768,-4.0216E-05],[62.841116,-3.6091E-05],[62.844552,-3.6607E-05],[62.847988,-3.8154E-05],[62.851424,-3.7122E-05],[62.85486,-3.7122E-05],[62.858296,-3.6607E-05]]}
-{"quant":[63.0545,-1.1672],"mems":[[62.954504,-3.4029E-05],[62.95794,-3.4544E-05],[62.961376,-3.8154E-05],[62.964812,-3.4029E-05],[62.968248,-3.6091E-05],[62.971684,-3.5576E-05],[62.97512,-3.2482E-05],[62.978556,-3.1451E-05],[62.981992,-2.9389E-05],[62.985428,-3.8154E-05],[62.988864,-3.97E-05],[62.9923,-3.6607E-05],[62.995736,-3.7122E-05],[62.999172,-3.6091E-05],[63.002608,-3.8669E-05],[63.006044,-3.9185E-05],[63.00948,-3.8154E-05],[63.012916,-3.8669E-05],[63.016352,-3.7122E-05],[63.019788,-3.6607E-05],[63.023224,-3.8669E-05],[63.02666,-3.8669E-05],[63.030096,-3.6091E-05],[63.033532,-3.3513E-05],[63.036968,-3.5576E-05],[63.040404,-3.4029E-05],[63.04384,-3.042E-05],[63.047276,-3.2998E-05],[63.050712,-3.4544E-05],[63.054148,-3.6091E-05],[63.057584,-3.6607E-05],[63.06102,-3.4544E-05],[63.064456,-3.6607E-05],[63.067892,-3.97E-05],[63.071328,-3.7638E-05],[63.074764,-3.506E-05],[63.0782,-3.7638E-05],[63.081636,-3.9185E-05],[63.085072,-3.97E-05],[63.088508,-3.8669E-05],[63.091944,-3.506E-05],[63.09538,-3.506E-05],[63.098816,-3.6091E-05],[63.102252,-3.5576E-05],[63.105688,-3.506E-05],[63.109124,-3.4544E-05],[63.11256,-3.7638E-05],[63.115996,-3.7638E-05],[63.119432,-4.0216E-05],[63.122868,-3.7122E-05],[63.126304,-3.0935E-05],[63.12974,-3.506E-05],[63.133176,-3.2482E-05],[63.136612,-3.6091E-05],[63.140048,-4.0732E-05],[63.143484,-3.5576E-05],[63.14692,-3.3513E-05],[63.150356,-3.6091E-05],[63.153792,-3.9185E-05],[63.157228,-3.7122E-05],[63.160664,-3.5576E-05],[63.1641,-3.3513E-05],[63.167536,-3.3513E-05],[63.170972,-3.5576E-05],[63.174408,-3.5576E-05],[63.177844,-3.4544E-05],[63.18128,-3.5576E-05],[63.184716,-4.2278E-05],[63.188152,-3.8669E-05],[63.191588,-3.0935E-05],[63.195024,-2.9389E-05],[63.19846,-3.5576E-05],[63.201896,-3.2998E-05],[63.205332,-3.3513E-05],[63.208768,-3.97E-05],[63.212204,-3.1451E-05],[63.21564,-3.6607E-05],[63.219076,-3.8669E-05],[63.222512,-3.2482E-05],[63.225948,-3.5576E-05],[63.229384,-3.4544E-05],[63.23282,-3.4029E-05],[63.236256,-3.3513E-05],[63.239692,-3.8669E-05],[63.243128,-3.7638E-05],[63.246564,-3.4029E-05],[63.25,-3.7122E-05],[63.253436,-3.4029E-05]]}
-{"quant":[63.4331,-1.163],"mems":[[63.3359,-3.3513E-05],[63.339336,-3.3513E-05],[63.342772,-3.2998E-05],[63.346208,-3.8669E-05],[63.349644,-4.0216E-05],[63.35308,-3.506E-05],[63.356516,-3.7638E-05],[63.359952,-3.6607E-05],[63.363388,-3.6091E-05],[63.366824,-3.6091E-05],[63.37026,-3.506E-05],[63.373696,-3.7638E-05],[63.377132,-3.7122E-05],[63.380568,-3.7122E-05],[63.384004,-4.0216E-05],[63.38744,-3.6607E-05],[63.390876,-3.2998E-05],[63.394312,-3.3513E-05],[63.397748,-3.4029E-05],[63.401184,-3.7638E-05],[63.40462,-3.4029E-05],[63.408056,-3.5576E-05],[63.411492,-4.0732E-05],[63.414928,-3.97E-05],[63.418364,-3.7122E-05],[63.4218,-3.6607E-05],[63.425236,-4.0216E-05],[63.428672,-3.6607E-05],[63.432108,-3.2998E-05],[63.435544,-3.7638E-05],[63.43898,-3.7638E-05],[63.442416,-3.506E-05],[63.445852,-3.6091E-05],[63.449288,-3.3513E-05],[63.452724,-3.4029E-05],[63.45616,-3.5576E-05],[63.459596,-3.2998E-05],[63.463032,-3.506E-05],[63.466468,-3.4029E-05],[63.469904,-3.4029E-05],[63.47334,-3.6607E-05],[63.476776,-3.7638E-05],[63.480212,-4.0732E-05],[63.483648,-3.97E-05],[63.487084,-3.6607E-05],[63.49052,-3.97E-05],[63.493956,-3.8669E-05],[63.497392,-3.5576E-05],[63.500828,-3.7122E-05],[63.504264,-3.6091E-05],[63.5077,-3.1451E-05],[63.511136,-3.1451E-05],[63.514572,-3.7638E-05],[63.518008,-3.8154E-05],[63.521444,-3.7122E-05],[63.52488,-3.1967E-05],[63.528316,-2.8873E-05],[63.531752,-3.506E-05],[63.535188,-3.4029E-05],[63.538624,-3.2998E-05],[63.54206,-3.7638E-05],[63.545496,-3.97E-05],[63.548932,-3.7122E-05],[63.552368,-3.4544E-05],[63.555804,-3.6607E-05],[63.55924,-3.5576E-05],[63.562676,-3.97E-05],[63.566112,-3.8669E-05],[63.569548,-3.2998E-05],[63.572984,-3.7122E-05],[63.57642,-3.7122E-05],[63.579856,-3.7638E-05],[63.583292,-3.4544E-05],[63.586728,-3.4029E-05],[63.590164,-3.6607E-05],[63.5936,-3.4029E-05],[63.597036,-3.9185E-05],[63.600472,-3.8154E-05],[63.603908,-3.6607E-05],[63.607344,-3.506E-05],[63.61078,-3.4544E-05],[63.614216,-4.2278E-05],[63.617652,-3.8669E-05],[63.621088,-3.5576E-05],[63.624524,-4.1247E-05],[63.62796,-3.8669E-05],[63.631396,-3.2482E-05]]}
-{"quant":[63.7865,-1.1605],"mems":[[63.689808,-3.506E-05],[63.693244,-4.0216E-05],[63.69668,-3.7638E-05],[63.700116,-3.6091E-05],[63.703552,-3.8154E-05],[63.706988,-3.3513E-05],[63.710424,-3.5576E-05],[63.71386,-3.9185E-05],[63.717296,-3.4544E-05],[63.720732,-3.8154E-05],[63.724168,-4.0732E-05],[63.727604,-3.97E-05],[63.73104,-3.8669E-05],[63.734476,-3.8154E-05],[63.737912,-3.8154E-05],[63.741348,-3.7638E-05],[63.744784,-3.9185E-05],[63.74822,-3.6607E-05],[63.751656,-3.6091E-05],[63.755092,-3.97E-05],[63.758528,-3.9185E-05],[63.761964,-3.5576E-05],[63.7654,-3.7638E-05],[63.768836,-4.2794E-05],[63.772272,-3.6607E-05],[63.775708,-3.6091E-05],[63.779144,-4.3825E-05],[63.78258,-3.9185E-05],[63.786016,-3.2998E-05],[63.789452,-3.506E-05],[63.792888,-3.97E-05],[63.796324,-3.7122E-05],[63.79976,-3.6607E-05],[63.803196,-3.6607E-05],[63.806632,-3.4029E-05],[63.810068,-3.4029E-05],[63.813504,-3.1967E-05],[63.81694,-3.7122E-05],[63.820376,-3.4029E-05],[63.823812,-3.1451E-05],[63.827248,-3.8669E-05],[63.830684,-3.4544E-05],[63.83412,-3.1451E-05],[63.837556,-3.4029E-05],[63.840992,-3.7638E-05],[63.844428,-3.4029E-05],[63.847864,-2.9904E-05],[63.8513,-3.506E-05],[63.854736,-3.3513E-05],[63.858172,-3.506E-05],[63.861608,-3.7122E-05],[63.865044,-3.4544E-05],[63.86848,-3.3513E-05],[63.871916,-3.4029E-05],[63.875352,-3.9185E-05],[63.878788,-3.506E-05],[63.882224,-3.4029E-05],[63.88566,-3.7122E-05],[63.889096,-3.6607E-05],[63.892532,-3.7638E-05],[63.895968,-3.7122E-05],[63.899404,-3.6091E-05],[63.90284,-3.6607E-05],[63.906276,-3.8669E-05],[63.909712,-3.8669E-05],[63.913148,-3.8154E-05],[63.916584,-3.5576E-05],[63.92002,-3.506E-05],[63.923456,-3.7122E-05],[63.926892,-3.506E-05],[63.930328,-3.506E-05],[63.933764,-3.6091E-05],[63.9372,-3.3513E-05],[63.940636,-3.7638E-05],[63.944072,-3.9185E-05],[63.947508,-3.1451E-05],[63.950944,-3.7122E-05],[63.95438,-4.3309E-05],[63.957816,-4.0216E-05],[63.961252,-4.0732E-05],[63.964688,-3.8669E-05],[63.968124,-3.6091E-05],[63.97156,-3.4029E-05],[63.974996,-3.4029E-05],[63.978432,-3.7638E-05],[63.981868,-3.8669E-05],[63.985304,-3.9185E-05]]}
-{"quant":[64.153,-1.1574],"mems":[[64.054024,-3.8669E-05],[64.05746,-3.7638E-05],[64.060896,-3.6607E-05],[64.064332,-3.7122E-05],[64.067768,-3.506E-05],[64.071204,-3.042E-05],[64.07464,-3.4544E-05],[64.078076,-3.8154E-05],[64.081512,-3.6607E-05],[64.084948,-3.5576E-05],[64.088384,-3.1967E-05],[64.09182,-3.6091E-05],[64.095256,-4.0216E-05],[64.098692,-3.8154E-05],[64.102128,-3.5576E-05],[64.105564,-3.6091E-05],[64.109,-3.9185E-05],[64.112436,-4.2278E-05],[64.115872,-4.1247E-05],[64.119308,-3.6091E-05],[64.122744,-3.6607E-05],[64.12618,-3.7638E-05],[64.129616,-3.6091E-05],[64.133052,-3.8154E-05],[64.136488,-3.9185E-05],[64.139924,-3.6607E-05],[64.14336,-3.4029E-05],[64.146796,-3.506E-05],[64.150232,-3.506E-05],[64.153668,-3.4544E-05],[64.157104,-3.8669E-05],[64.16054,-4.2794E-05],[64.163976,-3.7638E-05],[64.167412,-3.5576E-05],[64.170848,-3.6607E-05],[64.174284,-3.4029E-05],[64.17772,-3.506E-05],[64.181156,-3.3513E-05],[64.184592,-3.6607E-05],[64.188028,-3.9185E-05],[64.191464,-3.4029E-05],[64.1949,-3.8154E-05],[64.198336,-3.8669E-05],[64.201772,-3.8154E-05],[64.205208,-4.0216E-05],[64.208644,-3.8669E-05],[64.21208,-3.6091E-05],[64.215516,-3.6607E-05],[64.218952,-3.8154E-05],[64.222388,-3.6607E-05],[64.225824,-3.7122E-05],[64.22926,-3.7122E-05],[64.232696,-3.6607E-05],[64.236132,-3.2998E-05],[64.239568,-3.5576E-05],[64.243004,-4.2794E-05],[64.24644,-3.6607E-05],[64.249876,-3.6607E-05],[64.253312,-3.97E-05],[64.256748,-3.8154E-05],[64.260184,-3.7122E-05],[64.26362,-3.506E-05],[64.267056,-3.7122E-05],[64.270492,-3.6091E-05],[64.273928,-3.6091E-05],[64.277364,-4.0732E-05],[64.2808,-3.6607E-05],[64.284236,-3.2482E-05],[64.287672,-3.1967E-05],[64.291108,-3.1967E-05],[64.294544,-3.5576E-05],[64.29798,-3.506E-05],[64.301416,-3.506E-05],[64.304852,-3.4544E-05],[64.308288,-3.4029E-05],[64.311724,-3.8669E-05],[64.31516,-3.7638E-05],[64.318596,-3.7122E-05],[64.322032,-3.5576E-05],[64.325468,-3.1967E-05],[64.328904,-3.2998E-05],[64.33234,-3.6607E-05],[64.335776,-3.8669E-05],[64.339212,-3.4544E-05],[64.342648,-3.3513E-05],[64.346084,-3.7122E-05],[64.34952,-3.506E-05],[64.352956,-3.506E-05]]}
-{"quant":[64.5297,-1.1513],"mems":[[64.431984,-3.8669E-05],[64.43542,-3.6091E-05],[64.438856,-3.3513E-05],[64.442292,-3.4544E-05],[64.445728,-3.6091E-05],[64.449164,-3.4544E-05],[64.4526,-3.7638E-05],[64.456036,-3.6607E-05],[64.459472,-3.5576E-05],[64.462908,-3.4029E-05],[64.466344,-3.0935E-05],[64.46978,-3.5576E-05],[64.473216,-3.506E-05],[64.476652,-3.5576E-05],[64.480088,-3.7638E-05],[64.483524,-3.4029E-05],[64.48696,-3.4544E-05],[64.490396,-3.6607E-05],[64.493832,-3.9185E-05],[64.497268,-3.7122E-05],[64.500704,-3.2482E-05],[64.50414,-3.7122E-05],[64.507576,-3.8669E-05],[64.511012,-3.506E-05],[64.514448,-3.97E-05],[64.517884,-4.1763E-05],[64.52132,-3.8669E-05],[64.524756,-3.5576E-05],[64.528192,-3.6607E-05],[64.531628,-4.1763E-05],[64.535064,-4.1247E-05],[64.5385,-4.2794E-05],[64.541936,-3.8669E-05],[64.545372,-3.4029E-05],[64.548808,-3.3513E-05],[64.552244,-3.4029E-05],[64.55568,-3.5576E-05],[64.559116,-3.4544E-05],[64.562552,-3.4544E-05],[64.565988,-3.2998E-05],[64.569424,-3.8154E-05],[64.57286,-4.1247E-05],[64.576296,-3.3513E-05],[64.579732,-3.3513E-05],[64.583168,-3.5576E-05],[64.586604,-3.042E-05],[64.59004,-2.6811E-05],[64.593476,-2.9904E-05],[64.596912,-3.8669E-05],[64.600348,-3.8154E-05],[64.603784,-3.2998E-05],[64.60722,-3.7122E-05],[64.610656,-3.6607E-05],[64.614092,-3.6091E-05],[64.617528,-3.6607E-05],[64.620964,-3.1967E-05],[64.6244,-3.6607E-05],[64.627836,-3.9185E-05],[64.631272,-3.6091E-05],[64.634708,-3.5576E-05],[64.638144,-3.2998E-05],[64.64158,-3.6607E-05],[64.645016,-3.97E-05],[64.648452,-3.8154E-05],[64.651888,-3.9185E-05],[64.655324,-3.7638E-05],[64.65876,-3.6607E-05],[64.662196,-3.8154E-05],[64.665632,-3.9185E-05],[64.669068,-3.6607E-05],[64.672504,-3.4029E-05],[64.67594,-3.6091E-05],[64.679376,-3.6091E-05],[64.682812,-3.6607E-05],[64.686248,-3.5576E-05],[64.689684,-3.506E-05],[64.69312,-3.8669E-05],[64.696556,-3.8669E-05],[64.699992,-3.8154E-05],[64.703428,-3.8669E-05],[64.706864,-3.97E-05],[64.7103,-3.6607E-05],[64.713736,-3.4544E-05],[64.717172,-3.6607E-05],[64.720608,-3.7122E-05],[64.724044,-3.8154E-05],[64.72748,-3.6091E-05]]}
-{"quant":[64.8929,-1.1349],"mems":[[64.7962,-3.5576E-05],[64.799636,-3.4029E-05],[64.803072,-3.7638E-05],[64.806508,-4.1763E-05],[64.809944,-4.3309E-05],[64.81338,-4.0732E-05],[64.816816,-3.8154E-05],[64.820252,-3.4544E-05],[64.823688,-3.4029E-05],[64.827124,-3.7638E-05],[64.83056,-3.6607E-05],[64.833996,-3.6091E-05],[64.837432,-3.2998E-05],[64.840868,-3.4029E-05],[64.844304,-3.9185E-05],[64.84774,-3.5576E-05],[64.851176,-3.506E-05],[64.854612,-3.5576E-05],[64.858048,-3.0935E-05],[64.861484,-3.6091E-05],[64.86492,-3.8154E-05],[64.868356,-3.7122E-05],[64.871792,-4.2278E-05],[64.875228,-3.6091E-05],[64.878664,-3.5576E-05],[64.8821,-3.97E-05],[64.885536,-3.8669E-05],[64.888972,-4.2278E-05],[64.892408,-3.9185E-05],[64.895844,-3.7638E-05],[64.89928,-3.9185E-05],[64.902716,-3.7638E-05],[64.906152,-4.1763E-05],[64.909588,-4.0732E-05],[64.913024,-3.6607E-05],[64.91646,-3.8669E-05],[64.919896,-3.4544E-05],[64.923332,-3.506E-05],[64.926768,-3.4544E-05],[64.930204,-3.5576E-05],[64.93364,-3.8669E-05],[64.937076,-3.506E-05],[64.940512,-3.7638E-05],[64.943948,-3.506E-05],[64.947384,-3.6091E-05],[64.95082,-4.2794E-05],[64.954256,-3.9185E-05],[64.957692,-3.7638E-05],[64.961128,-3.7638E-05],[64.964564,-3.7122E-05],[64.968,-3.8669E-05],[64.971453,-3.7638E-05],[64.974907,-3.6091E-05],[64.97836,-3.7122E-05],[64.981813,-3.506E-05],[64.985267,-3.6091E-05],[64.98872,-3.97E-05],[64.992173,-3.6607E-05],[64.995627,-3.4029E-05],[64.99908,-4.0216E-05],[65.002533,-4.0732E-05],[65.005987,-3.6607E-05],[65.00944,-3.6607E-05],[65.012893,-3.9185E-05],[65.016347,-3.7638E-05],[65.0198,-3.8669E-05],[65.023253,-4.1763E-05],[65.026707,-3.506E-05],[65.03016,-3.6607E-05],[65.033613,-4.0732E-05],[65.037067,-3.97E-05],[65.04052,-4.0216E-05],[65.043973,-3.7638E-05],[65.047427,-3.7122E-05],[65.05088,-3.3513E-05],[65.054333,-3.4029E-05],[65.057787,-3.6607E-05],[65.06124,-3.4544E-05],[65.064693,-3.7122E-05],[65.068147,-4.0732E-05],[65.0716,-4.0732E-05],[65.075053,-3.9185E-05],[65.078507,-3.8154E-05],[65.08196,-3.8154E-05],[65.085413,-3.8154E-05],[65.088867,-3.9185E-05],[65.09232,-4.0732E-05],[65.095773,-3.97E-05]]}
-{"quant":[65.2846,-1.1191],"mems":[[65.18556,-3.2482E-05],[65.189013,-3.5576E-05],[65.192467,-3.7638E-05],[65.19592,-3.8154E-05],[65.199373,-3.7122E-05],[65.202827,-3.6607E-05],[65.20628,-3.8669E-05],[65.209733,-3.7122E-05],[65.213187,-3.7122E-05],[65.21664,-3.5576E-05],[65.220093,-3.2998E-05],[65.223547,-3.2998E-05],[65.227,-3.2998E-05],[65.230453,-3.1967E-05],[65.233907,-3.3513E-05],[65.23736,-3.9185E-05],[65.240813,-3.97E-05],[65.244267,-3.506E-05],[65.24772,-3.2998E-05],[65.251173,-3.7638E-05],[65.254627,-3.7122E-05],[65.25808,-3.2998E-05],[65.261533,-3.7638E-05],[65.264987,-3.6091E-05],[65.26844,-3.6091E-05],[65.271893,-4.1763E-05],[65.275347,-4.1247E-05],[65.2788,-3.7638E-05],[65.282253,-3.2482E-05],[65.285707,-3.4544E-05],[65.28916,-3.506E-05],[65.292613,-3.506E-05],[65.296067,-4.0732E-05],[65.29952,-3.5576E-05],[65.302973,-3.4029E-05],[65.306427,-4.1247E-05],[65.30988,-3.6607E-05],[65.313333,-3.7638E-05],[65.316787,-4.0732E-05],[65.32024,-3.8154E-05],[65.323693,-3.6091E-05],[65.327147,-3.1967E-05],[65.3306,-3.7638E-05],[65.334053,-3.8669E-05],[65.337507,-3.7122E-05],[65.34096,-4.1247E-05],[65.344413,-3.7638E-05],[65.347867,-3.042E-05],[65.35132,-3.1451E-05],[65.354773,-3.7122E-05],[65.358227,-3.9185E-05],[65.36168,-3.8154E-05],[65.365133,-3.7122E-05],[65.368587,-3.506E-05],[65.37204,-3.7122E-05],[65.375493,-3.8154E-05],[65.378947,-3.2482E-05],[65.3824,-3.4029E-05],[65.385853,-3.1967E-05],[65.389307,-3.2482E-05],[65.39276,-3.506E-05],[65.396213,-3.6091E-05],[65.399667,-4.3309E-05],[65.40312,-3.8669E-05],[65.406573,-3.3513E-05],[65.410027,-3.7638E-05],[65.41348,-4.0216E-05],[65.416933,-4.0732E-05],[65.420387,-3.6607E-05],[65.42384,-3.4544E-05],[65.427293,-3.4029E-05],[65.430747,-3.4029E-05],[65.4342,-3.9185E-05],[65.437653,-4.3309E-05],[65.441107,-3.8154E-05],[65.44456,-3.506E-05],[65.448013,-3.9185E-05],[65.451467,-3.5576E-05],[65.45492,-3.7122E-05],[65.458373,-3.5576E-05],[65.461827,-3.1451E-05],[65.46528,-3.7122E-05],[65.468733,-3.2998E-05],[65.472187,-3.97E-05],[65.47564,-4.2794E-05],[65.479093,-3.4544E-05],[65.482547,-4.0216E-05]]}
-{"quant":[65.6839,-1.1003],"mems":[[65.586147,-3.6607E-05],[65.5896,-3.7122E-05],[65.593053,-3.5576E-05],[65.596507,-3.506E-05],[65.59996,-4.0216E-05],[65.603413,-3.5576E-05],[65.606867,-3.1967E-05],[65.61032,-3.6607E-05],[65.613773,-3.97E-05],[65.617227,-3.4544E-05],[65.62068,-3.4544E-05],[65.624133,-3.6091E-05],[65.627587,-3.3513E-05],[65.63104,-3.7638E-05],[65.634493,-3.8154E-05],[65.637947,-3.6091E-05],[65.6414,-3.6607E-05],[65.644853,-3.3513E-05],[65.648307,-3.1451E-05],[65.65176,-3.5576E-05],[65.655213,-3.6607E-05],[65.658667,-3.7122E-05],[65.66212,-3.7122E-05],[65.665573,-3.4544E-05],[65.669027,-3.3513E-05],[65.67248,-3.6607E-05],[65.675933,-3.6091E-05],[65.679387,-3.8669E-05],[65.68284,-4.4856E-05],[65.686293,-3.8154E-05],[65.689747,-3.4029E-05],[65.6932,-3.7122E-05],[65.696653,-3.6607E-05],[65.700107,-3.9185E-05],[65.70356,-3.8669E-05],[65.707013,-3.506E-05],[65.710467,-3.506E-05],[65.71392,-3.506E-05],[65.717373,-3.6607E-05],[65.720827,-3.6607E-05],[65.72428,-3.7638E-05],[65.727733,-4.1763E-05],[65.731187,-3.6091E-05],[65.73464,-3.4029E-05],[65.738093,-3.8154E-05],[65.741547,-3.506E-05],[65.745,-3.506E-05],[65.748453,-3.8669E-05],[65.751907,-3.6091E-05],[65.75536,-3.4544E-05],[65.758813,-3.9185E-05],[65.762267,-3.8154E-05],[65.76572,-3.3513E-05],[65.769173,-3.7638E-05],[65.772627,-3.7122E-05],[65.77608,-3.5576E-05],[65.779533,-3.7122E-05],[65.782987,-3.6091E-05],[65.78644,-3.8669E-05],[65.789893,-3.6091E-05],[65.793347,-3.4544E-05],[65.7968,-3.97E-05],[65.800253,-3.9185E-05],[65.803707,-3.7122E-05],[65.80716,-3.5576E-05],[65.810613,-3.5576E-05],[65.814067,-3.7638E-05],[65.81752,-3.9185E-05],[65.820973,-3.6607E-05],[65.824427,-3.9185E-05],[65.82788,-3.97E-05],[65.831333,-3.6091E-05],[65.834787,-3.8669E-05],[65.83824,-3.8154E-05],[65.841693,-3.97E-05],[65.845147,-3.8669E-05],[65.8486,-3.506E-05],[65.852053,-3.7122E-05],[65.855507,-3.4544E-05],[65.85896,-3.4544E-05],[65.862413,-3.8669E-05],[65.865867,-4.0216E-05],[65.86932,-3.7122E-05],[65.872773,-3.4544E-05],[65.876227,-3.6091E-05],[65.87968,-3.5576E-05],[65.883133,-3.3513E-05]]}
-{"quant":[66.0712,-1.0743],"mems":[[65.97292,-3.4029E-05],[65.976373,-3.8669E-05],[65.979827,-3.6091E-05],[65.98328,-3.5576E-05],[65.986733,-3.7638E-05],[65.990187,-3.1451E-05],[65.99364,-3.6091E-05],[65.997093,-3.97E-05],[66.000547,-4.2794E-05],[66.004,-4.2794E-05],[66.007453,-3.5576E-05],[66.010907,-4.0216E-05],[66.01436,-3.8154E-05],[66.017813,-3.506E-05],[66.021267,-3.5576E-05],[66.02472,-3.1967E-05],[66.028173,-3.6091E-05],[66.031627,-3.8669E-05],[66.03508,-3.97E-05],[66.038533,-3.8154E-05],[66.041987,-3.6091E-05],[66.04544,-3.7122E-05],[66.048893,-3.2482E-05],[66.052347,-3.5576E-05],[66.0558,-3.97E-05],[66.059253,-3.2482E-05],[66.062707,-3.2998E-05],[66.06616,-3.2998E-05],[66.069613,-3.2998E-05],[66.073067,-3.6607E-05],[66.07652,-3.5576E-05],[66.079973,-3.4544E-05],[66.083427,-3.2998E-05],[66.08688,-3.4029E-05],[66.090333,-3.2482E-05],[66.093787,-4.0216E-05],[66.09724,-4.1247E-05],[66.100693,-3.8669E-05],[66.104147,-4.3825E-05],[66.1076,-3.8154E-05],[66.111053,-3.97E-05],[66.114507,-4.2278E-05],[66.11796,-3.8669E-05],[66.121413,-3.9185E-05],[66.124867,-3.506E-05],[66.12832,-3.2998E-05],[66.131773,-3.5576E-05],[66.135227,-3.506E-05],[66.13868,-3.6091E-05],[66.142133,-3.7638E-05],[66.145587,-3.2998E-05],[66.14904,-3.2998E-05],[66.152493,-3.5576E-05],[66.155947,-3.506E-05],[66.1594,-3.5576E-05],[66.162853,-3.2482E-05],[66.166307,-3.506E-05],[66.16976,-3.6091E-05],[66.173213,-3.1967E-05],[66.176667,-3.6091E-05],[66.18012,-3.4544E-05],[66.183573,-3.6091E-05],[66.187027,-4.0216E-05],[66.19048,-3.6607E-05],[66.193933,-3.5576E-05],[66.197387,-3.7638E-05],[66.20084,-3.7638E-05],[66.204293,-3.6091E-05],[66.207747,-3.4544E-05],[66.2112,-3.4029E-05],[66.214653,-3.6607E-05],[66.218107,-3.8154E-05],[66.22156,-4.0732E-05],[66.225013,-3.8154E-05],[66.228467,-3.5576E-05],[66.23192,-3.7122E-05],[66.235373,-3.6607E-05],[66.238827,-3.8669E-05],[66.24228,-3.5576E-05],[66.245733,-3.1967E-05],[66.249187,-3.3513E-05],[66.25264,-3.5576E-05],[66.256093,-3.6091E-05],[66.259547,-3.7122E-05],[66.263,-3.9185E-05],[66.266453,-3.6091E-05],[66.269907,-3.2998E-05]]}
-{"quant":[66.4473,-1.0481],"mems":[[66.349333,-3.9185E-05],[66.352787,-3.7638E-05],[66.35624,-4.1763E-05],[66.359693,-3.9185E-05],[66.363147,-4.0216E-05],[66.3666,-3.9185E-05],[66.370053,-3.1967E-05],[66.373507,-3.6607E-05],[66.37696,-3.7638E-05],[66.380413,-3.4544E-05],[66.383867,-3.6607E-05],[66.38732,-3.97E-05],[66.390773,-3.5576E-05],[66.394227,-3.2998E-05],[66.39768,-3.7122E-05],[66.401133,-3.8669E-05],[66.404587,-3.8669E-05],[66.40804,-3.4544E-05],[66.411493,-3.2998E-05],[66.414947,-3.6607E-05],[66.4184,-3.6091E-05],[66.421853,-4.2794E-05],[66.425307,-4.0732E-05],[66.42876,-3.506E-05],[66.432213,-3.7638E-05],[66.435667,-3.3513E-05],[66.43912,-3.3513E-05],[66.442573,-3.1967E-05],[66.446027,-3.1451E-05],[66.44948,-3.6607E-05],[66.452933,-3.506E-05],[66.456387,-3.6607E-05],[66.45984,-4.0216E-05],[66.463293,-3.7638E-05],[66.466747,-3.6607E-05],[66.4702,-3.8669E-05],[66.473653,-3.8669E-05],[66.477107,-3.6091E-05],[66.48056,-3.7122E-05],[66.484013,-3.4544E-05],[66.487467,-3.4544E-05],[66.49092,-3.506E-05],[66.494373,-3.2482E-05],[66.497827,-3.5576E-05],[66.50128,-3.7638E-05],[66.504733,-3.9185E-05],[66.508187,-3.8669E-05],[66.51164,-3.5576E-05],[66.515093,-3.6091E-05],[66.518547,-3.6607E-05],[66.522,-3.8154E-05],[66.525453,-3.6607E-05],[66.528907,-3.2998E-05],[66.53236,-3.4029E-05],[66.535813,-3.6091E-05],[66.539267,-3.6091E-05],[66.54272,-3.6091E-05],[66.546173,-3.4029E-05],[66.549627,-3.4029E-05],[66.55308,-3.4544E-05],[66.556533,-3.506E-05],[66.559987,-4.0216E-05],[66.56344,-4.1247E-05],[66.566893,-3.8154E-05],[66.570347,-3.8154E-05],[66.5738,-3.97E-05],[66.577253,-3.8669E-05],[66.580707,-3.97E-05],[66.58416,-3.97E-05],[66.587613,-3.6091E-05],[66.591067,-3.7638E-05],[66.59452,-3.5576E-05],[66.597973,-3.7638E-05],[66.601427,-3.8669E-05],[66.60488,-3.1967E-05],[66.608333,-3.6607E-05],[66.611787,-3.7638E-05],[66.61524,-3.4544E-05],[66.618693,-3.5576E-05],[66.622147,-2.9904E-05],[66.6256,-3.0935E-05],[66.629053,-3.4544E-05],[66.632507,-3.042E-05],[66.63596,-3.2998E-05],[66.639413,-3.8154E-05],[66.642867,-3.6091E-05],[66.64632,-3.506E-05]]}
-{"quant":[66.8175,-1.0277],"mems":[[66.71884,-3.7638E-05],[66.722293,-3.8669E-05],[66.725747,-3.8154E-05],[66.7292,-3.6091E-05],[66.732653,-3.97E-05],[66.736107,-3.8669E-05],[66.73956,-3.6091E-05],[66.743013,-4.1247E-05],[66.746467,-3.8669E-05],[66.74992,-3.506E-05],[66.753373,-3.8154E-05],[66.756827,-4.1247E-05],[66.76028,-3.8669E-05],[66.763733,-3.4544E-05],[66.767187,-3.8669E-05],[66.77064,-3.7638E-05],[66.774093,-3.506E-05],[66.777547,-3.8154E-05],[66.781,-3.8154E-05],[66.784453,-3.6607E-05],[66.787907,-3.4029E-05],[66.79136,-3.2482E-05],[66.794813,-3.7638E-05],[66.798267,-4.0216E-05],[66.80172,-3.9185E-05],[66.805173,-3.7122E-05],[66.808627,-3.6091E-05],[66.81208,-3.4029E-05],[66.815533,-3.3513E-05],[66.818987,-3.8154E-05],[66.82244,-3.7638E-05],[66.825893,-3.7122E-05],[66.829347,-3.506E-05],[66.8328,-3.1967E-05],[66.836253,-3.8669E-05],[66.839707,-4.2278E-05],[66.84316,-3.8154E-05],[66.846613,-3.7122E-05],[66.850067,-3.6091E-05],[66.85352,-3.4544E-05],[66.856973,-4.1247E-05],[66.860427,-4.0216E-05],[66.86388,-3.7638E-05],[66.867333,-3.506E-05],[66.870787,-3.3513E-05],[66.87424,-3.8669E-05],[66.877693,-3.7638E-05],[66.881147,-3.8154E-05],[66.8846,-3.97E-05],[66.888053,-4.1247E-05],[66.891507,-3.9185E-05],[66.89496,-3.506E-05],[66.898413,-3.7122E-05],[66.901867,-3.97E-05],[66.90532,-3.8154E-05],[66.908773,-3.5576E-05],[66.912227,-3.6607E-05],[66.91568,-3.6091E-05],[66.919133,-3.8154E-05],[66.922587,-3.506E-05],[66.92604,-3.8154E-05],[66.929493,-4.0216E-05],[66.932947,-3.4544E-05],[66.9364,-3.6607E-05],[66.939853,-3.4544E-05],[66.943307,-3.8669E-05],[66.94676,-3.7122E-05],[66.950213,-3.3513E-05],[66.953667,-3.7122E-05],[66.95712,-3.6607E-05],[66.960573,-4.0732E-05],[66.964027,-3.6091E-05],[66.96748,-3.4029E-05],[66.970933,-3.8669E-05],[66.974387,-3.7638E-05],[66.97784,-3.9185E-05],[66.981293,-3.97E-05],[66.984747,-4.1247E-05],[66.9882,-3.506E-05],[66.991653,-3.4029E-05],[66.995107,-4.0216E-05],[66.99856,-3.8669E-05],[67.002013,-3.97E-05],[67.005467,-3.7638E-05],[67.00892,-3.5576E-05],[67.012373,-3.4544E-05],[67.015827,-3.7122E-05]]}
-{"quant":[67.1886,-1.0023],"mems":[[67.0918,-3.4029E-05],[67.095253,-3.4544E-05],[67.098707,-3.7638E-05],[67.10216,-3.97E-05],[67.105613,-3.8669E-05],[67.109067,-4.0732E-05],[67.11252,-3.5576E-05],[67.115973,-3.5576E-05],[67.119427,-3.7638E-05],[67.12288,-3.1967E-05],[67.126333,-3.6091E-05],[67.129787,-4.0732E-05],[67.13324,-3.97E-05],[67.136693,-3.6091E-05],[67.140147,-3.8669E-05],[67.1436,-3.97E-05],[67.147053,-3.3513E-05],[67.150507,-3.5576E-05],[67.15396,-3.8154E-05],[67.157413,-3.6607E-05],[67.160867,-3.6607E-05],[67.16432,-3.4029E-05],[67.167773,-3.1451E-05],[67.171227,-3.4544E-05],[67.17468,-3.7122E-05],[67.178133,-3.8154E-05],[67.181587,-3.6091E-05],[67.18504,-3.7122E-05],[67.188493,-3.7122E-05],[67.191947,-3.4029E-05],[67.1954,-3.6091E-05],[67.198853,-3.6091E-05],[67.202307,-3.7638E-05],[67.20576,-3.506E-05],[67.209213,-3.3513E-05],[67.212667,-3.4544E-05],[67.21612,-3.5576E-05],[67.219573,-3.5576E-05],[67.223027,-3.2482E-05],[67.22648,-3.8154E-05],[67.229933,-3.97E-05],[67.233387,-3.7122E-05],[67.23684,-3.6607E-05],[67.240293,-3.5576E-05],[67.243747,-3.8154E-05],[67.2472,-3.1451E-05],[67.250653,-3.1451E-05],[67.254107,-3.3513E-05],[67.25756,-3.042E-05],[67.261013,-3.5576E-05],[67.264467,-3.7122E-05],[67.26792,-3.5576E-05],[67.271373,-3.4029E-05],[67.274827,-3.506E-05],[67.27828,-3.6091E-05],[67.281733,-3.4544E-05],[67.285187,-4.0732E-05],[67.28864,-4.1247E-05],[67.292093,-3.1967E-05],[67.295547,-3.4029E-05],[67.299,-3.8154E-05],[67.302453,-3.4029E-05],[67.305907,-3.6091E-05],[67.30936,-3.4029E-05],[67.312813,-3.2482E-05],[67.316267,-3.6607E-05],[67.31972,-3.8154E-05],[67.323173,-3.97E-05],[67.326627,-3.506E-05],[67.33008,-3.6607E-05],[67.333533,-4.0216E-05],[67.336987,-3.8669E-05],[67.34044,-4.0216E-05],[67.343893,-3.4544E-05],[67.347347,-3.4029E-05],[67.3508,-3.6607E-05],[67.354253,-3.3513E-05],[67.357707,-3.4029E-05],[67.36116,-3.4029E-05],[67.364613,-3.6091E-05],[67.368067,-3.4544E-05],[67.37152,-3.2482E-05],[67.374973,-3.7638E-05],[67.378427,-3.7638E-05],[67.38188,-3.5576E-05],[67.385333,-3.4544E-05]]}
-{"quant":[67.5476,-0.97465],"mems":[[67.450947,-3.4029E-05],[67.4544,-3.2482E-05],[67.457853,-3.2998E-05],[67.461307,-3.506E-05],[67.46476,-3.4544E-05],[67.468213,-3.4029E-05],[67.471667,-3.6607E-05],[67.47512,-3.8669E-05],[67.478573,-3.8154E-05],[67.482027,-3.6091E-05],[67.48548,-3.97E-05],[67.488933,-3.97E-05],[67.492387,-3.7122E-05],[67.49584,-4.0216E-05],[67.499293,-4.0216E-05],[67.502747,-3.6607E-05],[67.5062,-3.506E-05],[67.509653,-3.5576E-05],[67.513107,-3.6091E-05],[67.51656,-3.2998E-05],[67.520013,-3.2482E-05],[67.523467,-3.7638E-05],[67.52692,-4.2794E-05],[67.530373,-4.0732E-05],[67.533827,-3.5576E-05],[67.53728,-4.2794E-05],[67.540733,-4.2278E-05],[67.544187,-3.4544E-05],[67.54764,-3.4544E-05],[67.551093,-3.506E-05],[67.554547,-3.8154E-05],[67.558,-3.8154E-05],[67.561531,-3.97E-05],[67.565061,-3.7122E-05],[67.568592,-3.3513E-05],[67.572123,-3.97E-05],[67.575653,-3.8669E-05],[67.579184,-3.7122E-05],[67.582715,-3.8154E-05],[67.586245,-3.97E-05],[67.589776,-3.6607E-05],[67.593307,-3.506E-05],[67.596837,-3.5576E-05],[67.600368,-3.506E-05],[67.603899,-3.97E-05],[67.607429,-3.97E-05],[67.61096,-4.1247E-05],[67.614491,-3.6091E-05],[67.618021,-3.7638E-05],[67.621552,-4.0732E-05],[67.625083,-3.1451E-05],[67.628613,-3.6607E-05],[67.632144,-3.8154E-05],[67.635675,-3.4029E-05],[67.639205,-3.506E-05],[67.642736,-3.4544E-05],[67.646267,-3.6607E-05],[67.649797,-3.6607E-05],[67.653328,-3.4544E-05],[67.656859,-3.4029E-05],[67.660389,-3.7122E-05],[67.66392,-3.97E-05],[67.667451,-3.8669E-05],[67.670981,-3.8669E-05],[67.674512,-3.7122E-05],[67.678043,-3.4029E-05],[67.681573,-3.6607E-05],[67.685104,-3.7638E-05],[67.688635,-3.6607E-05],[67.692165,-3.5576E-05],[67.695696,-3.2998E-05],[67.699227,-3.506E-05],[67.702757,-4.0216E-05],[67.706288,-3.9185E-05],[67.709819,-3.6091E-05],[67.713349,-3.7638E-05],[67.71688,-3.8669E-05],[67.720411,-3.8669E-05],[67.723941,-3.8154E-05],[67.727472,-3.8154E-05],[67.731003,-3.8154E-05],[67.734533,-3.8669E-05],[67.738064,-3.9185E-05],[67.741595,-3.7638E-05],[67.745125,-3.5576E-05],[67.748656,-3.6607E-05]]}
-{"quant":[67.9341,-0.95425],"mems":[[67.836923,-3.7122E-05],[67.840453,-3.506E-05],[67.843984,-3.2998E-05],[67.847515,-3.6091E-05],[67.851045,-3.9185E-05],[67.854576,-3.5576E-05],[67.858107,-3.2998E-05],[67.861637,-3.4544E-05],[67.865168,-3.3513E-05],[67.868699,-3.6607E-05],[67.872229,-4.4341E-05],[67.87576,-3.7638E-05],[67.879291,-3.3513E-05],[67.882821,-3.7122E-05],[67.886352,-3.9185E-05],[67.889883,-4.0216E-05],[67.893413,-3.8154E-05],[67.896944,-3.7122E-05],[67.900475,-3.6607E-05],[67.904005,-3.6607E-05],[67.907536,-3.6091E-05],[67.911067,-3.4544E-05],[67.914597,-3.7122E-05],[67.918128,-3.6091E-05],[67.921659,-3.3513E-05],[67.925189,-3.7122E-05],[67.92872,-3.7638E-05],[67.932251,-3.5576E-05],[67.935781,-3.97E-05],[67.939312,-4.2278E-05],[67.942843,-4.1763E-05],[67.946373,-3.8154E-05],[67.949904,-3.6091E-05],[67.953435,-3.9185E-05],[67.956965,-4.1247E-05],[67.960496,-3.8669E-05],[67.964027,-3.9185E-05],[67.967557,-3.8154E-05],[67.971088,-3.4544E-05],[67.974619,-4.0216E-05],[67.978149,-3.4544E-05],[67.98168,-3.3513E-05],[67.985211,-3.6607E-05],[67.988741,-3.2482E-05],[67.992272,-4.0216E-05],[67.995803,-4.0216E-05],[67.999333,-3.7638E-05],[68.002864,-4.0216E-05],[68.006395,-3.7122E-05],[68.009925,-3.6607E-05],[68.013456,-3.6091E-05],[68.016987,-3.506E-05],[68.020517,-3.506E-05],[68.024048,-3.4544E-05],[68.027579,-3.6607E-05],[68.031109,-3.97E-05],[68.03464,-3.97E-05],[68.038171,-3.5576E-05],[68.041701,-3.3513E-05],[68.045232,-3.3513E-05],[68.048763,-3.8154E-05],[68.052293,-4.0732E-05],[68.055824,-4.1247E-05],[68.059355,-4.0216E-05],[68.062885,-3.2482E-05],[68.066416,-3.2482E-05],[68.069947,-3.8154E-05],[68.073477,-3.9185E-05],[68.077008,-3.5576E-05],[68.080539,-3.4029E-05],[68.084069,-3.042E-05],[68.0876,-2.9904E-05],[68.091131,-3.6607E-05],[68.094661,-3.4544E-05],[68.098192,-3.5576E-05],[68.101723,-3.6607E-05],[68.105253,-3.2998E-05],[68.108784,-3.7638E-05],[68.112315,-3.6607E-05],[68.115845,-3.6091E-05],[68.119376,-3.97E-05],[68.122907,-3.7122E-05],[68.126437,-3.4029E-05],[68.129968,-3.5576E-05],[68.133499,-3.7122E-05]]}
-{"quant":[68.3177,-0.93316],"mems":[[68.218235,-3.7638E-05],[68.221765,-4.0732E-05],[68.225296,-4.2278E-05],[68.228827,-3.8669E-05],[68.232357,-3.7638E-05],[68.235888,-3.97E-05],[68.239419,-4.0216E-05],[68.242949,-3.8669E-05],[68.24648,-3.042E-05],[68.250011,-2.9389E-05],[68.253541,-3.7638E-05],[68.257072,-3.7122E-05],[68.260603,-3.7638E-05],[68.264133,-3.5576E-05],[68.267664,-3.0935E-05],[68.271195,-3.8154E-05],[68.274725,-4.0216E-05],[68.278256,-3.97E-05],[68.281787,-3.9185E-05],[68.285317,-3.4029E-05],[68.288848,-3.7122E-05],[68.292379,-3.6091E-05],[68.295909,-3.8154E-05],[68.29944,-4.1763E-05],[68.302971,-3.7122E-05],[68.306501,-3.7122E-05],[68.310032,-3.506E-05],[68.313563,-3.4544E-05],[68.317093,-4.1247E-05],[68.320624,-4.0216E-05],[68.324155,-3.4029E-05],[68.327685,-3.506E-05],[68.331216,-3.3513E-05],[68.334747,-3.2998E-05],[68.338277,-4.1763E-05],[68.341808,-3.97E-05],[68.345339,-3.6091E-05],[68.348869,-3.5576E-05],[68.3524,-3.5576E-05],[68.355931,-3.8669E-05],[68.359461,-3.8154E-05],[68.362992,-3.5576E-05],[68.366523,-3.7638E-05],[68.370053,-4.1247E-05],[68.373584,-3.8669E-05],[68.377115,-3.6607E-05],[68.380645,-3.8669E-05],[68.384176,-3.6091E-05],[68.387707,-3.3513E-05],[68.391237,-3.5576E-05],[68.394768,-3.2998E-05],[68.398299,-3.3513E-05],[68.401829,-3.6607E-05],[68.40536,-3.4544E-05],[68.408891,-3.4544E-05],[68.412421,-3.3513E-05],[68.415952,-3.506E-05],[68.419483,-3.6607E-05],[68.423013,-3.3513E-05],[68.426544,-3.4544E-05],[68.430075,-3.1967E-05],[68.433605,-3.1451E-05],[68.437136,-3.4544E-05],[68.440667,-3.5576E-05],[68.444197,-3.8154E-05],[68.447728,-3.6607E-05],[68.451259,-3.7122E-05],[68.454789,-3.8669E-05],[68.45832,-3.8669E-05],[68.461851,-3.6091E-05],[68.465381,-3.8154E-05],[68.468912,-3.8669E-05],[68.472443,-3.2998E-05],[68.475973,-2.9904E-05],[68.479504,-2.9904E-05],[68.483035,-3.7122E-05],[68.486565,-3.8669E-05],[68.490096,-3.7638E-05],[68.493627,-3.8154E-05],[68.497157,-3.6607E-05],[68.500688,-3.9185E-05],[68.504219,-4.0732E-05],[68.507749,-3.9185E-05],[68.51128,-3.5576E-05],[68.514811,-3.4029E-05]]}
-{"quant":[68.6935,-0.91058],"mems":[[68.596016,-4.1763E-05],[68.599547,-3.7638E-05],[68.603077,-3.7638E-05],[68.606608,-4.0216E-05],[68.610139,-3.8154E-05],[68.613669,-3.6091E-05],[68.6172,-3.1451E-05],[68.620731,-3.7122E-05],[68.624261,-4.2278E-05],[68.627792,-3.97E-05],[68.631323,-3.8669E-05],[68.634853,-3.7122E-05],[68.638384,-3.8669E-05],[68.641915,-3.8154E-05],[68.645445,-3.6091E-05],[68.648976,-3.2482E-05],[68.652507,-3.5576E-05],[68.656037,-3.7638E-05],[68.659568,-3.7638E-05],[68.663099,-4.0732E-05],[68.666629,-3.7122E-05],[68.67016,-3.3513E-05],[68.673691,-3.4544E-05],[68.677221,-3.6091E-05],[68.680752,-3.4029E-05],[68.684283,-3.8669E-05],[68.687813,-4.1247E-05],[68.691344,-3.4029E-05],[68.694875,-3.6607E-05],[68.698405,-3.8154E-05],[68.701936,-3.7638E-05],[68.705467,-3.5576E-05],[68.708997,-3.4029E-05],[68.712528,-4.0732E-05],[68.716059,-3.6091E-05],[68.719589,-3.7638E-05],[68.72312,-4.3825E-05],[68.726651,-3.5576E-05],[68.730181,-3.506E-05],[68.733712,-3.8154E-05],[68.737243,-3.6607E-05],[68.740773,-3.042E-05],[68.744304,-3.2482E-05],[68.747835,-3.8154E-05],[68.751365,-3.4544E-05],[68.754896,-3.4544E-05],[68.758427,-3.3513E-05],[68.761957,-3.6091E-05],[68.765488,-3.4029E-05],[68.769019,-3.3513E-05],[68.772549,-3.7638E-05],[68.77608,-3.4029E-05],[68.779611,-3.7122E-05],[68.783141,-3.5576E-05],[68.786672,-3.1451E-05],[68.790203,-3.7638E-05],[68.793733,-3.8154E-05],[68.797264,-3.6091E-05],[68.800795,-3.7122E-05],[68.804325,-3.6607E-05],[68.807856,-3.97E-05],[68.811387,-4.0216E-05],[68.814917,-3.7638E-05],[68.818448,-3.506E-05],[68.821979,-3.8154E-05],[68.825509,-3.7638E-05],[68.82904,-3.2998E-05],[68.832571,-3.6607E-05],[68.836101,-3.7122E-05],[68.839632,-3.8154E-05],[68.843163,-3.5576E-05],[68.846693,-3.6091E-05],[68.850224,-3.7122E-05],[68.853755,-3.3513E-05],[68.857285,-3.6091E-05],[68.860816,-3.7638E-05],[68.864347,-3.5576E-05],[68.867877,-3.042E-05],[68.871408,-3.6607E-05],[68.874939,-4.0216E-05],[68.878469,-3.3513E-05],[68.882,-3.506E-05],[68.885531,-3.5576E-05],[68.889061,-3.8154E-05],[68.892592,-3.6091E-05]]}
-{"quant":[69.0705,-0.88861],"mems":[[68.973797,-3.9185E-05],[68.977328,-3.3513E-05],[68.980859,-3.3513E-05],[68.984389,-3.6091E-05],[68.98792,-3.506E-05],[68.991451,-3.8669E-05],[68.994981,-3.8154E-05],[68.998512,-3.5576E-05],[69.002043,-3.8669E-05],[69.005573,-3.9185E-05],[69.009104,-3.3513E-05],[69.012635,-3.7122E-05],[69.016165,-4.0732E-05],[69.019696,-3.7638E-05],[69.023227,-3.8154E-05],[69.026757,-3.5576E-05],[69.030288,-3.4544E-05],[69.033819,-3.506E-05],[69.037349,-3.6091E-05],[69.04088,-3.9185E-05],[69.044411,-4.0732E-05],[69.047941,-3.4029E-05],[69.051472,-3.506E-05],[69.055003,-4.1247E-05],[69.058533,-3.6607E-05],[69.062064,-3.4544E-05],[69.065595,-3.3513E-05],[69.069125,-3.4029E-05],[69.072656,-3.3513E-05],[69.076187,-3.5576E-05],[69.079717,-4.0732E-05],[69.083248,-3.5576E-05],[69.086779,-3.5576E-05],[69.090309,-3.5576E-05],[69.09384,-3.4544E-05],[69.097371,-3.7638E-05],[69.100901,-3.7122E-05],[69.104432,-3.97E-05],[69.107963,-3.97E-05],[69.111493,-3.6607E-05],[69.115024,-3.8154E-05],[69.118555,-3.506E-05],[69.122085,-3.1967E-05],[69.125616,-3.2482E-05],[69.129147,-3.2482E-05],[69.132677,-3.6091E-05],[69.136208,-3.6607E-05],[69.139739,-3.7122E-05],[69.143269,-3.4029E-05],[69.1468,-3.4544E-05],[69.150331,-3.506E-05],[69.153861,-3.5576E-05],[69.157392,-4.3309E-05],[69.160923,-4.0216E-05],[69.164453,-3.8154E-05],[69.167984,-3.8669E-05],[69.171515,-3.6091E-05],[69.175045,-3.6607E-05],[69.178576,-3.7638E-05],[69.182107,-3.9185E-05],[69.185637,-3.2998E-05],[69.189168,-3.2998E-05],[69.192699,-3.6091E-05],[69.196229,-3.7122E-05],[69.19976,-4.2794E-05],[69.203291,-3.97E-05],[69.206821,-3.6607E-05],[69.210352,-3.6607E-05],[69.213883,-3.3513E-05],[69.217413,-3.7122E-05],[69.220944,-3.6091E-05],[69.224475,-3.5576E-05],[69.228005,-3.6607E-05],[69.231536,-3.5576E-05],[69.235067,-3.7122E-05],[69.238597,-4.0216E-05],[69.242128,-4.1763E-05],[69.245659,-3.7122E-05],[69.249189,-3.6091E-05],[69.25272,-3.6607E-05],[69.256251,-3.6607E-05],[69.259781,-3.8154E-05],[69.263312,-3.7122E-05],[69.266843,-3.7122E-05],[69.270373,-3.6091E-05]]}
-{"quant":[69.457,-0.87137],"mems":[[69.35864,-3.1451E-05],[69.362171,-3.8669E-05],[69.365701,-3.7122E-05],[69.369232,-3.506E-05],[69.372763,-3.6607E-05],[69.376293,-3.4029E-05],[69.379824,-3.506E-05],[69.383355,-3.97E-05],[69.386885,-3.9185E-05],[69.390416,-3.506E-05],[69.393947,-3.9185E-05],[69.397477,-3.506E-05],[69.401008,-3.1451E-05],[69.404539,-3.8669E-05],[69.408069,-3.7638E-05],[69.4116,-3.506E-05],[69.415131,-3.2482E-05],[69.418661,-3.2482E-05],[69.422192,-3.8669E-05],[69.425723,-4.0216E-05],[69.429253,-3.6607E-05],[69.432784,-3.6091E-05],[69.436315,-3.506E-05],[69.439845,-3.4544E-05],[69.443376,-3.7122E-05],[69.446907,-3.7638E-05],[69.450437,-3.6091E-05],[69.453968,-3.7122E-05],[69.457499,-3.3513E-05],[69.461029,-3.1451E-05],[69.46456,-3.8154E-05],[69.468091,-3.7638E-05],[69.471621,-3.0935E-05],[69.475152,-3.1967E-05],[69.478683,-3.2998E-05],[69.482213,-3.4029E-05],[69.485744,-3.506E-05],[69.489275,-3.506E-05],[69.492805,-3.4029E-05],[69.496336,-3.2998E-05],[69.499867,-3.4029E-05],[69.503397,-3.1967E-05],[69.506928,-3.3513E-05],[69.510459,-3.7122E-05],[69.513989,-3.506E-05],[69.51752,-3.8154E-05],[69.521051,-3.8154E-05],[69.524581,-3.6091E-05],[69.528112,-4.0732E-05],[69.531643,-3.7122E-05],[69.535173,-3.4544E-05],[69.538704,-3.4029E-05],[69.542235,-3.1967E-05],[69.545765,-3.506E-05],[69.549296,-3.6091E-05],[69.552827,-3.8669E-05],[69.556357,-3.7122E-05],[69.559888,-3.7122E-05],[69.563419,-3.6607E-05],[69.566949,-3.5576E-05],[69.57048,-3.6607E-05],[69.574011,-3.2482E-05],[69.577541,-3.2482E-05],[69.581072,-3.2998E-05],[69.584603,-3.6091E-05],[69.588133,-3.9185E-05],[69.591664,-3.6091E-05],[69.595195,-3.6091E-05],[69.598725,-3.7638E-05],[69.602256,-3.6091E-05],[69.605787,-3.506E-05],[69.609317,-3.5576E-05],[69.612848,-3.8154E-05],[69.616379,-3.9185E-05],[69.619909,-3.7122E-05],[69.62344,-3.1451E-05],[69.626971,-3.1451E-05],[69.630501,-3.4029E-05],[69.634032,-3.2482E-05],[69.637563,-3.8154E-05],[69.641093,-3.4544E-05],[69.644624,-2.9389E-05],[69.648155,-3.8154E-05],[69.651685,-3.4544E-05],[69.655216,-3.3513E-05]]}
-{"quant":[69.8249,-0.85062],"mems":[[69.725829,-3.8669E-05],[69.72936,-4.0732E-05],[69.732891,-3.8669E-05],[69.736421,-3.0935E-05],[69.739952,-3.042E-05],[69.743483,-3.506E-05],[69.747013,-3.6091E-05],[69.750544,-3.7122E-05],[69.754075,-3.7638E-05],[69.757605,-3.4029E-05],[69.761136,-3.4029E-05],[69.764667,-3.2482E-05],[69.768197,-3.3513E-05],[69.771728,-3.8154E-05],[69.775259,-3.8154E-05],[69.778789,-4.0732E-05],[69.78232,-3.7122E-05],[69.785851,-3.3513E-05],[69.789381,-3.97E-05],[69.792912,-3.9185E-05],[69.796443,-3.1967E-05],[69.799973,-3.3513E-05],[69.803504,-3.4544E-05],[69.807035,-3.0935E-05],[69.810565,-3.4544E-05],[69.814096,-4.1247E-05],[69.817627,-3.9185E-05],[69.821157,-3.6607E-05],[69.824688,-3.8154E-05],[69.828219,-3.8154E-05],[69.831749,-3.7638E-05],[69.83528,-3.6607E-05],[69.838811,-3.4544E-05],[69.842341,-3.3513E-05],[69.845872,-3.4544E-05],[69.849403,-3.4544E-05],[69.852933,-3.6607E-05],[69.856464,-3.9185E-05],[69.859995,-3.8154E-05],[69.863525,-3.8669E-05],[69.867056,-3.9185E-05],[69.870587,-3.8669E-05],[69.874117,-3.6607E-05],[69.877648,-3.4544E-05],[69.881179,-3.4544E-05],[69.884709,-3.506E-05],[69.88824,-3.506E-05],[69.891771,-3.2998E-05],[69.895301,-3.3513E-05],[69.898832,-3.5576E-05],[69.902363,-3.7638E-05],[69.905893,-3.3513E-05],[69.909424,-2.9904E-05],[69.912955,-3.2998E-05],[69.916485,-3.4029E-05],[69.920016,-3.5576E-05],[69.923547,-3.7122E-05],[69.927077,-3.7638E-05],[69.930608,-3.5576E-05],[69.934139,-3.2998E-05],[69.937669,-3.8669E-05],[69.9412,-4.2278E-05],[69.944731,-3.7638E-05],[69.948261,-3.3513E-05],[69.951792,-3.4029E-05],[69.955323,-3.7638E-05],[69.958853,-3.8154E-05],[69.962384,-3.6607E-05],[69.965915,-3.506E-05],[69.969445,-3.4544E-05],[69.972976,-3.5576E-05],[69.976507,-3.506E-05],[69.980037,-3.2998E-05],[69.983568,-3.4544E-05],[69.987099,-3.6091E-05],[69.990629,-3.4029E-05],[69.99416,-3.97E-05],[69.997691,-4.2794E-05],[70.001221,-3.6607E-05],[70.004752,-3.7122E-05],[70.008283,-3.6607E-05],[70.011813,-3.4029E-05],[70.015344,-3.6607E-05],[70.018875,-3.9185E-05],[70.022405,-3.9185E-05]]}
-{"quant":[70.1929,-0.82107],"mems":[[70.184816,-3.7638E-05],[70.188347,-3.8154E-05],[70.191877,-3.7638E-05],[70.195408,-3.2998E-05],[70.198939,-3.2482E-05],[70.202469,-3.5576E-05],[70.206,-3.2482E-05],[70.209329,-3.2998E-05],[70.212659,-3.3513E-05],[70.215988,-3.6091E-05],[70.219317,-3.7122E-05],[70.222647,-3.5576E-05],[70.225976,-3.6607E-05],[70.229305,-3.1967E-05],[70.232635,-3.1967E-05],[70.235964,-3.8669E-05],[70.239293,-3.8669E-05],[70.242623,-3.9185E-05],[70.245952,-3.7638E-05],[70.249281,-3.4029E-05],[70.252611,-3.7122E-05],[70.25594,-3.5576E-05],[70.259269,-3.1451E-05],[70.262599,-3.97E-05],[70.265928,-4.1247E-05],[70.269257,-3.506E-05],[70.272587,-3.5576E-05],[70.275916,-3.7638E-05],[70.279245,-4.1763E-05],[70.282575,-3.6091E-05],[70.285904,-3.506E-05],[70.289233,-3.6091E-05],[70.292563,-3.1451E-05],[70.295892,-3.6607E-05],[70.299221,-3.97E-05],[70.302551,-4.0216E-05],[70.30588,-3.7122E-05],[70.309209,-3.2482E-05],[70.312539,-3.7122E-05],[70.315868,-4.0732E-05],[70.319197,-3.7122E-05],[70.322527,-3.5576E-05],[70.325856,-3.7122E-05],[70.329185,-3.7122E-05],[70.332515,-3.506E-05],[70.335844,-3.4544E-05],[70.339173,-4.0216E-05],[70.342503,-4.1763E-05],[70.345832,-3.3513E-05],[70.349161,-3.3513E-05],[70.352491,-3.7638E-05],[70.35582,-3.5576E-05],[70.359149,-3.506E-05],[70.362479,-3.3513E-05],[70.365808,-3.6607E-05],[70.369137,-3.6607E-05],[70.372467,-3.506E-05],[70.375796,-3.8154E-05],[70.379125,-3.8669E-05],[70.382455,-3.5576E-05],[70.385784,-3.1967E-05],[70.389113,-3.2998E-05],[70.392443,-3.4544E-05],[70.395772,-3.7122E-05],[70.399101,-4.1763E-05],[70.402431,-3.8669E-05],[70.40576,-3.3513E-05],[70.409089,-3.3513E-05],[70.412419,-3.1967E-05],[70.415748,-3.8154E-05],[70.419077,-4.2278E-05],[70.422407,-2.9904E-05],[70.425736,-3.506E-05],[70.429065,-4.1247E-05],[70.432395,-3.4544E-05],[70.435724,-3.8154E-05],[70.439053,-3.506E-05],[70.442383,-3.2998E-05],[70.445712,-3.506E-05],[70.449041,-3.4544E-05],[70.452371,-3.9185E-05],[70.4557,-4.1247E-05],[70.459029,-4.0216E-05],[70.462359,-3.9185E-05],[70.465688,-3.6091E-05],[70.469017,-3.2482E-05],[70.472347,-3.4544E-05],[70.475676,-3.7122E-05]]}
-{"quant":[70.5974,-0.79535],"mems":[[70.498981,-3.8669E-05],[70.502311,-3.8154E-05],[70.50564,-3.4544E-05],[70.508969,-3.7122E-05],[70.512299,-3.7122E-05],[70.515628,-4.1247E-05],[70.518957,-4.0732E-05],[70.522287,-3.7122E-05],[70.525616,-3.8154E-05],[70.528945,-4.1247E-05],[70.532275,-3.9185E-05],[70.535604,-3.7638E-05],[70.538933,-4.0732E-05],[70.542263,-3.6091E-05],[70.545592,-3.1967E-05],[70.548921,-3.1967E-05],[70.552251,-3.5576E-05],[70.55558,-4.0216E-05],[70.558909,-4.0216E-05],[70.562239,-3.6091E-05],[70.565568,-3.3513E-05],[70.568897,-3.6091E-05],[70.572227,-3.6607E-05],[70.575556,-3.7638E-05],[70.578885,-3.97E-05],[70.582215,-3.5576E-05],[70.585544,-3.6091E-05],[70.588873,-4.5372E-05],[70.592203,-4.4856E-05],[70.595532,-4.1763E-05],[70.598861,-4.0732E-05],[70.602191,-3.2998E-05],[70.60552,-3.4544E-05],[70.608849,-3.7122E-05],[70.612179,-3.6091E-05],[70.615508,-3.4029E-05],[70.618837,-3.2482E-05],[70.622167,-3.2998E-05],[70.625496,-3.6607E-05],[70.628825,-3.8154E-05],[70.632155,-3.5576E-05],[70.635484,-3.7638E-05],[70.638813,-3.4544E-05],[70.642143,-3.4029E-05],[70.645472,-3.7122E-05],[70.648801,-3.7122E-05],[70.652131,-3.6607E-05],[70.65546,-3.5576E-05],[70.658789,-3.8669E-05],[70.662119,-3.9185E-05],[70.665448,-3.9185E-05],[70.668777,-3.8669E-05],[70.672107,-3.6607E-05],[70.675436,-3.7638E-05],[70.678765,-3.4029E-05],[70.682095,-3.2998E-05],[70.685424,-4.0216E-05],[70.688753,-3.8669E-05],[70.692083,-3.8154E-05],[70.695412,-3.4544E-05],[70.698741,-2.9904E-05],[70.702071,-3.4544E-05],[70.7054,-3.2998E-05],[70.708729,-3.3513E-05],[70.712059,-3.2482E-05],[70.715388,-3.042E-05],[70.718717,-3.4029E-05],[70.722047,-3.7122E-05],[70.725376,-3.6607E-05],[70.728705,-3.8154E-05],[70.732035,-4.2278E-05],[70.735364,-3.8154E-05],[70.738693,-3.8669E-05],[70.742023,-3.3513E-05],[70.745352,-3.1967E-05],[70.748681,-3.9185E-05],[70.752011,-3.8154E-05],[70.75534,-3.9185E-05],[70.758669,-3.8154E-05],[70.761999,-3.9185E-05],[70.765328,-4.1247E-05],[70.768657,-3.5576E-05],[70.771987,-3.5576E-05],[70.775316,-3.6091E-05],[70.778645,-3.5576E-05],[70.781975,-3.5576E-05],[70.785304,-3.2998E-05],[70.788633,-3.8154E-05],[70.791963,-4.0216E-05],[70.795292,-3.4544E-05]]}
-{"quant":[70.9672,-0.76876],"mems":[[70.868537,-3.4544E-05],[70.871867,-3.7638E-05],[70.875196,-3.8669E-05],[70.878525,-3.8669E-05],[70.881855,-3.9185E-05],[70.885184,-3.7122E-05],[70.888513,-3.7638E-05],[70.891843,-3.5576E-05],[70.895172,-3.4544E-05],[70.898501,-3.7122E-05],[70.901831,-3.506E-05],[70.90516,-3.1451E-05],[70.908489,-3.3513E-05],[70.911819,-2.9904E-05],[70.915148,-3.042E-05],[70.918477,-4.1247E-05],[70.921807,-4.1763E-05],[70.925136,-3.8154E-05],[70.928465,-3.8154E-05],[70.931795,-3.7122E-05],[70.935124,-3.506E-05],[70.938453,-3.6091E-05],[70.941783,-3.97E-05],[70.945112,-3.7122E-05],[70.948441,-3.1451E-05],[70.951771,-3.3513E-05],[70.9551,-3.5576E-05],[70.958429,-3.5576E-05],[70.961759,-3.6607E-05],[70.965088,-3.506E-05],[70.968417,-3.6607E-05],[70.971747,-3.6607E-05],[70.975076,-3.8669E-05],[70.978405,-4.3309E-05],[70.981735,-3.9185E-05],[70.985064,-3.506E-05],[70.988393,-3.3513E-05],[70.991723,-3.4544E-05],[70.995052,-3.4544E-05],[70.998381,-3.8669E-05],[71.001711,-3.9185E-05],[71.00504,-3.2998E-05],[71.008369,-3.506E-05],[71.011699,-3.7122E-05],[71.015028,-3.97E-05],[71.018357,-3.97E-05],[71.021687,-3.97E-05],[71.025016,-3.6091E-05],[71.028345,-3.2998E-05],[71.031675,-3.7638E-05],[71.035004,-3.7122E-05],[71.038333,-3.8669E-05],[71.041663,-3.4544E-05],[71.044992,-3.0935E-05],[71.048321,-3.3513E-05],[71.051651,-3.7122E-05],[71.05498,-4.1247E-05],[71.058309,-3.6607E-05],[71.061639,-3.0935E-05],[71.064968,-3.4029E-05],[71.068297,-3.5576E-05],[71.071627,-3.7122E-05],[71.074956,-4.2278E-05],[71.078285,-3.7122E-05],[71.081615,-3.4544E-05],[71.084944,-3.8154E-05],[71.088273,-3.6607E-05],[71.091603,-3.7638E-05],[71.094932,-3.6607E-05],[71.098261,-4.0216E-05],[71.101591,-4.0732E-05],[71.10492,-3.506E-05],[71.108249,-3.7122E-05],[71.111579,-3.7122E-05],[71.114908,-4.0216E-05],[71.118237,-3.7638E-05],[71.121567,-2.8873E-05],[71.124896,-3.1451E-05],[71.128225,-3.4544E-05],[71.131555,-3.506E-05],[71.134884,-3.6607E-05],[71.138213,-3.4544E-05],[71.141543,-3.4029E-05],[71.144872,-3.6607E-05],[71.148201,-3.506E-05],[71.151531,-3.4029E-05],[71.15486,-3.6091E-05],[71.158189,-3.5576E-05],[71.161519,-3.6607E-05],[71.164848,-4.0216E-05]]}
-{"quant":[71.3289,-0.73565],"mems":[[71.231435,-3.5576E-05],[71.234764,-3.5576E-05],[71.238093,-4.0732E-05],[71.241423,-3.8669E-05],[71.244752,-3.6607E-05],[71.248081,-3.506E-05],[71.251411,-3.8154E-05],[71.25474,-4.0732E-05],[71.258069,-3.4544E-05],[71.261399,-3.6607E-05],[71.264728,-4.0216E-05],[71.268057,-3.5576E-05],[71.271387,-3.5576E-05],[71.274716,-3.4544E-05],[71.278045,-3.4544E-05],[71.281375,-3.7122E-05],[71.284704,-4.1763E-05],[71.288033,-3.8669E-05],[71.291363,-3.506E-05],[71.294692,-3.8154E-05],[71.298021,-3.042E-05],[71.301351,-3.506E-05],[71.30468,-3.7638E-05],[71.308009,-3.1451E-05],[71.311339,-3.6091E-05],[71.314668,-3.3513E-05],[71.317997,-3.5576E-05],[71.321327,-4.0732E-05],[71.324656,-3.9185E-05],[71.327985,-3.506E-05],[71.331315,-3.3513E-05],[71.334644,-3.506E-05],[71.337973,-3.4029E-05],[71.341303,-3.506E-05],[71.344632,-3.4029E-05],[71.347961,-3.8669E-05],[71.351291,-4.0732E-05],[71.35462,-3.7122E-05],[71.357949,-3.9185E-05],[71.361279,-3.8669E-05],[71.364608,-3.8669E-05],[71.367937,-3.7638E-05],[71.371267,-3.6091E-05],[71.374596,-3.6607E-05],[71.377925,-3.6091E-05],[71.381255,-3.6607E-05],[71.384584,-3.7122E-05],[71.387913,-3.97E-05],[71.391243,-3.4029E-05],[71.394572,-3.1967E-05],[71.397901,-3.6091E-05],[71.401231,-3.2998E-05],[71.40456,-3.6607E-05],[71.407889,-3.5576E-05],[71.411219,-3.4544E-05],[71.414548,-3.7638E-05],[71.417877,-3.3513E-05],[71.421207,-3.5576E-05],[71.424536,-3.5576E-05],[71.427865,-3.3513E-05],[71.431195,-3.506E-05],[71.434524,-3.2482E-05],[71.437853,-3.4544E-05],[71.441183,-3.7638E-05],[71.444512,-3.8154E-05],[71.447841,-3.6607E-05],[71.451171,-3.4544E-05],[71.4545,-3.8154E-05],[71.457829,-3.8154E-05],[71.461159,-3.8154E-05],[71.464488,-3.7638E-05],[71.467817,-3.4029E-05],[71.471147,-3.6607E-05],[71.474476,-3.3513E-05],[71.477805,-3.2998E-05],[71.481135,-3.8669E-05],[71.484464,-3.6607E-05],[71.487793,-3.6607E-05],[71.491123,-3.8154E-05],[71.494452,-4.0216E-05],[71.497781,-3.4544E-05],[71.501111,-3.2998E-05],[71.50444,-3.7122E-05],[71.507769,-3.6091E-05],[71.511099,-3.6607E-05],[71.514428,-3.4029E-05],[71.517757,-3.5576E-05],[71.521087,-3.8669E-05],[71.524416,-3.6607E-05],[71.527745,-3.6607E-05]]}
-{"quant":[71.7205,-0.70347],"mems":[[71.620967,-4.2278E-05],[71.624296,-3.4029E-05],[71.627625,-3.6607E-05],[71.630955,-3.7638E-05],[71.634284,-3.6091E-05],[71.637613,-3.6091E-05],[71.640943,-3.4029E-05],[71.644272,-4.1763E-05],[71.647601,-3.9185E-05],[71.650931,-3.3513E-05],[71.65426,-3.3513E-05],[71.657589,-3.6607E-05],[71.660919,-3.7638E-05],[71.664248,-3.7122E-05],[71.667577,-3.9185E-05],[71.670907,-3.7638E-05],[71.674236,-4.0216E-05],[71.677565,-3.7638E-05],[71.680895,-3.6091E-05],[71.684224,-4.0732E-05],[71.687553,-3.6091E-05],[71.690883,-3.5576E-05],[71.694212,-3.97E-05],[71.697541,-3.9185E-05],[71.700871,-3.6607E-05],[71.7042,-3.2482E-05],[71.707529,-3.4544E-05],[71.710859,-3.8154E-05],[71.714188,-3.506E-05],[71.717517,-3.4029E-05],[71.720847,-3.4544E-05],[71.724176,-3.506E-05],[71.727505,-3.7638E-05],[71.730835,-3.9185E-05],[71.734164,-3.8154E-05],[71.737493,-3.7122E-05],[71.740823,-3.4544E-05],[71.744152,-3.5576E-05],[71.747481,-3.8669E-05],[71.750811,-3.5576E-05],[71.75414,-3.506E-05],[71.757469,-3.6607E-05],[71.760799,-3.6091E-05],[71.764128,-3.3513E-05],[71.767457,-3.4029E-05],[71.770787,-4.0216E-05],[71.774116,-3.6091E-05],[71.777445,-3.2482E-05],[71.780775,-3.6091E-05],[71.784104,-3.3513E-05],[71.787433,-3.2482E-05],[71.790763,-3.8154E-05],[71.794092,-3.8669E-05],[71.797421,-3.5576E-05],[71.800751,-3.3513E-05],[71.80408,-3.506E-05],[71.807409,-3.6091E-05],[71.810739,-3.4029E-05],[71.814068,-3.506E-05],[71.817397,-3.4544E-05],[71.820727,-3.7122E-05],[71.824056,-3.5576E-05],[71.827385,-3.3513E-05],[71.830715,-3.97E-05],[71.834044,-3.7638E-05],[71.837373,-3.042E-05],[71.840703,-3.5576E-05],[71.844032,-3.9185E-05],[71.847361,-3.506E-05],[71.850691,-3.97E-05],[71.85402,-3.8669E-05],[71.857349,-3.506E-05],[71.860679,-3.6607E-05],[71.864008,-3.4544E-05],[71.867337,-3.9185E-05],[71.870667,-3.97E-05],[71.873996,-3.506E-05],[71.877325,-3.6091E-05],[71.880655,-3.5576E-05],[71.883984,-3.8154E-05],[71.887313,-3.8669E-05],[71.890643,-3.97E-05],[71.893972,-3.9185E-05],[71.897301,-3.1967E-05],[71.900631,-3.4544E-05],[71.90396,-3.7638E-05],[71.907289,-3.3513E-05],[71.910619,-3.5576E-05],[71.913948,-3.8154E-05],[71.917277,-3.4029E-05]]}
-{"quant":[72.0973,-0.67515],"mems":[[72.000511,-4.0732E-05],[72.00384,-3.7122E-05],[72.007169,-3.5576E-05],[72.010499,-3.2482E-05],[72.013828,-3.1967E-05],[72.017157,-3.7638E-05],[72.020487,-3.8154E-05],[72.023816,-3.7638E-05],[72.027145,-3.7122E-05],[72.030475,-3.2482E-05],[72.033804,-3.4029E-05],[72.037133,-3.8154E-05],[72.040463,-3.4544E-05],[72.043792,-3.7638E-05],[72.047121,-3.5576E-05],[72.050451,-3.1967E-05],[72.05378,-3.7122E-05],[72.057109,-3.2998E-05],[72.060439,-3.506E-05],[72.063768,-3.97E-05],[72.067097,-3.6607E-05],[72.070427,-3.7122E-05],[72.073756,-3.8669E-05],[72.077085,-3.8154E-05],[72.080415,-3.9185E-05],[72.083744,-4.0216E-05],[72.087073,-3.8154E-05],[72.090403,-3.6607E-05],[72.093732,-3.8154E-05],[72.097061,-3.97E-05],[72.100391,-3.6607E-05],[72.10372,-3.3513E-05],[72.107049,-3.5576E-05],[72.110379,-3.6091E-05],[72.113708,-3.8669E-05],[72.117037,-4.0216E-05],[72.120367,-3.8669E-05],[72.123696,-3.506E-05],[72.127025,-3.1451E-05],[72.130355,-3.042E-05],[72.133684,-3.042E-05],[72.137013,-3.7122E-05],[72.140343,-4.0732E-05],[72.143672,-3.6607E-05],[72.147001,-3.3513E-05],[72.150331,-3.6091E-05],[72.15366,-3.7638E-05],[72.156989,-4.1247E-05],[72.160319,-3.7638E-05],[72.163648,-3.1967E-05],[72.166977,-3.506E-05],[72.170307,-3.6091E-05],[72.173636,-3.6607E-05],[72.176965,-3.7122E-05],[72.180295,-4.1247E-05],[72.183624,-3.8154E-05],[72.186953,-2.9904E-05],[72.190283,-3.506E-05],[72.193612,-3.8154E-05],[72.196941,-3.4029E-05],[72.200271,-3.4544E-05],[72.2036,-3.8669E-05],[72.206929,-3.8154E-05],[72.210259,-3.3513E-05],[72.213588,-3.506E-05],[72.216917,-3.6091E-05],[72.220247,-3.6091E-05],[72.223576,-3.8154E-05],[72.226905,-3.9185E-05],[72.230235,-3.7638E-05],[72.233564,-3.6607E-05],[72.236893,-3.9185E-05],[72.240223,-3.97E-05],[72.243552,-3.6607E-05],[72.246881,-3.6091E-05],[72.250211,-3.4029E-05],[72.25354,-3.8154E-05],[72.256869,-3.8154E-05],[72.260199,-3.1451E-05],[72.263528,-3.4544E-05],[72.266857,-3.7638E-05],[72.270187,-3.7122E-05],[72.273516,-3.8154E-05],[72.276845,-3.6607E-05],[72.280175,-3.7638E-05],[72.283504,-3.6607E-05],[72.286833,-3.4544E-05],[72.290163,-3.8154E-05],[72.293492,-4.1763E-05],[72.296821,-3.7122E-05]]}
-{"quant":[72.4664,-0.64488],"mems":[[72.366737,-3.7638E-05],[72.370067,-4.1247E-05],[72.373396,-3.7638E-05],[72.376725,-3.6091E-05],[72.380055,-3.7638E-05],[72.383384,-3.6607E-05],[72.386713,-3.7122E-05],[72.390043,-3.7122E-05],[72.393372,-3.6091E-05],[72.396701,-3.4544E-05],[72.400031,-3.2998E-05],[72.40336,-3.7122E-05],[72.406689,-3.7638E-05],[72.410019,-3.2482E-05],[72.413348,-3.6091E-05],[72.416677,-3.8154E-05],[72.420007,-3.1967E-05],[72.423336,-2.9904E-05],[72.426665,-3.6607E-05],[72.429995,-4.0216E-05],[72.433324,-3.7122E-05],[72.436653,-3.506E-05],[72.439983,-3.5576E-05],[72.443312,-3.7122E-05],[72.446641,-3.9185E-05],[72.449971,-3.8154E-05],[72.4533,-3.3513E-05],[72.456629,-3.6091E-05],[72.459959,-3.7638E-05],[72.463288,-3.6607E-05],[72.466617,-3.7638E-05],[72.469947,-3.6607E-05],[72.473276,-3.7638E-05],[72.476605,-3.6091E-05],[72.479935,-3.5576E-05],[72.483264,-3.6607E-05],[72.486593,-3.8154E-05],[72.489923,-3.8669E-05],[72.493252,-3.5576E-05],[72.496581,-3.3513E-05],[72.499911,-3.5576E-05],[72.50324,-3.7638E-05],[72.506569,-3.8154E-05],[72.509899,-3.7638E-05],[72.513228,-3.4544E-05],[72.516557,-3.8154E-05],[72.519887,-3.7638E-05],[72.523216,-3.0935E-05],[72.526545,-3.6607E-05],[72.529875,-3.7638E-05],[72.533204,-3.4029E-05],[72.536533,-3.4544E-05],[72.539863,-3.6607E-05],[72.543192,-3.6091E-05],[72.546521,-3.5576E-05],[72.549851,-3.6607E-05],[72.55318,-3.2998E-05],[72.556509,-3.8669E-05],[72.559839,-3.9185E-05],[72.563168,-3.2482E-05],[72.566497,-3.7638E-05],[72.569827,-3.9185E-05],[72.573156,-3.6607E-05],[72.576485,-3.7122E-05],[72.579815,-3.6091E-05],[72.583144,-3.4029E-05],[72.586473,-3.6091E-05],[72.589803,-3.8669E-05],[72.593132,-3.5576E-05],[72.596461,-3.6607E-05],[72.599791,-3.6091E-05],[72.60312,-3.042E-05],[72.606449,-3.6607E-05],[72.609779,-4.0216E-05],[72.613108,-3.4544E-05],[72.616437,-3.8154E-05],[72.619767,-3.97E-05],[72.623096,-3.5576E-05],[72.626425,-3.5576E-05],[72.629755,-3.7638E-05],[72.633084,-3.6091E-05],[72.636413,-3.97E-05],[72.639743,-3.97E-05],[72.643072,-3.6091E-05],[72.646401,-4.0216E-05],[72.649731,-3.4029E-05],[72.65306,-3.4029E-05],[72.656389,-3.97E-05],[72.659719,-3.4544E-05],[72.663048,-3.7638E-05],[72.666377,-4.0216E-05]]}
-{"quant":[72.8419,-0.61082],"mems":[[72.744232,-4.1763E-05],[72.747668,-4.0732E-05],[72.751104,-4.1763E-05],[72.75454,-4.0732E-05],[72.757976,-3.97E-05],[72.761412,-3.8154E-05],[72.764848,-3.5576E-05],[72.768284,-3.4029E-05],[72.77172,-3.3513E-05],[72.775156,-3.6607E-05],[72.778592,-3.6091E-05],[72.782028,-3.5576E-05],[72.785464,-3.7122E-05],[72.7889,-3.7638E-05],[72.792336,-3.5576E-05],[72.795772,-4.0732E-05],[72.799208,-4.4341E-05],[72.802644,-3.506E-05],[72.80608,-3.7638E-05],[72.809516,-3.7638E-05],[72.812952,-3.7638E-05],[72.816388,-4.0216E-05],[72.819824,-3.2482E-05],[72.82326,-3.8669E-05],[72.826696,-3.5576E-05],[72.830132,-3.2482E-05],[72.833568,-3.8669E-05],[72.837004,-3.6607E-05],[72.84044,-4.2794E-05],[72.843876,-4.1763E-05],[72.847312,-3.7122E-05],[72.850748,-3.5576E-05],[72.854184,-3.1967E-05],[72.85762,-3.4544E-05],[72.861056,-3.4029E-05],[72.864492,-3.4029E-05],[72.867928,-3.5576E-05],[72.871364,-3.7122E-05],[72.8748,-3.6091E-05],[72.878236,-3.7122E-05],[72.881672,-3.7122E-05],[72.885108,-3.7122E-05],[72.888544,-3.7638E-05],[72.89198,-3.506E-05],[72.895416,-3.9185E-05],[72.898852,-3.97E-05],[72.902288,-3.6091E-05],[72.905724,-3.506E-05],[72.90916,-3.3513E-05],[72.912596,-3.2998E-05],[72.916032,-3.6091E-05],[72.919468,-4.0732E-05],[72.922904,-3.6607E-05],[72.92634,-3.4544E-05],[72.929776,-3.3513E-05],[72.933212,-3.6091E-05],[72.936648,-3.97E-05],[72.940084,-3.7122E-05],[72.94352,-3.8154E-05],[72.946956,-3.6091E-05],[72.950392,-3.3513E-05],[72.953828,-3.506E-05],[72.957264,-3.3513E-05],[72.9607,-3.3513E-05],[72.964136,-3.6607E-05],[72.967572,-3.6091E-05],[72.971008,-3.8669E-05],[72.974444,-3.97E-05],[72.97788,-3.7122E-05],[72.981316,-3.8154E-05],[72.984752,-3.8154E-05],[72.988188,-3.7122E-05],[72.991624,-3.4544E-05],[72.99506,-3.6607E-05],[72.998496,-3.6091E-05],[73.001932,-3.506E-05],[73.005368,-3.506E-05],[73.008804,-3.2482E-05],[73.01224,-3.5576E-05],[73.015676,-3.4544E-05],[73.019112,-3.97E-05],[73.022548,-4.2278E-05],[73.025984,-3.506E-05],[73.02942,-3.5576E-05],[73.032856,-3.7638E-05],[73.036292,-3.9185E-05],[73.039728,-3.4544E-05]]}
-{"quant":[73.2679,-0.56923],"mems":[[73.170296,-3.4029E-05],[73.173732,-3.4029E-05],[73.177168,-3.3513E-05],[73.180604,-3.3513E-05],[73.18404,-3.4544E-05],[73.187476,-3.5576E-05],[73.190912,-3.6091E-05],[73.194348,-3.8669E-05],[73.197784,-3.97E-05],[73.20122,-3.4544E-05],[73.204656,-3.4544E-05],[73.208092,-3.8669E-05],[73.211528,-3.6607E-05],[73.214964,-3.7638E-05],[73.2184,-3.8669E-05],[73.221836,-3.7638E-05],[73.225272,-4.1247E-05],[73.228708,-4.1763E-05],[73.232144,-3.8669E-05],[73.23558,-3.7122E-05],[73.239016,-3.4029E-05],[73.242452,-3.7122E-05],[73.245888,-3.97E-05],[73.249324,-3.3513E-05],[73.25276,-3.042E-05],[73.256196,-3.7638E-05],[73.259632,-3.7638E-05],[73.263068,-3.6607E-05],[73.266504,-3.97E-05],[73.26994,-3.7122E-05],[73.273376,-4.1247E-05],[73.276812,-4.2794E-05],[73.280248,-4.1247E-05],[73.283684,-3.8154E-05],[73.28712,-3.2998E-05],[73.290556,-3.6607E-05],[73.293992,-3.7638E-05],[73.297428,-3.8154E-05],[73.300864,-3.5576E-05],[73.3043,-3.2482E-05],[73.307736,-3.4544E-05],[73.311172,-3.4029E-05],[73.314608,-3.4029E-05],[73.318044,-3.506E-05],[73.32148,-3.8669E-05],[73.324916,-3.8154E-05],[73.328352,-3.1967E-05],[73.331788,-3.5576E-05],[73.335224,-3.9185E-05],[73.33866,-3.7122E-05],[73.342096,-3.7638E-05],[73.345532,-3.2482E-05],[73.348968,-3.0935E-05],[73.352404,-3.4544E-05],[73.35584,-3.5576E-05],[73.359276,-3.5576E-05],[73.362712,-3.6091E-05],[73.366148,-3.7638E-05],[73.369584,-3.6091E-05],[73.37302,-3.7638E-05],[73.376456,-4.0216E-05],[73.379892,-3.7122E-05],[73.383328,-3.9185E-05],[73.386764,-4.3825E-05],[73.3902,-3.9185E-05],[73.393636,-3.7638E-05],[73.397072,-3.97E-05],[73.400508,-3.6091E-05],[73.403944,-3.7122E-05],[73.40738,-3.7638E-05],[73.410816,-3.7638E-05],[73.414252,-3.9185E-05],[73.417688,-3.6607E-05],[73.421124,-3.042E-05],[73.42456,-3.1967E-05],[73.427996,-3.8154E-05],[73.431432,-3.7122E-05],[73.434868,-3.5576E-05],[73.438304,-3.6607E-05],[73.44174,-3.3513E-05],[73.445176,-2.8357E-05],[73.448612,-3.2482E-05],[73.452048,-3.8154E-05],[73.455484,-4.0732E-05],[73.45892,-3.9185E-05],[73.462356,-3.5576E-05],[73.465792,-3.506E-05]]}
-{"quant":[73.6333,-0.52482],"mems":[[73.534512,-3.8154E-05],[73.537948,-3.97E-05],[73.541384,-3.7122E-05],[73.54482,-3.4544E-05],[73.548256,-3.4029E-05],[73.551692,-3.7638E-05],[73.555128,-4.0732E-05],[73.558564,-3.7122E-05],[73.562,-3.6607E-05],[73.565436,-3.97E-05],[73.568872,-3.506E-05],[73.572308,-3.6607E-05],[73.575744,-3.7638E-05],[73.57918,-3.8154E-05],[73.582616,-3.7122E-05],[73.586052,-3.506E-05],[73.589488,-3.97E-05],[73.592924,-3.7122E-05],[73.59636,-3.6607E-05],[73.599796,-3.5576E-05],[73.603232,-3.4544E-05],[73.606668,-3.6607E-05],[73.610104,-3.6607E-05],[73.61354,-3.97E-05],[73.616976,-4.0216E-05],[73.620412,-3.5576E-05],[73.623848,-3.2482E-05],[73.627284,-3.4029E-05],[73.63072,-3.2482E-05],[73.634156,-3.2998E-05],[73.637592,-3.4544E-05],[73.641028,-3.506E-05],[73.644464,-3.7122E-05],[73.6479,-3.6091E-05],[73.651336,-3.8669E-05],[73.654772,-3.9185E-05],[73.658208,-3.6607E-05],[73.661644,-3.8154E-05],[73.66508,-3.6091E-05],[73.668516,-3.4029E-05],[73.671952,-3.9185E-05],[73.675388,-4.0732E-05],[73.678824,-3.8669E-05],[73.68226,-4.0216E-05],[73.685696,-3.6091E-05],[73.689132,-3.7122E-05],[73.692568,-4.4341E-05],[73.696004,-4.0732E-05],[73.69944,-3.5576E-05],[73.702876,-3.506E-05],[73.706312,-3.6607E-05],[73.709748,-3.6607E-05],[73.713184,-3.7122E-05],[73.71662,-3.8669E-05],[73.720056,-3.4544E-05],[73.723492,-3.5576E-05],[73.726928,-3.506E-05],[73.730364,-3.4544E-05],[73.7338,-4.0732E-05],[73.737236,-4.2794E-05],[73.740672,-4.1247E-05],[73.744108,-3.7122E-05],[73.747544,-3.3513E-05],[73.75098,-3.3513E-05],[73.754416,-3.97E-05],[73.757852,-4.0732E-05],[73.761288,-3.2482E-05],[73.764724,-3.5576E-05],[73.76816,-3.8669E-05],[73.771596,-3.8154E-05],[73.775032,-3.5576E-05],[73.778468,-3.3513E-05],[73.781904,-3.8669E-05],[73.78534,-3.6607E-05],[73.788776,-3.2482E-05],[73.792212,-3.6091E-05],[73.795648,-3.9185E-05],[73.799084,-3.6091E-05],[73.80252,-3.7122E-05],[73.805956,-3.6091E-05],[73.809392,-3.4544E-05],[73.812828,-3.6607E-05],[73.816264,-3.5576E-05],[73.8197,-3.6091E-05],[73.823136,-3.97E-05],[73.826572,-3.9185E-05],[73.830008,-3.8154E-05]]}
-{"quant":[74.0094,-0.49267],"mems":[[73.912472,-3.7638E-05],[73.915908,-3.6091E-05],[73.919344,-3.5576E-05],[73.92278,-3.7638E-05],[73.926216,-3.5576E-05],[73.929652,-3.8154E-05],[73.933088,-4.1763E-05],[73.936524,-3.9185E-05],[73.93996,-3.3513E-05],[73.943396,-3.4029E-05],[73.946832,-3.7122E-05],[73.950268,-3.2998E-05],[73.953704,-3.97E-05],[73.95714,-4.1763E-05],[73.960576,-3.4029E-05],[73.964012,-3.7638E-05],[73.967448,-3.8154E-05],[73.970884,-3.6607E-05],[73.97432,-3.9185E-05],[73.977756,-3.97E-05],[73.981192,-3.8154E-05],[73.984628,-3.6607E-05],[73.988064,-3.5576E-05],[73.9915,-3.1967E-05],[73.994936,-3.1451E-05],[73.998372,-3.2998E-05],[74.001808,-3.4029E-05],[74.005244,-3.4544E-05],[74.00868,-3.3513E-05],[74.012116,-3.7122E-05],[74.015552,-4.0216E-05],[74.018988,-3.4544E-05],[74.022424,-3.4544E-05],[74.02586,-3.8154E-05],[74.029296,-3.8669E-05],[74.032732,-4.0732E-05],[74.036168,-4.1763E-05],[74.039604,-3.97E-05],[74.04304,-3.6091E-05],[74.046476,-3.7638E-05],[74.049912,-3.6091E-05],[74.053348,-3.4029E-05],[74.056784,-3.7638E-05],[74.06022,-3.6607E-05],[74.063656,-3.2998E-05],[74.067092,-3.4544E-05],[74.070528,-3.7122E-05],[74.073964,-3.6091E-05],[74.0774,-3.4544E-05],[74.080836,-3.4544E-05],[74.084272,-3.506E-05],[74.087708,-3.6091E-05],[74.091144,-3.506E-05],[74.09458,-3.7122E-05],[74.098016,-3.7638E-05],[74.101452,-3.2998E-05],[74.104888,-3.506E-05],[74.108324,-3.1967E-05],[74.11176,-2.9904E-05],[74.115196,-3.8154E-05],[74.118632,-3.7638E-05],[74.122068,-3.4544E-05],[74.125504,-3.4029E-05],[74.12894,-3.8154E-05],[74.132376,-4.0732E-05],[74.135812,-3.6091E-05],[74.139248,-3.5576E-05],[74.142684,-3.6091E-05],[74.14612,-3.4544E-05],[74.149556,-3.7122E-05],[74.152992,-3.8669E-05],[74.156428,-3.7638E-05],[74.159864,-3.7122E-05],[74.1633,-3.506E-05],[74.166736,-3.5576E-05],[74.170172,-3.7122E-05],[74.173608,-3.7638E-05],[74.177044,-4.1247E-05],[74.18048,-3.6607E-05],[74.183916,-3.3513E-05],[74.187352,-3.8154E-05],[74.190788,-3.9185E-05],[74.194224,-4.3825E-05],[74.19766,-4.3825E-05],[74.201096,-3.7638E-05],[74.204532,-3.3513E-05],[74.207968,-3.3513E-05]]}
-{"quant":[74.4003,-0.46596],"mems":[[74.30074,-3.6091E-05],[74.304176,-3.8154E-05],[74.307612,-3.7638E-05],[74.311048,-3.506E-05],[74.314484,-4.1247E-05],[74.31792,-3.6091E-05],[74.321356,-3.4029E-05],[74.324792,-3.7122E-05],[74.328228,-3.4544E-05],[74.331664,-3.97E-05],[74.3351,-3.8154E-05],[74.338536,-3.6091E-05],[74.341972,-3.7638E-05],[74.345408,-3.4544E-05],[74.348844,-3.506E-05],[74.35228,-3.6091E-05],[74.355716,-3.3513E-05],[74.359152,-3.6607E-05],[74.362588,-3.6607E-05],[74.366024,-3.2482E-05],[74.36946,-3.2998E-05],[74.372896,-3.4029E-05],[74.376332,-3.6091E-05],[74.379768,-3.9185E-05],[74.383204,-3.5576E-05],[74.38664,-3.7638E-05],[74.390076,-3.8669E-05],[74.393512,-3.2998E-05],[74.396948,-3.8669E-05],[74.400384,-4.1247E-05],[74.40382,-3.9185E-05],[74.407256,-4.1763E-05],[74.410692,-3.8154E-05],[74.414128,-3.6091E-05],[74.417564,-3.4544E-05],[74.421,-3.5576E-05],[74.424436,-3.4544E-05],[74.427872,-3.4544E-05],[74.431308,-3.5576E-05],[74.434744,-3.2482E-05],[74.43818,-3.506E-05],[74.441616,-3.506E-05],[74.445052,-3.6091E-05],[74.448488,-4.0732E-05],[74.451924,-4.1763E-05],[74.45536,-4.1247E-05],[74.458796,-3.7638E-05],[74.462232,-3.7638E-05],[74.465668,-3.7122E-05],[74.469104,-3.5576E-05],[74.47254,-3.7638E-05],[74.475976,-3.6607E-05],[74.479412,-3.7122E-05],[74.482848,-3.6607E-05],[74.486284,-3.2482E-05],[74.48972,-3.7638E-05],[74.493156,-3.7122E-05],[74.496592,-3.4029E-05],[74.500028,-3.5576E-05],[74.503464,-3.2998E-05],[74.5069,-3.7122E-05],[74.510336,-3.8669E-05],[74.513772,-3.8154E-05],[74.517208,-3.9185E-05],[74.520644,-3.7638E-05],[74.52408,-3.5576E-05],[74.527516,-4.0732E-05],[74.530952,-4.0216E-05],[74.534388,-3.4029E-05],[74.537824,-3.7638E-05],[74.54126,-3.4544E-05],[74.544696,-3.5576E-05],[74.548132,-3.8669E-05],[74.551568,-4.1247E-05],[74.555004,-3.8669E-05],[74.55844,-3.4544E-05],[74.561876,-3.6091E-05],[74.565312,-3.6607E-05],[74.568748,-3.7122E-05],[74.572184,-3.6091E-05],[74.57562,-3.8154E-05],[74.579056,-3.5576E-05],[74.582492,-3.2998E-05],[74.585928,-3.1451E-05],[74.589364,-3.4029E-05],[74.5928,-3.97E-05],[74.596236,-3.6607E-05],[74.599672,-3.5576E-05]]}
-{"quant":[74.7683,-0.43363],"mems":[[74.668392,-3.7122E-05],[74.671828,-3.1967E-05],[74.675264,-3.97E-05],[74.6787,-4.0732E-05],[74.682136,-3.2482E-05],[74.685572,-3.5576E-05],[74.689008,-3.8669E-05],[74.692444,-3.8154E-05],[74.69588,-3.6607E-05],[74.699316,-3.97E-05],[74.702752,-3.5576E-05],[74.706188,-3.6091E-05],[74.709624,-3.8154E-05],[74.71306,-3.5576E-05],[74.716496,-3.9185E-05],[74.719932,-3.3513E-05],[74.723368,-3.6607E-05],[74.726804,-3.8669E-05],[74.73024,-3.6607E-05],[74.733676,-3.8154E-05],[74.737112,-3.6607E-05],[74.740548,-3.8669E-05],[74.743984,-3.7638E-05],[74.74742,-3.9185E-05],[74.750856,-3.8154E-05],[74.754292,-3.6607E-05],[74.757728,-3.8154E-05],[74.761164,-3.7122E-05],[74.7646,-3.6607E-05],[74.768036,-3.6091E-05],[74.771472,-3.8154E-05],[74.774908,-4.1763E-05],[74.778344,-4.0216E-05],[74.78178,-3.506E-05],[74.785216,-3.6091E-05],[74.788652,-3.6607E-05],[74.792088,-3.8669E-05],[74.795524,-3.7638E-05],[74.79896,-3.5576E-05],[74.802396,-3.6607E-05],[74.805832,-3.0935E-05],[74.809268,-3.3513E-05],[74.812704,-3.97E-05],[74.81614,-3.8669E-05],[74.819576,-3.7638E-05],[74.823012,-3.5576E-05],[74.826448,-3.2482E-05],[74.829884,-3.506E-05],[74.83332,-3.8669E-05],[74.836756,-3.9185E-05],[74.840192,-4.2278E-05],[74.843628,-3.9185E-05],[74.847064,-3.6607E-05],[74.8505,-3.8669E-05],[74.853936,-3.5576E-05],[74.857372,-3.7638E-05],[74.860808,-3.9185E-05],[74.864244,-3.3513E-05],[74.86768,-3.6091E-05],[74.871116,-3.8154E-05],[74.874552,-3.7122E-05],[74.877988,-3.8154E-05],[74.881424,-3.8669E-05],[74.88486,-3.2482E-05],[74.888296,-3.1451E-05],[74.891732,-3.8154E-05],[74.895168,-3.4544E-05],[74.898604,-3.4544E-05],[74.90204,-3.7122E-05],[74.905476,-3.4029E-05],[74.908912,-3.6091E-05],[74.912348,-3.8154E-05],[74.915784,-3.8154E-05],[74.91922,-3.97E-05],[74.922656,-3.4029E-05],[74.926092,-3.4029E-05],[74.929528,-4.1763E-05],[74.932964,-4.0216E-05],[74.9364,-3.9185E-05],[74.939836,-3.8669E-05],[74.943272,-3.5576E-05],[74.946708,-3.7638E-05],[74.950144,-3.506E-05],[74.95358,-3.506E-05],[74.957016,-3.506E-05],[74.960452,-3.4029E-05],[74.963888,-3.6607E-05],[74.967324,-3.6607E-05]]}
-{"quant":[75.1505,-0.39023],"mems":[[75.063532,-3.3513E-05],[75.066968,-3.97E-05],[75.070404,-3.7638E-05],[75.07384,-3.8669E-05],[75.077276,-4.0216E-05],[75.080712,-3.97E-05],[75.084148,-3.6091E-05],[75.087584,-3.6607E-05],[75.09102,-3.7638E-05],[75.094456,-3.8154E-05],[75.097892,-4.0732E-05],[75.101328,-3.6607E-05],[75.104764,-3.6091E-05],[75.1082,-3.5576E-05],[75.111636,-3.6091E-05],[75.115072,-3.7638E-05],[75.118508,-3.7122E-05],[75.121944,-3.8669E-05],[75.12538,-3.8669E-05],[75.128816,-3.9185E-05],[75.132252,-3.4544E-05],[75.135688,-3.4544E-05],[75.139124,-3.506E-05],[75.14256,-3.4544E-05],[75.145996,-4.0216E-05],[75.149432,-3.8669E-05],[75.152868,-3.97E-05],[75.156304,-4.1247E-05],[75.15974,-3.9185E-05],[75.163176,-3.6607E-05],[75.166612,-3.2998E-05],[75.170048,-3.8154E-05],[75.173484,-4.1247E-05],[75.17692,-3.97E-05],[75.180356,-3.8154E-05],[75.183792,-3.6091E-05],[75.187228,-3.7638E-05],[75.190664,-4.1247E-05],[75.1941,-4.0732E-05],[75.197536,-3.3513E-05],[75.200972,-3.2998E-05],[75.204408,-3.506E-05],[75.207844,-3.4544E-05],[75.21128,-3.2998E-05],[75.214716,-3.4544E-05],[75.218152,-3.7122E-05],[75.221588,-3.7122E-05],[75.225024,-4.2278E-05],[75.22846,-3.8154E-05],[75.231896,-3.506E-05],[75.235332,-3.4544E-05],[75.238768,-2.9389E-05],[75.242204,-3.1967E-05],[75.24564,-2.9904E-05],[75.249076,-3.2482E-05],[75.252512,-3.4544E-05],[75.255948,-3.5576E-05],[75.259384,-3.8154E-05],[75.26282,-3.506E-05],[75.266256,-3.4544E-05],[75.269692,-3.8154E-05],[75.273128,-3.6607E-05],[75.276564,-3.2998E-05],[75.28,-3.7122E-05],[75.283437,-3.5576E-05],[75.286875,-3.3513E-05],[75.290312,-3.8154E-05],[75.293749,-3.7638E-05],[75.297187,-3.7638E-05],[75.300624,-3.9185E-05],[75.304061,-3.7638E-05],[75.307499,-3.8669E-05],[75.310936,-4.1247E-05],[75.314373,-3.9185E-05],[75.317811,-3.4544E-05],[75.321248,-2.9904E-05],[75.324685,-3.2998E-05],[75.328123,-3.2998E-05],[75.33156,-3.4544E-05],[75.334997,-3.97E-05],[75.338435,-3.506E-05],[75.341872,-3.6091E-05],[75.345309,-3.6091E-05],[75.348747,-3.4544E-05],[75.352184,-3.8669E-05],[75.355621,-3.7122E-05],[75.359059,-3.4029E-05]]}
-{"quant":[75.514,-0.34582],"mems":[[75.414056,-4.2794E-05],[75.417493,-3.9185E-05],[75.420931,-3.6607E-05],[75.424368,-3.6091E-05],[75.427805,-3.6607E-05],[75.431243,-3.5576E-05],[75.43468,-3.6607E-05],[75.438117,-3.6607E-05],[75.441555,-3.4544E-05],[75.444992,-3.4544E-05],[75.448429,-3.6607E-05],[75.451867,-3.9185E-05],[75.455304,-4.0732E-05],[75.458741,-3.97E-05],[75.462179,-3.4029E-05],[75.465616,-3.5576E-05],[75.469053,-3.97E-05],[75.472491,-3.6607E-05],[75.475928,-3.506E-05],[75.479365,-3.2998E-05],[75.482803,-3.2998E-05],[75.48624,-3.5576E-05],[75.489677,-3.3513E-05],[75.493115,-3.506E-05],[75.496552,-4.0732E-05],[75.499989,-3.97E-05],[75.503427,-3.7122E-05],[75.506864,-3.6607E-05],[75.510301,-3.6607E-05],[75.513739,-3.3513E-05],[75.517176,-2.7326E-05],[75.520613,-2.8357E-05],[75.524051,-3.2482E-05],[75.527488,-3.7122E-05],[75.530925,-3.8669E-05],[75.534363,-3.7638E-05],[75.5378,-3.8669E-05],[75.541237,-3.8154E-05],[75.544675,-3.8669E-05],[75.548112,-3.8154E-05],[75.551549,-3.8669E-05],[75.554987,-3.7638E-05],[75.558424,-3.4029E-05],[75.561861,-3.4029E-05],[75.565299,-3.3513E-05],[75.568736,-3.7638E-05],[75.572173,-3.8669E-05],[75.575611,-3.6607E-05],[75.579048,-3.7638E-05],[75.582485,-3.97E-05],[75.585923,-3.8669E-05],[75.58936,-3.7122E-05],[75.592797,-3.5576E-05],[75.596235,-3.506E-05],[75.599672,-3.7122E-05],[75.603109,-3.1967E-05],[75.606547,-3.506E-05],[75.609984,-4.0732E-05],[75.613421,-3.9185E-05],[75.616859,-4.2278E-05],[75.620296,-3.506E-05],[75.623733,-3.5576E-05],[75.627171,-4.2794E-05],[75.630608,-3.6091E-05],[75.634045,-3.7638E-05],[75.637483,-3.7122E-05],[75.64092,-3.4544E-05],[75.644357,-4.1247E-05],[75.647795,-4.0732E-05],[75.651232,-3.8669E-05],[75.654669,-3.7122E-05],[75.658107,-3.7122E-05],[75.661544,-3.97E-05],[75.664981,-3.7122E-05],[75.668419,-3.5576E-05],[75.671856,-3.8154E-05],[75.675293,-3.9185E-05],[75.678731,-4.2278E-05],[75.682168,-3.9185E-05],[75.685605,-3.5576E-05],[75.689043,-4.0732E-05],[75.69248,-3.7122E-05],[75.695917,-3.2998E-05],[75.699355,-3.6607E-05],[75.702792,-3.506E-05],[75.706229,-3.9185E-05],[75.709667,-4.3825E-05],[75.713104,-3.97E-05]]}
-{"quant":[75.9034,-0.31079],"mems":[[75.805912,-4.0216E-05],[75.809349,-3.5576E-05],[75.812787,-3.3513E-05],[75.816224,-3.506E-05],[75.819661,-3.3513E-05],[75.823099,-3.0935E-05],[75.826536,-3.4544E-05],[75.829973,-3.97E-05],[75.833411,-3.7122E-05],[75.836848,-3.3513E-05],[75.840285,-2.9904E-05],[75.843723,-3.2998E-05],[75.84716,-3.8154E-05],[75.850597,-3.4544E-05],[75.854035,-2.9904E-05],[75.857472,-3.3513E-05],[75.860909,-3.6091E-05],[75.864347,-3.5576E-05],[75.867784,-3.97E-05],[75.871221,-3.97E-05],[75.874659,-3.8154E-05],[75.878096,-4.3825E-05],[75.881533,-4.0732E-05],[75.884971,-3.506E-05],[75.888408,-3.8669E-05],[75.891845,-3.7638E-05],[75.895283,-3.6091E-05],[75.89872,-3.6607E-05],[75.902157,-3.7638E-05],[75.905595,-3.8669E-05],[75.909032,-3.6091E-05],[75.912469,-3.506E-05],[75.915907,-3.506E-05],[75.919344,-3.7638E-05],[75.922781,-4.0216E-05],[75.926219,-3.8669E-05],[75.929656,-3.2998E-05],[75.933093,-3.3513E-05],[75.936531,-3.9185E-05],[75.939968,-3.6091E-05],[75.943405,-3.2998E-05],[75.946843,-3.97E-05],[75.95028,-4.1763E-05],[75.953717,-3.7122E-05],[75.957155,-3.7638E-05],[75.960592,-3.4029E-05],[75.964029,-3.6607E-05],[75.967467,-3.9185E-05],[75.970904,-3.2998E-05],[75.974341,-3.506E-05],[75.977779,-3.6607E-05],[75.981216,-3.6091E-05],[75.984653,-3.4544E-05],[75.988091,-3.6607E-05],[75.991528,-3.9185E-05],[75.994965,-3.6091E-05],[75.998403,-3.506E-05],[76.00184,-3.0935E-05],[76.005277,-3.6091E-05],[76.008715,-4.0216E-05],[76.012152,-3.7638E-05],[76.015589,-3.8154E-05],[76.019027,-3.5576E-05],[76.022464,-3.7122E-05],[76.025901,-4.0732E-05],[76.029339,-4.0216E-05],[76.032776,-3.6607E-05],[76.036213,-3.5576E-05],[76.039651,-3.1967E-05],[76.043088,-3.0935E-05],[76.046525,-3.7122E-05],[76.049963,-3.8154E-05],[76.0534,-3.6091E-05],[76.056837,-3.6607E-05],[76.060275,-3.97E-05],[76.063712,-3.97E-05],[76.067149,-3.9185E-05],[76.070587,-3.7638E-05],[76.074024,-4.0732E-05],[76.077461,-4.0216E-05],[76.080899,-3.1967E-05],[76.084336,-3.7122E-05],[76.087773,-4.0732E-05],[76.091211,-3.97E-05],[76.094648,-3.6607E-05],[76.098085,-3.4029E-05],[76.101523,-3.7638E-05]]}
-{"quant":[76.2822,-0.28402],"mems":[[76.184019,-3.1451E-05],[76.187456,-3.2998E-05],[76.190893,-3.5576E-05],[76.194331,-3.6607E-05],[76.197768,-4.0216E-05],[76.201205,-3.7638E-05],[76.204643,-3.5576E-05],[76.20808,-3.8154E-05],[76.211517,-3.7122E-05],[76.214955,-3.7122E-05],[76.218392,-3.5576E-05],[76.221829,-3.4029E-05],[76.225267,-3.506E-05],[76.228704,-3.7638E-05],[76.232141,-3.97E-05],[76.235579,-4.1763E-05],[76.239016,-3.97E-05],[76.242453,-4.0216E-05],[76.245891,-4.3825E-05],[76.249328,-3.8154E-05],[76.252765,-3.506E-05],[76.256203,-3.4544E-05],[76.25964,-3.7638E-05],[76.263077,-4.2794E-05],[76.266515,-3.97E-05],[76.269952,-3.6607E-05],[76.273389,-3.506E-05],[76.276827,-3.4544E-05],[76.280264,-3.2998E-05],[76.283701,-3.3513E-05],[76.287139,-3.6607E-05],[76.290576,-3.97E-05],[76.294013,-4.1763E-05],[76.297451,-4.0732E-05],[76.300888,-4.0732E-05],[76.304325,-3.7122E-05],[76.307763,-3.506E-05],[76.3112,-3.6091E-05],[76.314637,-3.3513E-05],[76.318075,-3.1967E-05],[76.321512,-3.5576E-05],[76.324949,-3.7122E-05],[76.328387,-3.4544E-05],[76.331824,-3.6607E-05],[76.335261,-3.6607E-05],[76.338699,-3.2482E-05],[76.342136,-3.3513E-05],[76.345573,-3.5576E-05],[76.349011,-3.97E-05],[76.352448,-3.8669E-05],[76.355885,-3.6607E-05],[76.359323,-4.0216E-05],[76.36276,-3.8669E-05],[76.366197,-3.8154E-05],[76.369635,-3.7638E-05],[76.373072,-3.1451E-05],[76.376509,-3.1451E-05],[76.379947,-3.4029E-05],[76.383384,-3.6607E-05],[76.386821,-3.97E-05],[76.390259,-4.0732E-05],[76.393696,-3.7638E-05],[76.397133,-3.9185E-05],[76.400571,-3.97E-05],[76.404008,-3.6607E-05],[76.407445,-3.9185E-05],[76.410883,-3.506E-05],[76.41432,-3.4544E-05],[76.417757,-4.1247E-05],[76.421195,-3.5576E-05],[76.424632,-3.4544E-05],[76.428069,-3.97E-05],[76.431507,-3.6607E-05],[76.434944,-3.4029E-05],[76.438381,-3.2482E-05],[76.441819,-3.7122E-05],[76.445256,-3.8669E-05],[76.448693,-3.506E-05],[76.452131,-3.7638E-05],[76.455568,-3.506E-05],[76.459005,-3.042E-05],[76.462443,-3.2998E-05],[76.46588,-3.2998E-05],[76.469317,-3.506E-05],[76.472755,-3.6091E-05],[76.476192,-3.0935E-05],[76.479629,-3.1967E-05]]}
-{"quant":[76.6627,-0.25933],"mems":[[76.565563,-3.8154E-05],[76.569,-3.0935E-05],[76.572437,-3.2998E-05],[76.575875,-3.3513E-05],[76.579312,-3.3513E-05],[76.582749,-3.6607E-05],[76.586187,-3.4544E-05],[76.589624,-3.8154E-05],[76.593061,-4.1247E-05],[76.596499,-3.5576E-05],[76.599936,-3.6607E-05],[76.603373,-3.8154E-05],[76.606811,-3.7122E-05],[76.610248,-3.5576E-05],[76.613685,-3.0935E-05],[76.617123,-3.2482E-05],[76.62056,-3.4544E-05],[76.623997,-3.7638E-05],[76.627435,-3.6607E-05],[76.630872,-3.6091E-05],[76.634309,-3.97E-05],[76.637747,-3.4544E-05],[76.641184,-3.4544E-05],[76.644621,-3.7638E-05],[76.648059,-3.6091E-05],[76.651496,-3.6091E-05],[76.654933,-3.506E-05],[76.658371,-3.1451E-05],[76.661808,-3.2998E-05],[76.665245,-3.7638E-05],[76.668683,-3.9185E-05],[76.67212,-4.3825E-05],[76.675557,-3.97E-05],[76.678995,-3.4029E-05],[76.682432,-3.2998E-05],[76.685869,-3.1451E-05],[76.689307,-3.5576E-05],[76.692744,-3.5576E-05],[76.696181,-3.6607E-05],[76.699619,-3.8154E-05],[76.703056,-3.6091E-05],[76.706493,-3.8669E-05],[76.709931,-3.97E-05],[76.713368,-3.7122E-05],[76.716805,-3.4544E-05],[76.720243,-3.1967E-05],[76.72368,-3.3513E-05],[76.727117,-3.7638E-05],[76.730555,-3.7638E-05],[76.733992,-3.4544E-05],[76.737429,-3.5576E-05],[76.740867,-3.7122E-05],[76.744304,-3.6607E-05],[76.747741,-4.1247E-05],[76.751179,-4.2278E-05],[76.754616,-3.8669E-05],[76.758053,-3.6607E-05],[76.761491,-3.5576E-05],[76.764928,-3.6091E-05],[76.768365,-3.6607E-05],[76.771803,-3.9185E-05],[76.77524,-3.8154E-05],[76.778677,-3.506E-05],[76.782115,-3.97E-05],[76.785552,-4.0216E-05],[76.788989,-3.8669E-05],[76.792427,-3.97E-05],[76.795864,-3.4544E-05],[76.799301,-3.7638E-05],[76.802739,-4.1763E-05],[76.806176,-3.8669E-05],[76.809613,-3.7122E-05],[76.813051,-3.7122E-05],[76.816488,-3.6607E-05],[76.819925,-3.4544E-05],[76.823363,-3.2482E-05],[76.8268,-3.4029E-05],[76.830237,-3.506E-05],[76.833675,-3.1451E-05],[76.837112,-3.2998E-05],[76.840549,-3.97E-05],[76.843987,-4.2794E-05],[76.847424,-4.2278E-05],[76.850861,-3.8669E-05],[76.854299,-3.9185E-05],[76.857736,-3.97E-05],[76.861173,-3.8669E-05]]}
-{"quant":[77.0485,-0.21921],"mems":[[76.950544,-3.6607E-05],[76.953981,-3.7122E-05],[76.957419,-3.4029E-05],[76.960856,-3.4544E-05],[76.964293,-3.5576E-05],[76.967731,-3.7638E-05],[76.971168,-3.97E-05],[76.974605,-3.6607E-05],[76.978043,-3.4029E-05],[76.98148,-3.6091E-05],[76.984917,-3.6607E-05],[76.988355,-3.8669E-05],[76.991792,-3.6607E-05],[76.995229,-3.1967E-05],[76.998667,-3.4544E-05],[77.002104,-3.7638E-05],[77.005541,-3.8154E-05],[77.008979,-3.6607E-05],[77.012416,-3.6607E-05],[77.015853,-3.7638E-05],[77.019291,-3.4544E-05],[77.022728,-3.5576E-05],[77.026165,-3.6091E-05],[77.029603,-2.9904E-05],[77.03304,-3.2998E-05],[77.036477,-3.7122E-05],[77.039915,-3.4029E-05],[77.043352,-3.8154E-05],[77.046789,-3.7638E-05],[77.050227,-3.042E-05],[77.053664,-2.8357E-05],[77.057101,-3.3513E-05],[77.060539,-3.5576E-05],[77.063976,-3.506E-05],[77.067413,-3.8669E-05],[77.070851,-3.97E-05],[77.074288,-3.7638E-05],[77.077725,-3.4029E-05],[77.081163,-3.7638E-05],[77.0846,-3.8669E-05],[77.088037,-3.4029E-05],[77.091475,-3.97E-05],[77.094912,-4.1247E-05],[77.098349,-3.7638E-05],[77.101787,-3.6607E-05],[77.105224,-3.9185E-05],[77.108661,-4.1247E-05],[77.112099,-3.9185E-05],[77.115536,-3.97E-05],[77.118973,-3.7638E-05],[77.122411,-3.3513E-05],[77.125848,-3.6607E-05],[77.129285,-3.4544E-05],[77.132723,-3.4544E-05],[77.13616,-4.3309E-05],[77.139597,-3.9185E-05],[77.143035,-3.4544E-05],[77.146472,-3.7638E-05],[77.149909,-3.9185E-05],[77.153347,-3.7122E-05],[77.156784,-3.6091E-05],[77.160221,-3.8154E-05],[77.163659,-3.7638E-05],[77.167096,-3.6607E-05],[77.170533,-3.7638E-05],[77.173971,-3.7638E-05],[77.177408,-3.506E-05],[77.180845,-3.6607E-05],[77.184283,-3.6607E-05],[77.18772,-3.1451E-05],[77.191157,-3.1967E-05],[77.194595,-3.5576E-05],[77.198032,-3.5576E-05],[77.201469,-3.6091E-05],[77.204907,-3.5576E-05],[77.208344,-3.4544E-05],[77.211781,-3.4029E-05],[77.215219,-3.4029E-05],[77.218656,-3.8154E-05],[77.222093,-3.8669E-05],[77.225531,-3.8669E-05],[77.228968,-3.6091E-05],[77.232405,-3.6091E-05],[77.235843,-3.7638E-05],[77.23928,-3.1967E-05],[77.242717,-3.4029E-05],[77.246155,-3.7122E-05]]}
-{"quant":[77.4144,-0.17138],"mems":[[77.314901,-3.2998E-05],[77.318339,-3.042E-05],[77.321776,-3.2998E-05],[77.325213,-3.5576E-05],[77.328651,-3.6091E-05],[77.332088,-3.4544E-05],[77.335525,-3.4544E-05],[77.338963,-3.4029E-05],[77.3424,-3.7638E-05],[77.345837,-4.0216E-05],[77.349275,-3.7638E-05],[77.352712,-3.6607E-05],[77.356149,-3.4544E-05],[77.359587,-3.2998E-05],[77.363024,-3.4029E-05],[77.366461,-3.6091E-05],[77.369899,-3.4029E-05],[77.373336,-3.1967E-05],[77.376773,-3.3513E-05],[77.380211,-3.506E-05],[77.383648,-3.7122E-05],[77.387085,-3.6091E-05],[77.390523,-3.6607E-05],[77.39396,-3.7638E-05],[77.397397,-3.5576E-05],[77.400835,-3.8154E-05],[77.404272,-3.97E-05],[77.407709,-3.6607E-05],[77.411147,-3.7638E-05],[77.414584,-3.7638E-05],[77.418021,-3.4544E-05],[77.421459,-3.7122E-05],[77.424896,-3.5576E-05],[77.428333,-3.5576E-05],[77.431771,-3.6091E-05],[77.435208,-3.2998E-05],[77.438645,-3.97E-05],[77.442083,-4.1247E-05],[77.44552,-3.6607E-05],[77.448957,-4.0732E-05],[77.452395,-3.5576E-05],[77.455832,-3.6607E-05],[77.459269,-3.9185E-05],[77.462707,-3.8154E-05],[77.466144,-3.97E-05],[77.469581,-3.4029E-05],[77.473019,-3.5576E-05],[77.476456,-3.4544E-05],[77.479893,-3.6607E-05],[77.483331,-3.9185E-05],[77.486768,-3.7122E-05],[77.490205,-4.3825E-05],[77.493643,-3.97E-05],[77.49708,-3.506E-05],[77.500517,-3.4029E-05],[77.503955,-3.2998E-05],[77.507392,-3.4029E-05],[77.510829,-3.2998E-05],[77.514267,-3.5576E-05],[77.517704,-4.1247E-05],[77.521141,-4.0732E-05],[77.524579,-3.4544E-05],[77.528016,-3.6607E-05],[77.531453,-3.7638E-05],[77.534891,-3.5576E-05],[77.538328,-3.6091E-05],[77.541765,-3.4029E-05],[77.545203,-3.1967E-05],[77.54864,-3.3513E-05],[77.552077,-3.6607E-05],[77.555515,-3.4544E-05],[77.558952,-3.8669E-05],[77.562389,-3.7638E-05],[77.565827,-3.2482E-05],[77.569264,-3.9185E-05],[77.572701,-3.6091E-05],[77.576139,-3.2482E-05],[77.579576,-3.2482E-05],[77.583013,-3.3513E-05],[77.586451,-4.0732E-05],[77.589888,-3.9185E-05],[77.593325,-3.506E-05],[77.596763,-3.5576E-05],[77.6002,-3.6091E-05],[77.603637,-3.506E-05],[77.607075,-3.2482E-05],[77.610512,-2.9904E-05],[77.613949,-3.3513E-05]]}
-{"quant":[77.78,-0.13441],"mems":[[77.689571,-3.9185E-05],[77.693008,-3.7638E-05],[77.696445,-3.5576E-05],[77.699883,-3.9185E-05],[77.70332,-4.0216E-05],[77.706757,-3.7122E-05],[77.710195,-3.6091E-05],[77.713632,-3.4544E-05],[77.717069,-2.9904E-05],[77.720507,-3.506E-05],[77.723944,-4.0216E-05],[77.727381,-3.8154E-05],[77.730819,-3.7638E-05],[77.734256,-3.7122E-05],[77.737693,-3.5576E-05],[77.741131,-3.4544E-05],[77.744568,-3.6091E-05],[77.748005,-3.5576E-05],[77.751443,-3.6091E-05],[77.75488,-3.7122E-05],[77.758317,-3.4544E-05],[77.761755,-3.506E-05],[77.765192,-3.2998E-05],[77.768629,-3.3513E-05],[77.772067,-3.7638E-05],[77.775504,-3.6607E-05],[77.778941,-3.6091E-05],[77.782379,-3.6091E-05],[77.785816,-3.7638E-05],[77.789253,-3.8154E-05],[77.792691,-3.4029E-05],[77.796128,-2.9904E-05],[77.799565,-3.2482E-05],[77.803003,-3.5576E-05],[77.80644,-3.4544E-05],[77.809877,-3.6607E-05],[77.813315,-3.8669E-05],[77.816752,-3.4029E-05],[77.820189,-3.3513E-05],[77.823627,-3.6607E-05],[77.827064,-3.5576E-05],[77.830501,-3.8669E-05],[77.833939,-3.7638E-05],[77.837376,-3.6091E-05],[77.840813,-3.7638E-05],[77.844251,-3.506E-05],[77.847688,-3.4544E-05],[77.851125,-3.6607E-05],[77.854563,-3.8669E-05],[77.858,-3.7638E-05],[77.861437,-4.1247E-05],[77.864875,-4.2278E-05],[77.868312,-3.5576E-05],[77.871749,-3.506E-05],[77.875187,-3.8154E-05],[77.878624,-3.97E-05],[77.882061,-3.6607E-05],[77.885499,-3.6607E-05],[77.888936,-3.7638E-05],[77.892373,-3.7122E-05],[77.895811,-3.8669E-05],[77.899248,-4.0732E-05],[77.902685,-4.0732E-05],[77.906123,-3.8669E-05],[77.90956,-3.97E-05],[77.912997,-3.6091E-05],[77.916435,-3.4544E-05],[77.919872,-3.7638E-05],[77.923309,-3.6607E-05],[77.926747,-3.7122E-05],[77.930184,-3.7122E-05],[77.933621,-3.6091E-05],[77.937059,-3.6607E-05],[77.940496,-3.8154E-05],[77.943933,-3.4029E-05],[77.947371,-3.3513E-05],[77.950808,-3.9185E-05],[77.954245,-3.8154E-05],[77.957683,-3.506E-05],[77.96112,-3.6091E-05],[77.964557,-4.1247E-05],[77.967995,-3.5576E-05],[77.971432,-3.7122E-05],[77.974869,-3.97E-05],[77.978307,-3.5576E-05],[77.981744,-3.6091E-05],[77.985181,-3.7638E-05],[77.988619,-3.8154E-05]]}
-{"quant":[78.2448,-0.10846],"mems":[[78.146736,-4.1763E-05],[78.150173,-4.1763E-05],[78.153611,-3.2998E-05],[78.157048,-3.1451E-05],[78.160485,-3.9185E-05],[78.163923,-4.0216E-05],[78.16736,-3.7638E-05],[78.170797,-3.4544E-05],[78.174235,-3.7122E-05],[78.177672,-3.5576E-05],[78.181109,-3.8154E-05],[78.184547,-4.0216E-05],[78.187984,-3.7122E-05],[78.191421,-3.8154E-05],[78.194859,-3.4029E-05],[78.198296,-3.6091E-05],[78.201733,-3.7122E-05],[78.205171,-3.6607E-05],[78.208608,-3.9185E-05],[78.212045,-3.7638E-05],[78.215483,-3.7638E-05],[78.21892,-3.7638E-05],[78.222357,-3.5576E-05],[78.225795,-3.4029E-05],[78.229232,-3.4029E-05],[78.232669,-3.4029E-05],[78.236107,-3.6607E-05],[78.239544,-3.7122E-05],[78.242981,-3.5576E-05],[78.246419,-3.8669E-05],[78.249856,-3.6091E-05],[78.253293,-3.6091E-05],[78.256731,-3.97E-05],[78.260168,-3.4544E-05],[78.263605,-3.4029E-05],[78.267043,-3.7122E-05],[78.27048,-3.8669E-05],[78.273917,-3.7638E-05],[78.277355,-3.6607E-05],[78.280792,-3.7638E-05],[78.284229,-3.6091E-05],[78.287667,-3.1967E-05],[78.291104,-3.1451E-05],[78.294541,-3.4029E-05],[78.297979,-3.506E-05],[78.301416,-3.7122E-05],[78.304853,-3.2998E-05],[78.308291,-3.4029E-05],[78.311728,-3.7638E-05],[78.315165,-3.506E-05],[78.318603,-4.1763E-05],[78.32204,-4.0216E-05],[78.325477,-3.5576E-05],[78.328915,-4.1763E-05],[78.332352,-3.9185E-05],[78.335789,-3.7638E-05],[78.339227,-4.0732E-05],[78.342664,-3.2998E-05],[78.346101,-3.3513E-05],[78.349539,-3.7122E-05],[78.352976,-3.506E-05],[78.356413,-3.8154E-05],[78.359851,-3.2998E-05],[78.363288,-3.4029E-05],[78.366725,-3.506E-05],[78.370163,-3.1967E-05],[78.3736,-3.2482E-05],[78.377037,-3.4544E-05],[78.380475,-4.0732E-05],[78.383912,-3.8154E-05],[78.387349,-3.4544E-05],[78.390787,-3.6607E-05],[78.394224,-3.6607E-05],[78.397661,-3.6091E-05],[78.401099,-3.9185E-05],[78.404536,-3.8669E-05],[78.407973,-3.5576E-05],[78.411411,-3.506E-05],[78.414848,-3.7122E-05],[78.418285,-4.3309E-05],[78.421723,-4.0732E-05],[78.42516,-4.0732E-05],[78.428597,-3.9185E-05],[78.432035,-3.506E-05],[78.435472,-3.7638E-05],[78.438909,-3.0935E-05],[78.442347,-3.7638E-05]]}
-{"quant":[78.6266,-0.087092],"mems":[[78.52828,-3.97E-05],[78.531717,-4.0216E-05],[78.535155,-4.1247E-05],[78.538592,-3.6091E-05],[78.542029,-3.506E-05],[78.545467,-3.6091E-05],[78.548904,-3.1967E-05],[78.552341,-3.7638E-05],[78.555779,-3.4544E-05],[78.559216,-3.4544E-05],[78.562653,-3.9185E-05],[78.566091,-3.506E-05],[78.569528,-3.6091E-05],[78.572965,-3.6091E-05],[78.576403,-4.2278E-05],[78.57984,-3.97E-05],[78.583277,-3.5576E-05],[78.586715,-4.0216E-05],[78.590152,-3.7122E-05],[78.593589,-3.6607E-05],[78.597027,-3.6091E-05],[78.600464,-3.8154E-05],[78.603901,-4.0732E-05],[78.607339,-3.97E-05],[78.610776,-3.6091E-05],[78.614213,-3.4544E-05],[78.617651,-4.0216E-05],[78.621088,-3.8669E-05],[78.624525,-3.6091E-05],[78.627963,-3.6091E-05],[78.6314,-3.4544E-05],[78.634837,-3.5576E-05],[78.638275,-3.6091E-05],[78.641712,-3.4029E-05],[78.645149,-3.4029E-05],[78.648587,-3.9185E-05],[78.652024,-3.8154E-05],[78.655461,-3.7638E-05],[78.658899,-3.5576E-05],[78.662336,-3.6607E-05],[78.665773,-4.0216E-05],[78.669211,-3.5576E-05],[78.672648,-3.6607E-05],[78.676085,-3.506E-05],[78.679523,-3.9185E-05],[78.68296,-4.4341E-05],[78.686397,-3.7122E-05],[78.689835,-3.6607E-05],[78.693272,-3.2998E-05],[78.696709,-3.3513E-05],[78.700147,-3.9185E-05],[78.703584,-3.2482E-05],[78.707021,-2.9904E-05],[78.710459,-3.5576E-05],[78.713896,-3.506E-05],[78.717333,-3.6091E-05],[78.720771,-3.8669E-05],[78.724208,-3.6607E-05],[78.727645,-3.7122E-05],[78.731083,-3.6607E-05],[78.73452,-3.5576E-05],[78.737957,-3.6091E-05],[78.741395,-3.7638E-05],[78.744832,-3.8154E-05],[78.748269,-3.5576E-05],[78.751707,-3.7122E-05],[78.755144,-3.3513E-05],[78.758581,-3.0935E-05],[78.762019,-3.506E-05],[78.765456,-3.2998E-05],[78.768893,-3.5576E-05],[78.772331,-4.1763E-05],[78.775768,-3.4544E-05],[78.779205,-3.506E-05],[78.782643,-3.8669E-05],[78.78608,-3.4029E-05],[78.789517,-3.9185E-05],[78.792955,-3.7638E-05],[78.796392,-3.4544E-05],[78.799829,-3.9185E-05],[78.803267,-3.8154E-05],[78.806704,-3.8154E-05],[78.810141,-3.6091E-05],[78.813579,-3.5576E-05],[78.817016,-4.0216E-05],[78.820453,-3.8154E-05],[78.823891,-3.7638E-05]]}
-{"quant":[79.0031,-0.051441],"mems":[[78.906387,-3.8669E-05],[78.909824,-4.0216E-05],[78.913261,-3.6091E-05],[78.916699,-3.6091E-05],[78.920136,-3.6607E-05],[78.923573,-3.5576E-05],[78.927011,-3.8154E-05],[78.930448,-3.506E-05],[78.933885,-3.2482E-05],[78.937323,-3.5576E-05],[78.94076,-3.8154E-05],[78.944197,-3.9185E-05],[78.947635,-3.97E-05],[78.951072,-3.7638E-05],[78.954509,-3.4029E-05],[78.957947,-3.4544E-05],[78.961384,-3.4544E-05],[78.964821,-3.6607E-05],[78.968259,-3.5576E-05],[78.971696,-3.6607E-05],[78.975133,-3.6607E-05],[78.978571,-3.2482E-05],[78.982008,-3.97E-05],[78.985445,-3.8669E-05],[78.988883,-3.7122E-05],[78.99232,-3.6091E-05],[78.995757,-3.1967E-05],[78.999195,-3.4029E-05],[79.002632,-3.8154E-05],[79.006069,-4.0732E-05],[79.009507,-3.6607E-05],[79.012944,-4.0216E-05],[79.016381,-3.4544E-05],[79.019819,-2.8873E-05],[79.023256,-3.8669E-05],[79.026693,-3.8669E-05],[79.030131,-3.6091E-05],[79.033568,-3.4544E-05],[79.037005,-3.4544E-05],[79.040443,-3.9185E-05],[79.04388,-3.7122E-05],[79.047317,-3.2998E-05],[79.050755,-3.4544E-05],[79.054192,-3.4544E-05],[79.057629,-4.0216E-05],[79.061067,-4.2278E-05],[79.064504,-3.7638E-05],[79.067941,-3.97E-05],[79.071379,-3.6091E-05],[79.074816,-3.4029E-05],[79.078253,-4.0732E-05],[79.081691,-3.7122E-05],[79.085128,-3.2998E-05],[79.088565,-3.6607E-05],[79.092003,-3.6091E-05],[79.09544,-3.4544E-05],[79.098877,-3.9185E-05],[79.102315,-3.8154E-05],[79.105752,-3.1967E-05],[79.109189,-3.3513E-05],[79.112627,-3.9185E-05],[79.116064,-3.9185E-05],[79.119501,-3.506E-05],[79.122939,-3.6091E-05],[79.126376,-3.8154E-05],[79.129813,-4.0216E-05],[79.133251,-3.506E-05],[79.136688,-3.2482E-05],[79.140125,-3.97E-05],[79.143563,-3.97E-05],[79.147,-3.9185E-05],[79.150437,-3.6091E-05],[79.153875,-3.5576E-05],[79.157312,-3.7638E-05],[79.160749,-3.6607E-05],[79.164187,-3.6091E-05],[79.167624,-3.4029E-05],[79.171061,-3.4544E-05],[79.174499,-3.2482E-05],[79.177936,-3.97E-05],[79.181373,-4.0732E-05],[79.184811,-3.2482E-05],[79.188248,-3.5576E-05],[79.191685,-3.8154E-05],[79.195123,-3.6607E-05],[79.19856,-3.4544E-05],[79.201997,-3.9185E-05]]}
-{"quant":[79.4183,-0.007174],"mems":[[79.318867,-3.3513E-05],[79.322304,-3.8154E-05],[79.325741,-3.2998E-05],[79.329179,-3.4544E-05],[79.332616,-3.4029E-05],[79.336053,-3.4544E-05],[79.339491,-3.9185E-05],[79.342928,-3.8154E-05],[79.346365,-3.97E-05],[79.349803,-3.5576E-05],[79.35324,-3.5576E-05],[79.356677,-3.3513E-05],[79.360115,-3.3513E-05],[79.363552,-3.8154E-05],[79.366989,-3.6091E-05],[79.370427,-3.6091E-05],[79.373864,-3.7122E-05],[79.377301,-3.8154E-05],[79.380739,-4.0732E-05],[79.384176,-4.1763E-05],[79.387613,-3.506E-05],[79.391051,-3.6091E-05],[79.394488,-3.8669E-05],[79.397925,-3.7122E-05],[79.401363,-4.0216E-05],[79.4048,-4.2278E-05],[79.408237,-4.0216E-05],[79.411675,-3.4544E-05],[79.415112,-3.9185E-05],[79.418549,-4.1247E-05],[79.421987,-3.8154E-05],[79.425424,-4.0732E-05],[79.428861,-3.8154E-05],[79.432299,-3.1451E-05],[79.435736,-3.2482E-05],[79.439173,-3.7638E-05],[79.442611,-3.6607E-05],[79.446048,-3.5576E-05],[79.449485,-3.1967E-05],[79.452923,-3.042E-05],[79.45636,-3.9185E-05],[79.459797,-4.1247E-05],[79.463235,-3.6091E-05],[79.466672,-3.7122E-05],[79.470109,-3.7122E-05],[79.473547,-3.2998E-05],[79.476984,-3.6091E-05],[79.480421,-3.8154E-05],[79.483859,-3.6607E-05],[79.487296,-3.7122E-05],[79.490733,-3.4029E-05],[79.494171,-3.4544E-05],[79.497608,-3.6607E-05],[79.501045,-3.7122E-05],[79.504483,-3.7122E-05],[79.50792,-3.5576E-05],[79.511357,-3.7122E-05],[79.514795,-3.506E-05],[79.518232,-3.6091E-05],[79.521669,-3.8669E-05],[79.525107,-3.7638E-05],[79.528544,-3.6607E-05],[79.531981,-3.4029E-05],[79.535419,-3.7122E-05],[79.538856,-3.7638E-05],[79.542293,-3.6607E-05],[79.545731,-3.6091E-05],[79.549168,-3.3513E-05],[79.552605,-3.506E-05],[79.556043,-3.6091E-05],[79.55948,-3.7638E-05],[79.562917,-3.8669E-05],[79.566355,-3.9185E-05],[79.569792,-3.7638E-05],[79.573229,-3.7122E-05],[79.576667,-3.5576E-05],[79.580104,-3.506E-05],[79.583541,-3.7122E-05],[79.586979,-3.9185E-05],[79.590416,-4.0732E-05],[79.593853,-3.7638E-05],[79.597291,-3.4029E-05],[79.600728,-3.7122E-05],[79.604165,-4.2278E-05],[79.607603,-3.8669E-05],[79.61104,-3.4544E-05],[79.614477,-3.6091E-05],[79.617915,-3.97E-05]]}
-{"quant":[79.8122,0.033483],"mems":[[79.71416,-3.9185E-05],[79.717597,-3.7122E-05],[79.721035,-3.97E-05],[79.724472,-4.2278E-05],[79.727909,-3.7122E-05],[79.731347,-3.5576E-05],[79.734784,-3.4544E-05],[79.738221,-3.1967E-05],[79.741659,-3.4029E-05],[79.745096,-3.6607E-05],[79.748533,-3.6607E-05],[79.751971,-3.7122E-05],[79.755408,-3.8669E-05],[79.758845,-3.8669E-05],[79.762283,-3.97E-05],[79.76572,-3.4544E-05],[79.769157,-3.2482E-05],[79.772595,-3.506E-05],[79.776032,-3.506E-05],[79.779469,-3.6091E-05],[79.782907,-3.9185E-05],[79.786344,-3.8154E-05],[79.789781,-3.5576E-05],[79.793219,-3.2998E-05],[79.796656,-3.5576E-05],[79.800093,-3.7638E-05],[79.803531,-3.3513E-05],[79.806968,-3.6091E-05],[79.810405,-3.3513E-05],[79.813843,-3.5576E-05],[79.81728,-4.2794E-05],[79.820717,-4.0216E-05],[79.824155,-3.9185E-05],[79.827592,-3.2998E-05],[79.831029,-3.4544E-05],[79.834467,-3.506E-05],[79.837904,-3.4544E-05],[79.841341,-3.7638E-05],[79.844779,-3.4544E-05],[79.848216,-3.97E-05],[79.851653,-3.8669E-05],[79.855091,-3.6607E-05],[79.858528,-3.6607E-05],[79.861965,-3.7122E-05],[79.865403,-3.7638E-05],[79.86884,-3.3513E-05],[79.872277,-3.5576E-05],[79.875715,-3.8669E-05],[79.879152,-3.7638E-05],[79.882589,-3.5576E-05],[79.886027,-3.5576E-05],[79.889464,-3.506E-05],[79.892901,-3.506E-05],[79.896339,-4.1763E-05],[79.899776,-4.4341E-05],[79.903213,-3.7638E-05],[79.906651,-3.7122E-05],[79.910088,-3.8154E-05],[79.913525,-3.5576E-05],[79.916963,-4.0732E-05],[79.9204,-4.1247E-05],[79.923837,-3.3513E-05],[79.927275,-3.5576E-05],[79.930712,-3.8669E-05],[79.934149,-3.4544E-05],[79.937587,-3.6091E-05],[79.941024,-3.6607E-05],[79.944461,-3.6607E-05],[79.947899,-3.7638E-05],[79.951336,-3.4029E-05],[79.954773,-3.7122E-05],[79.958211,-3.506E-05],[79.961648,-3.1967E-05],[79.965085,-3.7638E-05],[79.968523,-3.6091E-05],[79.97196,-3.6091E-05],[79.975397,-3.9185E-05],[79.978835,-3.8669E-05],[79.982272,-3.6091E-05],[79.985709,-3.6607E-05],[79.989147,-4.1247E-05],[79.992584,-4.0732E-05],[79.996021,-3.9185E-05],[79.999459,-3.5576E-05],[80.002896,-3.2482E-05],[80.006333,-3.6091E-05],[80.009771,-2.9904E-05]]}
-{"quant":[80.2018,0.074817],"mems":[[80.102579,-4.0216E-05],[80.106016,-3.7122E-05],[80.109453,-3.4544E-05],[80.112891,-3.2998E-05],[80.116328,-3.5576E-05],[80.119765,-3.7122E-05],[80.123203,-3.7122E-05],[80.12664,-3.97E-05],[80.130077,-3.6091E-05],[80.133515,-3.8154E-05],[80.136952,-4.0732E-05],[80.140389,-3.8154E-05],[80.143827,-3.8669E-05],[80.147264,-3.6607E-05],[80.150701,-3.7122E-05],[80.154139,-3.97E-05],[80.157576,-3.8154E-05],[80.161013,-3.6091E-05],[80.164451,-3.8154E-05],[80.167888,-3.7122E-05],[80.171325,-3.2998E-05],[80.174763,-3.5576E-05],[80.1782,-3.5576E-05],[80.181637,-3.506E-05],[80.185075,-3.97E-05],[80.188512,-3.8669E-05],[80.191949,-3.4544E-05],[80.195387,-3.9185E-05],[80.198824,-3.7638E-05],[80.202261,-3.4544E-05],[80.205699,-3.4544E-05],[80.209136,-3.3513E-05],[80.212573,-3.9185E-05],[80.216011,-3.8154E-05],[80.219448,-3.7122E-05],[80.222885,-3.97E-05],[80.226323,-3.9185E-05],[80.22976,-4.4341E-05],[80.233197,-4.1763E-05],[80.236635,-3.6607E-05],[80.240072,-3.8154E-05],[80.243509,-3.8669E-05],[80.246947,-3.7638E-05],[80.250384,-3.1451E-05],[80.253821,-3.6607E-05],[80.257259,-4.3309E-05],[80.260696,-3.97E-05],[80.264133,-3.8669E-05],[80.267571,-3.3513E-05],[80.271008,-3.4029E-05],[80.274445,-3.7638E-05],[80.277883,-3.6607E-05],[80.28132,-3.97E-05],[80.284757,-3.506E-05],[80.288195,-3.4029E-05],[80.291632,-3.8154E-05],[80.295069,-3.7638E-05],[80.298507,-3.8669E-05],[80.301944,-3.9185E-05],[80.305381,-4.1247E-05],[80.308819,-3.6091E-05],[80.312256,-3.4544E-05],[80.315693,-3.9185E-05],[80.319131,-3.5576E-05],[80.322568,-3.506E-05],[80.326005,-3.2482E-05],[80.329443,-3.5576E-05],[80.33288,-4.0732E-05],[80.336317,-3.7638E-05],[80.339755,-3.5576E-05],[80.343192,-3.506E-05],[80.346629,-3.8154E-05],[80.350067,-3.4029E-05],[80.353504,-3.4029E-05],[80.356941,-4.0732E-05],[80.360379,-4.0732E-05],[80.363816,-3.8669E-05],[80.367253,-3.4544E-05],[80.370691,-3.6091E-05],[80.374128,-3.8669E-05],[80.377565,-3.6091E-05],[80.381003,-4.0216E-05],[80.38444,-3.8154E-05],[80.387877,-3.2998E-05],[80.391315,-3.6607E-05],[80.394752,-3.97E-05],[80.398189,-4.0216E-05],[80.401627,-4.3309E-05]]}
-{"quant":[80.5737,0.11693],"mems":[[80.473825,-3.506E-05],[80.477264,-3.8669E-05],[80.480703,-3.4544E-05],[80.484141,-3.4544E-05],[80.48758,-3.8669E-05],[80.491019,-3.6607E-05],[80.494457,-3.8669E-05],[80.497896,-3.4544E-05],[80.501335,-3.506E-05],[80.504773,-3.8669E-05],[80.508212,-3.2998E-05],[80.511651,-3.6607E-05],[80.515089,-4.0216E-05],[80.518528,-3.6607E-05],[80.521967,-3.506E-05],[80.525405,-3.6091E-05],[80.528844,-3.7638E-05],[80.532283,-3.8154E-05],[80.535721,-3.8669E-05],[80.53916,-3.8154E-05],[80.542599,-3.6091E-05],[80.546037,-3.97E-05],[80.549476,-3.4029E-05],[80.552915,-3.506E-05],[80.556353,-4.1763E-05],[80.559792,-3.6091E-05],[80.563231,-3.3513E-05],[80.566669,-3.3513E-05],[80.570108,-3.3513E-05],[80.573547,-3.506E-05],[80.576985,-4.0732E-05],[80.580424,-3.8669E-05],[80.583863,-3.5576E-05],[80.587301,-3.7638E-05],[80.59074,-3.6091E-05],[80.594179,-3.8154E-05],[80.597617,-3.506E-05],[80.601056,-3.506E-05],[80.604495,-3.7122E-05],[80.607933,-3.1451E-05],[80.611372,-3.2998E-05],[80.614811,-3.9185E-05],[80.618249,-3.7122E-05],[80.621688,-3.5576E-05],[80.625127,-3.97E-05],[80.628565,-3.6607E-05],[80.632004,-3.8669E-05],[80.635443,-3.97E-05],[80.638881,-3.6607E-05],[80.64232,-3.8154E-05],[80.645759,-3.506E-05],[80.649197,-3.5576E-05],[80.652636,-3.7638E-05],[80.656075,-3.7638E-05],[80.659513,-3.4544E-05],[80.662952,-3.4544E-05],[80.666391,-3.6091E-05],[80.669829,-3.7638E-05],[80.673268,-3.8669E-05],[80.676707,-3.6607E-05],[80.680145,-3.9185E-05],[80.683584,-3.9185E-05],[80.687023,-3.8669E-05],[80.690461,-3.506E-05],[80.6939,-3.7638E-05],[80.697339,-3.8154E-05],[80.700777,-3.3513E-05],[80.704216,-3.506E-05],[80.707655,-3.7638E-05],[80.711093,-4.0216E-05],[80.714532,-3.6607E-05],[80.717971,-3.6607E-05],[80.721409,-4.0216E-05],[80.724848,-3.6607E-05],[80.728287,-3.6091E-05],[80.731725,-3.97E-05],[80.735164,-3.6607E-05],[80.738603,-3.4544E-05],[80.742041,-3.6091E-05],[80.74548,-3.7638E-05],[80.748919,-3.4029E-05],[80.752357,-3.2998E-05],[80.755796,-3.8669E-05],[80.759235,-3.7638E-05],[80.762673,-3.8669E-05],[80.766112,-3.7638E-05],[80.769551,-3.506E-05],[80.772989,-3.7122E-05]]}
-{"quant":[81.0531,0.15666],"mems":[[80.955239,-3.3513E-05],[80.958677,-3.8669E-05],[80.962116,-3.7122E-05],[80.965555,-3.1451E-05],[80.968993,-3.2482E-05],[80.972432,-3.8669E-05],[80.975871,-3.7638E-05],[80.979309,-3.5576E-05],[80.982748,-3.7638E-05],[80.986187,-3.6091E-05],[80.989625,-3.506E-05],[80.993064,-3.6607E-05],[80.996503,-4.0732E-05],[80.999941,-4.2794E-05],[81.00338,-3.9185E-05],[81.006819,-3.1451E-05],[81.010257,-3.2998E-05],[81.013696,-4.1247E-05],[81.017135,-4.0732E-05],[81.020573,-3.9185E-05],[81.024012,-3.6091E-05],[81.027451,-3.7638E-05],[81.030889,-3.8669E-05],[81.034328,-3.506E-05],[81.037767,-3.4544E-05],[81.041205,-3.7638E-05],[81.044644,-4.0216E-05],[81.048083,-3.6607E-05],[81.051521,-3.8669E-05],[81.05496,-4.2278E-05],[81.058399,-4.0732E-05],[81.061837,-3.97E-05],[81.065276,-3.5576E-05],[81.068715,-3.7122E-05],[81.072153,-3.9185E-05],[81.075592,-4.3309E-05],[81.079031,-3.97E-05],[81.082469,-3.042E-05],[81.085908,-3.7638E-05],[81.089347,-3.506E-05],[81.092785,-3.3513E-05],[81.096224,-3.97E-05],[81.099663,-3.3513E-05],[81.103101,-3.6091E-05],[81.10654,-3.7122E-05],[81.109979,-3.5576E-05],[81.113417,-3.6091E-05],[81.116856,-3.4029E-05],[81.120295,-3.506E-05],[81.123733,-3.4544E-05],[81.127172,-3.4029E-05],[81.130611,-3.6091E-05],[81.134049,-3.506E-05],[81.137488,-3.3513E-05],[81.140927,-3.5576E-05],[81.144365,-3.6607E-05],[81.147804,-3.4544E-05],[81.151243,-3.4029E-05],[81.154681,-3.7122E-05],[81.15812,-3.8154E-05],[81.161559,-3.4029E-05],[81.164997,-3.2998E-05],[81.168436,-3.0935E-05],[81.171875,-3.5576E-05],[81.175313,-3.9185E-05],[81.178752,-3.2482E-05],[81.182191,-3.6607E-05],[81.185629,-3.7122E-05],[81.189068,-3.5576E-05],[81.192507,-3.4029E-05],[81.195945,-3.5576E-05],[81.199384,-4.1247E-05],[81.202823,-3.4544E-05],[81.206261,-3.4029E-05],[81.2097,-3.5576E-05],[81.213139,-3.8669E-05],[81.216577,-3.9185E-05],[81.220016,-3.0935E-05],[81.223455,-3.4029E-05],[81.226893,-3.2998E-05],[81.230332,-3.2998E-05],[81.233771,-3.6091E-05],[81.237209,-3.5576E-05],[81.240648,-4.2278E-05],[81.244087,-4.0732E-05],[81.247525,-3.4544E-05],[81.250964,-3.4544E-05]]}
-{"quant":[81.4102,0.19362],"mems":[[81.31286,-3.4544E-05],[81.316299,-3.7638E-05],[81.319737,-3.5576E-05],[81.323176,-3.506E-05],[81.326615,-3.506E-05],[81.330053,-3.7122E-05],[81.333492,-3.5576E-05],[81.336931,-3.7638E-05],[81.340369,-3.6607E-05],[81.343808,-3.4544E-05],[81.347247,-4.0216E-05],[81.350685,-3.1451E-05],[81.354124,-2.8357E-05],[81.357563,-3.4544E-05],[81.361001,-3.4544E-05],[81.36444,-3.7122E-05],[81.367879,-3.8669E-05],[81.371317,-3.8669E-05],[81.374756,-4.3825E-05],[81.378195,-4.0732E-05],[81.381633,-3.7638E-05],[81.385072,-3.9185E-05],[81.388511,-2.9904E-05],[81.391949,-3.3513E-05],[81.395388,-3.7122E-05],[81.398827,-3.4544E-05],[81.402265,-3.7122E-05],[81.405704,-3.5576E-05],[81.409143,-3.5576E-05],[81.412581,-3.2998E-05],[81.41602,-3.6607E-05],[81.419459,-3.9185E-05],[81.422897,-3.4544E-05],[81.426336,-3.97E-05],[81.429775,-3.7638E-05],[81.433213,-3.5576E-05],[81.436652,-3.6607E-05],[81.440091,-3.2998E-05],[81.443529,-3.7122E-05],[81.446968,-3.4029E-05],[81.450407,-3.506E-05],[81.453845,-3.9185E-05],[81.457284,-3.9185E-05],[81.460723,-4.1763E-05],[81.464161,-3.7638E-05],[81.4676,-3.6607E-05],[81.471039,-3.8669E-05],[81.474477,-3.6607E-05],[81.477916,-4.0216E-05],[81.481355,-4.0732E-05],[81.484793,-3.6607E-05],[81.488232,-4.0732E-05],[81.491671,-3.5576E-05],[81.495109,-3.6091E-05],[81.498548,-3.97E-05],[81.501987,-3.3513E-05],[81.505425,-4.0732E-05],[81.508864,-3.7122E-05],[81.512303,-3.7122E-05],[81.515741,-4.3309E-05],[81.51918,-3.7122E-05],[81.522619,-3.7122E-05],[81.526057,-3.4029E-05],[81.529496,-2.9904E-05],[81.532935,-3.6091E-05],[81.536373,-3.8669E-05],[81.539812,-3.6091E-05],[81.543251,-3.97E-05],[81.546689,-3.8154E-05],[81.550128,-3.506E-05],[81.553567,-4.1763E-05],[81.557005,-4.1247E-05],[81.560444,-3.9185E-05],[81.563883,-3.7638E-05],[81.567321,-3.4029E-05],[81.57076,-3.506E-05],[81.574199,-4.0216E-05],[81.577637,-4.1247E-05],[81.581076,-3.8669E-05],[81.584515,-4.0216E-05],[81.587953,-3.7638E-05],[81.591392,-3.2998E-05],[81.594831,-3.2482E-05],[81.598269,-3.6091E-05],[81.601708,-3.97E-05],[81.605147,-3.6607E-05],[81.608585,-3.4544E-05]]}
-{"quant":[81.7517,0.2254],"mems":[[81.653288,-3.4544E-05],[81.656727,-3.7122E-05],[81.660165,-4.1763E-05],[81.663604,-3.7638E-05],[81.667043,-3.6091E-05],[81.670481,-3.8669E-05],[81.67392,-3.9185E-05],[81.677359,-3.5576E-05],[81.680797,-3.7122E-05],[81.684236,-3.97E-05],[81.687675,-3.6607E-05],[81.691113,-3.5576E-05],[81.694552,-3.8669E-05],[81.697991,-3.6091E-05],[81.701429,-3.8154E-05],[81.704868,-3.5576E-05],[81.708307,-2.9389E-05],[81.711745,-3.8669E-05],[81.715184,-3.97E-05],[81.718623,-3.506E-05],[81.722061,-3.7638E-05],[81.7255,-3.4544E-05],[81.728939,-3.7122E-05],[81.732377,-3.8669E-05],[81.735816,-3.6091E-05],[81.739255,-3.6091E-05],[81.742693,-3.4029E-05],[81.746132,-3.5576E-05],[81.749571,-3.6091E-05],[81.753009,-3.6091E-05],[81.756448,-4.0732E-05],[81.759887,-3.8669E-05],[81.763325,-3.6607E-05],[81.766764,-3.4544E-05],[81.770203,-3.1967E-05],[81.773641,-4.0216E-05],[81.77708,-4.0732E-05],[81.780519,-3.7638E-05],[81.783957,-3.7638E-05],[81.787396,-3.5576E-05],[81.790835,-3.7638E-05],[81.794273,-3.4544E-05],[81.797712,-3.2998E-05],[81.801151,-3.6091E-05],[81.804589,-3.7122E-05],[81.808028,-3.7122E-05],[81.811467,-3.6607E-05],[81.814905,-3.6607E-05],[81.818344,-3.5576E-05],[81.821783,-3.6607E-05],[81.825221,-3.6607E-05],[81.82866,-3.7122E-05],[81.832099,-3.7638E-05],[81.835537,-3.7638E-05],[81.838976,-4.1763E-05],[81.842415,-3.3513E-05],[81.845853,-2.8873E-05],[81.849292,-3.6607E-05],[81.852731,-3.6607E-05],[81.856169,-3.5576E-05],[81.859608,-3.6607E-05],[81.863047,-3.6091E-05],[81.866485,-3.6091E-05],[81.869924,-3.5576E-05],[81.873363,-3.8154E-05],[81.876801,-3.7122E-05],[81.88024,-3.2998E-05],[81.883679,-3.6091E-05],[81.887117,-3.4544E-05],[81.890556,-3.4544E-05],[81.893995,-4.0216E-05],[81.897433,-3.8154E-05],[81.900872,-3.7122E-05],[81.904311,-3.506E-05],[81.907749,-3.4544E-05],[81.911188,-3.6091E-05],[81.914627,-3.4544E-05],[81.918065,-3.7638E-05],[81.921504,-3.8154E-05],[81.924943,-3.5576E-05],[81.928381,-3.4544E-05],[81.93182,-3.8154E-05],[81.935259,-3.6091E-05],[81.938697,-3.042E-05],[81.942136,-3.7638E-05],[81.945575,-3.7638E-05],[81.949013,-3.7638E-05]]}
-{"quant":[82.1149,0.25416],"mems":[[82.017787,-3.506E-05],[82.021225,-3.6091E-05],[82.024664,-3.4544E-05],[82.028103,-3.6607E-05],[82.031541,-3.7122E-05],[82.03498,-3.7122E-05],[82.038419,-3.9185E-05],[82.041857,-3.6607E-05],[82.045296,-3.8154E-05],[82.048735,-3.8154E-05],[82.052173,-4.0216E-05],[82.055612,-4.1763E-05],[82.059051,-3.7122E-05],[82.062489,-3.8154E-05],[82.065928,-3.9185E-05],[82.069367,-3.6607E-05],[82.072805,-3.8669E-05],[82.076244,-4.1763E-05],[82.079683,-3.7122E-05],[82.083121,-3.6091E-05],[82.08656,-3.97E-05],[82.089999,-3.97E-05],[82.093437,-3.8154E-05],[82.096876,-3.7638E-05],[82.100315,-3.9185E-05],[82.103753,-3.7638E-05],[82.107192,-3.9185E-05],[82.110631,-3.506E-05],[82.114069,-3.2998E-05],[82.117508,-3.5576E-05],[82.120947,-3.6091E-05],[82.124385,-3.4544E-05],[82.127824,-3.2998E-05],[82.131263,-3.7122E-05],[82.134701,-3.5576E-05],[82.13814,-3.4029E-05],[82.141579,-3.5576E-05],[82.145017,-3.5576E-05],[82.148456,-3.7638E-05],[82.151895,-3.4029E-05],[82.155333,-3.1967E-05],[82.158772,-3.6607E-05],[82.162211,-4.2278E-05],[82.165649,-3.8154E-05],[82.169088,-3.5576E-05],[82.172527,-4.0216E-05],[82.175965,-3.9185E-05],[82.179404,-3.7122E-05],[82.182843,-3.2998E-05],[82.186281,-3.1967E-05],[82.18972,-3.6607E-05],[82.193159,-3.5576E-05],[82.196597,-3.7638E-05],[82.200036,-3.9185E-05],[82.203475,-3.97E-05],[82.206913,-3.8154E-05],[82.210352,-3.4029E-05],[82.213791,-3.6091E-05],[82.217229,-3.6607E-05],[82.220668,-3.6607E-05],[82.224107,-3.506E-05],[82.227545,-3.0935E-05],[82.230984,-3.6607E-05],[82.234423,-3.7122E-05],[82.237861,-3.7638E-05],[82.2413,-4.1247E-05],[82.244739,-3.6091E-05],[82.248177,-3.7638E-05],[82.251616,-3.7122E-05],[82.255055,-3.7638E-05],[82.258493,-3.7122E-05],[82.261932,-3.1967E-05],[82.265371,-3.7122E-05],[82.268809,-3.4029E-05],[82.272248,-3.1967E-05],[82.275687,-3.2482E-05],[82.279125,-3.506E-05],[82.282564,-3.506E-05],[82.286003,-2.8873E-05],[82.289441,-3.4544E-05],[82.29288,-3.6091E-05],[82.296319,-3.506E-05],[82.299757,-3.6091E-05],[82.303196,-3.8154E-05],[82.306635,-3.7638E-05],[82.310073,-3.6607E-05],[82.313512,-3.8669E-05]]}
-{"quant":[82.4615,0.29822],"mems":[[82.361653,-4.1247E-05],[82.365092,-3.1451E-05],[82.368531,-3.1451E-05],[82.371969,-3.8154E-05],[82.375408,-3.97E-05],[82.378847,-3.6607E-05],[82.382285,-3.4544E-05],[82.385724,-3.506E-05],[82.389163,-3.7638E-05],[82.392601,-4.2278E-05],[82.39604,-4.3309E-05],[82.399479,-3.97E-05],[82.402917,-3.6607E-05],[82.406356,-3.506E-05],[82.409795,-3.5576E-05],[82.413233,-3.8669E-05],[82.416672,-3.97E-05],[82.420111,-3.6091E-05],[82.423549,-3.4029E-05],[82.426988,-3.5576E-05],[82.430427,-3.7638E-05],[82.433865,-3.7638E-05],[82.437304,-3.8669E-05],[82.440743,-4.0216E-05],[82.444181,-3.8669E-05],[82.44762,-3.506E-05],[82.451059,-3.2998E-05],[82.454497,-3.8669E-05],[82.457936,-3.8669E-05],[82.461375,-3.8154E-05],[82.464813,-3.8669E-05],[82.468252,-3.6607E-05],[82.471691,-3.9185E-05],[82.475129,-3.6091E-05],[82.478568,-3.7122E-05],[82.482007,-3.97E-05],[82.485445,-3.8154E-05],[82.488884,-4.2278E-05],[82.492323,-4.1247E-05],[82.495761,-3.7638E-05],[82.4992,-3.506E-05],[82.502639,-3.6607E-05],[82.506077,-3.506E-05],[82.509516,-3.8154E-05],[82.512955,-4.4341E-05],[82.516393,-3.8154E-05],[82.519832,-3.7122E-05],[82.523271,-3.4029E-05],[82.526709,-3.4544E-05],[82.530148,-3.97E-05],[82.533587,-4.0216E-05],[82.537025,-4.3309E-05],[82.540464,-3.97E-05],[82.543903,-3.0935E-05],[82.547341,-2.9389E-05],[82.55078,-3.6091E-05],[82.554219,-3.8154E-05],[82.557657,-3.6607E-05],[82.561096,-3.8154E-05],[82.564535,-3.7122E-05],[82.567973,-3.4544E-05],[82.571412,-3.5576E-05],[82.574851,-3.9185E-05],[82.578289,-3.8669E-05],[82.581728,-3.6607E-05],[82.585167,-3.9185E-05],[82.588605,-3.6607E-05],[82.592044,-3.2998E-05],[82.595483,-3.6607E-05],[82.598921,-3.6091E-05],[82.60236,-3.506E-05],[82.605799,-3.6607E-05],[82.609237,-3.8154E-05],[82.612676,-3.6091E-05],[82.616115,-3.5576E-05],[82.619553,-3.5576E-05],[82.622992,-3.2482E-05],[82.626431,-2.9389E-05],[82.629869,-3.3513E-05],[82.633308,-4.0216E-05],[82.636747,-3.4029E-05],[82.640185,-3.6091E-05],[82.643624,-4.0732E-05],[82.647063,-3.2998E-05],[82.650501,-3.506E-05],[82.65394,-3.8154E-05],[82.657379,-3.506E-05],[82.660817,-3.6091E-05]]}
-{"quant":[82.8089,0.34528],"mems":[[82.708959,-3.9185E-05],[82.712397,-4.5372E-05],[82.715836,-4.3825E-05],[82.719275,-3.8669E-05],[82.722713,-3.5576E-05],[82.726152,-3.5576E-05],[82.729591,-3.6091E-05],[82.733029,-3.4544E-05],[82.736468,-3.6607E-05],[82.739907,-3.6607E-05],[82.743345,-3.9185E-05],[82.746784,-3.5576E-05],[82.750223,-3.4029E-05],[82.753661,-3.97E-05],[82.7571,-3.8669E-05],[82.760539,-3.9185E-05],[82.763977,-3.4544E-05],[82.767416,-3.6091E-05],[82.770855,-3.8154E-05],[82.774293,-3.2482E-05],[82.777732,-3.6091E-05],[82.781171,-3.8154E-05],[82.784609,-3.7122E-05],[82.788048,-3.9185E-05],[82.791487,-4.2278E-05],[82.794925,-3.7122E-05],[82.798364,-3.1967E-05],[82.801803,-3.2998E-05],[82.805241,-3.6091E-05],[82.80868,-3.7122E-05],[82.812119,-3.4544E-05],[82.815557,-3.8669E-05],[82.818996,-3.7122E-05],[82.822435,-3.4544E-05],[82.825873,-3.4544E-05],[82.829312,-3.4029E-05],[82.832751,-3.7638E-05],[82.836189,-3.7638E-05],[82.839628,-3.6607E-05],[82.843067,-3.5576E-05],[82.846505,-3.7638E-05],[82.849944,-3.97E-05],[82.853383,-3.6091E-05],[82.856821,-3.8154E-05],[82.86026,-3.7638E-05],[82.863699,-3.8154E-05],[82.867137,-3.8154E-05],[82.870576,-3.7122E-05],[82.874015,-3.8669E-05],[82.877453,-3.6091E-05],[82.880892,-3.7638E-05],[82.884331,-3.506E-05],[82.887769,-3.5576E-05],[82.891208,-3.5576E-05],[82.894647,-3.4029E-05],[82.898085,-3.6607E-05],[82.901524,-3.506E-05],[82.904963,-3.7638E-05],[82.908401,-4.0216E-05],[82.91184,-3.9185E-05],[82.915279,-4.1247E-05],[82.918717,-4.1247E-05],[82.922156,-3.5576E-05],[82.925595,-3.1967E-05],[82.929033,-3.506E-05],[82.932472,-3.6607E-05],[82.935911,-3.7122E-05],[82.939349,-3.7122E-05],[82.942788,-3.7122E-05],[82.946227,-3.7122E-05],[82.949665,-3.8154E-05],[82.953104,-4.0216E-05],[82.956543,-3.8154E-05],[82.959981,-3.7122E-05],[82.96342,-3.6607E-05],[82.966859,-3.0935E-05],[82.970297,-3.2482E-05],[82.973736,-3.8669E-05],[82.977175,-3.6607E-05],[82.980613,-3.5576E-05],[82.984052,-3.7638E-05],[82.987491,-3.8154E-05],[82.990929,-4.1247E-05],[82.994368,-4.0732E-05],[82.997807,-3.8154E-05],[83.001245,-3.7638E-05],[83.004684,-3.5576E-05],[83.008123,-3.6607E-05]]}
-{"quant":[83.177,0.38203],"mems":[[83.080335,-4.0216E-05],[83.083773,-3.5576E-05],[83.087212,-3.6607E-05],[83.090651,-3.7638E-05],[83.094089,-3.5576E-05],[83.097528,-3.6091E-05],[83.100967,-3.7122E-05],[83.104405,-4.1247E-05],[83.107844,-4.0216E-05],[83.111283,-3.9185E-05],[83.114721,-3.8154E-05],[83.11816,-3.7638E-05],[83.121599,-3.97E-05],[83.125037,-3.4029E-05],[83.128476,-3.4544E-05],[83.131915,-3.6607E-05],[83.135353,-3.5576E-05],[83.138792,-3.9185E-05],[83.142231,-3.7122E-05],[83.145669,-3.6607E-05],[83.149108,-3.8154E-05],[83.152547,-3.9185E-05],[83.155985,-3.7122E-05],[83.159424,-3.1451E-05],[83.162863,-3.506E-05],[83.166301,-3.8669E-05],[83.16974,-3.8154E-05],[83.173179,-3.6607E-05],[83.176617,-3.506E-05],[83.180056,-3.6091E-05],[83.183495,-3.9185E-05],[83.186933,-3.7638E-05],[83.190372,-3.5576E-05],[83.193811,-3.7638E-05],[83.197249,-3.8669E-05],[83.200688,-3.6091E-05],[83.204127,-3.2998E-05],[83.207565,-3.6607E-05],[83.211004,-3.6607E-05],[83.214443,-3.5576E-05],[83.217881,-3.4544E-05],[83.22132,-3.6091E-05],[83.224759,-3.8669E-05],[83.228197,-3.4544E-05],[83.231636,-3.8154E-05],[83.235075,-4.2794E-05],[83.238513,-3.7638E-05],[83.241952,-3.4029E-05],[83.245391,-3.2998E-05],[83.248829,-3.5576E-05],[83.252268,-3.8669E-05],[83.255707,-3.5576E-05],[83.259145,-3.5576E-05],[83.262584,-3.7122E-05],[83.266023,-3.5576E-05],[83.269461,-3.2482E-05],[83.2729,-3.4029E-05],[83.276339,-3.7638E-05],[83.279777,-3.6091E-05],[83.283216,-3.7638E-05],[83.286655,-3.7638E-05],[83.290093,-3.6607E-05],[83.293532,-3.97E-05],[83.296971,-3.97E-05],[83.300409,-3.7638E-05],[83.303848,-3.4029E-05],[83.307287,-3.6607E-05],[83.310725,-4.0732E-05],[83.314164,-3.9185E-05],[83.317603,-3.97E-05],[83.321041,-3.5576E-05],[83.32448,-3.2998E-05],[83.327919,-3.8669E-05],[83.331357,-4.1247E-05],[83.334796,-3.6091E-05],[83.338235,-3.6091E-05],[83.341673,-3.506E-05],[83.345112,-3.2998E-05],[83.348551,-3.4544E-05],[83.351989,-3.6091E-05],[83.355428,-3.8154E-05],[83.358867,-3.7638E-05],[83.362305,-4.0216E-05],[83.365744,-3.8669E-05],[83.369183,-3.2482E-05],[83.372621,-3.3513E-05],[83.37606,-3.506E-05]]}
-{"quant":[83.5713,0.4124],"mems":[[83.472343,-3.4544E-05],[83.475781,-3.6091E-05],[83.47922,-4.1763E-05],[83.482659,-4.0216E-05],[83.486097,-3.8154E-05],[83.489536,-3.6091E-05],[83.492975,-3.7122E-05],[83.496413,-3.6607E-05],[83.499852,-3.9185E-05],[83.503291,-3.7638E-05],[83.506729,-3.4029E-05],[83.510168,-3.8669E-05],[83.513607,-4.1247E-05],[83.517045,-4.0732E-05],[83.520484,-4.1763E-05],[83.523923,-4.0732E-05],[83.527361,-4.0732E-05],[83.5308,-3.8669E-05],[83.534239,-3.8154E-05],[83.537677,-3.4029E-05],[83.541116,-3.2482E-05],[83.544555,-3.6607E-05],[83.547993,-3.9185E-05],[83.551432,-4.5887E-05],[83.554871,-4.0732E-05],[83.558309,-3.4544E-05],[83.561748,-3.6607E-05],[83.565187,-3.6091E-05],[83.568625,-4.1763E-05],[83.572064,-4.1247E-05],[83.575503,-3.6607E-05],[83.578941,-3.7122E-05],[83.58238,-3.97E-05],[83.585819,-4.2794E-05],[83.589257,-3.9185E-05],[83.592696,-3.8154E-05],[83.596135,-3.97E-05],[83.599573,-3.1967E-05],[83.603012,-3.3513E-05],[83.606451,-3.8669E-05],[83.609889,-3.6607E-05],[83.613328,-3.9185E-05],[83.616767,-4.0732E-05],[83.620205,-4.0216E-05],[83.623644,-4.0732E-05],[83.627083,-3.9185E-05],[83.630521,-3.8154E-05],[83.63396,-3.8154E-05],[83.637399,-3.6607E-05],[83.640837,-3.8154E-05],[83.644276,-3.6607E-05],[83.647715,-3.7638E-05],[83.651153,-3.7638E-05],[83.654592,-3.3513E-05],[83.658031,-4.0732E-05],[83.661469,-3.97E-05],[83.664908,-3.506E-05],[83.668347,-3.6091E-05],[83.671785,-3.5576E-05],[83.675224,-3.9185E-05],[83.678663,-3.8154E-05],[83.682101,-3.4544E-05],[83.68554,-3.8669E-05],[83.688979,-4.0216E-05],[83.692417,-4.0732E-05],[83.695856,-4.3825E-05],[83.699295,-3.9185E-05],[83.702733,-3.6607E-05],[83.706172,-3.2482E-05],[83.709611,-3.506E-05],[83.713049,-4.2278E-05],[83.716488,-3.8154E-05],[83.719927,-3.6607E-05],[83.723365,-3.5576E-05],[83.726804,-3.6607E-05],[83.730243,-3.7638E-05],[83.733681,-3.7638E-05],[83.73712,-3.3513E-05],[83.740559,-3.1967E-05],[83.743997,-3.7122E-05],[83.747436,-3.8154E-05],[83.750875,-3.8154E-05],[83.754313,-3.5576E-05],[83.757752,-3.5576E-05],[83.761191,-3.3513E-05],[83.764629,-3.3513E-05],[83.768068,-3.9185E-05]]}
-{"quant":[83.9576,0.44672],"mems":[[83.860912,-3.506E-05],[83.864351,-3.4029E-05],[83.867789,-3.6091E-05],[83.871228,-3.4544E-05],[83.874667,-3.4029E-05],[83.878105,-3.5576E-05],[83.881544,-3.6091E-05],[83.884983,-3.6607E-05],[83.888421,-3.2998E-05],[83.89186,-3.0935E-05],[83.895299,-3.2482E-05],[83.898737,-3.6607E-05],[83.902176,-3.6607E-05],[83.905615,-3.1967E-05],[83.909053,-3.2482E-05],[83.912492,-3.6091E-05],[83.915931,-3.9185E-05],[83.919369,-3.9185E-05],[83.922808,-3.97E-05],[83.926247,-3.97E-05],[83.929685,-4.0732E-05],[83.933124,-4.0216E-05],[83.936563,-3.6091E-05],[83.940001,-3.9185E-05],[83.94344,-3.7122E-05],[83.946879,-3.5576E-05],[83.950317,-4.1247E-05],[83.953756,-3.7122E-05],[83.957195,-3.4544E-05],[83.960633,-3.5576E-05],[83.964072,-3.4029E-05],[83.967511,-3.7638E-05],[83.970949,-3.7122E-05],[83.974388,-3.4544E-05],[83.977827,-3.6607E-05],[83.981265,-3.7638E-05],[83.984704,-4.1247E-05],[83.988143,-4.0216E-05],[83.991581,-3.5576E-05],[83.99502,-3.6607E-05],[83.998459,-3.506E-05],[84.001897,-3.6607E-05],[84.005336,-3.6607E-05],[84.008775,-3.7638E-05],[84.012213,-3.7638E-05],[84.015652,-3.4029E-05],[84.019091,-3.7638E-05],[84.022529,-3.5576E-05],[84.025968,-3.6607E-05],[84.029407,-3.97E-05],[84.032845,-3.8669E-05],[84.036284,-3.8669E-05],[84.039723,-4.0216E-05],[84.043161,-4.0216E-05],[84.0466,-3.9185E-05],[84.050039,-4.0732E-05],[84.053477,-3.5576E-05],[84.056916,-3.7122E-05],[84.060355,-3.6607E-05],[84.063793,-3.506E-05],[84.067232,-3.97E-05],[84.070671,-3.8154E-05],[84.074109,-3.8154E-05],[84.077548,-3.506E-05],[84.080987,-3.506E-05],[84.084425,-3.4544E-05],[84.087864,-3.6091E-05],[84.091303,-3.97E-05],[84.094741,-3.6091E-05],[84.09818,-3.9185E-05],[84.101619,-3.4544E-05],[84.105057,-3.2998E-05],[84.108496,-3.8154E-05],[84.111935,-3.6091E-05],[84.115373,-3.6091E-05],[84.118812,-3.7638E-05],[84.122251,-3.7122E-05],[84.125689,-3.2998E-05],[84.129128,-3.1967E-05],[84.132567,-3.8154E-05],[84.136005,-4.2794E-05],[84.139444,-3.9185E-05],[84.142883,-3.4544E-05],[84.146321,-3.8669E-05],[84.14976,-4.2278E-05],[84.153199,-4.0216E-05],[84.156637,-3.8154E-05]]}
-{"quant":[84.3417,0.48698],"mems":[[84.242604,-3.7638E-05],[84.246043,-3.7122E-05],[84.249481,-3.6091E-05],[84.25292,-3.6607E-05],[84.256359,-4.1763E-05],[84.259797,-4.0732E-05],[84.263236,-3.7638E-05],[84.266675,-3.6607E-05],[84.270113,-4.0216E-05],[84.273552,-4.0216E-05],[84.276991,-3.4544E-05],[84.280429,-3.7122E-05],[84.283868,-3.4029E-05],[84.287307,-3.4029E-05],[84.290745,-3.7638E-05],[84.294184,-3.506E-05],[84.297623,-3.8154E-05],[84.301061,-3.8154E-05],[84.3045,-3.7122E-05],[84.307939,-3.8669E-05],[84.311377,-3.8669E-05],[84.314816,-3.97E-05],[84.318255,-3.6091E-05],[84.321693,-3.4029E-05],[84.325132,-3.506E-05],[84.328571,-3.6091E-05],[84.332009,-4.0216E-05],[84.335448,-3.9185E-05],[84.338887,-3.7122E-05],[84.342325,-4.0732E-05],[84.345764,-4.4341E-05],[84.349203,-4.0216E-05],[84.352641,-3.5576E-05],[84.35608,-3.7638E-05],[84.359519,-3.97E-05],[84.362957,-3.4029E-05],[84.366396,-3.2998E-05],[84.369835,-3.8669E-05],[84.373273,-3.7638E-05],[84.376712,-3.8669E-05],[84.380151,-4.0216E-05],[84.383589,-3.506E-05],[84.387028,-3.6607E-05],[84.390467,-3.7122E-05],[84.393905,-3.2998E-05],[84.397344,-3.6091E-05],[84.400783,-3.97E-05],[84.404221,-3.6607E-05],[84.40766,-3.7122E-05],[84.411099,-3.8669E-05],[84.414537,-3.6091E-05],[84.417976,-3.9185E-05],[84.421415,-3.9185E-05],[84.424853,-3.7122E-05],[84.428292,-3.97E-05],[84.431731,-3.506E-05],[84.435169,-2.8873E-05],[84.438608,-3.506E-05],[84.442047,-3.97E-05],[84.445485,-3.7638E-05],[84.448924,-3.4029E-05],[84.452363,-3.2482E-05],[84.455801,-3.5576E-05],[84.45924,-3.4544E-05],[84.462679,-3.3513E-05],[84.466117,-3.6607E-05],[84.469556,-3.7638E-05],[84.472995,-3.6607E-05],[84.476433,-3.7122E-05],[84.479872,-3.7122E-05],[84.483311,-3.4544E-05],[84.486749,-3.6607E-05],[84.490188,-4.1763E-05],[84.493627,-4.3309E-05],[84.497065,-4.2278E-05],[84.500504,-3.7638E-05],[84.503943,-3.5576E-05],[84.507381,-3.506E-05],[84.51082,-3.6607E-05],[84.514259,-3.8154E-05],[84.517697,-3.6091E-05],[84.521136,-3.4544E-05],[84.524575,-3.6607E-05],[84.528013,-3.7122E-05],[84.531452,-3.7638E-05],[84.534891,-3.7122E-05],[84.538329,-3.6607E-05]]}
-{"quant":[84.7118,0.52459],"mems":[[84.61398,-3.6091E-05],[84.617419,-3.506E-05],[84.620857,-3.6607E-05],[84.624296,-3.506E-05],[84.627735,-3.4544E-05],[84.631173,-3.2998E-05],[84.634612,-3.3513E-05],[84.638051,-3.506E-05],[84.641489,-3.4544E-05],[84.644928,-3.8669E-05],[84.648367,-3.97E-05],[84.651805,-3.4029E-05],[84.655244,-3.506E-05],[84.658683,-3.7638E-05],[84.662121,-3.8154E-05],[84.66556,-3.7122E-05],[84.668999,-3.5576E-05],[84.672437,-3.6091E-05],[84.675876,-3.7638E-05],[84.679315,-4.0216E-05],[84.682753,-3.5576E-05],[84.686192,-3.6091E-05],[84.689631,-3.9185E-05],[84.693069,-3.4544E-05],[84.696508,-3.7122E-05],[84.699947,-3.8669E-05],[84.703385,-3.5576E-05],[84.706824,-3.9185E-05],[84.710263,-3.9185E-05],[84.713701,-3.8669E-05],[84.71714,-3.6607E-05],[84.720579,-3.5576E-05],[84.724017,-4.2278E-05],[84.727456,-3.6607E-05],[84.730895,-3.0935E-05],[84.734333,-3.8154E-05],[84.737772,-4.0732E-05],[84.741211,-3.506E-05],[84.744649,-3.4544E-05],[84.748088,-3.8669E-05],[84.751527,-3.9185E-05],[84.754965,-3.7122E-05],[84.758404,-3.1451E-05],[84.761843,-3.2998E-05],[84.765281,-3.7638E-05],[84.76872,-3.8154E-05],[84.772159,-3.4544E-05],[84.775597,-3.3513E-05],[84.779036,-3.3513E-05],[84.782475,-2.9389E-05],[84.785913,-3.4544E-05],[84.789352,-3.7122E-05],[84.792791,-3.6091E-05],[84.796229,-4.0732E-05],[84.799668,-4.0216E-05],[84.803107,-3.7122E-05],[84.806545,-3.8669E-05],[84.809984,-3.8669E-05],[84.813423,-3.4029E-05],[84.816861,-3.8154E-05],[84.8203,-3.7638E-05],[84.823739,-3.506E-05],[84.827177,-3.6091E-05],[84.830616,-3.2998E-05],[84.834055,-3.6607E-05],[84.837493,-3.9185E-05],[84.840932,-3.506E-05],[84.844371,-3.4544E-05],[84.847809,-3.9185E-05],[84.851248,-3.7122E-05],[84.854687,-3.7638E-05],[84.858125,-3.97E-05],[84.861564,-3.6607E-05],[84.865003,-4.1763E-05],[84.868441,-3.8669E-05],[84.87188,-3.506E-05],[84.875319,-3.97E-05],[84.878757,-3.7638E-05],[84.882196,-4.1763E-05],[84.885635,-4.0732E-05],[84.889073,-3.7122E-05],[84.892512,-4.1247E-05],[84.895951,-3.506E-05],[84.899389,-3.1967E-05],[84.902828,-3.042E-05],[84.906267,-2.7842E-05],[84.909705,-3.4544E-05]]}
-{"quant":[85.0694,0.55044],"mems":[[84.971601,-3.97E-05],[84.97504,-3.97E-05],[84.978479,-3.6091E-05],[84.981917,-3.8669E-05],[84.985356,-4.0732E-05],[84.988795,-3.7122E-05],[84.992233,-3.2482E-05],[84.995672,-2.9389E-05],[84.999111,-3.4029E-05],[85.002549,-3.6091E-05],[85.005988,-3.8154E-05],[85.009427,-3.9185E-05],[85.012865,-3.8154E-05],[85.016304,-3.8669E-05],[85.019743,-3.7122E-05],[85.023181,-3.6607E-05],[85.02662,-3.8669E-05],[85.030059,-3.7638E-05],[85.033497,-3.4029E-05],[85.036936,-3.7122E-05],[85.040375,-3.5576E-05],[85.043813,-3.97E-05],[85.047252,-4.2794E-05],[85.050691,-3.5576E-05],[85.054129,-3.8669E-05],[85.057568,-3.8154E-05],[85.061007,-3.4544E-05],[85.064445,-3.7638E-05],[85.067884,-3.8669E-05],[85.071323,-4.0732E-05],[85.074761,-4.0216E-05],[85.0782,-3.4029E-05],[85.081639,-3.506E-05],[85.085077,-3.8669E-05],[85.088516,-3.6091E-05],[85.091955,-3.7122E-05],[85.095393,-3.97E-05],[85.098832,-3.8669E-05],[85.102271,-4.2278E-05],[85.105709,-3.97E-05],[85.109148,-3.5576E-05],[85.112587,-3.7122E-05],[85.116025,-3.7122E-05],[85.119464,-3.506E-05],[85.122903,-3.3513E-05],[85.126341,-3.8669E-05],[85.12978,-3.9185E-05],[85.133219,-3.7122E-05],[85.136657,-3.8154E-05],[85.140096,-3.7638E-05],[85.143535,-3.9185E-05],[85.146973,-4.0732E-05],[85.150412,-3.6091E-05],[85.153851,-3.6607E-05],[85.157289,-3.7638E-05],[85.160728,-3.6607E-05],[85.164167,-3.8154E-05],[85.167605,-3.6091E-05],[85.171044,-3.6091E-05],[85.174483,-3.4544E-05],[85.177921,-3.506E-05],[85.18136,-4.0216E-05],[85.184799,-3.8669E-05],[85.188237,-3.8154E-05],[85.191676,-3.8669E-05],[85.195115,-3.8154E-05],[85.198553,-3.7122E-05],[85.201992,-3.1967E-05],[85.205431,-3.3513E-05],[85.208869,-3.6091E-05],[85.212308,-3.1451E-05],[85.215747,-3.506E-05],[85.219185,-3.6607E-05],[85.222624,-3.9185E-05],[85.226063,-4.2278E-05],[85.229501,-3.506E-05],[85.23294,-3.5576E-05],[85.236379,-3.7122E-05],[85.239817,-3.506E-05],[85.243256,-3.7122E-05],[85.246695,-3.7122E-05],[85.250133,-3.4029E-05],[85.253572,-3.6091E-05],[85.257011,-3.8669E-05],[85.260449,-3.6607E-05],[85.263888,-3.7638E-05],[85.267327,-3.8154E-05]]}
-{"quant":[85.4473,0.57426],"mems":[[85.356732,-3.3513E-05],[85.360171,-3.7122E-05],[85.363609,-3.97E-05],[85.367048,-4.0732E-05],[85.370487,-3.97E-05],[85.373925,-3.8669E-05],[85.377364,-3.4544E-05],[85.380803,-3.506E-05],[85.384241,-4.0732E-05],[85.38768,-4.3309E-05],[85.391119,-4.3825E-05],[85.394557,-4.2794E-05],[85.397996,-3.8669E-05],[85.401435,-3.506E-05],[85.404873,-3.6607E-05],[85.408312,-3.6607E-05],[85.411751,-3.6091E-05],[85.415189,-4.0732E-05],[85.418628,-3.8669E-05],[85.422067,-3.5576E-05],[85.425505,-3.7638E-05],[85.428944,-3.8154E-05],[85.432383,-3.8154E-05],[85.435821,-3.8154E-05],[85.43926,-4.0732E-05],[85.442699,-3.7638E-05],[85.446137,-3.6091E-05],[85.449576,-3.7122E-05],[85.453015,-3.2998E-05],[85.456453,-3.506E-05],[85.459892,-3.6091E-05],[85.463331,-3.7638E-05],[85.466769,-3.97E-05],[85.470208,-3.6607E-05],[85.473647,-3.5576E-05],[85.477085,-3.6607E-05],[85.480524,-3.6091E-05],[85.483963,-3.8669E-05],[85.487401,-4.0216E-05],[85.49084,-3.7638E-05],[85.494279,-3.4029E-05],[85.497717,-3.506E-05],[85.501156,-3.8154E-05],[85.504595,-3.9185E-05],[85.508033,-3.7638E-05],[85.511472,-3.1967E-05],[85.514911,-3.506E-05],[85.518349,-3.6607E-05],[85.521788,-3.7122E-05],[85.525227,-3.8669E-05],[85.528665,-3.8669E-05],[85.532104,-4.3825E-05],[85.535543,-3.7122E-05],[85.538981,-3.2482E-05],[85.54242,-3.7122E-05],[85.545859,-3.7122E-05],[85.549297,-3.7638E-05],[85.552736,-3.7122E-05],[85.556175,-3.7638E-05],[85.559613,-3.7638E-05],[85.563052,-4.0732E-05],[85.566491,-4.0216E-05],[85.569929,-3.7638E-05],[85.573368,-3.8154E-05],[85.576807,-3.506E-05],[85.580245,-3.6607E-05],[85.583684,-3.8154E-05],[85.587123,-4.1763E-05],[85.590561,-4.0216E-05],[85.594,-3.7638E-05],[85.597437,-3.8669E-05],[85.600875,-3.5576E-05],[85.604312,-3.7638E-05],[85.607749,-3.7122E-05],[85.611187,-3.506E-05],[85.614624,-3.8669E-05],[85.618061,-3.7638E-05],[85.621499,-3.3513E-05],[85.624936,-3.2998E-05],[85.628373,-3.6091E-05],[85.631811,-4.1247E-05],[85.635248,-3.7122E-05],[85.638685,-3.5576E-05],[85.642123,-3.7638E-05],[85.64556,-3.506E-05],[85.648997,-3.5576E-05],[85.652435,-3.506E-05],[85.655872,-3.8669E-05]]}
-{"quant":[85.8481,0.60622],"mems":[[85.74868,-3.7122E-05],[85.752117,-3.7122E-05],[85.755555,-3.7122E-05],[85.758992,-3.6607E-05],[85.762429,-3.7122E-05],[85.765867,-3.8154E-05],[85.769304,-3.6091E-05],[85.772741,-3.7638E-05],[85.776179,-3.8669E-05],[85.779616,-3.7122E-05],[85.783053,-3.7122E-05],[85.786491,-3.4029E-05],[85.789928,-3.4544E-05],[85.793365,-3.8669E-05],[85.796803,-3.8669E-05],[85.80024,-3.4029E-05],[85.803677,-3.2998E-05],[85.807115,-3.6607E-05],[85.810552,-3.7122E-05],[85.813989,-3.6607E-05],[85.817427,-3.97E-05],[85.820864,-3.8154E-05],[85.824301,-3.6091E-05],[85.827739,-3.97E-05],[85.831176,-3.7122E-05],[85.834613,-3.5576E-05],[85.838051,-3.8154E-05],[85.841488,-3.7122E-05],[85.844925,-3.506E-05],[85.848363,-3.3513E-05],[85.8518,-3.4544E-05],[85.855237,-3.7638E-05],[85.858675,-4.0216E-05],[85.862112,-4.0732E-05],[85.865549,-4.0732E-05],[85.868987,-4.1247E-05],[85.872424,-3.6607E-05],[85.875861,-3.6607E-05],[85.879299,-3.6607E-05],[85.882736,-3.8154E-05],[85.886173,-3.97E-05],[85.889611,-3.6607E-05],[85.893048,-3.6607E-05],[85.896485,-3.506E-05],[85.899923,-3.7638E-05],[85.90336,-3.97E-05],[85.906797,-3.2482E-05],[85.910235,-2.8357E-05],[85.913672,-3.1451E-05],[85.917109,-3.4029E-05],[85.920547,-3.4029E-05],[85.923984,-3.4029E-05],[85.927421,-3.8154E-05],[85.930859,-4.3825E-05],[85.934296,-3.97E-05],[85.937733,-3.4544E-05],[85.941171,-3.6091E-05],[85.944608,-3.8154E-05],[85.948045,-3.6091E-05],[85.951483,-3.506E-05],[85.95492,-4.0732E-05],[85.958357,-3.8669E-05],[85.961795,-3.2482E-05],[85.965232,-3.6091E-05],[85.968669,-4.2278E-05],[85.972107,-4.1247E-05],[85.975544,-3.8154E-05],[85.978981,-3.6091E-05],[85.982419,-3.3513E-05],[85.985856,-3.7638E-05],[85.989293,-3.8154E-05],[85.992731,-3.8154E-05],[85.996168,-3.7638E-05],[85.999605,-2.8873E-05],[86.003043,-3.3513E-05],[86.00648,-4.1247E-05],[86.009917,-3.7638E-05],[86.013355,-3.7122E-05],[86.016792,-3.4029E-05],[86.020229,-3.8154E-05],[86.023667,-4.0216E-05],[86.027104,-3.506E-05],[86.030541,-3.4544E-05],[86.033979,-3.5576E-05],[86.037416,-3.6091E-05],[86.040853,-3.1451E-05],[86.044291,-3.4544E-05],[86.047728,-3.7638E-05]]}
-{"quant":[86.212,0.63312],"mems":[[86.113037,-4.1247E-05],[86.116475,-3.6607E-05],[86.119912,-3.8154E-05],[86.123349,-3.97E-05],[86.126787,-3.6607E-05],[86.130224,-3.8154E-05],[86.133661,-3.3513E-05],[86.137099,-3.4029E-05],[86.140536,-3.5576E-05],[86.143973,-3.3513E-05],[86.147411,-3.7122E-05],[86.150848,-3.6091E-05],[86.154285,-3.7122E-05],[86.157723,-3.7122E-05],[86.16116,-3.6091E-05],[86.164597,-3.4029E-05],[86.168035,-3.5576E-05],[86.171472,-3.6607E-05],[86.174909,-3.506E-05],[86.178347,-3.8154E-05],[86.181784,-3.2482E-05],[86.185221,-3.7122E-05],[86.188659,-3.97E-05],[86.192096,-3.506E-05],[86.195533,-4.2278E-05],[86.198971,-3.4544E-05],[86.202408,-3.1967E-05],[86.205845,-3.8669E-05],[86.209283,-3.6607E-05],[86.21272,-3.97E-05],[86.216157,-3.8669E-05],[86.219595,-3.3513E-05],[86.223032,-3.1967E-05],[86.226469,-3.1451E-05],[86.229907,-3.3513E-05],[86.233344,-3.6091E-05],[86.236781,-3.6607E-05],[86.240219,-3.8669E-05],[86.243656,-3.6091E-05],[86.247093,-3.4544E-05],[86.250531,-3.8154E-05],[86.253968,-3.2998E-05],[86.257405,-3.2998E-05],[86.260843,-3.9185E-05],[86.26428,-3.7122E-05],[86.267717,-3.6607E-05],[86.271155,-3.7122E-05],[86.274592,-3.6091E-05],[86.278029,-3.6091E-05],[86.281467,-3.6091E-05],[86.284904,-3.4544E-05],[86.288341,-3.1967E-05],[86.291779,-3.0935E-05],[86.295216,-3.6091E-05],[86.298653,-4.0216E-05],[86.302091,-3.5576E-05],[86.305528,-3.3513E-05],[86.308965,-3.6091E-05],[86.312403,-3.4029E-05],[86.31584,-3.4544E-05],[86.319277,-3.6607E-05],[86.322715,-4.0732E-05],[86.326152,-4.8981E-05],[86.329589,-4.3825E-05],[86.333027,-3.97E-05],[86.336464,-3.7122E-05],[86.339901,-3.2482E-05],[86.343339,-3.4544E-05],[86.346776,-3.3513E-05],[86.350213,-3.6091E-05],[86.353651,-3.9185E-05],[86.357088,-3.506E-05],[86.360525,-3.4544E-05],[86.363963,-4.0732E-05],[86.3674,-3.8154E-05],[86.370837,-3.5576E-05],[86.374275,-3.6607E-05],[86.377712,-3.4029E-05],[86.381149,-3.8154E-05],[86.384587,-3.9185E-05],[86.388024,-3.9185E-05],[86.391461,-4.0216E-05],[86.394899,-3.6607E-05],[86.398336,-3.8154E-05],[86.401773,-3.8669E-05],[86.405211,-3.7122E-05],[86.408648,-3.7638E-05]]}
-{"quant":[86.5809,0.66489],"mems":[[86.484269,-3.4544E-05],[86.487707,-3.7122E-05],[86.491144,-3.7638E-05],[86.494581,-4.0216E-05],[86.498019,-4.0216E-05],[86.501456,-3.7638E-05],[86.504893,-3.7638E-05],[86.508331,-3.4029E-05],[86.511768,-3.8669E-05],[86.515205,-3.97E-05],[86.518643,-3.7122E-05],[86.52208,-3.8669E-05],[86.525517,-3.7638E-05],[86.528955,-4.0216E-05],[86.532392,-3.97E-05],[86.535829,-3.8154E-05],[86.539267,-3.5576E-05],[86.542704,-3.4029E-05],[86.546141,-3.6091E-05],[86.549579,-3.3513E-05],[86.553016,-3.4029E-05],[86.556453,-3.2998E-05],[86.559891,-3.4029E-05],[86.563328,-4.2278E-05],[86.566765,-3.8154E-05],[86.570203,-3.4029E-05],[86.57364,-3.6091E-05],[86.577077,-3.5576E-05],[86.580515,-4.0216E-05],[86.583952,-4.1247E-05],[86.587389,-3.8154E-05],[86.590827,-3.2482E-05],[86.594264,-3.4029E-05],[86.597701,-3.6091E-05],[86.601139,-3.6091E-05],[86.604576,-4.1247E-05],[86.608013,-3.6091E-05],[86.611451,-3.506E-05],[86.614888,-3.97E-05],[86.618325,-3.506E-05],[86.621763,-3.3513E-05],[86.6252,-3.7638E-05],[86.628637,-3.9185E-05],[86.632075,-3.7122E-05],[86.635512,-3.6607E-05],[86.638949,-3.8154E-05],[86.642387,-3.7122E-05],[86.645824,-3.8154E-05],[86.649261,-3.7122E-05],[86.652699,-3.3513E-05],[86.656136,-3.6091E-05],[86.659573,-3.6607E-05],[86.663011,-3.3513E-05],[86.666448,-3.6091E-05],[86.669885,-3.506E-05],[86.673323,-3.6607E-05],[86.67676,-4.0216E-05],[86.680197,-3.7638E-05],[86.683635,-3.6091E-05],[86.687072,-3.7638E-05],[86.690509,-3.4029E-05],[86.693947,-3.1967E-05],[86.697384,-3.506E-05],[86.700821,-3.2482E-05],[86.704259,-3.4029E-05],[86.707696,-3.97E-05],[86.711133,-3.8154E-05],[86.714571,-3.5576E-05],[86.718008,-3.4544E-05],[86.721445,-3.8154E-05],[86.724883,-3.8669E-05],[86.72832,-3.7122E-05],[86.731757,-3.97E-05],[86.735195,-3.8154E-05],[86.738632,-3.97E-05],[86.742069,-3.9185E-05],[86.745507,-3.506E-05],[86.748944,-3.9185E-05],[86.752381,-3.6607E-05],[86.755819,-3.4544E-05],[86.759256,-3.7638E-05],[86.762693,-3.6607E-05],[86.766131,-3.6607E-05],[86.769568,-3.506E-05],[86.773005,-3.506E-05],[86.776443,-3.506E-05],[86.77988,-3.3513E-05]]}
-{"quant":[86.954,0.70995],"mems":[[86.855501,-3.2482E-05],[86.858939,-3.4544E-05],[86.862376,-3.7122E-05],[86.865813,-3.7122E-05],[86.869251,-4.1247E-05],[86.872688,-3.5576E-05],[86.876125,-3.1967E-05],[86.879563,-3.506E-05],[86.883,-3.7638E-05],[86.886437,-3.7638E-05],[86.889875,-3.7638E-05],[86.893312,-3.2998E-05],[86.896749,-3.4544E-05],[86.900187,-3.8669E-05],[86.903624,-3.6607E-05],[86.907061,-3.8669E-05],[86.910499,-4.1247E-05],[86.913936,-3.6091E-05],[86.917373,-3.3513E-05],[86.920811,-3.7122E-05],[86.924248,-3.7122E-05],[86.927685,-3.8669E-05],[86.931123,-3.9185E-05],[86.93456,-3.8154E-05],[86.937997,-4.2278E-05],[86.941435,-4.0216E-05],[86.944872,-3.6091E-05],[86.948309,-3.506E-05],[86.951747,-3.6607E-05],[86.955184,-3.6091E-05],[86.958621,-3.8154E-05],[86.962059,-4.0216E-05],[86.965496,-3.6607E-05],[86.968933,-4.1763E-05],[86.972371,-3.9185E-05],[86.975808,-3.1967E-05],[86.979245,-3.4029E-05],[86.982683,-3.3513E-05],[86.98612,-3.9185E-05],[86.989557,-3.7122E-05],[86.992995,-3.042E-05],[86.996432,-3.6607E-05],[86.999869,-3.8669E-05],[87.003307,-3.4544E-05],[87.006744,-3.7122E-05],[87.010181,-3.9185E-05],[87.013619,-3.7122E-05],[87.017056,-3.7638E-05],[87.020493,-3.97E-05],[87.023931,-3.8154E-05],[87.027368,-3.506E-05],[87.030805,-3.8154E-05],[87.034243,-3.7638E-05],[87.03768,-3.3513E-05],[87.041117,-3.6091E-05],[87.044555,-3.6091E-05],[87.047992,-3.2998E-05],[87.051429,-3.5576E-05],[87.054867,-3.7638E-05],[87.058304,-3.5576E-05],[87.061741,-3.7122E-05],[87.065179,-3.6091E-05],[87.068616,-3.8669E-05],[87.072053,-3.8669E-05],[87.075491,-3.3513E-05],[87.078928,-3.4544E-05],[87.082365,-3.4029E-05],[87.085803,-3.1967E-05],[87.08924,-3.1451E-05],[87.092677,-3.2482E-05],[87.096115,-3.4029E-05],[87.099552,-4.0216E-05],[87.102989,-4.1247E-05],[87.106427,-3.8154E-05],[87.109864,-4.0216E-05],[87.113301,-3.9185E-05],[87.116739,-3.7638E-05],[87.120176,-3.6607E-05],[87.123613,-3.7638E-05],[87.127051,-3.5576E-05],[87.130488,-3.506E-05],[87.133925,-3.4544E-05],[87.137363,-3.2482E-05],[87.1408,-3.2998E-05],[87.144237,-3.6091E-05],[87.147675,-4.0216E-05],[87.151112,-3.9185E-05]]}
-{"quant":[87.3331,0.75411],"mems":[[87.233608,-3.6091E-05],[87.237045,-3.6607E-05],[87.240483,-3.9185E-05],[87.24392,-3.7122E-05],[87.247357,-3.6091E-05],[87.250795,-3.6607E-05],[87.254232,-3.7638E-05],[87.257669,-3.8669E-05],[87.261107,-3.6091E-05],[87.264544,-3.7638E-05],[87.267981,-3.3513E-05],[87.271419,-3.4029E-05],[87.274856,-3.506E-05],[87.278293,-3.2482E-05],[87.281731,-4.2278E-05],[87.285168,-4.0732E-05],[87.288605,-3.6091E-05],[87.292043,-3.6607E-05],[87.29548,-3.4029E-05],[87.298917,-3.9185E-05],[87.302355,-3.97E-05],[87.305792,-3.9185E-05],[87.309229,-3.4029E-05],[87.312667,-3.1967E-05],[87.316104,-3.6091E-05],[87.319541,-3.97E-05],[87.322979,-4.0216E-05],[87.326416,-3.5576E-05],[87.329853,-3.6091E-05],[87.333291,-3.4029E-05],[87.336728,-3.506E-05],[87.340165,-3.7638E-05],[87.343603,-3.6091E-05],[87.34704,-3.7122E-05],[87.350477,-3.6091E-05],[87.353915,-3.6091E-05],[87.357352,-3.6607E-05],[87.360789,-3.5576E-05],[87.364227,-3.4544E-05],[87.367664,-3.6091E-05],[87.371101,-3.6607E-05],[87.374539,-3.4544E-05],[87.377976,-3.3513E-05],[87.381413,-4.1763E-05],[87.384851,-4.1247E-05],[87.388288,-3.8154E-05],[87.391725,-4.3309E-05],[87.395163,-3.7122E-05],[87.3986,-3.7638E-05],[87.402037,-3.7122E-05],[87.405475,-3.1451E-05],[87.408912,-3.4544E-05],[87.412349,-3.506E-05],[87.415787,-3.3513E-05],[87.419224,-3.5576E-05],[87.422661,-3.9185E-05],[87.426099,-3.506E-05],[87.429536,-3.4544E-05],[87.432973,-3.9185E-05],[87.436411,-3.6091E-05],[87.439848,-3.8154E-05],[87.443285,-3.8154E-05],[87.446723,-3.3513E-05],[87.45016,-3.5576E-05],[87.453597,-3.506E-05],[87.457035,-3.8154E-05],[87.460472,-4.1763E-05],[87.463909,-3.3513E-05],[87.467347,-3.506E-05],[87.470784,-3.8669E-05],[87.474221,-3.8669E-05],[87.477659,-3.97E-05],[87.481096,-3.4544E-05],[87.484533,-3.3513E-05],[87.487971,-3.5576E-05],[87.491408,-3.97E-05],[87.494845,-3.7122E-05],[87.498283,-3.2482E-05],[87.50172,-3.97E-05],[87.505157,-4.1247E-05],[87.508595,-3.6607E-05],[87.512032,-3.4029E-05],[87.515469,-3.5576E-05],[87.518907,-3.4029E-05],[87.522344,-3.1967E-05],[87.525781,-3.8669E-05],[87.529219,-3.8154E-05],[87.532656,-3.4029E-05]]}
-{"quant":[87.6941,0.78311],"mems":[[87.594528,-3.4029E-05],[87.597965,-3.2482E-05],[87.601403,-3.8154E-05],[87.60484,-3.97E-05],[87.608277,-3.4544E-05],[87.611715,-3.8154E-05],[87.615152,-3.6607E-05],[87.618589,-3.6091E-05],[87.622027,-3.8154E-05],[87.625464,-3.6607E-05],[87.628901,-3.9185E-05],[87.632339,-3.7122E-05],[87.635776,-3.506E-05],[87.639213,-3.6607E-05],[87.642651,-3.9185E-05],[87.646088,-3.6607E-05],[87.649525,-3.5576E-05],[87.652963,-3.7638E-05],[87.6564,-3.8154E-05],[87.659837,-4.2794E-05],[87.663275,-3.7122E-05],[87.666712,-3.042E-05],[87.670149,-3.1967E-05],[87.673587,-3.6091E-05],[87.677024,-3.6607E-05],[87.680461,-3.9185E-05],[87.683899,-4.1247E-05],[87.687336,-3.6607E-05],[87.690773,-3.5576E-05],[87.694211,-3.4544E-05],[87.697648,-3.1451E-05],[87.701085,-3.6091E-05],[87.704523,-4.1763E-05],[87.70796,-3.3513E-05],[87.711397,-2.9904E-05],[87.714835,-3.6607E-05],[87.718272,-4.0216E-05],[87.721709,-4.0216E-05],[87.725147,-3.8669E-05],[87.728584,-3.7122E-05],[87.732021,-3.8154E-05],[87.735459,-3.6607E-05],[87.738896,-3.5576E-05],[87.742333,-3.7638E-05],[87.745771,-3.7638E-05],[87.749208,-3.8154E-05],[87.752645,-3.6091E-05],[87.756083,-3.3513E-05],[87.75952,-3.7638E-05],[87.762957,-3.97E-05],[87.766395,-3.4544E-05],[87.769832,-3.6091E-05],[87.773269,-3.9185E-05],[87.776707,-3.6607E-05],[87.780144,-3.6607E-05],[87.783581,-3.4544E-05],[87.787019,-3.8154E-05],[87.790456,-3.8669E-05],[87.793893,-3.6607E-05],[87.797331,-3.7638E-05],[87.800768,-3.6607E-05],[87.804205,-4.1763E-05],[87.807643,-3.8154E-05],[87.81108,-3.4029E-05],[87.814517,-3.3513E-05],[87.817955,-3.4029E-05],[87.821392,-3.8669E-05],[87.824829,-3.2998E-05],[87.828267,-3.2482E-05],[87.831704,-3.2998E-05],[87.835141,-3.2482E-05],[87.838579,-3.7122E-05],[87.842016,-3.5576E-05],[87.845453,-3.6607E-05],[87.848891,-3.5576E-05],[87.852328,-3.0935E-05],[87.855765,-3.5576E-05],[87.859203,-3.8669E-05],[87.86264,-3.6091E-05],[87.866077,-3.6091E-05],[87.869515,-3.506E-05],[87.872952,-3.1451E-05],[87.876389,-3.1451E-05],[87.879827,-3.7122E-05],[87.883264,-3.7638E-05],[87.886701,-3.8154E-05],[87.890139,-4.0732E-05],[87.893576,-3.4544E-05]]}
-{"quant":[88.0538,0.79911],"mems":[[87.962323,-3.6607E-05],[87.96576,-3.8669E-05],[87.969197,-3.7638E-05],[87.972635,-3.6607E-05],[87.976072,-3.2998E-05],[87.979509,-3.3513E-05],[87.982947,-3.7638E-05],[87.986384,-3.506E-05],[87.989821,-3.6091E-05],[87.993259,-3.3513E-05],[87.996696,-3.7638E-05],[88.000133,-3.8154E-05],[88.003571,-3.2998E-05],[88.007008,-3.5576E-05],[88.010445,-3.2482E-05],[88.013883,-3.1451E-05],[88.01732,-2.9904E-05],[88.020757,-3.4544E-05],[88.024195,-3.97E-05],[88.027632,-3.6091E-05],[88.031069,-3.506E-05],[88.034507,-3.4544E-05],[88.037944,-4.1763E-05],[88.041381,-4.2278E-05],[88.044819,-3.7638E-05],[88.048256,-3.5576E-05],[88.051693,-3.2998E-05],[88.055131,-3.7638E-05],[88.058568,-3.8154E-05],[88.062005,-3.7122E-05],[88.065443,-3.5576E-05],[88.06888,-3.0935E-05],[88.072317,-2.9904E-05],[88.075755,-3.4029E-05],[88.079192,-4.2278E-05],[88.082629,-3.6091E-05],[88.086067,-3.1451E-05],[88.089504,-3.8669E-05],[88.092941,-3.7638E-05],[88.096379,-3.9185E-05],[88.099816,-4.0732E-05],[88.103253,-3.8669E-05],[88.106691,-4.1247E-05],[88.110128,-3.97E-05],[88.113565,-3.4544E-05],[88.117003,-3.3513E-05],[88.12044,-3.2998E-05],[88.123877,-3.5576E-05],[88.127315,-3.7638E-05],[88.130752,-3.6091E-05],[88.134189,-3.7122E-05],[88.137627,-3.8154E-05],[88.141064,-4.2278E-05],[88.144501,-4.0216E-05],[88.147939,-3.7638E-05],[88.151376,-3.8669E-05],[88.154813,-3.4544E-05],[88.158251,-3.4544E-05],[88.161688,-3.7638E-05],[88.165125,-3.6607E-05],[88.168563,-3.5576E-05],[88.172,-3.8154E-05],[88.175436,-3.506E-05],[88.178872,-3.506E-05],[88.182308,-3.506E-05],[88.185744,-3.042E-05],[88.18918,-3.7122E-05],[88.192616,-3.7638E-05],[88.196052,-3.506E-05],[88.199488,-4.0216E-05],[88.202924,-4.2278E-05],[88.20636,-4.0732E-05],[88.209796,-3.6091E-05],[88.213232,-3.0935E-05],[88.216668,-3.1967E-05],[88.220104,-3.506E-05],[88.22354,-3.506E-05],[88.226976,-3.8669E-05],[88.230412,-3.506E-05],[88.233848,-3.2998E-05],[88.237284,-3.9185E-05],[88.24072,-3.7638E-05],[88.244156,-3.8669E-05],[88.247592,-3.9185E-05],[88.251028,-3.7122E-05],[88.254464,-3.7122E-05],[88.2579,-3.7638E-05],[88.261336,-3.97E-05]]}
-{"quant":[88.4213,0.82088],"mems":[[88.323184,-3.8669E-05],[88.32662,-3.4029E-05],[88.330056,-3.8669E-05],[88.333492,-4.0732E-05],[88.336928,-3.7122E-05],[88.340364,-3.8154E-05],[88.3438,-3.8669E-05],[88.347236,-3.8154E-05],[88.350672,-3.3513E-05],[88.354108,-3.6607E-05],[88.357544,-3.9185E-05],[88.36098,-3.8154E-05],[88.364416,-3.7638E-05],[88.367852,-3.4029E-05],[88.371288,-3.1451E-05],[88.374724,-3.506E-05],[88.37816,-3.8154E-05],[88.381596,-3.7122E-05],[88.385032,-3.8154E-05],[88.388468,-3.4029E-05],[88.391904,-3.2482E-05],[88.39534,-3.6607E-05],[88.398776,-3.6091E-05],[88.402212,-3.9185E-05],[88.405648,-3.8669E-05],[88.409084,-3.3513E-05],[88.41252,-3.1451E-05],[88.415956,-3.4029E-05],[88.419392,-3.7638E-05],[88.422828,-3.5576E-05],[88.426264,-3.7122E-05],[88.4297,-3.6607E-05],[88.433136,-3.506E-05],[88.436572,-3.506E-05],[88.440008,-3.5576E-05],[88.443444,-3.8154E-05],[88.44688,-3.6091E-05],[88.450316,-3.6091E-05],[88.453752,-3.6607E-05],[88.457188,-3.506E-05],[88.460624,-3.5576E-05],[88.46406,-3.3513E-05],[88.467496,-3.2482E-05],[88.470932,-3.4029E-05],[88.474368,-3.6091E-05],[88.477804,-3.6091E-05],[88.48124,-3.5576E-05],[88.484676,-3.8154E-05],[88.488112,-3.7122E-05],[88.491548,-3.4029E-05],[88.494984,-3.6091E-05],[88.49842,-3.8154E-05],[88.501856,-3.7122E-05],[88.505292,-3.8669E-05],[88.508728,-3.9185E-05],[88.512164,-3.7122E-05],[88.5156,-4.0732E-05],[88.519036,-3.8669E-05],[88.522472,-3.6091E-05],[88.525908,-3.3513E-05],[88.529344,-2.9389E-05],[88.53278,-3.506E-05],[88.536216,-3.9185E-05],[88.539652,-4.1247E-05],[88.543088,-4.0216E-05],[88.546524,-3.6091E-05],[88.54996,-3.7638E-05],[88.553396,-3.4544E-05],[88.556832,-3.6607E-05],[88.560268,-4.0216E-05],[88.563704,-3.7122E-05],[88.56714,-3.9185E-05],[88.570576,-3.6091E-05],[88.574012,-3.7122E-05],[88.577448,-3.8154E-05],[88.580884,-3.506E-05],[88.58432,-3.7638E-05],[88.587756,-3.0935E-05],[88.591192,-3.3513E-05],[88.594628,-4.0216E-05],[88.598064,-4.0216E-05],[88.6015,-4.1763E-05],[88.604936,-3.4029E-05],[88.608372,-3.2998E-05],[88.611808,-3.8669E-05],[88.615244,-3.4544E-05],[88.61868,-3.6607E-05]]}
-{"quant":[88.7681,0.84711],"mems":[[88.67022,-3.4544E-05],[88.673656,-3.1967E-05],[88.677092,-3.3513E-05],[88.680528,-3.8669E-05],[88.683964,-3.8154E-05],[88.6874,-3.8669E-05],[88.690836,-3.6091E-05],[88.694272,-3.4544E-05],[88.697708,-3.4029E-05],[88.701144,-3.506E-05],[88.70458,-3.506E-05],[88.708016,-3.1451E-05],[88.711452,-3.6607E-05],[88.714888,-3.7122E-05],[88.718324,-3.5576E-05],[88.72176,-3.5576E-05],[88.725196,-3.4029E-05],[88.728632,-3.8154E-05],[88.732068,-3.6091E-05],[88.735504,-3.8154E-05],[88.73894,-4.2794E-05],[88.742376,-3.9185E-05],[88.745812,-3.506E-05],[88.749248,-3.6091E-05],[88.752684,-3.8669E-05],[88.75612,-3.6607E-05],[88.759556,-3.7638E-05],[88.762992,-3.7638E-05],[88.766428,-3.4029E-05],[88.769864,-3.7122E-05],[88.7733,-3.7122E-05],[88.776736,-3.7638E-05],[88.780172,-3.8154E-05],[88.783608,-3.6091E-05],[88.787044,-3.2998E-05],[88.79048,-3.7122E-05],[88.793916,-4.3825E-05],[88.797352,-3.6607E-05],[88.800788,-3.97E-05],[88.804224,-3.8154E-05],[88.80766,-3.3513E-05],[88.811096,-3.6091E-05],[88.814532,-3.2482E-05],[88.817968,-4.0732E-05],[88.821404,-3.7638E-05],[88.82484,-3.4029E-05],[88.828276,-3.8154E-05],[88.831712,-3.4029E-05],[88.835148,-3.4029E-05],[88.838584,-3.8154E-05],[88.84202,-3.7122E-05],[88.845456,-3.3513E-05],[88.848892,-3.7122E-05],[88.852328,-3.6607E-05],[88.855764,-3.3513E-05],[88.8592,-3.3513E-05],[88.862636,-3.2482E-05],[88.866072,-3.8154E-05],[88.869508,-3.4029E-05],[88.872944,-2.7842E-05],[88.87638,-3.6091E-05],[88.879816,-3.9185E-05],[88.883252,-3.97E-05],[88.886688,-3.6607E-05],[88.890124,-3.4544E-05],[88.89356,-3.7638E-05],[88.896996,-3.506E-05],[88.900432,-3.8669E-05],[88.903868,-3.5576E-05],[88.907304,-3.7638E-05],[88.91074,-3.97E-05],[88.914176,-3.0935E-05],[88.917612,-3.7122E-05],[88.921048,-3.8669E-05],[88.924484,-3.8154E-05],[88.92792,-4.0732E-05],[88.931356,-3.4029E-05],[88.934792,-3.1967E-05],[88.938228,-3.8669E-05],[88.941664,-3.97E-05],[88.9451,-3.7122E-05],[88.948536,-4.0216E-05],[88.951972,-3.4029E-05],[88.955408,-3.3513E-05],[88.958844,-4.0732E-05],[88.96228,-3.97E-05],[88.965716,-3.7638E-05]]}
-{"quant":[89.1131,0.86989],"mems":[[89.01382,-3.6607E-05],[89.017256,-3.2998E-05],[89.020692,-3.7122E-05],[89.024128,-3.8154E-05],[89.027564,-3.8154E-05],[89.031,-3.2998E-05],[89.034436,-3.5576E-05],[89.037872,-4.0216E-05],[89.041308,-3.4029E-05],[89.044744,-3.7638E-05],[89.04818,-4.0216E-05],[89.051616,-3.7638E-05],[89.055052,-3.7638E-05],[89.058488,-3.6091E-05],[89.061924,-3.7638E-05],[89.06536,-3.6607E-05],[89.068796,-3.2998E-05],[89.072232,-3.4544E-05],[89.075668,-3.506E-05],[89.079104,-3.2998E-05],[89.08254,-3.5576E-05],[89.085976,-3.5576E-05],[89.089412,-2.8873E-05],[89.092848,-2.9389E-05],[89.096284,-3.7638E-05],[89.09972,-3.8154E-05],[89.103156,-3.506E-05],[89.106592,-3.5576E-05],[89.110028,-3.6607E-05],[89.113464,-3.5576E-05],[89.1169,-3.4029E-05],[89.120336,-3.8154E-05],[89.123772,-4.1247E-05],[89.127208,-3.97E-05],[89.130644,-3.8669E-05],[89.13408,-4.1763E-05],[89.137516,-3.9185E-05],[89.140952,-3.506E-05],[89.144388,-3.7122E-05],[89.147824,-3.8154E-05],[89.15126,-3.7638E-05],[89.154696,-3.7122E-05],[89.158132,-3.8154E-05],[89.161568,-3.7122E-05],[89.165004,-3.6091E-05],[89.16844,-3.5576E-05],[89.171876,-3.2998E-05],[89.175312,-3.4544E-05],[89.178748,-3.8669E-05],[89.182184,-4.0732E-05],[89.18562,-3.5576E-05],[89.189056,-3.506E-05],[89.192492,-3.8154E-05],[89.195928,-3.5576E-05],[89.199364,-3.2998E-05],[89.2028,-3.506E-05],[89.206236,-4.1247E-05],[89.209672,-3.7638E-05],[89.213108,-3.1967E-05],[89.216544,-3.4544E-05],[89.21998,-3.5576E-05],[89.223416,-3.6091E-05],[89.226852,-3.5576E-05],[89.230288,-3.4029E-05],[89.233724,-3.506E-05],[89.23716,-3.9185E-05],[89.240596,-3.6607E-05],[89.244032,-3.1451E-05],[89.247468,-3.5576E-05],[89.250904,-3.7638E-05],[89.25434,-3.506E-05],[89.257776,-3.6607E-05],[89.261212,-4.0216E-05],[89.264648,-3.97E-05],[89.268084,-3.506E-05],[89.27152,-3.5576E-05],[89.274956,-3.8669E-05],[89.278392,-3.7638E-05],[89.281828,-3.7638E-05],[89.285264,-3.506E-05],[89.2887,-3.4029E-05],[89.292136,-3.7122E-05],[89.295572,-3.6607E-05],[89.299008,-3.8669E-05],[89.302444,-3.7122E-05],[89.30588,-3.3513E-05],[89.309316,-3.5576E-05],[89.312752,-3.4544E-05]]}
-{"quant":[89.4839,0.89151],"mems":[[89.384908,-3.4544E-05],[89.388344,-3.3513E-05],[89.39178,-3.1451E-05],[89.395216,-3.4029E-05],[89.398652,-3.7122E-05],[89.402088,-3.5576E-05],[89.405524,-3.2998E-05],[89.40896,-3.1451E-05],[89.412396,-3.6091E-05],[89.415832,-3.5576E-05],[89.419268,-3.2998E-05],[89.422704,-3.7122E-05],[89.42614,-3.6607E-05],[89.429576,-3.7122E-05],[89.433012,-4.1247E-05],[89.436448,-3.8154E-05],[89.439884,-3.4544E-05],[89.44332,-3.6091E-05],[89.446756,-3.8154E-05],[89.450192,-4.1763E-05],[89.453628,-4.2278E-05],[89.457064,-3.7638E-05],[89.4605,-4.0216E-05],[89.463936,-3.97E-05],[89.467372,-3.8669E-05],[89.470808,-3.97E-05],[89.474244,-3.5576E-05],[89.47768,-3.7638E-05],[89.481116,-4.2278E-05],[89.484552,-4.1763E-05],[89.487988,-3.7122E-05],[89.491424,-3.506E-05],[89.49486,-4.0216E-05],[89.498296,-3.8669E-05],[89.501732,-3.4544E-05],[89.505168,-3.1967E-05],[89.508604,-3.1967E-05],[89.51204,-3.2482E-05],[89.515476,-3.506E-05],[89.518912,-3.7122E-05],[89.522348,-3.1451E-05],[89.525784,-3.506E-05],[89.52922,-4.0732E-05],[89.532656,-3.97E-05],[89.536092,-3.9185E-05],[89.539528,-3.7122E-05],[89.542964,-3.5576E-05],[89.5464,-3.4029E-05],[89.549836,-3.0935E-05],[89.553272,-3.1451E-05],[89.556708,-3.6091E-05],[89.560144,-3.506E-05],[89.56358,-3.4544E-05],[89.567016,-3.4544E-05],[89.570452,-3.1967E-05],[89.573888,-3.8154E-05],[89.577324,-3.9185E-05],[89.58076,-3.6607E-05],[89.584196,-4.0216E-05],[89.587632,-3.4544E-05],[89.591068,-3.506E-05],[89.594504,-3.6091E-05],[89.59794,-3.4029E-05],[89.601376,-3.9185E-05],[89.604812,-3.8154E-05],[89.608248,-3.5576E-05],[89.611684,-3.5576E-05],[89.61512,-3.8154E-05],[89.618556,-3.9185E-05],[89.621992,-3.4544E-05],[89.625428,-3.5576E-05],[89.628864,-3.6607E-05],[89.6323,-3.3513E-05],[89.635736,-3.4544E-05],[89.639172,-3.6091E-05],[89.642608,-3.042E-05],[89.646044,-3.2482E-05],[89.64948,-3.6091E-05],[89.652916,-3.4029E-05],[89.656352,-3.7638E-05],[89.659788,-3.3513E-05],[89.663224,-3.1451E-05],[89.66666,-4.0216E-05],[89.670096,-3.6607E-05],[89.673532,-3.2998E-05],[89.676968,-3.506E-05],[89.680404,-3.3513E-05],[89.68384,-3.5576E-05]]}
-{"quant":[89.8371,0.92027],"mems":[[89.738816,-3.3513E-05],[89.742252,-3.8154E-05],[89.745688,-3.8154E-05],[89.749124,-3.7638E-05],[89.75256,-3.8154E-05],[89.755996,-3.8669E-05],[89.759432,-3.9185E-05],[89.762868,-3.5576E-05],[89.766304,-3.6607E-05],[89.76974,-3.6091E-05],[89.773176,-3.1451E-05],[89.776612,-3.2482E-05],[89.780048,-3.2998E-05],[89.783484,-2.8873E-05],[89.78692,-3.1967E-05],[89.790356,-3.8154E-05],[89.793792,-3.6091E-05],[89.797228,-3.8669E-05],[89.800664,-3.7638E-05],[89.8041,-3.6091E-05],[89.807536,-3.97E-05],[89.810972,-3.8154E-05],[89.814408,-3.8669E-05],[89.817844,-3.97E-05],[89.82128,-3.8669E-05],[89.824716,-3.2482E-05],[89.828152,-2.9904E-05],[89.831588,-3.3513E-05],[89.835024,-3.5576E-05],[89.83846,-3.7122E-05],[89.841896,-3.6091E-05],[89.845332,-4.1247E-05],[89.848768,-4.1763E-05],[89.852204,-3.6607E-05],[89.85564,-3.4029E-05],[89.859076,-3.4544E-05],[89.862512,-3.506E-05],[89.865948,-3.3513E-05],[89.869384,-3.506E-05],[89.87282,-3.7638E-05],[89.876256,-3.9185E-05],[89.879692,-3.5576E-05],[89.883128,-3.6607E-05],[89.886564,-4.0732E-05],[89.89,-3.97E-05],[89.893436,-3.7122E-05],[89.896872,-3.8154E-05],[89.900308,-3.506E-05],[89.903744,-3.1967E-05],[89.90718,-3.7122E-05],[89.910616,-3.7122E-05],[89.914052,-3.6607E-05],[89.917488,-3.5576E-05],[89.920924,-3.4544E-05],[89.92436,-3.6607E-05],[89.927796,-3.4544E-05],[89.931232,-3.6091E-05],[89.934668,-3.4029E-05],[89.938104,-3.4544E-05],[89.94154,-4.0216E-05],[89.944976,-3.8669E-05],[89.948412,-3.6091E-05],[89.951848,-3.5576E-05],[89.955284,-3.97E-05],[89.95872,-3.97E-05],[89.962156,-3.2482E-05],[89.965592,-3.2482E-05],[89.969028,-3.5576E-05],[89.972464,-3.6091E-05],[89.9759,-3.506E-05],[89.979336,-3.2998E-05],[89.982772,-3.2998E-05],[89.986208,-3.4029E-05],[89.989644,-3.6091E-05],[89.99308,-4.0732E-05],[89.996516,-4.1247E-05],[89.999952,-4.1247E-05],[90.003388,-4.0732E-05],[90.006824,-3.6091E-05],[90.01026,-3.5576E-05],[90.013696,-3.2998E-05],[90.017132,-3.1451E-05],[90.020568,-3.7638E-05],[90.024004,-3.97E-05],[90.02744,-4.0732E-05],[90.030876,-3.8154E-05],[90.034312,-3.6607E-05]]}
-{"quant":[90.1895,0.95656],"mems":[[90.092724,-3.2998E-05],[90.09616,-3.2998E-05],[90.099596,-3.506E-05],[90.103032,-3.8154E-05],[90.106468,-3.3513E-05],[90.109904,-3.1967E-05],[90.11334,-3.2482E-05],[90.116776,-3.6091E-05],[90.120212,-3.9185E-05],[90.123648,-3.506E-05],[90.127084,-3.506E-05],[90.13052,-3.7122E-05],[90.133956,-3.6091E-05],[90.137392,-3.4029E-05],[90.140828,-3.2998E-05],[90.144264,-3.3513E-05],[90.1477,-3.4029E-05],[90.151136,-3.4029E-05],[90.154572,-3.6607E-05],[90.158008,-3.6091E-05],[90.161444,-3.6607E-05],[90.16488,-3.97E-05],[90.168316,-3.4544E-05],[90.171752,-3.7638E-05],[90.175188,-4.0216E-05],[90.178624,-3.6091E-05],[90.18206,-3.9185E-05],[90.185496,-3.7638E-05],[90.188932,-3.6091E-05],[90.192368,-3.4544E-05],[90.195804,-3.506E-05],[90.19924,-4.0216E-05],[90.202676,-3.3513E-05],[90.206112,-3.042E-05],[90.209548,-3.7122E-05],[90.212984,-3.7122E-05],[90.21642,-3.7122E-05],[90.219856,-3.6607E-05],[90.223292,-3.6091E-05],[90.226728,-3.8154E-05],[90.230164,-3.7638E-05],[90.2336,-3.9185E-05],[90.237036,-3.8154E-05],[90.240472,-3.506E-05],[90.243908,-3.6091E-05],[90.247344,-3.3513E-05],[90.25078,-3.3513E-05],[90.254216,-3.7638E-05],[90.257652,-3.5576E-05],[90.261088,-3.6091E-05],[90.264524,-3.6607E-05],[90.26796,-3.6091E-05],[90.271396,-3.7122E-05],[90.274832,-3.6091E-05],[90.278268,-3.6091E-05],[90.281704,-3.8669E-05],[90.28514,-3.6607E-05],[90.288576,-3.4029E-05],[90.292012,-3.6607E-05],[90.295448,-3.7638E-05],[90.298884,-3.8669E-05],[90.30232,-4.0732E-05],[90.305756,-3.8154E-05],[90.309192,-3.6607E-05],[90.312628,-3.506E-05],[90.316064,-3.7122E-05],[90.3195,-3.8154E-05],[90.322936,-3.506E-05],[90.326372,-3.6091E-05],[90.329808,-3.4029E-05],[90.333244,-3.7122E-05],[90.33668,-4.0732E-05],[90.340116,-3.8669E-05],[90.343552,-3.8669E-05],[90.346988,-3.506E-05],[90.350424,-3.5576E-05],[90.35386,-3.4029E-05],[90.357296,-3.5576E-05],[90.360732,-3.7122E-05],[90.364168,-3.4544E-05],[90.367604,-3.6607E-05],[90.37104,-3.8154E-05],[90.374476,-4.0732E-05],[90.377912,-3.7122E-05],[90.381348,-3.3513E-05],[90.384784,-3.1451E-05],[90.38822,-2.9904E-05]]}
-{"quant":[90.5527,0.98269],"mems":[[90.460376,-3.4029E-05],[90.463812,-3.2482E-05],[90.467248,-3.2482E-05],[90.470684,-3.8669E-05],[90.47412,-4.0732E-05],[90.477556,-3.7638E-05],[90.480992,-3.6607E-05],[90.484428,-3.5576E-05],[90.487864,-3.5576E-05],[90.4913,-3.8154E-05],[90.494736,-4.0732E-05],[90.498172,-3.8669E-05],[90.501608,-4.0216E-05],[90.505044,-4.3825E-05],[90.50848,-3.8154E-05],[90.511916,-3.6607E-05],[90.515352,-3.5576E-05],[90.518788,-3.6607E-05],[90.522224,-4.0732E-05],[90.52566,-3.5576E-05],[90.529096,-3.3513E-05],[90.532532,-3.7122E-05],[90.535968,-3.2998E-05],[90.539404,-3.5576E-05],[90.54284,-4.1763E-05],[90.546276,-3.3513E-05],[90.549712,-3.2998E-05],[90.553148,-4.1763E-05],[90.556584,-3.97E-05],[90.56002,-3.6091E-05],[90.563456,-3.7122E-05],[90.566892,-4.0732E-05],[90.570328,-4.0732E-05],[90.573764,-3.7638E-05],[90.5772,-3.9185E-05],[90.580636,-3.8669E-05],[90.584072,-3.3513E-05],[90.587508,-3.506E-05],[90.590944,-3.7638E-05],[90.59438,-3.6091E-05],[90.597816,-3.6607E-05],[90.601252,-3.506E-05],[90.604688,-3.5576E-05],[90.608124,-3.8154E-05],[90.61156,-4.1247E-05],[90.614996,-4.1763E-05],[90.618432,-3.506E-05],[90.621868,-3.1967E-05],[90.625304,-3.1451E-05],[90.62874,-3.1967E-05],[90.632176,-3.1451E-05],[90.635612,-3.5576E-05],[90.639048,-3.9185E-05],[90.642484,-3.5576E-05],[90.64592,-3.5576E-05],[90.649356,-3.5576E-05],[90.652792,-3.7122E-05],[90.656228,-3.8669E-05],[90.659664,-4.0216E-05],[90.6631,-3.8669E-05],[90.666536,-3.7638E-05],[90.669972,-3.97E-05],[90.673408,-3.9185E-05],[90.676844,-3.7122E-05],[90.68028,-3.6091E-05],[90.683716,-3.9185E-05],[90.687152,-3.9185E-05],[90.690588,-3.6091E-05],[90.694024,-3.8154E-05],[90.69746,-4.1247E-05],[90.700896,-4.2278E-05],[90.704332,-3.97E-05],[90.707768,-3.6091E-05],[90.711204,-3.7122E-05],[90.71464,-3.506E-05],[90.718076,-3.1451E-05],[90.721512,-3.1967E-05],[90.724948,-2.9389E-05],[90.728384,-3.4544E-05],[90.73182,-4.2794E-05],[90.735256,-4.0732E-05],[90.738692,-3.8669E-05],[90.742128,-3.5576E-05],[90.745564,-2.8873E-05],[90.749,-2.9389E-05],[90.752439,-3.7122E-05],[90.755877,-3.8154E-05],[90.759316,-3.8669E-05]]}
-{"quant":[90.9271,0.99764],"mems":[[90.828089,-3.5576E-05],[90.831528,-3.8669E-05],[90.834967,-3.5576E-05],[90.838405,-3.506E-05],[90.841844,-3.97E-05],[90.845283,-3.97E-05],[90.848721,-3.6607E-05],[90.85216,-3.7122E-05],[90.855599,-3.8669E-05],[90.859037,-3.4029E-05],[90.862476,-3.1967E-05],[90.865915,-3.506E-05],[90.869353,-3.5576E-05],[90.872792,-3.4029E-05],[90.876231,-3.6091E-05],[90.879669,-3.8154E-05],[90.883108,-3.7122E-05],[90.886547,-3.9185E-05],[90.889985,-3.6607E-05],[90.893424,-3.5576E-05],[90.896863,-3.7122E-05],[90.900301,-3.4544E-05],[90.90374,-3.7638E-05],[90.907179,-3.7122E-05],[90.910617,-3.4029E-05],[90.914056,-4.1247E-05],[90.917495,-3.97E-05],[90.920933,-3.2998E-05],[90.924372,-3.3513E-05],[90.927811,-3.6091E-05],[90.931249,-4.2278E-05],[90.934688,-4.0216E-05],[90.938127,-4.0216E-05],[90.941565,-3.8154E-05],[90.945004,-3.4029E-05],[90.948443,-3.7122E-05],[90.951881,-3.7638E-05],[90.95532,-3.8669E-05],[90.958759,-3.7122E-05],[90.962197,-3.8154E-05],[90.965636,-3.506E-05],[90.969075,-3.4544E-05],[90.972513,-4.1247E-05],[90.975952,-3.97E-05],[90.979391,-3.6091E-05],[90.982829,-3.7122E-05],[90.986268,-4.2794E-05],[90.989707,-4.0216E-05],[90.993145,-3.8154E-05],[90.996584,-4.0216E-05],[91.000023,-3.97E-05],[91.003461,-3.7122E-05],[91.0069,-3.0935E-05],[91.010339,-3.3513E-05],[91.013777,-3.5576E-05],[91.017216,-3.5576E-05],[91.020655,-3.7638E-05],[91.024093,-3.9185E-05],[91.027532,-4.0732E-05],[91.030971,-3.97E-05],[91.034409,-4.2278E-05],[91.037848,-4.1763E-05],[91.041287,-3.7638E-05],[91.044725,-3.6607E-05],[91.048164,-3.506E-05],[91.051603,-3.97E-05],[91.055041,-4.1763E-05],[91.05848,-3.8669E-05],[91.061919,-3.6091E-05],[91.065357,-3.4544E-05],[91.068796,-3.8669E-05],[91.072235,-3.7122E-05],[91.075673,-3.8669E-05],[91.079112,-4.1763E-05],[91.082551,-3.4544E-05],[91.085989,-3.506E-05],[91.089428,-3.97E-05],[91.092867,-3.506E-05],[91.096305,-3.1451E-05],[91.099744,-3.7638E-05],[91.103183,-4.0216E-05],[91.106621,-3.4544E-05],[91.11006,-3.506E-05],[91.113499,-3.8154E-05],[91.116937,-3.6091E-05],[91.120376,-4.1247E-05],[91.123815,-4.0732E-05]]}
-{"quant":[91.3225,1.0186],"mems":[[91.223536,-3.4029E-05],[91.226975,-3.7638E-05],[91.230413,-3.8154E-05],[91.233852,-3.6607E-05],[91.237291,-3.7638E-05],[91.240729,-4.1247E-05],[91.244168,-4.0732E-05],[91.247607,-3.6091E-05],[91.251045,-3.7638E-05],[91.254484,-3.5576E-05],[91.257923,-3.5576E-05],[91.261361,-3.7638E-05],[91.2648,-3.7122E-05],[91.268239,-3.6091E-05],[91.271677,-3.6607E-05],[91.275116,-3.8669E-05],[91.278555,-3.9185E-05],[91.281993,-4.1247E-05],[91.285432,-3.7638E-05],[91.288871,-3.7122E-05],[91.292309,-3.8154E-05],[91.295748,-3.6607E-05],[91.299187,-3.7638E-05],[91.302625,-3.5576E-05],[91.306064,-4.0216E-05],[91.309503,-3.97E-05],[91.312941,-3.3513E-05],[91.31638,-3.8669E-05],[91.319819,-3.8154E-05],[91.323257,-3.3513E-05],[91.326696,-3.7122E-05],[91.330135,-3.5576E-05],[91.333573,-3.2482E-05],[91.337012,-3.7638E-05],[91.340451,-3.7638E-05],[91.343889,-3.4544E-05],[91.347328,-3.7122E-05],[91.350767,-3.5576E-05],[91.354205,-3.7638E-05],[91.357644,-3.5576E-05],[91.361083,-3.0935E-05],[91.364521,-3.4544E-05],[91.36796,-3.6091E-05],[91.371399,-3.6091E-05],[91.374837,-3.0935E-05],[91.378276,-3.1967E-05],[91.381715,-3.8669E-05],[91.385153,-3.0935E-05],[91.388592,-3.1967E-05],[91.392031,-3.6091E-05],[91.395469,-3.4544E-05],[91.398908,-3.7638E-05],[91.402347,-3.4544E-05],[91.405785,-3.506E-05],[91.409224,-3.7638E-05],[91.412663,-3.7638E-05],[91.416101,-3.6607E-05],[91.41954,-3.3513E-05],[91.422979,-3.2998E-05],[91.426417,-3.506E-05],[91.429856,-3.506E-05],[91.433295,-3.7122E-05],[91.436733,-3.7638E-05],[91.440172,-3.2482E-05],[91.443611,-3.3513E-05],[91.447049,-3.5576E-05],[91.450488,-3.3513E-05],[91.453927,-3.8669E-05],[91.457365,-3.9185E-05],[91.460804,-3.9185E-05],[91.464243,-3.9185E-05],[91.467681,-3.4029E-05],[91.47112,-3.8154E-05],[91.474559,-3.5576E-05],[91.477997,-3.7122E-05],[91.481436,-4.0732E-05],[91.484875,-3.2998E-05],[91.488313,-3.8154E-05],[91.491752,-4.0732E-05],[91.495191,-3.6091E-05],[91.498629,-4.1247E-05],[91.502068,-4.1247E-05],[91.505507,-3.506E-05],[91.508945,-3.7638E-05],[91.512384,-3.5576E-05],[91.515823,-3.1967E-05],[91.519261,-3.4544E-05]]}
-{"quant":[91.6732,1.0467],"mems":[[91.57428,-3.6607E-05],[91.577719,-4.0732E-05],[91.581157,-3.8154E-05],[91.584596,-3.6091E-05],[91.588035,-4.1247E-05],[91.591473,-4.0732E-05],[91.594912,-4.1247E-05],[91.598351,-3.9185E-05],[91.601789,-3.6607E-05],[91.605228,-3.2998E-05],[91.608667,-3.2998E-05],[91.612105,-3.9185E-05],[91.615544,-3.8669E-05],[91.618983,-3.7122E-05],[91.622421,-3.7638E-05],[91.62586,-3.8154E-05],[91.629299,-3.9185E-05],[91.632737,-4.1247E-05],[91.636176,-3.8154E-05],[91.639615,-3.6091E-05],[91.643053,-3.7122E-05],[91.646492,-3.6091E-05],[91.649931,-3.6091E-05],[91.653369,-3.4029E-05],[91.656808,-3.2998E-05],[91.660247,-3.3513E-05],[91.663685,-3.8154E-05],[91.667124,-3.8154E-05],[91.670563,-3.5576E-05],[91.674001,-3.4029E-05],[91.67744,-3.506E-05],[91.680879,-4.0732E-05],[91.684317,-3.8154E-05],[91.687756,-3.1967E-05],[91.691195,-3.4544E-05],[91.694633,-4.0732E-05],[91.698072,-3.8669E-05],[91.701511,-3.7638E-05],[91.704949,-4.0216E-05],[91.708388,-3.7122E-05],[91.711827,-3.8154E-05],[91.715265,-3.8669E-05],[91.718704,-3.6607E-05],[91.722143,-3.8669E-05],[91.725581,-3.7638E-05],[91.72902,-3.9185E-05],[91.732459,-3.7122E-05],[91.735897,-3.6607E-05],[91.739336,-3.8154E-05],[91.742775,-3.2482E-05],[91.746213,-3.2482E-05],[91.749652,-3.4029E-05],[91.753091,-3.7122E-05],[91.756529,-4.2794E-05],[91.759968,-3.97E-05],[91.763407,-3.8154E-05],[91.766845,-3.9185E-05],[91.770284,-3.6607E-05],[91.773723,-3.6607E-05],[91.777161,-3.6607E-05],[91.7806,-3.5576E-05],[91.784039,-3.506E-05],[91.787477,-3.506E-05],[91.790916,-4.2278E-05],[91.794355,-3.8669E-05],[91.797793,-3.2482E-05],[91.801232,-3.8669E-05],[91.804671,-3.3513E-05],[91.808109,-3.4029E-05],[91.811548,-3.7122E-05],[91.814987,-3.2482E-05],[91.818425,-3.2998E-05],[91.821864,-3.0935E-05],[91.825303,-3.2482E-05],[91.828741,-3.4544E-05],[91.83218,-3.4029E-05],[91.835619,-3.97E-05],[91.839057,-3.6607E-05],[91.842496,-3.4029E-05],[91.845935,-4.0216E-05],[91.849373,-4.1247E-05],[91.852812,-3.7122E-05],[91.856251,-3.6607E-05],[91.859689,-3.6607E-05],[91.863128,-3.3513E-05],[91.866567,-3.506E-05],[91.870005,-4.0216E-05]]}
-{"quant":[92.0244,1.074],"mems":[[91.925024,-4.0732E-05],[91.928463,-3.8669E-05],[91.931901,-3.9185E-05],[91.93534,-3.6091E-05],[91.938779,-3.1967E-05],[91.942217,-3.5576E-05],[91.945656,-3.6607E-05],[91.949095,-3.7638E-05],[91.952533,-3.7122E-05],[91.955972,-3.1451E-05],[91.959411,-3.5576E-05],[91.962849,-3.3513E-05],[91.966288,-3.4544E-05],[91.969727,-4.1763E-05],[91.973165,-3.506E-05],[91.976604,-3.4029E-05],[91.980043,-3.5576E-05],[91.983481,-3.8154E-05],[91.98692,-3.6091E-05],[91.990359,-3.2998E-05],[91.993797,-3.7638E-05],[91.997236,-3.6607E-05],[92.000675,-3.8669E-05],[92.004113,-3.4544E-05],[92.007552,-3.042E-05],[92.010991,-3.7638E-05],[92.014429,-3.7122E-05],[92.017868,-4.1247E-05],[92.021307,-3.7122E-05],[92.024745,-3.4029E-05],[92.028184,-4.0216E-05],[92.031623,-3.506E-05],[92.035061,-3.6607E-05],[92.0385,-3.8154E-05],[92.041939,-3.6091E-05],[92.045377,-3.5576E-05],[92.048816,-3.4029E-05],[92.052255,-4.0216E-05],[92.055693,-3.97E-05],[92.059132,-3.506E-05],[92.062571,-3.7638E-05],[92.066009,-3.6091E-05],[92.069448,-3.9185E-05],[92.072887,-3.97E-05],[92.076325,-3.2998E-05],[92.079764,-3.4544E-05],[92.083203,-3.6607E-05],[92.086641,-3.6091E-05],[92.09008,-3.4544E-05],[92.093519,-3.6607E-05],[92.096957,-3.8154E-05],[92.100396,-3.506E-05],[92.103835,-3.4029E-05],[92.107273,-3.4544E-05],[92.110712,-3.5576E-05],[92.114151,-3.5576E-05],[92.117589,-3.506E-05],[92.121028,-3.506E-05],[92.124467,-3.3513E-05],[92.127905,-3.4029E-05],[92.131344,-3.8154E-05],[92.134783,-3.8154E-05],[92.138221,-3.5576E-05],[92.14166,-3.6091E-05],[92.145099,-3.9185E-05],[92.148537,-3.7638E-05],[92.151976,-3.6607E-05],[92.155415,-3.7638E-05],[92.158853,-3.6091E-05],[92.162292,-3.7638E-05],[92.165731,-3.2998E-05],[92.169169,-3.2998E-05],[92.172608,-3.506E-05],[92.176047,-3.6607E-05],[92.179485,-3.7122E-05],[92.182924,-2.9904E-05],[92.186363,-3.3513E-05],[92.189801,-3.7122E-05],[92.19324,-3.506E-05],[92.196679,-3.6091E-05],[92.200117,-3.7122E-05],[92.203556,-3.4544E-05],[92.206995,-3.2998E-05],[92.210433,-3.9185E-05],[92.213872,-4.0216E-05],[92.217311,-3.7638E-05],[92.220749,-3.5576E-05],[92.224188,-3.7638E-05]]}
-{"quant":[92.3859,1.0929],"mems":[[92.286084,-3.8154E-05],[92.289523,-3.4544E-05],[92.292961,-3.6607E-05],[92.2964,-3.7122E-05],[92.299839,-3.5576E-05],[92.303277,-3.6091E-05],[92.306716,-3.506E-05],[92.310155,-3.8669E-05],[92.313593,-3.7122E-05],[92.317032,-3.97E-05],[92.320471,-3.6607E-05],[92.323909,-3.6091E-05],[92.327348,-4.1247E-05],[92.330787,-3.6091E-05],[92.334225,-3.7638E-05],[92.337664,-3.8154E-05],[92.341103,-3.506E-05],[92.344541,-3.2482E-05],[92.34798,-3.7638E-05],[92.351419,-4.3309E-05],[92.354857,-3.8669E-05],[92.358296,-3.8154E-05],[92.361735,-3.6607E-05],[92.365173,-3.7122E-05],[92.368612,-3.97E-05],[92.372051,-3.8669E-05],[92.375489,-3.8669E-05],[92.378928,-3.6091E-05],[92.382367,-3.4029E-05],[92.385805,-3.4029E-05],[92.389244,-3.506E-05],[92.392683,-3.97E-05],[92.396121,-3.8669E-05],[92.39956,-3.6091E-05],[92.402999,-3.6091E-05],[92.406437,-3.97E-05],[92.409876,-4.0216E-05],[92.413315,-3.7638E-05],[92.416753,-3.9185E-05],[92.420192,-3.7122E-05],[92.423631,-3.3513E-05],[92.427069,-3.4029E-05],[92.430508,-3.7122E-05],[92.433947,-3.7122E-05],[92.437385,-3.8154E-05],[92.440824,-3.5576E-05],[92.444263,-3.1451E-05],[92.447701,-3.8669E-05],[92.45114,-3.8154E-05],[92.454579,-3.4544E-05],[92.458017,-3.6091E-05],[92.461456,-3.6091E-05],[92.464895,-3.8669E-05],[92.468333,-3.8154E-05],[92.471772,-3.7638E-05],[92.475211,-3.506E-05],[92.478649,-3.3513E-05],[92.482088,-3.6607E-05],[92.485527,-3.506E-05],[92.488965,-3.7122E-05],[92.492404,-3.7638E-05],[92.495843,-3.8154E-05],[92.499281,-3.9185E-05],[92.50272,-3.5576E-05],[92.506159,-3.8154E-05],[92.509597,-3.8154E-05],[92.513036,-3.4544E-05],[92.516475,-3.506E-05],[92.519913,-3.5576E-05],[92.523352,-3.5576E-05],[92.526791,-4.0732E-05],[92.530229,-4.2794E-05],[92.533668,-3.6607E-05],[92.537107,-3.5576E-05],[92.540545,-3.8154E-05],[92.543984,-3.8154E-05],[92.547423,-3.97E-05],[92.550861,-4.0732E-05],[92.5543,-3.97E-05],[92.557739,-4.0216E-05],[92.561177,-3.97E-05],[92.564616,-3.6607E-05],[92.568055,-3.6607E-05],[92.571493,-3.7638E-05],[92.574932,-4.1247E-05],[92.578371,-4.0216E-05],[92.581809,-3.1967E-05],[92.585248,-3.7122E-05]]}
-{"quant":[92.73,1.0943],"mems":[[92.633389,-4.1247E-05],[92.636828,-3.7122E-05],[92.640267,-3.3513E-05],[92.643705,-3.4029E-05],[92.647144,-3.7638E-05],[92.650583,-3.6091E-05],[92.654021,-3.7122E-05],[92.65746,-3.7638E-05],[92.660899,-3.506E-05],[92.664337,-3.7122E-05],[92.667776,-3.7638E-05],[92.671215,-3.9185E-05],[92.674653,-3.8154E-05],[92.678092,-3.2998E-05],[92.681531,-3.3513E-05],[92.684969,-3.506E-05],[92.688408,-3.7638E-05],[92.691847,-4.1763E-05],[92.695285,-4.0732E-05],[92.698724,-3.6607E-05],[92.702163,-3.506E-05],[92.705601,-3.6091E-05],[92.70904,-3.9185E-05],[92.712479,-3.7122E-05],[92.715917,-3.4029E-05],[92.719356,-3.3513E-05],[92.722795,-3.6607E-05],[92.726233,-4.2278E-05],[92.729672,-3.8154E-05],[92.733111,-3.97E-05],[92.736549,-3.97E-05],[92.739988,-3.4544E-05],[92.743427,-3.6091E-05],[92.746865,-3.6091E-05],[92.750304,-4.0732E-05],[92.753743,-3.8154E-05],[92.757181,-3.2998E-05],[92.76062,-3.8669E-05],[92.764059,-3.6091E-05],[92.767497,-3.8154E-05],[92.770936,-4.1247E-05],[92.774375,-3.8154E-05],[92.777813,-3.5576E-05],[92.781252,-3.0935E-05],[92.784691,-3.9185E-05],[92.788129,-4.0732E-05],[92.791568,-3.8669E-05],[92.795007,-4.0216E-05],[92.798445,-3.4029E-05],[92.801884,-3.7122E-05],[92.805323,-3.8669E-05],[92.808761,-3.8154E-05],[92.8122,-3.506E-05],[92.815639,-3.3513E-05],[92.819077,-3.6091E-05],[92.822516,-3.042E-05],[92.825955,-3.506E-05],[92.829393,-3.7638E-05],[92.832832,-3.5576E-05],[92.836271,-3.7122E-05],[92.839709,-3.3513E-05],[92.843148,-3.506E-05],[92.846587,-3.9185E-05],[92.850025,-3.6607E-05],[92.853464,-3.506E-05],[92.856903,-3.1451E-05],[92.860341,-3.1451E-05],[92.86378,-3.3513E-05],[92.867219,-3.6091E-05],[92.870657,-3.97E-05],[92.874096,-3.6607E-05],[92.877535,-3.6091E-05],[92.880973,-3.7122E-05],[92.884412,-3.97E-05],[92.887851,-4.0732E-05],[92.891289,-3.7122E-05],[92.894728,-3.6091E-05],[92.898167,-3.8154E-05],[92.901605,-3.97E-05],[92.905044,-3.5576E-05],[92.908483,-3.2998E-05],[92.911921,-3.4544E-05],[92.91536,-3.5576E-05],[92.918799,-3.4029E-05],[92.922237,-3.4544E-05],[92.925676,-3.2482E-05],[92.929115,-3.4029E-05]]}
-{"quant":[93.0931,1.0988],"mems":[[92.994449,-3.3513E-05],[92.997888,-3.2482E-05],[93.001327,-3.0935E-05],[93.004765,-3.4544E-05],[93.008204,-3.97E-05],[93.011643,-3.9185E-05],[93.015081,-3.1967E-05],[93.01852,-3.7122E-05],[93.021959,-3.9185E-05],[93.025397,-3.7122E-05],[93.028836,-4.2278E-05],[93.032275,-3.6091E-05],[93.035713,-3.4029E-05],[93.039152,-3.8669E-05],[93.042591,-3.5576E-05],[93.046029,-3.7638E-05],[93.049468,-4.0216E-05],[93.052907,-3.8669E-05],[93.056345,-3.97E-05],[93.059784,-3.6607E-05],[93.063223,-3.3513E-05],[93.066661,-3.6091E-05],[93.0701,-3.7122E-05],[93.073539,-3.8154E-05],[93.076977,-3.7638E-05],[93.080416,-3.7122E-05],[93.083855,-3.4029E-05],[93.087293,-3.6091E-05],[93.090732,-3.97E-05],[93.094171,-3.6091E-05],[93.097609,-3.7122E-05],[93.101048,-3.506E-05],[93.104487,-3.5576E-05],[93.107925,-4.3825E-05],[93.111364,-3.9185E-05],[93.114803,-3.506E-05],[93.118241,-4.2278E-05],[93.12168,-3.506E-05],[93.125119,-3.2998E-05],[93.128557,-3.5576E-05],[93.131996,-3.7122E-05],[93.135435,-3.97E-05],[93.138873,-3.4544E-05],[93.142312,-3.4544E-05],[93.145751,-3.6607E-05],[93.149189,-3.97E-05],[93.152628,-4.0732E-05],[93.156067,-3.7638E-05],[93.159505,-3.6091E-05],[93.162944,-3.6091E-05],[93.166383,-3.6607E-05],[93.169821,-3.8154E-05],[93.17326,-3.8669E-05],[93.176699,-3.5576E-05],[93.180137,-3.2998E-05],[93.183576,-3.7638E-05],[93.187015,-3.9185E-05],[93.190453,-3.7638E-05],[93.193892,-3.97E-05],[93.197331,-4.0732E-05],[93.200769,-4.0216E-05],[93.204208,-3.7122E-05],[93.207647,-3.8669E-05],[93.211085,-4.0216E-05],[93.214524,-3.4029E-05],[93.217963,-3.506E-05],[93.221401,-3.8669E-05],[93.22484,-3.8154E-05],[93.228279,-3.7638E-05],[93.231717,-3.4544E-05],[93.235156,-3.5576E-05],[93.238595,-3.506E-05],[93.242033,-3.506E-05],[93.245472,-3.5576E-05],[93.248911,-3.5576E-05],[93.252349,-4.2278E-05],[93.255788,-3.7122E-05],[93.259227,-3.1967E-05],[93.262665,-3.5576E-05],[93.266104,-3.8669E-05],[93.269543,-3.97E-05],[93.272981,-3.7122E-05],[93.27642,-3.8154E-05],[93.279859,-3.6091E-05],[93.283297,-3.506E-05],[93.286736,-3.9185E-05],[93.290175,-3.97E-05]]}
-{"quant":[93.4436,1.1149],"mems":[[93.34558,-3.6607E-05],[93.349096,-3.9185E-05],[93.352612,-3.8669E-05],[93.356128,-3.7122E-05],[93.359644,-3.7638E-05],[93.36316,-3.4544E-05],[93.366676,-3.8154E-05],[93.370192,-4.0732E-05],[93.373708,-3.2482E-05],[93.377224,-3.4544E-05],[93.38074,-3.6091E-05],[93.384256,-3.2482E-05],[93.387772,-3.6091E-05],[93.391288,-3.7638E-05],[93.394804,-3.7122E-05],[93.39832,-3.6607E-05],[93.401836,-3.8154E-05],[93.405352,-3.8669E-05],[93.408868,-3.6091E-05],[93.412384,-4.1247E-05],[93.4159,-3.6607E-05],[93.419416,-3.2482E-05],[93.422932,-3.4544E-05],[93.426448,-3.2482E-05],[93.429964,-3.8154E-05],[93.43348,-4.3309E-05],[93.436996,-4.3309E-05],[93.440512,-4.0216E-05],[93.444028,-3.6607E-05],[93.447544,-3.7638E-05],[93.45106,-3.9185E-05],[93.454576,-3.9185E-05],[93.458092,-3.7122E-05],[93.461608,-3.4544E-05],[93.465124,-3.3513E-05],[93.46864,-3.4544E-05],[93.472156,-3.6091E-05],[93.475672,-3.7638E-05],[93.479188,-3.7638E-05],[93.482704,-3.7122E-05],[93.48622,-3.6607E-05],[93.489736,-3.7638E-05],[93.493252,-3.8669E-05],[93.496768,-3.6607E-05],[93.500284,-3.5576E-05],[93.5038,-3.4029E-05],[93.507316,-3.7122E-05],[93.510832,-4.1247E-05],[93.514348,-3.7638E-05],[93.517864,-3.2998E-05],[93.52138,-3.2998E-05],[93.524896,-3.3513E-05],[93.528412,-3.7122E-05],[93.531928,-4.1247E-05],[93.535444,-3.9185E-05],[93.53896,-3.7638E-05],[93.542476,-3.6091E-05],[93.545992,-2.9389E-05],[93.549508,-3.7638E-05],[93.553024,-4.3825E-05],[93.55654,-3.6091E-05],[93.560056,-3.8669E-05],[93.563572,-4.0216E-05],[93.567088,-3.6091E-05],[93.570604,-3.7122E-05],[93.57412,-3.5576E-05],[93.577636,-3.5576E-05],[93.581152,-3.8154E-05],[93.584668,-3.506E-05],[93.588184,-3.5576E-05],[93.5917,-3.8154E-05],[93.595216,-3.8669E-05],[93.598732,-4.0216E-05],[93.602248,-3.8669E-05],[93.605764,-3.5576E-05],[93.60928,-3.4544E-05],[93.612796,-3.8154E-05],[93.616312,-4.0216E-05],[93.619828,-4.0732E-05],[93.623344,-3.8669E-05],[93.62686,-3.6091E-05],[93.630376,-3.6091E-05],[93.633892,-3.506E-05],[93.637408,-3.9185E-05],[93.640924,-4.1763E-05]]}
-{"quant":[93.9083,1.128],"mems":[[93.809692,-3.1451E-05],[93.813208,-3.0935E-05],[93.816724,-3.1967E-05],[93.82024,-3.506E-05],[93.823756,-4.0216E-05],[93.827272,-3.5576E-05],[93.830788,-3.2998E-05],[93.834304,-3.6607E-05],[93.83782,-4.2278E-05],[93.841336,-4.1247E-05],[93.844852,-3.6091E-05],[93.848368,-3.6607E-05],[93.851884,-3.6091E-05],[93.8554,-3.7122E-05],[93.858916,-3.97E-05],[93.862432,-4.0216E-05],[93.865948,-3.6091E-05],[93.869464,-3.6607E-05],[93.87298,-4.0732E-05],[93.876496,-4.0216E-05],[93.880012,-3.8154E-05],[93.883528,-3.4544E-05],[93.887044,-3.5576E-05],[93.89056,-3.506E-05],[93.894076,-3.2998E-05],[93.897592,-3.506E-05],[93.901108,-3.1451E-05],[93.904624,-3.2482E-05],[93.90814,-3.3513E-05],[93.911656,-3.506E-05],[93.915172,-3.7122E-05],[93.918688,-3.7638E-05],[93.922204,-4.2278E-05],[93.92572,-4.1247E-05],[93.929236,-3.7638E-05],[93.932752,-3.7638E-05],[93.936268,-3.7638E-05],[93.939784,-3.8669E-05],[93.9433,-3.5576E-05],[93.946816,-3.2482E-05],[93.950332,-3.2482E-05],[93.953848,-3.2998E-05],[93.957364,-3.6607E-05],[93.96088,-4.0732E-05],[93.964396,-4.0216E-05],[93.967912,-4.1247E-05],[93.971428,-4.1247E-05],[93.974944,-3.8154E-05],[93.97846,-3.4544E-05],[93.981976,-3.3513E-05],[93.985492,-3.9185E-05],[93.989008,-3.7122E-05],[93.992524,-3.506E-05],[93.99604,-3.8154E-05],[93.999556,-3.506E-05],[94.003072,-3.506E-05],[94.006588,-3.6607E-05],[94.010104,-3.506E-05],[94.01362,-3.4029E-05],[94.017136,-3.2998E-05],[94.020652,-3.6091E-05],[94.024168,-3.4544E-05],[94.027684,-3.506E-05],[94.0312,-3.8154E-05],[94.034716,-3.506E-05],[94.038232,-3.6091E-05],[94.041748,-3.7638E-05],[94.045264,-3.7638E-05],[94.04878,-3.8154E-05],[94.052296,-3.8154E-05],[94.055812,-3.5576E-05],[94.059328,-3.4029E-05],[94.062844,-3.8669E-05],[94.06636,-3.7122E-05],[94.069876,-3.5576E-05],[94.073392,-3.3513E-05],[94.076908,-3.1967E-05],[94.080424,-3.8154E-05],[94.08394,-3.6607E-05],[94.087456,-3.5576E-05],[94.090972,-4.0216E-05],[94.094488,-3.7122E-05],[94.098004,-3.2482E-05],[94.10152,-3.8154E-05],[94.105036,-3.97E-05]]}
-{"quant":[94.2426,1.1415],"mems":[[94.143712,-3.4029E-05],[94.147228,-3.7638E-05],[94.150744,-3.506E-05],[94.15426,-3.8154E-05],[94.157776,-3.6607E-05],[94.161292,-3.4544E-05],[94.164808,-3.8669E-05],[94.168324,-3.5576E-05],[94.17184,-3.6091E-05],[94.175356,-3.8669E-05],[94.178872,-3.6607E-05],[94.182388,-3.7638E-05],[94.185904,-3.9185E-05],[94.18942,-3.6091E-05],[94.192936,-3.4029E-05],[94.196452,-3.1451E-05],[94.199968,-3.4544E-05],[94.203484,-4.1247E-05],[94.207,-3.9185E-05],[94.210516,-3.5576E-05],[94.214032,-3.506E-05],[94.217548,-3.6607E-05],[94.221064,-3.2998E-05],[94.22458,-3.2998E-05],[94.228096,-3.7638E-05],[94.231612,-3.4544E-05],[94.235128,-3.2482E-05],[94.238644,-3.5576E-05],[94.24216,-3.97E-05],[94.245676,-3.6607E-05],[94.249192,-3.7638E-05],[94.252708,-3.97E-05],[94.256224,-3.2482E-05],[94.25974,-3.2482E-05],[94.263256,-2.9389E-05],[94.266772,-3.6091E-05],[94.270288,-4.2794E-05],[94.273804,-3.7122E-05],[94.27732,-3.8669E-05],[94.280836,-3.7122E-05],[94.284352,-4.0732E-05],[94.287868,-3.9185E-05],[94.291384,-3.3513E-05],[94.2949,-3.6091E-05],[94.298416,-3.2482E-05],[94.301932,-3.4029E-05],[94.305448,-3.8669E-05],[94.308964,-3.5576E-05],[94.31248,-3.4029E-05],[94.315996,-3.9185E-05],[94.319512,-3.8154E-05],[94.323028,-3.0935E-05],[94.326544,-3.5576E-05],[94.33006,-3.7638E-05],[94.333576,-3.5576E-05],[94.337092,-3.4029E-05],[94.340608,-3.5576E-05],[94.344124,-3.9185E-05],[94.34764,-3.6091E-05],[94.351156,-3.6607E-05],[94.354672,-3.4029E-05],[94.358188,-3.042E-05],[94.361704,-3.4544E-05],[94.36522,-3.5576E-05],[94.368736,-3.6607E-05],[94.372252,-3.6091E-05],[94.375768,-3.6091E-05],[94.379284,-3.4029E-05],[94.3828,-3.2998E-05],[94.386316,-3.97E-05],[94.389832,-3.97E-05],[94.393348,-3.6091E-05],[94.396864,-4.1763E-05],[94.40038,-4.3825E-05],[94.403896,-3.6607E-05],[94.407412,-3.506E-05],[94.410928,-3.7638E-05],[94.414444,-3.7638E-05],[94.41796,-3.5576E-05],[94.421476,-3.4029E-05],[94.424992,-3.2998E-05],[94.428508,-3.042E-05],[94.432024,-3.506E-05],[94.43554,-3.6091E-05],[94.439056,-3.4544E-05],[94.442572,-3.8669E-05]]}
-{"quant":[94.5884,1.1529],"mems":[[94.491796,-3.5576E-05],[94.495312,-3.5576E-05],[94.498828,-3.4029E-05],[94.502344,-3.7638E-05],[94.50586,-3.506E-05],[94.509376,-3.4544E-05],[94.512892,-3.9185E-05],[94.516408,-3.506E-05],[94.519924,-3.2482E-05],[94.52344,-3.506E-05],[94.526956,-3.6091E-05],[94.530472,-3.7122E-05],[94.533988,-3.8154E-05],[94.537504,-3.9185E-05],[94.54102,-3.6091E-05],[94.544536,-3.9185E-05],[94.548052,-3.9185E-05],[94.551568,-3.7638E-05],[94.555084,-4.3309E-05],[94.5586,-4.1763E-05],[94.562116,-3.8669E-05],[94.565632,-4.0216E-05],[94.569148,-3.97E-05],[94.572664,-3.6091E-05],[94.57618,-3.7638E-05],[94.579696,-3.8669E-05],[94.583212,-3.5576E-05],[94.586728,-3.4544E-05],[94.590244,-3.042E-05],[94.59376,-3.2482E-05],[94.597276,-3.5576E-05],[94.600792,-3.4029E-05],[94.604308,-3.6607E-05],[94.607824,-3.6091E-05],[94.61134,-4.0732E-05],[94.614856,-3.7638E-05],[94.618372,-3.506E-05],[94.621888,-3.8154E-05],[94.625404,-2.8873E-05],[94.62892,-3.2998E-05],[94.632436,-3.6607E-05],[94.635952,-3.8669E-05],[94.639468,-4.3309E-05],[94.642984,-3.5576E-05],[94.6465,-3.3513E-05],[94.650016,-3.7638E-05],[94.653532,-4.0732E-05],[94.657048,-3.4029E-05],[94.660564,-3.0935E-05],[94.66408,-3.6091E-05],[94.667596,-3.4029E-05],[94.671112,-3.5576E-05],[94.674628,-3.4544E-05],[94.678144,-3.2998E-05],[94.68166,-3.8154E-05],[94.685176,-3.97E-05],[94.688692,-3.4029E-05],[94.692208,-3.5576E-05],[94.695724,-3.9185E-05],[94.69924,-3.4544E-05],[94.702756,-3.8669E-05],[94.706272,-3.9185E-05],[94.709788,-3.506E-05],[94.713304,-3.7638E-05],[94.71682,-3.6091E-05],[94.720336,-3.8154E-05],[94.723852,-3.9185E-05],[94.727368,-3.3513E-05],[94.730884,-3.2482E-05],[94.7344,-3.506E-05],[94.737916,-3.8154E-05],[94.741432,-3.7638E-05],[94.744948,-3.4029E-05],[94.748464,-3.4544E-05],[94.75198,-3.8154E-05],[94.755496,-3.8669E-05],[94.759012,-3.7122E-05],[94.762528,-3.4029E-05],[94.766044,-3.2482E-05],[94.76956,-3.7122E-05],[94.773076,-3.7122E-05],[94.776592,-3.97E-05],[94.780108,-4.0732E-05],[94.783624,-3.7638E-05],[94.78714,-3.7122E-05]]}
-{"quant":[94.9346,1.1509],"mems":[[94.836364,-3.7122E-05],[94.83988,-3.3513E-05],[94.843396,-3.6607E-05],[94.846912,-3.6091E-05],[94.850428,-3.7122E-05],[94.853944,-3.8669E-05],[94.85746,-3.7122E-05],[94.860976,-4.0216E-05],[94.864492,-3.7122E-05],[94.868008,-3.5576E-05],[94.871524,-3.7122E-05],[94.87504,-3.5576E-05],[94.878556,-3.6607E-05],[94.882072,-3.97E-05],[94.885588,-4.0216E-05],[94.889104,-3.4544E-05],[94.89262,-3.4029E-05],[94.896136,-4.2278E-05],[94.899652,-4.4856E-05],[94.903168,-3.9185E-05],[94.906684,-3.6607E-05],[94.9102,-3.4544E-05],[94.913716,-3.6607E-05],[94.917232,-3.8154E-05],[94.920748,-3.4544E-05],[94.924264,-3.506E-05],[94.92778,-3.9185E-05],[94.931296,-4.1247E-05],[94.934812,-3.7638E-05],[94.938328,-3.7122E-05],[94.941844,-4.0216E-05],[94.94536,-3.9185E-05],[94.948876,-3.7638E-05],[94.952392,-3.5576E-05],[94.955908,-3.042E-05],[94.959424,-3.1451E-05],[94.96294,-3.506E-05],[94.966456,-3.4029E-05],[94.969972,-3.506E-05],[94.973488,-3.8154E-05],[94.977004,-4.0732E-05],[94.98052,-3.9185E-05],[94.984036,-3.7638E-05],[94.987552,-3.8154E-05],[94.991068,-4.0216E-05],[94.994584,-3.6607E-05],[94.9981,-3.1967E-05],[95.001616,-3.9185E-05],[95.005132,-3.8154E-05],[95.008648,-3.3513E-05],[95.012164,-3.4029E-05],[95.01568,-3.5576E-05],[95.019196,-3.7638E-05],[95.022712,-3.2482E-05],[95.026228,-3.4544E-05],[95.029744,-3.7638E-05],[95.03326,-3.506E-05],[95.036776,-3.9185E-05],[95.040292,-3.97E-05],[95.043808,-3.6607E-05],[95.047324,-4.0216E-05],[95.05084,-4.1763E-05],[95.054356,-3.5576E-05],[95.057872,-3.7638E-05],[95.061388,-3.9185E-05],[95.064904,-3.4029E-05],[95.06842,-3.5576E-05],[95.071936,-3.8154E-05],[95.075452,-3.506E-05],[95.078968,-3.0935E-05],[95.082484,-3.2998E-05],[95.086,-3.6607E-05],[95.089516,-3.6607E-05],[95.093032,-3.2998E-05],[95.096548,-3.1967E-05],[95.100064,-3.5576E-05],[95.10358,-3.3513E-05],[95.107096,-3.6091E-05],[95.110612,-3.8154E-05],[95.114128,-3.1967E-05],[95.117644,-3.4029E-05],[95.12116,-3.6607E-05],[95.124676,-3.6607E-05],[95.128192,-3.8669E-05],[95.131708,-3.6607E-05]]}
-{"quant":[95.285,1.1507],"mems":[[95.187964,-3.97E-05],[95.19148,-3.7638E-05],[95.194996,-3.506E-05],[95.198512,-3.6607E-05],[95.202028,-3.8669E-05],[95.205544,-4.0216E-05],[95.20906,-4.0216E-05],[95.212576,-4.0216E-05],[95.216092,-3.6091E-05],[95.219608,-3.5576E-05],[95.223124,-3.5576E-05],[95.22664,-3.1967E-05],[95.230156,-3.7122E-05],[95.233672,-3.6091E-05],[95.237188,-3.2482E-05],[95.240704,-3.1967E-05],[95.24422,-3.4544E-05],[95.247736,-4.1763E-05],[95.251252,-3.8154E-05],[95.254768,-3.506E-05],[95.258284,-3.5576E-05],[95.2618,-3.8669E-05],[95.265316,-3.97E-05],[95.268832,-3.97E-05],[95.272348,-4.5372E-05],[95.275864,-4.1763E-05],[95.27938,-4.0216E-05],[95.282896,-4.0216E-05],[95.286412,-3.8154E-05],[95.289928,-4.0216E-05],[95.293444,-3.4029E-05],[95.29696,-3.2482E-05],[95.300476,-3.6607E-05],[95.303992,-3.7122E-05],[95.307508,-3.97E-05],[95.311024,-3.8154E-05],[95.31454,-3.6607E-05],[95.318056,-3.2482E-05],[95.321572,-2.9904E-05],[95.325088,-3.5576E-05],[95.328604,-3.97E-05],[95.33212,-3.8154E-05],[95.335636,-3.5576E-05],[95.339152,-3.8669E-05],[95.342668,-3.7122E-05],[95.346184,-3.6607E-05],[95.3497,-3.8154E-05],[95.353216,-3.6607E-05],[95.356732,-3.6607E-05],[95.360248,-3.3513E-05],[95.363764,-3.6607E-05],[95.36728,-4.1247E-05],[95.370796,-3.97E-05],[95.374312,-3.7638E-05],[95.377828,-3.506E-05],[95.381344,-3.6091E-05],[95.38486,-3.4544E-05],[95.388376,-3.6607E-05],[95.391892,-4.1247E-05],[95.395408,-3.8154E-05],[95.398924,-3.7638E-05],[95.40244,-3.5576E-05],[95.405956,-3.3513E-05],[95.409472,-4.1763E-05],[95.412988,-4.1763E-05],[95.416504,-4.0216E-05],[95.42002,-3.7638E-05],[95.423536,-3.2998E-05],[95.427052,-3.6607E-05],[95.430568,-3.506E-05],[95.434084,-3.6607E-05],[95.4376,-3.5576E-05],[95.441116,-2.8357E-05],[95.444632,-3.2998E-05],[95.448148,-3.6607E-05],[95.451664,-3.5576E-05],[95.45518,-3.7122E-05],[95.458696,-3.5576E-05],[95.462212,-3.4029E-05],[95.465728,-3.5576E-05],[95.469244,-3.9185E-05],[95.47276,-4.1247E-05],[95.476276,-3.7122E-05],[95.479792,-3.4029E-05],[95.483308,-3.4029E-05]]}
-{"quant":[95.6227,1.1657],"mems":[[95.5255,-3.7638E-05],[95.529016,-3.8154E-05],[95.532532,-3.8154E-05],[95.536048,-4.0216E-05],[95.539564,-4.0216E-05],[95.54308,-3.506E-05],[95.546596,-3.6607E-05],[95.550112,-4.1763E-05],[95.553628,-3.7638E-05],[95.557144,-3.2482E-05],[95.56066,-3.8669E-05],[95.564176,-3.6091E-05],[95.567692,-3.4029E-05],[95.571208,-3.8669E-05],[95.574724,-3.4544E-05],[95.57824,-3.506E-05],[95.581756,-3.7638E-05],[95.585272,-3.4029E-05],[95.588788,-3.506E-05],[95.592304,-3.9185E-05],[95.59582,-3.7122E-05],[95.599336,-3.506E-05],[95.602852,-3.4029E-05],[95.606368,-3.4544E-05],[95.609884,-3.8154E-05],[95.6134,-4.1763E-05],[95.616916,-3.97E-05],[95.620432,-3.6091E-05],[95.623948,-3.5576E-05],[95.627464,-3.4029E-05],[95.63098,-3.506E-05],[95.634496,-3.7638E-05],[95.638012,-3.6607E-05],[95.641528,-3.4544E-05],[95.645044,-3.506E-05],[95.64856,-3.506E-05],[95.652076,-3.3513E-05],[95.655592,-3.6091E-05],[95.659108,-3.9185E-05],[95.662624,-4.1763E-05],[95.66614,-3.9185E-05],[95.669656,-3.8669E-05],[95.673172,-4.3309E-05],[95.676688,-3.8154E-05],[95.680204,-3.7638E-05],[95.68372,-3.6091E-05],[95.687236,-3.1967E-05],[95.690752,-3.506E-05],[95.694268,-3.7122E-05],[95.697784,-3.8669E-05],[95.7013,-3.7638E-05],[95.704816,-3.506E-05],[95.708332,-3.0935E-05],[95.711848,-3.1451E-05],[95.715364,-3.7638E-05],[95.71888,-3.5576E-05],[95.722396,-3.6091E-05],[95.725912,-3.4029E-05],[95.729428,-3.3513E-05],[95.732944,-3.7122E-05],[95.73646,-3.6091E-05],[95.739976,-3.6091E-05],[95.743492,-3.506E-05],[95.747008,-3.6607E-05],[95.750524,-3.4544E-05],[95.75404,-3.5576E-05],[95.757556,-3.8154E-05],[95.761072,-3.7122E-05],[95.764588,-3.7638E-05],[95.768104,-3.2998E-05],[95.77162,-3.8669E-05],[95.775136,-4.1763E-05],[95.778652,-3.5576E-05],[95.782168,-3.7638E-05],[95.785684,-3.8154E-05],[95.7892,-3.6607E-05],[95.792716,-3.5576E-05],[95.796232,-3.2482E-05],[95.799748,-3.6091E-05],[95.803264,-4.1763E-05],[95.80678,-3.97E-05],[95.810296,-3.3513E-05],[95.813812,-3.2998E-05],[95.817328,-3.6607E-05],[95.820844,-3.5576E-05]]}
-{"quant":[95.9715,1.1808],"mems":[[95.873584,-3.7638E-05],[95.8771,-3.7638E-05],[95.880616,-3.7122E-05],[95.884132,-4.0732E-05],[95.887648,-4.0216E-05],[95.891164,-3.7122E-05],[95.89468,-3.4029E-05],[95.898196,-3.6091E-05],[95.901712,-4.2794E-05],[95.905228,-4.0732E-05],[95.908744,-3.8154E-05],[95.91226,-3.506E-05],[95.915776,-3.6091E-05],[95.919292,-3.7638E-05],[95.922808,-3.3513E-05],[95.926324,-3.4544E-05],[95.92984,-3.506E-05],[95.933356,-3.3513E-05],[95.936872,-3.506E-05],[95.940388,-3.7122E-05],[95.943904,-3.5576E-05],[95.94742,-3.6091E-05],[95.950936,-3.6607E-05],[95.954452,-3.7638E-05],[95.957968,-3.9185E-05],[95.961484,-3.7122E-05],[95.965,-3.7638E-05],[95.968448,-3.6607E-05],[95.971896,-3.7122E-05],[95.975344,-3.8669E-05],[95.978792,-3.7122E-05],[95.98224,-3.97E-05],[95.985688,-4.1763E-05],[95.989136,-3.8154E-05],[95.992584,-3.4544E-05],[95.996032,-3.2482E-05],[95.99948,-3.8154E-05],[96.002928,-4.0216E-05],[96.006376,-3.4544E-05],[96.009824,-3.4029E-05],[96.013272,-3.4544E-05],[96.01672,-3.9185E-05],[96.020168,-3.6091E-05],[96.023616,-3.4029E-05],[96.027064,-3.97E-05],[96.030512,-3.5576E-05],[96.03396,-3.6091E-05],[96.037408,-3.6091E-05],[96.040856,-3.4544E-05],[96.044304,-3.7638E-05],[96.047752,-3.5576E-05],[96.0512,-3.042E-05],[96.054648,-3.1967E-05],[96.058096,-3.8154E-05],[96.061544,-3.7122E-05],[96.064992,-3.4544E-05],[96.06844,-3.6091E-05],[96.071888,-3.5576E-05],[96.075336,-3.5576E-05],[96.078784,-3.97E-05],[96.082232,-4.2278E-05],[96.08568,-3.6091E-05],[96.089128,-3.6091E-05],[96.092576,-3.5576E-05],[96.096024,-3.2482E-05],[96.099472,-3.6091E-05],[96.10292,-3.4544E-05],[96.106368,-3.5576E-05],[96.109816,-3.6091E-05],[96.113264,-3.1451E-05],[96.116712,-3.1451E-05],[96.12016,-3.7638E-05],[96.123608,-4.1247E-05],[96.127056,-3.6607E-05],[96.130504,-3.9185E-05],[96.133952,-3.7122E-05],[96.1374,-3.1451E-05],[96.140848,-3.6607E-05],[96.144296,-3.8669E-05],[96.147744,-3.6091E-05],[96.151192,-3.506E-05],[96.15464,-3.5576E-05],[96.158088,-4.1247E-05],[96.161536,-4.1763E-05],[96.164984,-3.6091E-05],[96.168432,-3.97E-05],[96.17188,-4.0732E-05]]}
-{"quant":[96.3506,1.1909],"mems":[[96.251184,-3.4029E-05],[96.254632,-3.1451E-05],[96.25808,-3.506E-05],[96.261528,-3.7638E-05],[96.264976,-3.4544E-05],[96.268424,-3.2482E-05],[96.271872,-3.2998E-05],[96.27532,-3.3513E-05],[96.278768,-3.5576E-05],[96.282216,-3.7638E-05],[96.285664,-4.0732E-05],[96.289112,-3.2998E-05],[96.29256,-3.1967E-05],[96.296008,-3.8669E-05],[96.299456,-3.6091E-05],[96.302904,-3.9185E-05],[96.306352,-3.5576E-05],[96.3098,-3.2998E-05],[96.313248,-3.7638E-05],[96.316696,-3.4544E-05],[96.320144,-4.0732E-05],[96.323592,-4.2278E-05],[96.32704,-3.9185E-05],[96.330488,-3.8669E-05],[96.333936,-3.4544E-05],[96.337384,-3.4544E-05],[96.340832,-3.3513E-05],[96.34428,-3.8154E-05],[96.347728,-3.5576E-05],[96.351176,-3.0935E-05],[96.354624,-3.506E-05],[96.358072,-3.7638E-05],[96.36152,-4.0216E-05],[96.364968,-3.7122E-05],[96.368416,-3.4544E-05],[96.371864,-3.4544E-05],[96.375312,-3.9185E-05],[96.37876,-4.0216E-05],[96.382208,-3.6607E-05],[96.385656,-3.7638E-05],[96.389104,-3.6607E-05],[96.392552,-3.7122E-05],[96.396,-3.8154E-05],[96.399448,-3.97E-05],[96.402896,-3.4029E-05],[96.406344,-3.0935E-05],[96.409792,-3.7122E-05],[96.41324,-3.6607E-05],[96.416688,-3.7122E-05],[96.420136,-4.0216E-05],[96.423584,-3.97E-05],[96.427032,-3.8154E-05],[96.43048,-3.2998E-05],[96.433928,-3.1967E-05],[96.437376,-3.7122E-05],[96.440824,-4.1247E-05],[96.444272,-4.1763E-05],[96.44772,-3.7638E-05],[96.451168,-3.7122E-05],[96.454616,-3.7638E-05],[96.458064,-3.7638E-05],[96.461512,-4.0732E-05],[96.46496,-3.7122E-05],[96.468408,-3.6607E-05],[96.471856,-3.8669E-05],[96.475304,-3.506E-05],[96.478752,-3.7638E-05],[96.4822,-3.7638E-05],[96.485648,-3.6091E-05],[96.489096,-3.5576E-05],[96.492544,-3.2998E-05],[96.495992,-3.2998E-05],[96.49944,-3.4029E-05],[96.502888,-3.7638E-05],[96.506336,-3.7122E-05],[96.509784,-4.0732E-05],[96.513232,-3.9185E-05],[96.51668,-3.6607E-05],[96.520128,-3.8669E-05],[96.523576,-3.1967E-05],[96.527024,-3.6607E-05],[96.530472,-3.6091E-05],[96.53392,-3.1451E-05],[96.537368,-3.7638E-05],[96.540816,-4.0732E-05],[96.544264,-3.9185E-05],[96.547712,-3.5576E-05]]}
-{"quant":[96.6842,1.2009],"mems":[[96.58564,-3.7638E-05],[96.589088,-3.6607E-05],[96.592536,-3.5576E-05],[96.595984,-3.4544E-05],[96.599432,-3.4544E-05],[96.60288,-3.8154E-05],[96.606328,-3.8669E-05],[96.609776,-3.2482E-05],[96.613224,-3.506E-05],[96.616672,-3.8154E-05],[96.62012,-3.6091E-05],[96.623568,-3.97E-05],[96.627016,-3.3513E-05],[96.630464,-3.1967E-05],[96.633912,-3.7122E-05],[96.63736,-3.8669E-05],[96.640808,-3.9185E-05],[96.644256,-3.4544E-05],[96.647704,-3.2998E-05],[96.651152,-3.4029E-05],[96.6546,-3.8154E-05],[96.658048,-3.8154E-05],[96.661496,-3.6091E-05],[96.664944,-3.8154E-05],[96.668392,-3.506E-05],[96.67184,-3.506E-05],[96.675288,-3.7122E-05],[96.678736,-3.8669E-05],[96.682184,-3.7122E-05],[96.685632,-3.4029E-05],[96.68908,-3.506E-05],[96.692528,-3.2998E-05],[96.695976,-3.0935E-05],[96.699424,-3.3513E-05],[96.702872,-4.0216E-05],[96.70632,-4.0732E-05],[96.709768,-3.506E-05],[96.713216,-3.3513E-05],[96.716664,-3.2482E-05],[96.720112,-3.3513E-05],[96.72356,-3.4544E-05],[96.727008,-3.7638E-05],[96.730456,-3.8154E-05],[96.733904,-3.6091E-05],[96.737352,-3.8154E-05],[96.7408,-4.0732E-05],[96.744248,-4.0732E-05],[96.747696,-3.97E-05],[96.751144,-3.9185E-05],[96.754592,-3.7638E-05],[96.75804,-4.1247E-05],[96.761488,-3.5576E-05],[96.764936,-3.1967E-05],[96.768384,-3.8669E-05],[96.771832,-3.7122E-05],[96.77528,-3.3513E-05],[96.778728,-3.4544E-05],[96.782176,-3.8669E-05],[96.785624,-3.6607E-05],[96.789072,-3.8669E-05],[96.79252,-3.506E-05],[96.795968,-2.9389E-05],[96.799416,-3.8154E-05],[96.802864,-3.7122E-05],[96.806312,-3.7638E-05],[96.80976,-3.6091E-05],[96.813208,-2.9904E-05],[96.816656,-3.6607E-05],[96.820104,-3.4544E-05],[96.823552,-3.6091E-05],[96.827,-3.7638E-05],[96.830448,-2.8873E-05],[96.833896,-2.9389E-05],[96.837344,-3.5576E-05],[96.840792,-3.4029E-05],[96.84424,-3.2998E-05],[96.847688,-3.6091E-05],[96.851136,-3.6091E-05],[96.854584,-3.6607E-05],[96.858032,-3.4544E-05],[96.86148,-3.4029E-05],[96.864928,-3.7638E-05],[96.868376,-3.2482E-05],[96.871824,-3.3513E-05],[96.875272,-3.9185E-05],[96.87872,-3.6091E-05],[96.882168,-3.9185E-05]]}
-{"quant":[97.0231,1.2048],"mems":[[96.923544,-3.7122E-05],[96.926992,-4.1247E-05],[96.93044,-4.0732E-05],[96.933888,-3.6607E-05],[96.937336,-3.5576E-05],[96.940784,-4.1247E-05],[96.944232,-3.8669E-05],[96.94768,-3.8154E-05],[96.951128,-3.7122E-05],[96.954576,-3.2998E-05],[96.958024,-3.97E-05],[96.961472,-4.0216E-05],[96.96492,-4.1247E-05],[96.968368,-3.7638E-05],[96.971816,-3.2482E-05],[96.975264,-3.7122E-05],[96.978712,-3.506E-05],[96.98216,-3.6091E-05],[96.985608,-3.9185E-05],[96.989056,-3.8154E-05],[96.992504,-3.3513E-05],[96.995952,-3.2998E-05],[96.9994,-3.6607E-05],[97.002848,-3.8669E-05],[97.006296,-3.8154E-05],[97.009744,-3.5576E-05],[97.013192,-3.506E-05],[97.01664,-3.6607E-05],[97.020088,-3.5576E-05],[97.023536,-3.0935E-05],[97.026984,-3.5576E-05],[97.030432,-3.9185E-05],[97.03388,-3.7122E-05],[97.037328,-4.0216E-05],[97.040776,-3.9185E-05],[97.044224,-3.8154E-05],[97.047672,-3.8669E-05],[97.05112,-4.0216E-05],[97.054568,-3.9185E-05],[97.058016,-3.4029E-05],[97.061464,-3.4544E-05],[97.064912,-3.4029E-05],[97.06836,-3.6091E-05],[97.071808,-3.6607E-05],[97.075256,-3.5576E-05],[97.078704,-3.8154E-05],[97.082152,-3.7638E-05],[97.0856,-3.8154E-05],[97.089048,-3.5576E-05],[97.092496,-3.6091E-05],[97.095944,-3.6607E-05],[97.099392,-3.506E-05],[97.10284,-3.6607E-05],[97.106288,-3.6091E-05],[97.109736,-3.7638E-05],[97.113184,-3.6091E-05],[97.116632,-3.6607E-05],[97.12008,-3.9185E-05],[97.123528,-3.7122E-05],[97.126976,-3.9185E-05],[97.130424,-3.9185E-05],[97.133872,-3.6091E-05],[97.13732,-3.2998E-05],[97.140768,-3.2998E-05],[97.144216,-3.2998E-05],[97.147664,-3.1451E-05],[97.151112,-4.0216E-05],[97.15456,-3.9185E-05],[97.158008,-3.3513E-05],[97.161456,-4.1763E-05],[97.164904,-3.9185E-05],[97.168352,-3.8154E-05],[97.1718,-4.0732E-05],[97.175248,-3.6607E-05],[97.178696,-3.6607E-05],[97.182144,-3.6607E-05],[97.185592,-3.8154E-05],[97.18904,-3.9185E-05],[97.192488,-3.6091E-05],[97.195936,-2.9389E-05],[97.199384,-3.1451E-05],[97.202832,-3.7638E-05],[97.20628,-3.6607E-05],[97.209728,-3.9185E-05],[97.213176,-3.506E-05],[97.216624,-3.5576E-05],[97.220072,-4.0216E-05]]}
-{"quant":[97.3835,1.1987],"mems":[[97.285584,-3.4544E-05],[97.289032,-3.4029E-05],[97.29248,-3.6607E-05],[97.295928,-3.8154E-05],[97.299376,-3.9185E-05],[97.302824,-3.4029E-05],[97.306272,-3.6091E-05],[97.30972,-3.5576E-05],[97.313168,-2.8357E-05],[97.316616,-3.2482E-05],[97.320064,-3.7638E-05],[97.323512,-3.8669E-05],[97.32696,-4.2278E-05],[97.330408,-3.7122E-05],[97.333856,-3.6091E-05],[97.337304,-4.2278E-05],[97.340752,-3.9185E-05],[97.3442,-3.4544E-05],[97.347648,-3.506E-05],[97.351096,-3.4029E-05],[97.354544,-3.5576E-05],[97.357992,-3.6607E-05],[97.36144,-3.4544E-05],[97.364888,-3.8154E-05],[97.368336,-3.9185E-05],[97.371784,-3.97E-05],[97.375232,-4.0732E-05],[97.37868,-3.6607E-05],[97.382128,-3.5576E-05],[97.385576,-3.7122E-05],[97.389024,-3.8669E-05],[97.392472,-3.8154E-05],[97.39592,-3.0935E-05],[97.399368,-3.2998E-05],[97.402816,-3.8154E-05],[97.406264,-3.6607E-05],[97.409712,-3.8154E-05],[97.41316,-3.2998E-05],[97.416608,-3.4029E-05],[97.420056,-3.8154E-05],[97.423504,-3.9185E-05],[97.426952,-4.1247E-05],[97.4304,-3.6091E-05],[97.433848,-3.7122E-05],[97.437296,-3.4544E-05],[97.440744,-3.7122E-05],[97.444192,-4.2794E-05],[97.44764,-3.6091E-05],[97.451088,-3.7122E-05],[97.454536,-3.506E-05],[97.457984,-3.5576E-05],[97.461432,-3.6091E-05],[97.46488,-3.4544E-05],[97.468328,-4.0216E-05],[97.471776,-3.7122E-05],[97.475224,-3.1451E-05],[97.478672,-3.7122E-05],[97.48212,-4.1763E-05],[97.485568,-3.8154E-05],[97.489016,-3.7638E-05],[97.492464,-3.8669E-05],[97.495912,-3.7122E-05],[97.49936,-3.506E-05],[97.502808,-3.6091E-05],[97.506256,-3.5576E-05],[97.509704,-3.506E-05],[97.513152,-3.3513E-05],[97.5166,-3.2998E-05],[97.520048,-3.8669E-05],[97.523496,-3.7638E-05],[97.526944,-3.6607E-05],[97.530392,-3.9185E-05],[97.53384,-3.8669E-05],[97.537288,-3.4544E-05],[97.540736,-3.2998E-05],[97.544184,-3.9185E-05],[97.547632,-3.7638E-05],[97.55108,-3.8669E-05],[97.554528,-3.97E-05],[97.557976,-3.5576E-05],[97.561424,-3.4544E-05],[97.564872,-3.1967E-05],[97.56832,-3.9185E-05],[97.571768,-3.97E-05],[97.575216,-3.5576E-05],[97.578664,-3.97E-05],[97.582112,-3.8154E-05]]}
-{"quant":[97.7752,1.198],"mems":[[97.675208,-3.8154E-05],[97.678656,-3.7638E-05],[97.682104,-3.6091E-05],[97.685552,-3.97E-05],[97.689,-3.7638E-05],[97.692448,-3.6607E-05],[97.695896,-3.6091E-05],[97.699344,-3.6091E-05],[97.702792,-4.2794E-05],[97.70624,-3.7122E-05],[97.709688,-3.7122E-05],[97.713136,-3.8669E-05],[97.716584,-3.4029E-05],[97.720032,-3.8154E-05],[97.72348,-3.2998E-05],[97.726928,-3.506E-05],[97.730376,-3.6607E-05],[97.733824,-3.4029E-05],[97.737272,-4.0216E-05],[97.74072,-3.7122E-05],[97.744168,-4.0732E-05],[97.747616,-3.9185E-05],[97.751064,-3.7122E-05],[97.754512,-3.97E-05],[97.75796,-3.7122E-05],[97.761408,-4.2278E-05],[97.764856,-4.1763E-05],[97.768304,-3.7122E-05],[97.771752,-3.506E-05],[97.7752,-3.5576E-05],[97.778648,-3.6607E-05],[97.782096,-3.3513E-05],[97.785544,-3.4544E-05],[97.788992,-3.8154E-05],[97.79244,-3.506E-05],[97.795888,-3.5576E-05],[97.799336,-3.8154E-05],[97.802784,-3.3513E-05],[97.806232,-3.8669E-05],[97.80968,-4.0216E-05],[97.813128,-3.6091E-05],[97.816576,-3.4029E-05],[97.820024,-3.4544E-05],[97.823472,-3.7638E-05],[97.82692,-3.7638E-05],[97.830368,-4.0732E-05],[97.833816,-3.8154E-05],[97.837264,-3.5576E-05],[97.840712,-3.7122E-05],[97.84416,-3.4544E-05],[97.847608,-3.2482E-05],[97.851056,-3.1967E-05],[97.854504,-3.4029E-05],[97.857952,-3.0935E-05],[97.8614,-3.3513E-05],[97.864848,-3.7122E-05],[97.868296,-3.1967E-05],[97.871744,-2.9904E-05],[97.875192,-3.1451E-05],[97.87864,-3.3513E-05],[97.882088,-3.6091E-05],[97.885536,-3.8669E-05],[97.888984,-3.7638E-05],[97.892432,-3.6607E-05],[97.89588,-3.9185E-05],[97.899328,-3.8154E-05],[97.902776,-3.7122E-05],[97.906224,-3.4544E-05],[97.909672,-3.4029E-05],[97.91312,-3.7122E-05],[97.916568,-3.4029E-05],[97.920016,-3.6091E-05],[97.923464,-3.6607E-05],[97.926912,-3.2482E-05],[97.93036,-3.8154E-05],[97.933808,-3.7122E-05],[97.937256,-4.0732E-05],[97.940704,-4.5887E-05],[97.944152,-3.9185E-05],[97.9476,-3.6607E-05],[97.951048,-3.4029E-05],[97.954496,-3.5576E-05],[97.957944,-3.6607E-05],[97.961392,-3.8669E-05],[97.96484,-4.1763E-05],[97.968288,-3.6091E-05],[97.971736,-3.6607E-05],[97.975184,-3.6091E-05]]}
-{"quant":[98.1507,1.2035],"mems":[[98.05104,-3.4544E-05],[98.054488,-3.3513E-05],[98.057936,-3.2998E-05],[98.061384,-3.6607E-05],[98.064832,-3.9185E-05],[98.06828,-3.8154E-05],[98.071728,-3.6091E-05],[98.075176,-3.4029E-05],[98.078624,-3.5576E-05],[98.082072,-3.97E-05],[98.08552,-3.6091E-05],[98.088968,-3.6091E-05],[98.092416,-3.7638E-05],[98.095864,-3.506E-05],[98.099312,-3.8669E-05],[98.10276,-3.8669E-05],[98.106208,-3.5576E-05],[98.109656,-3.9185E-05],[98.113104,-3.506E-05],[98.116552,-3.8154E-05],[98.12,-4.0732E-05],[98.123448,-3.1451E-05],[98.126896,-3.2482E-05],[98.130344,-3.3513E-05],[98.133792,-3.4029E-05],[98.13724,-3.6607E-05],[98.140688,-3.4544E-05],[98.144136,-3.5576E-05],[98.147584,-3.4544E-05],[98.151032,-3.0935E-05],[98.15448,-3.1451E-05],[98.157928,-3.4544E-05],[98.161376,-3.8669E-05],[98.164824,-3.5576E-05],[98.168272,-3.4544E-05],[98.17172,-3.6091E-05],[98.175168,-3.0935E-05],[98.178616,-3.4544E-05],[98.182064,-3.4029E-05],[98.185512,-3.1451E-05],[98.18896,-3.506E-05],[98.192408,-3.1967E-05],[98.195856,-3.1967E-05],[98.199304,-3.6091E-05],[98.202752,-3.7122E-05],[98.2062,-3.8154E-05],[98.209648,-3.6091E-05],[98.213096,-3.6607E-05],[98.216544,-4.0216E-05],[98.219992,-3.7638E-05],[98.22344,-3.8154E-05],[98.226888,-4.0732E-05],[98.230336,-3.8154E-05],[98.233784,-3.4029E-05],[98.237232,-3.6091E-05],[98.24068,-3.6607E-05],[98.244128,-3.4544E-05],[98.247576,-4.0216E-05],[98.251024,-4.0732E-05],[98.254472,-3.8669E-05],[98.25792,-3.9185E-05],[98.261368,-3.8154E-05],[98.264816,-3.6607E-05],[98.268264,-3.9185E-05],[98.271712,-3.5576E-05],[98.27516,-3.2998E-05],[98.278608,-3.7638E-05],[98.282056,-3.6091E-05],[98.285504,-3.7638E-05],[98.288952,-3.506E-05],[98.2924,-3.506E-05],[98.295848,-4.0732E-05],[98.299296,-3.8669E-05],[98.302744,-3.4544E-05],[98.306192,-3.5576E-05],[98.30964,-4.0216E-05],[98.313088,-3.4544E-05],[98.316536,-3.6607E-05],[98.319984,-3.9185E-05],[98.323432,-3.2998E-05],[98.32688,-4.0732E-05],[98.330328,-3.8669E-05],[98.333776,-3.0935E-05],[98.337224,-3.6091E-05],[98.340672,-3.8669E-05],[98.34412,-3.6607E-05],[98.347568,-3.506E-05]]}
-{"quant":[98.5369,1.1992],"mems":[[98.478592,-3.6091E-05],[98.48204,-3.7638E-05],[98.485488,-3.7638E-05],[98.488936,-3.506E-05],[98.492384,-3.8154E-05],[98.495832,-3.1967E-05],[98.49928,-3.1451E-05],[98.502728,-3.7638E-05],[98.506176,-3.8669E-05],[98.509624,-3.6091E-05],[98.513072,-3.3513E-05],[98.51652,-3.2998E-05],[98.519968,-3.3513E-05],[98.523416,-3.7638E-05],[98.526864,-3.7638E-05],[98.530312,-3.2998E-05],[98.53376,-3.4544E-05],[98.537208,-3.7638E-05],[98.540656,-3.8154E-05],[98.544104,-3.7638E-05],[98.547552,-3.506E-05],[98.551,-3.4029E-05],[98.554392,-3.6607E-05],[98.557784,-4.3309E-05],[98.561176,-4.0732E-05],[98.564568,-3.7638E-05],[98.56796,-3.8669E-05],[98.571352,-3.4544E-05],[98.574744,-3.6607E-05],[98.578136,-4.0216E-05],[98.581528,-3.506E-05],[98.58492,-3.506E-05],[98.588312,-3.4544E-05],[98.591704,-3.1967E-05],[98.595096,-3.6091E-05],[98.598488,-3.5576E-05],[98.60188,-3.2998E-05],[98.605272,-3.97E-05],[98.608664,-4.2794E-05],[98.612056,-3.4544E-05],[98.615448,-3.4544E-05],[98.61884,-4.0216E-05],[98.622232,-3.9185E-05],[98.625624,-3.5576E-05],[98.629016,-3.7122E-05],[98.632408,-3.4029E-05],[98.6358,-3.4029E-05],[98.639192,-3.5576E-05],[98.642584,-3.4029E-05],[98.645976,-3.506E-05],[98.649368,-3.1967E-05],[98.65276,-3.3513E-05],[98.656152,-3.8669E-05],[98.659544,-3.7638E-05],[98.662936,-3.4544E-05],[98.666328,-3.4544E-05],[98.66972,-3.506E-05],[98.673112,-3.3513E-05],[98.676504,-3.7122E-05],[98.679896,-4.2794E-05],[98.683288,-4.1247E-05],[98.68668,-3.6091E-05],[98.690072,-3.3513E-05],[98.693464,-3.2482E-05],[98.696856,-3.5576E-05],[98.700248,-3.2482E-05],[98.70364,-3.1967E-05],[98.707032,-4.0216E-05],[98.710424,-3.7122E-05],[98.713816,-3.1967E-05],[98.717208,-3.506E-05],[98.7206,-3.7638E-05],[98.723992,-3.8669E-05],[98.727384,-3.6091E-05],[98.730776,-3.2482E-05],[98.734168,-3.4544E-05],[98.73756,-3.7638E-05],[98.740952,-3.9185E-05],[98.744344,-3.97E-05],[98.747736,-3.6091E-05],[98.751128,-3.7638E-05],[98.75452,-3.8669E-05],[98.757912,-3.8669E-05],[98.761304,-3.8154E-05],[98.764696,-3.4029E-05],[98.768088,-3.2998E-05],[98.77148,-3.0935E-05],[98.774872,-3.3513E-05]]}
-{"quant":[98.9369,1.1846],"mems":[[98.83932,-4.2794E-05],[98.842712,-3.6091E-05],[98.846104,-3.4544E-05],[98.849496,-3.7638E-05],[98.852888,-3.6091E-05],[98.85628,-3.7638E-05],[98.859672,-3.8154E-05],[98.863064,-3.6607E-05],[98.866456,-3.4544E-05],[98.869848,-3.5576E-05],[98.87324,-3.9185E-05],[98.876632,-3.6091E-05],[98.880024,-3.8669E-05],[98.883416,-3.3513E-05],[98.886808,-3.1451E-05],[98.8902,-3.5576E-05],[98.893592,-3.4029E-05],[98.896984,-3.7638E-05],[98.900376,-3.7638E-05],[98.903768,-3.8669E-05],[98.90716,-3.6091E-05],[98.910552,-3.5576E-05],[98.913944,-4.0732E-05],[98.917336,-3.9185E-05],[98.920728,-4.1763E-05],[98.92412,-3.6607E-05],[98.927512,-3.0935E-05],[98.930904,-3.3513E-05],[98.934296,-3.5576E-05],[98.937688,-3.9185E-05],[98.94108,-3.5576E-05],[98.944472,-3.2482E-05],[98.947864,-3.7122E-05],[98.951256,-4.0732E-05],[98.954648,-3.7638E-05],[98.95804,-3.8154E-05],[98.961432,-3.9185E-05],[98.964824,-3.2998E-05],[98.968216,-2.8873E-05],[98.971608,-3.4544E-05],[98.975,-4.1763E-05],[98.978392,-3.8669E-05],[98.981784,-3.4544E-05],[98.985176,-3.4544E-05],[98.988568,-3.6607E-05],[98.99196,-3.7122E-05],[98.995352,-3.4029E-05],[98.998744,-3.4544E-05],[99.002136,-4.1247E-05],[99.005528,-4.0732E-05],[99.00892,-3.506E-05],[99.012312,-3.5576E-05],[99.015704,-3.506E-05],[99.019096,-3.3513E-05],[99.022488,-3.2482E-05],[99.02588,-3.1967E-05],[99.029272,-3.4029E-05],[99.032664,-3.506E-05],[99.036056,-3.3513E-05],[99.039448,-3.4029E-05],[99.04284,-3.506E-05],[99.046232,-3.2998E-05],[99.049624,-3.8669E-05],[99.053016,-3.9185E-05],[99.056408,-3.6091E-05],[99.0598,-3.5576E-05],[99.063192,-3.2482E-05],[99.066584,-3.0935E-05],[99.069976,-3.1967E-05],[99.073368,-3.6091E-05],[99.07676,-3.7638E-05],[99.080152,-3.6091E-05],[99.083544,-3.506E-05],[99.086936,-3.4544E-05],[99.090328,-3.7638E-05],[99.09372,-4.1247E-05],[99.097112,-4.0216E-05],[99.100504,-3.8669E-05],[99.103896,-3.97E-05],[99.107288,-3.8154E-05],[99.11068,-3.97E-05],[99.114072,-4.1247E-05],[99.117464,-3.7122E-05],[99.120856,-3.9185E-05],[99.124248,-3.9185E-05],[99.12764,-3.2998E-05],[99.131032,-3.2482E-05],[99.134424,-3.7122E-05]]}
-{"quant":[99.3063,1.166],"mems":[[99.209048,-3.1451E-05],[99.21244,-3.5576E-05],[99.215832,-3.7122E-05],[99.219224,-3.6607E-05],[99.222616,-3.8154E-05],[99.226008,-3.6607E-05],[99.2294,-3.7122E-05],[99.232792,-3.9185E-05],[99.236184,-3.8669E-05],[99.239576,-3.5576E-05],[99.242968,-3.4029E-05],[99.24636,-3.1967E-05],[99.249752,-3.2482E-05],[99.253144,-3.5576E-05],[99.256536,-4.0732E-05],[99.259928,-4.2794E-05],[99.26332,-3.6607E-05],[99.266712,-3.6091E-05],[99.270104,-3.9185E-05],[99.273496,-3.8154E-05],[99.276888,-3.3513E-05],[99.28028,-3.1967E-05],[99.283672,-3.6091E-05],[99.287064,-3.6607E-05],[99.290456,-3.8154E-05],[99.293848,-3.7122E-05],[99.29724,-3.506E-05],[99.300632,-3.5576E-05],[99.304024,-3.4544E-05],[99.307416,-3.5576E-05],[99.310808,-3.6607E-05],[99.3142,-3.7122E-05],[99.317592,-4.0216E-05],[99.320984,-3.7638E-05],[99.324376,-3.4029E-05],[99.327768,-3.7122E-05],[99.33116,-3.7638E-05],[99.334552,-3.5576E-05],[99.337944,-3.4544E-05],[99.341336,-3.5576E-05],[99.344728,-3.8669E-05],[99.34812,-3.6607E-05],[99.351512,-3.3513E-05],[99.354904,-3.6607E-05],[99.358296,-4.0732E-05],[99.361688,-3.5576E-05],[99.36508,-3.2998E-05],[99.368472,-3.8154E-05],[99.371864,-3.9185E-05],[99.375256,-3.9185E-05],[99.378648,-3.6091E-05],[99.38204,-3.6091E-05],[99.385432,-3.8154E-05],[99.388824,-3.8669E-05],[99.392216,-4.0732E-05],[99.395608,-4.0732E-05],[99.399,-4.0732E-05],[99.402392,-3.8669E-05],[99.405784,-3.6607E-05],[99.409176,-3.6091E-05],[99.412568,-3.7638E-05],[99.41596,-3.8669E-05],[99.419352,-3.7122E-05],[99.422744,-3.2482E-05],[99.426136,-3.6607E-05],[99.429528,-4.2794E-05],[99.43292,-4.1763E-05],[99.436312,-4.3309E-05],[99.439704,-3.7638E-05],[99.443096,-3.7122E-05],[99.446488,-4.3825E-05],[99.44988,-4.0732E-05],[99.453272,-3.506E-05],[99.456664,-3.5576E-05],[99.460056,-3.4029E-05],[99.463448,-3.2998E-05],[99.46684,-3.9185E-05],[99.470232,-3.7122E-05],[99.473624,-3.4544E-05],[99.477016,-3.6607E-05],[99.480408,-3.2998E-05],[99.4838,-3.4544E-05],[99.487192,-3.7122E-05],[99.490584,-3.5576E-05],[99.493976,-3.4544E-05],[99.497368,-3.506E-05],[99.50076,-3.7122E-05],[99.504152,-3.3513E-05]]}
-{"quant":[99.6833,1.1658],"mems":[[99.58556,-3.4544E-05],[99.588952,-3.7122E-05],[99.592344,-3.506E-05],[99.595736,-3.5576E-05],[99.599128,-3.7638E-05],[99.60252,-3.5576E-05],[99.605912,-3.7638E-05],[99.609304,-3.97E-05],[99.612696,-3.5576E-05],[99.616088,-3.2998E-05],[99.61948,-3.506E-05],[99.622872,-3.8669E-05],[99.626264,-3.9185E-05],[99.629656,-3.97E-05],[99.633048,-3.6091E-05],[99.63644,-3.1451E-05],[99.639832,-3.4544E-05],[99.643224,-3.7122E-05],[99.646616,-3.8669E-05],[99.650008,-3.9185E-05],[99.6534,-3.3513E-05],[99.656792,-3.4029E-05],[99.660184,-3.7638E-05],[99.663576,-3.7122E-05],[99.666968,-3.506E-05],[99.67036,-3.5576E-05],[99.673752,-4.0216E-05],[99.677144,-4.0732E-05],[99.680536,-3.7122E-05],[99.683928,-3.506E-05],[99.68732,-3.2482E-05],[99.690712,-3.6091E-05],[99.694104,-3.97E-05],[99.697496,-3.6607E-05],[99.700888,-3.5576E-05],[99.70428,-3.7122E-05],[99.707672,-3.6607E-05],[99.711064,-3.4544E-05],[99.714456,-3.506E-05],[99.717848,-3.8669E-05],[99.72124,-3.7122E-05],[99.724632,-3.7638E-05],[99.728024,-3.9185E-05],[99.731416,-3.8154E-05],[99.734808,-3.6091E-05],[99.7382,-3.4544E-05],[99.741592,-3.7638E-05],[99.744984,-3.6607E-05],[99.748376,-3.506E-05],[99.751768,-3.4544E-05],[99.75516,-3.4029E-05],[99.758552,-3.7638E-05],[99.761944,-3.8669E-05],[99.765336,-3.5576E-05],[99.768728,-3.3513E-05],[99.77212,-3.3513E-05],[99.775512,-3.7122E-05],[99.778904,-3.8154E-05],[99.782296,-3.4029E-05],[99.785688,-3.8669E-05],[99.78908,-3.8154E-05],[99.792472,-3.5576E-05],[99.795864,-3.6091E-05],[99.799256,-3.3513E-05],[99.802648,-3.97E-05],[99.80604,-4.1763E-05],[99.809432,-3.7638E-05],[99.812824,-3.6091E-05],[99.816216,-3.5576E-05],[99.819608,-3.6607E-05],[99.823,-3.7122E-05],[99.826392,-4.0732E-05],[99.829784,-4.0732E-05],[99.833176,-3.8669E-05],[99.836568,-4.1247E-05],[99.83996,-4.0732E-05],[99.843352,-4.0732E-05],[99.846744,-3.8154E-05],[99.850136,-3.042E-05],[99.853528,-3.2998E-05],[99.85692,-3.506E-05],[99.860312,-3.506E-05],[99.863704,-3.7122E-05],[99.867096,-3.7638E-05],[99.870488,-3.7638E-05],[99.87388,-3.506E-05],[99.877272,-4.0732E-05],[99.880664,-4.2278E-05]]}
-{"quant":[100.054,1.179],"mems":[[99.955288,-3.506E-05],[99.95868,-4.0216E-05],[99.962072,-4.0216E-05],[99.965464,-4.0216E-05],[99.968856,-3.97E-05],[99.972248,-3.2998E-05],[99.97564,-3.2482E-05],[99.979032,-3.3513E-05],[99.982424,-3.4544E-05],[99.985816,-3.6091E-05],[99.989208,-3.3513E-05],[99.9926,-3.4544E-05],[99.995992,-3.7638E-05],[99.999384,-3.8669E-05],[100.00278,-3.6091E-05],[100.00617,-3.7122E-05],[100.00956,-3.8669E-05],[100.01295,-3.4029E-05],[100.01634,-3.7638E-05],[100.01974,-3.8154E-05],[100.02313,-3.4544E-05],[100.02652,-4.2278E-05],[100.02991,-4.2794E-05],[100.0333,-3.7122E-05],[100.0367,-4.0216E-05],[100.04009,-3.7638E-05],[100.04348,-3.5576E-05],[100.04687,-3.9185E-05],[100.05026,-3.4029E-05],[100.05366,-3.4029E-05],[100.05705,-4.0216E-05],[100.06044,-3.9185E-05],[100.06383,-3.4544E-05],[100.06722,-3.506E-05],[100.07062,-3.7122E-05],[100.07401,-3.9185E-05],[100.0774,-3.8669E-05],[100.08079,-3.4029E-05],[100.08418,-3.506E-05],[100.08758,-3.2482E-05],[100.09097,-3.6091E-05],[100.09436,-3.8154E-05],[100.09775,-3.3513E-05],[100.10114,-3.8154E-05],[100.10454,-3.8154E-05],[100.10793,-3.3513E-05],[100.11132,-3.4029E-05],[100.11471,-4.3309E-05],[100.1181,-4.1763E-05],[100.1215,-3.7122E-05],[100.12489,-3.5576E-05],[100.12828,-3.2482E-05],[100.13167,-3.97E-05],[100.13506,-4.1763E-05],[100.13846,-3.97E-05],[100.14185,-3.7638E-05],[100.14524,-3.2998E-05],[100.14863,-3.6091E-05],[100.15202,-3.8154E-05],[100.15542,-3.7122E-05],[100.15881,-3.6607E-05],[100.1622,-3.9185E-05],[100.16559,-3.8154E-05],[100.16898,-3.2482E-05],[100.17238,-3.4029E-05],[100.17577,-3.3513E-05],[100.17916,-3.506E-05],[100.18255,-3.8154E-05],[100.18594,-3.5576E-05],[100.18934,-3.6607E-05],[100.19273,-3.7122E-05],[100.19612,-3.7638E-05],[100.19951,-3.9185E-05],[100.2029,-3.8154E-05],[100.2063,-3.6091E-05],[100.20969,-3.5576E-05],[100.21308,-3.7638E-05],[100.21647,-3.8669E-05],[100.21986,-3.8669E-05],[100.22326,-3.7638E-05],[100.22665,-3.9185E-05],[100.23004,-3.8669E-05],[100.23343,-3.3513E-05],[100.23682,-3.6091E-05],[100.24022,-4.2278E-05],[100.24361,-4.0732E-05],[100.247,-3.7638E-05],[100.25039,-3.6607E-05],[100.25378,-4.0732E-05]]}
-{"quant":[100.408,1.1741],"mems":[[100.30806,-3.042E-05],[100.31145,-3.5576E-05],[100.31484,-3.7638E-05],[100.31823,-3.8669E-05],[100.32162,-3.8154E-05],[100.32502,-3.5576E-05],[100.32841,-3.7638E-05],[100.3318,-3.7638E-05],[100.33519,-3.8669E-05],[100.33858,-3.97E-05],[100.34198,-4.1763E-05],[100.34537,-3.6607E-05],[100.34876,-3.2482E-05],[100.35215,-3.6091E-05],[100.35554,-3.4544E-05],[100.35894,-3.6607E-05],[100.36233,-3.8154E-05],[100.36572,-3.506E-05],[100.36911,-3.6091E-05],[100.3725,-3.8154E-05],[100.3759,-3.4544E-05],[100.37929,-3.6091E-05],[100.38268,-3.97E-05],[100.38607,-3.2998E-05],[100.38946,-3.7638E-05],[100.39286,-3.97E-05],[100.39625,-3.7122E-05],[100.39964,-3.97E-05],[100.40303,-3.97E-05],[100.40642,-4.0216E-05],[100.40982,-3.6091E-05],[100.41321,-4.1247E-05],[100.4166,-3.97E-05],[100.41999,-3.7122E-05],[100.42338,-3.97E-05],[100.42678,-2.9904E-05],[100.43017,-3.6607E-05],[100.43356,-4.0732E-05],[100.43695,-3.8154E-05],[100.44034,-4.2794E-05],[100.44374,-4.0732E-05],[100.44713,-4.0216E-05],[100.45052,-4.0216E-05],[100.45391,-3.7122E-05],[100.4573,-3.9185E-05],[100.4607,-4.0732E-05],[100.46409,-3.6607E-05],[100.46748,-3.7122E-05],[100.47087,-4.0732E-05],[100.47426,-3.7638E-05],[100.47766,-3.3513E-05],[100.48105,-3.6607E-05],[100.48444,-3.1967E-05],[100.48783,-2.9904E-05],[100.49122,-3.7638E-05],[100.49462,-3.8154E-05],[100.49801,-3.0935E-05],[100.5014,-2.9389E-05],[100.50479,-3.6091E-05],[100.50818,-3.6091E-05],[100.51158,-3.6091E-05],[100.51497,-3.9185E-05],[100.51836,-3.7638E-05],[100.52175,-3.8669E-05],[100.52514,-3.6607E-05],[100.52854,-3.4029E-05],[100.53193,-3.506E-05],[100.53532,-3.506E-05],[100.53871,-3.7122E-05],[100.5421,-3.4029E-05],[100.5455,-3.5576E-05],[100.54889,-3.9185E-05],[100.55228,-3.6607E-05],[100.55567,-3.9185E-05],[100.55906,-3.9185E-05],[100.56246,-3.6091E-05],[100.56585,-3.3513E-05],[100.56924,-3.6091E-05],[100.57263,-3.7638E-05],[100.57602,-3.4544E-05],[100.57942,-3.4029E-05],[100.58281,-3.4544E-05],[100.5862,-4.0216E-05],[100.58959,-4.4341E-05],[100.59298,-3.8669E-05],[100.59638,-3.1967E-05],[100.59977,-3.6091E-05],[100.60316,-4.0216E-05],[100.60655,-3.9185E-05]]}
-{"quant":[100.742,1.1554],"mems":[[100.64386,-3.6607E-05],[100.64726,-3.4029E-05],[100.65065,-3.2482E-05],[100.65404,-3.4029E-05],[100.65743,-3.4029E-05],[100.66082,-3.5576E-05],[100.66422,-3.9185E-05],[100.66761,-3.5576E-05],[100.671,-3.9185E-05],[100.67439,-3.9185E-05],[100.67778,-3.1967E-05],[100.68118,-3.7122E-05],[100.68457,-3.6607E-05],[100.68796,-3.7122E-05],[100.69135,-3.7638E-05],[100.69474,-3.8154E-05],[100.69814,-3.7638E-05],[100.70153,-3.0935E-05],[100.70492,-3.506E-05],[100.70831,-3.7122E-05],[100.7117,-3.9185E-05],[100.7151,-4.0216E-05],[100.71849,-3.5576E-05],[100.72188,-3.6607E-05],[100.72527,-3.6091E-05],[100.72866,-3.4029E-05],[100.73206,-3.4029E-05],[100.73545,-3.5576E-05],[100.73884,-3.2482E-05],[100.74223,-3.8669E-05],[100.74562,-4.4341E-05],[100.74902,-3.6091E-05],[100.75241,-3.3513E-05],[100.7558,-3.6091E-05],[100.75919,-3.3513E-05],[100.76258,-3.3513E-05],[100.76598,-3.9185E-05],[100.76937,-3.9185E-05],[100.77276,-3.7122E-05],[100.77615,-3.1967E-05],[100.77954,-3.2998E-05],[100.78294,-3.6091E-05],[100.78633,-3.2482E-05],[100.78972,-3.8669E-05],[100.79311,-3.97E-05],[100.7965,-3.506E-05],[100.7999,-3.8154E-05],[100.80329,-3.8669E-05],[100.80668,-3.6091E-05],[100.81007,-3.4544E-05],[100.81346,-3.8669E-05],[100.81686,-3.8669E-05],[100.82025,-3.4544E-05],[100.82364,-3.4544E-05],[100.82703,-3.9185E-05],[100.83042,-4.4341E-05],[100.83382,-4.1247E-05],[100.83721,-3.7122E-05],[100.8406,-3.8154E-05],[100.84399,-3.97E-05],[100.84738,-3.97E-05],[100.85078,-3.7122E-05],[100.85417,-3.5576E-05],[100.85756,-3.506E-05],[100.86095,-3.2482E-05],[100.86434,-3.5576E-05],[100.86774,-3.8669E-05],[100.87113,-3.6091E-05],[100.87452,-2.9904E-05],[100.87791,-3.042E-05],[100.8813,-3.5576E-05],[100.8847,-3.4029E-05],[100.88809,-3.6607E-05],[100.89148,-3.8154E-05],[100.89487,-3.4544E-05],[100.89826,-3.6091E-05],[100.90166,-3.506E-05],[100.90505,-3.6091E-05],[100.90844,-4.0216E-05],[100.91183,-4.0216E-05],[100.91522,-3.9185E-05],[100.91862,-3.5576E-05],[100.92201,-3.3513E-05],[100.9254,-3.506E-05],[100.92879,-4.0216E-05],[100.93218,-3.8669E-05],[100.93558,-3.8669E-05],[100.93897,-4.1247E-05]]}
-{"quant":[101.105,1.1362],"mems":[[101.01359,-3.6607E-05],[101.01698,-3.7122E-05],[101.02038,-3.9185E-05],[101.02377,-3.8154E-05],[101.02716,-3.6607E-05],[101.03055,-3.6607E-05],[101.03394,-3.4544E-05],[101.03734,-3.7122E-05],[101.04073,-4.0216E-05],[101.04412,-4.1247E-05],[101.04751,-3.6607E-05],[101.0509,-3.4029E-05],[101.0543,-3.6091E-05],[101.05769,-3.3513E-05],[101.06108,-3.7122E-05],[101.06447,-3.9185E-05],[101.06786,-3.6607E-05],[101.07126,-4.0216E-05],[101.07465,-3.6607E-05],[101.07804,-3.4029E-05],[101.08143,-4.0216E-05],[101.08482,-3.6091E-05],[101.08822,-3.1967E-05],[101.09161,-3.5576E-05],[101.095,-3.7638E-05],[101.09844,-3.6091E-05],[101.10187,-3.506E-05],[101.10531,-3.8154E-05],[101.10874,-3.8669E-05],[101.11218,-3.506E-05],[101.11562,-3.6607E-05],[101.11905,-4.0216E-05],[101.12249,-3.9185E-05],[101.12592,-4.2278E-05],[101.12936,-3.6607E-05],[101.1328,-3.1967E-05],[101.13623,-3.9185E-05],[101.13967,-4.3825E-05],[101.1431,-4.3309E-05],[101.14654,-3.5576E-05],[101.14998,-3.506E-05],[101.15341,-3.1967E-05],[101.15685,-3.2998E-05],[101.16028,-3.9185E-05],[101.16372,-3.4544E-05],[101.16716,-3.7122E-05],[101.17059,-3.3513E-05],[101.17403,-3.2482E-05],[101.17746,-3.7638E-05],[101.1809,-3.7122E-05],[101.18434,-3.506E-05],[101.18777,-3.4029E-05],[101.19121,-3.6607E-05],[101.19464,-3.6607E-05],[101.19808,-3.97E-05],[101.20152,-4.2794E-05],[101.20495,-3.8154E-05],[101.20839,-3.8154E-05],[101.21182,-3.5576E-05],[101.21526,-3.4029E-05],[101.2187,-3.8154E-05],[101.22213,-3.506E-05],[101.22557,-3.7122E-05],[101.229,-4.0216E-05],[101.23244,-3.4544E-05],[101.23588,-3.2998E-05],[101.23931,-3.97E-05],[101.24275,-4.2278E-05],[101.24618,-3.6607E-05],[101.24962,-3.5576E-05],[101.25306,-3.6607E-05],[101.25649,-3.4544E-05],[101.25993,-3.9185E-05],[101.26336,-4.0732E-05],[101.2668,-3.97E-05],[101.27024,-4.0732E-05],[101.27367,-3.7122E-05],[101.27711,-3.9185E-05],[101.28054,-3.8669E-05],[101.28398,-3.4029E-05],[101.28742,-3.8154E-05],[101.29085,-3.2998E-05],[101.29429,-3.5576E-05],[101.29772,-4.3309E-05],[101.30116,-3.8669E-05],[101.3046,-3.97E-05],[101.30803,-3.8154E-05],[101.31147,-3.6091E-05]]}
-{"quant":[101.451,1.1277],"mems":[[101.3527,-3.6607E-05],[101.35614,-3.7638E-05],[101.35957,-3.8154E-05],[101.36301,-3.2998E-05],[101.36644,-3.9185E-05],[101.36988,-4.1763E-05],[101.37332,-3.7122E-05],[101.37675,-3.506E-05],[101.38019,-3.7122E-05],[101.38362,-4.0216E-05],[101.38706,-3.4544E-05],[101.3905,-3.7122E-05],[101.39393,-3.7638E-05],[101.39737,-3.2998E-05],[101.4008,-4.0216E-05],[101.40424,-4.0216E-05],[101.40768,-3.9185E-05],[101.41111,-4.3825E-05],[101.41455,-3.8154E-05],[101.41798,-3.4544E-05],[101.42142,-3.6607E-05],[101.42486,-3.9185E-05],[101.42829,-4.1247E-05],[101.43173,-3.5576E-05],[101.43516,-3.0935E-05],[101.4386,-3.506E-05],[101.44204,-3.7122E-05],[101.44547,-3.6607E-05],[101.44891,-3.6607E-05],[101.45234,-3.2998E-05],[101.45578,-3.6091E-05],[101.45922,-3.9185E-05],[101.46265,-3.7122E-05],[101.46609,-3.8154E-05],[101.46952,-3.6607E-05],[101.47296,-3.1967E-05],[101.4764,-3.5576E-05],[101.47983,-4.1247E-05],[101.48327,-3.8154E-05],[101.4867,-4.0732E-05],[101.49014,-4.0216E-05],[101.49358,-3.6091E-05],[101.49701,-3.7638E-05],[101.50045,-3.4544E-05],[101.50388,-3.7122E-05],[101.50732,-4.0216E-05],[101.51076,-3.4029E-05],[101.51419,-3.2482E-05],[101.51763,-3.6091E-05],[101.52106,-4.2794E-05],[101.5245,-4.2794E-05],[101.52794,-3.4029E-05],[101.53137,-3.5576E-05],[101.53481,-3.6607E-05],[101.53824,-3.6091E-05],[101.54168,-3.97E-05],[101.54512,-3.6091E-05],[101.54855,-3.8669E-05],[101.55199,-3.7638E-05],[101.55542,-3.3513E-05],[101.55886,-3.3513E-05],[101.5623,-3.4029E-05],[101.56573,-3.6091E-05],[101.56917,-3.506E-05],[101.5726,-3.4029E-05],[101.57604,-3.4544E-05],[101.57948,-3.6607E-05],[101.58291,-3.6607E-05],[101.58635,-3.7122E-05],[101.58978,-4.1763E-05],[101.59322,-3.8669E-05],[101.59666,-3.8154E-05],[101.60009,-3.8154E-05],[101.60353,-3.8154E-05],[101.60696,-3.8154E-05],[101.6104,-3.7122E-05],[101.61384,-3.9185E-05],[101.61727,-3.3513E-05],[101.62071,-3.8154E-05],[101.62414,-4.1763E-05],[101.62758,-3.3513E-05],[101.63102,-3.6607E-05],[101.63445,-3.8669E-05],[101.63789,-4.1763E-05],[101.64132,-4.2278E-05],[101.64476,-3.8154E-05],[101.6482,-3.8669E-05]]}
-{"quant":[101.796,1.1251],"mems":[[101.6963,-3.9185E-05],[101.69974,-4.1763E-05],[101.70317,-3.6091E-05],[101.70661,-2.7842E-05],[101.71004,-3.1967E-05],[101.71348,-3.5576E-05],[101.71692,-3.7638E-05],[101.72035,-4.2794E-05],[101.72379,-3.8669E-05],[101.72722,-3.7122E-05],[101.73066,-3.6607E-05],[101.7341,-3.7122E-05],[101.73753,-4.0216E-05],[101.74097,-3.7638E-05],[101.7444,-3.6607E-05],[101.74784,-3.2998E-05],[101.75128,-3.2998E-05],[101.75471,-3.6091E-05],[101.75815,-3.7638E-05],[101.76158,-4.2794E-05],[101.76502,-4.1763E-05],[101.76846,-3.6091E-05],[101.77189,-3.506E-05],[101.77533,-3.7638E-05],[101.77876,-3.4029E-05],[101.7822,-3.2482E-05],[101.78564,-3.6091E-05],[101.78907,-3.9185E-05],[101.79251,-3.97E-05],[101.79594,-3.6607E-05],[101.79938,-3.8154E-05],[101.80282,-4.0216E-05],[101.80625,-4.1247E-05],[101.80969,-3.8154E-05],[101.81312,-3.6607E-05],[101.81656,-3.97E-05],[101.82,-3.8669E-05],[101.82343,-3.7638E-05],[101.82687,-3.8154E-05],[101.8303,-3.6091E-05],[101.83374,-3.2998E-05],[101.83718,-3.6607E-05],[101.84061,-4.2278E-05],[101.84405,-4.2278E-05],[101.84748,-4.0732E-05],[101.85092,-3.97E-05],[101.85436,-3.8154E-05],[101.85779,-3.8154E-05],[101.86123,-3.4029E-05],[101.86466,-3.2482E-05],[101.8681,-3.4029E-05],[101.87154,-3.3513E-05],[101.87497,-3.506E-05],[101.87841,-3.4544E-05],[101.88184,-3.6607E-05],[101.88528,-3.8154E-05],[101.88872,-3.6091E-05],[101.89215,-3.2998E-05],[101.89559,-3.6091E-05],[101.89902,-3.5576E-05],[101.90246,-3.2998E-05],[101.9059,-3.7638E-05],[101.90933,-3.5576E-05],[101.91277,-3.3513E-05],[101.9162,-3.5576E-05],[101.91964,-3.8154E-05],[101.92308,-3.7638E-05],[101.92651,-3.5576E-05],[101.92995,-3.5576E-05],[101.93338,-3.7638E-05],[101.93682,-4.1247E-05],[101.94026,-3.8154E-05],[101.94369,-3.5576E-05],[101.94713,-3.6607E-05],[101.95056,-3.4544E-05],[101.954,-3.4029E-05],[101.95744,-3.5576E-05],[101.96087,-3.4029E-05],[101.96431,-3.5576E-05],[101.96774,-3.8154E-05],[101.97118,-3.4029E-05],[101.97462,-3.7638E-05],[101.97805,-3.7638E-05],[101.98149,-3.2482E-05],[101.98492,-3.7638E-05],[101.98836,-3.5576E-05],[101.9918,-3.2482E-05],[101.99523,-3.5576E-05]]}
-{"quant":[102.17,1.112],"mems":[[102.07082,-3.2482E-05],[102.07426,-3.97E-05],[102.0777,-4.3309E-05],[102.08113,-4.0216E-05],[102.08457,-3.6091E-05],[102.088,-3.6607E-05],[102.09144,-4.3309E-05],[102.09488,-3.9185E-05],[102.09831,-3.6607E-05],[102.10175,-4.0216E-05],[102.10518,-4.0216E-05],[102.10862,-3.6607E-05],[102.11206,-3.042E-05],[102.11549,-3.3513E-05],[102.11893,-3.7122E-05],[102.12236,-3.7638E-05],[102.1258,-3.506E-05],[102.12924,-3.1967E-05],[102.13267,-3.9185E-05],[102.13611,-3.8154E-05],[102.13954,-3.8669E-05],[102.14298,-3.8669E-05],[102.14642,-3.3513E-05],[102.14985,-3.5576E-05],[102.15329,-3.6091E-05],[102.15672,-3.6091E-05],[102.16016,-3.5576E-05],[102.1636,-4.0216E-05],[102.16703,-4.0732E-05],[102.17047,-3.6091E-05],[102.1739,-3.97E-05],[102.17734,-3.8154E-05],[102.18078,-3.4544E-05],[102.18421,-3.506E-05],[102.18765,-3.6607E-05],[102.19108,-3.7122E-05],[102.19452,-3.506E-05],[102.19796,-3.7638E-05],[102.20139,-3.8669E-05],[102.20483,-3.7122E-05],[102.20826,-3.6091E-05],[102.2117,-3.5576E-05],[102.21514,-3.4544E-05],[102.21857,-3.506E-05],[102.22201,-3.97E-05],[102.22544,-3.7122E-05],[102.22888,-3.2998E-05],[102.23232,-3.4544E-05],[102.23575,-3.6607E-05],[102.23919,-4.0732E-05],[102.24262,-3.7122E-05],[102.24606,-3.7638E-05],[102.2495,-3.7638E-05],[102.25293,-3.2998E-05],[102.25637,-3.506E-05],[102.2598,-3.1967E-05],[102.26324,-3.4544E-05],[102.26668,-3.7638E-05],[102.27011,-4.0216E-05],[102.27355,-4.2278E-05],[102.27698,-3.9185E-05],[102.28042,-3.6091E-05],[102.28386,-3.5576E-05],[102.28729,-3.5576E-05],[102.29073,-3.2482E-05],[102.29416,-3.3513E-05],[102.2976,-3.8154E-05],[102.30104,-3.6607E-05],[102.30447,-3.2998E-05],[102.30791,-3.7122E-05],[102.31134,-3.506E-05],[102.31478,-3.2482E-05],[102.31822,-3.97E-05],[102.32165,-3.6607E-05],[102.32509,-3.506E-05],[102.32852,-3.6607E-05],[102.33196,-3.7638E-05],[102.3354,-3.6091E-05],[102.33883,-3.6607E-05],[102.34227,-3.97E-05],[102.3457,-3.4544E-05],[102.34914,-3.7638E-05],[102.35258,-3.5576E-05],[102.35601,-3.5576E-05],[102.35945,-3.7638E-05],[102.36288,-3.2998E-05],[102.36632,-3.5576E-05],[102.36976,-3.4029E-05]]}
-{"quant":[102.556,1.0882],"mems":[[102.45909,-3.6607E-05],[102.46253,-3.6091E-05],[102.46596,-4.1247E-05],[102.4694,-3.6091E-05],[102.47284,-3.6091E-05],[102.47627,-3.97E-05],[102.47971,-4.0216E-05],[102.48314,-3.7638E-05],[102.48658,-3.5576E-05],[102.49002,-3.4544E-05],[102.49345,-3.1451E-05],[102.49689,-3.7122E-05],[102.50032,-3.7122E-05],[102.50376,-3.1451E-05],[102.5072,-3.2998E-05],[102.51063,-3.6091E-05],[102.51407,-4.0732E-05],[102.5175,-4.1763E-05],[102.52094,-3.4544E-05],[102.52438,-3.506E-05],[102.52781,-4.0216E-05],[102.53125,-3.7122E-05],[102.53468,-3.7122E-05],[102.53812,-3.5576E-05],[102.54156,-3.4544E-05],[102.54499,-3.7638E-05],[102.54843,-3.4544E-05],[102.55186,-3.1967E-05],[102.5553,-3.8154E-05],[102.55874,-4.5372E-05],[102.56217,-3.6607E-05],[102.56561,-3.4544E-05],[102.56904,-3.8669E-05],[102.57248,-3.3513E-05],[102.57592,-3.5576E-05],[102.57935,-3.8154E-05],[102.58279,-3.506E-05],[102.58622,-3.4029E-05],[102.58966,-3.4029E-05],[102.5931,-3.6607E-05],[102.59653,-3.97E-05],[102.59997,-3.506E-05],[102.6034,-3.2998E-05],[102.60684,-3.3513E-05],[102.61028,-3.3513E-05],[102.61371,-3.7638E-05],[102.61715,-3.8669E-05],[102.62058,-3.7122E-05],[102.62402,-3.6607E-05],[102.62746,-3.7638E-05],[102.63089,-3.7122E-05],[102.63433,-3.4544E-05],[102.63776,-3.2998E-05],[102.6412,-3.4029E-05],[102.64464,-3.8669E-05],[102.64807,-3.9185E-05],[102.65151,-3.2998E-05],[102.65494,-3.4029E-05],[102.65838,-3.9185E-05],[102.66182,-3.506E-05],[102.66525,-3.2998E-05],[102.66869,-3.5576E-05],[102.67212,-3.4544E-05],[102.67556,-3.5576E-05],[102.679,-3.506E-05],[102.68243,-3.3513E-05],[102.68587,-3.8154E-05],[102.6893,-3.7122E-05],[102.69274,-3.3513E-05],[102.69618,-3.2482E-05],[102.69961,-3.2482E-05],[102.70305,-3.7122E-05],[102.70648,-3.4544E-05],[102.70992,-3.2482E-05],[102.71336,-3.1967E-05],[102.71679,-3.6091E-05],[102.72023,-3.97E-05],[102.72366,-3.4544E-05],[102.7271,-3.7638E-05],[102.73054,-3.5576E-05],[102.73397,-3.5576E-05],[102.73741,-3.8669E-05],[102.74084,-3.7122E-05],[102.74428,-3.506E-05],[102.74772,-3.042E-05],[102.75115,-3.9185E-05],[102.75459,-3.8154E-05]]}
-{"quant":[102.928,1.0741],"mems":[[102.83018,-3.1967E-05],[102.83362,-3.3513E-05],[102.83705,-3.3513E-05],[102.84049,-3.8154E-05],[102.84392,-3.97E-05],[102.84736,-3.506E-05],[102.8508,-3.6607E-05],[102.85423,-3.4544E-05],[102.85767,-4.0216E-05],[102.8611,-4.0216E-05],[102.86454,-3.4544E-05],[102.86798,-3.5576E-05],[102.87141,-3.7638E-05],[102.87485,-4.0216E-05],[102.87828,-3.4029E-05],[102.88172,-3.1967E-05],[102.88516,-3.4544E-05],[102.88859,-3.2998E-05],[102.89203,-3.4544E-05],[102.89546,-3.97E-05],[102.8989,-4.1247E-05],[102.90234,-3.2482E-05],[102.90577,-3.2482E-05],[102.90921,-3.4544E-05],[102.91264,-3.1967E-05],[102.91608,-3.4544E-05],[102.91952,-3.6607E-05],[102.92295,-3.7122E-05],[102.92639,-3.4029E-05],[102.92982,-3.5576E-05],[102.93326,-3.6607E-05],[102.9367,-3.8154E-05],[102.94013,-4.0216E-05],[102.94357,-3.2482E-05],[102.947,-3.1451E-05],[102.95044,-3.3513E-05],[102.95388,-3.1967E-05],[102.95731,-3.6091E-05],[102.96075,-3.8669E-05],[102.96418,-3.5576E-05],[102.96762,-3.6091E-05],[102.97106,-3.5576E-05],[102.97449,-3.7122E-05],[102.97793,-4.1763E-05],[102.98136,-4.0732E-05],[102.9848,-3.6607E-05],[102.98824,-3.042E-05],[102.99167,-3.0935E-05],[102.99511,-3.4544E-05],[102.99854,-3.506E-05],[103.00198,-3.4544E-05],[103.00542,-3.2998E-05],[103.00885,-3.7638E-05],[103.01229,-3.6607E-05],[103.01572,-3.2998E-05],[103.01916,-3.97E-05],[103.0226,-4.0732E-05],[103.02603,-3.6091E-05],[103.02947,-3.6607E-05],[103.0329,-3.7638E-05],[103.03634,-3.7638E-05],[103.03978,-3.97E-05],[103.04321,-3.6091E-05],[103.04665,-3.4544E-05],[103.05008,-3.7638E-05],[103.05352,-4.0732E-05],[103.05696,-3.8669E-05],[103.06039,-3.1451E-05],[103.06383,-3.2482E-05],[103.06726,-3.4544E-05],[103.0707,-3.4544E-05],[103.07414,-3.506E-05],[103.07757,-3.6607E-05],[103.08101,-3.9185E-05],[103.08444,-3.7638E-05],[103.08788,-3.6607E-05],[103.09132,-3.3513E-05],[103.09475,-3.0935E-05],[103.09819,-3.6607E-05],[103.10162,-3.1967E-05],[103.10506,-3.2482E-05],[103.1085,-3.8154E-05],[103.11193,-3.8669E-05],[103.11537,-4.3309E-05],[103.1188,-3.6091E-05],[103.12224,-3.4029E-05],[103.12568,-3.4029E-05]]}
-{"quant":[103.308,1.0693],"mems":[[103.20814,-3.1967E-05],[103.21158,-3.506E-05],[103.21501,-3.7122E-05],[103.21845,-3.6091E-05],[103.22188,-3.7122E-05],[103.22532,-3.2482E-05],[103.22876,-3.4029E-05],[103.23219,-3.97E-05],[103.23563,-3.6607E-05],[103.23906,-3.6607E-05],[103.2425,-4.0732E-05],[103.24594,-4.0732E-05],[103.24937,-3.8154E-05],[103.25281,-3.4029E-05],[103.25624,-3.1451E-05],[103.25968,-3.8154E-05],[103.26312,-3.7122E-05],[103.26655,-3.4029E-05],[103.26999,-3.8669E-05],[103.27342,-3.6091E-05],[103.27686,-3.3513E-05],[103.2803,-3.2482E-05],[103.28373,-3.3513E-05],[103.28717,-3.506E-05],[103.2906,-3.5576E-05],[103.29404,-3.6607E-05],[103.29748,-3.6607E-05],[103.30091,-3.7122E-05],[103.30435,-3.9185E-05],[103.30778,-3.8669E-05],[103.31122,-3.8669E-05],[103.31466,-3.9185E-05],[103.31809,-3.2998E-05],[103.32153,-3.2482E-05],[103.32496,-3.7638E-05],[103.3284,-4.0732E-05],[103.33184,-4.0216E-05],[103.33527,-4.0216E-05],[103.33871,-4.0216E-05],[103.34214,-3.506E-05],[103.34558,-3.4544E-05],[103.34902,-3.6607E-05],[103.35245,-3.7122E-05],[103.35589,-3.506E-05],[103.35932,-3.8154E-05],[103.36276,-4.2794E-05],[103.3662,-3.2998E-05],[103.36963,-3.4029E-05],[103.37307,-4.0732E-05],[103.3765,-3.6091E-05],[103.37994,-4.1763E-05],[103.38338,-3.7122E-05],[103.38681,-3.3513E-05],[103.39025,-3.7122E-05],[103.39368,-3.7638E-05],[103.39712,-3.6607E-05],[103.40056,-3.2482E-05],[103.40399,-3.7122E-05],[103.40743,-3.6091E-05],[103.41086,-3.6091E-05],[103.4143,-3.8669E-05],[103.41774,-3.506E-05],[103.42117,-3.506E-05],[103.42461,-3.6607E-05],[103.42804,-3.8154E-05],[103.43148,-3.506E-05],[103.43492,-3.97E-05],[103.43835,-3.8154E-05],[103.44179,-3.2482E-05],[103.44522,-3.7638E-05],[103.44866,-3.3513E-05],[103.4521,-3.8154E-05],[103.45553,-4.2794E-05],[103.45897,-3.7638E-05],[103.4624,-3.6607E-05],[103.46584,-3.4544E-05],[103.46928,-4.0216E-05],[103.47271,-3.97E-05],[103.47615,-3.8154E-05],[103.47958,-3.97E-05],[103.48302,-3.6091E-05],[103.48646,-3.5576E-05],[103.48989,-3.0935E-05],[103.49333,-3.3513E-05],[103.49676,-3.97E-05],[103.5002,-3.5576E-05],[103.50364,-3.4029E-05],[103.50707,-3.4029E-05]]}
-{"quant":[103.681,1.0613],"mems":[[103.62046,-3.5576E-05],[103.6239,-3.8154E-05],[103.62733,-3.97E-05],[103.63077,-3.9185E-05],[103.6342,-3.8669E-05],[103.63764,-3.7638E-05],[103.64108,-3.7638E-05],[103.64451,-3.6607E-05],[103.64795,-3.4029E-05],[103.65138,-3.7638E-05],[103.65482,-3.5576E-05],[103.65826,-3.2482E-05],[103.66169,-3.8154E-05],[103.66513,-3.3513E-05],[103.66856,-3.506E-05],[103.672,-4.0216E-05],[103.67539,-3.7122E-05],[103.67879,-4.0216E-05],[103.68218,-3.4544E-05],[103.68557,-3.1967E-05],[103.68897,-3.97E-05],[103.69236,-3.8669E-05],[103.69575,-3.506E-05],[103.69915,-3.4544E-05],[103.70254,-3.2482E-05],[103.70593,-3.1967E-05],[103.70933,-3.8669E-05],[103.71272,-3.8154E-05],[103.71611,-3.6607E-05],[103.71951,-3.8669E-05],[103.7229,-3.97E-05],[103.72629,-4.0732E-05],[103.72969,-3.506E-05],[103.73308,-3.9185E-05],[103.73647,-3.9185E-05],[103.73987,-3.7638E-05],[103.74326,-3.7638E-05],[103.74665,-3.6091E-05],[103.75005,-4.0216E-05],[103.75344,-3.6607E-05],[103.75683,-3.7638E-05],[103.76023,-3.7638E-05],[103.76362,-3.7122E-05],[103.76701,-3.8154E-05],[103.77041,-3.8154E-05],[103.7738,-4.3309E-05],[103.77719,-3.7638E-05],[103.78059,-3.4544E-05],[103.78398,-3.3513E-05],[103.78737,-3.6607E-05],[103.79077,-3.8669E-05],[103.79416,-3.506E-05],[103.79755,-3.8669E-05],[103.80095,-3.7122E-05],[103.80434,-3.4544E-05],[103.80773,-3.4544E-05],[103.81113,-3.6091E-05],[103.81452,-3.7122E-05],[103.81791,-4.0216E-05],[103.82131,-3.97E-05],[103.8247,-3.8154E-05],[103.82809,-4.0216E-05],[103.83149,-3.7122E-05],[103.83488,-4.2794E-05],[103.83827,-3.97E-05],[103.84167,-3.3513E-05],[103.84506,-3.8154E-05],[103.84845,-3.97E-05],[103.85185,-3.8154E-05],[103.85524,-3.5576E-05],[103.85863,-3.97E-05],[103.86203,-3.9185E-05],[103.86542,-3.6091E-05],[103.86881,-4.0216E-05],[103.87221,-3.97E-05],[103.8756,-3.4029E-05],[103.87899,-3.4029E-05],[103.88239,-3.7122E-05],[103.88578,-3.4029E-05],[103.88917,-4.0732E-05],[103.89257,-4.0216E-05],[103.89596,-3.0935E-05],[103.89935,-3.4544E-05],[103.90275,-3.506E-05],[103.90614,-3.8154E-05],[103.90953,-3.6607E-05],[103.91293,-3.2998E-05],[103.91632,-3.6607E-05]]}
-{"quant":[104.028,1.0363],"mems":[[103.92989,-3.7122E-05],[103.93329,-3.2482E-05],[103.93668,-3.4029E-05],[103.94007,-3.8669E-05],[103.94347,-3.7638E-05],[103.94686,-3.506E-05],[103.95025,-3.4544E-05],[103.95365,-3.4544E-05],[103.95704,-3.2998E-05],[103.96043,-3.7638E-05],[103.96383,-3.8154E-05],[103.96722,-3.9185E-05],[103.97061,-4.0216E-05],[103.97401,-3.6091E-05],[103.9774,-3.6091E-05],[103.98079,-3.7122E-05],[103.98419,-4.0732E-05],[103.98758,-3.8154E-05],[103.99097,-3.5576E-05],[103.99437,-3.6091E-05],[103.99776,-3.4544E-05],[104.00115,-3.8154E-05],[104.00455,-3.506E-05],[104.00794,-3.2482E-05],[104.01133,-3.97E-05],[104.01473,-4.3309E-05],[104.01812,-3.9185E-05],[104.02151,-3.5576E-05],[104.02491,-3.7122E-05],[104.0283,-3.506E-05],[104.03169,-4.0216E-05],[104.03509,-4.1247E-05],[104.03848,-3.1967E-05],[104.04187,-3.5576E-05],[104.04527,-3.7122E-05],[104.04866,-3.4029E-05],[104.05205,-3.5576E-05],[104.05545,-3.5576E-05],[104.05884,-3.4544E-05],[104.06223,-3.8669E-05],[104.06563,-3.8154E-05],[104.06902,-3.8154E-05],[104.07241,-4.0216E-05],[104.07581,-3.6607E-05],[104.0792,-3.7122E-05],[104.08259,-3.7638E-05],[104.08599,-3.5576E-05],[104.08938,-3.2998E-05],[104.09277,-3.3513E-05],[104.09617,-3.6607E-05],[104.09956,-3.7638E-05],[104.10295,-4.1247E-05],[104.10635,-4.4341E-05],[104.10974,-4.6919E-05],[104.11313,-3.8669E-05],[104.11653,-3.3513E-05],[104.11992,-3.8154E-05],[104.12331,-3.7122E-05],[104.12671,-3.9185E-05],[104.1301,-4.1763E-05],[104.13349,-3.6607E-05],[104.13689,-3.6091E-05],[104.14028,-3.506E-05],[104.14367,-3.8669E-05],[104.14707,-4.1763E-05],[104.15046,-4.0732E-05],[104.15385,-4.0216E-05],[104.15725,-3.6607E-05],[104.16064,-3.6091E-05],[104.16403,-3.1451E-05],[104.16743,-3.6091E-05],[104.17082,-4.2794E-05],[104.17421,-3.6607E-05],[104.17761,-3.7122E-05],[104.181,-3.8669E-05],[104.18439,-3.8154E-05],[104.18779,-3.97E-05],[104.19118,-3.8154E-05],[104.19457,-3.7122E-05],[104.19797,-3.9185E-05],[104.20136,-3.7638E-05],[104.20475,-3.6091E-05],[104.20815,-4.2794E-05],[104.21154,-3.9185E-05],[104.21493,-3.1451E-05],[104.21833,-3.4029E-05],[104.22172,-3.6607E-05],[104.22511,-3.97E-05]]}
-{"quant":[104.36,0.99656],"mems":[[104.26244,-3.8154E-05],[104.26583,-3.506E-05],[104.26923,-3.8154E-05],[104.27262,-3.8669E-05],[104.27601,-3.506E-05],[104.27941,-3.5576E-05],[104.2828,-3.6607E-05],[104.28619,-3.7638E-05],[104.28959,-4.0732E-05],[104.29298,-3.9185E-05],[104.29637,-3.6607E-05],[104.29977,-3.6091E-05],[104.30316,-3.6091E-05],[104.30655,-3.7122E-05],[104.30995,-3.506E-05],[104.31334,-4.0216E-05],[104.31673,-3.9185E-05],[104.32013,-3.2482E-05],[104.32352,-3.7638E-05],[104.32691,-3.6607E-05],[104.33031,-3.7122E-05],[104.3337,-3.8154E-05],[104.33709,-3.2998E-05],[104.34049,-3.2998E-05],[104.34388,-3.1451E-05],[104.34727,-3.506E-05],[104.35067,-4.2278E-05],[104.35406,-3.7638E-05],[104.35745,-3.3513E-05],[104.36085,-3.6607E-05],[104.36424,-3.5576E-05],[104.36763,-3.4029E-05],[104.37103,-3.4029E-05],[104.37442,-3.4544E-05],[104.37781,-3.1967E-05],[104.38121,-3.2998E-05],[104.3846,-3.6607E-05],[104.38799,-3.6091E-05],[104.39139,-3.8154E-05],[104.39478,-3.5576E-05],[104.39817,-3.4544E-05],[104.40157,-3.97E-05],[104.40496,-3.9185E-05],[104.40835,-3.6091E-05],[104.41175,-2.6811E-05],[104.41514,-2.5779E-05],[104.41853,-3.7638E-05],[104.42193,-3.6091E-05],[104.42532,-3.2998E-05],[104.42871,-3.506E-05],[104.43211,-3.6607E-05],[104.4355,-3.5576E-05],[104.43889,-3.1451E-05],[104.44229,-3.6607E-05],[104.44568,-3.7122E-05],[104.44907,-3.5576E-05],[104.45247,-3.7122E-05],[104.45586,-3.6607E-05],[104.45925,-3.8154E-05],[104.46265,-3.6091E-05],[104.46604,-3.7638E-05],[104.46943,-3.506E-05],[104.47283,-3.042E-05],[104.47622,-3.4029E-05],[104.47961,-3.9185E-05],[104.48301,-3.7638E-05],[104.4864,-3.6607E-05],[104.48979,-3.7122E-05],[104.49319,-3.4544E-05],[104.49658,-3.6607E-05],[104.49997,-3.6607E-05],[104.50337,-3.8669E-05],[104.50676,-3.8669E-05],[104.51015,-3.2998E-05],[104.51355,-3.6091E-05],[104.51694,-3.2998E-05],[104.52033,-3.4544E-05],[104.52373,-3.7638E-05],[104.52712,-3.5576E-05],[104.53051,-4.0732E-05],[104.53391,-3.6607E-05],[104.5373,-3.5576E-05],[104.54069,-4.0732E-05],[104.54409,-3.9185E-05],[104.54748,-4.0216E-05],[104.55087,-3.97E-05],[104.55427,-3.2998E-05],[104.55766,-3.1451E-05]]}
-{"quant":[104.712,0.96585],"mems":[[104.61535,-3.7122E-05],[104.61874,-3.7638E-05],[104.62213,-4.1247E-05],[104.62553,-3.8669E-05],[104.62892,-3.2998E-05],[104.63231,-3.0935E-05],[104.63571,-3.97E-05],[104.6391,-4.1763E-05],[104.64249,-3.506E-05],[104.64589,-3.1451E-05],[104.64928,-3.1967E-05],[104.65267,-3.8154E-05],[104.65607,-4.0732E-05],[104.65946,-3.97E-05],[104.66285,-3.4029E-05],[104.66625,-3.6091E-05],[104.66964,-3.8669E-05],[104.67303,-3.4544E-05],[104.67643,-3.7122E-05],[104.67982,-3.6091E-05],[104.68321,-3.4029E-05],[104.68661,-3.506E-05],[104.69,-3.7638E-05],[104.69339,-3.9185E-05],[104.69679,-3.7638E-05],[104.70018,-3.6091E-05],[104.70357,-3.6091E-05],[104.70697,-3.8154E-05],[104.71036,-3.506E-05],[104.71375,-3.6607E-05],[104.71715,-3.8669E-05],[104.72054,-3.6091E-05],[104.72393,-3.506E-05],[104.72733,-3.4029E-05],[104.73072,-3.6091E-05],[104.73411,-3.6607E-05],[104.73751,-3.7638E-05],[104.7409,-3.5576E-05],[104.74429,-3.8669E-05],[104.74769,-4.0216E-05],[104.75108,-3.4544E-05],[104.75447,-4.2278E-05],[104.75787,-4.1763E-05],[104.76126,-3.8154E-05],[104.76465,-4.2278E-05],[104.76805,-3.7638E-05],[104.77144,-3.9185E-05],[104.77483,-3.8669E-05],[104.77823,-3.4029E-05],[104.78162,-3.5576E-05],[104.78501,-3.7638E-05],[104.78841,-3.6091E-05],[104.7918,-3.6091E-05],[104.79519,-4.1763E-05],[104.79859,-3.9185E-05],[104.80198,-3.6091E-05],[104.80537,-3.8154E-05],[104.80877,-3.6607E-05],[104.81216,-3.7122E-05],[104.81555,-3.5576E-05],[104.81895,-3.6607E-05],[104.82234,-3.6607E-05],[104.82573,-3.3513E-05],[104.82913,-3.4544E-05],[104.83252,-3.8669E-05],[104.83591,-3.7638E-05],[104.83931,-3.2998E-05],[104.8427,-3.3513E-05],[104.84609,-3.4029E-05],[104.84949,-3.7122E-05],[104.85288,-3.9185E-05],[104.85627,-3.7122E-05],[104.85967,-3.5576E-05],[104.86306,-3.2998E-05],[104.86645,-3.506E-05],[104.86985,-3.7638E-05],[104.87324,-3.4544E-05],[104.87663,-3.3513E-05],[104.88003,-3.8154E-05],[104.88342,-3.97E-05],[104.88681,-3.7122E-05],[104.89021,-4.0216E-05],[104.8936,-3.8669E-05],[104.89699,-3.5576E-05],[104.90039,-3.6091E-05],[104.90378,-3.2482E-05],[104.90717,-3.2998E-05],[104.91057,-3.5576E-05]]}
-{"quant":[105.077,0.94445],"mems":[[104.97843,-3.8154E-05],[104.98183,-3.506E-05],[104.98522,-3.506E-05],[104.98861,-3.5576E-05],[104.99201,-3.6091E-05],[104.9954,-3.6607E-05],[104.99879,-3.9185E-05],[105.00219,-3.8669E-05],[105.00558,-3.5576E-05],[105.00897,-3.7122E-05],[105.01237,-4.2278E-05],[105.01576,-3.7122E-05],[105.01915,-3.6091E-05],[105.02255,-3.8669E-05],[105.02594,-3.1967E-05],[105.02933,-3.7638E-05],[105.03273,-3.6091E-05],[105.03612,-3.2482E-05],[105.03951,-4.0216E-05],[105.04291,-3.9185E-05],[105.0463,-3.4544E-05],[105.04969,-3.7122E-05],[105.05309,-3.8154E-05],[105.05648,-3.5576E-05],[105.05987,-3.6607E-05],[105.06327,-3.506E-05],[105.06666,-3.6091E-05],[105.07005,-3.7638E-05],[105.07345,-3.8669E-05],[105.07684,-4.2278E-05],[105.08023,-3.7122E-05],[105.08363,-3.506E-05],[105.08702,-3.506E-05],[105.09041,-3.7122E-05],[105.09381,-3.5576E-05],[105.0972,-3.506E-05],[105.10059,-3.97E-05],[105.10399,-3.7638E-05],[105.10738,-3.3513E-05],[105.11077,-3.4544E-05],[105.11417,-3.9185E-05],[105.11756,-3.8669E-05],[105.12095,-3.506E-05],[105.12435,-3.4544E-05],[105.12774,-3.6607E-05],[105.13113,-3.7638E-05],[105.13453,-3.7638E-05],[105.13792,-4.0732E-05],[105.14131,-3.97E-05],[105.14471,-3.8669E-05],[105.1481,-3.7638E-05],[105.15149,-3.7638E-05],[105.15489,-4.0216E-05],[105.15828,-3.2998E-05],[105.16167,-3.1451E-05],[105.16507,-3.4029E-05],[105.16846,-3.4029E-05],[105.17185,-4.0732E-05],[105.17525,-4.0216E-05],[105.17864,-3.8669E-05],[105.18203,-3.7638E-05],[105.18543,-3.7638E-05],[105.18882,-4.0732E-05],[105.19221,-3.8669E-05],[105.19561,-3.97E-05],[105.199,-3.2998E-05],[105.20239,-3.2998E-05],[105.20579,-3.7122E-05],[105.20918,-3.6091E-05],[105.21257,-4.0216E-05],[105.21597,-3.7122E-05],[105.21936,-3.6091E-05],[105.22275,-3.506E-05],[105.22615,-3.1967E-05],[105.22954,-3.506E-05],[105.23293,-4.0216E-05],[105.23633,-4.1247E-05],[105.23972,-3.6607E-05],[105.24311,-3.3513E-05],[105.24651,-3.2482E-05],[105.2499,-3.5576E-05],[105.25329,-3.97E-05],[105.25669,-3.5576E-05],[105.26008,-3.2482E-05],[105.26347,-3.6091E-05],[105.26687,-3.6091E-05],[105.27026,-3.7638E-05],[105.27365,-3.8154E-05]]}
-{"quant":[105.439,0.9234],"mems":[[105.34152,-3.6607E-05],[105.34491,-3.7122E-05],[105.34831,-3.6091E-05],[105.3517,-3.7122E-05],[105.35509,-3.6607E-05],[105.35849,-3.5576E-05],[105.36188,-3.506E-05],[105.36527,-3.6091E-05],[105.36867,-3.6607E-05],[105.37206,-3.5576E-05],[105.37545,-3.6091E-05],[105.37885,-3.6607E-05],[105.38224,-3.506E-05],[105.38563,-3.506E-05],[105.38903,-3.7638E-05],[105.39242,-3.4544E-05],[105.39581,-3.7122E-05],[105.39921,-3.97E-05],[105.4026,-3.6091E-05],[105.40599,-3.7122E-05],[105.40939,-3.9185E-05],[105.41278,-3.5576E-05],[105.41617,-3.4544E-05],[105.41957,-3.6607E-05],[105.42296,-3.4544E-05],[105.42635,-3.6607E-05],[105.42975,-3.6607E-05],[105.43314,-3.4544E-05],[105.43653,-3.4029E-05],[105.43993,-3.9185E-05],[105.44332,-3.97E-05],[105.44671,-3.7638E-05],[105.45011,-3.8154E-05],[105.4535,-3.1451E-05],[105.45689,-3.2482E-05],[105.46029,-3.6607E-05],[105.46368,-3.8154E-05],[105.46707,-3.6091E-05],[105.47047,-3.4029E-05],[105.47386,-3.8154E-05],[105.47725,-3.7638E-05],[105.48065,-3.4544E-05],[105.48404,-3.7122E-05],[105.48743,-3.6607E-05],[105.49083,-3.4544E-05],[105.49422,-3.6091E-05],[105.49761,-3.2998E-05],[105.50101,-3.4029E-05],[105.5044,-3.6091E-05],[105.50779,-4.0216E-05],[105.51119,-3.8669E-05],[105.51458,-3.5576E-05],[105.51797,-4.1763E-05],[105.52137,-3.6091E-05],[105.52476,-3.2998E-05],[105.52815,-3.7638E-05],[105.53155,-3.9185E-05],[105.53494,-4.0216E-05],[105.53833,-3.4029E-05],[105.54173,-3.6091E-05],[105.54512,-4.0216E-05],[105.54851,-4.0216E-05],[105.55191,-3.7638E-05],[105.5553,-3.2482E-05],[105.55869,-3.6091E-05],[105.56209,-3.97E-05],[105.56548,-3.9185E-05],[105.56887,-3.506E-05],[105.57227,-3.2482E-05],[105.57566,-3.506E-05],[105.57905,-3.7122E-05],[105.58245,-3.7122E-05],[105.58584,-3.6091E-05],[105.58923,-4.2278E-05],[105.59263,-4.1247E-05],[105.59602,-3.4029E-05],[105.59941,-3.9185E-05],[105.60281,-4.3309E-05],[105.6062,-4.0732E-05],[105.60959,-4.2278E-05],[105.61299,-4.1247E-05],[105.61638,-3.3513E-05],[105.61977,-3.5576E-05],[105.62317,-3.5576E-05],[105.62656,-3.506E-05],[105.62995,-3.9185E-05],[105.63335,-3.7122E-05],[105.63674,-3.3513E-05]]}
-{"quant":[105.776,0.90427],"mems":[[105.67746,-4.0732E-05],[105.68085,-4.2278E-05],[105.68425,-3.7638E-05],[105.68764,-3.6607E-05],[105.69103,-3.4544E-05],[105.69443,-3.4544E-05],[105.69782,-3.5576E-05],[105.70121,-4.0732E-05],[105.70461,-4.1763E-05],[105.708,-4.1247E-05],[105.71139,-4.0732E-05],[105.71479,-2.8357E-05],[105.71818,-3.3513E-05],[105.72157,-4.2278E-05],[105.72497,-3.8669E-05],[105.72836,-3.506E-05],[105.73175,-3.3513E-05],[105.73515,-3.7122E-05],[105.73854,-3.8154E-05],[105.74193,-3.8154E-05],[105.74533,-3.6091E-05],[105.74872,-3.7638E-05],[105.75211,-3.9185E-05],[105.75551,-3.6091E-05],[105.7589,-3.7638E-05],[105.76229,-3.8669E-05],[105.76569,-4.1763E-05],[105.76908,-3.97E-05],[105.77247,-3.4029E-05],[105.77587,-3.7638E-05],[105.77926,-4.0216E-05],[105.78265,-4.0216E-05],[105.78605,-4.2794E-05],[105.78944,-3.7122E-05],[105.79283,-3.2998E-05],[105.79623,-3.7122E-05],[105.79962,-3.5576E-05],[105.80301,-3.7122E-05],[105.80641,-3.4544E-05],[105.8098,-3.042E-05],[105.81319,-3.6607E-05],[105.81659,-3.6607E-05],[105.81998,-3.8154E-05],[105.82337,-3.97E-05],[105.82677,-3.6091E-05],[105.83016,-3.8154E-05],[105.83355,-3.8154E-05],[105.83695,-3.6091E-05],[105.84034,-3.4029E-05],[105.84373,-3.506E-05],[105.84713,-3.7638E-05],[105.85052,-3.6091E-05],[105.85391,-3.506E-05],[105.85731,-3.5576E-05],[105.8607,-3.9185E-05],[105.86409,-3.9185E-05],[105.86749,-3.97E-05],[105.87088,-4.0216E-05],[105.87427,-3.9185E-05],[105.87767,-3.8669E-05],[105.88106,-3.9185E-05],[105.88445,-3.9185E-05],[105.88785,-3.6091E-05],[105.89124,-3.7122E-05],[105.89463,-3.97E-05],[105.89803,-3.97E-05],[105.90142,-3.7122E-05],[105.90481,-3.6607E-05],[105.90821,-3.4029E-05],[105.9116,-3.1967E-05],[105.91499,-3.506E-05],[105.91839,-3.5576E-05],[105.92178,-3.7122E-05],[105.92517,-3.4544E-05],[105.92857,-3.0935E-05],[105.93196,-3.1967E-05],[105.93535,-3.4544E-05],[105.93875,-4.0732E-05],[105.94214,-3.97E-05],[105.94553,-3.9185E-05],[105.94893,-3.8669E-05],[105.95232,-3.7122E-05],[105.95571,-3.6091E-05],[105.95911,-3.5576E-05],[105.9625,-3.7122E-05],[105.96589,-3.6091E-05],[105.96929,-3.7638E-05],[105.97268,-4.0216E-05]]}
-{"quant":[106.122,0.88785],"mems":[[106.03037,-3.3513E-05],[106.03376,-3.7638E-05],[106.03715,-3.9185E-05],[106.04055,-3.9185E-05],[106.04394,-3.8154E-05],[106.04733,-3.4029E-05],[106.05073,-4.1763E-05],[106.05412,-3.9185E-05],[106.05751,-3.3513E-05],[106.06091,-3.506E-05],[106.0643,-3.2482E-05],[106.06769,-3.4029E-05],[106.07109,-3.506E-05],[106.07448,-3.7638E-05],[106.07787,-3.5576E-05],[106.08127,-3.6607E-05],[106.08466,-4.1247E-05],[106.08805,-3.1451E-05],[106.09145,-3.0935E-05],[106.09484,-3.8154E-05],[106.09823,-3.97E-05],[106.10163,-3.7122E-05],[106.10502,-3.506E-05],[106.10841,-3.7638E-05],[106.11181,-3.8154E-05],[106.1152,-4.1247E-05],[106.11859,-3.97E-05],[106.12199,-3.9185E-05],[106.12538,-3.8154E-05],[106.12877,-3.1451E-05],[106.13217,-3.7638E-05],[106.13556,-3.97E-05],[106.13895,-3.506E-05],[106.14235,-3.506E-05],[106.14574,-3.8154E-05],[106.14913,-3.6607E-05],[106.15253,-3.2998E-05],[106.15592,-3.9185E-05],[106.15931,-3.7122E-05],[106.16271,-3.2482E-05],[106.1661,-3.4029E-05],[106.16949,-3.2482E-05],[106.17289,-3.4544E-05],[106.17628,-3.6091E-05],[106.17967,-3.4544E-05],[106.18307,-3.5576E-05],[106.18646,-3.6091E-05],[106.18985,-3.4029E-05],[106.19325,-3.6091E-05],[106.19664,-3.506E-05],[106.20003,-3.6607E-05],[106.20343,-3.8669E-05],[106.20682,-3.506E-05],[106.21021,-3.3513E-05],[106.21361,-3.4029E-05],[106.217,-3.7638E-05],[106.22044,-3.7638E-05],[106.22388,-3.9185E-05],[106.22732,-3.4029E-05],[106.23075,-3.2482E-05],[106.23419,-4.0732E-05],[106.23763,-3.9185E-05],[106.24107,-3.9185E-05],[106.24451,-3.6607E-05],[106.24795,-2.9904E-05],[106.25139,-3.506E-05],[106.25483,-4.1247E-05],[106.25826,-4.0216E-05],[106.2617,-3.7122E-05],[106.26514,-3.0935E-05],[106.26858,-3.2482E-05],[106.27202,-3.6607E-05],[106.27546,-3.4544E-05],[106.2789,-3.7122E-05],[106.28233,-3.6607E-05],[106.28577,-3.3513E-05],[106.28921,-3.1967E-05],[106.29265,-3.7122E-05],[106.29609,-4.0216E-05],[106.29953,-3.7638E-05],[106.30297,-3.7122E-05],[106.30641,-3.1451E-05],[106.30984,-3.4544E-05],[106.31328,-4.0216E-05],[106.31672,-3.7122E-05],[106.32016,-3.7122E-05],[106.3236,-3.3513E-05],[106.32704,-3.4029E-05]]}
-{"quant":[106.49,0.85893],"mems":[[106.39237,-4.0732E-05],[106.39581,-3.7122E-05],[106.39925,-3.6607E-05],[106.40269,-3.5576E-05],[106.40613,-3.1967E-05],[106.40957,-3.3513E-05],[106.413,-3.6091E-05],[106.41644,-4.0216E-05],[106.41988,-3.6091E-05],[106.42332,-3.2482E-05],[106.42676,-3.6091E-05],[106.4302,-3.8154E-05],[106.43364,-4.1247E-05],[106.43707,-3.9185E-05],[106.44051,-3.5576E-05],[106.44395,-3.6091E-05],[106.44739,-3.6091E-05],[106.45083,-3.5576E-05],[106.45427,-3.97E-05],[106.45771,-4.0732E-05],[106.46115,-3.3513E-05],[106.46458,-3.4029E-05],[106.46802,-3.7122E-05],[106.47146,-3.4544E-05],[106.4749,-3.4544E-05],[106.47834,-3.7122E-05],[106.48178,-4.0216E-05],[106.48522,-3.7122E-05],[106.48865,-3.4029E-05],[106.49209,-3.5576E-05],[106.49553,-3.8669E-05],[106.49897,-4.0216E-05],[106.50241,-3.7638E-05],[106.50585,-3.7122E-05],[106.50929,-3.4029E-05],[106.51273,-3.0935E-05],[106.51616,-3.506E-05],[106.5196,-3.97E-05],[106.52304,-3.9185E-05],[106.52648,-3.5576E-05],[106.52992,-3.6607E-05],[106.53336,-3.8154E-05],[106.5368,-3.6091E-05],[106.54023,-3.5576E-05],[106.54367,-3.6091E-05],[106.54711,-3.5576E-05],[106.55055,-3.7122E-05],[106.55399,-3.7638E-05],[106.55743,-3.6091E-05],[106.56087,-3.7122E-05],[106.56431,-3.6091E-05],[106.56774,-3.6091E-05],[106.57118,-3.506E-05],[106.57462,-3.6607E-05],[106.57806,-4.1763E-05],[106.5815,-3.7638E-05],[106.58494,-3.3513E-05],[106.58838,-3.8154E-05],[106.59181,-3.8669E-05],[106.59525,-3.6607E-05],[106.59869,-3.8154E-05],[106.60213,-3.506E-05],[106.60557,-3.4029E-05],[106.60901,-3.506E-05],[106.61245,-3.4029E-05],[106.61589,-3.8669E-05],[106.61932,-3.8669E-05],[106.62276,-3.506E-05],[106.6262,-3.4029E-05],[106.62964,-3.4029E-05],[106.63308,-3.6607E-05],[106.63652,-3.506E-05],[106.63996,-3.1451E-05],[106.64339,-2.9904E-05],[106.64683,-3.0935E-05],[106.65027,-3.5576E-05],[106.65371,-3.97E-05],[106.65715,-4.0216E-05],[106.66059,-3.9185E-05],[106.66403,-3.7638E-05],[106.66747,-3.8669E-05],[106.6709,-3.9185E-05],[106.67434,-3.8154E-05],[106.67778,-3.97E-05],[106.68122,-4.0216E-05],[106.68466,-3.97E-05],[106.6881,-3.6607E-05]]}
-{"quant":[106.855,0.82053],"mems":[[106.75687,-3.8669E-05],[106.76031,-3.2998E-05],[106.76375,-3.5576E-05],[106.76719,-3.6607E-05],[106.77063,-3.7122E-05],[106.77406,-3.7638E-05],[106.7775,-3.5576E-05],[106.78094,-3.5576E-05],[106.78438,-3.5576E-05],[106.78782,-3.4029E-05],[106.79126,-3.506E-05],[106.7947,-4.0216E-05],[106.79813,-4.0732E-05],[106.80157,-3.6091E-05],[106.80501,-3.4029E-05],[106.80845,-3.0935E-05],[106.81189,-3.4029E-05],[106.81533,-3.9185E-05],[106.81877,-3.5576E-05],[106.82221,-3.506E-05],[106.82564,-3.6091E-05],[106.82908,-3.4544E-05],[106.83252,-3.7122E-05],[106.83596,-3.8669E-05],[106.8394,-3.7638E-05],[106.84284,-3.0935E-05],[106.84628,-3.4544E-05],[106.84971,-4.1763E-05],[106.85315,-3.97E-05],[106.85659,-4.0216E-05],[106.86003,-3.97E-05],[106.86347,-3.7122E-05],[106.86691,-3.506E-05],[106.87035,-3.9185E-05],[106.87379,-3.9185E-05],[106.87722,-3.6607E-05],[106.88066,-3.7638E-05],[106.8841,-3.6091E-05],[106.88754,-3.5576E-05],[106.89098,-3.7638E-05],[106.89442,-3.8669E-05],[106.89786,-3.4544E-05],[106.90129,-3.7122E-05],[106.90473,-3.7122E-05],[106.90817,-3.4029E-05],[106.91161,-3.8154E-05],[106.91505,-3.4544E-05],[106.91849,-3.4029E-05],[106.92193,-3.97E-05],[106.92537,-4.0732E-05],[106.9288,-3.6607E-05],[106.93224,-3.1451E-05],[106.93568,-3.2998E-05],[106.93912,-3.3513E-05],[106.94256,-3.6091E-05],[106.946,-4.0732E-05],[106.94944,-4.2278E-05],[106.95287,-4.1247E-05],[106.95631,-3.8669E-05],[106.95975,-4.0732E-05],[106.96319,-3.7638E-05],[106.96663,-3.1967E-05],[106.97007,-3.3513E-05],[106.97351,-3.2998E-05],[106.97695,-3.7122E-05],[106.98038,-3.506E-05],[106.98382,-3.1451E-05],[106.98726,-3.8154E-05],[106.9907,-3.5576E-05],[106.99414,-3.1967E-05],[106.99758,-3.6607E-05],[107.00102,-3.8154E-05],[107.00445,-3.506E-05],[107.00789,-3.1967E-05],[107.01133,-3.4029E-05],[107.01477,-4.0216E-05],[107.01821,-4.2794E-05],[107.02165,-4.4341E-05],[107.02509,-3.9185E-05],[107.02853,-3.3513E-05],[107.03196,-3.97E-05],[107.0354,-3.8154E-05],[107.03884,-3.6091E-05],[107.04228,-3.7122E-05],[107.04572,-3.5576E-05],[107.04916,-3.8669E-05],[107.0526,-4.0732E-05]]}
-{"quant":[107.176,0.79125],"mems":[[107.07667,-3.506E-05],[107.08011,-4.0732E-05],[107.08354,-3.6607E-05],[107.08698,-3.042E-05],[107.09042,-3.4544E-05],[107.09386,-3.6607E-05],[107.0973,-4.0732E-05],[107.10074,-4.0216E-05],[107.10418,-3.7638E-05],[107.10761,-3.97E-05],[107.11105,-3.7638E-05],[107.11449,-3.4544E-05],[107.11793,-3.6091E-05],[107.12137,-4.0216E-05],[107.12481,-3.8154E-05],[107.12825,-3.7638E-05],[107.13169,-4.0732E-05],[107.13512,-3.8154E-05],[107.13856,-3.9185E-05],[107.142,-3.5576E-05],[107.14544,-3.1451E-05],[107.14888,-3.7122E-05],[107.15232,-3.9185E-05],[107.15576,-4.0732E-05],[107.15919,-3.97E-05],[107.16263,-3.97E-05],[107.16607,-3.4029E-05],[107.16951,-3.2482E-05],[107.17295,-3.506E-05],[107.17639,-3.4029E-05],[107.17983,-3.7122E-05],[107.18327,-3.3513E-05],[107.1867,-3.2482E-05],[107.19014,-3.8154E-05],[107.19358,-3.5576E-05],[107.19702,-3.4029E-05],[107.20046,-3.8669E-05],[107.2039,-3.7638E-05],[107.20734,-3.8154E-05],[107.21077,-4.0732E-05],[107.21421,-3.8669E-05],[107.21765,-4.0216E-05],[107.22109,-3.7122E-05],[107.22453,-3.506E-05],[107.22797,-3.9185E-05],[107.23141,-3.9185E-05],[107.23485,-3.8669E-05],[107.23828,-3.8154E-05],[107.24172,-3.7638E-05],[107.24516,-3.2998E-05],[107.2486,-3.3513E-05],[107.25204,-3.7122E-05],[107.25548,-3.7638E-05],[107.25892,-4.0732E-05],[107.26235,-3.8669E-05],[107.26579,-3.8669E-05],[107.26923,-3.8154E-05],[107.27267,-3.3513E-05],[107.27611,-3.4029E-05],[107.27955,-3.506E-05],[107.28299,-3.8154E-05],[107.28643,-3.8669E-05],[107.28986,-3.5576E-05],[107.2933,-3.506E-05],[107.29674,-3.2998E-05],[107.30018,-3.5576E-05],[107.30362,-4.1763E-05],[107.30706,-3.4544E-05],[107.3105,-3.042E-05],[107.31393,-3.6607E-05],[107.31737,-3.9185E-05],[107.32081,-3.4544E-05],[107.32425,-3.2482E-05],[107.32769,-3.506E-05],[107.33113,-3.5576E-05],[107.33457,-3.6607E-05],[107.33801,-3.7122E-05],[107.34144,-3.4029E-05],[107.34488,-3.1451E-05],[107.34832,-3.7122E-05],[107.35176,-3.9185E-05],[107.3552,-3.1967E-05],[107.35864,-3.7122E-05],[107.36208,-3.7122E-05],[107.36551,-3.2482E-05],[107.36895,-3.506E-05],[107.37239,-3.6091E-05],[107.37583,-3.6607E-05]]}
-{"quant":[107.528,0.77178],"mems":[[107.43085,-3.6607E-05],[107.43429,-3.8154E-05],[107.43773,-3.7122E-05],[107.44117,-3.4544E-05],[107.4446,-3.4544E-05],[107.44804,-3.8154E-05],[107.45148,-3.6607E-05],[107.45492,-3.6607E-05],[107.45836,-4.0216E-05],[107.4618,-3.1967E-05],[107.46524,-3.042E-05],[107.46867,-3.8154E-05],[107.47211,-4.0216E-05],[107.47555,-3.9185E-05],[107.47899,-3.9185E-05],[107.48243,-3.9185E-05],[107.48587,-3.5576E-05],[107.48931,-3.6607E-05],[107.49275,-3.8669E-05],[107.49618,-3.8154E-05],[107.49962,-3.7122E-05],[107.50306,-3.1451E-05],[107.5065,-3.506E-05],[107.50994,-4.2278E-05],[107.51338,-4.0732E-05],[107.51682,-3.8154E-05],[107.52025,-3.7638E-05],[107.52369,-3.6091E-05],[107.52713,-3.6091E-05],[107.53057,-3.7638E-05],[107.53401,-3.97E-05],[107.53745,-3.7638E-05],[107.54089,-3.7638E-05],[107.54433,-4.1247E-05],[107.54776,-3.8154E-05],[107.5512,-3.7638E-05],[107.55464,-3.7122E-05],[107.55808,-3.2998E-05],[107.56152,-3.2482E-05],[107.56496,-3.4544E-05],[107.5684,-3.9185E-05],[107.57183,-3.7638E-05],[107.57527,-3.2998E-05],[107.57871,-3.3513E-05],[107.58215,-3.1451E-05],[107.58559,-3.3513E-05],[107.58903,-3.6607E-05],[107.59247,-3.3513E-05],[107.59591,-3.6091E-05],[107.59934,-3.4544E-05],[107.60278,-3.4544E-05],[107.60622,-3.97E-05],[107.60966,-3.7638E-05],[107.6131,-3.5576E-05],[107.61654,-3.7638E-05],[107.61998,-3.7122E-05],[107.62341,-2.9904E-05],[107.62685,-2.9904E-05],[107.63029,-3.6091E-05],[107.63373,-3.3513E-05],[107.63717,-3.2482E-05],[107.64061,-4.0216E-05],[107.64405,-3.8154E-05],[107.64749,-3.6607E-05],[107.65092,-3.8154E-05],[107.65436,-3.6091E-05],[107.6578,-3.6607E-05],[107.66124,-3.4544E-05],[107.66468,-3.4029E-05],[107.66812,-3.506E-05],[107.67156,-3.6091E-05],[107.67499,-3.3513E-05],[107.67843,-3.2482E-05],[107.68187,-3.6091E-05],[107.68531,-3.506E-05],[107.68875,-3.2998E-05],[107.69219,-3.1967E-05],[107.69563,-3.4029E-05],[107.69907,-3.8154E-05],[107.7025,-3.2482E-05],[107.70594,-3.2998E-05],[107.70938,-3.7122E-05],[107.71282,-3.3513E-05],[107.71626,-3.7638E-05],[107.7197,-3.9185E-05],[107.72314,-3.5576E-05],[107.72657,-3.7122E-05]]}
-{"quant":[107.896,0.74512],"mems":[[107.79879,-3.3513E-05],[107.80223,-3.2998E-05],[107.80566,-3.5576E-05],[107.8091,-3.506E-05],[107.81254,-3.3513E-05],[107.81598,-3.7638E-05],[107.81942,-3.5576E-05],[107.82286,-3.6091E-05],[107.8263,-3.8154E-05],[107.82973,-4.0216E-05],[107.83317,-4.0216E-05],[107.83661,-3.5576E-05],[107.84005,-3.7122E-05],[107.84349,-3.7122E-05],[107.84693,-3.6091E-05],[107.85037,-3.506E-05],[107.85381,-3.7122E-05],[107.85724,-3.8669E-05],[107.86068,-3.506E-05],[107.86412,-3.6607E-05],[107.86756,-3.97E-05],[107.871,-4.1247E-05],[107.87444,-3.506E-05],[107.87788,-3.5576E-05],[107.88131,-4.0216E-05],[107.88475,-3.4029E-05],[107.88819,-3.506E-05],[107.89163,-4.2794E-05],[107.89507,-3.7638E-05],[107.89851,-3.3513E-05],[107.90195,-3.4029E-05],[107.90539,-3.4544E-05],[107.90882,-4.0732E-05],[107.91226,-3.7122E-05],[107.9157,-3.7122E-05],[107.91914,-4.0216E-05],[107.92258,-3.5576E-05],[107.92602,-3.4544E-05],[107.92946,-3.4544E-05],[107.93289,-3.8669E-05],[107.93633,-3.506E-05],[107.93977,-3.0935E-05],[107.94321,-2.9904E-05],[107.94665,-3.3513E-05],[107.95009,-3.97E-05],[107.95353,-3.4029E-05],[107.95697,-3.3513E-05],[107.9604,-3.5576E-05],[107.96384,-3.6091E-05],[107.96728,-4.2278E-05],[107.97072,-4.0216E-05],[107.97416,-3.7638E-05],[107.9776,-3.6091E-05],[107.98104,-3.2482E-05],[107.98447,-3.506E-05],[107.98791,-3.7638E-05],[107.99135,-3.7122E-05],[107.99479,-3.4029E-05],[107.99823,-3.3513E-05],[108.00167,-3.8154E-05],[108.00511,-3.8669E-05],[108.00855,-3.8669E-05],[108.01198,-4.0216E-05],[108.01542,-3.5576E-05],[108.01886,-3.4029E-05],[108.0223,-3.6607E-05],[108.02574,-3.2998E-05],[108.02918,-3.7122E-05],[108.03262,-4.2794E-05],[108.03605,-3.8669E-05],[108.03949,-3.6607E-05],[108.04293,-3.7638E-05],[108.04637,-3.4544E-05],[108.04981,-3.8154E-05],[108.05325,-4.4341E-05],[108.05669,-3.97E-05],[108.06013,-3.506E-05],[108.06356,-3.2482E-05],[108.067,-3.2998E-05],[108.07044,-3.7638E-05],[108.07388,-3.7638E-05],[108.07732,-3.6091E-05],[108.08076,-3.6091E-05],[108.0842,-3.8154E-05],[108.08763,-3.8154E-05],[108.09107,-3.506E-05],[108.09451,-3.5576E-05]]}
-{"quant":[108.262,0.70958],"mems":[[108.16329,-3.4544E-05],[108.16672,-3.7122E-05],[108.17016,-3.506E-05],[108.1736,-3.4544E-05],[108.17704,-3.7122E-05],[108.18048,-3.1967E-05],[108.18392,-3.2482E-05],[108.18736,-3.4544E-05],[108.19079,-3.97E-05],[108.19423,-3.9185E-05],[108.19767,-3.0935E-05],[108.20111,-3.2482E-05],[108.20455,-3.2998E-05],[108.20799,-3.7638E-05],[108.21143,-4.0216E-05],[108.21487,-3.506E-05],[108.2183,-3.7122E-05],[108.22174,-3.506E-05],[108.22518,-3.4029E-05],[108.22862,-3.5576E-05],[108.23206,-3.7638E-05],[108.2355,-4.0216E-05],[108.23894,-3.9185E-05],[108.24237,-3.6607E-05],[108.24581,-3.5576E-05],[108.24925,-3.9185E-05],[108.25269,-3.7122E-05],[108.25613,-3.4029E-05],[108.25957,-3.1967E-05],[108.26301,-3.6607E-05],[108.26645,-4.2278E-05],[108.26988,-3.8154E-05],[108.27332,-3.7122E-05],[108.27676,-3.3513E-05],[108.2802,-3.3513E-05],[108.28364,-3.506E-05],[108.28708,-3.4029E-05],[108.29052,-3.6607E-05],[108.29395,-3.7122E-05],[108.29739,-3.5576E-05],[108.30083,-3.0935E-05],[108.30427,-3.4544E-05],[108.30771,-3.9185E-05],[108.31115,-4.0732E-05],[108.31459,-3.9185E-05],[108.31803,-3.8154E-05],[108.32146,-4.1247E-05],[108.3249,-3.7122E-05],[108.32834,-3.6091E-05],[108.33178,-3.8154E-05],[108.33522,-3.97E-05],[108.33866,-3.6607E-05],[108.3421,-3.4544E-05],[108.34553,-3.6607E-05],[108.34897,-3.6091E-05],[108.35241,-4.0216E-05],[108.35585,-3.6607E-05],[108.35929,-3.4029E-05],[108.36273,-3.7122E-05],[108.36617,-3.7638E-05],[108.36961,-3.8154E-05],[108.37304,-3.4029E-05],[108.37648,-3.3513E-05],[108.37992,-3.4029E-05],[108.38336,-3.7122E-05],[108.3868,-3.6091E-05],[108.39024,-3.1967E-05],[108.39368,-3.9185E-05],[108.39711,-3.7638E-05],[108.40055,-3.4029E-05],[108.40399,-3.2998E-05],[108.40743,-3.4029E-05],[108.41087,-4.3825E-05],[108.41431,-4.2278E-05],[108.41775,-3.1451E-05],[108.42119,-3.4029E-05],[108.42462,-3.3513E-05],[108.42806,-3.1967E-05],[108.4315,-3.6091E-05],[108.43494,-3.6091E-05],[108.43838,-3.7638E-05],[108.44182,-3.4029E-05],[108.44526,-3.1967E-05],[108.44869,-3.6091E-05],[108.45213,-3.5576E-05],[108.45557,-3.8669E-05],[108.45901,-3.7122E-05]]}
-{"quant":[108.624,0.67189],"mems":[[108.52778,-3.0935E-05],[108.53122,-3.4544E-05],[108.53466,-3.8154E-05],[108.5381,-3.97E-05],[108.54154,-3.3513E-05],[108.54498,-3.506E-05],[108.54842,-3.5576E-05],[108.55185,-3.1451E-05],[108.55529,-3.4544E-05],[108.55873,-3.506E-05],[108.56217,-3.2998E-05],[108.56561,-3.8669E-05],[108.56905,-4.1763E-05],[108.57249,-3.7122E-05],[108.57593,-3.8669E-05],[108.57936,-4.0732E-05],[108.5828,-3.5576E-05],[108.58624,-3.5576E-05],[108.58968,-3.8154E-05],[108.59312,-3.9185E-05],[108.59656,-3.9185E-05],[108.6,-3.5576E-05],[108.60343,-3.2998E-05],[108.60687,-3.5576E-05],[108.61031,-4.1247E-05],[108.61375,-3.97E-05],[108.61719,-4.0732E-05],[108.62063,-3.9185E-05],[108.62407,-3.8154E-05],[108.62751,-3.97E-05],[108.63094,-3.506E-05],[108.63438,-3.7638E-05],[108.63782,-3.8669E-05],[108.64126,-3.2998E-05],[108.6447,-3.5576E-05],[108.64814,-3.9185E-05],[108.65158,-3.3513E-05],[108.65501,-3.1451E-05],[108.65845,-3.3513E-05],[108.66189,-3.2998E-05],[108.66533,-3.6091E-05],[108.66877,-3.7122E-05],[108.67221,-3.8669E-05],[108.67565,-3.8669E-05],[108.67909,-3.8669E-05],[108.68252,-3.5576E-05],[108.68596,-3.1451E-05],[108.6894,-3.3513E-05],[108.69284,-3.3513E-05],[108.69628,-3.5576E-05],[108.69972,-3.6607E-05],[108.70316,-3.5576E-05],[108.70659,-3.2998E-05],[108.71003,-3.506E-05],[108.71347,-3.506E-05],[108.71691,-3.6607E-05],[108.72035,-4.0216E-05],[108.72379,-3.8154E-05],[108.72723,-4.0216E-05],[108.73067,-4.0732E-05],[108.7341,-3.9185E-05],[108.73754,-3.506E-05],[108.74098,-3.3513E-05],[108.74442,-3.6091E-05],[108.74786,-3.506E-05],[108.7513,-4.0732E-05],[108.75474,-4.1763E-05],[108.75817,-3.4029E-05],[108.76161,-3.4544E-05],[108.76505,-3.1967E-05],[108.76849,-3.2482E-05],[108.77193,-3.6607E-05],[108.77537,-3.042E-05],[108.77881,-3.4544E-05],[108.78225,-4.0732E-05],[108.78568,-3.7122E-05],[108.78912,-3.4544E-05],[108.79256,-3.3513E-05],[108.796,-3.506E-05],[108.79944,-3.5576E-05],[108.80288,-3.6607E-05],[108.80632,-3.4544E-05],[108.80975,-3.5576E-05],[108.81319,-3.9185E-05],[108.81663,-3.7122E-05],[108.82007,-3.8669E-05],[108.82351,-3.8669E-05],[108.82695,-3.8154E-05]]}
-{"quant":[108.989,0.63995],"mems":[[108.89228,-4.0732E-05],[108.89572,-3.9185E-05],[108.89916,-3.97E-05],[108.9026,-3.506E-05],[108.90604,-3.6607E-05],[108.90948,-3.6607E-05],[108.91291,-2.9904E-05],[108.91635,-3.2998E-05],[108.91979,-3.2998E-05],[108.92323,-3.506E-05],[108.92667,-3.8154E-05],[108.93011,-3.6607E-05],[108.93355,-3.8669E-05],[108.93699,-3.3513E-05],[108.94042,-3.1967E-05],[108.94386,-3.506E-05],[108.9473,-3.6607E-05],[108.95074,-3.6607E-05],[108.95418,-3.6607E-05],[108.95762,-3.506E-05],[108.96106,-3.4029E-05],[108.96449,-3.4544E-05],[108.96793,-3.2998E-05],[108.97137,-3.8154E-05],[108.97481,-3.7638E-05],[108.97825,-3.8154E-05],[108.98169,-3.7122E-05],[108.98513,-3.5576E-05],[108.98857,-3.8154E-05],[108.992,-3.2998E-05],[108.99544,-3.3513E-05],[108.99888,-3.2482E-05],[109.00232,-3.1451E-05],[109.00576,-3.97E-05],[109.0092,-3.9185E-05],[109.01264,-3.4029E-05],[109.01607,-3.9185E-05],[109.01951,-3.7122E-05],[109.02295,-3.4029E-05],[109.02639,-3.97E-05],[109.02983,-3.8154E-05],[109.03327,-3.8154E-05],[109.03671,-3.6091E-05],[109.04015,-3.4029E-05],[109.04358,-3.8154E-05],[109.04702,-3.9185E-05],[109.05046,-4.2278E-05],[109.0539,-3.97E-05],[109.05734,-3.4544E-05],[109.06078,-3.8669E-05],[109.06422,-3.4029E-05],[109.06765,-3.6607E-05],[109.07109,-3.5576E-05],[109.07453,-3.0935E-05],[109.07797,-3.97E-05],[109.08141,-3.6091E-05],[109.08485,-3.8154E-05],[109.08829,-4.2794E-05],[109.09173,-3.97E-05],[109.09516,-3.6607E-05],[109.0986,-3.506E-05],[109.10204,-3.5576E-05],[109.10548,-3.4029E-05],[109.10892,-3.9185E-05],[109.11236,-3.6091E-05],[109.1158,-3.1967E-05],[109.11923,-3.7638E-05],[109.12267,-3.7122E-05],[109.12611,-3.5576E-05],[109.12955,-3.7638E-05],[109.13299,-3.5576E-05],[109.13643,-3.506E-05],[109.13987,-3.5576E-05],[109.14331,-3.2998E-05],[109.14674,-3.506E-05],[109.15018,-3.6091E-05],[109.15362,-3.4029E-05],[109.15706,-3.4029E-05],[109.1605,-3.3513E-05],[109.16394,-3.506E-05],[109.16738,-3.7638E-05],[109.17081,-3.97E-05],[109.17425,-3.97E-05],[109.17769,-3.8669E-05],[109.18113,-3.506E-05],[109.18457,-3.042E-05],[109.18801,-3.2998E-05]]}
-{"quant":[109.378,0.61503],"mems":[[109.28085,-3.4029E-05],[109.28429,-4.0216E-05],[109.28773,-4.1247E-05],[109.29117,-3.6607E-05],[109.29461,-3.7638E-05],[109.29805,-3.7122E-05],[109.30148,-3.6607E-05],[109.30492,-3.97E-05],[109.30836,-3.7122E-05],[109.3118,-3.5576E-05],[109.31524,-3.506E-05],[109.31868,-3.1451E-05],[109.32212,-2.9904E-05],[109.32555,-3.2998E-05],[109.32899,-3.7122E-05],[109.33243,-3.3513E-05],[109.33587,-3.6091E-05],[109.33931,-3.5576E-05],[109.34275,-3.4029E-05],[109.34619,-3.97E-05],[109.34963,-3.8154E-05],[109.35306,-3.8154E-05],[109.3565,-3.9185E-05],[109.35994,-3.6091E-05],[109.36338,-3.9185E-05],[109.36682,-4.2278E-05],[109.37026,-3.4544E-05],[109.3737,-3.4029E-05],[109.37713,-3.8669E-05],[109.38057,-3.7638E-05],[109.38401,-3.9185E-05],[109.38745,-3.7122E-05],[109.39089,-3.6607E-05],[109.39433,-3.7638E-05],[109.39777,-3.8669E-05],[109.40121,-4.0216E-05],[109.40464,-3.8154E-05],[109.40808,-4.1247E-05],[109.41152,-3.9185E-05],[109.41496,-3.7122E-05],[109.4184,-3.5576E-05],[109.42184,-3.4544E-05],[109.42528,-3.97E-05],[109.42871,-3.5576E-05],[109.43215,-3.4544E-05],[109.43559,-3.8154E-05],[109.43903,-3.7122E-05],[109.44247,-3.7122E-05],[109.44591,-3.97E-05],[109.44935,-3.97E-05],[109.45279,-3.4544E-05],[109.45622,-3.6091E-05],[109.45966,-3.3513E-05],[109.4631,-3.7122E-05],[109.46654,-4.1763E-05],[109.46998,-3.4029E-05],[109.47342,-3.506E-05],[109.47686,-3.8669E-05],[109.48029,-4.0732E-05],[109.48373,-3.9185E-05],[109.48717,-3.6607E-05],[109.49061,-3.6607E-05],[109.49405,-3.7122E-05],[109.49749,-3.8669E-05],[109.50093,-3.7122E-05],[109.50437,-3.4029E-05],[109.5078,-3.8669E-05],[109.51124,-3.9185E-05],[109.51468,-3.4544E-05],[109.51812,-3.7638E-05],[109.52156,-3.6607E-05],[109.525,-3.9185E-05],[109.52844,-4.0732E-05],[109.53187,-4.0216E-05],[109.53531,-3.6091E-05],[109.53875,-3.1451E-05],[109.54219,-3.8154E-05],[109.54563,-3.97E-05],[109.54907,-3.7122E-05],[109.55251,-3.2482E-05],[109.55595,-3.2998E-05],[109.55938,-3.6607E-05],[109.56282,-3.6607E-05],[109.56626,-3.97E-05],[109.5697,-3.8669E-05],[109.57314,-3.97E-05],[109.57658,-3.6091E-05]]}
-{"quant":[109.735,0.5929],"mems":[[109.63503,-3.7638E-05],[109.63847,-3.7122E-05],[109.64191,-3.8154E-05],[109.64535,-3.7122E-05],[109.64879,-3.5576E-05],[109.65223,-3.8154E-05],[109.65567,-3.6091E-05],[109.65911,-3.4544E-05],[109.66254,-3.6607E-05],[109.66598,-3.7638E-05],[109.66942,-3.4029E-05],[109.67286,-3.6091E-05],[109.6763,-3.8669E-05],[109.67974,-3.4029E-05],[109.68318,-3.6091E-05],[109.68661,-3.6091E-05],[109.69005,-2.9904E-05],[109.69349,-3.3513E-05],[109.69693,-4.0216E-05],[109.70037,-3.5576E-05],[109.70381,-3.4544E-05],[109.70725,-3.7638E-05],[109.71069,-3.4544E-05],[109.71412,-3.6091E-05],[109.71756,-3.7122E-05],[109.721,-3.7638E-05],[109.72444,-3.97E-05],[109.72788,-3.7638E-05],[109.73132,-3.6607E-05],[109.73476,-3.2998E-05],[109.73819,-3.506E-05],[109.74163,-3.8669E-05],[109.74507,-3.5576E-05],[109.74851,-3.5576E-05],[109.75195,-3.1967E-05],[109.75539,-3.3513E-05],[109.75883,-4.1763E-05],[109.76227,-3.7638E-05],[109.7657,-3.6091E-05],[109.76914,-3.8154E-05],[109.77258,-3.6091E-05],[109.77602,-3.6091E-05],[109.77946,-3.6607E-05],[109.7829,-3.4544E-05],[109.78634,-3.6607E-05],[109.78977,-3.6607E-05],[109.79321,-3.4544E-05],[109.79665,-3.2998E-05],[109.80009,-3.1967E-05],[109.80353,-3.6091E-05],[109.80697,-3.7122E-05],[109.81041,-3.6607E-05],[109.81385,-3.5576E-05],[109.81728,-3.4029E-05],[109.82072,-3.4544E-05],[109.82416,-3.2998E-05],[109.8276,-3.5576E-05],[109.83104,-3.97E-05],[109.83448,-3.8154E-05],[109.83792,-3.6607E-05],[109.84135,-3.506E-05],[109.84479,-3.506E-05],[109.84823,-3.6607E-05],[109.85167,-3.6091E-05],[109.85511,-3.5576E-05],[109.85855,-3.6607E-05],[109.86199,-3.6091E-05],[109.86543,-3.3513E-05],[109.86886,-3.8669E-05],[109.8723,-4.0216E-05],[109.87574,-3.506E-05],[109.87918,-3.6091E-05],[109.88262,-3.8154E-05],[109.88606,-3.97E-05],[109.8895,-3.6091E-05],[109.89293,-3.7638E-05],[109.89637,-3.97E-05],[109.89981,-3.7122E-05],[109.90325,-3.8669E-05],[109.90669,-3.7122E-05],[109.91013,-3.8669E-05],[109.91357,-3.4544E-05],[109.91701,-2.8873E-05],[109.92044,-3.2998E-05],[109.92388,-3.2998E-05],[109.92732,-3.506E-05],[109.93076,-3.6091E-05],[109.9342,-3.5576E-05]]}
-{"quant":[110.091,0.56168],"mems":[[109.99266,-3.4029E-05],[109.99609,-3.5576E-05],[109.99953,-3.6091E-05],[110.00297,-4.0216E-05],[110.00641,-4.0732E-05],[110.00985,-3.6091E-05],[110.01329,-3.8669E-05],[110.01673,-3.6607E-05],[110.02017,-3.6091E-05],[110.0236,-4.1763E-05],[110.02704,-3.8669E-05],[110.03048,-3.7122E-05],[110.03392,-3.506E-05],[110.03736,-3.4029E-05],[110.0408,-3.6607E-05],[110.04424,-3.9185E-05],[110.04767,-3.7122E-05],[110.05111,-3.2482E-05],[110.05455,-3.7122E-05],[110.05799,-3.506E-05],[110.06143,-3.3513E-05],[110.06487,-3.7122E-05],[110.06831,-3.3513E-05],[110.07175,-3.3513E-05],[110.07518,-3.1967E-05],[110.07862,-3.5576E-05],[110.08206,-3.8669E-05],[110.0855,-3.9185E-05],[110.08894,-3.8154E-05],[110.09238,-3.4029E-05],[110.09582,-3.4029E-05],[110.09925,-3.2998E-05],[110.10269,-3.506E-05],[110.10613,-3.7122E-05],[110.10957,-3.4029E-05],[110.11301,-3.6091E-05],[110.11645,-4.2794E-05],[110.11989,-3.7638E-05],[110.12333,-3.2998E-05],[110.12676,-3.8154E-05],[110.1302,-3.7638E-05],[110.13364,-3.8154E-05],[110.13708,-3.8154E-05],[110.14052,-3.7638E-05],[110.14396,-3.97E-05],[110.1474,-3.6091E-05],[110.15083,-4.1763E-05],[110.15427,-4.0216E-05],[110.15771,-3.4544E-05],[110.16115,-3.6607E-05],[110.16459,-3.4544E-05],[110.16803,-3.9185E-05],[110.17147,-3.8154E-05],[110.17491,-3.3513E-05],[110.17834,-3.4544E-05],[110.18178,-3.6607E-05],[110.18522,-3.9185E-05],[110.18866,-3.8154E-05],[110.1921,-3.6607E-05],[110.19554,-3.5576E-05],[110.19898,-3.3513E-05],[110.20241,-3.5576E-05],[110.20585,-4.3309E-05],[110.20929,-3.8669E-05],[110.21273,-3.506E-05],[110.21617,-3.8669E-05],[110.21961,-3.2482E-05],[110.22305,-3.6091E-05],[110.22649,-4.0216E-05],[110.22992,-3.7638E-05],[110.23336,-3.8154E-05],[110.2368,-3.8154E-05],[110.24024,-3.7122E-05],[110.24368,-3.6607E-05],[110.24712,-3.4544E-05],[110.25056,-3.506E-05],[110.25399,-3.6091E-05],[110.25743,-3.5576E-05],[110.26087,-3.8669E-05],[110.26431,-4.0216E-05],[110.26775,-3.6607E-05],[110.27119,-3.6091E-05],[110.27463,-3.8669E-05],[110.27807,-3.8154E-05],[110.2815,-3.7122E-05],[110.28494,-3.7638E-05],[110.28838,-3.97E-05]]}
-{"quant":[110.453,0.52821],"mems":[[110.35372,-3.6607E-05],[110.35715,-3.7638E-05],[110.36059,-3.7122E-05],[110.36403,-3.8154E-05],[110.36747,-3.8669E-05],[110.37091,-4.0216E-05],[110.37435,-3.6091E-05],[110.37779,-3.2998E-05],[110.38123,-3.7638E-05],[110.38466,-3.6607E-05],[110.3881,-3.6091E-05],[110.39154,-3.506E-05],[110.39498,-3.4544E-05],[110.39842,-3.6091E-05],[110.40186,-3.506E-05],[110.4053,-3.5576E-05],[110.40873,-3.6091E-05],[110.41217,-3.97E-05],[110.41561,-3.6091E-05],[110.41905,-3.2482E-05],[110.42249,-3.7638E-05],[110.42593,-3.9185E-05],[110.42937,-3.7122E-05],[110.43281,-3.506E-05],[110.43624,-3.7638E-05],[110.43968,-3.7122E-05],[110.44312,-3.6091E-05],[110.44656,-4.0732E-05],[110.45,-3.8669E-05],[110.45344,-4.0216E-05],[110.45688,-4.1763E-05],[110.46031,-3.4544E-05],[110.46375,-3.6607E-05],[110.46719,-4.0216E-05],[110.47063,-3.5576E-05],[110.47407,-3.6607E-05],[110.47751,-3.2482E-05],[110.48095,-3.1967E-05],[110.48439,-4.0216E-05],[110.48782,-3.9185E-05],[110.49126,-3.8669E-05],[110.4947,-3.8154E-05],[110.49814,-3.8154E-05],[110.50158,-3.6091E-05],[110.50502,-3.042E-05],[110.50846,-3.7122E-05],[110.51189,-3.7638E-05],[110.51533,-3.506E-05],[110.51877,-3.506E-05],[110.52221,-3.4029E-05],[110.52565,-4.0216E-05],[110.52909,-3.7122E-05],[110.53253,-3.5576E-05],[110.53597,-3.8154E-05],[110.5394,-3.4029E-05],[110.54284,-4.0216E-05],[110.54628,-4.5887E-05],[110.54972,-4.1247E-05],[110.55316,-3.7122E-05],[110.5566,-3.4029E-05],[110.56004,-3.3513E-05],[110.56347,-3.8154E-05],[110.56691,-3.6607E-05],[110.57035,-3.7638E-05],[110.57379,-3.9185E-05],[110.57723,-3.6091E-05],[110.58067,-3.6091E-05],[110.58411,-3.7638E-05],[110.58755,-4.2278E-05],[110.59098,-3.7638E-05],[110.59442,-3.5576E-05],[110.59786,-3.7638E-05],[110.6013,-3.2482E-05],[110.60474,-3.4544E-05],[110.60818,-3.7122E-05],[110.61162,-4.0732E-05],[110.61505,-3.6607E-05],[110.61849,-3.1451E-05],[110.62193,-3.4544E-05],[110.62537,-3.2998E-05],[110.62881,-3.7638E-05],[110.63225,-4.1247E-05],[110.63569,-3.97E-05],[110.63913,-3.6607E-05],[110.64256,-3.4544E-05],[110.646,-3.506E-05],[110.64944,-3.2998E-05],[110.65288,-3.7122E-05]]}
-{"quant":[110.791,0.49536],"mems":[[110.69414,-3.7122E-05],[110.69758,-3.7122E-05],[110.70102,-3.2482E-05],[110.70446,-3.506E-05],[110.7079,-4.1247E-05],[110.71134,-3.97E-05],[110.71478,-3.4544E-05],[110.71821,-3.2482E-05],[110.72165,-3.3513E-05],[110.72509,-3.9185E-05],[110.72853,-3.9185E-05],[110.73197,-3.2998E-05],[110.73541,-3.2998E-05],[110.73885,-3.9185E-05],[110.74229,-3.7638E-05],[110.74572,-3.7122E-05],[110.74916,-3.9185E-05],[110.7526,-3.6091E-05],[110.75604,-3.6607E-05],[110.75948,-3.1451E-05],[110.76292,-3.1967E-05],[110.76636,-3.9185E-05],[110.76979,-4.0732E-05],[110.77323,-4.0216E-05],[110.77667,-4.1247E-05],[110.78011,-3.7122E-05],[110.78355,-3.3513E-05],[110.78699,-3.8669E-05],[110.79043,-3.8154E-05],[110.79387,-3.8154E-05],[110.7973,-3.2482E-05],[110.80074,-3.2482E-05],[110.80418,-3.8669E-05],[110.80762,-3.3513E-05],[110.81106,-3.8154E-05],[110.8145,-3.4544E-05],[110.81794,-3.1967E-05],[110.82137,-3.7638E-05],[110.82481,-3.6091E-05],[110.82825,-4.0216E-05],[110.83169,-3.97E-05],[110.83513,-3.7638E-05],[110.83857,-3.7638E-05],[110.84201,-4.0216E-05],[110.84545,-3.8669E-05],[110.84888,-3.506E-05],[110.85232,-3.8154E-05],[110.85576,-3.6091E-05],[110.8592,-3.3513E-05],[110.86264,-3.4029E-05],[110.86608,-3.4544E-05],[110.86952,-3.6091E-05],[110.87295,-4.0732E-05],[110.87639,-4.0732E-05],[110.87983,-3.2998E-05],[110.88327,-3.6091E-05],[110.88671,-4.0216E-05],[110.89015,-3.5576E-05],[110.89359,-3.2998E-05],[110.89703,-3.506E-05],[110.90046,-3.506E-05],[110.9039,-3.6607E-05],[110.90734,-3.97E-05],[110.91078,-3.6091E-05],[110.91422,-3.4544E-05],[110.91766,-3.2998E-05],[110.9211,-3.4029E-05],[110.92453,-3.9185E-05],[110.92797,-3.7638E-05],[110.93141,-3.5576E-05],[110.93485,-3.4029E-05],[110.93829,-3.6091E-05],[110.94173,-3.7122E-05],[110.94517,-3.6091E-05],[110.94861,-3.97E-05],[110.95204,-3.9185E-05],[110.95548,-3.8154E-05],[110.95892,-3.7638E-05],[110.96236,-3.6091E-05],[110.9658,-3.7638E-05],[110.96924,-4.1763E-05],[110.97268,-3.6091E-05],[110.97611,-3.2998E-05],[110.97955,-3.5576E-05],[110.98299,-3.7122E-05],[110.98643,-4.1247E-05],[110.98987,-3.97E-05]]}
-{"quant":[111.147,0.44808],"mems":[[111.04833,-3.7122E-05],[111.05177,-3.8154E-05],[111.0552,-3.6091E-05],[111.05864,-3.1451E-05],[111.06208,-3.2482E-05],[111.06552,-3.3513E-05],[111.06896,-3.3513E-05],[111.0724,-3.2482E-05],[111.07584,-3.1967E-05],[111.07927,-3.5576E-05],[111.08271,-3.9185E-05],[111.08615,-3.9185E-05],[111.08959,-3.9185E-05],[111.09303,-3.8154E-05],[111.09647,-3.4544E-05],[111.09991,-3.6607E-05],[111.10335,-3.5576E-05],[111.10678,-3.4544E-05],[111.11022,-3.9185E-05],[111.11366,-3.6607E-05],[111.1171,-3.4029E-05],[111.12054,-3.7638E-05],[111.12398,-3.7638E-05],[111.12742,-3.4029E-05],[111.13085,-3.4544E-05],[111.13429,-3.8154E-05],[111.13773,-3.7122E-05],[111.14117,-4.0216E-05],[111.14461,-4.0216E-05],[111.14805,-3.6607E-05],[111.15149,-3.7122E-05],[111.15493,-3.1451E-05],[111.15836,-3.1451E-05],[111.1618,-3.4029E-05],[111.16524,-3.2482E-05],[111.16868,-3.9185E-05],[111.17212,-3.4029E-05],[111.17556,-2.8873E-05],[111.179,-3.3513E-05],[111.18243,-3.1967E-05],[111.18587,-3.3513E-05],[111.18931,-3.8154E-05],[111.19275,-3.7638E-05],[111.19619,-3.6091E-05],[111.19963,-3.3513E-05],[111.20307,-3.3513E-05],[111.20651,-3.506E-05],[111.20994,-3.8669E-05],[111.21338,-4.1247E-05],[111.21682,-3.6091E-05],[111.22026,-3.4544E-05],[111.2237,-3.5576E-05],[111.22714,-3.4544E-05],[111.23058,-3.5576E-05],[111.23401,-3.7638E-05],[111.23745,-3.7638E-05],[111.24089,-3.6607E-05],[111.24433,-3.4544E-05],[111.24777,-3.6091E-05],[111.25121,-4.1247E-05],[111.25465,-3.8154E-05],[111.25809,-3.6091E-05],[111.26152,-3.6607E-05],[111.26496,-3.4029E-05],[111.2684,-3.6607E-05],[111.27184,-3.3513E-05],[111.27528,-3.2482E-05],[111.27872,-3.2482E-05],[111.28216,-3.1967E-05],[111.28559,-3.6091E-05],[111.28903,-3.2482E-05],[111.29247,-3.5576E-05],[111.29591,-3.7638E-05],[111.29935,-3.042E-05],[111.30279,-3.6607E-05],[111.30623,-3.6607E-05],[111.30967,-3.6091E-05],[111.3131,-3.9185E-05],[111.31654,-3.6607E-05],[111.31998,-4.1763E-05],[111.32342,-3.8669E-05],[111.32686,-3.4029E-05],[111.3303,-3.7122E-05],[111.33374,-3.1451E-05],[111.33717,-3.2482E-05],[111.34061,-3.7638E-05],[111.34405,-3.2998E-05]]}
-{"quant":[111.495,0.39729],"mems":[[111.39562,-3.5576E-05],[111.39906,-3.8154E-05],[111.4025,-3.4544E-05],[111.40594,-3.5576E-05],[111.40937,-3.7122E-05],[111.41281,-3.4544E-05],[111.41625,-3.4544E-05],[111.41969,-3.6091E-05],[111.42312,-3.97E-05],[111.42656,-3.6607E-05],[111.43,-3.7638E-05],[111.43343,-3.8669E-05],[111.43687,-3.4029E-05],[111.44031,-3.5576E-05],[111.44375,-3.5576E-05],[111.44718,-3.7122E-05],[111.45062,-3.8154E-05],[111.45406,-3.4544E-05],[111.4575,-3.6091E-05],[111.46093,-3.6091E-05],[111.46437,-3.506E-05],[111.46781,-3.6607E-05],[111.47125,-3.8154E-05],[111.47468,-3.4544E-05],[111.47812,-3.1967E-05],[111.48156,-3.6607E-05],[111.48499,-3.8669E-05],[111.48843,-3.6607E-05],[111.49187,-3.8154E-05],[111.49531,-3.7122E-05],[111.49874,-3.7122E-05],[111.50218,-4.0216E-05],[111.50562,-4.3825E-05],[111.50906,-4.3825E-05],[111.51249,-4.0216E-05],[111.51593,-3.6607E-05],[111.51937,-3.4029E-05],[111.52281,-3.7122E-05],[111.52624,-3.5576E-05],[111.52968,-3.4544E-05],[111.53312,-3.6607E-05],[111.53655,-3.4029E-05],[111.53999,-3.7122E-05],[111.54343,-3.7638E-05],[111.54687,-3.5576E-05],[111.5503,-3.5576E-05],[111.55374,-3.4544E-05],[111.55718,-3.2998E-05],[111.56062,-3.7638E-05],[111.56405,-3.7122E-05],[111.56749,-3.506E-05],[111.57093,-3.97E-05],[111.57437,-3.4029E-05],[111.5778,-3.506E-05],[111.58124,-3.6607E-05],[111.58468,-3.506E-05],[111.58811,-3.4544E-05],[111.59155,-3.1451E-05],[111.59499,-3.7122E-05],[111.59843,-3.1451E-05],[111.60186,-3.2482E-05],[111.6053,-3.7122E-05],[111.60874,-3.4029E-05],[111.61218,-3.8154E-05],[111.61561,-3.506E-05],[111.61905,-3.9185E-05],[111.62249,-4.0216E-05],[111.62593,-3.5576E-05],[111.62936,-3.8154E-05],[111.6328,-3.506E-05],[111.63624,-3.6607E-05],[111.63967,-3.8154E-05],[111.64311,-3.5576E-05],[111.64655,-3.7638E-05],[111.64999,-3.9185E-05],[111.65342,-3.5576E-05],[111.65686,-3.4544E-05],[111.6603,-3.7122E-05],[111.66374,-3.6607E-05],[111.66717,-3.9185E-05],[111.67061,-3.8154E-05],[111.67405,-3.4544E-05],[111.67749,-3.4029E-05],[111.68092,-3.4544E-05],[111.68436,-4.0216E-05],[111.6878,-3.9185E-05],[111.69123,-3.6091E-05],[111.69467,-4.0216E-05]]}
-{"quant":[111.938,0.36189],"mems":[[111.83904,-3.1967E-05],[111.84248,-3.8669E-05],[111.84591,-3.7638E-05],[111.84935,-3.7638E-05],[111.85279,-3.8669E-05],[111.85623,-3.5576E-05],[111.85966,-3.5576E-05],[111.8631,-4.0216E-05],[111.86654,-4.2794E-05],[111.86998,-3.7122E-05],[111.87341,-3.506E-05],[111.87685,-3.1967E-05],[111.88029,-3.5576E-05],[111.88373,-3.8154E-05],[111.88716,-3.6607E-05],[111.8906,-3.8669E-05],[111.89404,-3.2998E-05],[111.89747,-3.4029E-05],[111.90091,-3.6607E-05],[111.90435,-3.7122E-05],[111.90779,-4.1247E-05],[111.91122,-3.8154E-05],[111.91466,-3.7638E-05],[111.9181,-3.8154E-05],[111.92154,-3.6607E-05],[111.92497,-4.0216E-05],[111.92841,-4.2794E-05],[111.93185,-3.7638E-05],[111.93529,-3.506E-05],[111.93872,-3.6607E-05],[111.94216,-3.5576E-05],[111.9456,-3.4544E-05],[111.94903,-3.506E-05],[111.95247,-3.4029E-05],[111.95591,-3.4029E-05],[111.95935,-3.8669E-05],[111.96278,-3.8669E-05],[111.96622,-3.7638E-05],[111.96966,-3.8669E-05],[111.9731,-3.4544E-05],[111.97653,-3.2482E-05],[111.97997,-3.4029E-05],[111.98341,-3.4029E-05],[111.98685,-3.7122E-05],[111.99028,-3.2482E-05],[111.99372,-3.4544E-05],[111.99716,-3.8154E-05],[112.00059,-3.2482E-05],[112.00403,-3.8669E-05],[112.00747,-3.7122E-05],[112.01091,-3.3513E-05],[112.01434,-3.9185E-05],[112.01778,-3.8669E-05],[112.02122,-3.7122E-05],[112.02466,-3.8669E-05],[112.02809,-4.0216E-05],[112.03153,-3.7638E-05],[112.03497,-3.5576E-05],[112.03841,-3.5576E-05],[112.04184,-3.6607E-05],[112.04528,-3.7122E-05],[112.04872,-3.0935E-05],[112.05215,-3.0935E-05],[112.05559,-3.8154E-05],[112.05903,-3.8154E-05],[112.06247,-3.6607E-05],[112.0659,-3.5576E-05],[112.06934,-3.5576E-05],[112.07278,-3.3513E-05],[112.07622,-3.2998E-05],[112.07965,-3.5576E-05],[112.08309,-3.7638E-05],[112.08653,-3.7638E-05],[112.08997,-3.6091E-05],[112.0934,-3.6091E-05],[112.09684,-3.3513E-05],[112.10028,-3.1967E-05],[112.10371,-3.8154E-05],[112.10715,-3.97E-05],[112.11059,-3.8669E-05],[112.11403,-3.7638E-05],[112.11746,-3.506E-05],[112.1209,-3.0935E-05],[112.12434,-3.2482E-05],[112.12778,-3.9185E-05],[112.13121,-3.6091E-05],[112.13465,-3.6091E-05]]}
-{"quant":[112.288,0.33558],"mems":[[112.18965,-3.506E-05],[112.19309,-3.4029E-05],[112.19652,-3.5576E-05],[112.19996,-3.6607E-05],[112.2034,-3.6607E-05],[112.20683,-3.6607E-05],[112.21027,-3.5576E-05],[112.21371,-3.7122E-05],[112.21715,-3.5576E-05],[112.22058,-3.5576E-05],[112.22402,-4.3309E-05],[112.22746,-3.7638E-05],[112.2309,-3.2998E-05],[112.23433,-3.5576E-05],[112.23777,-3.2998E-05],[112.24121,-3.9185E-05],[112.24465,-4.1247E-05],[112.24808,-3.6091E-05],[112.25152,-3.8669E-05],[112.25496,-3.7638E-05],[112.25839,-3.506E-05],[112.26183,-3.7638E-05],[112.26527,-3.6091E-05],[112.26871,-4.0216E-05],[112.27214,-3.7638E-05],[112.27558,-2.8873E-05],[112.27902,-3.6607E-05],[112.28246,-3.5576E-05],[112.28589,-3.2998E-05],[112.28933,-3.97E-05],[112.29277,-3.6607E-05],[112.29621,-3.5576E-05],[112.29964,-3.7638E-05],[112.30308,-3.7638E-05],[112.30652,-3.6091E-05],[112.30995,-3.4029E-05],[112.31339,-3.6607E-05],[112.31683,-3.4544E-05],[112.32027,-3.0935E-05],[112.3237,-3.9185E-05],[112.32714,-3.97E-05],[112.33058,-3.4544E-05],[112.33402,-3.97E-05],[112.33745,-3.8669E-05],[112.34089,-3.7638E-05],[112.34433,-3.506E-05],[112.34777,-3.1451E-05],[112.3512,-3.7122E-05],[112.35464,-3.9185E-05],[112.35808,-3.6607E-05],[112.36151,-3.5576E-05],[112.36495,-3.7122E-05],[112.36839,-3.7638E-05],[112.37183,-3.8669E-05],[112.37526,-3.506E-05],[112.3787,-3.2998E-05],[112.38214,-3.7638E-05],[112.38558,-3.6607E-05],[112.38901,-3.5576E-05],[112.39245,-3.6091E-05],[112.39589,-3.8154E-05],[112.39933,-3.506E-05],[112.40276,-3.4544E-05],[112.4062,-3.8669E-05],[112.40964,-3.042E-05],[112.41307,-3.1967E-05],[112.41651,-3.8669E-05],[112.41995,-3.506E-05],[112.42339,-3.7122E-05],[112.42682,-3.8154E-05],[112.43026,-3.5576E-05],[112.4337,-3.6607E-05],[112.43714,-3.5576E-05],[112.44057,-3.2482E-05],[112.44401,-3.4029E-05],[112.44745,-4.0216E-05],[112.45089,-3.8154E-05],[112.45432,-3.7122E-05],[112.45776,-3.6091E-05],[112.4612,-3.506E-05],[112.46463,-3.7122E-05],[112.46807,-3.5576E-05],[112.47151,-3.5576E-05],[112.47495,-3.5576E-05],[112.47838,-3.7122E-05],[112.48182,-3.9185E-05],[112.48526,-3.6091E-05]]}
-{"quant":[112.639,0.30851],"mems":[[112.54026,-3.8154E-05],[112.54369,-3.8154E-05],[112.54713,-3.8154E-05],[112.55057,-3.8154E-05],[112.55401,-3.506E-05],[112.55744,-3.506E-05],[112.56088,-3.7638E-05],[112.56432,-3.7122E-05],[112.56775,-3.5576E-05],[112.57119,-3.6091E-05],[112.57463,-3.6607E-05],[112.57807,-3.506E-05],[112.5815,-3.4544E-05],[112.58494,-3.5576E-05],[112.58838,-3.7122E-05],[112.59182,-3.6607E-05],[112.59525,-3.4544E-05],[112.59869,-3.6607E-05],[112.60213,-3.506E-05],[112.60557,-3.7638E-05],[112.609,-3.7638E-05],[112.61244,-3.4544E-05],[112.61588,-3.6091E-05],[112.61931,-3.5576E-05],[112.62275,-3.8669E-05],[112.62619,-3.97E-05],[112.62963,-4.0216E-05],[112.63306,-3.8154E-05],[112.6365,-3.7122E-05],[112.63994,-3.6607E-05],[112.64338,-3.7122E-05],[112.64681,-3.7638E-05],[112.65025,-3.4544E-05],[112.65369,-3.8154E-05],[112.65713,-3.4029E-05],[112.66056,-3.2998E-05],[112.664,-3.8154E-05],[112.66744,-3.506E-05],[112.67087,-3.2998E-05],[112.67431,-3.2482E-05],[112.67775,-3.7638E-05],[112.68119,-3.5576E-05],[112.68462,-3.4029E-05],[112.68806,-3.8669E-05],[112.6915,-3.7638E-05],[112.69494,-3.6607E-05],[112.69837,-3.4029E-05],[112.70181,-3.5576E-05],[112.70525,-3.7122E-05],[112.70869,-3.506E-05],[112.71212,-3.506E-05],[112.71556,-3.6091E-05],[112.719,-4.1247E-05],[112.72243,-4.0216E-05],[112.72587,-3.4544E-05],[112.72931,-3.6091E-05],[112.73275,-3.4544E-05],[112.73618,-3.4029E-05],[112.73962,-3.8154E-05],[112.74306,-3.6091E-05],[112.7465,-3.8669E-05],[112.74993,-3.8154E-05],[112.75337,-3.0935E-05],[112.75681,-3.6091E-05],[112.76025,-3.9185E-05],[112.76368,-3.6607E-05],[112.76712,-3.6091E-05],[112.77056,-3.4544E-05],[112.77399,-3.5576E-05],[112.77743,-3.7122E-05],[112.78087,-3.1967E-05],[112.78431,-3.2998E-05],[112.78774,-3.6091E-05],[112.79118,-3.6607E-05],[112.79462,-4.0216E-05],[112.79806,-3.8154E-05],[112.80149,-3.6607E-05],[112.80493,-3.6607E-05],[112.80837,-3.6607E-05],[112.81181,-3.6607E-05],[112.81524,-3.8669E-05],[112.81868,-4.1763E-05],[112.82212,-4.0216E-05],[112.82555,-3.6607E-05],[112.82899,-3.5576E-05],[112.83243,-4.0732E-05],[112.83587,-3.7638E-05]]}
-{"quant":[112.998,0.2807],"mems":[[112.90118,-3.5576E-05],[112.90461,-3.7122E-05],[112.90805,-3.6607E-05],[112.91149,-3.8154E-05],[112.91493,-3.5576E-05],[112.91836,-3.4544E-05],[112.9218,-3.4544E-05],[112.92524,-3.6607E-05],[112.92867,-4.2794E-05],[112.93211,-3.7638E-05],[112.93555,-3.7638E-05],[112.93899,-3.9185E-05],[112.94242,-3.8154E-05],[112.94586,-4.4856E-05],[112.9493,-3.6091E-05],[112.95274,-3.506E-05],[112.95617,-3.8669E-05],[112.95961,-3.506E-05],[112.96305,-4.2794E-05],[112.96649,-3.7122E-05],[112.96992,-3.2482E-05],[112.97336,-3.7122E-05],[112.9768,-3.2482E-05],[112.98023,-3.6091E-05],[112.98367,-3.7122E-05],[112.98711,-3.4544E-05],[112.99055,-3.7638E-05],[112.99398,-3.4544E-05],[112.99742,-3.7122E-05],[113.00086,-4.2278E-05],[113.0043,-3.7638E-05],[113.00773,-3.2998E-05],[113.01117,-3.7122E-05],[113.01461,-3.6607E-05],[113.01805,-3.1451E-05],[113.02148,-3.4544E-05],[113.02492,-3.6607E-05],[113.02836,-3.7122E-05],[113.03179,-3.6091E-05],[113.03523,-3.6091E-05],[113.03867,-3.6091E-05],[113.04211,-3.2482E-05],[113.04554,-3.506E-05],[113.04898,-3.4029E-05],[113.05242,-3.4544E-05],[113.05586,-3.506E-05],[113.05929,-3.6091E-05],[113.06273,-4.0732E-05],[113.06617,-3.8669E-05],[113.06961,-3.8154E-05],[113.07304,-3.2998E-05],[113.07648,-3.1967E-05],[113.07992,-3.6607E-05],[113.08335,-3.2482E-05],[113.08679,-3.4029E-05],[113.09023,-3.6091E-05],[113.09367,-3.0935E-05],[113.0971,-3.5576E-05],[113.10054,-3.9185E-05],[113.10398,-3.9185E-05],[113.10742,-3.9185E-05],[113.11085,-3.4029E-05],[113.11429,-3.5576E-05],[113.11773,-3.7638E-05],[113.12117,-3.7122E-05],[113.1246,-3.7638E-05],[113.12804,-3.6607E-05],[113.13148,-3.6607E-05],[113.13491,-3.4544E-05],[113.13835,-3.8154E-05],[113.14179,-4.3825E-05],[113.14523,-3.8154E-05],[113.14866,-3.6091E-05],[113.1521,-3.7122E-05],[113.15554,-3.3513E-05],[113.15898,-3.9185E-05],[113.16241,-4.0732E-05],[113.16585,-3.6091E-05],[113.16929,-3.5576E-05],[113.17273,-3.4544E-05],[113.17616,-3.5576E-05],[113.1796,-3.6607E-05],[113.18304,-3.3513E-05],[113.18647,-3.3513E-05],[113.18991,-3.8154E-05],[113.19335,-3.6607E-05],[113.19679,-3.3513E-05]]}
-{"quant":[113.346,0.24121],"mems":[[113.24835,-3.7638E-05],[113.25178,-3.6607E-05],[113.25522,-3.3513E-05],[113.25866,-3.5576E-05],[113.2621,-3.7638E-05],[113.26553,-3.6091E-05],[113.26897,-3.3513E-05],[113.27241,-3.4544E-05],[113.27585,-3.5576E-05],[113.27928,-3.7122E-05],[113.28272,-3.7122E-05],[113.28616,-3.9185E-05],[113.28959,-3.9185E-05],[113.29303,-3.8154E-05],[113.29647,-3.8669E-05],[113.29991,-3.5576E-05],[113.30334,-3.7638E-05],[113.30678,-3.8669E-05],[113.31022,-4.0216E-05],[113.31366,-3.7638E-05],[113.31709,-3.8669E-05],[113.32053,-4.0216E-05],[113.32397,-3.506E-05],[113.32741,-3.7122E-05],[113.33084,-3.5576E-05],[113.33428,-3.5576E-05],[113.33772,-3.9185E-05],[113.34115,-3.7122E-05],[113.34459,-3.6091E-05],[113.34803,-3.6607E-05],[113.35147,-3.7122E-05],[113.3549,-3.5576E-05],[113.35834,-3.506E-05],[113.36178,-3.7122E-05],[113.36522,-3.8154E-05],[113.36865,-3.7122E-05],[113.37209,-3.3513E-05],[113.37553,-3.6091E-05],[113.37897,-3.5576E-05],[113.3824,-3.1451E-05],[113.38584,-3.6607E-05],[113.38928,-3.6607E-05],[113.39271,-3.3513E-05],[113.39615,-3.8154E-05],[113.39959,-4.2278E-05],[113.40303,-4.2794E-05],[113.40646,-3.506E-05],[113.4099,-3.042E-05],[113.41334,-3.4544E-05],[113.41678,-3.1967E-05],[113.42021,-3.1451E-05],[113.42365,-3.506E-05],[113.42709,-3.5576E-05],[113.43053,-3.6091E-05],[113.43396,-3.506E-05],[113.4374,-3.1967E-05],[113.44084,-2.8873E-05],[113.44427,-3.506E-05],[113.44771,-3.9185E-05],[113.45115,-3.4544E-05],[113.45459,-3.3513E-05],[113.45802,-3.5576E-05],[113.46146,-3.4544E-05],[113.4649,-3.4544E-05],[113.46834,-3.8669E-05],[113.47177,-3.8669E-05],[113.47521,-3.6607E-05],[113.47865,-3.5576E-05],[113.48209,-3.506E-05],[113.48552,-3.4029E-05],[113.48896,-3.3513E-05],[113.4924,-3.506E-05],[113.49583,-3.4029E-05],[113.49927,-3.4029E-05],[113.50271,-3.5576E-05],[113.50615,-3.506E-05],[113.50958,-3.6091E-05],[113.51302,-3.7122E-05],[113.51646,-3.6091E-05],[113.5199,-3.7122E-05],[113.52333,-4.0732E-05],[113.52677,-3.6607E-05],[113.53021,-3.1451E-05],[113.53365,-3.4544E-05],[113.53708,-3.4029E-05],[113.54052,-3.8669E-05],[113.54396,-3.9185E-05]]}
-{"quant":[113.717,0.19391],"mems":[[113.61958,-3.6607E-05],[113.62302,-3.8154E-05],[113.62645,-3.6607E-05],[113.62989,-3.2998E-05],[113.63333,-2.8357E-05],[113.63677,-3.0935E-05],[113.6402,-3.9185E-05],[113.64364,-3.97E-05],[113.64708,-3.4029E-05],[113.65051,-3.3513E-05],[113.65395,-3.4544E-05],[113.65739,-3.0935E-05],[113.66083,-3.4544E-05],[113.66426,-3.6091E-05],[113.6677,-3.506E-05],[113.67114,-3.8154E-05],[113.67458,-3.5576E-05],[113.67801,-3.5576E-05],[113.68145,-3.4029E-05],[113.68489,-3.6607E-05],[113.68833,-4.1247E-05],[113.69176,-3.6607E-05],[113.6952,-3.7122E-05],[113.69864,-3.4029E-05],[113.70207,-3.2482E-05],[113.70551,-3.6607E-05],[113.70895,-3.506E-05],[113.71239,-3.5576E-05],[113.71582,-3.7122E-05],[113.71926,-3.4029E-05],[113.7227,-3.2998E-05],[113.72614,-3.7638E-05],[113.72957,-3.4544E-05],[113.73301,-3.3513E-05],[113.73645,-3.5576E-05],[113.73989,-3.6607E-05],[113.74332,-4.1247E-05],[113.74676,-4.1247E-05],[113.7502,-4.1763E-05],[113.75363,-3.5576E-05],[113.75707,-3.2998E-05],[113.76051,-3.4544E-05],[113.76395,-3.4544E-05],[113.76738,-3.5576E-05],[113.77082,-3.1451E-05],[113.77426,-3.5576E-05],[113.7777,-3.4029E-05],[113.78113,-3.6091E-05],[113.78457,-4.0216E-05],[113.78801,-3.4029E-05],[113.79145,-3.6607E-05],[113.79488,-3.7638E-05],[113.79832,-3.3513E-05],[113.80176,-3.2998E-05],[113.80519,-3.9185E-05],[113.80863,-4.0732E-05],[113.81207,-3.9185E-05],[113.81551,-3.97E-05],[113.81894,-3.506E-05],[113.82238,-3.5576E-05],[113.82582,-3.9185E-05],[113.82926,-3.7122E-05],[113.83269,-3.4029E-05],[113.83613,-3.6091E-05],[113.83957,-3.8669E-05],[113.84301,-3.2998E-05],[113.84644,-3.4544E-05],[113.84988,-3.7638E-05],[113.85332,-3.2482E-05],[113.85675,-3.6607E-05],[113.86019,-3.8669E-05],[113.86363,-3.6607E-05],[113.86707,-3.7122E-05],[113.8705,-3.2998E-05],[113.87394,-3.4544E-05],[113.87738,-3.4029E-05],[113.88082,-3.1451E-05],[113.88425,-3.7122E-05],[113.88769,-3.9185E-05],[113.89113,-3.4029E-05],[113.89457,-3.4029E-05],[113.898,-3.8154E-05],[113.90144,-3.8154E-05],[113.90488,-3.7122E-05],[113.90831,-3.8669E-05],[113.91175,-3.6607E-05],[113.91519,-3.1451E-05]]}
-{"quant":[114.092,0.14568],"mems":[[113.99551,-3.7122E-05],[113.99905,-3.8154E-05],[114.0026,-4.0216E-05],[114.00614,-3.8154E-05],[114.00968,-4.1247E-05],[114.01323,-3.6607E-05],[114.01677,-3.4029E-05],[114.02031,-3.8154E-05],[114.02385,-3.0935E-05],[114.0274,-3.4544E-05],[114.03094,-3.6607E-05],[114.03448,-3.2998E-05],[114.03802,-3.8669E-05],[114.04157,-3.8669E-05],[114.04511,-3.9185E-05],[114.04865,-3.97E-05],[114.05219,-3.6607E-05],[114.05574,-3.3513E-05],[114.05928,-3.8154E-05],[114.06282,-3.8669E-05],[114.06637,-3.5576E-05],[114.06991,-3.6607E-05],[114.07345,-3.5576E-05],[114.07699,-3.6607E-05],[114.08054,-3.3513E-05],[114.08408,-3.4544E-05],[114.08762,-3.8669E-05],[114.09116,-3.6091E-05],[114.09471,-3.6091E-05],[114.09825,-3.6091E-05],[114.10179,-3.4029E-05],[114.10533,-3.1451E-05],[114.10888,-3.2998E-05],[114.11242,-3.4544E-05],[114.11596,-3.4544E-05],[114.11951,-3.6607E-05],[114.12305,-4.0732E-05],[114.12659,-3.97E-05],[114.13013,-3.8669E-05],[114.13368,-3.6091E-05],[114.13722,-2.9904E-05],[114.14076,-3.4544E-05],[114.1443,-3.8154E-05],[114.14785,-3.4544E-05],[114.15139,-3.4029E-05],[114.15493,-3.4544E-05],[114.15847,-3.6091E-05],[114.16202,-3.3513E-05],[114.16556,-3.6091E-05],[114.1691,-3.7638E-05],[114.17265,-3.2482E-05],[114.17619,-3.4029E-05],[114.17973,-3.4544E-05],[114.18327,-3.6091E-05],[114.18682,-3.7122E-05],[114.19036,-3.8154E-05],[114.1939,-3.7638E-05],[114.19744,-3.4029E-05],[114.20099,-3.7122E-05],[114.20453,-3.7122E-05],[114.20807,-3.8154E-05],[114.21161,-3.8669E-05],[114.21516,-3.7122E-05],[114.2187,-4.0216E-05],[114.22224,-3.9185E-05],[114.22579,-4.0216E-05],[114.22933,-4.0732E-05],[114.23287,-3.5576E-05],[114.23641,-3.4544E-05],[114.23996,-3.2998E-05],[114.2435,-3.2998E-05],[114.24704,-3.8154E-05],[114.25058,-3.8154E-05],[114.25413,-3.4544E-05],[114.25767,-3.506E-05],[114.26121,-3.6091E-05],[114.26475,-3.5576E-05],[114.2683,-3.7638E-05],[114.27184,-4.0216E-05],[114.27538,-3.9185E-05],[114.27893,-3.4029E-05],[114.28247,-3.2482E-05],[114.28601,-3.6607E-05],[114.28955,-3.6091E-05]]}
-{"quant":[114.506,0.10648],"mems":[[114.40646,-3.506E-05],[114.41,-3.4029E-05],[114.41355,-3.3513E-05],[114.41709,-3.8669E-05],[114.42063,-3.5576E-05],[114.42417,-3.7122E-05],[114.42772,-3.6607E-05],[114.43126,-3.506E-05],[114.4348,-3.7122E-05],[114.43835,-3.97E-05],[114.44189,-3.97E-05],[114.44543,-3.1967E-05],[114.44897,-3.5576E-05],[114.45252,-3.7122E-05],[114.45606,-3.2998E-05],[114.4596,-3.506E-05],[114.46314,-3.6091E-05],[114.46669,-3.4544E-05],[114.47023,-3.1967E-05],[114.47377,-3.7638E-05],[114.47731,-3.6607E-05],[114.48086,-3.6091E-05],[114.4844,-4.2278E-05],[114.48794,-3.7638E-05],[114.49149,-3.4544E-05],[114.49503,-3.4544E-05],[114.49857,-3.6607E-05],[114.50211,-3.506E-05],[114.50566,-3.4544E-05],[114.5092,-3.6091E-05],[114.51274,-3.6607E-05],[114.51628,-3.6091E-05],[114.51983,-2.8873E-05],[114.52337,-3.3513E-05],[114.52691,-3.7122E-05],[114.53045,-3.4544E-05],[114.534,-3.3513E-05],[114.53754,-3.4544E-05],[114.54108,-3.8669E-05],[114.54463,-3.7122E-05],[114.54817,-3.6091E-05],[114.55171,-3.506E-05],[114.55525,-3.3513E-05],[114.5588,-3.5576E-05],[114.56234,-3.7638E-05],[114.56588,-3.7122E-05],[114.56942,-3.5576E-05],[114.57297,-3.5576E-05],[114.57651,-3.6607E-05],[114.58005,-3.5576E-05],[114.58359,-3.506E-05],[114.58714,-3.4544E-05],[114.59068,-3.1451E-05],[114.59422,-3.042E-05],[114.59777,-3.7122E-05],[114.60131,-3.7638E-05],[114.60485,-3.6607E-05],[114.60839,-3.6091E-05],[114.61194,-3.4544E-05],[114.61548,-3.7638E-05],[114.61902,-3.6607E-05],[114.62256,-3.4544E-05],[114.62611,-3.1967E-05],[114.62965,-3.1451E-05],[114.63319,-3.8669E-05],[114.63673,-4.2278E-05],[114.64028,-3.7638E-05],[114.64382,-3.8669E-05],[114.64736,-3.6607E-05],[114.65091,-3.6091E-05],[114.65445,-3.6091E-05],[114.65799,-3.1967E-05],[114.66153,-3.7638E-05],[114.66508,-3.6091E-05],[114.66862,-3.6607E-05],[114.67216,-3.9185E-05],[114.6757,-3.3513E-05],[114.67925,-3.7122E-05],[114.68279,-3.6091E-05],[114.68633,-3.6091E-05],[114.68987,-3.7122E-05],[114.69342,-3.0935E-05],[114.69696,-3.4029E-05],[114.7005,-3.6091E-05],[114.70405,-3.7122E-05]]}
-{"quant":[114.855,0.079594],"mems":[[114.75719,-3.7122E-05],[114.76073,-3.6091E-05],[114.76427,-3.2998E-05],[114.76781,-3.506E-05],[114.77136,-3.506E-05],[114.7749,-3.506E-05],[114.77844,-3.2482E-05],[114.78198,-3.3513E-05],[114.78553,-3.7638E-05],[114.78907,-3.5576E-05],[114.79261,-3.4544E-05],[114.79615,-3.3513E-05],[114.7997,-3.2998E-05],[114.80324,-3.5576E-05],[114.80678,-3.9185E-05],[114.81033,-4.3825E-05],[114.81387,-3.8669E-05],[114.81741,-3.5576E-05],[114.82095,-3.9185E-05],[114.8245,-3.6607E-05],[114.82804,-3.5576E-05],[114.83158,-3.2998E-05],[114.83512,-3.1967E-05],[114.83867,-3.2482E-05],[114.84221,-3.6091E-05],[114.84575,-4.1763E-05],[114.84929,-3.8669E-05],[114.85284,-3.8669E-05],[114.85638,-3.506E-05],[114.85992,-3.506E-05],[114.86347,-4.4341E-05],[114.86701,-4.0732E-05],[114.87055,-3.6607E-05],[114.87409,-3.4029E-05],[114.87764,-2.8873E-05],[114.88118,-3.2482E-05],[114.88472,-3.6607E-05],[114.88826,-3.4029E-05],[114.89181,-3.4029E-05],[114.89535,-3.7638E-05],[114.89889,-3.506E-05],[114.90243,-3.5576E-05],[114.90598,-3.97E-05],[114.90952,-3.6091E-05],[114.91306,-3.8669E-05],[114.91661,-3.6607E-05],[114.92015,-2.9904E-05],[114.92369,-3.2482E-05],[114.92723,-3.5576E-05],[114.93078,-3.6091E-05],[114.93432,-3.506E-05],[114.93786,-3.6091E-05],[114.9414,-3.506E-05],[114.94495,-3.5576E-05],[114.94849,-3.4029E-05],[114.95203,-3.1967E-05],[114.95557,-3.4544E-05],[114.95912,-2.9904E-05],[114.96266,-2.8873E-05],[114.9662,-3.7122E-05],[114.96975,-3.7122E-05],[114.97329,-3.7122E-05],[114.97683,-3.8669E-05],[114.98037,-3.4029E-05],[114.98392,-3.506E-05],[114.98746,-3.97E-05],[114.991,-3.5576E-05],[114.99454,-3.506E-05],[114.99809,-3.7638E-05],[115.00163,-3.6091E-05],[115.00517,-3.5576E-05],[115.00871,-3.5576E-05],[115.01226,-3.7122E-05],[115.0158,-3.7122E-05],[115.01934,-3.4544E-05],[115.02289,-3.1451E-05],[115.02643,-3.3513E-05],[115.02997,-3.8669E-05],[115.03351,-3.8669E-05],[115.03706,-3.506E-05],[115.0406,-3.4029E-05],[115.04414,-3.5576E-05],[115.04768,-3.2998E-05],[115.05123,-3.6607E-05],[115.05477,-3.7638E-05]]}
-{"quant":[115.212,0.049586],"mems":[[115.11499,-3.506E-05],[115.11854,-3.9185E-05],[115.12208,-3.4544E-05],[115.12562,-3.3513E-05],[115.12917,-3.6607E-05],[115.13271,-3.7638E-05],[115.13625,-3.7122E-05],[115.13979,-3.0935E-05],[115.14334,-3.2998E-05],[115.14688,-3.3513E-05],[115.15042,-2.9389E-05],[115.15396,-3.8669E-05],[115.15751,-4.2278E-05],[115.16105,-3.6607E-05],[115.16459,-3.8154E-05],[115.16813,-3.7122E-05],[115.17168,-3.2998E-05],[115.17522,-3.2998E-05],[115.17876,-3.506E-05],[115.18231,-3.4029E-05],[115.18585,-3.042E-05],[115.18939,-2.8357E-05],[115.19293,-3.506E-05],[115.19648,-3.7122E-05],[115.20002,-3.4029E-05],[115.20356,-3.7122E-05],[115.2071,-3.4029E-05],[115.21065,-3.3513E-05],[115.21419,-3.4544E-05],[115.21773,-3.6091E-05],[115.22127,-3.8154E-05],[115.22482,-3.042E-05],[115.22836,-3.2998E-05],[115.2319,-3.97E-05],[115.23545,-3.8154E-05],[115.23899,-3.6091E-05],[115.24253,-3.6607E-05],[115.24607,-3.5576E-05],[115.24962,-3.2482E-05],[115.25316,-3.7122E-05],[115.2567,-3.7122E-05],[115.26024,-3.8154E-05],[115.26379,-3.506E-05],[115.26733,-2.9904E-05],[115.27087,-3.4029E-05],[115.27441,-3.7122E-05],[115.27796,-3.9185E-05],[115.2815,-3.7638E-05],[115.28504,-3.5576E-05],[115.28859,-3.5576E-05],[115.29213,-3.6091E-05],[115.29567,-3.9185E-05],[115.29921,-3.6607E-05],[115.30276,-3.6091E-05],[115.3063,-3.8154E-05],[115.30984,-3.6091E-05],[115.31338,-3.6091E-05],[115.31693,-3.7122E-05],[115.32047,-3.7122E-05],[115.32401,-3.4029E-05],[115.32755,-3.1967E-05],[115.3311,-3.0935E-05],[115.33464,-3.3513E-05],[115.33818,-3.7122E-05],[115.34173,-3.6091E-05],[115.34527,-3.6091E-05],[115.34881,-3.8669E-05],[115.35235,-3.7122E-05],[115.3559,-3.4029E-05],[115.35944,-3.7122E-05],[115.36298,-3.8669E-05],[115.36652,-3.7638E-05],[115.37007,-3.7122E-05],[115.37361,-3.7122E-05],[115.37715,-3.8154E-05],[115.38069,-4.0732E-05],[115.38424,-3.8669E-05],[115.38778,-3.6091E-05],[115.39132,-4.1247E-05],[115.39487,-3.7638E-05],[115.39841,-3.6091E-05],[115.40195,-3.8669E-05],[115.40549,-3.6607E-05],[115.40904,-3.7638E-05]]}
-{"quant":[115.557,0.015179],"mems":[[115.45863,-3.7122E-05],[115.46218,-4.3309E-05],[115.46572,-3.9185E-05],[115.46926,-3.1451E-05],[115.4728,-3.7638E-05],[115.47635,-3.2998E-05],[115.47989,-3.506E-05],[115.48343,-3.9185E-05],[115.48697,-3.2482E-05],[115.49052,-3.9185E-05],[115.49406,-3.8154E-05],[115.4976,-3.2482E-05],[115.50115,-3.4029E-05],[115.50469,-3.506E-05],[115.50823,-3.506E-05],[115.51177,-3.4029E-05],[115.51532,-3.5576E-05],[115.51886,-3.4544E-05],[115.5224,-3.8669E-05],[115.52594,-4.2278E-05],[115.52949,-3.6607E-05],[115.53303,-3.506E-05],[115.53657,-3.7122E-05],[115.54011,-3.8669E-05],[115.54366,-3.7122E-05],[115.5472,-3.7638E-05],[115.55074,-3.5576E-05],[115.55429,-3.3513E-05],[115.55783,-3.7122E-05],[115.56137,-3.8154E-05],[115.56491,-3.2482E-05],[115.56846,-3.506E-05],[115.572,-3.9185E-05],[115.57554,-3.4544E-05],[115.57908,-3.6607E-05],[115.58263,-3.7638E-05],[115.58617,-3.8154E-05],[115.58971,-3.9185E-05],[115.59325,-3.5576E-05],[115.5968,-3.042E-05],[115.60034,-3.2998E-05],[115.60388,-3.8669E-05],[115.60743,-3.6091E-05],[115.61097,-3.7638E-05],[115.61451,-3.6607E-05],[115.61805,-3.2482E-05],[115.6216,-3.3513E-05],[115.62514,-3.7122E-05],[115.62868,-3.7122E-05],[115.63222,-3.3513E-05],[115.63577,-3.8154E-05],[115.63931,-3.9185E-05],[115.64285,-3.5576E-05],[115.64639,-3.7122E-05],[115.64994,-3.7122E-05],[115.65348,-3.6607E-05],[115.65702,-3.7122E-05],[115.66057,-3.8154E-05],[115.66411,-3.9185E-05],[115.66765,-3.7122E-05],[115.67119,-3.6091E-05],[115.67474,-3.6607E-05],[115.67828,-3.6091E-05],[115.68182,-3.2998E-05],[115.68536,-2.9904E-05],[115.68891,-3.7122E-05],[115.69245,-3.8154E-05],[115.69599,-3.4544E-05],[115.69953,-3.506E-05],[115.70308,-3.2998E-05],[115.70662,-3.506E-05],[115.71016,-3.506E-05],[115.71371,-3.4029E-05],[115.71725,-3.7638E-05],[115.72079,-3.6607E-05],[115.72433,-3.2998E-05],[115.72788,-3.6607E-05],[115.73142,-3.6607E-05],[115.73496,-3.4029E-05],[115.7385,-3.8154E-05],[115.74205,-3.6607E-05],[115.74559,-3.6091E-05],[115.74913,-3.9185E-05],[115.75267,-3.506E-05],[115.75622,-3.4544E-05]]}
-{"quant":[115.934,-0.020589],"mems":[[115.83416,-3.6091E-05],[115.8377,-3.7122E-05],[115.84124,-3.9185E-05],[115.84478,-3.7122E-05],[115.84833,-3.6091E-05],[115.85187,-3.6091E-05],[115.85541,-3.97E-05],[115.85895,-3.9185E-05],[115.8625,-3.506E-05],[115.86604,-3.6091E-05],[115.86958,-3.8669E-05],[115.87313,-3.6091E-05],[115.87667,-3.506E-05],[115.88021,-3.506E-05],[115.88375,-3.8669E-05],[115.8873,-3.8154E-05],[115.89084,-3.9185E-05],[115.89438,-4.0216E-05],[115.89792,-3.97E-05],[115.90147,-4.0216E-05],[115.90501,-3.3513E-05],[115.90855,-3.6091E-05],[115.91209,-3.6091E-05],[115.91564,-3.4029E-05],[115.91918,-3.4544E-05],[115.92272,-3.6607E-05],[115.92627,-3.8154E-05],[115.92981,-3.0935E-05],[115.93335,-3.5576E-05],[115.93689,-3.9185E-05],[115.94044,-3.6091E-05],[115.94398,-3.1451E-05],[115.94752,-3.2482E-05],[115.95106,-4.0216E-05],[115.95461,-3.7638E-05],[115.95815,-3.5576E-05],[115.96169,-3.5576E-05],[115.96523,-3.4029E-05],[115.96878,-3.4029E-05],[115.97232,-3.7122E-05],[115.97586,-3.7638E-05],[115.97941,-3.6091E-05],[115.98295,-3.5576E-05],[115.98649,-3.6091E-05],[115.99003,-3.9185E-05],[115.99358,-3.1451E-05],[115.99712,-3.2998E-05],[116.00066,-3.6091E-05],[116.0042,-3.2998E-05],[116.00775,-3.6607E-05],[116.01129,-3.4029E-05],[116.01483,-3.8669E-05],[116.01837,-3.8669E-05],[116.02192,-3.3513E-05],[116.02546,-3.506E-05],[116.029,-3.2998E-05],[116.03255,-3.5576E-05],[116.03609,-3.8669E-05],[116.03963,-3.6091E-05],[116.04317,-3.506E-05],[116.04672,-3.4029E-05],[116.05026,-3.1451E-05],[116.0538,-3.6607E-05],[116.05734,-3.8154E-05],[116.06089,-3.6091E-05],[116.06443,-3.6091E-05],[116.06797,-3.506E-05],[116.07151,-4.0216E-05],[116.07506,-4.1763E-05],[116.0786,-3.97E-05],[116.08214,-4.2278E-05],[116.08569,-3.97E-05],[116.08923,-3.6091E-05],[116.09277,-3.5576E-05],[116.09631,-3.4544E-05],[116.09986,-3.5576E-05],[116.1034,-3.6091E-05],[116.10694,-3.1967E-05],[116.11048,-3.506E-05],[116.11403,-3.506E-05],[116.11757,-3.3513E-05],[116.12111,-3.5576E-05],[116.12465,-3.2482E-05],[116.1282,-3.7638E-05],[116.13174,-3.7638E-05]]}
-{"quant":[116.267,-0.055208],"mems":[[116.16717,-3.506E-05],[116.17071,-3.3513E-05],[116.17425,-3.1451E-05],[116.17779,-3.506E-05],[116.18134,-3.5576E-05],[116.18488,-3.8669E-05],[116.18842,-3.7638E-05],[116.19197,-3.2482E-05],[116.19551,-3.5576E-05],[116.19905,-4.0216E-05],[116.20259,-3.97E-05],[116.20614,-3.97E-05],[116.20968,-3.97E-05],[116.21322,-3.6607E-05],[116.21676,-3.6607E-05],[116.22031,-3.9185E-05],[116.22385,-3.7122E-05],[116.22739,-3.6607E-05],[116.23093,-3.6091E-05],[116.23448,-3.2998E-05],[116.23802,-3.5576E-05],[116.24156,-3.5576E-05],[116.24511,-3.5576E-05],[116.24865,-3.7638E-05],[116.25219,-3.506E-05],[116.25573,-3.506E-05],[116.25928,-3.8154E-05],[116.26282,-4.0216E-05],[116.26636,-4.3309E-05],[116.2699,-3.9185E-05],[116.27345,-3.6091E-05],[116.27699,-3.4029E-05],[116.28053,-2.8357E-05],[116.28407,-3.3513E-05],[116.28762,-3.8669E-05],[116.29116,-3.7638E-05],[116.2947,-3.8669E-05],[116.29825,-3.7122E-05],[116.30179,-3.506E-05],[116.30533,-3.7122E-05],[116.30887,-3.8154E-05],[116.31242,-3.8669E-05],[116.31596,-3.9185E-05],[116.3195,-3.506E-05],[116.32304,-3.3513E-05],[116.32659,-3.4029E-05],[116.33013,-3.6091E-05],[116.33367,-3.8669E-05],[116.33721,-3.6091E-05],[116.34076,-3.2482E-05],[116.3443,-3.0935E-05],[116.34784,-3.4029E-05],[116.35139,-3.6091E-05],[116.35493,-3.6607E-05],[116.35847,-3.7122E-05],[116.36201,-4.0732E-05],[116.36556,-3.8154E-05],[116.3691,-3.2998E-05],[116.37264,-3.9185E-05],[116.37618,-3.8154E-05],[116.37973,-3.5576E-05],[116.38327,-3.4544E-05],[116.38681,-3.4544E-05],[116.39035,-3.9185E-05],[116.3939,-4.0732E-05],[116.39744,-4.0732E-05],[116.40098,-3.7122E-05],[116.40453,-3.5576E-05],[116.40807,-3.5576E-05],[116.41161,-3.7122E-05],[116.41515,-3.7122E-05],[116.4187,-3.5576E-05],[116.42224,-3.8669E-05],[116.42578,-4.2794E-05],[116.42932,-3.97E-05],[116.43287,-3.4029E-05],[116.43641,-3.6607E-05],[116.43995,-3.6091E-05],[116.44349,-3.6607E-05],[116.44704,-3.7638E-05],[116.45058,-3.506E-05],[116.45412,-3.7122E-05],[116.45767,-3.4544E-05],[116.46121,-3.6607E-05],[116.46475,-4.0732E-05]]}
-{"quant":[116.608,-0.09796],"mems":[[116.58874,-3.4029E-05],[116.59229,-3.4029E-05],[116.59583,-3.6091E-05],[116.59937,-3.6091E-05],[116.60291,-3.6091E-05],[116.60646,-3.6607E-05],[116.61,-3.5576E-05],[116.61333,-3.4544E-05],[116.61667,-3.7122E-05],[116.62,-4.1763E-05],[116.62333,-3.9185E-05],[116.62667,-3.4544E-05],[116.63,-3.7122E-05],[116.63333,-3.97E-05],[116.63667,-3.7122E-05],[116.64,-3.506E-05],[116.64333,-3.6091E-05],[116.64667,-3.4544E-05],[116.65,-3.2482E-05],[116.65333,-3.2482E-05],[116.65667,-3.7638E-05],[116.66,-3.8154E-05],[116.66333,-3.506E-05],[116.66667,-3.6091E-05],[116.67,-4.1763E-05],[116.67333,-3.8669E-05],[116.67667,-3.2998E-05],[116.68,-3.4544E-05],[116.68333,-3.2482E-05],[116.68667,-3.5576E-05],[116.69,-3.7638E-05],[116.69333,-3.5576E-05],[116.69667,-3.6607E-05],[116.7,-3.506E-05],[116.70333,-3.5576E-05],[116.70667,-3.6607E-05],[116.71,-3.8154E-05],[116.71333,-3.7638E-05],[116.71667,-3.6607E-05],[116.72,-3.8154E-05],[116.72333,-3.5576E-05],[116.72667,-3.7122E-05],[116.73,-3.9185E-05],[116.73333,-3.4544E-05],[116.73667,-3.6091E-05],[116.74,-3.6091E-05],[116.74333,-3.4029E-05],[116.74667,-3.506E-05],[116.75,-3.4544E-05],[116.75333,-3.7122E-05],[116.75667,-3.6091E-05],[116.76,-3.3513E-05],[116.76333,-3.6607E-05],[116.76667,-3.7638E-05],[116.77,-3.8154E-05],[116.77333,-3.7638E-05],[116.77667,-3.9185E-05],[116.78,-3.8154E-05],[116.78333,-3.5576E-05],[116.78667,-4.1247E-05],[116.79,-3.9185E-05],[116.79333,-3.6091E-05],[116.79667,-3.97E-05],[116.8,-3.6607E-05],[116.80333,-3.5576E-05],[116.80667,-3.9185E-05],[116.81,-3.6091E-05],[116.81333,-3.6607E-05],[116.81667,-3.7122E-05],[116.82,-3.2998E-05],[116.82333,-3.6607E-05],[116.82667,-3.8154E-05],[116.83,-3.6091E-05],[116.83333,-3.3513E-05],[116.83667,-3.6607E-05],[116.84,-3.97E-05],[116.84333,-3.4544E-05],[116.84667,-3.7638E-05],[116.85,-4.0732E-05],[116.85333,-3.6607E-05],[116.85667,-3.506E-05],[116.86,-3.7638E-05],[116.86333,-3.97E-05],[116.86667,-3.8669E-05],[116.87,-3.4544E-05],[116.87333,-3.3513E-05],[116.87667,-3.8669E-05],[116.88,-3.7638E-05]]}
-{"quant":[116.973,-0.15653],"mems":[[116.87333,-3.3513E-05],[116.87667,-3.8669E-05],[116.88,-3.7638E-05],[116.88333,-3.3513E-05],[116.88667,-3.6607E-05],[116.89,-3.6091E-05],[116.89333,-3.4544E-05],[116.89667,-3.2482E-05],[116.9,-3.4029E-05],[116.90333,-3.6607E-05],[116.90667,-3.2998E-05],[116.91,-3.7638E-05],[116.91333,-3.8154E-05],[116.91667,-3.97E-05],[116.92,-4.1763E-05],[116.92333,-3.506E-05],[116.92667,-3.506E-05],[116.93,-3.506E-05],[116.93333,-3.6607E-05],[116.93667,-3.6091E-05],[116.94,-3.6607E-05],[116.94333,-4.0216E-05],[116.94667,-3.8154E-05],[116.95,-3.7122E-05],[116.95333,-3.6091E-05],[116.95667,-3.7122E-05],[116.96,-4.0732E-05],[116.96333,-4.2794E-05],[116.96667,-3.97E-05],[116.97,-4.0732E-05],[116.97333,-3.9185E-05],[116.97667,-3.5576E-05],[116.98,-4.0732E-05],[116.98333,-4.0732E-05],[116.98667,-3.7122E-05],[116.99,-3.7638E-05],[116.99333,-3.7638E-05],[116.99667,-3.506E-05],[117.0,-3.3513E-05],[117.00333,-3.3513E-05],[117.00667,-3.1967E-05],[117.01,-3.506E-05],[117.01333,-3.6607E-05],[117.01667,-3.4029E-05],[117.02,-3.506E-05],[117.02333,-3.6091E-05],[117.02667,-3.4029E-05],[117.03,-3.2998E-05],[117.03333,-3.506E-05],[117.03667,-3.7638E-05],[117.04,-3.8669E-05],[117.04333,-3.8154E-05],[117.04667,-3.3513E-05],[117.05,-3.4029E-05],[117.05333,-3.6091E-05],[117.05667,-3.7638E-05],[117.06,-4.2794E-05],[117.06333,-3.7122E-05],[117.06667,-3.4029E-05],[117.07,-3.6091E-05],[117.07333,-3.1967E-05],[117.07667,-3.4029E-05],[117.08,-3.8154E-05],[117.08333,-3.6607E-05],[117.08667,-3.506E-05],[117.09,-3.2998E-05],[117.09333,-3.6607E-05],[117.09667,-3.97E-05],[117.1,-3.5576E-05],[117.10333,-3.7638E-05],[117.10667,-3.7122E-05],[117.11,-3.6607E-05],[117.11333,-3.7122E-05],[117.11667,-3.3513E-05],[117.12,-3.5576E-05],[117.12333,-3.6607E-05],[117.12667,-3.4544E-05],[117.13,-3.2998E-05],[117.13333,-3.1967E-05],[117.13667,-3.5576E-05],[117.14,-3.9185E-05],[117.14333,-3.7638E-05],[117.14667,-3.5576E-05],[117.15,-3.4029E-05],[117.15333,-3.5576E-05],[117.15667,-3.8154E-05],[117.16,-3.506E-05],[117.16333,-3.6607E-05],[117.16667,-3.2482E-05],[117.17,-3.0935E-05]]}
-{"quant":[117.322,-0.20183],"mems":[[117.22333,-3.3513E-05],[117.22667,-3.2998E-05],[117.23,-3.2998E-05],[117.23333,-3.4544E-05],[117.23667,-3.97E-05],[117.24,-3.6607E-05],[117.24333,-3.7122E-05],[117.24667,-3.6607E-05],[117.25,-3.5576E-05],[117.25333,-3.2998E-05],[117.25667,-3.3513E-05],[117.26,-3.2482E-05],[117.26333,-3.1451E-05],[117.26667,-4.0216E-05],[117.27,-3.8669E-05],[117.27333,-3.4029E-05],[117.27667,-3.2482E-05],[117.28,-3.1451E-05],[117.28333,-3.1967E-05],[117.28667,-3.506E-05],[117.29,-3.6091E-05],[117.29333,-3.4029E-05],[117.29667,-3.506E-05],[117.3,-3.5576E-05],[117.30333,-3.4544E-05],[117.30667,-3.6091E-05],[117.31,-3.9185E-05],[117.31333,-3.6091E-05],[117.31667,-3.4544E-05],[117.32,-4.0216E-05],[117.32333,-4.2794E-05],[117.32667,-3.7638E-05],[117.33,-3.6607E-05],[117.33333,-3.8669E-05],[117.33667,-3.6091E-05],[117.34,-3.7122E-05],[117.34333,-3.4544E-05],[117.34667,-3.6607E-05],[117.35,-4.0732E-05],[117.35333,-3.6091E-05],[117.35667,-4.1247E-05],[117.36,-3.7122E-05],[117.36333,-3.1967E-05],[117.36667,-3.6607E-05],[117.37,-3.6091E-05],[117.37333,-3.8154E-05],[117.37667,-3.6607E-05],[117.38,-3.1451E-05],[117.38333,-3.506E-05],[117.38667,-3.9185E-05],[117.39,-3.6607E-05],[117.39333,-3.6607E-05],[117.39667,-3.9185E-05],[117.4,-3.3513E-05],[117.40333,-3.6607E-05],[117.40667,-4.1763E-05],[117.41,-3.97E-05],[117.41333,-3.8154E-05],[117.41667,-3.4029E-05],[117.42,-3.5576E-05],[117.42333,-3.8669E-05],[117.42667,-4.0216E-05],[117.43,-3.8154E-05],[117.43333,-3.4544E-05],[117.43667,-3.6091E-05],[117.44,-3.6091E-05],[117.44333,-3.8154E-05],[117.44667,-4.2278E-05],[117.45,-3.9185E-05],[117.45333,-3.6091E-05],[117.45667,-3.6091E-05],[117.46,-3.6607E-05],[117.46333,-3.6607E-05],[117.46667,-3.2482E-05],[117.47,-3.4544E-05],[117.47333,-3.4029E-05],[117.47667,-3.1451E-05],[117.48,-3.4029E-05],[117.48333,-3.5576E-05],[117.48667,-3.7122E-05],[117.49,-3.6091E-05],[117.49333,-3.7638E-05],[117.49667,-3.5576E-05],[117.5,-2.9904E-05],[117.50333,-3.2998E-05],[117.50667,-3.6607E-05],[117.51,-3.7638E-05],[117.51333,-3.8669E-05],[117.51667,-3.6607E-05],[117.52,-3.4544E-05]]}
-{"quant":[117.674,-0.2296],"mems":[[117.57667,-3.9185E-05],[117.58,-3.8154E-05],[117.58333,-4.0732E-05],[117.58667,-4.1247E-05],[117.59,-3.97E-05],[117.59333,-3.9185E-05],[117.59667,-4.0732E-05],[117.6,-3.97E-05],[117.60333,-3.97E-05],[117.60667,-3.4544E-05],[117.61,-3.6091E-05],[117.61333,-3.9185E-05],[117.61667,-3.7638E-05],[117.62,-4.2278E-05],[117.62333,-3.8154E-05],[117.62667,-3.506E-05],[117.63,-3.5576E-05],[117.63333,-3.6091E-05],[117.63667,-3.8154E-05],[117.64,-3.4029E-05],[117.64333,-3.7638E-05],[117.64667,-3.9185E-05],[117.65,-3.9185E-05],[117.65333,-3.8669E-05],[117.65667,-3.7122E-05],[117.66,-4.0732E-05],[117.66333,-3.7638E-05],[117.66667,-4.1247E-05],[117.67,-3.8669E-05],[117.67333,-3.506E-05],[117.67667,-4.0216E-05],[117.68,-3.8669E-05],[117.68333,-3.5576E-05],[117.68667,-3.7122E-05],[117.69,-3.9185E-05],[117.69333,-3.7122E-05],[117.69667,-3.8669E-05],[117.7,-4.0732E-05],[117.70333,-3.9185E-05],[117.70667,-3.5576E-05],[117.71,-3.5576E-05],[117.71333,-3.6607E-05],[117.71667,-3.7122E-05],[117.72,-4.1763E-05],[117.72333,-3.97E-05],[117.72667,-3.6607E-05],[117.73,-3.3513E-05],[117.73333,-3.3513E-05],[117.73667,-4.1247E-05],[117.74,-4.3309E-05],[117.74333,-4.0216E-05],[117.74667,-3.7638E-05],[117.75,-3.97E-05],[117.75333,-3.6607E-05],[117.75667,-3.3513E-05],[117.76,-3.7122E-05],[117.76333,-3.8154E-05],[117.76667,-3.9185E-05],[117.77,-3.5576E-05],[117.77333,-3.3513E-05],[117.77667,-3.9185E-05],[117.78,-3.7122E-05],[117.78333,-3.4544E-05],[117.78667,-3.8154E-05],[117.79,-3.7638E-05],[117.79333,-3.7638E-05],[117.79667,-3.6607E-05],[117.8,-3.5576E-05],[117.80333,-3.6091E-05],[117.80667,-3.1967E-05],[117.81,-3.4544E-05],[117.81333,-3.6607E-05],[117.81667,-3.2998E-05],[117.82,-3.4029E-05],[117.82333,-3.8154E-05],[117.82667,-3.7638E-05],[117.83,-3.8154E-05],[117.83333,-4.0732E-05],[117.83667,-4.2278E-05],[117.84,-4.1763E-05],[117.84333,-3.4029E-05],[117.84667,-3.5576E-05],[117.85,-3.8669E-05],[117.85333,-3.97E-05],[117.85667,-3.7638E-05],[117.86,-3.4029E-05],[117.86333,-3.5576E-05],[117.86667,-3.2482E-05],[117.87,-3.5576E-05],[117.87333,-3.7122E-05]]}
-{"quant":[118.027,-0.2566],"mems":[[117.93,-3.4029E-05],[117.93333,-3.5576E-05],[117.93667,-4.0732E-05],[117.94,-3.6091E-05],[117.94333,-3.2482E-05],[117.94667,-3.4544E-05],[117.95,-3.97E-05],[117.95333,-3.97E-05],[117.95667,-3.5576E-05],[117.96,-3.8669E-05],[117.96333,-3.7122E-05],[117.96667,-3.5576E-05],[117.97,-3.6607E-05],[117.97333,-3.9185E-05],[117.97667,-4.1763E-05],[117.98,-3.506E-05],[117.98333,-3.4544E-05],[117.98667,-3.97E-05],[117.99,-4.3825E-05],[117.99333,-3.8154E-05],[117.99667,-3.1451E-05],[118.0,-3.4029E-05],[118.00333,-3.6607E-05],[118.00667,-4.4856E-05],[118.01,-4.3825E-05],[118.01333,-3.7638E-05],[118.01667,-3.6607E-05],[118.02,-3.2482E-05],[118.02333,-3.5576E-05],[118.02667,-3.4544E-05],[118.03,-3.5576E-05],[118.03333,-3.9185E-05],[118.03667,-3.6091E-05],[118.04,-3.8669E-05],[118.04333,-3.7638E-05],[118.04667,-3.3513E-05],[118.05,-3.4544E-05],[118.05333,-3.1967E-05],[118.05667,-3.506E-05],[118.06,-3.5576E-05],[118.06333,-3.3513E-05],[118.06667,-3.2482E-05],[118.07,-3.4029E-05],[118.07333,-4.0732E-05],[118.07667,-3.2998E-05],[118.08,-2.6811E-05],[118.08333,-3.4029E-05],[118.08667,-3.4029E-05],[118.09,-3.7122E-05],[118.09333,-3.97E-05],[118.09667,-3.6091E-05],[118.1,-3.7122E-05],[118.10333,-3.8154E-05],[118.10667,-3.506E-05],[118.11,-3.9185E-05],[118.11333,-4.1247E-05],[118.11667,-3.5576E-05],[118.12,-3.1967E-05],[118.12333,-3.4029E-05],[118.12667,-3.7122E-05],[118.13,-3.7122E-05],[118.13333,-3.4029E-05],[118.13667,-3.4029E-05],[118.14,-3.6091E-05],[118.14333,-3.6091E-05],[118.14667,-3.3513E-05],[118.15,-3.3513E-05],[118.15333,-3.97E-05],[118.15667,-3.8154E-05],[118.16,-3.6607E-05],[118.16333,-3.7638E-05],[118.16667,-3.506E-05],[118.17,-3.6607E-05],[118.17333,-3.4544E-05],[118.17667,-3.1967E-05],[118.18,-3.7638E-05],[118.18333,-3.7122E-05],[118.18667,-3.4544E-05],[118.19,-3.8154E-05],[118.19333,-3.4544E-05],[118.19667,-3.1451E-05],[118.2,-3.2482E-05],[118.20333,-3.506E-05],[118.20667,-3.6607E-05],[118.21,-3.3513E-05],[118.21333,-3.2998E-05],[118.21667,-3.7638E-05],[118.22,-4.3825E-05],[118.22333,-3.97E-05],[118.22667,-3.6607E-05]]}
-{"quant":[118.379,-0.2866],"mems":[[118.28,-3.6607E-05],[118.28333,-3.506E-05],[118.28667,-3.7638E-05],[118.29,-3.6091E-05],[118.29333,-3.6091E-05],[118.29667,-4.0732E-05],[118.3,-4.2794E-05],[118.30333,-3.3513E-05],[118.30667,-3.6091E-05],[118.31,-3.9185E-05],[118.31333,-3.9185E-05],[118.31667,-4.4856E-05],[118.32,-3.8154E-05],[118.32333,-3.4544E-05],[118.32667,-4.0732E-05],[118.33,-4.1763E-05],[118.33333,-3.506E-05],[118.33667,-3.506E-05],[118.34,-3.6091E-05],[118.34333,-3.4544E-05],[118.34667,-3.7638E-05],[118.35,-3.6607E-05],[118.35333,-3.506E-05],[118.35667,-3.6091E-05],[118.36,-3.8154E-05],[118.36333,-3.8669E-05],[118.36667,-3.8669E-05],[118.37,-3.6607E-05],[118.37333,-3.506E-05],[118.37667,-4.0216E-05],[118.38,-3.5576E-05],[118.38333,-3.3513E-05],[118.38667,-3.6607E-05],[118.39,-3.8154E-05],[118.39333,-4.0732E-05],[118.39667,-3.9185E-05],[118.4,-4.1247E-05],[118.40333,-4.0732E-05],[118.40667,-3.506E-05],[118.41,-3.5576E-05],[118.41333,-3.97E-05],[118.41667,-3.9185E-05],[118.42,-3.506E-05],[118.42333,-3.3513E-05],[118.42667,-3.5576E-05],[118.43,-3.8154E-05],[118.43333,-3.97E-05],[118.43667,-3.4544E-05],[118.44,-3.2998E-05],[118.44333,-3.5576E-05],[118.44667,-3.6091E-05],[118.45,-3.506E-05],[118.45333,-3.0935E-05],[118.45667,-3.97E-05],[118.46,-3.8154E-05],[118.46333,-3.1451E-05],[118.46667,-4.0216E-05],[118.47,-4.0732E-05],[118.47333,-4.0216E-05],[118.47667,-3.5576E-05],[118.48,-3.2482E-05],[118.48333,-3.4029E-05],[118.48667,-3.5576E-05],[118.49,-4.0216E-05],[118.49333,-3.8669E-05],[118.49667,-3.5576E-05],[118.5,-3.6091E-05],[118.50333,-3.6091E-05],[118.50667,-3.3513E-05],[118.51,-3.6091E-05],[118.51333,-3.97E-05],[118.51667,-3.7638E-05],[118.52,-3.8669E-05],[118.52333,-3.506E-05],[118.52667,-3.7122E-05],[118.53,-4.2794E-05],[118.53333,-3.6607E-05],[118.53667,-3.6091E-05],[118.54,-3.4544E-05],[118.54333,-3.1967E-05],[118.54667,-3.6607E-05],[118.55,-3.6607E-05],[118.55333,-3.506E-05],[118.55667,-3.3513E-05],[118.56,-3.3513E-05],[118.56333,-3.4029E-05],[118.56667,-3.7122E-05],[118.57,-3.9185E-05],[118.57333,-3.7638E-05],[118.57667,-3.7638E-05]]}
-{"quant":[118.715,-0.32253],"mems":[[118.61667,-3.6091E-05],[118.62,-4.1247E-05],[118.62333,-3.7638E-05],[118.62667,-3.7122E-05],[118.63,-3.4029E-05],[118.63333,-3.6091E-05],[118.63667,-3.8154E-05],[118.64,-3.4544E-05],[118.64333,-3.97E-05],[118.64667,-3.8669E-05],[118.65,-3.506E-05],[118.65333,-3.9185E-05],[118.65667,-3.506E-05],[118.66,-3.2998E-05],[118.66333,-3.2482E-05],[118.66667,-3.6091E-05],[118.67,-4.1763E-05],[118.67333,-3.4544E-05],[118.67667,-3.2998E-05],[118.68,-3.1967E-05],[118.68333,-3.1967E-05],[118.68667,-3.6607E-05],[118.69,-3.4544E-05],[118.69333,-3.8669E-05],[118.69667,-3.6091E-05],[118.7,-3.042E-05],[118.70333,-3.2482E-05],[118.70667,-3.2482E-05],[118.71,-3.8154E-05],[118.71333,-3.7638E-05],[118.71667,-3.2998E-05],[118.72,-3.8154E-05],[118.72333,-3.506E-05],[118.72667,-3.2998E-05],[118.73,-3.506E-05],[118.73333,-2.9904E-05],[118.73667,-3.4029E-05],[118.74,-4.0216E-05],[118.74333,-4.1763E-05],[118.74667,-4.0732E-05],[118.75,-3.5576E-05],[118.75333,-3.2998E-05],[118.75667,-3.2998E-05],[118.76,-3.9185E-05],[118.76333,-3.9185E-05],[118.76667,-3.4029E-05],[118.77,-3.3513E-05],[118.77333,-3.7122E-05],[118.77667,-3.7638E-05],[118.78,-3.4029E-05],[118.78333,-3.7638E-05],[118.78667,-3.9185E-05],[118.79,-3.6091E-05],[118.79333,-3.6091E-05],[118.79667,-3.5576E-05],[118.8,-3.4544E-05],[118.80333,-3.2998E-05],[118.80667,-3.7638E-05],[118.81,-3.8669E-05],[118.81333,-3.4029E-05],[118.81667,-3.8669E-05],[118.82,-3.7638E-05],[118.82333,-3.6607E-05],[118.82667,-3.97E-05],[118.83,-3.6091E-05],[118.83333,-3.9185E-05],[118.83667,-3.9185E-05],[118.84,-3.7638E-05],[118.84333,-3.7122E-05],[118.84667,-3.4029E-05],[118.85,-3.8154E-05],[118.85333,-3.97E-05],[118.85667,-3.5576E-05],[118.86,-3.6091E-05],[118.86333,-3.6607E-05],[118.86667,-4.0216E-05],[118.87,-3.97E-05],[118.87333,-3.2482E-05],[118.87667,-3.2998E-05],[118.88,-3.4544E-05],[118.88333,-3.5576E-05],[118.88667,-3.9185E-05],[118.89,-3.7638E-05],[118.89333,-3.1967E-05],[118.89667,-3.2998E-05],[118.9,-3.8669E-05],[118.90333,-3.7122E-05],[118.90667,-3.3513E-05],[118.91,-3.4029E-05],[118.91333,-3.5576E-05]]}
-{"quant":[119.064,-0.35881],"mems":[[118.97333,-3.4544E-05],[118.97667,-3.5576E-05],[118.98,-3.7122E-05],[118.98333,-3.506E-05],[118.98667,-3.6607E-05],[118.99,-3.4544E-05],[118.99333,-3.4544E-05],[118.99667,-3.6607E-05],[119.0,-3.7638E-05],[119.00333,-3.6091E-05],[119.00667,-3.3513E-05],[119.01,-3.8154E-05],[119.01333,-3.97E-05],[119.01667,-3.6091E-05],[119.02,-3.506E-05],[119.02333,-3.7638E-05],[119.02667,-3.97E-05],[119.03,-3.6091E-05],[119.03333,-3.8154E-05],[119.03667,-3.97E-05],[119.04,-3.5576E-05],[119.04333,-3.6091E-05],[119.04667,-3.6607E-05],[119.05,-3.4544E-05],[119.05333,-3.506E-05],[119.05667,-3.1451E-05],[119.06,-3.2482E-05],[119.06333,-3.8669E-05],[119.06667,-3.5576E-05],[119.07,-3.6607E-05],[119.07333,-4.0216E-05],[119.07667,-3.8154E-05],[119.08,-3.7638E-05],[119.08333,-3.2482E-05],[119.08667,-3.4544E-05],[119.09,-4.0732E-05],[119.09333,-3.97E-05],[119.09667,-3.9185E-05],[119.1,-3.2998E-05],[119.10333,-3.5576E-05],[119.10667,-3.6607E-05],[119.11,-3.3513E-05],[119.11344,-3.7638E-05],[119.11687,-3.7122E-05],[119.12031,-3.6091E-05],[119.12374,-3.506E-05],[119.12718,-3.4544E-05],[119.13062,-3.6607E-05],[119.13405,-3.8154E-05],[119.13749,-3.9185E-05],[119.14092,-3.9185E-05],[119.14436,-3.506E-05],[119.1478,-3.3513E-05],[119.15123,-3.506E-05],[119.15467,-3.5576E-05],[119.1581,-3.4544E-05],[119.16154,-3.1451E-05],[119.16498,-3.7638E-05],[119.16841,-3.97E-05],[119.17185,-3.506E-05],[119.17528,-3.506E-05],[119.17872,-3.0935E-05],[119.18216,-3.042E-05],[119.18559,-3.3513E-05],[119.18903,-3.3513E-05],[119.19246,-3.4029E-05],[119.1959,-3.5576E-05],[119.19934,-3.7122E-05],[119.20277,-3.6091E-05],[119.20621,-3.7122E-05],[119.20964,-4.0216E-05],[119.21308,-3.5576E-05],[119.21652,-3.4544E-05],[119.21995,-3.6091E-05],[119.22339,-3.2482E-05],[119.22682,-3.4544E-05],[119.23026,-3.8669E-05],[119.2337,-3.6091E-05],[119.23713,-3.4029E-05],[119.24057,-3.7122E-05],[119.244,-3.2998E-05],[119.24744,-3.2998E-05],[119.25088,-3.6091E-05],[119.25431,-3.6091E-05],[119.25775,-3.9185E-05],[119.26118,-3.5576E-05],[119.26462,-3.6091E-05],[119.26806,-3.3513E-05]]}
-{"quant":[119.445,-0.39887],"mems":[[119.34708,-3.8154E-05],[119.35052,-4.0732E-05],[119.35396,-4.1247E-05],[119.35739,-4.0216E-05],[119.36083,-3.2998E-05],[119.36426,-3.1451E-05],[119.3677,-3.6607E-05],[119.37114,-3.6607E-05],[119.37457,-3.4544E-05],[119.37801,-3.9185E-05],[119.38144,-3.9185E-05],[119.38488,-3.5576E-05],[119.38832,-3.4544E-05],[119.39175,-4.0732E-05],[119.39519,-4.0216E-05],[119.39862,-3.4544E-05],[119.40206,-3.6607E-05],[119.4055,-3.1451E-05],[119.40893,-3.7638E-05],[119.41237,-3.7638E-05],[119.4158,-3.2998E-05],[119.41924,-3.97E-05],[119.42268,-3.5576E-05],[119.42611,-3.7638E-05],[119.42955,-4.1247E-05],[119.43298,-3.7638E-05],[119.43642,-3.3513E-05],[119.43986,-3.4029E-05],[119.44329,-3.9185E-05],[119.44673,-3.7122E-05],[119.45016,-3.7638E-05],[119.4536,-3.7638E-05],[119.45704,-3.6091E-05],[119.46047,-3.3513E-05],[119.46391,-3.4029E-05],[119.46734,-3.9185E-05],[119.47078,-3.6607E-05],[119.47422,-3.6091E-05],[119.47765,-3.8154E-05],[119.48109,-3.4029E-05],[119.48452,-3.1967E-05],[119.48796,-3.6607E-05],[119.4914,-3.506E-05],[119.49483,-3.2482E-05],[119.49827,-3.5576E-05],[119.5017,-3.7638E-05],[119.50514,-3.9185E-05],[119.50858,-3.8154E-05],[119.51201,-3.7122E-05],[119.51545,-3.2482E-05],[119.51888,-3.0935E-05],[119.52232,-3.7638E-05],[119.52576,-4.1247E-05],[119.52919,-4.3309E-05],[119.53263,-3.8154E-05],[119.53606,-3.3513E-05],[119.5395,-3.6607E-05],[119.54294,-3.4029E-05],[119.54637,-3.4029E-05],[119.54981,-3.8154E-05],[119.55324,-3.7122E-05],[119.55668,-3.7638E-05],[119.56012,-3.1967E-05],[119.56355,-3.1967E-05],[119.56699,-3.5576E-05],[119.57042,-3.6091E-05],[119.57386,-3.7638E-05],[119.5773,-3.506E-05],[119.58073,-2.9904E-05],[119.58417,-3.1967E-05],[119.5876,-3.6091E-05],[119.59104,-3.6607E-05],[119.59448,-3.8669E-05],[119.59791,-3.97E-05],[119.60135,-3.6091E-05],[119.60478,-3.9185E-05],[119.60822,-4.2278E-05],[119.61166,-3.6091E-05],[119.61509,-3.7638E-05],[119.61853,-3.97E-05],[119.62196,-3.4544E-05],[119.6254,-3.2998E-05],[119.62884,-3.6607E-05],[119.63227,-3.8669E-05],[119.63571,-3.8154E-05],[119.63914,-3.506E-05],[119.64258,-3.1967E-05]]}
-{"quant":[119.795,-0.44204],"mems":[[119.69756,-3.8669E-05],[119.70099,-3.6091E-05],[119.70443,-3.5576E-05],[119.70786,-3.5576E-05],[119.7113,-3.8154E-05],[119.71474,-3.4544E-05],[119.71817,-3.506E-05],[119.72161,-3.4544E-05],[119.72504,-2.8357E-05],[119.72848,-3.6607E-05],[119.73192,-3.6091E-05],[119.73535,-3.0935E-05],[119.73879,-3.7122E-05],[119.74222,-3.2998E-05],[119.74566,-3.6607E-05],[119.7491,-4.2278E-05],[119.75253,-3.7638E-05],[119.75597,-3.6091E-05],[119.7594,-3.4544E-05],[119.76284,-3.4544E-05],[119.76628,-3.4029E-05],[119.76971,-3.506E-05],[119.77315,-3.5576E-05],[119.77658,-3.4544E-05],[119.78002,-3.6607E-05],[119.78346,-3.1967E-05],[119.78689,-3.0935E-05],[119.79033,-3.6091E-05],[119.79376,-3.506E-05],[119.7972,-3.4544E-05],[119.80064,-3.2482E-05],[119.80407,-3.506E-05],[119.80751,-3.6091E-05],[119.81094,-3.7122E-05],[119.81438,-4.0732E-05],[119.81782,-3.8154E-05],[119.82125,-3.6607E-05],[119.82469,-3.2998E-05],[119.82812,-3.8154E-05],[119.83156,-4.0216E-05],[119.835,-3.2998E-05],[119.83843,-3.8154E-05],[119.84187,-3.8669E-05],[119.8453,-3.6091E-05],[119.84874,-3.4029E-05],[119.85218,-3.2482E-05],[119.85561,-3.7122E-05],[119.85905,-3.8669E-05],[119.86248,-3.6091E-05],[119.86592,-3.8669E-05],[119.86936,-3.9185E-05],[119.87279,-3.3513E-05],[119.87623,-3.9185E-05],[119.87966,-4.1247E-05],[119.8831,-3.5576E-05],[119.88654,-3.7122E-05],[119.88997,-3.5576E-05],[119.89341,-3.506E-05],[119.89684,-3.7638E-05],[119.90028,-3.3513E-05],[119.90372,-3.5576E-05],[119.90715,-3.97E-05],[119.91059,-3.4029E-05],[119.91402,-3.5576E-05],[119.91746,-3.6607E-05],[119.9209,-3.6607E-05],[119.92433,-3.6607E-05],[119.92777,-3.7122E-05],[119.9312,-4.1247E-05],[119.93464,-3.7122E-05],[119.93808,-3.9185E-05],[119.94151,-3.8154E-05],[119.94495,-3.3513E-05],[119.94838,-3.6607E-05],[119.95182,-3.4029E-05],[119.95526,-3.7638E-05],[119.95869,-4.2794E-05],[119.96213,-3.6607E-05],[119.96556,-3.6091E-05],[119.969,-3.6091E-05],[119.97244,-3.7122E-05],[119.97587,-3.8669E-05],[119.97931,-3.4029E-05],[119.98274,-3.3513E-05],[119.98618,-3.2998E-05],[119.98962,-3.7122E-05],[119.99305,-3.97E-05]]}
-{"quant":[120.132,-0.48425],"mems":[[120.03428,-4.0216E-05],[120.03772,-4.0216E-05],[120.04116,-3.7122E-05],[120.04459,-4.0216E-05],[120.04803,-3.9185E-05],[120.05146,-3.2482E-05],[120.0549,-3.4029E-05],[120.05834,-4.1247E-05],[120.06177,-4.1247E-05],[120.06521,-3.9185E-05],[120.06864,-4.0732E-05],[120.07208,-3.7122E-05],[120.07552,-3.7122E-05],[120.07895,-3.9185E-05],[120.08239,-3.5576E-05],[120.08582,-3.6607E-05],[120.08926,-3.8669E-05],[120.0927,-3.5576E-05],[120.09613,-3.7122E-05],[120.09957,-3.7638E-05],[120.103,-3.042E-05],[120.10644,-3.2998E-05],[120.10988,-3.97E-05],[120.11331,-3.97E-05],[120.11675,-4.0732E-05],[120.12018,-4.1763E-05],[120.12362,-3.8669E-05],[120.12706,-3.7122E-05],[120.13049,-4.2794E-05],[120.13393,-4.1247E-05],[120.13736,-3.506E-05],[120.1408,-3.6091E-05],[120.14424,-3.506E-05],[120.14767,-3.97E-05],[120.15111,-3.8669E-05],[120.15454,-3.2482E-05],[120.15798,-3.8669E-05],[120.16142,-3.7638E-05],[120.16485,-3.4029E-05],[120.16829,-3.5576E-05],[120.17172,-3.7638E-05],[120.17516,-3.6091E-05],[120.1786,-3.6091E-05],[120.18203,-4.1247E-05],[120.18547,-3.97E-05],[120.1889,-3.8669E-05],[120.19234,-3.6607E-05],[120.19578,-3.4029E-05],[120.19921,-3.7122E-05],[120.20265,-3.5576E-05],[120.20608,-3.6607E-05],[120.20952,-4.0216E-05],[120.21296,-3.506E-05],[120.21639,-3.5576E-05],[120.21983,-3.8154E-05],[120.22326,-3.4544E-05],[120.2267,-4.0216E-05],[120.23014,-3.9185E-05],[120.23357,-3.9185E-05],[120.23701,-4.4341E-05],[120.24044,-3.3513E-05],[120.24388,-3.2998E-05],[120.24732,-3.7122E-05],[120.25075,-3.2998E-05],[120.25419,-3.4029E-05],[120.25762,-3.506E-05],[120.26106,-3.6091E-05],[120.2645,-3.6607E-05],[120.26793,-3.5576E-05],[120.27137,-3.6607E-05],[120.2748,-4.0216E-05],[120.27824,-3.8669E-05],[120.28168,-3.6091E-05],[120.28511,-4.0732E-05],[120.28855,-3.6607E-05],[120.29198,-3.506E-05],[120.29542,-4.1247E-05],[120.29886,-3.9185E-05],[120.30229,-3.6607E-05],[120.30573,-3.8669E-05],[120.30916,-3.9185E-05],[120.3126,-3.4544E-05],[120.31604,-3.7122E-05],[120.31947,-3.8669E-05],[120.32291,-3.506E-05],[120.32634,-3.7638E-05],[120.32978,-3.7638E-05]]}
-{"quant":[120.488,-0.51928],"mems":[[120.38819,-3.9185E-05],[120.39163,-3.4029E-05],[120.39506,-3.7638E-05],[120.3985,-3.7122E-05],[120.40194,-3.4029E-05],[120.40537,-4.1247E-05],[120.40881,-3.7638E-05],[120.41224,-3.7122E-05],[120.41568,-3.7638E-05],[120.41912,-3.4544E-05],[120.42255,-3.8154E-05],[120.42599,-3.7122E-05],[120.42942,-3.3513E-05],[120.43286,-3.4029E-05],[120.4363,-3.6607E-05],[120.43973,-3.506E-05],[120.44317,-3.2482E-05],[120.4466,-3.7122E-05],[120.45004,-3.97E-05],[120.45348,-3.5576E-05],[120.45691,-3.3513E-05],[120.46035,-3.8669E-05],[120.46378,-3.6607E-05],[120.46722,-3.8154E-05],[120.47066,-3.8669E-05],[120.47409,-3.2998E-05],[120.47753,-3.2998E-05],[120.48096,-3.2482E-05],[120.4844,-3.6607E-05],[120.48784,-3.6091E-05],[120.49127,-3.5576E-05],[120.49471,-3.8154E-05],[120.49814,-3.2482E-05],[120.50158,-3.2998E-05],[120.50502,-3.506E-05],[120.50845,-3.3513E-05],[120.51189,-3.4544E-05],[120.51532,-3.8154E-05],[120.51876,-3.2998E-05],[120.5222,-3.042E-05],[120.52563,-3.5576E-05],[120.52907,-3.6091E-05],[120.5325,-3.8669E-05],[120.53594,-3.6607E-05],[120.53938,-3.4544E-05],[120.54281,-3.8154E-05],[120.54625,-3.5576E-05],[120.54968,-3.4544E-05],[120.55312,-3.4544E-05],[120.55656,-3.7122E-05],[120.55999,-3.8669E-05],[120.56343,-3.506E-05],[120.56686,-3.6607E-05],[120.5703,-3.6607E-05],[120.57374,-3.506E-05],[120.57717,-3.506E-05],[120.58061,-3.506E-05],[120.58404,-3.7122E-05],[120.58748,-3.7638E-05],[120.59092,-3.7638E-05],[120.59435,-3.7122E-05],[120.59779,-3.506E-05],[120.60122,-3.2482E-05],[120.60466,-3.2998E-05],[120.6081,-3.7122E-05],[120.61153,-3.2998E-05],[120.61497,-3.2998E-05],[120.6184,-3.4544E-05],[120.62184,-3.3513E-05],[120.62528,-3.8154E-05],[120.62871,-3.6091E-05],[120.63215,-3.8154E-05],[120.63558,-4.0732E-05],[120.63902,-4.0216E-05],[120.64246,-4.1763E-05],[120.64589,-4.0216E-05],[120.64933,-4.0216E-05],[120.65276,-3.5576E-05],[120.6562,-3.4029E-05],[120.65964,-3.6607E-05],[120.66307,-3.6091E-05],[120.66651,-3.6091E-05],[120.66994,-3.506E-05],[120.67338,-3.7638E-05],[120.67682,-3.8154E-05],[120.68025,-3.4029E-05],[120.68369,-3.1967E-05],[120.68712,-3.2998E-05]]}
-{"quant":[120.849,-0.54673],"mems":[[120.75241,-3.0935E-05],[120.75584,-3.3513E-05],[120.75928,-3.1451E-05],[120.76272,-3.6607E-05],[120.76615,-3.3513E-05],[120.76959,-3.6607E-05],[120.77302,-3.97E-05],[120.77646,-3.6091E-05],[120.7799,-3.8154E-05],[120.78333,-3.6091E-05],[120.78677,-3.8669E-05],[120.7902,-4.0732E-05],[120.79364,-3.9185E-05],[120.79708,-3.4029E-05],[120.80051,-3.042E-05],[120.80395,-3.2998E-05],[120.80738,-3.6091E-05],[120.81082,-3.9185E-05],[120.81426,-3.7122E-05],[120.81769,-3.6607E-05],[120.82113,-3.9185E-05],[120.82456,-3.8669E-05],[120.828,-3.4029E-05],[120.83144,-3.2998E-05],[120.83487,-3.7638E-05],[120.83831,-3.9185E-05],[120.84174,-3.3513E-05],[120.84518,-3.3513E-05],[120.84862,-3.8154E-05],[120.85205,-3.7122E-05],[120.85549,-4.1247E-05],[120.85892,-3.8669E-05],[120.86236,-3.4029E-05],[120.8658,-3.6091E-05],[120.86923,-3.4544E-05],[120.87267,-3.7122E-05],[120.8761,-3.2998E-05],[120.87954,-3.1967E-05],[120.88298,-3.3513E-05],[120.88641,-2.9904E-05],[120.88985,-3.2482E-05],[120.89328,-3.5576E-05],[120.89672,-3.9185E-05],[120.90016,-3.8154E-05],[120.90359,-3.2998E-05],[120.90703,-3.8154E-05],[120.91046,-4.4856E-05],[120.9139,-4.2794E-05],[120.91734,-3.8154E-05],[120.92077,-3.5576E-05],[120.92421,-3.7122E-05],[120.92764,-3.8669E-05],[120.93108,-3.6091E-05],[120.93452,-3.2998E-05],[120.93795,-3.2998E-05],[120.94139,-3.5576E-05],[120.94482,-3.7122E-05],[120.94826,-4.0216E-05],[120.9517,-3.8154E-05],[120.95513,-3.2998E-05],[120.95857,-3.6607E-05],[120.962,-3.4029E-05],[120.96544,-2.9389E-05],[120.96888,-3.2482E-05],[120.97231,-3.7638E-05],[120.97575,-3.8669E-05],[120.97918,-3.4544E-05],[120.98262,-3.3513E-05],[120.98606,-3.3513E-05],[120.98949,-3.7638E-05],[120.99293,-4.0216E-05],[120.99636,-3.6607E-05],[120.9998,-3.5576E-05],[121.00324,-3.506E-05],[121.00667,-3.6607E-05],[121.01011,-3.8669E-05],[121.01354,-3.8669E-05],[121.01698,-3.8669E-05],[121.02042,-3.5576E-05],[121.02385,-3.6091E-05],[121.02729,-3.1451E-05],[121.03072,-3.1451E-05],[121.03416,-3.8154E-05],[121.0376,-3.4029E-05],[121.04103,-3.4544E-05],[121.04447,-3.8669E-05],[121.0479,-3.7638E-05]]}
-{"quant":[121.217,-0.5739],"mems":[[121.12006,-3.2998E-05],[121.1235,-3.6091E-05],[121.12693,-3.5576E-05],[121.13037,-3.4029E-05],[121.1338,-3.7122E-05],[121.13724,-3.5576E-05],[121.14068,-3.506E-05],[121.14411,-3.2998E-05],[121.14755,-3.6607E-05],[121.15098,-3.6091E-05],[121.15442,-3.2482E-05],[121.15786,-3.5576E-05],[121.16129,-3.6091E-05],[121.16473,-3.6091E-05],[121.16816,-3.8669E-05],[121.1716,-4.0732E-05],[121.17504,-3.7638E-05],[121.17847,-3.6607E-05],[121.18191,-3.4029E-05],[121.18534,-3.7638E-05],[121.18878,-4.0732E-05],[121.19222,-3.7638E-05],[121.19565,-3.7122E-05],[121.19909,-3.1451E-05],[121.20252,-3.3513E-05],[121.20596,-3.7122E-05],[121.2094,-3.4544E-05],[121.21283,-3.2482E-05],[121.21627,-3.5576E-05],[121.2197,-3.5576E-05],[121.22314,-3.2998E-05],[121.22658,-3.9185E-05],[121.23001,-3.8154E-05],[121.23345,-3.9185E-05],[121.23688,-3.8154E-05],[121.24032,-3.042E-05],[121.24376,-3.6091E-05],[121.24719,-3.8669E-05],[121.25063,-3.4029E-05],[121.25406,-3.8669E-05],[121.2575,-3.7638E-05],[121.26094,-3.3513E-05],[121.26437,-3.8669E-05],[121.26781,-4.1247E-05],[121.27124,-4.0216E-05],[121.27468,-3.506E-05],[121.27812,-3.0935E-05],[121.28155,-3.2998E-05],[121.28499,-3.5576E-05],[121.28842,-3.5576E-05],[121.29186,-3.1967E-05],[121.2953,-3.7122E-05],[121.29873,-3.97E-05],[121.30217,-3.97E-05],[121.3056,-3.97E-05],[121.30904,-3.7638E-05],[121.31248,-3.6091E-05],[121.31591,-3.506E-05],[121.31935,-3.7638E-05],[121.32278,-3.6607E-05],[121.32622,-3.7122E-05],[121.32966,-3.5576E-05],[121.33309,-3.4029E-05],[121.33653,-3.7638E-05],[121.33996,-3.506E-05],[121.3434,-3.4544E-05],[121.34684,-3.2998E-05],[121.35027,-3.042E-05],[121.35371,-3.4544E-05],[121.35714,-3.6091E-05],[121.36058,-3.6607E-05],[121.36402,-3.7638E-05],[121.36745,-3.5576E-05],[121.37089,-3.6607E-05],[121.37432,-3.4029E-05],[121.37776,-2.9389E-05],[121.3812,-3.506E-05],[121.38463,-4.2278E-05],[121.38807,-4.1763E-05],[121.3915,-3.3513E-05],[121.39494,-3.1967E-05],[121.39838,-3.5576E-05],[121.40181,-3.4029E-05],[121.40525,-3.5576E-05],[121.40868,-3.9185E-05],[121.41212,-3.5576E-05],[121.41556,-3.2998E-05]]}
-{"quant":[121.598,-0.5995],"mems":[[121.50146,-3.9185E-05],[121.50489,-3.6607E-05],[121.50833,-3.7638E-05],[121.51176,-3.1967E-05],[121.5152,-3.1451E-05],[121.51864,-3.2998E-05],[121.52207,-3.4544E-05],[121.52551,-3.506E-05],[121.52894,-3.3513E-05],[121.53238,-3.042E-05],[121.53582,-3.1967E-05],[121.53925,-3.6091E-05],[121.54269,-3.506E-05],[121.54612,-3.506E-05],[121.54956,-3.0935E-05],[121.553,-3.0935E-05],[121.55643,-3.0935E-05],[121.55987,-3.1451E-05],[121.5633,-3.7638E-05],[121.56674,-3.2998E-05],[121.57018,-3.2998E-05],[121.57361,-3.7122E-05],[121.57705,-3.5576E-05],[121.58048,-3.5576E-05],[121.58392,-3.8154E-05],[121.58736,-4.0732E-05],[121.59079,-3.7638E-05],[121.59423,-3.8154E-05],[121.59766,-3.6607E-05],[121.6011,-3.6091E-05],[121.60454,-3.9185E-05],[121.60797,-3.5576E-05],[121.61141,-3.6091E-05],[121.61484,-3.506E-05],[121.61828,-3.506E-05],[121.62172,-3.6091E-05],[121.62515,-3.506E-05],[121.62859,-3.5576E-05],[121.63202,-3.6607E-05],[121.63546,-3.6607E-05],[121.6389,-3.1451E-05],[121.64233,-3.4544E-05],[121.64577,-3.6607E-05],[121.6492,-3.7638E-05],[121.65264,-3.9185E-05],[121.65608,-3.4544E-05],[121.65951,-3.506E-05],[121.66295,-3.506E-05],[121.66638,-3.5576E-05],[121.66982,-3.7638E-05],[121.67326,-3.5576E-05],[121.67669,-3.6091E-05],[121.68013,-3.4544E-05],[121.68356,-3.3513E-05],[121.687,-3.7638E-05],[121.69044,-3.8669E-05],[121.69387,-3.4544E-05],[121.69731,-3.6607E-05],[121.70075,-3.97E-05],[121.70419,-3.7638E-05],[121.70762,-3.506E-05],[121.71106,-3.5576E-05],[121.7145,-3.7122E-05],[121.71794,-3.2998E-05],[121.72137,-3.1967E-05],[121.72481,-4.0216E-05],[121.72825,-4.0732E-05],[121.73169,-3.6607E-05],[121.73512,-3.6607E-05],[121.73856,-3.3513E-05],[121.742,-3.3513E-05],[121.74543,-3.1967E-05],[121.74887,-3.4544E-05],[121.75231,-3.8154E-05],[121.75575,-3.6607E-05],[121.75918,-3.8154E-05],[121.76262,-3.3513E-05],[121.76606,-3.4544E-05],[121.7695,-4.1763E-05],[121.77293,-3.7122E-05],[121.77637,-3.5576E-05],[121.77981,-3.2482E-05],[121.78325,-3.506E-05],[121.78668,-4.1247E-05],[121.79012,-4.0732E-05],[121.79356,-4.1763E-05],[121.79699,-3.4544E-05],[121.80043,-3.4544E-05]]}
-{"quant":[121.952,-0.63114],"mems":[[121.85543,-3.506E-05],[121.85887,-3.2482E-05],[121.8623,-3.2998E-05],[121.86574,-3.506E-05],[121.86918,-3.8154E-05],[121.87262,-4.1763E-05],[121.87605,-3.7638E-05],[121.87949,-3.6607E-05],[121.88293,-3.7122E-05],[121.88637,-4.1247E-05],[121.8898,-3.8669E-05],[121.89324,-3.5576E-05],[121.89668,-4.1763E-05],[121.90011,-3.6607E-05],[121.90355,-3.7122E-05],[121.90699,-3.8154E-05],[121.91043,-3.3513E-05],[121.91386,-3.9185E-05],[121.9173,-3.97E-05],[121.92074,-3.7638E-05],[121.92418,-3.8669E-05],[121.92761,-4.0216E-05],[121.93105,-4.0732E-05],[121.93449,-3.506E-05],[121.93793,-3.2482E-05],[121.94136,-3.506E-05],[121.9448,-3.7122E-05],[121.94824,-3.506E-05],[121.95167,-3.4544E-05],[121.95511,-3.506E-05],[121.95855,-3.8154E-05],[121.96199,-4.1763E-05],[121.96542,-3.9185E-05],[121.96886,-3.97E-05],[121.9723,-3.97E-05],[121.97574,-3.6607E-05],[121.97917,-3.506E-05],[121.98261,-3.506E-05],[121.98605,-3.8669E-05],[121.98949,-3.5576E-05],[121.99292,-3.506E-05],[121.99636,-3.6607E-05],[121.9998,-3.7122E-05],[122.00323,-3.9185E-05],[122.00667,-3.6607E-05],[122.01011,-3.7122E-05],[122.01355,-3.8669E-05],[122.01698,-3.506E-05],[122.02042,-3.4544E-05],[122.02386,-3.97E-05],[122.0273,-3.9185E-05],[122.03073,-3.5576E-05],[122.03417,-3.3513E-05],[122.03761,-3.4544E-05],[122.04105,-3.97E-05],[122.04448,-3.7122E-05],[122.04792,-3.5576E-05],[122.05136,-3.5576E-05],[122.05479,-3.2482E-05],[122.05823,-3.4029E-05],[122.06167,-3.8154E-05],[122.06511,-3.97E-05],[122.06854,-3.5576E-05],[122.07198,-3.8154E-05],[122.07542,-3.97E-05],[122.07886,-3.2998E-05],[122.08229,-3.2482E-05],[122.08573,-3.7122E-05],[122.08917,-3.6091E-05],[122.09261,-3.3513E-05],[122.09604,-3.4544E-05],[122.09948,-3.6091E-05],[122.10292,-3.7638E-05],[122.10635,-3.6091E-05],[122.10979,-3.7638E-05],[122.11323,-3.8669E-05],[122.11667,-3.7122E-05],[122.1201,-3.7638E-05],[122.12354,-3.7122E-05],[122.12698,-3.7122E-05],[122.13042,-3.7122E-05],[122.13385,-4.0216E-05],[122.13729,-4.0216E-05],[122.14073,-3.4029E-05],[122.14417,-3.4544E-05],[122.1476,-3.5576E-05],[122.15104,-3.2482E-05]]}
-{"quant":[122.292,-0.66583],"mems":[[122.19229,-3.8669E-05],[122.19573,-3.8669E-05],[122.19916,-3.6607E-05],[122.2026,-3.2998E-05],[122.20604,-3.6607E-05],[122.20947,-3.6607E-05],[122.21291,-3.8154E-05],[122.21635,-3.97E-05],[122.21979,-3.5576E-05],[122.22322,-3.2998E-05],[122.22666,-3.6607E-05],[122.2301,-3.8154E-05],[122.23354,-3.6091E-05],[122.23697,-3.2482E-05],[122.24041,-3.7122E-05],[122.24385,-4.2794E-05],[122.24729,-3.8154E-05],[122.25072,-3.8154E-05],[122.25416,-3.8154E-05],[122.2576,-3.9185E-05],[122.26103,-3.9185E-05],[122.26447,-3.7122E-05],[122.26791,-3.9185E-05],[122.27135,-3.9185E-05],[122.27478,-3.97E-05],[122.27822,-3.8154E-05],[122.28166,-3.5576E-05],[122.2851,-3.1967E-05],[122.28853,-3.3513E-05],[122.29197,-3.8669E-05],[122.29541,-3.8154E-05],[122.29885,-3.7122E-05],[122.30228,-3.6607E-05],[122.30572,-3.7122E-05],[122.30916,-4.0216E-05],[122.31259,-3.7122E-05],[122.31603,-3.2998E-05],[122.31947,-3.5576E-05],[122.32291,-3.506E-05],[122.32634,-3.8669E-05],[122.32978,-3.9185E-05],[122.33322,-3.6091E-05],[122.33666,-3.4029E-05],[122.34009,-3.3513E-05],[122.34353,-3.7638E-05],[122.34697,-3.6091E-05],[122.35041,-3.5576E-05],[122.35384,-3.7122E-05],[122.35728,-3.7638E-05],[122.36072,-3.6607E-05],[122.36415,-3.7638E-05],[122.36759,-3.7122E-05],[122.37103,-3.6091E-05],[122.37447,-3.7638E-05],[122.3779,-3.6607E-05],[122.38134,-3.9185E-05],[122.38478,-4.1763E-05],[122.38822,-4.2278E-05],[122.39165,-3.8669E-05],[122.39509,-3.5576E-05],[122.39853,-3.4544E-05],[122.40197,-3.4544E-05],[122.4054,-4.1247E-05],[122.40884,-3.3513E-05],[122.41228,-3.1451E-05],[122.41571,-3.6091E-05],[122.41915,-3.1967E-05],[122.42259,-3.9185E-05],[122.42603,-3.7122E-05],[122.42946,-3.506E-05],[122.4329,-3.5576E-05],[122.43634,-3.042E-05],[122.43978,-3.7638E-05],[122.44321,-3.7638E-05],[122.44665,-3.506E-05],[122.45009,-3.97E-05],[122.45353,-3.9185E-05],[122.45696,-3.506E-05],[122.4604,-3.2998E-05],[122.46384,-3.6607E-05],[122.46727,-4.1247E-05],[122.47071,-3.4029E-05],[122.47415,-3.042E-05],[122.47759,-3.6607E-05],[122.48102,-3.3513E-05],[122.48446,-3.506E-05],[122.4879,-3.8154E-05],[122.49134,-3.5576E-05]]}
-{"quant":[122.633,-0.69941],"mems":[[122.53602,-3.8154E-05],[122.53946,-3.4544E-05],[122.5429,-3.4029E-05],[122.54633,-3.4544E-05],[122.54977,-3.6091E-05],[122.55321,-3.5576E-05],[122.55665,-3.2482E-05],[122.56008,-3.8669E-05],[122.56352,-3.5576E-05],[122.56696,-3.6091E-05],[122.57039,-4.2794E-05],[122.57383,-3.5576E-05],[122.57727,-3.6607E-05],[122.58071,-4.0216E-05],[122.58414,-3.7638E-05],[122.58758,-3.6091E-05],[122.59102,-3.506E-05],[122.59446,-3.6607E-05],[122.59789,-3.7638E-05],[122.60133,-3.8669E-05],[122.60477,-3.6607E-05],[122.60821,-3.6091E-05],[122.61164,-3.7638E-05],[122.61508,-3.2998E-05],[122.61852,-3.0935E-05],[122.62195,-3.5576E-05],[122.62539,-3.97E-05],[122.62883,-3.8154E-05],[122.63227,-3.4029E-05],[122.6357,-3.4544E-05],[122.63914,-3.6607E-05],[122.64258,-3.6091E-05],[122.64602,-3.6607E-05],[122.64945,-3.7122E-05],[122.65289,-3.506E-05],[122.65633,-3.5576E-05],[122.65977,-3.7122E-05],[122.6632,-3.7638E-05],[122.66664,-3.97E-05],[122.67008,-4.3309E-05],[122.67351,-3.97E-05],[122.67695,-3.7122E-05],[122.68039,-4.0216E-05],[122.68383,-3.4029E-05],[122.68726,-2.8357E-05],[122.6907,-3.506E-05],[122.69414,-3.6607E-05],[122.69758,-3.3513E-05],[122.70101,-3.506E-05],[122.70445,-3.6091E-05],[122.70789,-3.7638E-05],[122.71133,-3.7122E-05],[122.71476,-3.8154E-05],[122.7182,-3.97E-05],[122.72164,-4.0216E-05],[122.72507,-3.8154E-05],[122.72851,-3.6091E-05],[122.73195,-3.7638E-05],[122.73539,-3.2998E-05],[122.73882,-3.506E-05],[122.74226,-3.8154E-05],[122.7457,-3.7122E-05],[122.74914,-3.506E-05],[122.75257,-3.2482E-05],[122.75601,-3.7638E-05],[122.75945,-3.6091E-05],[122.76289,-3.7122E-05],[122.76632,-4.1247E-05],[122.76976,-3.5576E-05],[122.7732,-3.4029E-05],[122.77663,-3.506E-05],[122.78007,-3.6091E-05],[122.78351,-3.7638E-05],[122.78695,-3.506E-05],[122.79038,-3.6607E-05],[122.79382,-4.0732E-05],[122.79726,-3.6607E-05],[122.8007,-3.2998E-05],[122.80413,-4.0732E-05],[122.80757,-3.7638E-05],[122.81101,-3.1451E-05],[122.81445,-3.8669E-05],[122.81788,-3.9185E-05],[122.82132,-3.6607E-05],[122.82476,-4.1763E-05],[122.82819,-4.1763E-05],[122.83163,-3.8669E-05]]}
-{"quant":[122.976,-0.73178],"mems":[[122.87632,-3.3513E-05],[122.87975,-3.5576E-05],[122.88319,-3.9185E-05],[122.88663,-4.0216E-05],[122.89007,-3.6091E-05],[122.8935,-3.5576E-05],[122.89694,-3.6607E-05],[122.90038,-3.5576E-05],[122.90382,-3.2482E-05],[122.90725,-3.1967E-05],[122.91069,-3.6091E-05],[122.91413,-3.9185E-05],[122.91757,-3.7122E-05],[122.921,-3.1967E-05],[122.92444,-3.9185E-05],[122.92788,-3.97E-05],[122.93131,-3.2998E-05],[122.93475,-3.506E-05],[122.93819,-3.3513E-05],[122.94163,-3.4544E-05],[122.94506,-3.6091E-05],[122.9485,-3.7638E-05],[122.95194,-4.0216E-05],[122.95538,-3.97E-05],[122.95881,-4.1247E-05],[122.96225,-4.0216E-05],[122.96569,-3.6607E-05],[122.96913,-3.506E-05],[122.97256,-3.506E-05],[122.976,-3.4029E-05],[122.97944,-3.6607E-05],[122.98287,-4.0216E-05],[122.98631,-3.5576E-05],[122.98975,-3.4029E-05],[122.99319,-3.4544E-05],[122.99662,-3.3513E-05],[123.00006,-3.8154E-05],[123.0035,-3.9185E-05],[123.00694,-3.8669E-05],[123.01037,-3.97E-05],[123.01381,-3.506E-05],[123.01725,-3.2998E-05],[123.02069,-3.8154E-05],[123.02412,-3.8154E-05],[123.02756,-3.4029E-05],[123.031,-3.5576E-05],[123.03443,-3.6607E-05],[123.03787,-3.3513E-05],[123.04131,-3.6607E-05],[123.04475,-4.2278E-05],[123.04818,-3.9185E-05],[123.05162,-3.7122E-05],[123.05506,-3.7638E-05],[123.0585,-3.6607E-05],[123.06193,-3.7122E-05],[123.06537,-3.6607E-05],[123.06881,-3.8669E-05],[123.07225,-3.97E-05],[123.07568,-3.6607E-05],[123.07912,-3.5576E-05],[123.08256,-3.7638E-05],[123.08599,-3.9185E-05],[123.08943,-3.7122E-05],[123.09287,-3.8669E-05],[123.09631,-3.97E-05],[123.09974,-3.9185E-05],[123.10318,-4.0216E-05],[123.10662,-3.97E-05],[123.11006,-3.97E-05],[123.11349,-3.7122E-05],[123.11693,-3.8669E-05],[123.12037,-4.0732E-05],[123.12381,-3.6091E-05],[123.12724,-3.6607E-05],[123.13068,-3.6091E-05],[123.13412,-3.506E-05],[123.13755,-3.5576E-05],[123.14099,-3.4544E-05],[123.14443,-3.97E-05],[123.14787,-3.8154E-05],[123.1513,-3.7122E-05],[123.15474,-3.8669E-05],[123.15818,-3.3513E-05],[123.16162,-3.4544E-05],[123.16505,-3.9185E-05],[123.16849,-3.9185E-05],[123.17193,-3.6607E-05],[123.17537,-3.7638E-05]]}
-{"quant":[123.329,-0.76328],"mems":[[123.23036,-3.97E-05],[123.2338,-3.506E-05],[123.23724,-3.2482E-05],[123.24067,-3.8669E-05],[123.24411,-3.5576E-05],[123.24755,-3.6607E-05],[123.25099,-3.8154E-05],[123.25442,-3.6091E-05],[123.25786,-3.7122E-05],[123.2613,-4.0732E-05],[123.26474,-4.0732E-05],[123.26817,-3.506E-05],[123.27161,-3.7638E-05],[123.27505,-4.1247E-05],[123.27849,-3.8154E-05],[123.28192,-3.8154E-05],[123.28536,-3.7638E-05],[123.2888,-3.6607E-05],[123.29223,-3.506E-05],[123.29567,-3.8154E-05],[123.29911,-4.0216E-05],[123.30255,-4.1247E-05],[123.30598,-3.97E-05],[123.30942,-3.042E-05],[123.31286,-3.2482E-05],[123.3163,-3.506E-05],[123.31973,-3.6607E-05],[123.32317,-3.8669E-05],[123.32661,-3.7122E-05],[123.33005,-4.0216E-05],[123.33348,-3.97E-05],[123.33692,-3.97E-05],[123.34036,-3.8669E-05],[123.34379,-3.1967E-05],[123.34723,-3.2998E-05],[123.35067,-3.4029E-05],[123.35411,-3.506E-05],[123.35754,-3.7122E-05],[123.36098,-3.7122E-05],[123.36442,-3.5576E-05],[123.36786,-3.4544E-05],[123.37129,-3.3513E-05],[123.37473,-2.9389E-05],[123.37817,-3.5576E-05],[123.38161,-4.1247E-05],[123.38504,-3.9185E-05],[123.38848,-3.7122E-05],[123.39192,-2.9389E-05],[123.39535,-3.0935E-05],[123.39879,-3.8154E-05],[123.40223,-3.6607E-05],[123.40567,-3.7122E-05],[123.4091,-3.4544E-05],[123.41254,-3.6607E-05],[123.41598,-3.7638E-05],[123.41942,-2.9904E-05],[123.42285,-3.506E-05],[123.42629,-3.9185E-05],[123.42973,-3.8154E-05],[123.43317,-3.7638E-05],[123.4366,-3.6607E-05],[123.44004,-3.8154E-05],[123.44348,-3.2998E-05],[123.44691,-3.2482E-05],[123.45035,-3.4029E-05],[123.45379,-3.6607E-05],[123.45723,-4.1247E-05],[123.46066,-4.0216E-05],[123.4641,-3.9185E-05],[123.46754,-3.7122E-05],[123.47098,-3.9185E-05],[123.47441,-3.7638E-05],[123.47785,-3.4029E-05],[123.48129,-3.7638E-05],[123.48473,-3.6091E-05],[123.48816,-3.5576E-05],[123.4916,-3.1967E-05],[123.49504,-3.2998E-05],[123.49847,-3.8669E-05],[123.50191,-3.8669E-05],[123.50535,-3.7638E-05],[123.50879,-3.4544E-05],[123.51222,-3.7122E-05],[123.51566,-3.7122E-05],[123.5191,-3.3513E-05],[123.52254,-3.7122E-05],[123.52597,-3.8669E-05]]}
-{"quant":[123.695,-0.79462],"mems":[[123.59816,-3.5576E-05],[123.60159,-3.506E-05],[123.60503,-3.506E-05],[123.60847,-4.0216E-05],[123.61191,-3.4544E-05],[123.61534,-3.4029E-05],[123.61878,-3.8669E-05],[123.62222,-3.506E-05],[123.62566,-3.8669E-05],[123.62909,-3.9185E-05],[123.63253,-3.5576E-05],[123.63597,-3.7638E-05],[123.63941,-3.6091E-05],[123.64284,-3.506E-05],[123.64628,-3.6607E-05],[123.64972,-3.8154E-05],[123.65315,-3.7122E-05],[123.65659,-3.7122E-05],[123.66003,-3.97E-05],[123.66347,-3.7122E-05],[123.6669,-3.506E-05],[123.67034,-3.506E-05],[123.67378,-3.6091E-05],[123.67722,-3.7122E-05],[123.68065,-3.8669E-05],[123.68409,-3.506E-05],[123.68753,-3.042E-05],[123.69097,-3.7122E-05],[123.6944,-3.5576E-05],[123.69784,-3.4029E-05],[123.70128,-3.97E-05],[123.70471,-3.9185E-05],[123.70815,-4.1247E-05],[123.71159,-3.97E-05],[123.71503,-3.4544E-05],[123.71846,-3.506E-05],[123.7219,-3.3513E-05],[123.72534,-3.5576E-05],[123.72878,-4.0732E-05],[123.73221,-4.0216E-05],[123.73565,-3.7638E-05],[123.73909,-3.7122E-05],[123.74253,-3.6607E-05],[123.74596,-3.6091E-05],[123.7494,-3.7638E-05],[123.75284,-3.7122E-05],[123.75627,-3.5576E-05],[123.75971,-3.7122E-05],[123.76315,-3.97E-05],[123.76659,-3.8669E-05],[123.77002,-3.506E-05],[123.77346,-3.0935E-05],[123.7769,-3.4544E-05],[123.78034,-3.7122E-05],[123.78377,-3.5576E-05],[123.78721,-3.97E-05],[123.79065,-4.0732E-05],[123.79409,-3.7122E-05],[123.79752,-3.2482E-05],[123.80096,-3.4029E-05],[123.8044,-3.3513E-05],[123.80783,-3.6607E-05],[123.81127,-4.1247E-05],[123.81471,-3.4029E-05],[123.81815,-3.506E-05],[123.82158,-3.8154E-05],[123.82502,-3.7122E-05],[123.82846,-3.8154E-05],[123.8319,-3.9185E-05],[123.83533,-3.3513E-05],[123.83877,-3.506E-05],[123.84221,-4.0216E-05],[123.84565,-3.7122E-05],[123.84908,-3.8669E-05],[123.85252,-3.3513E-05],[123.85596,-3.2998E-05],[123.85939,-3.2482E-05],[123.86283,-3.2482E-05],[123.86627,-3.8669E-05],[123.86971,-3.2482E-05],[123.87314,-3.4544E-05],[123.87658,-3.3513E-05],[123.88002,-3.4544E-05],[123.88346,-3.97E-05],[123.88689,-3.1967E-05],[123.89033,-3.4029E-05],[123.89377,-3.4029E-05]]}
-{"quant":[124.049,-0.82299],"mems":[[123.9522,-3.7122E-05],[123.95564,-3.5576E-05],[123.95908,-3.7122E-05],[123.96251,-3.6091E-05],[123.96595,-3.4029E-05],[123.96939,-3.6607E-05],[123.97283,-3.6607E-05],[123.97626,-3.7638E-05],[123.9797,-3.7638E-05],[123.98314,-3.7638E-05],[123.98658,-3.6607E-05],[123.99001,-3.5576E-05],[123.99345,-3.5576E-05],[123.99689,-3.7638E-05],[124.00033,-3.8154E-05],[124.00376,-3.9185E-05],[124.0072,-3.97E-05],[124.01064,-3.8154E-05],[124.01407,-3.7122E-05],[124.01751,-3.4029E-05],[124.02095,-3.7122E-05],[124.02439,-4.3309E-05],[124.02782,-3.7122E-05],[124.03126,-3.5576E-05],[124.0347,-3.6607E-05],[124.03814,-3.1967E-05],[124.04157,-3.4544E-05],[124.04501,-3.2998E-05],[124.04845,-3.506E-05],[124.05189,-3.8154E-05],[124.05532,-3.4544E-05],[124.05876,-3.7122E-05],[124.0622,-3.7122E-05],[124.06563,-3.6607E-05],[124.06907,-3.97E-05],[124.07251,-3.7122E-05],[124.07595,-3.8154E-05],[124.07938,-4.0732E-05],[124.08282,-3.5576E-05],[124.08626,-3.4544E-05],[124.0897,-3.8154E-05],[124.09313,-3.7122E-05],[124.09657,-3.6607E-05],[124.10001,-3.9185E-05],[124.10345,-4.2794E-05],[124.10688,-4.1763E-05],[124.11032,-3.4544E-05],[124.11376,-3.506E-05],[124.11719,-3.97E-05],[124.12063,-3.6607E-05],[124.12407,-3.8154E-05],[124.12751,-3.7122E-05],[124.13094,-3.4029E-05],[124.13438,-3.7122E-05],[124.13782,-3.6091E-05],[124.14126,-3.4544E-05],[124.14469,-3.2998E-05],[124.14813,-3.8669E-05],[124.15157,-3.97E-05],[124.15501,-3.5576E-05],[124.15844,-3.9185E-05],[124.16188,-3.6607E-05],[124.16532,-3.7122E-05],[124.16875,-3.8669E-05],[124.17219,-3.2482E-05],[124.17563,-3.1967E-05],[124.17907,-3.3513E-05],[124.1825,-3.4544E-05],[124.18594,-3.7638E-05],[124.18938,-3.6091E-05],[124.19282,-4.0216E-05],[124.19625,-4.3825E-05],[124.19969,-3.8669E-05],[124.20313,-3.9185E-05],[124.20657,-3.8154E-05],[124.21,-3.7122E-05],[124.21344,-3.97E-05],[124.21688,-3.97E-05],[124.22031,-3.7122E-05],[124.22375,-3.8154E-05],[124.22719,-4.0216E-05],[124.23063,-3.7638E-05],[124.23406,-3.6607E-05],[124.2375,-3.8154E-05],[124.24094,-3.6607E-05],[124.24438,-3.7638E-05],[124.24781,-3.97E-05]]}
-{"quant":[124.398,-0.84319],"mems":[[124.29936,-3.7638E-05],[124.3028,-3.7638E-05],[124.30623,-3.7122E-05],[124.30967,-4.1247E-05],[124.3131,-3.506E-05],[124.31654,-3.1967E-05],[124.31998,-3.7122E-05],[124.32341,-3.4544E-05],[124.32685,-3.6607E-05],[124.33028,-3.6607E-05],[124.33372,-3.2482E-05],[124.33716,-3.5576E-05],[124.34059,-3.7122E-05],[124.34403,-3.9185E-05],[124.34746,-3.506E-05],[124.3509,-2.9389E-05],[124.35434,-3.4029E-05],[124.35777,-3.5576E-05],[124.36121,-3.4029E-05],[124.36464,-3.6091E-05],[124.36808,-4.1247E-05],[124.37152,-3.97E-05],[124.37495,-3.4544E-05],[124.37839,-3.506E-05],[124.38182,-3.6091E-05],[124.38526,-3.9185E-05],[124.3887,-3.6607E-05],[124.39213,-2.9904E-05],[124.39557,-3.6091E-05],[124.399,-3.8154E-05],[124.40244,-3.7122E-05],[124.40588,-4.1247E-05],[124.40931,-3.5576E-05],[124.41275,-3.3513E-05],[124.41618,-3.7122E-05],[124.41962,-3.7122E-05],[124.42306,-4.0732E-05],[124.42649,-4.1247E-05],[124.42993,-3.6607E-05],[124.43336,-3.2998E-05],[124.4368,-3.506E-05],[124.44024,-3.97E-05],[124.44367,-3.9185E-05],[124.44711,-3.6607E-05],[124.45054,-3.506E-05],[124.45398,-3.1967E-05],[124.45742,-3.2998E-05],[124.46085,-3.97E-05],[124.46429,-4.1247E-05],[124.46772,-3.7638E-05],[124.47116,-3.506E-05],[124.4746,-3.5576E-05],[124.47803,-3.7122E-05],[124.48147,-3.8154E-05],[124.4849,-4.1247E-05],[124.48834,-3.6091E-05],[124.49178,-3.0935E-05],[124.49521,-3.2998E-05],[124.49865,-3.4544E-05],[124.50208,-3.7638E-05],[124.50552,-3.6607E-05],[124.50896,-3.7122E-05],[124.51239,-3.8669E-05],[124.51583,-3.97E-05],[124.51926,-4.2794E-05],[124.5227,-4.1247E-05],[124.52614,-3.6607E-05],[124.52957,-3.4029E-05],[124.53301,-3.7638E-05],[124.53644,-3.8154E-05],[124.53988,-3.8154E-05],[124.54332,-4.0216E-05],[124.54675,-3.7638E-05],[124.55019,-3.6607E-05],[124.55362,-3.4029E-05],[124.55706,-3.3513E-05],[124.5605,-3.5576E-05],[124.56393,-3.1967E-05],[124.56737,-3.4029E-05],[124.5708,-3.5576E-05],[124.57424,-3.3513E-05],[124.57768,-3.8154E-05],[124.58111,-3.7638E-05],[124.58455,-3.6091E-05],[124.58798,-3.7122E-05],[124.59142,-3.8154E-05],[124.59486,-3.9185E-05]]}
-{"quant":[124.851,-0.86406],"mems":[[124.75291,-3.506E-05],[124.75635,-3.4029E-05],[124.75978,-4.0216E-05],[124.76322,-3.6607E-05],[124.76666,-3.9185E-05],[124.77009,-3.4544E-05],[124.77353,-3.042E-05],[124.77696,-3.8154E-05],[124.7804,-3.6091E-05],[124.78384,-3.2482E-05],[124.78727,-3.4544E-05],[124.79071,-3.5576E-05],[124.79414,-3.4029E-05],[124.79758,-3.4029E-05],[124.80102,-3.7122E-05],[124.80445,-3.7638E-05],[124.80789,-3.8154E-05],[124.81132,-3.506E-05],[124.81476,-3.506E-05],[124.8182,-3.7638E-05],[124.82163,-3.6607E-05],[124.82507,-3.8154E-05],[124.8285,-3.7638E-05],[124.83194,-3.6091E-05],[124.83538,-3.506E-05],[124.83881,-3.3513E-05],[124.84225,-4.2278E-05],[124.84568,-4.1763E-05],[124.84912,-3.5576E-05],[124.85256,-3.6607E-05],[124.85599,-3.2998E-05],[124.85943,-3.5576E-05],[124.86286,-3.7122E-05],[124.8663,-3.4029E-05],[124.86974,-3.9185E-05],[124.87317,-3.7122E-05],[124.87661,-3.6607E-05],[124.88004,-4.1763E-05],[124.88348,-3.97E-05],[124.88692,-3.6091E-05],[124.89035,-3.7122E-05],[124.89379,-3.97E-05],[124.89722,-4.0216E-05],[124.90066,-3.506E-05],[124.9041,-3.2482E-05],[124.90753,-3.7638E-05],[124.91097,-3.4029E-05],[124.9144,-3.5576E-05],[124.91784,-3.97E-05],[124.92128,-3.7122E-05],[124.92471,-3.97E-05],[124.92815,-3.4544E-05],[124.93158,-2.9389E-05],[124.93502,-3.506E-05],[124.93846,-3.5576E-05],[124.94189,-3.5576E-05],[124.94533,-3.9185E-05],[124.94876,-3.8669E-05],[124.9522,-3.1967E-05],[124.95564,-3.2482E-05],[124.95907,-3.8669E-05],[124.96251,-3.97E-05],[124.96594,-4.2278E-05],[124.96938,-3.97E-05],[124.97282,-3.7638E-05],[124.97625,-3.7638E-05],[124.97969,-3.3513E-05],[124.98312,-3.5576E-05],[124.98656,-3.7638E-05],[124.99,-4.0216E-05],[124.99343,-3.8669E-05],[124.99687,-3.8154E-05],[125.0003,-4.3309E-05],[125.00374,-3.8669E-05],[125.00718,-3.5576E-05],[125.01061,-3.506E-05],[125.01405,-3.4544E-05],[125.01748,-3.2482E-05],[125.02092,-3.4544E-05],[125.02436,-3.6091E-05],[125.02779,-3.1967E-05],[125.03123,-3.4029E-05],[125.03466,-3.5576E-05],[125.0381,-3.7122E-05],[125.04154,-3.7638E-05],[125.04497,-4.2278E-05],[125.04841,-4.3309E-05]]}
-{"quant":[125.175,-0.89761],"mems":[[125.0759,-3.5576E-05],[125.07933,-3.8154E-05],[125.08277,-3.8154E-05],[125.0862,-4.3309E-05],[125.08964,-3.97E-05],[125.09308,-3.5576E-05],[125.09651,-3.506E-05],[125.09995,-3.5576E-05],[125.10338,-3.7122E-05],[125.10682,-3.6091E-05],[125.11026,-3.506E-05],[125.11369,-3.4029E-05],[125.11713,-3.2998E-05],[125.12056,-3.8154E-05],[125.124,-3.97E-05],[125.12744,-3.97E-05],[125.13087,-3.8154E-05],[125.13431,-3.6607E-05],[125.13774,-3.7638E-05],[125.14118,-3.4029E-05],[125.14462,-3.4544E-05],[125.14805,-3.4544E-05],[125.15149,-3.4029E-05],[125.15492,-3.3513E-05],[125.15836,-3.6607E-05],[125.1618,-3.97E-05],[125.16523,-3.7122E-05],[125.16867,-4.2794E-05],[125.1721,-3.7638E-05],[125.17554,-3.506E-05],[125.17898,-4.2278E-05],[125.18241,-3.8669E-05],[125.18585,-3.506E-05],[125.18928,-3.6607E-05],[125.19272,-3.6607E-05],[125.19616,-3.4544E-05],[125.19959,-3.8669E-05],[125.20303,-3.8669E-05],[125.20646,-3.7122E-05],[125.2099,-3.7122E-05],[125.21334,-3.5576E-05],[125.21677,-3.506E-05],[125.22021,-3.2998E-05],[125.22364,-3.6607E-05],[125.22708,-3.5576E-05],[125.23052,-3.3513E-05],[125.23395,-3.7122E-05],[125.23739,-3.4544E-05],[125.24082,-3.6091E-05],[125.24426,-3.8669E-05],[125.2477,-3.506E-05],[125.25113,-3.1451E-05],[125.25457,-3.3513E-05],[125.258,-4.0216E-05],[125.26144,-3.8154E-05],[125.26488,-3.4544E-05],[125.26831,-3.6091E-05],[125.27175,-3.7122E-05],[125.27518,-3.7122E-05],[125.27862,-3.506E-05],[125.28206,-3.5576E-05],[125.28549,-3.6607E-05],[125.28893,-3.3513E-05],[125.29236,-3.1451E-05],[125.2958,-3.506E-05],[125.29924,-3.6091E-05],[125.30267,-3.9185E-05],[125.30611,-3.506E-05],[125.30954,-2.9904E-05],[125.31298,-3.4029E-05],[125.31642,-3.6091E-05],[125.31985,-3.6091E-05],[125.32329,-3.5576E-05],[125.32672,-3.7122E-05],[125.33016,-3.5576E-05],[125.3336,-3.2482E-05],[125.33703,-3.5576E-05],[125.34047,-3.7638E-05],[125.3439,-3.506E-05],[125.34734,-3.6091E-05],[125.35078,-3.6607E-05],[125.35421,-3.1451E-05],[125.35765,-3.6607E-05],[125.36108,-3.8154E-05],[125.36452,-3.6091E-05],[125.36796,-3.8669E-05],[125.37139,-3.5576E-05],[125.37483,-3.4544E-05]]}
-{"quant":[125.522,-0.92384],"mems":[[125.42293,-3.9185E-05],[125.42637,-3.8154E-05],[125.4298,-3.3513E-05],[125.43324,-3.6091E-05],[125.43668,-3.7122E-05],[125.44011,-3.6091E-05],[125.44355,-3.506E-05],[125.44698,-3.1451E-05],[125.45042,-3.1451E-05],[125.45386,-3.3513E-05],[125.45729,-3.7638E-05],[125.46073,-3.7638E-05],[125.46416,-3.5576E-05],[125.4676,-3.4029E-05],[125.47104,-3.1451E-05],[125.47447,-3.5576E-05],[125.47791,-3.7638E-05],[125.48134,-3.7638E-05],[125.48478,-3.6091E-05],[125.48822,-3.7122E-05],[125.49165,-3.97E-05],[125.49509,-3.2482E-05],[125.49852,-3.3513E-05],[125.50196,-3.97E-05],[125.5054,-3.7638E-05],[125.50883,-3.5576E-05],[125.51227,-3.4029E-05],[125.5157,-3.6607E-05],[125.51914,-3.9185E-05],[125.52258,-3.5576E-05],[125.52601,-3.2998E-05],[125.52945,-3.4029E-05],[125.53288,-3.6091E-05],[125.53632,-3.7122E-05],[125.53976,-3.6091E-05],[125.54319,-3.5576E-05],[125.54663,-3.6607E-05],[125.55006,-3.2998E-05],[125.5535,-3.3513E-05],[125.55694,-3.7638E-05],[125.56037,-3.7122E-05],[125.56381,-3.506E-05],[125.56724,-3.4029E-05],[125.57068,-3.7122E-05],[125.57412,-3.506E-05],[125.57755,-3.5576E-05],[125.58099,-3.7638E-05],[125.58442,-3.7638E-05],[125.58786,-3.6607E-05],[125.5913,-3.506E-05],[125.59473,-3.8669E-05],[125.59817,-3.7638E-05],[125.6016,-3.4029E-05],[125.60504,-3.4544E-05],[125.60848,-3.8669E-05],[125.61191,-3.5576E-05],[125.61535,-3.4544E-05],[125.61878,-4.2278E-05],[125.62222,-3.7122E-05],[125.62566,-3.3513E-05],[125.62909,-3.6091E-05],[125.63253,-3.2998E-05],[125.63596,-3.5576E-05],[125.6394,-4.0732E-05],[125.64284,-3.8669E-05],[125.64627,-2.9904E-05],[125.64971,-3.3513E-05],[125.65314,-4.0216E-05],[125.65658,-3.7122E-05],[125.66002,-3.7638E-05],[125.66345,-3.6607E-05],[125.66689,-3.4544E-05],[125.67032,-3.5576E-05],[125.67376,-3.7122E-05],[125.6772,-3.8154E-05],[125.68063,-3.5576E-05],[125.68407,-2.9389E-05],[125.6875,-3.042E-05],[125.69094,-3.6091E-05],[125.69438,-3.2482E-05],[125.69781,-3.1967E-05],[125.70125,-3.8669E-05],[125.70468,-3.7638E-05],[125.70812,-3.1967E-05],[125.71156,-3.5576E-05],[125.71499,-3.9185E-05],[125.71843,-3.97E-05],[125.72186,-3.6607E-05]]}
-{"quant":[125.893,-0.94094],"mems":[[125.79402,-3.97E-05],[125.79746,-4.1247E-05],[125.80089,-3.6091E-05],[125.80433,-3.97E-05],[125.80776,-3.9185E-05],[125.8112,-3.5576E-05],[125.81464,-3.6091E-05],[125.81807,-3.6091E-05],[125.82151,-3.5576E-05],[125.82494,-3.3513E-05],[125.82838,-3.5576E-05],[125.83182,-3.6091E-05],[125.83525,-3.4029E-05],[125.83869,-3.506E-05],[125.84212,-3.506E-05],[125.84556,-4.0216E-05],[125.849,-4.2278E-05],[125.85243,-3.4544E-05],[125.85587,-3.0935E-05],[125.8593,-3.9185E-05],[125.86274,-4.4341E-05],[125.86618,-3.8669E-05],[125.86961,-3.4029E-05],[125.87305,-3.1967E-05],[125.87648,-3.6607E-05],[125.87992,-3.5576E-05],[125.88336,-3.4029E-05],[125.88679,-3.7638E-05],[125.89023,-3.6091E-05],[125.89366,-3.7122E-05],[125.8971,-3.8669E-05],[125.90054,-3.97E-05],[125.90397,-3.6091E-05],[125.90741,-3.5576E-05],[125.91084,-3.9185E-05],[125.91428,-3.8154E-05],[125.91772,-4.0732E-05],[125.92115,-4.0732E-05],[125.92459,-3.9185E-05],[125.92802,-3.6607E-05],[125.93146,-3.1451E-05],[125.9349,-3.4029E-05],[125.93833,-3.6607E-05],[125.94177,-4.0216E-05],[125.9452,-3.9185E-05],[125.94864,-3.4029E-05],[125.95208,-3.8669E-05],[125.95551,-3.7638E-05],[125.95895,-3.4544E-05],[125.96238,-3.9185E-05],[125.96582,-3.506E-05],[125.96926,-3.6091E-05],[125.97269,-4.0732E-05],[125.97613,-3.9185E-05],[125.97956,-4.1247E-05],[125.983,-3.8154E-05],[125.98644,-3.6607E-05],[125.98987,-4.0732E-05],[125.99331,-3.8154E-05],[125.99674,-3.8669E-05],[126.00018,-3.8669E-05],[126.00362,-3.4544E-05],[126.00705,-3.8154E-05],[126.01049,-3.6607E-05],[126.01392,-3.6091E-05],[126.01736,-3.9185E-05],[126.0208,-3.2998E-05],[126.02423,-3.3513E-05],[126.02767,-3.5576E-05],[126.0311,-3.2998E-05],[126.03454,-3.6607E-05],[126.03798,-3.8669E-05],[126.04141,-3.9185E-05],[126.04485,-3.9185E-05],[126.04828,-3.2998E-05],[126.05172,-3.2482E-05],[126.05516,-3.6607E-05],[126.05859,-3.3513E-05],[126.06203,-3.6607E-05],[126.06546,-3.8669E-05],[126.0689,-3.6091E-05],[126.07234,-3.9185E-05],[126.07577,-3.506E-05],[126.07921,-3.8669E-05],[126.08264,-4.0732E-05],[126.08608,-3.5576E-05],[126.08952,-3.3513E-05],[126.09295,-3.3513E-05]]}
-{"quant":[126.272,-0.96111],"mems":[[126.17542,-3.9185E-05],[126.17885,-4.2278E-05],[126.18229,-3.8154E-05],[126.18572,-3.1967E-05],[126.18916,-3.5576E-05],[126.1926,-4.1247E-05],[126.19603,-3.8154E-05],[126.19947,-3.8669E-05],[126.2029,-3.8154E-05],[126.20634,-3.4029E-05],[126.20978,-3.6607E-05],[126.21321,-3.8154E-05],[126.21665,-3.6607E-05],[126.22008,-4.1247E-05],[126.22352,-3.7122E-05],[126.22696,-3.0935E-05],[126.23039,-3.9185E-05],[126.23383,-3.8669E-05],[126.23726,-4.0732E-05],[126.2407,-4.2794E-05],[126.24414,-3.5576E-05],[126.24757,-4.1247E-05],[126.25101,-3.97E-05],[126.25444,-3.8669E-05],[126.25788,-3.97E-05],[126.26132,-3.5576E-05],[126.26475,-3.3513E-05],[126.26819,-3.042E-05],[126.27162,-3.3513E-05],[126.27506,-3.5576E-05],[126.2785,-3.7638E-05],[126.28193,-3.6091E-05],[126.28537,-3.4029E-05],[126.2888,-3.7638E-05],[126.29224,-3.4544E-05],[126.29568,-3.7638E-05],[126.29911,-4.1247E-05],[126.30255,-3.8154E-05],[126.30598,-3.5576E-05],[126.30942,-3.6091E-05],[126.31286,-3.7122E-05],[126.31629,-3.7122E-05],[126.31973,-3.6091E-05],[126.32316,-3.4029E-05],[126.3266,-3.2998E-05],[126.33004,-3.042E-05],[126.33347,-3.7638E-05],[126.33691,-3.97E-05],[126.34034,-3.6607E-05],[126.34378,-3.8154E-05],[126.34722,-3.4544E-05],[126.35065,-3.3513E-05],[126.35409,-3.6607E-05],[126.35752,-3.8154E-05],[126.36096,-3.4029E-05],[126.3644,-3.506E-05],[126.36783,-3.6091E-05],[126.37127,-3.6091E-05],[126.3747,-3.8154E-05],[126.37814,-3.7638E-05],[126.38158,-4.0732E-05],[126.38501,-3.7638E-05],[126.38845,-3.4029E-05],[126.39188,-3.6091E-05],[126.39532,-3.8154E-05],[126.39876,-3.9185E-05],[126.40219,-4.0732E-05],[126.40563,-3.7638E-05],[126.40906,-3.6607E-05],[126.4125,-3.7122E-05],[126.41594,-3.506E-05],[126.41937,-3.7122E-05],[126.42281,-3.5576E-05],[126.42624,-3.4544E-05],[126.42968,-3.6607E-05],[126.43312,-3.5576E-05],[126.43655,-3.506E-05],[126.43999,-4.0732E-05],[126.44342,-3.8669E-05],[126.44686,-3.4029E-05],[126.4503,-3.8669E-05],[126.45373,-3.97E-05],[126.45717,-3.8669E-05],[126.4606,-4.0732E-05],[126.46404,-3.7638E-05],[126.46748,-3.2482E-05],[126.47091,-3.3513E-05]]}
-{"quant":[126.64,-0.98174],"mems":[[126.54307,-3.8154E-05],[126.5465,-3.4029E-05],[126.54994,-3.042E-05],[126.55338,-3.3513E-05],[126.55681,-3.7638E-05],[126.56025,-3.506E-05],[126.56368,-3.506E-05],[126.56712,-3.506E-05],[126.57056,-3.2998E-05],[126.57399,-3.9185E-05],[126.57743,-4.3309E-05],[126.58086,-4.0732E-05],[126.5843,-3.7638E-05],[126.58774,-3.506E-05],[126.59117,-3.5576E-05],[126.59461,-3.6607E-05],[126.59804,-3.7122E-05],[126.60148,-3.8669E-05],[126.60492,-3.7638E-05],[126.60835,-3.4544E-05],[126.61179,-3.6607E-05],[126.61522,-3.7122E-05],[126.61866,-3.6091E-05],[126.6221,-3.97E-05],[126.62553,-3.4544E-05],[126.62897,-3.2998E-05],[126.6324,-3.6607E-05],[126.63584,-3.7638E-05],[126.63928,-3.7638E-05],[126.64271,-3.6091E-05],[126.64615,-3.6607E-05],[126.64958,-3.4544E-05],[126.65302,-3.5576E-05],[126.65646,-3.6607E-05],[126.65989,-3.5576E-05],[126.66333,-3.6091E-05],[126.66676,-3.6091E-05],[126.6702,-3.6091E-05],[126.67364,-3.506E-05],[126.67707,-3.8669E-05],[126.68051,-4.1247E-05],[126.68394,-3.8154E-05],[126.68738,-3.8669E-05],[126.69082,-3.8154E-05],[126.69425,-3.7638E-05],[126.69769,-4.0732E-05],[126.70112,-3.7638E-05],[126.70456,-3.506E-05],[126.708,-3.4544E-05],[126.71143,-3.3513E-05],[126.71487,-3.5576E-05],[126.7183,-3.97E-05],[126.72174,-3.97E-05],[126.72518,-3.6091E-05],[126.72861,-3.9185E-05],[126.73205,-3.8669E-05],[126.73548,-3.3513E-05],[126.73892,-3.7638E-05],[126.74236,-3.7638E-05],[126.74579,-3.4544E-05],[126.74923,-3.8669E-05],[126.75266,-3.8154E-05],[126.7561,-3.7122E-05],[126.75954,-3.7122E-05],[126.76297,-3.7122E-05],[126.76641,-3.7122E-05],[126.76984,-3.2998E-05],[126.77328,-3.4544E-05],[126.77672,-3.97E-05],[126.78015,-3.9185E-05],[126.78359,-3.7638E-05],[126.78702,-3.5576E-05],[126.79046,-3.3513E-05],[126.7939,-3.9185E-05],[126.79733,-4.1763E-05],[126.80077,-4.0216E-05],[126.8042,-3.97E-05],[126.80764,-3.5576E-05],[126.81108,-3.8154E-05],[126.81451,-3.7638E-05],[126.81795,-3.3513E-05],[126.82138,-3.8669E-05],[126.82482,-3.6091E-05],[126.82826,-3.506E-05],[126.83169,-3.4029E-05],[126.83513,-3.1967E-05],[126.83856,-3.4544E-05],[126.842,-3.3513E-05]]}
-{"quant":[127.01,-1.0064],"mems":[[126.9108,-3.3513E-05],[126.91424,-3.5576E-05],[126.91768,-3.6091E-05],[126.92112,-3.6091E-05],[126.92456,-3.5576E-05],[126.928,-3.7638E-05],[126.93144,-3.6091E-05],[126.93488,-3.97E-05],[126.93832,-4.1247E-05],[126.94176,-3.97E-05],[126.9452,-3.8154E-05],[126.94864,-3.1451E-05],[126.95208,-3.6607E-05],[126.95552,-3.9185E-05],[126.95896,-3.6091E-05],[126.9624,-3.0935E-05],[126.96584,-3.6091E-05],[126.96928,-3.7638E-05],[126.97272,-3.1967E-05],[126.97616,-4.2278E-05],[126.9796,-3.8669E-05],[126.98304,-3.6091E-05],[126.98648,-3.6091E-05],[126.98992,-3.2998E-05],[126.99336,-4.1247E-05],[126.9968,-3.6091E-05],[127.00024,-3.3513E-05],[127.00368,-4.0732E-05],[127.00712,-3.5576E-05],[127.01056,-3.4544E-05],[127.014,-4.0216E-05],[127.01744,-3.5576E-05],[127.02088,-3.506E-05],[127.02432,-3.8154E-05],[127.02776,-3.7122E-05],[127.0312,-3.4544E-05],[127.03464,-3.7122E-05],[127.03808,-3.9185E-05],[127.04152,-3.6607E-05],[127.04496,-3.5576E-05],[127.0484,-3.4544E-05],[127.05184,-3.7122E-05],[127.05528,-3.7638E-05],[127.05872,-3.4544E-05],[127.06216,-3.4544E-05],[127.0656,-3.5576E-05],[127.06904,-3.4544E-05],[127.07248,-3.4029E-05],[127.07592,-3.7122E-05],[127.07936,-3.8154E-05],[127.0828,-3.506E-05],[127.08624,-3.4029E-05],[127.08968,-3.5576E-05],[127.09312,-3.6091E-05],[127.09656,-3.7122E-05],[127.1,-3.5576E-05],[127.10344,-3.3513E-05],[127.10688,-3.4544E-05],[127.11032,-3.1967E-05],[127.11376,-3.2482E-05],[127.1172,-3.97E-05],[127.12064,-4.0216E-05],[127.12408,-3.7638E-05],[127.12752,-3.7638E-05],[127.13096,-3.9185E-05],[127.1344,-3.8154E-05],[127.13784,-3.2998E-05],[127.14128,-3.4544E-05],[127.14472,-3.8669E-05],[127.14816,-3.2998E-05],[127.1516,-3.3513E-05],[127.15504,-3.97E-05],[127.15848,-3.8669E-05],[127.16192,-3.8669E-05],[127.16536,-3.7638E-05],[127.1688,-3.4544E-05],[127.17224,-3.3513E-05],[127.17568,-3.5576E-05],[127.17912,-3.506E-05],[127.18256,-3.1967E-05],[127.186,-3.4544E-05],[127.18944,-3.6607E-05],[127.19288,-3.9185E-05],[127.19632,-3.8669E-05],[127.19976,-3.6607E-05],[127.2032,-3.7122E-05],[127.20664,-3.4029E-05]]}
-{"quant":[127.386,-1.035],"mems":[[127.2892,-3.7638E-05],[127.29264,-4.0732E-05],[127.29608,-3.8669E-05],[127.29952,-3.7638E-05],[127.30296,-3.8669E-05],[127.3064,-3.506E-05],[127.30984,-3.7122E-05],[127.31328,-4.0216E-05],[127.31672,-3.9185E-05],[127.32016,-3.8154E-05],[127.3236,-3.8154E-05],[127.32704,-3.7638E-05],[127.33048,-3.3513E-05],[127.33392,-3.8669E-05],[127.33736,-3.9185E-05],[127.3408,-3.2998E-05],[127.34424,-3.7122E-05],[127.34768,-3.6607E-05],[127.35112,-3.7122E-05],[127.35456,-3.9185E-05],[127.358,-3.6607E-05],[127.36144,-3.8154E-05],[127.36488,-3.8669E-05],[127.36832,-3.7122E-05],[127.37176,-3.7122E-05],[127.3752,-3.97E-05],[127.37864,-4.0216E-05],[127.38208,-4.0216E-05],[127.38552,-4.4341E-05],[127.38896,-3.9185E-05],[127.3924,-3.5576E-05],[127.39584,-3.7122E-05],[127.39928,-3.7122E-05],[127.40272,-3.6607E-05],[127.40616,-3.3513E-05],[127.4096,-3.5576E-05],[127.41304,-3.7122E-05],[127.41648,-3.7122E-05],[127.41992,-3.5576E-05],[127.42336,-3.4544E-05],[127.4268,-3.9185E-05],[127.43024,-3.7122E-05],[127.43368,-3.6607E-05],[127.43712,-3.7122E-05],[127.44056,-3.3513E-05],[127.444,-3.5576E-05],[127.44744,-3.506E-05],[127.45088,-3.5576E-05],[127.45432,-3.506E-05],[127.45776,-3.506E-05],[127.4612,-3.5576E-05],[127.46464,-3.1451E-05],[127.46808,-3.042E-05],[127.47152,-3.5576E-05],[127.47496,-4.1247E-05],[127.4784,-3.8669E-05],[127.48184,-3.97E-05],[127.48528,-4.1247E-05],[127.48872,-3.6607E-05],[127.49216,-3.8154E-05],[127.4956,-3.8669E-05],[127.49904,-3.7122E-05],[127.50248,-3.6607E-05],[127.50592,-3.7122E-05],[127.50936,-3.6091E-05],[127.5128,-3.2482E-05],[127.51624,-3.5576E-05],[127.51968,-3.9185E-05],[127.52312,-3.9185E-05],[127.52656,-3.8669E-05],[127.53,-3.6607E-05],[127.53344,-3.7122E-05],[127.53688,-3.9185E-05],[127.54032,-3.9185E-05],[127.54376,-3.8669E-05],[127.5472,-3.8669E-05],[127.55064,-3.6607E-05],[127.55408,-3.8154E-05],[127.55752,-3.8669E-05],[127.56096,-3.506E-05],[127.5644,-3.506E-05],[127.56784,-3.506E-05],[127.57128,-3.4544E-05],[127.57472,-3.8669E-05],[127.57816,-4.2278E-05],[127.5816,-3.9185E-05],[127.58504,-3.506E-05]]}
-{"quant":[127.725,-1.0611],"mems":[[127.62632,-3.1451E-05],[127.62976,-3.7122E-05],[127.6332,-3.6607E-05],[127.63664,-3.506E-05],[127.64008,-3.9185E-05],[127.64352,-4.0216E-05],[127.64696,-3.3513E-05],[127.6504,-3.042E-05],[127.65384,-3.6607E-05],[127.65728,-3.9185E-05],[127.66072,-3.506E-05],[127.66416,-3.7638E-05],[127.6676,-3.6607E-05],[127.67104,-3.1967E-05],[127.67448,-3.5576E-05],[127.67792,-3.8669E-05],[127.68136,-4.0216E-05],[127.6848,-3.7638E-05],[127.68824,-3.1451E-05],[127.69168,-3.7122E-05],[127.69512,-4.1763E-05],[127.69856,-3.8669E-05],[127.702,-3.8154E-05],[127.70544,-4.0732E-05],[127.70888,-3.9185E-05],[127.71232,-3.97E-05],[127.71576,-4.1763E-05],[127.7192,-3.4029E-05],[127.72264,-3.506E-05],[127.72608,-3.8669E-05],[127.72952,-3.3513E-05],[127.73296,-3.5576E-05],[127.7364,-4.4341E-05],[127.73984,-4.3825E-05],[127.74328,-4.0216E-05],[127.74672,-4.0732E-05],[127.75016,-3.506E-05],[127.7536,-3.8154E-05],[127.75704,-4.1763E-05],[127.76048,-3.6091E-05],[127.76392,-3.4544E-05],[127.76736,-3.4544E-05],[127.7708,-3.7122E-05],[127.77424,-4.0216E-05],[127.77768,-4.3309E-05],[127.78112,-4.1763E-05],[127.78456,-3.7638E-05],[127.788,-3.7122E-05],[127.79144,-3.97E-05],[127.79488,-4.3309E-05],[127.79832,-3.6607E-05],[127.80176,-3.2998E-05],[127.8052,-3.5576E-05],[127.80864,-3.5576E-05],[127.81208,-3.4544E-05],[127.81552,-3.7638E-05],[127.81896,-3.6607E-05],[127.8224,-3.4544E-05],[127.82584,-3.8669E-05],[127.82928,-3.506E-05],[127.83272,-3.7122E-05],[127.83616,-3.8154E-05],[127.8396,-3.8154E-05],[127.84304,-3.7638E-05],[127.84648,-3.4544E-05],[127.84992,-3.9185E-05],[127.85336,-3.506E-05],[127.8568,-3.97E-05],[127.86024,-4.3825E-05],[127.86368,-3.8154E-05],[127.86712,-3.8154E-05],[127.87056,-3.8154E-05],[127.874,-4.1763E-05],[127.87744,-3.9185E-05],[127.88088,-3.506E-05],[127.88432,-3.1967E-05],[127.88776,-3.1967E-05],[127.8912,-3.7122E-05],[127.89464,-3.7638E-05],[127.89808,-4.1247E-05],[127.90152,-3.8669E-05],[127.90496,-3.4544E-05],[127.9084,-3.5576E-05],[127.91184,-3.6091E-05],[127.91528,-4.0216E-05],[127.91872,-4.0732E-05],[127.92216,-3.8669E-05]]}
-{"quant":[128.068,-1.0759],"mems":[[127.97032,-3.6607E-05],[127.97376,-3.9185E-05],[127.9772,-3.9185E-05],[127.98064,-4.1763E-05],[127.98408,-3.8669E-05],[127.98752,-3.6091E-05],[127.99096,-3.506E-05],[127.9944,-3.7122E-05],[127.99784,-3.7122E-05],[128.00128,-3.8669E-05],[128.00472,-4.0216E-05],[128.00816,-3.6091E-05],[128.0116,-3.6091E-05],[128.01504,-3.7638E-05],[128.01848,-3.6091E-05],[128.02192,-3.7122E-05],[128.02536,-3.8154E-05],[128.0288,-3.3513E-05],[128.03224,-3.4544E-05],[128.03568,-3.5576E-05],[128.03912,-3.8669E-05],[128.04256,-4.0216E-05],[128.046,-3.5576E-05],[128.04944,-3.5576E-05],[128.05288,-3.4544E-05],[128.05632,-3.6091E-05],[128.05976,-3.7638E-05],[128.0632,-3.97E-05],[128.06664,-3.6607E-05],[128.07008,-3.5576E-05],[128.07352,-3.8669E-05],[128.07696,-3.7122E-05],[128.0804,-3.8669E-05],[128.08384,-3.4544E-05],[128.08728,-3.9185E-05],[128.09072,-3.97E-05],[128.09416,-3.4029E-05],[128.0976,-3.8154E-05],[128.10104,-3.4029E-05],[128.10448,-3.8154E-05],[128.10792,-3.4029E-05],[128.11136,-2.8873E-05],[128.1148,-3.6091E-05],[128.11824,-3.7638E-05],[128.12168,-3.8669E-05],[128.12512,-3.5576E-05],[128.12856,-3.5576E-05],[128.132,-3.6091E-05],[128.13544,-3.4029E-05],[128.13888,-3.4029E-05],[128.14232,-3.9185E-05],[128.14576,-3.7638E-05],[128.1492,-3.4029E-05],[128.15264,-4.0216E-05],[128.15608,-3.97E-05],[128.15952,-3.7122E-05],[128.16296,-3.9185E-05],[128.1664,-3.7122E-05],[128.16984,-3.8154E-05],[128.17328,-3.8154E-05],[128.17672,-3.6607E-05],[128.18016,-3.6607E-05],[128.1836,-3.8669E-05],[128.18704,-3.7638E-05],[128.19048,-3.6091E-05],[128.19392,-3.7638E-05],[128.19736,-3.7122E-05],[128.2008,-4.0216E-05],[128.20424,-3.7122E-05],[128.20768,-3.4029E-05],[128.21112,-3.7638E-05],[128.21456,-4.1247E-05],[128.218,-4.0732E-05],[128.22144,-3.8669E-05],[128.22488,-3.7638E-05],[128.22832,-3.2998E-05],[128.23176,-3.506E-05],[128.2352,-3.506E-05],[128.23864,-3.2998E-05],[128.24208,-3.6607E-05],[128.24552,-3.506E-05],[128.24896,-3.6607E-05],[128.2524,-3.5576E-05],[128.25584,-3.506E-05],[128.25928,-3.9185E-05],[128.26272,-3.6607E-05],[128.26616,-3.4544E-05]]}
-{"quant":[128.443,-1.0838],"mems":[[128.34528,-4.0732E-05],[128.34872,-3.9185E-05],[128.35216,-3.5576E-05],[128.3556,-3.506E-05],[128.35904,-3.6091E-05],[128.36248,-4.0216E-05],[128.36592,-4.0216E-05],[128.36936,-3.6607E-05],[128.3728,-3.97E-05],[128.37624,-4.2794E-05],[128.37968,-4.1763E-05],[128.38312,-3.7638E-05],[128.38656,-3.7122E-05],[128.39,-3.7122E-05],[128.39344,-3.9185E-05],[128.39688,-3.9185E-05],[128.40032,-3.4544E-05],[128.40376,-3.9185E-05],[128.4072,-3.6091E-05],[128.41064,-3.4029E-05],[128.41408,-4.1763E-05],[128.41752,-3.9185E-05],[128.42096,-3.1967E-05],[128.4244,-2.6811E-05],[128.42784,-3.0935E-05],[128.43128,-3.6607E-05],[128.43472,-3.8669E-05],[128.43816,-4.0732E-05],[128.4416,-3.8154E-05],[128.44504,-3.97E-05],[128.44848,-3.8154E-05],[128.45192,-3.5576E-05],[128.45536,-3.7638E-05],[128.4588,-3.8669E-05],[128.46224,-4.0216E-05],[128.46568,-3.7638E-05],[128.46912,-3.506E-05],[128.47256,-3.506E-05],[128.476,-3.6607E-05],[128.47944,-3.6091E-05],[128.48288,-3.0935E-05],[128.48632,-3.4029E-05],[128.48976,-3.7638E-05],[128.4932,-3.2998E-05],[128.49664,-3.3513E-05],[128.50008,-3.7122E-05],[128.50352,-3.7122E-05],[128.50696,-3.4029E-05],[128.5104,-3.3513E-05],[128.51384,-3.7638E-05],[128.51728,-3.97E-05],[128.52072,-3.4029E-05],[128.52416,-3.97E-05],[128.5276,-4.5887E-05],[128.53104,-3.4544E-05],[128.53448,-3.6091E-05],[128.53792,-4.2794E-05],[128.54136,-3.97E-05],[128.5448,-3.7638E-05],[128.54824,-3.7122E-05],[128.55168,-3.8669E-05],[128.55512,-3.8154E-05],[128.55856,-3.6607E-05],[128.562,-3.8154E-05],[128.56544,-3.8669E-05],[128.56888,-3.6607E-05],[128.57232,-3.4544E-05],[128.57576,-3.5576E-05],[128.5792,-3.2482E-05],[128.58264,-2.9389E-05],[128.58608,-3.4544E-05],[128.58952,-3.9185E-05],[128.59296,-4.3309E-05],[128.5964,-4.2278E-05],[128.59984,-3.8669E-05],[128.60328,-3.7122E-05],[128.60672,-3.4029E-05],[128.61016,-3.4029E-05],[128.6136,-3.8154E-05],[128.61704,-4.2278E-05],[128.62048,-3.8154E-05],[128.62392,-3.8154E-05],[128.62736,-3.6607E-05],[128.6308,-3.2482E-05],[128.63424,-3.9185E-05],[128.63768,-3.7638E-05],[128.64112,-3.7638E-05]]}
-{"quant":[128.812,-1.092],"mems":[[128.71336,-3.6607E-05],[128.7168,-3.3513E-05],[128.72024,-3.3513E-05],[128.72368,-3.5576E-05],[128.72712,-3.2482E-05],[128.73056,-3.6607E-05],[128.734,-4.0732E-05],[128.73744,-3.9185E-05],[128.74088,-4.0732E-05],[128.74432,-3.8669E-05],[128.74776,-3.2998E-05],[128.7512,-3.3513E-05],[128.75464,-3.5576E-05],[128.75808,-3.6607E-05],[128.76152,-3.7122E-05],[128.76496,-3.9185E-05],[128.7684,-3.97E-05],[128.77184,-4.1247E-05],[128.77528,-3.97E-05],[128.77872,-3.8154E-05],[128.78216,-3.5576E-05],[128.7856,-3.6091E-05],[128.78904,-3.7638E-05],[128.79248,-3.6607E-05],[128.79592,-4.1247E-05],[128.79936,-3.506E-05],[128.8028,-3.506E-05],[128.80624,-3.7122E-05],[128.80968,-3.506E-05],[128.81312,-3.7122E-05],[128.81656,-3.4029E-05],[128.82,-3.4029E-05],[128.82344,-3.1967E-05],[128.82688,-3.2482E-05],[128.83032,-3.506E-05],[128.83376,-3.8669E-05],[128.8372,-4.3309E-05],[128.84064,-4.0216E-05],[128.84408,-3.7638E-05],[128.84752,-3.2482E-05],[128.85096,-3.4029E-05],[128.8544,-4.0216E-05],[128.85784,-3.506E-05],[128.86128,-3.6607E-05],[128.86472,-3.6091E-05],[128.86816,-3.042E-05],[128.8716,-3.7638E-05],[128.87504,-3.8154E-05],[128.87848,-3.5576E-05],[128.88192,-3.6091E-05],[128.88536,-3.4029E-05],[128.8888,-3.8669E-05],[128.89224,-3.6607E-05],[128.89568,-3.5576E-05],[128.89912,-3.6091E-05],[128.90256,-3.506E-05],[128.906,-3.4544E-05],[128.90944,-3.2998E-05],[128.91288,-3.7122E-05],[128.91632,-3.5576E-05],[128.91976,-3.2482E-05],[128.9232,-3.4029E-05],[128.92664,-3.5576E-05],[128.93008,-3.4544E-05],[128.93352,-3.6607E-05],[128.93696,-3.97E-05],[128.9404,-3.3513E-05],[128.94384,-3.4544E-05],[128.94728,-4.0732E-05],[128.95072,-3.7638E-05],[128.95416,-3.8669E-05],[128.9576,-4.2794E-05],[128.96104,-3.9185E-05],[128.96448,-3.9185E-05],[128.96792,-3.7122E-05],[128.97136,-3.1451E-05],[128.9748,-3.6607E-05],[128.97824,-4.1247E-05],[128.98168,-3.7638E-05],[128.98512,-3.4029E-05],[128.98856,-3.7638E-05],[128.992,-4.0216E-05],[128.99544,-3.4029E-05],[128.99888,-3.6607E-05],[129.00232,-3.6607E-05],[129.00576,-3.6091E-05],[129.0092,-4.1247E-05]]}
-{"quant":[129.175,-1.1013],"mems":[[129.078,-4.0732E-05],[129.08144,-3.7638E-05],[129.08488,-3.4544E-05],[129.08832,-3.7638E-05],[129.09176,-3.9185E-05],[129.0952,-3.9185E-05],[129.09864,-4.1247E-05],[129.10208,-3.8669E-05],[129.10552,-3.7122E-05],[129.10896,-3.9185E-05],[129.1124,-3.506E-05],[129.11584,-3.1451E-05],[129.11928,-3.042E-05],[129.12272,-3.4544E-05],[129.12616,-3.7122E-05],[129.1296,-3.2998E-05],[129.13304,-3.5576E-05],[129.13648,-3.6091E-05],[129.13992,-3.5576E-05],[129.14336,-3.8154E-05],[129.1468,-3.6091E-05],[129.15024,-3.8154E-05],[129.15368,-3.8669E-05],[129.15712,-3.506E-05],[129.16056,-3.7638E-05],[129.164,-4.0216E-05],[129.16744,-3.8154E-05],[129.17088,-3.7122E-05],[129.17432,-3.7638E-05],[129.17776,-3.6607E-05],[129.1812,-3.6091E-05],[129.18464,-3.5576E-05],[129.18808,-3.6607E-05],[129.19152,-3.7638E-05],[129.19496,-3.6091E-05],[129.1984,-3.4544E-05],[129.20184,-3.1451E-05],[129.20528,-3.506E-05],[129.20872,-3.6091E-05],[129.21216,-3.506E-05],[129.2156,-3.8669E-05],[129.21904,-3.8154E-05],[129.22248,-3.6091E-05],[129.22592,-3.042E-05],[129.22936,-3.0935E-05],[129.2328,-3.2482E-05],[129.23624,-2.9904E-05],[129.23968,-4.0216E-05],[129.24312,-3.97E-05],[129.24656,-3.042E-05],[129.25,-3.5576E-05],[129.25344,-3.8669E-05],[129.25688,-3.97E-05],[129.26032,-3.97E-05],[129.26376,-3.7638E-05],[129.2672,-3.7638E-05],[129.27064,-3.3513E-05],[129.27408,-3.4029E-05],[129.27752,-3.6091E-05],[129.28096,-3.7122E-05],[129.2844,-3.7122E-05],[129.28784,-3.5576E-05],[129.29128,-3.97E-05],[129.29472,-3.8669E-05],[129.29816,-3.9185E-05],[129.3016,-3.5576E-05],[129.30504,-2.7326E-05],[129.30848,-3.9185E-05],[129.31192,-3.8154E-05],[129.31536,-3.2998E-05],[129.3188,-3.5576E-05],[129.32224,-3.506E-05],[129.32568,-3.9185E-05],[129.32912,-3.506E-05],[129.33256,-3.6091E-05],[129.336,-3.4029E-05],[129.33944,-3.2482E-05],[129.34288,-3.6607E-05],[129.34632,-3.506E-05],[129.34976,-3.7122E-05],[129.3532,-3.3513E-05],[129.35664,-3.0935E-05],[129.36008,-3.1451E-05],[129.36352,-3.4029E-05],[129.36696,-3.8154E-05],[129.3704,-3.6091E-05],[129.37384,-3.97E-05]]}
-{"quant":[129.515,-1.1157],"mems":[[129.41856,-3.3513E-05],[129.422,-3.6091E-05],[129.42544,-3.4029E-05],[129.42887,-3.4029E-05],[129.43231,-3.1967E-05],[129.43575,-3.6607E-05],[129.43919,-3.97E-05],[129.44262,-3.506E-05],[129.44606,-3.7122E-05],[129.4495,-3.5576E-05],[129.45294,-3.7638E-05],[129.45637,-3.7638E-05],[129.45981,-3.1451E-05],[129.46325,-3.7122E-05],[129.46669,-3.8669E-05],[129.47012,-3.3513E-05],[129.47356,-3.3513E-05],[129.477,-3.8669E-05],[129.48043,-3.8669E-05],[129.48387,-3.4029E-05],[129.48731,-3.6091E-05],[129.49075,-3.506E-05],[129.49418,-3.6091E-05],[129.49762,-3.97E-05],[129.50106,-3.6607E-05],[129.5045,-3.6607E-05],[129.50793,-3.7122E-05],[129.51137,-3.6607E-05],[129.51481,-3.5576E-05],[129.51825,-3.7122E-05],[129.52168,-3.7122E-05],[129.52512,-3.4544E-05],[129.52856,-3.5576E-05],[129.53199,-3.4544E-05],[129.53543,-3.4029E-05],[129.53887,-3.8154E-05],[129.54231,-3.5576E-05],[129.54574,-2.9904E-05],[129.54918,-3.6607E-05],[129.55262,-3.7122E-05],[129.55606,-3.6607E-05],[129.55949,-4.0216E-05],[129.56293,-3.4544E-05],[129.56637,-3.1451E-05],[129.56981,-3.6091E-05],[129.57324,-3.5576E-05],[129.57668,-3.3513E-05],[129.58012,-3.6091E-05],[129.58355,-3.4544E-05],[129.58699,-3.2482E-05],[129.59043,-3.6607E-05],[129.59387,-4.0216E-05],[129.5973,-3.8154E-05],[129.60074,-3.8154E-05],[129.60418,-3.6091E-05],[129.60762,-3.2482E-05],[129.61105,-3.4029E-05],[129.61449,-3.506E-05],[129.61793,-3.4029E-05],[129.62137,-3.1967E-05],[129.6248,-3.3513E-05],[129.62824,-3.7122E-05],[129.63168,-3.5576E-05],[129.63511,-3.7122E-05],[129.63855,-3.6091E-05],[129.64199,-3.6607E-05],[129.64543,-3.6091E-05],[129.64886,-3.3513E-05],[129.6523,-3.6091E-05],[129.65574,-3.7122E-05],[129.65918,-4.0216E-05],[129.66261,-3.7122E-05],[129.66605,-3.2482E-05],[129.66949,-3.2998E-05],[129.67293,-3.2482E-05],[129.67636,-3.8669E-05],[129.6798,-3.8669E-05],[129.68324,-3.7638E-05],[129.68667,-3.7638E-05],[129.69011,-3.7122E-05],[129.69355,-3.97E-05],[129.69699,-3.5576E-05],[129.70042,-3.6607E-05],[129.70386,-3.4544E-05],[129.7073,-3.2998E-05],[129.71074,-3.9185E-05],[129.71417,-3.5576E-05],[129.71761,-3.4029E-05]]}
-{"quant":[129.97,-1.1365],"mems":[[129.87229,-3.5576E-05],[129.87573,-3.7122E-05],[129.87917,-3.8154E-05],[129.8826,-4.0732E-05],[129.88604,-3.506E-05],[129.88948,-3.1967E-05],[129.89291,-3.506E-05],[129.89635,-3.6607E-05],[129.89979,-3.8669E-05],[129.90323,-3.6607E-05],[129.90666,-3.6091E-05],[129.9101,-3.6091E-05],[129.91354,-3.2482E-05],[129.91698,-3.3513E-05],[129.92041,-3.7122E-05],[129.92385,-3.506E-05],[129.92729,-3.506E-05],[129.93073,-3.6607E-05],[129.93416,-3.8669E-05],[129.9376,-3.7122E-05],[129.94104,-3.3513E-05],[129.94447,-3.6091E-05],[129.94791,-3.2998E-05],[129.95135,-3.2482E-05],[129.95479,-3.506E-05],[129.95822,-3.7122E-05],[129.96166,-3.7122E-05],[129.9651,-3.3513E-05],[129.96854,-3.506E-05],[129.97197,-3.4029E-05],[129.97541,-3.506E-05],[129.97885,-3.7122E-05],[129.98229,-3.4029E-05],[129.98572,-3.8154E-05],[129.98916,-3.8154E-05],[129.9926,-3.6607E-05],[129.99603,-3.7122E-05],[129.99947,-3.1451E-05],[130.00291,-3.7638E-05],[130.00635,-3.7638E-05],[130.00978,-3.3513E-05],[130.01322,-3.8669E-05],[130.01666,-3.7122E-05],[130.0201,-3.4544E-05],[130.02353,-3.7638E-05],[130.02697,-3.6607E-05],[130.03041,-3.6091E-05],[130.03385,-4.1247E-05],[130.03728,-3.7638E-05],[130.04072,-3.6091E-05],[130.04416,-3.506E-05],[130.04759,-3.4544E-05],[130.05103,-3.8154E-05],[130.05447,-3.506E-05],[130.05791,-3.9185E-05],[130.06134,-3.7638E-05],[130.06478,-3.2482E-05],[130.06822,-3.4029E-05],[130.07166,-3.4029E-05],[130.07509,-3.97E-05],[130.07853,-3.7638E-05],[130.08197,-3.5576E-05],[130.08541,-3.8669E-05],[130.08884,-3.7122E-05],[130.09228,-3.7122E-05],[130.09572,-3.7122E-05],[130.09915,-3.97E-05],[130.10259,-3.8154E-05],[130.10603,-3.7638E-05],[130.10947,-3.6091E-05],[130.1129,-3.2998E-05],[130.11634,-3.7122E-05],[130.11978,-3.6091E-05],[130.12322,-3.7122E-05],[130.12665,-3.8154E-05],[130.13009,-3.8669E-05],[130.13353,-3.8669E-05],[130.13697,-3.8669E-05],[130.1404,-4.2278E-05],[130.14384,-3.8669E-05],[130.14728,-3.4544E-05],[130.15071,-3.4544E-05],[130.15415,-3.6607E-05],[130.15759,-3.8154E-05],[130.16103,-3.7638E-05],[130.16446,-3.2998E-05],[130.1679,-3.2482E-05]]}
-{"quant":[130.309,-1.1669],"mems":[[130.20915,-3.3513E-05],[130.21259,-3.6091E-05],[130.21602,-3.7638E-05],[130.21946,-3.97E-05],[130.2229,-3.97E-05],[130.22634,-4.0732E-05],[130.22977,-3.97E-05],[130.23321,-4.1763E-05],[130.23665,-4.6403E-05],[130.24009,-4.2794E-05],[130.24352,-3.8669E-05],[130.24696,-3.8669E-05],[130.2504,-3.8154E-05],[130.25383,-3.2998E-05],[130.25727,-3.3513E-05],[130.26071,-3.3513E-05],[130.26415,-2.9904E-05],[130.26758,-3.0935E-05],[130.27102,-3.3513E-05],[130.27446,-3.7122E-05],[130.2779,-3.506E-05],[130.28133,-2.8873E-05],[130.28477,-3.2482E-05],[130.28821,-3.5576E-05],[130.29165,-3.5576E-05],[130.29508,-3.7638E-05],[130.29852,-3.506E-05],[130.30196,-3.506E-05],[130.30539,-3.3513E-05],[130.30883,-3.1967E-05],[130.31227,-3.7638E-05],[130.31571,-3.6091E-05],[130.31914,-3.0935E-05],[130.32258,-3.5576E-05],[130.32602,-3.4029E-05],[130.32946,-3.2482E-05],[130.33289,-4.0732E-05],[130.33633,-4.1247E-05],[130.33977,-4.0216E-05],[130.34321,-3.3513E-05],[130.34664,-2.9904E-05],[130.35008,-3.506E-05],[130.35352,-3.6091E-05],[130.35695,-3.8669E-05],[130.36039,-3.5576E-05],[130.36383,-3.3513E-05],[130.36727,-3.9185E-05],[130.3707,-3.8669E-05],[130.37414,-3.6091E-05],[130.37758,-3.8154E-05],[130.38102,-3.7122E-05],[130.38445,-3.2998E-05],[130.38789,-3.3513E-05],[130.39133,-3.6091E-05],[130.39477,-3.7122E-05],[130.3982,-3.6607E-05],[130.40164,-3.5576E-05],[130.40508,-3.8669E-05],[130.40851,-3.9185E-05],[130.41195,-3.7638E-05],[130.41539,-3.97E-05],[130.41883,-3.8669E-05],[130.42226,-3.9185E-05],[130.4257,-3.8669E-05],[130.42914,-3.4029E-05],[130.43258,-3.7122E-05],[130.43601,-3.8669E-05],[130.43945,-3.4029E-05],[130.44289,-3.6091E-05],[130.44633,-3.6091E-05],[130.44976,-3.506E-05],[130.4532,-4.2794E-05],[130.45664,-4.3309E-05],[130.46007,-3.9185E-05],[130.46351,-3.4029E-05],[130.46695,-3.2482E-05],[130.47039,-3.7122E-05],[130.47382,-3.6607E-05],[130.47726,-3.9185E-05],[130.4807,-3.5576E-05],[130.48414,-3.2482E-05],[130.48757,-3.7638E-05],[130.49101,-3.6091E-05],[130.49445,-3.97E-05],[130.49789,-3.9185E-05],[130.50132,-3.2482E-05],[130.50476,-3.506E-05],[130.5082,-3.2482E-05]]}
-{"quant":[130.657,-1.1849],"mems":[[130.55976,-3.4029E-05],[130.56319,-3.5576E-05],[130.56663,-3.4029E-05],[130.57007,-3.2482E-05],[130.57351,-3.9185E-05],[130.57694,-3.7122E-05],[130.58038,-3.7638E-05],[130.58382,-3.8154E-05],[130.58726,-3.7122E-05],[130.59069,-3.6607E-05],[130.59413,-3.6091E-05],[130.59757,-3.97E-05],[130.60101,-3.4544E-05],[130.60444,-3.2482E-05],[130.60788,-3.6091E-05],[130.61132,-3.6091E-05],[130.61475,-3.4029E-05],[130.61819,-3.6091E-05],[130.62163,-3.9185E-05],[130.62507,-3.506E-05],[130.6285,-3.7122E-05],[130.63194,-3.9185E-05],[130.63538,-3.7638E-05],[130.63882,-3.97E-05],[130.64225,-3.7638E-05],[130.64569,-3.506E-05],[130.64913,-3.2482E-05],[130.65257,-3.7122E-05],[130.656,-4.1763E-05],[130.65944,-3.5576E-05],[130.66288,-3.2998E-05],[130.66631,-3.7122E-05],[130.66975,-3.9185E-05],[130.67319,-3.97E-05],[130.67663,-3.506E-05],[130.68006,-3.1451E-05],[130.6835,-3.4029E-05],[130.68694,-3.4544E-05],[130.69038,-3.7638E-05],[130.69381,-3.8154E-05],[130.69725,-3.5576E-05],[130.70069,-3.8154E-05],[130.70413,-3.506E-05],[130.70756,-3.1451E-05],[130.711,-3.506E-05],[130.71444,-3.506E-05],[130.71787,-3.4544E-05],[130.72131,-3.1451E-05],[130.72475,-2.9904E-05],[130.72819,-3.2998E-05],[130.73162,-3.4029E-05],[130.73506,-3.3513E-05],[130.7385,-3.2482E-05],[130.74194,-3.2998E-05],[130.74537,-3.4029E-05],[130.74881,-3.6091E-05],[130.75225,-3.5576E-05],[130.75569,-3.506E-05],[130.75912,-3.3513E-05],[130.76256,-2.9389E-05],[130.766,-3.5576E-05],[130.76943,-3.5576E-05],[130.77287,-3.6091E-05],[130.77631,-4.0216E-05],[130.77975,-3.506E-05],[130.78318,-3.5576E-05],[130.78662,-3.6091E-05],[130.79006,-3.4544E-05],[130.7935,-3.7638E-05],[130.79693,-3.4544E-05],[130.80037,-3.4544E-05],[130.80381,-3.6607E-05],[130.80725,-3.8154E-05],[130.81068,-3.7122E-05],[130.81412,-3.4544E-05],[130.81756,-4.0216E-05],[130.82099,-3.9185E-05],[130.82443,-3.7638E-05],[130.82787,-3.7638E-05],[130.83131,-3.7122E-05],[130.83474,-4.0732E-05],[130.83818,-3.8154E-05],[130.84162,-3.7122E-05],[130.84506,-3.6607E-05],[130.84849,-3.6091E-05],[130.85193,-3.6091E-05],[130.85537,-3.7638E-05]]}
-{"quant":[131.012,-1.1842],"mems":[[130.9138,-3.8669E-05],[130.91724,-3.8669E-05],[130.92068,-3.2482E-05],[130.92411,-3.506E-05],[130.92755,-3.8669E-05],[130.93099,-3.4029E-05],[130.93443,-3.7122E-05],[130.93786,-4.2278E-05],[130.9413,-3.8154E-05],[130.94474,-3.9185E-05],[130.94818,-3.97E-05],[130.95161,-3.6091E-05],[130.95505,-3.7638E-05],[130.95849,-3.7122E-05],[130.96193,-3.3513E-05],[130.96536,-3.3513E-05],[130.9688,-3.4029E-05],[130.97224,-3.8154E-05],[130.97567,-3.9185E-05],[130.97911,-4.0216E-05],[130.98255,-4.1247E-05],[130.98599,-3.5576E-05],[130.98942,-3.8154E-05],[130.99286,-4.1247E-05],[130.9963,-3.8669E-05],[130.99974,-3.3513E-05],[131.00317,-2.9389E-05],[131.00661,-3.4029E-05],[131.01005,-3.5576E-05],[131.01349,-3.4544E-05],[131.01692,-3.4029E-05],[131.02036,-3.4029E-05],[131.0238,-3.7122E-05],[131.02723,-3.6091E-05],[131.03067,-3.3513E-05],[131.03411,-3.4029E-05],[131.03755,-3.1967E-05],[131.04098,-3.1451E-05],[131.04442,-3.2998E-05],[131.04786,-3.9185E-05],[131.0513,-4.2278E-05],[131.05473,-3.5576E-05],[131.05817,-3.6091E-05],[131.06161,-3.7122E-05],[131.06505,-3.4029E-05],[131.06848,-3.4029E-05],[131.07192,-3.7638E-05],[131.07536,-4.1763E-05],[131.07879,-4.0216E-05],[131.08223,-3.6607E-05],[131.08567,-3.7122E-05],[131.08911,-4.2278E-05],[131.09254,-3.6091E-05],[131.09598,-3.3513E-05],[131.09942,-3.8669E-05],[131.10286,-3.7638E-05],[131.10629,-3.5576E-05],[131.10973,-3.2482E-05],[131.11317,-3.6091E-05],[131.11661,-3.8154E-05],[131.12004,-3.4029E-05],[131.12348,-3.506E-05],[131.12692,-3.5576E-05],[131.13035,-3.7638E-05],[131.13379,-3.4544E-05],[131.13723,-3.2998E-05],[131.14067,-3.9185E-05],[131.1441,-3.506E-05],[131.14754,-3.2998E-05],[131.15098,-3.5576E-05],[131.15442,-3.1451E-05],[131.15785,-3.2998E-05],[131.16129,-3.4544E-05],[131.16473,-3.1967E-05],[131.16817,-3.7638E-05],[131.1716,-3.8669E-05],[131.17504,-3.9185E-05],[131.17848,-4.2278E-05],[131.18191,-3.4544E-05],[131.18535,-3.1967E-05],[131.18879,-3.4544E-05],[131.19223,-3.2998E-05],[131.19566,-3.6607E-05],[131.1991,-3.97E-05],[131.20254,-3.8669E-05],[131.20598,-4.0216E-05],[131.20941,-4.0216E-05]]}
-{"quant":[131.365,-1.1739],"mems":[[131.26785,-3.4544E-05],[131.27129,-3.6607E-05],[131.27472,-3.1451E-05],[131.27816,-3.6091E-05],[131.2816,-3.6091E-05],[131.28503,-3.4029E-05],[131.28847,-3.6091E-05],[131.29191,-3.1967E-05],[131.29535,-3.2482E-05],[131.29878,-3.1967E-05],[131.30222,-3.1967E-05],[131.30566,-3.2482E-05],[131.3091,-3.4029E-05],[131.31253,-3.97E-05],[131.31597,-3.7638E-05],[131.31941,-3.4544E-05],[131.32285,-3.4029E-05],[131.32628,-3.5576E-05],[131.32972,-3.8669E-05],[131.33316,-3.8154E-05],[131.33659,-3.7638E-05],[131.34003,-3.4544E-05],[131.34347,-3.4029E-05],[131.34691,-3.5576E-05],[131.35034,-3.3513E-05],[131.35378,-3.7122E-05],[131.35722,-3.8154E-05],[131.36066,-3.3513E-05],[131.36409,-3.1967E-05],[131.36753,-3.6607E-05],[131.37097,-3.97E-05],[131.37441,-3.7122E-05],[131.37784,-3.6607E-05],[131.38128,-3.4544E-05],[131.38472,-3.3513E-05],[131.38815,-3.7122E-05],[131.39159,-3.8154E-05],[131.39503,-3.4544E-05],[131.39847,-3.6607E-05],[131.4019,-3.8154E-05],[131.40534,-3.506E-05],[131.40878,-3.7122E-05],[131.41222,-3.6091E-05],[131.41565,-3.506E-05],[131.41909,-3.6091E-05],[131.42253,-3.506E-05],[131.42597,-3.4544E-05],[131.4294,-3.6091E-05],[131.43284,-3.6607E-05],[131.43628,-3.7638E-05],[131.43971,-4.0732E-05],[131.44315,-3.8669E-05],[131.44659,-3.5576E-05],[131.45003,-3.5576E-05],[131.45346,-3.4544E-05],[131.4569,-3.5576E-05],[131.46034,-3.6091E-05],[131.46378,-3.7122E-05],[131.46721,-3.7122E-05],[131.47065,-3.6607E-05],[131.47409,-4.1247E-05],[131.47753,-4.2794E-05],[131.48096,-3.9185E-05],[131.4844,-3.3513E-05],[131.48784,-3.7122E-05],[131.49127,-4.0216E-05],[131.49471,-3.6091E-05],[131.49815,-3.7638E-05],[131.50159,-3.7638E-05],[131.50502,-3.4544E-05],[131.50846,-3.2998E-05],[131.5119,-3.2998E-05],[131.51534,-3.4544E-05],[131.51877,-3.6091E-05],[131.52221,-3.6607E-05],[131.52565,-3.4029E-05],[131.52909,-3.5576E-05],[131.53252,-3.6607E-05],[131.53596,-3.2998E-05],[131.5394,-3.2998E-05],[131.54283,-3.506E-05],[131.54627,-3.6091E-05],[131.54971,-3.8154E-05],[131.55315,-3.8669E-05],[131.55658,-4.0216E-05],[131.56002,-3.506E-05],[131.56346,-2.9389E-05]]}
-{"quant":[131.709,-1.1681],"mems":[[131.61158,-4.1763E-05],[131.61502,-4.0732E-05],[131.61846,-4.2278E-05],[131.62189,-3.8154E-05],[131.62533,-3.1967E-05],[131.62877,-3.6607E-05],[131.63221,-4.0216E-05],[131.63564,-3.7638E-05],[131.63908,-3.4544E-05],[131.64252,-3.2482E-05],[131.64595,-2.9389E-05],[131.64939,-3.0935E-05],[131.65283,-3.5576E-05],[131.65627,-3.4544E-05],[131.6597,-3.042E-05],[131.66314,-2.9904E-05],[131.66658,-3.4029E-05],[131.67002,-3.9185E-05],[131.67345,-3.2482E-05],[131.67689,-2.9904E-05],[131.68033,-3.6091E-05],[131.68377,-3.506E-05],[131.6872,-3.506E-05],[131.69064,-3.8669E-05],[131.69408,-4.0732E-05],[131.69751,-3.7638E-05],[131.70095,-3.2482E-05],[131.70439,-3.2482E-05],[131.70783,-3.6091E-05],[131.71126,-4.0732E-05],[131.7147,-4.2278E-05],[131.71814,-4.1247E-05],[131.72158,-3.506E-05],[131.72501,-3.4029E-05],[131.72845,-3.8669E-05],[131.73189,-3.506E-05],[131.73533,-3.6607E-05],[131.73876,-3.9185E-05],[131.7422,-3.7122E-05],[131.74564,-3.2482E-05],[131.74907,-3.506E-05],[131.75251,-3.9185E-05],[131.75595,-3.4029E-05],[131.75939,-3.7122E-05],[131.76282,-3.8669E-05],[131.76626,-3.6607E-05],[131.7697,-3.8154E-05],[131.77314,-3.9185E-05],[131.77657,-3.6607E-05],[131.78001,-3.3513E-05],[131.78345,-3.5576E-05],[131.78689,-3.4029E-05],[131.79032,-3.7122E-05],[131.79376,-3.6607E-05],[131.7972,-3.3513E-05],[131.80063,-3.1451E-05],[131.80407,-2.8873E-05],[131.80751,-3.2998E-05],[131.81095,-3.5576E-05],[131.81438,-3.7638E-05],[131.81782,-3.4544E-05],[131.82126,-3.4544E-05],[131.8247,-3.3513E-05],[131.82813,-3.3513E-05],[131.83157,-4.0216E-05],[131.83501,-3.7638E-05],[131.83845,-4.0216E-05],[131.84188,-4.0732E-05],[131.84532,-3.4544E-05],[131.84876,-3.7638E-05],[131.85219,-4.1763E-05],[131.85563,-3.7638E-05],[131.85907,-3.2482E-05],[131.86251,-3.4544E-05],[131.86594,-3.4544E-05],[131.86938,-3.8154E-05],[131.87282,-4.4341E-05],[131.87626,-4.1247E-05],[131.87969,-3.6607E-05],[131.88313,-3.5576E-05],[131.88657,-3.7122E-05],[131.89001,-3.97E-05],[131.89344,-3.8154E-05],[131.89688,-3.97E-05],[131.90032,-3.97E-05],[131.90375,-3.4029E-05],[131.90719,-3.5576E-05]]}
-{"quant":[132.08,-1.1824],"mems":[[131.98281,-3.2482E-05],[131.98625,-2.9904E-05],[131.98969,-3.4029E-05],[131.99313,-3.2482E-05],[131.99656,-3.5576E-05],[132.0,-3.7638E-05],[132.00344,-3.5576E-05],[132.00688,-3.506E-05],[132.01032,-3.8669E-05],[132.01377,-3.8154E-05],[132.01721,-3.2482E-05],[132.02065,-3.4544E-05],[132.02409,-3.3513E-05],[132.02753,-3.3513E-05],[132.03097,-3.6091E-05],[132.03441,-3.7122E-05],[132.03785,-3.7122E-05],[132.0413,-3.3513E-05],[132.04474,-3.4544E-05],[132.04818,-3.5576E-05],[132.05162,-3.97E-05],[132.05506,-3.8669E-05],[132.0585,-3.3513E-05],[132.06194,-3.7122E-05],[132.06539,-3.8154E-05],[132.06883,-3.5576E-05],[132.07227,-3.7122E-05],[132.07571,-3.9185E-05],[132.07915,-3.4544E-05],[132.08259,-3.6607E-05],[132.08603,-3.5576E-05],[132.08947,-3.7122E-05],[132.09292,-3.8669E-05],[132.09636,-3.506E-05],[132.0998,-3.7122E-05],[132.10324,-3.4029E-05],[132.10668,-3.2482E-05],[132.11012,-3.4029E-05],[132.11356,-3.6607E-05],[132.11701,-3.7638E-05],[132.12045,-3.2998E-05],[132.12389,-3.4029E-05],[132.12733,-3.8669E-05],[132.13077,-3.9185E-05],[132.13421,-3.7122E-05],[132.13765,-4.0216E-05],[132.14109,-3.8154E-05],[132.14454,-3.1451E-05],[132.14798,-3.4029E-05],[132.15142,-3.7638E-05],[132.15486,-3.7122E-05],[132.1583,-3.6091E-05],[132.16174,-3.4029E-05],[132.16518,-3.7638E-05],[132.16863,-3.8154E-05],[132.17207,-3.4029E-05],[132.17551,-3.3513E-05],[132.17895,-3.506E-05],[132.18239,-3.6607E-05],[132.18583,-3.3513E-05],[132.18927,-3.4544E-05],[132.19271,-3.7638E-05],[132.19616,-3.5576E-05],[132.1996,-3.506E-05],[132.20304,-3.6091E-05],[132.20648,-3.6091E-05],[132.20992,-3.7638E-05],[132.21336,-3.2482E-05],[132.2168,-2.8357E-05],[132.22025,-3.6091E-05],[132.22369,-3.7638E-05],[132.22713,-3.8154E-05],[132.23057,-4.1247E-05],[132.23401,-3.4544E-05],[132.23745,-3.5576E-05],[132.24089,-3.8154E-05],[132.24433,-3.506E-05],[132.24778,-3.7638E-05],[132.25122,-3.97E-05],[132.25466,-3.5576E-05],[132.2581,-3.506E-05],[132.26154,-3.1967E-05],[132.26498,-3.0935E-05],[132.26842,-3.7122E-05],[132.27187,-4.0216E-05],[132.27531,-3.506E-05],[132.27875,-3.3513E-05],[132.28219,-3.8154E-05]]}
-{"quant":[132.452,-1.2038],"mems":[[132.35446,-3.4029E-05],[132.3579,-3.1451E-05],[132.36134,-3.8669E-05],[132.36478,-3.8154E-05],[132.36822,-3.042E-05],[132.37166,-3.6091E-05],[132.37511,-3.8669E-05],[132.37855,-3.7638E-05],[132.38199,-3.6607E-05],[132.38543,-3.2482E-05],[132.38887,-3.5576E-05],[132.39231,-4.2278E-05],[132.39575,-4.2278E-05],[132.39919,-3.97E-05],[132.40264,-3.97E-05],[132.40608,-3.7638E-05],[132.40952,-3.6607E-05],[132.41296,-3.7638E-05],[132.4164,-3.4544E-05],[132.41984,-3.3513E-05],[132.42328,-3.2998E-05],[132.42673,-3.4029E-05],[132.43017,-3.7638E-05],[132.43361,-3.9185E-05],[132.43705,-3.6091E-05],[132.44049,-3.2998E-05],[132.44393,-3.506E-05],[132.44737,-3.5576E-05],[132.45081,-3.5576E-05],[132.45426,-3.9185E-05],[132.4577,-3.7638E-05],[132.46114,-3.2482E-05],[132.46458,-3.4544E-05],[132.46802,-3.9185E-05],[132.47146,-3.8669E-05],[132.4749,-3.8669E-05],[132.47835,-3.8154E-05],[132.48179,-3.5576E-05],[132.48523,-3.2482E-05],[132.48867,-3.042E-05],[132.49211,-3.4544E-05],[132.49555,-3.4544E-05],[132.49899,-3.5576E-05],[132.50243,-3.4544E-05],[132.50588,-3.1451E-05],[132.50932,-3.6607E-05],[132.51276,-4.0216E-05],[132.5162,-4.2278E-05],[132.51964,-3.7638E-05],[132.52308,-3.1967E-05],[132.52652,-3.6607E-05],[132.52997,-4.0216E-05],[132.53341,-3.6607E-05],[132.53685,-3.4544E-05],[132.54029,-3.506E-05],[132.54373,-3.3513E-05],[132.54717,-3.2998E-05],[132.55061,-3.8669E-05],[132.55405,-4.3825E-05],[132.5575,-3.6607E-05],[132.56094,-3.0935E-05],[132.56438,-3.1451E-05],[132.56782,-3.1451E-05],[132.57126,-3.3513E-05],[132.5747,-3.3513E-05],[132.57814,-3.2482E-05],[132.58159,-3.2998E-05],[132.58503,-3.1967E-05],[132.58847,-3.506E-05],[132.59191,-3.7638E-05],[132.59535,-3.3513E-05],[132.59879,-3.5576E-05],[132.60223,-3.4029E-05],[132.60567,-3.0935E-05],[132.60912,-3.0935E-05],[132.61256,-3.4544E-05],[132.616,-3.97E-05],[132.61944,-3.8669E-05],[132.62288,-3.7122E-05],[132.62632,-3.7638E-05],[132.62976,-3.7638E-05],[132.63321,-3.97E-05],[132.63665,-4.0216E-05],[132.64009,-3.4544E-05],[132.64353,-3.3513E-05],[132.64697,-3.5576E-05],[132.65041,-3.7638E-05]]}
-{"quant":[132.824,-1.2119],"mems":[[132.72612,-2.8873E-05],[132.72956,-3.506E-05],[132.733,-4.0216E-05],[132.73645,-3.97E-05],[132.73989,-4.1763E-05],[132.74333,-3.5576E-05],[132.74677,-3.1451E-05],[132.75021,-3.6607E-05],[132.75365,-3.8154E-05],[132.75709,-3.9185E-05],[132.76053,-3.9185E-05],[132.76398,-3.506E-05],[132.76742,-3.4544E-05],[132.77086,-3.5576E-05],[132.7743,-3.5576E-05],[132.77774,-3.5576E-05],[132.78118,-3.3513E-05],[132.78462,-3.0935E-05],[132.78807,-3.1451E-05],[132.79151,-3.4029E-05],[132.79495,-3.8154E-05],[132.79839,-3.8669E-05],[132.80183,-3.6091E-05],[132.80527,-3.6607E-05],[132.80871,-3.4029E-05],[132.81215,-3.2998E-05],[132.8156,-4.0216E-05],[132.81904,-3.8669E-05],[132.82248,-3.1451E-05],[132.82592,-3.4029E-05],[132.82936,-3.4029E-05],[132.8328,-3.2998E-05],[132.83624,-4.0216E-05],[132.83969,-3.8154E-05],[132.84313,-3.7122E-05],[132.84657,-4.2794E-05],[132.85001,-3.506E-05],[132.85345,-3.506E-05],[132.85689,-4.0732E-05],[132.86033,-3.7638E-05],[132.86377,-3.2482E-05],[132.86722,-3.1967E-05],[132.87066,-3.8669E-05],[132.8741,-3.8154E-05],[132.87754,-3.6091E-05],[132.88098,-3.7122E-05],[132.88442,-3.6607E-05],[132.88786,-3.2998E-05],[132.89131,-3.6091E-05],[132.89475,-4.2794E-05],[132.89819,-3.7638E-05],[132.90163,-3.8154E-05],[132.90507,-3.9185E-05],[132.90851,-3.4544E-05],[132.91195,-3.6607E-05],[132.91539,-3.7638E-05],[132.91884,-3.6091E-05],[132.92228,-3.2482E-05],[132.92572,-3.2998E-05],[132.92916,-3.506E-05],[132.9326,-3.4544E-05],[132.93604,-3.8669E-05],[132.93948,-3.9185E-05],[132.94293,-3.3513E-05],[132.94637,-3.1967E-05],[132.94981,-3.7122E-05],[132.95325,-3.2482E-05],[132.95669,-3.0935E-05],[132.96013,-3.6607E-05],[132.96357,-3.1451E-05],[132.96701,-3.5576E-05],[132.97046,-3.506E-05],[132.9739,-3.3513E-05],[132.97734,-3.7122E-05],[132.98078,-3.2998E-05],[132.98422,-3.1451E-05],[132.98766,-3.0935E-05],[132.9911,-3.506E-05],[132.99455,-3.6091E-05],[132.99799,-3.506E-05],[133.00143,-3.5576E-05],[133.00487,-3.2998E-05],[133.00831,-3.6607E-05],[133.01175,-3.8669E-05],[133.01519,-3.7122E-05],[133.01863,-3.506E-05],[133.02208,-3.042E-05]]}
-{"quant":[133.172,-1.2147],"mems":[[133.0737,-3.3513E-05],[133.07714,-3.7122E-05],[133.08058,-3.8154E-05],[133.08402,-3.2998E-05],[133.08746,-3.3513E-05],[133.0909,-3.506E-05],[133.09434,-3.506E-05],[133.09779,-3.5576E-05],[133.10123,-3.4029E-05],[133.10467,-2.9904E-05],[133.10811,-3.1967E-05],[133.11155,-3.7638E-05],[133.11499,-3.7122E-05],[133.11843,-3.97E-05],[133.12187,-3.5576E-05],[133.12532,-3.1967E-05],[133.12876,-3.8669E-05],[133.1322,-3.6607E-05],[133.13564,-3.506E-05],[133.13908,-3.8154E-05],[133.14252,-3.4029E-05],[133.14596,-3.3513E-05],[133.14941,-3.5576E-05],[133.15285,-3.6091E-05],[133.15629,-3.9185E-05],[133.15973,-3.8154E-05],[133.16317,-3.5576E-05],[133.16661,-3.7638E-05],[133.17005,-3.9185E-05],[133.17349,-3.7638E-05],[133.17694,-3.7122E-05],[133.18038,-3.8669E-05],[133.18382,-3.4544E-05],[133.18726,-3.4029E-05],[133.1907,-3.8154E-05],[133.19414,-3.506E-05],[133.19758,-3.506E-05],[133.20103,-3.6091E-05],[133.20447,-3.3513E-05],[133.20791,-3.8154E-05],[133.21135,-3.97E-05],[133.21479,-3.4544E-05],[133.21823,-3.2998E-05],[133.22167,-3.6607E-05],[133.22511,-3.6607E-05],[133.22856,-3.9185E-05],[133.232,-4.2794E-05],[133.23544,-3.5576E-05],[133.23888,-3.4029E-05],[133.24232,-3.2998E-05],[133.24576,-3.1451E-05],[133.2492,-3.5576E-05],[133.25265,-3.5576E-05],[133.25609,-3.8154E-05],[133.25953,-3.6607E-05],[133.26297,-3.3513E-05],[133.26641,-3.7638E-05],[133.26985,-3.8669E-05],[133.27329,-3.6091E-05],[133.27673,-3.6607E-05],[133.28018,-3.4029E-05],[133.28362,-3.1967E-05],[133.28706,-3.7122E-05],[133.2905,-3.4029E-05],[133.29394,-3.2482E-05],[133.29738,-3.5576E-05],[133.30082,-3.4544E-05],[133.30427,-3.2482E-05],[133.30771,-3.4029E-05],[133.31115,-3.6091E-05],[133.31459,-3.7638E-05],[133.31803,-3.8669E-05],[133.32147,-3.5576E-05],[133.32491,-3.5576E-05],[133.32835,-3.8154E-05],[133.3318,-4.1247E-05],[133.33524,-4.1247E-05],[133.33868,-2.9904E-05],[133.34212,-2.9904E-05],[133.34556,-3.9185E-05],[133.349,-3.97E-05],[133.35244,-3.7122E-05],[133.35589,-3.9185E-05],[133.35933,-4.1247E-05],[133.36277,-3.8154E-05],[133.36621,-3.7122E-05],[133.36965,-3.8154E-05]]}
-{"quant":[133.526,-1.2179],"mems":[[133.42815,-3.4029E-05],[133.43159,-3.6091E-05],[133.43504,-3.8154E-05],[133.43848,-3.8154E-05],[133.44192,-3.6091E-05],[133.44536,-3.506E-05],[133.4488,-3.3513E-05],[133.45224,-3.5576E-05],[133.45568,-3.97E-05],[133.45913,-3.8154E-05],[133.46257,-3.4544E-05],[133.46601,-2.8357E-05],[133.46945,-3.4544E-05],[133.47289,-3.6091E-05],[133.47633,-3.6091E-05],[133.47977,-4.0732E-05],[133.48321,-3.7122E-05],[133.48666,-3.9185E-05],[133.4901,-3.7122E-05],[133.49354,-3.8669E-05],[133.49698,-4.1763E-05],[133.50042,-3.97E-05],[133.50386,-3.6091E-05],[133.5073,-3.042E-05],[133.51075,-3.7638E-05],[133.51419,-4.0216E-05],[133.51763,-3.506E-05],[133.52107,-3.3513E-05],[133.52451,-3.2998E-05],[133.52795,-3.4544E-05],[133.53139,-3.8154E-05],[133.53483,-3.97E-05],[133.53828,-3.7638E-05],[133.54172,-3.4029E-05],[133.54516,-3.0935E-05],[133.5486,-3.6091E-05],[133.55204,-4.4856E-05],[133.55548,-4.2794E-05],[133.55892,-3.7638E-05],[133.56237,-3.1967E-05],[133.56581,-2.8357E-05],[133.56925,-3.2998E-05],[133.57269,-3.8669E-05],[133.57613,-3.7122E-05],[133.57957,-3.5576E-05],[133.58301,-3.6607E-05],[133.58645,-3.3513E-05],[133.5899,-3.8154E-05],[133.59334,-3.8669E-05],[133.59678,-3.2998E-05],[133.60022,-3.4029E-05],[133.60366,-3.4029E-05],[133.6071,-3.4544E-05],[133.61054,-3.6607E-05],[133.61399,-3.6607E-05],[133.61743,-3.7638E-05],[133.62087,-3.4544E-05],[133.62431,-3.2482E-05],[133.62775,-3.8669E-05],[133.63119,-4.2278E-05],[133.63463,-3.7638E-05],[133.63807,-3.1451E-05],[133.64152,-3.2482E-05],[133.64496,-3.4544E-05],[133.6484,-3.5576E-05],[133.65184,-3.9185E-05],[133.65528,-4.0732E-05],[133.65872,-3.6607E-05],[133.66216,-3.506E-05],[133.66561,-3.6091E-05],[133.66905,-3.5576E-05],[133.67249,-3.7122E-05],[133.67593,-3.9185E-05],[133.67937,-3.506E-05],[133.68281,-3.2482E-05],[133.68625,-3.6607E-05],[133.68969,-3.5576E-05],[133.69314,-3.6091E-05],[133.69658,-3.7638E-05],[133.70002,-3.4544E-05],[133.70346,-3.506E-05],[133.7069,-3.97E-05],[133.71034,-3.97E-05],[133.71378,-3.5576E-05],[133.71723,-3.7638E-05],[133.72067,-3.8154E-05],[133.72411,-3.4029E-05]]}
-{"quant":[133.88,-1.2129],"mems":[[133.78261,-3.1967E-05],[133.78605,-3.4544E-05],[133.78949,-3.6607E-05],[133.79293,-3.506E-05],[133.79638,-3.5576E-05],[133.79982,-3.8154E-05],[133.80326,-3.7122E-05],[133.8067,-3.9185E-05],[133.81014,-4.1763E-05],[133.81358,-4.0216E-05],[133.81702,-3.9185E-05],[133.82047,-3.7122E-05],[133.82391,-3.506E-05],[133.82735,-3.5576E-05],[133.83079,-3.506E-05],[133.83423,-3.3513E-05],[133.83767,-3.7122E-05],[133.84111,-3.6091E-05],[133.84455,-3.4544E-05],[133.848,-4.0216E-05],[133.85144,-3.6607E-05],[133.85488,-3.506E-05],[133.85832,-3.9185E-05],[133.86176,-3.6607E-05],[133.8652,-3.4544E-05],[133.86864,-3.7122E-05],[133.87209,-4.1247E-05],[133.87553,-3.6607E-05],[133.87897,-3.7122E-05],[133.88241,-3.7638E-05],[133.88585,-3.1967E-05],[133.88929,-3.5576E-05],[133.89273,-3.2998E-05],[133.89617,-3.7122E-05],[133.89962,-4.0732E-05],[133.90306,-3.9185E-05],[133.9065,-4.2794E-05],[133.90994,-3.8669E-05],[133.91338,-4.0732E-05],[133.91682,-3.8154E-05],[133.92026,-3.1967E-05],[133.92371,-3.4029E-05],[133.92715,-3.7638E-05],[133.93059,-3.7122E-05],[133.93403,-3.4544E-05],[133.93747,-3.5576E-05],[133.94091,-3.2482E-05],[133.94435,-3.4029E-05],[133.94779,-3.506E-05],[133.95124,-3.6607E-05],[133.95468,-3.7122E-05],[133.95812,-3.3513E-05],[133.96156,-3.6091E-05],[133.965,-3.7122E-05],[133.96844,-3.506E-05],[133.97188,-3.4029E-05],[133.97533,-3.6607E-05],[133.97877,-3.7122E-05],[133.98221,-3.506E-05],[133.98565,-3.4029E-05],[133.98909,-3.506E-05],[133.99253,-3.8154E-05],[133.99597,-3.6091E-05],[133.99941,-3.2482E-05],[134.00286,-3.6091E-05],[134.0063,-3.8669E-05],[134.00974,-3.8154E-05],[134.01318,-3.9185E-05],[134.01662,-3.6607E-05],[134.02006,-3.7638E-05],[134.0235,-3.9185E-05],[134.02695,-3.7638E-05],[134.03039,-4.1763E-05],[134.03383,-4.2794E-05],[134.03727,-3.7122E-05],[134.04071,-3.5576E-05],[134.04415,-3.6091E-05],[134.04759,-3.7122E-05],[134.05103,-3.9185E-05],[134.05448,-3.6607E-05],[134.05792,-3.7122E-05],[134.06136,-3.8669E-05],[134.0648,-4.0216E-05],[134.06824,-3.8154E-05],[134.07168,-3.4544E-05],[134.07512,-3.7122E-05],[134.07857,-4.0732E-05]]}
-{"quant":[134.226,-1.2053],"mems":[[134.12674,-3.042E-05],[134.13019,-3.7638E-05],[134.13363,-4.1763E-05],[134.13707,-3.7122E-05],[134.14051,-3.3513E-05],[134.14395,-3.2482E-05],[134.14739,-3.2482E-05],[134.15083,-3.6091E-05],[134.15427,-3.8154E-05],[134.15772,-3.7638E-05],[134.16116,-3.4029E-05],[134.1646,-3.0935E-05],[134.16804,-3.7122E-05],[134.17148,-3.4544E-05],[134.17492,-3.5576E-05],[134.17836,-3.9185E-05],[134.18181,-3.2482E-05],[134.18525,-3.6607E-05],[134.18869,-3.7122E-05],[134.19213,-3.6607E-05],[134.19557,-4.0216E-05],[134.19901,-3.7638E-05],[134.20245,-3.6607E-05],[134.20589,-3.3513E-05],[134.20934,-3.7638E-05],[134.21278,-4.0216E-05],[134.21622,-3.8154E-05],[134.21966,-4.0216E-05],[134.2231,-3.0935E-05],[134.22654,-3.2998E-05],[134.22998,-3.8669E-05],[134.23343,-3.6607E-05],[134.23687,-3.97E-05],[134.24031,-3.1967E-05],[134.24375,-3.2482E-05],[134.24719,-4.0216E-05],[134.25063,-4.0216E-05],[134.25407,-4.0732E-05],[134.25751,-3.5576E-05],[134.26096,-3.6091E-05],[134.2644,-4.0732E-05],[134.26784,-3.8154E-05],[134.27128,-3.8154E-05],[134.27472,-3.506E-05],[134.27816,-3.506E-05],[134.2816,-3.4029E-05],[134.28505,-3.5576E-05],[134.28849,-4.1247E-05],[134.29193,-3.9185E-05],[134.29537,-3.9185E-05],[134.29881,-3.9185E-05],[134.30225,-3.7638E-05],[134.30569,-3.6607E-05],[134.30913,-3.8669E-05],[134.31258,-3.8669E-05],[134.31602,-3.2482E-05],[134.31946,-3.1451E-05],[134.3229,-3.2482E-05],[134.32634,-3.9185E-05],[134.32978,-3.6091E-05],[134.33322,-3.042E-05],[134.33667,-3.6607E-05],[134.34011,-3.8669E-05],[134.34355,-3.7638E-05],[134.34699,-3.7638E-05],[134.35043,-3.6091E-05],[134.35387,-3.5576E-05],[134.35731,-3.6091E-05],[134.36075,-3.506E-05],[134.3642,-3.2998E-05],[134.36764,-4.0732E-05],[134.37108,-4.5372E-05],[134.37452,-3.8154E-05],[134.37796,-3.1967E-05],[134.3814,-2.8357E-05],[134.38484,-3.1451E-05],[134.38829,-3.8669E-05],[134.39173,-3.8669E-05],[134.39517,-3.6607E-05],[134.39861,-3.5576E-05],[134.40205,-3.1451E-05],[134.40549,-3.4029E-05],[134.40893,-4.1763E-05],[134.41237,-4.0216E-05],[134.41582,-3.4029E-05],[134.41926,-3.3513E-05],[134.4227,-3.2482E-05]]}
-{"quant":[134.577,-1.1898],"mems":[[134.48464,-3.0935E-05],[134.48808,-3.7638E-05],[134.49153,-4.0732E-05],[134.49497,-3.7122E-05],[134.49841,-3.5576E-05],[134.50185,-3.5576E-05],[134.50529,-3.1451E-05],[134.50873,-3.4029E-05],[134.51217,-4.3309E-05],[134.51561,-4.1763E-05],[134.51906,-3.7638E-05],[134.5225,-3.3513E-05],[134.52594,-3.1451E-05],[134.52938,-3.7122E-05],[134.53282,-4.1247E-05],[134.53626,-4.2794E-05],[134.5397,-4.1247E-05],[134.54315,-3.3513E-05],[134.54659,-3.2998E-05],[134.55003,-3.7122E-05],[134.55347,-3.6607E-05],[134.55691,-4.0216E-05],[134.56035,-3.5576E-05],[134.56379,-3.4544E-05],[134.56723,-3.506E-05],[134.57068,-3.6091E-05],[134.57412,-4.1247E-05],[134.57756,-3.7122E-05],[134.581,-3.6091E-05],[134.58443,-3.5576E-05],[134.58787,-3.5576E-05],[134.5913,-3.8154E-05],[134.59473,-4.2794E-05],[134.59817,-3.7638E-05],[134.6016,-3.1967E-05],[134.60503,-3.6091E-05],[134.60847,-3.7122E-05],[134.6119,-4.1763E-05],[134.61533,-3.3513E-05],[134.61877,-3.1967E-05],[134.6222,-3.9185E-05],[134.62563,-3.6091E-05],[134.62907,-3.8669E-05],[134.6325,-3.7638E-05],[134.63593,-3.4544E-05],[134.63937,-3.4029E-05],[134.6428,-3.0935E-05],[134.64623,-3.506E-05],[134.64967,-4.0216E-05],[134.6531,-3.6607E-05],[134.65653,-3.4544E-05],[134.65997,-3.4029E-05],[134.6634,-3.1967E-05],[134.66683,-3.4544E-05],[134.67027,-3.8154E-05],[134.6737,-3.8154E-05],[134.67713,-3.6091E-05],[134.68057,-3.8154E-05],[134.684,-4.0216E-05],[134.68743,-3.7122E-05],[134.69087,-3.8669E-05],[134.6943,-3.97E-05],[134.69773,-3.8154E-05],[134.70117,-3.3513E-05],[134.7046,-3.2998E-05],[134.70803,-4.3825E-05],[134.71147,-4.0216E-05],[134.7149,-3.506E-05],[134.71833,-3.8669E-05],[134.72177,-3.8669E-05],[134.7252,-3.5576E-05],[134.72863,-3.5576E-05],[134.73207,-3.8154E-05],[134.7355,-3.8154E-05],[134.73893,-3.4544E-05],[134.74237,-3.1451E-05],[134.7458,-3.6607E-05],[134.74923,-3.4544E-05],[134.75267,-3.5576E-05],[134.7561,-4.0732E-05],[134.75953,-3.506E-05],[134.76297,-3.506E-05],[134.7664,-3.97E-05],[134.76983,-4.1247E-05],[134.77327,-3.6607E-05],[134.7767,-3.4544E-05],[134.78013,-3.3513E-05],[134.78357,-3.2482E-05]]}
-{"quant":[134.942,-1.1908],"mems":[[134.84537,-3.3513E-05],[134.8488,-3.7638E-05],[134.85223,-3.8154E-05],[134.85567,-4.0732E-05],[134.8591,-3.7638E-05],[134.86253,-3.8154E-05],[134.86597,-3.9185E-05],[134.8694,-3.8154E-05],[134.87283,-3.7122E-05],[134.87627,-3.2482E-05],[134.8797,-3.2998E-05],[134.88313,-3.4544E-05],[134.88657,-3.7122E-05],[134.89,-3.97E-05],[134.89343,-3.5576E-05],[134.89687,-3.6091E-05],[134.9003,-3.7122E-05],[134.90373,-3.4029E-05],[134.90717,-3.8669E-05],[134.9106,-3.7638E-05],[134.91403,-3.2482E-05],[134.91747,-3.5576E-05],[134.9209,-3.6607E-05],[134.92433,-3.6607E-05],[134.92777,-3.9185E-05],[134.9312,-4.1763E-05],[134.93463,-4.1247E-05],[134.93807,-3.506E-05],[134.9415,-3.3513E-05],[134.94493,-3.8669E-05],[134.94837,-3.8154E-05],[134.9518,-3.4544E-05],[134.95523,-3.506E-05],[134.95867,-3.7638E-05],[134.9621,-3.5576E-05],[134.96553,-3.7638E-05],[134.96897,-4.0216E-05],[134.9724,-3.5576E-05],[134.97583,-3.6607E-05],[134.97927,-3.7638E-05],[134.9827,-3.7638E-05],[134.98613,-4.0732E-05],[134.98957,-3.8669E-05],[134.993,-3.6607E-05],[134.99643,-3.8669E-05],[134.99987,-3.6607E-05],[135.0033,-3.5576E-05],[135.00673,-3.5576E-05],[135.01017,-3.97E-05],[135.0136,-3.97E-05],[135.01703,-3.5576E-05],[135.02047,-3.3513E-05],[135.0239,-3.3513E-05],[135.02733,-3.7122E-05],[135.03077,-4.1247E-05],[135.0342,-4.2278E-05],[135.03763,-3.7122E-05],[135.04107,-3.2998E-05],[135.0445,-3.4544E-05],[135.04793,-4.1247E-05],[135.05137,-4.3309E-05],[135.0548,-3.6607E-05],[135.05823,-3.7638E-05],[135.06167,-3.7122E-05],[135.0651,-3.6091E-05],[135.06853,-3.97E-05],[135.07197,-3.7638E-05],[135.0754,-3.5576E-05],[135.07883,-3.4029E-05],[135.08227,-3.2482E-05],[135.0857,-3.506E-05],[135.08913,-4.0216E-05],[135.09257,-4.0732E-05],[135.096,-3.6607E-05],[135.09943,-3.506E-05],[135.10287,-3.2998E-05],[135.1063,-3.4029E-05],[135.10973,-3.7122E-05],[135.11317,-3.2998E-05],[135.1166,-3.0935E-05],[135.12003,-3.506E-05],[135.12347,-3.2482E-05],[135.1269,-3.4029E-05],[135.13033,-3.7122E-05],[135.13377,-3.6091E-05],[135.1372,-3.6607E-05],[135.14063,-3.4029E-05]]}
-{"quant":[135.279,-1.201],"mems":[[135.18183,-3.2998E-05],[135.18527,-3.4029E-05],[135.1887,-3.5576E-05],[135.19213,-3.2998E-05],[135.19557,-3.2998E-05],[135.199,-3.8154E-05],[135.20243,-3.7122E-05],[135.20587,-3.4544E-05],[135.2093,-3.6607E-05],[135.21273,-3.4544E-05],[135.21617,-2.9389E-05],[135.2196,-3.4029E-05],[135.22303,-3.6091E-05],[135.22647,-3.1967E-05],[135.2299,-3.7638E-05],[135.23333,-4.0732E-05],[135.23677,-3.4029E-05],[135.2402,-3.3513E-05],[135.24363,-3.6607E-05],[135.24707,-3.7122E-05],[135.2505,-3.7122E-05],[135.25393,-3.9185E-05],[135.25737,-3.6091E-05],[135.2608,-3.4029E-05],[135.26423,-3.8154E-05],[135.26767,-3.7122E-05],[135.2711,-3.97E-05],[135.27453,-3.9185E-05],[135.27797,-3.7122E-05],[135.2814,-3.7638E-05],[135.28483,-3.1967E-05],[135.28827,-3.2482E-05],[135.2917,-3.97E-05],[135.29513,-3.6607E-05],[135.29857,-3.6091E-05],[135.302,-3.97E-05],[135.30543,-3.7122E-05],[135.30887,-3.9185E-05],[135.3123,-3.506E-05],[135.31573,-3.4544E-05],[135.31917,-3.4029E-05],[135.3226,-3.4544E-05],[135.32603,-4.1763E-05],[135.32947,-3.8669E-05],[135.3329,-3.97E-05],[135.33633,-3.8669E-05],[135.33977,-3.4029E-05],[135.3432,-3.2998E-05],[135.34663,-3.5576E-05],[135.35007,-4.0732E-05],[135.3535,-3.7122E-05],[135.35693,-3.7638E-05],[135.36037,-3.6091E-05],[135.3638,-3.4544E-05],[135.36723,-3.7122E-05],[135.37067,-3.7638E-05],[135.3741,-4.0732E-05],[135.37753,-3.506E-05],[135.38097,-3.4029E-05],[135.3844,-3.6607E-05],[135.38783,-3.2998E-05],[135.39127,-3.6091E-05],[135.3947,-3.5576E-05],[135.39813,-3.1967E-05],[135.40157,-3.3513E-05],[135.405,-3.7122E-05],[135.40843,-3.6091E-05],[135.41187,-3.7122E-05],[135.4153,-3.6607E-05],[135.41873,-3.506E-05],[135.42217,-3.7122E-05],[135.4256,-3.6607E-05],[135.42903,-4.0216E-05],[135.43247,-3.7122E-05],[135.4359,-3.2482E-05],[135.43933,-3.5576E-05],[135.44277,-3.5576E-05],[135.4462,-3.8669E-05],[135.44963,-3.8154E-05],[135.45307,-3.7638E-05],[135.4565,-3.8154E-05],[135.45993,-3.5576E-05],[135.46337,-3.7122E-05],[135.4668,-3.7122E-05],[135.47023,-3.4029E-05],[135.47367,-3.7122E-05],[135.4771,-3.7638E-05]]}
-{"quant":[135.645,-1.1973],"mems":[[135.54577,-3.2482E-05],[135.5492,-4.0216E-05],[135.55263,-4.1247E-05],[135.55607,-3.8154E-05],[135.5595,-3.5576E-05],[135.56293,-3.4029E-05],[135.56637,-4.0732E-05],[135.5698,-3.97E-05],[135.57323,-3.6607E-05],[135.57667,-3.7122E-05],[135.5801,-3.506E-05],[135.58353,-3.7638E-05],[135.58697,-3.97E-05],[135.5904,-4.0216E-05],[135.59383,-4.0216E-05],[135.59727,-4.0216E-05],[135.6007,-3.9185E-05],[135.60413,-3.8669E-05],[135.60757,-3.97E-05],[135.611,-3.8154E-05],[135.61443,-3.7122E-05],[135.61787,-3.7122E-05],[135.6213,-3.6607E-05],[135.62473,-3.4029E-05],[135.62817,-4.0732E-05],[135.6316,-4.2278E-05],[135.63503,-3.5576E-05],[135.63847,-3.7122E-05],[135.6419,-3.8154E-05],[135.64533,-4.2794E-05],[135.64877,-3.97E-05],[135.6522,-3.2482E-05],[135.65563,-3.7638E-05],[135.65907,-3.6607E-05],[135.6625,-3.6607E-05],[135.66593,-3.97E-05],[135.66937,-3.5576E-05],[135.6728,-3.1451E-05],[135.67623,-3.2998E-05],[135.67967,-3.7638E-05],[135.6831,-3.97E-05],[135.68653,-3.8669E-05],[135.68997,-3.4029E-05],[135.6934,-3.5576E-05],[135.69683,-3.9185E-05],[135.70027,-3.97E-05],[135.7037,-4.1247E-05],[135.70713,-4.0216E-05],[135.71057,-4.0732E-05],[135.714,-3.8669E-05],[135.71743,-2.9389E-05],[135.72087,-3.1967E-05],[135.7243,-3.7122E-05],[135.72773,-3.4544E-05],[135.73117,-3.2998E-05],[135.7346,-3.1967E-05],[135.73803,-3.3513E-05],[135.74147,-3.3513E-05],[135.7449,-3.6607E-05],[135.74833,-3.6091E-05],[135.75177,-3.7122E-05],[135.7552,-4.1247E-05],[135.75863,-3.4544E-05],[135.76207,-3.4029E-05],[135.7655,-3.5576E-05],[135.76893,-3.5576E-05],[135.77237,-3.6607E-05],[135.7758,-3.7638E-05],[135.77923,-2.9904E-05],[135.78267,-2.9904E-05],[135.7861,-4.1763E-05],[135.78953,-4.0216E-05],[135.79297,-3.97E-05],[135.7964,-3.7638E-05],[135.79983,-3.8154E-05],[135.80327,-3.97E-05],[135.8067,-3.7638E-05],[135.81013,-3.7122E-05],[135.81357,-3.506E-05],[135.817,-3.9185E-05],[135.82043,-3.5576E-05],[135.82387,-3.3513E-05],[135.8273,-3.4029E-05],[135.83073,-3.2482E-05],[135.83417,-3.8669E-05],[135.8376,-3.8154E-05],[135.84103,-3.6607E-05],[135.84447,-3.7638E-05]]}
-{"quant":[135.989,-1.1878],"mems":[[135.8891,-4.3825E-05],[135.89253,-4.0216E-05],[135.89597,-3.7122E-05],[135.8994,-3.506E-05],[135.90283,-3.6091E-05],[135.90627,-4.2278E-05],[135.9097,-3.97E-05],[135.91313,-3.6607E-05],[135.91657,-3.506E-05],[135.92,-3.506E-05],[135.92343,-3.7122E-05],[135.92687,-3.97E-05],[135.9303,-4.3309E-05],[135.93373,-4.2794E-05],[135.93717,-4.0216E-05],[135.9406,-3.4029E-05],[135.94403,-3.506E-05],[135.94747,-3.8154E-05],[135.9509,-4.0216E-05],[135.95433,-3.97E-05],[135.95777,-3.3513E-05],[135.9612,-4.0732E-05],[135.96463,-4.5887E-05],[135.96807,-3.97E-05],[135.9715,-3.7122E-05],[135.97493,-3.5576E-05],[135.97837,-3.1967E-05],[135.9818,-3.1967E-05],[135.98523,-3.506E-05],[135.98867,-3.5576E-05],[135.9921,-3.6091E-05],[135.99553,-3.7638E-05],[135.99897,-3.7122E-05],[136.0024,-3.6607E-05],[136.00583,-3.506E-05],[136.00927,-3.8154E-05],[136.0127,-4.1247E-05],[136.01613,-3.9185E-05],[136.01957,-3.506E-05],[136.023,-3.1451E-05],[136.02643,-3.6091E-05],[136.02987,-4.0216E-05],[136.0333,-3.8154E-05],[136.03673,-3.7122E-05],[136.04017,-3.506E-05],[136.0436,-3.5576E-05],[136.04703,-4.1247E-05],[136.05047,-3.9185E-05],[136.0539,-3.7122E-05],[136.05733,-3.6607E-05],[136.06077,-3.4544E-05],[136.0642,-3.6607E-05],[136.06763,-3.6607E-05],[136.07107,-3.7638E-05],[136.0745,-3.4544E-05],[136.07793,-3.5576E-05],[136.08137,-3.7638E-05],[136.0848,-3.6091E-05],[136.08823,-3.8669E-05],[136.09167,-3.7122E-05],[136.0951,-3.7638E-05],[136.09853,-3.7638E-05],[136.10197,-3.7122E-05],[136.1054,-4.0216E-05],[136.10883,-3.97E-05],[136.11227,-4.1763E-05],[136.1157,-3.8669E-05],[136.11913,-3.8154E-05],[136.12257,-3.8154E-05],[136.126,-3.3513E-05],[136.12943,-3.5576E-05],[136.13287,-3.5576E-05],[136.1363,-3.6091E-05],[136.13973,-4.0732E-05],[136.14317,-3.8669E-05],[136.1466,-3.8154E-05],[136.15003,-4.0732E-05],[136.15347,-3.9185E-05],[136.1569,-3.4029E-05],[136.16033,-3.2482E-05],[136.16377,-3.7122E-05],[136.1672,-3.7122E-05],[136.17063,-3.6091E-05],[136.17407,-3.7122E-05],[136.1775,-3.9185E-05],[136.18093,-3.6607E-05],[136.18437,-3.4544E-05],[136.1878,-3.9185E-05]]}
-{"quant":[136.331,-1.175],"mems":[[136.23243,-3.97E-05],[136.23587,-3.7638E-05],[136.2393,-3.3513E-05],[136.24273,-3.5576E-05],[136.24617,-4.0216E-05],[136.2496,-4.1763E-05],[136.25303,-4.0216E-05],[136.25647,-3.4544E-05],[136.2599,-3.4029E-05],[136.26333,-3.7122E-05],[136.26677,-3.5576E-05],[136.2702,-3.7122E-05],[136.27363,-3.7122E-05],[136.27707,-3.6091E-05],[136.2805,-3.97E-05],[136.28393,-3.8669E-05],[136.28737,-3.7638E-05],[136.2908,-3.6607E-05],[136.29423,-3.2998E-05],[136.29767,-3.5576E-05],[136.3011,-3.506E-05],[136.30453,-3.5576E-05],[136.30797,-3.6607E-05],[136.3114,-3.5576E-05],[136.31483,-3.7122E-05],[136.31827,-3.97E-05],[136.3217,-4.2278E-05],[136.32513,-4.1247E-05],[136.32857,-3.7122E-05],[136.332,-3.7122E-05],[136.33543,-3.9185E-05],[136.33887,-3.4029E-05],[136.3423,-3.8154E-05],[136.34573,-3.9185E-05],[136.34917,-3.4544E-05],[136.3526,-4.0216E-05],[136.35603,-3.6607E-05],[136.35947,-3.506E-05],[136.3629,-3.8154E-05],[136.36633,-3.5576E-05],[136.36977,-3.8669E-05],[136.3732,-3.506E-05],[136.37663,-3.0935E-05],[136.38007,-3.4029E-05],[136.3835,-3.6091E-05],[136.38693,-3.7122E-05],[136.39037,-3.6091E-05],[136.3938,-3.8154E-05],[136.39723,-3.7122E-05],[136.40067,-3.2482E-05],[136.4041,-3.9185E-05],[136.40753,-4.0732E-05],[136.41097,-3.6607E-05],[136.4144,-3.6607E-05],[136.41783,-3.2998E-05],[136.42127,-3.6607E-05],[136.4247,-4.1763E-05],[136.42813,-3.6091E-05],[136.43157,-3.1451E-05],[136.435,-3.6091E-05],[136.43843,-3.506E-05],[136.44187,-3.4544E-05],[136.4453,-4.0732E-05],[136.44873,-3.8154E-05],[136.45217,-3.5576E-05],[136.4556,-3.6091E-05],[136.45903,-3.6091E-05],[136.46247,-3.6607E-05],[136.4659,-3.8154E-05],[136.46933,-3.8669E-05],[136.47277,-3.8154E-05],[136.4762,-3.4544E-05],[136.47963,-3.1967E-05],[136.48307,-4.0216E-05],[136.4865,-4.2278E-05],[136.48993,-3.7122E-05],[136.49337,-3.9185E-05],[136.4968,-3.8154E-05],[136.50023,-3.7122E-05],[136.50367,-3.9185E-05],[136.5071,-3.7122E-05],[136.51053,-3.7122E-05],[136.51397,-3.4544E-05],[136.5174,-3.1967E-05],[136.52083,-3.97E-05],[136.52427,-4.0732E-05],[136.5277,-3.506E-05]]}
-{"quant":[136.686,-1.1599],"mems":[[136.58607,-3.7638E-05],[136.5895,-3.7122E-05],[136.59293,-3.3513E-05],[136.59637,-3.506E-05],[136.5998,-3.5576E-05],[136.60323,-3.97E-05],[136.60667,-3.8669E-05],[136.6101,-3.4544E-05],[136.61353,-3.7122E-05],[136.61697,-3.506E-05],[136.6204,-3.9185E-05],[136.62383,-4.0732E-05],[136.62727,-3.9185E-05],[136.6307,-3.8154E-05],[136.63413,-3.6091E-05],[136.63757,-3.6091E-05],[136.641,-3.4544E-05],[136.64443,-3.7122E-05],[136.64787,-3.6607E-05],[136.6513,-3.7122E-05],[136.65473,-3.6607E-05],[136.65817,-3.5576E-05],[136.6616,-3.6607E-05],[136.66503,-3.7122E-05],[136.66847,-3.7122E-05],[136.6719,-3.6607E-05],[136.67533,-3.9185E-05],[136.67877,-3.4544E-05],[136.6822,-3.506E-05],[136.68563,-3.8669E-05],[136.68907,-3.4029E-05],[136.6925,-3.7638E-05],[136.69593,-3.97E-05],[136.69937,-4.2278E-05],[136.7028,-3.97E-05],[136.70623,-3.4029E-05],[136.70967,-3.7122E-05],[136.7131,-3.5576E-05],[136.71653,-4.0732E-05],[136.71997,-3.97E-05],[136.7234,-3.2482E-05],[136.72683,-4.1763E-05],[136.73027,-4.3825E-05],[136.7337,-4.0216E-05],[136.73713,-3.506E-05],[136.74057,-3.6607E-05],[136.744,-4.1247E-05],[136.74743,-3.6091E-05],[136.75087,-3.8154E-05],[136.7543,-3.506E-05],[136.75773,-3.2998E-05],[136.76117,-3.6607E-05],[136.7646,-3.7638E-05],[136.76803,-3.8154E-05],[136.77147,-3.5576E-05],[136.7749,-3.5576E-05],[136.77833,-3.1967E-05],[136.78177,-3.506E-05],[136.7852,-3.7638E-05],[136.78863,-3.7122E-05],[136.79207,-3.7122E-05],[136.7955,-2.9389E-05],[136.79893,-3.2482E-05],[136.80237,-3.7638E-05],[136.8058,-3.5576E-05],[136.80923,-3.8154E-05],[136.81267,-3.9185E-05],[136.8161,-3.5576E-05],[136.81953,-3.4544E-05],[136.82297,-3.8669E-05],[136.8264,-3.7638E-05],[136.82983,-3.9185E-05],[136.83327,-4.3309E-05],[136.8367,-3.6607E-05],[136.84013,-3.3513E-05],[136.84357,-3.8154E-05],[136.847,-3.8669E-05],[136.85043,-3.6607E-05],[136.85387,-3.506E-05],[136.8573,-3.2482E-05],[136.86073,-3.4029E-05],[136.86417,-3.7638E-05],[136.8676,-3.7638E-05],[136.87103,-3.5576E-05],[136.87447,-3.506E-05],[136.8779,-3.6607E-05],[136.88133,-3.8154E-05],[136.88477,-3.7638E-05]]}
-{"quant":[137.043,-1.1489],"mems":[[136.94657,-3.97E-05],[136.95,-3.8669E-05],[136.95343,-3.3513E-05],[136.95687,-3.1451E-05],[136.9603,-3.2482E-05],[136.96373,-4.0216E-05],[136.96717,-3.8154E-05],[136.9706,-3.4544E-05],[136.97403,-2.9904E-05],[136.97747,-3.042E-05],[136.9809,-3.7638E-05],[136.98433,-3.6091E-05],[136.98777,-3.6091E-05],[136.9912,-3.7638E-05],[136.99463,-3.97E-05],[136.99807,-3.8154E-05],[137.0015,-3.1451E-05],[137.00493,-3.506E-05],[137.00837,-3.5576E-05],[137.0118,-3.7638E-05],[137.01523,-3.97E-05],[137.01867,-3.5576E-05],[137.0221,-4.0216E-05],[137.02553,-4.1247E-05],[137.02897,-3.8669E-05],[137.0324,-3.7122E-05],[137.03583,-3.2482E-05],[137.03927,-3.2482E-05],[137.0427,-3.506E-05],[137.04613,-3.8669E-05],[137.04957,-3.8154E-05],[137.053,-3.7122E-05],[137.05643,-3.9185E-05],[137.05987,-3.7122E-05],[137.0633,-3.506E-05],[137.06673,-3.8669E-05],[137.07017,-3.3513E-05],[137.0736,-3.3513E-05],[137.07703,-3.6607E-05],[137.08047,-3.2482E-05],[137.0839,-3.7122E-05],[137.08733,-3.6607E-05],[137.09077,-3.7122E-05],[137.0942,-4.0216E-05],[137.09763,-3.7638E-05],[137.10107,-3.7638E-05],[137.1045,-3.7638E-05],[137.10793,-4.1247E-05],[137.11137,-3.8669E-05],[137.1148,-3.1451E-05],[137.11823,-3.6607E-05],[137.12167,-3.97E-05],[137.1251,-3.7638E-05],[137.12853,-3.6607E-05],[137.13197,-3.6091E-05],[137.1354,-3.5576E-05],[137.13883,-3.8669E-05],[137.14227,-4.4341E-05],[137.1457,-4.1247E-05],[137.14913,-3.8154E-05],[137.15257,-3.7122E-05],[137.156,-3.042E-05],[137.15944,-3.1967E-05],[137.16287,-3.9185E-05],[137.16631,-3.97E-05],[137.16974,-3.7638E-05],[137.17318,-3.8154E-05],[137.17662,-3.9185E-05],[137.18005,-3.8154E-05],[137.18349,-3.5576E-05],[137.18692,-3.042E-05],[137.19036,-3.042E-05],[137.1938,-3.8154E-05],[137.19723,-3.97E-05],[137.20067,-4.0732E-05],[137.2041,-4.0216E-05],[137.20754,-3.6607E-05],[137.21098,-3.7122E-05],[137.21441,-3.2998E-05],[137.21785,-3.4029E-05],[137.22128,-3.5576E-05],[137.22472,-3.3513E-05],[137.22816,-3.7638E-05],[137.23159,-3.7638E-05],[137.23503,-3.506E-05],[137.23846,-3.506E-05],[137.2419,-3.3513E-05],[137.24534,-3.9185E-05]]}
-{"quant":[137.432,-1.1444],"mems":[[137.33467,-3.5576E-05],[137.33811,-3.8154E-05],[137.34154,-3.97E-05],[137.34498,-3.6091E-05],[137.34842,-3.6091E-05],[137.35185,-3.7638E-05],[137.35529,-4.0216E-05],[137.35872,-3.6607E-05],[137.36216,-3.6091E-05],[137.3656,-3.7122E-05],[137.36903,-3.6091E-05],[137.37247,-3.97E-05],[137.3759,-3.6607E-05],[137.37934,-3.8154E-05],[137.38278,-4.0216E-05],[137.38621,-3.9185E-05],[137.38965,-3.8154E-05],[137.39308,-3.6091E-05],[137.39652,-3.8669E-05],[137.39996,-3.7122E-05],[137.40339,-3.7122E-05],[137.40683,-3.6607E-05],[137.41026,-3.6607E-05],[137.4137,-3.506E-05],[137.41714,-3.2482E-05],[137.42057,-3.506E-05],[137.42401,-3.7122E-05],[137.42744,-3.97E-05],[137.43088,-3.8154E-05],[137.43432,-4.0732E-05],[137.43775,-3.9185E-05],[137.44119,-3.6607E-05],[137.44462,-3.7638E-05],[137.44806,-3.6607E-05],[137.4515,-3.7122E-05],[137.45493,-3.2998E-05],[137.45837,-3.5576E-05],[137.4618,-3.7638E-05],[137.46524,-3.9185E-05],[137.46868,-4.2278E-05],[137.47211,-3.5576E-05],[137.47555,-3.5576E-05],[137.47898,-3.8154E-05],[137.48242,-4.1763E-05],[137.48586,-4.1763E-05],[137.48929,-3.4029E-05],[137.49273,-3.7122E-05],[137.49616,-4.0216E-05],[137.4996,-3.8669E-05],[137.50304,-4.0732E-05],[137.50647,-4.0216E-05],[137.50991,-3.6091E-05],[137.51334,-3.4029E-05],[137.51678,-3.5576E-05],[137.52022,-3.8154E-05],[137.52365,-4.1763E-05],[137.52709,-4.0216E-05],[137.53052,-3.4544E-05],[137.53396,-3.506E-05],[137.5374,-3.506E-05],[137.54083,-3.3513E-05],[137.54427,-3.8154E-05],[137.5477,-4.0216E-05],[137.55114,-3.3513E-05],[137.55458,-3.1967E-05],[137.55801,-3.8154E-05],[137.56145,-3.8154E-05],[137.56488,-4.0216E-05],[137.56832,-4.0216E-05],[137.57176,-3.4029E-05],[137.57519,-3.8154E-05],[137.57863,-3.7122E-05],[137.58206,-3.4544E-05],[137.5855,-3.6607E-05],[137.58894,-3.5576E-05],[137.59237,-3.7122E-05],[137.59581,-3.1967E-05],[137.59924,-3.4544E-05],[137.60268,-3.97E-05],[137.60612,-3.4029E-05],[137.60955,-3.6091E-05],[137.61299,-3.506E-05],[137.61642,-3.506E-05],[137.61986,-3.7638E-05],[137.6233,-3.97E-05],[137.62673,-4.0216E-05],[137.63017,-3.4029E-05]]}
-{"quant":[137.827,-1.1405],"mems":[[137.72981,-3.506E-05],[137.73325,-3.3513E-05],[137.73668,-3.506E-05],[137.74012,-3.6607E-05],[137.74356,-3.7122E-05],[137.74699,-3.5576E-05],[137.75043,-3.4029E-05],[137.75386,-3.7638E-05],[137.7573,-3.7638E-05],[137.76074,-3.1967E-05],[137.76417,-3.7122E-05],[137.76761,-4.0732E-05],[137.77104,-3.6091E-05],[137.77448,-3.6091E-05],[137.77792,-3.6091E-05],[137.78135,-3.8154E-05],[137.78479,-3.9185E-05],[137.78822,-3.6091E-05],[137.79166,-3.9185E-05],[137.7951,-3.7122E-05],[137.79853,-3.2482E-05],[137.80197,-3.7122E-05],[137.8054,-4.0216E-05],[137.80884,-3.97E-05],[137.81228,-3.7638E-05],[137.81571,-3.8154E-05],[137.81915,-3.8669E-05],[137.82258,-4.0216E-05],[137.82602,-4.1763E-05],[137.82946,-4.0216E-05],[137.83289,-3.7638E-05],[137.83633,-3.4544E-05],[137.83976,-3.4029E-05],[137.8432,-3.506E-05],[137.84664,-4.0216E-05],[137.85007,-4.0216E-05],[137.85351,-3.3513E-05],[137.85694,-3.3513E-05],[137.86038,-3.7122E-05],[137.86382,-4.0216E-05],[137.86725,-3.6607E-05],[137.87069,-3.7638E-05],[137.87412,-4.0216E-05],[137.87756,-3.8154E-05],[137.881,-4.3309E-05],[137.88443,-4.0732E-05],[137.88787,-3.506E-05],[137.8913,-3.7122E-05],[137.89474,-3.6607E-05],[137.89818,-3.1967E-05],[137.90161,-3.6091E-05],[137.90505,-4.1763E-05],[137.90848,-3.97E-05],[137.91192,-3.6607E-05],[137.91536,-3.0935E-05],[137.91879,-3.4029E-05],[137.92223,-3.8669E-05],[137.92566,-3.506E-05],[137.9291,-3.1967E-05],[137.93254,-3.042E-05],[137.93597,-3.3513E-05],[137.93941,-3.6607E-05],[137.94284,-3.5576E-05],[137.94628,-3.97E-05],[137.94972,-3.6607E-05],[137.95315,-3.4029E-05],[137.95659,-3.5576E-05],[137.96002,-3.2998E-05],[137.96346,-3.6091E-05],[137.9669,-3.9185E-05],[137.97033,-4.0216E-05],[137.97377,-3.4029E-05],[137.9772,-3.4029E-05],[137.98064,-3.97E-05],[137.98408,-3.4029E-05],[137.98751,-3.6091E-05],[137.99095,-3.8154E-05],[137.99438,-3.2998E-05],[137.99782,-3.7122E-05],[138.00126,-3.9185E-05],[138.00469,-3.7638E-05],[138.00813,-4.0216E-05],[138.01156,-3.506E-05],[138.015,-3.5576E-05],[138.01844,-3.6607E-05],[138.02187,-2.7326E-05],[138.02531,-3.1967E-05]]}
-{"quant":[138.172,-1.1301],"mems":[[138.07341,-3.042E-05],[138.07685,-3.506E-05],[138.08028,-3.7122E-05],[138.08372,-3.506E-05],[138.08716,-3.9185E-05],[138.09059,-3.8669E-05],[138.09403,-3.7638E-05],[138.09746,-3.8154E-05],[138.1009,-3.6607E-05],[138.10434,-3.8154E-05],[138.10777,-3.8154E-05],[138.11121,-3.8669E-05],[138.11464,-3.506E-05],[138.11808,-3.1451E-05],[138.12152,-3.4544E-05],[138.12495,-3.4544E-05],[138.12839,-3.6607E-05],[138.13182,-3.8669E-05],[138.13526,-3.4029E-05],[138.1387,-3.7638E-05],[138.14213,-3.8154E-05],[138.14557,-3.5576E-05],[138.149,-3.7638E-05],[138.15244,-3.4029E-05],[138.15588,-3.9185E-05],[138.15931,-4.0732E-05],[138.16275,-3.6607E-05],[138.16618,-4.0732E-05],[138.16962,-3.8669E-05],[138.17306,-3.506E-05],[138.17649,-3.8154E-05],[138.17993,-3.6091E-05],[138.18336,-3.2482E-05],[138.1868,-3.7638E-05],[138.19024,-3.6607E-05],[138.19367,-3.2998E-05],[138.19711,-3.506E-05],[138.20054,-3.6091E-05],[138.20398,-3.7638E-05],[138.20742,-3.8154E-05],[138.21085,-3.8154E-05],[138.21429,-3.506E-05],[138.21772,-3.6091E-05],[138.22116,-4.4341E-05],[138.2246,-3.8669E-05],[138.22803,-2.8357E-05],[138.23147,-2.8873E-05],[138.2349,-3.7638E-05],[138.23834,-4.0216E-05],[138.24178,-3.506E-05],[138.24521,-3.4544E-05],[138.24865,-3.3513E-05],[138.25208,-3.2998E-05],[138.25552,-3.5576E-05],[138.25896,-3.5576E-05],[138.26239,-3.6607E-05],[138.26583,-3.7122E-05],[138.26926,-3.9185E-05],[138.2727,-4.0216E-05],[138.27614,-3.4544E-05],[138.27957,-3.7122E-05],[138.28301,-4.0732E-05],[138.28644,-3.97E-05],[138.28988,-3.97E-05],[138.29332,-3.6607E-05],[138.29675,-4.0216E-05],[138.30019,-4.1247E-05],[138.30362,-4.0216E-05],[138.30706,-3.97E-05],[138.3105,-3.1967E-05],[138.31393,-3.4029E-05],[138.31737,-3.97E-05],[138.3208,-4.0216E-05],[138.32424,-3.5576E-05],[138.32768,-3.6607E-05],[138.33111,-3.9185E-05],[138.33455,-3.506E-05],[138.33798,-3.4029E-05],[138.34142,-3.4029E-05],[138.34486,-3.6607E-05],[138.34829,-4.2794E-05],[138.35173,-3.8154E-05],[138.35516,-3.042E-05],[138.3586,-3.7638E-05],[138.36204,-3.5576E-05],[138.36547,-3.4544E-05],[138.36891,-4.1247E-05]]}
-{"quant":[138.532,-1.1092],"mems":[[138.43419,-3.4544E-05],[138.43763,-3.4544E-05],[138.44106,-3.9185E-05],[138.4445,-3.5576E-05],[138.44794,-3.4544E-05],[138.45137,-3.6091E-05],[138.45481,-3.7122E-05],[138.45824,-3.3513E-05],[138.46168,-3.1967E-05],[138.46512,-3.3513E-05],[138.46855,-3.3513E-05],[138.47199,-3.7638E-05],[138.47542,-3.2482E-05],[138.47886,-3.3513E-05],[138.4823,-3.8669E-05],[138.48573,-3.8154E-05],[138.48917,-3.7638E-05],[138.4926,-3.2482E-05],[138.49604,-3.506E-05],[138.49948,-4.0216E-05],[138.50291,-3.7122E-05],[138.50635,-3.1967E-05],[138.50978,-3.506E-05],[138.51322,-3.8154E-05],[138.51666,-3.9185E-05],[138.52009,-3.9185E-05],[138.52353,-3.8154E-05],[138.52696,-4.1247E-05],[138.5304,-3.8154E-05],[138.53384,-3.7122E-05],[138.53727,-3.5576E-05],[138.54071,-3.4029E-05],[138.54414,-3.6091E-05],[138.54758,-3.97E-05],[138.55102,-3.8669E-05],[138.55445,-3.1967E-05],[138.55789,-3.7638E-05],[138.56132,-4.0732E-05],[138.56476,-3.4544E-05],[138.5682,-3.506E-05],[138.57163,-3.5576E-05],[138.57507,-3.4029E-05],[138.5785,-3.7638E-05],[138.58194,-4.0732E-05],[138.58538,-3.8154E-05],[138.58881,-3.7122E-05],[138.59225,-3.8669E-05],[138.59568,-3.8669E-05],[138.59912,-3.8154E-05],[138.60256,-3.6091E-05],[138.60599,-3.6607E-05],[138.60943,-4.0216E-05],[138.61286,-3.9185E-05],[138.6163,-3.506E-05],[138.61974,-3.7122E-05],[138.62317,-3.7638E-05],[138.62661,-3.4029E-05],[138.63004,-3.2482E-05],[138.63348,-3.1451E-05],[138.63692,-3.9185E-05],[138.64035,-4.0732E-05],[138.64379,-3.7638E-05],[138.64722,-4.0732E-05],[138.65066,-3.7122E-05],[138.6541,-3.8154E-05],[138.65753,-3.8669E-05],[138.66097,-3.9185E-05],[138.6644,-3.8669E-05],[138.66784,-3.97E-05],[138.67128,-4.2794E-05],[138.67471,-3.2482E-05],[138.67815,-3.2998E-05],[138.68158,-3.97E-05],[138.68502,-3.9185E-05],[138.68846,-3.7122E-05],[138.69189,-3.6091E-05],[138.69533,-3.7122E-05],[138.69876,-4.1763E-05],[138.7022,-4.2278E-05],[138.70564,-3.5576E-05],[138.70907,-3.6091E-05],[138.71251,-3.7638E-05],[138.71594,-3.6091E-05],[138.71938,-3.5576E-05],[138.72282,-3.6607E-05],[138.72625,-3.7638E-05],[138.72969,-3.6091E-05]]}
-{"quant":[138.915,-1.0904],"mems":[[138.81559,-4.0216E-05],[138.81902,-3.8154E-05],[138.82246,-3.8669E-05],[138.8259,-3.6091E-05],[138.82933,-3.6607E-05],[138.83277,-3.9185E-05],[138.8362,-3.5576E-05],[138.83964,-3.5576E-05],[138.84308,-3.7122E-05],[138.84651,-3.8154E-05],[138.84995,-3.7122E-05],[138.85338,-3.9185E-05],[138.85682,-3.8154E-05],[138.86026,-3.7122E-05],[138.86369,-4.0732E-05],[138.86713,-3.4029E-05],[138.87056,-3.1451E-05],[138.874,-3.6607E-05],[138.87744,-3.8669E-05],[138.88087,-3.7122E-05],[138.88431,-3.6607E-05],[138.88774,-3.8669E-05],[138.89118,-3.7638E-05],[138.89462,-3.6607E-05],[138.89805,-3.7122E-05],[138.90149,-3.7122E-05],[138.90492,-3.6607E-05],[138.90836,-3.7122E-05],[138.9118,-3.506E-05],[138.91523,-3.3513E-05],[138.91867,-3.7122E-05],[138.9221,-3.6091E-05],[138.92554,-3.6091E-05],[138.92898,-3.2998E-05],[138.93241,-3.042E-05],[138.93585,-3.6607E-05],[138.93928,-3.506E-05],[138.94272,-3.5576E-05],[138.94616,-4.0732E-05],[138.94959,-3.9185E-05],[138.95303,-3.3513E-05],[138.95646,-3.5576E-05],[138.9599,-3.97E-05],[138.96334,-3.8669E-05],[138.96677,-3.6091E-05],[138.97021,-3.4544E-05],[138.97364,-3.5576E-05],[138.97708,-3.7122E-05],[138.98052,-3.7122E-05],[138.98395,-3.4544E-05],[138.98739,-3.4544E-05],[138.99082,-3.6091E-05],[138.99426,-3.506E-05],[138.9977,-3.2998E-05],[139.00113,-3.4029E-05],[139.00457,-3.4544E-05],[139.008,-3.5576E-05],[139.01144,-3.4544E-05],[139.01488,-3.5576E-05],[139.01831,-3.8669E-05],[139.02175,-3.4544E-05],[139.02518,-3.7638E-05],[139.02862,-3.7638E-05],[139.03206,-3.506E-05],[139.03549,-3.7122E-05],[139.03893,-3.5576E-05],[139.04236,-3.9185E-05],[139.0458,-4.0732E-05],[139.04924,-3.506E-05],[139.05267,-3.1967E-05],[139.05611,-3.6091E-05],[139.05954,-3.7638E-05],[139.06298,-3.5576E-05],[139.06642,-3.506E-05],[139.06985,-3.7638E-05],[139.07329,-3.9185E-05],[139.07672,-3.7638E-05],[139.08016,-3.7638E-05],[139.0836,-3.8669E-05],[139.08703,-3.5576E-05],[139.09047,-3.4029E-05],[139.0939,-3.9185E-05],[139.09734,-4.0216E-05],[139.10078,-3.9185E-05],[139.10421,-3.8669E-05],[139.10765,-3.6091E-05],[139.11108,-3.7638E-05],[139.11452,-3.7122E-05]]}
-{"quant":[139.275,-1.0726],"mems":[[139.17637,-3.6607E-05],[139.1798,-3.5576E-05],[139.18324,-3.97E-05],[139.18668,-3.8669E-05],[139.19011,-3.3513E-05],[139.19355,-3.6091E-05],[139.19698,-3.7638E-05],[139.20042,-3.506E-05],[139.20386,-3.3513E-05],[139.20729,-3.1451E-05],[139.21073,-2.9389E-05],[139.21416,-3.4029E-05],[139.2176,-3.9185E-05],[139.22104,-3.8154E-05],[139.22447,-3.7638E-05],[139.22791,-3.4544E-05],[139.23134,-3.1967E-05],[139.23478,-3.4544E-05],[139.23822,-3.6091E-05],[139.24165,-3.1967E-05],[139.24509,-3.2482E-05],[139.24852,-3.5576E-05],[139.25196,-3.3513E-05],[139.2554,-3.7122E-05],[139.25883,-3.5576E-05],[139.26227,-3.6607E-05],[139.2657,-3.5576E-05],[139.26914,-3.0935E-05],[139.27258,-3.8154E-05],[139.27601,-3.6091E-05],[139.27945,-3.506E-05],[139.28288,-3.9185E-05],[139.28632,-3.6091E-05],[139.28976,-3.4544E-05],[139.29319,-3.4029E-05],[139.29663,-3.6091E-05],[139.30006,-3.7122E-05],[139.3035,-3.7122E-05],[139.30694,-3.5576E-05],[139.31037,-3.1967E-05],[139.31381,-3.1451E-05],[139.31724,-3.4029E-05],[139.32068,-3.7122E-05],[139.32412,-3.5576E-05],[139.32755,-3.6607E-05],[139.33099,-3.6091E-05],[139.33442,-3.4544E-05],[139.33786,-4.1247E-05],[139.3413,-4.2278E-05],[139.34473,-3.1967E-05],[139.34817,-3.2482E-05],[139.3516,-3.3513E-05],[139.35504,-3.1967E-05],[139.35848,-3.6607E-05],[139.36191,-3.6607E-05],[139.36535,-3.5576E-05],[139.36878,-3.5576E-05],[139.37222,-3.6091E-05],[139.37566,-4.0732E-05],[139.37909,-3.9185E-05],[139.38253,-3.2482E-05],[139.38596,-3.4544E-05],[139.3894,-3.5576E-05],[139.39284,-3.4029E-05],[139.39627,-3.8154E-05],[139.39971,-3.6091E-05],[139.40314,-3.97E-05],[139.40658,-3.8669E-05],[139.41002,-2.9904E-05],[139.41345,-3.2998E-05],[139.41689,-3.506E-05],[139.42032,-3.1451E-05],[139.42376,-3.2998E-05],[139.4272,-3.506E-05],[139.43063,-3.5576E-05],[139.43407,-3.6091E-05],[139.4375,-3.8154E-05],[139.44094,-4.0216E-05],[139.44438,-4.1247E-05],[139.44781,-4.1247E-05],[139.45125,-3.3513E-05],[139.45468,-3.5576E-05],[139.45812,-4.0216E-05],[139.46156,-3.506E-05],[139.46499,-3.8154E-05],[139.46843,-3.6091E-05],[139.47186,-3.7638E-05]]}
-{"quant":[139.653,-1.0522],"mems":[[139.55433,-3.506E-05],[139.55776,-3.042E-05],[139.5612,-3.5576E-05],[139.56464,-3.7122E-05],[139.56807,-3.4544E-05],[139.57151,-3.6091E-05],[139.57494,-3.4029E-05],[139.57838,-3.8669E-05],[139.58182,-4.2794E-05],[139.58525,-3.7122E-05],[139.58869,-3.1451E-05],[139.59212,-3.2482E-05],[139.59556,-3.5576E-05],[139.599,-3.2998E-05],[139.60243,-3.506E-05],[139.60587,-3.6607E-05],[139.6093,-3.7638E-05],[139.61274,-3.8154E-05],[139.61618,-3.2998E-05],[139.61961,-3.3513E-05],[139.62305,-3.6091E-05],[139.62648,-3.2998E-05],[139.62992,-3.4544E-05],[139.63336,-3.7638E-05],[139.63679,-3.6091E-05],[139.64023,-3.6607E-05],[139.64366,-3.8669E-05],[139.6471,-3.97E-05],[139.65054,-3.8669E-05],[139.65397,-3.506E-05],[139.65741,-3.4029E-05],[139.66084,-3.5576E-05],[139.66428,-3.4544E-05],[139.66772,-3.3513E-05],[139.67115,-3.5576E-05],[139.67459,-3.4029E-05],[139.67802,-3.506E-05],[139.68146,-3.506E-05],[139.6849,-3.1967E-05],[139.68833,-3.1967E-05],[139.69177,-3.4544E-05],[139.6952,-3.4029E-05],[139.69864,-3.506E-05],[139.70208,-3.8669E-05],[139.70551,-3.6607E-05],[139.70895,-3.5576E-05],[139.71238,-3.6091E-05],[139.71582,-3.5576E-05],[139.71926,-3.97E-05],[139.72269,-3.97E-05],[139.72613,-3.4544E-05],[139.72956,-3.4544E-05],[139.733,-3.5576E-05],[139.73644,-3.6091E-05],[139.73988,-4.0216E-05],[139.74332,-3.6091E-05],[139.74675,-3.2482E-05],[139.75019,-3.8669E-05],[139.75363,-3.7122E-05],[139.75707,-3.6091E-05],[139.76051,-3.5576E-05],[139.76395,-3.6607E-05],[139.76739,-3.8154E-05],[139.77083,-3.2998E-05],[139.77426,-3.6091E-05],[139.7777,-3.9185E-05],[139.78114,-3.8154E-05],[139.78458,-3.9185E-05],[139.78802,-3.5576E-05],[139.79146,-3.2998E-05],[139.7949,-3.7122E-05],[139.79833,-4.0216E-05],[139.80177,-3.4029E-05],[139.80521,-3.3513E-05],[139.80865,-3.9185E-05],[139.81209,-4.0732E-05],[139.81553,-4.1763E-05],[139.81897,-4.0216E-05],[139.82241,-4.0732E-05],[139.82584,-3.6091E-05],[139.82928,-3.042E-05],[139.83272,-3.2482E-05],[139.83616,-3.4544E-05],[139.8396,-3.5576E-05],[139.84304,-3.7638E-05],[139.84648,-3.7122E-05],[139.84991,-3.506E-05],[139.85335,-3.506E-05]]}
-{"quant":[140.051,-1.033],"mems":[[139.95307,-3.2998E-05],[139.95651,-3.3513E-05],[139.95995,-3.4029E-05],[139.96339,-3.6091E-05],[139.96683,-3.506E-05],[139.97027,-3.7122E-05],[139.97371,-3.8154E-05],[139.97715,-3.7122E-05],[139.98058,-4.0732E-05],[139.98402,-3.9185E-05],[139.98746,-3.506E-05],[139.9909,-3.2482E-05],[139.99434,-2.8873E-05],[139.99778,-3.2482E-05],[140.00122,-3.8154E-05],[140.00465,-3.7122E-05],[140.00809,-3.3513E-05],[140.01153,-3.6091E-05],[140.01497,-3.7638E-05],[140.01841,-3.7638E-05],[140.02185,-3.9185E-05],[140.02529,-3.5576E-05],[140.02873,-3.6091E-05],[140.03216,-3.5576E-05],[140.0356,-3.6607E-05],[140.03904,-3.6607E-05],[140.04248,-3.1967E-05],[140.04592,-3.1451E-05],[140.04936,-3.3513E-05],[140.0528,-3.4544E-05],[140.05623,-3.4544E-05],[140.05967,-3.3513E-05],[140.06311,-3.2998E-05],[140.06655,-3.5576E-05],[140.06999,-3.6091E-05],[140.07343,-3.7638E-05],[140.07687,-3.8154E-05],[140.08031,-3.4544E-05],[140.08374,-3.4544E-05],[140.08718,-3.5576E-05],[140.09062,-3.1967E-05],[140.09406,-3.506E-05],[140.0975,-4.3825E-05],[140.10094,-4.0216E-05],[140.10438,-3.6091E-05],[140.10781,-3.7638E-05],[140.11125,-3.4544E-05],[140.11469,-3.1451E-05],[140.11813,-3.4544E-05],[140.12157,-3.9185E-05],[140.12501,-3.97E-05],[140.12845,-3.7638E-05],[140.13189,-3.506E-05],[140.13532,-3.5576E-05],[140.13876,-3.4544E-05],[140.1422,-3.4029E-05],[140.14564,-3.6091E-05],[140.14908,-3.7122E-05],[140.15252,-3.0935E-05],[140.15596,-3.1451E-05],[140.15939,-3.7122E-05],[140.16283,-3.3513E-05],[140.16627,-3.3513E-05],[140.16971,-3.2998E-05],[140.17315,-3.4029E-05],[140.17659,-3.8154E-05],[140.18003,-3.8669E-05],[140.18347,-3.6607E-05],[140.1869,-3.1967E-05],[140.19034,-3.2998E-05],[140.19378,-3.4544E-05],[140.19722,-3.6091E-05],[140.20066,-3.5576E-05],[140.2041,-3.4029E-05],[140.20754,-3.6607E-05],[140.21097,-3.4029E-05],[140.21441,-3.506E-05],[140.21785,-3.7638E-05],[140.22129,-3.8154E-05],[140.22473,-3.7638E-05],[140.22817,-3.506E-05],[140.23161,-3.8154E-05],[140.23505,-3.9185E-05],[140.23848,-3.7638E-05],[140.24192,-3.7122E-05],[140.24536,-3.6607E-05],[140.2488,-3.506E-05]]}
-{"quant":[140.427,-1.0113],"mems":[[140.32789,-3.6607E-05],[140.33133,-3.6607E-05],[140.33477,-3.4544E-05],[140.33821,-3.4544E-05],[140.34164,-3.3513E-05],[140.34508,-2.9904E-05],[140.34852,-3.2482E-05],[140.35196,-3.5576E-05],[140.3554,-3.8154E-05],[140.35884,-3.8154E-05],[140.36228,-3.6091E-05],[140.36571,-3.97E-05],[140.36915,-3.7122E-05],[140.37259,-2.7326E-05],[140.37603,-3.2998E-05],[140.37947,-3.8669E-05],[140.38291,-3.506E-05],[140.38635,-3.7638E-05],[140.38979,-3.4544E-05],[140.39322,-3.6091E-05],[140.39666,-3.8154E-05],[140.4001,-3.8669E-05],[140.40354,-3.97E-05],[140.40698,-3.1451E-05],[140.41042,-3.1967E-05],[140.41386,-3.7638E-05],[140.41729,-3.506E-05],[140.42073,-3.3513E-05],[140.42417,-3.4544E-05],[140.42761,-3.8669E-05],[140.43105,-3.6091E-05],[140.43449,-3.1967E-05],[140.43793,-3.6607E-05],[140.44137,-3.9185E-05],[140.4448,-3.506E-05],[140.44824,-3.042E-05],[140.45168,-3.506E-05],[140.45512,-3.97E-05],[140.45856,-4.1247E-05],[140.462,-4.0732E-05],[140.46544,-3.7122E-05],[140.46887,-3.5576E-05],[140.47231,-3.5576E-05],[140.47575,-3.7638E-05],[140.47919,-3.6091E-05],[140.48263,-3.6091E-05],[140.48607,-3.8669E-05],[140.48951,-3.6607E-05],[140.49295,-3.7638E-05],[140.49638,-4.0732E-05],[140.49982,-3.6607E-05],[140.50326,-3.7122E-05],[140.5067,-4.0216E-05],[140.51014,-3.7638E-05],[140.51358,-3.7638E-05],[140.51702,-3.6091E-05],[140.52045,-3.7122E-05],[140.52389,-3.5576E-05],[140.52733,-3.1967E-05],[140.53077,-3.4029E-05],[140.53421,-3.8154E-05],[140.53765,-4.0216E-05],[140.54109,-3.7638E-05],[140.54453,-3.6091E-05],[140.54796,-3.4544E-05],[140.5514,-3.8154E-05],[140.55484,-3.97E-05],[140.55828,-3.6607E-05],[140.56172,-3.9185E-05],[140.56516,-3.6607E-05],[140.5686,-3.3513E-05],[140.57203,-3.506E-05],[140.57547,-3.5576E-05],[140.57891,-3.4544E-05],[140.58235,-3.9185E-05],[140.58579,-3.8154E-05],[140.58923,-3.0935E-05],[140.59267,-3.6091E-05],[140.59611,-3.97E-05],[140.59954,-3.5576E-05],[140.60298,-3.506E-05],[140.60642,-3.1967E-05],[140.60986,-3.042E-05],[140.6133,-3.4544E-05],[140.61674,-3.6091E-05],[140.62018,-3.6091E-05],[140.62361,-3.6091E-05]]}
-{"quant":[140.779,-0.99087],"mems":[[140.68207,-3.97E-05],[140.68551,-3.506E-05],[140.68895,-3.5576E-05],[140.69239,-3.5576E-05],[140.69583,-3.7638E-05],[140.69927,-4.0216E-05],[140.7027,-3.7122E-05],[140.70614,-3.6607E-05],[140.70958,-3.7122E-05],[140.71302,-3.6607E-05],[140.71646,-4.0732E-05],[140.7199,-3.8154E-05],[140.72334,-3.506E-05],[140.72677,-3.6091E-05],[140.73021,-3.2998E-05],[140.73365,-3.4544E-05],[140.73709,-3.7122E-05],[140.74053,-3.6091E-05],[140.74397,-3.5576E-05],[140.74741,-3.2998E-05],[140.75085,-3.2998E-05],[140.75428,-3.5576E-05],[140.75772,-3.6607E-05],[140.76116,-3.97E-05],[140.7646,-4.0216E-05],[140.76804,-3.7122E-05],[140.77148,-3.8154E-05],[140.77492,-4.2278E-05],[140.77835,-4.3309E-05],[140.78179,-4.0216E-05],[140.78523,-3.8669E-05],[140.78867,-3.506E-05],[140.79211,-3.506E-05],[140.79555,-3.506E-05],[140.79899,-3.1967E-05],[140.80243,-3.4029E-05],[140.80586,-3.4544E-05],[140.8093,-3.5576E-05],[140.81274,-4.0216E-05],[140.81618,-4.0732E-05],[140.81962,-4.2794E-05],[140.82306,-4.1763E-05],[140.8265,-3.3513E-05],[140.82993,-3.6091E-05],[140.83337,-3.8154E-05],[140.83681,-3.4544E-05],[140.84025,-3.7122E-05],[140.84369,-3.8154E-05],[140.84713,-3.5576E-05],[140.85057,-3.7638E-05],[140.85401,-4.1247E-05],[140.85744,-4.0216E-05],[140.86088,-3.8154E-05],[140.86432,-3.97E-05],[140.86776,-3.6091E-05],[140.8712,-3.8154E-05],[140.87464,-3.97E-05],[140.87808,-3.506E-05],[140.88151,-3.7638E-05],[140.88495,-3.4029E-05],[140.88839,-3.5576E-05],[140.89183,-3.5576E-05],[140.89527,-3.2482E-05],[140.89871,-3.5576E-05],[140.90215,-3.5576E-05],[140.90559,-3.6091E-05],[140.90902,-3.3513E-05],[140.91246,-3.5576E-05],[140.9159,-3.97E-05],[140.91934,-3.7122E-05],[140.92278,-3.6607E-05],[140.92622,-3.4029E-05],[140.92966,-3.0935E-05],[140.93309,-3.2998E-05],[140.93653,-3.4029E-05],[140.93997,-3.4029E-05],[140.94341,-3.9185E-05],[140.94685,-3.8154E-05],[140.95029,-3.7122E-05],[140.95373,-3.6091E-05],[140.95717,-3.506E-05],[140.9606,-3.97E-05],[140.96404,-3.6091E-05],[140.96748,-3.2482E-05],[140.97092,-3.4544E-05],[140.97436,-3.6607E-05],[140.9778,-3.8669E-05]]}
-{"quant":[141.145,-0.97096],"mems":[[141.04657,-3.506E-05],[141.05001,-3.5576E-05],[141.05345,-3.7638E-05],[141.05689,-3.8154E-05],[141.06033,-3.8154E-05],[141.06376,-3.7122E-05],[141.0672,-3.7122E-05],[141.07064,-3.5576E-05],[141.07408,-3.506E-05],[141.07752,-3.5576E-05],[141.08096,-3.3513E-05],[141.0844,-3.8154E-05],[141.08783,-3.8154E-05],[141.09127,-3.4544E-05],[141.09471,-3.6607E-05],[141.09815,-3.8154E-05],[141.10159,-3.6607E-05],[141.10503,-3.2998E-05],[141.10847,-3.0935E-05],[141.11191,-3.4029E-05],[141.11534,-4.1763E-05],[141.11878,-4.0732E-05],[141.12222,-3.4544E-05],[141.12566,-3.4029E-05],[141.1291,-3.6607E-05],[141.13254,-4.0216E-05],[141.13598,-3.7122E-05],[141.13941,-3.7638E-05],[141.14285,-3.9185E-05],[141.14629,-3.4029E-05],[141.14973,-3.3513E-05],[141.15317,-3.4544E-05],[141.15661,-3.4029E-05],[141.16005,-3.6607E-05],[141.16349,-3.8154E-05],[141.16692,-3.4029E-05],[141.17036,-3.4029E-05],[141.1738,-3.9185E-05],[141.17724,-3.7122E-05],[141.18068,-3.506E-05],[141.18412,-3.6091E-05],[141.18756,-3.3513E-05],[141.19099,-3.6607E-05],[141.19443,-3.7638E-05],[141.19787,-3.6091E-05],[141.20131,-3.8669E-05],[141.20475,-3.4544E-05],[141.20819,-3.1967E-05],[141.21163,-3.1451E-05],[141.21507,-3.6091E-05],[141.2185,-4.0732E-05],[141.22194,-3.6607E-05],[141.22538,-3.6091E-05],[141.22882,-3.4544E-05],[141.23226,-3.6091E-05],[141.2357,-3.9185E-05],[141.23914,-3.6607E-05],[141.24257,-4.2278E-05],[141.24601,-3.97E-05],[141.24945,-3.7638E-05],[141.25289,-4.3309E-05],[141.25633,-3.8669E-05],[141.25977,-3.97E-05],[141.26321,-4.0216E-05],[141.26665,-3.506E-05],[141.27008,-3.8669E-05],[141.27352,-4.0216E-05],[141.27696,-3.8669E-05],[141.2804,-3.6091E-05],[141.28384,-3.8154E-05],[141.28728,-3.4544E-05],[141.29072,-3.1451E-05],[141.29415,-3.8669E-05],[141.29759,-3.5576E-05],[141.30103,-3.506E-05],[141.30447,-3.6607E-05],[141.30791,-3.2998E-05],[141.31135,-3.3513E-05],[141.31479,-3.2998E-05],[141.31823,-3.8154E-05],[141.32166,-4.0216E-05],[141.3251,-3.5576E-05],[141.32854,-3.4544E-05],[141.33198,-3.6091E-05],[141.33542,-3.5576E-05],[141.33886,-3.6607E-05],[141.3423,-3.4029E-05]]}
-{"quant":[141.51,-0.94635],"mems":[[141.41107,-3.4029E-05],[141.41451,-3.9185E-05],[141.41795,-4.4856E-05],[141.42139,-4.2278E-05],[141.42482,-3.8154E-05],[141.42826,-3.97E-05],[141.4317,-3.8669E-05],[141.43514,-3.8154E-05],[141.43858,-3.6607E-05],[141.44202,-3.1967E-05],[141.44546,-3.3513E-05],[141.44889,-3.2482E-05],[141.45233,-3.6091E-05],[141.45577,-3.8669E-05],[141.45921,-3.8154E-05],[141.46265,-3.9185E-05],[141.46609,-3.4544E-05],[141.46953,-3.2998E-05],[141.47297,-3.4544E-05],[141.4764,-3.6607E-05],[141.47984,-3.6091E-05],[141.48328,-3.6607E-05],[141.48672,-3.6607E-05],[141.49016,-3.0935E-05],[141.4936,-3.5576E-05],[141.49704,-4.1247E-05],[141.50047,-4.1763E-05],[141.50391,-4.0216E-05],[141.50735,-3.7638E-05],[141.51079,-3.8669E-05],[141.51423,-3.8154E-05],[141.51767,-3.9185E-05],[141.52111,-4.0216E-05],[141.52455,-3.8669E-05],[141.52798,-3.7638E-05],[141.53142,-3.506E-05],[141.53486,-3.8154E-05],[141.5383,-3.8154E-05],[141.54174,-3.506E-05],[141.54518,-3.6607E-05],[141.54862,-3.6091E-05],[141.55205,-3.7122E-05],[141.55549,-3.8154E-05],[141.55893,-4.1763E-05],[141.56237,-4.2278E-05],[141.56581,-3.506E-05],[141.56925,-3.506E-05],[141.57269,-3.7638E-05],[141.57613,-4.0216E-05],[141.57956,-3.97E-05],[141.583,-3.97E-05],[141.58644,-3.7122E-05],[141.58988,-3.4029E-05],[141.59332,-3.7638E-05],[141.59676,-3.6091E-05],[141.6002,-3.7638E-05],[141.60363,-3.6091E-05],[141.60707,-3.1451E-05],[141.61051,-3.3513E-05],[141.61395,-3.506E-05],[141.61739,-3.6091E-05],[141.62083,-3.6607E-05],[141.62427,-3.5576E-05],[141.62771,-3.7122E-05],[141.63114,-3.6091E-05],[141.63458,-3.1967E-05],[141.63802,-3.3513E-05],[141.64146,-3.1451E-05],[141.6449,-3.1451E-05],[141.64834,-3.7122E-05],[141.65178,-3.5576E-05],[141.65521,-3.6091E-05],[141.65865,-3.6091E-05],[141.66209,-3.5576E-05],[141.66553,-3.3513E-05],[141.66897,-3.6607E-05],[141.67241,-3.7638E-05],[141.67585,-3.0935E-05],[141.67929,-3.6607E-05],[141.68272,-3.6607E-05],[141.68616,-3.506E-05],[141.6896,-3.7638E-05],[141.69304,-3.506E-05],[141.69648,-3.9185E-05],[141.69992,-3.7638E-05],[141.70336,-3.1451E-05],[141.70679,-3.1967E-05]]}
-{"quant":[141.88,-0.92217],"mems":[[141.78245,-3.6091E-05],[141.78588,-3.2998E-05],[141.78932,-3.1451E-05],[141.79276,-3.6091E-05],[141.7962,-4.2794E-05],[141.79964,-3.9185E-05],[141.80308,-3.6091E-05],[141.80652,-3.8669E-05],[141.80995,-3.6091E-05],[141.81339,-3.9185E-05],[141.81683,-3.7638E-05],[141.82027,-3.8154E-05],[141.82371,-3.97E-05],[141.82715,-3.3513E-05],[141.83059,-3.6607E-05],[141.83403,-3.4544E-05],[141.83746,-3.3513E-05],[141.8409,-3.6607E-05],[141.84434,-3.506E-05],[141.84778,-3.506E-05],[141.85122,-3.7122E-05],[141.85466,-3.8154E-05],[141.8581,-3.97E-05],[141.86153,-3.97E-05],[141.86497,-3.506E-05],[141.86841,-3.2482E-05],[141.87185,-3.4029E-05],[141.87529,-3.3513E-05],[141.87873,-3.2998E-05],[141.88217,-3.4029E-05],[141.88561,-3.506E-05],[141.88904,-3.4029E-05],[141.89248,-3.506E-05],[141.89592,-3.7122E-05],[141.89936,-3.7638E-05],[141.9028,-3.6091E-05],[141.90624,-3.506E-05],[141.90968,-3.6607E-05],[141.91311,-3.5576E-05],[141.91655,-3.5576E-05],[141.91999,-3.5576E-05],[141.92343,-3.1451E-05],[141.92687,-3.2998E-05],[141.93031,-3.506E-05],[141.93375,-3.5576E-05],[141.93719,-3.5576E-05],[141.94062,-3.7122E-05],[141.94406,-3.6607E-05],[141.9475,-3.6091E-05],[141.95094,-4.0732E-05],[141.95438,-3.9185E-05],[141.95782,-3.4544E-05],[141.96126,-3.6607E-05],[141.96469,-4.1763E-05],[141.96813,-3.9185E-05],[141.97157,-4.1247E-05],[141.97501,-3.9185E-05],[141.97845,-3.2998E-05],[141.98189,-3.6607E-05],[141.98533,-3.4544E-05],[141.98877,-3.7122E-05],[141.9922,-4.2278E-05],[141.99564,-4.1763E-05],[141.99908,-4.1763E-05],[142.00252,-3.4029E-05],[142.00596,-3.2998E-05],[142.0094,-3.6091E-05],[142.01284,-3.4029E-05],[142.01627,-3.4029E-05],[142.01971,-3.8669E-05],[142.02315,-3.7122E-05],[142.02659,-3.4544E-05],[142.03003,-3.97E-05],[142.03347,-3.8154E-05],[142.03691,-3.8154E-05],[142.04035,-3.7122E-05],[142.04378,-3.7638E-05],[142.04722,-3.8154E-05],[142.05066,-3.1967E-05],[142.0541,-3.7638E-05],[142.05754,-3.97E-05],[142.06098,-3.6091E-05],[142.06442,-3.7638E-05],[142.06785,-3.6091E-05],[142.07129,-3.506E-05],[142.07473,-3.7122E-05],[142.07817,-3.8669E-05]]}
-{"quant":[142.237,-0.89061],"mems":[[142.14007,-3.6607E-05],[142.14351,-4.3309E-05],[142.14694,-4.0732E-05],[142.15038,-3.6091E-05],[142.15382,-3.506E-05],[142.15726,-3.6091E-05],[142.1607,-4.0732E-05],[142.16414,-3.8154E-05],[142.16758,-3.6607E-05],[142.17101,-4.3309E-05],[142.17445,-4.1763E-05],[142.17789,-3.6607E-05],[142.18133,-3.97E-05],[142.18477,-4.1247E-05],[142.18821,-3.3513E-05],[142.19165,-3.7638E-05],[142.19509,-3.97E-05],[142.19852,-3.4544E-05],[142.20196,-3.8669E-05],[142.2054,-3.7122E-05],[142.20884,-3.506E-05],[142.21228,-3.5576E-05],[142.21572,-3.1451E-05],[142.21916,-3.4029E-05],[142.22259,-3.8154E-05],[142.22603,-3.506E-05],[142.22947,-3.6607E-05],[142.23291,-3.97E-05],[142.23635,-3.6607E-05],[142.23979,-3.506E-05],[142.24323,-3.3513E-05],[142.24667,-3.1451E-05],[142.2501,-3.506E-05],[142.25354,-3.8154E-05],[142.25698,-3.9185E-05],[142.26042,-3.7122E-05],[142.26386,-3.6091E-05],[142.2673,-3.4029E-05],[142.27074,-3.6607E-05],[142.27417,-4.0732E-05],[142.27761,-3.97E-05],[142.28105,-3.7638E-05],[142.28449,-3.4544E-05],[142.28793,-3.6091E-05],[142.29137,-3.4544E-05],[142.29481,-3.506E-05],[142.29825,-3.9185E-05],[142.30168,-3.506E-05],[142.30512,-3.7638E-05],[142.30856,-3.6091E-05],[142.312,-3.506E-05],[142.31544,-3.97E-05],[142.31887,-3.8669E-05],[142.32231,-4.2278E-05],[142.32574,-3.9185E-05],[142.32918,-3.2998E-05],[142.33262,-3.6091E-05],[142.33605,-3.9185E-05],[142.33949,-3.8154E-05],[142.34292,-4.0216E-05],[142.34636,-3.7638E-05],[142.3498,-3.6607E-05],[142.35323,-4.0216E-05],[142.35667,-3.5576E-05],[142.3601,-3.4029E-05],[142.36354,-3.5576E-05],[142.36698,-3.0935E-05],[142.37041,-2.7842E-05],[142.37385,-3.4029E-05],[142.37728,-3.5576E-05],[142.38072,-3.4544E-05],[142.38416,-4.2278E-05],[142.38759,-3.97E-05],[142.39103,-3.4544E-05],[142.39446,-3.7122E-05],[142.3979,-3.5576E-05],[142.40134,-3.5576E-05],[142.40477,-3.4544E-05],[142.40821,-3.2482E-05],[142.41164,-3.506E-05],[142.41508,-3.8669E-05],[142.41852,-3.9185E-05],[142.42195,-3.6607E-05],[142.42539,-3.4029E-05],[142.42882,-3.4544E-05],[142.43226,-3.8669E-05],[142.4357,-3.97E-05],[142.43913,-3.8669E-05]]}
-{"quant":[142.603,-0.85291],"mems":[[142.50442,-3.7638E-05],[142.50785,-2.8873E-05],[142.51129,-3.2482E-05],[142.51472,-4.0216E-05],[142.51816,-3.6607E-05],[142.5216,-3.506E-05],[142.52503,-3.1451E-05],[142.52847,-3.506E-05],[142.5319,-3.6091E-05],[142.53534,-3.5576E-05],[142.53878,-3.8154E-05],[142.54221,-3.5576E-05],[142.54565,-3.5576E-05],[142.54908,-3.4029E-05],[142.55252,-3.7638E-05],[142.55596,-3.9185E-05],[142.55939,-3.9185E-05],[142.56283,-3.8669E-05],[142.56626,-3.2482E-05],[142.5697,-3.4544E-05],[142.57314,-3.8669E-05],[142.57657,-3.7638E-05],[142.58001,-3.97E-05],[142.58344,-4.1247E-05],[142.58688,-3.8154E-05],[142.59032,-3.6091E-05],[142.59375,-3.7122E-05],[142.59719,-4.0216E-05],[142.60062,-3.4029E-05],[142.60406,-3.506E-05],[142.6075,-4.0732E-05],[142.61093,-3.97E-05],[142.61437,-4.0216E-05],[142.6178,-3.5576E-05],[142.62124,-3.4029E-05],[142.62468,-3.9185E-05],[142.62811,-3.8669E-05],[142.63155,-3.8154E-05],[142.63498,-3.6607E-05],[142.63842,-3.4544E-05],[142.64186,-3.97E-05],[142.64529,-4.0732E-05],[142.64873,-3.8154E-05],[142.65216,-3.8154E-05],[142.6556,-4.0732E-05],[142.65904,-4.3825E-05],[142.66247,-4.0732E-05],[142.66591,-3.6091E-05],[142.66934,-3.506E-05],[142.67278,-3.7638E-05],[142.67622,-3.8669E-05],[142.67965,-3.6091E-05],[142.68309,-3.7122E-05],[142.68652,-3.5576E-05],[142.68996,-3.2998E-05],[142.6934,-3.4029E-05],[142.69683,-3.2998E-05],[142.70027,-3.4544E-05],[142.7037,-3.9185E-05],[142.70714,-3.3513E-05],[142.71058,-3.2998E-05],[142.71401,-3.7122E-05],[142.71745,-3.4544E-05],[142.72088,-3.4544E-05],[142.72432,-3.8154E-05],[142.72776,-4.0216E-05],[142.73119,-3.3513E-05],[142.73463,-3.1967E-05],[142.73806,-4.0216E-05],[142.7415,-3.8154E-05],[142.74494,-3.6607E-05],[142.74837,-3.4029E-05],[142.75181,-3.2482E-05],[142.75524,-4.1247E-05],[142.75868,-4.0216E-05],[142.76212,-3.4544E-05],[142.76555,-3.4029E-05],[142.76899,-3.6607E-05],[142.77242,-4.1763E-05],[142.77586,-3.97E-05],[142.7793,-3.7638E-05],[142.78273,-3.6607E-05],[142.78617,-3.2998E-05],[142.7896,-3.4544E-05],[142.79304,-3.4029E-05],[142.79648,-3.5576E-05],[142.79991,-3.7122E-05]]}
-{"quant":[142.969,-0.82276],"mems":[[142.87207,-3.7122E-05],[142.8755,-4.1763E-05],[142.87894,-4.2278E-05],[142.88238,-3.6607E-05],[142.88581,-3.1451E-05],[142.88925,-3.8669E-05],[142.89268,-4.0216E-05],[142.89612,-3.7638E-05],[142.89956,-4.1247E-05],[142.90299,-3.9185E-05],[142.90643,-3.4544E-05],[142.90986,-3.4029E-05],[142.9133,-3.506E-05],[142.91674,-3.6607E-05],[142.92017,-3.7638E-05],[142.92361,-3.6091E-05],[142.92704,-3.4544E-05],[142.93048,-3.4029E-05],[142.93392,-3.0935E-05],[142.93735,-3.6607E-05],[142.94079,-4.3309E-05],[142.94422,-3.8669E-05],[142.94766,-3.6091E-05],[142.9511,-3.506E-05],[142.95453,-3.4544E-05],[142.95797,-3.9185E-05],[142.9614,-3.9185E-05],[142.96484,-3.506E-05],[142.96828,-3.5576E-05],[142.97171,-3.6607E-05],[142.97515,-3.8669E-05],[142.97858,-3.8154E-05],[142.98202,-3.6091E-05],[142.98546,-3.7638E-05],[142.98889,-3.6607E-05],[142.99233,-3.4544E-05],[142.99576,-3.7122E-05],[142.9992,-4.1247E-05],[143.00264,-3.97E-05],[143.00607,-3.7638E-05],[143.00951,-3.6607E-05],[143.01294,-3.3513E-05],[143.01638,-3.8669E-05],[143.01982,-4.1763E-05],[143.02325,-3.8669E-05],[143.02669,-3.2998E-05],[143.03012,-3.0935E-05],[143.03356,-4.0216E-05],[143.037,-4.1763E-05],[143.04043,-3.6091E-05],[143.04387,-3.6091E-05],[143.0473,-3.6607E-05],[143.05074,-3.6607E-05],[143.05418,-3.8154E-05],[143.05761,-3.8154E-05],[143.06105,-3.8669E-05],[143.06448,-3.9185E-05],[143.06792,-3.5576E-05],[143.07136,-3.7122E-05],[143.07479,-3.6091E-05],[143.07823,-3.1967E-05],[143.08166,-3.2998E-05],[143.0851,-3.2482E-05],[143.08854,-3.6607E-05],[143.09197,-3.8669E-05],[143.09541,-3.9185E-05],[143.09884,-3.9185E-05],[143.10228,-3.6607E-05],[143.10572,-3.8669E-05],[143.10915,-3.8669E-05],[143.11259,-3.9185E-05],[143.11602,-3.6607E-05],[143.11946,-3.5576E-05],[143.1229,-3.6607E-05],[143.12633,-3.6091E-05],[143.12977,-3.97E-05],[143.1332,-3.7122E-05],[143.13664,-3.8154E-05],[143.14008,-3.506E-05],[143.14351,-2.9904E-05],[143.14695,-3.6091E-05],[143.15038,-3.8154E-05],[143.15382,-4.1247E-05],[143.15726,-4.1247E-05],[143.16069,-3.7638E-05],[143.16413,-3.7122E-05],[143.16756,-3.6091E-05]]}
-{"quant":[143.297,-0.79993],"mems":[[143.19849,-3.6091E-05],[143.20192,-3.5576E-05],[143.20536,-3.1967E-05],[143.2088,-3.5576E-05],[143.21223,-3.6091E-05],[143.21567,-3.7122E-05],[143.2191,-4.1763E-05],[143.22254,-3.7638E-05],[143.22598,-3.7638E-05],[143.22941,-3.6091E-05],[143.23285,-3.6091E-05],[143.23628,-3.7122E-05],[143.23972,-3.4544E-05],[143.24316,-3.4029E-05],[143.24659,-3.506E-05],[143.25003,-3.7122E-05],[143.25346,-4.0216E-05],[143.2569,-3.7122E-05],[143.26034,-3.4544E-05],[143.26377,-3.8669E-05],[143.26721,-3.6607E-05],[143.27064,-3.4544E-05],[143.27408,-3.2482E-05],[143.27752,-3.506E-05],[143.28095,-3.6607E-05],[143.28439,-2.9389E-05],[143.28782,-3.4544E-05],[143.29126,-3.7638E-05],[143.2947,-3.7122E-05],[143.29813,-4.0216E-05],[143.30157,-3.7638E-05],[143.305,-3.4029E-05],[143.30844,-3.4544E-05],[143.31188,-3.6091E-05],[143.31531,-3.5576E-05],[143.31875,-3.97E-05],[143.32218,-3.8669E-05],[143.32562,-3.4544E-05],[143.32906,-3.8154E-05],[143.33249,-3.5576E-05],[143.33593,-3.6091E-05],[143.33936,-3.3513E-05],[143.3428,-2.9389E-05],[143.34624,-3.506E-05],[143.34967,-3.4029E-05],[143.35311,-3.6091E-05],[143.35654,-3.7122E-05],[143.35998,-3.7638E-05],[143.36342,-3.7122E-05],[143.36685,-3.042E-05],[143.37029,-3.506E-05],[143.37372,-3.5576E-05],[143.37716,-3.7122E-05],[143.3806,-3.3513E-05],[143.38403,-2.9904E-05],[143.38747,-3.9185E-05],[143.3909,-3.7122E-05],[143.39434,-3.6607E-05],[143.39778,-3.6607E-05],[143.40121,-3.1967E-05],[143.40465,-3.4544E-05],[143.40808,-3.2482E-05],[143.41152,-3.1451E-05],[143.41496,-3.3513E-05],[143.41839,-2.8873E-05],[143.42183,-3.2998E-05],[143.42526,-3.6607E-05],[143.4287,-3.4029E-05],[143.43214,-3.97E-05],[143.43557,-3.7638E-05],[143.43901,-3.6607E-05],[143.44244,-3.97E-05],[143.44588,-3.7122E-05],[143.44932,-4.0216E-05],[143.45275,-3.506E-05],[143.45619,-3.5576E-05],[143.45962,-4.1763E-05],[143.46306,-3.6607E-05],[143.4665,-3.5576E-05],[143.46993,-3.506E-05],[143.47337,-3.97E-05],[143.4768,-3.9185E-05],[143.48024,-2.8873E-05],[143.48368,-3.1967E-05],[143.48711,-3.4029E-05],[143.49055,-3.6607E-05],[143.49398,-3.7638E-05]]}
-{"quant":[143.663,-0.79489],"mems":[[143.56614,-3.6091E-05],[143.56958,-3.4029E-05],[143.57301,-3.7638E-05],[143.57645,-4.0732E-05],[143.57988,-3.5576E-05],[143.58332,-3.4544E-05],[143.58676,-4.0216E-05],[143.59019,-3.8154E-05],[143.59363,-3.7638E-05],[143.59706,-3.7638E-05],[143.6005,-3.7638E-05],[143.60394,-3.6607E-05],[143.60737,-3.3513E-05],[143.61081,-3.506E-05],[143.61424,-3.6091E-05],[143.61768,-3.6091E-05],[143.62112,-3.4544E-05],[143.62455,-3.5576E-05],[143.62799,-3.6607E-05],[143.63142,-3.4544E-05],[143.63486,-3.506E-05],[143.6383,-3.5576E-05],[143.64173,-3.6091E-05],[143.64517,-3.1451E-05],[143.6486,-3.0935E-05],[143.65204,-3.9185E-05],[143.65548,-3.9185E-05],[143.65891,-3.506E-05],[143.66235,-3.7638E-05],[143.66578,-3.97E-05],[143.66922,-3.9185E-05],[143.67266,-3.8669E-05],[143.67609,-3.6607E-05],[143.67953,-3.7638E-05],[143.68296,-3.4029E-05],[143.6864,-3.3513E-05],[143.68984,-3.6607E-05],[143.69327,-3.6607E-05],[143.69671,-3.9185E-05],[143.70014,-3.6091E-05],[143.70358,-3.8669E-05],[143.70702,-3.6607E-05],[143.71045,-3.5576E-05],[143.71389,-3.8154E-05],[143.71732,-3.3513E-05],[143.72076,-3.9185E-05],[143.7242,-3.8669E-05],[143.72763,-3.5576E-05],[143.73107,-3.7638E-05],[143.7345,-4.0216E-05],[143.73794,-3.7638E-05],[143.74138,-3.0935E-05],[143.74481,-3.4544E-05],[143.74825,-3.3513E-05],[143.75168,-3.506E-05],[143.75512,-3.8669E-05],[143.75856,-3.6091E-05],[143.76199,-3.9185E-05],[143.76543,-3.5576E-05],[143.76886,-3.1451E-05],[143.7723,-3.2998E-05],[143.77574,-3.4029E-05],[143.77917,-3.7638E-05],[143.78261,-3.4029E-05],[143.78604,-3.3513E-05],[143.78948,-3.4029E-05],[143.79292,-3.2482E-05],[143.79635,-3.6091E-05],[143.79979,-3.7122E-05],[143.80322,-3.5576E-05],[143.80666,-3.6091E-05],[143.8101,-3.4544E-05],[143.81353,-3.3513E-05],[143.81697,-3.8669E-05],[143.8204,-3.7122E-05],[143.82384,-3.6091E-05],[143.82728,-3.7122E-05],[143.83071,-3.1967E-05],[143.83415,-3.8669E-05],[143.83758,-4.2278E-05],[143.84102,-3.5576E-05],[143.84446,-3.506E-05],[143.84789,-3.506E-05],[143.85133,-3.7122E-05],[143.85476,-3.8154E-05],[143.8582,-3.8154E-05],[143.86164,-3.7122E-05]]}
-{"quant":[144.037,-0.7947],"mems":[[143.93723,-3.2482E-05],[143.94066,-3.4544E-05],[143.9441,-3.2998E-05],[143.94754,-3.042E-05],[143.95097,-3.3513E-05],[143.95441,-3.1451E-05],[143.95784,-3.2482E-05],[143.96128,-3.2482E-05],[143.96472,-3.506E-05],[143.96815,-3.8669E-05],[143.97159,-3.6607E-05],[143.97502,-3.8154E-05],[143.97846,-3.5576E-05],[143.9819,-3.6091E-05],[143.98533,-3.9185E-05],[143.98877,-3.8154E-05],[143.9922,-3.8669E-05],[143.99564,-3.6091E-05],[143.99908,-3.4544E-05],[144.00251,-3.6607E-05],[144.00595,-3.6091E-05],[144.00938,-3.506E-05],[144.01282,-3.9185E-05],[144.01626,-4.0732E-05],[144.01969,-3.7638E-05],[144.02313,-3.6091E-05],[144.02656,-3.4544E-05],[144.03,-3.6091E-05],[144.03344,-3.8154E-05],[144.03687,-3.8669E-05],[144.04031,-3.6091E-05],[144.04374,-3.3513E-05],[144.04718,-3.8669E-05],[144.05062,-3.9185E-05],[144.05405,-3.506E-05],[144.05749,-3.5576E-05],[144.06092,-3.97E-05],[144.06436,-3.7638E-05],[144.0678,-3.506E-05],[144.07123,-3.97E-05],[144.07467,-3.8669E-05],[144.0781,-3.4544E-05],[144.08154,-3.4544E-05],[144.08498,-3.6091E-05],[144.08841,-3.7122E-05],[144.09185,-3.6091E-05],[144.09528,-3.7122E-05],[144.09872,-3.97E-05],[144.10216,-3.506E-05],[144.10559,-3.3513E-05],[144.10903,-3.506E-05],[144.11246,-3.4544E-05],[144.1159,-3.7638E-05],[144.11934,-3.7638E-05],[144.12277,-3.2998E-05],[144.12621,-3.5576E-05],[144.12964,-3.7122E-05],[144.13308,-3.4544E-05],[144.13652,-3.7122E-05],[144.13995,-3.7638E-05],[144.14339,-3.2482E-05],[144.14682,-3.506E-05],[144.15026,-3.5576E-05],[144.1537,-3.4029E-05],[144.15713,-3.7638E-05],[144.16057,-3.3513E-05],[144.164,-3.5576E-05],[144.16744,-3.4544E-05],[144.17088,-3.4029E-05],[144.17431,-4.0216E-05],[144.17775,-3.5576E-05],[144.18118,-3.6607E-05],[144.18462,-3.9185E-05],[144.18806,-3.6091E-05],[144.19149,-3.8669E-05],[144.19493,-3.8669E-05],[144.19836,-3.9185E-05],[144.2018,-4.1247E-05],[144.20524,-3.9185E-05],[144.20867,-3.8154E-05],[144.21211,-3.8669E-05],[144.21554,-3.7638E-05],[144.21898,-3.4544E-05],[144.22242,-3.2482E-05],[144.22585,-3.9185E-05],[144.22929,-4.1247E-05],[144.23272,-3.2482E-05],[144.23616,-3.7638E-05]]}
-{"quant":[144.398,-0.77045],"mems":[[144.29801,-3.8669E-05],[144.30144,-3.8669E-05],[144.30488,-3.7638E-05],[144.30832,-3.4544E-05],[144.31175,-3.7638E-05],[144.31519,-3.6607E-05],[144.31862,-3.6607E-05],[144.32206,-3.7122E-05],[144.3255,-3.506E-05],[144.32893,-3.8669E-05],[144.33237,-3.6607E-05],[144.3358,-3.8669E-05],[144.33924,-4.1247E-05],[144.34268,-3.7122E-05],[144.34611,-3.8154E-05],[144.34955,-3.6091E-05],[144.35298,-3.6091E-05],[144.35642,-3.506E-05],[144.35986,-3.5576E-05],[144.36329,-3.7638E-05],[144.36673,-3.4544E-05],[144.37016,-3.506E-05],[144.3736,-3.7122E-05],[144.37704,-3.8669E-05],[144.38047,-3.5576E-05],[144.38391,-3.2482E-05],[144.38734,-3.506E-05],[144.39078,-3.6607E-05],[144.39422,-3.4544E-05],[144.39765,-3.6607E-05],[144.40109,-3.9185E-05],[144.40452,-3.4544E-05],[144.40796,-3.7122E-05],[144.4114,-3.5576E-05],[144.41483,-3.2998E-05],[144.41827,-3.4544E-05],[144.4217,-3.1451E-05],[144.42514,-3.4544E-05],[144.42858,-4.1763E-05],[144.43201,-4.3825E-05],[144.43545,-4.0732E-05],[144.43888,-3.4544E-05],[144.44232,-3.0935E-05],[144.44576,-3.5576E-05],[144.44919,-3.97E-05],[144.45263,-3.7638E-05],[144.45606,-3.8154E-05],[144.4595,-3.8669E-05],[144.46294,-3.506E-05],[144.46637,-3.3513E-05],[144.46981,-4.1763E-05],[144.47324,-4.3309E-05],[144.47668,-3.6607E-05],[144.48012,-3.7638E-05],[144.48355,-3.97E-05],[144.48699,-3.4029E-05],[144.49042,-3.506E-05],[144.49386,-3.8669E-05],[144.4973,-3.6607E-05],[144.50073,-3.7122E-05],[144.50417,-3.6607E-05],[144.5076,-3.7122E-05],[144.51104,-3.506E-05],[144.51448,-3.3513E-05],[144.51791,-3.8669E-05],[144.52135,-3.7638E-05],[144.52478,-3.9185E-05],[144.52822,-3.8154E-05],[144.53166,-3.8669E-05],[144.53509,-4.0732E-05],[144.53853,-3.6091E-05],[144.54196,-3.506E-05],[144.5454,-3.2482E-05],[144.54884,-3.6091E-05],[144.55227,-3.6091E-05],[144.55571,-3.5576E-05],[144.55914,-3.6607E-05],[144.56258,-3.2482E-05],[144.56602,-3.6607E-05],[144.56945,-3.8669E-05],[144.57289,-3.6091E-05],[144.57632,-3.6091E-05],[144.57976,-3.7638E-05],[144.5832,-3.8154E-05],[144.58663,-3.8154E-05],[144.59007,-3.5576E-05],[144.5935,-3.4029E-05],[144.59694,-3.97E-05]]}
-{"quant":[144.754,-0.71866],"mems":[[144.65535,-3.7638E-05],[144.65879,-3.7638E-05],[144.66222,-3.8669E-05],[144.66566,-3.7122E-05],[144.6691,-3.6091E-05],[144.67253,-4.0732E-05],[144.67597,-3.6607E-05],[144.6794,-3.3513E-05],[144.68284,-3.7638E-05],[144.68628,-3.8154E-05],[144.68971,-3.7122E-05],[144.69315,-3.7122E-05],[144.69658,-3.8154E-05],[144.70002,-3.6607E-05],[144.70346,-3.506E-05],[144.70689,-4.1247E-05],[144.71033,-4.1763E-05],[144.71376,-3.4544E-05],[144.7172,-3.4029E-05],[144.72064,-3.97E-05],[144.72407,-4.0732E-05],[144.72751,-3.5576E-05],[144.73094,-3.6091E-05],[144.73438,-4.2278E-05],[144.73782,-3.9185E-05],[144.74125,-3.2998E-05],[144.74469,-3.2482E-05],[144.74812,-3.4029E-05],[144.75156,-3.6607E-05],[144.755,-3.6091E-05],[144.75843,-3.5576E-05],[144.76187,-3.3513E-05],[144.7653,-3.3513E-05],[144.76874,-3.8154E-05],[144.77218,-3.7638E-05],[144.77561,-3.97E-05],[144.77905,-3.7638E-05],[144.78248,-3.3513E-05],[144.78592,-3.7122E-05],[144.78936,-4.0216E-05],[144.79279,-3.8669E-05],[144.79623,-3.506E-05],[144.79966,-3.4544E-05],[144.8031,-3.2482E-05],[144.80654,-3.6091E-05],[144.80997,-4.0216E-05],[144.81341,-3.506E-05],[144.81684,-3.7638E-05],[144.82028,-3.6091E-05],[144.82372,-3.7122E-05],[144.82715,-4.0732E-05],[144.83059,-3.9185E-05],[144.83402,-4.0216E-05],[144.83746,-3.7122E-05],[144.8409,-3.6091E-05],[144.84433,-3.2482E-05],[144.84777,-3.1967E-05],[144.8512,-3.5576E-05],[144.85464,-3.7122E-05],[144.85808,-3.8154E-05],[144.86151,-3.4544E-05],[144.86495,-3.8154E-05],[144.86838,-4.0216E-05],[144.87182,-3.7638E-05],[144.87526,-4.1247E-05],[144.87869,-3.9185E-05],[144.88213,-3.4544E-05],[144.88556,-3.5576E-05],[144.889,-3.7638E-05],[144.89244,-3.5576E-05],[144.89588,-3.6607E-05],[144.89932,-3.1967E-05],[144.90276,-3.2998E-05],[144.9062,-4.1247E-05],[144.90964,-3.8154E-05],[144.91308,-3.5576E-05],[144.91652,-3.6607E-05],[144.91996,-3.6607E-05],[144.9234,-3.5576E-05],[144.92684,-3.3513E-05],[144.93028,-3.6091E-05],[144.93372,-3.7638E-05],[144.93716,-3.6091E-05],[144.9406,-3.4544E-05],[144.94404,-3.4029E-05],[144.94748,-3.97E-05],[144.95092,-3.97E-05],[144.95436,-3.5576E-05]]}
-{"quant":[145.126,-0.65531],"mems":[[145.0266,-3.4029E-05],[145.03004,-3.6091E-05],[145.03348,-3.6091E-05],[145.03692,-3.5576E-05],[145.04036,-3.3513E-05],[145.0438,-3.5576E-05],[145.04724,-3.7122E-05],[145.05068,-3.4544E-05],[145.05412,-3.2998E-05],[145.05756,-3.1967E-05],[145.061,-3.3513E-05],[145.06444,-3.2482E-05],[145.06788,-3.8154E-05],[145.07132,-3.4544E-05],[145.07476,-3.4029E-05],[145.0782,-4.2278E-05],[145.08164,-3.4544E-05],[145.08508,-3.5576E-05],[145.08852,-3.7122E-05],[145.09196,-3.1451E-05],[145.0954,-3.6091E-05],[145.09884,-3.6607E-05],[145.10228,-3.506E-05],[145.10572,-3.506E-05],[145.10916,-3.5576E-05],[145.1126,-3.8154E-05],[145.11604,-3.2482E-05],[145.11948,-3.2998E-05],[145.12292,-4.0216E-05],[145.12636,-3.97E-05],[145.1298,-4.1763E-05],[145.13324,-3.7122E-05],[145.13668,-3.7638E-05],[145.14012,-4.0216E-05],[145.14356,-3.4029E-05],[145.147,-3.5576E-05],[145.15044,-4.0216E-05],[145.15388,-4.1247E-05],[145.15732,-3.8154E-05],[145.16076,-3.7638E-05],[145.1642,-3.9185E-05],[145.16764,-4.1763E-05],[145.17108,-4.0216E-05],[145.17452,-3.6091E-05],[145.17796,-3.1967E-05],[145.1814,-3.1451E-05],[145.18484,-3.4544E-05],[145.18828,-3.1967E-05],[145.19172,-3.6607E-05],[145.19516,-4.3309E-05],[145.1986,-4.0732E-05],[145.20204,-3.6091E-05],[145.20548,-3.6091E-05],[145.20892,-3.7122E-05],[145.21236,-3.97E-05],[145.2158,-3.8669E-05],[145.21924,-3.2998E-05],[145.22268,-3.6091E-05],[145.22612,-3.5576E-05],[145.22956,-3.8154E-05],[145.233,-4.4341E-05],[145.23644,-3.8669E-05],[145.23988,-3.4029E-05],[145.24332,-3.7638E-05],[145.24676,-3.97E-05],[145.2502,-3.4544E-05],[145.25364,-3.7122E-05],[145.25708,-3.97E-05],[145.26052,-3.506E-05],[145.26396,-3.2482E-05],[145.2674,-3.7122E-05],[145.27084,-3.8154E-05],[145.27428,-3.3513E-05],[145.27772,-4.0732E-05],[145.28116,-3.6091E-05],[145.2846,-3.1967E-05],[145.28804,-3.7638E-05],[145.29148,-3.5576E-05],[145.29492,-3.7638E-05],[145.29836,-3.5576E-05],[145.3018,-3.506E-05],[145.30524,-3.7638E-05],[145.30868,-3.8669E-05],[145.31212,-3.8669E-05],[145.31556,-3.97E-05],[145.319,-4.2278E-05],[145.32244,-3.7638E-05],[145.32588,-3.97E-05]]}
-{"quant":[145.524,-0.60956],"mems":[[145.42564,-3.4544E-05],[145.42908,-3.8154E-05],[145.43252,-3.7638E-05],[145.43596,-3.3513E-05],[145.4394,-3.5576E-05],[145.44284,-3.6607E-05],[145.44628,-4.1247E-05],[145.44972,-4.1763E-05],[145.45316,-3.7122E-05],[145.4566,-3.8154E-05],[145.46004,-3.2482E-05],[145.46348,-3.2482E-05],[145.46692,-3.8154E-05],[145.47036,-3.7122E-05],[145.4738,-3.9185E-05],[145.47724,-3.9185E-05],[145.48068,-3.506E-05],[145.48412,-3.506E-05],[145.48756,-3.7122E-05],[145.491,-4.0216E-05],[145.49444,-3.8154E-05],[145.49788,-3.6091E-05],[145.50132,-3.8669E-05],[145.50476,-3.97E-05],[145.5082,-3.97E-05],[145.51164,-3.8669E-05],[145.51508,-3.8154E-05],[145.51852,-3.3513E-05],[145.52196,-3.042E-05],[145.5254,-3.2998E-05],[145.52884,-3.2482E-05],[145.53228,-3.2482E-05],[145.53572,-3.1967E-05],[145.53916,-3.7638E-05],[145.5426,-4.2278E-05],[145.54604,-3.8154E-05],[145.54948,-3.7638E-05],[145.55292,-4.0732E-05],[145.55636,-4.1247E-05],[145.5598,-3.6091E-05],[145.56324,-3.6091E-05],[145.56668,-3.8154E-05],[145.57012,-3.7122E-05],[145.57356,-3.6091E-05],[145.577,-3.7122E-05],[145.58044,-3.7638E-05],[145.58388,-3.5576E-05],[145.58732,-3.4029E-05],[145.59076,-3.8154E-05],[145.5942,-3.8154E-05],[145.59764,-3.506E-05],[145.60108,-3.5576E-05],[145.60452,-2.9904E-05],[145.60796,-3.0935E-05],[145.6114,-3.8154E-05],[145.61484,-4.1763E-05],[145.61828,-3.5576E-05],[145.62172,-2.9904E-05],[145.62516,-3.3513E-05],[145.6286,-3.2998E-05],[145.63204,-3.8154E-05],[145.63548,-4.1763E-05],[145.63892,-4.0216E-05],[145.64236,-3.7122E-05],[145.6458,-3.506E-05],[145.64924,-3.8154E-05],[145.65268,-3.7638E-05],[145.65612,-3.9185E-05],[145.65956,-3.3513E-05],[145.663,-2.9904E-05],[145.66644,-3.6091E-05],[145.66988,-3.6091E-05],[145.67332,-3.9185E-05],[145.67676,-3.8669E-05],[145.6802,-3.1967E-05],[145.68364,-3.4029E-05],[145.68708,-3.7122E-05],[145.69052,-3.7122E-05],[145.69396,-3.5576E-05],[145.6974,-3.506E-05],[145.70084,-3.4029E-05],[145.70428,-3.5576E-05],[145.70772,-3.8669E-05],[145.71116,-3.6607E-05],[145.7146,-3.5576E-05],[145.71804,-3.7638E-05],[145.72148,-3.6607E-05]]}
-{"quant":[145.895,-0.58262],"mems":[[145.79716,-3.4544E-05],[145.8006,-3.8669E-05],[145.80404,-3.3513E-05],[145.80748,-3.6091E-05],[145.81092,-3.7122E-05],[145.81436,-3.4029E-05],[145.8178,-3.9185E-05],[145.82124,-3.7638E-05],[145.82468,-3.8669E-05],[145.82812,-4.1763E-05],[145.83156,-3.9185E-05],[145.835,-3.97E-05],[145.83844,-3.5576E-05],[145.84188,-3.8154E-05],[145.84532,-4.3309E-05],[145.84876,-4.0732E-05],[145.8522,-3.8669E-05],[145.85564,-3.8669E-05],[145.85908,-3.7122E-05],[145.86252,-3.4544E-05],[145.86596,-3.8154E-05],[145.8694,-3.4544E-05],[145.87284,-3.4544E-05],[145.87628,-4.0732E-05],[145.87972,-3.7122E-05],[145.88316,-3.6091E-05],[145.8866,-3.9185E-05],[145.89004,-3.7122E-05],[145.89348,-3.6091E-05],[145.89692,-3.2998E-05],[145.90036,-2.9904E-05],[145.9038,-3.4544E-05],[145.90724,-3.8154E-05],[145.91068,-4.0216E-05],[145.91412,-4.0216E-05],[145.91756,-3.4544E-05],[145.921,-3.2998E-05],[145.92444,-3.3513E-05],[145.92788,-3.5576E-05],[145.93132,-3.6607E-05],[145.93476,-3.506E-05],[145.9382,-3.7122E-05],[145.94164,-3.1451E-05],[145.94508,-3.2482E-05],[145.94852,-4.0216E-05],[145.95196,-3.6607E-05],[145.9554,-3.7638E-05],[145.95884,-3.5576E-05],[145.96228,-3.4544E-05],[145.96572,-3.506E-05],[145.96916,-3.5576E-05],[145.9726,-4.3825E-05],[145.97604,-3.9185E-05],[145.97948,-3.5576E-05],[145.98292,-3.8154E-05],[145.98636,-3.6607E-05],[145.9898,-3.8669E-05],[145.99324,-3.5576E-05],[145.99668,-3.3513E-05],[146.00012,-3.7122E-05],[146.00356,-3.7638E-05],[146.007,-4.1763E-05],[146.01044,-3.9185E-05],[146.01388,-3.6607E-05],[146.01732,-4.1763E-05],[146.02076,-3.4544E-05],[146.0242,-3.5576E-05],[146.02764,-3.97E-05],[146.03108,-3.506E-05],[146.03452,-3.9185E-05],[146.03796,-3.8154E-05],[146.0414,-3.4544E-05],[146.04484,-3.4029E-05],[146.04828,-3.7122E-05],[146.05172,-4.0216E-05],[146.05516,-3.97E-05],[146.0586,-4.1247E-05],[146.06204,-3.9185E-05],[146.06548,-3.4029E-05],[146.06892,-3.6091E-05],[146.07236,-3.7638E-05],[146.0758,-3.4544E-05],[146.07924,-3.506E-05],[146.08268,-3.7122E-05],[146.08612,-3.7638E-05],[146.08956,-3.4029E-05],[146.093,-3.3513E-05]]}
-{"quant":[146.296,-0.56617],"mems":[[146.1962,-3.4544E-05],[146.19964,-3.8154E-05],[146.20308,-3.9185E-05],[146.20652,-3.6607E-05],[146.20996,-3.7122E-05],[146.2134,-3.7638E-05],[146.21684,-3.5576E-05],[146.22028,-3.2482E-05],[146.22372,-3.6091E-05],[146.22716,-3.7122E-05],[146.2306,-3.6091E-05],[146.23404,-4.0216E-05],[146.23748,-3.3513E-05],[146.24092,-3.2998E-05],[146.24436,-3.4029E-05],[146.2478,-3.2998E-05],[146.25124,-4.0216E-05],[146.25468,-3.97E-05],[146.25812,-3.5576E-05],[146.26156,-3.4544E-05],[146.265,-3.7638E-05],[146.26844,-3.8669E-05],[146.27188,-3.506E-05],[146.27532,-3.6091E-05],[146.27876,-3.7122E-05],[146.2822,-3.8669E-05],[146.28564,-4.1247E-05],[146.28908,-3.97E-05],[146.29252,-3.4544E-05],[146.29596,-3.4544E-05],[146.2994,-3.7122E-05],[146.30284,-3.7638E-05],[146.30628,-3.4029E-05],[146.30972,-3.1967E-05],[146.31316,-3.2482E-05],[146.3166,-3.3513E-05],[146.32004,-3.8154E-05],[146.32348,-3.3513E-05],[146.32692,-3.6091E-05],[146.33036,-4.1247E-05],[146.3338,-3.3513E-05],[146.33724,-3.4544E-05],[146.34068,-3.506E-05],[146.34412,-3.2482E-05],[146.34756,-3.6607E-05],[146.351,-4.0216E-05],[146.35444,-3.7122E-05],[146.35788,-3.0935E-05],[146.36132,-3.042E-05],[146.36476,-3.506E-05],[146.3682,-3.8154E-05],[146.37164,-4.1763E-05],[146.37508,-4.2794E-05],[146.37852,-3.6607E-05],[146.38196,-3.506E-05],[146.3854,-3.9185E-05],[146.38884,-3.7638E-05],[146.39228,-3.3513E-05],[146.39572,-3.3513E-05],[146.39916,-4.0216E-05],[146.4026,-3.8669E-05],[146.40604,-3.4029E-05],[146.40948,-3.7638E-05],[146.41292,-3.7638E-05],[146.41636,-3.6091E-05],[146.4198,-3.7638E-05],[146.42324,-4.0216E-05],[146.42668,-4.4341E-05],[146.43012,-4.0732E-05],[146.43356,-3.8669E-05],[146.437,-3.9185E-05],[146.44044,-3.1967E-05],[146.44388,-2.9389E-05],[146.44732,-3.4544E-05],[146.45076,-3.6607E-05],[146.4542,-3.506E-05],[146.45764,-3.6091E-05],[146.46108,-3.7122E-05],[146.46452,-3.9185E-05],[146.46796,-3.7122E-05],[146.4714,-3.506E-05],[146.47484,-3.9185E-05],[146.47828,-3.4544E-05],[146.48172,-3.4544E-05],[146.48516,-3.97E-05],[146.4886,-3.4029E-05],[146.49204,-3.5576E-05],[146.49548,-3.9185E-05]]}
-{"quant":[146.639,-0.54836],"mems":[[146.5402,-3.506E-05],[146.54364,-3.3513E-05],[146.54708,-3.2998E-05],[146.55052,-3.6091E-05],[146.55396,-4.3309E-05],[146.5574,-4.3825E-05],[146.56084,-3.8154E-05],[146.56428,-4.2278E-05],[146.56772,-3.7122E-05],[146.57116,-3.7122E-05],[146.5746,-3.8669E-05],[146.57804,-3.4029E-05],[146.58148,-3.5576E-05],[146.58492,-3.6607E-05],[146.58836,-3.97E-05],[146.5918,-3.7638E-05],[146.59524,-3.6091E-05],[146.59868,-3.6607E-05],[146.60212,-3.4029E-05],[146.60556,-3.5576E-05],[146.609,-3.6607E-05],[146.61244,-3.7638E-05],[146.61588,-3.8669E-05],[146.61932,-3.4544E-05],[146.62276,-3.4544E-05],[146.6262,-3.6091E-05],[146.62964,-3.042E-05],[146.63308,-3.2482E-05],[146.63652,-3.5576E-05],[146.63996,-3.7122E-05],[146.6434,-3.7638E-05],[146.64684,-3.506E-05],[146.65028,-3.506E-05],[146.65372,-3.2998E-05],[146.65716,-3.7122E-05],[146.6606,-3.3513E-05],[146.66404,-3.2998E-05],[146.66748,-3.8154E-05],[146.67092,-3.6607E-05],[146.67436,-3.6091E-05],[146.6778,-3.3513E-05],[146.68124,-3.7638E-05],[146.68468,-3.4544E-05],[146.68812,-3.2998E-05],[146.69156,-3.8669E-05],[146.695,-3.6607E-05],[146.69844,-3.97E-05],[146.70188,-3.6607E-05],[146.70532,-3.2482E-05],[146.70876,-4.1763E-05],[146.7122,-3.8154E-05],[146.71564,-3.4029E-05],[146.71908,-4.1763E-05],[146.72252,-4.0216E-05],[146.72596,-3.8154E-05],[146.7294,-3.7638E-05],[146.73284,-3.6607E-05],[146.73628,-3.2998E-05],[146.73972,-3.0935E-05],[146.74316,-3.2998E-05],[146.7466,-3.3513E-05],[146.75004,-3.6607E-05],[146.75348,-3.506E-05],[146.75692,-3.4029E-05],[146.76036,-3.506E-05],[146.7638,-3.7122E-05],[146.76724,-3.9185E-05],[146.77068,-3.9185E-05],[146.77412,-3.8154E-05],[146.77756,-3.7122E-05],[146.781,-3.506E-05],[146.78444,-3.1967E-05],[146.78788,-3.7638E-05],[146.79132,-3.506E-05],[146.79476,-3.2482E-05],[146.7982,-3.8154E-05],[146.80164,-3.4544E-05],[146.80508,-3.8669E-05],[146.80852,-3.9185E-05],[146.81196,-3.6607E-05],[146.8154,-3.7122E-05],[146.81884,-3.2998E-05],[146.82228,-3.6607E-05],[146.82572,-3.6091E-05],[146.82916,-3.506E-05],[146.8326,-3.7122E-05],[146.83604,-3.3513E-05]]}
-{"quant":[146.975,-0.51677],"mems":[[146.87732,-3.7122E-05],[146.88076,-3.7638E-05],[146.8842,-3.7638E-05],[146.88764,-3.6091E-05],[146.89108,-3.7122E-05],[146.89452,-3.7638E-05],[146.89796,-3.8154E-05],[146.9014,-3.6091E-05],[146.90484,-3.4544E-05],[146.90828,-4.3309E-05],[146.91172,-4.2278E-05],[146.91516,-3.7638E-05],[146.9186,-3.6607E-05],[146.92204,-3.4029E-05],[146.92548,-3.97E-05],[146.92892,-3.97E-05],[146.93236,-3.506E-05],[146.9358,-3.2482E-05],[146.93924,-3.2998E-05],[146.94268,-3.506E-05],[146.94612,-3.4029E-05],[146.94956,-3.5576E-05],[146.953,-3.4544E-05],[146.95644,-3.2998E-05],[146.95988,-3.6091E-05],[146.96332,-3.6607E-05],[146.96676,-3.8154E-05],[146.9702,-3.6091E-05],[146.97364,-3.4544E-05],[146.97708,-3.9185E-05],[146.98052,-3.6091E-05],[146.98396,-3.7122E-05],[146.9874,-4.1763E-05],[146.99084,-3.5576E-05],[146.99428,-3.4544E-05],[146.99772,-4.0732E-05],[147.00116,-3.9185E-05],[147.0046,-3.8154E-05],[147.00804,-3.8154E-05],[147.01148,-3.3513E-05],[147.01492,-3.5576E-05],[147.01836,-3.7638E-05],[147.0218,-3.6091E-05],[147.02524,-3.7122E-05],[147.02868,-3.6091E-05],[147.03212,-3.7122E-05],[147.03556,-3.6607E-05],[147.039,-3.3513E-05],[147.04244,-3.4544E-05],[147.04588,-3.2998E-05],[147.04932,-3.6607E-05],[147.05276,-3.6607E-05],[147.0562,-3.6091E-05],[147.05964,-3.8669E-05],[147.06308,-3.1451E-05],[147.06652,-3.4544E-05],[147.06996,-3.8154E-05],[147.0734,-3.1451E-05],[147.07684,-3.3513E-05],[147.08028,-3.1967E-05],[147.08372,-3.1967E-05],[147.08716,-3.506E-05],[147.0906,-3.4029E-05],[147.09404,-3.6091E-05],[147.09748,-3.5576E-05],[147.10092,-3.8669E-05],[147.10436,-4.0732E-05],[147.1078,-3.506E-05],[147.11124,-3.7638E-05],[147.11468,-3.5576E-05],[147.11812,-3.2998E-05],[147.12156,-3.9185E-05],[147.125,-3.8154E-05],[147.12844,-3.6091E-05],[147.13188,-3.7122E-05],[147.13532,-3.5576E-05],[147.13876,-3.3513E-05],[147.1422,-3.3513E-05],[147.14564,-3.6091E-05],[147.14908,-3.5576E-05],[147.15252,-3.506E-05],[147.15596,-3.1967E-05],[147.1594,-3.3513E-05],[147.16284,-3.8669E-05],[147.16628,-3.9185E-05],[147.16972,-3.97E-05],[147.17316,-3.5576E-05]]}
-{"quant":[147.335,-0.47535],"mems":[[147.23852,-3.6607E-05],[147.24196,-3.4029E-05],[147.2454,-3.506E-05],[147.24884,-3.4544E-05],[147.25228,-3.4544E-05],[147.25572,-3.4029E-05],[147.25916,-3.6091E-05],[147.2626,-3.8154E-05],[147.26604,-3.5576E-05],[147.26948,-3.7122E-05],[147.27292,-3.6607E-05],[147.27636,-3.5576E-05],[147.2798,-3.9185E-05],[147.28324,-3.97E-05],[147.28668,-3.7638E-05],[147.29012,-3.4544E-05],[147.29356,-3.4544E-05],[147.297,-3.4544E-05],[147.30044,-3.1451E-05],[147.30388,-2.7842E-05],[147.30732,-3.6607E-05],[147.31076,-4.0732E-05],[147.3142,-4.0732E-05],[147.31764,-4.2278E-05],[147.32108,-3.3513E-05],[147.32452,-3.4544E-05],[147.32796,-3.2482E-05],[147.3314,-3.506E-05],[147.33484,-3.8669E-05],[147.33828,-3.506E-05],[147.34172,-3.8154E-05],[147.34516,-3.7638E-05],[147.3486,-3.6091E-05],[147.35204,-3.2482E-05],[147.35548,-3.7122E-05],[147.35892,-4.0732E-05],[147.36236,-3.5576E-05],[147.3658,-3.7122E-05],[147.36924,-3.7638E-05],[147.37268,-3.6091E-05],[147.37612,-3.2482E-05],[147.37956,-3.4544E-05],[147.383,-3.7122E-05],[147.38644,-3.4029E-05],[147.38988,-3.8154E-05],[147.39332,-3.9185E-05],[147.39676,-3.5576E-05],[147.4002,-3.5576E-05],[147.40364,-3.6091E-05],[147.40708,-3.9185E-05],[147.41052,-3.7638E-05],[147.41396,-3.5576E-05],[147.4174,-3.6607E-05],[147.42084,-3.1967E-05],[147.42428,-3.4544E-05],[147.42772,-3.7638E-05],[147.43116,-3.7122E-05],[147.4346,-3.7638E-05],[147.43804,-3.5576E-05],[147.44148,-3.1967E-05],[147.44492,-3.1967E-05],[147.44836,-3.2998E-05],[147.4518,-2.9904E-05],[147.45524,-3.2482E-05],[147.45868,-3.5576E-05],[147.46212,-3.506E-05],[147.46556,-3.6091E-05],[147.469,-3.7638E-05],[147.47244,-3.506E-05],[147.47587,-3.3513E-05],[147.47931,-3.8669E-05],[147.48274,-3.6091E-05],[147.48618,-3.6091E-05],[147.48962,-3.8154E-05],[147.49305,-3.2482E-05],[147.49649,-3.6607E-05],[147.49992,-3.506E-05],[147.50336,-3.506E-05],[147.5068,-3.9185E-05],[147.51023,-3.7122E-05],[147.51367,-3.8669E-05],[147.5171,-3.8669E-05],[147.52054,-3.5576E-05],[147.52398,-3.4544E-05],[147.52741,-3.5576E-05],[147.53085,-3.7638E-05],[147.53428,-3.6607E-05],[147.53772,-3.2998E-05]]}
-{"quant":[147.692,-0.43081],"mems":[[147.5927,-3.3513E-05],[147.59613,-3.7638E-05],[147.59957,-3.6607E-05],[147.603,-3.5576E-05],[147.60644,-3.4544E-05],[147.60988,-3.7122E-05],[147.61331,-3.506E-05],[147.61675,-3.1967E-05],[147.62018,-3.7122E-05],[147.62362,-3.8154E-05],[147.62706,-3.1451E-05],[147.63049,-3.4544E-05],[147.63393,-3.4544E-05],[147.63736,-2.8873E-05],[147.6408,-3.1451E-05],[147.64424,-3.3513E-05],[147.64767,-3.6607E-05],[147.65111,-3.6091E-05],[147.65454,-3.8669E-05],[147.65798,-4.2278E-05],[147.66142,-3.5576E-05],[147.66485,-3.6091E-05],[147.66829,-3.6091E-05],[147.67172,-3.8669E-05],[147.67516,-3.8154E-05],[147.6786,-3.1967E-05],[147.68203,-3.4029E-05],[147.68547,-3.6091E-05],[147.6889,-4.1247E-05],[147.69234,-4.0732E-05],[147.69578,-3.9185E-05],[147.69921,-3.97E-05],[147.70265,-3.6091E-05],[147.70608,-3.7122E-05],[147.70952,-4.0216E-05],[147.71296,-3.7638E-05],[147.71639,-3.6091E-05],[147.71983,-3.8669E-05],[147.72326,-3.5576E-05],[147.7267,-3.8154E-05],[147.73014,-3.8669E-05],[147.73357,-3.7638E-05],[147.73701,-4.1763E-05],[147.74044,-3.97E-05],[147.74388,-3.6091E-05],[147.74732,-3.6607E-05],[147.75075,-3.7638E-05],[147.75419,-3.6607E-05],[147.75762,-4.1763E-05],[147.76106,-4.1763E-05],[147.7645,-3.6091E-05],[147.76793,-3.8669E-05],[147.77137,-3.9185E-05],[147.7748,-3.8154E-05],[147.77824,-3.4029E-05],[147.78168,-3.506E-05],[147.78511,-4.0732E-05],[147.78855,-3.8669E-05],[147.79198,-3.6607E-05],[147.79542,-3.506E-05],[147.79886,-3.7122E-05],[147.80229,-4.1247E-05],[147.80573,-3.8669E-05],[147.80916,-4.0216E-05],[147.8126,-3.9185E-05],[147.81604,-3.4544E-05],[147.81947,-3.3513E-05],[147.82291,-3.2482E-05],[147.82634,-3.6607E-05],[147.82978,-3.97E-05],[147.83322,-3.97E-05],[147.83665,-3.506E-05],[147.84009,-3.3513E-05],[147.84352,-3.6607E-05],[147.84696,-3.506E-05],[147.8504,-3.8154E-05],[147.85383,-3.4544E-05],[147.85727,-3.3513E-05],[147.8607,-4.0216E-05],[147.86414,-3.9185E-05],[147.86758,-3.8154E-05],[147.87101,-3.7638E-05],[147.87445,-3.4544E-05],[147.87788,-3.2998E-05],[147.88132,-3.4544E-05],[147.88476,-3.4029E-05],[147.88819,-3.4029E-05],[147.89163,-3.6091E-05]]}
-{"quant":[148.059,-0.3933],"mems":[[147.96035,-3.5576E-05],[147.96378,-4.0216E-05],[147.96722,-3.4544E-05],[147.97066,-3.8669E-05],[147.97409,-3.7638E-05],[147.97753,-3.1451E-05],[147.98096,-3.5576E-05],[147.9844,-3.8669E-05],[147.98784,-3.9185E-05],[147.99127,-3.6091E-05],[147.99471,-3.5576E-05],[147.99814,-3.506E-05],[148.00158,-3.506E-05],[148.00502,-3.6091E-05],[148.00845,-3.6607E-05],[148.01189,-3.6607E-05],[148.01532,-3.7638E-05],[148.01876,-3.5576E-05],[148.0222,-3.4544E-05],[148.02563,-3.8669E-05],[148.02907,-3.6091E-05],[148.0325,-3.6091E-05],[148.03594,-3.506E-05],[148.03938,-3.1967E-05],[148.04281,-3.3513E-05],[148.04625,-3.506E-05],[148.04968,-3.97E-05],[148.05312,-3.9185E-05],[148.05656,-3.6091E-05],[148.05999,-3.3513E-05],[148.06343,-3.1967E-05],[148.06686,-3.6607E-05],[148.0703,-3.6607E-05],[148.07374,-3.2998E-05],[148.07717,-2.7326E-05],[148.08061,-3.1967E-05],[148.08404,-3.9185E-05],[148.08748,-3.6607E-05],[148.09092,-3.2482E-05],[148.09435,-2.8357E-05],[148.09779,-3.2998E-05],[148.10122,-4.0216E-05],[148.10466,-3.8154E-05],[148.1081,-3.5576E-05],[148.11153,-3.8154E-05],[148.11497,-3.506E-05],[148.1184,-3.2998E-05],[148.12184,-3.5576E-05],[148.12528,-3.3513E-05],[148.12871,-3.4544E-05],[148.13215,-3.8154E-05],[148.13558,-3.8154E-05],[148.13902,-3.506E-05],[148.14246,-3.9185E-05],[148.14589,-4.0216E-05],[148.14933,-3.7638E-05],[148.15276,-4.0732E-05],[148.1562,-3.7638E-05],[148.15964,-3.8669E-05],[148.16307,-4.2278E-05],[148.16651,-3.9185E-05],[148.16994,-3.506E-05],[148.17338,-3.4544E-05],[148.17682,-3.6091E-05],[148.18025,-3.5576E-05],[148.18369,-3.6091E-05],[148.18712,-3.6091E-05],[148.19056,-3.6091E-05],[148.194,-3.6607E-05],[148.19743,-3.2482E-05],[148.20087,-3.042E-05],[148.2043,-3.8669E-05],[148.20774,-4.1247E-05],[148.21118,-4.2278E-05],[148.21461,-4.0732E-05],[148.21805,-3.2482E-05],[148.22148,-3.5576E-05],[148.22492,-3.7122E-05],[148.22836,-3.8669E-05],[148.23179,-4.1247E-05],[148.23523,-3.8669E-05],[148.23866,-3.8669E-05],[148.2421,-3.6607E-05],[148.24554,-3.8154E-05],[148.24897,-3.9185E-05],[148.25241,-3.5576E-05],[148.25584,-3.1451E-05]]}
-{"quant":[148.412,-0.35899],"mems":[[148.31426,-3.8669E-05],[148.31769,-3.8669E-05],[148.32113,-4.0732E-05],[148.32456,-3.9185E-05],[148.328,-3.8154E-05],[148.33144,-3.6091E-05],[148.33487,-3.4029E-05],[148.33831,-3.1967E-05],[148.34174,-3.7122E-05],[148.34518,-4.0732E-05],[148.34862,-3.506E-05],[148.35205,-3.6091E-05],[148.35549,-3.8669E-05],[148.35892,-3.5576E-05],[148.36236,-3.8154E-05],[148.3658,-3.8154E-05],[148.36923,-3.2998E-05],[148.37267,-3.2998E-05],[148.3761,-3.4029E-05],[148.37954,-3.2998E-05],[148.38298,-3.5576E-05],[148.38641,-3.8154E-05],[148.38985,-3.5576E-05],[148.39328,-3.6091E-05],[148.39672,-3.6607E-05],[148.40016,-3.3513E-05],[148.40359,-3.7638E-05],[148.40703,-3.97E-05],[148.41046,-3.7122E-05],[148.4139,-3.8154E-05],[148.41734,-3.6091E-05],[148.42077,-3.2482E-05],[148.42421,-3.8669E-05],[148.42764,-3.9185E-05],[148.43108,-3.4029E-05],[148.43452,-3.3513E-05],[148.43795,-3.2998E-05],[148.44139,-3.6091E-05],[148.44482,-4.0732E-05],[148.44826,-3.5576E-05],[148.4517,-2.9904E-05],[148.45513,-3.6607E-05],[148.45857,-3.9185E-05],[148.462,-3.6091E-05],[148.46544,-3.506E-05],[148.46888,-3.7122E-05],[148.47231,-3.8669E-05],[148.47575,-3.6607E-05],[148.47918,-3.2482E-05],[148.48262,-3.0935E-05],[148.48606,-3.9185E-05],[148.48949,-3.97E-05],[148.49293,-4.0216E-05],[148.49636,-4.0216E-05],[148.4998,-3.5576E-05],[148.50324,-3.7122E-05],[148.50667,-3.7638E-05],[148.51011,-3.5576E-05],[148.51354,-3.1451E-05],[148.51698,-3.4544E-05],[148.52042,-4.0216E-05],[148.52385,-4.1247E-05],[148.52729,-3.7638E-05],[148.53072,-3.5576E-05],[148.53416,-3.8154E-05],[148.5376,-3.0935E-05],[148.54103,-2.9904E-05],[148.54447,-3.8669E-05],[148.5479,-3.7122E-05],[148.55134,-3.506E-05],[148.55478,-3.7122E-05],[148.55821,-3.6091E-05],[148.56165,-3.7638E-05],[148.56508,-3.8669E-05],[148.56852,-3.4029E-05],[148.57196,-3.4029E-05],[148.57539,-3.5576E-05],[148.57883,-3.506E-05],[148.58226,-3.5576E-05],[148.5857,-3.6091E-05],[148.58914,-4.0216E-05],[148.59257,-3.97E-05],[148.59601,-3.4544E-05],[148.59944,-3.4029E-05],[148.60288,-3.4029E-05],[148.60632,-3.8154E-05],[148.60975,-3.8154E-05]]}
-{"quant":[148.768,-0.32272],"mems":[[148.66816,-3.6607E-05],[148.6716,-3.8669E-05],[148.67504,-3.8669E-05],[148.67847,-3.8669E-05],[148.68191,-3.6091E-05],[148.68534,-3.5576E-05],[148.68878,-4.0216E-05],[148.69222,-3.6607E-05],[148.69565,-3.7638E-05],[148.69909,-3.9185E-05],[148.70252,-3.4029E-05],[148.70596,-3.8669E-05],[148.7094,-3.97E-05],[148.71283,-3.4544E-05],[148.71627,-3.506E-05],[148.7197,-3.6607E-05],[148.72314,-3.4544E-05],[148.72658,-3.506E-05],[148.73001,-4.0732E-05],[148.73345,-3.506E-05],[148.73688,-3.6091E-05],[148.74032,-3.7638E-05],[148.74376,-3.1451E-05],[148.74719,-3.3513E-05],[148.75063,-3.9185E-05],[148.75406,-3.9185E-05],[148.7575,-3.4544E-05],[148.76094,-3.3513E-05],[148.76437,-3.7122E-05],[148.76781,-3.8154E-05],[148.77124,-3.7122E-05],[148.77468,-3.4544E-05],[148.77812,-3.2482E-05],[148.78155,-3.6091E-05],[148.78499,-3.8669E-05],[148.78842,-3.4029E-05],[148.79186,-3.6091E-05],[148.7953,-3.8154E-05],[148.79873,-3.6091E-05],[148.80217,-3.7638E-05],[148.8056,-3.6607E-05],[148.80904,-4.0732E-05],[148.81248,-3.97E-05],[148.81591,-3.1451E-05],[148.81935,-3.5576E-05],[148.82278,-3.8669E-05],[148.82622,-3.6607E-05],[148.82966,-4.0216E-05],[148.83309,-3.7638E-05],[148.83653,-3.5576E-05],[148.83996,-3.5576E-05],[148.8434,-3.506E-05],[148.84684,-3.8669E-05],[148.85027,-4.0732E-05],[148.85371,-3.8154E-05],[148.85714,-3.97E-05],[148.86058,-4.3309E-05],[148.86402,-4.0732E-05],[148.86745,-3.97E-05],[148.87089,-3.6607E-05],[148.87432,-3.4544E-05],[148.87776,-3.6607E-05],[148.8812,-4.0216E-05],[148.88463,-4.0216E-05],[148.88807,-3.4029E-05],[148.8915,-3.5576E-05],[148.89494,-3.4544E-05],[148.89838,-3.5576E-05],[148.90181,-3.8669E-05],[148.90525,-3.3513E-05],[148.90868,-3.6091E-05],[148.91212,-3.8154E-05],[148.91556,-3.7638E-05],[148.91899,-3.6091E-05],[148.92243,-3.2998E-05],[148.92586,-3.4544E-05],[148.9293,-3.6091E-05],[148.93274,-3.8669E-05],[148.93617,-3.506E-05],[148.93961,-3.042E-05],[148.94304,-3.2998E-05],[148.94648,-3.6607E-05],[148.94992,-3.4029E-05],[148.95335,-3.4544E-05],[148.95679,-3.8154E-05],[148.96022,-3.6607E-05],[148.96366,-3.7122E-05],[148.9671,-3.6091E-05]]}
-{"quant":[149.105,-0.28949],"mems":[[149.00833,-3.4029E-05],[149.01176,-3.5576E-05],[149.0152,-3.8154E-05],[149.01864,-3.4029E-05],[149.02207,-3.506E-05],[149.02551,-3.506E-05],[149.02894,-4.1247E-05],[149.03238,-4.2794E-05],[149.03582,-3.2998E-05],[149.03925,-3.8154E-05],[149.04269,-3.8154E-05],[149.04612,-3.3513E-05],[149.04956,-3.7122E-05],[149.053,-3.8154E-05],[149.05643,-3.6607E-05],[149.05987,-3.6091E-05],[149.0633,-4.0216E-05],[149.06674,-3.8154E-05],[149.07018,-3.4544E-05],[149.07361,-3.4544E-05],[149.07705,-3.2998E-05],[149.08048,-4.0732E-05],[149.08392,-4.1247E-05],[149.08736,-3.5576E-05],[149.09079,-3.2482E-05],[149.09423,-3.1451E-05],[149.09766,-3.3513E-05],[149.1011,-3.5576E-05],[149.10454,-4.1247E-05],[149.10797,-3.8669E-05],[149.11141,-3.042E-05],[149.11484,-3.5576E-05],[149.11828,-3.8669E-05],[149.12172,-3.3513E-05],[149.12515,-3.4544E-05],[149.12859,-3.4029E-05],[149.13202,-3.506E-05],[149.13546,-3.6607E-05],[149.1389,-3.5576E-05],[149.14233,-3.5576E-05],[149.14577,-3.97E-05],[149.1492,-4.4341E-05],[149.15264,-3.9185E-05],[149.15608,-3.5576E-05],[149.15951,-3.4544E-05],[149.16295,-3.6091E-05],[149.16638,-3.7638E-05],[149.16982,-3.3513E-05],[149.17326,-3.6607E-05],[149.17669,-4.0216E-05],[149.18013,-3.7638E-05],[149.18356,-3.7638E-05],[149.187,-4.0216E-05],[149.19044,-4.0732E-05],[149.19387,-3.7122E-05],[149.19731,-3.7638E-05],[149.20074,-3.97E-05],[149.20418,-3.8154E-05],[149.20762,-3.7638E-05],[149.21105,-3.6091E-05],[149.21449,-3.4029E-05],[149.21792,-3.042E-05],[149.22136,-3.1451E-05],[149.2248,-3.4029E-05],[149.22823,-3.4544E-05],[149.23167,-3.5576E-05],[149.2351,-3.4029E-05],[149.23854,-4.0216E-05],[149.24198,-3.9185E-05],[149.24541,-3.4544E-05],[149.24885,-4.1763E-05],[149.25228,-3.8154E-05],[149.25572,-3.97E-05],[149.25916,-3.8669E-05],[149.26259,-3.2482E-05],[149.26603,-3.9185E-05],[149.26946,-3.8669E-05],[149.2729,-3.4029E-05],[149.27634,-3.6607E-05],[149.27977,-3.97E-05],[149.28321,-3.8669E-05],[149.28664,-3.7638E-05],[149.29008,-3.8154E-05],[149.29352,-3.4544E-05],[149.29695,-3.2482E-05],[149.30039,-3.6091E-05],[149.30382,-3.6091E-05]]}
-{"quant":[149.46,-0.25457],"mems":[[149.36224,-3.5576E-05],[149.36567,-3.7122E-05],[149.36911,-3.6607E-05],[149.37254,-3.8154E-05],[149.37598,-3.7122E-05],[149.37942,-3.4029E-05],[149.38285,-3.6607E-05],[149.38629,-3.7638E-05],[149.38972,-3.4544E-05],[149.39316,-3.5576E-05],[149.3966,-4.0216E-05],[149.40003,-3.7122E-05],[149.40347,-3.2998E-05],[149.4069,-3.3513E-05],[149.41034,-3.5576E-05],[149.41378,-3.7122E-05],[149.41721,-4.1247E-05],[149.42065,-4.0216E-05],[149.42408,-3.5576E-05],[149.42752,-3.506E-05],[149.43096,-3.5576E-05],[149.43439,-3.6091E-05],[149.43783,-3.2998E-05],[149.44126,-3.9185E-05],[149.4447,-3.7122E-05],[149.44814,-3.2998E-05],[149.45157,-3.6091E-05],[149.45501,-3.2482E-05],[149.45844,-3.6607E-05],[149.46188,-3.6607E-05],[149.46532,-3.97E-05],[149.46875,-4.1247E-05],[149.47219,-4.0732E-05],[149.47562,-3.8154E-05],[149.47906,-3.1451E-05],[149.4825,-3.9185E-05],[149.48593,-3.6607E-05],[149.48937,-3.6091E-05],[149.4928,-4.0732E-05],[149.49624,-3.5576E-05],[149.49968,-3.6607E-05],[149.50311,-3.7122E-05],[149.50655,-3.8154E-05],[149.50998,-3.7122E-05],[149.51342,-3.6091E-05],[149.51686,-3.7638E-05],[149.52029,-3.6607E-05],[149.52373,-3.8669E-05],[149.52716,-3.7638E-05],[149.5306,-4.2278E-05],[149.53404,-4.0216E-05],[149.53747,-3.7122E-05],[149.54091,-4.4341E-05],[149.54434,-3.7122E-05],[149.54778,-3.7638E-05],[149.55122,-4.0216E-05],[149.55465,-3.4029E-05],[149.55809,-3.6091E-05],[149.56152,-3.6607E-05],[149.56496,-3.4029E-05],[149.5684,-3.0935E-05],[149.57183,-3.2482E-05],[149.57527,-3.4029E-05],[149.5787,-3.6607E-05],[149.58214,-3.7638E-05],[149.58558,-3.5576E-05],[149.58901,-3.4029E-05],[149.59245,-3.2482E-05],[149.59588,-3.7638E-05],[149.59932,-3.506E-05],[149.60276,-3.042E-05],[149.60619,-3.1967E-05],[149.60963,-3.1451E-05],[149.61306,-3.2482E-05],[149.6165,-3.2482E-05],[149.61994,-3.2998E-05],[149.62337,-3.0935E-05],[149.62681,-3.6091E-05],[149.63024,-4.1247E-05],[149.63368,-3.7638E-05],[149.63712,-3.5576E-05],[149.64055,-3.4029E-05],[149.64399,-3.4544E-05],[149.64742,-3.5576E-05],[149.65086,-3.5576E-05],[149.6543,-3.4544E-05],[149.65773,-3.4544E-05]]}
-{"quant":[149.82,-0.21567],"mems":[[149.72302,-3.97E-05],[149.72645,-3.3513E-05],[149.72989,-3.506E-05],[149.73332,-3.4029E-05],[149.73676,-3.4544E-05],[149.7402,-3.506E-05],[149.74363,-3.4544E-05],[149.74707,-3.7638E-05],[149.7505,-3.4544E-05],[149.75394,-3.7638E-05],[149.75738,-3.9185E-05],[149.76081,-3.6607E-05],[149.76425,-3.8154E-05],[149.76768,-3.506E-05],[149.77112,-3.506E-05],[149.77456,-3.506E-05],[149.77799,-3.5576E-05],[149.78143,-3.506E-05],[149.78486,-3.4544E-05],[149.7883,-3.7638E-05],[149.79174,-3.7122E-05],[149.79517,-3.2998E-05],[149.79861,-3.2998E-05],[149.80204,-3.8154E-05],[149.80548,-3.7638E-05],[149.80892,-3.9185E-05],[149.81235,-3.3513E-05],[149.81579,-3.0935E-05],[149.81922,-3.7638E-05],[149.82266,-3.6091E-05],[149.8261,-3.4029E-05],[149.82953,-3.042E-05],[149.83297,-3.1451E-05],[149.8364,-3.6607E-05],[149.83984,-3.8669E-05],[149.84328,-3.9185E-05],[149.84671,-3.97E-05],[149.85015,-3.9185E-05],[149.85358,-3.6091E-05],[149.85702,-3.4544E-05],[149.86046,-2.9904E-05],[149.86389,-3.4029E-05],[149.86733,-4.0216E-05],[149.87076,-3.506E-05],[149.8742,-3.2998E-05],[149.87764,-3.8669E-05],[149.88107,-4.0216E-05],[149.88451,-3.7122E-05],[149.88794,-4.0216E-05],[149.89138,-3.7122E-05],[149.89482,-3.6091E-05],[149.89825,-4.0732E-05],[149.90169,-3.8154E-05],[149.90512,-3.6607E-05],[149.90856,-3.6607E-05],[149.912,-3.6607E-05],[149.91543,-3.4029E-05],[149.91887,-3.4029E-05],[149.9223,-3.8669E-05],[149.92574,-3.4029E-05],[149.92918,-3.2482E-05],[149.93261,-3.2482E-05],[149.93605,-3.3513E-05],[149.93948,-3.8669E-05],[149.94292,-3.6091E-05],[149.94636,-3.8669E-05],[149.94979,-3.7122E-05],[149.95323,-3.3513E-05],[149.95666,-3.8669E-05],[149.9601,-3.5576E-05],[149.96354,-3.7122E-05],[149.96697,-3.8669E-05],[149.97041,-3.5576E-05],[149.97384,-3.2998E-05],[149.97728,-3.4029E-05],[149.98072,-4.1763E-05],[149.98415,-3.8154E-05],[149.98759,-3.8669E-05],[149.99102,-3.7122E-05],[149.99446,-2.9389E-05],[149.9979,-3.3513E-05],[150.00133,-3.5576E-05],[150.00477,-3.8669E-05],[150.0082,-3.8669E-05],[150.01164,-3.6091E-05],[150.01508,-3.5576E-05],[150.01851,-3.1967E-05]]}
-{"quant":[150.172,-0.17943],"mems":[[150.07351,-3.9185E-05],[150.07695,-3.8154E-05],[150.08039,-3.4544E-05],[150.08383,-3.5576E-05],[150.08726,-3.7638E-05],[150.0907,-3.97E-05],[150.09414,-3.506E-05],[150.09758,-3.1451E-05],[150.10102,-3.3513E-05],[150.10446,-3.4029E-05],[150.1079,-3.8154E-05],[150.11133,-3.7122E-05],[150.11477,-3.6607E-05],[150.11821,-3.9185E-05],[150.12165,-4.1247E-05],[150.12509,-4.0216E-05],[150.12853,-3.5576E-05],[150.13197,-3.9185E-05],[150.13541,-3.6607E-05],[150.13884,-3.6091E-05],[150.14228,-4.1763E-05],[150.14572,-3.7122E-05],[150.14916,-3.7122E-05],[150.1526,-3.7122E-05],[150.15604,-3.2482E-05],[150.15948,-3.1451E-05],[150.16291,-3.4029E-05],[150.16635,-3.7122E-05],[150.16979,-3.4029E-05],[150.17323,-3.1451E-05],[150.17667,-3.1967E-05],[150.18011,-3.506E-05],[150.18355,-3.7122E-05],[150.18699,-3.5576E-05],[150.19042,-3.6091E-05],[150.19386,-3.506E-05],[150.1973,-3.1967E-05],[150.20074,-3.506E-05],[150.20418,-3.9185E-05],[150.20762,-3.8669E-05],[150.21106,-3.4544E-05],[150.21449,-3.6607E-05],[150.21793,-3.9185E-05],[150.22137,-3.7638E-05],[150.22481,-4.1763E-05],[150.22825,-3.8154E-05],[150.23169,-3.2998E-05],[150.23513,-3.2998E-05],[150.23857,-3.4544E-05],[150.242,-4.0732E-05],[150.24544,-3.9185E-05],[150.24888,-3.4544E-05],[150.25232,-3.7638E-05],[150.25576,-3.6091E-05],[150.2592,-3.7638E-05],[150.26264,-4.3309E-05],[150.26607,-3.8669E-05],[150.26951,-3.7122E-05],[150.27295,-3.7638E-05],[150.27639,-3.7638E-05],[150.27983,-3.7638E-05],[150.28327,-3.7638E-05],[150.28671,-3.8669E-05],[150.29015,-3.2998E-05],[150.29358,-3.042E-05],[150.29702,-3.5576E-05],[150.30046,-3.5576E-05],[150.3039,-3.7638E-05],[150.30734,-3.97E-05],[150.31078,-3.6091E-05],[150.31422,-3.506E-05],[150.31765,-3.506E-05],[150.32109,-3.8669E-05],[150.32453,-3.7638E-05],[150.32797,-3.7122E-05],[150.33141,-3.8154E-05],[150.33485,-3.1451E-05],[150.33829,-3.2482E-05],[150.34173,-3.7638E-05],[150.34516,-3.9185E-05],[150.3486,-3.4029E-05],[150.35204,-3.6091E-05],[150.35548,-4.2278E-05],[150.35892,-3.97E-05],[150.36236,-3.8669E-05],[150.3658,-3.4029E-05],[150.36923,-3.2482E-05]]}
-{"quant":[150.625,-0.13878],"mems":[[150.52741,-3.5576E-05],[150.53085,-3.1967E-05],[150.53429,-3.3513E-05],[150.53773,-3.4544E-05],[150.54117,-3.1451E-05],[150.54461,-3.2482E-05],[150.54805,-3.2482E-05],[150.55148,-3.506E-05],[150.55492,-3.7638E-05],[150.55836,-3.506E-05],[150.5618,-3.8154E-05],[150.56524,-3.6607E-05],[150.56868,-4.0216E-05],[150.57212,-4.3309E-05],[150.57555,-3.6607E-05],[150.57899,-3.4029E-05],[150.58243,-3.5576E-05],[150.58587,-4.1247E-05],[150.58931,-3.4029E-05],[150.59275,-3.1451E-05],[150.59619,-3.8154E-05],[150.59963,-3.7122E-05],[150.60306,-3.8154E-05],[150.6065,-3.3513E-05],[150.60994,-3.4029E-05],[150.61338,-3.7638E-05],[150.61682,-3.7122E-05],[150.62026,-3.8669E-05],[150.6237,-3.6607E-05],[150.62713,-3.506E-05],[150.63057,-3.4544E-05],[150.63401,-3.7638E-05],[150.63745,-3.7122E-05],[150.64089,-3.506E-05],[150.64433,-3.7638E-05],[150.64777,-3.6607E-05],[150.65121,-3.3513E-05],[150.65464,-2.8873E-05],[150.65808,-3.1967E-05],[150.66152,-3.8669E-05],[150.66496,-3.8669E-05],[150.6684,-3.7122E-05],[150.67184,-3.5576E-05],[150.67528,-3.6607E-05],[150.67871,-3.8154E-05],[150.68215,-3.97E-05],[150.68559,-3.7122E-05],[150.68903,-3.506E-05],[150.69247,-3.6607E-05],[150.69591,-3.5576E-05],[150.69935,-3.7122E-05],[150.70279,-3.8154E-05],[150.70622,-3.97E-05],[150.70966,-3.4029E-05],[150.7131,-3.0935E-05],[150.71654,-3.506E-05],[150.71998,-3.506E-05],[150.72342,-3.5576E-05],[150.72686,-3.4029E-05],[150.73029,-3.506E-05],[150.73373,-3.5576E-05],[150.73717,-3.5576E-05],[150.74061,-3.97E-05],[150.74405,-3.7638E-05],[150.74749,-3.9185E-05],[150.75093,-3.6091E-05],[150.75437,-3.042E-05],[150.7578,-3.6091E-05],[150.76124,-3.6607E-05],[150.76468,-3.4544E-05],[150.76812,-3.4029E-05],[150.77156,-3.3513E-05],[150.775,-3.4029E-05],[150.77844,-3.4029E-05],[150.78187,-3.5576E-05],[150.78531,-3.7122E-05],[150.78875,-3.9185E-05],[150.79219,-3.8154E-05],[150.79563,-3.3513E-05],[150.79907,-3.4544E-05],[150.80251,-3.8154E-05],[150.80595,-3.5576E-05],[150.80938,-3.7122E-05],[150.81282,-3.6091E-05],[150.81626,-3.3513E-05],[150.8197,-3.6607E-05],[150.82314,-3.6091E-05]]}
-{"quant":[150.966,-0.09276],"mems":[[150.86784,-3.6091E-05],[150.87128,-3.3513E-05],[150.87472,-3.7122E-05],[150.87816,-3.5576E-05],[150.8816,-3.4029E-05],[150.88503,-4.2278E-05],[150.88847,-4.0732E-05],[150.89191,-3.5576E-05],[150.89535,-3.9185E-05],[150.89879,-4.1247E-05],[150.90223,-4.1247E-05],[150.90567,-3.8669E-05],[150.90911,-3.6607E-05],[150.91254,-3.3513E-05],[150.91598,-3.2998E-05],[150.91942,-3.9185E-05],[150.92286,-3.7122E-05],[150.9263,-3.9185E-05],[150.92974,-4.1247E-05],[150.93318,-3.5576E-05],[150.93661,-3.4544E-05],[150.94005,-3.2998E-05],[150.94349,-3.3513E-05],[150.94693,-3.6607E-05],[150.95037,-3.6607E-05],[150.95381,-3.7122E-05],[150.95725,-3.6607E-05],[150.96069,-3.506E-05],[150.96412,-3.6607E-05],[150.96756,-3.5576E-05],[150.971,-3.506E-05],[150.97444,-3.6091E-05],[150.97788,-3.4029E-05],[150.98132,-3.4029E-05],[150.98476,-3.2482E-05],[150.98819,-3.2998E-05],[150.99163,-3.2998E-05],[150.99507,-3.6091E-05],[150.99851,-3.6091E-05],[151.00195,-3.3513E-05],[151.00539,-3.8669E-05],[151.00883,-3.1451E-05],[151.01227,-3.3513E-05],[151.0157,-3.9185E-05],[151.01914,-3.8154E-05],[151.02258,-4.1247E-05],[151.02602,-3.6091E-05],[151.02946,-3.7122E-05],[151.0329,-3.5576E-05],[151.03634,-3.506E-05],[151.03977,-4.0216E-05],[151.04321,-3.6091E-05],[151.04665,-3.7122E-05],[151.05009,-3.4544E-05],[151.05353,-3.506E-05],[151.05697,-3.9185E-05],[151.06041,-3.6607E-05],[151.06385,-3.8154E-05],[151.06728,-3.8154E-05],[151.07072,-3.4029E-05],[151.07416,-2.8873E-05],[151.0776,-3.2998E-05],[151.08104,-3.5576E-05],[151.08448,-3.2998E-05],[151.08792,-3.506E-05],[151.09135,-2.9904E-05],[151.09479,-2.6295E-05],[151.09823,-2.8873E-05],[151.10167,-3.0935E-05],[151.10511,-3.2482E-05],[151.10855,-3.1967E-05],[151.11199,-3.4544E-05],[151.11543,-3.97E-05],[151.11886,-4.0216E-05],[151.1223,-3.6607E-05],[151.12574,-3.6091E-05],[151.12918,-3.4544E-05],[151.13262,-3.3513E-05],[151.13606,-3.3513E-05],[151.1395,-3.5576E-05],[151.14293,-3.7638E-05],[151.14637,-3.4544E-05],[151.14981,-3.4029E-05],[151.15325,-3.6091E-05],[151.15669,-3.7638E-05],[151.16013,-4.1247E-05],[151.16357,-3.8154E-05]]}
-{"quant":[151.335,-0.056878],"mems":[[151.23578,-4.1247E-05],[151.23922,-3.97E-05],[151.24266,-3.8669E-05],[151.24609,-3.8154E-05],[151.24953,-3.8154E-05],[151.25297,-3.97E-05],[151.25641,-3.9185E-05],[151.25985,-3.97E-05],[151.26329,-3.9185E-05],[151.26673,-3.3513E-05],[151.27017,-3.2998E-05],[151.2736,-3.506E-05],[151.27704,-3.7122E-05],[151.28048,-3.97E-05],[151.28392,-3.6091E-05],[151.28736,-3.5576E-05],[151.2908,-3.6091E-05],[151.29424,-3.506E-05],[151.29767,-3.8154E-05],[151.30111,-3.6607E-05],[151.30455,-3.6091E-05],[151.30799,-3.7122E-05],[151.31143,-3.5576E-05],[151.31487,-3.6607E-05],[151.31831,-3.506E-05],[151.32175,-3.5576E-05],[151.32518,-3.5576E-05],[151.32862,-3.2482E-05],[151.33206,-3.3513E-05],[151.3355,-3.7122E-05],[151.33894,-3.8669E-05],[151.34238,-3.4544E-05],[151.34582,-3.3513E-05],[151.34925,-3.1451E-05],[151.35269,-3.2482E-05],[151.35613,-3.7638E-05],[151.35957,-3.7122E-05],[151.36301,-3.7122E-05],[151.36645,-3.7638E-05],[151.36989,-3.7638E-05],[151.37333,-3.7638E-05],[151.37676,-3.7122E-05],[151.3802,-3.7122E-05],[151.38364,-3.7638E-05],[151.38708,-3.4544E-05],[151.39052,-3.506E-05],[151.39396,-4.0216E-05],[151.3974,-3.7638E-05],[151.40083,-3.7122E-05],[151.40427,-3.7122E-05],[151.40771,-3.506E-05],[151.41115,-3.506E-05],[151.41459,-3.506E-05],[151.41803,-3.6607E-05],[151.42147,-3.8154E-05],[151.42491,-3.4029E-05],[151.42834,-3.3513E-05],[151.43178,-3.506E-05],[151.43522,-3.2998E-05],[151.43866,-3.4544E-05],[151.4421,-3.4029E-05],[151.44554,-3.4029E-05],[151.44898,-3.4029E-05],[151.45241,-3.2998E-05],[151.45585,-3.9185E-05],[151.45929,-3.9185E-05],[151.46273,-3.97E-05],[151.46617,-3.97E-05],[151.46961,-3.506E-05],[151.47305,-3.6607E-05],[151.47649,-3.6607E-05],[151.47992,-3.9185E-05],[151.48336,-3.97E-05],[151.4868,-3.9185E-05],[151.49024,-3.8669E-05],[151.49368,-3.6607E-05],[151.49712,-3.7638E-05],[151.50056,-3.6607E-05],[151.50399,-3.8669E-05],[151.50743,-4.0732E-05],[151.51087,-3.97E-05],[151.51431,-3.7638E-05],[151.51775,-3.6607E-05],[151.52119,-3.8669E-05],[151.52463,-3.6091E-05],[151.52807,-3.2998E-05],[151.5315,-3.3513E-05],[151.53494,-3.8669E-05]]}
-{"quant":[151.697,-0.025444],"mems":[[151.60028,-3.4544E-05],[151.60372,-3.5576E-05],[151.60715,-3.4029E-05],[151.61059,-3.6091E-05],[151.61403,-3.7638E-05],[151.61747,-4.0216E-05],[151.62091,-3.7122E-05],[151.62435,-3.6091E-05],[151.62779,-3.8154E-05],[151.63123,-3.506E-05],[151.63466,-3.3513E-05],[151.6381,-3.4029E-05],[151.64154,-3.7638E-05],[151.64498,-3.4544E-05],[151.64842,-3.4544E-05],[151.65186,-3.7122E-05],[151.6553,-3.4029E-05],[151.65873,-3.4544E-05],[151.66217,-3.7122E-05],[151.66561,-3.97E-05],[151.66905,-3.8154E-05],[151.67249,-3.7638E-05],[151.67593,-3.97E-05],[151.67937,-3.8669E-05],[151.68281,-3.6607E-05],[151.68624,-3.8669E-05],[151.68968,-4.1247E-05],[151.69312,-3.4544E-05],[151.69656,-3.4029E-05],[151.7,-3.2998E-05],[151.70344,-3.2482E-05],[151.70688,-3.97E-05],[151.71031,-3.3513E-05],[151.71375,-3.3513E-05],[151.71719,-3.7122E-05],[151.72063,-3.7122E-05],[151.72407,-3.8669E-05],[151.72751,-3.4029E-05],[151.73095,-3.506E-05],[151.73439,-3.8154E-05],[151.73782,-3.7122E-05],[151.74126,-3.8154E-05],[151.7447,-4.1247E-05],[151.74814,-3.6607E-05],[151.75158,-3.5576E-05],[151.75502,-3.7638E-05],[151.75846,-3.6607E-05],[151.76189,-4.0732E-05],[151.76533,-3.7638E-05],[151.76877,-3.9185E-05],[151.77221,-3.8669E-05],[151.77565,-3.506E-05],[151.77909,-4.3825E-05],[151.78253,-4.0216E-05],[151.78597,-3.5576E-05],[151.7894,-3.8669E-05],[151.79284,-3.5576E-05],[151.79628,-3.506E-05],[151.79972,-3.8154E-05],[151.80316,-4.1247E-05],[151.8066,-3.8669E-05],[151.81004,-3.6607E-05],[151.81347,-3.6607E-05],[151.81691,-3.6091E-05],[151.82035,-3.4544E-05],[151.82379,-3.4544E-05],[151.82723,-3.3513E-05],[151.83067,-3.2998E-05],[151.83411,-3.7122E-05],[151.83755,-3.97E-05],[151.84098,-3.7638E-05],[151.84442,-3.8154E-05],[151.84786,-3.8154E-05],[151.8513,-3.3513E-05],[151.85474,-3.3513E-05],[151.85818,-3.8669E-05],[151.86162,-3.8669E-05],[151.86505,-3.3513E-05],[151.86849,-3.4029E-05],[151.87193,-3.5576E-05],[151.87537,-3.0935E-05],[151.87881,-3.4029E-05],[151.88225,-4.3309E-05],[151.88569,-3.97E-05],[151.88913,-3.042E-05],[151.89256,-3.2482E-05],[151.896,-3.6091E-05]]}
-{"quant":[152.068,0.011944],"mems":[[151.96821,-3.7122E-05],[151.97165,-3.6607E-05],[151.97509,-3.5576E-05],[151.97853,-3.506E-05],[151.98197,-3.4029E-05],[151.98541,-3.6607E-05],[151.98885,-3.4544E-05],[151.99229,-3.4029E-05],[151.99572,-3.97E-05],[151.99916,-3.9185E-05],[152.0026,-3.7122E-05],[152.00604,-3.4029E-05],[152.00948,-3.4544E-05],[152.01292,-3.7122E-05],[152.01636,-3.5576E-05],[152.01979,-4.1247E-05],[152.02323,-4.0732E-05],[152.02667,-3.3513E-05],[152.03011,-3.4544E-05],[152.03355,-3.2482E-05],[152.03699,-3.506E-05],[152.04043,-3.8669E-05],[152.04387,-3.6607E-05],[152.0473,-3.8154E-05],[152.05074,-3.6607E-05],[152.05418,-3.5576E-05],[152.05762,-3.8154E-05],[152.06106,-3.6607E-05],[152.0645,-3.6091E-05],[152.06794,-3.5576E-05],[152.07137,-3.5576E-05],[152.07481,-3.6091E-05],[152.07825,-3.9185E-05],[152.08169,-3.97E-05],[152.08513,-3.7638E-05],[152.08857,-3.7122E-05],[152.09201,-3.2998E-05],[152.09545,-3.506E-05],[152.09888,-3.7122E-05],[152.10232,-3.5576E-05],[152.10576,-4.0216E-05],[152.1092,-3.8669E-05],[152.11264,-3.0935E-05],[152.11608,-3.2998E-05],[152.11952,-3.97E-05],[152.12295,-3.8154E-05],[152.12639,-3.6607E-05],[152.12983,-4.0216E-05],[152.13327,-3.7122E-05],[152.13671,-3.506E-05],[152.14015,-3.8669E-05],[152.14359,-3.8154E-05],[152.14703,-3.8154E-05],[152.15046,-3.3513E-05],[152.1539,-3.1967E-05],[152.15734,-3.8669E-05],[152.16078,-3.8154E-05],[152.16422,-3.6607E-05],[152.16766,-3.97E-05],[152.1711,-3.9185E-05],[152.17453,-3.5576E-05],[152.17797,-3.8669E-05],[152.18141,-3.9185E-05],[152.18485,-3.2482E-05],[152.18829,-3.4029E-05],[152.19173,-3.1967E-05],[152.19517,-3.0935E-05],[152.19861,-3.6607E-05],[152.20204,-3.4029E-05],[152.20548,-3.6607E-05],[152.20892,-3.8669E-05],[152.21236,-3.7122E-05],[152.2158,-3.7638E-05],[152.21924,-3.7122E-05],[152.22268,-3.8154E-05],[152.22611,-3.4029E-05],[152.22955,-2.6811E-05],[152.23299,-3.2482E-05],[152.23643,-3.9185E-05],[152.23987,-3.506E-05],[152.24331,-3.6607E-05],[152.24675,-3.5576E-05],[152.25019,-3.506E-05],[152.25362,-3.8154E-05],[152.25706,-3.4029E-05],[152.2605,-3.4544E-05],[152.26394,-4.2278E-05],[152.26738,-4.2278E-05]]}
-{"quant":[152.43,0.058049],"mems":[[152.33271,-3.6607E-05],[152.33615,-3.6607E-05],[152.33959,-4.0216E-05],[152.34303,-3.7122E-05],[152.34647,-3.4029E-05],[152.34991,-3.6607E-05],[152.35335,-3.4544E-05],[152.35678,-3.506E-05],[152.36022,-3.7638E-05],[152.36366,-4.1763E-05],[152.3671,-4.3309E-05],[152.37054,-4.1247E-05],[152.37398,-3.8154E-05],[152.37742,-3.2998E-05],[152.38085,-3.2998E-05],[152.38429,-3.3513E-05],[152.38773,-3.4029E-05],[152.39117,-3.4544E-05],[152.39461,-3.4544E-05],[152.39805,-3.7638E-05],[152.40149,-4.1763E-05],[152.40493,-3.9185E-05],[152.40836,-3.042E-05],[152.4118,-3.0935E-05],[152.41524,-3.8154E-05],[152.41868,-3.97E-05],[152.42212,-3.6607E-05],[152.42556,-3.1451E-05],[152.429,-3.0935E-05],[152.43243,-3.5576E-05],[152.43587,-3.7122E-05],[152.43931,-3.97E-05],[152.44275,-3.97E-05],[152.44619,-3.6607E-05],[152.44963,-3.6607E-05],[152.45307,-3.3513E-05],[152.45651,-3.1451E-05],[152.45994,-3.4029E-05],[152.46338,-3.6091E-05],[152.46682,-3.4544E-05],[152.47026,-3.506E-05],[152.4737,-3.97E-05],[152.47714,-3.97E-05],[152.48058,-4.0216E-05],[152.48401,-3.6091E-05],[152.48745,-3.1967E-05],[152.49089,-3.7122E-05],[152.49433,-4.0216E-05],[152.49777,-4.1247E-05],[152.50121,-3.9185E-05],[152.50465,-4.0216E-05],[152.50809,-3.6607E-05],[152.51152,-3.1451E-05],[152.51496,-3.3513E-05],[152.5184,-3.7122E-05],[152.52184,-3.9185E-05],[152.52528,-3.97E-05],[152.52872,-4.1247E-05],[152.53216,-3.6091E-05],[152.53559,-3.506E-05],[152.53903,-3.8154E-05],[152.54247,-3.3513E-05],[152.54591,-3.6607E-05],[152.54935,-3.3513E-05],[152.55279,-3.1451E-05],[152.55623,-3.8669E-05],[152.55967,-3.7122E-05],[152.5631,-3.6607E-05],[152.56654,-3.9185E-05],[152.56998,-3.8154E-05],[152.57342,-3.7638E-05],[152.57686,-4.0216E-05],[152.5803,-4.3825E-05],[152.58374,-4.2278E-05],[152.58717,-3.8669E-05],[152.59061,-3.3513E-05],[152.59405,-3.6091E-05],[152.59749,-3.8154E-05],[152.60093,-3.506E-05],[152.60437,-3.7122E-05],[152.60781,-2.9904E-05],[152.61125,-3.506E-05],[152.61468,-4.1763E-05],[152.61812,-3.4029E-05],[152.62156,-3.8669E-05],[152.625,-4.0216E-05],[152.62844,-3.1967E-05],[152.63188,-3.042E-05]]}
-{"quant":[152.778,0.095886],"mems":[[152.68002,-3.8669E-05],[152.68346,-3.2482E-05],[152.6869,-3.4029E-05],[152.69033,-3.4029E-05],[152.69377,-3.5576E-05],[152.69721,-3.97E-05],[152.70065,-3.8154E-05],[152.70409,-3.8154E-05],[152.70753,-3.4544E-05],[152.71097,-3.2998E-05],[152.71441,-3.8154E-05],[152.71784,-3.6607E-05],[152.72128,-3.4029E-05],[152.72472,-3.506E-05],[152.72816,-3.1451E-05],[152.7316,-3.1967E-05],[152.73504,-3.7122E-05],[152.73848,-3.9185E-05],[152.74191,-4.0216E-05],[152.74535,-3.7638E-05],[152.74879,-3.3513E-05],[152.75223,-3.6091E-05],[152.75567,-3.7638E-05],[152.75911,-3.6607E-05],[152.76255,-3.6091E-05],[152.76599,-3.6607E-05],[152.76942,-3.97E-05],[152.77286,-3.4544E-05],[152.7763,-3.2998E-05],[152.77974,-3.5576E-05],[152.78318,-3.4029E-05],[152.78662,-3.2998E-05],[152.79006,-2.9904E-05],[152.79349,-3.4544E-05],[152.79693,-3.6607E-05],[152.80037,-3.7638E-05],[152.80381,-3.506E-05],[152.80725,-3.1967E-05],[152.81069,-3.7638E-05],[152.81413,-3.9185E-05],[152.81757,-3.4544E-05],[152.821,-3.2482E-05],[152.82444,-3.6091E-05],[152.82788,-3.1967E-05],[152.83132,-3.2998E-05],[152.83476,-3.8669E-05],[152.8382,-3.7122E-05],[152.84164,-3.8154E-05],[152.84507,-3.7638E-05],[152.84851,-3.2482E-05],[152.85195,-3.1451E-05],[152.85539,-3.5576E-05],[152.85883,-3.506E-05],[152.86227,-3.97E-05],[152.86571,-3.6607E-05],[152.86915,-2.8873E-05],[152.87258,-3.4544E-05],[152.87602,-3.2998E-05],[152.87946,-3.6607E-05],[152.8829,-3.8154E-05],[152.88634,-3.0935E-05],[152.88978,-3.2482E-05],[152.89322,-3.6607E-05],[152.89665,-4.0732E-05],[152.90009,-3.7122E-05],[152.90353,-3.7122E-05],[152.90697,-3.7638E-05],[152.91041,-3.2482E-05],[152.91385,-3.506E-05],[152.91729,-3.7638E-05],[152.92073,-3.6607E-05],[152.92416,-3.6091E-05],[152.9276,-3.2998E-05],[152.93104,-3.6091E-05],[152.93448,-3.8669E-05],[152.93792,-3.6607E-05],[152.94136,-4.2278E-05],[152.9448,-4.0216E-05],[152.94823,-3.2482E-05],[152.95167,-3.2482E-05],[152.95511,-3.4544E-05],[152.95855,-3.7638E-05],[152.96199,-3.7122E-05],[152.96543,-3.9185E-05],[152.96887,-3.7638E-05],[152.97231,-3.506E-05],[152.97574,-4.0216E-05]]}
-{"quant":[153.181,0.12029],"mems":[[153.08234,-3.6091E-05],[153.08578,-3.1967E-05],[153.08922,-2.8873E-05],[153.09266,-3.2998E-05],[153.0961,-3.8669E-05],[153.09954,-3.8154E-05],[153.10297,-3.1451E-05],[153.10641,-3.2482E-05],[153.10985,-3.506E-05],[153.11329,-3.6607E-05],[153.11673,-3.97E-05],[153.12017,-3.4029E-05],[153.12361,-3.2482E-05],[153.12705,-3.6607E-05],[153.13048,-3.5576E-05],[153.13392,-3.3513E-05],[153.13736,-3.1967E-05],[153.1408,-3.4544E-05],[153.14424,-3.7638E-05],[153.14768,-3.4029E-05],[153.15112,-3.4544E-05],[153.15455,-3.506E-05],[153.15799,-3.4544E-05],[153.16143,-3.6091E-05],[153.16487,-3.9185E-05],[153.16831,-3.6607E-05],[153.17175,-3.1967E-05],[153.17519,-3.4544E-05],[153.17863,-3.506E-05],[153.18206,-3.506E-05],[153.1855,-3.6091E-05],[153.18894,-3.6607E-05],[153.19238,-3.5576E-05],[153.19582,-3.4544E-05],[153.19926,-3.4544E-05],[153.2027,-3.506E-05],[153.20613,-3.5576E-05],[153.20957,-3.4029E-05],[153.21301,-3.97E-05],[153.21645,-3.97E-05],[153.21989,-3.8154E-05],[153.22333,-4.1247E-05],[153.22677,-3.5576E-05],[153.23021,-3.506E-05],[153.23364,-3.5576E-05],[153.23708,-3.6091E-05],[153.24052,-3.8669E-05],[153.24396,-3.5576E-05],[153.2474,-3.2998E-05],[153.25084,-3.2998E-05],[153.25428,-3.6607E-05],[153.25771,-3.6091E-05],[153.26115,-3.2998E-05],[153.26459,-3.6091E-05],[153.26803,-3.8154E-05],[153.27147,-3.8154E-05],[153.27491,-3.6607E-05],[153.27835,-3.4029E-05],[153.28179,-3.4544E-05],[153.28522,-3.7638E-05],[153.28866,-3.6607E-05],[153.2921,-3.3513E-05],[153.29554,-3.6607E-05],[153.29898,-3.97E-05],[153.30242,-3.8669E-05],[153.30586,-3.8154E-05],[153.30929,-3.506E-05],[153.31273,-3.506E-05],[153.31617,-3.6607E-05],[153.31961,-3.7122E-05],[153.32305,-3.5576E-05],[153.32649,-3.506E-05],[153.32993,-4.0732E-05],[153.33337,-3.7638E-05],[153.3368,-3.506E-05],[153.34024,-3.97E-05],[153.34368,-3.9185E-05],[153.34712,-3.4544E-05],[153.35056,-3.7122E-05],[153.354,-3.97E-05],[153.35744,-3.8154E-05],[153.36087,-3.97E-05],[153.36431,-3.8154E-05],[153.36775,-3.7638E-05],[153.37119,-3.6091E-05],[153.37463,-3.5576E-05],[153.37807,-3.7122E-05]]}
-{"quant":[153.552,0.14135],"mems":[[153.45372,-3.8669E-05],[153.45716,-3.4029E-05],[153.4606,-3.2998E-05],[153.46403,-3.506E-05],[153.46747,-3.2998E-05],[153.47091,-3.7122E-05],[153.47435,-4.1763E-05],[153.47779,-3.2998E-05],[153.48123,-3.6091E-05],[153.48467,-4.1763E-05],[153.48811,-3.042E-05],[153.49154,-3.4029E-05],[153.49498,-4.1763E-05],[153.49842,-3.97E-05],[153.50186,-4.1763E-05],[153.5053,-3.8154E-05],[153.50874,-3.506E-05],[153.51218,-3.7122E-05],[153.51561,-3.5576E-05],[153.51905,-3.6607E-05],[153.52249,-3.5576E-05],[153.52593,-3.5576E-05],[153.52937,-3.7122E-05],[153.53281,-3.4029E-05],[153.53625,-3.8669E-05],[153.53969,-3.8669E-05],[153.54312,-3.6091E-05],[153.54656,-3.97E-05],[153.55,-3.5576E-05],[153.55344,-3.0935E-05],[153.55688,-3.506E-05],[153.56032,-3.8154E-05],[153.56376,-3.5576E-05],[153.56719,-3.1451E-05],[153.57063,-3.5576E-05],[153.57407,-3.7122E-05],[153.57751,-3.1967E-05],[153.58095,-3.4029E-05],[153.58439,-3.7122E-05],[153.58783,-3.8669E-05],[153.59127,-4.1247E-05],[153.5947,-4.0216E-05],[153.59814,-4.0216E-05],[153.60158,-3.7638E-05],[153.60502,-3.1967E-05],[153.60846,-3.1451E-05],[153.6119,-3.4029E-05],[153.61534,-3.5576E-05],[153.61877,-3.4544E-05],[153.62221,-3.6607E-05],[153.62565,-4.1763E-05],[153.62909,-3.9185E-05],[153.63253,-2.9389E-05],[153.63597,-2.9904E-05],[153.63941,-4.0216E-05],[153.64285,-3.6607E-05],[153.64628,-3.1451E-05],[153.64972,-3.2998E-05],[153.65316,-3.2482E-05],[153.6566,-3.506E-05],[153.66004,-3.5576E-05],[153.66348,-3.1967E-05],[153.66692,-3.3513E-05],[153.67035,-3.506E-05],[153.67379,-3.8154E-05],[153.67723,-3.97E-05],[153.68067,-3.5576E-05],[153.68411,-3.5576E-05],[153.68755,-3.4029E-05],[153.69099,-3.2482E-05],[153.69443,-3.6091E-05],[153.69786,-3.7638E-05],[153.7013,-3.7638E-05],[153.70474,-4.0732E-05],[153.70818,-3.8669E-05],[153.71162,-3.7122E-05],[153.71506,-3.97E-05],[153.7185,-3.7638E-05],[153.72193,-3.7122E-05],[153.72537,-3.5576E-05],[153.72881,-2.8873E-05],[153.73225,-3.2482E-05],[153.73569,-3.7638E-05],[153.73913,-3.506E-05],[153.74257,-3.6091E-05],[153.74601,-3.4544E-05],[153.74944,-3.6607E-05]]}
-{"quant":[153.888,0.17189],"mems":[[153.79071,-3.506E-05],[153.79415,-3.4029E-05],[153.79759,-3.6607E-05],[153.80102,-3.6091E-05],[153.80446,-3.506E-05],[153.8079,-3.4544E-05],[153.81134,-3.3513E-05],[153.81478,-3.7122E-05],[153.81822,-4.1763E-05],[153.82166,-3.6607E-05],[153.82509,-3.2998E-05],[153.82853,-3.8669E-05],[153.83197,-3.5576E-05],[153.83541,-3.5576E-05],[153.83885,-3.7638E-05],[153.84229,-3.2998E-05],[153.84573,-3.506E-05],[153.84917,-3.6607E-05],[153.8526,-3.8669E-05],[153.85604,-3.8669E-05],[153.85948,-3.5576E-05],[153.86292,-3.6607E-05],[153.86636,-3.6607E-05],[153.8698,-3.6607E-05],[153.87324,-3.6607E-05],[153.87667,-3.5576E-05],[153.88011,-3.9185E-05],[153.88355,-4.2278E-05],[153.88699,-3.9185E-05],[153.89043,-3.8154E-05],[153.89387,-4.1763E-05],[153.89731,-3.7122E-05],[153.90075,-3.4544E-05],[153.90418,-3.8154E-05],[153.90762,-3.506E-05],[153.91106,-3.506E-05],[153.9145,-3.6607E-05],[153.91794,-3.6607E-05],[153.92138,-4.0216E-05],[153.92482,-3.8669E-05],[153.92825,-3.6091E-05],[153.93169,-3.5576E-05],[153.93513,-3.506E-05],[153.93857,-3.6607E-05],[153.94201,-3.6607E-05],[153.94545,-3.6091E-05],[153.94889,-3.8669E-05],[153.95233,-3.9185E-05],[153.95576,-3.8669E-05],[153.9592,-3.9185E-05],[153.96264,-3.5576E-05],[153.96608,-3.2998E-05],[153.96952,-3.1967E-05],[153.97296,-3.5576E-05],[153.9764,-3.9185E-05],[153.97983,-3.6607E-05],[153.98327,-4.0216E-05],[153.98671,-3.7638E-05],[153.99015,-3.506E-05],[153.99359,-3.6091E-05],[153.99703,-3.6091E-05],[154.00047,-3.97E-05],[154.00391,-3.8669E-05],[154.00734,-3.9185E-05],[154.01078,-3.5576E-05],[154.01422,-3.8669E-05],[154.01766,-4.0216E-05],[154.0211,-3.2998E-05],[154.02454,-3.7638E-05],[154.02798,-3.4029E-05],[154.03141,-3.506E-05],[154.03485,-3.9185E-05],[154.03829,-3.6091E-05],[154.04173,-3.6091E-05],[154.04517,-3.6091E-05],[154.04861,-3.7122E-05],[154.05205,-3.8154E-05],[154.05549,-3.8669E-05],[154.05892,-3.6091E-05],[154.06236,-3.8154E-05],[154.0658,-4.1247E-05],[154.06924,-3.6091E-05],[154.07268,-3.506E-05],[154.07612,-3.9185E-05],[154.07956,-4.0732E-05],[154.08299,-3.8669E-05],[154.08643,-3.4544E-05]]}
-{"quant":[154.256,0.21449],"mems":[[154.15865,-3.7122E-05],[154.16208,-3.8154E-05],[154.16552,-3.4029E-05],[154.16896,-3.4029E-05],[154.1724,-3.506E-05],[154.17584,-3.8669E-05],[154.17928,-4.4856E-05],[154.18272,-3.7122E-05],[154.18615,-3.8669E-05],[154.18959,-3.506E-05],[154.19303,-3.2998E-05],[154.19647,-3.9185E-05],[154.19991,-3.1967E-05],[154.20335,-3.4029E-05],[154.20679,-3.4544E-05],[154.21023,-3.6091E-05],[154.21366,-4.0732E-05],[154.2171,-3.7638E-05],[154.22054,-3.8669E-05],[154.22398,-3.8154E-05],[154.22742,-3.506E-05],[154.23086,-3.6607E-05],[154.2343,-3.5576E-05],[154.23773,-3.6607E-05],[154.24117,-3.8669E-05],[154.24461,-3.5576E-05],[154.24805,-3.5576E-05],[154.25149,-3.8154E-05],[154.25493,-3.6091E-05],[154.25837,-3.506E-05],[154.26181,-3.7122E-05],[154.26524,-3.506E-05],[154.26868,-4.1247E-05],[154.27212,-4.3309E-05],[154.27556,-3.8154E-05],[154.279,-4.0732E-05],[154.28244,-3.8669E-05],[154.28588,-3.6607E-05],[154.28931,-3.3513E-05],[154.29275,-3.5576E-05],[154.29619,-3.8154E-05],[154.29963,-3.5576E-05],[154.30307,-3.6607E-05],[154.30651,-3.1967E-05],[154.30995,-3.4029E-05],[154.31339,-3.7638E-05],[154.31682,-3.3513E-05],[154.32026,-3.506E-05],[154.3237,-3.7122E-05],[154.32714,-3.4544E-05],[154.33058,-3.6091E-05],[154.33402,-3.7638E-05],[154.33746,-3.7638E-05],[154.34089,-4.1763E-05],[154.34433,-3.97E-05],[154.34777,-3.1967E-05],[154.35121,-3.042E-05],[154.35465,-3.7122E-05],[154.35809,-3.6607E-05],[154.36153,-3.2482E-05],[154.36497,-3.3513E-05],[154.3684,-3.6091E-05],[154.37184,-3.7122E-05],[154.37528,-3.6607E-05],[154.37872,-3.8154E-05],[154.38216,-3.7122E-05],[154.3856,-3.6091E-05],[154.38904,-3.6091E-05],[154.39247,-3.2998E-05],[154.39591,-3.1967E-05],[154.39935,-3.2998E-05],[154.40279,-3.4029E-05],[154.40623,-3.6607E-05],[154.40967,-3.6091E-05],[154.41311,-3.4544E-05],[154.41655,-4.0732E-05],[154.41998,-4.2278E-05],[154.42342,-3.9185E-05],[154.42686,-3.97E-05],[154.4303,-3.6607E-05],[154.43374,-3.5576E-05],[154.43718,-3.9185E-05],[154.44062,-3.97E-05],[154.44405,-3.5576E-05],[154.44749,-3.2482E-05],[154.45093,-3.6091E-05],[154.45437,-4.1247E-05]]}
-{"quant":[154.612,0.26319],"mems":[[154.51283,-3.2998E-05],[154.51627,-3.6607E-05],[154.51971,-3.6607E-05],[154.52314,-3.0935E-05],[154.52658,-3.3513E-05],[154.53002,-3.7638E-05],[154.53346,-3.7122E-05],[154.5369,-3.506E-05],[154.54034,-3.6091E-05],[154.54378,-3.5576E-05],[154.54721,-3.2998E-05],[154.55065,-3.4544E-05],[154.55409,-3.7122E-05],[154.55753,-3.97E-05],[154.56097,-3.8154E-05],[154.56441,-3.8154E-05],[154.56785,-3.97E-05],[154.57129,-3.9185E-05],[154.57472,-4.1247E-05],[154.57816,-3.6091E-05],[154.5816,-3.506E-05],[154.58504,-3.506E-05],[154.58848,-3.3513E-05],[154.59192,-3.7638E-05],[154.59536,-3.4029E-05],[154.59879,-3.4029E-05],[154.60223,-3.7122E-05],[154.60567,-3.2482E-05],[154.60911,-3.2482E-05],[154.61255,-3.7122E-05],[154.61599,-3.6091E-05],[154.61943,-3.3513E-05],[154.62287,-3.506E-05],[154.6263,-3.7122E-05],[154.62974,-3.5576E-05],[154.63318,-3.6091E-05],[154.63662,-3.9185E-05],[154.64006,-4.0216E-05],[154.6435,-3.8154E-05],[154.64694,-3.506E-05],[154.65037,-3.506E-05],[154.65381,-3.7638E-05],[154.65725,-3.6607E-05],[154.66069,-3.3513E-05],[154.66413,-3.6091E-05],[154.66757,-3.3513E-05],[154.67101,-3.2482E-05],[154.67445,-3.6091E-05],[154.67788,-3.506E-05],[154.68132,-3.3513E-05],[154.68476,-3.1451E-05],[154.6882,-3.7122E-05],[154.69164,-3.8154E-05],[154.69508,-3.506E-05],[154.69852,-3.8154E-05],[154.70195,-3.7638E-05],[154.70539,-3.506E-05],[154.70883,-2.9904E-05],[154.71227,-3.5576E-05],[154.71571,-4.0732E-05],[154.71915,-3.6607E-05],[154.72259,-3.7638E-05],[154.72603,-3.7638E-05],[154.72946,-3.8154E-05],[154.7329,-3.7638E-05],[154.73634,-3.7122E-05],[154.73978,-3.4544E-05],[154.74322,-3.0935E-05],[154.74666,-3.4029E-05],[154.7501,-3.6607E-05],[154.75353,-4.0216E-05],[154.75697,-3.7638E-05],[154.76041,-3.7122E-05],[154.76385,-3.5576E-05],[154.76729,-3.2998E-05],[154.77073,-3.97E-05],[154.77417,-3.9185E-05],[154.77761,-3.8154E-05],[154.78104,-3.8669E-05],[154.78448,-3.6091E-05],[154.78792,-3.7122E-05],[154.79136,-3.6091E-05],[154.7948,-3.2482E-05],[154.79824,-3.6607E-05],[154.80168,-3.7638E-05],[154.80511,-3.4029E-05],[154.80855,-3.8154E-05],[154.81199,-3.7638E-05]]}
-{"quant":[154.95,0.30697],"mems":[[154.85326,-4.0216E-05],[154.85669,-3.8669E-05],[154.86013,-3.7122E-05],[154.86357,-3.6607E-05],[154.86701,-3.7638E-05],[154.87045,-3.506E-05],[154.87389,-3.4029E-05],[154.87733,-3.7638E-05],[154.88077,-3.8669E-05],[154.8842,-3.506E-05],[154.88764,-3.7122E-05],[154.89108,-4.1247E-05],[154.89452,-3.8669E-05],[154.89796,-4.2278E-05],[154.9014,-4.1763E-05],[154.90484,-3.7122E-05],[154.90827,-3.7122E-05],[154.91171,-3.7638E-05],[154.91515,-3.8154E-05],[154.91859,-3.4029E-05],[154.92203,-3.1967E-05],[154.92547,-3.4029E-05],[154.92891,-3.6091E-05],[154.93235,-3.8669E-05],[154.93578,-3.7122E-05],[154.93922,-3.1967E-05],[154.94266,-3.6091E-05],[154.9461,-3.6607E-05],[154.94954,-3.6607E-05],[154.95298,-4.1763E-05],[154.95642,-3.6091E-05],[154.95985,-3.2998E-05],[154.96329,-3.2998E-05],[154.96673,-3.3513E-05],[154.97017,-3.9185E-05],[154.97361,-4.1247E-05],[154.97705,-3.7638E-05],[154.98049,-3.9185E-05],[154.98393,-4.1763E-05],[154.98736,-3.97E-05],[154.9908,-3.7122E-05],[154.99424,-3.8669E-05],[154.99768,-4.2278E-05],[155.00112,-4.0216E-05],[155.00456,-3.8669E-05],[155.008,-3.9185E-05],[155.01143,-4.0216E-05],[155.01487,-4.0216E-05],[155.01831,-3.6091E-05],[155.02175,-3.4544E-05],[155.02519,-3.6607E-05],[155.02863,-3.6091E-05],[155.03207,-3.5576E-05],[155.03551,-3.9185E-05],[155.03894,-3.97E-05],[155.04238,-3.7122E-05],[155.04582,-3.8154E-05],[155.04926,-3.8154E-05],[155.0527,-3.7638E-05],[155.05614,-3.506E-05],[155.05958,-3.8669E-05],[155.06301,-4.0216E-05],[155.06645,-3.3513E-05],[155.06989,-3.7122E-05],[155.07333,-3.7122E-05],[155.07677,-3.2998E-05],[155.08021,-3.7638E-05],[155.08365,-4.0216E-05],[155.08709,-3.8154E-05],[155.09052,-3.5576E-05],[155.09396,-3.6091E-05],[155.0974,-3.7122E-05],[155.10084,-3.4029E-05],[155.10428,-3.4544E-05],[155.10772,-3.5576E-05],[155.11116,-3.97E-05],[155.11459,-3.6607E-05],[155.11803,-3.506E-05],[155.12147,-4.0216E-05],[155.12491,-3.1967E-05],[155.12835,-3.1967E-05],[155.13179,-3.8154E-05],[155.13523,-3.8154E-05],[155.13867,-3.8154E-05],[155.1421,-3.3513E-05],[155.14554,-3.7122E-05],[155.14898,-3.9185E-05]]}
-{"quant":[155.297,0.33105],"mems":[[155.20056,-3.6607E-05],[155.204,-3.7638E-05],[155.20744,-3.2998E-05],[155.21087,-3.9185E-05],[155.21431,-4.3825E-05],[155.21774,-4.0732E-05],[155.22118,-3.7638E-05],[155.22462,-3.8154E-05],[155.22805,-3.7122E-05],[155.23149,-3.1967E-05],[155.23492,-3.6091E-05],[155.23836,-3.5576E-05],[155.2418,-3.2482E-05],[155.24523,-3.6091E-05],[155.24867,-3.4029E-05],[155.2521,-3.7122E-05],[155.25554,-3.4029E-05],[155.25898,-2.9389E-05],[155.26241,-3.4544E-05],[155.26585,-3.506E-05],[155.26928,-3.5576E-05],[155.27272,-3.506E-05],[155.27616,-3.4544E-05],[155.27959,-3.6091E-05],[155.28303,-3.2482E-05],[155.28646,-3.1451E-05],[155.2899,-3.6091E-05],[155.29334,-3.6091E-05],[155.29677,-3.6607E-05],[155.30021,-3.5576E-05],[155.30364,-3.5576E-05],[155.30708,-3.6607E-05],[155.31052,-3.6607E-05],[155.31395,-3.97E-05],[155.31739,-4.0732E-05],[155.32082,-3.6091E-05],[155.32426,-3.2998E-05],[155.3277,-3.4544E-05],[155.33113,-3.506E-05],[155.33457,-3.6607E-05],[155.338,-3.5576E-05],[155.34144,-3.4544E-05],[155.34488,-3.8154E-05],[155.34831,-3.5576E-05],[155.35175,-3.4544E-05],[155.35518,-3.9185E-05],[155.35862,-4.1247E-05],[155.36206,-3.506E-05],[155.36549,-3.5576E-05],[155.36893,-3.9185E-05],[155.37236,-3.8669E-05],[155.3758,-4.1763E-05],[155.37924,-4.0216E-05],[155.38267,-3.8669E-05],[155.38611,-3.7122E-05],[155.38954,-3.506E-05],[155.39298,-3.8669E-05],[155.39642,-3.9185E-05],[155.39985,-4.0732E-05],[155.40329,-3.8669E-05],[155.40672,-3.4544E-05],[155.41016,-3.9185E-05],[155.4136,-4.0216E-05],[155.41703,-3.6607E-05],[155.42047,-3.4029E-05],[155.4239,-3.1967E-05],[155.42734,-3.2482E-05],[155.43078,-3.6091E-05],[155.43421,-3.6607E-05],[155.43765,-3.5576E-05],[155.44108,-3.6091E-05],[155.44452,-3.8669E-05],[155.44796,-4.3309E-05],[155.45139,-3.8154E-05],[155.45483,-3.7638E-05],[155.45826,-3.97E-05],[155.4617,-3.4544E-05],[155.46514,-3.506E-05],[155.46857,-3.506E-05],[155.47201,-3.3513E-05],[155.47544,-3.5576E-05],[155.47888,-3.6607E-05],[155.48232,-3.7122E-05],[155.48575,-3.8669E-05],[155.48919,-3.8154E-05],[155.49262,-3.4029E-05],[155.49606,-3.1967E-05],[155.4995,-3.8154E-05]]}
-{"quant":[155.827,0.36237],"mems":[[155.72971,-3.4029E-05],[155.73314,-3.506E-05],[155.73658,-4.0216E-05],[155.74002,-4.1247E-05],[155.74345,-3.506E-05],[155.74689,-3.506E-05],[155.75032,-3.6091E-05],[155.75376,-3.6091E-05],[155.7572,-3.7122E-05],[155.76063,-3.6091E-05],[155.76407,-3.6091E-05],[155.7675,-3.6091E-05],[155.77094,-3.97E-05],[155.77438,-4.0732E-05],[155.77781,-3.7122E-05],[155.78125,-3.5576E-05],[155.78468,-3.6091E-05],[155.78812,-4.0216E-05],[155.79156,-3.7122E-05],[155.79499,-3.3513E-05],[155.79843,-3.7638E-05],[155.80186,-3.6091E-05],[155.8053,-3.2998E-05],[155.80874,-3.3513E-05],[155.81217,-3.3513E-05],[155.81561,-3.4544E-05],[155.81904,-3.9185E-05],[155.82248,-3.6607E-05],[155.82592,-3.4029E-05],[155.82935,-3.6091E-05],[155.83279,-3.8154E-05],[155.83622,-4.2794E-05],[155.83966,-3.8669E-05],[155.8431,-3.2482E-05],[155.84653,-3.1451E-05],[155.84997,-3.4029E-05],[155.8534,-3.5576E-05],[155.85684,-3.2998E-05],[155.86028,-3.6607E-05],[155.86371,-3.9185E-05],[155.86715,-3.7122E-05],[155.87058,-3.8154E-05],[155.87402,-3.8669E-05],[155.87746,-3.8154E-05],[155.88089,-3.5576E-05],[155.88433,-3.7122E-05],[155.88776,-3.7638E-05],[155.8912,-3.4544E-05],[155.89464,-3.4544E-05],[155.89807,-3.1451E-05],[155.90151,-3.4544E-05],[155.90494,-3.8154E-05],[155.90838,-3.9185E-05],[155.91182,-3.9185E-05],[155.91525,-3.4029E-05],[155.91869,-3.6091E-05],[155.92212,-3.2482E-05],[155.92556,-3.3513E-05],[155.929,-4.0216E-05],[155.93243,-3.9185E-05],[155.93587,-3.97E-05],[155.9393,-3.506E-05],[155.94274,-3.6607E-05],[155.94618,-3.97E-05],[155.94961,-3.6091E-05],[155.95305,-3.5576E-05],[155.95648,-3.1967E-05],[155.95992,-3.1967E-05],[155.96336,-3.7122E-05],[155.96679,-3.2998E-05],[155.97023,-3.7122E-05],[155.97366,-4.3309E-05],[155.9771,-3.5576E-05],[155.98054,-3.6091E-05],[155.98397,-3.7122E-05],[155.98741,-3.8154E-05],[155.99084,-3.8154E-05],[155.99428,-3.2482E-05],[155.99772,-3.2998E-05],[156.00115,-3.2482E-05],[156.00459,-3.6091E-05],[156.00802,-3.6607E-05],[156.01146,-4.0216E-05],[156.0149,-3.8154E-05],[156.01833,-3.0935E-05],[156.02177,-3.6091E-05],[156.0252,-3.8669E-05]]}
-{"quant":[156.192,0.4065],"mems":[[156.09392,-3.7638E-05],[156.09736,-3.8669E-05],[156.1008,-3.506E-05],[156.10423,-3.8154E-05],[156.10767,-3.8669E-05],[156.1111,-3.7122E-05],[156.11454,-4.1763E-05],[156.11798,-3.97E-05],[156.12141,-3.6607E-05],[156.12485,-3.3513E-05],[156.12828,-3.6607E-05],[156.13172,-4.2794E-05],[156.13516,-4.2794E-05],[156.13859,-3.506E-05],[156.14203,-3.4544E-05],[156.14546,-3.7638E-05],[156.1489,-3.5576E-05],[156.15234,-3.5576E-05],[156.15577,-3.6607E-05],[156.15921,-4.1763E-05],[156.16264,-3.7122E-05],[156.16608,-3.1967E-05],[156.16952,-3.3513E-05],[156.17295,-3.4029E-05],[156.17639,-3.8154E-05],[156.17982,-3.8669E-05],[156.18326,-3.8669E-05],[156.1867,-3.8154E-05],[156.19013,-4.0216E-05],[156.19357,-3.8154E-05],[156.197,-2.9904E-05],[156.20044,-3.4029E-05],[156.20388,-3.3513E-05],[156.20731,-3.4029E-05],[156.21075,-4.0216E-05],[156.21418,-3.6607E-05],[156.21762,-3.7122E-05],[156.22106,-3.6091E-05],[156.22449,-3.4544E-05],[156.22793,-3.5576E-05],[156.23136,-3.4029E-05],[156.2348,-3.506E-05],[156.23824,-3.2482E-05],[156.24167,-3.4029E-05],[156.24511,-3.8154E-05],[156.24854,-3.6091E-05],[156.25198,-3.506E-05],[156.25542,-3.3513E-05],[156.25885,-3.6607E-05],[156.26229,-4.0732E-05],[156.26572,-3.9185E-05],[156.26916,-3.7638E-05],[156.2726,-3.6607E-05],[156.27603,-3.7638E-05],[156.27947,-3.6091E-05],[156.2829,-3.5576E-05],[156.28634,-3.6607E-05],[156.28978,-4.0216E-05],[156.29321,-4.1763E-05],[156.29665,-3.506E-05],[156.30008,-3.506E-05],[156.30352,-3.6607E-05],[156.30696,-3.2998E-05],[156.31039,-3.7122E-05],[156.31383,-3.8669E-05],[156.31726,-3.6607E-05],[156.3207,-3.4544E-05],[156.32414,-3.3513E-05],[156.32757,-3.8669E-05],[156.33101,-3.6091E-05],[156.33444,-3.7122E-05],[156.33788,-4.0216E-05],[156.34132,-3.6091E-05],[156.34475,-3.6091E-05],[156.34819,-3.8154E-05],[156.35162,-4.1247E-05],[156.35506,-3.7638E-05],[156.3585,-3.4029E-05],[156.36193,-3.6607E-05],[156.36537,-3.2998E-05],[156.3688,-3.5576E-05],[156.37224,-3.8154E-05],[156.37568,-3.2998E-05],[156.37911,-3.2998E-05],[156.38255,-3.6091E-05],[156.38598,-3.6091E-05],[156.38942,-3.6091E-05]]}
-{"quant":[156.541,0.44746],"mems":[[156.4444,-3.2998E-05],[156.44783,-3.4029E-05],[156.45127,-3.2998E-05],[156.4547,-3.6607E-05],[156.45814,-3.506E-05],[156.46158,-3.2998E-05],[156.46501,-3.6091E-05],[156.46845,-3.5576E-05],[156.47188,-4.0216E-05],[156.47532,-4.1247E-05],[156.47876,-3.2482E-05],[156.48219,-2.9389E-05],[156.48563,-3.2998E-05],[156.48906,-3.506E-05],[156.4925,-3.6091E-05],[156.49594,-3.6091E-05],[156.49937,-3.6607E-05],[156.50281,-3.6607E-05],[156.50624,-3.4544E-05],[156.50968,-3.8669E-05],[156.51312,-3.6091E-05],[156.51655,-3.506E-05],[156.51999,-3.9185E-05],[156.52342,-3.4029E-05],[156.52686,-3.5576E-05],[156.5303,-3.8154E-05],[156.53373,-3.6607E-05],[156.53717,-3.8154E-05],[156.5406,-3.6607E-05],[156.54404,-3.6091E-05],[156.54748,-3.3513E-05],[156.55091,-3.6607E-05],[156.55435,-3.9185E-05],[156.55778,-3.4544E-05],[156.56122,-3.6607E-05],[156.56466,-3.506E-05],[156.56809,-3.4544E-05],[156.57153,-3.506E-05],[156.57496,-3.4544E-05],[156.5784,-3.5576E-05],[156.58184,-3.3513E-05],[156.58527,-3.4544E-05],[156.58871,-3.6091E-05],[156.59214,-3.9185E-05],[156.59558,-4.0216E-05],[156.59902,-3.9185E-05],[156.60245,-3.4544E-05],[156.60589,-2.8873E-05],[156.60932,-3.2998E-05],[156.61276,-3.7122E-05],[156.6162,-3.6607E-05],[156.61963,-3.4029E-05],[156.62307,-3.6607E-05],[156.6265,-3.7122E-05],[156.62994,-3.1451E-05],[156.63338,-3.1451E-05],[156.63681,-3.4029E-05],[156.64025,-3.4029E-05],[156.64368,-3.3513E-05],[156.64712,-3.506E-05],[156.65056,-3.7122E-05],[156.65399,-3.97E-05],[156.65743,-3.8669E-05],[156.66086,-3.5576E-05],[156.6643,-3.3513E-05],[156.66774,-3.5576E-05],[156.67117,-3.6091E-05],[156.67461,-3.7122E-05],[156.67804,-3.6607E-05],[156.68148,-3.2482E-05],[156.68492,-3.4544E-05],[156.68835,-3.8154E-05],[156.69179,-4.0216E-05],[156.69522,-3.97E-05],[156.69866,-3.7638E-05],[156.7021,-3.6607E-05],[156.70553,-3.6091E-05],[156.70897,-3.8669E-05],[156.7124,-3.8154E-05],[156.71584,-3.9185E-05],[156.71928,-4.2278E-05],[156.72271,-3.9185E-05],[156.72615,-3.6607E-05],[156.72958,-3.7122E-05],[156.73302,-3.4029E-05],[156.73646,-3.506E-05],[156.73989,-3.8669E-05]]}
-{"quant":[156.902,0.48335],"mems":[[156.80518,-3.7638E-05],[156.80861,-3.5576E-05],[156.81205,-3.7638E-05],[156.81548,-3.7638E-05],[156.81892,-3.4544E-05],[156.82236,-3.1967E-05],[156.82579,-3.042E-05],[156.82923,-3.506E-05],[156.83266,-3.9185E-05],[156.8361,-3.8154E-05],[156.83954,-3.7638E-05],[156.84297,-3.506E-05],[156.84641,-3.506E-05],[156.84984,-3.9185E-05],[156.85328,-3.6091E-05],[156.85672,-3.506E-05],[156.86015,-3.8669E-05],[156.86359,-3.8154E-05],[156.86702,-4.0732E-05],[156.87046,-4.0732E-05],[156.8739,-3.7638E-05],[156.87733,-3.506E-05],[156.88077,-3.506E-05],[156.8842,-4.1247E-05],[156.88764,-3.8669E-05],[156.89108,-3.5576E-05],[156.89451,-3.7122E-05],[156.89795,-3.8154E-05],[156.90138,-3.8669E-05],[156.90482,-3.506E-05],[156.90826,-3.7638E-05],[156.91169,-3.97E-05],[156.91513,-3.4029E-05],[156.91856,-3.1451E-05],[156.922,-3.0935E-05],[156.92544,-3.2998E-05],[156.92887,-3.506E-05],[156.93231,-3.8154E-05],[156.93574,-3.1451E-05],[156.93918,-3.042E-05],[156.94262,-3.6607E-05],[156.94605,-2.9389E-05],[156.94949,-2.9389E-05],[156.95292,-3.7122E-05],[156.95636,-3.6607E-05],[156.9598,-3.6091E-05],[156.96323,-3.4544E-05],[156.96667,-3.4544E-05],[156.9701,-3.7638E-05],[156.97354,-3.7122E-05],[156.97698,-3.6607E-05],[156.98041,-3.4544E-05],[156.98385,-3.5576E-05],[156.98728,-3.8154E-05],[156.99072,-3.5576E-05],[156.99416,-3.9185E-05],[156.99759,-3.7122E-05],[157.00103,-3.4029E-05],[157.00446,-3.6607E-05],[157.0079,-3.7638E-05],[157.01134,-3.9185E-05],[157.01477,-3.4029E-05],[157.01821,-3.97E-05],[157.02164,-4.1247E-05],[157.02508,-3.4544E-05],[157.02852,-3.9185E-05],[157.03195,-3.7638E-05],[157.03539,-3.9185E-05],[157.03882,-3.9185E-05],[157.04226,-3.1967E-05],[157.0457,-3.6091E-05],[157.04913,-4.0216E-05],[157.05257,-3.8669E-05],[157.056,-3.6607E-05],[157.05944,-3.3513E-05],[157.06288,-3.2998E-05],[157.06631,-3.2998E-05],[157.06975,-3.7122E-05],[157.07318,-3.7638E-05],[157.07662,-3.4029E-05],[157.08006,-4.1247E-05],[157.08349,-3.8669E-05],[157.08693,-3.4544E-05],[157.09036,-3.97E-05],[157.0938,-3.9185E-05],[157.09724,-3.6091E-05],[157.10067,-3.7638E-05]]}
-{"quant":[157.246,0.52206],"mems":[[157.14878,-3.506E-05],[157.15221,-3.5576E-05],[157.15565,-3.506E-05],[157.15908,-3.4029E-05],[157.16252,-3.6607E-05],[157.16596,-3.7638E-05],[157.16939,-3.5576E-05],[157.17283,-3.5576E-05],[157.17626,-3.1451E-05],[157.1797,-3.2482E-05],[157.18314,-3.506E-05],[157.18657,-4.2794E-05],[157.19001,-4.3825E-05],[157.19344,-3.2998E-05],[157.19688,-3.6091E-05],[157.20032,-3.4029E-05],[157.20375,-2.9904E-05],[157.20719,-3.3513E-05],[157.21062,-4.0216E-05],[157.21406,-3.6091E-05],[157.2175,-3.3513E-05],[157.22093,-4.0216E-05],[157.22437,-3.3513E-05],[157.2278,-3.5576E-05],[157.23124,-4.1763E-05],[157.23468,-3.6607E-05],[157.23811,-3.8669E-05],[157.24155,-3.6607E-05],[157.24498,-3.042E-05],[157.24842,-3.3513E-05],[157.25186,-4.0216E-05],[157.25529,-3.6607E-05],[157.25873,-3.6607E-05],[157.26216,-3.8154E-05],[157.2656,-3.3513E-05],[157.26904,-3.6091E-05],[157.27247,-3.4029E-05],[157.27591,-3.0935E-05],[157.27934,-2.8357E-05],[157.28278,-3.4029E-05],[157.28622,-3.97E-05],[157.28965,-3.506E-05],[157.29309,-3.7638E-05],[157.29652,-3.2998E-05],[157.29996,-3.4544E-05],[157.3034,-3.97E-05],[157.30683,-3.4029E-05],[157.31027,-3.4544E-05],[157.3137,-3.506E-05],[157.31714,-3.8669E-05],[157.32058,-3.7638E-05],[157.32401,-3.5576E-05],[157.32745,-4.1247E-05],[157.33088,-4.0732E-05],[157.33432,-3.8669E-05],[157.33776,-3.3513E-05],[157.34119,-3.3513E-05],[157.34463,-3.1967E-05],[157.34806,-3.1967E-05],[157.3515,-4.0732E-05],[157.35494,-3.5576E-05],[157.35837,-3.3513E-05],[157.36181,-3.6607E-05],[157.36524,-3.3513E-05],[157.36868,-3.6091E-05],[157.37212,-3.9185E-05],[157.37555,-3.9185E-05],[157.37899,-3.5576E-05],[157.38242,-3.97E-05],[157.38586,-4.1247E-05],[157.3893,-4.0216E-05],[157.39273,-4.1763E-05],[157.39617,-3.6091E-05],[157.3996,-3.4544E-05],[157.40304,-3.3513E-05],[157.40648,-3.6607E-05],[157.40991,-3.7122E-05],[157.41335,-3.5576E-05],[157.41678,-4.1247E-05],[157.42022,-3.4544E-05],[157.42366,-3.2998E-05],[157.42709,-3.7122E-05],[157.43053,-3.6091E-05],[157.43396,-3.6607E-05],[157.4374,-2.9904E-05],[157.44084,-3.3513E-05],[157.44427,-3.8669E-05]]}
-{"quant":[157.6,0.56653],"mems":[[157.50268,-3.2998E-05],[157.50612,-3.6091E-05],[157.50956,-3.9185E-05],[157.51299,-3.7638E-05],[157.51643,-3.4029E-05],[157.51986,-3.4029E-05],[157.5233,-3.6091E-05],[157.52674,-3.8669E-05],[157.53017,-3.7122E-05],[157.53361,-3.7638E-05],[157.53704,-3.506E-05],[157.54048,-3.042E-05],[157.54392,-3.1967E-05],[157.54735,-3.6091E-05],[157.55079,-3.5576E-05],[157.55422,-3.5576E-05],[157.55766,-3.4544E-05],[157.5611,-3.2998E-05],[157.56453,-3.9185E-05],[157.56797,-3.8154E-05],[157.5714,-3.8154E-05],[157.57484,-4.1763E-05],[157.57828,-3.6091E-05],[157.58171,-3.4544E-05],[157.58515,-3.7122E-05],[157.58858,-3.7638E-05],[157.59202,-3.7122E-05],[157.59546,-3.3513E-05],[157.59889,-3.3513E-05],[157.60233,-3.8154E-05],[157.60576,-4.0216E-05],[157.6092,-4.1763E-05],[157.61264,-3.8154E-05],[157.61607,-3.4029E-05],[157.61951,-3.8669E-05],[157.62294,-3.7638E-05],[157.62638,-3.4029E-05],[157.62982,-3.7638E-05],[157.63325,-3.4544E-05],[157.63669,-3.6607E-05],[157.64012,-4.0732E-05],[157.64356,-4.0216E-05],[157.647,-3.7122E-05],[157.65043,-3.3513E-05],[157.65387,-3.6607E-05],[157.6573,-3.6091E-05],[157.66074,-3.4544E-05],[157.66418,-3.2482E-05],[157.66761,-3.2998E-05],[157.67105,-3.6091E-05],[157.67448,-3.2998E-05],[157.67792,-3.6607E-05],[157.68136,-3.5576E-05],[157.68479,-3.1967E-05],[157.68823,-3.8669E-05],[157.69166,-3.8669E-05],[157.6951,-3.6091E-05],[157.69854,-3.5576E-05],[157.70197,-3.0935E-05],[157.70541,-3.3513E-05],[157.70884,-4.0732E-05],[157.71228,-3.7638E-05],[157.71572,-3.3513E-05],[157.71915,-3.6607E-05],[157.72259,-3.506E-05],[157.72602,-3.506E-05],[157.72946,-3.5576E-05],[157.7329,-3.2482E-05],[157.73633,-3.5576E-05],[157.73977,-3.506E-05],[157.7432,-3.506E-05],[157.74664,-3.97E-05],[157.75008,-3.6607E-05],[157.75351,-3.5576E-05],[157.75695,-3.8669E-05],[157.76038,-3.6607E-05],[157.76382,-3.6607E-05],[157.76726,-3.6607E-05],[157.77069,-3.4544E-05],[157.77413,-3.7122E-05],[157.77756,-3.8154E-05],[157.781,-3.4544E-05],[157.78444,-3.4029E-05],[157.78787,-3.6091E-05],[157.79131,-3.6607E-05],[157.79474,-3.4544E-05],[157.79818,-3.4544E-05],[157.80162,-3.4544E-05]]}
-{"quant":[157.953,0.60263],"mems":[[157.85316,-3.7122E-05],[157.85659,-3.2998E-05],[157.86003,-3.042E-05],[157.86346,-2.9904E-05],[157.8669,-3.3513E-05],[157.87034,-3.8154E-05],[157.87377,-3.2482E-05],[157.87721,-3.506E-05],[157.88064,-3.7122E-05],[157.88408,-3.6091E-05],[157.88752,-4.1763E-05],[157.89095,-3.5576E-05],[157.89439,-3.4544E-05],[157.89782,-4.2278E-05],[157.90126,-3.9185E-05],[157.9047,-3.4544E-05],[157.90813,-3.7122E-05],[157.91157,-3.97E-05],[157.915,-3.7638E-05],[157.91844,-3.2998E-05],[157.92188,-3.0935E-05],[157.92531,-3.97E-05],[157.92875,-4.3825E-05],[157.93218,-3.8154E-05],[157.93562,-3.7122E-05],[157.93906,-3.4029E-05],[157.94249,-3.6091E-05],[157.94593,-3.7122E-05],[157.94936,-3.1451E-05],[157.9528,-3.6607E-05],[157.95624,-3.9185E-05],[157.95967,-3.4544E-05],[157.96311,-3.3513E-05],[157.96654,-3.506E-05],[157.96998,-3.2482E-05],[157.97342,-3.2482E-05],[157.97685,-3.506E-05],[157.98029,-3.4029E-05],[157.98372,-3.6091E-05],[157.98716,-3.6607E-05],[157.9906,-3.7638E-05],[157.99403,-3.506E-05],[157.99747,-3.6091E-05],[158.0009,-3.7638E-05],[158.00434,-3.5576E-05],[158.00778,-3.6091E-05],[158.01121,-3.97E-05],[158.01465,-3.97E-05],[158.01808,-3.0935E-05],[158.02152,-3.1967E-05],[158.02496,-3.6607E-05],[158.02839,-4.0216E-05],[158.03183,-4.0216E-05],[158.03526,-3.506E-05],[158.0387,-3.6607E-05],[158.04214,-3.2998E-05],[158.04557,-3.2998E-05],[158.04901,-3.3513E-05],[158.05244,-3.1967E-05],[158.05588,-3.4029E-05],[158.05932,-2.8873E-05],[158.06275,-3.042E-05],[158.06619,-3.5576E-05],[158.06962,-3.97E-05],[158.07306,-3.7122E-05],[158.0765,-3.6607E-05],[158.07993,-3.8154E-05],[158.08337,-3.0935E-05],[158.0868,-3.4544E-05],[158.09024,-3.6607E-05],[158.09368,-3.3513E-05],[158.09711,-3.5576E-05],[158.10055,-3.8154E-05],[158.10398,-3.97E-05],[158.10742,-3.7638E-05],[158.11086,-3.8669E-05],[158.11429,-3.6607E-05],[158.11773,-3.4029E-05],[158.12116,-3.4544E-05],[158.1246,-3.506E-05],[158.12804,-3.8669E-05],[158.13147,-3.9185E-05],[158.13491,-3.506E-05],[158.13834,-3.4029E-05],[158.14178,-3.8669E-05],[158.14522,-3.6607E-05],[158.14865,-3.5576E-05],[158.15209,-3.8669E-05]]}
-{"quant":[158.37,0.62798],"mems":[[158.27235,-4.0216E-05],[158.27578,-4.0732E-05],[158.27922,-3.8669E-05],[158.28266,-3.1451E-05],[158.28609,-3.3513E-05],[158.28953,-3.9185E-05],[158.29296,-3.8154E-05],[158.2964,-3.97E-05],[158.29984,-3.4544E-05],[158.30327,-3.6091E-05],[158.30671,-3.97E-05],[158.31014,-3.9185E-05],[158.31358,-3.8669E-05],[158.31702,-3.4029E-05],[158.32045,-3.5576E-05],[158.32389,-3.2998E-05],[158.32732,-3.1967E-05],[158.33076,-3.8669E-05],[158.3342,-3.7638E-05],[158.33763,-3.6607E-05],[158.34107,-3.5576E-05],[158.3445,-3.7638E-05],[158.34794,-4.2278E-05],[158.35138,-3.8154E-05],[158.35481,-3.8669E-05],[158.35825,-3.8669E-05],[158.36168,-3.3513E-05],[158.36512,-3.4544E-05],[158.36856,-3.506E-05],[158.37199,-3.506E-05],[158.37543,-3.1451E-05],[158.37886,-3.1967E-05],[158.3823,-3.5576E-05],[158.38574,-3.5576E-05],[158.38917,-3.97E-05],[158.39261,-3.6607E-05],[158.39604,-3.4029E-05],[158.39948,-3.4544E-05],[158.40292,-3.7122E-05],[158.40635,-3.6091E-05],[158.40979,-3.506E-05],[158.41322,-3.3513E-05],[158.41666,-3.1451E-05],[158.4201,-3.6607E-05],[158.42353,-3.506E-05],[158.42697,-3.6091E-05],[158.4304,-3.6607E-05],[158.43384,-3.4029E-05],[158.43728,-3.506E-05],[158.44071,-3.3513E-05],[158.44415,-3.6091E-05],[158.44758,-3.4029E-05],[158.45102,-3.5576E-05],[158.45446,-3.7638E-05],[158.45789,-3.1967E-05],[158.46133,-3.7638E-05],[158.46476,-4.2278E-05],[158.4682,-3.7638E-05],[158.47164,-3.6607E-05],[158.47507,-3.6091E-05],[158.47851,-3.7122E-05],[158.48194,-3.6091E-05],[158.48538,-3.6607E-05],[158.48882,-3.8154E-05],[158.49225,-3.7638E-05],[158.49569,-3.8669E-05],[158.49912,-3.97E-05],[158.50256,-3.8154E-05],[158.506,-3.506E-05],[158.50943,-3.5576E-05],[158.51287,-3.6607E-05],[158.5163,-3.4544E-05],[158.51974,-3.1967E-05],[158.52318,-3.6091E-05],[158.52661,-3.8669E-05],[158.53005,-3.6091E-05],[158.53348,-3.2482E-05],[158.53692,-3.2998E-05],[158.54036,-3.6091E-05],[158.54379,-3.4029E-05],[158.54723,-3.8669E-05],[158.55066,-3.5576E-05],[158.5541,-3.2482E-05],[158.55754,-3.6091E-05],[158.56097,-3.1967E-05],[158.56441,-3.7122E-05],[158.56784,-3.9185E-05]]}
-{"quant":[158.716,0.65198],"mems":[[158.61938,-3.1451E-05],[158.62282,-3.1451E-05],[158.62626,-3.8154E-05],[158.62969,-3.8154E-05],[158.63313,-3.2998E-05],[158.63656,-3.6091E-05],[158.64,-3.5576E-05],[158.64344,-3.6091E-05],[158.64687,-3.4029E-05],[158.65031,-3.4544E-05],[158.65374,-3.7122E-05],[158.65718,-3.8154E-05],[158.66062,-4.1247E-05],[158.66405,-3.7638E-05],[158.66749,-4.0216E-05],[158.67092,-4.1247E-05],[158.67436,-3.4029E-05],[158.6778,-3.6091E-05],[158.68123,-4.0216E-05],[158.68467,-3.7122E-05],[158.6881,-3.7122E-05],[158.69154,-3.7122E-05],[158.69498,-3.7638E-05],[158.69841,-3.8669E-05],[158.70185,-3.7638E-05],[158.70528,-4.3309E-05],[158.70872,-4.0732E-05],[158.71216,-3.6091E-05],[158.71559,-3.8669E-05],[158.71903,-3.2482E-05],[158.72246,-3.1451E-05],[158.7259,-3.4544E-05],[158.72934,-3.3513E-05],[158.73277,-3.6091E-05],[158.73621,-3.6607E-05],[158.73964,-3.5576E-05],[158.74308,-4.1763E-05],[158.74652,-4.0732E-05],[158.74995,-3.5576E-05],[158.75339,-3.7122E-05],[158.75682,-3.506E-05],[158.76026,-3.7122E-05],[158.7637,-3.7638E-05],[158.76713,-3.506E-05],[158.77057,-3.9185E-05],[158.774,-3.97E-05],[158.77744,-3.6607E-05],[158.78088,-3.4029E-05],[158.78431,-3.5576E-05],[158.78775,-4.0216E-05],[158.79118,-3.8669E-05],[158.79462,-3.7638E-05],[158.79806,-3.6607E-05],[158.80149,-3.7638E-05],[158.80493,-4.4341E-05],[158.80836,-4.0216E-05],[158.8118,-3.7122E-05],[158.81524,-3.8154E-05],[158.81867,-3.6607E-05],[158.82211,-3.6607E-05],[158.82554,-3.6091E-05],[158.82898,-3.6607E-05],[158.83242,-3.8154E-05],[158.83585,-3.7122E-05],[158.83929,-3.3513E-05],[158.84272,-4.0216E-05],[158.84616,-4.3309E-05],[158.8496,-3.8669E-05],[158.85303,-3.7122E-05],[158.85647,-3.4544E-05],[158.8599,-4.0732E-05],[158.86334,-4.1247E-05],[158.86678,-3.6091E-05],[158.87021,-3.6607E-05],[158.87365,-3.506E-05],[158.87708,-3.2998E-05],[158.88052,-3.6091E-05],[158.88396,-4.2794E-05],[158.88739,-4.0216E-05],[158.89083,-3.8669E-05],[158.89426,-4.3309E-05],[158.8977,-3.97E-05],[158.90114,-3.6607E-05],[158.90457,-3.7638E-05],[158.90801,-3.7638E-05],[158.91144,-4.2278E-05],[158.91488,-4.0216E-05]]}
-{"quant":[159.067,0.68144],"mems":[[158.96986,-3.6091E-05],[158.97329,-3.7638E-05],[158.97673,-3.5576E-05],[158.98016,-3.6091E-05],[158.9836,-3.7122E-05],[158.98704,-3.7638E-05],[158.99047,-3.7638E-05],[158.99391,-3.6607E-05],[158.99734,-3.6607E-05],[159.00078,-3.5576E-05],[159.00422,-3.9185E-05],[159.00765,-3.7122E-05],[159.01109,-3.9185E-05],[159.01452,-4.0216E-05],[159.01796,-3.6091E-05],[159.0214,-3.6607E-05],[159.02483,-3.5576E-05],[159.02827,-3.8669E-05],[159.0317,-3.5576E-05],[159.03514,-3.042E-05],[159.03858,-3.2482E-05],[159.04201,-3.506E-05],[159.04545,-3.7122E-05],[159.04888,-3.7122E-05],[159.05232,-3.9185E-05],[159.05576,-3.6091E-05],[159.05919,-3.4029E-05],[159.06263,-3.97E-05],[159.06606,-4.1247E-05],[159.0695,-3.8154E-05],[159.07294,-3.5576E-05],[159.07637,-3.5576E-05],[159.07981,-3.7122E-05],[159.08324,-3.6091E-05],[159.08668,-3.6091E-05],[159.09012,-3.8669E-05],[159.09355,-3.6091E-05],[159.09699,-3.2482E-05],[159.10042,-3.7638E-05],[159.10386,-3.9185E-05],[159.1073,-3.97E-05],[159.11073,-3.6607E-05],[159.11417,-3.6607E-05],[159.1176,-3.4544E-05],[159.12104,-3.2482E-05],[159.12448,-3.7122E-05],[159.12791,-3.506E-05],[159.13135,-3.9185E-05],[159.13478,-3.6607E-05],[159.13822,-3.4544E-05],[159.14166,-4.0216E-05],[159.14509,-3.8154E-05],[159.14853,-3.8669E-05],[159.15196,-3.4544E-05],[159.1554,-3.6091E-05],[159.15884,-3.506E-05],[159.16227,-3.6607E-05],[159.16571,-3.97E-05],[159.16914,-3.6607E-05],[159.17258,-4.0216E-05],[159.17602,-3.6091E-05],[159.17945,-3.7122E-05],[159.18289,-3.7638E-05],[159.18632,-3.6091E-05],[159.18976,-4.1247E-05],[159.1932,-3.5576E-05],[159.19663,-3.2482E-05],[159.20007,-3.6607E-05],[159.2035,-3.9185E-05],[159.20694,-3.6607E-05],[159.21038,-3.6607E-05],[159.21381,-3.7122E-05],[159.21725,-3.3513E-05],[159.22068,-3.7638E-05],[159.22412,-3.7638E-05],[159.22756,-3.4029E-05],[159.23099,-3.7122E-05],[159.23443,-3.7122E-05],[159.23786,-3.4544E-05],[159.2413,-3.8154E-05],[159.24474,-3.8669E-05],[159.24817,-3.5576E-05],[159.25161,-3.6091E-05],[159.25504,-3.4544E-05],[159.25848,-3.3513E-05],[159.26192,-3.4029E-05],[159.26535,-3.7638E-05]]}
-{"quant":[159.426,0.70717],"mems":[[159.3272,-3.1967E-05],[159.33064,-3.6607E-05],[159.33407,-3.506E-05],[159.33751,-3.7122E-05],[159.34094,-3.4544E-05],[159.34438,-2.9904E-05],[159.34782,-3.6091E-05],[159.35125,-3.6607E-05],[159.35469,-3.506E-05],[159.35812,-3.1967E-05],[159.36156,-3.1451E-05],[159.365,-3.6091E-05],[159.36843,-3.4544E-05],[159.37187,-3.6091E-05],[159.3753,-4.0216E-05],[159.37874,-3.8154E-05],[159.38218,-3.6091E-05],[159.38561,-4.1763E-05],[159.38905,-4.1247E-05],[159.39248,-3.6091E-05],[159.39592,-3.5576E-05],[159.39936,-3.7638E-05],[159.40279,-3.7122E-05],[159.40623,-3.7122E-05],[159.40966,-3.9185E-05],[159.4131,-3.7638E-05],[159.41654,-3.3513E-05],[159.41997,-3.506E-05],[159.42341,-3.6091E-05],[159.42684,-3.5576E-05],[159.43028,-3.506E-05],[159.43372,-3.2482E-05],[159.43715,-3.5576E-05],[159.44059,-3.8669E-05],[159.44402,-3.7638E-05],[159.44746,-3.6607E-05],[159.4509,-3.5576E-05],[159.45433,-3.7122E-05],[159.45777,-3.8669E-05],[159.4612,-4.2794E-05],[159.46464,-4.1247E-05],[159.46808,-3.7638E-05],[159.47151,-3.506E-05],[159.47495,-2.9904E-05],[159.47838,-3.3513E-05],[159.48182,-3.506E-05],[159.48526,-3.6091E-05],[159.48869,-4.1763E-05],[159.49213,-4.0732E-05],[159.49556,-3.5576E-05],[159.499,-3.0935E-05],[159.50244,-3.2482E-05],[159.50587,-3.7122E-05],[159.50931,-3.8669E-05],[159.51274,-3.9185E-05],[159.51618,-3.7122E-05],[159.51962,-3.506E-05],[159.52305,-3.8669E-05],[159.52649,-4.1763E-05],[159.52992,-4.0732E-05],[159.53336,-3.6607E-05],[159.5368,-3.4544E-05],[159.54023,-3.7122E-05],[159.54367,-3.4029E-05],[159.5471,-3.4029E-05],[159.55054,-3.6607E-05],[159.55398,-3.5576E-05],[159.55741,-3.6607E-05],[159.56085,-3.6091E-05],[159.56428,-3.8154E-05],[159.56772,-3.8669E-05],[159.57116,-3.5576E-05],[159.57459,-3.506E-05],[159.57803,-3.8669E-05],[159.58146,-3.8669E-05],[159.5849,-3.7638E-05],[159.58834,-3.7122E-05],[159.59177,-3.7122E-05],[159.59521,-4.1247E-05],[159.59864,-3.8669E-05],[159.60208,-3.506E-05],[159.60552,-3.4544E-05],[159.60895,-3.4544E-05],[159.61239,-3.4029E-05],[159.61582,-3.4029E-05],[159.61926,-3.8154E-05],[159.6227,-3.8669E-05]]}
-{"quant":[159.765,0.73196],"mems":[[159.66736,-3.8154E-05],[159.6708,-3.9185E-05],[159.67424,-3.4544E-05],[159.67767,-3.506E-05],[159.68111,-3.7638E-05],[159.68454,-3.042E-05],[159.68798,-3.4029E-05],[159.69142,-3.506E-05],[159.69485,-3.3513E-05],[159.69829,-3.3513E-05],[159.70172,-3.5576E-05],[159.70516,-4.1763E-05],[159.7086,-3.6607E-05],[159.71203,-3.6091E-05],[159.71547,-3.7122E-05],[159.7189,-3.2998E-05],[159.72234,-3.7122E-05],[159.72578,-3.8669E-05],[159.72921,-3.7122E-05],[159.73265,-3.6607E-05],[159.73608,-3.1967E-05],[159.73952,-3.2482E-05],[159.74296,-3.8154E-05],[159.74639,-3.8154E-05],[159.74983,-3.7638E-05],[159.75326,-3.506E-05],[159.7567,-3.506E-05],[159.76014,-4.1763E-05],[159.76357,-3.97E-05],[159.76701,-3.4029E-05],[159.77044,-3.4029E-05],[159.77388,-3.7122E-05],[159.77732,-3.4029E-05],[159.78075,-3.3513E-05],[159.78419,-3.8154E-05],[159.78762,-3.5576E-05],[159.79106,-3.9185E-05],[159.7945,-3.2482E-05],[159.79793,-2.5779E-05],[159.80137,-3.7122E-05],[159.8048,-3.6607E-05],[159.80824,-3.9185E-05],[159.81168,-4.3309E-05],[159.81511,-3.506E-05],[159.81855,-3.8669E-05],[159.82198,-4.0216E-05],[159.82542,-3.4544E-05],[159.82886,-3.4029E-05],[159.83229,-3.0935E-05],[159.83573,-3.4029E-05],[159.83916,-3.9185E-05],[159.8426,-3.7122E-05],[159.84604,-3.6607E-05],[159.84947,-3.7122E-05],[159.85291,-4.0732E-05],[159.85634,-3.97E-05],[159.85978,-3.6607E-05],[159.86322,-3.7638E-05],[159.86665,-3.6091E-05],[159.87009,-4.0216E-05],[159.87352,-3.8669E-05],[159.87696,-3.5576E-05],[159.8804,-3.5576E-05],[159.88383,-3.4544E-05],[159.88727,-3.8154E-05],[159.8907,-3.97E-05],[159.89414,-3.97E-05],[159.89758,-3.7638E-05],[159.90101,-3.97E-05],[159.90445,-4.0216E-05],[159.90788,-3.97E-05],[159.91132,-3.6091E-05],[159.91476,-3.2482E-05],[159.91819,-3.4544E-05],[159.92163,-3.3513E-05],[159.92506,-3.6091E-05],[159.9285,-3.506E-05],[159.93194,-3.3513E-05],[159.93537,-3.6607E-05],[159.93881,-3.3513E-05],[159.94224,-3.4029E-05],[159.94568,-3.7638E-05],[159.94912,-3.4029E-05],[159.95255,-3.4544E-05],[159.95599,-3.8154E-05],[159.95942,-3.5576E-05],[159.96286,-3.6091E-05]]}
-{"quant":[160.105,0.76368],"mems":[[160.00753,-3.7638E-05],[160.01096,-3.6091E-05],[160.0144,-3.97E-05],[160.01784,-3.3513E-05],[160.02127,-3.4029E-05],[160.02471,-3.8154E-05],[160.02814,-3.3513E-05],[160.03158,-3.506E-05],[160.03502,-3.7122E-05],[160.03845,-3.7638E-05],[160.04189,-3.7638E-05],[160.04532,-3.6607E-05],[160.04876,-3.7122E-05],[160.0522,-3.5576E-05],[160.05563,-3.7638E-05],[160.05907,-4.1763E-05],[160.0625,-4.1763E-05],[160.06594,-3.7122E-05],[160.06938,-3.7638E-05],[160.07281,-3.5576E-05],[160.07625,-3.1451E-05],[160.07968,-3.7122E-05],[160.08312,-3.8154E-05],[160.08656,-3.4544E-05],[160.08999,-3.2998E-05],[160.09343,-3.1967E-05],[160.09686,-3.1967E-05],[160.1003,-3.5576E-05],[160.10374,-3.8154E-05],[160.10717,-3.6607E-05],[160.11061,-3.97E-05],[160.11404,-3.6607E-05],[160.11748,-3.4544E-05],[160.12092,-4.2794E-05],[160.12435,-4.1763E-05],[160.12779,-3.97E-05],[160.13122,-3.4544E-05],[160.13466,-3.1451E-05],[160.1381,-3.7638E-05],[160.14153,-3.6091E-05],[160.14497,-3.506E-05],[160.1484,-3.506E-05],[160.15184,-3.5576E-05],[160.15528,-3.6607E-05],[160.15871,-3.3513E-05],[160.16215,-3.6091E-05],[160.16558,-3.6607E-05],[160.16902,-3.3513E-05],[160.17246,-3.7638E-05],[160.17589,-3.97E-05],[160.17933,-3.6091E-05],[160.18276,-3.9185E-05],[160.1862,-4.2278E-05],[160.18964,-3.8669E-05],[160.19307,-3.3513E-05],[160.19651,-3.4544E-05],[160.19994,-3.3513E-05],[160.20338,-3.5576E-05],[160.20682,-4.1247E-05],[160.21025,-3.6091E-05],[160.21369,-3.3513E-05],[160.21712,-3.4029E-05],[160.22056,-3.506E-05],[160.224,-3.8669E-05],[160.22743,-3.7638E-05],[160.23087,-3.6607E-05],[160.2343,-3.3513E-05],[160.23774,-3.6091E-05],[160.24118,-3.8669E-05],[160.24461,-3.7122E-05],[160.24805,-3.6091E-05],[160.25148,-3.0935E-05],[160.25492,-3.1451E-05],[160.25836,-3.2998E-05],[160.26179,-3.8154E-05],[160.26523,-3.9185E-05],[160.26866,-3.3513E-05],[160.2721,-3.7122E-05],[160.27554,-3.4029E-05],[160.27897,-3.6607E-05],[160.28241,-4.1763E-05],[160.28584,-3.7638E-05],[160.28928,-3.8669E-05],[160.29272,-3.4029E-05],[160.29615,-3.2482E-05],[160.29959,-3.9185E-05],[160.30302,-3.9185E-05]]}
-{"quant":[160.463,0.80514],"mems":[[160.36487,-3.2998E-05],[160.36831,-3.6091E-05],[160.37175,-3.4544E-05],[160.37519,-3.506E-05],[160.37862,-4.1247E-05],[160.38206,-4.1247E-05],[160.3855,-4.1247E-05],[160.38894,-4.0216E-05],[160.39237,-3.6091E-05],[160.39581,-3.6091E-05],[160.39925,-3.8154E-05],[160.40269,-3.97E-05],[160.40612,-3.8154E-05],[160.40956,-3.6091E-05],[160.413,-3.4029E-05],[160.41643,-3.4029E-05],[160.41987,-3.6091E-05],[160.42331,-3.8154E-05],[160.42675,-3.97E-05],[160.43018,-3.97E-05],[160.43362,-3.7122E-05],[160.43706,-3.506E-05],[160.4405,-3.7638E-05],[160.44393,-3.7122E-05],[160.44737,-3.6607E-05],[160.45081,-3.3513E-05],[160.45425,-3.3513E-05],[160.45768,-3.97E-05],[160.46112,-3.6091E-05],[160.46456,-3.6607E-05],[160.46799,-3.7638E-05],[160.47143,-3.3513E-05],[160.47487,-3.9185E-05],[160.47831,-3.7638E-05],[160.48174,-3.3513E-05],[160.48518,-3.6091E-05],[160.48862,-3.506E-05],[160.49206,-3.3513E-05],[160.49549,-3.4029E-05],[160.49893,-3.5576E-05],[160.50237,-3.8154E-05],[160.50581,-3.6607E-05],[160.50924,-3.8669E-05],[160.51268,-4.0216E-05],[160.51612,-3.506E-05],[160.51955,-3.506E-05],[160.52299,-3.6607E-05],[160.52643,-3.506E-05],[160.52987,-3.7638E-05],[160.5333,-3.6607E-05],[160.53674,-3.6607E-05],[160.54018,-3.4544E-05],[160.54362,-3.4544E-05],[160.54705,-3.8154E-05],[160.55049,-3.8669E-05],[160.55393,-3.8154E-05],[160.55737,-3.042E-05],[160.5608,-3.5576E-05],[160.56424,-3.6607E-05],[160.56768,-3.506E-05],[160.57111,-4.0216E-05],[160.57455,-3.506E-05],[160.57799,-3.506E-05],[160.58143,-3.506E-05],[160.58486,-3.8154E-05],[160.5883,-3.7122E-05],[160.59174,-3.0935E-05],[160.59518,-3.1451E-05],[160.59861,-3.042E-05],[160.60205,-3.8154E-05],[160.60549,-4.1763E-05],[160.60893,-3.8154E-05],[160.61236,-3.3513E-05],[160.6158,-3.3513E-05],[160.61924,-3.506E-05],[160.62267,-3.6607E-05],[160.62611,-4.2278E-05],[160.62955,-4.1247E-05],[160.63299,-3.8669E-05],[160.63642,-3.506E-05],[160.63986,-3.7638E-05],[160.6433,-4.0216E-05],[160.64674,-3.6607E-05],[160.65017,-3.8154E-05],[160.65361,-3.6091E-05],[160.65705,-3.8154E-05],[160.66049,-4.0216E-05]]}
-{"quant":[160.961,0.851],"mems":[[160.86329,-3.6607E-05],[160.86673,-3.8669E-05],[160.87016,-3.6607E-05],[160.8736,-3.506E-05],[160.87704,-3.4544E-05],[160.88047,-3.3513E-05],[160.88391,-3.9185E-05],[160.88735,-4.2794E-05],[160.89079,-3.5576E-05],[160.89422,-3.2998E-05],[160.89766,-3.506E-05],[160.9011,-3.6091E-05],[160.90454,-3.7122E-05],[160.90797,-3.506E-05],[160.91141,-3.7122E-05],[160.91485,-3.6607E-05],[160.91829,-3.7638E-05],[160.92172,-3.5576E-05],[160.92516,-3.0935E-05],[160.9286,-3.7122E-05],[160.93203,-3.7122E-05],[160.93547,-3.5576E-05],[160.93891,-3.5576E-05],[160.94235,-3.4544E-05],[160.94578,-3.6607E-05],[160.94922,-3.4544E-05],[160.95266,-3.2998E-05],[160.9561,-3.4029E-05],[160.95953,-3.7638E-05],[160.96297,-4.3309E-05],[160.96641,-4.2278E-05],[160.96985,-3.5576E-05],[160.97328,-3.6607E-05],[160.97672,-3.9185E-05],[160.98016,-3.8154E-05],[160.98359,-3.97E-05],[160.98703,-3.8154E-05],[160.99047,-3.506E-05],[160.99391,-3.4029E-05],[160.99734,-3.4544E-05],[161.00078,-3.8669E-05],[161.00422,-3.8154E-05],[161.00766,-3.6607E-05],[161.01109,-3.506E-05],[161.01453,-3.3513E-05],[161.01797,-3.6607E-05],[161.02141,-3.8154E-05],[161.02484,-4.0732E-05],[161.02828,-3.97E-05],[161.03172,-3.4544E-05],[161.03515,-3.4029E-05],[161.03859,-3.7122E-05],[161.04203,-3.8669E-05],[161.04547,-3.506E-05],[161.0489,-3.2482E-05],[161.05234,-3.9185E-05],[161.05578,-4.1247E-05],[161.05922,-3.3513E-05],[161.06265,-3.2998E-05],[161.06609,-3.5576E-05],[161.06953,-3.6091E-05],[161.07297,-3.2998E-05],[161.0764,-3.0935E-05],[161.07984,-3.506E-05],[161.08328,-3.9185E-05],[161.08671,-3.97E-05],[161.09015,-3.8154E-05],[161.09359,-3.7122E-05],[161.09703,-3.7122E-05],[161.10046,-3.6091E-05],[161.1039,-3.9185E-05],[161.10734,-4.0216E-05],[161.11078,-3.3513E-05],[161.11421,-3.042E-05],[161.11765,-3.6607E-05],[161.12109,-3.7122E-05],[161.12453,-3.5576E-05],[161.12796,-3.7122E-05],[161.1314,-3.2998E-05],[161.13484,-3.6091E-05],[161.13827,-3.9185E-05],[161.14171,-3.97E-05],[161.14515,-3.8669E-05],[161.14859,-3.0935E-05],[161.15202,-3.5576E-05],[161.15546,-3.6091E-05],[161.1589,-3.6091E-05]]}
-{"quant":[161.306,0.88091],"mems":[[161.20702,-3.6091E-05],[161.21046,-3.3513E-05],[161.2139,-3.7122E-05],[161.21733,-3.506E-05],[161.22077,-3.6091E-05],[161.22421,-3.7122E-05],[161.22765,-3.5576E-05],[161.23108,-3.042E-05],[161.23452,-2.9904E-05],[161.23796,-3.6607E-05],[161.24139,-2.9904E-05],[161.24483,-3.2998E-05],[161.24827,-3.7122E-05],[161.25171,-3.1967E-05],[161.25514,-3.9185E-05],[161.25858,-3.8669E-05],[161.26202,-4.0732E-05],[161.26546,-4.4341E-05],[161.26889,-3.7122E-05],[161.27233,-3.2482E-05],[161.27577,-3.1451E-05],[161.27921,-3.6091E-05],[161.28264,-3.7122E-05],[161.28608,-3.8669E-05],[161.28952,-3.9185E-05],[161.29295,-3.2482E-05],[161.29639,-3.2998E-05],[161.29983,-3.6091E-05],[161.30327,-3.97E-05],[161.3067,-3.7122E-05],[161.31014,-3.7638E-05],[161.31358,-4.0732E-05],[161.31702,-3.506E-05],[161.32045,-3.5576E-05],[161.32389,-3.6607E-05],[161.32733,-3.6607E-05],[161.33077,-3.7122E-05],[161.3342,-3.6091E-05],[161.33764,-3.5576E-05],[161.34108,-3.5576E-05],[161.34451,-3.8669E-05],[161.34795,-3.6091E-05],[161.35139,-3.6607E-05],[161.35483,-3.2998E-05],[161.35826,-3.2998E-05],[161.3617,-4.0216E-05],[161.36514,-3.2998E-05],[161.36858,-3.1451E-05],[161.37201,-3.6091E-05],[161.37545,-3.6091E-05],[161.37889,-3.7638E-05],[161.38233,-3.7638E-05],[161.38576,-3.6091E-05],[161.3892,-3.6091E-05],[161.39264,-3.6091E-05],[161.39607,-3.506E-05],[161.39951,-3.97E-05],[161.40295,-3.6607E-05],[161.40639,-3.3513E-05],[161.40982,-3.5576E-05],[161.41326,-3.1967E-05],[161.4167,-3.6607E-05],[161.42014,-3.6607E-05],[161.42357,-3.4029E-05],[161.42701,-3.506E-05],[161.43045,-3.1451E-05],[161.43389,-3.4029E-05],[161.43732,-3.9185E-05],[161.44076,-4.0216E-05],[161.4442,-3.7122E-05],[161.44763,-3.1967E-05],[161.45107,-3.2998E-05],[161.45451,-3.3513E-05],[161.45795,-3.6091E-05],[161.46138,-3.7122E-05],[161.46482,-3.506E-05],[161.46826,-3.6091E-05],[161.4717,-3.4029E-05],[161.47513,-3.7122E-05],[161.47857,-3.5576E-05],[161.48201,-3.2998E-05],[161.48545,-4.0216E-05],[161.48888,-3.8154E-05],[161.49232,-3.6607E-05],[161.49576,-3.6607E-05],[161.49919,-4.0732E-05],[161.50263,-3.7122E-05]]}
-{"quant":[161.672,0.89345],"mems":[[161.57482,-3.0935E-05],[161.57825,-3.2998E-05],[161.58169,-3.2998E-05],[161.58513,-3.506E-05],[161.58857,-3.3513E-05],[161.592,-3.4029E-05],[161.59544,-3.6607E-05],[161.59888,-3.8154E-05],[161.60231,-3.8154E-05],[161.60575,-3.9185E-05],[161.60919,-3.6607E-05],[161.61263,-3.1451E-05],[161.61606,-3.3513E-05],[161.6195,-3.4029E-05],[161.62294,-3.7122E-05],[161.62638,-3.9185E-05],[161.62981,-3.8154E-05],[161.63325,-4.2278E-05],[161.63669,-3.7122E-05],[161.64013,-3.3513E-05],[161.64356,-3.7122E-05],[161.647,-3.6607E-05],[161.65044,-3.3513E-05],[161.65387,-3.1451E-05],[161.65731,-3.3513E-05],[161.66075,-3.7122E-05],[161.66419,-3.9185E-05],[161.66762,-3.5576E-05],[161.67106,-3.6091E-05],[161.6745,-3.9185E-05],[161.67794,-3.7122E-05],[161.68137,-3.7122E-05],[161.68481,-3.1451E-05],[161.68825,-3.042E-05],[161.69169,-3.3513E-05],[161.69512,-3.4029E-05],[161.69856,-3.7638E-05],[161.702,-3.9185E-05],[161.70543,-3.5576E-05],[161.70887,-3.3513E-05],[161.71231,-3.5576E-05],[161.71575,-3.506E-05],[161.71918,-3.4029E-05],[161.72262,-3.5576E-05],[161.72606,-3.6091E-05],[161.7295,-3.6607E-05],[161.73293,-3.7122E-05],[161.73637,-3.6091E-05],[161.73981,-3.6607E-05],[161.74325,-3.9185E-05],[161.74668,-3.6091E-05],[161.75012,-3.2482E-05],[161.75356,-3.4029E-05],[161.75699,-3.7638E-05],[161.76043,-3.7638E-05],[161.76387,-3.7638E-05],[161.76731,-3.7122E-05],[161.77074,-3.9185E-05],[161.77418,-3.97E-05],[161.77762,-3.2998E-05],[161.78106,-3.2998E-05],[161.78449,-3.4544E-05],[161.78793,-3.4029E-05],[161.79137,-3.5576E-05],[161.79481,-3.5576E-05],[161.79824,-3.6091E-05],[161.80168,-3.3513E-05],[161.80512,-3.0935E-05],[161.80855,-3.2998E-05],[161.81199,-3.4544E-05],[161.81543,-3.4544E-05],[161.81887,-3.6607E-05],[161.8223,-3.7122E-05],[161.82574,-3.1451E-05],[161.82918,-3.0935E-05],[161.83262,-3.2998E-05],[161.83605,-3.5576E-05],[161.83949,-4.1247E-05],[161.84293,-3.8154E-05],[161.84637,-3.6091E-05],[161.8498,-3.6607E-05],[161.85324,-3.4544E-05],[161.85668,-3.6091E-05],[161.86011,-3.6091E-05],[161.86355,-3.8154E-05],[161.86699,-3.6607E-05],[161.87043,-3.6091E-05]]}
-{"quant":[162.02,0.90097],"mems":[[161.92199,-4.1763E-05],[161.92542,-3.8154E-05],[161.92886,-3.8154E-05],[161.9323,-3.5576E-05],[161.93574,-3.6091E-05],[161.93917,-3.1967E-05],[161.94261,-3.5576E-05],[161.94605,-3.8669E-05],[161.94949,-3.2998E-05],[161.95292,-3.1451E-05],[161.95636,-3.2998E-05],[161.9598,-3.7122E-05],[161.96323,-3.7122E-05],[161.96667,-3.7122E-05],[161.97011,-3.9185E-05],[161.97355,-3.5576E-05],[161.97698,-3.6607E-05],[161.98042,-3.5576E-05],[161.98386,-3.506E-05],[161.9873,-3.8669E-05],[161.99073,-3.1451E-05],[161.99417,-3.3513E-05],[161.99761,-3.2998E-05],[162.00105,-3.1967E-05],[162.00448,-3.97E-05],[162.00792,-3.1451E-05],[162.01136,-2.9904E-05],[162.01479,-3.7122E-05],[162.01823,-3.5576E-05],[162.02167,-3.5576E-05],[162.02511,-3.4544E-05],[162.02854,-3.2998E-05],[162.03198,-3.2482E-05],[162.03542,-3.3513E-05],[162.03886,-3.7122E-05],[162.04229,-3.2998E-05],[162.04573,-2.9389E-05],[162.04917,-3.506E-05],[162.05261,-3.6091E-05],[162.05604,-3.8154E-05],[162.05948,-3.7122E-05],[162.06292,-3.8154E-05],[162.06635,-3.8154E-05],[162.06979,-3.1451E-05],[162.07323,-3.3513E-05],[162.07667,-3.6091E-05],[162.0801,-3.506E-05],[162.08354,-3.6091E-05],[162.08698,-3.6607E-05],[162.09042,-3.3513E-05],[162.09385,-3.3513E-05],[162.09729,-3.6091E-05],[162.10073,-3.7122E-05],[162.10417,-3.9185E-05],[162.1076,-3.8154E-05],[162.11104,-3.7122E-05],[162.11448,-3.8154E-05],[162.11791,-3.7638E-05],[162.12135,-3.7638E-05],[162.12479,-3.6607E-05],[162.12823,-3.5576E-05],[162.13166,-3.4029E-05],[162.1351,-3.5576E-05],[162.13854,-3.6607E-05],[162.14198,-3.4544E-05],[162.14541,-3.4544E-05],[162.14885,-3.506E-05],[162.15229,-3.6091E-05],[162.15573,-3.7638E-05],[162.15916,-4.0216E-05],[162.1626,-4.1763E-05],[162.16604,-3.9185E-05],[162.16947,-3.8669E-05],[162.17291,-3.7122E-05],[162.17635,-3.5576E-05],[162.17979,-3.8669E-05],[162.18322,-3.6607E-05],[162.18666,-3.5576E-05],[162.1901,-3.8154E-05],[162.19354,-3.506E-05],[162.19697,-3.506E-05],[162.20041,-4.0732E-05],[162.20385,-4.0216E-05],[162.20729,-3.506E-05],[162.21072,-3.7638E-05],[162.21416,-3.7638E-05],[162.2176,-3.6607E-05]]}
-{"quant":[162.367,0.91378],"mems":[[162.26916,-3.6091E-05],[162.27259,-3.3513E-05],[162.27603,-3.7638E-05],[162.27947,-3.8154E-05],[162.28291,-3.8154E-05],[162.28634,-3.4544E-05],[162.28978,-3.5576E-05],[162.29322,-3.97E-05],[162.29666,-3.6091E-05],[162.30009,-3.97E-05],[162.30353,-3.8669E-05],[162.30697,-3.6607E-05],[162.31041,-3.7122E-05],[162.31384,-3.9185E-05],[162.31728,-4.0732E-05],[162.32072,-3.8154E-05],[162.32415,-3.7638E-05],[162.32759,-3.8669E-05],[162.33103,-3.8154E-05],[162.33447,-3.5576E-05],[162.3379,-4.0216E-05],[162.34134,-3.9185E-05],[162.34478,-3.7638E-05],[162.34822,-3.8669E-05],[162.35165,-3.4029E-05],[162.35509,-3.8154E-05],[162.35853,-4.2794E-05],[162.36197,-3.9185E-05],[162.3654,-3.6607E-05],[162.36884,-3.4544E-05],[162.37228,-3.3513E-05],[162.37571,-3.8154E-05],[162.37915,-3.7122E-05],[162.38259,-3.506E-05],[162.38603,-3.7638E-05],[162.38946,-3.4544E-05],[162.3929,-3.7638E-05],[162.39634,-4.2278E-05],[162.39978,-3.7638E-05],[162.40321,-3.8154E-05],[162.40665,-3.8669E-05],[162.41009,-3.7638E-05],[162.41353,-3.8669E-05],[162.41696,-3.8669E-05],[162.4204,-3.97E-05],[162.42384,-3.7122E-05],[162.42727,-2.9904E-05],[162.43071,-3.3513E-05],[162.43415,-4.0732E-05],[162.43759,-3.5576E-05],[162.44102,-3.2998E-05],[162.44446,-3.4029E-05],[162.4479,-3.506E-05],[162.45134,-3.97E-05],[162.45477,-3.6607E-05],[162.45821,-3.4029E-05],[162.46165,-3.7638E-05],[162.46509,-3.7638E-05],[162.46852,-3.506E-05],[162.47196,-3.3513E-05],[162.4754,-3.4029E-05],[162.47883,-3.8154E-05],[162.48227,-3.9185E-05],[162.48571,-3.8154E-05],[162.48915,-3.8154E-05],[162.49258,-3.7122E-05],[162.49602,-3.5576E-05],[162.49946,-3.4544E-05],[162.5029,-3.6607E-05],[162.50633,-3.2998E-05],[162.50977,-3.6091E-05],[162.51321,-3.506E-05],[162.51665,-3.4029E-05],[162.52008,-3.97E-05],[162.52352,-3.6091E-05],[162.52696,-3.7122E-05],[162.53039,-3.7638E-05],[162.53383,-3.8669E-05],[162.53727,-4.1763E-05],[162.54071,-3.97E-05],[162.54414,-4.1763E-05],[162.54758,-4.0732E-05],[162.55102,-3.6607E-05],[162.55446,-3.97E-05],[162.55789,-4.0216E-05],[162.56133,-3.8154E-05],[162.56477,-3.7122E-05]]}
-{"quant":[162.728,0.93017],"mems":[[162.63008,-3.4544E-05],[162.63351,-3.6091E-05],[162.63695,-3.6607E-05],[162.64039,-3.8669E-05],[162.64383,-3.97E-05],[162.64726,-3.7638E-05],[162.6507,-3.0935E-05],[162.65414,-3.7638E-05],[162.65758,-4.3309E-05],[162.66101,-3.7638E-05],[162.66445,-3.97E-05],[162.66789,-4.2278E-05],[162.67133,-3.8669E-05],[162.67476,-3.5576E-05],[162.6782,-3.8154E-05],[162.68164,-3.7638E-05],[162.68507,-3.2998E-05],[162.68851,-3.2998E-05],[162.69195,-3.4029E-05],[162.69539,-3.042E-05],[162.69882,-3.2998E-05],[162.70226,-3.7122E-05],[162.7057,-3.7122E-05],[162.70914,-3.9185E-05],[162.71257,-3.506E-05],[162.71601,-3.8154E-05],[162.71945,-3.97E-05],[162.72289,-3.6091E-05],[162.72632,-3.4029E-05],[162.72976,-3.3513E-05],[162.7332,-3.97E-05],[162.73663,-3.7638E-05],[162.74007,-3.8154E-05],[162.74351,-3.6607E-05],[162.74695,-3.7638E-05],[162.75038,-4.2794E-05],[162.75382,-3.6607E-05],[162.75726,-3.7122E-05],[162.7607,-3.8669E-05],[162.76413,-4.1247E-05],[162.76757,-4.1247E-05],[162.77101,-3.4544E-05],[162.77445,-3.6607E-05],[162.77788,-3.506E-05],[162.78132,-3.4029E-05],[162.78476,-3.9185E-05],[162.78819,-3.6091E-05],[162.79163,-3.5576E-05],[162.79507,-3.8669E-05],[162.79851,-3.9185E-05],[162.80194,-3.97E-05],[162.80538,-3.8669E-05],[162.80882,-3.5576E-05],[162.81226,-3.3513E-05],[162.81569,-3.4029E-05],[162.81913,-3.6091E-05],[162.82257,-3.6091E-05],[162.82601,-3.2998E-05],[162.82944,-3.5576E-05],[162.83288,-3.506E-05],[162.83632,-3.5576E-05],[162.83975,-4.1763E-05],[162.84319,-3.6091E-05],[162.84663,-3.2482E-05],[162.85007,-3.7122E-05],[162.8535,-3.8669E-05],[162.85694,-3.8669E-05],[162.86038,-3.8154E-05],[162.86382,-3.4544E-05],[162.86725,-3.1451E-05],[162.87069,-3.506E-05],[162.87413,-4.0216E-05],[162.87757,-3.8669E-05],[162.881,-3.7638E-05],[162.88444,-3.7638E-05],[162.88788,-3.6091E-05],[162.89131,-3.506E-05],[162.89475,-3.7122E-05],[162.89819,-4.0732E-05],[162.90163,-4.1763E-05],[162.90506,-4.0216E-05],[162.9085,-3.6607E-05],[162.91194,-3.1967E-05],[162.91538,-3.7638E-05],[162.91881,-4.1763E-05],[162.92225,-3.4544E-05],[162.92569,-3.4544E-05]]}
-{"quant":[163.111,0.95767],"mems":[[163.01165,-3.8669E-05],[163.01509,-3.7638E-05],[163.01853,-3.7122E-05],[163.02197,-3.9185E-05],[163.02541,-3.5576E-05],[163.02884,-3.4029E-05],[163.03228,-3.6607E-05],[163.03572,-3.5576E-05],[163.03916,-3.6091E-05],[163.0426,-3.97E-05],[163.04604,-3.7638E-05],[163.04948,-3.2998E-05],[163.05291,-3.4544E-05],[163.05635,-3.5576E-05],[163.05979,-3.5576E-05],[163.06323,-3.6091E-05],[163.06667,-3.2998E-05],[163.07011,-3.0935E-05],[163.07355,-3.4029E-05],[163.07699,-3.8154E-05],[163.08042,-3.7638E-05],[163.08386,-3.6091E-05],[163.0873,-3.6091E-05],[163.09074,-3.506E-05],[163.09418,-3.5576E-05],[163.09762,-3.4029E-05],[163.10106,-3.6091E-05],[163.10449,-3.7122E-05],[163.10793,-3.506E-05],[163.11137,-3.5576E-05],[163.11481,-3.1967E-05],[163.11825,-3.506E-05],[163.12169,-4.0216E-05],[163.12513,-3.7638E-05],[163.12857,-3.506E-05],[163.132,-3.3513E-05],[163.13544,-3.6091E-05],[163.13888,-3.7638E-05],[163.14232,-3.6607E-05],[163.14576,-3.6607E-05],[163.1492,-3.5576E-05],[163.15264,-3.5576E-05],[163.15607,-3.8154E-05],[163.15951,-3.6091E-05],[163.16295,-3.6607E-05],[163.16639,-3.6607E-05],[163.16983,-3.4544E-05],[163.17327,-3.7122E-05],[163.17671,-3.8154E-05],[163.18015,-3.7122E-05],[163.18358,-3.7122E-05],[163.18702,-3.8669E-05],[163.19046,-3.6607E-05],[163.1939,-3.8669E-05],[163.19734,-3.8154E-05],[163.20078,-3.7122E-05],[163.20422,-3.9185E-05],[163.20765,-3.3513E-05],[163.21109,-3.8669E-05],[163.21453,-4.3309E-05],[163.21797,-3.7638E-05],[163.22141,-3.6091E-05],[163.22485,-3.6607E-05],[163.22829,-3.6091E-05],[163.23173,-3.4029E-05],[163.23516,-3.5576E-05],[163.2386,-3.9185E-05],[163.24204,-3.8669E-05],[163.24548,-3.2482E-05],[163.24892,-3.7122E-05],[163.25236,-4.1247E-05],[163.2558,-3.8669E-05],[163.25923,-3.8154E-05],[163.26267,-3.4544E-05],[163.26611,-3.2998E-05],[163.26955,-3.1451E-05],[163.27299,-3.5576E-05],[163.27643,-3.8154E-05],[163.27987,-3.7638E-05],[163.28331,-4.0216E-05],[163.28674,-4.1247E-05],[163.29018,-3.8669E-05],[163.29362,-3.2482E-05],[163.29706,-3.506E-05],[163.3005,-3.7638E-05],[163.30394,-3.4544E-05],[163.30738,-3.4544E-05],[163.31081,-3.3513E-05]]}
-{"quant":[163.535,0.99847],"mems":[[163.43805,-3.7122E-05],[163.44148,-3.8669E-05],[163.44492,-3.8154E-05],[163.44836,-3.3513E-05],[163.4518,-3.7122E-05],[163.45524,-3.7638E-05],[163.45868,-3.6607E-05],[163.46212,-3.8669E-05],[163.46555,-3.7122E-05],[163.46899,-3.6091E-05],[163.47243,-3.7122E-05],[163.47587,-3.506E-05],[163.47931,-3.4029E-05],[163.48275,-4.0216E-05],[163.48619,-4.1763E-05],[163.48963,-3.7638E-05],[163.49306,-3.6607E-05],[163.4965,-3.506E-05],[163.49994,-3.4544E-05],[163.50338,-3.506E-05],[163.50682,-3.1967E-05],[163.51026,-3.4029E-05],[163.5137,-3.97E-05],[163.51713,-3.5576E-05],[163.52057,-3.5576E-05],[163.52401,-3.7638E-05],[163.52745,-3.9185E-05],[163.53089,-3.97E-05],[163.53433,-3.6607E-05],[163.53777,-3.7122E-05],[163.54121,-3.7122E-05],[163.54464,-3.506E-05],[163.54808,-3.2998E-05],[163.55152,-4.0216E-05],[163.55496,-3.9185E-05],[163.5584,-3.1451E-05],[163.56184,-3.8669E-05],[163.56528,-3.9185E-05],[163.56871,-3.7122E-05],[163.57215,-3.7122E-05],[163.57559,-3.506E-05],[163.57903,-3.7638E-05],[163.58247,-4.0216E-05],[163.58591,-3.7638E-05],[163.58935,-3.6091E-05],[163.59279,-3.7638E-05],[163.59622,-3.8669E-05],[163.59966,-3.7122E-05],[163.6031,-3.3513E-05],[163.60654,-3.3513E-05],[163.60998,-3.8154E-05],[163.61342,-4.1763E-05],[163.61686,-3.9185E-05],[163.62029,-3.9185E-05],[163.62373,-4.0216E-05],[163.62717,-4.0216E-05],[163.63061,-4.1763E-05],[163.63405,-3.6607E-05],[163.63749,-3.5576E-05],[163.64093,-4.1247E-05],[163.64437,-3.7122E-05],[163.6478,-3.4029E-05],[163.65124,-3.8669E-05],[163.65468,-3.4029E-05],[163.65812,-3.506E-05],[163.66156,-4.0216E-05],[163.665,-3.3513E-05],[163.66844,-3.042E-05],[163.67187,-3.4544E-05],[163.67531,-3.9185E-05],[163.67875,-3.97E-05],[163.68219,-3.6091E-05],[163.68563,-3.2482E-05],[163.68907,-3.2482E-05],[163.69251,-3.6607E-05],[163.69595,-4.0216E-05],[163.69938,-3.8154E-05],[163.70282,-3.3513E-05],[163.70626,-3.4029E-05],[163.7097,-3.4544E-05],[163.71314,-3.506E-05],[163.71658,-3.1967E-05],[163.72002,-3.3513E-05],[163.72345,-4.1763E-05],[163.72689,-3.8154E-05],[163.73033,-3.3513E-05],[163.73377,-3.506E-05]]}
-{"quant":[163.9,1.0324],"mems":[[163.80254,-3.9185E-05],[163.80598,-3.6607E-05],[163.80942,-3.506E-05],[163.81286,-3.8154E-05],[163.8163,-3.7122E-05],[163.81974,-3.6607E-05],[163.82318,-3.8669E-05],[163.82661,-3.4029E-05],[163.83005,-3.3513E-05],[163.83349,-3.4029E-05],[163.83693,-3.97E-05],[163.84037,-4.2794E-05],[163.84381,-4.0732E-05],[163.84725,-3.8669E-05],[163.85069,-3.506E-05],[163.85412,-3.506E-05],[163.85756,-3.8154E-05],[163.861,-4.1247E-05],[163.86444,-3.9185E-05],[163.86788,-3.6091E-05],[163.87132,-3.7638E-05],[163.87476,-3.8154E-05],[163.87819,-3.6607E-05],[163.88163,-3.8669E-05],[163.88507,-3.97E-05],[163.88851,-3.7638E-05],[163.89195,-3.506E-05],[163.89539,-3.6091E-05],[163.89883,-3.8154E-05],[163.90227,-3.5576E-05],[163.9057,-3.8154E-05],[163.90914,-3.6091E-05],[163.91258,-3.4544E-05],[163.91602,-3.97E-05],[163.91946,-3.6091E-05],[163.9229,-3.7638E-05],[163.92634,-3.7638E-05],[163.92977,-3.4029E-05],[163.93321,-3.7638E-05],[163.93665,-3.6607E-05],[163.94009,-3.97E-05],[163.94353,-3.8154E-05],[163.94697,-3.506E-05],[163.95041,-4.0732E-05],[163.95385,-3.8669E-05],[163.95728,-3.8154E-05],[163.96072,-4.1763E-05],[163.96416,-4.1763E-05],[163.9676,-3.7638E-05],[163.97104,-3.1451E-05],[163.97448,-3.8154E-05],[163.97792,-3.97E-05],[163.98135,-3.7122E-05],[163.98479,-3.506E-05],[163.98823,-3.0935E-05],[163.99167,-3.506E-05],[163.99511,-3.3513E-05],[163.99855,-3.3513E-05],[164.00199,-3.4029E-05],[164.00543,-3.1451E-05],[164.00886,-3.5576E-05],[164.0123,-3.7122E-05],[164.01574,-3.5576E-05],[164.01918,-3.6091E-05],[164.02262,-3.6091E-05],[164.02606,-3.2482E-05],[164.0295,-3.4029E-05],[164.03293,-3.5576E-05],[164.03637,-3.7638E-05],[164.03981,-3.6607E-05],[164.04325,-3.6091E-05],[164.04669,-3.7638E-05],[164.05013,-3.506E-05],[164.05357,-3.7638E-05],[164.05701,-3.9185E-05],[164.06044,-3.9185E-05],[164.06388,-3.8154E-05],[164.06732,-3.2482E-05],[164.07076,-3.7122E-05],[164.0742,-3.8154E-05],[164.07764,-3.6091E-05],[164.08108,-3.97E-05],[164.08451,-3.4544E-05],[164.08795,-3.2998E-05],[164.09139,-3.5576E-05],[164.09483,-3.5576E-05],[164.09827,-3.6091E-05]]}
-{"quant":[164.236,1.0484],"mems":[[164.13609,-4.0732E-05],[164.13953,-3.7122E-05],[164.14297,-3.7638E-05],[164.14641,-3.2998E-05],[164.14985,-3.4544E-05],[164.15329,-3.6091E-05],[164.15673,-3.4029E-05],[164.16017,-3.8154E-05],[164.1636,-3.9185E-05],[164.16704,-4.0216E-05],[164.17048,-3.7638E-05],[164.17392,-3.9185E-05],[164.17736,-4.0732E-05],[164.1808,-3.6607E-05],[164.18424,-3.8154E-05],[164.18767,-3.4029E-05],[164.19111,-3.4029E-05],[164.19455,-3.8669E-05],[164.19799,-3.506E-05],[164.20143,-3.2998E-05],[164.20487,-3.6607E-05],[164.20831,-3.97E-05],[164.21175,-3.6607E-05],[164.21518,-3.3513E-05],[164.21862,-3.4544E-05],[164.22206,-3.5576E-05],[164.2255,-3.7122E-05],[164.22894,-3.3513E-05],[164.23238,-3.6091E-05],[164.23582,-3.7122E-05],[164.23925,-3.4029E-05],[164.24269,-3.6091E-05],[164.24613,-3.6091E-05],[164.24957,-3.7122E-05],[164.25301,-3.97E-05],[164.25645,-4.2794E-05],[164.25989,-3.97E-05],[164.26333,-3.2998E-05],[164.26676,-3.5576E-05],[164.2702,-3.7122E-05],[164.27364,-3.506E-05],[164.27708,-3.97E-05],[164.28052,-3.8669E-05],[164.28396,-3.4029E-05],[164.2874,-3.5576E-05],[164.29083,-3.506E-05],[164.29427,-3.8669E-05],[164.29771,-3.9185E-05],[164.30115,-3.7638E-05],[164.30459,-3.9185E-05],[164.30803,-3.7122E-05],[164.31147,-3.9185E-05],[164.31491,-3.9185E-05],[164.31834,-3.5576E-05],[164.32178,-3.6607E-05],[164.32522,-3.4029E-05],[164.32866,-3.506E-05],[164.3321,-3.8669E-05],[164.33554,-3.6607E-05],[164.33898,-3.6091E-05],[164.34241,-3.506E-05],[164.34585,-3.7122E-05],[164.34929,-3.6607E-05],[164.35273,-3.6091E-05],[164.35617,-3.8154E-05],[164.35961,-3.9185E-05],[164.36305,-3.7122E-05],[164.36649,-3.5576E-05],[164.36992,-3.7638E-05],[164.37336,-3.4029E-05],[164.3768,-3.4544E-05],[164.38024,-3.506E-05],[164.38368,-3.5576E-05],[164.38712,-3.7122E-05],[164.39056,-3.7122E-05],[164.39399,-3.8154E-05],[164.39743,-3.6607E-05],[164.40087,-3.6607E-05],[164.40431,-3.506E-05],[164.40775,-3.97E-05],[164.41119,-4.4341E-05],[164.41463,-4.0216E-05],[164.41807,-4.0732E-05],[164.4215,-3.97E-05],[164.42494,-3.7638E-05],[164.42838,-3.7638E-05],[164.43182,-3.506E-05],[164.43526,-3.506E-05]]}
-{"quant":[164.609,1.0501],"mems":[[164.51091,-3.1967E-05],[164.51435,-3.1967E-05],[164.51779,-3.7638E-05],[164.52123,-3.506E-05],[164.52466,-3.4029E-05],[164.5281,-3.3513E-05],[164.53154,-3.4029E-05],[164.53498,-3.97E-05],[164.53842,-3.6607E-05],[164.54186,-3.8154E-05],[164.5453,-3.8669E-05],[164.54873,-3.1967E-05],[164.55217,-3.5576E-05],[164.55561,-3.8669E-05],[164.55905,-3.4544E-05],[164.56249,-3.506E-05],[164.56593,-3.6607E-05],[164.56937,-3.8154E-05],[164.57281,-3.5576E-05],[164.57624,-3.4029E-05],[164.57968,-3.97E-05],[164.58312,-3.7638E-05],[164.58656,-3.506E-05],[164.59,-3.5576E-05],[164.59344,-3.506E-05],[164.59688,-3.8154E-05],[164.60031,-3.506E-05],[164.60375,-3.4544E-05],[164.60719,-3.4029E-05],[164.61063,-2.9904E-05],[164.61407,-3.4029E-05],[164.61751,-4.0216E-05],[164.62095,-3.8154E-05],[164.62439,-3.3513E-05],[164.62782,-3.5576E-05],[164.63126,-3.8669E-05],[164.6347,-3.7122E-05],[164.63814,-3.8669E-05],[164.64158,-3.8669E-05],[164.64502,-3.042E-05],[164.64846,-3.1451E-05],[164.65189,-3.6607E-05],[164.65533,-3.7638E-05],[164.65877,-3.8669E-05],[164.66221,-3.6091E-05],[164.66565,-3.3513E-05],[164.66909,-3.1967E-05],[164.67253,-3.506E-05],[164.67597,-3.7638E-05],[164.6794,-3.97E-05],[164.68284,-4.1763E-05],[164.68628,-3.8669E-05],[164.68972,-3.7122E-05],[164.69316,-3.6091E-05],[164.6966,-3.6091E-05],[164.70004,-3.8669E-05],[164.70347,-3.7638E-05],[164.70691,-3.6091E-05],[164.71035,-3.8669E-05],[164.71379,-3.97E-05],[164.71723,-3.8669E-05],[164.72067,-3.8669E-05],[164.72411,-3.6091E-05],[164.72755,-3.4029E-05],[164.73098,-3.3513E-05],[164.73442,-3.506E-05],[164.73786,-4.3309E-05],[164.7413,-4.1247E-05],[164.74474,-3.2998E-05],[164.74818,-3.1451E-05],[164.75162,-3.2998E-05],[164.75505,-3.8669E-05],[164.75849,-3.97E-05],[164.76193,-3.6091E-05],[164.76537,-3.4029E-05],[164.76881,-3.5576E-05],[164.77225,-3.7638E-05],[164.77569,-4.2278E-05],[164.77913,-4.1763E-05],[164.78256,-3.6091E-05],[164.786,-3.7122E-05],[164.78944,-3.506E-05],[164.79288,-3.6607E-05],[164.79632,-3.9185E-05],[164.79976,-3.7122E-05],[164.8032,-3.6091E-05],[164.80663,-3.7122E-05]]}
-{"quant":[164.964,1.0526],"mems":[[164.86509,-3.7122E-05],[164.86853,-3.8154E-05],[164.87197,-3.7122E-05],[164.87541,-3.97E-05],[164.87885,-3.8669E-05],[164.88229,-3.5576E-05],[164.88572,-3.506E-05],[164.88916,-3.1451E-05],[164.8926,-3.2998E-05],[164.89604,-3.9185E-05],[164.89948,-3.7638E-05],[164.90292,-3.6091E-05],[164.90636,-3.7122E-05],[164.90979,-3.6091E-05],[164.91323,-4.0732E-05],[164.91667,-4.4856E-05],[164.92011,-3.506E-05],[164.92355,-3.2482E-05],[164.92699,-3.4544E-05],[164.93043,-3.3513E-05],[164.93387,-3.6607E-05],[164.9373,-3.4544E-05],[164.94074,-3.8669E-05],[164.94418,-3.7638E-05],[164.94762,-3.4544E-05],[164.95106,-3.7638E-05],[164.9545,-3.3513E-05],[164.95794,-3.4544E-05],[164.96137,-3.7122E-05],[164.96481,-3.7638E-05],[164.96825,-3.7122E-05],[164.97169,-3.506E-05],[164.97513,-3.5576E-05],[164.97857,-3.8154E-05],[164.98201,-3.7122E-05],[164.98545,-3.4029E-05],[164.98888,-3.6091E-05],[164.99232,-3.9185E-05],[164.99576,-4.1247E-05],[164.9992,-3.8154E-05],[165.00264,-3.6607E-05],[165.00608,-3.7122E-05],[165.00952,-3.4544E-05],[165.01295,-3.5576E-05],[165.01639,-3.7638E-05],[165.01983,-3.6091E-05],[165.02327,-3.2998E-05],[165.02671,-3.6607E-05],[165.03015,-3.8669E-05],[165.03359,-3.6607E-05],[165.03703,-3.4544E-05],[165.04046,-3.5576E-05],[165.0439,-3.9185E-05],[165.04734,-3.6091E-05],[165.05078,-3.3513E-05],[165.05422,-3.4544E-05],[165.05766,-3.97E-05],[165.0611,-3.6091E-05],[165.06453,-3.042E-05],[165.06797,-3.5576E-05],[165.07141,-3.506E-05],[165.07485,-3.7122E-05],[165.07829,-3.7122E-05],[165.08173,-3.2998E-05],[165.08517,-3.4544E-05],[165.08861,-3.4544E-05],[165.09204,-3.4544E-05],[165.09548,-3.4544E-05],[165.09892,-3.4029E-05],[165.10236,-3.7122E-05],[165.1058,-3.2998E-05],[165.10924,-3.1451E-05],[165.11268,-4.0216E-05],[165.11611,-4.0732E-05],[165.11955,-3.5576E-05],[165.12299,-3.6091E-05],[165.12643,-3.8154E-05],[165.12987,-3.3513E-05],[165.13331,-3.1451E-05],[165.13675,-3.5576E-05],[165.14019,-3.4544E-05],[165.14362,-3.4029E-05],[165.14706,-3.6091E-05],[165.1505,-3.5576E-05],[165.15394,-3.6607E-05],[165.15738,-3.5576E-05],[165.16082,-3.7122E-05]]}
-{"quant":[165.348,1.0695],"mems":[[165.25022,-3.7638E-05],[165.25366,-3.7122E-05],[165.2571,-3.7122E-05],[165.26054,-4.1247E-05],[165.26398,-4.0732E-05],[165.26742,-3.506E-05],[165.27085,-3.6091E-05],[165.27429,-3.97E-05],[165.27773,-3.2998E-05],[165.28117,-3.6091E-05],[165.28461,-3.97E-05],[165.28805,-3.7638E-05],[165.29149,-3.97E-05],[165.29493,-3.8669E-05],[165.29836,-3.6607E-05],[165.3018,-3.4544E-05],[165.30524,-3.4544E-05],[165.30868,-3.6091E-05],[165.31212,-3.9185E-05],[165.31556,-4.1247E-05],[165.319,-3.8154E-05],[165.32243,-4.0732E-05],[165.32587,-4.1763E-05],[165.32931,-3.8154E-05],[165.33275,-3.2998E-05],[165.33619,-3.4544E-05],[165.33963,-3.7638E-05],[165.34307,-3.3513E-05],[165.34651,-3.2998E-05],[165.34994,-3.4544E-05],[165.35338,-3.6607E-05],[165.35682,-3.7122E-05],[165.36026,-3.2482E-05],[165.3637,-3.5576E-05],[165.36714,-3.7638E-05],[165.37058,-3.5576E-05],[165.37401,-3.6607E-05],[165.37745,-3.8669E-05],[165.38089,-4.0216E-05],[165.38433,-3.7638E-05],[165.38777,-3.506E-05],[165.39121,-3.4029E-05],[165.39465,-3.6607E-05],[165.39809,-3.8154E-05],[165.40152,-3.5576E-05],[165.40496,-3.4544E-05],[165.4084,-3.8154E-05],[165.41184,-3.5576E-05],[165.41528,-3.3513E-05],[165.41872,-3.6607E-05],[165.42216,-3.8669E-05],[165.42559,-3.8154E-05],[165.42903,-3.5576E-05],[165.43247,-3.5576E-05],[165.43591,-3.6607E-05],[165.43935,-3.7122E-05],[165.44279,-3.4544E-05],[165.44623,-3.2998E-05],[165.44967,-3.97E-05],[165.4531,-3.6091E-05],[165.45654,-3.2998E-05],[165.45998,-3.97E-05],[165.46342,-4.0216E-05],[165.46686,-3.8154E-05],[165.4703,-3.6607E-05],[165.47374,-3.506E-05],[165.47717,-3.7638E-05],[165.48061,-3.7122E-05],[165.48405,-3.2998E-05],[165.48749,-3.506E-05],[165.49093,-3.7122E-05],[165.49437,-3.8154E-05],[165.49781,-3.8154E-05],[165.50125,-3.7122E-05],[165.50468,-3.2482E-05],[165.50812,-2.9389E-05],[165.51156,-3.6091E-05],[165.515,-3.7638E-05],[165.51844,-3.7122E-05],[165.52187,-3.7122E-05],[165.52531,-3.3513E-05],[165.52875,-3.2998E-05],[165.53219,-3.4544E-05],[165.53562,-4.0216E-05],[165.53906,-4.2278E-05],[165.5425,-4.1247E-05],[165.54594,-3.7122E-05],[165.54937,-3.7638E-05]]}
-{"quant":[165.725,1.1041],"mems":[[165.62843,-3.0935E-05],[165.63187,-3.7122E-05],[165.63531,-3.6091E-05],[165.63874,-3.6091E-05],[165.64218,-3.8669E-05],[165.64562,-3.506E-05],[165.64906,-3.5576E-05],[165.65249,-3.6091E-05],[165.65593,-3.506E-05],[165.65937,-3.4029E-05],[165.66281,-3.7122E-05],[165.66624,-4.0216E-05],[165.66968,-3.4544E-05],[165.67312,-3.6091E-05],[165.67655,-3.4544E-05],[165.67999,-3.1451E-05],[165.68343,-3.6607E-05],[165.68687,-3.4029E-05],[165.6903,-3.6091E-05],[165.69374,-4.2278E-05],[165.69718,-4.2278E-05],[165.70062,-4.0732E-05],[165.70405,-3.4544E-05],[165.70749,-3.506E-05],[165.71093,-3.8669E-05],[165.71437,-3.2482E-05],[165.7178,-3.3513E-05],[165.72124,-3.6607E-05],[165.72468,-3.5576E-05],[165.72811,-3.8154E-05],[165.73155,-3.5576E-05],[165.73499,-3.7122E-05],[165.73843,-3.8669E-05],[165.74186,-3.3513E-05],[165.7453,-3.3513E-05],[165.74874,-3.1967E-05],[165.75218,-3.4029E-05],[165.75561,-3.9185E-05],[165.75905,-3.8669E-05],[165.76249,-3.7122E-05],[165.76593,-3.4029E-05],[165.76936,-3.4544E-05],[165.7728,-3.97E-05],[165.77624,-3.6091E-05],[165.77967,-3.8669E-05],[165.78311,-3.97E-05],[165.78655,-3.4029E-05],[165.78999,-3.6607E-05],[165.79342,-3.506E-05],[165.79686,-3.7122E-05],[165.8003,-3.6607E-05],[165.80374,-3.2998E-05],[165.80717,-3.6091E-05],[165.81061,-3.7638E-05],[165.81405,-4.1247E-05],[165.81749,-3.7638E-05],[165.82092,-3.8669E-05],[165.82436,-3.6607E-05],[165.8278,-3.0935E-05],[165.83123,-3.7122E-05],[165.83467,-3.6091E-05],[165.83811,-3.6091E-05],[165.84155,-3.8669E-05],[165.84498,-3.2998E-05],[165.84842,-3.4029E-05],[165.85186,-3.7122E-05],[165.8553,-3.7122E-05],[165.85873,-3.9185E-05],[165.86217,-3.4029E-05],[165.86561,-3.1451E-05],[165.86905,-3.4544E-05],[165.87248,-3.4544E-05],[165.87592,-3.2482E-05],[165.87936,-3.4544E-05],[165.88279,-3.7122E-05],[165.88623,-3.4029E-05],[165.88967,-3.6091E-05],[165.89311,-3.8669E-05],[165.89654,-3.5576E-05],[165.89998,-3.7638E-05],[165.90342,-3.9185E-05],[165.90686,-3.506E-05],[165.91029,-3.506E-05],[165.91373,-3.8154E-05],[165.91717,-3.7638E-05],[165.92061,-3.8669E-05],[165.92404,-3.97E-05]]}
-{"quant":[166.09,1.142],"mems":[[165.99279,-3.3513E-05],[165.99623,-3.7638E-05],[165.99966,-3.4544E-05],[166.0031,-3.6091E-05],[166.00654,-3.97E-05],[166.00998,-3.506E-05],[166.01341,-3.5576E-05],[166.01685,-3.4544E-05],[166.02029,-3.4029E-05],[166.02373,-3.1967E-05],[166.02716,-2.9904E-05],[166.0306,-3.4544E-05],[166.03404,-3.6091E-05],[166.03747,-3.506E-05],[166.04091,-3.0935E-05],[166.04435,-3.2482E-05],[166.04779,-3.506E-05],[166.05122,-3.9185E-05],[166.05466,-3.7638E-05],[166.0581,-3.4029E-05],[166.06154,-3.8154E-05],[166.06497,-3.5576E-05],[166.06841,-3.9185E-05],[166.07185,-3.6607E-05],[166.07529,-2.8873E-05],[166.07872,-3.2998E-05],[166.08216,-3.4544E-05],[166.0856,-3.3513E-05],[166.08903,-3.2482E-05],[166.09247,-3.6091E-05],[166.09591,-3.6607E-05],[166.09935,-3.5576E-05],[166.10278,-3.506E-05],[166.10622,-3.506E-05],[166.10966,-3.8154E-05],[166.1131,-3.7638E-05],[166.11653,-3.7122E-05],[166.11997,-3.7122E-05],[166.12341,-3.8154E-05],[166.12685,-3.8154E-05],[166.13028,-3.6091E-05],[166.13372,-3.6607E-05],[166.13716,-3.7122E-05],[166.14059,-3.8154E-05],[166.14403,-3.8154E-05],[166.14747,-3.8154E-05],[166.15091,-4.1763E-05],[166.15434,-4.2278E-05],[166.15778,-3.506E-05],[166.16122,-3.3513E-05],[166.16466,-3.5576E-05],[166.16809,-3.4029E-05],[166.17153,-3.4544E-05],[166.17497,-3.506E-05],[166.17841,-3.6091E-05],[166.18184,-3.7638E-05],[166.18528,-3.97E-05],[166.18872,-4.0216E-05],[166.19215,-3.6091E-05],[166.19559,-3.6091E-05],[166.19903,-3.7638E-05],[166.20247,-3.7122E-05],[166.2059,-3.8154E-05],[166.20934,-3.8154E-05],[166.21278,-3.7122E-05],[166.21622,-3.7122E-05],[166.21965,-3.9185E-05],[166.22309,-3.6607E-05],[166.22653,-3.506E-05],[166.22997,-4.0216E-05],[166.2334,-4.1763E-05],[166.23684,-3.6607E-05],[166.24028,-3.2482E-05],[166.24371,-3.2482E-05],[166.24715,-3.2482E-05],[166.25059,-3.5576E-05],[166.25403,-4.0216E-05],[166.25746,-3.9185E-05],[166.2609,-3.4029E-05],[166.26434,-3.506E-05],[166.26778,-3.4544E-05],[166.27121,-3.506E-05],[166.27465,-4.1247E-05],[166.27809,-4.0732E-05],[166.28153,-3.5576E-05],[166.28496,-3.5576E-05],[166.2884,-3.97E-05]]}
-{"quant":[166.44,1.1648],"mems":[[166.3434,-3.3513E-05],[166.34683,-3.5576E-05],[166.35027,-4.3309E-05],[166.35371,-4.0732E-05],[166.35715,-3.8154E-05],[166.36058,-3.1967E-05],[166.36402,-3.2998E-05],[166.36746,-3.506E-05],[166.3709,-3.4029E-05],[166.37433,-3.6091E-05],[166.37777,-3.042E-05],[166.38121,-2.8873E-05],[166.38465,-3.0935E-05],[166.38808,-3.4029E-05],[166.39152,-3.5576E-05],[166.39496,-3.506E-05],[166.39839,-3.5576E-05],[166.40183,-3.7122E-05],[166.40527,-3.7122E-05],[166.40871,-3.3513E-05],[166.41214,-3.6607E-05],[166.41558,-3.5576E-05],[166.41902,-3.7122E-05],[166.42246,-3.7638E-05],[166.42589,-3.3513E-05],[166.42933,-3.7122E-05],[166.43277,-3.506E-05],[166.43621,-3.6091E-05],[166.43964,-4.1763E-05],[166.44308,-3.8154E-05],[166.44652,-3.1967E-05],[166.44995,-3.5576E-05],[166.45339,-3.97E-05],[166.45683,-3.7638E-05],[166.46027,-3.506E-05],[166.4637,-3.2998E-05],[166.46714,-3.7122E-05],[166.47058,-4.2278E-05],[166.47402,-4.0216E-05],[166.47745,-3.2998E-05],[166.48089,-3.1451E-05],[166.48433,-3.3513E-05],[166.48777,-3.4029E-05],[166.4912,-3.506E-05],[166.49464,-3.4029E-05],[166.49808,-3.7638E-05],[166.50151,-3.506E-05],[166.50495,-3.1967E-05],[166.50839,-3.8154E-05],[166.51183,-3.6607E-05],[166.51526,-4.0216E-05],[166.5187,-4.3309E-05],[166.52214,-3.8154E-05],[166.52558,-4.0216E-05],[166.52901,-4.0732E-05],[166.53245,-3.8154E-05],[166.53589,-4.0216E-05],[166.53933,-3.7122E-05],[166.54276,-3.3513E-05],[166.5462,-3.3513E-05],[166.54964,-3.042E-05],[166.55307,-3.506E-05],[166.55651,-3.7122E-05],[166.55995,-3.7122E-05],[166.56339,-3.8669E-05],[166.56682,-3.4029E-05],[166.57026,-3.7122E-05],[166.5737,-4.0216E-05],[166.57714,-4.0216E-05],[166.58057,-3.8154E-05],[166.58401,-3.506E-05],[166.58745,-3.506E-05],[166.59089,-3.4029E-05],[166.59432,-3.7638E-05],[166.59776,-3.8669E-05],[166.6012,-3.506E-05],[166.60463,-3.5576E-05],[166.60807,-3.5576E-05],[166.61151,-3.7122E-05],[166.61495,-4.0216E-05],[166.61838,-3.6091E-05],[166.62182,-3.6607E-05],[166.62526,-3.7638E-05],[166.6287,-3.5576E-05],[166.63213,-4.2794E-05],[166.63557,-4.0216E-05],[166.63901,-3.5576E-05]]}
-{"quant":[166.792,1.1669],"mems":[[166.69401,-3.5576E-05],[166.69744,-3.506E-05],[166.70088,-3.97E-05],[166.70432,-3.8154E-05],[166.70775,-3.5576E-05],[166.71119,-3.8154E-05],[166.71463,-3.6607E-05],[166.71807,-3.7122E-05],[166.7215,-3.5576E-05],[166.72494,-3.4029E-05],[166.72838,-3.7122E-05],[166.73182,-3.8669E-05],[166.73525,-3.6607E-05],[166.73869,-3.2998E-05],[166.74213,-3.4029E-05],[166.74557,-3.8154E-05],[166.749,-3.6607E-05],[166.75244,-3.5576E-05],[166.75588,-3.8154E-05],[166.75931,-3.6091E-05],[166.76275,-3.506E-05],[166.76619,-3.6091E-05],[166.76963,-3.6607E-05],[166.77306,-4.1247E-05],[166.7765,-3.8669E-05],[166.77994,-3.4029E-05],[166.78338,-3.2482E-05],[166.78681,-3.506E-05],[166.79025,-3.9185E-05],[166.79369,-3.4029E-05],[166.79713,-3.7638E-05],[166.80056,-3.97E-05],[166.804,-3.6607E-05],[166.80744,-4.1247E-05],[166.81087,-3.97E-05],[166.81431,-3.6607E-05],[166.81775,-3.7638E-05],[166.82119,-3.5576E-05],[166.82462,-3.506E-05],[166.82806,-3.5576E-05],[166.8315,-3.4544E-05],[166.83494,-3.6607E-05],[166.83837,-3.97E-05],[166.84181,-3.9185E-05],[166.84525,-3.506E-05],[166.84869,-3.9185E-05],[166.85212,-3.97E-05],[166.85556,-3.4029E-05],[166.859,-3.506E-05],[166.86243,-3.506E-05],[166.86587,-3.7638E-05],[166.86931,-4.3309E-05],[166.87275,-4.2794E-05],[166.87618,-3.6607E-05],[166.87962,-3.4544E-05],[166.88306,-3.5576E-05],[166.8865,-3.2998E-05],[166.88993,-3.4029E-05],[166.89337,-3.7122E-05],[166.89681,-3.6607E-05],[166.90025,-3.4544E-05],[166.90368,-3.0935E-05],[166.90712,-3.5576E-05],[166.91056,-3.97E-05],[166.91399,-3.4544E-05],[166.91743,-3.6091E-05],[166.92087,-3.5576E-05],[166.92431,-3.1967E-05],[166.92774,-3.2998E-05],[166.93118,-3.0935E-05],[166.93462,-3.2998E-05],[166.93806,-4.0216E-05],[166.94149,-3.8669E-05],[166.94493,-3.7122E-05],[166.94837,-3.8669E-05],[166.95181,-3.9185E-05],[166.95524,-3.8669E-05],[166.95868,-4.0732E-05],[166.96212,-4.2278E-05],[166.96555,-3.4029E-05],[166.96899,-3.506E-05],[166.97243,-4.0216E-05],[166.97587,-3.6091E-05],[166.9793,-3.7122E-05],[166.98274,-3.4544E-05],[166.98618,-3.2998E-05],[166.98962,-3.7638E-05]]}
-{"quant":[167.141,1.16],"mems":[[167.04118,-3.7638E-05],[167.04461,-3.7122E-05],[167.04805,-3.8669E-05],[167.05149,-3.6607E-05],[167.05493,-3.7122E-05],[167.05836,-3.5576E-05],[167.0618,-3.0935E-05],[167.06524,-3.6607E-05],[167.06867,-3.6091E-05],[167.07211,-3.6091E-05],[167.07555,-3.97E-05],[167.07899,-3.7638E-05],[167.08242,-3.97E-05],[167.08586,-3.4544E-05],[167.0893,-3.6091E-05],[167.09274,-3.9185E-05],[167.09617,-3.4029E-05],[167.09961,-3.4544E-05],[167.10305,-3.8154E-05],[167.10649,-3.9185E-05],[167.10992,-3.8669E-05],[167.11336,-3.9185E-05],[167.1168,-3.5576E-05],[167.12023,-3.7122E-05],[167.12367,-3.8669E-05],[167.12711,-3.506E-05],[167.13055,-4.0732E-05],[167.13398,-4.1763E-05],[167.13742,-3.6607E-05],[167.14086,-3.8669E-05],[167.1443,-3.3513E-05],[167.14773,-3.3513E-05],[167.15117,-4.2278E-05],[167.15461,-3.8669E-05],[167.15805,-3.8154E-05],[167.16148,-3.8154E-05],[167.16492,-3.4029E-05],[167.16836,-3.5576E-05],[167.17179,-3.4544E-05],[167.17523,-3.5576E-05],[167.17867,-3.9185E-05],[167.18211,-3.6607E-05],[167.18554,-3.5576E-05],[167.18898,-4.0216E-05],[167.19242,-3.8669E-05],[167.19586,-3.6607E-05],[167.19929,-3.7122E-05],[167.20273,-3.2998E-05],[167.20617,-3.5576E-05],[167.20961,-3.6091E-05],[167.21304,-3.3513E-05],[167.21648,-3.7122E-05],[167.21992,-3.8669E-05],[167.22335,-3.6607E-05],[167.22679,-3.4029E-05],[167.23023,-3.506E-05],[167.23367,-3.4544E-05],[167.2371,-3.6607E-05],[167.24054,-3.6607E-05],[167.24398,-3.506E-05],[167.24742,-3.6091E-05],[167.25085,-3.7638E-05],[167.25429,-3.9185E-05],[167.25773,-3.2998E-05],[167.26117,-3.506E-05],[167.2646,-3.6091E-05],[167.26804,-3.4029E-05],[167.27148,-3.6607E-05],[167.27491,-3.506E-05],[167.27835,-3.8669E-05],[167.28179,-3.4544E-05],[167.28523,-3.2998E-05],[167.28866,-3.6607E-05],[167.2921,-3.2482E-05],[167.29554,-3.7122E-05],[167.29898,-3.6607E-05],[167.30241,-3.7638E-05],[167.30585,-3.8154E-05],[167.30929,-3.8154E-05],[167.31273,-3.8669E-05],[167.31616,-4.0732E-05],[167.3196,-4.2794E-05],[167.32304,-3.2482E-05],[167.32647,-3.97E-05],[167.32991,-4.3309E-05],[167.33335,-3.7638E-05],[167.33679,-4.2794E-05],[167.34022,-3.4544E-05]]}
-{"quant":[167.484,1.1572],"mems":[[167.38491,-3.2998E-05],[167.38835,-3.8669E-05],[167.39178,-3.8669E-05],[167.39522,-3.1967E-05],[167.39866,-3.3513E-05],[167.4021,-3.2482E-05],[167.40553,-3.506E-05],[167.40897,-3.8669E-05],[167.41241,-3.7122E-05],[167.41585,-3.6607E-05],[167.41928,-3.1967E-05],[167.42272,-3.7122E-05],[167.42616,-4.1247E-05],[167.42959,-4.0216E-05],[167.43303,-4.6403E-05],[167.43647,-3.6607E-05],[167.43991,-2.9389E-05],[167.44334,-3.5576E-05],[167.44678,-3.7122E-05],[167.45022,-4.3825E-05],[167.45366,-4.3825E-05],[167.45709,-3.6091E-05],[167.46053,-3.8154E-05],[167.46397,-3.5576E-05],[167.46741,-3.2998E-05],[167.47084,-3.5576E-05],[167.47428,-3.4029E-05],[167.47772,-4.0216E-05],[167.48115,-3.7122E-05],[167.48459,-3.7638E-05],[167.48803,-4.3309E-05],[167.49147,-3.6607E-05],[167.4949,-3.6607E-05],[167.49834,-3.6091E-05],[167.50178,-3.506E-05],[167.50522,-3.2998E-05],[167.50865,-3.506E-05],[167.51209,-3.9185E-05],[167.51553,-3.4544E-05],[167.51897,-3.2482E-05],[167.5224,-3.2482E-05],[167.52584,-3.8669E-05],[167.52928,-4.0216E-05],[167.53271,-3.7122E-05],[167.53615,-3.97E-05],[167.53959,-3.8669E-05],[167.54303,-3.6607E-05],[167.54646,-3.6607E-05],[167.5499,-3.6607E-05],[167.55334,-3.6091E-05],[167.55678,-3.9185E-05],[167.56021,-3.6607E-05],[167.56365,-3.1451E-05],[167.56709,-3.3513E-05],[167.57053,-3.3513E-05],[167.57396,-3.3513E-05],[167.5774,-3.506E-05],[167.58084,-3.7122E-05],[167.58427,-3.8154E-05],[167.58771,-3.4029E-05],[167.59115,-3.6607E-05],[167.59459,-3.8669E-05],[167.59802,-3.506E-05],[167.60146,-3.7122E-05],[167.6049,-3.9185E-05],[167.60834,-3.506E-05],[167.61177,-3.4544E-05],[167.61521,-3.5576E-05],[167.61865,-3.506E-05],[167.62209,-3.6091E-05],[167.62552,-3.4029E-05],[167.62896,-3.2482E-05],[167.6324,-3.7638E-05],[167.63583,-4.0216E-05],[167.63927,-3.8669E-05],[167.64271,-3.8669E-05],[167.64615,-3.7122E-05],[167.64958,-3.506E-05],[167.65302,-3.7122E-05],[167.65646,-3.8154E-05],[167.6599,-3.6607E-05],[167.66333,-3.506E-05],[167.66677,-3.506E-05],[167.67021,-3.9185E-05],[167.67365,-4.0216E-05],[167.67708,-4.0216E-05],[167.68052,-3.5576E-05],[167.68396,-3.1967E-05]]}
-{"quant":[167.85,1.1651],"mems":[[167.7527,-3.6607E-05],[167.75614,-3.5576E-05],[167.75958,-3.5576E-05],[167.76302,-3.7638E-05],[167.76645,-3.7638E-05],[167.76989,-3.8154E-05],[167.77333,-4.1247E-05],[167.77677,-4.2278E-05],[167.7802,-3.8669E-05],[167.78364,-3.4029E-05],[167.78708,-3.8669E-05],[167.79051,-3.6607E-05],[167.79395,-3.506E-05],[167.79739,-3.97E-05],[167.80083,-3.506E-05],[167.80426,-3.6091E-05],[167.8077,-3.6091E-05],[167.81114,-3.8154E-05],[167.81458,-4.1247E-05],[167.81801,-3.506E-05],[167.82145,-3.2482E-05],[167.82489,-3.8154E-05],[167.82833,-4.0216E-05],[167.83176,-3.8154E-05],[167.8352,-3.7638E-05],[167.83864,-3.1967E-05],[167.84207,-3.4029E-05],[167.84551,-3.7122E-05],[167.84895,-3.7122E-05],[167.85239,-3.97E-05],[167.85582,-3.4544E-05],[167.85926,-3.4544E-05],[167.8627,-3.5576E-05],[167.86614,-3.506E-05],[167.86957,-3.7638E-05],[167.87301,-3.506E-05],[167.87645,-3.6091E-05],[167.87989,-3.8669E-05],[167.88332,-3.6091E-05],[167.88676,-3.8154E-05],[167.8902,-4.3309E-05],[167.89363,-3.7638E-05],[167.89707,-3.5576E-05],[167.90051,-3.7638E-05],[167.90395,-3.2482E-05],[167.90738,-3.6091E-05],[167.91082,-3.8154E-05],[167.91426,-3.506E-05],[167.9177,-3.7638E-05],[167.92113,-3.6607E-05],[167.92457,-3.7122E-05],[167.92801,-3.7122E-05],[167.93145,-3.5576E-05],[167.93488,-4.0732E-05],[167.93832,-3.8669E-05],[167.94176,-3.0935E-05],[167.94519,-3.7122E-05],[167.94863,-4.1247E-05],[167.95207,-3.9185E-05],[167.95551,-3.7122E-05],[167.95894,-3.0935E-05],[167.96238,-3.5576E-05],[167.96582,-3.9185E-05],[167.96926,-3.7122E-05],[167.97269,-3.9185E-05],[167.97613,-3.9185E-05],[167.97957,-3.7122E-05],[167.98301,-3.6607E-05],[167.98644,-3.9185E-05],[167.98988,-3.9185E-05],[167.99332,-3.7122E-05],[167.99675,-3.8154E-05],[168.00019,-3.7122E-05],[168.00363,-3.506E-05],[168.00707,-3.506E-05],[168.0105,-4.0732E-05],[168.01394,-4.0216E-05],[168.01738,-3.5576E-05],[168.02082,-3.4544E-05],[168.02425,-3.4029E-05],[168.02769,-3.7638E-05],[168.03113,-3.8154E-05],[168.03457,-3.3513E-05],[168.038,-3.1451E-05],[168.04144,-3.4544E-05],[168.04488,-3.3513E-05],[168.04831,-3.4029E-05]]}
-{"quant":[168.237,1.1782],"mems":[[168.1377,-3.6091E-05],[168.14114,-3.4029E-05],[168.14458,-3.506E-05],[168.14802,-3.1967E-05],[168.15146,-3.7638E-05],[168.1549,-3.9185E-05],[168.15833,-3.8669E-05],[168.16177,-3.8669E-05],[168.16521,-3.6607E-05],[168.16865,-3.7122E-05],[168.17209,-3.2482E-05],[168.17553,-3.6607E-05],[168.17897,-3.7638E-05],[168.18241,-3.2482E-05],[168.18584,-3.3513E-05],[168.18928,-3.2998E-05],[168.19272,-3.6607E-05],[168.19616,-4.0216E-05],[168.1996,-3.6607E-05],[168.20304,-3.8669E-05],[168.20648,-3.97E-05],[168.20991,-3.9185E-05],[168.21335,-3.9185E-05],[168.21679,-3.7638E-05],[168.22023,-3.97E-05],[168.22367,-3.6607E-05],[168.22711,-3.6607E-05],[168.23055,-3.7122E-05],[168.23399,-3.7122E-05],[168.23742,-3.8669E-05],[168.24086,-3.6607E-05],[168.2443,-4.0216E-05],[168.24774,-4.1763E-05],[168.25118,-3.8669E-05],[168.25462,-3.4029E-05],[168.25806,-3.506E-05],[168.26149,-3.506E-05],[168.26493,-3.6091E-05],[168.26837,-4.0732E-05],[168.27181,-3.6091E-05],[168.27525,-3.2482E-05],[168.27869,-3.3513E-05],[168.28213,-3.506E-05],[168.28557,-3.4029E-05],[168.289,-3.5576E-05],[168.29244,-4.0216E-05],[168.29588,-3.7122E-05],[168.29932,-3.5576E-05],[168.30276,-3.7122E-05],[168.3062,-3.5576E-05],[168.30964,-3.97E-05],[168.31307,-3.6607E-05],[168.31651,-3.4544E-05],[168.31995,-3.6091E-05],[168.32339,-3.1451E-05],[168.32683,-3.6091E-05],[168.33027,-3.7638E-05],[168.33371,-3.5576E-05],[168.33715,-3.5576E-05],[168.34058,-3.4544E-05],[168.34402,-3.8154E-05],[168.34746,-3.8669E-05],[168.3509,-3.5576E-05],[168.35434,-3.4029E-05],[168.35778,-3.2482E-05],[168.36122,-3.2482E-05],[168.36465,-3.506E-05],[168.36809,-3.6607E-05],[168.37153,-3.8154E-05],[168.37497,-3.4544E-05],[168.37841,-3.2482E-05],[168.38185,-3.7638E-05],[168.38529,-3.8154E-05],[168.38873,-3.4544E-05],[168.39216,-3.6091E-05],[168.3956,-3.8669E-05],[168.39904,-3.6091E-05],[168.40248,-3.1967E-05],[168.40592,-3.6607E-05],[168.40936,-3.8154E-05],[168.4128,-3.6607E-05],[168.41623,-4.0216E-05],[168.41967,-3.9185E-05],[168.42311,-3.4544E-05],[168.42655,-3.042E-05],[168.42999,-3.6091E-05],[168.43343,-3.8669E-05],[168.43687,-3.4544E-05]]}
-{"quant":[168.713,1.185],"mems":[[168.61568,-4.0732E-05],[168.61912,-4.1247E-05],[168.62255,-3.7638E-05],[168.62599,-3.2482E-05],[168.62943,-3.1451E-05],[168.63287,-3.6607E-05],[168.63631,-3.8669E-05],[168.63975,-3.2482E-05],[168.64319,-3.1451E-05],[168.64663,-3.5576E-05],[168.65006,-3.6091E-05],[168.6535,-3.7122E-05],[168.65694,-3.9185E-05],[168.66038,-3.6091E-05],[168.66382,-3.8669E-05],[168.66726,-4.1247E-05],[168.6707,-3.7122E-05],[168.67413,-3.6607E-05],[168.67757,-3.6607E-05],[168.68101,-3.4029E-05],[168.68445,-3.2998E-05],[168.68789,-3.7638E-05],[168.69133,-3.7122E-05],[168.69477,-3.7122E-05],[168.69821,-3.6091E-05],[168.70164,-3.2482E-05],[168.70508,-3.6607E-05],[168.70852,-3.6607E-05],[168.71196,-3.4544E-05],[168.7154,-3.6607E-05],[168.71884,-3.7638E-05],[168.72228,-3.8154E-05],[168.72571,-3.4029E-05],[168.72915,-2.9904E-05],[168.73259,-3.6091E-05],[168.73603,-3.6607E-05],[168.73947,-2.9904E-05],[168.74291,-3.2998E-05],[168.74635,-3.6607E-05],[168.74979,-3.6607E-05],[168.75322,-3.6091E-05],[168.75666,-3.5576E-05],[168.7601,-3.1967E-05],[168.76354,-3.042E-05],[168.76698,-3.506E-05],[168.77042,-3.4029E-05],[168.77386,-3.5576E-05],[168.77729,-3.9185E-05],[168.78073,-3.7122E-05],[168.78417,-3.97E-05],[168.78761,-3.9185E-05],[168.79105,-3.6607E-05],[168.79449,-3.3513E-05],[168.79793,-3.6091E-05],[168.80137,-4.0732E-05],[168.8048,-3.4544E-05],[168.80824,-3.506E-05],[168.81168,-4.1247E-05],[168.81512,-3.7122E-05],[168.81856,-3.6091E-05],[168.822,-3.506E-05],[168.82544,-3.1967E-05],[168.82887,-3.5576E-05],[168.83231,-3.7122E-05],[168.83575,-3.6091E-05],[168.83919,-3.7638E-05],[168.84263,-3.8669E-05],[168.84607,-3.6091E-05],[168.84951,-3.7122E-05],[168.85295,-3.9185E-05],[168.85638,-3.5576E-05],[168.85982,-3.2998E-05],[168.86326,-3.5576E-05],[168.8667,-3.5576E-05],[168.87014,-3.6091E-05],[168.87358,-4.0216E-05],[168.87702,-3.506E-05],[168.88045,-3.506E-05],[168.88389,-3.97E-05],[168.88733,-3.4029E-05],[168.89077,-3.7122E-05],[168.89421,-4.0732E-05],[168.89765,-3.4544E-05],[168.90109,-3.4029E-05],[168.90453,-3.5576E-05],[168.90796,-3.6607E-05],[168.9114,-4.0732E-05]]}
-{"quant":[169.052,1.1836],"mems":[[168.95267,-3.6607E-05],[168.95611,-3.5576E-05],[168.95954,-3.1967E-05],[168.96298,-3.506E-05],[168.96642,-3.8154E-05],[168.96986,-3.5576E-05],[168.9733,-3.4029E-05],[168.97674,-3.6607E-05],[168.98018,-3.6607E-05],[168.98361,-3.4544E-05],[168.98705,-3.7122E-05],[168.99049,-3.6091E-05],[168.99393,-3.506E-05],[168.99737,-3.6091E-05],[169.00081,-3.2998E-05],[169.00425,-3.2482E-05],[169.00769,-3.8154E-05],[169.01112,-4.1247E-05],[169.01456,-4.0732E-05],[169.018,-3.97E-05],[169.02144,-3.8669E-05],[169.02488,-3.7122E-05],[169.02832,-3.7122E-05],[169.03176,-3.7638E-05],[169.03519,-3.6607E-05],[169.03863,-3.8154E-05],[169.04207,-3.4029E-05],[169.04551,-3.5576E-05],[169.04895,-4.2794E-05],[169.05239,-3.9185E-05],[169.05583,-3.5576E-05],[169.05927,-3.1967E-05],[169.0627,-3.4029E-05],[169.06614,-3.7638E-05],[169.06958,-3.6091E-05],[169.07302,-3.5576E-05],[169.07646,-3.7122E-05],[169.0799,-3.8669E-05],[169.08334,-3.5576E-05],[169.08677,-3.4029E-05],[169.09021,-3.5576E-05],[169.09365,-4.0216E-05],[169.09709,-4.2794E-05],[169.10053,-4.1247E-05],[169.10397,-3.6607E-05],[169.10741,-3.6091E-05],[169.11085,-3.6607E-05],[169.11428,-3.8154E-05],[169.11772,-3.8154E-05],[169.12116,-3.2998E-05],[169.1246,-3.4544E-05],[169.12804,-3.4544E-05],[169.13148,-3.7638E-05],[169.13492,-3.8669E-05],[169.13835,-3.506E-05],[169.14179,-3.4029E-05],[169.14523,-3.4029E-05],[169.14867,-4.0732E-05],[169.15211,-3.97E-05],[169.15555,-3.4544E-05],[169.15899,-3.8154E-05],[169.16243,-4.0732E-05],[169.16586,-4.1763E-05],[169.1693,-4.0732E-05],[169.17274,-3.6607E-05],[169.17618,-3.6607E-05],[169.17962,-3.8154E-05],[169.18306,-3.97E-05],[169.1865,-3.3513E-05],[169.18993,-3.0935E-05],[169.19337,-3.8669E-05],[169.19681,-3.506E-05],[169.20025,-3.042E-05],[169.20369,-3.2482E-05],[169.20713,-3.506E-05],[169.21057,-3.8154E-05],[169.21401,-4.1247E-05],[169.21744,-3.8669E-05],[169.22088,-3.1967E-05],[169.22432,-3.5576E-05],[169.22776,-3.7122E-05],[169.2312,-3.506E-05],[169.23464,-3.8669E-05],[169.23808,-3.8669E-05],[169.24151,-3.2998E-05],[169.24495,-3.506E-05],[169.24839,-3.8669E-05],[169.25183,-3.5576E-05]]}
-{"quant":[169.404,1.184],"mems":[[169.30685,-3.6607E-05],[169.31029,-3.506E-05],[169.31373,-3.2998E-05],[169.31717,-3.7122E-05],[169.3206,-3.6607E-05],[169.32404,-3.506E-05],[169.32748,-4.0216E-05],[169.33092,-4.1763E-05],[169.33436,-4.0732E-05],[169.3378,-3.8154E-05],[169.34124,-3.5576E-05],[169.34467,-3.7122E-05],[169.34811,-3.6607E-05],[169.35155,-3.5576E-05],[169.35499,-3.7638E-05],[169.35843,-3.7122E-05],[169.36187,-3.506E-05],[169.36531,-3.6091E-05],[169.36875,-4.0216E-05],[169.37218,-4.1763E-05],[169.37562,-3.97E-05],[169.37906,-3.7638E-05],[169.3825,-3.5576E-05],[169.38594,-3.5576E-05],[169.38938,-3.6091E-05],[169.39282,-3.4029E-05],[169.39625,-2.9904E-05],[169.39969,-2.9904E-05],[169.40313,-3.4544E-05],[169.40657,-3.6607E-05],[169.41001,-3.5576E-05],[169.41345,-3.7122E-05],[169.41689,-3.8669E-05],[169.42033,-3.3513E-05],[169.42376,-3.6607E-05],[169.4272,-4.0216E-05],[169.43064,-3.7638E-05],[169.43408,-3.5576E-05],[169.43752,-3.4544E-05],[169.44096,-3.6091E-05],[169.4444,-3.4029E-05],[169.44783,-4.0216E-05],[169.45127,-4.2278E-05],[169.45471,-3.5576E-05],[169.45815,-3.4029E-05],[169.46159,-3.7122E-05],[169.46503,-4.1247E-05],[169.46847,-3.8669E-05],[169.47191,-3.8154E-05],[169.47534,-3.97E-05],[169.47878,-3.6091E-05],[169.48222,-3.5576E-05],[169.48566,-3.6091E-05],[169.4891,-3.6091E-05],[169.49254,-3.6607E-05],[169.49598,-3.1967E-05],[169.49941,-3.3513E-05],[169.50285,-3.6091E-05],[169.50629,-3.5576E-05],[169.50973,-4.1247E-05],[169.51317,-4.0216E-05],[169.51661,-3.6607E-05],[169.52005,-3.506E-05],[169.52349,-3.3513E-05],[169.52692,-3.7638E-05],[169.53036,-4.0732E-05],[169.5338,-4.0732E-05],[169.53724,-3.6607E-05],[169.54068,-3.3513E-05],[169.54412,-3.8154E-05],[169.54756,-3.6607E-05],[169.55099,-3.8154E-05],[169.55443,-3.9185E-05],[169.55787,-3.2998E-05],[169.56131,-3.8154E-05],[169.56475,-4.0216E-05],[169.56819,-3.4029E-05],[169.57163,-3.6607E-05],[169.57507,-3.97E-05],[169.5785,-3.2998E-05],[169.58194,-3.1451E-05],[169.58538,-3.506E-05],[169.58882,-3.6607E-05],[169.59226,-3.9185E-05],[169.5957,-3.7638E-05],[169.59914,-3.7638E-05],[169.60257,-3.6607E-05]]}
-{"quant":[169.74,1.2006],"mems":[[169.6404,-3.7122E-05],[169.64384,-3.506E-05],[169.64728,-3.6091E-05],[169.65072,-3.4544E-05],[169.65415,-3.5576E-05],[169.65759,-3.4544E-05],[169.66103,-3.3513E-05],[169.66447,-4.0216E-05],[169.66791,-3.6607E-05],[169.67135,-3.1451E-05],[169.67479,-3.1451E-05],[169.67823,-3.506E-05],[169.68166,-3.7638E-05],[169.6851,-3.5576E-05],[169.68854,-3.4544E-05],[169.69198,-3.6091E-05],[169.69542,-4.1763E-05],[169.69886,-3.9185E-05],[169.7023,-3.4029E-05],[169.70573,-3.506E-05],[169.70917,-3.5576E-05],[169.71261,-3.7122E-05],[169.71605,-3.6607E-05],[169.71949,-3.8154E-05],[169.72293,-3.6091E-05],[169.72637,-3.6607E-05],[169.72981,-3.9185E-05],[169.73324,-3.7122E-05],[169.73668,-3.6091E-05],[169.74012,-3.2998E-05],[169.74356,-3.6091E-05],[169.747,-3.6091E-05],[169.75044,-3.7122E-05],[169.75388,-3.7638E-05],[169.75731,-3.3513E-05],[169.76075,-3.2482E-05],[169.76419,-3.4029E-05],[169.76763,-3.7122E-05],[169.77107,-3.506E-05],[169.77451,-3.4544E-05],[169.77795,-3.5576E-05],[169.78139,-3.6091E-05],[169.78482,-3.9185E-05],[169.78826,-3.97E-05],[169.7917,-3.97E-05],[169.79514,-3.6607E-05],[169.79858,-3.1967E-05],[169.80202,-3.6091E-05],[169.80546,-4.0732E-05],[169.80889,-3.9185E-05],[169.81233,-3.9185E-05],[169.81577,-3.8154E-05],[169.81921,-3.4544E-05],[169.82265,-3.506E-05],[169.82609,-4.1247E-05],[169.82953,-4.0216E-05],[169.83297,-3.1967E-05],[169.8364,-3.042E-05],[169.83984,-3.2998E-05],[169.84328,-3.4544E-05],[169.84672,-3.6607E-05],[169.85016,-3.6607E-05],[169.8536,-3.7122E-05],[169.85704,-3.5576E-05],[169.86047,-3.4029E-05],[169.86391,-3.7638E-05],[169.86735,-4.3309E-05],[169.87079,-3.7638E-05],[169.87423,-3.6091E-05],[169.87767,-3.97E-05],[169.88111,-3.6607E-05],[169.88455,-3.5576E-05],[169.88798,-3.2998E-05],[169.89142,-3.2998E-05],[169.89486,-3.8154E-05],[169.8983,-3.8154E-05],[169.90174,-3.4544E-05],[169.90518,-3.5576E-05],[169.90862,-4.1247E-05],[169.91205,-3.8154E-05],[169.91549,-3.6091E-05],[169.91893,-3.8669E-05],[169.92237,-3.5576E-05],[169.92581,-3.8669E-05],[169.92925,-3.8669E-05],[169.93269,-3.2482E-05],[169.93613,-3.2998E-05],[169.93956,-3.3513E-05]]}
-{"quant":[170.081,1.2118],"mems":[[169.98427,-3.2998E-05],[169.98771,-3.8669E-05],[169.99114,-3.8669E-05],[169.99458,-3.3513E-05],[169.99802,-3.6091E-05],[170.00146,-3.8154E-05],[170.0049,-3.4544E-05],[170.00834,-3.8669E-05],[170.01178,-4.0216E-05],[170.01521,-3.7638E-05],[170.01865,-3.506E-05],[170.02209,-3.0935E-05],[170.02553,-3.6607E-05],[170.02897,-3.7638E-05],[170.03241,-3.5576E-05],[170.03585,-3.6091E-05],[170.03929,-3.506E-05],[170.04272,-3.9185E-05],[170.04616,-3.506E-05],[170.0496,-3.1967E-05],[170.05304,-3.0935E-05],[170.05648,-3.2482E-05],[170.05992,-3.4544E-05],[170.06336,-3.5576E-05],[170.06679,-3.5576E-05],[170.07023,-3.2998E-05],[170.07367,-3.9185E-05],[170.07711,-3.7638E-05],[170.08055,-3.506E-05],[170.08399,-3.8669E-05],[170.08743,-3.506E-05],[170.09087,-3.6091E-05],[170.0943,-3.8669E-05],[170.09774,-3.7638E-05],[170.10118,-3.7638E-05],[170.10462,-3.6091E-05],[170.10806,-3.4544E-05],[170.1115,-3.6091E-05],[170.11494,-3.8669E-05],[170.11837,-3.9185E-05],[170.12181,-3.506E-05],[170.12525,-3.6091E-05],[170.12869,-3.8154E-05],[170.13213,-3.2998E-05],[170.13557,-3.2482E-05],[170.13901,-3.5576E-05],[170.14245,-3.8669E-05],[170.14588,-3.7638E-05],[170.14932,-3.1451E-05],[170.15276,-3.2482E-05],[170.1562,-3.6091E-05],[170.15964,-3.6091E-05],[170.16308,-3.8669E-05],[170.16652,-3.7122E-05],[170.16995,-3.5576E-05],[170.17339,-3.7122E-05],[170.17683,-3.4029E-05],[170.18027,-3.2482E-05],[170.18371,-3.506E-05],[170.18715,-3.5576E-05],[170.19059,-3.9185E-05],[170.19403,-3.4544E-05],[170.19746,-3.1451E-05],[170.2009,-3.6091E-05],[170.20434,-3.8669E-05],[170.20778,-3.7122E-05],[170.21122,-3.2998E-05],[170.21466,-3.4544E-05],[170.2181,-3.4544E-05],[170.22153,-3.2998E-05],[170.22497,-3.5576E-05],[170.22841,-3.8669E-05],[170.23185,-3.97E-05],[170.23529,-3.6607E-05],[170.23873,-3.2998E-05],[170.24217,-3.4029E-05],[170.24561,-3.9185E-05],[170.24904,-3.9185E-05],[170.25248,-3.8154E-05],[170.25592,-3.2998E-05],[170.25936,-3.5576E-05],[170.2628,-3.8154E-05],[170.26624,-3.5576E-05],[170.26968,-4.0732E-05],[170.27311,-3.97E-05],[170.27655,-3.7638E-05],[170.27999,-3.506E-05]]}
-{"quant":[170.422,1.2071],"mems":[[170.32469,-3.5576E-05],[170.32813,-3.8154E-05],[170.33157,-4.0732E-05],[170.33501,-3.97E-05],[170.33845,-3.6091E-05],[170.34189,-3.7122E-05],[170.34533,-4.1247E-05],[170.34877,-4.0216E-05],[170.3522,-3.6607E-05],[170.35564,-3.8669E-05],[170.35908,-3.4029E-05],[170.36252,-3.042E-05],[170.36596,-3.7638E-05],[170.3694,-4.0216E-05],[170.37284,-3.9185E-05],[170.37627,-3.6091E-05],[170.37971,-3.6091E-05],[170.38315,-3.6091E-05],[170.38659,-3.2998E-05],[170.39003,-3.5576E-05],[170.39347,-3.6091E-05],[170.39691,-3.4544E-05],[170.40035,-3.5576E-05],[170.40378,-3.6091E-05],[170.40722,-3.6091E-05],[170.41066,-3.2482E-05],[170.4141,-3.2998E-05],[170.41754,-3.6091E-05],[170.42098,-3.4544E-05],[170.42442,-3.4029E-05],[170.42785,-3.8154E-05],[170.43129,-3.97E-05],[170.43473,-3.7122E-05],[170.43817,-3.2998E-05],[170.44161,-2.9904E-05],[170.44505,-3.5576E-05],[170.44849,-3.8154E-05],[170.45193,-3.4029E-05],[170.45536,-3.2998E-05],[170.4588,-3.4544E-05],[170.46224,-3.2998E-05],[170.46568,-3.5576E-05],[170.46912,-4.3309E-05],[170.47256,-3.97E-05],[170.476,-3.6091E-05],[170.47943,-3.506E-05],[170.48287,-3.3513E-05],[170.48631,-3.5576E-05],[170.48975,-3.8154E-05],[170.49319,-3.7638E-05],[170.49663,-2.9389E-05],[170.50007,-2.8357E-05],[170.50351,-3.7122E-05],[170.50694,-3.8669E-05],[170.51038,-3.6091E-05],[170.51382,-3.5576E-05],[170.51726,-3.6607E-05],[170.5207,-3.7122E-05],[170.52414,-3.4029E-05],[170.52758,-3.8669E-05],[170.53101,-4.4341E-05],[170.53445,-3.8154E-05],[170.53789,-3.506E-05],[170.54133,-3.6091E-05],[170.54477,-3.506E-05],[170.54821,-3.6091E-05],[170.55165,-3.8669E-05],[170.55509,-3.4544E-05],[170.55852,-3.1967E-05],[170.56196,-3.8669E-05],[170.5654,-3.9185E-05],[170.56884,-3.5576E-05],[170.57228,-3.4544E-05],[170.57572,-3.7638E-05],[170.57916,-3.6091E-05],[170.58259,-3.7122E-05],[170.58603,-4.2278E-05],[170.58947,-3.6091E-05],[170.59291,-3.6607E-05],[170.59635,-3.9185E-05],[170.59979,-3.506E-05],[170.60323,-3.8669E-05],[170.60667,-3.4544E-05],[170.6101,-3.4029E-05],[170.61354,-3.6607E-05],[170.61698,-3.0935E-05],[170.62042,-3.7122E-05]]}
-{"quant":[170.769,1.202],"mems":[[170.672,-3.4029E-05],[170.67547,-3.5576E-05],[170.67893,-3.4544E-05],[170.6824,-3.506E-05],[170.68587,-3.8154E-05],[170.68933,-3.8154E-05],[170.6928,-3.6607E-05],[170.69627,-3.7122E-05],[170.69973,-3.506E-05],[170.7032,-3.6607E-05],[170.70667,-3.8154E-05],[170.71013,-3.4544E-05],[170.7136,-3.4544E-05],[170.71707,-3.6091E-05],[170.72053,-3.506E-05],[170.724,-3.6091E-05],[170.72747,-3.7638E-05],[170.73093,-3.6091E-05],[170.7344,-3.6091E-05],[170.73787,-3.6091E-05],[170.74133,-4.0216E-05],[170.7448,-4.0216E-05],[170.74827,-3.6091E-05],[170.75173,-3.7638E-05],[170.7552,-3.6091E-05],[170.75867,-3.3513E-05],[170.76213,-3.6091E-05],[170.7656,-3.4544E-05],[170.76907,-3.506E-05],[170.77253,-3.8154E-05],[170.776,-3.6091E-05],[170.77947,-3.2998E-05],[170.78293,-3.2998E-05],[170.7864,-4.0216E-05],[170.78987,-3.97E-05],[170.79333,-3.506E-05],[170.7968,-3.9185E-05],[170.80027,-3.506E-05],[170.80373,-3.8154E-05],[170.8072,-4.1763E-05],[170.81067,-3.5576E-05],[170.81413,-3.97E-05],[170.8176,-3.97E-05],[170.82107,-3.4544E-05],[170.82453,-3.8154E-05],[170.828,-3.9185E-05],[170.83147,-3.7638E-05],[170.83493,-3.506E-05],[170.8384,-3.506E-05],[170.84187,-3.6091E-05],[170.84533,-3.8154E-05],[170.8488,-4.0732E-05],[170.85227,-3.4029E-05],[170.85573,-3.3513E-05],[170.8592,-3.7638E-05],[170.86267,-3.506E-05],[170.86613,-3.6091E-05],[170.8696,-3.506E-05],[170.87307,-3.4544E-05],[170.87653,-3.6091E-05],[170.88,-3.4544E-05],[170.88347,-3.506E-05],[170.88693,-3.506E-05],[170.8904,-3.7638E-05],[170.89387,-3.506E-05],[170.89733,-3.0935E-05],[170.9008,-3.2998E-05],[170.90427,-3.6607E-05],[170.90773,-3.8669E-05],[170.9112,-3.4544E-05],[170.91467,-3.8669E-05],[170.91813,-3.6607E-05],[170.9216,-3.3513E-05],[170.92507,-4.0732E-05],[170.92853,-3.6091E-05],[170.932,-3.1967E-05],[170.93547,-3.4029E-05],[170.93893,-3.6607E-05],[170.9424,-3.2482E-05],[170.94587,-3.2482E-05],[170.94933,-3.7638E-05],[170.9528,-3.2998E-05],[170.95627,-3.4544E-05],[170.95973,-3.7638E-05],[170.9632,-3.5576E-05],[170.96667,-3.1967E-05],[170.97013,-3.4029E-05]]}
-{"quant":[171.227,1.1859],"mems":[[171.1296,-3.6091E-05],[171.13307,-4.0216E-05],[171.13653,-4.0216E-05],[171.14,-3.6607E-05],[171.14347,-3.2482E-05],[171.14693,-3.8154E-05],[171.1504,-4.2794E-05],[171.15387,-4.0732E-05],[171.15733,-4.0216E-05],[171.1608,-3.7122E-05],[171.16427,-3.6607E-05],[171.16773,-3.6091E-05],[171.1712,-3.506E-05],[171.17467,-3.2482E-05],[171.17813,-3.2998E-05],[171.1816,-3.8669E-05],[171.18507,-3.8669E-05],[171.18853,-3.2998E-05],[171.192,-3.3513E-05],[171.19547,-3.5576E-05],[171.19893,-3.4544E-05],[171.2024,-3.6091E-05],[171.20587,-3.97E-05],[171.20933,-4.0732E-05],[171.2128,-3.6091E-05],[171.21627,-3.8669E-05],[171.21973,-4.0732E-05],[171.2232,-3.506E-05],[171.22667,-3.2482E-05],[171.23013,-3.2998E-05],[171.2336,-3.8154E-05],[171.23707,-3.9185E-05],[171.24053,-3.5576E-05],[171.244,-3.3513E-05],[171.24747,-3.4544E-05],[171.25093,-3.7638E-05],[171.2544,-4.0732E-05],[171.25787,-4.3309E-05],[171.26133,-3.8669E-05],[171.2648,-3.506E-05],[171.26827,-3.506E-05],[171.27173,-3.2998E-05],[171.2752,-3.6091E-05],[171.27867,-3.4029E-05],[171.28213,-3.5576E-05],[171.2856,-3.6607E-05],[171.28907,-3.5576E-05],[171.29253,-4.3825E-05],[171.296,-3.7122E-05],[171.29947,-3.0935E-05],[171.30293,-3.3513E-05],[171.3064,-3.042E-05],[171.30987,-3.4544E-05],[171.31333,-3.6607E-05],[171.3168,-3.97E-05],[171.32027,-3.97E-05],[171.32373,-3.7122E-05],[171.3272,-3.5576E-05],[171.33067,-3.1451E-05],[171.33413,-3.506E-05],[171.3376,-3.506E-05],[171.34107,-3.6607E-05],[171.34453,-4.0732E-05],[171.348,-3.6091E-05],[171.35147,-3.7638E-05],[171.35493,-3.506E-05],[171.3584,-3.1451E-05],[171.36187,-3.6607E-05],[171.36533,-3.8154E-05],[171.3688,-3.4029E-05],[171.37227,-3.2482E-05],[171.37573,-3.8669E-05],[171.3792,-3.7638E-05],[171.38267,-3.7122E-05],[171.38613,-3.8154E-05],[171.3896,-3.6091E-05],[171.39307,-3.6607E-05],[171.39653,-3.2482E-05],[171.4,-3.1451E-05],[171.40347,-2.8357E-05],[171.40693,-2.9389E-05],[171.4104,-3.5576E-05],[171.41387,-3.7122E-05],[171.41733,-4.0732E-05],[171.4208,-4.0216E-05],[171.42427,-3.506E-05]]}
-{"quant":[171.554,1.1741],"mems":[[171.45547,-3.7638E-05],[171.45893,-3.8154E-05],[171.4624,-3.6091E-05],[171.46587,-3.506E-05],[171.46933,-3.4544E-05],[171.4728,-4.1247E-05],[171.47627,-4.1247E-05],[171.47973,-3.4544E-05],[171.4832,-3.4544E-05],[171.48667,-3.6091E-05],[171.49013,-3.5576E-05],[171.4936,-3.6091E-05],[171.49707,-3.8154E-05],[171.50053,-3.8154E-05],[171.504,-3.5576E-05],[171.50747,-3.6091E-05],[171.51093,-4.0216E-05],[171.5144,-3.6607E-05],[171.51787,-3.4544E-05],[171.52133,-3.8154E-05],[171.5248,-3.6091E-05],[171.52827,-4.0216E-05],[171.53173,-3.5576E-05],[171.5352,-3.4544E-05],[171.53867,-3.7638E-05],[171.54213,-3.506E-05],[171.5456,-3.5576E-05],[171.54907,-3.1967E-05],[171.55253,-3.6607E-05],[171.556,-3.4544E-05],[171.55947,-3.5576E-05],[171.56293,-4.1247E-05],[171.5664,-3.7122E-05],[171.56987,-3.97E-05],[171.57333,-3.7638E-05],[171.5768,-3.3513E-05],[171.58027,-3.1451E-05],[171.58373,-3.1451E-05],[171.5872,-2.9389E-05],[171.59067,-3.4029E-05],[171.59413,-3.7122E-05],[171.5976,-3.4544E-05],[171.60107,-3.6607E-05],[171.60453,-3.7638E-05],[171.608,-3.8669E-05],[171.61147,-3.4544E-05],[171.61493,-3.2998E-05],[171.6184,-3.7122E-05],[171.62187,-3.9185E-05],[171.62533,-3.97E-05],[171.6288,-3.8154E-05],[171.63227,-3.97E-05],[171.63573,-3.7638E-05],[171.6392,-3.6091E-05],[171.64267,-3.6091E-05],[171.64613,-3.6091E-05],[171.6496,-3.7638E-05],[171.65307,-3.8669E-05],[171.65653,-3.7638E-05],[171.66,-3.6091E-05],[171.66347,-3.6091E-05],[171.66693,-3.1967E-05],[171.6704,-3.0935E-05],[171.67387,-3.8154E-05],[171.67733,-3.8669E-05],[171.6808,-3.7638E-05],[171.68427,-3.7638E-05],[171.68773,-3.2482E-05],[171.6912,-3.4029E-05],[171.69467,-3.7122E-05],[171.69813,-3.7638E-05],[171.7016,-3.8154E-05],[171.70507,-3.7122E-05],[171.70853,-3.6607E-05],[171.712,-3.3513E-05],[171.71547,-3.97E-05],[171.71893,-4.1247E-05],[171.7224,-3.506E-05],[171.72587,-3.6091E-05],[171.72933,-3.7122E-05],[171.7328,-3.8154E-05],[171.73627,-3.6607E-05],[171.73973,-3.506E-05],[171.7432,-3.506E-05],[171.74667,-3.4029E-05],[171.75013,-3.8154E-05],[171.7536,-3.7122E-05]]}
-{"quant":[171.885,1.1775],"mems":[[171.78827,-3.042E-05],[171.79173,-3.4029E-05],[171.7952,-3.8154E-05],[171.79867,-3.8154E-05],[171.80213,-3.9185E-05],[171.8056,-3.6607E-05],[171.80907,-3.042E-05],[171.81253,-3.6607E-05],[171.816,-3.97E-05],[171.81947,-3.7122E-05],[171.82293,-3.6607E-05],[171.8264,-3.4544E-05],[171.82987,-3.6091E-05],[171.83333,-3.6607E-05],[171.8368,-3.506E-05],[171.84027,-3.6607E-05],[171.84373,-3.9185E-05],[171.8472,-3.7122E-05],[171.85067,-3.7122E-05],[171.85413,-4.0732E-05],[171.8576,-3.7638E-05],[171.86107,-3.4029E-05],[171.86453,-3.6607E-05],[171.868,-3.7122E-05],[171.87147,-3.6607E-05],[171.87493,-3.7122E-05],[171.8784,-3.6091E-05],[171.88187,-3.5576E-05],[171.88533,-3.6607E-05],[171.8888,-3.8154E-05],[171.89227,-3.8669E-05],[171.89573,-3.6091E-05],[171.8992,-3.7638E-05],[171.90267,-4.0732E-05],[171.90613,-4.1247E-05],[171.9096,-3.9185E-05],[171.91307,-3.7638E-05],[171.91653,-3.97E-05],[171.92,-4.0732E-05],[171.92347,-4.1247E-05],[171.92693,-3.5576E-05],[171.9304,-3.5576E-05],[171.93387,-3.9185E-05],[171.93733,-3.6607E-05],[171.9408,-3.3513E-05],[171.94427,-3.3513E-05],[171.94773,-3.2482E-05],[171.9512,-3.4029E-05],[171.95467,-3.5576E-05],[171.95813,-3.7638E-05],[171.9616,-4.0732E-05],[171.96507,-3.7122E-05],[171.96853,-3.6607E-05],[171.972,-3.1967E-05],[171.97547,-3.5576E-05],[171.97893,-3.97E-05],[171.9824,-3.5576E-05],[171.98587,-3.7122E-05],[171.98933,-3.97E-05],[171.9928,-4.5372E-05],[171.99627,-3.7122E-05],[171.99973,-2.9389E-05],[172.0032,-3.4544E-05],[172.00667,-3.4029E-05],[172.01013,-3.5576E-05],[172.0136,-3.6091E-05],[172.01707,-3.6607E-05],[172.02053,-3.8669E-05],[172.024,-3.9185E-05],[172.02747,-3.5576E-05],[172.03093,-3.4544E-05],[172.0344,-3.9185E-05],[172.03787,-3.8669E-05],[172.04133,-3.506E-05],[172.0448,-3.6091E-05],[172.04827,-4.1763E-05],[172.05173,-3.7122E-05],[172.0552,-3.4544E-05],[172.05867,-3.7122E-05],[172.06213,-3.1967E-05],[172.0656,-3.6091E-05],[172.06907,-3.5576E-05],[172.07253,-3.506E-05],[172.076,-4.1247E-05],[172.07947,-3.8669E-05],[172.08293,-3.5576E-05]]}
-{"quant":[172.257,1.1752],"mems":[[172.1592,-3.6607E-05],[172.16267,-3.6091E-05],[172.16613,-3.4029E-05],[172.1696,-3.5576E-05],[172.17307,-3.97E-05],[172.17653,-3.9185E-05],[172.18,-3.7638E-05],[172.18347,-4.0732E-05],[172.18693,-4.1763E-05],[172.1904,-3.97E-05],[172.19387,-3.506E-05],[172.19733,-3.7638E-05],[172.2008,-4.3309E-05],[172.20427,-3.8154E-05],[172.20773,-3.97E-05],[172.2112,-3.3513E-05],[172.21467,-2.9904E-05],[172.21813,-3.4544E-05],[172.2216,-3.3513E-05],[172.22507,-3.6607E-05],[172.22853,-3.2998E-05],[172.232,-2.9904E-05],[172.23547,-3.5576E-05],[172.23893,-3.6607E-05],[172.2424,-3.6091E-05],[172.24587,-3.7122E-05],[172.24933,-3.2482E-05],[172.2528,-3.1967E-05],[172.25627,-3.8669E-05],[172.25973,-3.97E-05],[172.2632,-3.7638E-05],[172.26667,-3.6091E-05],[172.27013,-3.8154E-05],[172.2736,-4.1763E-05],[172.27707,-3.9185E-05],[172.28053,-3.506E-05],[172.284,-3.6091E-05],[172.28747,-3.7638E-05],[172.29093,-3.8669E-05],[172.2944,-3.6091E-05],[172.29787,-3.4544E-05],[172.30133,-3.7122E-05],[172.3048,-3.6091E-05],[172.30827,-3.2482E-05],[172.31173,-3.2998E-05],[172.3152,-3.97E-05],[172.31867,-3.6091E-05],[172.32213,-3.6607E-05],[172.3256,-3.9185E-05],[172.32907,-3.1451E-05],[172.33253,-3.4029E-05],[172.336,-3.506E-05],[172.33947,-3.6091E-05],[172.34293,-3.97E-05],[172.3464,-3.6091E-05],[172.34987,-3.2998E-05],[172.35333,-3.4029E-05],[172.3568,-3.4029E-05],[172.36027,-3.2998E-05],[172.36373,-3.506E-05],[172.3672,-3.5576E-05],[172.37067,-3.6091E-05],[172.37413,-3.9185E-05],[172.3776,-4.0216E-05],[172.38107,-3.6607E-05],[172.38453,-3.7638E-05],[172.388,-3.6091E-05],[172.39147,-3.1967E-05],[172.39493,-3.3513E-05],[172.3984,-3.6607E-05],[172.40187,-4.3309E-05],[172.40533,-3.97E-05],[172.4088,-3.6607E-05],[172.41227,-3.7638E-05],[172.41573,-3.5576E-05],[172.4192,-3.7638E-05],[172.42267,-3.6607E-05],[172.42613,-3.4029E-05],[172.4296,-3.506E-05],[172.43307,-3.9185E-05],[172.43653,-4.0732E-05],[172.44,-3.9185E-05],[172.44347,-3.8669E-05],[172.44693,-3.9185E-05],[172.4504,-3.6607E-05],[172.45387,-3.6607E-05]]}
-{"quant":[172.609,1.1689],"mems":[[172.50933,-3.506E-05],[172.5128,-3.4029E-05],[172.51627,-3.506E-05],[172.51973,-3.6091E-05],[172.5232,-3.4029E-05],[172.52667,-3.6091E-05],[172.53013,-3.7638E-05],[172.5336,-3.6607E-05],[172.53707,-3.7638E-05],[172.54053,-3.2482E-05],[172.544,-3.0935E-05],[172.54747,-3.8154E-05],[172.55093,-3.4544E-05],[172.5544,-3.4029E-05],[172.55787,-4.1763E-05],[172.56133,-3.7122E-05],[172.5648,-3.8154E-05],[172.56827,-3.5576E-05],[172.57173,-3.6607E-05],[172.5752,-3.9185E-05],[172.57867,-3.7122E-05],[172.58213,-4.3309E-05],[172.5856,-3.9185E-05],[172.58907,-3.7638E-05],[172.59253,-3.8154E-05],[172.596,-3.506E-05],[172.59947,-3.6091E-05],[172.60293,-3.6091E-05],[172.6064,-3.4029E-05],[172.60987,-3.6607E-05],[172.61333,-3.8154E-05],[172.6168,-3.7122E-05],[172.62027,-3.8669E-05],[172.62373,-3.9185E-05],[172.6272,-3.8669E-05],[172.63067,-3.4544E-05],[172.63413,-3.9185E-05],[172.6376,-4.0732E-05],[172.64107,-3.7638E-05],[172.64453,-3.9185E-05],[172.648,-3.8669E-05],[172.65147,-3.6091E-05],[172.65493,-3.2482E-05],[172.6584,-3.2998E-05],[172.66187,-3.1967E-05],[172.66533,-3.4544E-05],[172.6688,-3.6607E-05],[172.67227,-3.4029E-05],[172.67573,-3.5576E-05],[172.6792,-3.8669E-05],[172.68267,-4.0732E-05],[172.68613,-3.97E-05],[172.6896,-4.0732E-05],[172.69307,-4.1763E-05],[172.69653,-4.0216E-05],[172.7,-3.8669E-05],[172.70347,-3.6091E-05],[172.70693,-3.6091E-05],[172.7104,-3.2998E-05],[172.71387,-3.0935E-05],[172.71733,-3.1967E-05],[172.7208,-3.2482E-05],[172.72427,-3.4029E-05],[172.72773,-3.6091E-05],[172.7312,-3.4029E-05],[172.73467,-3.4029E-05],[172.73813,-4.0216E-05],[172.7416,-4.0732E-05],[172.74507,-4.0216E-05],[172.74853,-4.2794E-05],[172.752,-3.7122E-05],[172.75547,-3.6091E-05],[172.75893,-3.8669E-05],[172.7624,-3.97E-05],[172.76587,-3.7638E-05],[172.76933,-3.4544E-05],[172.7728,-3.7122E-05],[172.77627,-3.6091E-05],[172.77973,-3.7638E-05],[172.7832,-3.7638E-05],[172.78667,-3.5576E-05],[172.79013,-3.506E-05],[172.7936,-3.4029E-05],[172.79707,-3.8154E-05],[172.80053,-3.5576E-05],[172.804,-3.6091E-05],[172.80747,-3.6607E-05]]}
-{"quant":[172.95,1.1637],"mems":[[172.85253,-3.7638E-05],[172.856,-3.4544E-05],[172.85947,-3.506E-05],[172.86293,-3.506E-05],[172.8664,-3.1451E-05],[172.86987,-3.6607E-05],[172.87333,-3.8669E-05],[172.8768,-3.4029E-05],[172.88027,-3.6091E-05],[172.88373,-3.7122E-05],[172.8872,-3.5576E-05],[172.89067,-3.6091E-05],[172.89413,-3.506E-05],[172.8976,-3.6607E-05],[172.90107,-4.0216E-05],[172.90453,-3.506E-05],[172.908,-3.3513E-05],[172.91147,-3.6091E-05],[172.91493,-3.1451E-05],[172.9184,-3.3513E-05],[172.92187,-3.4029E-05],[172.92533,-3.042E-05],[172.9288,-3.6091E-05],[172.93227,-3.4544E-05],[172.93573,-2.7326E-05],[172.9392,-3.1451E-05],[172.94267,-3.506E-05],[172.94613,-3.2998E-05],[172.9496,-3.3513E-05],[172.95307,-3.3513E-05],[172.95653,-3.4544E-05],[172.96,-3.7122E-05],[172.96347,-3.5576E-05],[172.96693,-3.5576E-05],[172.9704,-3.7122E-05],[172.97387,-3.5576E-05],[172.97733,-3.4544E-05],[172.9808,-3.506E-05],[172.98427,-3.4544E-05],[172.98773,-3.6091E-05],[172.9912,-3.7122E-05],[172.99467,-3.6607E-05],[172.99813,-3.5576E-05],[173.0016,-3.2482E-05],[173.00507,-3.4029E-05],[173.00853,-3.5576E-05],[173.012,-3.4029E-05],[173.01547,-3.5576E-05],[173.01893,-3.2998E-05],[173.0224,-3.9185E-05],[173.02587,-3.8669E-05],[173.02933,-3.1451E-05],[173.0328,-3.8154E-05],[173.03627,-3.2482E-05],[173.03973,-3.042E-05],[173.0432,-3.8154E-05],[173.04667,-3.9185E-05],[173.05013,-3.7638E-05],[173.0536,-3.5576E-05],[173.05707,-3.6607E-05],[173.06053,-3.4029E-05],[173.064,-3.4029E-05],[173.06747,-3.9185E-05],[173.07093,-3.97E-05],[173.0744,-3.5576E-05],[173.07787,-3.4029E-05],[173.08133,-3.6091E-05],[173.0848,-3.6091E-05],[173.08827,-3.4029E-05],[173.09173,-3.1967E-05],[173.0952,-3.2998E-05],[173.09867,-3.6607E-05],[173.10213,-3.6091E-05],[173.1056,-3.6091E-05],[173.10907,-3.7638E-05],[173.11253,-3.5576E-05],[173.116,-3.2998E-05],[173.11947,-3.4029E-05],[173.12293,-3.7122E-05],[173.1264,-3.7638E-05],[173.12987,-3.5576E-05],[173.13333,-3.4029E-05],[173.1368,-3.1451E-05],[173.14027,-2.7326E-05],[173.14373,-3.7638E-05],[173.1472,-4.2794E-05]]}
-{"quant":[173.278,1.1547],"mems":[[173.1992,-3.5576E-05],[173.20267,-3.5576E-05],[173.20613,-3.6607E-05],[173.2096,-3.6091E-05],[173.21307,-3.4544E-05],[173.21653,-3.4029E-05],[173.22,-3.7122E-05],[173.22347,-3.4544E-05],[173.22693,-3.1967E-05],[173.2304,-3.6091E-05],[173.23387,-3.5576E-05],[173.23733,-3.1967E-05],[173.2408,-3.1967E-05],[173.24427,-3.1451E-05],[173.24773,-3.9185E-05],[173.2512,-4.0216E-05],[173.25467,-3.6091E-05],[173.25813,-3.6091E-05],[173.2616,-3.042E-05],[173.26507,-3.8154E-05],[173.26853,-4.1763E-05],[173.272,-3.1451E-05],[173.27541,-3.1967E-05],[173.27882,-3.2482E-05],[173.28222,-3.2998E-05],[173.28563,-3.506E-05],[173.28904,-3.9185E-05],[173.29245,-3.5576E-05],[173.29586,-3.0935E-05],[173.29926,-3.7122E-05],[173.30267,-3.7638E-05],[173.30608,-3.9185E-05],[173.30949,-3.8154E-05],[173.3129,-3.7122E-05],[173.3163,-3.3513E-05],[173.31971,-3.042E-05],[173.32312,-3.6607E-05],[173.32653,-3.6607E-05],[173.32994,-3.506E-05],[173.33334,-3.3513E-05],[173.33675,-3.0935E-05],[173.34016,-3.1967E-05],[173.34357,-3.506E-05],[173.34698,-3.7638E-05],[173.35038,-3.2998E-05],[173.35379,-3.6607E-05],[173.3572,-4.0732E-05],[173.36061,-3.97E-05],[173.36402,-3.9185E-05],[173.36742,-3.6091E-05],[173.37083,-3.97E-05],[173.37424,-3.5576E-05],[173.37765,-3.4544E-05],[173.38106,-4.2794E-05],[173.38446,-4.2278E-05],[173.38787,-3.6091E-05],[173.39128,-3.0935E-05],[173.39469,-3.5576E-05],[173.3981,-3.4544E-05],[173.4015,-3.3513E-05],[173.40491,-3.4544E-05],[173.40832,-3.4544E-05],[173.41173,-3.7122E-05],[173.41514,-3.0935E-05],[173.41854,-3.1967E-05],[173.42195,-3.7122E-05],[173.42536,-3.6607E-05],[173.42877,-3.6607E-05],[173.43218,-3.7122E-05],[173.43558,-3.6607E-05],[173.43899,-3.4029E-05],[173.4424,-3.6091E-05],[173.44581,-3.8154E-05],[173.44922,-4.0732E-05],[173.45262,-3.8154E-05],[173.45603,-3.2998E-05],[173.45944,-3.4544E-05],[173.46285,-3.6607E-05],[173.46626,-3.6607E-05],[173.46966,-3.4029E-05],[173.47307,-3.1967E-05],[173.47648,-2.9904E-05],[173.47989,-3.4029E-05],[173.4833,-3.5576E-05],[173.4867,-3.506E-05],[173.49011,-3.8669E-05],[173.49352,-3.506E-05],[173.49693,-3.4544E-05]]}
-{"quant":[173.663,1.1447],"mems":[[173.56509,-3.506E-05],[173.5685,-3.6091E-05],[173.5719,-3.8669E-05],[173.57531,-3.1451E-05],[173.57872,-3.4029E-05],[173.58213,-3.4544E-05],[173.58554,-3.3513E-05],[173.58894,-3.6607E-05],[173.59235,-3.6091E-05],[173.59576,-3.4029E-05],[173.59917,-3.3513E-05],[173.60258,-3.4544E-05],[173.60598,-3.97E-05],[173.60939,-3.6607E-05],[173.6128,-3.506E-05],[173.61621,-3.9185E-05],[173.61962,-3.6607E-05],[173.62302,-3.8154E-05],[173.62643,-3.9185E-05],[173.62984,-3.506E-05],[173.63325,-3.7638E-05],[173.63666,-3.6091E-05],[173.64006,-3.6091E-05],[173.64347,-3.8669E-05],[173.64688,-3.7122E-05],[173.65029,-3.7638E-05],[173.6537,-3.6607E-05],[173.6571,-3.7122E-05],[173.66051,-3.4029E-05],[173.66392,-3.1967E-05],[173.66733,-4.0216E-05],[173.67074,-3.7638E-05],[173.67414,-3.1451E-05],[173.67755,-3.7638E-05],[173.68096,-3.9185E-05],[173.68437,-3.506E-05],[173.68778,-3.4029E-05],[173.69118,-3.6091E-05],[173.69459,-3.3513E-05],[173.698,-3.6091E-05],[173.70141,-4.1763E-05],[173.70482,-3.8154E-05],[173.70822,-3.7638E-05],[173.71163,-3.2998E-05],[173.71504,-3.3513E-05],[173.71845,-3.8154E-05],[173.72186,-3.7638E-05],[173.72526,-3.97E-05],[173.72867,-3.97E-05],[173.73208,-3.97E-05],[173.73549,-3.4029E-05],[173.7389,-3.5576E-05],[173.7423,-4.0216E-05],[173.74571,-3.6091E-05],[173.74912,-3.2998E-05],[173.75253,-3.2482E-05],[173.75594,-3.5576E-05],[173.75934,-3.6607E-05],[173.76275,-3.4544E-05],[173.76616,-3.4029E-05],[173.76957,-3.4544E-05],[173.77298,-3.4029E-05],[173.77638,-3.4029E-05],[173.77979,-3.2998E-05],[173.7832,-3.4029E-05],[173.78661,-3.4029E-05],[173.79002,-3.2998E-05],[173.79342,-3.6091E-05],[173.79683,-3.9185E-05],[173.80024,-4.1247E-05],[173.80365,-3.7638E-05],[173.80706,-3.6091E-05],[173.81046,-3.6091E-05],[173.81387,-3.5576E-05],[173.81728,-3.506E-05],[173.82069,-3.1967E-05],[173.8241,-3.9185E-05],[173.8275,-3.8154E-05],[173.83091,-3.3513E-05],[173.83432,-3.5576E-05],[173.83773,-3.5576E-05],[173.84114,-3.6607E-05],[173.84454,-3.6091E-05],[173.84795,-3.506E-05],[173.85136,-3.1967E-05],[173.85477,-3.2998E-05],[173.85818,-3.4544E-05],[173.86158,-3.3513E-05]]}
-{"quant":[174.009,1.1261],"mems":[[173.9093,-3.6091E-05],[173.9127,-3.506E-05],[173.91611,-3.4029E-05],[173.91952,-3.97E-05],[173.92293,-3.9185E-05],[173.92634,-3.97E-05],[173.92974,-3.8154E-05],[173.93315,-3.1967E-05],[173.93656,-3.4544E-05],[173.93997,-3.2998E-05],[173.94338,-3.506E-05],[173.94678,-3.7638E-05],[173.95019,-3.0935E-05],[173.9536,-3.4029E-05],[173.95701,-3.8669E-05],[173.96042,-3.8669E-05],[173.96382,-3.9185E-05],[173.96723,-3.4544E-05],[173.97064,-3.506E-05],[173.97405,-3.5576E-05],[173.97746,-3.7638E-05],[173.98086,-4.1247E-05],[173.98427,-3.4544E-05],[173.98768,-3.3513E-05],[173.99109,-3.3513E-05],[173.9945,-2.8357E-05],[173.9979,-3.1967E-05],[174.00131,-3.506E-05],[174.00472,-4.1763E-05],[174.00813,-3.5576E-05],[174.01154,-3.4029E-05],[174.01494,-4.0216E-05],[174.01835,-2.9904E-05],[174.02176,-3.506E-05],[174.02517,-4.1247E-05],[174.02858,-3.6607E-05],[174.03198,-3.8669E-05],[174.03539,-4.0732E-05],[174.0388,-3.97E-05],[174.04221,-3.506E-05],[174.04562,-3.0935E-05],[174.04902,-3.042E-05],[174.05243,-3.1451E-05],[174.05584,-3.506E-05],[174.05925,-4.0732E-05],[174.06266,-3.97E-05],[174.06606,-3.4544E-05],[174.06947,-3.3513E-05],[174.07288,-3.3513E-05],[174.07629,-3.7122E-05],[174.0797,-3.7638E-05],[174.0831,-3.9185E-05],[174.08651,-3.7638E-05],[174.08992,-3.5576E-05],[174.09333,-3.6607E-05],[174.09674,-3.506E-05],[174.10014,-3.7122E-05],[174.10355,-3.4029E-05],[174.10696,-3.1451E-05],[174.11037,-3.5576E-05],[174.11378,-3.1967E-05],[174.11718,-3.4029E-05],[174.12059,-3.7122E-05],[174.124,-3.3513E-05],[174.12741,-3.6091E-05],[174.13082,-3.4029E-05],[174.13422,-3.506E-05],[174.13763,-4.0216E-05],[174.14104,-3.9185E-05],[174.14445,-3.5576E-05],[174.14786,-3.506E-05],[174.15126,-3.7122E-05],[174.15467,-3.5576E-05],[174.15808,-3.7638E-05],[174.16149,-3.9185E-05],[174.1649,-3.8154E-05],[174.1683,-3.6091E-05],[174.17171,-3.3513E-05],[174.17512,-3.4029E-05],[174.17853,-3.2482E-05],[174.18194,-3.4544E-05],[174.18534,-3.7122E-05],[174.18875,-3.4029E-05],[174.19216,-3.2998E-05],[174.19557,-3.0935E-05],[174.19898,-3.0935E-05],[174.20238,-3.7638E-05],[174.20579,-3.6607E-05]]}
-{"quant":[174.363,1.1071],"mems":[[174.26373,-3.4544E-05],[174.26714,-3.506E-05],[174.27054,-3.5576E-05],[174.27395,-3.5576E-05],[174.27736,-3.6607E-05],[174.28077,-3.5576E-05],[174.28418,-3.6607E-05],[174.28758,-3.4544E-05],[174.29099,-3.2998E-05],[174.2944,-3.6607E-05],[174.29781,-3.5576E-05],[174.30122,-3.2482E-05],[174.30462,-3.5576E-05],[174.30803,-3.6091E-05],[174.31144,-3.6607E-05],[174.31485,-3.7122E-05],[174.31826,-3.6607E-05],[174.32166,-3.6607E-05],[174.32507,-3.5576E-05],[174.32848,-3.2998E-05],[174.33189,-3.2482E-05],[174.3353,-3.97E-05],[174.3387,-3.6607E-05],[174.34211,-3.6607E-05],[174.34552,-4.1247E-05],[174.34893,-3.4544E-05],[174.35234,-3.506E-05],[174.35574,-3.7638E-05],[174.35915,-3.8154E-05],[174.36256,-3.8154E-05],[174.36597,-3.3513E-05],[174.36938,-3.1451E-05],[174.37278,-3.4029E-05],[174.37619,-3.3513E-05],[174.3796,-3.7638E-05],[174.38301,-3.8669E-05],[174.38642,-3.4029E-05],[174.38982,-3.97E-05],[174.39323,-4.0732E-05],[174.39664,-3.4029E-05],[174.40005,-3.506E-05],[174.40346,-3.8154E-05],[174.40686,-3.3513E-05],[174.41027,-3.1967E-05],[174.41368,-3.2998E-05],[174.41709,-3.3513E-05],[174.4205,-3.6091E-05],[174.4239,-3.6091E-05],[174.42731,-3.5576E-05],[174.43072,-3.2998E-05],[174.43413,-3.5576E-05],[174.43754,-3.7122E-05],[174.44094,-3.4544E-05],[174.44435,-3.4029E-05],[174.44776,-3.2998E-05],[174.45117,-3.7122E-05],[174.45458,-3.506E-05],[174.45798,-3.2998E-05],[174.46139,-3.3513E-05],[174.4648,-3.506E-05],[174.46821,-3.8669E-05],[174.47162,-4.0216E-05],[174.47502,-4.1763E-05],[174.47843,-3.7638E-05],[174.48184,-3.4544E-05],[174.48525,-3.5576E-05],[174.48866,-3.5576E-05],[174.49206,-3.042E-05],[174.49547,-3.1967E-05],[174.49888,-3.5576E-05],[174.50229,-3.0935E-05],[174.5057,-3.2482E-05],[174.5091,-3.4544E-05],[174.51251,-3.5576E-05],[174.51592,-3.97E-05],[174.51933,-3.9185E-05],[174.52274,-3.6607E-05],[174.52614,-3.6607E-05],[174.52955,-3.7638E-05],[174.53296,-3.6607E-05],[174.53637,-3.8154E-05],[174.53978,-3.8154E-05],[174.54318,-3.5576E-05],[174.54659,-3.4544E-05],[174.55,-3.4029E-05],[174.55341,-4.0216E-05],[174.55682,-4.0732E-05],[174.56022,-3.2482E-05]]}
-{"quant":[174.696,1.0927],"mems":[[174.59771,-3.8154E-05],[174.60112,-3.6607E-05],[174.60453,-3.4544E-05],[174.60794,-3.2482E-05],[174.61134,-3.2482E-05],[174.61475,-3.3513E-05],[174.61816,-3.7638E-05],[174.62157,-3.7638E-05],[174.62498,-3.5576E-05],[174.62838,-3.6091E-05],[174.63179,-3.9185E-05],[174.6352,-4.0732E-05],[174.63861,-3.97E-05],[174.64202,-3.97E-05],[174.64542,-3.4029E-05],[174.64883,-3.5576E-05],[174.65224,-3.97E-05],[174.65565,-3.9185E-05],[174.65906,-3.8669E-05],[174.66246,-3.4029E-05],[174.66587,-3.2998E-05],[174.66928,-3.6091E-05],[174.67269,-3.6091E-05],[174.6761,-3.4029E-05],[174.6795,-3.4544E-05],[174.68291,-3.4544E-05],[174.68632,-3.3513E-05],[174.68973,-3.2482E-05],[174.69314,-3.4029E-05],[174.69654,-3.9185E-05],[174.69995,-3.7638E-05],[174.70336,-3.4544E-05],[174.70677,-3.7122E-05],[174.71018,-3.97E-05],[174.71358,-4.0216E-05],[174.71699,-3.97E-05],[174.7204,-3.4544E-05],[174.72381,-3.042E-05],[174.72722,-3.6091E-05],[174.73062,-3.8669E-05],[174.73403,-3.6091E-05],[174.73744,-4.0216E-05],[174.74085,-3.97E-05],[174.74426,-3.6607E-05],[174.74766,-3.8154E-05],[174.75107,-3.7122E-05],[174.75448,-4.0216E-05],[174.75789,-3.7638E-05],[174.7613,-3.6091E-05],[174.7647,-3.6091E-05],[174.76811,-3.1967E-05],[174.77152,-3.4029E-05],[174.77493,-3.4029E-05],[174.77834,-3.7638E-05],[174.78174,-3.6607E-05],[174.78515,-3.3513E-05],[174.78856,-3.506E-05],[174.79197,-3.97E-05],[174.79538,-4.2278E-05],[174.79878,-3.6607E-05],[174.80219,-3.6607E-05],[174.8056,-3.6091E-05],[174.80901,-3.7122E-05],[174.81242,-3.7122E-05],[174.81582,-3.7122E-05],[174.81923,-3.8669E-05],[174.82264,-3.2998E-05],[174.82605,-3.1967E-05],[174.82946,-3.5576E-05],[174.83286,-3.7122E-05],[174.83627,-3.6607E-05],[174.83968,-3.6607E-05],[174.84309,-3.7638E-05],[174.8465,-3.6091E-05],[174.8499,-3.2998E-05],[174.85331,-3.4544E-05],[174.85672,-4.0732E-05],[174.86013,-3.97E-05],[174.86354,-3.6091E-05],[174.86694,-3.8669E-05],[174.87035,-3.8669E-05],[174.87376,-3.506E-05],[174.87717,-3.97E-05],[174.88058,-3.97E-05],[174.88398,-3.8669E-05],[174.88739,-3.6607E-05],[174.8908,-3.7122E-05],[174.89421,-4.1247E-05]]}
-{"quant":[175.035,1.0781],"mems":[[174.9351,-3.4029E-05],[174.93851,-3.6607E-05],[174.94192,-3.5576E-05],[174.94533,-3.6091E-05],[174.94874,-4.2794E-05],[174.95214,-4.1763E-05],[174.95555,-3.8154E-05],[174.95896,-3.8154E-05],[174.96237,-3.7638E-05],[174.96578,-3.8154E-05],[174.96918,-3.9185E-05],[174.97259,-3.97E-05],[174.976,-3.8669E-05],[174.97941,-3.7122E-05],[174.98282,-3.4029E-05],[174.98622,-3.7122E-05],[174.98963,-3.8154E-05],[174.99304,-3.7122E-05],[174.99645,-3.8154E-05],[174.99986,-3.8154E-05],[175.00326,-3.6091E-05],[175.00667,-3.97E-05],[175.01008,-4.0732E-05],[175.01349,-3.6091E-05],[175.0169,-3.6607E-05],[175.0203,-3.6091E-05],[175.02371,-3.7122E-05],[175.02712,-3.97E-05],[175.03053,-3.97E-05],[175.03394,-3.7122E-05],[175.03734,-3.4029E-05],[175.04075,-3.2482E-05],[175.04416,-3.6607E-05],[175.04757,-3.8154E-05],[175.05098,-3.2482E-05],[175.05438,-3.506E-05],[175.05779,-3.042E-05],[175.0612,-2.6811E-05],[175.06461,-3.042E-05],[175.06802,-3.4029E-05],[175.07142,-4.0216E-05],[175.07483,-3.6607E-05],[175.07824,-3.4544E-05],[175.08165,-3.506E-05],[175.08506,-3.4544E-05],[175.08846,-3.8669E-05],[175.09187,-3.9185E-05],[175.09528,-3.7638E-05],[175.09869,-3.5576E-05],[175.1021,-2.9904E-05],[175.1055,-3.042E-05],[175.10891,-3.7638E-05],[175.11232,-4.1247E-05],[175.11573,-4.2278E-05],[175.11914,-3.8669E-05],[175.12254,-4.1247E-05],[175.12595,-4.0732E-05],[175.12936,-3.2998E-05],[175.13277,-3.9185E-05],[175.13618,-3.6607E-05],[175.13958,-3.042E-05],[175.14299,-3.6607E-05],[175.1464,-3.97E-05],[175.14981,-4.2278E-05],[175.15322,-4.2794E-05],[175.15662,-3.97E-05],[175.16003,-3.5576E-05],[175.16344,-3.4544E-05],[175.16685,-3.7122E-05],[175.17026,-3.97E-05],[175.17366,-3.8154E-05],[175.17707,-3.5576E-05],[175.18048,-3.8669E-05],[175.18389,-3.8154E-05],[175.1873,-3.8154E-05],[175.1907,-3.6091E-05],[175.19411,-3.4029E-05],[175.19752,-3.3513E-05],[175.20093,-3.6091E-05],[175.20434,-3.8154E-05],[175.20774,-3.4029E-05],[175.21115,-3.6091E-05],[175.21456,-3.8669E-05],[175.21797,-3.4544E-05],[175.22138,-3.7638E-05],[175.22478,-3.6607E-05],[175.22819,-3.6607E-05],[175.2316,-4.2794E-05]]}
-{"quant":[175.381,1.0718],"mems":[[175.28272,-3.5576E-05],[175.28613,-3.7122E-05],[175.28954,-3.506E-05],[175.29294,-3.2482E-05],[175.29635,-3.8669E-05],[175.29976,-3.7638E-05],[175.30317,-3.7122E-05],[175.30658,-3.6091E-05],[175.30998,-3.4029E-05],[175.31339,-3.8154E-05],[175.3168,-4.2278E-05],[175.32021,-3.5576E-05],[175.32362,-3.3513E-05],[175.32702,-3.7122E-05],[175.33043,-3.3513E-05],[175.33384,-3.4544E-05],[175.33725,-3.3513E-05],[175.34066,-3.4544E-05],[175.34406,-3.9185E-05],[175.34747,-3.7638E-05],[175.35088,-3.6607E-05],[175.35429,-3.8154E-05],[175.3577,-3.2998E-05],[175.3611,-3.1967E-05],[175.36451,-3.9185E-05],[175.36792,-3.8154E-05],[175.37133,-3.4544E-05],[175.37474,-3.6091E-05],[175.37814,-3.5576E-05],[175.38155,-3.4029E-05],[175.38496,-3.97E-05],[175.38837,-3.8669E-05],[175.39178,-3.9185E-05],[175.39518,-3.8154E-05],[175.39859,-3.506E-05],[175.402,-3.9185E-05],[175.40541,-3.6091E-05],[175.40882,-3.5576E-05],[175.41222,-3.6091E-05],[175.41563,-3.4544E-05],[175.41904,-3.6607E-05],[175.42245,-3.8154E-05],[175.42586,-3.5576E-05],[175.42926,-3.3513E-05],[175.43267,-3.8669E-05],[175.43608,-3.6091E-05],[175.43949,-3.8154E-05],[175.4429,-3.7122E-05],[175.4463,-3.5576E-05],[175.44971,-3.506E-05],[175.45312,-3.1967E-05],[175.45653,-3.6091E-05],[175.45994,-3.1967E-05],[175.46334,-3.6607E-05],[175.46675,-3.97E-05],[175.47016,-3.8154E-05],[175.47357,-3.6091E-05],[175.47698,-3.1451E-05],[175.48038,-4.0216E-05],[175.48379,-4.0732E-05],[175.4872,-3.7638E-05],[175.49061,-3.7122E-05],[175.49402,-3.6091E-05],[175.49742,-3.5576E-05],[175.50083,-3.0935E-05],[175.50424,-3.6091E-05],[175.50765,-3.7638E-05],[175.51106,-3.7122E-05],[175.51446,-3.4544E-05],[175.51787,-3.506E-05],[175.52128,-4.1763E-05],[175.52469,-3.8154E-05],[175.5281,-3.8154E-05],[175.5315,-3.7638E-05],[175.53491,-3.1967E-05],[175.53832,-3.506E-05],[175.54173,-3.8154E-05],[175.54514,-4.2278E-05],[175.54854,-3.7122E-05],[175.55195,-3.2998E-05],[175.55536,-3.3513E-05],[175.55877,-3.042E-05],[175.56218,-3.3513E-05],[175.56558,-4.1247E-05],[175.56899,-4.2794E-05],[175.5724,-3.6091E-05],[175.57581,-2.9904E-05],[175.57922,-3.042E-05]]}
-{"quant":[175.734,1.0604],"mems":[[175.63715,-4.0732E-05],[175.64056,-3.4029E-05],[175.64397,-3.4029E-05],[175.64738,-3.7122E-05],[175.65078,-3.4029E-05],[175.65419,-3.4029E-05],[175.6576,-3.5576E-05],[175.66101,-3.6091E-05],[175.66442,-3.6607E-05],[175.66782,-3.0935E-05],[175.67123,-2.6811E-05],[175.67464,-3.3513E-05],[175.67805,-3.6091E-05],[175.68146,-3.4029E-05],[175.68486,-3.4544E-05],[175.68827,-3.6091E-05],[175.69168,-3.6607E-05],[175.69509,-3.4544E-05],[175.6985,-3.5576E-05],[175.7019,-3.8154E-05],[175.70531,-3.5576E-05],[175.70872,-3.5576E-05],[175.71213,-3.7122E-05],[175.71554,-3.6091E-05],[175.71894,-4.0216E-05],[175.72235,-4.0732E-05],[175.72576,-3.5576E-05],[175.72917,-3.4544E-05],[175.73258,-3.6091E-05],[175.73598,-3.8669E-05],[175.73939,-3.8669E-05],[175.7428,-3.506E-05],[175.74621,-3.1967E-05],[175.74962,-3.2998E-05],[175.75302,-3.6091E-05],[175.75643,-3.4029E-05],[175.75984,-3.3513E-05],[175.76325,-3.8669E-05],[175.76666,-3.8669E-05],[175.77006,-3.3513E-05],[175.77347,-3.1967E-05],[175.77688,-3.5576E-05],[175.78029,-3.8669E-05],[175.7837,-3.4029E-05],[175.7871,-3.4544E-05],[175.79051,-3.6091E-05],[175.79392,-3.2482E-05],[175.79733,-3.6607E-05],[175.80074,-3.8669E-05],[175.80414,-3.506E-05],[175.80755,-3.2998E-05],[175.81096,-3.5576E-05],[175.81437,-3.6091E-05],[175.81778,-3.97E-05],[175.82118,-4.1763E-05],[175.82459,-3.4544E-05],[175.828,-3.4544E-05],[175.83144,-3.7638E-05],[175.83487,-3.7122E-05],[175.83831,-3.7638E-05],[175.84175,-4.0216E-05],[175.84519,-3.9185E-05],[175.84862,-3.4544E-05],[175.85206,-3.1451E-05],[175.8555,-3.3513E-05],[175.85894,-3.9185E-05],[175.86237,-3.7638E-05],[175.86581,-3.6607E-05],[175.86925,-3.6607E-05],[175.87269,-3.4029E-05],[175.87612,-3.4029E-05],[175.87956,-3.7122E-05],[175.883,-3.7638E-05],[175.88643,-3.4544E-05],[175.88987,-3.6091E-05],[175.89331,-3.5576E-05],[175.89675,-3.5576E-05],[175.90018,-3.8154E-05],[175.90362,-3.7638E-05],[175.90706,-3.6607E-05],[175.9105,-3.4029E-05],[175.91393,-3.7122E-05],[175.91737,-3.6607E-05],[175.92081,-3.5576E-05],[175.92425,-3.7638E-05],[175.92768,-3.3513E-05],[175.93112,-3.506E-05],[175.93456,-3.4544E-05]]}
-{"quant":[176.104,1.0363],"mems":[[176.00674,-3.6091E-05],[176.01018,-3.3513E-05],[176.01362,-3.1967E-05],[176.01705,-3.8669E-05],[176.02049,-4.3825E-05],[176.02393,-4.1247E-05],[176.02737,-3.8669E-05],[176.0308,-3.3513E-05],[176.03424,-3.5576E-05],[176.03768,-3.4029E-05],[176.04111,-3.3513E-05],[176.04455,-3.8154E-05],[176.04799,-3.8154E-05],[176.05143,-4.0732E-05],[176.05486,-4.0732E-05],[176.0583,-3.8154E-05],[176.06174,-3.506E-05],[176.06518,-4.0216E-05],[176.06861,-4.0216E-05],[176.07205,-3.6091E-05],[176.07549,-3.7638E-05],[176.07893,-3.506E-05],[176.08236,-4.2278E-05],[176.0858,-4.0732E-05],[176.08924,-3.5576E-05],[176.09267,-3.6091E-05],[176.09611,-3.1967E-05],[176.09955,-3.9185E-05],[176.10299,-4.0732E-05],[176.10642,-3.7638E-05],[176.10986,-3.7122E-05],[176.1133,-3.9185E-05],[176.11674,-4.4856E-05],[176.12017,-4.1763E-05],[176.12361,-4.1247E-05],[176.12705,-4.2278E-05],[176.13049,-4.1763E-05],[176.13392,-3.9185E-05],[176.13736,-4.0216E-05],[176.1408,-3.97E-05],[176.14423,-3.6091E-05],[176.14767,-3.9185E-05],[176.15111,-3.2482E-05],[176.15455,-3.1451E-05],[176.15798,-3.8669E-05],[176.16142,-3.8154E-05],[176.16486,-3.506E-05],[176.1683,-3.4544E-05],[176.17173,-3.8154E-05],[176.17517,-3.6091E-05],[176.17861,-3.7122E-05],[176.18205,-3.97E-05],[176.18548,-3.7122E-05],[176.18892,-3.506E-05],[176.19236,-3.042E-05],[176.19579,-3.7122E-05],[176.19923,-3.8669E-05],[176.20267,-3.4544E-05],[176.20611,-3.4544E-05],[176.20954,-3.4029E-05],[176.21298,-4.0216E-05],[176.21642,-3.4029E-05],[176.21986,-3.2482E-05],[176.22329,-3.4544E-05],[176.22673,-2.9904E-05],[176.23017,-3.8669E-05],[176.23361,-3.6607E-05],[176.23704,-3.4029E-05],[176.24048,-3.4029E-05],[176.24392,-3.2998E-05],[176.24735,-3.3513E-05],[176.25079,-3.2998E-05],[176.25423,-3.9185E-05],[176.25767,-3.9185E-05],[176.2611,-3.7638E-05],[176.26454,-3.8154E-05],[176.26798,-3.6091E-05],[176.27142,-3.5576E-05],[176.27485,-3.5576E-05],[176.27829,-3.506E-05],[176.28173,-3.4544E-05],[176.28517,-3.6607E-05],[176.2886,-3.6091E-05],[176.29204,-3.7122E-05],[176.29548,-3.8669E-05],[176.29891,-3.8154E-05],[176.30235,-3.4029E-05]]}
-{"quant":[176.455,1.0076],"mems":[[176.35735,-3.6607E-05],[176.36079,-3.8669E-05],[176.36422,-4.2278E-05],[176.36766,-3.5576E-05],[176.3711,-3.6091E-05],[176.37454,-3.5576E-05],[176.37797,-3.4029E-05],[176.38141,-3.7122E-05],[176.38485,-3.2482E-05],[176.38829,-3.4029E-05],[176.39172,-3.6091E-05],[176.39516,-3.7122E-05],[176.3986,-3.8669E-05],[176.40203,-4.0216E-05],[176.40547,-3.8154E-05],[176.40891,-3.1967E-05],[176.41235,-3.4544E-05],[176.41578,-3.5576E-05],[176.41922,-3.7638E-05],[176.42266,-3.7638E-05],[176.4261,-3.5576E-05],[176.42953,-4.0732E-05],[176.43297,-3.8154E-05],[176.43641,-3.5576E-05],[176.43985,-3.8669E-05],[176.44328,-3.8154E-05],[176.44672,-3.5576E-05],[176.45016,-3.5576E-05],[176.45359,-3.6091E-05],[176.45703,-3.8154E-05],[176.46047,-3.4544E-05],[176.46391,-3.3513E-05],[176.46734,-3.7122E-05],[176.47078,-3.506E-05],[176.47422,-3.506E-05],[176.47766,-3.9185E-05],[176.48109,-3.9185E-05],[176.48453,-3.9185E-05],[176.48797,-3.7122E-05],[176.49141,-3.1451E-05],[176.49484,-3.6607E-05],[176.49828,-3.7122E-05],[176.50172,-3.4029E-05],[176.50515,-3.4544E-05],[176.50859,-3.2482E-05],[176.51203,-3.3513E-05],[176.51547,-3.8669E-05],[176.5189,-4.2278E-05],[176.52234,-3.6091E-05],[176.52578,-3.5576E-05],[176.52922,-3.6607E-05],[176.53265,-3.1967E-05],[176.53609,-3.506E-05],[176.53953,-3.97E-05],[176.54297,-4.0216E-05],[176.5464,-4.0732E-05],[176.54984,-3.5576E-05],[176.55328,-3.2482E-05],[176.55671,-3.7638E-05],[176.56015,-3.6607E-05],[176.56359,-3.4029E-05],[176.56703,-3.2998E-05],[176.57046,-3.042E-05],[176.5739,-3.6091E-05],[176.57734,-3.8669E-05],[176.58078,-3.4544E-05],[176.58421,-3.6607E-05],[176.58765,-3.7638E-05],[176.59109,-3.5576E-05],[176.59453,-3.2998E-05],[176.59796,-3.8154E-05],[176.6014,-3.9185E-05],[176.60484,-3.4029E-05],[176.60827,-3.9185E-05],[176.61171,-3.5576E-05],[176.61515,-2.9904E-05],[176.61859,-3.7122E-05],[176.62202,-3.9185E-05],[176.62546,-3.506E-05],[176.6289,-3.3513E-05],[176.63234,-3.1967E-05],[176.63577,-3.3513E-05],[176.63921,-3.5576E-05],[176.64265,-3.4544E-05],[176.64609,-3.7122E-05],[176.64952,-3.7638E-05],[176.65296,-3.7638E-05]]}
-{"quant":[176.802,0.98697],"mems":[[176.70452,-3.2482E-05],[176.70796,-3.042E-05],[176.71139,-3.2998E-05],[176.71483,-3.2482E-05],[176.71827,-3.6607E-05],[176.72171,-3.7122E-05],[176.72514,-3.6607E-05],[176.72858,-3.7638E-05],[176.73202,-3.1451E-05],[176.73546,-3.5576E-05],[176.73889,-4.2278E-05],[176.74233,-3.6091E-05],[176.74577,-3.4029E-05],[176.74921,-3.7638E-05],[176.75264,-3.3513E-05],[176.75608,-3.4544E-05],[176.75952,-4.4341E-05],[176.76295,-4.2794E-05],[176.76639,-4.0216E-05],[176.76983,-3.6091E-05],[176.77327,-2.9389E-05],[176.7767,-3.4544E-05],[176.78014,-4.1763E-05],[176.78358,-3.9185E-05],[176.78702,-3.4029E-05],[176.79045,-3.4544E-05],[176.79389,-3.4544E-05],[176.79733,-3.2998E-05],[176.80077,-3.506E-05],[176.8042,-3.6091E-05],[176.80764,-3.7638E-05],[176.81108,-3.506E-05],[176.81451,-3.506E-05],[176.81795,-3.97E-05],[176.82139,-3.7638E-05],[176.82483,-3.7638E-05],[176.82826,-3.506E-05],[176.8317,-3.2482E-05],[176.83514,-3.506E-05],[176.83858,-3.8669E-05],[176.84201,-4.1247E-05],[176.84545,-3.7122E-05],[176.84889,-3.5576E-05],[176.85233,-3.506E-05],[176.85576,-3.2998E-05],[176.8592,-3.7122E-05],[176.86264,-3.8669E-05],[176.86607,-3.2482E-05],[176.86951,-3.2482E-05],[176.87295,-3.7638E-05],[176.87639,-3.6091E-05],[176.87982,-3.6607E-05],[176.88326,-4.0216E-05],[176.8867,-3.9185E-05],[176.89014,-3.506E-05],[176.89357,-3.2998E-05],[176.89701,-3.4029E-05],[176.90045,-3.3513E-05],[176.90389,-3.6607E-05],[176.90732,-3.7638E-05],[176.91076,-3.3513E-05],[176.9142,-3.2482E-05],[176.91763,-3.0935E-05],[176.92107,-2.9904E-05],[176.92451,-3.8154E-05],[176.92795,-4.0216E-05],[176.93138,-3.0935E-05],[176.93482,-3.0935E-05],[176.93826,-3.8669E-05],[176.9417,-4.0216E-05],[176.94513,-3.7122E-05],[176.94857,-3.7122E-05],[176.95201,-3.6091E-05],[176.95545,-3.5576E-05],[176.95888,-4.0732E-05],[176.96232,-4.0216E-05],[176.96576,-3.7638E-05],[176.96919,-3.6091E-05],[176.97263,-3.3513E-05],[176.97607,-3.7638E-05],[176.97951,-3.7122E-05],[176.98294,-3.4029E-05],[176.98638,-3.6091E-05],[176.98982,-3.7638E-05],[176.99326,-3.7638E-05],[176.99669,-3.7122E-05],[177.00013,-4.0216E-05]]}
-{"quant":[177.14,0.96949],"mems":[[177.04138,-3.6091E-05],[177.04482,-3.6607E-05],[177.04825,-2.9389E-05],[177.05169,-3.7638E-05],[177.05513,-3.7638E-05],[177.05857,-3.4544E-05],[177.062,-3.506E-05],[177.06544,-3.6091E-05],[177.06888,-3.6607E-05],[177.07231,-3.0935E-05],[177.07575,-3.2482E-05],[177.07919,-3.6607E-05],[177.08263,-3.506E-05],[177.08606,-3.2482E-05],[177.0895,-3.2998E-05],[177.09294,-3.1967E-05],[177.09638,-3.5576E-05],[177.09981,-3.9185E-05],[177.10325,-3.7122E-05],[177.10669,-3.7638E-05],[177.11013,-2.9389E-05],[177.11356,-3.2482E-05],[177.117,-3.9185E-05],[177.12044,-3.8669E-05],[177.12387,-4.2794E-05],[177.12731,-3.4029E-05],[177.13075,-3.1451E-05],[177.13419,-3.97E-05],[177.13762,-3.8669E-05],[177.14106,-3.5576E-05],[177.1445,-3.4544E-05],[177.14794,-3.4544E-05],[177.15137,-3.4544E-05],[177.15481,-3.5576E-05],[177.15825,-3.8154E-05],[177.16169,-3.506E-05],[177.16512,-3.6091E-05],[177.16856,-3.2998E-05],[177.172,-3.042E-05],[177.17543,-3.6091E-05],[177.17887,-3.506E-05],[177.18231,-3.7122E-05],[177.18575,-3.506E-05],[177.18918,-3.3513E-05],[177.19262,-3.506E-05],[177.19606,-3.506E-05],[177.1995,-3.6091E-05],[177.20293,-3.506E-05],[177.20637,-3.5576E-05],[177.20981,-3.2482E-05],[177.21325,-3.2482E-05],[177.21668,-3.3513E-05],[177.22012,-3.4544E-05],[177.22356,-3.7638E-05],[177.22699,-3.7122E-05],[177.23043,-3.6607E-05],[177.23387,-3.506E-05],[177.23731,-3.6091E-05],[177.24074,-3.6607E-05],[177.24418,-3.4029E-05],[177.24762,-3.1967E-05],[177.25106,-3.1451E-05],[177.25449,-3.6607E-05],[177.25793,-4.2794E-05],[177.26137,-3.8154E-05],[177.26481,-3.506E-05],[177.26824,-3.1967E-05],[177.27168,-2.9389E-05],[177.27512,-3.4544E-05],[177.27855,-4.0216E-05],[177.28199,-4.1763E-05],[177.28543,-3.3513E-05],[177.28887,-3.5576E-05],[177.2923,-3.9185E-05],[177.29574,-3.97E-05],[177.29918,-4.3825E-05],[177.30262,-3.6091E-05],[177.30605,-3.506E-05],[177.30949,-3.6607E-05],[177.31293,-3.506E-05],[177.31637,-3.3513E-05],[177.3198,-3.2482E-05],[177.32324,-3.6091E-05],[177.32668,-3.6607E-05],[177.33011,-3.506E-05],[177.33355,-3.4029E-05],[177.33699,-3.5576E-05]]}
-{"quant":[177.487,0.95336],"mems":[[177.38855,-3.506E-05],[177.39199,-3.7122E-05],[177.39542,-3.4544E-05],[177.39886,-3.506E-05],[177.4023,-3.7638E-05],[177.40574,-3.8154E-05],[177.40917,-4.0732E-05],[177.41261,-3.5576E-05],[177.41605,-3.0935E-05],[177.41949,-3.7638E-05],[177.42292,-4.3309E-05],[177.42636,-3.9185E-05],[177.4298,-3.8669E-05],[177.43323,-4.0732E-05],[177.43667,-4.3825E-05],[177.44011,-4.2278E-05],[177.44355,-3.7638E-05],[177.44698,-3.9185E-05],[177.45042,-3.506E-05],[177.45386,-3.6091E-05],[177.4573,-3.7638E-05],[177.46073,-3.506E-05],[177.46417,-3.8154E-05],[177.46761,-3.9185E-05],[177.47105,-3.6607E-05],[177.47448,-3.97E-05],[177.47792,-4.1247E-05],[177.48136,-3.4544E-05],[177.48479,-3.6091E-05],[177.48823,-3.506E-05],[177.49167,-3.2998E-05],[177.49511,-3.6091E-05],[177.49854,-3.4029E-05],[177.50198,-3.5576E-05],[177.50542,-3.4029E-05],[177.50886,-3.0935E-05],[177.51229,-3.6607E-05],[177.51573,-3.7122E-05],[177.51917,-3.2482E-05],[177.52261,-3.4029E-05],[177.52604,-3.506E-05],[177.52948,-3.4544E-05],[177.53292,-3.506E-05],[177.53635,-3.6091E-05],[177.53979,-3.8669E-05],[177.54323,-3.8154E-05],[177.54667,-3.9185E-05],[177.5501,-3.7638E-05],[177.55354,-3.6607E-05],[177.55698,-4.0732E-05],[177.56042,-3.8669E-05],[177.56385,-3.7122E-05],[177.56729,-3.7122E-05],[177.57073,-3.9185E-05],[177.57417,-3.8154E-05],[177.5776,-3.1967E-05],[177.58104,-3.6091E-05],[177.58448,-4.1763E-05],[177.58791,-3.7638E-05],[177.59135,-3.6091E-05],[177.59479,-3.97E-05],[177.59823,-3.9185E-05],[177.60166,-3.7122E-05],[177.6051,-3.6091E-05],[177.60854,-3.4544E-05],[177.61198,-3.6607E-05],[177.61541,-3.506E-05],[177.61885,-3.6091E-05],[177.62229,-3.8154E-05],[177.62573,-3.9185E-05],[177.62916,-3.6607E-05],[177.6326,-3.6091E-05],[177.63604,-4.2278E-05],[177.63947,-3.6091E-05],[177.64291,-3.1451E-05],[177.64635,-3.5576E-05],[177.64979,-3.506E-05],[177.65322,-3.506E-05],[177.65666,-3.6091E-05],[177.6601,-3.6607E-05],[177.66354,-4.0216E-05],[177.66697,-3.8669E-05],[177.67041,-3.2998E-05],[177.67385,-3.5576E-05],[177.67729,-3.6607E-05],[177.68072,-3.8669E-05],[177.68416,-3.7122E-05]]}
-{"quant":[177.845,0.93399],"mems":[[177.74603,-4.0216E-05],[177.74947,-3.7638E-05],[177.75291,-3.506E-05],[177.75634,-4.1247E-05],[177.75978,-4.4856E-05],[177.76322,-3.7638E-05],[177.76666,-3.6091E-05],[177.77009,-3.7122E-05],[177.77353,-3.6091E-05],[177.77697,-3.97E-05],[177.78041,-3.9185E-05],[177.78384,-3.8154E-05],[177.78728,-4.0216E-05],[177.79072,-3.8669E-05],[177.79415,-3.6607E-05],[177.79759,-3.4029E-05],[177.80103,-3.6091E-05],[177.80447,-3.8154E-05],[177.8079,-3.2482E-05],[177.81134,-3.4544E-05],[177.81478,-3.7638E-05],[177.81822,-3.6091E-05],[177.82165,-3.5576E-05],[177.82509,-3.5576E-05],[177.82853,-3.6091E-05],[177.83197,-3.506E-05],[177.8354,-3.6607E-05],[177.83884,-3.6607E-05],[177.84228,-3.9185E-05],[177.84571,-4.0732E-05],[177.84915,-3.7638E-05],[177.85259,-3.7638E-05],[177.85603,-3.7122E-05],[177.85946,-3.7638E-05],[177.8629,-3.6607E-05],[177.86634,-3.5576E-05],[177.86978,-3.6607E-05],[177.87321,-3.5576E-05],[177.87665,-3.4029E-05],[177.88009,-3.042E-05],[177.88353,-3.4029E-05],[177.88696,-3.4029E-05],[177.8904,-3.1451E-05],[177.89384,-3.2998E-05],[177.89727,-3.506E-05],[177.90071,-3.9185E-05],[177.90415,-3.97E-05],[177.90759,-3.8669E-05],[177.91102,-3.506E-05],[177.91446,-3.2998E-05],[177.9179,-3.506E-05],[177.92134,-3.7122E-05],[177.92477,-3.1451E-05],[177.92821,-3.2482E-05],[177.93165,-3.4029E-05],[177.93509,-3.6091E-05],[177.93852,-3.8154E-05],[177.94196,-3.2482E-05],[177.9454,-3.7638E-05],[177.94883,-3.5576E-05],[177.95227,-3.4544E-05],[177.95571,-3.7638E-05],[177.95915,-3.6091E-05],[177.96258,-4.2278E-05],[177.96602,-3.7122E-05],[177.96946,-3.506E-05],[177.9729,-3.8154E-05],[177.97633,-3.8154E-05],[177.97977,-3.97E-05],[177.98321,-3.6607E-05],[177.98665,-3.7638E-05],[177.99008,-3.6091E-05],[177.99352,-3.6607E-05],[177.99696,-3.7638E-05],[178.00039,-3.3513E-05],[178.00383,-3.6607E-05],[178.00727,-3.6607E-05],[178.01071,-3.6607E-05],[178.01414,-3.4544E-05],[178.01758,-3.2998E-05],[178.02102,-3.9185E-05],[178.02446,-3.3513E-05],[178.02789,-3.1451E-05],[178.03133,-3.5576E-05],[178.03477,-3.4544E-05],[178.03821,-3.6091E-05],[178.04164,-3.4029E-05]]}
-{"quant":[178.183,0.90274],"mems":[[178.08633,-3.7122E-05],[178.08977,-3.4029E-05],[178.0932,-3.506E-05],[178.09664,-3.4544E-05],[178.10008,-3.7122E-05],[178.10351,-3.6607E-05],[178.10695,-3.0935E-05],[178.11039,-3.6091E-05],[178.11383,-3.4544E-05],[178.11726,-3.4029E-05],[178.1207,-4.1247E-05],[178.12414,-3.4029E-05],[178.12758,-3.4029E-05],[178.13101,-3.8154E-05],[178.13445,-3.2998E-05],[178.13789,-3.7122E-05],[178.14133,-3.7638E-05],[178.14476,-3.1967E-05],[178.1482,-3.3513E-05],[178.15164,-3.8669E-05],[178.15507,-3.9185E-05],[178.15851,-3.7638E-05],[178.16195,-3.7638E-05],[178.16539,-3.9185E-05],[178.16882,-3.506E-05],[178.17226,-3.4029E-05],[178.1757,-3.6091E-05],[178.17914,-3.4544E-05],[178.18257,-3.6607E-05],[178.18601,-3.4544E-05],[178.18945,-3.506E-05],[178.19289,-3.6091E-05],[178.19632,-3.4029E-05],[178.19976,-3.4544E-05],[178.2032,-3.2998E-05],[178.20663,-3.6091E-05],[178.21007,-3.8154E-05],[178.21351,-3.8669E-05],[178.21695,-4.1763E-05],[178.22038,-4.1247E-05],[178.22382,-3.7122E-05],[178.22726,-3.1967E-05],[178.2307,-3.506E-05],[178.23413,-3.7638E-05],[178.23757,-3.7638E-05],[178.24101,-4.1763E-05],[178.24445,-3.97E-05],[178.24788,-3.1967E-05],[178.25132,-2.5779E-05],[178.25476,-3.1451E-05],[178.25819,-3.8154E-05],[178.26163,-3.8669E-05],[178.26507,-3.7122E-05],[178.26851,-3.8154E-05],[178.27194,-3.8154E-05],[178.27538,-3.7638E-05],[178.27882,-3.97E-05],[178.28226,-3.6091E-05],[178.28569,-3.8154E-05],[178.28913,-3.8154E-05],[178.29257,-3.2482E-05],[178.29601,-3.5576E-05],[178.29944,-3.4029E-05],[178.30288,-3.2482E-05],[178.30632,-3.4029E-05],[178.30975,-3.4544E-05],[178.31319,-3.7122E-05],[178.31663,-3.8154E-05],[178.32007,-3.6607E-05],[178.3235,-3.4029E-05],[178.32694,-3.4029E-05],[178.33038,-3.7638E-05],[178.33382,-3.5576E-05],[178.33725,-3.4544E-05],[178.34069,-3.6607E-05],[178.34413,-3.4029E-05],[178.34757,-3.2998E-05],[178.351,-3.1967E-05],[178.35444,-3.5576E-05],[178.35788,-3.4029E-05],[178.36131,-3.3513E-05],[178.36475,-4.0216E-05],[178.36819,-3.6091E-05],[178.37163,-3.2998E-05],[178.37506,-3.2998E-05],[178.3785,-3.4544E-05],[178.38194,-3.6091E-05]]}
-{"quant":[178.568,0.86589],"mems":[[178.47128,-3.506E-05],[178.47472,-3.6091E-05],[178.47816,-3.9185E-05],[178.48159,-3.7638E-05],[178.48503,-3.4544E-05],[178.48846,-3.5576E-05],[178.4919,-3.5576E-05],[178.49534,-3.7638E-05],[178.49877,-3.8154E-05],[178.50221,-3.6607E-05],[178.50564,-3.4029E-05],[178.50908,-3.1967E-05],[178.51252,-3.9185E-05],[178.51595,-3.7122E-05],[178.51939,-3.2998E-05],[178.52282,-3.506E-05],[178.52626,-2.9904E-05],[178.5297,-3.1967E-05],[178.53313,-3.5576E-05],[178.53657,-3.9185E-05],[178.54,-3.6607E-05],[178.54344,-3.6607E-05],[178.54688,-4.0216E-05],[178.55031,-3.1451E-05],[178.55375,-3.8154E-05],[178.55718,-3.97E-05],[178.56062,-3.1967E-05],[178.56406,-3.3513E-05],[178.56749,-3.506E-05],[178.57093,-4.0216E-05],[178.57436,-3.6091E-05],[178.5778,-3.5576E-05],[178.58124,-3.8669E-05],[178.58467,-3.2482E-05],[178.58811,-3.3513E-05],[178.59154,-4.2278E-05],[178.59498,-4.4341E-05],[178.59842,-4.1247E-05],[178.60185,-3.8154E-05],[178.60529,-3.506E-05],[178.60872,-3.2482E-05],[178.61216,-3.042E-05],[178.6156,-3.5576E-05],[178.61903,-3.9185E-05],[178.62247,-4.0216E-05],[178.6259,-4.1763E-05],[178.62934,-3.7122E-05],[178.63278,-3.7122E-05],[178.63621,-3.97E-05],[178.63965,-3.7638E-05],[178.64308,-3.8669E-05],[178.64652,-3.7122E-05],[178.64996,-3.4544E-05],[178.65339,-3.506E-05],[178.65683,-3.6607E-05],[178.66026,-4.1247E-05],[178.6637,-3.4029E-05],[178.66714,-3.0935E-05],[178.67057,-3.7122E-05],[178.67401,-3.4544E-05],[178.67744,-3.6607E-05],[178.68088,-3.9185E-05],[178.68432,-4.0216E-05],[178.68775,-3.7638E-05],[178.69119,-3.4544E-05],[178.69462,-3.8154E-05],[178.69806,-3.4544E-05],[178.7015,-3.6607E-05],[178.70493,-3.8154E-05],[178.70837,-3.506E-05],[178.7118,-3.8669E-05],[178.71524,-3.6607E-05],[178.71868,-3.8154E-05],[178.72211,-4.0216E-05],[178.72555,-3.2482E-05],[178.72898,-3.3513E-05],[178.73242,-3.4029E-05],[178.73586,-3.8154E-05],[178.73929,-4.2278E-05],[178.74273,-3.7122E-05],[178.74616,-3.8154E-05],[178.7496,-3.506E-05],[178.75304,-3.9185E-05],[178.75647,-4.2278E-05],[178.75991,-3.8154E-05],[178.76334,-3.4544E-05],[178.76678,-3.0935E-05]]}
-{"quant":[179.023,0.84318],"mems":[[178.92484,-3.506E-05],[178.92827,-3.1967E-05],[178.93171,-3.4029E-05],[178.93514,-3.7638E-05],[178.93858,-3.6607E-05],[178.94202,-3.6091E-05],[178.94545,-4.0216E-05],[178.94889,-3.8154E-05],[178.95232,-3.4029E-05],[178.95576,-3.6607E-05],[178.9592,-3.4544E-05],[178.96263,-3.5576E-05],[178.96607,-3.5576E-05],[178.9695,-3.2998E-05],[178.97294,-3.1967E-05],[178.97638,-3.506E-05],[178.97981,-3.7122E-05],[178.98325,-3.8669E-05],[178.98668,-3.7122E-05],[178.99012,-3.2998E-05],[178.99356,-3.7638E-05],[178.99699,-3.6091E-05],[179.00043,-3.6607E-05],[179.00386,-4.0732E-05],[179.0073,-3.6091E-05],[179.01074,-3.6091E-05],[179.01417,-3.7638E-05],[179.01761,-3.4544E-05],[179.02104,-3.6091E-05],[179.02448,-3.6607E-05],[179.02792,-3.5576E-05],[179.03135,-4.1763E-05],[179.03479,-4.0732E-05],[179.03822,-4.2794E-05],[179.04166,-4.0216E-05],[179.0451,-2.9904E-05],[179.04853,-2.9904E-05],[179.05197,-3.042E-05],[179.0554,-3.3513E-05],[179.05884,-4.0216E-05],[179.06228,-3.97E-05],[179.06571,-3.6091E-05],[179.06915,-3.4544E-05],[179.07258,-3.7122E-05],[179.07602,-3.8154E-05],[179.07946,-3.8154E-05],[179.08289,-3.97E-05],[179.08633,-3.6607E-05],[179.08976,-3.6091E-05],[179.0932,-4.1763E-05],[179.09664,-4.0732E-05],[179.10007,-3.4544E-05],[179.10351,-3.2998E-05],[179.10694,-3.2482E-05],[179.11038,-3.1967E-05],[179.11382,-3.4029E-05],[179.11725,-3.8669E-05],[179.12069,-4.0216E-05],[179.12412,-3.6091E-05],[179.12756,-3.2998E-05],[179.131,-3.3513E-05],[179.13443,-4.0216E-05],[179.13787,-4.1763E-05],[179.1413,-3.5576E-05],[179.14474,-3.6091E-05],[179.14818,-3.506E-05],[179.15161,-3.2998E-05],[179.15505,-3.8154E-05],[179.15848,-3.4029E-05],[179.16192,-3.3513E-05],[179.16536,-3.9185E-05],[179.16879,-3.5576E-05],[179.17223,-3.3513E-05],[179.17566,-3.5576E-05],[179.1791,-3.9185E-05],[179.18254,-4.0732E-05],[179.18597,-3.97E-05],[179.18941,-4.0732E-05],[179.19284,-3.7122E-05],[179.19628,-3.4029E-05],[179.19972,-3.7638E-05],[179.20315,-3.8154E-05],[179.20659,-3.7122E-05],[179.21002,-3.9185E-05],[179.21346,-3.7638E-05],[179.2169,-3.8669E-05],[179.22033,-3.8669E-05]]}
-{"quant":[179.355,0.83626],"mems":[[179.25813,-3.9185E-05],[179.26156,-3.7638E-05],[179.265,-3.8154E-05],[179.26844,-3.8669E-05],[179.27187,-3.8154E-05],[179.27531,-4.0216E-05],[179.27874,-3.8154E-05],[179.28218,-3.5576E-05],[179.28562,-3.506E-05],[179.28905,-3.6607E-05],[179.29249,-4.0732E-05],[179.29592,-3.8669E-05],[179.29936,-3.5576E-05],[179.3028,-3.7638E-05],[179.30623,-3.4029E-05],[179.30967,-3.4029E-05],[179.3131,-3.8154E-05],[179.31654,-3.8669E-05],[179.31998,-3.9185E-05],[179.32341,-3.6091E-05],[179.32685,-3.3513E-05],[179.33028,-3.5576E-05],[179.33372,-3.8154E-05],[179.33716,-3.97E-05],[179.34059,-3.8154E-05],[179.34403,-3.5576E-05],[179.34746,-2.9904E-05],[179.3509,-2.9389E-05],[179.35434,-3.5576E-05],[179.35777,-3.8669E-05],[179.36121,-3.4029E-05],[179.36464,-3.2998E-05],[179.36808,-3.4544E-05],[179.37152,-3.4544E-05],[179.37495,-3.6607E-05],[179.37839,-4.0216E-05],[179.38182,-4.1763E-05],[179.38526,-3.7122E-05],[179.3887,-3.3513E-05],[179.39213,-3.4029E-05],[179.39557,-3.2998E-05],[179.399,-3.3513E-05],[179.40244,-3.8154E-05],[179.40588,-3.8154E-05],[179.40931,-3.3513E-05],[179.41275,-3.4029E-05],[179.41618,-3.7638E-05],[179.41962,-4.1247E-05],[179.42306,-4.0216E-05],[179.42649,-3.7122E-05],[179.42993,-3.9185E-05],[179.43336,-3.8154E-05],[179.4368,-3.7638E-05],[179.44024,-4.1247E-05],[179.44367,-3.6607E-05],[179.44711,-3.8154E-05],[179.45054,-4.3825E-05],[179.45398,-4.0732E-05],[179.45742,-3.97E-05],[179.46085,-3.7638E-05],[179.46429,-3.506E-05],[179.46772,-3.506E-05],[179.47116,-3.3513E-05],[179.4746,-3.8154E-05],[179.47803,-4.0216E-05],[179.48147,-3.7122E-05],[179.4849,-3.7122E-05],[179.48834,-3.5576E-05],[179.49178,-3.8154E-05],[179.49521,-3.6607E-05],[179.49865,-3.2482E-05],[179.50208,-3.2998E-05],[179.50552,-3.5576E-05],[179.50896,-3.97E-05],[179.51239,-3.6091E-05],[179.51583,-3.6091E-05],[179.51926,-3.7638E-05],[179.5227,-3.8154E-05],[179.52614,-3.506E-05],[179.52957,-3.4029E-05],[179.53301,-3.8669E-05],[179.53644,-3.3513E-05],[179.53988,-3.4029E-05],[179.54332,-3.7638E-05],[179.54675,-3.7638E-05],[179.55019,-3.4029E-05],[179.55362,-3.1451E-05]]}
-{"quant":[179.714,0.81539],"mems":[[179.61547,-3.97E-05],[179.61891,-3.6091E-05],[179.62234,-3.7638E-05],[179.62578,-3.6607E-05],[179.62922,-3.5576E-05],[179.63265,-3.6607E-05],[179.63609,-3.97E-05],[179.63952,-3.7122E-05],[179.64296,-3.5576E-05],[179.6464,-3.7122E-05],[179.64983,-3.5576E-05],[179.65327,-3.8154E-05],[179.6567,-3.4029E-05],[179.66014,-3.5576E-05],[179.66358,-3.8669E-05],[179.66701,-3.2998E-05],[179.67045,-4.0216E-05],[179.67388,-4.3825E-05],[179.67732,-3.8154E-05],[179.68076,-3.9185E-05],[179.68419,-3.4544E-05],[179.68763,-3.1967E-05],[179.69106,-3.8154E-05],[179.6945,-3.4029E-05],[179.69794,-3.4544E-05],[179.70137,-3.8669E-05],[179.70481,-3.3513E-05],[179.70824,-3.3513E-05],[179.71168,-3.2998E-05],[179.71512,-3.5576E-05],[179.71855,-3.9185E-05],[179.72199,-3.6091E-05],[179.72542,-3.8154E-05],[179.72886,-3.7122E-05],[179.7323,-3.3513E-05],[179.73573,-3.8669E-05],[179.73917,-4.1763E-05],[179.7426,-3.6091E-05],[179.74604,-3.5576E-05],[179.74948,-3.9185E-05],[179.75291,-3.6091E-05],[179.75635,-3.7638E-05],[179.75978,-3.8154E-05],[179.76322,-3.1967E-05],[179.76666,-3.2998E-05],[179.77009,-3.2998E-05],[179.77353,-3.7638E-05],[179.77696,-4.1763E-05],[179.7804,-3.6091E-05],[179.78384,-3.6091E-05],[179.78727,-3.7638E-05],[179.79071,-3.8669E-05],[179.79414,-3.97E-05],[179.79758,-3.2998E-05],[179.80102,-2.9904E-05],[179.80445,-3.6091E-05],[179.80789,-3.7638E-05],[179.81132,-3.6091E-05],[179.81476,-3.4544E-05],[179.8182,-3.5576E-05],[179.82163,-3.5576E-05],[179.82507,-3.4544E-05],[179.8285,-3.7122E-05],[179.83194,-3.7122E-05],[179.83538,-4.1247E-05],[179.83881,-3.7122E-05],[179.84225,-3.506E-05],[179.84568,-3.6091E-05],[179.84912,-3.1451E-05],[179.85256,-3.8669E-05],[179.85599,-3.7122E-05],[179.85943,-3.1451E-05],[179.86286,-3.5576E-05],[179.8663,-3.2482E-05],[179.86974,-2.9389E-05],[179.87317,-3.6091E-05],[179.87661,-3.97E-05],[179.88004,-3.8154E-05],[179.88348,-3.6091E-05],[179.88692,-3.1451E-05],[179.89035,-3.6091E-05],[179.89379,-4.2278E-05],[179.89722,-3.9185E-05],[179.90066,-4.0216E-05],[179.9041,-3.5576E-05],[179.90753,-3.2482E-05],[179.91097,-3.7638E-05]]}
-{"quant":[180.088,0.77797],"mems":[[179.99,-3.9185E-05],[179.99343,-3.8669E-05],[179.99687,-3.7122E-05],[180.0003,-3.8154E-05],[180.00374,-3.506E-05],[180.00718,-3.2998E-05],[180.01061,-3.2998E-05],[180.01405,-3.7638E-05],[180.01748,-3.6091E-05],[180.02092,-3.506E-05],[180.02436,-3.6091E-05],[180.02779,-3.5576E-05],[180.03123,-3.97E-05],[180.03466,-4.0216E-05],[180.0381,-3.7638E-05],[180.04154,-4.0732E-05],[180.04497,-3.6607E-05],[180.04841,-3.2998E-05],[180.05184,-3.7122E-05],[180.05528,-3.506E-05],[180.05872,-3.7122E-05],[180.06215,-3.506E-05],[180.06559,-2.9904E-05],[180.06902,-3.1451E-05],[180.07246,-3.2998E-05],[180.0759,-3.6091E-05],[180.07933,-3.97E-05],[180.08277,-3.97E-05],[180.0862,-3.8154E-05],[180.08964,-3.7122E-05],[180.09308,-3.3513E-05],[180.09651,-3.5576E-05],[180.09995,-3.8154E-05],[180.10338,-3.506E-05],[180.10682,-3.5576E-05],[180.11026,-3.9185E-05],[180.11369,-3.8669E-05],[180.11713,-3.7638E-05],[180.12056,-3.8669E-05],[180.124,-4.0216E-05],[180.12744,-3.7122E-05],[180.13087,-3.8154E-05],[180.13431,-4.2794E-05],[180.13774,-3.97E-05],[180.14118,-3.6607E-05],[180.14462,-3.4544E-05],[180.14805,-3.506E-05],[180.15149,-3.506E-05],[180.15492,-3.5576E-05],[180.15836,-3.6091E-05],[180.1618,-3.506E-05],[180.16523,-3.5576E-05],[180.16867,-3.506E-05],[180.1721,-3.1967E-05],[180.17554,-3.2482E-05],[180.17898,-4.0216E-05],[180.18241,-3.97E-05],[180.18585,-3.4029E-05],[180.18928,-3.4029E-05],[180.19272,-3.7122E-05],[180.19616,-3.7638E-05],[180.19959,-3.9185E-05],[180.20303,-3.9185E-05],[180.20646,-3.506E-05],[180.2099,-3.506E-05],[180.21334,-3.8154E-05],[180.21677,-4.1247E-05],[180.22021,-3.7638E-05],[180.22364,-3.1451E-05],[180.22708,-3.4029E-05],[180.23052,-3.7638E-05],[180.23395,-3.5576E-05],[180.23739,-3.506E-05],[180.24082,-3.5576E-05],[180.24426,-3.4029E-05],[180.2477,-3.5576E-05],[180.25113,-3.9185E-05],[180.25457,-3.8154E-05],[180.258,-3.7638E-05],[180.26144,-3.3513E-05],[180.26488,-3.0935E-05],[180.26831,-3.6091E-05],[180.27175,-3.5576E-05],[180.27518,-3.506E-05],[180.27862,-3.7638E-05],[180.28206,-3.6607E-05],[180.28549,-3.4544E-05]]}
-{"quant":[180.449,0.74429],"mems":[[180.35078,-3.4029E-05],[180.35421,-3.9185E-05],[180.35765,-3.8669E-05],[180.36108,-3.506E-05],[180.36452,-3.6091E-05],[180.36796,-3.6607E-05],[180.37139,-3.4029E-05],[180.37483,-3.8669E-05],[180.37826,-3.97E-05],[180.3817,-3.2998E-05],[180.38514,-3.2998E-05],[180.38857,-3.4029E-05],[180.39201,-3.4029E-05],[180.39544,-3.8154E-05],[180.39888,-3.6091E-05],[180.40232,-3.1451E-05],[180.40575,-3.1451E-05],[180.40919,-3.506E-05],[180.41262,-3.4544E-05],[180.41606,-3.042E-05],[180.4195,-3.4544E-05],[180.42293,-3.3513E-05],[180.42637,-3.1967E-05],[180.4298,-3.9185E-05],[180.43324,-4.0732E-05],[180.43668,-3.8154E-05],[180.44011,-3.7638E-05],[180.44355,-3.4544E-05],[180.44698,-2.9389E-05],[180.45042,-3.4544E-05],[180.45386,-3.8669E-05],[180.45729,-3.6091E-05],[180.46073,-3.6091E-05],[180.46416,-3.4029E-05],[180.4676,-3.6607E-05],[180.47104,-3.506E-05],[180.47447,-3.3513E-05],[180.47791,-3.7122E-05],[180.48134,-3.2998E-05],[180.48478,-3.1451E-05],[180.48822,-3.8154E-05],[180.49165,-3.7638E-05],[180.49509,-3.506E-05],[180.49852,-3.7122E-05],[180.50196,-3.506E-05],[180.5054,-3.3513E-05],[180.50883,-3.2482E-05],[180.51227,-3.506E-05],[180.5157,-3.5576E-05],[180.51914,-3.4029E-05],[180.52258,-3.3513E-05],[180.52601,-3.5576E-05],[180.52945,-3.8154E-05],[180.53288,-3.506E-05],[180.53632,-3.97E-05],[180.53976,-3.97E-05],[180.54319,-3.6091E-05],[180.54663,-3.6607E-05],[180.55006,-3.9185E-05],[180.5535,-3.7638E-05],[180.55694,-3.2482E-05],[180.56037,-3.9185E-05],[180.56381,-3.9185E-05],[180.56724,-3.1967E-05],[180.57068,-3.4544E-05],[180.57412,-3.6607E-05],[180.57755,-3.4544E-05],[180.58099,-3.4029E-05],[180.58442,-3.6091E-05],[180.58786,-3.4544E-05],[180.5913,-3.6607E-05],[180.59473,-3.8154E-05],[180.59817,-3.8154E-05],[180.6016,-3.6091E-05],[180.60504,-3.4544E-05],[180.60848,-4.1247E-05],[180.61191,-3.97E-05],[180.61535,-3.8154E-05],[180.61878,-4.2794E-05],[180.62222,-4.0216E-05],[180.62566,-3.6091E-05],[180.62909,-3.2482E-05],[180.63253,-3.506E-05],[180.63596,-4.1247E-05],[180.6394,-3.6091E-05],[180.64284,-3.2998E-05],[180.64627,-3.506E-05]]}
-{"quant":[180.855,0.7244],"mems":[[180.75622,-3.4544E-05],[180.75966,-3.7122E-05],[180.7631,-3.3513E-05],[180.76653,-3.2482E-05],[180.76997,-3.7122E-05],[180.7734,-3.6607E-05],[180.77684,-3.8154E-05],[180.78028,-3.8669E-05],[180.78371,-3.506E-05],[180.78715,-3.2998E-05],[180.79058,-3.5576E-05],[180.79402,-3.7122E-05],[180.79746,-3.506E-05],[180.80089,-3.506E-05],[180.80433,-3.9185E-05],[180.80776,-3.8669E-05],[180.8112,-3.7638E-05],[180.81464,-3.7638E-05],[180.81807,-3.4029E-05],[180.82151,-3.7122E-05],[180.82494,-3.4029E-05],[180.82838,-3.1967E-05],[180.83182,-3.7638E-05],[180.83525,-3.2482E-05],[180.83869,-3.4544E-05],[180.84212,-4.0732E-05],[180.84556,-3.506E-05],[180.849,-3.506E-05],[180.85243,-3.7638E-05],[180.85587,-3.7638E-05],[180.8593,-3.8669E-05],[180.86274,-3.6091E-05],[180.86618,-3.6091E-05],[180.86961,-3.7122E-05],[180.87305,-3.8669E-05],[180.87648,-3.97E-05],[180.87992,-3.8154E-05],[180.88336,-3.4544E-05],[180.88679,-3.1967E-05],[180.89023,-3.8154E-05],[180.89366,-3.9185E-05],[180.8971,-4.0216E-05],[180.90054,-3.9185E-05],[180.90397,-3.4544E-05],[180.90741,-3.5576E-05],[180.91084,-3.5576E-05],[180.91428,-3.6091E-05],[180.91772,-3.6091E-05],[180.92115,-3.6607E-05],[180.92459,-3.2482E-05],[180.92802,-3.042E-05],[180.93146,-3.3513E-05],[180.9349,-3.8154E-05],[180.93833,-3.97E-05],[180.94177,-3.5576E-05],[180.9452,-3.4029E-05],[180.94864,-3.3513E-05],[180.95208,-3.9185E-05],[180.95551,-4.0216E-05],[180.95895,-3.6091E-05],[180.96238,-3.506E-05],[180.96582,-3.2998E-05],[180.96926,-3.2482E-05],[180.97269,-3.2998E-05],[180.97613,-3.4544E-05],[180.97956,-3.1451E-05],[180.983,-3.042E-05],[180.9865,-3.9185E-05],[180.99001,-3.8154E-05],[180.99351,-3.6091E-05],[180.99702,-3.8669E-05],[181.00052,-3.506E-05],[181.00402,-3.6607E-05],[181.00753,-3.4029E-05],[181.01103,-3.2482E-05],[181.01454,-3.506E-05],[181.01804,-3.3513E-05],[181.02154,-3.5576E-05],[181.02505,-3.7122E-05],[181.02855,-3.8154E-05],[181.03206,-3.7638E-05],[181.03556,-3.7638E-05],[181.03906,-3.7638E-05],[181.04257,-3.4544E-05],[181.04607,-3.506E-05],[181.04958,-4.0216E-05],[181.05308,-3.506E-05],[181.05658,-3.3513E-05]]}
-{"quant":[181.207,0.70809],"mems":[[181.10914,-3.7122E-05],[181.11265,-3.7122E-05],[181.11615,-4.0216E-05],[181.11966,-4.0216E-05],[181.12316,-3.6091E-05],[181.12666,-3.2998E-05],[181.13017,-3.6091E-05],[181.13367,-3.7122E-05],[181.13718,-3.506E-05],[181.14068,-3.8154E-05],[181.14418,-3.6607E-05],[181.14769,-3.2998E-05],[181.15119,-3.4029E-05],[181.1547,-3.97E-05],[181.1582,-4.1247E-05],[181.1617,-3.7122E-05],[181.16521,-3.2998E-05],[181.16871,-3.1451E-05],[181.17222,-3.3513E-05],[181.17572,-3.2482E-05],[181.17922,-3.1451E-05],[181.18273,-3.5576E-05],[181.18623,-3.5576E-05],[181.18974,-3.6607E-05],[181.19324,-3.7122E-05],[181.19674,-3.4029E-05],[181.20025,-4.0216E-05],[181.20375,-4.1763E-05],[181.20726,-3.4029E-05],[181.21076,-3.4029E-05],[181.21426,-3.97E-05],[181.21777,-3.9185E-05],[181.22127,-3.506E-05],[181.22478,-3.8669E-05],[181.22828,-3.8154E-05],[181.23178,-3.4544E-05],[181.23529,-3.8669E-05],[181.23879,-3.4544E-05],[181.2423,-3.3513E-05],[181.2458,-3.8154E-05],[181.2493,-3.2998E-05],[181.25281,-3.6607E-05],[181.25631,-3.8154E-05],[181.25982,-3.4029E-05],[181.26332,-3.8669E-05],[181.26682,-3.6091E-05],[181.27033,-3.0935E-05],[181.27383,-3.506E-05],[181.27734,-3.6091E-05],[181.28084,-3.5576E-05],[181.28434,-3.9185E-05],[181.28785,-3.6091E-05],[181.29135,-3.4029E-05],[181.29486,-3.506E-05],[181.29836,-3.5576E-05],[181.30186,-3.506E-05],[181.30537,-3.506E-05],[181.30887,-3.5576E-05],[181.31238,-3.2482E-05],[181.31588,-3.4544E-05],[181.31938,-3.9185E-05],[181.32289,-3.3513E-05],[181.32639,-3.506E-05],[181.3299,-4.0216E-05],[181.3334,-3.506E-05],[181.3369,-3.506E-05],[181.34041,-3.7638E-05],[181.34391,-3.7638E-05],[181.34742,-3.4544E-05],[181.35092,-3.3513E-05],[181.35442,-3.6091E-05],[181.35793,-3.6091E-05],[181.36143,-3.7638E-05],[181.36494,-3.4029E-05],[181.36844,-3.1967E-05],[181.37194,-3.1451E-05],[181.37545,-3.2482E-05],[181.37895,-4.0216E-05],[181.38246,-4.0732E-05],[181.38596,-3.7122E-05],[181.38946,-3.4544E-05],[181.39297,-3.3513E-05],[181.39647,-3.3513E-05],[181.39998,-3.4544E-05],[181.40348,-3.506E-05],[181.40698,-3.2482E-05]]}
-{"quant":[181.558,0.67677],"mems":[[181.45954,-3.3513E-05],[181.46305,-3.9185E-05],[181.46655,-4.1763E-05],[181.47006,-3.8154E-05],[181.47356,-3.506E-05],[181.47706,-3.506E-05],[181.48057,-3.7638E-05],[181.48407,-3.6607E-05],[181.48758,-3.6091E-05],[181.49108,-3.1967E-05],[181.49458,-2.9904E-05],[181.49809,-3.7122E-05],[181.50159,-4.0216E-05],[181.5051,-3.6607E-05],[181.5086,-3.6607E-05],[181.5121,-3.4544E-05],[181.51561,-3.1967E-05],[181.51911,-3.506E-05],[181.52262,-3.506E-05],[181.52612,-3.4029E-05],[181.52962,-3.97E-05],[181.53313,-3.9185E-05],[181.53663,-3.3513E-05],[181.54014,-3.7638E-05],[181.54364,-3.8154E-05],[181.54714,-3.8669E-05],[181.55065,-3.97E-05],[181.55415,-3.2998E-05],[181.55766,-3.4029E-05],[181.56116,-3.8669E-05],[181.56466,-3.3513E-05],[181.56817,-3.506E-05],[181.57167,-3.97E-05],[181.57518,-3.4029E-05],[181.57868,-3.4029E-05],[181.58218,-3.4544E-05],[181.58569,-3.4544E-05],[181.58919,-4.0732E-05],[181.5927,-3.3513E-05],[181.5962,-2.9904E-05],[181.5997,-3.5576E-05],[181.60321,-3.4544E-05],[181.60671,-3.4029E-05],[181.61022,-3.6091E-05],[181.61372,-3.506E-05],[181.61722,-3.1451E-05],[181.62073,-3.506E-05],[181.62423,-3.7122E-05],[181.62774,-3.506E-05],[181.63124,-3.6091E-05],[181.63474,-3.4029E-05],[181.63825,-3.5576E-05],[181.64175,-3.8154E-05],[181.64526,-3.4544E-05],[181.64876,-3.2998E-05],[181.65226,-3.4544E-05],[181.65577,-3.506E-05],[181.65927,-3.4029E-05],[181.66278,-3.8669E-05],[181.66628,-3.9185E-05],[181.66978,-3.5576E-05],[181.67329,-3.6607E-05],[181.67679,-3.4544E-05],[181.6803,-3.506E-05],[181.6838,-3.2998E-05],[181.6873,-3.8669E-05],[181.69081,-4.3825E-05],[181.69431,-3.1451E-05],[181.69782,-3.0935E-05],[181.70132,-3.506E-05],[181.70482,-3.7122E-05],[181.70833,-3.9185E-05],[181.71183,-3.4029E-05],[181.71534,-3.506E-05],[181.71884,-3.1967E-05],[181.72234,-3.6091E-05],[181.72585,-4.4341E-05],[181.72935,-3.7638E-05],[181.73286,-3.3513E-05],[181.73636,-3.1451E-05],[181.73986,-3.506E-05],[181.74337,-3.97E-05],[181.74687,-3.7122E-05],[181.75038,-3.97E-05],[181.75388,-3.6091E-05],[181.75738,-3.0935E-05]]}
-{"quant":[181.906,0.6281],"mems":[[181.80644,-3.5576E-05],[181.80994,-3.7638E-05],[181.81345,-3.5576E-05],[181.81695,-3.3513E-05],[181.82046,-3.9185E-05],[181.82396,-3.9185E-05],[181.82746,-3.8669E-05],[181.83097,-3.7122E-05],[181.83447,-3.5576E-05],[181.83798,-3.6607E-05],[181.84148,-3.1967E-05],[181.84498,-3.6607E-05],[181.84849,-3.6607E-05],[181.85199,-3.4544E-05],[181.8555,-3.6091E-05],[181.859,-3.3513E-05],[181.8625,-3.7122E-05],[181.86601,-3.8669E-05],[181.86951,-3.5576E-05],[181.87302,-3.7122E-05],[181.87652,-3.8669E-05],[181.88002,-3.7638E-05],[181.88353,-4.0216E-05],[181.88703,-3.9185E-05],[181.89054,-3.3513E-05],[181.89404,-3.6091E-05],[181.89754,-3.6607E-05],[181.90105,-3.042E-05],[181.90455,-3.1967E-05],[181.90806,-3.6091E-05],[181.91156,-3.6091E-05],[181.91506,-3.6091E-05],[181.91857,-3.4544E-05],[181.92207,-3.5576E-05],[181.92558,-3.506E-05],[181.92908,-3.7638E-05],[181.93258,-3.4029E-05],[181.93609,-2.9904E-05],[181.93959,-3.6091E-05],[181.9431,-3.2998E-05],[181.9466,-3.1967E-05],[181.9501,-3.9185E-05],[181.95361,-3.8154E-05],[181.95711,-3.4029E-05],[181.96062,-3.6091E-05],[181.96412,-3.7638E-05],[181.96762,-3.97E-05],[181.97113,-3.8154E-05],[181.97463,-3.0935E-05],[181.97814,-3.1967E-05],[181.98164,-3.1967E-05],[181.98514,-3.3513E-05],[181.98865,-4.2278E-05],[181.99215,-4.1247E-05],[181.99566,-3.7638E-05],[181.99916,-3.5576E-05],[182.00266,-3.4029E-05],[182.00617,-3.6607E-05],[182.00967,-3.97E-05],[182.01318,-3.7638E-05],[182.01668,-3.5576E-05],[182.02018,-3.1451E-05],[182.02369,-3.2482E-05],[182.02719,-3.97E-05],[182.0307,-3.8154E-05],[182.0342,-3.7122E-05],[182.0377,-3.8669E-05],[182.04121,-3.4029E-05],[182.04471,-3.1451E-05],[182.04822,-3.506E-05],[182.05172,-3.9185E-05],[182.05522,-3.9185E-05],[182.05873,-3.506E-05],[182.06223,-3.7122E-05],[182.06574,-3.6091E-05],[182.06924,-3.2998E-05],[182.07274,-3.7122E-05],[182.07625,-3.4544E-05],[182.07975,-2.9904E-05],[182.08326,-2.8873E-05],[182.08676,-3.5576E-05],[182.09026,-4.1247E-05],[182.09377,-3.7638E-05],[182.09727,-3.7122E-05],[182.10078,-3.506E-05],[182.10428,-3.4029E-05]]}
-{"quant":[182.247,0.57844],"mems":[[182.14983,-3.2482E-05],[182.15334,-3.2482E-05],[182.15684,-3.3513E-05],[182.16034,-3.7122E-05],[182.16385,-3.506E-05],[182.16735,-3.4029E-05],[182.17086,-4.1247E-05],[182.17436,-3.97E-05],[182.17786,-3.2998E-05],[182.18137,-3.6091E-05],[182.18487,-3.2998E-05],[182.18838,-3.0935E-05],[182.19188,-3.2482E-05],[182.19538,-3.506E-05],[182.19889,-4.0732E-05],[182.20239,-3.7122E-05],[182.2059,-3.6091E-05],[182.2094,-3.8669E-05],[182.2129,-3.8669E-05],[182.21641,-3.8669E-05],[182.21991,-3.97E-05],[182.22342,-3.97E-05],[182.22692,-3.1451E-05],[182.23042,-3.506E-05],[182.23393,-4.0216E-05],[182.23743,-3.9185E-05],[182.24094,-3.97E-05],[182.24444,-3.4029E-05],[182.24794,-3.1967E-05],[182.25145,-3.6091E-05],[182.25495,-4.0216E-05],[182.25846,-3.7122E-05],[182.26196,-3.506E-05],[182.26546,-3.5576E-05],[182.26897,-3.5576E-05],[182.27247,-3.8669E-05],[182.27598,-3.6091E-05],[182.27948,-3.3513E-05],[182.28298,-3.7638E-05],[182.28649,-3.6091E-05],[182.28999,-3.2998E-05],[182.2935,-3.5576E-05],[182.297,-3.6607E-05],[182.3005,-3.5576E-05],[182.30401,-3.1451E-05],[182.30751,-3.7638E-05],[182.31102,-3.8154E-05],[182.31452,-3.1967E-05],[182.31802,-3.506E-05],[182.32153,-3.5576E-05],[182.32503,-3.4029E-05],[182.32854,-3.2998E-05],[182.33204,-3.6607E-05],[182.33554,-3.7638E-05],[182.33905,-3.6091E-05],[182.34255,-3.8154E-05],[182.34606,-3.2998E-05],[182.34956,-3.2998E-05],[182.35306,-3.6091E-05],[182.35657,-3.5576E-05],[182.36007,-3.5576E-05],[182.36358,-3.506E-05],[182.36708,-3.2998E-05],[182.37058,-2.9904E-05],[182.37409,-3.4029E-05],[182.37759,-3.9185E-05],[182.3811,-3.4544E-05],[182.3846,-3.506E-05],[182.3881,-3.5576E-05],[182.39161,-3.2482E-05],[182.39511,-3.8154E-05],[182.39862,-4.0216E-05],[182.40212,-3.6091E-05],[182.40562,-3.6091E-05],[182.40913,-3.8154E-05],[182.41263,-3.6607E-05],[182.41614,-3.6091E-05],[182.41964,-4.0732E-05],[182.42314,-4.0732E-05],[182.42665,-3.5576E-05],[182.43015,-3.3513E-05],[182.43366,-3.1967E-05],[182.43716,-3.042E-05],[182.44066,-3.4544E-05],[182.44417,-3.8669E-05]]}
-{"quant":[182.582,0.53874],"mems":[[182.48271,-3.506E-05],[182.48622,-3.1967E-05],[182.48972,-3.2998E-05],[182.49322,-3.3513E-05],[182.49673,-3.5576E-05],[182.50023,-3.5576E-05],[182.50374,-3.8154E-05],[182.50724,-3.8669E-05],[182.51074,-3.2482E-05],[182.51425,-3.506E-05],[182.51775,-3.4029E-05],[182.52126,-3.3513E-05],[182.52476,-3.2998E-05],[182.52826,-3.506E-05],[182.53177,-4.1247E-05],[182.53527,-3.2482E-05],[182.53878,-3.5576E-05],[182.54228,-3.4544E-05],[182.54578,-2.7842E-05],[182.54929,-3.6091E-05],[182.55279,-3.4544E-05],[182.5563,-3.506E-05],[182.5598,-3.7122E-05],[182.5633,-3.4029E-05],[182.56681,-3.6091E-05],[182.57031,-3.4544E-05],[182.57382,-3.6607E-05],[182.57732,-3.6607E-05],[182.58082,-3.6091E-05],[182.58433,-3.6091E-05],[182.58783,-3.3513E-05],[182.59134,-3.506E-05],[182.59484,-3.6091E-05],[182.59834,-3.8669E-05],[182.60185,-4.0732E-05],[182.60535,-3.506E-05],[182.60886,-3.1967E-05],[182.61236,-3.2482E-05],[182.61586,-3.3513E-05],[182.61937,-3.6091E-05],[182.62287,-3.3513E-05],[182.62638,-3.506E-05],[182.62988,-3.7638E-05],[182.63338,-3.8154E-05],[182.63689,-4.1247E-05],[182.64039,-3.6607E-05],[182.6439,-3.4544E-05],[182.6474,-3.97E-05],[182.6509,-3.8669E-05],[182.65441,-3.506E-05],[182.65791,-3.4029E-05],[182.66142,-3.2998E-05],[182.66492,-3.2482E-05],[182.66842,-3.2998E-05],[182.67193,-3.2482E-05],[182.67543,-3.2998E-05],[182.67894,-3.5576E-05],[182.68244,-3.506E-05],[182.68594,-3.1967E-05],[182.68945,-3.4029E-05],[182.69295,-3.5576E-05],[182.69646,-3.8669E-05],[182.69996,-4.1247E-05],[182.70346,-3.7638E-05],[182.70697,-3.7122E-05],[182.71047,-3.5576E-05],[182.71398,-3.506E-05],[182.71748,-3.2482E-05],[182.72098,-3.3513E-05],[182.72449,-3.4029E-05],[182.72799,-3.1967E-05],[182.7315,-3.5576E-05],[182.735,-3.042E-05],[182.7385,-3.042E-05],[182.74201,-3.4544E-05],[182.74551,-3.5576E-05],[182.74902,-3.6607E-05],[182.75252,-3.3513E-05],[182.75602,-3.5576E-05],[182.75953,-4.0216E-05],[182.76303,-4.3825E-05],[182.76654,-3.8154E-05],[182.77004,-3.5576E-05],[182.77354,-3.6091E-05],[182.77705,-3.7122E-05],[182.78055,-4.1763E-05]]}
-{"quant":[182.942,0.50997],"mems":[[182.84362,-3.6607E-05],[182.84713,-4.1763E-05],[182.85063,-3.5576E-05],[182.85414,-3.1451E-05],[182.85764,-3.4544E-05],[182.86114,-3.506E-05],[182.86465,-3.9185E-05],[182.86815,-3.506E-05],[182.87166,-3.4029E-05],[182.87516,-3.506E-05],[182.87866,-3.6607E-05],[182.88217,-3.8154E-05],[182.88567,-3.6091E-05],[182.88918,-3.8669E-05],[182.89268,-3.97E-05],[182.89618,-3.6607E-05],[182.89969,-3.9185E-05],[182.90319,-3.7638E-05],[182.9067,-3.7122E-05],[182.9102,-3.5576E-05],[182.9137,-3.0935E-05],[182.91721,-3.506E-05],[182.92071,-3.5576E-05],[182.92422,-3.5576E-05],[182.92772,-3.6607E-05],[182.93122,-3.6607E-05],[182.93473,-3.8669E-05],[182.93823,-3.506E-05],[182.94174,-3.1967E-05],[182.94524,-3.7638E-05],[182.94874,-4.1247E-05],[182.95225,-3.7122E-05],[182.95575,-3.2482E-05],[182.95926,-3.1967E-05],[182.96276,-3.506E-05],[182.96626,-3.6607E-05],[182.96977,-3.8154E-05],[182.97327,-4.0732E-05],[182.97678,-3.8154E-05],[182.98028,-3.7122E-05],[182.98378,-3.6607E-05],[182.98729,-3.6607E-05],[182.99079,-4.0216E-05],[182.9943,-3.8154E-05],[182.9978,-3.7122E-05],[183.0013,-3.6607E-05],[183.00481,-3.8669E-05],[183.00831,-3.8669E-05],[183.01182,-3.8669E-05],[183.01532,-3.8154E-05],[183.01882,-3.3513E-05],[183.02233,-3.506E-05],[183.02583,-3.2998E-05],[183.02934,-3.6607E-05],[183.03284,-3.9185E-05],[183.03634,-3.9185E-05],[183.03985,-3.506E-05],[183.04335,-3.2482E-05],[183.04686,-3.9185E-05],[183.05036,-3.3513E-05],[183.05386,-3.7638E-05],[183.05737,-3.7638E-05],[183.06087,-3.2482E-05],[183.06438,-3.7638E-05],[183.06788,-3.6607E-05],[183.07138,-4.0216E-05],[183.07489,-3.97E-05],[183.07839,-3.7122E-05],[183.0819,-3.5576E-05],[183.0854,-3.4029E-05],[183.0889,-3.6091E-05],[183.09241,-3.5576E-05],[183.09591,-3.8154E-05],[183.09942,-3.1967E-05],[183.10292,-3.042E-05],[183.10642,-3.8154E-05],[183.10993,-4.2278E-05],[183.11343,-3.97E-05],[183.11694,-3.6607E-05],[183.12044,-4.0216E-05],[183.12394,-3.7122E-05],[183.12745,-3.6607E-05],[183.13095,-3.5576E-05],[183.13446,-3.042E-05],[183.13796,-3.2998E-05],[183.14146,-3.4029E-05]]}
-{"quant":[183.275,0.48925],"mems":[[183.1765,-3.4029E-05],[183.18001,-3.1451E-05],[183.18351,-3.1967E-05],[183.18702,-3.506E-05],[183.19052,-3.4029E-05],[183.19402,-3.1451E-05],[183.19753,-3.5576E-05],[183.20103,-3.6607E-05],[183.20454,-3.5576E-05],[183.20804,-3.6607E-05],[183.21154,-3.506E-05],[183.21505,-3.4029E-05],[183.21855,-3.6091E-05],[183.22206,-3.7122E-05],[183.22556,-3.8669E-05],[183.22906,-3.4544E-05],[183.23257,-3.4029E-05],[183.23607,-3.6607E-05],[183.23958,-2.9389E-05],[183.24308,-3.1967E-05],[183.24658,-3.4029E-05],[183.25009,-3.1451E-05],[183.25359,-3.9185E-05],[183.2571,-4.0732E-05],[183.2606,-3.5576E-05],[183.2641,-3.1451E-05],[183.26761,-3.1967E-05],[183.27111,-3.3513E-05],[183.27462,-3.5576E-05],[183.27812,-3.6607E-05],[183.28162,-3.2482E-05],[183.28513,-3.6091E-05],[183.28863,-3.5576E-05],[183.29214,-3.4544E-05],[183.29564,-3.5576E-05],[183.29914,-3.0935E-05],[183.30265,-3.1967E-05],[183.30615,-3.4544E-05],[183.30966,-3.6607E-05],[183.31316,-3.506E-05],[183.31666,-3.4029E-05],[183.32017,-3.7122E-05],[183.32367,-3.8154E-05],[183.32718,-3.5576E-05],[183.33068,-3.5576E-05],[183.33418,-3.7122E-05],[183.33769,-3.1451E-05],[183.34119,-3.042E-05],[183.3447,-3.4544E-05],[183.3482,-3.3513E-05],[183.3517,-3.8154E-05],[183.35521,-3.6607E-05],[183.35871,-3.2482E-05],[183.36222,-3.5576E-05],[183.36572,-3.506E-05],[183.36922,-3.4544E-05],[183.37273,-3.4544E-05],[183.37623,-3.4544E-05],[183.37974,-3.8154E-05],[183.38324,-3.7122E-05],[183.38674,-3.3513E-05],[183.39025,-3.2998E-05],[183.39375,-3.4029E-05],[183.39726,-3.7638E-05],[183.40076,-3.97E-05],[183.40426,-3.4544E-05],[183.40777,-3.2998E-05],[183.41127,-3.7638E-05],[183.41478,-3.7122E-05],[183.41828,-3.5576E-05],[183.42178,-3.7638E-05],[183.42529,-4.0732E-05],[183.42879,-4.1247E-05],[183.4323,-4.1247E-05],[183.4358,-3.9185E-05],[183.4393,-3.4029E-05],[183.44281,-3.3513E-05],[183.44631,-3.4544E-05],[183.44982,-3.5576E-05],[183.45332,-3.7122E-05],[183.45682,-3.8669E-05],[183.46033,-3.8669E-05],[183.46383,-3.6607E-05],[183.46734,-3.5576E-05],[183.47084,-3.3513E-05],[183.47434,-3.4029E-05]]}
-{"quant":[183.632,0.46306],"mems":[[183.57946,-4.3825E-05],[183.58297,-4.0216E-05],[183.58647,-3.3513E-05],[183.58998,-3.4544E-05],[183.59348,-3.7122E-05],[183.59698,-3.7638E-05],[183.60049,-3.6607E-05],[183.60399,-3.0935E-05],[183.6075,-3.506E-05],[183.611,-3.4544E-05],[183.61437,-3.1967E-05],[183.61774,-4.0732E-05],[183.62112,-3.9185E-05],[183.62449,-3.6607E-05],[183.62786,-3.6607E-05],[183.63123,-3.7122E-05],[183.6346,-3.8154E-05],[183.63798,-3.7638E-05],[183.64135,-3.5576E-05],[183.64472,-3.506E-05],[183.64809,-3.8154E-05],[183.65146,-3.6607E-05],[183.65484,-3.7638E-05],[183.65821,-3.8154E-05],[183.66158,-3.6091E-05],[183.66495,-3.5576E-05],[183.66832,-3.1967E-05],[183.6717,-3.4544E-05],[183.67507,-3.7638E-05],[183.67844,-3.5576E-05],[183.68181,-3.1451E-05],[183.68518,-3.2482E-05],[183.68856,-4.0216E-05],[183.69193,-3.6607E-05],[183.6953,-3.4544E-05],[183.69867,-3.506E-05],[183.70204,-3.2998E-05],[183.70542,-3.4544E-05],[183.70879,-3.7638E-05],[183.71216,-4.0732E-05],[183.71553,-3.7122E-05],[183.7189,-3.97E-05],[183.72228,-3.8154E-05],[183.72565,-3.9185E-05],[183.72902,-3.7638E-05],[183.73239,-3.1451E-05],[183.73576,-3.8669E-05],[183.73914,-3.6091E-05],[183.74251,-3.4029E-05],[183.74588,-3.7122E-05],[183.74925,-3.7122E-05],[183.75262,-3.6091E-05],[183.756,-3.4544E-05],[183.75937,-3.6091E-05],[183.76274,-3.4544E-05],[183.76611,-3.4029E-05],[183.76948,-3.2998E-05],[183.77286,-3.1967E-05],[183.77623,-3.8154E-05],[183.7796,-3.8154E-05],[183.78297,-3.4544E-05],[183.78634,-3.506E-05],[183.78972,-3.2998E-05],[183.79309,-3.5576E-05],[183.79646,-3.97E-05],[183.79983,-3.5576E-05],[183.8032,-3.042E-05],[183.80658,-3.3513E-05],[183.80995,-3.7638E-05],[183.81332,-3.9185E-05],[183.81669,-3.8669E-05],[183.82006,-3.6091E-05],[183.82344,-3.8154E-05],[183.82681,-3.7638E-05],[183.83018,-3.506E-05],[183.83355,-3.3513E-05],[183.83692,-3.6607E-05],[183.8403,-3.7122E-05],[183.84367,-3.4544E-05],[183.84704,-3.4029E-05],[183.85041,-3.506E-05],[183.85378,-4.1247E-05],[183.85716,-4.0216E-05],[183.86053,-3.97E-05],[183.8639,-3.5576E-05],[183.86727,-3.2998E-05],[183.87064,-3.6091E-05],[183.87402,-3.1451E-05]]}
-{"quant":[183.976,0.42591],"mems":[[183.87739,-3.4544E-05],[183.88076,-3.6091E-05],[183.88413,-3.506E-05],[183.8875,-3.7122E-05],[183.89088,-3.6607E-05],[183.89425,-3.8669E-05],[183.89762,-3.4544E-05],[183.90099,-3.1451E-05],[183.90436,-3.042E-05],[183.90774,-3.1967E-05],[183.91111,-3.6091E-05],[183.91448,-3.6091E-05],[183.91785,-3.5576E-05],[183.92122,-3.1967E-05],[183.9246,-3.8154E-05],[183.92797,-4.0732E-05],[183.93134,-3.6607E-05],[183.93471,-3.7638E-05],[183.93808,-3.2998E-05],[183.94146,-3.3513E-05],[183.94483,-3.7638E-05],[183.9482,-3.6607E-05],[183.95157,-3.6607E-05],[183.95494,-3.6607E-05],[183.95832,-3.5576E-05],[183.96169,-3.4544E-05],[183.96506,-3.7638E-05],[183.96843,-3.8669E-05],[183.9718,-3.7638E-05],[183.97518,-3.8154E-05],[183.97855,-3.2482E-05],[183.98192,-3.042E-05],[183.98529,-3.3513E-05],[183.98866,-3.3513E-05],[183.99204,-3.4029E-05],[183.99541,-3.4544E-05],[183.99878,-3.8154E-05],[184.00215,-3.8669E-05],[184.00552,-3.4544E-05],[184.0089,-3.7638E-05],[184.01227,-3.6607E-05],[184.01564,-3.2998E-05],[184.01901,-3.6607E-05],[184.02238,-3.3513E-05],[184.02576,-3.0935E-05],[184.02913,-3.8669E-05],[184.0325,-3.8154E-05],[184.03587,-3.506E-05],[184.03924,-3.7122E-05],[184.04262,-3.5576E-05],[184.04599,-3.6607E-05],[184.04936,-4.0732E-05],[184.05273,-3.9185E-05],[184.0561,-3.6091E-05],[184.05948,-3.9185E-05],[184.06285,-3.8669E-05],[184.06622,-3.6091E-05],[184.06959,-3.8669E-05],[184.07296,-3.8154E-05],[184.07634,-3.2998E-05],[184.07971,-3.1451E-05],[184.08308,-3.2482E-05],[184.08645,-3.4029E-05],[184.08982,-3.7638E-05],[184.0932,-3.9185E-05],[184.09657,-3.8669E-05],[184.09994,-3.4029E-05],[184.10331,-3.3513E-05],[184.10668,-3.7638E-05],[184.11006,-3.7638E-05],[184.11343,-3.7122E-05],[184.1168,-3.97E-05],[184.12017,-4.2794E-05],[184.12354,-3.506E-05],[184.12692,-3.6091E-05],[184.13029,-4.0732E-05],[184.13366,-3.4029E-05],[184.13703,-3.2482E-05],[184.1404,-3.1967E-05],[184.14378,-3.2998E-05],[184.14715,-3.6091E-05],[184.15052,-4.0216E-05],[184.15389,-4.0732E-05],[184.15726,-3.5576E-05],[184.16064,-3.6607E-05],[184.16401,-3.7122E-05],[184.16738,-3.8154E-05],[184.17075,-3.7638E-05],[184.17412,-3.506E-05]]}
-{"quant":[184.324,0.38093],"mems":[[184.2247,-3.9185E-05],[184.22808,-3.4544E-05],[184.23145,-2.9389E-05],[184.23482,-3.506E-05],[184.23819,-3.7122E-05],[184.24156,-3.506E-05],[184.24494,-3.2998E-05],[184.24831,-3.4029E-05],[184.25168,-3.506E-05],[184.25505,-3.4029E-05],[184.25842,-3.2998E-05],[184.2618,-3.0935E-05],[184.26517,-3.7638E-05],[184.26854,-4.2794E-05],[184.27191,-3.8154E-05],[184.27528,-3.3513E-05],[184.27866,-3.506E-05],[184.28203,-3.8669E-05],[184.2854,-3.2998E-05],[184.28877,-3.4029E-05],[184.29214,-4.3309E-05],[184.29552,-3.6607E-05],[184.29889,-3.042E-05],[184.30226,-3.6091E-05],[184.30563,-3.7122E-05],[184.309,-3.8154E-05],[184.31238,-3.9185E-05],[184.31575,-3.2998E-05],[184.31912,-3.1967E-05],[184.32249,-3.7638E-05],[184.32586,-3.8669E-05],[184.32924,-3.9185E-05],[184.33261,-3.7122E-05],[184.33598,-3.1451E-05],[184.33935,-3.0935E-05],[184.34272,-3.4029E-05],[184.3461,-3.8669E-05],[184.34947,-3.8154E-05],[184.35284,-3.5576E-05],[184.35621,-3.6607E-05],[184.35958,-3.506E-05],[184.36296,-3.7122E-05],[184.36633,-3.8669E-05],[184.3697,-3.7122E-05],[184.37307,-3.9185E-05],[184.37644,-3.6607E-05],[184.37982,-3.042E-05],[184.38319,-3.1451E-05],[184.38656,-3.6091E-05],[184.38993,-4.0732E-05],[184.3933,-3.7122E-05],[184.39668,-3.0935E-05],[184.40005,-3.4029E-05],[184.40342,-3.506E-05],[184.40679,-3.6091E-05],[184.41016,-3.6607E-05],[184.41354,-3.1967E-05],[184.41691,-3.506E-05],[184.42028,-3.7122E-05],[184.42365,-3.8669E-05],[184.42702,-4.3309E-05],[184.4304,-4.0216E-05],[184.43377,-3.7638E-05],[184.43714,-3.6091E-05],[184.44051,-3.6607E-05],[184.44388,-3.97E-05],[184.44726,-3.97E-05],[184.45063,-3.7122E-05],[184.454,-3.4544E-05],[184.45737,-3.6091E-05],[184.46074,-3.6607E-05],[184.46412,-3.7122E-05],[184.46749,-3.8154E-05],[184.47086,-3.7638E-05],[184.47423,-3.506E-05],[184.4776,-3.6607E-05],[184.48098,-3.7122E-05],[184.48435,-3.4029E-05],[184.48772,-3.9185E-05],[184.49109,-3.7122E-05],[184.49446,-3.0935E-05],[184.49784,-3.6607E-05],[184.50121,-3.8669E-05],[184.50458,-3.7638E-05],[184.50795,-3.8154E-05],[184.51132,-3.506E-05],[184.5147,-3.506E-05],[184.51807,-3.6091E-05],[184.52144,-3.2482E-05]]}
-{"quant":[184.649,0.33309],"mems":[[184.55179,-3.4029E-05],[184.55516,-3.2998E-05],[184.55853,-3.506E-05],[184.5619,-3.7122E-05],[184.56528,-4.0216E-05],[184.56865,-3.6091E-05],[184.57202,-3.1967E-05],[184.57539,-3.9185E-05],[184.57876,-4.1247E-05],[184.58214,-4.3309E-05],[184.58551,-4.0216E-05],[184.58888,-3.3513E-05],[184.59225,-3.7122E-05],[184.59562,-3.8669E-05],[184.599,-3.506E-05],[184.60237,-3.506E-05],[184.60574,-3.8669E-05],[184.60911,-3.8154E-05],[184.61248,-3.6607E-05],[184.61586,-3.4029E-05],[184.61923,-3.6091E-05],[184.6226,-3.8669E-05],[184.62597,-3.6091E-05],[184.62934,-3.4544E-05],[184.63272,-3.506E-05],[184.63609,-4.0732E-05],[184.63946,-3.8669E-05],[184.64283,-3.2998E-05],[184.6462,-3.5576E-05],[184.64958,-3.4544E-05],[184.65295,-3.3513E-05],[184.65632,-3.97E-05],[184.65969,-3.8154E-05],[184.66306,-3.042E-05],[184.66644,-3.0935E-05],[184.66981,-3.506E-05],[184.67318,-3.4544E-05],[184.67655,-3.6091E-05],[184.67992,-3.8154E-05],[184.6833,-3.4544E-05],[184.68667,-3.6091E-05],[184.69004,-3.7122E-05],[184.69341,-3.2998E-05],[184.69678,-3.7122E-05],[184.70016,-3.6607E-05],[184.70353,-3.5576E-05],[184.7069,-3.5576E-05],[184.71027,-3.4029E-05],[184.71364,-3.7638E-05],[184.71702,-3.7638E-05],[184.72039,-3.6607E-05],[184.72376,-3.4544E-05],[184.72713,-3.2998E-05],[184.7305,-3.6091E-05],[184.73388,-3.9185E-05],[184.73725,-3.8669E-05],[184.74062,-3.6607E-05],[184.74399,-3.6091E-05],[184.74736,-3.3513E-05],[184.75074,-3.5576E-05],[184.75411,-3.4029E-05],[184.75748,-3.1451E-05],[184.76085,-3.1967E-05],[184.76422,-3.5576E-05],[184.7676,-4.0732E-05],[184.77097,-3.6091E-05],[184.77434,-3.6091E-05],[184.77771,-3.5576E-05],[184.78108,-3.5576E-05],[184.78446,-3.506E-05],[184.78783,-3.2482E-05],[184.7912,-3.5576E-05],[184.79457,-3.1967E-05],[184.79794,-3.4029E-05],[184.80132,-3.7122E-05],[184.80469,-3.8154E-05],[184.80806,-3.6091E-05],[184.81143,-3.2998E-05],[184.8148,-3.7122E-05],[184.81818,-3.2998E-05],[184.82155,-3.1451E-05],[184.82492,-3.506E-05],[184.82829,-3.3513E-05],[184.83166,-3.4544E-05],[184.83504,-3.5576E-05],[184.83841,-3.6091E-05],[184.84178,-3.4029E-05],[184.84515,-3.2482E-05],[184.84852,-3.7122E-05]]}
-{"quant":[184.972,0.28893],"mems":[[184.87213,-3.97E-05],[184.8755,-4.3309E-05],[184.87887,-4.4341E-05],[184.88224,-3.7638E-05],[184.88562,-3.506E-05],[184.88899,-3.6607E-05],[184.89236,-3.4029E-05],[184.89573,-3.506E-05],[184.8991,-2.8357E-05],[184.90248,-3.2998E-05],[184.90585,-3.5576E-05],[184.90922,-3.0935E-05],[184.91259,-3.6607E-05],[184.91596,-3.506E-05],[184.91934,-3.7122E-05],[184.92271,-3.7638E-05],[184.92608,-3.4544E-05],[184.92945,-3.506E-05],[184.93282,-3.4544E-05],[184.9362,-4.1247E-05],[184.93957,-3.6607E-05],[184.94294,-3.4544E-05],[184.94631,-3.7122E-05],[184.94968,-3.4029E-05],[184.95306,-3.9185E-05],[184.95643,-3.6607E-05],[184.9598,-3.506E-05],[184.96317,-3.9185E-05],[184.96654,-4.0216E-05],[184.96992,-3.7122E-05],[184.97329,-3.4029E-05],[184.97666,-3.5576E-05],[184.98003,-3.1967E-05],[184.9834,-3.1967E-05],[184.98678,-3.7122E-05],[184.99015,-4.0216E-05],[184.99352,-3.3513E-05],[184.99689,-3.042E-05],[185.00026,-3.506E-05],[185.00364,-2.9389E-05],[185.00701,-3.1451E-05],[185.01038,-3.8154E-05],[185.01375,-3.7638E-05],[185.01712,-3.506E-05],[185.0205,-3.506E-05],[185.02387,-3.9185E-05],[185.02724,-3.8154E-05],[185.03061,-4.0216E-05],[185.03398,-3.6091E-05],[185.03736,-3.2998E-05],[185.04073,-3.7122E-05],[185.0441,-3.2482E-05],[185.04747,-3.6607E-05],[185.05084,-4.0216E-05],[185.05422,-3.506E-05],[185.05759,-3.3513E-05],[185.06096,-3.3513E-05],[185.06433,-3.5576E-05],[185.0677,-3.97E-05],[185.07108,-4.0732E-05],[185.07445,-3.8154E-05],[185.07782,-3.7638E-05],[185.08119,-3.5576E-05],[185.08456,-3.6607E-05],[185.08794,-3.8669E-05],[185.09131,-3.4029E-05],[185.09468,-3.5576E-05],[185.09805,-3.2482E-05],[185.10142,-3.042E-05],[185.1048,-3.5576E-05],[185.10817,-3.7638E-05],[185.11154,-3.97E-05],[185.11491,-3.6607E-05],[185.11828,-3.5576E-05],[185.12166,-3.4544E-05],[185.12503,-3.5576E-05],[185.1284,-3.5576E-05],[185.13177,-3.2482E-05],[185.13514,-3.4544E-05],[185.13852,-3.4544E-05],[185.14189,-3.3513E-05],[185.14526,-3.1967E-05],[185.14863,-3.2482E-05],[185.152,-3.506E-05],[185.15538,-3.506E-05],[185.15875,-3.6607E-05],[185.16212,-3.7122E-05],[185.16549,-4.0732E-05],[185.16886,-3.97E-05]]}
-{"quant":[185.329,0.25173],"mems":[[185.22956,-3.5576E-05],[185.23293,-3.1451E-05],[185.2363,-3.1967E-05],[185.23968,-3.6091E-05],[185.24305,-3.2482E-05],[185.24642,-3.2482E-05],[185.24979,-3.4544E-05],[185.25316,-3.2998E-05],[185.25654,-3.3513E-05],[185.25991,-3.7638E-05],[185.26328,-4.0216E-05],[185.26665,-3.6607E-05],[185.27002,-3.6091E-05],[185.2734,-3.0935E-05],[185.27677,-3.4029E-05],[185.28014,-3.5576E-05],[185.28351,-3.042E-05],[185.28688,-3.3513E-05],[185.29026,-3.4029E-05],[185.29363,-3.6091E-05],[185.297,-3.4029E-05],[185.30037,-3.2482E-05],[185.30374,-3.4544E-05],[185.30712,-3.4029E-05],[185.31049,-3.8669E-05],[185.31386,-3.7122E-05],[185.31723,-3.2998E-05],[185.3206,-4.1247E-05],[185.32398,-4.2278E-05],[185.32735,-3.3513E-05],[185.33072,-3.6607E-05],[185.33409,-3.8669E-05],[185.33746,-3.7638E-05],[185.34084,-3.9185E-05],[185.34421,-3.7638E-05],[185.34758,-3.3513E-05],[185.35095,-3.6607E-05],[185.35432,-3.6091E-05],[185.3577,-3.506E-05],[185.36107,-3.5576E-05],[185.36444,-3.3513E-05],[185.36781,-3.2998E-05],[185.37118,-3.1451E-05],[185.37456,-3.6091E-05],[185.37793,-3.5576E-05],[185.3813,-3.506E-05],[185.38467,-3.7638E-05],[185.38804,-3.2998E-05],[185.39142,-3.1967E-05],[185.39479,-3.6091E-05],[185.39816,-3.9185E-05],[185.40153,-3.5576E-05],[185.4049,-3.5576E-05],[185.40828,-3.7122E-05],[185.41165,-3.1967E-05],[185.41502,-2.8357E-05],[185.41839,-3.6091E-05],[185.42176,-4.0732E-05],[185.42514,-3.8669E-05],[185.42851,-3.506E-05],[185.43188,-3.5576E-05],[185.43525,-3.6091E-05],[185.43862,-3.7638E-05],[185.442,-3.8669E-05],[185.44537,-3.6091E-05],[185.44874,-3.4544E-05],[185.45211,-3.0935E-05],[185.45548,-3.5576E-05],[185.45886,-3.9185E-05],[185.46223,-3.3513E-05],[185.4656,-3.2482E-05],[185.46897,-3.1967E-05],[185.47234,-3.2998E-05],[185.47572,-3.4029E-05],[185.47909,-3.8154E-05],[185.48246,-3.7122E-05],[185.48583,-3.1451E-05],[185.4892,-3.2482E-05],[185.49258,-3.506E-05],[185.49595,-3.7638E-05],[185.49932,-3.9185E-05],[185.50269,-3.6091E-05],[185.50606,-3.3513E-05],[185.50944,-3.4544E-05],[185.51281,-3.6607E-05],[185.51618,-3.5576E-05],[185.51955,-3.506E-05],[185.52292,-3.506E-05],[185.5263,-3.3513E-05]]}
-{"quant":[185.664,0.22516],"mems":[[185.56676,-3.2998E-05],[185.57013,-3.2482E-05],[185.5735,-3.506E-05],[185.57688,-3.6607E-05],[185.58025,-3.2482E-05],[185.58362,-3.3513E-05],[185.58699,-3.4544E-05],[185.59036,-3.0935E-05],[185.59374,-3.506E-05],[185.59711,-3.3513E-05],[185.60048,-3.506E-05],[185.60385,-3.506E-05],[185.60722,-3.2998E-05],[185.6106,-3.8154E-05],[185.61397,-3.7638E-05],[185.61734,-3.9185E-05],[185.62071,-3.7122E-05],[185.62408,-3.506E-05],[185.62746,-3.8154E-05],[185.63083,-3.7122E-05],[185.6342,-3.7122E-05],[185.63757,-3.7122E-05],[185.64094,-3.8669E-05],[185.64432,-3.506E-05],[185.64769,-3.4544E-05],[185.65106,-3.8154E-05],[185.65443,-3.6607E-05],[185.6578,-3.6607E-05],[185.66118,-3.042E-05],[185.66455,-3.3513E-05],[185.66792,-3.6091E-05],[185.67129,-3.1451E-05],[185.67466,-3.6091E-05],[185.67804,-3.97E-05],[185.68141,-3.8669E-05],[185.68478,-3.7122E-05],[185.68815,-3.6607E-05],[185.69152,-3.5576E-05],[185.6949,-3.8154E-05],[185.69827,-3.7122E-05],[185.70164,-4.0732E-05],[185.70501,-3.8669E-05],[185.70838,-3.2482E-05],[185.71176,-3.5576E-05],[185.71513,-3.4544E-05],[185.7185,-3.4544E-05],[185.72187,-3.2482E-05],[185.72524,-3.2998E-05],[185.72862,-3.5576E-05],[185.73199,-3.3513E-05],[185.73536,-3.6091E-05],[185.73873,-3.5576E-05],[185.7421,-3.6091E-05],[185.74548,-3.7638E-05],[185.74885,-3.6091E-05],[185.75222,-3.7638E-05],[185.75559,-3.8669E-05],[185.75896,-3.97E-05],[185.76234,-3.97E-05],[185.76571,-3.8154E-05],[185.76908,-3.8669E-05],[185.77245,-3.4544E-05],[185.77582,-3.042E-05],[185.7792,-3.5576E-05],[185.78257,-3.5576E-05],[185.78594,-3.3513E-05],[185.78931,-3.2998E-05],[185.79268,-3.042E-05],[185.79606,-3.1967E-05],[185.79943,-3.6091E-05],[185.8028,-3.4029E-05],[185.80617,-3.2482E-05],[185.80954,-3.506E-05],[185.81292,-3.4544E-05],[185.81629,-3.4544E-05],[185.81966,-3.6607E-05],[185.82303,-3.6607E-05],[185.8264,-3.7122E-05],[185.82978,-3.97E-05],[185.83315,-4.0216E-05],[185.83652,-3.6091E-05],[185.83989,-3.3513E-05],[185.84326,-3.4544E-05],[185.84664,-3.3513E-05],[185.85001,-3.4029E-05],[185.85338,-3.5576E-05],[185.85675,-3.7122E-05],[185.86012,-3.9185E-05],[185.8635,-3.506E-05]]}
-{"quant":[186.019,0.19884],"mems":[[185.92082,-3.8669E-05],[185.92419,-3.4029E-05],[185.92756,-3.4544E-05],[185.93094,-3.5576E-05],[185.93431,-3.4029E-05],[185.93768,-3.4544E-05],[185.94105,-3.4029E-05],[185.94442,-3.1451E-05],[185.9478,-3.3513E-05],[185.95117,-3.97E-05],[185.95454,-3.6607E-05],[185.95791,-3.2998E-05],[185.96128,-3.5576E-05],[185.96466,-3.6607E-05],[185.96803,-3.5576E-05],[185.9714,-3.4544E-05],[185.97477,-3.5576E-05],[185.97814,-3.1967E-05],[185.98152,-3.4029E-05],[185.98489,-3.8154E-05],[185.98826,-3.6091E-05],[185.99163,-3.6091E-05],[185.995,-3.7122E-05],[185.99838,-4.1763E-05],[186.00175,-4.1763E-05],[186.00512,-3.8154E-05],[186.00849,-3.8669E-05],[186.01186,-3.7638E-05],[186.01524,-3.7638E-05],[186.01861,-3.3513E-05],[186.02198,-3.5576E-05],[186.02535,-3.8669E-05],[186.02872,-3.5576E-05],[186.0321,-3.7638E-05],[186.03547,-3.2482E-05],[186.03884,-2.8873E-05],[186.04221,-3.5576E-05],[186.04558,-3.9185E-05],[186.04896,-3.5576E-05],[186.05233,-3.6091E-05],[186.0557,-3.8154E-05],[186.05907,-3.1451E-05],[186.06244,-3.6607E-05],[186.06582,-4.2278E-05],[186.06919,-3.97E-05],[186.07256,-3.97E-05],[186.07593,-3.7638E-05],[186.0793,-3.6091E-05],[186.08268,-3.506E-05],[186.08605,-3.3513E-05],[186.08942,-3.5576E-05],[186.09279,-3.506E-05],[186.09616,-3.0935E-05],[186.09954,-3.7122E-05],[186.10291,-3.97E-05],[186.10628,-3.7638E-05],[186.10965,-3.8669E-05],[186.11302,-3.2998E-05],[186.1164,-3.2998E-05],[186.11977,-3.6607E-05],[186.12314,-3.9185E-05],[186.12651,-3.7638E-05],[186.12988,-3.6607E-05],[186.13326,-4.0732E-05],[186.13663,-3.5576E-05],[186.14,-3.4029E-05],[186.14346,-3.7122E-05],[186.14692,-3.7122E-05],[186.15038,-3.5576E-05],[186.15384,-3.7122E-05],[186.1573,-3.5576E-05],[186.16076,-3.4029E-05],[186.16422,-4.0216E-05],[186.16768,-3.8154E-05],[186.17114,-3.5576E-05],[186.1746,-3.8154E-05],[186.17806,-3.5576E-05],[186.18152,-3.2998E-05],[186.18498,-3.7638E-05],[186.18844,-3.8154E-05],[186.1919,-3.5576E-05],[186.19536,-3.506E-05],[186.19882,-3.2998E-05],[186.20228,-3.5576E-05],[186.20574,-3.506E-05],[186.2092,-3.4029E-05],[186.21266,-3.6607E-05],[186.21612,-3.2998E-05],[186.21958,-3.7122E-05]]}
-{"quant":[186.379,0.16689],"mems":[[186.28186,-3.6091E-05],[186.28532,-3.2998E-05],[186.28878,-3.2998E-05],[186.29224,-3.3513E-05],[186.2957,-3.4544E-05],[186.29916,-3.3513E-05],[186.30262,-3.6091E-05],[186.30608,-3.8154E-05],[186.30954,-3.6607E-05],[186.313,-3.2482E-05],[186.31646,-3.5576E-05],[186.31992,-3.5576E-05],[186.32338,-3.1967E-05],[186.32684,-3.4544E-05],[186.3303,-3.4029E-05],[186.33376,-3.2998E-05],[186.33722,-3.4029E-05],[186.34068,-3.97E-05],[186.34414,-4.0732E-05],[186.3476,-3.506E-05],[186.35106,-3.97E-05],[186.35452,-3.97E-05],[186.35798,-3.3513E-05],[186.36144,-3.3513E-05],[186.3649,-3.6607E-05],[186.36836,-3.8669E-05],[186.37182,-3.8669E-05],[186.37528,-3.5576E-05],[186.37874,-3.7638E-05],[186.3822,-3.8154E-05],[186.38566,-3.4029E-05],[186.38912,-3.506E-05],[186.39258,-3.506E-05],[186.39604,-3.1967E-05],[186.3995,-3.3513E-05],[186.40296,-3.7638E-05],[186.40642,-4.1763E-05],[186.40988,-4.3309E-05],[186.41334,-3.9185E-05],[186.4168,-3.7122E-05],[186.42026,-3.5576E-05],[186.42372,-3.4544E-05],[186.42718,-3.97E-05],[186.43064,-3.7122E-05],[186.4341,-2.8873E-05],[186.43756,-3.2998E-05],[186.44102,-3.6091E-05],[186.44448,-3.6607E-05],[186.44794,-3.8669E-05],[186.4514,-3.4544E-05],[186.45486,-3.2998E-05],[186.45832,-3.4544E-05],[186.46178,-3.506E-05],[186.46524,-3.7122E-05],[186.4687,-4.1763E-05],[186.47216,-3.9185E-05],[186.47562,-3.4029E-05],[186.47908,-3.1967E-05],[186.48254,-3.0935E-05],[186.486,-3.8154E-05],[186.48946,-3.7122E-05],[186.49292,-3.4544E-05],[186.49638,-3.97E-05],[186.49984,-3.7122E-05],[186.5033,-3.6091E-05],[186.50676,-3.7122E-05],[186.51022,-3.8154E-05],[186.51368,-3.6607E-05],[186.51714,-3.2998E-05],[186.5206,-3.506E-05],[186.52406,-3.8669E-05],[186.52752,-3.8669E-05],[186.53098,-3.3513E-05],[186.53444,-3.4029E-05],[186.5379,-3.3513E-05],[186.54136,-3.3513E-05],[186.54482,-3.8669E-05],[186.54828,-3.5576E-05],[186.55174,-3.5576E-05],[186.5552,-3.5576E-05],[186.55866,-3.5576E-05],[186.56212,-3.7638E-05],[186.56558,-3.5576E-05],[186.56904,-3.4544E-05],[186.5725,-3.5576E-05],[186.57596,-3.7122E-05]]}
-{"quant":[186.775,0.13185],"mems":[[186.6763,-3.7638E-05],[186.67976,-3.2482E-05],[186.68322,-3.8669E-05],[186.68668,-3.8669E-05],[186.69014,-3.7122E-05],[186.6936,-3.7638E-05],[186.69706,-3.0935E-05],[186.70052,-2.9389E-05],[186.70398,-3.2482E-05],[186.70744,-3.5576E-05],[186.7109,-3.8154E-05],[186.71436,-3.9185E-05],[186.71782,-3.506E-05],[186.72128,-3.1967E-05],[186.72474,-3.506E-05],[186.7282,-3.5576E-05],[186.73166,-3.5576E-05],[186.73512,-3.6091E-05],[186.73858,-3.6091E-05],[186.74204,-3.6091E-05],[186.7455,-4.0216E-05],[186.74896,-3.8669E-05],[186.75242,-3.4544E-05],[186.75588,-3.9185E-05],[186.75934,-3.8154E-05],[186.7628,-3.6607E-05],[186.76626,-3.8669E-05],[186.76972,-3.2998E-05],[186.77318,-3.5576E-05],[186.77664,-3.8669E-05],[186.7801,-3.6091E-05],[186.78356,-3.6091E-05],[186.78702,-3.7122E-05],[186.79048,-3.7638E-05],[186.79394,-3.8154E-05],[186.7974,-3.7638E-05],[186.80086,-3.1451E-05],[186.80432,-2.9389E-05],[186.80778,-3.3513E-05],[186.81124,-3.5576E-05],[186.8147,-3.2998E-05],[186.81816,-3.2998E-05],[186.82162,-3.3513E-05],[186.82508,-3.2998E-05],[186.82854,-3.6091E-05],[186.832,-3.5576E-05],[186.83546,-3.6091E-05],[186.83892,-3.506E-05],[186.84238,-3.0935E-05],[186.84584,-3.4544E-05],[186.8493,-3.7122E-05],[186.85276,-3.6607E-05],[186.85622,-3.7638E-05],[186.85968,-3.9185E-05],[186.86314,-3.5576E-05],[186.8666,-3.4544E-05],[186.87006,-3.6607E-05],[186.87352,-3.6607E-05],[186.87698,-3.3513E-05],[186.88044,-2.9389E-05],[186.8839,-3.3513E-05],[186.88736,-3.6091E-05],[186.89082,-3.9185E-05],[186.89428,-4.0216E-05],[186.89774,-3.97E-05],[186.9012,-3.7638E-05],[186.90466,-3.3513E-05],[186.90812,-3.506E-05],[186.91158,-3.4029E-05],[186.91504,-3.8669E-05],[186.9185,-3.97E-05],[186.92196,-3.7638E-05],[186.92542,-4.2278E-05],[186.92888,-3.8154E-05],[186.93234,-3.8669E-05],[186.9358,-3.7122E-05],[186.93926,-3.0935E-05],[186.94272,-3.3513E-05],[186.94618,-3.5576E-05],[186.94964,-3.8669E-05],[186.9531,-3.6091E-05],[186.95656,-3.6091E-05],[186.96002,-3.9185E-05],[186.96348,-3.6607E-05],[186.96694,-3.8669E-05],[186.9704,-3.97E-05],[186.97386,-3.7122E-05]]}
-{"quant":[187.109,0.094717],"mems":[[187.01192,-3.8669E-05],[187.01538,-3.7122E-05],[187.01884,-3.6091E-05],[187.0223,-3.2998E-05],[187.02576,-3.2998E-05],[187.02922,-3.5576E-05],[187.03268,-4.0216E-05],[187.03614,-4.4341E-05],[187.0396,-3.7638E-05],[187.04306,-3.506E-05],[187.04652,-3.8154E-05],[187.04998,-4.1247E-05],[187.05344,-4.0732E-05],[187.0569,-3.5576E-05],[187.06036,-3.3513E-05],[187.06382,-3.0935E-05],[187.06728,-3.2482E-05],[187.07074,-3.3513E-05],[187.0742,-3.4544E-05],[187.07766,-3.4029E-05],[187.08112,-3.3513E-05],[187.08458,-3.6091E-05],[187.08804,-3.5576E-05],[187.0915,-3.2482E-05],[187.09496,-3.1967E-05],[187.09842,-3.6607E-05],[187.10188,-3.4544E-05],[187.10534,-3.5576E-05],[187.1088,-3.8669E-05],[187.11226,-3.7122E-05],[187.11572,-3.6607E-05],[187.11918,-3.506E-05],[187.12264,-3.7122E-05],[187.1261,-3.9185E-05],[187.12956,-3.8154E-05],[187.13302,-3.97E-05],[187.13648,-4.0732E-05],[187.13994,-3.7638E-05],[187.1434,-3.6607E-05],[187.14686,-3.8669E-05],[187.15032,-3.6607E-05],[187.15378,-3.4544E-05],[187.15724,-3.506E-05],[187.1607,-3.2482E-05],[187.16416,-3.2998E-05],[187.16762,-3.7122E-05],[187.17108,-3.8154E-05],[187.17454,-3.7638E-05],[187.178,-3.5576E-05],[187.18146,-3.7122E-05],[187.18492,-3.8669E-05],[187.18838,-3.7638E-05],[187.19184,-3.9185E-05],[187.1953,-3.7638E-05],[187.19876,-3.506E-05],[187.20222,-3.4544E-05],[187.20568,-3.6091E-05],[187.20914,-4.2278E-05],[187.2126,-3.97E-05],[187.21606,-3.506E-05],[187.21952,-3.97E-05],[187.22298,-3.8154E-05],[187.22644,-3.8669E-05],[187.2299,-3.6091E-05],[187.23336,-3.8669E-05],[187.23682,-3.8669E-05],[187.24028,-3.0935E-05],[187.24374,-3.7638E-05],[187.2472,-3.9185E-05],[187.25066,-3.7638E-05],[187.25412,-3.506E-05],[187.25758,-3.6607E-05],[187.26104,-3.9185E-05],[187.2645,-3.3513E-05],[187.26796,-3.97E-05],[187.27142,-3.6607E-05],[187.27488,-3.1451E-05],[187.27834,-3.7638E-05],[187.2818,-3.8154E-05],[187.28526,-3.7638E-05],[187.28872,-4.0216E-05],[187.29218,-3.97E-05],[187.29564,-3.4029E-05],[187.2991,-3.6091E-05],[187.30256,-3.7638E-05],[187.30602,-3.7122E-05]]}
-{"quant":[187.454,0.056964],"mems":[[187.35446,-3.4544E-05],[187.35792,-3.4544E-05],[187.36138,-3.6607E-05],[187.36484,-3.5576E-05],[187.3683,-3.7122E-05],[187.37176,-3.7122E-05],[187.37522,-3.2998E-05],[187.37868,-3.8669E-05],[187.38214,-3.97E-05],[187.3856,-3.1451E-05],[187.38906,-3.506E-05],[187.39252,-3.5576E-05],[187.39598,-3.6091E-05],[187.39944,-3.4544E-05],[187.4029,-3.506E-05],[187.40636,-3.9185E-05],[187.40982,-3.6607E-05],[187.41328,-3.7638E-05],[187.41674,-3.506E-05],[187.4202,-3.6091E-05],[187.42366,-3.2482E-05],[187.42712,-3.3513E-05],[187.43058,-4.0216E-05],[187.43404,-3.4544E-05],[187.4375,-3.8669E-05],[187.44096,-3.8154E-05],[187.44442,-3.4544E-05],[187.44788,-3.7122E-05],[187.45134,-3.1967E-05],[187.4548,-3.4544E-05],[187.45826,-3.8154E-05],[187.46172,-4.0732E-05],[187.46518,-4.2278E-05],[187.46864,-4.3825E-05],[187.4721,-4.2278E-05],[187.47556,-3.4029E-05],[187.47902,-3.4029E-05],[187.48248,-3.4544E-05],[187.48594,-3.2998E-05],[187.4894,-3.6607E-05],[187.49286,-3.8154E-05],[187.49632,-3.9185E-05],[187.49978,-3.7638E-05],[187.50324,-3.0935E-05],[187.5067,-3.506E-05],[187.51016,-3.5576E-05],[187.51362,-2.9389E-05],[187.51708,-3.506E-05],[187.52054,-3.5576E-05],[187.524,-3.7638E-05],[187.52746,-4.0216E-05],[187.53092,-4.2278E-05],[187.53438,-4.2278E-05],[187.53784,-3.6091E-05],[187.5413,-3.7122E-05],[187.54476,-3.4029E-05],[187.54822,-3.3513E-05],[187.55168,-3.6091E-05],[187.55514,-3.5576E-05],[187.5586,-3.9185E-05],[187.56206,-3.4029E-05],[187.56552,-3.6091E-05],[187.56898,-3.8669E-05],[187.57244,-3.3513E-05],[187.5759,-3.8669E-05],[187.57936,-3.8669E-05],[187.58282,-3.8669E-05],[187.58628,-4.1763E-05],[187.58974,-4.1247E-05],[187.5932,-4.0216E-05],[187.59666,-3.7122E-05],[187.60012,-3.3513E-05],[187.60358,-3.042E-05],[187.60704,-3.5576E-05],[187.6105,-3.6607E-05],[187.61396,-3.4544E-05],[187.61742,-3.4544E-05],[187.62088,-3.7122E-05],[187.62434,-3.7122E-05],[187.6278,-3.0935E-05],[187.63126,-3.6607E-05],[187.63472,-3.97E-05],[187.63818,-3.8154E-05],[187.64164,-3.506E-05],[187.6451,-3.4029E-05],[187.64856,-4.0216E-05],[187.65202,-3.7122E-05]]}
-{"quant":[187.824,0.014536],"mems":[[187.72468,-3.4544E-05],[187.72814,-3.9185E-05],[187.7316,-3.6607E-05],[187.73506,-3.6091E-05],[187.73852,-3.1967E-05],[187.74198,-3.3513E-05],[187.74544,-3.6091E-05],[187.7489,-3.506E-05],[187.75236,-3.7122E-05],[187.75582,-3.8669E-05],[187.75928,-3.506E-05],[187.76274,-3.1451E-05],[187.7662,-3.5576E-05],[187.76966,-3.4029E-05],[187.77312,-3.7122E-05],[187.77658,-4.1247E-05],[187.78004,-3.2998E-05],[187.7835,-3.2998E-05],[187.78696,-3.5576E-05],[187.79042,-3.4029E-05],[187.79388,-3.506E-05],[187.79734,-3.5576E-05],[187.8008,-3.1451E-05],[187.80426,-3.4544E-05],[187.80772,-3.6607E-05],[187.81118,-3.1967E-05],[187.81464,-3.6607E-05],[187.8181,-3.506E-05],[187.82156,-3.4029E-05],[187.82502,-3.5576E-05],[187.82848,-3.6091E-05],[187.83194,-3.8669E-05],[187.8354,-3.6607E-05],[187.83886,-3.7638E-05],[187.84232,-3.506E-05],[187.84578,-3.4544E-05],[187.84924,-3.7638E-05],[187.8527,-3.506E-05],[187.85616,-3.5576E-05],[187.85962,-3.5576E-05],[187.86308,-3.6607E-05],[187.86654,-4.0216E-05],[187.87,-4.0216E-05],[187.87346,-3.506E-05],[187.87692,-3.5576E-05],[187.88038,-3.5576E-05],[187.88384,-3.2998E-05],[187.8873,-4.1247E-05],[187.89076,-4.6403E-05],[187.89422,-4.3825E-05],[187.89768,-4.1763E-05],[187.90114,-3.7122E-05],[187.9046,-3.6607E-05],[187.90806,-3.8154E-05],[187.91152,-3.97E-05],[187.91498,-3.97E-05],[187.91844,-4.3825E-05],[187.9219,-4.1247E-05],[187.92536,-2.6811E-05],[187.92882,-2.9904E-05],[187.93228,-3.506E-05],[187.93574,-3.8154E-05],[187.9392,-4.1763E-05],[187.94266,-3.7122E-05],[187.94612,-3.8154E-05],[187.94958,-3.7122E-05],[187.95304,-3.506E-05],[187.9565,-3.4029E-05],[187.95996,-3.6607E-05],[187.96342,-3.97E-05],[187.96688,-3.5576E-05],[187.97034,-3.6607E-05],[187.9738,-3.7122E-05],[187.97726,-3.6607E-05],[187.98072,-3.8669E-05],[187.98418,-3.5576E-05],[187.98764,-3.7122E-05],[187.9911,-3.8669E-05],[187.99456,-3.3513E-05],[187.99802,-3.3513E-05],[188.00148,-3.4029E-05],[188.00494,-3.4029E-05],[188.0084,-3.8669E-05],[188.01186,-3.9185E-05],[188.01532,-3.7122E-05],[188.01878,-3.5576E-05],[188.02224,-3.4544E-05]]}
-{"quant":[188.162,-0.032903],"mems":[[188.06376,-3.4544E-05],[188.06722,-3.6607E-05],[188.07068,-4.1247E-05],[188.07414,-4.0732E-05],[188.0776,-3.4029E-05],[188.08106,-3.4544E-05],[188.08452,-3.506E-05],[188.08798,-3.6607E-05],[188.09144,-3.9185E-05],[188.0949,-3.5576E-05],[188.09836,-3.6091E-05],[188.10182,-3.7122E-05],[188.10528,-3.7638E-05],[188.10874,-3.97E-05],[188.1122,-3.97E-05],[188.11566,-3.8669E-05],[188.11912,-3.8154E-05],[188.12258,-3.4029E-05],[188.12604,-3.3513E-05],[188.1295,-3.7638E-05],[188.13296,-3.8154E-05],[188.13642,-3.8669E-05],[188.13988,-3.4544E-05],[188.14334,-3.4544E-05],[188.1468,-3.6607E-05],[188.15026,-3.4029E-05],[188.15372,-3.7122E-05],[188.15718,-4.1247E-05],[188.16064,-3.97E-05],[188.1641,-3.5576E-05],[188.16756,-3.2998E-05],[188.17102,-3.5576E-05],[188.17448,-3.97E-05],[188.17794,-3.6091E-05],[188.1814,-3.7638E-05],[188.18486,-3.8669E-05],[188.18832,-3.1967E-05],[188.19178,-3.8154E-05],[188.19524,-3.7122E-05],[188.1987,-3.1451E-05],[188.20216,-3.2482E-05],[188.20562,-3.2482E-05],[188.20908,-3.6091E-05],[188.21254,-3.6607E-05],[188.216,-3.6607E-05],[188.21946,-3.4544E-05],[188.22292,-3.6091E-05],[188.22638,-3.7638E-05],[188.22984,-3.3513E-05],[188.2333,-3.5576E-05],[188.23676,-3.5576E-05],[188.24022,-3.4029E-05],[188.24368,-3.6091E-05],[188.24714,-3.7122E-05],[188.2506,-3.5576E-05],[188.25406,-3.4029E-05],[188.25752,-4.0216E-05],[188.26098,-4.2794E-05],[188.26444,-3.6091E-05],[188.2679,-3.4544E-05],[188.27136,-3.7638E-05],[188.27482,-3.8669E-05],[188.27828,-3.6091E-05],[188.28174,-3.6091E-05],[188.2852,-3.5576E-05],[188.28866,-3.2482E-05],[188.29212,-3.3513E-05],[188.29558,-3.3513E-05],[188.29904,-3.3513E-05],[188.3025,-3.0935E-05],[188.30596,-3.2482E-05],[188.30942,-3.4029E-05],[188.31288,-3.6607E-05],[188.31634,-3.7638E-05],[188.3198,-3.7122E-05],[188.32326,-3.8154E-05],[188.32672,-3.7122E-05],[188.33018,-3.8154E-05],[188.33364,-3.6091E-05],[188.3371,-3.6607E-05],[188.34056,-3.6607E-05],[188.34402,-3.4544E-05],[188.34748,-3.1967E-05],[188.35094,-3.4029E-05],[188.3544,-4.0732E-05],[188.35786,-3.7122E-05],[188.36132,-3.506E-05]]}
-{"quant":[188.499,-0.074401],"mems":[[188.39938,-3.2998E-05],[188.40284,-3.7638E-05],[188.4063,-3.5576E-05],[188.40976,-3.6607E-05],[188.41322,-3.8669E-05],[188.41668,-3.5576E-05],[188.42014,-3.7122E-05],[188.4236,-2.8357E-05],[188.42706,-3.1451E-05],[188.43052,-3.6091E-05],[188.43398,-3.2482E-05],[188.43744,-3.6091E-05],[188.4409,-3.1967E-05],[188.44436,-3.0935E-05],[188.44782,-3.2998E-05],[188.45128,-3.6607E-05],[188.45474,-4.0732E-05],[188.4582,-3.5576E-05],[188.46166,-3.7122E-05],[188.46512,-3.7638E-05],[188.46858,-3.8154E-05],[188.47204,-3.7638E-05],[188.4755,-3.3513E-05],[188.47896,-4.1247E-05],[188.48242,-3.9185E-05],[188.48588,-2.9389E-05],[188.48934,-3.2998E-05],[188.4928,-3.7638E-05],[188.49626,-3.7638E-05],[188.49972,-3.7638E-05],[188.50318,-3.8154E-05],[188.50664,-3.6607E-05],[188.5101,-3.6091E-05],[188.51356,-3.97E-05],[188.51702,-3.8154E-05],[188.52048,-3.6091E-05],[188.52394,-3.4029E-05],[188.5274,-3.0935E-05],[188.53086,-3.4029E-05],[188.53432,-3.4029E-05],[188.53778,-3.6607E-05],[188.54124,-3.7122E-05],[188.5447,-3.6091E-05],[188.54816,-3.6607E-05],[188.55162,-3.6607E-05],[188.55508,-4.0216E-05],[188.55854,-3.97E-05],[188.562,-3.8669E-05],[188.56546,-3.506E-05],[188.56892,-3.7122E-05],[188.57238,-3.97E-05],[188.57584,-3.8154E-05],[188.5793,-4.0732E-05],[188.58276,-3.7122E-05],[188.58622,-3.97E-05],[188.58968,-3.97E-05],[188.59314,-3.7638E-05],[188.5966,-4.0732E-05],[188.60006,-3.7122E-05],[188.60352,-3.506E-05],[188.60698,-3.4544E-05],[188.61044,-3.2482E-05],[188.6139,-3.2998E-05],[188.61736,-3.7638E-05],[188.62082,-3.5576E-05],[188.62428,-3.7122E-05],[188.62774,-3.7638E-05],[188.6312,-3.3513E-05],[188.63466,-3.7122E-05],[188.63812,-3.7122E-05],[188.64158,-3.4029E-05],[188.64504,-3.2998E-05],[188.6485,-3.3513E-05],[188.65196,-3.6091E-05],[188.65542,-3.6607E-05],[188.65888,-3.6091E-05],[188.66234,-3.8669E-05],[188.6658,-3.7638E-05],[188.66926,-3.4544E-05],[188.67272,-3.5576E-05],[188.67618,-3.3513E-05],[188.67964,-3.4029E-05],[188.6831,-3.8154E-05],[188.68656,-3.506E-05],[188.69002,-3.6607E-05],[188.69348,-4.4856E-05],[188.69694,-4.2794E-05]]}
-{"quant":[188.858,-0.10674],"mems":[[188.76014,-3.6091E-05],[188.76374,-3.97E-05],[188.76733,-3.7122E-05],[188.77092,-3.5576E-05],[188.77451,-3.8154E-05],[188.7781,-3.9185E-05],[188.7817,-3.6091E-05],[188.78529,-3.8669E-05],[188.78888,-3.7638E-05],[188.79247,-3.2482E-05],[188.79606,-3.8669E-05],[188.79966,-4.0732E-05],[188.80325,-4.5887E-05],[188.80684,-4.3825E-05],[188.81043,-3.4544E-05],[188.81402,-4.0216E-05],[188.81762,-3.8154E-05],[188.82121,-3.4544E-05],[188.8248,-3.8154E-05],[188.82839,-3.3513E-05],[188.83198,-3.4544E-05],[188.83558,-3.5576E-05],[188.83917,-3.6607E-05],[188.84276,-3.8154E-05],[188.84635,-3.8154E-05],[188.84994,-3.6091E-05],[188.85354,-2.9389E-05],[188.85713,-2.9389E-05],[188.86072,-3.4544E-05],[188.86431,-3.7122E-05],[188.8679,-3.7638E-05],[188.8715,-3.6091E-05],[188.87509,-3.5576E-05],[188.87868,-3.7122E-05],[188.88227,-3.8154E-05],[188.88586,-3.6091E-05],[188.88946,-3.506E-05],[188.89305,-3.9185E-05],[188.89664,-3.6607E-05],[188.90023,-3.6607E-05],[188.90382,-4.1763E-05],[188.90742,-4.0732E-05],[188.91101,-4.1763E-05],[188.9146,-4.0732E-05],[188.91819,-3.8669E-05],[188.92178,-3.5576E-05],[188.92538,-3.8669E-05],[188.92897,-4.2794E-05],[188.93256,-3.506E-05],[188.93615,-3.1967E-05],[188.93974,-3.6607E-05],[188.94334,-3.97E-05],[188.94693,-3.6607E-05],[188.95052,-3.8669E-05],[188.95411,-3.7638E-05],[188.9577,-2.7842E-05],[188.9613,-3.4029E-05],[188.96489,-3.7122E-05],[188.96848,-3.4029E-05],[188.97207,-3.6091E-05],[188.97566,-3.506E-05],[188.97926,-3.7122E-05],[188.98285,-3.5576E-05],[188.98644,-3.8669E-05],[188.99003,-3.9185E-05],[188.99362,-3.7638E-05],[188.99722,-3.8154E-05],[189.00081,-3.042E-05],[189.0044,-3.7122E-05],[189.00799,-3.8154E-05],[189.01158,-3.4029E-05],[189.01518,-3.7638E-05],[189.01877,-3.4029E-05],[189.02236,-3.6091E-05],[189.02595,-3.9185E-05],[189.02954,-3.97E-05],[189.03314,-3.7638E-05],[189.03673,-3.9185E-05],[189.04032,-3.6607E-05],[189.04391,-3.4029E-05],[189.0475,-3.8669E-05],[189.0511,-3.506E-05],[189.05469,-3.2998E-05]]}
-{"quant":[189.266,-0.13915],"mems":[[189.16604,-3.3513E-05],[189.16963,-3.5576E-05],[189.17322,-3.5576E-05],[189.17682,-3.8669E-05],[189.18041,-3.8669E-05],[189.184,-3.6607E-05],[189.18759,-3.4544E-05],[189.19118,-3.6607E-05],[189.19478,-3.7638E-05],[189.19837,-3.8669E-05],[189.20196,-3.7122E-05],[189.20555,-3.6607E-05],[189.20914,-3.5576E-05],[189.21274,-3.4544E-05],[189.21633,-3.7638E-05],[189.21992,-3.8154E-05],[189.22351,-3.7122E-05],[189.2271,-3.2998E-05],[189.2307,-3.506E-05],[189.23429,-3.4544E-05],[189.23788,-3.2998E-05],[189.24147,-3.6607E-05],[189.24506,-3.6607E-05],[189.24866,-3.4029E-05],[189.25225,-3.2998E-05],[189.25584,-3.8669E-05],[189.25943,-3.8154E-05],[189.26302,-3.4029E-05],[189.26662,-3.506E-05],[189.27021,-3.1967E-05],[189.2738,-3.2482E-05],[189.27739,-3.7638E-05],[189.28098,-3.7122E-05],[189.28458,-3.3513E-05],[189.28817,-3.7638E-05],[189.29176,-3.8154E-05],[189.29535,-3.5576E-05],[189.29894,-3.7638E-05],[189.30254,-3.4544E-05],[189.30613,-3.4029E-05],[189.30972,-3.8154E-05],[189.31331,-3.7638E-05],[189.3169,-3.9185E-05],[189.3205,-3.8669E-05],[189.32409,-3.7638E-05],[189.32768,-3.7122E-05],[189.33127,-3.506E-05],[189.33486,-3.506E-05],[189.33846,-3.7638E-05],[189.34205,-4.3825E-05],[189.34564,-4.1247E-05],[189.34923,-3.6091E-05],[189.35282,-3.7122E-05],[189.35642,-3.7122E-05],[189.36001,-3.6607E-05],[189.3636,-3.8154E-05],[189.36719,-3.6091E-05],[189.37078,-3.5576E-05],[189.37438,-3.506E-05],[189.37797,-3.042E-05],[189.38156,-3.7122E-05],[189.38515,-3.8154E-05],[189.38874,-3.2998E-05],[189.39234,-3.6607E-05],[189.39593,-3.97E-05],[189.39952,-4.0216E-05],[189.40311,-3.6091E-05],[189.4067,-3.6607E-05],[189.4103,-3.97E-05],[189.41389,-3.9185E-05],[189.41748,-3.7122E-05],[189.42107,-3.5576E-05],[189.42466,-4.0732E-05],[189.42826,-3.97E-05],[189.43185,-3.3513E-05],[189.43544,-3.5576E-05],[189.43903,-3.5576E-05],[189.44262,-3.8154E-05],[189.44622,-3.7638E-05],[189.44981,-3.2482E-05],[189.4534,-3.8669E-05],[189.45699,-3.8154E-05],[189.46058,-3.4029E-05],[189.46418,-4.1247E-05]]}
-{"quant":[189.711,-0.1765],"mems":[[189.61145,-3.7122E-05],[189.61504,-3.8669E-05],[189.61863,-3.4544E-05],[189.62222,-3.7122E-05],[189.62582,-3.7122E-05],[189.62941,-3.97E-05],[189.633,-3.7122E-05],[189.63659,-3.5576E-05],[189.64018,-3.7638E-05],[189.64378,-3.506E-05],[189.64737,-3.4544E-05],[189.65096,-3.4544E-05],[189.65455,-3.6091E-05],[189.65814,-3.6091E-05],[189.66174,-4.1247E-05],[189.66533,-4.3825E-05],[189.66892,-4.0732E-05],[189.67251,-3.97E-05],[189.6761,-3.6607E-05],[189.6797,-4.0216E-05],[189.68329,-3.7638E-05],[189.68688,-3.1967E-05],[189.69047,-3.5576E-05],[189.69406,-3.7638E-05],[189.69766,-3.1967E-05],[189.70125,-3.506E-05],[189.70484,-3.7122E-05],[189.70843,-3.1451E-05],[189.71202,-3.1967E-05],[189.71562,-3.3513E-05],[189.71921,-3.7638E-05],[189.7228,-3.6607E-05],[189.72639,-3.2482E-05],[189.72998,-3.042E-05],[189.73358,-3.4544E-05],[189.73717,-3.7122E-05],[189.74076,-3.5576E-05],[189.74435,-3.5576E-05],[189.74794,-3.0935E-05],[189.75154,-3.6607E-05],[189.75513,-3.7122E-05],[189.75872,-3.6607E-05],[189.76231,-4.0216E-05],[189.7659,-3.506E-05],[189.7695,-3.5576E-05],[189.77309,-3.2998E-05],[189.77668,-3.8154E-05],[189.78027,-4.1247E-05],[189.78386,-3.4029E-05],[189.78746,-3.506E-05],[189.79105,-3.7638E-05],[189.79464,-3.6607E-05],[189.79823,-3.4544E-05],[189.80182,-3.9185E-05],[189.80542,-4.1763E-05],[189.80901,-3.7638E-05],[189.8126,-3.4544E-05],[189.81619,-3.1451E-05],[189.81978,-3.6091E-05],[189.82338,-3.6091E-05],[189.82697,-3.2482E-05],[189.83056,-3.6091E-05],[189.83415,-3.6607E-05],[189.83774,-3.4544E-05],[189.84134,-3.2482E-05],[189.84493,-3.2482E-05],[189.84852,-3.6091E-05],[189.85211,-4.0216E-05],[189.8557,-3.6091E-05],[189.8593,-3.6091E-05],[189.86289,-4.2278E-05],[189.86648,-3.3513E-05],[189.87007,-3.6607E-05],[189.87366,-3.6091E-05],[189.87726,-3.4029E-05],[189.88085,-4.0732E-05],[189.88444,-3.4029E-05],[189.88803,-3.5576E-05],[189.89162,-3.6607E-05],[189.89522,-3.5576E-05],[189.89881,-3.6607E-05],[189.9024,-3.4544E-05],[189.90599,-3.5576E-05],[189.90958,-3.4544E-05]]}
-{"quant":[190.082,-0.21408],"mems":[[189.98502,-3.3513E-05],[189.98861,-3.4029E-05],[189.9922,-3.3513E-05],[189.99579,-3.5576E-05],[189.99938,-3.6091E-05],[190.00298,-3.6091E-05],[190.00657,-4.0732E-05],[190.01016,-3.8154E-05],[190.01375,-3.9185E-05],[190.01734,-3.7638E-05],[190.02094,-3.0935E-05],[190.02453,-3.6607E-05],[190.02812,-3.7638E-05],[190.03171,-3.7122E-05],[190.0353,-3.8154E-05],[190.0389,-3.5576E-05],[190.04249,-3.6607E-05],[190.04608,-3.5576E-05],[190.04967,-3.6607E-05],[190.05326,-3.9185E-05],[190.05686,-3.9185E-05],[190.06045,-3.7638E-05],[190.06404,-3.4544E-05],[190.06763,-4.0216E-05],[190.07122,-4.2794E-05],[190.07482,-3.9185E-05],[190.07841,-4.0216E-05],[190.082,-3.6091E-05],[190.08559,-3.506E-05],[190.08918,-3.97E-05],[190.09278,-3.7122E-05],[190.09637,-3.1967E-05],[190.09996,-3.4029E-05],[190.10355,-3.4544E-05],[190.10714,-3.4029E-05],[190.11074,-3.5576E-05],[190.11433,-3.506E-05],[190.11792,-3.7122E-05],[190.12151,-3.4029E-05],[190.1251,-3.2998E-05],[190.1287,-3.5576E-05],[190.13229,-3.4029E-05],[190.13588,-3.6091E-05],[190.13947,-3.6091E-05],[190.14306,-3.6091E-05],[190.14666,-3.4544E-05],[190.15025,-3.2998E-05],[190.15384,-3.8154E-05],[190.15743,-3.506E-05],[190.16102,-3.4029E-05],[190.16462,-3.506E-05],[190.16821,-3.2998E-05],[190.1718,-3.4544E-05],[190.17539,-3.7638E-05],[190.17898,-3.97E-05],[190.18258,-3.97E-05],[190.18617,-3.4544E-05],[190.18976,-2.9904E-05],[190.19335,-3.1967E-05],[190.19694,-3.2482E-05],[190.20054,-3.2482E-05],[190.20413,-3.6091E-05],[190.20772,-3.7122E-05],[190.21131,-4.0732E-05],[190.2149,-4.3825E-05],[190.2185,-3.9185E-05],[190.22209,-3.506E-05],[190.22568,-3.4544E-05],[190.22927,-3.506E-05],[190.23286,-3.3513E-05],[190.23646,-3.7122E-05],[190.24005,-3.9185E-05],[190.24364,-3.8669E-05],[190.24723,-3.9185E-05],[190.25082,-3.1967E-05],[190.25442,-3.6091E-05],[190.25801,-3.7122E-05],[190.2616,-3.3513E-05],[190.26519,-3.6607E-05],[190.26878,-3.2998E-05],[190.27238,-3.506E-05],[190.27597,-3.8154E-05],[190.27956,-3.8669E-05]]}
-{"quant":[190.43,-0.24035],"mems":[[190.33344,-3.2998E-05],[190.33703,-3.0935E-05],[190.34062,-3.4544E-05],[190.34422,-3.6607E-05],[190.34781,-3.9185E-05],[190.3514,-3.2482E-05],[190.35499,-2.7842E-05],[190.35858,-3.6607E-05],[190.36218,-3.8154E-05],[190.36577,-3.8669E-05],[190.36936,-3.8669E-05],[190.37295,-3.8154E-05],[190.37654,-3.3513E-05],[190.38014,-2.9389E-05],[190.38373,-3.7122E-05],[190.38732,-3.6607E-05],[190.39091,-3.506E-05],[190.3945,-3.9185E-05],[190.3981,-3.7122E-05],[190.40169,-3.6607E-05],[190.40528,-3.6607E-05],[190.40887,-3.8669E-05],[190.41246,-3.97E-05],[190.41606,-3.506E-05],[190.41965,-3.4029E-05],[190.42324,-3.6607E-05],[190.42683,-3.9185E-05],[190.43042,-4.0216E-05],[190.43402,-3.6091E-05],[190.43761,-3.5576E-05],[190.4412,-3.7638E-05],[190.44479,-3.2482E-05],[190.44838,-3.1451E-05],[190.45198,-3.7638E-05],[190.45557,-3.6091E-05],[190.45916,-3.4029E-05],[190.46275,-4.0732E-05],[190.46634,-3.7122E-05],[190.46994,-3.4544E-05],[190.47353,-3.8669E-05],[190.47712,-3.7638E-05],[190.48071,-3.9185E-05],[190.4843,-3.97E-05],[190.4879,-3.6607E-05],[190.49149,-3.3513E-05],[190.49508,-3.8154E-05],[190.49867,-4.0732E-05],[190.50226,-3.5576E-05],[190.50586,-3.8154E-05],[190.50945,-3.9185E-05],[190.51304,-3.7122E-05],[190.51663,-3.5576E-05],[190.52022,-3.506E-05],[190.52382,-3.4029E-05],[190.52741,-3.2998E-05],[190.531,-3.506E-05],[190.53459,-3.7638E-05],[190.53818,-3.8154E-05],[190.54178,-3.5576E-05],[190.54537,-3.6607E-05],[190.54896,-3.7638E-05],[190.55255,-3.4544E-05],[190.55614,-3.6091E-05],[190.55974,-3.8669E-05],[190.56333,-3.4544E-05],[190.56692,-3.2998E-05],[190.57051,-3.5576E-05],[190.5741,-3.8154E-05],[190.5777,-3.97E-05],[190.58129,-3.8669E-05],[190.58488,-3.7638E-05],[190.58847,-3.9185E-05],[190.59206,-4.0216E-05],[190.59566,-3.6607E-05],[190.59925,-3.2482E-05],[190.60284,-3.2482E-05],[190.60643,-3.6091E-05],[190.61002,-3.6607E-05],[190.61362,-3.6091E-05],[190.61721,-3.7122E-05],[190.6208,-3.6091E-05],[190.62439,-3.6091E-05],[190.62798,-3.4544E-05]]}
-{"quant":[190.785,-0.26822],"mems":[[190.68546,-3.506E-05],[190.68905,-3.3513E-05],[190.69264,-3.0935E-05],[190.69623,-3.9185E-05],[190.69982,-3.8154E-05],[190.70342,-3.042E-05],[190.70701,-3.4544E-05],[190.7106,-3.2482E-05],[190.71419,-3.2998E-05],[190.71778,-3.2482E-05],[190.72138,-3.2482E-05],[190.72497,-3.7638E-05],[190.72856,-3.6091E-05],[190.73215,-3.4544E-05],[190.73574,-3.506E-05],[190.73934,-3.8154E-05],[190.74293,-3.6091E-05],[190.74652,-3.5576E-05],[190.75011,-3.7638E-05],[190.7537,-3.2998E-05],[190.7573,-3.6091E-05],[190.76089,-3.7122E-05],[190.76448,-3.4544E-05],[190.76807,-3.6607E-05],[190.77166,-3.4544E-05],[190.77526,-3.5576E-05],[190.77885,-3.4029E-05],[190.78244,-3.6091E-05],[190.78603,-4.0732E-05],[190.78962,-3.8154E-05],[190.79322,-3.5576E-05],[190.79681,-3.3513E-05],[190.8004,-4.0216E-05],[190.80399,-4.0216E-05],[190.80758,-3.7122E-05],[190.81118,-3.7638E-05],[190.81477,-3.4544E-05],[190.81836,-3.4544E-05],[190.82195,-3.506E-05],[190.82554,-3.97E-05],[190.82914,-3.6607E-05],[190.83273,-3.2998E-05],[190.83632,-3.4029E-05],[190.83991,-3.4544E-05],[190.8435,-3.97E-05],[190.8471,-3.5576E-05],[190.85069,-3.1967E-05],[190.85428,-3.4544E-05],[190.85787,-3.2998E-05],[190.86146,-3.4544E-05],[190.86506,-3.8154E-05],[190.86865,-3.6607E-05],[190.87224,-3.7638E-05],[190.87583,-3.8669E-05],[190.87942,-3.4544E-05],[190.88302,-3.506E-05],[190.88661,-3.4544E-05],[190.8902,-3.8669E-05],[190.89379,-3.97E-05],[190.89738,-3.5576E-05],[190.90098,-3.7122E-05],[190.90457,-3.5576E-05],[190.90816,-3.6091E-05],[190.91175,-3.8669E-05],[190.91534,-4.0216E-05],[190.91894,-3.8669E-05],[190.92253,-3.6091E-05],[190.92612,-3.4544E-05],[190.92971,-3.4029E-05],[190.9333,-3.7638E-05],[190.9369,-3.7122E-05],[190.94049,-3.6607E-05],[190.94408,-3.6091E-05],[190.94767,-3.506E-05],[190.95126,-3.7122E-05],[190.95486,-3.8669E-05],[190.95845,-3.8669E-05],[190.96204,-3.506E-05],[190.96563,-3.8154E-05],[190.96922,-3.9185E-05],[190.97282,-3.4544E-05],[190.97641,-3.6091E-05],[190.98,-3.7122E-05],[190.98359,-3.6091E-05]]}
-{"quant":[191.291,-0.30819],"mems":[[191.19193,-3.7122E-05],[191.19552,-3.5576E-05],[191.19911,-4.0216E-05],[191.2027,-3.8154E-05],[191.2063,-3.8669E-05],[191.20989,-3.8154E-05],[191.21348,-3.4544E-05],[191.21707,-3.8669E-05],[191.22066,-3.6607E-05],[191.22426,-3.6607E-05],[191.22785,-3.6091E-05],[191.23144,-3.3513E-05],[191.23503,-3.7638E-05],[191.23862,-3.8669E-05],[191.24222,-3.506E-05],[191.24581,-3.4029E-05],[191.2494,-3.2998E-05],[191.25299,-3.5576E-05],[191.25658,-3.7638E-05],[191.26018,-3.9185E-05],[191.26377,-3.8669E-05],[191.26736,-3.6091E-05],[191.27095,-3.7638E-05],[191.27454,-4.0732E-05],[191.27814,-3.97E-05],[191.28173,-3.506E-05],[191.28532,-3.8154E-05],[191.28891,-3.8154E-05],[191.2925,-3.3513E-05],[191.2961,-3.4544E-05],[191.29969,-3.5576E-05],[191.30328,-3.6091E-05],[191.30687,-3.2482E-05],[191.31046,-3.2482E-05],[191.31406,-3.7638E-05],[191.31765,-3.506E-05],[191.32124,-3.7122E-05],[191.32483,-3.8669E-05],[191.32842,-3.3513E-05],[191.33202,-3.9185E-05],[191.33561,-3.7638E-05],[191.3392,-3.1967E-05],[191.34279,-3.3513E-05],[191.34638,-3.1967E-05],[191.34998,-3.4544E-05],[191.35357,-3.2482E-05],[191.35716,-3.1451E-05],[191.36075,-3.3513E-05],[191.36434,-3.4544E-05],[191.36794,-3.8669E-05],[191.37153,-3.6091E-05],[191.37512,-3.3513E-05],[191.37871,-3.2482E-05],[191.3823,-3.7122E-05],[191.3859,-3.8154E-05],[191.38949,-3.4029E-05],[191.39308,-3.6091E-05],[191.39667,-3.8154E-05],[191.40026,-3.8154E-05],[191.40386,-3.6091E-05],[191.40745,-3.506E-05],[191.41104,-3.6607E-05],[191.41463,-3.4544E-05],[191.41822,-3.4029E-05],[191.42182,-3.506E-05],[191.42541,-3.2998E-05],[191.429,-3.4029E-05],[191.43249,-3.4029E-05],[191.43597,-3.5576E-05],[191.43946,-3.3513E-05],[191.44295,-3.1967E-05],[191.44643,-3.9185E-05],[191.44992,-3.8669E-05],[191.45341,-4.0216E-05],[191.45689,-4.0216E-05],[191.46038,-3.3513E-05],[191.46387,-3.7638E-05],[191.46735,-3.8154E-05],[191.47084,-3.506E-05],[191.47433,-3.97E-05],[191.47781,-3.8154E-05],[191.4813,-3.4544E-05],[191.48479,-3.6607E-05],[191.48827,-3.6091E-05],[191.49176,-3.6607E-05]]}
-{"quant":[191.81,-0.35374],"mems":[[191.71142,-3.2482E-05],[191.71491,-2.9904E-05],[191.71839,-3.4544E-05],[191.72188,-3.7122E-05],[191.72537,-3.97E-05],[191.72885,-4.2278E-05],[191.73234,-3.3513E-05],[191.73583,-3.4029E-05],[191.73931,-3.6091E-05],[191.7428,-3.506E-05],[191.74629,-3.8154E-05],[191.74977,-3.5576E-05],[191.75326,-3.6607E-05],[191.75675,-3.7638E-05],[191.76023,-3.6607E-05],[191.76372,-3.4029E-05],[191.76721,-3.6607E-05],[191.77069,-4.1247E-05],[191.77418,-3.6607E-05],[191.77767,-3.4544E-05],[191.78115,-3.4029E-05],[191.78464,-3.7638E-05],[191.78813,-3.8154E-05],[191.79161,-3.7638E-05],[191.7951,-4.0732E-05],[191.79859,-3.5576E-05],[191.80207,-3.4029E-05],[191.80556,-3.5576E-05],[191.80905,-3.6607E-05],[191.81253,-3.506E-05],[191.81602,-3.3513E-05],[191.81951,-3.7122E-05],[191.82299,-3.4029E-05],[191.82648,-3.2998E-05],[191.82997,-3.5576E-05],[191.83345,-3.8669E-05],[191.83694,-4.0732E-05],[191.84043,-3.8154E-05],[191.84391,-3.97E-05],[191.8474,-3.8669E-05],[191.85089,-3.7122E-05],[191.85437,-3.7638E-05],[191.85786,-3.97E-05],[191.86135,-4.1763E-05],[191.86483,-3.4029E-05],[191.86832,-3.3513E-05],[191.87181,-3.7122E-05],[191.87529,-3.9185E-05],[191.87878,-3.7122E-05],[191.88227,-3.5576E-05],[191.88575,-3.8154E-05],[191.88924,-3.506E-05],[191.89273,-3.8154E-05],[191.89621,-3.7122E-05],[191.8997,-3.6607E-05],[191.90319,-3.6607E-05],[191.90667,-3.5576E-05],[191.91016,-3.9185E-05],[191.91365,-3.8154E-05],[191.91713,-3.7122E-05],[191.92062,-3.4029E-05],[191.92411,-3.1967E-05],[191.92759,-3.4544E-05],[191.93108,-3.6091E-05],[191.93457,-3.6091E-05],[191.93805,-3.6607E-05],[191.94154,-3.8154E-05],[191.94503,-3.7122E-05],[191.94851,-3.2998E-05],[191.952,-3.7638E-05],[191.95549,-4.3309E-05],[191.95897,-4.1247E-05],[191.96246,-3.6091E-05],[191.96595,-3.3513E-05],[191.96943,-3.4029E-05],[191.97292,-3.5576E-05],[191.97641,-3.7638E-05],[191.97989,-3.4544E-05],[191.98338,-3.2998E-05],[191.98687,-3.4029E-05],[191.99035,-3.7122E-05],[191.99384,-3.7638E-05],[191.99733,-3.6607E-05],[192.00081,-4.1247E-05],[192.0043,-3.5576E-05],[192.00779,-3.4544E-05]]}
-{"quant":[192.357,-0.39693],"mems":[[192.25883,-3.8154E-05],[192.26231,-3.6607E-05],[192.2658,-3.5576E-05],[192.26929,-3.9185E-05],[192.27277,-3.8669E-05],[192.27626,-3.7122E-05],[192.27975,-3.4029E-05],[192.28323,-3.5576E-05],[192.28672,-3.6607E-05],[192.29021,-3.6607E-05],[192.29369,-3.4029E-05],[192.29718,-3.5576E-05],[192.30067,-3.9185E-05],[192.30415,-3.6091E-05],[192.30764,-4.0216E-05],[192.31113,-3.8669E-05],[192.31461,-3.3513E-05],[192.3181,-3.2998E-05],[192.32159,-3.506E-05],[192.32507,-4.0216E-05],[192.32856,-3.506E-05],[192.33205,-3.2482E-05],[192.33553,-3.7122E-05],[192.33902,-3.7638E-05],[192.34251,-3.6607E-05],[192.34599,-3.9185E-05],[192.34948,-3.8154E-05],[192.35297,-3.4029E-05],[192.35645,-3.6607E-05],[192.35994,-3.8154E-05],[192.36343,-3.8669E-05],[192.36691,-4.2278E-05],[192.3704,-3.9185E-05],[192.37389,-3.9185E-05],[192.37737,-4.3309E-05],[192.38086,-3.8154E-05],[192.38435,-3.7638E-05],[192.38783,-3.9185E-05],[192.39132,-3.4544E-05],[192.39481,-3.5576E-05],[192.39829,-4.0732E-05],[192.40178,-3.6607E-05],[192.40527,-3.5576E-05],[192.40875,-3.7638E-05],[192.41224,-3.0935E-05],[192.41573,-3.2998E-05],[192.41921,-3.6607E-05],[192.4227,-3.7122E-05],[192.42619,-3.4544E-05],[192.42967,-3.2998E-05],[192.43316,-3.5576E-05],[192.43665,-3.7122E-05],[192.44013,-4.1763E-05],[192.44362,-3.97E-05],[192.44711,-3.6091E-05],[192.45059,-3.7122E-05],[192.45408,-3.6091E-05],[192.45757,-3.4544E-05],[192.46105,-3.4029E-05],[192.46454,-3.6091E-05],[192.46803,-4.0216E-05],[192.47151,-3.9185E-05],[192.475,-3.8154E-05],[192.47849,-3.7122E-05],[192.48197,-3.6091E-05],[192.48546,-3.7638E-05],[192.48895,-3.7638E-05],[192.49243,-3.5576E-05],[192.49592,-3.2998E-05],[192.49941,-4.0732E-05],[192.50289,-4.0732E-05],[192.50638,-3.6607E-05],[192.50987,-3.97E-05],[192.51335,-3.2998E-05],[192.51684,-3.506E-05],[192.52033,-3.8669E-05],[192.52381,-3.506E-05],[192.5273,-4.0216E-05],[192.53079,-3.7122E-05],[192.53427,-3.1451E-05],[192.53776,-3.7638E-05],[192.54125,-3.6091E-05],[192.54473,-3.6091E-05],[192.54822,-4.1763E-05],[192.55171,-3.5576E-05],[192.55519,-3.1451E-05]]}
-{"quant":[192.882,-0.43486],"mems":[[192.78531,-3.3513E-05],[192.7888,-3.2998E-05],[192.79229,-3.5576E-05],[192.79577,-3.97E-05],[192.79926,-3.7122E-05],[192.80275,-3.7638E-05],[192.80623,-3.2998E-05],[192.80972,-3.4029E-05],[192.81321,-3.4029E-05],[192.81669,-2.9904E-05],[192.82018,-3.7122E-05],[192.82367,-4.1763E-05],[192.82715,-3.8669E-05],[192.83064,-3.6091E-05],[192.83413,-3.6091E-05],[192.83761,-3.4029E-05],[192.8411,-3.6607E-05],[192.84459,-4.0216E-05],[192.84807,-3.7122E-05],[192.85156,-3.506E-05],[192.85505,-3.1967E-05],[192.85853,-3.4029E-05],[192.86202,-3.4544E-05],[192.86551,-3.1967E-05],[192.86899,-3.4544E-05],[192.87248,-3.5576E-05],[192.87597,-3.5576E-05],[192.87945,-3.7122E-05],[192.88294,-3.8669E-05],[192.88643,-4.0732E-05],[192.88991,-3.97E-05],[192.8934,-3.8154E-05],[192.89689,-3.8154E-05],[192.90037,-3.6091E-05],[192.90386,-3.3513E-05],[192.90735,-3.4544E-05],[192.91083,-3.6091E-05],[192.91432,-3.6091E-05],[192.91781,-3.5576E-05],[192.92129,-3.6607E-05],[192.92478,-3.8669E-05],[192.92827,-3.97E-05],[192.93175,-3.5576E-05],[192.93524,-3.7638E-05],[192.93873,-3.6607E-05],[192.94221,-3.7122E-05],[192.9457,-4.1247E-05],[192.94919,-3.8669E-05],[192.95267,-3.8154E-05],[192.95616,-3.7122E-05],[192.95965,-3.7122E-05],[192.96313,-3.3513E-05],[192.96662,-3.2482E-05],[192.97011,-3.8154E-05],[192.97359,-3.7638E-05],[192.97708,-3.4029E-05],[192.98057,-3.7638E-05],[192.98405,-3.9185E-05],[192.98754,-3.5576E-05],[192.99103,-3.6607E-05],[192.99451,-3.5576E-05],[192.998,-3.2998E-05],[193.00149,-3.4544E-05],[193.00497,-4.1763E-05],[193.00846,-3.8669E-05],[193.01195,-2.8873E-05],[193.01543,-3.7638E-05],[193.01892,-4.2794E-05],[193.02241,-3.7122E-05],[193.02589,-3.5576E-05],[193.02938,-3.6607E-05],[193.03287,-4.1247E-05],[193.03635,-3.7638E-05],[193.03984,-3.1451E-05],[193.04333,-3.5576E-05],[193.04681,-3.8669E-05],[193.0503,-3.8154E-05],[193.05379,-3.97E-05],[193.05727,-3.7638E-05],[193.06076,-3.4544E-05],[193.06425,-3.7122E-05],[193.06773,-3.9185E-05],[193.07122,-3.6091E-05],[193.07471,-3.3513E-05],[193.07819,-3.1451E-05],[193.08168,-3.2482E-05]]}
-{"quant":[193.236,-0.46841],"mems":[[193.13747,-3.1967E-05],[193.14095,-3.4029E-05],[193.14444,-3.5576E-05],[193.14793,-3.6091E-05],[193.15141,-3.3513E-05],[193.1549,-3.7638E-05],[193.15839,-3.8154E-05],[193.16187,-3.1967E-05],[193.16536,-4.0216E-05],[193.16885,-4.0732E-05],[193.17233,-3.2998E-05],[193.17582,-3.4029E-05],[193.17931,-3.6607E-05],[193.18279,-3.4029E-05],[193.18628,-3.2998E-05],[193.18977,-3.1451E-05],[193.19325,-2.8357E-05],[193.19674,-3.506E-05],[193.20023,-3.8669E-05],[193.20371,-3.6091E-05],[193.2072,-3.8669E-05],[193.21069,-3.97E-05],[193.21417,-4.0732E-05],[193.21766,-4.2278E-05],[193.22115,-3.9185E-05],[193.22463,-3.8669E-05],[193.22812,-4.0216E-05],[193.23161,-3.7638E-05],[193.23509,-3.97E-05],[193.23858,-3.8154E-05],[193.24207,-3.5576E-05],[193.24555,-3.7638E-05],[193.24904,-3.6091E-05],[193.25253,-3.506E-05],[193.25601,-3.8669E-05],[193.2595,-4.0216E-05],[193.26299,-3.6607E-05],[193.26647,-3.6091E-05],[193.26996,-3.6607E-05],[193.27345,-3.5576E-05],[193.27693,-3.8669E-05],[193.28042,-3.7122E-05],[193.28391,-3.506E-05],[193.28739,-3.7122E-05],[193.29088,-3.5576E-05],[193.29437,-3.6091E-05],[193.29785,-3.9185E-05],[193.30134,-3.6091E-05],[193.30483,-3.506E-05],[193.30831,-3.8669E-05],[193.3118,-3.8154E-05],[193.31529,-3.7638E-05],[193.31877,-3.2482E-05],[193.32226,-3.1451E-05],[193.32575,-3.4544E-05],[193.32923,-3.2998E-05],[193.33272,-3.8154E-05],[193.33621,-4.0732E-05],[193.33969,-3.6091E-05],[193.34318,-3.2998E-05],[193.34667,-3.4544E-05],[193.35015,-3.9185E-05],[193.35364,-3.8154E-05],[193.35713,-3.5576E-05],[193.36061,-3.7122E-05],[193.3641,-3.506E-05],[193.36759,-3.5576E-05],[193.37107,-4.0216E-05],[193.37456,-3.97E-05],[193.37805,-3.7638E-05],[193.38153,-3.4029E-05],[193.38502,-3.506E-05],[193.38851,-3.7122E-05],[193.39199,-3.6091E-05],[193.39548,-3.7122E-05],[193.39897,-3.4029E-05],[193.40245,-3.6091E-05],[193.40594,-3.9185E-05],[193.40943,-3.8154E-05],[193.41291,-3.97E-05],[193.4164,-4.0732E-05],[193.41989,-3.7122E-05],[193.42337,-3.7638E-05],[193.42686,-3.9185E-05],[193.43035,-3.6607E-05],[193.43383,-3.7122E-05]]}
-{"quant":[193.582,-0.49858],"mems":[[193.48265,-3.7122E-05],[193.48613,-3.7122E-05],[193.48962,-3.8669E-05],[193.49311,-3.5576E-05],[193.49659,-3.7122E-05],[193.50008,-3.4029E-05],[193.50357,-3.506E-05],[193.50705,-3.3513E-05],[193.51054,-3.5576E-05],[193.51403,-3.8669E-05],[193.51751,-3.4544E-05],[193.521,-3.7638E-05],[193.52449,-3.6091E-05],[193.52797,-3.1967E-05],[193.53146,-3.042E-05],[193.53495,-3.4029E-05],[193.53843,-3.6607E-05],[193.54192,-3.8669E-05],[193.54541,-3.97E-05],[193.54889,-3.2998E-05],[193.55238,-3.7638E-05],[193.55587,-3.8154E-05],[193.55935,-3.2998E-05],[193.56284,-3.6091E-05],[193.56633,-3.4544E-05],[193.56981,-3.8154E-05],[193.5733,-4.0216E-05],[193.57679,-3.8154E-05],[193.58027,-3.8154E-05],[193.58376,-3.4029E-05],[193.58725,-3.1451E-05],[193.59073,-3.7122E-05],[193.59422,-3.8154E-05],[193.59771,-3.506E-05],[193.60119,-3.9185E-05],[193.60468,-3.8669E-05],[193.60817,-3.2482E-05],[193.61165,-3.3513E-05],[193.61514,-3.6091E-05],[193.61863,-3.5576E-05],[193.62211,-3.5576E-05],[193.6256,-3.4544E-05],[193.62909,-3.2998E-05],[193.63257,-3.4029E-05],[193.63606,-3.042E-05],[193.63955,-3.2998E-05],[193.64303,-3.8154E-05],[193.64652,-3.0935E-05],[193.65001,-3.1967E-05],[193.65349,-3.6607E-05],[193.65698,-3.7122E-05],[193.66047,-4.0216E-05],[193.66395,-3.9185E-05],[193.66744,-3.4544E-05],[193.67093,-3.506E-05],[193.67441,-3.4544E-05],[193.6779,-3.1967E-05],[193.68139,-3.6607E-05],[193.68487,-3.6091E-05],[193.68836,-3.3513E-05],[193.69185,-3.7122E-05],[193.69533,-3.8669E-05],[193.69882,-3.4544E-05],[193.70231,-2.9904E-05],[193.70579,-3.506E-05],[193.70928,-3.7638E-05],[193.71277,-4.2794E-05],[193.71625,-4.0732E-05],[193.71974,-3.4544E-05],[193.72323,-3.8154E-05],[193.72671,-3.7638E-05],[193.7302,-3.0935E-05],[193.73369,-3.6091E-05],[193.73717,-4.2278E-05],[193.74066,-3.9185E-05],[193.74415,-3.4544E-05],[193.74763,-2.8873E-05],[193.75112,-3.1967E-05],[193.75461,-3.5576E-05],[193.75809,-3.2998E-05],[193.76158,-3.2998E-05],[193.76507,-3.6607E-05],[193.76855,-3.4544E-05],[193.77204,-3.2998E-05],[193.77553,-3.7638E-05],[193.77901,-3.6091E-05]]}
-{"quant":[193.947,-0.52641],"mems":[[194.00216,-3.97E-05],[194.00565,-3.7122E-05],[194.00913,-3.5576E-05],[194.01262,-2.9389E-05],[194.01611,-3.2482E-05],[194.01959,-3.8669E-05],[194.02308,-3.3513E-05],[194.02657,-3.506E-05],[194.03005,-3.4544E-05],[194.03354,-3.506E-05],[194.03703,-3.7122E-05],[194.04051,-3.506E-05],[194.044,-3.8154E-05],[194.04723,-3.8154E-05],[194.05046,-3.5576E-05],[194.05368,-3.5576E-05],[194.05691,-3.5576E-05],[194.06014,-3.5576E-05],[194.06337,-3.506E-05],[194.0666,-3.5576E-05],[194.06982,-3.3513E-05],[194.07305,-3.1451E-05],[194.07628,-3.4029E-05],[194.07951,-3.4544E-05],[194.08274,-4.0216E-05],[194.08596,-4.0216E-05],[194.08919,-3.4544E-05],[194.09242,-3.6091E-05],[194.09565,-3.6091E-05],[194.09888,-3.7122E-05],[194.1021,-3.8669E-05],[194.10533,-3.4029E-05],[194.10856,-3.7122E-05],[194.11179,-4.1247E-05],[194.11502,-3.9185E-05],[194.11824,-3.8154E-05],[194.12147,-3.8154E-05],[194.1247,-3.8154E-05],[194.12793,-3.506E-05],[194.13116,-3.6091E-05],[194.13438,-3.97E-05],[194.13761,-3.5576E-05],[194.14084,-3.2482E-05],[194.14407,-3.506E-05],[194.1473,-3.7638E-05],[194.15052,-4.2278E-05],[194.15375,-4.1247E-05],[194.15698,-3.4544E-05],[194.16021,-3.8669E-05],[194.16344,-3.6607E-05],[194.16666,-3.4029E-05],[194.16989,-3.6091E-05],[194.17312,-3.4029E-05],[194.17635,-3.8154E-05],[194.17958,-3.506E-05],[194.1828,-2.9389E-05],[194.18603,-3.7122E-05],[194.18926,-4.0216E-05],[194.19249,-3.8154E-05],[194.19572,-3.7638E-05],[194.19894,-3.6607E-05],[194.20217,-3.7122E-05],[194.2054,-3.8154E-05],[194.20863,-3.8154E-05],[194.21186,-4.0732E-05],[194.21508,-3.8669E-05],[194.21831,-3.1451E-05],[194.22154,-3.042E-05],[194.22477,-3.7122E-05],[194.228,-3.6091E-05],[194.23122,-3.6091E-05],[194.23445,-4.0216E-05],[194.23768,-3.2998E-05],[194.24091,-3.1967E-05],[194.24414,-3.97E-05],[194.24736,-3.7122E-05],[194.25059,-3.4544E-05],[194.25382,-3.6091E-05],[194.25705,-3.4544E-05],[194.26028,-3.3513E-05],[194.2635,-3.4544E-05],[194.26673,-3.8669E-05],[194.26996,-3.8154E-05],[194.27319,-3.2998E-05],[194.27642,-3.506E-05],[194.27964,-3.4544E-05],[194.28287,-3.4029E-05],[194.2861,-4.1247E-05]]}
-{"quant":[194.388,-0.55799],"mems":[[194.28933,-4.2278E-05],[194.29256,-3.7122E-05],[194.29578,-3.3513E-05],[194.29901,-3.3513E-05],[194.30224,-3.5576E-05],[194.30547,-3.5576E-05],[194.3087,-3.7122E-05],[194.31192,-3.8669E-05],[194.31515,-3.6091E-05],[194.31838,-3.7638E-05],[194.32161,-3.7122E-05],[194.32484,-3.2482E-05],[194.32806,-3.3513E-05],[194.33129,-3.7638E-05],[194.33452,-3.7122E-05],[194.33775,-3.4544E-05],[194.34098,-3.8154E-05],[194.3442,-3.6607E-05],[194.34743,-3.2482E-05],[194.35066,-3.1451E-05],[194.35389,-3.1967E-05],[194.35712,-3.7638E-05],[194.36034,-3.4544E-05],[194.36357,-3.5576E-05],[194.3668,-3.8669E-05],[194.37003,-3.6091E-05],[194.37326,-3.9185E-05],[194.37648,-3.8154E-05],[194.37971,-3.9185E-05],[194.38294,-3.7122E-05],[194.38617,-3.5576E-05],[194.3894,-4.1763E-05],[194.39262,-3.97E-05],[194.39585,-4.0732E-05],[194.39908,-3.7638E-05],[194.40231,-3.7122E-05],[194.40554,-3.97E-05],[194.40876,-3.4029E-05],[194.41199,-3.8154E-05],[194.41522,-3.7122E-05],[194.41845,-3.5576E-05],[194.42168,-4.0732E-05],[194.4249,-3.1967E-05],[194.42813,-3.6607E-05],[194.43136,-4.1763E-05],[194.43459,-3.2998E-05],[194.43782,-3.8154E-05],[194.44104,-3.5576E-05],[194.44427,-3.6091E-05],[194.4475,-3.9185E-05],[194.45073,-3.2482E-05],[194.45396,-3.6091E-05],[194.45718,-3.4544E-05],[194.46041,-3.4029E-05],[194.46364,-3.506E-05],[194.46687,-3.4544E-05],[194.4701,-4.1247E-05],[194.47332,-4.0216E-05],[194.47655,-4.0732E-05],[194.47978,-3.3513E-05],[194.48301,-3.0935E-05],[194.48624,-3.8669E-05],[194.48946,-3.4544E-05],[194.49269,-3.8154E-05],[194.49592,-4.0216E-05],[194.49915,-3.4544E-05],[194.50238,-3.506E-05],[194.5056,-3.7122E-05],[194.50883,-4.0732E-05],[194.51206,-3.7122E-05],[194.51529,-3.1967E-05],[194.51852,-3.4544E-05],[194.52174,-3.4544E-05],[194.52497,-3.8154E-05],[194.5282,-4.4341E-05],[194.53143,-4.2794E-05],[194.53466,-3.8669E-05],[194.53788,-3.2998E-05],[194.54111,-3.1451E-05],[194.54434,-3.4544E-05],[194.54757,-3.2998E-05],[194.5508,-3.1967E-05],[194.55402,-3.6091E-05],[194.55725,-3.5576E-05],[194.56048,-3.2998E-05],[194.56371,-3.2998E-05],[194.56694,-3.2482E-05],[194.57016,-3.506E-05],[194.57339,-3.6607E-05],[194.57662,-3.5576E-05],[194.57985,-3.5576E-05],[194.58308,-3.7638E-05],[194.5863,-3.4544E-05]]}
-{"quant":[194.749,-0.605],"mems":[[194.65086,-3.2482E-05],[194.65409,-3.6607E-05],[194.65732,-3.4544E-05],[194.66055,-3.6091E-05],[194.66378,-3.6091E-05],[194.667,-3.2998E-05],[194.67023,-3.7638E-05],[194.67346,-3.506E-05],[194.67669,-3.506E-05],[194.67992,-3.9185E-05],[194.68314,-3.6607E-05],[194.68637,-3.7638E-05],[194.6896,-3.2482E-05],[194.69283,-3.3513E-05],[194.69606,-4.0216E-05],[194.69928,-3.6607E-05],[194.70251,-3.506E-05],[194.70574,-3.8669E-05],[194.70897,-3.5576E-05],[194.7122,-3.2482E-05],[194.71542,-3.6091E-05],[194.71865,-3.7638E-05],[194.72188,-3.6091E-05],[194.72511,-3.0935E-05],[194.72834,-3.3513E-05],[194.73156,-3.97E-05],[194.73479,-3.7122E-05],[194.73802,-3.97E-05],[194.74125,-4.1247E-05],[194.74448,-3.5576E-05],[194.7477,-3.506E-05],[194.75093,-3.6607E-05],[194.75416,-3.4029E-05],[194.75739,-3.9185E-05],[194.76062,-4.1247E-05],[194.76384,-3.4544E-05],[194.76707,-3.6607E-05],[194.7703,-3.6607E-05],[194.77353,-3.1451E-05],[194.77676,-3.0935E-05],[194.77998,-3.4544E-05],[194.78321,-3.4544E-05],[194.78644,-3.506E-05],[194.78967,-3.8669E-05],[194.7929,-3.8669E-05],[194.79612,-3.6607E-05],[194.79935,-3.2998E-05],[194.80258,-3.0935E-05],[194.80581,-3.506E-05],[194.80904,-3.8154E-05],[194.81226,-3.3513E-05],[194.81549,-3.0935E-05],[194.81872,-2.9904E-05],[194.82195,-3.506E-05],[194.82518,-3.7638E-05],[194.8284,-3.506E-05],[194.83163,-4.0216E-05],[194.83486,-3.8669E-05],[194.83809,-3.1967E-05],[194.84132,-3.1967E-05],[194.84454,-3.6607E-05],[194.84777,-3.6091E-05],[194.851,-3.5576E-05],[194.85423,-3.8669E-05],[194.85746,-3.7122E-05],[194.86068,-4.0732E-05],[194.86391,-3.97E-05],[194.86714,-3.506E-05],[194.87037,-3.6091E-05],[194.8736,-3.506E-05],[194.87682,-3.6091E-05],[194.88005,-3.5576E-05],[194.88328,-3.6091E-05],[194.88651,-3.7122E-05],[194.88974,-3.6091E-05],[194.89296,-3.2998E-05],[194.89619,-3.506E-05],[194.89942,-3.7122E-05],[194.90265,-3.6607E-05],[194.90588,-4.1247E-05],[194.9091,-3.9185E-05],[194.91233,-3.7638E-05],[194.91556,-3.8154E-05],[194.91879,-3.506E-05],[194.92202,-3.506E-05],[194.92524,-3.506E-05],[194.92847,-3.2482E-05],[194.9317,-3.2998E-05],[194.93493,-3.6607E-05],[194.93816,-3.4544E-05],[194.94138,-3.6091E-05],[194.94461,-3.7122E-05],[194.94784,-3.7122E-05]]}
-{"quant":[195.279,-0.65236],"mems":[[195.18026,-3.7122E-05],[195.18348,-3.97E-05],[195.18671,-4.2278E-05],[195.18994,-3.7638E-05],[195.19317,-3.4029E-05],[195.1964,-3.9185E-05],[195.19962,-4.2278E-05],[195.20285,-3.9185E-05],[195.20608,-3.4029E-05],[195.20931,-3.6607E-05],[195.21254,-3.4544E-05],[195.21576,-3.4029E-05],[195.21899,-3.8154E-05],[195.22222,-3.6091E-05],[195.22545,-3.6607E-05],[195.22868,-3.5576E-05],[195.2319,-3.4029E-05],[195.23513,-3.7122E-05],[195.23836,-4.0216E-05],[195.24159,-3.7122E-05],[195.24482,-3.6091E-05],[195.24804,-3.9185E-05],[195.25127,-3.2998E-05],[195.2545,-3.4544E-05],[195.25773,-4.0732E-05],[195.26096,-3.97E-05],[195.26418,-3.8154E-05],[195.26741,-3.8154E-05],[195.27064,-3.7638E-05],[195.27387,-3.4029E-05],[195.2771,-3.9185E-05],[195.28032,-3.9185E-05],[195.28355,-3.6091E-05],[195.28678,-3.8154E-05],[195.29001,-3.7122E-05],[195.29324,-4.0732E-05],[195.29646,-3.97E-05],[195.29969,-3.7122E-05],[195.30292,-3.1451E-05],[195.30615,-3.2482E-05],[195.30938,-3.8154E-05],[195.3126,-3.7122E-05],[195.31583,-3.97E-05],[195.31906,-3.9185E-05],[195.32229,-4.2278E-05],[195.32552,-4.0732E-05],[195.32874,-3.2998E-05],[195.33197,-3.8154E-05],[195.3352,-3.9185E-05],[195.33843,-3.7638E-05],[195.34166,-3.6091E-05],[195.34488,-3.1967E-05],[195.34811,-3.7638E-05],[195.35134,-3.6091E-05],[195.35457,-3.0935E-05],[195.3578,-3.0935E-05],[195.36102,-3.0935E-05],[195.36425,-3.1451E-05],[195.36748,-3.4029E-05],[195.37071,-4.1763E-05],[195.37394,-3.9185E-05],[195.37716,-3.2482E-05],[195.38039,-3.1451E-05],[195.38362,-3.1451E-05],[195.38685,-3.506E-05],[195.39008,-3.97E-05],[195.3933,-3.6607E-05],[195.39653,-3.3513E-05],[195.39976,-3.1451E-05],[195.40299,-2.9389E-05],[195.40622,-3.506E-05],[195.40944,-3.7638E-05],[195.41267,-3.7638E-05],[195.4159,-3.8154E-05],[195.41913,-3.8154E-05],[195.42236,-3.6607E-05],[195.42558,-3.8669E-05],[195.42881,-4.3309E-05],[195.43204,-3.8154E-05],[195.43527,-3.8669E-05],[195.4385,-4.0216E-05],[195.44172,-3.6607E-05],[195.44495,-3.6091E-05],[195.44818,-3.4544E-05],[195.45141,-3.5576E-05],[195.45464,-3.506E-05],[195.45786,-3.3513E-05],[195.46109,-3.6091E-05],[195.46432,-3.8154E-05],[195.46755,-3.7122E-05],[195.47078,-3.2998E-05],[195.474,-3.7122E-05],[195.47723,-3.4029E-05]]}
-{"quant":[195.633,-0.68131],"mems":[[195.53534,-3.7122E-05],[195.53856,-3.8154E-05],[195.54179,-3.6607E-05],[195.54502,-3.97E-05],[195.54825,-3.7122E-05],[195.55148,-3.3513E-05],[195.5547,-3.9185E-05],[195.55793,-3.7638E-05],[195.56116,-3.9185E-05],[195.56439,-4.0216E-05],[195.56762,-3.3513E-05],[195.57084,-3.4029E-05],[195.57407,-3.6091E-05],[195.5773,-3.6091E-05],[195.58053,-3.8669E-05],[195.58376,-3.8154E-05],[195.58698,-3.7638E-05],[195.59021,-3.7122E-05],[195.59344,-3.5576E-05],[195.59667,-3.7638E-05],[195.5999,-3.6607E-05],[195.60312,-3.4544E-05],[195.60635,-3.2998E-05],[195.60958,-3.6091E-05],[195.61281,-4.1763E-05],[195.61604,-3.9185E-05],[195.61926,-3.4544E-05],[195.62249,-3.5576E-05],[195.62572,-3.5576E-05],[195.62895,-2.9904E-05],[195.63218,-3.0935E-05],[195.6354,-3.2998E-05],[195.63863,-3.506E-05],[195.64186,-4.0216E-05],[195.64509,-3.8669E-05],[195.64832,-3.6607E-05],[195.65154,-3.7638E-05],[195.65477,-3.97E-05],[195.658,-3.6091E-05],[195.66123,-3.5576E-05],[195.66446,-3.7638E-05],[195.66768,-3.3513E-05],[195.67091,-3.6091E-05],[195.67414,-3.9185E-05],[195.67737,-3.5576E-05],[195.6806,-3.2998E-05],[195.68382,-3.5576E-05],[195.68705,-3.8669E-05],[195.69028,-3.6091E-05],[195.69351,-4.0216E-05],[195.69674,-3.8154E-05],[195.69996,-3.2998E-05],[195.70319,-3.6091E-05],[195.70642,-3.7122E-05],[195.70965,-3.6607E-05],[195.71288,-3.4544E-05],[195.7161,-3.3513E-05],[195.71933,-3.2998E-05],[195.72256,-3.1451E-05],[195.72579,-3.5576E-05],[195.72902,-4.0216E-05],[195.73224,-3.9185E-05],[195.73547,-3.6607E-05],[195.7387,-3.4544E-05],[195.74193,-3.6607E-05],[195.74516,-3.8154E-05],[195.74838,-3.4029E-05],[195.75161,-3.1967E-05],[195.75484,-3.4544E-05],[195.75807,-3.3513E-05],[195.7613,-3.1451E-05],[195.76452,-3.6607E-05],[195.76775,-3.7638E-05],[195.77098,-3.8154E-05],[195.77421,-3.6091E-05],[195.77744,-3.1451E-05],[195.78066,-3.1451E-05],[195.78389,-3.7122E-05],[195.78712,-3.7638E-05],[195.79035,-2.8357E-05],[195.79358,-3.3513E-05],[195.7968,-3.6607E-05],[195.80003,-3.5576E-05],[195.80326,-3.9185E-05],[195.80649,-3.6607E-05],[195.80972,-3.7638E-05],[195.81294,-3.506E-05],[195.81617,-3.2482E-05],[195.8194,-3.6607E-05],[195.82263,-3.8669E-05],[195.82586,-3.97E-05],[195.82908,-3.4029E-05],[195.83231,-3.1451E-05]]}
-{"quant":[196.146,-0.69155],"mems":[[196.04859,-3.8669E-05],[196.05182,-3.5576E-05],[196.05504,-3.8669E-05],[196.05827,-3.5576E-05],[196.0615,-3.2998E-05],[196.06473,-3.4544E-05],[196.06796,-3.8154E-05],[196.07118,-3.506E-05],[196.07441,-3.4544E-05],[196.07764,-4.0732E-05],[196.08087,-3.506E-05],[196.0841,-3.2998E-05],[196.08732,-3.9185E-05],[196.09055,-3.9185E-05],[196.09378,-3.5576E-05],[196.09701,-3.2998E-05],[196.10024,-3.042E-05],[196.10346,-3.4544E-05],[196.10669,-4.1763E-05],[196.10992,-3.7638E-05],[196.11315,-3.1967E-05],[196.11638,-3.2482E-05],[196.1196,-3.6607E-05],[196.12283,-4.1247E-05],[196.12606,-3.8669E-05],[196.12929,-3.3513E-05],[196.13252,-3.2482E-05],[196.13574,-3.7638E-05],[196.13897,-3.506E-05],[196.1422,-3.4544E-05],[196.14543,-3.7638E-05],[196.14866,-3.6091E-05],[196.15188,-3.9185E-05],[196.15511,-3.3513E-05],[196.15834,-3.2482E-05],[196.16157,-3.8669E-05],[196.1648,-3.5576E-05],[196.16802,-3.8669E-05],[196.17125,-3.7122E-05],[196.17448,-3.506E-05],[196.17771,-4.1247E-05],[196.18094,-3.97E-05],[196.18416,-3.8154E-05],[196.18739,-3.7122E-05],[196.19062,-3.6091E-05],[196.19385,-3.97E-05],[196.19708,-3.97E-05],[196.2003,-3.6091E-05],[196.20353,-3.4544E-05],[196.20676,-3.1451E-05],[196.20999,-2.9389E-05],[196.21322,-3.3513E-05],[196.21644,-3.7122E-05],[196.21967,-3.7122E-05],[196.2229,-3.506E-05],[196.22613,-3.3513E-05],[196.22936,-3.2482E-05],[196.23258,-3.4029E-05],[196.23581,-3.506E-05],[196.23904,-3.2482E-05],[196.24227,-3.6091E-05],[196.2455,-3.506E-05],[196.24872,-3.2482E-05],[196.25195,-3.8154E-05],[196.25518,-3.97E-05],[196.25841,-3.6091E-05],[196.26164,-3.2482E-05],[196.26486,-3.1967E-05],[196.26809,-3.7122E-05],[196.27132,-4.0216E-05],[196.27455,-3.9185E-05],[196.27778,-3.7122E-05],[196.281,-3.2998E-05],[196.28423,-3.4029E-05],[196.28746,-3.9185E-05],[196.29069,-3.506E-05],[196.29392,-3.2482E-05],[196.29714,-3.5576E-05],[196.30037,-3.1967E-05],[196.3036,-2.9904E-05],[196.30683,-3.8669E-05],[196.31006,-3.7638E-05],[196.31328,-3.1451E-05],[196.31651,-3.3513E-05],[196.31974,-3.3513E-05],[196.32297,-3.7638E-05],[196.3262,-3.97E-05],[196.32942,-3.9185E-05],[196.33265,-3.506E-05],[196.33588,-2.8873E-05],[196.33911,-3.0935E-05],[196.34234,-3.2998E-05],[196.34556,-3.7638E-05]]}
diff --git a/Axel-hub/DATA/Re__fringes.zip b/Axel-hub/DATA/Re__fringes.zip
new file mode 100644
index 00000000..09ef1b86
Binary files /dev/null and b/Axel-hub/DATA/Re__fringes.zip differ
diff --git a/Axel-hub/DATA/probe1.sdt b/Axel-hub/DATA/probe1.sdt
new file mode 100644
index 00000000..8cf17013
--- /dev/null
+++ b/Axel-hub/DATA/probe1.sdt
@@ -0,0 +1,33 @@
+0 0.919112
+0.2 0.866324
+0.4 0.794498
+0.6 0.879789
+0.8 0.700964
+1 0.558141
+1.2 0.308483
+1.4 -0.0818986
+1.6 0.0125086
+1.8 -0.540911
+2 -0.63157
+2.2 -0.749245
+2.4 -0.810216
+2.6 -0.861384
+2.8 -0.732913
+3 -0.961609
+3.2 -1.18459
+3.4 -0.941755
+3.6 -1.17915
+3.8 -0.681956
+4 -0.53168
+4.2 -0.578235
+4.4 -0.298405
+4.6 -0.0719416
+4.8 0.148649
+5 0.293294
+5.2 0.455297
+5.4 0.785307
+5.6 0.733267
+5.8 0.743417
+6 0.874702
+6.2 0.956854
+6.4 0.936661
diff --git a/Axel-hub/Docs/config.zip b/Axel-hub/Docs/config.zip
new file mode 100644
index 00000000..5f26089c
Binary files /dev/null and b/Axel-hub/Docs/config.zip differ
diff --git a/Axel-hub/config/M2PLL_get_status b/Axel-hub/config/M2PLL_get_status
new file mode 100644
index 00000000..35fa585c
--- /dev/null
+++ b/Axel-hub/config/M2PLL_get_status
@@ -0,0 +1,24 @@
+# backup of Msquared factors
+status=0
+beat_freq=6834682000
+main_synth_freq=3400000000
+aux_synth_freq=3417341000
+aom_synth_freq=4200000000
+dds_freq=17341000
+main_synth_status=0
+aux_synth_status=0
+aom_synth_status=0
+freq_ref_source=internal
+main_lo_source=internal
+main_input_power=0
+main_input_prescaler=2
+aux_input_power=0
+aux_input_prescaler=2
+main_lock_error=0
+aux_lock_error=0
+eom_drive=0
+if_lock_error=0
+main_lock_status=off
+resonator_voltage=0
+aux_lock_status=off
+ecd_lock_status=off
\ No newline at end of file
diff --git a/Axel-hub/config/NI-6216.hw b/Axel-hub/config/NI-6216.hw
index ff573545..8f54eecb 100644
--- a/Axel-hub/config/NI-6216.hw
+++ b/Axel-hub/config/NI-6216.hw
@@ -1,5 +1,5 @@
# for now, device1 must be equal to device2
-device=Dev2
+device=Dev22
channel1=/ai1
channel2=/ai2
min=-3.5
diff --git a/Axel-hub/config/NI-9251-1.hw b/Axel-hub/config/NI-9251-1.hw
new file mode 100644
index 00000000..842c8762
--- /dev/null
+++ b/Axel-hub/config/NI-9251-1.hw
@@ -0,0 +1,7 @@
+# for now, device1 must be equal to device2
+device=cDAQ1Mod1
+channel1=/ai0
+channel2=/ai1
+min=-3.5
+max=3.5
+
diff --git a/Axel-hub/config/NI-9251-2.hw b/Axel-hub/config/NI-9251-2.hw
new file mode 100644
index 00000000..9294f6e9
--- /dev/null
+++ b/Axel-hub/config/NI-9251-2.hw
@@ -0,0 +1,7 @@
+# for now, device1 must be equal to device2
+device=cDAQ1Mod1
+channel1=/ai0
+channel2=/ai1
+min=-3.49
+max=3.49
+
diff --git a/Axel-hub/config/NI-9251.hw b/Axel-hub/config/NI-9251.hw
index 33387137..842c8762 100644
--- a/Axel-hub/config/NI-9251.hw
+++ b/Axel-hub/config/NI-9251.hw
@@ -1,5 +1,5 @@
# for now, device1 must be equal to device2
-device=cDAQ1Mod1_2
+device=cDAQ1Mod1
channel1=/ai0
channel2=/ai1
min=-3.5
diff --git a/Axel-hub/config/Optim.CFG.arch b/Axel-hub/config/Optim.CFG.arch
new file mode 100644
index 00000000..210ac54a
--- /dev/null
+++ b/Axel-hub/config/Optim.CFG.arch
@@ -0,0 +1 @@
+{"sParams":[{"Enabled":true,"sParam":"DetFreq","sFrom":-8.0,"sTo":8.0,"sBy":1.0,"Value":2.0,"comment":"---"},{"Enabled":true,"sParam":"DetAttn","sFrom":-12.0,"sTo":9.0,"sBy":1.0,"Value":0.0,"comment":"---"},{"Enabled":true,"sParam":"3DCoil","sFrom":-10.0,"sTo":10.0,"sBy":1.0,"Value":-2.0,"comment":"---"}],"cost":"1-2*(N2-B2)/(NTot-BTot) #default asymmetry","convOpts":{"ConvPrec":1.001},"procOpts":[{"numSGdegree":2.0,"numSGframe":5.0,"numIters":2.0,"moduleIdx":0.0},{"numSGdegree":2.0,"numSGframe":5.0,"numZRmin":-50.0,"numZRmax":200.0,"moduleIdx":1.0},{"moduleIdx":2.0}]}
\ No newline at end of file
diff --git a/Axel-hub/config/genOptions.cfg b/Axel-hub/config/genOptions.cfg
index 70268750..0496cb47 100644
--- a/Axel-hub/config/genOptions.cfg
+++ b/Axel-hub/config/genOptions.cfg
@@ -1 +1 @@
-{"saveModes":0,"AxesChannels":0,"SignalCursorPrec":"G2","SignalTablePrec":"G5","SaveFilePrec":"G8","LogFilePrec":"G7","intN2":true,"saveVisuals":true,"followPID":true,"TrendSignalLen":500,"RawSignalAvg":1,"JumboScan":true,"JumboRepeat":true,"MemsInJumbo":false,"ShowMemsIfRunning":true,"Mems2SignDelay":0.0,"Mems2SignLen":100.0,"TemperatureEnabled":false,"TemperatureCompensation":false,"MemsHw":"NI-9251","TemperatureHw":"NI-6216"}
\ No newline at end of file
+{"saveModes":0,"memsInJumbo":2,"AxesChannels":0,"SignalCursorPrec":"G5","SignalTablePrec":"G5","SaveFilePrec":"G8","LogFilePrec":"G7","intN2":false,"saveVisuals":true,"Diagnostics":false,"followPID":true,"logJoin":true,"logRawJdt":true,"TrendSignalLen":200,"RawSignalAvg":1,"JumboScan":true,"JumboRepeat":true,"ShowMemsIfRunning":true,"Mems2SignDelay":0.0,"Mems2SignLen":49.999999999999993,"Mems2SignLenMult":3,"Mems2ExtInfCap":2.5,"MemsAverOver":10,"TemperatureEnabled":false,"TemperatureCompensation":false,"MemsHw":"NI-9251-1","TemperatureHw":"NI-9251-2"}
\ No newline at end of file
diff --git a/Axel-hub/config/6001.hw b/Axel-hub/config/old/6001.hw
similarity index 100%
rename from Axel-hub/config/6001.hw
rename to Axel-hub/config/old/6001.hw
diff --git a/Axel-hub/config/9251.hw b/Axel-hub/config/old/9251.hw
similarity index 64%
rename from Axel-hub/config/9251.hw
rename to Axel-hub/config/old/9251.hw
index 3b2d3113..eaccef37 100644
--- a/Axel-hub/config/9251.hw
+++ b/Axel-hub/config/old/9251.hw
@@ -1,6 +1,6 @@
# for now, device1 must be equal to device2
-device1=cDAQ1Mod1_2
+device1=cDAQ1Mod1_1
channel1=/ai1
-device2=cDAQ1Mod1_2
+device2=cDAQ1Mod1_1
channel2=/ai0
diff --git a/Axel-probe/Axel-probe/Axel-probe.csproj b/Axel-probe/Axel-probe/Axel-probe.csproj
index f448f117..7fc4882a 100644
--- a/Axel-probe/Axel-probe/Axel-probe.csproj
+++ b/Axel-probe/Axel-probe/Axel-probe.csproj
@@ -50,18 +50,30 @@
4
- Properties\dashboard_widgets_speed_fs7_icon.ico
+ probe3.ico
-
-
-
-
-
-
-
+
+ False
+
+
+ False
+
+
+ False
+
+
+ False
+
+
+ False
+
+
+ False
+
+
False
- ..\..\packages\Newtonsoft.Json.dll
+ ..\..\..\Utils\packages\Newtonsoft.Json.13.0.1\lib\net45\Newtonsoft.Json.dll
@@ -71,6 +83,11 @@
+
+
+ False
+ C:\Program Files (x86)\Microsoft Visual Studio 12.0\Data\system.threading.tasks.dataflow.dll
+
@@ -79,10 +96,6 @@
4.0
-
- False
- ..\..\Utils\bin\UtilsLib.dll
-
@@ -96,6 +109,12 @@
MSBuild:Compile
Designer
+
+ RemoteMessaging.cs
+
+
+ UtilsLib.cs
+
App.xaml
Code
@@ -126,6 +145,7 @@
ResXFileCodeGenerator
Resources.Designer.cs
+
SettingsSingleFileGenerator
Settings.Designer.cs
@@ -135,9 +155,6 @@
-
-
-
False
@@ -155,6 +172,12 @@
false
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Headerer/Program.cs b/Headerer/Program.cs
new file mode 100644
index 00000000..eeb1f4c3
--- /dev/null
+++ b/Headerer/Program.cs
@@ -0,0 +1,39 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+using System.IO;
+using UtilsNS;
+
+namespace Headerer
+{
+ class Program
+ {
+ static void Main(string[] args)
+ {
+ Console.WriteLine("Extract headers of *.asf files in current folder");
+ string dr = Directory.GetParent(Environment.GetCommandLineArgs()[0]).FullName+@"\";
+ Console.WriteLine("-> "+dr);
+ Console.WriteLine("=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
+ Console.WriteLine("");
+ string[] fls = Directory.GetFiles(dr,"*.ahs");
+ foreach (string fl in fls)
+ {
+ Console.WriteLine(fl);
+ List ls = Utils.readList(fl,false);
+ List lt = new List();
+ foreach (string ln in ls)
+ {
+ if (ln.Length.Equals(0)) continue;
+ if (ln[0].Equals('#'))
+ lt.Add(ln.Remove(0, 1));
+ }
+ Utils.writeList(Path.ChangeExtension(fl,".ahh"), lt);
+ }
+ Console.WriteLine("");
+ Console.WriteLine("press any key to close");
+ Console.ReadKey();
+ }
+ }
+}
diff --git a/Utils/Properties/AssemblyInfo.cs b/Headerer/Properties/AssemblyInfo.cs
similarity index 85%
rename from Utils/Properties/AssemblyInfo.cs
rename to Headerer/Properties/AssemblyInfo.cs
index 44461111..e18b64c1 100644
--- a/Utils/Properties/AssemblyInfo.cs
+++ b/Headerer/Properties/AssemblyInfo.cs
@@ -5,12 +5,12 @@
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
-[assembly: AssemblyTitle("ClassLibrary1")]
+[assembly: AssemblyTitle("Headerer")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("HP Inc.")]
-[assembly: AssemblyProduct("ClassLibrary1")]
-[assembly: AssemblyCopyright("Copyright © HP Inc. 2017")]
+[assembly: AssemblyProduct("Headerer")]
+[assembly: AssemblyCopyright("Copyright © HP Inc. 2020")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
@@ -20,7 +20,7 @@
[assembly: ComVisible(false)]
// The following GUID is for the ID of the typelib if this project is exposed to COM
-[assembly: Guid("7b13c9e0-d047-47c5-9da7-a3ec74c46d8d")]
+[assembly: Guid("c734032d-66c8-4422-b6b9-ec74bbbda531")]
// Version information for an assembly consists of the following four values:
//
diff --git a/Utils/Docs/refman.pdf b/Utils/Docs/refman.pdf
deleted file mode 100644
index 10f9e875..00000000
Binary files a/Utils/Docs/refman.pdf and /dev/null differ
diff --git a/Utils/Properties/licenses.licx b/Utils/Properties/licenses.licx
deleted file mode 100644
index 1991fe8f..00000000
--- a/Utils/Properties/licenses.licx
+++ /dev/null
@@ -1,7 +0,0 @@
-# The following section of this file was auto-generated by Measurement Studio. Do not edit or remove this file from the project.
-# This file is used for licensing Measurement Studio components.
-# Begin Measurement Studio licenses
-NationalInstruments.Controls.Internal.WpfEnterpriseLicenser, NationalInstruments.Controls, Version=15.0.45.3898, Culture=neutral, PublicKeyToken=4febd62461bf11a4
-NationalInstruments.Controls.Internal.WpfProfessionalLicenser, NationalInstruments.Controls, Version=15.0.45.3898, Culture=neutral, PublicKeyToken=4febd62461bf11a4
-NationalInstruments.Controls.Internal.WpfStandardLicenser, NationalInstruments.Controls, Version=15.0.45.3898, Culture=neutral, PublicKeyToken=4febd62461bf11a4
-# End Measurement Studio licenses
diff --git a/Utils/RemoteMessaging.cs b/Utils/RemoteMessaging.cs
deleted file mode 100644
index 70fe1305..00000000
--- a/Utils/RemoteMessaging.cs
+++ /dev/null
@@ -1,678 +0,0 @@
-using System;
-using System.Windows;
-using System.Collections.Generic;
-using System.Linq;
-using System.Text;
-using System.Timers;
-using System.Threading;
-using System.Threading.Tasks;
-using System.Windows.Threading;
-using System.Diagnostics;
-using System.Windows.Interop;
-using System.Runtime.InteropServices;
-using Newtonsoft.Json;
-
-namespace UtilsNS
-{
- ///
- /// In memory meassage log - mostly for debug
- ///
- public class memLog: List
- {
- public bool Enabled = true;
- private int bufferLimit;
- public memLog(int depth = 32): base()
- {
- bufferLimit = depth;
- }
- public void log(string txt)
- {
- if (!Enabled) return;
- Add(txt);
- while (Count > bufferLimit) RemoveAt(0);
- }
- }
-
- ///
- /// Messaging service using Windows messages (quickest way possible)
- ///
- public class RemoteMessaging
- {
- public string partner { get; private set; }
- public bool silentPartner { get; set; }
- private IntPtr windowHandle;
- public string lastRcvMsg { get; private set; }
- public string lastSndMsg { get; private set; }
- public memLog Log;
- public Stopwatch stopwatch;
-
- public DispatcherTimer dTimer, sTimer;
- private int _autoCheckPeriod = 10; // sec
- public int autoCheckPeriod
- {
- get { return _autoCheckPeriod; }
- set { _autoCheckPeriod = value; dTimer.Interval = new TimeSpan(0, 0, _autoCheckPeriod); }
- }
-
- public bool Enabled = true;
- public int keyID { get; private set; }
- public bool Connected { get; private set; } // only for status purposes
- public bool partnerPresent
- {
- get
- {
- IntPtr hTargetWnd = NativeMethod.FindWindow(null, partner);
- return (hTargetWnd != IntPtr.Zero);
- }
- }
-
- ///
- /// Establish communication channel
- ///
- /// The title (caption) of the application
- /// Similar to port - one app can have more than one channel with diff. keyID
- public RemoteMessaging(string Partner, int _keyID = 666)
- {
- partner = Partner; keyID = _keyID; silentPartner = false;
- windowHandle = new WindowInteropHelper(Application.Current.MainWindow).Handle;
- HwndSource hwndSource = HwndSource.FromHwnd(windowHandle);
- hwndSource.AddHook(new HwndSourceHook(WndProc));
-
- Log = new memLog(); Log.Enabled = true; // for debug use
- lastRcvMsg = ""; lastSndMsg = "";
-
- dTimer = new DispatcherTimer();
- dTimer.Tick += new EventHandler(dTimer_Tick);
- dTimer.Interval = new TimeSpan(0, 0, autoCheckPeriod);
- dTimer.Start();
-
- sTimer = new DispatcherTimer(DispatcherPriority.Send);
- sTimer.Tick += new EventHandler(sTimer_Tick);
- sTimer.Interval = new TimeSpan(0, 0, 0, 0, 100);
-
- stopwatch = new Stopwatch();
- }
- private void ResetTimer()
- {
- dTimer.Stop();
- if (Enabled) dTimer.Start();
- }
- ///
- /// Check regularly for connection status
- ///
- ///
- ///
- private void dTimer_Tick(object sender, EventArgs e)
- {
- //if (!Enabled) return;
- CheckConnection(); //Console.WriteLine("Warning: the partner <"+partner+"> is not responsive!");
- //else Console.WriteLine("Info: the partner <" + partner + "> is responsive.");
-
- // Forcing the CommandManager to raise the RequerySuggested event
- System.Windows.Input.CommandManager.InvalidateRequerySuggested();
- }
-
- ///
- /// Precise timer for accurate time stamps
- ///
- ///
- public double elapsedTime() // [s]
- {
- if (stopwatch.IsRunning) return stopwatch.ElapsedTicks / 10000000.0;
- else return -1;
- }
-
- ///
- /// Synchronizing stopwatches of two apps with precision less than 15us - Important for time sensitive measurements !
- ///
- ///
- ///
- public bool synchroClock(bool force = false) // if !force and stopwatch is running, go out
- // which means that the stopwatch has been started by the other side, or beforehand
- {
- if (!force && stopwatch.IsRunning) return true;
- if (!sendCommand("SynchroClock",5)) throw new Exception("SynchroClock has not been accepted");
- Utils.DoEvents(); Thread.Sleep(50);
- try
- {
- EventWaitHandle handle = new EventWaitHandle(
- false, /* Parameter ignored since handle already exists.*/
- EventResetMode.ManualReset, /* Explained below. */
- "SynchroClock" /* String defined in a shared assembly. */
- );
- handle.Set();
- stopwatch.Restart();
- Console.WriteLine("Synchro stopwatches. (sender) at "+DateTime.Now.ToLongTimeString());
- }
- catch (Exception e)
- {
- Console.WriteLine("{0} Exception caught.", e);
- return false;
- }
- return true;
- }
-
- public delegate bool ReceiveHandler(string msg);
- public event ReceiveHandler OnReceive;
- ///
- /// Receive message
- ///
- ///
- ///
- protected bool Receive(string msg)
- {
- if (OnReceive != null) return OnReceive(msg);
- else return false;
- }
-
- public delegate void ActiveCommHandler(bool active, bool forced);
- public event ActiveCommHandler OnActiveComm;
- ///
- /// When the channel opens/closes
- ///
- ///
- ///
- protected void ActiveComm(bool active, bool forced)
- {
- Connected = active;
- if (OnActiveComm != null) OnActiveComm(active, forced);
- }
-
- ///
- /// The wrapper around the actual Windows messaging receive part
- ///
- ///
- ///
- ///
- ///
- ///
- ///
- private IntPtr WndProc(IntPtr hwnd, int msg, IntPtr wParam, IntPtr lParam, ref bool handled) // receive
- {
- if ((msg == WM_COPYDATA) && Enabled)
- {
- COPYDATASTRUCT cds = (COPYDATASTRUCT)Marshal.PtrToStructure(lParam, (typeof(COPYDATASTRUCT)));
- if (cds.cbData == Marshal.SizeOf(typeof(MyStruct)))
- {
- MyStruct myStruct = (MyStruct)Marshal.PtrToStructure(cds.lpData, typeof(MyStruct));
- int msgID = myStruct.Number;
- if (msgID == keyID)
- {
- lastRcvMsg = myStruct.Message;
- Log.log("R: " + lastRcvMsg);
- ResetTimer();
- switch (lastRcvMsg)
- {
- case("ping"):
- handled = sendCommand("pong");
- if (lastConnection != handled) OnActiveComm(handled, false); // fire only if the state has been changed
- lastConnection = handled; Connected = handled;
- break;
- case("pong"):
- handled = true;
- break;
- case("SynchroClock"):
- try
- {
- EventWaitHandle handle = new EventWaitHandle(
- false, /* nonsignaled state.*/
- EventResetMode.ManualReset, /* it has to be reset for reuse. */
- "SynchroClock" /* String defined in a shared assembly. */
- );
- if (!handle.WaitOne(2000))
- {
- stopwatch.Restart();
- Console.WriteLine("Synchro stopwatches. (receiver) at " + DateTime.Now.ToLongTimeString()); //UtilsNS.Utils.TimedMessageBox
- }
- else UtilsNS.Utils.TimedMessageBox("Unsuccessful attempt to sdynchronize stopwatches!");
- }
- catch (Exception e)
- {
- Console.WriteLine("{0} Exception caught.", e);
- handled = false;
- return hwnd;
- }
- handled = true;
- break;
- default:handled = OnReceive(lastRcvMsg); // the command systax is OK
- break;
- }
- }
- else handled = false;
- }
- }
- return hwnd;
- }
-
- private string json2send = "";
- private bool lastSentOK = true;
- ///
- /// Untangled by timer sending procedure
- ///
- ///
- ///
- private void sTimer_Tick(object sender, EventArgs e)
- {
- sTimer.Stop();
- if (json2send == "") throw new Exception("no message to be sent");
- lastSentOK = sendCommand(json2send);
- AsyncSent(lastSentOK,json2send);
- }
-
- public delegate void AsyncSentHandler(bool OK, string json2send);
- public event AsyncSentHandler OnAsyncSent;
- protected void AsyncSent(bool OK, string json2send)
- {
- if (OnAsyncSent != null) OnAsyncSent(OK, json2send);
- }
-
- ///
- /// The wrapper around the Windows messaging send part
- ///
- ///
- ///
- ///
- public bool sendCommand(string msg, int delay = 0) // [ms]
- {
- if (!Enabled) return false;
- if (delay > 0)
- {
- sTimer.Interval = new TimeSpan(delay*10000);
- json2send = msg;
- sTimer.Start();
- return true;
- }
-
- // Find the target window handle.
- IntPtr hTargetWnd = NativeMethod.FindWindow(null, partner);
- if (hTargetWnd == IntPtr.Zero)
- {
- Console.WriteLine("Unable to find the "+partner +" window");
- return false;
- }
-
- // Prepare the COPYDATASTRUCT struct with the data to be sent.
- MyStruct myStruct;
-
- myStruct.Number = keyID;
- myStruct.Message = msg;
-
- // Marshal the managed struct to a native block of memory.
- int myStructSize = Marshal.SizeOf(myStruct);
- IntPtr pMyStruct = Marshal.AllocHGlobal(myStructSize);
- try
- {
- Marshal.StructureToPtr(myStruct, pMyStruct, true);
-
- COPYDATASTRUCT cds = new COPYDATASTRUCT();
- cds.cbData = myStructSize;
- cds.lpData = pMyStruct;
-
- // Send the COPYDATASTRUCT struct through the WM_COPYDATA message to
- // the receiving window. (The application must use SendMessage,
- // instead of PostMessage to send WM_COPYDATA because the receiving
- // application must accept while it is guaranteed to be valid.)
- NativeMethod.SendMessage(hTargetWnd, WM_COPYDATA, windowHandle, ref cds);
-
- int result = Marshal.GetLastWin32Error();
- if (result != 0)
- {
- Console.WriteLine(String.Format("SendMessage(WM_COPYDATA) failed w/err 0x{0:X}", result));
- return false;
- }
- else
- {
- lastSndMsg = msg; Log.log("S: " + lastSndMsg);
- ResetTimer();
- }
- return true;
- }
- catch (Exception e)
- {
- Console.WriteLine("SendMessage(WM_COPYDATA) failed w/err: "+ e.Message);
- return false;
- }
- finally
- {
- Marshal.FreeHGlobal(pMyStruct);
- }
- }
-
- private bool lastConnection = false;
- ///
- /// ping<->pong to check the connection
- ///
- ///
- ///
- public bool CheckConnection(bool forced = false)
- {
- if (!Enabled)
- {
- OnActiveComm(false, forced);
- Connected = false;
- return false;
- }
- lastRcvMsg = "";
- bool back = sendCommand("ping");
- if (back)
- {
- for (int i = 0; i < 200; i++)
- {
- if (lastRcvMsg.Equals("pong")) break;
- Thread.Sleep(10);
- }
- }
- back = back && (lastRcvMsg.Equals("pong"));
- if ((lastConnection != back) || forced) OnActiveComm(back, forced); // fire only if the state has been changed
- lastConnection = back; Connected = back;
- return back;
- }
-
- [StructLayout(LayoutKind.Sequential, CharSet = CharSet.Unicode)]
- internal struct MyStruct
- {
- public int Number;
-
- [MarshalAs(UnmanagedType.ByValTStr , SizeConst = 1048576)]
- public string Message;
- }
-
- #region Native API Signatures and Types
-
- ///
- /// An application sends the WM_COPYDATA message to pass data to another
- /// application.
- ///
- internal const int WM_COPYDATA = 0x004A;
-
- ///
- /// The COPYDATASTRUCT structure contains data to be passed to another
- /// application by the WM_COPYDATA message.
- ///
- [StructLayout(LayoutKind.Sequential)]
- internal struct COPYDATASTRUCT
- {
- public IntPtr dwData; // Specifies data to be passed
- public int cbData; // Specifies the data size in bytes
- public IntPtr lpData; // Pointer to data to be passed
- }
-
- internal class NativeMethod
- {
- ///
- /// Sends the specified message to a window or windows. The SendMessage
- /// function calls the window procedure for the specified window and does
- /// not return until the window procedure has processed the message.
- ///
- ///
- /// Handle to the window whose window procedure will receive the message.
- ///
- /// Specifies the message to be sent.
- ///
- /// Specifies additional message-specific information.
- ///
- ///
- /// Specifies additional message-specific information.
- ///
- ///
- [DllImport("user32.dll", CharSet = CharSet.Auto, SetLastError = true)]
- public static extern IntPtr SendMessage(IntPtr hWnd, int Msg,
- IntPtr wParam, ref COPYDATASTRUCT lParam);
-
-
- ///
- /// The FindWindow function retrieves a handle to the top-level window
- /// whose class name and window name match the specified strings. This
- /// function does not search child windows. This function does not
- /// perform a case-sensitive search.
- ///
- /// Class name
- /// Window caption
- ///
- [DllImport("user32.dll", CharSet = CharSet.Auto, SetLastError = true)]
- public static extern IntPtr FindWindow(string lpClassName, string lpWindowName);
- }
- #endregion
- }
-
- ///
- /// Class encapsulating one formated by "Book of JaSON" message
- ///
- public class MMexec
- {
- Random rnd = new Random();
- public string mmexec { get; set; }
- public string sender { get; set; }
- public string cmd { get; set; }
- public int id { get; set; }
- public Dictionary prms;
-
- ///
- /// Class constructor
- ///
- ///
- ///
- ///
- ///
- public MMexec(string Caption = "", string Sender = "", string Command = "", int ID = -1)
- {
- mmexec = Caption;
- sender = Sender;
- cmd = Command;
- if (ID == -1) id = rnd.Next(int.MaxValue);
- else id = ID;
- prms = new Dictionary();
- }
- ///
- /// Clean all up
- ///
- public void Clear()
- {
- mmexec = "";
- sender = "";
- cmd = "";
- id = -1;
- prms.Clear();
- }
- ///
- /// Assign src to this
- ///
- ///
- public void Assign(MMexec src)
- {
- mmexec = src.mmexec;
- sender = src.sender;
- cmd = src.cmd;
- id = src.id;
- prms = new Dictionary(src.prms);
- }
- ///
- /// Clone this - copy all the props to a new instance
- ///
- ///
- public MMexec Clone()
- {
- MMexec mm = new MMexec();
- mm.mmexec = mmexec;
- mm.sender = sender;
- mm.cmd = cmd;
- mm.id = id;
- mm.prms = new Dictionary(prms);
- return mm;
- }
-
- ///
- /// Standard Abort (Cancel) message
- ///
- ///
- ///
- public string Abort(string Sender = "")
- {
- cmd = "abort";
- mmexec = "abort!Abort!ABORT!";
- if (!Sender.Equals("")) sender = Sender;
- prms.Clear();
- return JsonConvert.SerializeObject(this);
- }
- }
-
- ///
- /// Properties part of MMscan
- ///
- public class baseMMscan
- {
- public string sParam { get; set; }
- public double sFrom { get; set; }
- public double sTo { get; set; }
- public double sBy { get; set; }
- public double Value { get; set; }
-
- public string getAsString()
- {
- return sParam + " \t" + sFrom.ToString("G6") + " .. " + sTo.ToString("G6") + "; " + sBy.ToString("G6");
- }
- }
-
- ///
- /// Class encapsulating a scan of a parameter
- ///
- public class MMscan : baseMMscan
- {
- public string groupID { get; set; }
-
- public MMscan(string _groupID = "", string _sParam = "", double _sFrom = double.NaN, double _sTo = double.NaN, double _sBy = double.NaN, double _Value = double.NaN)
- {
- groupID = _groupID; sParam = _sParam; sFrom = _sFrom; sTo = _sTo; sBy = _sBy; Value = _Value;
- }
- public bool Check()
- {
- if ((sFrom == sTo) || (sBy == 0) || (Math.Abs(sBy) > Math.Abs(sTo - sFrom))) return false;
- if ((sBy > 0) && (sFrom > sTo)) return false;
- if ((sBy < 0) && (sFrom < sTo)) return false;
- return true;
- }
-
- public bool isFirstValue()
- {
- return Math.Abs(sFrom - Value) < (0.01 * sBy);
- }
-
- public bool isLastValue()
- {
- return (Math.Abs(sTo - Value)) < (0.99 * sBy);
- }
-
- public MMscan NextInChain = null;
- ///
- /// The main call when scan,
- /// it works multiscan (chain by NextInChain of scans) mode
- /// The latter uses recursive (on class level) call the same Next down the chain
- ///
- ///
- public bool Next()
- {
- bool NextValue = false;
- if (NextInChain != null)
- {
- NextValue = NextInChain.Next();
- }
- if (NextValue) return true;
- else
- {
- Value += sBy;
- if (Value > sTo)
- {
- Value = sFrom;
- return false;
- }
- else return true;
- }
- }
-
- ///
- /// Package / unpackage the scan params as string
- ///
- public string AsString
- {
- get { return getAsString(); }
- set
- {
- if (value == null) return;
- if (value == "")
- {
- TestInit(); return;
- }
- string[] parts = value.Split('\t'); sParam = parts[0].TrimEnd(' ');
- string ss = parts[1]; int j = ss.IndexOf(".."); if (j == -1) return;
- parts[0] = ss.Substring(0, j); parts[1] = ss.Substring(j + 2);
- sFrom = Convert.ToDouble(parts[0]);
- parts = parts[1].Split(';'); sTo = Convert.ToDouble(parts[0]);
- sBy = Convert.ToDouble(parts[1]);
- }
- }
- ///
- /// Assign src to this
- ///
- ///
- public void Assign(MMscan src)
- {
- groupID = src.groupID; sParam = src.sParam; sFrom = src.sFrom; sTo = src.sTo; sBy = src.sBy; Value = src.Value;
- }
- ///
- /// Clone this - copy all the props to a new instance
- ///
- ///
- public MMscan Clone()
- {
- return new MMscan(groupID, sParam, sFrom, sTo, sBy, Value);
- }
-
- ///
- /// Fill in something - only for tests
- ///
- public void TestInit()
- {
- groupID = DateTime.Now.ToString("yy-MM-dd_H-mm-ss");
- sParam = "prm";
- sFrom = 0;
- sTo = 4 * 3.14;
- sBy = 0.1;
- }
- ///
- /// Fill in dictionary with props
- ///
- ///
- public void ToDictionary(ref Dictionary dict)
- {
- if (dict == null) dict = new Dictionary();
- dict["groupID"] = groupID;
- dict["param"] = sParam;
- dict["from"] = sFrom;
- dict["to"] = sTo;
- dict["by"] = sBy;
- }
- ///
- /// Update props from a dictionary
- ///
- ///
- ///
- public bool FromDictionary(Dictionary dict)
- {
- if (!string.IsNullOrEmpty((string)dict["groupID"])) groupID = (string)dict["groupID"];
- else return false;
- if (!string.IsNullOrEmpty((string)dict["param"])) sParam = (string)dict["param"];
- else return false;
- try
- {
- sFrom = (double)dict["from"];
- sTo = (double)dict["to"];
- sBy = (double)dict["by"];
- }
- catch (InvalidCastException e)
- {
- return false;
- }
- return true;
- }
- }
-}
diff --git a/Utils/UtilsLib.cs b/Utils/UtilsLib.cs
deleted file mode 100644
index 8a4e9641..00000000
--- a/Utils/UtilsLib.cs
+++ /dev/null
@@ -1,972 +0,0 @@
-using System;
-using System.Windows;
-using System.Windows.Input;
-using System.Windows.Threading;
-using System.Windows.Media;
-using System.Windows.Media.Imaging;
-using System.Windows.Controls;
-using System.Windows.Documents;
-using System.Collections.Generic;
-using System.Runtime.InteropServices;
-using System.IO;
-using System.Threading;
-using System.Threading.Tasks;
-using System.Diagnostics;
-using System.Threading.Tasks.Dataflow;
-using System.Deployment.Application;
-using System.Reflection;
-using NationalInstruments.Controls;
-using Newtonsoft.Json;
-using Newtonsoft.Json.Converters;
-
-
-namespace UtilsNS
-{
- public static class Utils
- {
- static Random rand = new Random();
- ///
- /// ProcessMessages of the visual components
- ///
- ///
- public static void DoEvents(DispatcherPriority dp = DispatcherPriority.Background)
- {
- DispatcherFrame frame = new DispatcherFrame();
- Dispatcher.CurrentDispatcher.BeginInvoke(dp,
- new DispatcherOperationCallback(ExitFrame), frame);
- Dispatcher.PushFrame(frame);
- }
- public static object ExitFrame(object f)
- {
- ((DispatcherFrame)f).Continue = false;
- return null;
- }
-
- ///
- /// The developer computer. It shouldn't matter, but still..
- ///
- ///
- public static bool TheosComputer()
- {
- return (string)System.Environment.GetEnvironmentVariables()["COMPUTERNAME"] == "DESKTOP-U334RMA";
- }
-
- ///
- /// Get the app version from Project properties -> Assembly Information
- ///
- ///
- public static string getRunningVersion()
- {
- return System.Diagnostics.FileVersionInfo.GetVersionInfo(System.Environment.GetCommandLineArgs()[0]).ToString();
- //System.Reflection.Assembly.GetExecutingAssembly().Location; //Assembly.GetExecutingAssembly().Location
- }
-
- ///
- /// The proper way to check if object is null
- ///
- ///
- ///
- public static bool isNull(System.Object o)
- {
- return object.ReferenceEquals(null, o);
- }
-
- ///
- /// Write in log to rich-text-box
- ///
- /// The target rich-text-box
- /// the actual text to log
- /// color
- public static void log(RichTextBox richText, string txt, Color? clr = null)
- {
- Color ForeColor = clr.GetValueOrDefault(Brushes.Black.Color);
- Application.Current.Dispatcher.BeginInvoke( DispatcherPriority.Background,
- new Action(() =>
- {
- TextRange rangeOfText1 = new TextRange(richText.Document.ContentStart, richText.Document.ContentEnd);
- string tx = rangeOfText1.Text;
- int len = tx.Length; int maxLen = 10000; // the number of chars kept
- if (len > (2 * maxLen)) // when it exceeds twice the maxLen
- {
- tx = tx.Substring(maxLen);
- var paragraph = new Paragraph();
- paragraph.Inlines.Add(new Run(tx));
- richText.Document.Blocks.Clear();
- richText.Document.Blocks.Add(paragraph);
- }
- rangeOfText1 = new TextRange(richText.Document.ContentEnd, richText.Document.ContentEnd);
- rangeOfText1.Text = Utils.RemoveLineEndings(txt) + "\r";
- rangeOfText1.ApplyPropertyValue(TextElement.ForegroundProperty, new System.Windows.Media.SolidColorBrush(ForeColor));
- richText.ScrollToEnd();
- }));
- }
-
- ///
- /// Write in log to text-box
- ///
- /// The target text-box
- /// the actual text to log
- public static void log(TextBox tbLog, string txt)
- {
- tbLog.AppendText(txt + "\r\n");
- string text = tbLog.Text;
- int maxLen = 10000;
- if (text.Length > 2 * maxLen) tbLog.Text = text.Substring(maxLen);
- tbLog.Focus();
- tbLog.CaretIndex = tbLog.Text.Length;
- tbLog.ScrollToEnd();
- }
-
- ///
- /// If the name for file to save is unknown, make-up one as date-time stamp
- ///
- ///
- ///
- public static string timeName(string prefix = "")
- {
- if (prefix.Equals("")) return DateTime.Now.ToString("yy-MM-dd_H-mm-ss");
- else return DateTime.Now.ToString("yy-MM-dd_H-mm-ss") + "_" + prefix;
- }
-
- public static void copyGraphToClipboard(Graph gr)
- {
- Rect bounds; RenderTargetBitmap bitmap;
- bounds = System.Windows.Controls.Primitives.LayoutInformation.GetLayoutSlot(gr);
- bitmap = new RenderTargetBitmap((int)bounds.Width, (int)bounds.Height, 96, 96, PixelFormats.Pbgra32);
- bitmap.Render(gr);
- Clipboard.SetImage(bitmap);
- Utils.TimedMessageBox("The image is in the clipboard");
- }
-
- ///
- /// Read text file in List of string
- ///
- /// The text file
- /// If to skip # and empty lines
- ///
- public static List readList(string filename, bool skipRem = true)
- {
- List ls = new List();
- foreach (string line in File.ReadLines(filename))
- {
- if(skipRem)
- {
- if (line.Equals("")) continue;
- if (line[0].Equals('#')) continue;
- }
- ls.Add(line);
- }
- return ls;
- }
-
- ///
- /// Write down in a text file a List of string
- ///
- /// yes, you guessed right...
- /// The list in question
- public static void writeList(string filename, List ls)
- {
- File.WriteAllLines(filename, ls.ToArray());
- }
-
- ///
- /// Read text file in Dictionary of string, string
- ///
- ///
- /// If to skip # and empty lines
- ///
- public static Dictionary readDict(string filename, bool skipRem = true)
- {
- Dictionary dict = new Dictionary();
- if (!File.Exists(filename))
- {
- Utils.TimedMessageBox("File not found: " + filename); return dict;
- }
- List ls = new List();
- foreach (string line in File.ReadLines(filename))
- {
- if (skipRem)
- {
- if (line.Equals("")) continue;
- if (line[0].Equals('#')) continue;
- }
- string[] sb = line.Split('=');
- if (sb.Length != 2) break;
- dict[sb[0]] = sb[1];
- }
- return dict;
- }
-
- ///
- /// Write dictionary(string,string) in key=value format
- ///
- ///
- ///
- public static void writeDict(string filename, Dictionary dict)
- {
- List ls = new List();
- foreach (var pair in dict)
- {
- ls.Add(pair.Key + "=" + pair.Value);
- }
- File.WriteAllLines(filename, ls.ToArray());
- }
-
- ///
- /// Restrict Value to MinValue and MaxValue (double)
- ///
- ///
- ///
- ///
- ///
- public static double EnsureRange(double Value, double MinValue, double MaxValue)
- {
- if (Value < MinValue) return MinValue;
- if (Value > MaxValue) return MaxValue;
- return Value;
- }
- ///
- /// Restrict Value to MinValue and MaxValue (int)
- ///
- ///
- ///
- ///
- ///
- public static int EnsureRange(int Value, int MinValue, int MaxValue)
- {
- if (Value < MinValue) return MinValue;
- if (Value > MaxValue) return MaxValue;
- return Value;
- }
- ///
- /// Check if Value is in range[MinValue..MaxValue] (double)
- ///
- ///
- ///
- ///
- ///
- public static bool InRange(double Value, double MinValue, double MaxValue)
- {
- return ((MinValue <= Value) && (Value <= MaxValue));
- }
- ///
- /// Check if Value is in range[MinValue..MaxValue] (int)
- ///
- ///
- ///
- ///
- public static bool InRange(int Value, int MinValue, int MaxValue)
- {
- return ((MinValue <= Value) && (Value <= MaxValue));
- }
-
- ///
- /// Convert string to bool with default value if cannot
- ///
- ///
- ///
- ///
- public static bool Convert2BoolDef(string value, bool defaultValue = false)
- {
- bool result;
- return bool.TryParse(value, out result) ? result : defaultValue;
- }
- ///
- /// Convert string to int with default value if cannot
- ///
- ///
- ///
- ///
- public static int Convert2IntDef(string value, int defaultValue = 0)
- {
- int result;
- return int.TryParse(value, out result) ? result : defaultValue;
- }
- ///
- /// Convert string to double with default value if cannot
- ///
- ///
- ///
- ///
- public static double Convert2DoubleDef(string value, double defaultValue = 0)
- {
- double result;
- return double.TryParse(value, out result) ? result : defaultValue;
- }
-
- ///
- /// Random normaly distributed (mean:0 stDev:1) value
- ///
- /// random value
- public static double Gauss01()
- {
- double u1 = 1.0 - rand.NextDouble(); //uniform(0,1] random doubles
- double u2 = 1.0 - rand.NextDouble();
- double randStdNormal = Math.Sqrt(-2.0 * Math.Log(u1)) *
- Math.Sin(2.0 * Math.PI * u2);
- return randStdNormal;
- }
-
- ///
- /// Error outlet if no visual logs available
- ///
- ///
- public static void errorMessage(string errorMsg)
- {
- Console.WriteLine("Error: " + errorMsg);
- }
-
- ///
- /// Format double to another double with required format (e.g.precision)
- ///
- ///
- ///
- ///
- public static double formatDouble(double d, string format)
- {
- return Convert.ToDouble(d.ToString(format));
- }
- ///
- /// Format double array to another double array with required format (e.g.precision)
- ///
- ///
- ///
- ///
- public static double[] formatDouble(double[] d, string format)
- {
- double[] da = new double[d.Length];
- for (int i = 0; i < d.Length; i++) da[i] = Convert.ToDouble(d[i].ToString(format));
- return da;
- }
-
- ///
- /// Strip line endings
- ///
- ///
- ///
- public static string RemoveLineEndings(string value)
- {
- if (String.IsNullOrEmpty(value))
- {
- return value;
- }
- string lineSeparator = ((char)0x2028).ToString();
- string paragraphSeparator = ((char)0x2029).ToString();
-
- return value.Replace("\r\n", string.Empty).Replace("\n", string.Empty).Replace("\r", string.Empty).Replace(lineSeparator, string.Empty).Replace(paragraphSeparator, string.Empty);
- }
-
- ///
- /// Read dictionary(string,string) from file format key=value
- /// skip empty line, starting with [ or ;
- ///
- ///
- ///
- public static Dictionary readINI(string filename)
- {
- Dictionary dict = new Dictionary();
- if (!File.Exists(filename)) throw new Exception("File not found: " + filename);
- List ls = new List();
- string line;
- foreach (string wline in File.ReadLines(filename))
- {
- if (wline.Equals("")) continue;
- char ch = wline[0];
- if (ch.Equals('[')) continue;
- int sc = wline.IndexOf(';');
- if (sc > -1) line = wline.Remove(sc);
- else line = wline;
- if (line.Equals("")) continue;
-
- string[] sb = line.Split('=');
- if (sb.Length != 2) break;
- dict[sb[0]] = sb[1];
- }
- return dict;
- }
-
- [DllImport("user32.dll", SetLastError = true)]
- static extern int MessageBoxTimeout(IntPtr hwnd, String text, String title, uint type, Int16 wLanguageId, Int32 milliseconds);
- ///
- /// Temporary message not to bother click OK
- ///
- ///
- ///
- ///
- public static void TimedMessageBox(string text, string title = "Information", int milliseconds = 1500)
- {
- int returnValue = MessageBoxTimeout(IntPtr.Zero, text, title, Convert.ToUInt32(0), 1, milliseconds);
- //return (MessageBoxReturnStatus)returnValue;
- }
-
- ///
- /// Main directory of current app
- ///
- public static string basePath = Directory.GetParent(Directory.GetParent(Environment.GetCommandLineArgs()[0]).Parent.FullName).FullName;
- public static string configPath { get { return basePath + "\\Config\\"; } }
- public static string dataPath { get { return basePath + "\\Data\\"; } }
-
- ///
- /// Random string (for testing purposes)
- ///
- ///
- ///
- public static string randomString(int length)
- {
- int l8 = 1 + length / 8; string path, ss = "";
- for (int i = 0; i < l8; i++)
- {
- path = Path.GetRandomFileName();
- path = path.Replace(".", ""); // Remove period.
- ss += path.Substring(0, 8); // Return 8 character string
- }
- return ss.Remove(length);
- }
- }
-
- #region async file logger
- /// This is an obsolete version, please use FileLogger below instead !!!
- /// Async data storage device
- /// first you set the full path of the file, otherwise it will save in data dir under date-time file name
- /// when you want the logging to start you set Enabled to true
- /// at the end you set Enabled to false (that will flush the buffer to HD)
- ///
- public class AutoFileLogger
- {
- private const bool traceMode = false;
- public string header = ""; // that will be put as a file first line with # in front of it
- public string defaultExt = ".ahf";
- List buffer;
- public int bufferLimit = 256; // number of items
- private int bufferCharLimit = 256000; // the whole byte/char size
- public int bufferSize { get { return buffer.Count; } }
- public int bufferCharSize { get; private set; }
- public string prefix { get; private set; }
- public bool writing { get; private set; }
- public bool missingData { get; private set; }
- public Stopwatch stw;
-
- public AutoFileLogger(string _prefix = "", string Filename = "")
- {
- _AutoSaveFileName = Filename;
- prefix = _prefix;
- bufferCharSize = 0;
- buffer = new List();
- stw = new Stopwatch();
- }
-
- public int log(List newItems)
- {
- if (!Enabled) return buffer.Count;
- foreach (string newItem in newItems) log(newItem);
- return buffer.Count;
- }
-
- public int log(string newItem)
- {
- if (!Enabled) return buffer.Count;
- buffer.Add(newItem); bufferCharSize += newItem.Length;
- if ((buffer.Count > bufferLimit) || (bufferCharSize > bufferCharLimit))
- Flush();
- return buffer.Count;
- }
- public void DropLastChar()
- {
- if (buffer.Count == 0) return;
- string lastItem = buffer[buffer.Count - 1];
- buffer[buffer.Count - 1] = lastItem.Substring(0, lastItem.Length - 1);
- }
-
- private void ConsoleLine(string txt)
- {
- Console.WriteLine(txt);
- }
-
- public Task Flush() // do not forget to flush when exit (OR switch Enabled Off)
- {
- if (buffer.Count == 0) return null;
- if(traceMode) ConsoleLine("0h: " + stw.ElapsedMilliseconds.ToString());
- string strBuffer = "";
- for (int i = 0; i < buffer.Count; i++)
- {
- strBuffer += buffer[i] + "\n";
- }
- buffer.Clear(); bufferCharSize = 0;
- var task = Task.Run(() => FileWriteAsync(AutoSaveFileName, strBuffer, true));
- return task;
- }
-
- private async Task FileWriteAsync(string filePath, string messaage, bool append = true)
- {
- FileStream stream = null;
- try
- {
- stream = new FileStream(filePath, append ? FileMode.Append : FileMode.Create, FileAccess.Write,
- FileShare.None, 65536, true);
- using (StreamWriter sw = new StreamWriter(new BufferedStream(stream)))
- {
- writing = true;
- string msg = "1k: " + stw.ElapsedMilliseconds.ToString();
- await sw.WriteAsync(messaage);
- if(traceMode) ConsoleLine(msg);
- if(traceMode) ConsoleLine("2p: " + stw.ElapsedMilliseconds.ToString());
- writing = false;
- }
- }
- catch (IOException e)
- {
- ConsoleLine(">> IOException - " + e.Message);
- missingData = true;
- }
- finally
- {
- if (stream != null) stream.Dispose();
- }
- }
-
- private bool _Enabled = false;
- public bool Enabled
- {
- get { return _Enabled; }
- set
- {
- if (value == _Enabled) return;
- if (value && !_Enabled) // when it goes from false to true
- {
- string dir = "";
- if (!_AutoSaveFileName.Equals("")) dir = Directory.GetParent(_AutoSaveFileName).FullName;
- if (!Directory.Exists(dir))
- {
- _AutoSaveFileName = Utils.dataPath + Utils.timeName(prefix) + defaultExt;
- }
-
- string hdr = "";
- if (header != "") hdr = "# " + header + "\n";
- var task = Task.Run(() => FileWriteAsync(AutoSaveFileName, hdr, false));
-
- task.Wait();
- writing = false;
- missingData = false;
- stw.Start();
- _Enabled = true;
- }
- if (!value && _Enabled) // when it goes from true to false
- {
- while (writing)
- {
- Thread.Sleep(100);
- }
- Task task = Flush();
- if (task != null) task.Wait();
- if (missingData) Console.WriteLine("Some data maybe missing from the log");
- stw.Reset();
- header = "";
- _Enabled = false;
- }
- }
- }
-
- private string _AutoSaveFileName = "";
- public string AutoSaveFileName
- {
- get
- {
- return _AutoSaveFileName;
- }
- set
- {
- if (Enabled) throw new Exception("Logger.Enabled must be Off when you set AutoSaveFileName.");
- _AutoSaveFileName = value;
- }
- }
- }
-
- ///
- /// Async data storage device - new (dec.2018) optimized for speed (7x faster to AutoFilelogger) logger
- /// first you set the full path of the file, otherwise it will save in data dir under date-time file name
- /// when you want the logging to start you set Enabled to true
- /// at the end you set Enabled to false (that will flush the buffer to HD)
- ///
- public class FileLogger
- {
- private const bool traceMode = false;
- public string header = ""; // that will be put as a file first line with # in front of it
- public List subheaders;
- public string defaultExt = ".ahf";
- private ActionBlock block;
- public string prefix { get; private set; }
- public string reqFilename { get; private set; }
- public bool writing { get; private set; }
- public bool missingData { get; private set; }
- public Stopwatch stw;
-
- ///
- /// Class constructor
- ///
- ///
- ///
- public FileLogger(string _prefix = "", string _reqFilename = "") // if reqFilename is something it should contain the prefix;
- // the usual use is only prefix and no reqFilename
- {
- subheaders = new List();
- reqFilename = _reqFilename;
- prefix = _prefix;
- stw = new Stopwatch();
- }
-
- ///
- /// The main call if you have List of strings
- ///
- ///
- public void log(List newItems)
- {
- if (!Enabled) return;
- foreach (string newItem in newItems) log(newItem);
- return;
- }
-
- ///
- /// That's the main method
- ///
- ///
- public void log(string newItem)
- {
- if (!Enabled) return;
- if (writing)
- {
- missingData = true; return;
- }
- writing = true;
- block.Post(newItem);
- writing = false;
- return;
- }
-
- ///
- /// Optional (traceMode) console output - only for debug
- ///
- ///
- private void ConsoleLine(string txt)
- {
- if(traceMode) Console.WriteLine(txt);
- }
-
- ///
- /// Create actual asynchronious logger
- ///
- ///
- public void CreateLogger(string filePath)
- {
- block = new ActionBlock(async message =>
- {
- using (var f = File.Open(filePath, FileMode.OpenOrCreate, FileAccess.Write))
- {
- f.Position = f.Length;
- using (var sw = new StreamWriter(f))
- {
- await sw.WriteLineAsync(message);
- }
- }
- }, new ExecutionDataflowBlockOptions { MaxDegreeOfParallelism = 1 });
- }
-
- private string _LogFilename = "";
- public string LogFilename
- {
- get { return _LogFilename; }
- private set
- {
- if (Enabled) throw new Exception("Logger.Enabled must be Off when you set LogFileName.");
- _LogFilename = value;
- }
- }
-
- ///
- /// Write a header and subheaders with #
- ///
- public virtual void writeHeader()
- {
- if (!header.Equals("")) log("#" + header);
- for (int i=0; i 0)) log("\n");
- }
-
- private bool _Enabled = false;
- ///
- /// Switch this on to create the file and start to accept logs
- /// switch it off to flash the buffer and close the file
- ///
- public bool Enabled
- {
- get { return _Enabled; }
- set
- {
- if (value == _Enabled) return;
- if (value && !_Enabled) // when it goes from false to true
- {
- string dir = "";
-
- if (reqFilename.Equals("")) LogFilename = Utils.dataPath + Utils.timeName(prefix) + defaultExt;
- else
- {
- dir = Directory.GetParent(reqFilename).FullName;
- if (!Directory.Exists(dir)) dir = Utils.dataPath;
- LogFilename = dir + "\\" + Path.GetFileName(reqFilename);
- }
- if (File.Exists(LogFilename)) File.Delete(LogFilename);
- CreateLogger(LogFilename);
-
- writing = false;
- missingData = false;
- stw.Restart();
- _Enabled = true;
- writeHeader();
- }
- if (!value && _Enabled) // when it goes from true to false
- {
- if (missingData) Console.WriteLine("Some data maybe missing from the log");
- stw.Reset();
- header = "";
- _Enabled = false;
- }
- }
- }
- }
-
- ///
- /// creates and logs in multicollumn table; record structure is defined in record List of string
- /// the column names must be set when created
- /// dictLog will extract only the keys with these names in that order
- ///
- public class DictFileLogger : FileLogger
- {
- List record;
- ///
- /// Class constructor
- ///
- /// Required and fixed column names
- /// Ending in case of timestamp name
- /// If empty timestamp name is generated
- public DictFileLogger(string[] _record, string _prefix = "", string _reqFilename = ""): base(_prefix, _reqFilename)
- // if reqFilename is something it should contain the prefix;
- // the usual use is only prefix and no reqFilename
- {
- record = new List(_record);
- }
- private readonly string[] titles = { "params", "steps" };
- ///
- /// When the group MMexec is known
- ///
- ///
- public void setMMexecAsHeader(MMexec mme)
- {
- header = ""; subheaders.Clear(); char q = '"';
- if (Utils.isNull(mme)) return;
- foreach (string ss in titles)
- {
- if (mme.prms.ContainsKey(ss))
- {
- string sub = JsonConvert.SerializeObject(mme.prms[ss]);
- mme.prms.Remove(ss);
- subheaders.Add("{"+q+ss+q+":"+sub+"}");
- }
- }
- header = JsonConvert.SerializeObject(mme);
- }
- ///
- /// Write the header & subheaders and colunm names line
- ///
- public override void writeHeader()
- {
- base.writeHeader();
- if(Utils.isNull(record)) throw new Exception("The record list not set");
- if (record.Count.Equals(0)) throw new Exception("The record list is empty");
- string ss = "";
- foreach (string item in record)
- ss += item + '\t';
- ss = ss.Remove(ss.Length - 1);
- log(ss);
- }
-
- ///
- /// This main methods in three variations, but that is the basic one
- ///
- ///
- public void dictLog(Dictionary dict)
- {
- string ss = "";
- foreach (string item in record)
- {
- if (dict.ContainsKey(item)) ss += dict[item];
- else ss += "";
- ss += '\t';
- }
- ss = ss.Remove(ss.Length - 1);
- log(ss);
- }
-
- ///
- /// log that way with undefined Values type
- ///
- ///
- public void dictLog(Dictionary dict)
- {
- Dictionary dictS = new Dictionary();
- foreach (var pair in dict)
- {
- dictS[pair.Key] = Convert.ToString(pair.Value);
- }
- dictLog(dictS);
- }
-
- ///
- /// log that way with double Values type with format
- ///
- ///
- ///
- public void dictLog(Dictionary dict, string format = "")
- {
- Dictionary dictS = new Dictionary();
- foreach (var pair in dict)
- {
- if (Double.IsNaN(pair.Value)) dictS[pair.Key] = "NaN";
- else dictS[pair.Key] = pair.Value.ToString(format);
- }
- dictLog(dictS);
- }
- }
-
- ///
- /// Read dictionary from multi-column text file (tab separated)
- /// format first line #header (for conditions) - optional
- /// next line column names;
- /// header, subheaders & col names are read when instance is created
- /// if _record = null then read this row in record
- /// if _record has items the record will be the cross-section of _record and column names list (fileRecord)
- ///
- public class DictFileReader
- {
- public string header;
- public List subheaders;
- StreamReader fileReader; public int counter = 0;
- public List record, fileRecord;
- ///
- /// Class constructor
- ///
- /// File must exits
- /// Array of column names
- public DictFileReader(string Filename, string[] strArr = null)
- {
- if (!File.Exists(Filename)) throw new Exception("no such file: "+Filename);
- header = ""; subheaders = new List();
- // Read file using StreamReader. Reads file line by line
- fileReader = new StreamReader(Filename);
- counter = 0;
- string ln = fileReader.ReadLine();
- while(ln.StartsWith("#"))
- {
- if (header.Equals("")) header = ln.Remove(0, 1);
- else subheaders.Add(ln.Remove(0, 1));
- ln = fileReader.ReadLine();
- }
- while (ln.Equals(""))
- ln = fileReader.ReadLine(); // read the next if empty, and again...
-
- string[] ns = ln.Split('\t');
- fileRecord = new List(ns);
- if (Utils.isNull(strArr)) record = new List(fileRecord);
- else
- {
- List _record = new List(strArr);
- if (_record.Count.Equals(0)) record = new List(fileRecord);
- else
- {
- record = new List(_record);
- for (int i = _record.Count-1; i > -1; i--)
- {
- int j = fileRecord.IndexOf(_record[i]);
- if (j.Equals(-1)) record.RemoveAt(i);
- }
- }
- }
- }
-
- ///
- /// returns one line (row) as (column.name , cell.value) dictionary
- ///
- /// one table row
- /// if we can go again
- public bool stringIterator(ref Dictionary rslt) //
- {
- if (Utils.isNull(rslt)) rslt = new Dictionary();
- else rslt.Clear();
- bool next = false;
- string ln = fileReader.ReadLine();
- if (Utils.isNull(ln))
- {
- fileReader.Close();
- return next;
- }
- while (ln.Equals(""))
- ln = fileReader.ReadLine(); // read the next if empty, and again...
- string[] ns = ln.Split('\t');
- if(ns.Length != fileRecord.Count) throw new Exception("wrong number of columns");
- foreach (string ss in record)
- {
- int j = fileRecord.IndexOf(ss);
- if (j.Equals(-1)) throw new Exception("wrong column name: "+ss);
- rslt[ss] = ns[j];
- }
- counter++;
- next = true; return next;
- }
-
- ///
- /// same as above but Values are double
- ///
- ///
- ///
- public bool doubleIterator(ref Dictionary rslt) // same as above but values in double (if possible)
- {
- rslt = new Dictionary();
- Dictionary strRslt = new Dictionary();
- bool next = stringIterator(ref strRslt);
- foreach (var pair in strRslt)
- {
- try
- {
- double dbl = Convert.ToDouble(pair.Value);
- rslt[pair.Key] = dbl;
- }
- catch (FormatException)
- {
- rslt[pair.Key] = Double.NaN;
- }
- }
- return next;
- }
- }
-
- #endregion
- ///
- /// Hour-glass cursor while waiting for Godot
- ///
- public class WaitCursor : IDisposable
- {
- private System.Windows.Input.Cursor _previousCursor;
- public WaitCursor()
- {
- _previousCursor = Mouse.OverrideCursor;
-
- Mouse.OverrideCursor = Cursors.Wait;
- }
-
- #region IDisposable Members
- public void Dispose()
- {
- Mouse.OverrideCursor = _previousCursor;
- }
- #endregion
- }
-}
\ No newline at end of file
diff --git a/Utils/UtilsLib.csproj b/Utils/UtilsLib.csproj
deleted file mode 100644
index 9ec3ed2d..00000000
--- a/Utils/UtilsLib.csproj
+++ /dev/null
@@ -1,77 +0,0 @@
-
-
-
-
- Debug
- AnyCPU
- {A377A708-96B9-4569-BC22-0187D647611E}
- Library
- Properties
- UtilsNS
- UtilsLib
- v4.5
- 512
-
-
- true
- full
- false
- bin\
- DEBUG;TRACE
- prompt
- 4
- true
-
-
- pdbonly
- true
- bin\Release\
- TRACE
- prompt
- 4
-
-
-
-
-
-
- False
- ..\packages\Newtonsoft.Json.dll
-
-
-
-
-
-
-
- False
- C:\Program Files (x86)\Microsoft Visual Studio 12.0\Data\system.threading.tasks.dataflow.dll
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Always
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/images/PPBFullbook.pdf b/images/PPBFullbook.pdf
deleted file mode 100644
index c0d1f173..00000000
Binary files a/images/PPBFullbook.pdf and /dev/null differ
diff --git a/images/TripleBarBlue.bmp b/images/TripleBarBlue.bmp
new file mode 100644
index 00000000..922bda3c
Binary files /dev/null and b/images/TripleBarBlue.bmp differ
diff --git a/images/TripleBarGreen.bmp b/images/TripleBarGreen.bmp
new file mode 100644
index 00000000..4ca24910
Binary files /dev/null and b/images/TripleBarGreen.bmp differ
diff --git a/images/TripleBarGrey.bmp b/images/TripleBarGrey.bmp
new file mode 100644
index 00000000..d348d4e0
Binary files /dev/null and b/images/TripleBarGrey.bmp differ
diff --git a/images/TripleBarRed.bmp b/images/TripleBarRed.bmp
new file mode 100644
index 00000000..2a52147f
Binary files /dev/null and b/images/TripleBarRed.bmp differ
diff --git a/images/TripleBarRusty.bmp b/images/TripleBarRusty.bmp
new file mode 100644
index 00000000..5edd1cd9
Binary files /dev/null and b/images/TripleBarRusty.bmp differ
diff --git a/images/TripleBarTeal.bmp b/images/TripleBarTeal.bmp
new file mode 100644
index 00000000..077e9c34
Binary files /dev/null and b/images/TripleBarTeal.bmp differ
diff --git a/images/TripleBarYellow.bmp b/images/TripleBarYellow.bmp
new file mode 100644
index 00000000..fd7abd63
Binary files /dev/null and b/images/TripleBarYellow.bmp differ
diff --git a/images/probe3.ico b/images/probe3.ico
new file mode 100644
index 00000000..d2f3ba8b
Binary files /dev/null and b/images/probe3.ico differ
diff --git a/images/probe3.png b/images/probe3.png
new file mode 100644
index 00000000..333aa285
Binary files /dev/null and b/images/probe3.png differ