diff --git a/BUILD.md b/BUILD.md
index cfecc24a68d0864b00947999ba0820efc7a8c145..0b4353567a5041702d170992619291dea6fe1c71 100644
--- a/BUILD.md
+++ b/BUILD.md
@@ -22,25 +22,27 @@ The following directories/files must be provided in the application folder (e.g.
 
 Checklist to build a new release:
 
-  * Make  zip-folder named with the "Semantic-version", ie: 2014_15_5-VECTO_CSE-2.0.1-beta1.
-  * Copy into it:
-      * executable (`.EXE`) (from bin/Debug when pre/beta release)
+  1. Make  zip-folder named with the "Semantic-version", ie: 2014_15_5-VECTO_CSE-2.0.1-beta1.
+  2. Copy into it:
+      * executable (`.EXE` and optionally `.PDB` when a prerelease)
       * vectolic.dll (check correct version)
       * Newtonsoft.Json.dll 6.0.0
-      * Declaration/
+      * Declaration/ (With all its files marked as READONLY!!)
       * DemoData/
       * Docs/CSE-User Manual.pdf (generated from Word-file)
       * Docs/GenericData.xlsx
       * README.md
       * CHANGES.md
       * COPYING.txt
-  * Make a temp-copy of the folder and run it with a license to check everything alright.
+  3. Make a temp-copy of the folder and run it with a license.
       * Does the "User Manual" open?
-  * ZIP the original folder.
-  * Upload into CITNet's SVN:
+  4. Check everything alright, or else go back to step (2).
+  5. Issue a Pull-request to CITNet with all latest changes.
+  6. ZIP the original folder.
+  7. Upload into CITNet's SVN:
       https://webgate.ec.europa.eu/CITnet/svn/VECTO/trunk/Share/
     and link from: 
       https://webgate.ec.europa.eu/CITnet/confluence/display/VECTO_CSE/Releases
-  * Make licenses and update private pages
-  * Tag repos.
-  * Send announcment email through JIRA (ie see VECTO-28).
+  8. Make licenses and update private pages
+  9. Tag repos.
+  10. Send announcment email through JIRA (ie see VECTO-28).
diff --git a/CHANGES.md b/CHANGES.md
index d75560a5bfb220894cb9d01784ed30c1e1bb88c7..f4791f4ea2555ca779c260991206d57f68db0b37 100644
--- a/CHANGES.md
+++ b/CHANGES.md
@@ -3,24 +3,46 @@ VECTO-CSE: Changes
 
 
 TODO: 2014-06-??: v2.0.1
------------------
-  * JSON-ize preferences, vehicle-file, job-file, criteria-file
-  * Provide default-values and help-messages in GUI/files with infos from "schemas".
-  * Start improving error-reporting by including stack-traces and timestamps into the log-file, for post-mortem examination.
-  * Separate config/ from Declaration/ folders.
-  * Standarize versinong using [SemanticVersioning](http://semver.org/).
-  * Possible to use any editor (not only notepad.exe) for viewing files.
-  * Welcome developers with README.md, CHANGES.md and COPYING.txt files.
+--------------------
+JRC contributions (see VECTO-29):
+
+  * IO: JSON-ize preferences, vehicle, job & criteria-files, ...
+  * IO: Separate config/ from Declaration/ folders.
+  * UI: Provide default-values and help-messages in GUI/files with infos fetched from JSON-schemas.
+  * UI: Make the Log-window visible at all times (more necessary now that unhandled exceptions are appropriately reported).
+  * Log: Gather all unhandled exceptions and report them into log-window and log-file.
+  * Log: Improving error-reporting by including stack-traces and timestamps into the log-file, for post-mortem examination.
+  * Translate all file-paths against `Prefs.WorkingDir`, so that i.e. Job-files can be ported to other computers.
+  * Possible to specify any editor (not only notepad.exe) for viewing files.
+  * Standarize versioning using [SemanticVersioning](http://semver.org/).
+  * Welcome developers and users with README.md, CHANGES.md and COPYING.txt files.
 ##### Internal:
-  * Improve logging-API so now a single log-routine is used everywhere(instead of 3 different ones).
   * Implement an API for writing Header/Body json-files.
+  * Apply Object-oriented design weith resource-management when I/O files.
+  * Sporadic fixes to work with filenames having 2-part extensions (ie `some_file.csjob.json`).
+  * Log: Improve logging-API so now a single log-routine is used everywhere(instead of 3 different ones).
+  * async: Stop abusing worker-Thread with Globals, use DoWorkEventArgs instead.
   * General restructuring of the folders and names in the project.
 
+
 More analytically:
 
+#### 2014-06-04: v2.0.1-pre2 ####
+JRC contributions:
+  * Convert Job & Criteria files to JSON and possible to store them separately.
+  * Still supporting old format for reading.
+  * Use Use WorkingDir trick for all job-file paths, so that Job-files can be ported to other computers.
+  * UI: Make the Log-window visible at all times (more necessary now that unhandled exceptions are appropriately reported).
+  * UI: Setup criteria-infobox from JSON-schema.
+##### Internal:
+  * Log unhandled exceptions.
+  * Gather all infos related to Job-properties (type, description, units) in a single place, the JSON-schema for the job-file.
+  * async: Stop abusing worker-Thread with Globals, use DoWorkEventArgs instead.
+  * Sporadic fixes to work with filenames having 2-part extensions (ie `some_file.csjob.json`).
+  * More refactorings to simplify structure of source files and folders.
 
 
-#### 2014-06-03: v2.0.1-pre1 ####
+#### 2014-05-30: v2.0.1-pre1 ####
 JRC contributions:
 
   * Read/write Vehicle-file as JSON.
diff --git a/CSE/ApplicationEvents.vb b/CSE/ApplicationEvents.vb
index f6c95fb6083e36a22c4b0c7128ffa461080a4a3d..682717e5ef0352b98ee4446c7a14960a8c478eaf 100644
--- a/CSE/ApplicationEvents.vb
+++ b/CSE/ApplicationEvents.vb
@@ -27,62 +27,90 @@
         End Sub
 
         Private Sub MyApplication_Startup(ByVal sender As Object, ByVal e As Microsoft.VisualBasic.ApplicationServices.StartupEventArgs) Handles Me.Startup
-            ' Declaration
-            Dim fiAss As New IO.FileInfo(joinPaths(Application.Info.DirectoryPath, Application.Info.AssemblyName & ".exe"))
+            Try
+                ' Declaration
+                Dim fiAss As New IO.FileInfo(joinPaths(Application.Info.DirectoryPath, Application.Info.AssemblyName & ".exe"))
 
-            AppPreferences = New cPreferences(, True) ' !!!Skip schema-validation here, or else app hangs as zombie! (do it instead when creating new for Dialog)
+                Prefs = New cPreferences(True) ' !!!Skip schema-validation here, or else app hangs as zombie! (do it instead when creating new for Dialog)
+                'F_Main.installJob(New cJob()) NO! cannot instantiate form without JOB/Crt.
+                Job = New cJob(True)  ' !!!Skip schema
+                Crt = Job.Criteria
 
-            ' Path to the *.exe 
-            MyPath = My.Application.Info.DirectoryPath & "\"
-            PreferencesPath = joinPaths(MyPath, "config", "preferences.json")
 
-            ' Generateion of folder for the file history if not exists
-            FB_FilHisDir = joinPaths(MyPath, "config", "fileHistory\")
-            If Not IO.Directory.Exists(FB_FilHisDir) Then IO.Directory.CreateDirectory(FB_FilHisDir)
+                ' Path to the *.exe 
+                MyPath = My.Application.Info.DirectoryPath & "\"
+                PrefsPath = joinPaths(MyPath, "config", "preferences.json")
 
-            ' compile date
-            AppDate = fiAss.LastWriteTime.Date
+                ' Generateion of folder for the file history if not exists
+                FB_FilHisDir = joinPaths(MyPath, "config", "fileHistory\")
+                If Not IO.Directory.Exists(FB_FilHisDir) Then IO.Directory.CreateDirectory(FB_FilHisDir)
 
-            ' Licencemodul
-            Lic.FilePath = joinPaths(MyPath, "License.dat")
-            Lic.AppVersion = AppVers
+                ' compile date
+                AppDate = fiAss.LastWriteTime.Date
 
-            ' Declaration from the filebrowser optionen
-            fbVECTO = New cFileBrowser("CSE")
-            fbVECTO.Extensions = New String() {"csjob"}
+                ' Licencemodul
+                Lic.FilePath = joinPaths(MyPath, "License.dat")
+                Lic.AppVersion = AppVers
 
-            fbTXT = New cFileBrowser("TXT")
-            fbTXT.Extensions = New String() {"txt"}
+                ' Declaration from the filebrowser optionen
+                fbVECTO = New cFileBrowser("CSE")
+                fbVECTO.Extensions = New String() {"csjob.json", "csjob"}
 
-            fbExe = New cFileBrowser("EXE")
-            fbExe.Extensions = New String() {"exe"}
+                fbCRT = New cFileBrowser("CRT.json")
+                fbCRT.Extensions = New String() {"cscrt.json"}
 
-            fbCSV = New cFileBrowser("CSV")
-            fbCSV.Extensions = New String() {"csv", "txt"}
+                fbTXT = New cFileBrowser("TXT")
+                fbTXT.Extensions = New String() {"txt"}
 
-            fbDir = New cFileBrowser("DIR", True)
+                fbExe = New cFileBrowser("EXE")
+                fbExe.Extensions = New String() {"exe"}
 
-            fbWorkDir = New cFileBrowser("DIR", True)
+                fbCSV = New cFileBrowser("CSV")
+                fbCSV.Extensions = New String() {"csv", "txt"}
 
-            fbVEH = New cFileBrowser("VEH.json")
-            fbVEH.Extensions = New String() {"csveh.json"}
+                fbDir = New cFileBrowser("DIR", True)
 
-            fbAMB = New cFileBrowser("AMB")
-            fbAMB.Extensions = New String() {"csamb"}
+                fbWorkDir = New cFileBrowser("DIR", True)
 
-            fbALT = New cFileBrowser("ALT")
-            fbALT.Extensions = New String() {"csalt"}
+                fbVEH = New cFileBrowser("VEH.json")
+                fbVEH.Extensions = New String() {"csveh.json"}
 
-            fbVEL = New cFileBrowser("VEL")
-            fbVEL.Extensions = New String() {"csdat"}
+                fbAMB = New cFileBrowser("AMB")
+                fbAMB.Extensions = New String() {"csamb"}
 
-            fbMSC = New cFileBrowser("MSC")
-            fbMSC.Extensions = New String() {"csms"}
+                fbALT = New cFileBrowser("ALT")
+                fbALT.Extensions = New String() {"csalt"}
+
+                fbVEL = New cFileBrowser("VEL")
+                fbVEL.Extensions = New String() {"csdat"}
+
+                fbMSC = New cFileBrowser("MSC")
+                fbMSC.Extensions = New String() {"csms"}
+
+                ' Initialise the key array
+                sKey = New csKey
+
+                'Dim currentDomain As AppDomain = AppDomain.CurrentDomain
+                'AddHandler currentDomain.UnhandledException, AddressOf Me.MyApplicationDomain_UnhandledException
+            Catch ex As Exception
+                MsgBox(format("{0} failed on init due to: \n\i{1}", AppName, ex), MsgBoxStyle.Critical, format("{0} failed to Start!", AppName))
+            End Try
 
-            ' Initialise the key array
-            sKey = New csKey
         End Sub
 
+        Private Sub MyApplication_UnhandledException(ByVal sender As Object, ByVal ev As Microsoft.VisualBasic.ApplicationServices.UnhandledExceptionEventArgs) Handles Me.UnhandledException
+            Dim ex As Exception = ev.Exception
+            If AppFormStarted Then
+                logme(9, False, format("Unhandled exception: \i{0}", ex.Message), ex)
+                ev.ExitApplication = False
+            Else
+                MsgBox(format("{0} failed after init due to: \n\i{1}", AppName, ex), MsgBoxStyle.Critical, format("{0} failed to Start!", AppName))
+            End If
+        End Sub
+        'Private Sub MyApplicationDomain_UnhandledException(ByVal sender As Object, ByVal ev As UnhandledExceptionEventArgs)
+        '    Dim ex As Exception = DirectCast(ev.ExceptionObject, Exception)
+        '    logme(9, False, format("Worker's unhandled exception: {0}", ex.Message), ex)
+        'End Sub
     End Class
 
 End Namespace
diff --git a/CSE/CSE.vbproj b/CSE/CSE.vbproj
index 0cd8cbfe40c636ccf741e484ff74aec54b3589eb..17f2a44a77339ccb620d9fd5bc71707e80c5953e 100644
--- a/CSE/CSE.vbproj
+++ b/CSE/CSE.vbproj
@@ -108,6 +108,7 @@
     <Compile Include="IO\cJsonFile.vb" />
     <Compile Include="Classes\CResult.vb" />
     <Compile Include="IO\cJob.vb" />
+    <Compile Include="IO\cCriteria.vb" />
     <Compile Include="IO\cPreferences.vb" />
     <Compile Include="cSemanticVersion.vb" />
     <Compile Include="Classes\csKey.vb" />
@@ -122,8 +123,6 @@
     <Compile Include="Calculation\Signal_identification.vb" />
     <Compile Include="Calculation\sub_linear_regression.vb" />
     <Compile Include="IO\input.vb" />
-    <Compile Include="GUI\Export_GUI.vb" />
-    <Compile Include="GUI\utils_GUI.vb" />
     <Compile Include="GUI\cFileBrowser.vb" />
     <Compile Include="GUI\F_Preferences.designer.vb">
       <DependentUpon>F_Preferences.vb</DependentUpon>
@@ -175,7 +174,6 @@
     <Compile Include="utils.vb" />
     <Compile Include="Classes\cFile_v3.vb" />
     <Compile Include="CSE_Globals.vb" />
-    <Compile Include="CSE_Types.vb" />
   </ItemGroup>
   <ItemGroup>
     <EmbeddedResource Include="GUI\F_Preferences.resx">
@@ -297,7 +295,16 @@
       <Install>true</Install>
     </BootstrapperPackage>
   </ItemGroup>
-  <ItemGroup />
+  <ItemGroup>
+    <None Include="Resources\Refresh-icon.png" />
+  </ItemGroup>
+  <ItemGroup>
+    <None Include="Resources\Play-icon.png" />
+  </ItemGroup>
+  <ItemGroup>
+    <Content Include="Resources\Stop-icon.png" />
+    <None Include="Resources\Stop-icon1.png" />
+  </ItemGroup>
   <Import Project="$(MSBuildToolsPath)\Microsoft.VisualBasic.targets" />
   <!-- To modify your build process, add your task inside one of the targets below and uncomment it. 
        Other similar extension points exist, see Microsoft.Common.targets.
diff --git a/CSE/CSE_Globals.vb b/CSE/CSE_Globals.vb
index c91e6b9c45245309f3757de4f203b8dc0bea1b05..af5d6700fc4fde265c19173a1a2e63ca0982b6c7 100644
--- a/CSE/CSE_Globals.vb
+++ b/CSE/CSE_Globals.vb
@@ -1,4 +1,191 @@
 Module CSE_Globals
+    Public Enum tComp
+        t
+        lati
+        longi
+        hdg
+        v_veh_GPS
+        v_veh_CAN
+        vair_ar
+        beta_ar
+        n_eng
+        tq_l
+        tq_r
+        t_amb_veh
+        t_tire
+        p_tire
+        fc
+        trigger
+        user_valid
+        Undefined
+    End Enum
+
+    Public Enum tCompWeat
+        t
+        t_amb_stat
+        p_amp_stat
+        rh_stat
+        Undefined
+    End Enum
+
+    Public Enum tCompCali
+        t
+        zone_UTM
+        lati_UTM
+        longi_UTM
+        trigger_c
+        SecID
+        DirID
+        lati_root
+        longi_root
+        v_veh_c
+        vair_ic
+        vair_uf
+        beta_ic
+        beta_uf
+        vwind_ha
+        vwind_c
+        vwind_1s
+        vair_c
+        vair_c_sq
+        beta_c
+        dist
+        dist_root
+        alt
+        slope_deg
+        omega_wh
+        omega_p_wh
+        tq_sum
+        tq_sum_1s
+        t_float
+        tq_sum_float
+        F_trac
+        v_veh_acc
+        a_veh_avg
+        F_acc
+        F_grd
+        F_res
+        v_veh_1s
+        v_veh_float
+        t_amp_veh
+        t_amp_stat
+        p_amp_stat
+        rh_stat
+    End Enum
+
+    Public Enum tCompErg
+        SecID
+        DirID
+        RunID
+        HeadID
+        delta_t
+        v_veh
+        v_MSC
+        v_MSC_GPS
+        s_MSC
+        v_veh_CAN
+        vair_ar
+        vair_ic
+        vair_uf
+        vair
+        beta_ar
+        beta_ic
+        beta_uf
+        user_valid
+        valid
+        used
+        calcT
+        n_eng
+        v_wind_avg
+        v_wind_1s
+        v_wind_1s_max
+        beta_avg
+        dist
+        omega_wh
+        omega_p_wh
+        tq_sum_1s
+        t_float
+        tq_sum_float
+        F_trac
+        F_res_ref
+        v_veh_avg
+        a_veh_avg
+        F_acc
+        F_grd
+        F_res
+        v_veh_1s
+        v_veh_float
+        t_amb_veh
+        t_amb_stat
+        p_amb_stat
+        rh_stat
+        v_air_sq
+        v_veh_1s_max
+        v_veh_1s_min
+        v_veh_float_max
+        v_veh_float_min
+        beta_abs
+        tq_sum
+        tq_sum_1s_max
+        tq_sum_1s_min
+        tq_sum_float_max
+        tq_sum_float_min
+        vp_H2O
+        rho_air
+        t_tire
+        p_tire
+        F0_ref_singleDS
+        F0_singleDS
+        F2_ref_singleDS
+        RRC_singleDS
+        CdxA_singleDS
+        val_User
+        val_vVeh_avg
+        val_vVeh_1s
+        val_vVeh_f
+        val_vWind
+        val_vWind_1s
+        val_tq_f
+        val_tq_1s
+        val_beta
+        val_dist
+    End Enum
+
+    Public Enum tCompErgReg
+        SecID
+        DirID
+        F0
+        F0_LS1
+        F0_LS2
+        F0_ref
+        F2_ref
+        F0_LS1_ref
+        F2_LS1_ref
+        F0_LS2_ref
+        F2_LS2_ref
+        roh_air_LS
+        beta_abs_HS
+        RRC
+        RRC_LS1
+        RRC_LS2
+        RRC_valid
+        CdxA
+        delta_CdxA
+        CdxA0
+        F0_95
+        F2_95
+        R_sq
+        t_tire_LS_min
+        t_tire_LS_max
+        t_tire_HS_min
+        t_tire_HS_max
+        valid_t_tire
+        't_amb
+        't_amb_min
+        't_amb_max
+    End Enum
+
+
     Public Function fComp(ByVal sK As String) As tComp
         sK = Trim(UCase(sK))
         Select Case sK
@@ -180,9 +367,9 @@
             Case tCompCali.F_trac
                 Return "F_trac"
             Case tCompCali.v_veh_acc
-                Return "v_veh_ave"
-            Case tCompCali.a_veh_ave
-                Return "a_veh_ave"
+                Return "v_veh_avg"
+            Case tCompCali.a_veh_avg
+                Return "a_veh_avg"
             Case tCompCali.F_acc
                 Return "F_acc"
             Case tCompCali.F_grd
@@ -268,7 +455,7 @@
                 Return "[N]"
             Case tCompCali.v_veh_acc
                 Return "[km/h]"
-            Case tCompCali.a_veh_ave
+            Case tCompCali.a_veh_avg
                 Return "[m/s2]"
             Case tCompCali.F_acc
                 Return "[N]"
@@ -339,14 +526,14 @@
                 Return "calcT"
             Case tCompErg.n_eng
                 Return "n_eng"
-            Case tCompErg.v_wind_ave
-                Return "v_wind_ave"
+            Case tCompErg.v_wind_avg
+                Return "v_wind_avg"
             Case tCompErg.v_wind_1s
                 Return "v_wind_1s"
             Case tCompErg.v_wind_1s_max
                 Return "v_wind_1s_max"
-            Case tCompErg.beta_ave
-                Return "beta_ave"
+            Case tCompErg.beta_avg
+                Return "beta_avg"
             Case tCompErg.dist
                 Return "delta s"
             Case tCompErg.omega_wh
@@ -361,10 +548,10 @@
                 Return "tq_sum_float"
             Case tCompErg.F_trac
                 Return "F_trac"
-            Case tCompErg.v_veh_ave
-                Return "v_veh_ave"
-            Case tCompErg.a_veh_ave
-                Return "a_veh_ave"
+            Case tCompErg.v_veh_avg
+                Return "v_veh_avg"
+            Case tCompErg.a_veh_avg
+                Return "a_veh_avg"
             Case tCompErg.F_acc
                 Return "F_acc"
             Case tCompErg.F_grd
@@ -427,8 +614,8 @@
                 Return "CdxA_singleDS"
             Case tCompErg.val_User
                 Return "val_User"
-            Case tCompErg.val_vVeh_ave
-                Return "val_vVeh_ave"
+            Case tCompErg.val_vVeh_avg
+                Return "val_vVeh_avg"
             Case tCompErg.val_vVeh_1s
                 Return "val_vVeh_1s"
             Case tCompErg.val_vVeh_f
@@ -496,13 +683,13 @@
                 Return "[-]"
             Case tCompErg.n_eng
                 Return "[rpm]"
-            Case tCompErg.v_wind_ave
+            Case tCompErg.v_wind_avg
                 Return "[m/s]"
             Case tCompErg.v_wind_1s
                 Return "[m/s]"
             Case tCompErg.v_wind_1s_max
                 Return "[m/s]"
-            Case tCompErg.beta_ave
+            Case tCompErg.beta_avg
                 Return "[°]"
             Case tCompErg.dist
                 Return "[m]"
@@ -518,9 +705,9 @@
                 Return "[Nm]"
             Case tCompErg.F_trac
                 Return "[N]"
-            Case tCompErg.v_veh_ave
+            Case tCompErg.v_veh_avg
                 Return "[km/h]"
-            Case tCompErg.a_veh_ave
+            Case tCompErg.a_veh_avg
                 Return "[m/s2]"
             Case tCompErg.F_acc
                 Return "[N]"
@@ -584,7 +771,7 @@
                 Return "[m2]"
             Case tCompErg.val_User
                 Return "[-]"
-            Case tCompErg.val_vVeh_ave
+            Case tCompErg.val_vVeh_avg
                 Return "[-]"
             Case tCompErg.val_vVeh_1s
                 Return "[-]"
@@ -732,54 +919,4 @@
                 Return "ERROR"
         End Select
     End Function
-
-    ' Function with the standard parameter
-    Public Function StdParameter() As Boolean
-        ' Standard values
-        delta_x_max = 10                               ' [m]; +/- size of the control area around a MS start/end point where a trigger signal is valid (driving direction)
-        delta_y_max = 100                              ' [m]; +/- size of the control area around a MS start/end point where a trigger signal is valid (perpendicular to driving direction)
-        delta_head_max = 10                            ' [°]; +/- maximum deviation from heading as read from the csdat-file to the heading from csms-file for a valid dataset
-        ds_min_CAL = 5                                 ' [#]; Minimum number of valid datasets required for the calibration test (per combination of MS ID and DIR ID)
-        ds_min_LS = 1                                  ' [#]; Minimum number of valid datasets required for the low speed test (per combination of MS ID and DIR ID)
-        ds_min_HS = 2                                  ' [#]; Minimum number of valid datasets required for the high speed test (per combination of MS ID and DIR ID)
-        ds_min_head_MS = 10                            ' [#]; Minimum TOTAL number of valid datasets required for the high speed test per heading
-        delta_Hz_max = 1                               ' [%]; maximum allowed deviation of timestep-size in csdat-file from 100Hz
-        acc_corr_ave = 1                               ' [s] averaging of vehicle speed for correction of acceleration forces
-        dist_float = 25                                ' [m]; Distance used for calculation of floatinig average signal used for stabilitay criteria in low speed tests
-        roh_air_ref = 1.1884                           ' [kg/m^3] Reference air density 
-
-        ' Determination constances
-        delta_parallel_max = 20                        ' [°]; maximum heading difference for measurement section (parallelism criteria for test track layout)
-        v_wind_ave_CAL_max = 5                         ' [m/s]; maximum average wind speed during calibration test
-        beta_ave_CAL_max = 5                           ' [°]; maximum average beta during calibration test
-        v_wind_1s_CAL_max = 8                          ' [m/s]; maximum gust wind speed during calibration test
-        v_veh_ave_LS_max = 16                          ' [km/h]; maximum average vehicle speed for low speed test
-        v_veh_ave_LS_min = 9                           ' [km/h]; minimum average vehicle speed for low speed test
-        v_wind_ave_LS_max = 5                          ' [m/s]; maximum average wind speed during low speed test
-        v_wind_1s_LS_max = 8                           ' [m/s]; maximum gust wind speed during low speed test
-        v_veh_float_delta = 0.15                       ' [km/h]; +/- maximum deviation of floating average vehicle speed from average vehicle speed over entire section (low speed test)
-        tq_sum_float_delta = 0.1                       ' [-]; +/- maximum relative deviation of floating average torque from average torque over entire section (low speed test)
-        v_veh_ave_HS_min = 80                          ' [km/h]; minimum average vehicle speed for high speed test
-        v_wind_ave_HS_max = 5                          ' [m/s]; maximum average wind speed during high speed test
-        v_wind_1s_HS_max = 8                           ' [m/s]; maximum gust wind speed during high speed test
-        beta_ave_HS_max = 3                            ' [°]; maximum average beta during high speed test
-        v_veh_1s_delta = 0.3                           ' [km/h]; +/- maximum deviation of 1s average vehicle speed from average vehicle speed over entire section (high speed test)
-        tq_sum_1s_delta = 0.1                          ' [-]; +/- maximum relative deviation of 1s average torque from average torque over entire section (high speed test)
-        leng_crit = 3                                  ' [m]; maximum absolute difference of distance driven with lenght of section as specified in configuration
-        delta_t_tire_max = 5                           ' [°C]; maximum variation of tire temperature between high speed tests and low speed tests
-        delta_RRC_max = 0.3                            ' [kg/t]; maximum difference of RRC from the two low speed runs 
-        t_amb_var = 3                                  ' [°C]; maximum variation of ambient temperature (measured at the vehicle) during the tests (evaluated based on the used datasets only)
-        t_amb_max = 35                                 ' [°C]; Maximum ambient temperature (measured at the vehicle) during the tests (evaluated based on the used datasets only) 
-        t_amb_tarmac = 25                              ' [°C]; Maximum temperature below which no documentation of tarmac conditions is necessary
-        t_amb_min = 0                                  ' [°C]; Minimum ambient temperature (measured at the vehicle) during the tests (evaluated based on the used datasets only)
-
-        ' Evaluation
-        AccC = False
-        GradC = False
-
-        ' Output
-        HzOut = 1
-
-        Return True
-    End Function
 End Module
diff --git a/CSE/CSE_Types.vb b/CSE/CSE_Types.vb
deleted file mode 100644
index faf435ced50624643b42beade441416ce088a2c0..0000000000000000000000000000000000000000
--- a/CSE/CSE_Types.vb
+++ /dev/null
@@ -1,187 +0,0 @@
-Public Enum tComp
-    t
-    lati
-    longi
-    hdg
-    v_veh_GPS
-    v_veh_CAN
-    vair_ar
-    beta_ar
-    n_eng
-    tq_l
-    tq_r
-    t_amb_veh
-    t_tire
-    p_tire
-    fc
-    trigger
-    user_valid
-    Undefined
-End Enum
-
-Public Enum tCompWeat
-    t
-    t_amb_stat
-    p_amp_stat
-    rh_stat
-    Undefined
-End Enum
-
-Public Enum tCompCali
-    t
-    zone_UTM
-    lati_UTM
-    longi_UTM
-    trigger_c
-    SecID
-    DirID
-    lati_root
-    longi_root
-    v_veh_c
-    vair_ic
-    vair_uf
-    beta_ic
-    beta_uf
-    vwind_ha
-    vwind_c
-    vwind_1s
-    vair_c
-    vair_c_sq
-    beta_c
-    dist
-    dist_root
-    alt
-    slope_deg
-    omega_wh
-    omega_p_wh
-    tq_sum
-    tq_sum_1s
-    t_float
-    tq_sum_float
-    F_trac
-    v_veh_acc
-    a_veh_ave
-    F_acc
-    F_grd
-    F_res
-    v_veh_1s
-    v_veh_float
-    t_amp_veh
-    t_amp_stat
-    p_amp_stat
-    rh_stat
-End Enum
-
-Public Enum tCompErg
-    SecID
-    DirID
-    RunID
-    HeadID
-    delta_t
-    v_veh
-    v_MSC
-    v_MSC_GPS
-    s_MSC
-    v_veh_CAN
-    vair_ar
-    vair_ic
-    vair_uf
-    vair
-    beta_ar
-    beta_ic
-    beta_uf
-    user_valid
-    valid
-    used
-    calcT
-    n_eng
-    v_wind_ave
-    v_wind_1s
-    v_wind_1s_max
-    beta_ave
-    dist
-    omega_wh
-    omega_p_wh
-    tq_sum_1s
-    t_float
-    tq_sum_float
-    F_trac
-    F_res_ref
-    v_veh_ave
-    a_veh_ave
-    F_acc
-    F_grd
-    F_res
-    v_veh_1s
-    v_veh_float
-    t_amb_veh
-    t_amb_stat
-    p_amb_stat
-    rh_stat
-    v_air_sq
-    v_veh_1s_max
-    v_veh_1s_min
-    v_veh_float_max
-    v_veh_float_min
-    beta_abs
-    tq_sum
-    tq_sum_1s_max
-    tq_sum_1s_min
-    tq_sum_float_max
-    tq_sum_float_min
-    vp_H2O
-    rho_air
-    t_tire
-    p_tire
-    F0_ref_singleDS
-    F0_singleDS
-    F2_ref_singleDS
-    RRC_singleDS
-    CdxA_singleDS
-    val_User
-    val_vVeh_ave
-    val_vVeh_1s
-    val_vVeh_f
-    val_vWind
-    val_vWind_1s
-    val_tq_f
-    val_tq_1s
-    val_beta
-    val_dist
-End Enum
-
-Public Enum tCompErgReg
-    SecID
-    DirID
-    F0
-    F0_LS1
-    F0_LS2
-    F0_ref
-    F2_ref
-    F0_LS1_ref
-    F2_LS1_ref
-    F0_LS2_ref
-    F2_LS2_ref
-    roh_air_LS
-    beta_abs_HS
-    RRC
-    RRC_LS1
-    RRC_LS2
-    RRC_valid
-    CdxA
-    delta_CdxA
-    CdxA0
-    F0_95
-    F2_95
-    R_sq
-    t_tire_LS_min
-    t_tire_LS_max
-    t_tire_HS_min
-    t_tire_HS_max
-    valid_t_tire
-    't_amb
-    't_amb_min
-    't_amb_max
-End Enum
-
-
diff --git a/CSE/Calculation/Minor_routines_calculate.vb b/CSE/Calculation/Minor_routines_calculate.vb
index 15f532a055bdd11db7397df4d508ee57d0a617bd..b40edd1c509facabcb6418a090bc7c4114d2e1b9 100644
--- a/CSE/Calculation/Minor_routines_calculate.vb
+++ b/CSE/Calculation/Minor_routines_calculate.vb
@@ -36,7 +36,7 @@
         ElseIf Dy < 0 And DX = 0 Then
             QuadReq = 180
         Else
-            fInfWarErr(9, False, "The angle definition is not possible")
+            logme(9, False, "The angle definition is not possible")
             QuadReq = "x"
         End If
     End Function
@@ -57,9 +57,9 @@
         'Check whether Time is not reversed
         For i = 1 To TimeX.Count - 1
             If i = 1 Then tstep = TimeX(i) - TimeX(i - 1)
-            If tstep + (tstep * delta_Hz_max / 100) < Math.Abs(TimeX(i) - TimeX(i - 1)) Or tstep - (tstep * delta_Hz_max / 100) > Math.Abs(TimeX(i) - TimeX(i - 1)) Then
+            If tstep + (tstep * crt.delta_Hz_max / 100) < Math.Abs(TimeX(i) - TimeX(i - 1)) Or tstep - (tstep * crt.delta_Hz_max / 100) > Math.Abs(TimeX(i) - TimeX(i - 1)) Then
                 If Sprung Then
-                    fInfWarErr(9, False, "Time step invalid! t(" & i - 1 & ") = " & TimeX(i - 1) & "[s], t(" & i & ") = " & TimeX(i) & "[s]")
+                    logme(9, False, "Time step invalid! t(" & i - 1 & ") = " & TimeX(i - 1) & "[s], t(" & i & ") = " & TimeX(i) & "[s]")
                     Return False
                 Else
                     Sprung = True
@@ -128,9 +128,9 @@
         'Check whether Time is not reversed
         For i = 1 To TimeX.Count - 1
             If i = 1 Then tstep = TimeX(i) - TimeX(i - 1)
-            If tstep + (tstep * delta_Hz_max / 100) < Math.Abs(TimeX(i) - TimeX(i - 1)) Or tstep - (tstep * delta_Hz_max / 100) > Math.Abs(TimeX(i) - TimeX(i - 1)) Then
+            If tstep + (tstep * crt.delta_Hz_max / 100) < Math.Abs(TimeX(i) - TimeX(i - 1)) Or tstep - (tstep * crt.delta_Hz_max / 100) > Math.Abs(TimeX(i) - TimeX(i - 1)) Then
                 If Sprung Then
-                    fInfWarErr(9, False, "Time step invalid! t(" & i - 1 & ") = " & TimeX(i - 1) & "[s], t(" & i & ") = " & TimeX(i) & "[s]")
+                    logme(9, False, "Time step invalid! t(" & i - 1 & ") = " & TimeX(i - 1) & "[s], t(" & i & ") = " & TimeX(i) & "[s]")
                     Return False
                 Else
                     Sprung = True
@@ -203,7 +203,7 @@
         'Check whether Time is not reversed
         For z = 1 To UBound(TimeX)
             If TimeX(z) < TimeX(z - 1) Then
-                fInfWarErr(9, False, "Time step invalid! t(" & z - 1 & ") = " & TimeX(z - 1) & "[s], t(" & z & ") = " & TimeX(z) & "[s]")
+                logme(9, False, "Time step invalid! t(" & z - 1 & ") = " & TimeX(z - 1) & "[s], t(" & z & ") = " & TimeX(z) & "[s]")
                 Return False
             End If
         Next z
@@ -339,12 +339,12 @@
             Dim vline(), Line() As String
 
             ' Output on the GUI
-            fInfWarErr(5, False, "Read altitude file")
+            logme(5, False, "Read altitude file")
 
             ' Open the MSC spezification file
             If Not FileInAlt.OpenRead(File) Then
                 ' Error if the file is not available
-                fInfWarErr(9, False, "Can´t find the altitude file: " & File)
+                logme(9, False, "Can´t find the altitude file: " & File)
                 Return False
             End If
 
@@ -353,7 +353,7 @@
             vline = FileInAlt.ReadLine
 
             If dist < vline(0) Then
-                fInfWarErr(9, False, "The distance is lower then the minimum in the altitude file")
+                logme(9, False, "The distance is lower then the minimum in the altitude file")
                 BWorker.CancelAsync()
                 fAltInterp = 0
             End If
@@ -431,7 +431,7 @@
 
         ' Erreor message wehen lambda can not be calculated
         If i = 0 Then
-            fInfWarErr(9, False, "Was not able to calculate the distance and bearing between koordinates.")
+            logme(9, False, "Was not able to calculate the distance and bearing between koordinates.")
             BWorker.CancelAsync()
             Return 0  ' formula failed to converge
         End If
diff --git a/CSE/Calculation/Signal_identification.vb b/CSE/Calculation/Signal_identification.vb
index 2a1b4fa1ebf6797c5131e1c7b121a1fb15f4d190..16480128fae966419d26e27ccd99a88481ae329b 100644
--- a/CSE/Calculation/Signal_identification.vb
+++ b/CSE/Calculation/Signal_identification.vb
@@ -1,6 +1,8 @@
-Module Signal_identification
+Imports CSE.cCriteria
+Module Signal_identification
+
     ' Divide the signal into there directions
-    Public Function fIdentifyMS(ByVal MSC As cMSC, ByRef vMSC As cVirtMSC, Optional virtMSC As Boolean = True, Optional ByVal SectionDev As Boolean = True) As Boolean
+    Public Function fIdentifyMS(ByVal MSC As cMSC, ByRef vMSC As cVirtMSC, Optional ByVal virtMSC As Boolean = True, Optional ByVal SectionDev As Boolean = True) As Boolean
         If virtMSC Then
             ' Calculation of the virtual MSC points
             fvirtMSC(MSC, vMSC)
@@ -8,7 +10,7 @@
 
         If SectionDev Then
             ' Output on the GUI
-            fInfWarErr(6, False, "Identifying the sections")
+            logme(6, False, "Identifying the sections")
 
             ' Devide the measured data into there sections
             DevInSec(vMSC)
@@ -16,7 +18,7 @@
             ' Leap in time control
             If JumpPoint <> -1 Then
                 If CalcData(tCompCali.SecID)(JumpPoint) <> 0 Then
-                    fInfWarErr(9, False, "The detected leap in time is inside a measurement section. This is not allowed!")
+                    logme(9, False, "The detected leap in time is inside a measurement section. This is not allowed!")
                     BWorker.CancelAsync()
                     Return False
                 End If
@@ -52,8 +54,8 @@
             Aae = QuadReq(UTMCoordV.Easting - UTMCoordP.Easting, UTMCoordV.Northing - UTMCoordP.Northing)
             MSCVirt.meID.Add(MSCOrg.meID(i))
             MSCVirt.dID.Add(MSCOrg.dID(i))
-            MSCVirt.KoordA.Add(KleinPkt(UTMCoordP.Easting, UTMCoordP.Northing, Aae, 0, -delta_y_max))
-            MSCVirt.KoordE.Add(KleinPkt(UTMCoordP.Easting, UTMCoordP.Northing, Aae, 0, delta_y_max))
+            MSCVirt.KoordA.Add(KleinPkt(UTMCoordP.Easting, UTMCoordP.Northing, Aae, 0, -Crt.trigger_delta_y_max))
+            MSCVirt.KoordE.Add(KleinPkt(UTMCoordP.Easting, UTMCoordP.Northing, Aae, 0, Crt.trigger_delta_y_max))
             MSCVirt.NewSec.Add(False)
             MSCVirt.Head.Add(MSCOrg.head(i))
 
@@ -62,16 +64,16 @@
                     MSCVirt.NewSec.Add(True)
                     MSCVirt.meID.Add(0)
                     MSCVirt.dID.Add(MSCOrg.dID(i))
-                    MSCVirt.KoordA.Add(KleinPkt(UTMCoordP.Easting, UTMCoordP.Northing, Aae, MSCOrg.len(i), -delta_y_max))
-                    MSCVirt.KoordE.Add(KleinPkt(UTMCoordP.Easting, UTMCoordP.Northing, Aae, MSCOrg.len(i), delta_y_max))
+                    MSCVirt.KoordA.Add(KleinPkt(UTMCoordP.Easting, UTMCoordP.Northing, Aae, MSCOrg.len(i), -Crt.trigger_delta_y_max))
+                    MSCVirt.KoordE.Add(KleinPkt(UTMCoordP.Easting, UTMCoordP.Northing, Aae, MSCOrg.len(i), Crt.trigger_delta_y_max))
                     MSCVirt.Head.Add(MSCOrg.head(i))
                 End If
             ElseIf i = MSCOrg.meID.Count - 1 Then
                 MSCVirt.NewSec.Add(True)
                 MSCVirt.meID.Add(0)
                 MSCVirt.dID.Add(MSCOrg.dID(i))
-                MSCVirt.KoordA.Add(KleinPkt(UTMCoordP.Easting, UTMCoordP.Northing, Aae, MSCOrg.len(i), -delta_y_max))
-                MSCVirt.KoordE.Add(KleinPkt(UTMCoordP.Easting, UTMCoordP.Northing, Aae, MSCOrg.len(i), delta_y_max))
+                MSCVirt.KoordA.Add(KleinPkt(UTMCoordP.Easting, UTMCoordP.Northing, Aae, MSCOrg.len(i), -Crt.trigger_delta_y_max))
+                MSCVirt.KoordE.Add(KleinPkt(UTMCoordP.Easting, UTMCoordP.Northing, Aae, MSCOrg.len(i), Crt.trigger_delta_y_max))
                 MSCVirt.Head.Add(MSCOrg.head(i))
             End If
         Next i
@@ -111,7 +113,7 @@
             h = Math.Sqrt((DXep ^ 2 + DYep ^ 2) - p ^ 2)
 
             ' Appropriate if the point is in the detection area
-            If h <= delta_x_max And p > 0 And q > 0 Then
+            If h <= Crt.trigger_delta_x_max And p > 0 And q > 0 Then
                 Return True
             Else
                 Return False
@@ -211,7 +213,7 @@
                 ' Set the direction ID
                 For j = 1 To UBound(SecTest)
                     If SecTest(j) Then
-                        If Math.Abs(InputData(tComp.hdg)(i) - vMSCX.Head(j)) <= delta_head_max Then
+                        If Math.Abs(InputData(tComp.hdg)(i) - vMSCX.Head(j)) <= Crt.delta_head_max Then
                             DirID = vMSCX.dID(j)
                         End If
                     End If
@@ -385,8 +387,8 @@
 
         ' Calculate the section average values
         For i = 0 To CalcData(tCompCali.SecID).Count - 1
-            CalcData(tCompCali.vair_ic).Add(InputData(tComp.vair_ar)(i) * AnemIC(1) + AnemIC(2))
-            CalcData(tCompCali.beta_ic).Add(InputData(tComp.beta_ar)(i) * AnemIC(3) + AnemIC(4))
+            CalcData(tCompCali.vair_ic).Add(InputData(tComp.vair_ar)(i) * Job.v_air_f + Job.v_air_d)
+            CalcData(tCompCali.beta_ic).Add(InputData(tComp.beta_ar)(i) * Job.beta_f + Job.beta_d)
             For Each sKVC In CalcData
                 If CalcData(sKVC.Key).Count <= i Then
                     CalcData(sKVC.Key).Add(0)
@@ -601,9 +603,9 @@
         For i = 0 To CalcData(tCompCali.SecID).Count - 1
             If CalcData(tCompCali.SecID)(i) <> 0 Then
                 If firstIn Then
-                    ErgValues(tCompErg.v_wind_ave)(run) = (CalcData(tCompCali.vwind_c)(i))
+                    ErgValues(tCompErg.v_wind_avg)(run) = (CalcData(tCompCali.vwind_c)(i))
                     ErgValues(tCompErg.v_wind_1s)(run) = (CalcData(tCompCali.vwind_1s)(i))
-                    ErgValues(tCompErg.beta_ave)(run) = (CalcData(tCompCali.beta_c)(i))
+                    ErgValues(tCompErg.beta_avg)(run) = (CalcData(tCompCali.beta_c)(i))
                     ErgValues(tCompErg.vair)(run) = (CalcData(tCompCali.vair_c)(i))
                     ErgValues(tCompErg.beta_uf)(run) = (CalcData(tCompCali.beta_uf)(i))
                     ErgValues(tCompErg.vair_uf)(run) = (CalcData(tCompCali.vair_uf)(i))
@@ -613,9 +615,9 @@
                 Else
                     If (CalcData(tCompCali.SecID)(i) = CalcData(tCompCali.SecID)(i - 1)) And (CalcData(tCompCali.DirID)(i) = CalcData(tCompCali.DirID)(i - 1)) Then
                         ' Build the sum
-                        ErgValues(tCompErg.v_wind_ave)(run) += CalcData(tCompCali.vwind_c)(i)
+                        ErgValues(tCompErg.v_wind_avg)(run) += CalcData(tCompCali.vwind_c)(i)
                         ErgValues(tCompErg.v_wind_1s)(run) += CalcData(tCompCali.vwind_1s)(i)
-                        ErgValues(tCompErg.beta_ave)(run) += CalcData(tCompCali.beta_c)(i)
+                        ErgValues(tCompErg.beta_avg)(run) += CalcData(tCompCali.beta_c)(i)
                         ErgValues(tCompErg.vair)(run) += CalcData(tCompCali.vair_c)(i)
                         ErgValues(tCompErg.beta_uf)(run) += CalcData(tCompCali.beta_uf)(i)
                         ErgValues(tCompErg.vair_uf)(run) += CalcData(tCompCali.vair_uf)(i)
@@ -623,9 +625,9 @@
                         anz += 1
                     Else
                         ' Calculate the results from the last section
-                        ErgValues(tCompErg.v_wind_ave)(run) = ErgValues(tCompErg.v_wind_ave)(run) / anz
+                        ErgValues(tCompErg.v_wind_avg)(run) = ErgValues(tCompErg.v_wind_avg)(run) / anz
                         ErgValues(tCompErg.v_wind_1s)(run) = ErgValues(tCompErg.v_wind_1s)(run) / anz
-                        ErgValues(tCompErg.beta_ave)(run) = ErgValues(tCompErg.beta_ave)(run) / anz
+                        ErgValues(tCompErg.beta_avg)(run) = ErgValues(tCompErg.beta_avg)(run) / anz
                         ErgValues(tCompErg.vair)(run) = ErgValues(tCompErg.vair)(run) / anz
                         ErgValues(tCompErg.beta_uf)(run) = ErgValues(tCompErg.beta_uf)(run) / anz
                         ErgValues(tCompErg.vair_uf)(run) = ErgValues(tCompErg.vair_uf)(run) / anz
@@ -633,9 +635,9 @@
                         ' Add a new Section to the resultfile
                         anz = 1
                         run += 1
-                        ErgValues(tCompErg.v_wind_ave)(run) = (CalcData(tCompCali.vwind_c)(i))
+                        ErgValues(tCompErg.v_wind_avg)(run) = (CalcData(tCompCali.vwind_c)(i))
                         ErgValues(tCompErg.v_wind_1s)(run) = (CalcData(tCompCali.vwind_1s)(i))
-                        ErgValues(tCompErg.beta_ave)(run) = (CalcData(tCompCali.beta_c)(i))
+                        ErgValues(tCompErg.beta_avg)(run) = (CalcData(tCompCali.beta_c)(i))
                         ErgValues(tCompErg.vair)(run) = (CalcData(tCompCali.vair_c)(i))
                         ErgValues(tCompErg.beta_uf)(run) = (CalcData(tCompCali.beta_uf)(i))
                         ErgValues(tCompErg.vair_uf)(run) = (CalcData(tCompCali.vair_uf)(i))
@@ -646,9 +648,9 @@
                 ' Finish calculation after a valid section
                 If run > 0 And firstIn = False Then
                     ' Calculate the results from the last section
-                    ErgValues(tCompErg.v_wind_ave)(run) = ErgValues(tCompErg.v_wind_ave)(run) / anz
+                    ErgValues(tCompErg.v_wind_avg)(run) = ErgValues(tCompErg.v_wind_avg)(run) / anz
                     ErgValues(tCompErg.v_wind_1s)(run) = ErgValues(tCompErg.v_wind_1s)(run) / anz
-                    ErgValues(tCompErg.beta_ave)(run) = ErgValues(tCompErg.beta_ave)(run) / anz
+                    ErgValues(tCompErg.beta_avg)(run) = ErgValues(tCompErg.beta_avg)(run) / anz
                     ErgValues(tCompErg.vair)(run) = ErgValues(tCompErg.vair)(run) / anz
                     ErgValues(tCompErg.beta_uf)(run) = ErgValues(tCompErg.beta_uf)(run) / anz
                     ErgValues(tCompErg.vair_uf)(run) = ErgValues(tCompErg.vair_uf)(run) / anz
@@ -663,7 +665,7 @@
     End Function
 
     ' Calculate the corrected vehicle speed
-    Public Function fCalcSpeedVal(ByVal orgMSCX As cMSC, ByVal vehicleX As cVehicle, ByVal TestRunX As Integer) As Boolean
+    Public Function fCalcSpeedVal(ByVal orgMSCX As cMSC, ByVal vehicleX As cVehicle, ByVal coastingSeq As Integer) As Boolean
         ' Declaration
         Dim i, j, run, anz, RunIDx As Integer
         Dim firstIn As Boolean = True
@@ -672,9 +674,9 @@
         ' Initialise
         run = 0
         anz = 0
-        If TestRunX = 1 Or TestRunX = 3 Then
+        If coastingSeq = 0 Or coastingSeq = 2 Then
             igear = vehicleX.gearRatio_low
-            If TestRunX = 1 Then
+            If coastingSeq = 0 Then
                 RunIDx = IDLS1
             Else
                 RunIDx = IDLS2
@@ -700,16 +702,16 @@
 
             ' Time
             If CalcData(tCompCali.v_veh_c)(i) < (2.5 * 3.6) Then
-                CalcData(tCompCali.t_float)(i) = dist_float / 2.5
+                CalcData(tCompCali.t_float)(i) = Crt.dist_float / 2.5
             Else
-                CalcData(tCompCali.t_float)(i) = dist_float / (CalcData(tCompCali.v_veh_c)(i) / 3.6)
+                CalcData(tCompCali.t_float)(i) = Crt.dist_float / (CalcData(tCompCali.v_veh_c)(i) / 3.6)
             End If
 
             ' F trac raw
             CalcData(tCompCali.F_trac)(i) = (InputData(tComp.tq_l)(i) + InputData(tComp.tq_r)(i)) * CalcData(tCompCali.omega_wh)(i) / (CalcData(tCompCali.v_veh_c)(i) / 3.6)
 
 
-            If GradC Then
+            If Crt.gradient_correction Then
                 If CalcData(tCompCali.SecID)(i) <> 0 Then
                     ' Altitude
                     CalcData(tCompCali.alt)(i) = fAltInterp(orgMSCX.AltPath(fSecPos(orgMSCX, CalcData(tCompCali.SecID)(i), CalcData(tCompCali.DirID)(i))), CalcData(tCompCali.dist_root)(i))
@@ -723,7 +725,7 @@
             For j = 0 To InputWeatherData(tCompWeat.t).Count - 1
                 If j = 0 Then
                     If CalcData(tCompCali.t)(i) < InputWeatherData(tCompWeat.t)(j) And j = 0 Then
-                        fInfWarErr(9, False, "The test time is outside the range of the data from the stationary weather station.")
+                        logme(9, False, "The test time is outside the range of the data from the stationary weather station.")
                         BWorker.CancelAsync()
                         Return False
                     ElseIf CalcData(tCompCali.t)(i) >= InputWeatherData(tCompWeat.t)(j) And CalcData(tCompCali.t)(i) < InputWeatherData(tCompWeat.t)(j + 1) Then
@@ -741,7 +743,7 @@
                     End If
                 End If
                 If j = InputWeatherData(tCompWeat.t).Count - 1 Then
-                    fInfWarErr(9, False, "The test time is outside the range of the data from the stationary weather station.")
+                    logme(9, False, "The test time is outside the range of the data from the stationary weather station.")
                     BWorker.CancelAsync()
                     Return False
                 End If
@@ -752,26 +754,26 @@
         fMoveAve(CalcData(tCompCali.t), CalcData(tCompCali.tq_sum), CalcData(tCompCali.tq_sum_float), CalcData(tCompCali.t_float))
         fMoveAve(CalcData(tCompCali.t), CalcData(tCompCali.tq_sum), CalcData(tCompCali.tq_sum_1s))
         fMoveAve(CalcData(tCompCali.t), CalcData(tCompCali.v_veh_c), CalcData(tCompCali.v_veh_1s))
-        fMoveAve(CalcData(tCompCali.t), CalcData(tCompCali.v_veh_c), CalcData(tCompCali.v_veh_acc), acc_corr_ave)
+        fMoveAve(CalcData(tCompCali.t), CalcData(tCompCali.v_veh_c), CalcData(tCompCali.v_veh_acc), Crt.acc_corr_avg)
         fMoveAve(CalcData(tCompCali.t), CalcData(tCompCali.v_veh_c), CalcData(tCompCali.v_veh_float), CalcData(tCompCali.t_float))
 
         ' Calculate the remaining values
         For i = 0 To CalcData(tCompCali.SecID).Count - 1
             ' Acceleration
             If i = 0 Or i = CalcData(tCompCali.SecID).Count - 1 Then
-                CalcData(tCompCali.a_veh_ave)(i) = 0
+                CalcData(tCompCali.a_veh_avg)(i) = 0
             Else
-                CalcData(tCompCali.a_veh_ave)(i) = (CalcData(tCompCali.v_veh_acc)(i + 1) - CalcData(tCompCali.v_veh_acc)(i - 1)) / (3.6 * 2) * HzIn
+                CalcData(tCompCali.a_veh_avg)(i) = (CalcData(tCompCali.v_veh_acc)(i + 1) - CalcData(tCompCali.v_veh_acc)(i - 1)) / (3.6 * 2) * HzIn
             End If
 
-            If GradC Then
+            If Crt.gradient_correction Then
                 If CalcData(tCompCali.SecID)(i) <> 0 Then
                     ' Slope Deg
                     If i > 0 And i < CalcData(tCompCali.SecID).Count - 1 Then
                         If CalcData(tCompCali.SecID)(i - 1) = CalcData(tCompCali.SecID)(i) And CalcData(tCompCali.SecID)(i + 1) = CalcData(tCompCali.SecID)(i) Then
                             If (CalcData(tCompCali.dist_root)(i + 1) - CalcData(tCompCali.dist_root)(i - 1)) = 0 Then
                                 CalcData(tCompCali.slope_deg)(i) = 0
-                                fInfWarErr(9, False, "Standstill or loss of vehicle speed signal inside MS not permitted (Error at line " & i & ")")
+                                logme(9, False, "Standstill or loss of vehicle speed signal inside MS not permitted (Error at line " & i & ")")
                                 BWorker.CancelAsync()
                             Else
                                 CalcData(tCompCali.slope_deg)(i) = (Math.Asin((CalcData(tCompCali.alt)(i + 1) - CalcData(tCompCali.alt)(i - 1)) / (CalcData(tCompCali.dist_root)(i + 1) - CalcData(tCompCali.dist_root)(i - 1)))) * 180 / Math.PI
@@ -785,12 +787,12 @@
             End If
 
             ' Force acceleration
-            CalcData(tCompCali.F_acc)(i) = vehicleX.testMass * CalcData(tCompCali.a_veh_ave)(i) + vehicleX.wheelsInertia * CalcData(tCompCali.omega_wh)(i) * CalcData(tCompCali.omega_p_wh)(i) / (CalcData(tCompCali.v_veh_c)(i) / 3.6)
+            CalcData(tCompCali.F_acc)(i) = vehicleX.testMass * CalcData(tCompCali.a_veh_avg)(i) + vehicleX.wheelsInertia * CalcData(tCompCali.omega_wh)(i) * CalcData(tCompCali.omega_p_wh)(i) / (CalcData(tCompCali.v_veh_c)(i) / 3.6)
 
             ' Force trajectory
             CalcData(tCompCali.F_res)(i) = CalcData(tCompCali.F_trac)(i)
-            If AccC Then CalcData(tCompCali.F_res)(i) -= CalcData(tCompCali.F_acc)(i)
-            If GradC Then CalcData(tCompCali.F_res)(i) -= CalcData(tCompCali.F_grd)(i)
+            If Crt.accel_correction Then CalcData(tCompCali.F_res)(i) -= CalcData(tCompCali.F_acc)(i)
+            If Crt.gradient_correction Then CalcData(tCompCali.F_res)(i) -= CalcData(tCompCali.F_grd)(i)
         Next i
 
 
@@ -807,8 +809,8 @@
                     ErgValues(tCompErg.tq_sum_float)(run) = (CalcData(tCompCali.tq_sum_float)(i))
                     ErgValues(tCompErg.t_float)(run) = (CalcData(tCompCali.t_float)(i))
                     ErgValues(tCompErg.F_trac)(run) = (CalcData(tCompCali.F_trac)(i))
-                    ErgValues(tCompErg.v_veh_ave)(run) = (CalcData(tCompCali.v_veh_acc)(i))
-                    ErgValues(tCompErg.a_veh_ave)(run) = (CalcData(tCompCali.a_veh_ave)(i))
+                    ErgValues(tCompErg.v_veh_avg)(run) = (CalcData(tCompCali.v_veh_acc)(i))
+                    ErgValues(tCompErg.a_veh_avg)(run) = (CalcData(tCompCali.a_veh_avg)(i))
                     ErgValues(tCompErg.F_acc)(run) = (CalcData(tCompCali.F_acc)(i))
                     ErgValues(tCompErg.F_grd)(run) = (CalcData(tCompCali.F_grd)(i))
                     ErgValues(tCompErg.F_res)(run) = (CalcData(tCompCali.F_res)(i))
@@ -843,8 +845,8 @@
                         ErgValues(tCompErg.tq_sum_float)(run) += (CalcData(tCompCali.tq_sum_float)(i))
                         ErgValues(tCompErg.t_float)(run) += (CalcData(tCompCali.t_float)(i))
                         ErgValues(tCompErg.F_trac)(run) += (CalcData(tCompCali.F_trac)(i))
-                        ErgValues(tCompErg.v_veh_ave)(run) += (CalcData(tCompCali.v_veh_acc)(i))
-                        ErgValues(tCompErg.a_veh_ave)(run) += (CalcData(tCompCali.a_veh_ave)(i))
+                        ErgValues(tCompErg.v_veh_avg)(run) += (CalcData(tCompCali.v_veh_acc)(i))
+                        ErgValues(tCompErg.a_veh_avg)(run) += (CalcData(tCompCali.a_veh_avg)(i))
                         ErgValues(tCompErg.F_acc)(run) += (CalcData(tCompCali.F_acc)(i))
                         ErgValues(tCompErg.F_grd)(run) += (CalcData(tCompCali.F_grd)(i))
                         ErgValues(tCompErg.F_res)(run) += (CalcData(tCompCali.F_res)(i))
@@ -876,8 +878,8 @@
                         ErgValues(tCompErg.tq_sum_float)(run) = ErgValues(tCompErg.tq_sum_float)(run) / anz
                         ErgValues(tCompErg.t_float)(run) = ErgValues(tCompErg.t_float)(run) / anz
                         ErgValues(tCompErg.F_trac)(run) = ErgValues(tCompErg.F_trac)(run) / anz
-                        ErgValues(tCompErg.v_veh_ave)(run) = ErgValues(tCompErg.v_veh_ave)(run) / anz
-                        ErgValues(tCompErg.a_veh_ave)(run) = ErgValues(tCompErg.a_veh_ave)(run) / anz
+                        ErgValues(tCompErg.v_veh_avg)(run) = ErgValues(tCompErg.v_veh_avg)(run) / anz
+                        ErgValues(tCompErg.a_veh_avg)(run) = ErgValues(tCompErg.a_veh_avg)(run) / anz
                         ErgValues(tCompErg.F_acc)(run) = ErgValues(tCompErg.F_acc)(run) / anz
                         ErgValues(tCompErg.F_grd)(run) = ErgValues(tCompErg.F_grd)(run) / anz
                         ErgValues(tCompErg.F_res)(run) = ErgValues(tCompErg.F_res)(run) / anz
@@ -888,13 +890,13 @@
                         ErgValues(tCompErg.p_amb_stat)(run) = ErgValues(tCompErg.p_amb_stat)(run) / anz
                         ErgValues(tCompErg.rh_stat)(run) = ErgValues(tCompErg.rh_stat)(run) / anz
                         ErgValues(tCompErg.v_air_sq)(run) = ErgValues(tCompErg.v_air_sq)(run) / anz
-                        ErgValues(tCompErg.beta_abs)(run) = Math.Abs(ErgValues(tCompErg.beta_ave)(run))
+                        ErgValues(tCompErg.beta_abs)(run) = Math.Abs(ErgValues(tCompErg.beta_avg)(run))
                         ErgValues(tCompErg.vp_H2O)(run) = ((ErgValues(tCompErg.rh_stat)(run) / 100) * 611 * 10 ^ ((7.5 * ErgValues(tCompErg.t_amb_stat)(run)) / (237 + ErgValues(tCompErg.t_amb_stat)(run))))
                         ErgValues(tCompErg.rho_air)(run) = (ErgValues(tCompErg.p_amb_stat)(run) * 100 - ErgValues(tCompErg.vp_H2O)(run)) / (287.05 * (ErgValues(tCompErg.t_amb_veh)(run) + 273.15)) + ErgValues(tCompErg.vp_H2O)(run) / (461.9 * (ErgValues(tCompErg.t_amb_veh)(run) + 273.15))
                         If ErgValues(tCompErg.RunID)(run) = IDHS Then
-                            ErgValues(tCompErg.F_res_ref)(run) = ErgValues(tCompErg.F_res)(run) * f_rollHS * (roh_air_ref / ErgValues(tCompErg.rho_air)(run))
+                            ErgValues(tCompErg.F_res_ref)(run) = ErgValues(tCompErg.F_res)(run) * f_rollHS * (Crt.roh_air_ref / ErgValues(tCompErg.rho_air)(run))
                         Else
-                            ErgValues(tCompErg.F_res_ref)(run) = ErgValues(tCompErg.F_res)(run) * RRC * (roh_air_ref / ErgValues(tCompErg.rho_air)(run))
+                            ErgValues(tCompErg.F_res_ref)(run) = ErgValues(tCompErg.F_res)(run) * Crt.rr_corr_factor * (Crt.roh_air_ref / ErgValues(tCompErg.rho_air)(run))
                         End If
                         ErgValues(tCompErg.t_tire)(run) = ErgValues(tCompErg.t_tire)(run) / anz
                         If OptPar(1) Then ErgValues(tCompErg.p_tire)(run) = ErgValues(tCompErg.p_tire)(run) / anz
@@ -911,8 +913,8 @@
                         ErgValues(tCompErg.tq_sum_float)(run) = (CalcData(tCompCali.tq_sum_float)(i))
                         ErgValues(tCompErg.t_float)(run) = (CalcData(tCompCali.t_float)(i))
                         ErgValues(tCompErg.F_trac)(run) = (CalcData(tCompCali.F_trac)(i))
-                        ErgValues(tCompErg.v_veh_ave)(run) = (CalcData(tCompCali.v_veh_acc)(i))
-                        ErgValues(tCompErg.a_veh_ave)(run) = (CalcData(tCompCali.a_veh_ave)(i))
+                        ErgValues(tCompErg.v_veh_avg)(run) = (CalcData(tCompCali.v_veh_acc)(i))
+                        ErgValues(tCompErg.a_veh_avg)(run) = (CalcData(tCompCali.a_veh_avg)(i))
                         ErgValues(tCompErg.F_acc)(run) = (CalcData(tCompCali.F_acc)(i))
                         ErgValues(tCompErg.F_grd)(run) = (CalcData(tCompCali.F_grd)(i))
                         ErgValues(tCompErg.F_res)(run) = (CalcData(tCompCali.F_res)(i))
@@ -947,8 +949,8 @@
                     ErgValues(tCompErg.tq_sum_float)(run) = ErgValues(tCompErg.tq_sum_float)(run) / anz
                     ErgValues(tCompErg.t_float)(run) = ErgValues(tCompErg.t_float)(run) / anz
                     ErgValues(tCompErg.F_trac)(run) = ErgValues(tCompErg.F_trac)(run) / anz
-                    ErgValues(tCompErg.v_veh_ave)(run) = ErgValues(tCompErg.v_veh_ave)(run) / anz
-                    ErgValues(tCompErg.a_veh_ave)(run) = ErgValues(tCompErg.a_veh_ave)(run) / anz
+                    ErgValues(tCompErg.v_veh_avg)(run) = ErgValues(tCompErg.v_veh_avg)(run) / anz
+                    ErgValues(tCompErg.a_veh_avg)(run) = ErgValues(tCompErg.a_veh_avg)(run) / anz
                     ErgValues(tCompErg.F_acc)(run) = ErgValues(tCompErg.F_acc)(run) / anz
                     ErgValues(tCompErg.F_grd)(run) = ErgValues(tCompErg.F_grd)(run) / anz
                     ErgValues(tCompErg.F_res)(run) = ErgValues(tCompErg.F_res)(run) / anz
@@ -959,13 +961,13 @@
                     ErgValues(tCompErg.p_amb_stat)(run) = ErgValues(tCompErg.p_amb_stat)(run) / anz
                     ErgValues(tCompErg.rh_stat)(run) = ErgValues(tCompErg.rh_stat)(run) / anz
                     ErgValues(tCompErg.v_air_sq)(run) = ErgValues(tCompErg.v_air_sq)(run) / anz
-                    ErgValues(tCompErg.beta_abs)(run) = Math.Abs(ErgValues(tCompErg.beta_ave)(run))
+                    ErgValues(tCompErg.beta_abs)(run) = Math.Abs(ErgValues(tCompErg.beta_avg)(run))
                     ErgValues(tCompErg.vp_H2O)(run) = ((ErgValues(tCompErg.rh_stat)(run) / 100) * 611 * 10 ^ ((7.5 * ErgValues(tCompErg.t_amb_stat)(run)) / (237 + ErgValues(tCompErg.t_amb_stat)(run))))
                     ErgValues(tCompErg.rho_air)(run) = (ErgValues(tCompErg.p_amb_stat)(run) * 100 - ErgValues(tCompErg.vp_H2O)(run)) / (287.05 * (ErgValues(tCompErg.t_amb_veh)(run) + 273.15)) + ErgValues(tCompErg.vp_H2O)(run) / (461.9 * (ErgValues(tCompErg.t_amb_veh)(run) + 273.15))
                     If ErgValues(tCompErg.RunID)(run) = IDHS Then
-                        ErgValues(tCompErg.F_res_ref)(run) = ErgValues(tCompErg.F_res)(run) * f_rollHS * (roh_air_ref / ErgValues(tCompErg.rho_air)(run))
+                        ErgValues(tCompErg.F_res_ref)(run) = ErgValues(tCompErg.F_res)(run) * f_rollHS * (Crt.roh_air_ref / ErgValues(tCompErg.rho_air)(run))
                     Else
-                        ErgValues(tCompErg.F_res_ref)(run) = ErgValues(tCompErg.F_res)(run) * RRC * (roh_air_ref / ErgValues(tCompErg.rho_air)(run))
+                        ErgValues(tCompErg.F_res_ref)(run) = ErgValues(tCompErg.F_res)(run) * Crt.rr_corr_factor * (Crt.roh_air_ref / ErgValues(tCompErg.rho_air)(run))
                     End If
                     ErgValues(tCompErg.t_tire)(run) = ErgValues(tCompErg.t_tire)(run) / anz
                     If OptPar(1) Then ErgValues(tCompErg.p_tire)(run) = ErgValues(tCompErg.p_tire)(run) / anz
diff --git a/CSE/Calculation/main_calculation_call.vb b/CSE/Calculation/main_calculation_call.vb
index 37211e21155789946050260147a1b21d0c7f0621..49d9268211deb0f038ebb3f24a2eb803bceb6cb3 100644
--- a/CSE/Calculation/main_calculation_call.vb
+++ b/CSE/Calculation/main_calculation_call.vb
@@ -20,16 +20,16 @@
             Dim vMSC As New cVirtMSC
 
             ' Read the input data
-            fInfWarErr(7, False, "Reading Input Files...")
-            Dim vehicle As New cVehicle(Vehspez)
-            ReadInputMSC(MSC, MSCCSpez, isCalibrate)
-            ReadDataFile(DataSpez(1), MSC)
+            logme(7, False, "Reading Input Files...")
+            Dim vehicle As New cVehicle(Job.vehicle_fpath)
+            ReadInputMSC(MSC, Job.calib_track_fpath, isCalibrate)
+            ReadDataFile(Job.calib_run_fpath, MSC)
 
             ' Exit function if error is detected
             If BWorker.CancellationPending Then Return False
 
             ' Output on the GUI
-            fInfWarErr(7, False, "Calculating the calibration run...")
+            logme(7, False, "Calculating the calibration run...")
 
             ' Identify the signal measurement sections
             fIdentifyMS(MSC, vMSC)
@@ -38,7 +38,7 @@
             If BWorker.CancellationPending Then Return False
 
             ' Output on the GUI
-            fInfWarErr(6, False, "Calculating the calibration run parameter")
+            logme(6, False, "Calculating the calibration run parameter")
 
             ' Calculate the results from the calibration test
             fCalcCalib(MSC, vehicle)
@@ -47,24 +47,23 @@
             'If BWorker.CancellationPending Then Return False
 
             ' Output on the GUI
-            fInfWarErr(7, False, "Writing the output files...")
+            logme(7, False, "Writing the output files...")
 
             ' Output
-            fOutDataCalc1Hz(DataSpez(1), isCalibrate)
-            fOutCalcRes(DataSpez, isCalibrate)
+            fOutDataCalc1Hz(Job.calib_run_fpath, isCalibrate)
+            fOutCalcRes(isCalibrate)
         Else
-            ' Declarations
             Dim MSC As New cMSC
             Dim vMSC As New cVirtMSC
 
             ' Output on the GUI
-            fInfWarErr(7, False, "Calculating the speed runs...")
+            logme(7, False, "Calculating the speed runs...")
 
             ' Read the input files
-            fInfWarErr(7, False, "Reading Input Files...")
-            Dim vehicle As New cVehicle(Vehspez)
-            ReadInputMSC(MSC, MSCTSpez, isCalibrate)
-            ReadWeather(Ambspez)
+            logme(7, False, "Reading Input Files...")
+            Dim vehicle As New cVehicle(Job.vehicle_fpath)
+            ReadInputMSC(MSC, Job.coast_track_fpath, isCalibrate)
+            ReadWeather(Job.ambient_fpath)
 
             ' Calculation of the virtual MSC points
             fIdentifyMS(MSC, vMSC, , False)
@@ -73,22 +72,22 @@
             If BWorker.CancellationPending Then Return False
 
             ' Output which test are calculated
-            For i = 2 To UBound(DataSpez)
-                If i = 2 Or i = 4 Then
+            For i = 0 To UBound(Job.coasting_fpaths)
+                If i = 0 Or i = 2 Then
                     ' Output on the GUI
-                    If i = 2 Then
-                        fInfWarErr(7, False, "Calculating the first low speed run...")
+                    If i = 0 Then
+                        logme(7, False, "Calculating the first low speed run...")
                     Else
-                        fInfWarErr(7, False, "Calculating the second low speed run...")
+                        logme(7, False, "Calculating the second low speed run...")
                     End If
                 Else
                     ' Output on the GUI
-                    fInfWarErr(7, False, "Calculating the high speed run...")
+                    logme(7, False, "Calculating the high speed run...")
                 End If
 
                 ' Output on the GUI
-                fInfWarErr(6, False, "Reading the data file...")
-                ReadDataFile(DataSpez(i), MSC)
+                logme(6, False, "Reading the data file...")
+                ReadDataFile(Job.coasting_fpaths(i), MSC)
 
                 ' Exit function if error is detected
                 If BWorker.CancellationPending Then Return False
@@ -100,19 +99,19 @@
                 If BWorker.CancellationPending Then Return False
 
                 ' Calculate the run
-                fCalcRun(MSC, vehicle, i - 1)
+                fCalcRun(MSC, vehicle, i)
 
                 ' Exit function if error is detected
                 If BWorker.CancellationPending Then Return False
 
                 ' Output on the GUI
-                fInfWarErr(6, False, "Writing the output files...")
+                logme(6, False, "Writing the output files...")
 
                 ' Output
-                fOutDataCalc1Hz(DataSpez(i), isCalibrate)
+                fOutDataCalc1Hz(Job.coasting_fpaths(i), isCalibrate)
 
                 ' Save the Result dictionaries
-                fSaveDic(i - 1)
+                fSaveDic(i)
 
                 ' Exit function if error is detected
                 If BWorker.CancellationPending Then Return False
@@ -133,8 +132,8 @@
             ' Exit function if error is detected
             If BWorker.CancellationPending Then
                 ' Write the summerised output file
-                fInfWarErr(7, False, "Writing the summarised output file...")
-                fOutCalcRes(DataSpez, isCalibrate)
+                logme(7, False, "Writing the summarised output file...")
+                fOutCalcRes(isCalibrate)
                 Return False
             End If
 
@@ -142,8 +141,8 @@
             fCalcReg(vehicle)
 
             ' Write the summerised output file
-            fInfWarErr(7, False, "Writing the summarised output file...")
-            fOutCalcRes(DataSpez, isCalibrate)
+            logme(7, False, "Writing the summarised output file...")
+            fOutCalcRes(isCalibrate)
 
             ' Check if all is valid
             For i = 0 To ErgValuesReg(tCompErgReg.SecID).Count - 1
@@ -152,13 +151,13 @@
             Next i
 
             ' Output of the final data
-            fOutCalcResReg(DataSpez)
+            fOutCalcResReg()
 
             ' Write the results on the GUI
-            fInfWarErr(7, False, "Results from the calculation")
-            fInfWarErr(6, False, "average absolute beta HS test: " & Math.Round(beta, 4))
-            fInfWarErr(6, False, "delta CdxA correction: " & Math.Round(delta_CdxA, 4))
-            fInfWarErr(6, False, "CdxA(0): " & Math.Round(CdxA0, 4))
+            logme(7, False, "Results from the calculation")
+            logme(6, False, "average absolute beta HS test: " & Math.Round(beta, 4))
+            logme(6, False, "delta CdxA correction: " & Math.Round(delta_CdxA, 4))
+            logme(6, False, "CdxA(0): " & Math.Round(CdxA0, 4))
 
             ' Clear the dictionaries
             ErgValuesComp = Nothing
@@ -221,7 +220,7 @@
 
             ' Error
             If run > 10 Then
-                fInfWarErr(9, False, "The calibration is not possible because iteration for valid datasets does not converge (n>10)")
+                logme(9, False, "The calibration is not possible because iteration for valid datasets does not converge (n>10)")
                 Change = False
                 BWorker.CancelAsync()
                 Return False
@@ -232,7 +231,7 @@
     End Function
 
     ' Calculate the speed run parameter
-    Function fCalcRun(ByVal MSCX As cMSC, ByVal vehicleX As cVehicle, ByVal TestRun As Integer) As Boolean
+    Function fCalcRun(ByVal MSCX As cMSC, ByVal vehicleX As cVehicle, ByVal coastingSeq As Integer) As Boolean
         ' Calculate the corrected vehicle speed
         fCalcCorVveh()
 
@@ -246,10 +245,10 @@
         fWindBetaAirErg()
 
         ' Calculate the other speed run relevant values
-        fCalcSpeedVal(MSCX, vehicleX, TestRun)
+        fCalcSpeedVal(MSCX, vehicleX, coastingSeq)
 
         ' Evaluate the valid sections
-        fCalcValidSec(MSCX, TestRun)
+        fCalcValidSec(MSCX, coastingSeq)
 
         Return True
     End Function
@@ -309,7 +308,7 @@
         ' error message if the CAN velocity is 0
         For i = 0 To UBound(CalcX)
             If ave_vn(i) = 0 And VSec(i) = 1 Then
-                fInfWarErr(9, False, "The measured vehicle velocity (v_veh_CAN) is 0 in section: " & CalcX(i))
+                logme(9, False, "The measured vehicle velocity (v_veh_CAN) is 0 in section: " & CalcX(i))
                 BWorker.CancelAsync()
                 Return False
             End If
@@ -484,7 +483,7 @@
 
         ' Set the values
         For i = 0 To ErgValues(tCompErg.SecID).Count - 1
-            If ErgValues(tCompErg.v_wind_ave)(i) < v_wind_ave_CAL_max And Math.Abs(ErgValues(tCompErg.beta_ave)(i)) < beta_ave_CAL_max And ErgValues(tCompErg.v_wind_1s_max)(i) < v_wind_1s_CAL_max And ErgValues(tCompErg.user_valid)(i) = 1 Then
+            If ErgValues(tCompErg.v_wind_avg)(i) < Crt.v_wind_avg_max_CAL And Math.Abs(ErgValues(tCompErg.beta_avg)(i)) < Crt.beta_avg_max_CAL And ErgValues(tCompErg.v_wind_1s_max)(i) < Crt.v_wind_1s_max_CAL And ErgValues(tCompErg.user_valid)(i) = 1 Then
                 ErgValues(tCompErg.valid)(i) = 1
                 ErgValues(tCompErg.used)(i) = 1
             Else
@@ -552,7 +551,7 @@
 
         ' Ceck if enough sections are detected
         If SecCount.AnzSec.Count - 1 < 1 Then
-            fInfWarErr(9, False, "Insufficent numbers of valid measurement sections available")
+            logme(9, False, "Insufficent numbers of valid measurement sections available")
             BWorker.CancelAsync()
             Return False
         End If
@@ -562,7 +561,7 @@
             For j = i + 1 To SecCount.NameSec.Count - 1
                 If Trim(Mid(SecCount.NameSec(i), 1, InStr(SecCount.NameSec(i), "(") - 2)) = Trim(Mid(SecCount.NameSec(j), 1, InStr(SecCount.NameSec(j), "(") - 2)) Then
                     ' If enought sections in both directions are detected
-                    If SecCount.AnzSec(i) >= ds_min_CAL And SecCount.AnzSec(j) >= ds_min_CAL Then
+                    If SecCount.AnzSec(i) >= Crt.segruns_min_CAL And SecCount.AnzSec(j) >= Crt.segruns_min_CAL Then
                         ' Set the whole sections on valid
                         SecCount.ValidSec(i) = True
                         SecCount.ValidSec(j) = True
@@ -613,7 +612,7 @@
             End If
         Next i
         If anz < 2 Then
-            fInfWarErr(9, False, "Insufficent numbers of valid measurement sections available")
+            logme(9, False, "Insufficent numbers of valid measurement sections available")
             BWorker.CancelAsync()
             Return False
         End If
@@ -701,7 +700,7 @@
 
         ' Ceck if enough sections are detected
         If SecCount.AnzSec.Count - 1 < 1 Then
-            fInfWarErr(9, False, "Insufficent numbers of valid measurement sections in the low speed test available")
+            logme(9, False, "Insufficent numbers of valid measurement sections in the low speed test available")
             BWorker.CancelAsync()
             Return False
         End If
@@ -712,7 +711,7 @@
                 If Trim(Mid(SecCount.NameSec(i), 1, InStr(SecCount.NameSec(i), "(") - 2)) = Trim(Mid(SecCount.NameSec(j), 1, InStr(SecCount.NameSec(j), "(") - 2)) And _
                    Trim(Mid(SecCount.NameSec(i), InStr(SecCount.NameSec(i), "(") + 1, InStr(SecCount.NameSec(i), ",") - (InStr(SecCount.NameSec(i), "(") + 1))) = Trim(Mid(SecCount.NameSec(j), InStr(SecCount.NameSec(j), "(") + 1, InStr(SecCount.NameSec(j), ",") - (InStr(SecCount.NameSec(j), "(") + 1))) Then
                     ' If enought sections in both directions are detected
-                    If SecCount.AnzSec(i) >= ds_min_LS And SecCount.AnzSec(j) >= ds_min_LS Then
+                    If SecCount.AnzSec(i) >= Crt.segruns_min_LS And SecCount.AnzSec(j) >= Crt.segruns_min_LS Then
 
                         ' If not both the same number
                         If Not SecCount.AnzSec(i) = SecCount.AnzSec(j) Then
@@ -741,7 +740,7 @@
                             End If
                         End If
                     Else
-                        fInfWarErr(9, False, "Not enough valid data for low speed tests available in section " & Trim(Mid(SecCount.NameSec(i), 1, InStr(SecCount.NameSec(i), "(") - 2)))
+                        logme(9, False, "Not enough valid data for low speed tests available in section " & Trim(Mid(SecCount.NameSec(i), 1, InStr(SecCount.NameSec(i), "(") - 2)))
                     End If
                 End If
             Next j
@@ -817,7 +816,7 @@
 
         ' Ceck if enough sections are detected
         If SecCount.AnzSec.Count - 1 < 1 Then
-            fInfWarErr(9, False, "Insufficent numbers of valid measurement sections in the high speed test available")
+            logme(9, False, "Insufficent numbers of valid measurement sections in the high speed test available")
             BWorker.CancelAsync()
             Return False
         End If
@@ -827,7 +826,7 @@
             For j = i + 1 To SecCount.NameSec.Count - 1
                 If Trim(Mid(SecCount.NameSec(i), InStr(SecCount.NameSec(i), ",") + 1, InStr(SecCount.NameSec(i), ")") - (InStr(SecCount.NameSec(i), ",") + 1))) = Trim(Mid(SecCount.NameSec(j), InStr(SecCount.NameSec(j), ",") + 1, InStr(SecCount.NameSec(j), ")") - (InStr(SecCount.NameSec(j), ",") + 1))) Then
                     ' If enought sections in both directions are detected
-                    If SecCount.AnzSec(i) >= ds_min_HS And SecCount.AnzSec(j) >= ds_min_HS Then
+                    If SecCount.AnzSec(i) >= Crt.segruns_min_HS And SecCount.AnzSec(j) >= Crt.segruns_min_HS Then
                         ' Count the valid tests per HeadID
                         Select Case Trim(Mid(SecCount.NameSec(i), InStr(SecCount.NameSec(i), ",") + 1, InStr(SecCount.NameSec(i), ")") - (InStr(SecCount.NameSec(i), ",") + 1)))
                             Case 1
@@ -835,12 +834,12 @@
                             Case 2
                                 anzHS2 += SecCount.AnzSec(i) + SecCount.AnzSec(j)
                             Case Else
-                                fInfWarErr(9, False, "headID not known")
+                                logme(9, False, "headID not known")
                                 BWorker.CancelAsync()
                                 Return False
                         End Select
                     Else
-                        fInfWarErr(9, False, "Not enough valid data for high speed tests available in section " & Trim(Mid(SecCount.NameSec(i), 1, InStr(SecCount.NameSec(i), "(") - 2)))
+                        logme(9, False, "Not enough valid data for high speed tests available in section " & Trim(Mid(SecCount.NameSec(i), 1, InStr(SecCount.NameSec(i), "(") - 2)))
                         BWorker.CancelAsync()
                     End If
                 End If
@@ -848,8 +847,8 @@
         Next i
 
         ' Ceck if enough sections are detected
-        If anzHS1 < ds_min_head_MS Or anzHS2 < ds_min_head_MS Then
-            fInfWarErr(9, False, "Number of valid high speed datasets too low")
+        If anzHS1 < Crt.segruns_min_head_MS Or anzHS2 < Crt.segruns_min_head_MS Then
+            logme(9, False, "Number of valid high speed datasets too low")
             BWorker.CancelAsync()
             'Return False
         End If
@@ -892,29 +891,29 @@
     End Function
 
     ' Evaluate the Valid sections
-    Function fCalcValidSec(ByVal MSCX As cMSC, ByVal RunTestX As Integer) As Boolean
+    Function fCalcValidSec(ByVal MSCX As cMSC, ByVal coastingSeq As Integer) As Boolean
         ' Declaration
         Dim i As Integer
 
         ' Evaluation
-        Select Case RunTestX
-            Case 1, 3 ' Low speed test
+        Select Case coastingSeq
+            Case 0, 2 ' Low speed test
                 For i = 0 To ErgValues(tCompErg.SecID).Count - 1
                     ' Identify whitch criteria is not valid
                     If ErgValues(tCompErg.user_valid)(i) = 1 Then ErgValues(tCompErg.val_User)(i) = 1
-                    If ErgValues(tCompErg.v_veh)(i) < v_veh_ave_LS_max And _
-                       ErgValues(tCompErg.v_veh)(i) > v_veh_ave_LS_min Then ErgValues(tCompErg.val_vVeh_ave)(i) = 1
-                    If ErgValues(tCompErg.v_wind_ave)(i) < v_wind_ave_LS_max Then ErgValues(tCompErg.val_vWind)(i) = 1
-                    If ErgValues(tCompErg.v_wind_1s_max)(i) < v_wind_1s_LS_max Then ErgValues(tCompErg.val_vWind_1s)(i) = 1
-                    If ErgValues(tCompErg.v_veh_float_max)(i) < (ErgValues(tCompErg.v_veh)(i) + v_veh_float_delta) And _
-                       ErgValues(tCompErg.v_veh_float_min)(i) > (ErgValues(tCompErg.v_veh)(i) - v_veh_float_delta) Then ErgValues(tCompErg.val_vVeh_f)(i) = 1
-                    If ErgValues(tCompErg.tq_sum_float_max)(i) < (ErgValues(tCompErg.tq_sum)(i) * (1 + tq_sum_float_delta)) And _
-                       ErgValues(tCompErg.tq_sum_float_min)(i) > (ErgValues(tCompErg.tq_sum)(i) * (1 - tq_sum_float_delta)) Then ErgValues(tCompErg.val_tq_f)(i) = 1
-                    If ErgValues(tCompErg.dist)(i) < fSecLen(MSCX, ErgValues(tCompErg.SecID)(i), ErgValues(tCompErg.DirID)(i)) + leng_crit And _
-                       ErgValues(tCompErg.dist)(i) > fSecLen(MSCX, ErgValues(tCompErg.SecID)(i), ErgValues(tCompErg.DirID)(i)) - leng_crit Then ErgValues(tCompErg.val_dist)(i) = 1
+                    If ErgValues(tCompErg.v_veh)(i) < Crt.v_veh_avg_max_LS And _
+                       ErgValues(tCompErg.v_veh)(i) > Crt.v_veh_avg_min_LS Then ErgValues(tCompErg.val_vVeh_avg)(i) = 1
+                    If ErgValues(tCompErg.v_wind_avg)(i) < Crt.v_wind_avg_max_LS Then ErgValues(tCompErg.val_vWind)(i) = 1
+                    If ErgValues(tCompErg.v_wind_1s_max)(i) < Crt.v_wind_1s_max_LS Then ErgValues(tCompErg.val_vWind_1s)(i) = 1
+                    If ErgValues(tCompErg.v_veh_float_max)(i) < (ErgValues(tCompErg.v_veh)(i) + Crt.v_veh_float_delta_LS) And _
+                       ErgValues(tCompErg.v_veh_float_min)(i) > (ErgValues(tCompErg.v_veh)(i) - Crt.v_veh_float_delta_LS) Then ErgValues(tCompErg.val_vVeh_f)(i) = 1
+                    If ErgValues(tCompErg.tq_sum_float_max)(i) < (ErgValues(tCompErg.tq_sum)(i) * (1 + Crt.tq_sum_float_delta_LS)) And _
+                       ErgValues(tCompErg.tq_sum_float_min)(i) > (ErgValues(tCompErg.tq_sum)(i) * (1 - Crt.tq_sum_float_delta_LS)) Then ErgValues(tCompErg.val_tq_f)(i) = 1
+                    If ErgValues(tCompErg.dist)(i) < fSecLen(MSCX, ErgValues(tCompErg.SecID)(i), ErgValues(tCompErg.DirID)(i)) + Crt.leng_crit And _
+                       ErgValues(tCompErg.dist)(i) > fSecLen(MSCX, ErgValues(tCompErg.SecID)(i), ErgValues(tCompErg.DirID)(i)) - Crt.leng_crit Then ErgValues(tCompErg.val_dist)(i) = 1
 
                     ' Check if all criterias are valid
-                    If ErgValues(tCompErg.val_User)(i) = 1 And ErgValues(tCompErg.val_vVeh_ave)(i) = 1 And ErgValues(tCompErg.val_vWind)(i) = 1 And _
+                    If ErgValues(tCompErg.val_User)(i) = 1 And ErgValues(tCompErg.val_vVeh_avg)(i) = 1 And ErgValues(tCompErg.val_vWind)(i) = 1 And _
                        ErgValues(tCompErg.val_vWind_1s)(i) = 1 And ErgValues(tCompErg.val_vVeh_f)(i) = 1 And ErgValues(tCompErg.val_tq_f)(i) = 1 And ErgValues(tCompErg.val_dist)(i) = 1 Then
                         ErgValues(tCompErg.valid)(i) = 1
                         ErgValues(tCompErg.used)(i) = 1
@@ -928,23 +927,23 @@
                     ErgValues(tCompErg.val_vVeh_1s)(i) = 1
                     ErgValues(tCompErg.val_tq_1s)(i) = 1
                 Next i
-            Case 2 ' high speed test
+            Case Else ' high speed test
                 For i = 0 To ErgValues(tCompErg.SecID).Count - 1
                     ' Identify whitch criteria is not valid
                     If ErgValues(tCompErg.user_valid)(i) = 1 Then ErgValues(tCompErg.val_User)(i) = 1
-                    If ErgValues(tCompErg.v_veh)(i) > v_veh_ave_HS_min Then ErgValues(tCompErg.val_vVeh_ave)(i) = 1
-                    If ErgValues(tCompErg.v_wind_ave)(i) < v_wind_ave_HS_max Then ErgValues(tCompErg.val_vWind)(i) = 1
-                    If ErgValues(tCompErg.v_wind_1s_max)(i) < v_wind_1s_HS_max Then ErgValues(tCompErg.val_vWind_1s)(i) = 1
-                    If ErgValues(tCompErg.beta_abs)(i) < beta_ave_HS_max Then ErgValues(tCompErg.val_beta)(i) = 1
-                    If ErgValues(tCompErg.v_veh_1s_max)(i) < (ErgValues(tCompErg.v_veh)(i) + v_veh_1s_delta) And _
-                       ErgValues(tCompErg.v_veh_1s_min)(i) > (ErgValues(tCompErg.v_veh)(i) - v_veh_1s_delta) Then ErgValues(tCompErg.val_vVeh_1s)(i) = 1
-                    If ErgValues(tCompErg.tq_sum_1s_max)(i) < (ErgValues(tCompErg.tq_sum)(i) * (1 + tq_sum_1s_delta)) And _
-                       ErgValues(tCompErg.tq_sum_1s_min)(i) > (ErgValues(tCompErg.tq_sum)(i) * (1 - tq_sum_1s_delta)) Then ErgValues(tCompErg.val_tq_1s)(i) = 1
-                    If ErgValues(tCompErg.dist)(i) < fSecLen(MSCX, ErgValues(tCompErg.SecID)(i), ErgValues(tCompErg.DirID)(i)) + leng_crit And _
-                       ErgValues(tCompErg.dist)(i) > fSecLen(MSCX, ErgValues(tCompErg.SecID)(i), ErgValues(tCompErg.DirID)(i)) - leng_crit Then ErgValues(tCompErg.val_dist)(i) = 1
+                    If ErgValues(tCompErg.v_veh)(i) > Crt.v_veh_avg_min_HS Then ErgValues(tCompErg.val_vVeh_avg)(i) = 1
+                    If ErgValues(tCompErg.v_wind_avg)(i) < Crt.v_wind_avg_max_HS Then ErgValues(tCompErg.val_vWind)(i) = 1
+                    If ErgValues(tCompErg.v_wind_1s_max)(i) < Crt.v_wind_1s_max_HS Then ErgValues(tCompErg.val_vWind_1s)(i) = 1
+                    If ErgValues(tCompErg.beta_abs)(i) < Crt.beta_avg_max_HS Then ErgValues(tCompErg.val_beta)(i) = 1
+                    If ErgValues(tCompErg.v_veh_1s_max)(i) < (ErgValues(tCompErg.v_veh)(i) + Crt.v_veh_1s_delta_HS) And _
+                       ErgValues(tCompErg.v_veh_1s_min)(i) > (ErgValues(tCompErg.v_veh)(i) - Crt.v_veh_1s_delta_HS) Then ErgValues(tCompErg.val_vVeh_1s)(i) = 1
+                    If ErgValues(tCompErg.tq_sum_1s_max)(i) < (ErgValues(tCompErg.tq_sum)(i) * (1 + Crt.tq_sum_1s_delta_HS)) And _
+                       ErgValues(tCompErg.tq_sum_1s_min)(i) > (ErgValues(tCompErg.tq_sum)(i) * (1 - Crt.tq_sum_1s_delta_HS)) Then ErgValues(tCompErg.val_tq_1s)(i) = 1
+                    If ErgValues(tCompErg.dist)(i) < fSecLen(MSCX, ErgValues(tCompErg.SecID)(i), ErgValues(tCompErg.DirID)(i)) + Crt.leng_crit And _
+                       ErgValues(tCompErg.dist)(i) > fSecLen(MSCX, ErgValues(tCompErg.SecID)(i), ErgValues(tCompErg.DirID)(i)) - Crt.leng_crit Then ErgValues(tCompErg.val_dist)(i) = 1
 
                     ' Check if all criterias are valid
-                    If ErgValues(tCompErg.val_User)(i) = 1 And ErgValues(tCompErg.val_vVeh_ave)(i) = 1 And ErgValues(tCompErg.val_vWind)(i) = 1 And ErgValues(tCompErg.val_vWind_1s)(i) = 1 And _
+                    If ErgValues(tCompErg.val_User)(i) = 1 And ErgValues(tCompErg.val_vVeh_avg)(i) = 1 And ErgValues(tCompErg.val_vWind)(i) = 1 And ErgValues(tCompErg.val_vWind_1s)(i) = 1 And _
                        ErgValues(tCompErg.val_beta)(i) = 1 And ErgValues(tCompErg.val_vVeh_1s)(i) = 1 And ErgValues(tCompErg.val_tq_1s)(i) = 1 And ErgValues(tCompErg.val_dist)(i) = 1 Then
                         ErgValues(tCompErg.valid)(i) = 1
                         ErgValues(tCompErg.used)(i) = 1
@@ -963,13 +962,13 @@
     End Function
 
     ' Save the Dictionaries
-    Function fSaveDic(ByVal TestRunX As Integer) As Boolean
+    Function fSaveDic(ByVal coastingSeq As Integer) As Boolean
         ' Declaration
         Dim sKV As New KeyValuePair(Of tCompErg, List(Of Double))
         Dim sKVUndef As New KeyValuePair(Of String, List(Of Double))
 
         ' Initialisation
-        If TestRunX = 1 Then
+        If coastingSeq = 0 Then
             ErgValuesComp = New Dictionary(Of tCompErg, List(Of Double))
             ErgValuesUndefComp = New Dictionary(Of String, List(Of Double))
             UnitsErgUndefComp = New Dictionary(Of String, List(Of String))
diff --git a/CSE/Calculation/sub_linear_regression.vb b/CSE/Calculation/sub_linear_regression.vb
index c60fe3500c1449889518c9a3327dd27201e0151c..a116b4e11e9cf243ea74ab45c9bae17fa4cd0148 100644
--- a/CSE/Calculation/sub_linear_regression.vb
+++ b/CSE/Calculation/sub_linear_regression.vb
@@ -10,7 +10,7 @@
         Dim EnumStr As tCompErgReg
 
         ' Output on the GUI
-        fInfWarErr(7, False, "Calculate the linear regression...")
+        logme(7, False, "Calculate the linear regression...")
 
         ' Initialisation
         lauf = -1
@@ -207,10 +207,10 @@
 
                         ' Save the values
                         ErgValuesComp(tCompErg.F0_ref_singleDS)(PosHS(j)) = F0
-                        ErgValuesComp(tCompErg.F0_singleDS)(PosHS(j)) = F0 * (ErgValuesComp(tCompErg.rho_air)(PosHS(j)) / roh_air_ref)
+                        ErgValuesComp(tCompErg.F0_singleDS)(PosHS(j)) = F0 * (ErgValuesComp(tCompErg.rho_air)(PosHS(j)) / Crt.roh_air_ref)
                         ErgValuesComp(tCompErg.F2_ref_singleDS)(PosHS(j)) = F2
                         ErgValuesComp(tCompErg.RRC_singleDS)(PosHS(j)) = (ErgValuesComp(tCompErg.F0_singleDS)(PosHS(j)) / (vehicle.testMass * 9.81)) * 1000
-                        ErgValuesComp(tCompErg.CdxA_singleDS)(PosHS(j)) = 2 * F2 / roh_air_ref
+                        ErgValuesComp(tCompErg.CdxA_singleDS)(PosHS(j)) = 2 * F2 / Crt.roh_air_ref
                     Next j
 
                     '***** Calculate the linear regression for LS1
@@ -228,7 +228,7 @@
 
                     ' Save the values
                     ErgValuesReg(tCompErgReg.F0_LS1_ref).Add(F0)
-                    ErgValuesReg(tCompErgReg.F0_LS1).Add(F0 * (Roh_air_LS1 / numLS1) / roh_air_ref)
+                    ErgValuesReg(tCompErgReg.F0_LS1).Add(F0 * (Roh_air_LS1 / numLS1) / Crt.roh_air_ref)
                     ErgValuesReg(tCompErgReg.F2_LS1_ref).Add(F2)
                     ErgValuesReg(tCompErgReg.RRC_LS1).Add((ErgValuesReg(tCompErgReg.F0_LS1)(lauf) / (vehicle.testMass * 9.81)) * 1000)
 
@@ -247,11 +247,11 @@
 
                     ' Save the values
                     ErgValuesReg(tCompErgReg.F0_LS2_ref).Add(F0)
-                    ErgValuesReg(tCompErgReg.F0_LS2).Add(F0 * (Roh_air_LS2 / numLS2) / roh_air_ref)
+                    ErgValuesReg(tCompErgReg.F0_LS2).Add(F0 * (Roh_air_LS2 / numLS2) / Crt.roh_air_ref)
                     ErgValuesReg(tCompErgReg.F2_LS2_ref).Add(F2)
                     ErgValuesReg(tCompErgReg.RRC_LS2).Add((ErgValuesReg(tCompErgReg.F0_LS2)(lauf) / (vehicle.testMass * 9.81)) * 1000)
 
-                    If Math.Abs(ErgValuesReg(tCompErgReg.RRC_LS1)(lauf) - ErgValuesReg(tCompErgReg.RRC_LS2)(lauf)) > delta_RRC_max Then
+                    If Math.Abs(ErgValuesReg(tCompErgReg.RRC_LS1)(lauf) - ErgValuesReg(tCompErgReg.RRC_LS2)(lauf)) > Crt.delta_rr_corr_max Then
                         ErgValuesReg(tCompErgReg.RRC_valid).Add(0)
                     Else
                         ErgValuesReg(tCompErgReg.RRC_valid).Add(1)
@@ -280,14 +280,14 @@
                     ' Calculate additional values
                     ErgValuesReg(tCompErgReg.roh_air_LS)(lauf) = ErgValuesReg(tCompErgReg.roh_air_LS)(lauf) / (numLS1 + numLS2)
                     ErgValuesReg(tCompErgReg.beta_abs_HS)(lauf) = ErgValuesReg(tCompErgReg.beta_abs_HS)(lauf) / (numHS)
-                    ErgValuesReg(tCompErgReg.F0).Add(F0 * (ErgValuesReg(tCompErgReg.roh_air_LS)(lauf) / roh_air_ref))
+                    ErgValuesReg(tCompErgReg.F0).Add(F0 * (ErgValuesReg(tCompErgReg.roh_air_LS)(lauf) / Crt.roh_air_ref))
                     ErgValuesReg(tCompErgReg.RRC).Add(ErgValuesReg(tCompErgReg.F0)(lauf) / (vehicle.testMass * 9.81) * 1000)
-                    ErgValuesReg(tCompErgReg.CdxA).Add(2 * F2 / roh_air_ref)
+                    ErgValuesReg(tCompErgReg.CdxA).Add(2 * F2 / Crt.roh_air_ref)
                     ErgValuesReg(tCompErgReg.delta_CdxA).Add(fCalcGenShp(ErgValuesReg(tCompErgReg.beta_abs_HS)(lauf), vehicle))
                     ErgValuesReg(tCompErgReg.CdxA0).Add(ErgValuesReg(tCompErgReg.CdxA)(lauf) - ErgValuesReg(tCompErgReg.delta_CdxA)(lauf))
-                    If ErgValuesReg(tCompErgReg.t_tire_LS_min)(lauf) < (ErgValuesReg(tCompErgReg.t_tire_HS_max)(lauf) - delta_t_tire_max) Or _
-                       ErgValuesReg(tCompErgReg.t_tire_LS_min)(lauf) < (ErgValuesReg(tCompErgReg.t_tire_LS_max)(lauf) - delta_t_tire_max) Or _
-                       ErgValuesReg(tCompErgReg.t_tire_HS_min)(lauf) < (ErgValuesReg(tCompErgReg.t_tire_HS_max)(lauf) - delta_t_tire_max) Then
+                    If ErgValuesReg(tCompErgReg.t_tire_LS_min)(lauf) < (ErgValuesReg(tCompErgReg.t_tire_HS_max)(lauf) - Crt.delta_t_tyre_max) Or _
+                       ErgValuesReg(tCompErgReg.t_tire_LS_min)(lauf) < (ErgValuesReg(tCompErgReg.t_tire_LS_max)(lauf) - Crt.delta_t_tyre_max) Or _
+                       ErgValuesReg(tCompErgReg.t_tire_HS_min)(lauf) < (ErgValuesReg(tCompErgReg.t_tire_HS_max)(lauf) - Crt.delta_t_tyre_max) Then
                         ErgValuesReg(tCompErgReg.valid_t_tire).Add(0)
                     Else
                         ErgValuesReg(tCompErgReg.valid_t_tire).Add(1)
@@ -321,17 +321,17 @@
 
         ' Test validation
         t_amb_f = t_amb_f / t_amb_num
-        If (t_amb_f - t_amb_min_f) > t_amb_var Or (t_amb_max_f - t_amb_f) > t_amb_var Then
-            fInfWarErr(9, False, "Invalid test - variation of ambient temperature (at the vehicle) outside boundaries")
+        If (t_amb_f - t_amb_min_f) > Crt.t_amb_var Or (t_amb_max_f - t_amb_f) > Crt.t_amb_var Then
+            logme(9, False, "Invalid test - variation of ambient temperature (at the vehicle) outside boundaries")
             valid_t_amb = False
         End If
 
-        If t_amb_max_f > t_amb_max Then
-            fInfWarErr(9, False, "Invalid test - maximum ambient temperature exceeded")
-        ElseIf t_amb_min_f < t_amb_min Then
-            fInfWarErr(9, False, "Invalid test - fallen below minimum ambient temperature")
-        ElseIf t_amb_max_f > t_amb_tarmac Then
-            fInfWarErr(9, False, "Invalid test - Ambient temperature higher than " & t_amb_tarmac & "°C")
+        If t_amb_max_f > Crt.t_amb_max Then
+            logme(9, False, "Invalid test - maximum ambient temperature exceeded")
+        ElseIf t_amb_min_f < Crt.t_amb_min Then
+            logme(9, False, "Invalid test - fallen below minimum ambient temperature")
+        ElseIf t_amb_max_f > Crt.t_amb_tarmac Then
+            logme(9, False, "Invalid test - Ambient temperature higher than " & Crt.t_amb_tarmac & "°C")
         End If
 
         Return True
@@ -414,10 +414,10 @@
             End If
             If i = GenShape.x_val(pos).Length - 1 And beta > GenShape.x_val(pos)(i + 1) Then
                 ValueX = 0
-                fInfWarErr(8, False, "The calculated yaw angle is higher than the greatest value in the generic curve. Delta_CdxA is set to 0!")
+                logme(8, False, "The calculated yaw angle is higher than the greatest value in the generic curve. Delta_CdxA is set to 0!")
             ElseIf i = 0 And GenShape.x_val(pos)(i) > beta Then
                 ValueX = 0
-                fInfWarErr(8, False, "The calculated yaw angle is lower than the lowest value in the generic curve. Delta_CdxA is set to 0!")
+                logme(8, False, "The calculated yaw angle is lower than the lowest value in the generic curve. Delta_CdxA is set to 0!")
             End If
         Next i
 
diff --git a/CSE/Classes/cFile_v3.vb b/CSE/Classes/cFile_v3.vb
index aafdcf9de0009eb7624449645fedab0d61a502eb..5be19fd74e73ee174f94ef7022ed577819861b0a 100644
--- a/CSE/Classes/cFile_v3.vb
+++ b/CSE/Classes/cFile_v3.vb
@@ -47,14 +47,29 @@ Public Class cFile_V3
         Return True
     End Function
 
+    ' Function for open a file for reading
+    Public Sub OpenReadWithEx(ByVal FileName As String, Optional ByVal Separator As String = ",", Optional ByVal SkipComment As Boolean = True, Optional ByVal StopAtE As Boolean = False)
+        StopE = StopAtE
+        Path = FileName
+        Sepp = Separator
+        SkipCom = SkipComment
+        Mode = FileMode.Read
+        TxtFldParser = New Microsoft.VisualBasic.FileIO.TextFieldParser(Path, System.Text.Encoding.Default)
+
+        TxtFldParser.TextFieldType = Microsoft.VisualBasic.FileIO.FieldType.Delimited
+        TxtFldParser.Delimiters = New String() {Sepp}
+        TxtFldParser.TrimWhiteSpace = False
+        Me.ReadLine()
+
+        FileOpen = True
+    End Sub
+
     ' Function for reading a line in an open file
     Public Function ReadLine() As String()
         Dim line As String()
         Dim line0 As String
         Dim gogo As Boolean = True
 
-        endofall = False
-
         line = PreLine
 
 lb10:
@@ -79,8 +94,6 @@ lb10:
 
         End If
 
-        If Equals(PreLine, line) And FileEnd And Not gogo Then endofall = True
-
         Return line
 
     End Function
@@ -125,7 +138,7 @@ lb10:
         Try
             Me.Close()
         Catch ex As Exception
-            fInfWarErr(9, False, format( _
+            logme(8, False, format( _
                        "Skipped exception while closing file_v3({0}) due to: {1}", Me.Path, ex.Message), ex)
         End Try
     End Sub
@@ -166,6 +179,15 @@ lb10:
         StrWrter.AutoFlush = AutoFlush
         Return True
     End Function
+    Public Sub OpenWriteWithEx(ByVal FileName As String, Optional ByVal Separator As String = ",", Optional ByVal Append As Boolean = False, Optional ByVal AutoFlush As Boolean = False)
+        Reset()
+        Path = FileName
+        Sepp = Separator
+        Mode = FileMode.Write
+        StrWrter = My.Computer.FileSystem.OpenTextFileWriter(Path, Append)
+        StrWrter.AutoFlush = AutoFlush
+        FileOpen = True
+    End Sub
 
     ' Writes a line into a file
     Public Sub WriteLine(ByVal ParamArray x() As Object)
@@ -194,7 +216,7 @@ lb10:
     Public Sub WriteLine(ByVal x As String)
         ' Polling if the file is blocked
         If IsNothing(StrWrter) Then
-            BWorker.CancelAsync()
+            If BWorker IsNot Nothing Then BWorker.CancelAsync()
             FileBlock = True
             Exit Sub
         End If
diff --git a/CSE/GUI/Export_GUI.vb b/CSE/GUI/Export_GUI.vb
deleted file mode 100644
index cff16a41ea93efc7c13ba22d440d7acc50cb1b47..0000000000000000000000000000000000000000
--- a/CSE/GUI/Export_GUI.vb
+++ /dev/null
@@ -1,102 +0,0 @@
-Module Export_GUI
-
-    ' Writing from the *.csjob file
-    Function fAusgVECTO() As Boolean
-        ' Declaration
-        Using FileOutVECTO As New cFile_V3
-
-            Dim Jobname As String
-
-            If fEXT(JobFile) <> ".csjob" Then
-                Jobname = joinPaths(fPath(JobFile), fName(JobFile, False) & ".csjob")
-            Else
-                Jobname = JobFile
-            End If
-
-            ' Open a file for writing
-            FileOutVECTO.OpenWrite(Jobname)
-
-            ' Write the headdata from the jobfile
-            FileOutVECTO.WriteLine("c Constant Speed Evaluator " & AppName & " " & AppVers)
-            FileOutVECTO.WriteLine("c General inputfiles")
-            FileOutVECTO.WriteLine("c Path to vehicle specifications file (*.csveh)")
-            FileOutVECTO.WriteLine(fPathOutControl(Vehspez))
-            FileOutVECTO.WriteLine("c Path to ambient conditions file (*.csamb)")
-            FileOutVECTO.WriteLine(fPathOutControl(Ambspez))
-            FileOutVECTO.WriteLine("c Anemomenter instrument calibration factors (v_air f, v_air d, beta f, beta d)")
-            FileOutVECTO.WriteLine(AnemIC(1), AnemIC(2), AnemIC(3), AnemIC(4))
-            FileOutVECTO.WriteLine("c")
-            FileOutVECTO.WriteLine("c Calibration test inputfiles")
-            FileOutVECTO.WriteLine("c Path to measurement section specification file (*.csmsc)")
-            FileOutVECTO.WriteLine(fPathOutControl(MSCCSpez))
-            FileOutVECTO.WriteLine("c Path to measurement data file from the calibration test (*.csdat)")
-            FileOutVECTO.WriteLine(fPathOutControl(DataSpez(1)))
-            FileOutVECTO.WriteLine("c")
-            FileOutVECTO.WriteLine("c Constant speed test inputfiles")
-            FileOutVECTO.WriteLine("c Path to measurement section specification file (*.csmsc)")
-            FileOutVECTO.WriteLine(fPathOutControl(MSCTSpez))
-            FileOutVECTO.WriteLine("c Rolling resistance correction")
-            FileOutVECTO.WriteLine(RRC)
-            FileOutVECTO.WriteLine("c Path to measurement data files from the test runs LS1, HS, LS2 (*.csdat)")
-            FileOutVECTO.WriteLine(fPathOutControl(DataSpez(2)))
-            FileOutVECTO.WriteLine(fPathOutControl(DataSpez(3)))
-            FileOutVECTO.WriteLine(fPathOutControl(DataSpez(4)))
-            FileOutVECTO.WriteLine("c Evaluation settings")
-            FileOutVECTO.WriteLine("c Acceleration correction (yes = 1, no = 0)")
-            FileOutVECTO.WriteLine(Int(AccC))
-            FileOutVECTO.WriteLine("c Gradient correction (yes = 1, no = 0)")
-            FileOutVECTO.WriteLine(Int(GradC))
-            FileOutVECTO.WriteLine("c Output frequency (1Hz = 1, 100Hz = 100)")
-            FileOutVECTO.WriteLine(HzOut)
-            FileOutVECTO.WriteLine("c Parameters for general validity criteria")
-            FileOutVECTO.WriteLine(delta_t_tire_max)
-            FileOutVECTO.WriteLine(delta_RRC_max)
-            FileOutVECTO.WriteLine(t_amb_var)
-            FileOutVECTO.WriteLine(t_amb_tarmac)
-            FileOutVECTO.WriteLine(t_amb_max)
-            FileOutVECTO.WriteLine(t_amb_min)
-            FileOutVECTO.WriteLine("c General parameters")
-            FileOutVECTO.WriteLine(delta_Hz_max)
-            FileOutVECTO.WriteLine(roh_air_ref)
-            FileOutVECTO.WriteLine(acc_corr_ave)
-            FileOutVECTO.WriteLine(delta_parallel_max)
-            FileOutVECTO.WriteLine("c Parameters for identification of measurement section")
-            FileOutVECTO.WriteLine(delta_x_max)
-            FileOutVECTO.WriteLine(delta_y_max)
-            FileOutVECTO.WriteLine(delta_head_max)
-            FileOutVECTO.WriteLine("c Requirements on number of valid datasets")
-            FileOutVECTO.WriteLine(ds_min_CAL)
-            FileOutVECTO.WriteLine(ds_min_LS)
-            FileOutVECTO.WriteLine(ds_min_HS)
-            FileOutVECTO.WriteLine(ds_min_head_MS)
-            FileOutVECTO.WriteLine("c **DataSet validity criteria**")
-            FileOutVECTO.WriteLine(dist_float)
-            FileOutVECTO.WriteLine("c *Calibration test*")
-            FileOutVECTO.WriteLine(v_wind_ave_CAL_max)
-            FileOutVECTO.WriteLine(v_wind_1s_CAL_max)
-            FileOutVECTO.WriteLine(beta_ave_CAL_max)
-            FileOutVECTO.WriteLine("c *Low and high speed test*")
-            FileOutVECTO.WriteLine(leng_crit)
-            FileOutVECTO.WriteLine("c Low speed test")
-            FileOutVECTO.WriteLine(v_wind_ave_LS_max)
-            FileOutVECTO.WriteLine(v_wind_1s_LS_max)
-            FileOutVECTO.WriteLine(v_veh_ave_LS_max)
-            FileOutVECTO.WriteLine(v_veh_ave_LS_min)
-            FileOutVECTO.WriteLine(v_veh_float_delta)
-            FileOutVECTO.WriteLine(tq_sum_float_delta)
-            FileOutVECTO.WriteLine("c High speed test")
-            FileOutVECTO.WriteLine(v_wind_ave_HS_max)
-            FileOutVECTO.WriteLine(v_wind_1s_HS_max)
-            FileOutVECTO.WriteLine(v_veh_ave_HS_min)
-            FileOutVECTO.WriteLine(beta_ave_HS_max)
-            FileOutVECTO.WriteLine(v_veh_1s_delta)
-            FileOutVECTO.WriteLine(tq_sum_1s_delta)
-
-
-            ' Refresh the jobfile
-            JobFile = Jobname
-        End Using
-
-        Return True
-    End Function
-End Module
diff --git a/CSE/GUI/FB_Dialog.vb b/CSE/GUI/FB_Dialog.vb
index 3609793beca97bae302a7bbcded31e5ef0807f31..30a63ac5ce974e7995cfefba59ae26dcd48a67a9 100644
--- a/CSE/GUI/FB_Dialog.vb
+++ b/CSE/GUI/FB_Dialog.vb
@@ -687,7 +687,7 @@ Public Class FB_Dialog
 
     'ButtonWorkDir_Click
     Private Sub ButtonWorkDir_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ButtonWorkDir.Click
-        SetFolder(AppPreferences.workingDir)
+        SetFolder(Prefs.workingDir)
     End Sub
 
     'ButtonDesktop_Click
diff --git a/CSE/GUI/F_Main.Designer.vb b/CSE/GUI/F_Main.Designer.vb
index 2cee62b6f48fb6ed707c98bf4eec05fe7d871b6c..138d10168a2b48b343bcdedb333dc9a805aa957e 100644
--- a/CSE/GUI/F_Main.Designer.vb
+++ b/CSE/GUI/F_Main.Designer.vb
@@ -24,15 +24,14 @@ Partial Class F_Main
     Private Sub InitializeComponent()
         Dim resources As System.ComponentModel.ComponentResourceManager = New System.ComponentModel.ComponentResourceManager(GetType(F_Main))
         Me.MenuStrip1 = New System.Windows.Forms.MenuStrip()
-        Me.DataToolStripMenuItem = New System.Windows.Forms.ToolStripMenuItem()
-        Me.ToolStripMenuItemNew = New System.Windows.Forms.ToolStripMenuItem()
-        Me.ToolStripMenuItemOpen = New System.Windows.Forms.ToolStripMenuItem()
-        Me.ToolStripSeparator1 = New System.Windows.Forms.ToolStripSeparator()
-        Me.ToolStripMenuItemSave = New System.Windows.Forms.ToolStripMenuItem()
-        Me.ToolStripMenuItemSaveAs = New System.Windows.Forms.ToolStripMenuItem()
-        Me.ToolStripSeparator2 = New System.Windows.Forms.ToolStripSeparator()
-        Me.ToolStripMenuItemExit = New System.Windows.Forms.ToolStripMenuItem()
+        Me.MenuItemExit = New System.Windows.Forms.ToolStripMenuItem()
+        Me.MenuItemNewJob = New System.Windows.Forms.ToolStripMenuItem()
+        Me.MenuItemLoadJob = New System.Windows.Forms.ToolStripMenuItem()
+        Me.MenuItemReloadJob = New System.Windows.Forms.ToolStripMenuItem()
+        Me.MenuItemSaveJob = New System.Windows.Forms.ToolStripMenuItem()
+        Me.MenuItemSaveAsJob = New System.Windows.Forms.ToolStripMenuItem()
         Me.ToolsToolStripMenuItem = New System.Windows.Forms.ToolStripMenuItem()
+        Me.MenuItemClearLog = New System.Windows.Forms.ToolStripMenuItem()
         Me.ToolStripMenuItemLog = New System.Windows.Forms.ToolStripMenuItem()
         Me.ToolStripSeparator3 = New System.Windows.Forms.ToolStripSeparator()
         Me.ToolStripMenuItemOption = New System.Windows.Forms.ToolStripMenuItem()
@@ -48,10 +47,10 @@ Partial Class F_Main
         Me.TextBoxVeh1 = New System.Windows.Forms.TextBox()
         Me.ButtonVeh = New System.Windows.Forms.Button()
         Me.ButtonSelectVeh = New System.Windows.Forms.Button()
-        Me.GroupBox6 = New System.Windows.Forms.GroupBox()
+        Me.GB_hz_out = New System.Windows.Forms.GroupBox()
         Me.RB100Hz = New System.Windows.Forms.RadioButton()
         Me.RB1Hz = New System.Windows.Forms.RadioButton()
-        Me.GroupBox2 = New System.Windows.Forms.GroupBox()
+        Me.GB_Anemometer = New System.Windows.Forms.GroupBox()
         Me.Label13 = New System.Windows.Forms.Label()
         Me.Label12 = New System.Windows.Forms.Label()
         Me.Label11 = New System.Windows.Forms.Label()
@@ -64,15 +63,9 @@ Partial Class F_Main
         Me.TextBoxbetad = New System.Windows.Forms.TextBox()
         Me.TextBoxAirf = New System.Windows.Forms.TextBox()
         Me.TextBoxAird = New System.Windows.Forms.TextBox()
-        Me.GroupBox4 = New System.Windows.Forms.GroupBox()
-        Me.CheckBoxGrd = New System.Windows.Forms.CheckBox()
-        Me.CheckBoxAcc = New System.Windows.Forms.CheckBox()
+        Me.CB_gradient_correction = New System.Windows.Forms.CheckBox()
+        Me.CB_accel_correction = New System.Windows.Forms.CheckBox()
         Me.GroupBoxInput = New System.Windows.Forms.GroupBox()
-        Me.Label14 = New System.Windows.Forms.Label()
-        Me.Label2 = New System.Windows.Forms.Label()
-        Me.TextBoxRRC = New System.Windows.Forms.TextBox()
-        Me.ButtonEval = New System.Windows.Forms.Button()
-        Me.GroupBox5 = New System.Windows.Forms.GroupBox()
         Me.ButtonDataLS1 = New System.Windows.Forms.Button()
         Me.TextBoxDataLS2 = New System.Windows.Forms.TextBox()
         Me.ButtonSelectDataLS1 = New System.Windows.Forms.Button()
@@ -82,19 +75,21 @@ Partial Class F_Main
         Me.ButtonSelectDataHS = New System.Windows.Forms.Button()
         Me.TextBoxDataHS = New System.Windows.Forms.TextBox()
         Me.ButtonDataHS = New System.Windows.Forms.Button()
+        Me.ButtonEval = New System.Windows.Forms.Button()
         Me.TextBoxMSCT = New System.Windows.Forms.TextBox()
         Me.ButtonMSCT = New System.Windows.Forms.Button()
         Me.ButtonSelectMSCT = New System.Windows.Forms.Button()
         Me.PictureBox2 = New System.Windows.Forms.PictureBox()
         Me.Label1 = New System.Windows.Forms.Label()
         Me.PictureBox1 = New System.Windows.Forms.PictureBox()
-        Me.ButtonSave = New System.Windows.Forms.Button()
-        Me.ButtonExit = New System.Windows.Forms.Button()
         Me.ButtonCalC = New System.Windows.Forms.Button()
         Me.GroupBox1 = New System.Windows.Forms.GroupBox()
         Me.TextBoxDataC = New System.Windows.Forms.TextBox()
         Me.ButtonDataC = New System.Windows.Forms.Button()
         Me.ButtonSelectDataC = New System.Windows.Forms.Button()
+        Me.TextBoxMSCC = New System.Windows.Forms.TextBox()
+        Me.ButtonMSCC = New System.Windows.Forms.Button()
+        Me.ButtonSelectMSCC = New System.Windows.Forms.Button()
         Me.GroupBox3 = New System.Windows.Forms.GroupBox()
         Me.Label17 = New System.Windows.Forms.Label()
         Me.Label16 = New System.Windows.Forms.Label()
@@ -105,9 +100,6 @@ Partial Class F_Main
         Me.TextBoxRAirPos = New System.Windows.Forms.TextBox()
         Me.Label7 = New System.Windows.Forms.Label()
         Me.TextBoxRVeh = New System.Windows.Forms.TextBox()
-        Me.TextBoxMSCC = New System.Windows.Forms.TextBox()
-        Me.ButtonMSCC = New System.Windows.Forms.Button()
-        Me.ButtonSelectMSCC = New System.Windows.Forms.Button()
         Me.TabControlOutMsg = New System.Windows.Forms.TabControl()
         Me.TabPageMSG = New System.Windows.Forms.TabPage()
         Me.ListBoxMSG = New System.Windows.Forms.ListBox()
@@ -118,128 +110,129 @@ Partial Class F_Main
         Me.TextBoxVeh = New System.Windows.Forms.TextBox()
         Me.TabControl1 = New System.Windows.Forms.TabControl()
         Me.TPMain = New System.Windows.Forms.TabPage()
-        Me.TPOptions = New System.Windows.Forms.TabPage()
-        Me.TBInfo = New System.Windows.Forms.TextBox()
-        Me.PBInfoIcon = New System.Windows.Forms.PictureBox()
-        Me.GroupBox14 = New System.Windows.Forms.GroupBox()
-        Me.Label82 = New System.Windows.Forms.Label()
-        Me.LTambTamac = New System.Windows.Forms.Label()
-        Me.TBTambMin = New System.Windows.Forms.TextBox()
-        Me.Label84 = New System.Windows.Forms.Label()
-        Me.TBTambTamac = New System.Windows.Forms.TextBox()
-        Me.LTambMin = New System.Windows.Forms.Label()
-        Me.LDeltaTTireMax = New System.Windows.Forms.Label()
-        Me.TBDeltaTTireMax = New System.Windows.Forms.TextBox()
-        Me.Label65 = New System.Windows.Forms.Label()
-        Me.Label66 = New System.Windows.Forms.Label()
-        Me.TBDeltaRRCMax = New System.Windows.Forms.TextBox()
-        Me.LTambVar = New System.Windows.Forms.Label()
-        Me.LDeltaRRCMax = New System.Windows.Forms.Label()
-        Me.TBTambMax = New System.Windows.Forms.TextBox()
-        Me.Label69 = New System.Windows.Forms.Label()
-        Me.Label70 = New System.Windows.Forms.Label()
-        Me.TBTambVar = New System.Windows.Forms.TextBox()
-        Me.LTambMax = New System.Windows.Forms.Label()
-        Me.ButtonToStd = New System.Windows.Forms.Button()
-        Me.GroupBox10 = New System.Windows.Forms.GroupBox()
-        Me.Label24 = New System.Windows.Forms.Label()
-        Me.LDeltaParaMax = New System.Windows.Forms.Label()
-        Me.TBDeltaParaMax = New System.Windows.Forms.TextBox()
-        Me.Label22 = New System.Windows.Forms.Label()
-        Me.LAccCorrAve = New System.Windows.Forms.Label()
-        Me.TBAccCorrAve = New System.Windows.Forms.TextBox()
-        Me.Label20 = New System.Windows.Forms.Label()
-        Me.LRhoAirRef = New System.Windows.Forms.Label()
-        Me.TBRhoAirRef = New System.Windows.Forms.TextBox()
-        Me.Label18 = New System.Windows.Forms.Label()
-        Me.LDeltaHzMax = New System.Windows.Forms.Label()
-        Me.TBDeltaHzMax = New System.Windows.Forms.TextBox()
+        Me.TBInfoMain = New System.Windows.Forms.TextBox()
+        Me.PbInfoIconMain = New System.Windows.Forms.PictureBox()
+        Me.TPCriteria = New System.Windows.Forms.TabPage()
+        Me.GroupBox7 = New System.Windows.Forms.GroupBox()
+        Me.Label26 = New System.Windows.Forms.Label()
+        Me.LContAng = New System.Windows.Forms.Label()
+        Me.TB_delta_head_max = New System.Windows.Forms.TextBox()
+        Me.Label28 = New System.Windows.Forms.Label()
+        Me.LDeltaYMax = New System.Windows.Forms.Label()
+        Me.TB_trigger_delta_y_max = New System.Windows.Forms.TextBox()
+        Me.Label30 = New System.Windows.Forms.Label()
+        Me.LDeltaXMax = New System.Windows.Forms.Label()
+        Me.TB_trigger_delta_x_max = New System.Windows.Forms.TextBox()
+        Me.GroupBox8 = New System.Windows.Forms.GroupBox()
+        Me.LDsMinHeadMS = New System.Windows.Forms.Label()
+        Me.TB_segruns_min_head_MS = New System.Windows.Forms.TextBox()
+        Me.LDsMinHS = New System.Windows.Forms.Label()
+        Me.TB_segruns_min_HS = New System.Windows.Forms.TextBox()
+        Me.LDsMinLS = New System.Windows.Forms.Label()
+        Me.TB_segruns_min_LS = New System.Windows.Forms.TextBox()
+        Me.LDsMinCAL = New System.Windows.Forms.Label()
+        Me.TB_segruns_min_CAL = New System.Windows.Forms.TextBox()
         Me.GroupBox9 = New System.Windows.Forms.GroupBox()
+        Me.ButtonCrtImport = New System.Windows.Forms.Button()
+        Me.ButtonCrtExport = New System.Windows.Forms.Button()
+        Me.ButtonCrtReset = New System.Windows.Forms.Button()
         Me.LDistFloat = New System.Windows.Forms.Label()
-        Me.TBDistFloat = New System.Windows.Forms.TextBox()
+        Me.TB_dist_float = New System.Windows.Forms.TextBox()
         Me.Label81 = New System.Windows.Forms.Label()
         Me.GroupBox15 = New System.Windows.Forms.GroupBox()
         Me.LLengCrit = New System.Windows.Forms.Label()
-        Me.TBLengCrit = New System.Windows.Forms.TextBox()
+        Me.TB_leng_crit = New System.Windows.Forms.TextBox()
         Me.Label79 = New System.Windows.Forms.Label()
         Me.GroupBox12 = New System.Windows.Forms.GroupBox()
         Me.Label74 = New System.Windows.Forms.Label()
-        Me.TBTq1sD = New System.Windows.Forms.TextBox()
-        Me.LTq1sD = New System.Windows.Forms.Label()
+        Me.TB_tq_sum_1s_delta_HS = New System.Windows.Forms.TextBox()
+        Me.LB_tq_sum_1s_delta_HS = New System.Windows.Forms.Label()
         Me.Label76 = New System.Windows.Forms.Label()
-        Me.TBvVeh1sD = New System.Windows.Forms.TextBox()
-        Me.LvVeh1sD = New System.Windows.Forms.Label()
+        Me.TB_v_veh_1s_delta_HS = New System.Windows.Forms.TextBox()
+        Me.LB_v_veh_1s_delta_HS = New System.Windows.Forms.Label()
         Me.Label62 = New System.Windows.Forms.Label()
-        Me.TBBetaAveHSMax = New System.Windows.Forms.TextBox()
-        Me.LBetaAveHSMax = New System.Windows.Forms.Label()
-        Me.LvWindAveHSMax = New System.Windows.Forms.Label()
+        Me.TB_beta_avg_max_HS = New System.Windows.Forms.TextBox()
+        Me.LB_beta_avg_max_HS = New System.Windows.Forms.Label()
+        Me.LB_v_wind_avg_max_HS = New System.Windows.Forms.Label()
         Me.Label57 = New System.Windows.Forms.Label()
-        Me.TBvWindAveHSMax = New System.Windows.Forms.TextBox()
+        Me.TB_v_wind_avg_max_HS = New System.Windows.Forms.TextBox()
         Me.Label58 = New System.Windows.Forms.Label()
-        Me.TBvVehAveHSMin = New System.Windows.Forms.TextBox()
-        Me.TBvWind1sHSMax = New System.Windows.Forms.TextBox()
-        Me.LvWind1sHSMax = New System.Windows.Forms.Label()
-        Me.LvVehAveHSMin = New System.Windows.Forms.Label()
+        Me.TB_v_veh_avg_min_HS = New System.Windows.Forms.TextBox()
+        Me.TB_v_wind_1s_max_HS = New System.Windows.Forms.TextBox()
+        Me.LB_v_wind_1s_max_HS = New System.Windows.Forms.Label()
+        Me.LB_v_veh_avg_min_HS = New System.Windows.Forms.Label()
         Me.Label61 = New System.Windows.Forms.Label()
         Me.GroupBox11 = New System.Windows.Forms.GroupBox()
         Me.Label72 = New System.Windows.Forms.Label()
-        Me.TBTqSumFloatD = New System.Windows.Forms.TextBox()
-        Me.LTqSumFloatD = New System.Windows.Forms.Label()
+        Me.TB_tq_sum_float_delta_LS = New System.Windows.Forms.TextBox()
+        Me.LB_tq_sum_float_delta_LS = New System.Windows.Forms.Label()
         Me.Label46 = New System.Windows.Forms.Label()
-        Me.TBvVehFloatD = New System.Windows.Forms.TextBox()
-        Me.LvVehFloatD = New System.Windows.Forms.Label()
+        Me.TB_v_veh_float_delta_LS = New System.Windows.Forms.TextBox()
+        Me.LB_v_veh_float_delta_LS = New System.Windows.Forms.Label()
         Me.LvWindAveLSMax = New System.Windows.Forms.Label()
         Me.Label48 = New System.Windows.Forms.Label()
-        Me.TBvWindAveLSMax = New System.Windows.Forms.TextBox()
-        Me.LvVehAveLSMax = New System.Windows.Forms.Label()
+        Me.TB_v_wind_avg_max_LS = New System.Windows.Forms.TextBox()
+        Me.LB_v_veh_avg_min_LS = New System.Windows.Forms.Label()
         Me.Label54 = New System.Windows.Forms.Label()
-        Me.TBvVehAveLSMin = New System.Windows.Forms.TextBox()
-        Me.TBvWind1sLSMax = New System.Windows.Forms.TextBox()
+        Me.TB_v_veh_avg_max_LS = New System.Windows.Forms.TextBox()
+        Me.TB_v_wind_1s_max_LS = New System.Windows.Forms.TextBox()
         Me.Label50 = New System.Windows.Forms.Label()
         Me.LvWind1sLSMax = New System.Windows.Forms.Label()
-        Me.LvVehAveLSMin = New System.Windows.Forms.Label()
+        Me.LB_v_veh_avg_max_LS = New System.Windows.Forms.Label()
         Me.Label52 = New System.Windows.Forms.Label()
-        Me.TBvVehAveLSMax = New System.Windows.Forms.TextBox()
+        Me.TB_v_veh_avg_min_LS = New System.Windows.Forms.TextBox()
         Me.GroupBox13 = New System.Windows.Forms.GroupBox()
         Me.Label40 = New System.Windows.Forms.Label()
-        Me.TBvWindAveCALMax = New System.Windows.Forms.TextBox()
+        Me.TB_v_wind_avg_max_CAL = New System.Windows.Forms.TextBox()
         Me.LvWind1sCALMax = New System.Windows.Forms.Label()
         Me.LvWindAveCALMax = New System.Windows.Forms.Label()
-        Me.TBBetaAveCALMax = New System.Windows.Forms.TextBox()
+        Me.TB_beta_avg_max_CAL = New System.Windows.Forms.TextBox()
         Me.Label44 = New System.Windows.Forms.Label()
         Me.Label42 = New System.Windows.Forms.Label()
-        Me.TBvWind1sCALMax = New System.Windows.Forms.TextBox()
+        Me.TB_v_wind_1s_max_CAL = New System.Windows.Forms.TextBox()
         Me.LBetaAveCALMax = New System.Windows.Forms.Label()
-        Me.GroupBox8 = New System.Windows.Forms.GroupBox()
-        Me.Label32 = New System.Windows.Forms.Label()
-        Me.LDsMinHeadMS = New System.Windows.Forms.Label()
-        Me.TBDsMinHeadHS = New System.Windows.Forms.TextBox()
-        Me.Label34 = New System.Windows.Forms.Label()
-        Me.LDsMinHS = New System.Windows.Forms.Label()
-        Me.TBDsMinHS = New System.Windows.Forms.TextBox()
-        Me.Label36 = New System.Windows.Forms.Label()
-        Me.LDsMinLS = New System.Windows.Forms.Label()
-        Me.TBDsMinLS = New System.Windows.Forms.TextBox()
-        Me.Label38 = New System.Windows.Forms.Label()
-        Me.LDsMinCAL = New System.Windows.Forms.Label()
-        Me.TBDsMinCAL = New System.Windows.Forms.TextBox()
-        Me.GroupBox7 = New System.Windows.Forms.GroupBox()
-        Me.Label26 = New System.Windows.Forms.Label()
-        Me.LContAng = New System.Windows.Forms.Label()
-        Me.TBDeltaHeadMax = New System.Windows.Forms.TextBox()
-        Me.Label28 = New System.Windows.Forms.Label()
-        Me.LDeltaYMax = New System.Windows.Forms.Label()
-        Me.TBDeltaYMax = New System.Windows.Forms.TextBox()
-        Me.Label30 = New System.Windows.Forms.Label()
-        Me.LDeltaXMax = New System.Windows.Forms.Label()
-        Me.TBDeltaXMax = New System.Windows.Forms.TextBox()
+        Me.TBInfoCrt = New System.Windows.Forms.TextBox()
+        Me.PBInfoIconCrt = New System.Windows.Forms.PictureBox()
+        Me.GroupBox14 = New System.Windows.Forms.GroupBox()
+        Me.Label82 = New System.Windows.Forms.Label()
+        Me.LB_t_amb_tarmac = New System.Windows.Forms.Label()
+        Me.TB_t_amb_min = New System.Windows.Forms.TextBox()
+        Me.Label24 = New System.Windows.Forms.Label()
+        Me.Label84 = New System.Windows.Forms.Label()
+        Me.TB_t_amb_tarmac = New System.Windows.Forms.TextBox()
+        Me.LB_t_amb_min = New System.Windows.Forms.Label()
+        Me.LDeltaParaMax = New System.Windows.Forms.Label()
+        Me.LB_delta_t_tyre_max = New System.Windows.Forms.Label()
+        Me.TB_delta_parallel_max = New System.Windows.Forms.TextBox()
+        Me.TB_delta_t_tyre_max = New System.Windows.Forms.TextBox()
+        Me.Label65 = New System.Windows.Forms.Label()
+        Me.Label66 = New System.Windows.Forms.Label()
+        Me.TB_delta_rr_corr_max = New System.Windows.Forms.TextBox()
+        Me.LB_t_amb_var = New System.Windows.Forms.Label()
+        Me.LB_delta_rr_corr_max = New System.Windows.Forms.Label()
+        Me.TB_t_amb_max = New System.Windows.Forms.TextBox()
+        Me.Label69 = New System.Windows.Forms.Label()
+        Me.Label18 = New System.Windows.Forms.Label()
+        Me.Label70 = New System.Windows.Forms.Label()
+        Me.LDeltaHzMax = New System.Windows.Forms.Label()
+        Me.TB_t_amb_var = New System.Windows.Forms.TextBox()
+        Me.TB_delta_Hz_max = New System.Windows.Forms.TextBox()
+        Me.LB_t_amb_max = New System.Windows.Forms.Label()
+        Me.GroupBox10 = New System.Windows.Forms.GroupBox()
+        Me.Label14 = New System.Windows.Forms.Label()
+        Me.Label2 = New System.Windows.Forms.Label()
+        Me.TB_rr_corr_factor = New System.Windows.Forms.TextBox()
+        Me.Label22 = New System.Windows.Forms.Label()
+        Me.LAccCorrAve = New System.Windows.Forms.Label()
+        Me.TB_acc_corr_avg = New System.Windows.Forms.TextBox()
+        Me.Label20 = New System.Windows.Forms.Label()
+        Me.LRhoAirRef = New System.Windows.Forms.Label()
+        Me.TB_roh_air_ref = New System.Windows.Forms.TextBox()
         Me.MenuStrip1.SuspendLayout()
         Me.GroupBoxJob.SuspendLayout()
-        Me.GroupBox6.SuspendLayout()
-        Me.GroupBox2.SuspendLayout()
-        Me.GroupBox4.SuspendLayout()
+        Me.GB_hz_out.SuspendLayout()
+        Me.GB_Anemometer.SuspendLayout()
         Me.GroupBoxInput.SuspendLayout()
-        Me.GroupBox5.SuspendLayout()
         CType(Me.PictureBox2, System.ComponentModel.ISupportInitialize).BeginInit()
         CType(Me.PictureBox1, System.ComponentModel.ISupportInitialize).BeginInit()
         Me.GroupBox1.SuspendLayout()
@@ -250,87 +243,84 @@ Partial Class F_Main
         Me.TabPageErr.SuspendLayout()
         Me.TabControl1.SuspendLayout()
         Me.TPMain.SuspendLayout()
-        Me.TPOptions.SuspendLayout()
-        CType(Me.PBInfoIcon, System.ComponentModel.ISupportInitialize).BeginInit()
-        Me.GroupBox14.SuspendLayout()
-        Me.GroupBox10.SuspendLayout()
+        CType(Me.PbInfoIconMain, System.ComponentModel.ISupportInitialize).BeginInit()
+        Me.TPCriteria.SuspendLayout()
+        Me.GroupBox7.SuspendLayout()
+        Me.GroupBox8.SuspendLayout()
         Me.GroupBox9.SuspendLayout()
         Me.GroupBox15.SuspendLayout()
         Me.GroupBox12.SuspendLayout()
         Me.GroupBox11.SuspendLayout()
         Me.GroupBox13.SuspendLayout()
-        Me.GroupBox8.SuspendLayout()
-        Me.GroupBox7.SuspendLayout()
+        CType(Me.PBInfoIconCrt, System.ComponentModel.ISupportInitialize).BeginInit()
+        Me.GroupBox14.SuspendLayout()
+        Me.GroupBox10.SuspendLayout()
         Me.SuspendLayout()
         '
         'MenuStrip1
         '
-        Me.MenuStrip1.Items.AddRange(New System.Windows.Forms.ToolStripItem() {Me.DataToolStripMenuItem, Me.ToolsToolStripMenuItem, Me.InfoToolStripMenuItem})
+        Me.MenuStrip1.Items.AddRange(New System.Windows.Forms.ToolStripItem() {Me.MenuItemExit, Me.MenuItemNewJob, Me.MenuItemLoadJob, Me.MenuItemReloadJob, Me.MenuItemSaveJob, Me.MenuItemSaveAsJob, Me.ToolsToolStripMenuItem, Me.InfoToolStripMenuItem})
         Me.MenuStrip1.Location = New System.Drawing.Point(0, 0)
         Me.MenuStrip1.Name = "MenuStrip1"
-        Me.MenuStrip1.Size = New System.Drawing.Size(670, 24)
+        Me.MenuStrip1.Size = New System.Drawing.Size(944, 24)
         Me.MenuStrip1.TabIndex = 0
         Me.MenuStrip1.Text = "MenuStrip1"
         '
-        'DataToolStripMenuItem
-        '
-        Me.DataToolStripMenuItem.DropDownItems.AddRange(New System.Windows.Forms.ToolStripItem() {Me.ToolStripMenuItemNew, Me.ToolStripMenuItemOpen, Me.ToolStripSeparator1, Me.ToolStripMenuItemSave, Me.ToolStripMenuItemSaveAs, Me.ToolStripSeparator2, Me.ToolStripMenuItemExit})
-        Me.DataToolStripMenuItem.Name = "DataToolStripMenuItem"
-        Me.DataToolStripMenuItem.Size = New System.Drawing.Size(37, 20)
-        Me.DataToolStripMenuItem.Text = "Job"
-        '
-        'ToolStripMenuItemNew
-        '
-        Me.ToolStripMenuItemNew.Image = Global.CSE.My.Resources.Resources.Neu
-        Me.ToolStripMenuItemNew.Name = "ToolStripMenuItemNew"
-        Me.ToolStripMenuItemNew.Size = New System.Drawing.Size(111, 22)
-        Me.ToolStripMenuItemNew.Text = "New"
-        '
-        'ToolStripMenuItemOpen
+        'MenuItemExit
         '
-        Me.ToolStripMenuItemOpen.Image = Global.CSE.My.Resources.Resources.Öffnen
-        Me.ToolStripMenuItemOpen.Name = "ToolStripMenuItemOpen"
-        Me.ToolStripMenuItemOpen.Size = New System.Drawing.Size(111, 22)
-        Me.ToolStripMenuItemOpen.Text = "Open"
+        Me.MenuItemExit.Image = Global.CSE.My.Resources.Resources.Beenden
+        Me.MenuItemExit.Name = "MenuItemExit"
+        Me.MenuItemExit.Size = New System.Drawing.Size(53, 20)
+        Me.MenuItemExit.Text = "Exit"
         '
-        'ToolStripSeparator1
+        'MenuItemNewJob
         '
-        Me.ToolStripSeparator1.Name = "ToolStripSeparator1"
-        Me.ToolStripSeparator1.Size = New System.Drawing.Size(108, 6)
+        Me.MenuItemNewJob.Image = Global.CSE.My.Resources.Resources.Neu
+        Me.MenuItemNewJob.Name = "MenuItemNewJob"
+        Me.MenuItemNewJob.Size = New System.Drawing.Size(80, 20)
+        Me.MenuItemNewJob.Text = "New Job"
         '
-        'ToolStripMenuItemSave
+        'MenuItemLoadJob
         '
-        Me.ToolStripMenuItemSave.Image = Global.CSE.My.Resources.Resources.Speichern
-        Me.ToolStripMenuItemSave.Name = "ToolStripMenuItemSave"
-        Me.ToolStripMenuItemSave.Size = New System.Drawing.Size(111, 22)
-        Me.ToolStripMenuItemSave.Text = "Save"
+        Me.MenuItemLoadJob.Image = Global.CSE.My.Resources.Resources.Öffnen
+        Me.MenuItemLoadJob.Name = "MenuItemLoadJob"
+        Me.MenuItemLoadJob.Size = New System.Drawing.Size(82, 20)
+        Me.MenuItemLoadJob.Text = "Load Job"
         '
-        'ToolStripMenuItemSaveAs
+        'MenuItemReloadJob
         '
-        Me.ToolStripMenuItemSaveAs.Image = Global.CSE.My.Resources.Resources.Speichern_unter
-        Me.ToolStripMenuItemSaveAs.Name = "ToolStripMenuItemSaveAs"
-        Me.ToolStripMenuItemSaveAs.Size = New System.Drawing.Size(111, 22)
-        Me.ToolStripMenuItemSaveAs.Text = "SaveAs"
+        Me.MenuItemReloadJob.Image = Global.CSE.My.Resources.Resources.Refresh_icon
+        Me.MenuItemReloadJob.Name = "MenuItemReloadJob"
+        Me.MenuItemReloadJob.Size = New System.Drawing.Size(92, 20)
+        Me.MenuItemReloadJob.Text = "Reload Job"
         '
-        'ToolStripSeparator2
+        'MenuItemSaveJob
         '
-        Me.ToolStripSeparator2.Name = "ToolStripSeparator2"
-        Me.ToolStripSeparator2.Size = New System.Drawing.Size(108, 6)
+        Me.MenuItemSaveJob.Image = Global.CSE.My.Resources.Resources.Speichern
+        Me.MenuItemSaveJob.Name = "MenuItemSaveJob"
+        Me.MenuItemSaveJob.Size = New System.Drawing.Size(80, 20)
+        Me.MenuItemSaveJob.Text = "Save Job"
         '
-        'ToolStripMenuItemExit
+        'MenuItemSaveAsJob
         '
-        Me.ToolStripMenuItemExit.Image = Global.CSE.My.Resources.Resources.Beenden
-        Me.ToolStripMenuItemExit.Name = "ToolStripMenuItemExit"
-        Me.ToolStripMenuItemExit.Size = New System.Drawing.Size(111, 22)
-        Me.ToolStripMenuItemExit.Text = "Exit"
+        Me.MenuItemSaveAsJob.Image = Global.CSE.My.Resources.Resources.Speichern_unter
+        Me.MenuItemSaveAsJob.Name = "MenuItemSaveAsJob"
+        Me.MenuItemSaveAsJob.Size = New System.Drawing.Size(75, 20)
+        Me.MenuItemSaveAsJob.Text = "Save As"
         '
         'ToolsToolStripMenuItem
         '
-        Me.ToolsToolStripMenuItem.DropDownItems.AddRange(New System.Windows.Forms.ToolStripItem() {Me.ToolStripMenuItemLog, Me.ToolStripSeparator3, Me.ToolStripMenuItemOption})
+        Me.ToolsToolStripMenuItem.DropDownItems.AddRange(New System.Windows.Forms.ToolStripItem() {Me.MenuItemClearLog, Me.ToolStripMenuItemLog, Me.ToolStripSeparator3, Me.ToolStripMenuItemOption})
         Me.ToolsToolStripMenuItem.Name = "ToolsToolStripMenuItem"
         Me.ToolsToolStripMenuItem.Size = New System.Drawing.Size(48, 20)
         Me.ToolsToolStripMenuItem.Text = "Tools"
         '
+        'MenuItemClearLog
+        '
+        Me.MenuItemClearLog.Name = "MenuItemClearLog"
+        Me.MenuItemClearLog.Size = New System.Drawing.Size(144, 22)
+        Me.MenuItemClearLog.Text = "Clear Log"
+        '
         'ToolStripMenuItemLog
         '
         Me.ToolStripMenuItemLog.Image = Global.CSE.My.Resources.Resources.Log_File
@@ -352,10 +342,11 @@ Partial Class F_Main
         '
         'InfoToolStripMenuItem
         '
+        Me.InfoToolStripMenuItem.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right
         Me.InfoToolStripMenuItem.DropDownItems.AddRange(New System.Windows.Forms.ToolStripItem() {Me.CreatActivationFileToolStripMenuItem, Me.ToolStripMenuItemAbout, Me.ToolStripMenuItemManu})
         Me.InfoToolStripMenuItem.Name = "InfoToolStripMenuItem"
-        Me.InfoToolStripMenuItem.Size = New System.Drawing.Size(40, 20)
-        Me.InfoToolStripMenuItem.Text = "Info"
+        Me.InfoToolStripMenuItem.Size = New System.Drawing.Size(44, 20)
+        Me.InfoToolStripMenuItem.Text = "Help"
         '
         'CreatActivationFileToolStripMenuItem
         '
@@ -396,7 +387,7 @@ Partial Class F_Main
         Me.GroupBoxJob.Margin = New System.Windows.Forms.Padding(2)
         Me.GroupBoxJob.Name = "GroupBoxJob"
         Me.GroupBoxJob.Padding = New System.Windows.Forms.Padding(2)
-        Me.GroupBoxJob.Size = New System.Drawing.Size(631, 71)
+        Me.GroupBoxJob.Size = New System.Drawing.Size(906, 71)
         Me.GroupBoxJob.TabIndex = 21
         Me.GroupBoxJob.TabStop = False
         Me.GroupBoxJob.Text = "General"
@@ -405,11 +396,11 @@ Partial Class F_Main
         '
         Me.TextBoxWeather.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Left) _
                     Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
-        Me.TextBoxWeather.Location = New System.Drawing.Point(98, 42)
+        Me.TextBoxWeather.Location = New System.Drawing.Point(144, 42)
         Me.TextBoxWeather.Margin = New System.Windows.Forms.Padding(2)
         Me.TextBoxWeather.Name = "TextBoxWeather"
-        Me.TextBoxWeather.Size = New System.Drawing.Size(487, 20)
-        Me.TextBoxWeather.TabIndex = 36
+        Me.TextBoxWeather.Size = New System.Drawing.Size(719, 20)
+        Me.TextBoxWeather.TabIndex = 2
         '
         'ButtonWeather
         '
@@ -417,7 +408,7 @@ Partial Class F_Main
         Me.ButtonWeather.Location = New System.Drawing.Point(6, 41)
         Me.ButtonWeather.Margin = New System.Windows.Forms.Padding(2)
         Me.ButtonWeather.Name = "ButtonWeather"
-        Me.ButtonWeather.Size = New System.Drawing.Size(89, 23)
+        Me.ButtonWeather.Size = New System.Drawing.Size(135, 23)
         Me.ButtonWeather.TabIndex = 37
         Me.ButtonWeather.Text = "Ambient cond."
         Me.ButtonWeather.UseVisualStyleBackColor = True
@@ -426,11 +417,11 @@ Partial Class F_Main
         '
         Me.ButtonSelectWeather.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
         Me.ButtonSelectWeather.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
-        Me.ButtonSelectWeather.Location = New System.Drawing.Point(592, 41)
+        Me.ButtonSelectWeather.Location = New System.Drawing.Point(867, 42)
         Me.ButtonSelectWeather.Margin = New System.Windows.Forms.Padding(2)
         Me.ButtonSelectWeather.Name = "ButtonSelectWeather"
         Me.ButtonSelectWeather.Size = New System.Drawing.Size(31, 23)
-        Me.ButtonSelectWeather.TabIndex = 35
+        Me.ButtonSelectWeather.TabIndex = 3
         Me.ButtonSelectWeather.Text = "..."
         Me.ButtonSelectWeather.UseVisualStyleBackColor = True
         '
@@ -438,11 +429,11 @@ Partial Class F_Main
         '
         Me.TextBoxVeh1.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Left) _
                     Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
-        Me.TextBoxVeh1.Location = New System.Drawing.Point(99, 15)
+        Me.TextBoxVeh1.Location = New System.Drawing.Point(145, 15)
         Me.TextBoxVeh1.Margin = New System.Windows.Forms.Padding(2)
         Me.TextBoxVeh1.Name = "TextBoxVeh1"
-        Me.TextBoxVeh1.Size = New System.Drawing.Size(486, 20)
-        Me.TextBoxVeh1.TabIndex = 14
+        Me.TextBoxVeh1.Size = New System.Drawing.Size(718, 20)
+        Me.TextBoxVeh1.TabIndex = 0
         '
         'ButtonVeh
         '
@@ -450,7 +441,7 @@ Partial Class F_Main
         Me.ButtonVeh.Location = New System.Drawing.Point(6, 14)
         Me.ButtonVeh.Margin = New System.Windows.Forms.Padding(2)
         Me.ButtonVeh.Name = "ButtonVeh"
-        Me.ButtonVeh.Size = New System.Drawing.Size(89, 23)
+        Me.ButtonVeh.Size = New System.Drawing.Size(135, 23)
         Me.ButtonVeh.TabIndex = 15
         Me.ButtonVeh.Text = "Vehicle file"
         Me.ButtonVeh.UseVisualStyleBackColor = True
@@ -459,7 +450,7 @@ Partial Class F_Main
         '
         Me.ButtonSelectVeh.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
         Me.ButtonSelectVeh.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
-        Me.ButtonSelectVeh.Location = New System.Drawing.Point(592, 14)
+        Me.ButtonSelectVeh.Location = New System.Drawing.Point(867, 12)
         Me.ButtonSelectVeh.Margin = New System.Windows.Forms.Padding(2)
         Me.ButtonSelectVeh.Name = "ButtonSelectVeh"
         Me.ButtonSelectVeh.Size = New System.Drawing.Size(31, 23)
@@ -467,21 +458,21 @@ Partial Class F_Main
         Me.ButtonSelectVeh.Text = "..."
         Me.ButtonSelectVeh.UseVisualStyleBackColor = True
         '
-        'GroupBox6
+        'GB_hz_out
         '
-        Me.GroupBox6.Controls.Add(Me.RB100Hz)
-        Me.GroupBox6.Controls.Add(Me.RB1Hz)
-        Me.GroupBox6.Location = New System.Drawing.Point(481, 88)
-        Me.GroupBox6.Name = "GroupBox6"
-        Me.GroupBox6.Size = New System.Drawing.Size(103, 76)
-        Me.GroupBox6.TabIndex = 41
-        Me.GroupBox6.TabStop = False
-        Me.GroupBox6.Text = "Output"
+        Me.GB_hz_out.Controls.Add(Me.RB100Hz)
+        Me.GB_hz_out.Controls.Add(Me.RB1Hz)
+        Me.GB_hz_out.Location = New System.Drawing.Point(122, 94)
+        Me.GB_hz_out.Name = "GB_hz_out"
+        Me.GB_hz_out.Size = New System.Drawing.Size(97, 67)
+        Me.GB_hz_out.TabIndex = 6
+        Me.GB_hz_out.TabStop = False
+        Me.GB_hz_out.Text = "Output"
         '
         'RB100Hz
         '
         Me.RB100Hz.AutoSize = True
-        Me.RB100Hz.Location = New System.Drawing.Point(7, 42)
+        Me.RB100Hz.Location = New System.Drawing.Point(5, 41)
         Me.RB100Hz.Name = "RB100Hz"
         Me.RB100Hz.Size = New System.Drawing.Size(56, 17)
         Me.RB100Hz.TabIndex = 1
@@ -500,26 +491,26 @@ Partial Class F_Main
         Me.RB1Hz.Text = "1Hz"
         Me.RB1Hz.UseVisualStyleBackColor = True
         '
-        'GroupBox2
-        '
-        Me.GroupBox2.Controls.Add(Me.Label13)
-        Me.GroupBox2.Controls.Add(Me.Label12)
-        Me.GroupBox2.Controls.Add(Me.Label11)
-        Me.GroupBox2.Controls.Add(Me.Label10)
-        Me.GroupBox2.Controls.Add(Me.Label6)
-        Me.GroupBox2.Controls.Add(Me.Label5)
-        Me.GroupBox2.Controls.Add(Me.Label4)
-        Me.GroupBox2.Controls.Add(Me.Label3)
-        Me.GroupBox2.Controls.Add(Me.TextBoxbetaf)
-        Me.GroupBox2.Controls.Add(Me.TextBoxbetad)
-        Me.GroupBox2.Controls.Add(Me.TextBoxAirf)
-        Me.GroupBox2.Controls.Add(Me.TextBoxAird)
-        Me.GroupBox2.Location = New System.Drawing.Point(98, 72)
-        Me.GroupBox2.Name = "GroupBox2"
-        Me.GroupBox2.Size = New System.Drawing.Size(463, 57)
-        Me.GroupBox2.TabIndex = 23
-        Me.GroupBox2.TabStop = False
-        Me.GroupBox2.Text = "Anemometer instrument calibration"
+        'GB_Anemometer
+        '
+        Me.GB_Anemometer.Controls.Add(Me.Label13)
+        Me.GB_Anemometer.Controls.Add(Me.Label12)
+        Me.GB_Anemometer.Controls.Add(Me.Label11)
+        Me.GB_Anemometer.Controls.Add(Me.Label10)
+        Me.GB_Anemometer.Controls.Add(Me.Label6)
+        Me.GB_Anemometer.Controls.Add(Me.Label5)
+        Me.GB_Anemometer.Controls.Add(Me.Label4)
+        Me.GB_Anemometer.Controls.Add(Me.Label3)
+        Me.GB_Anemometer.Controls.Add(Me.TextBoxbetaf)
+        Me.GB_Anemometer.Controls.Add(Me.TextBoxbetad)
+        Me.GB_Anemometer.Controls.Add(Me.TextBoxAirf)
+        Me.GB_Anemometer.Controls.Add(Me.TextBoxAird)
+        Me.GB_Anemometer.Location = New System.Drawing.Point(335, 72)
+        Me.GB_Anemometer.Name = "GB_Anemometer"
+        Me.GB_Anemometer.Size = New System.Drawing.Size(463, 57)
+        Me.GB_Anemometer.TabIndex = 23
+        Me.GB_Anemometer.TabStop = False
+        Me.GB_Anemometer.Text = "Anemometer instrument calibration"
         '
         'Label13
         '
@@ -598,8 +589,7 @@ Partial Class F_Main
         Me.TextBoxbetaf.Location = New System.Drawing.Point(271, 20)
         Me.TextBoxbetaf.Name = "TextBoxbetaf"
         Me.TextBoxbetaf.Size = New System.Drawing.Size(40, 20)
-        Me.TextBoxbetaf.TabIndex = 21
-        Me.TextBoxbetaf.Text = "1"
+        Me.TextBoxbetaf.TabIndex = 10
         Me.TextBoxbetaf.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
         '
         'TextBoxbetad
@@ -607,8 +597,7 @@ Partial Class F_Main
         Me.TextBoxbetad.Location = New System.Drawing.Point(383, 20)
         Me.TextBoxbetad.Name = "TextBoxbetad"
         Me.TextBoxbetad.Size = New System.Drawing.Size(40, 20)
-        Me.TextBoxbetad.TabIndex = 22
-        Me.TextBoxbetad.Text = "0"
+        Me.TextBoxbetad.TabIndex = 11
         Me.TextBoxbetad.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
         '
         'TextBoxAirf
@@ -616,8 +605,7 @@ Partial Class F_Main
         Me.TextBoxAirf.Location = New System.Drawing.Point(46, 20)
         Me.TextBoxAirf.Name = "TextBoxAirf"
         Me.TextBoxAirf.Size = New System.Drawing.Size(40, 20)
-        Me.TextBoxAirf.TabIndex = 19
-        Me.TextBoxAirf.Text = "1"
+        Me.TextBoxAirf.TabIndex = 8
         Me.TextBoxAirf.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
         '
         'TextBoxAird
@@ -625,50 +613,43 @@ Partial Class F_Main
         Me.TextBoxAird.Location = New System.Drawing.Point(154, 20)
         Me.TextBoxAird.Name = "TextBoxAird"
         Me.TextBoxAird.Size = New System.Drawing.Size(40, 20)
-        Me.TextBoxAird.TabIndex = 20
-        Me.TextBoxAird.Text = "0"
+        Me.TextBoxAird.TabIndex = 9
         Me.TextBoxAird.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
         '
-        'GroupBox4
-        '
-        Me.GroupBox4.Controls.Add(Me.CheckBoxGrd)
-        Me.GroupBox4.Controls.Add(Me.CheckBoxAcc)
-        Me.GroupBox4.Location = New System.Drawing.Point(481, 6)
-        Me.GroupBox4.Name = "GroupBox4"
-        Me.GroupBox4.Size = New System.Drawing.Size(107, 76)
-        Me.GroupBox4.TabIndex = 34
-        Me.GroupBox4.TabStop = False
-        Me.GroupBox4.Text = "Evaluation"
-        '
-        'CheckBoxGrd
-        '
-        Me.CheckBoxGrd.AutoSize = True
-        Me.CheckBoxGrd.Location = New System.Drawing.Point(6, 42)
-        Me.CheckBoxGrd.Name = "CheckBoxGrd"
-        Me.CheckBoxGrd.Size = New System.Drawing.Size(93, 17)
-        Me.CheckBoxGrd.TabIndex = 1
-        Me.CheckBoxGrd.Text = "Grd correction"
-        Me.CheckBoxGrd.UseVisualStyleBackColor = True
-        '
-        'CheckBoxAcc
-        '
-        Me.CheckBoxAcc.AutoSize = True
-        Me.CheckBoxAcc.Location = New System.Drawing.Point(6, 19)
-        Me.CheckBoxAcc.Name = "CheckBoxAcc"
-        Me.CheckBoxAcc.Size = New System.Drawing.Size(95, 17)
-        Me.CheckBoxAcc.TabIndex = 0
-        Me.CheckBoxAcc.Text = "Acc correction"
-        Me.CheckBoxAcc.UseVisualStyleBackColor = True
+        'CB_gradient_correction
+        '
+        Me.CB_gradient_correction.AutoSize = True
+        Me.CB_gradient_correction.Location = New System.Drawing.Point(6, 137)
+        Me.CB_gradient_correction.Name = "CB_gradient_correction"
+        Me.CB_gradient_correction.Size = New System.Drawing.Size(93, 17)
+        Me.CB_gradient_correction.TabIndex = 5
+        Me.CB_gradient_correction.Text = "Grd correction"
+        Me.CB_gradient_correction.UseVisualStyleBackColor = True
+        '
+        'CB_accel_correction
+        '
+        Me.CB_accel_correction.AutoSize = True
+        Me.CB_accel_correction.Location = New System.Drawing.Point(6, 111)
+        Me.CB_accel_correction.Name = "CB_accel_correction"
+        Me.CB_accel_correction.Size = New System.Drawing.Size(95, 17)
+        Me.CB_accel_correction.TabIndex = 4
+        Me.CB_accel_correction.Text = "Acc correction"
+        Me.CB_accel_correction.UseVisualStyleBackColor = True
         '
         'GroupBoxInput
         '
         Me.GroupBoxInput.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Left) _
                     Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
-        Me.GroupBoxInput.Controls.Add(Me.Label14)
-        Me.GroupBoxInput.Controls.Add(Me.Label2)
-        Me.GroupBoxInput.Controls.Add(Me.TextBoxRRC)
+        Me.GroupBoxInput.Controls.Add(Me.ButtonDataLS1)
+        Me.GroupBoxInput.Controls.Add(Me.TextBoxDataLS2)
+        Me.GroupBoxInput.Controls.Add(Me.ButtonSelectDataLS1)
+        Me.GroupBoxInput.Controls.Add(Me.ButtonDataLS2)
+        Me.GroupBoxInput.Controls.Add(Me.TextBoxDataLS1)
+        Me.GroupBoxInput.Controls.Add(Me.ButtonSelectDataLS2)
+        Me.GroupBoxInput.Controls.Add(Me.ButtonSelectDataHS)
+        Me.GroupBoxInput.Controls.Add(Me.TextBoxDataHS)
+        Me.GroupBoxInput.Controls.Add(Me.ButtonDataHS)
         Me.GroupBoxInput.Controls.Add(Me.ButtonEval)
-        Me.GroupBoxInput.Controls.Add(Me.GroupBox5)
         Me.GroupBoxInput.Controls.Add(Me.TextBoxMSCT)
         Me.GroupBoxInput.Controls.Add(Me.ButtonMSCT)
         Me.GroupBoxInput.Controls.Add(Me.ButtonSelectMSCT)
@@ -677,134 +658,74 @@ Partial Class F_Main
         Me.GroupBoxInput.Margin = New System.Windows.Forms.Padding(2)
         Me.GroupBoxInput.Name = "GroupBoxInput"
         Me.GroupBoxInput.Padding = New System.Windows.Forms.Padding(2)
-        Me.GroupBoxInput.Size = New System.Drawing.Size(632, 177)
+        Me.GroupBoxInput.Size = New System.Drawing.Size(907, 141)
         Me.GroupBoxInput.TabIndex = 23
         Me.GroupBoxInput.TabStop = False
         Me.GroupBoxInput.Text = "Constant speed test"
         '
-        'Label14
-        '
-        Me.Label14.AutoSize = True
-        Me.Label14.Location = New System.Drawing.Point(158, 47)
-        Me.Label14.Name = "Label14"
-        Me.Label14.Size = New System.Drawing.Size(16, 13)
-        Me.Label14.TabIndex = 37
-        Me.Label14.Text = "[-]"
-        '
-        'Label2
-        '
-        Me.Label2.AutoSize = True
-        Me.Label2.Location = New System.Drawing.Point(5, 47)
-        Me.Label2.Name = "Label2"
-        Me.Label2.Size = New System.Drawing.Size(80, 13)
-        Me.Label2.TabIndex = 36
-        Me.Label2.Text = "Rolling res. corr"
-        '
-        'TextBoxRRC
-        '
-        Me.TextBoxRRC.Location = New System.Drawing.Point(98, 44)
-        Me.TextBoxRRC.Name = "TextBoxRRC"
-        Me.TextBoxRRC.Size = New System.Drawing.Size(54, 20)
-        Me.TextBoxRRC.TabIndex = 35
-        Me.TextBoxRRC.Text = "1.000"
-        Me.TextBoxRRC.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
-        '
-        'ButtonEval
-        '
-        Me.ButtonEval.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
-        Me.ButtonEval.Enabled = False
-        Me.ButtonEval.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
-        Me.ButtonEval.Location = New System.Drawing.Point(564, 79)
-        Me.ButtonEval.Margin = New System.Windows.Forms.Padding(2)
-        Me.ButtonEval.Name = "ButtonEval"
-        Me.ButtonEval.Size = New System.Drawing.Size(60, 40)
-        Me.ButtonEval.TabIndex = 34
-        Me.ButtonEval.Text = "Evaluate"
-        Me.ButtonEval.UseVisualStyleBackColor = True
-        '
-        'GroupBox5
-        '
-        Me.GroupBox5.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Left) _
-                    Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
-        Me.GroupBox5.Controls.Add(Me.ButtonDataLS1)
-        Me.GroupBox5.Controls.Add(Me.TextBoxDataLS2)
-        Me.GroupBox5.Controls.Add(Me.ButtonSelectDataLS1)
-        Me.GroupBox5.Controls.Add(Me.ButtonDataLS2)
-        Me.GroupBox5.Controls.Add(Me.TextBoxDataLS1)
-        Me.GroupBox5.Controls.Add(Me.ButtonSelectDataLS2)
-        Me.GroupBox5.Controls.Add(Me.ButtonSelectDataHS)
-        Me.GroupBox5.Controls.Add(Me.TextBoxDataHS)
-        Me.GroupBox5.Controls.Add(Me.ButtonDataHS)
-        Me.GroupBox5.Location = New System.Drawing.Point(5, 70)
-        Me.GroupBox5.Name = "GroupBox5"
-        Me.GroupBox5.Size = New System.Drawing.Size(554, 100)
-        Me.GroupBox5.TabIndex = 34
-        Me.GroupBox5.TabStop = False
-        Me.GroupBox5.Text = "Test sequence"
-        '
         'ButtonDataLS1
         '
         Me.ButtonDataLS1.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
-        Me.ButtonDataLS1.Location = New System.Drawing.Point(5, 18)
+        Me.ButtonDataLS1.Location = New System.Drawing.Point(6, 54)
         Me.ButtonDataLS1.Margin = New System.Windows.Forms.Padding(2)
         Me.ButtonDataLS1.Name = "ButtonDataLS1"
-        Me.ButtonDataLS1.Size = New System.Drawing.Size(107, 23)
-        Me.ButtonDataLS1.TabIndex = 27
-        Me.ButtonDataLS1.Text = "Data low speed 1"
+        Me.ButtonDataLS1.Size = New System.Drawing.Size(134, 23)
+        Me.ButtonDataLS1.TabIndex = 37
+        Me.ButtonDataLS1.Text = "Low-speed 1 run"
         Me.ButtonDataLS1.UseVisualStyleBackColor = True
         '
         'TextBoxDataLS2
         '
         Me.TextBoxDataLS2.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Left) _
                     Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
-        Me.TextBoxDataLS2.Location = New System.Drawing.Point(116, 74)
+        Me.TextBoxDataLS2.Location = New System.Drawing.Point(145, 110)
         Me.TextBoxDataLS2.Margin = New System.Windows.Forms.Padding(2)
         Me.TextBoxDataLS2.Name = "TextBoxDataLS2"
-        Me.TextBoxDataLS2.Size = New System.Drawing.Size(384, 20)
-        Me.TextBoxDataLS2.TabIndex = 32
+        Me.TextBoxDataLS2.Size = New System.Drawing.Size(654, 20)
+        Me.TextBoxDataLS2.TabIndex = 19
         '
         'ButtonSelectDataLS1
         '
         Me.ButtonSelectDataLS1.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
         Me.ButtonSelectDataLS1.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
-        Me.ButtonSelectDataLS1.Location = New System.Drawing.Point(508, 18)
+        Me.ButtonSelectDataLS1.Location = New System.Drawing.Point(803, 53)
         Me.ButtonSelectDataLS1.Margin = New System.Windows.Forms.Padding(2)
         Me.ButtonSelectDataLS1.Name = "ButtonSelectDataLS1"
         Me.ButtonSelectDataLS1.Size = New System.Drawing.Size(31, 23)
-        Me.ButtonSelectDataLS1.TabIndex = 25
+        Me.ButtonSelectDataLS1.TabIndex = 16
         Me.ButtonSelectDataLS1.Text = "..."
         Me.ButtonSelectDataLS1.UseVisualStyleBackColor = True
         '
         'ButtonDataLS2
         '
         Me.ButtonDataLS2.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
-        Me.ButtonDataLS2.Location = New System.Drawing.Point(5, 72)
+        Me.ButtonDataLS2.Location = New System.Drawing.Point(6, 108)
         Me.ButtonDataLS2.Margin = New System.Windows.Forms.Padding(2)
         Me.ButtonDataLS2.Name = "ButtonDataLS2"
-        Me.ButtonDataLS2.Size = New System.Drawing.Size(107, 23)
-        Me.ButtonDataLS2.TabIndex = 33
-        Me.ButtonDataLS2.Text = "Data low speed 2"
+        Me.ButtonDataLS2.Size = New System.Drawing.Size(134, 23)
+        Me.ButtonDataLS2.TabIndex = 43
+        Me.ButtonDataLS2.Text = "Low-speed 2 run"
         Me.ButtonDataLS2.UseVisualStyleBackColor = True
         '
         'TextBoxDataLS1
         '
         Me.TextBoxDataLS1.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Left) _
                     Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
-        Me.TextBoxDataLS1.Location = New System.Drawing.Point(116, 20)
+        Me.TextBoxDataLS1.Location = New System.Drawing.Point(145, 56)
         Me.TextBoxDataLS1.Margin = New System.Windows.Forms.Padding(2)
         Me.TextBoxDataLS1.Name = "TextBoxDataLS1"
-        Me.TextBoxDataLS1.Size = New System.Drawing.Size(384, 20)
-        Me.TextBoxDataLS1.TabIndex = 26
+        Me.TextBoxDataLS1.Size = New System.Drawing.Size(654, 20)
+        Me.TextBoxDataLS1.TabIndex = 15
         '
         'ButtonSelectDataLS2
         '
         Me.ButtonSelectDataLS2.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
         Me.ButtonSelectDataLS2.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
-        Me.ButtonSelectDataLS2.Location = New System.Drawing.Point(508, 72)
+        Me.ButtonSelectDataLS2.Location = New System.Drawing.Point(803, 107)
         Me.ButtonSelectDataLS2.Margin = New System.Windows.Forms.Padding(2)
         Me.ButtonSelectDataLS2.Name = "ButtonSelectDataLS2"
         Me.ButtonSelectDataLS2.Size = New System.Drawing.Size(31, 23)
-        Me.ButtonSelectDataLS2.TabIndex = 31
+        Me.ButtonSelectDataLS2.TabIndex = 20
         Me.ButtonSelectDataLS2.Text = "..."
         Me.ButtonSelectDataLS2.UseVisualStyleBackColor = True
         '
@@ -812,11 +733,11 @@ Partial Class F_Main
         '
         Me.ButtonSelectDataHS.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
         Me.ButtonSelectDataHS.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
-        Me.ButtonSelectDataHS.Location = New System.Drawing.Point(508, 45)
+        Me.ButtonSelectDataHS.Location = New System.Drawing.Point(803, 80)
         Me.ButtonSelectDataHS.Margin = New System.Windows.Forms.Padding(2)
         Me.ButtonSelectDataHS.Name = "ButtonSelectDataHS"
         Me.ButtonSelectDataHS.Size = New System.Drawing.Size(31, 23)
-        Me.ButtonSelectDataHS.TabIndex = 28
+        Me.ButtonSelectDataHS.TabIndex = 18
         Me.ButtonSelectDataHS.Text = "..."
         Me.ButtonSelectDataHS.UseVisualStyleBackColor = True
         '
@@ -824,32 +745,48 @@ Partial Class F_Main
         '
         Me.TextBoxDataHS.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Left) _
                     Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
-        Me.TextBoxDataHS.Location = New System.Drawing.Point(117, 47)
+        Me.TextBoxDataHS.Location = New System.Drawing.Point(144, 83)
         Me.TextBoxDataHS.Margin = New System.Windows.Forms.Padding(2)
         Me.TextBoxDataHS.Name = "TextBoxDataHS"
-        Me.TextBoxDataHS.Size = New System.Drawing.Size(383, 20)
-        Me.TextBoxDataHS.TabIndex = 29
+        Me.TextBoxDataHS.Size = New System.Drawing.Size(655, 20)
+        Me.TextBoxDataHS.TabIndex = 17
         '
         'ButtonDataHS
         '
         Me.ButtonDataHS.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
-        Me.ButtonDataHS.Location = New System.Drawing.Point(5, 45)
+        Me.ButtonDataHS.Location = New System.Drawing.Point(6, 81)
         Me.ButtonDataHS.Margin = New System.Windows.Forms.Padding(2)
         Me.ButtonDataHS.Name = "ButtonDataHS"
-        Me.ButtonDataHS.Size = New System.Drawing.Size(107, 23)
-        Me.ButtonDataHS.TabIndex = 30
-        Me.ButtonDataHS.Text = "Data high speed"
+        Me.ButtonDataHS.Size = New System.Drawing.Size(134, 23)
+        Me.ButtonDataHS.TabIndex = 40
+        Me.ButtonDataHS.Text = "High-speed run"
         Me.ButtonDataHS.UseVisualStyleBackColor = True
         '
+        'ButtonEval
+        '
+        Me.ButtonEval.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
+        Me.ButtonEval.Enabled = False
+        Me.ButtonEval.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
+        Me.ButtonEval.Image = Global.CSE.My.Resources.Resources.Play_icon
+        Me.ButtonEval.Location = New System.Drawing.Point(838, 17)
+        Me.ButtonEval.Margin = New System.Windows.Forms.Padding(2)
+        Me.ButtonEval.Name = "ButtonEval"
+        Me.ButtonEval.Size = New System.Drawing.Size(60, 113)
+        Me.ButtonEval.TabIndex = 21
+        Me.ButtonEval.Text = "Evaluate"
+        Me.ButtonEval.TextAlign = System.Drawing.ContentAlignment.BottomCenter
+        Me.ButtonEval.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText
+        Me.ButtonEval.UseVisualStyleBackColor = True
+        '
         'TextBoxMSCT
         '
         Me.TextBoxMSCT.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Left) _
                     Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
-        Me.TextBoxMSCT.Location = New System.Drawing.Point(98, 19)
+        Me.TextBoxMSCT.Location = New System.Drawing.Point(144, 19)
         Me.TextBoxMSCT.Margin = New System.Windows.Forms.Padding(2)
         Me.TextBoxMSCT.Name = "TextBoxMSCT"
-        Me.TextBoxMSCT.Size = New System.Drawing.Size(488, 20)
-        Me.TextBoxMSCT.TabIndex = 23
+        Me.TextBoxMSCT.Size = New System.Drawing.Size(655, 20)
+        Me.TextBoxMSCT.TabIndex = 13
         '
         'ButtonMSCT
         '
@@ -857,20 +794,20 @@ Partial Class F_Main
         Me.ButtonMSCT.Location = New System.Drawing.Point(4, 17)
         Me.ButtonMSCT.Margin = New System.Windows.Forms.Padding(2)
         Me.ButtonMSCT.Name = "ButtonMSCT"
-        Me.ButtonMSCT.Size = New System.Drawing.Size(90, 23)
+        Me.ButtonMSCT.Size = New System.Drawing.Size(136, 23)
         Me.ButtonMSCT.TabIndex = 24
-        Me.ButtonMSCT.Text = "MS config"
+        Me.ButtonMSCT.Text = "Coasting Track"
         Me.ButtonMSCT.UseVisualStyleBackColor = True
         '
         'ButtonSelectMSCT
         '
         Me.ButtonSelectMSCT.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
         Me.ButtonSelectMSCT.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
-        Me.ButtonSelectMSCT.Location = New System.Drawing.Point(593, 17)
+        Me.ButtonSelectMSCT.Location = New System.Drawing.Point(803, 17)
         Me.ButtonSelectMSCT.Margin = New System.Windows.Forms.Padding(2)
         Me.ButtonSelectMSCT.Name = "ButtonSelectMSCT"
         Me.ButtonSelectMSCT.Size = New System.Drawing.Size(31, 23)
-        Me.ButtonSelectMSCT.TabIndex = 22
+        Me.ButtonSelectMSCT.TabIndex = 14
         Me.ButtonSelectMSCT.Text = "..."
         Me.ButtonSelectMSCT.UseVisualStyleBackColor = True
         '
@@ -905,40 +842,19 @@ Partial Class F_Main
         Me.PictureBox1.TabIndex = 27
         Me.PictureBox1.TabStop = False
         '
-        'ButtonSave
-        '
-        Me.ButtonSave.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
-        Me.ButtonSave.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
-        Me.ButtonSave.Location = New System.Drawing.Point(578, 524)
-        Me.ButtonSave.Margin = New System.Windows.Forms.Padding(2)
-        Me.ButtonSave.Name = "ButtonSave"
-        Me.ButtonSave.Size = New System.Drawing.Size(50, 23)
-        Me.ButtonSave.TabIndex = 32
-        Me.ButtonSave.Text = "Save"
-        Me.ButtonSave.UseVisualStyleBackColor = True
-        '
-        'ButtonExit
-        '
-        Me.ButtonExit.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
-        Me.ButtonExit.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
-        Me.ButtonExit.Location = New System.Drawing.Point(578, 551)
-        Me.ButtonExit.Margin = New System.Windows.Forms.Padding(2)
-        Me.ButtonExit.Name = "ButtonExit"
-        Me.ButtonExit.Size = New System.Drawing.Size(50, 23)
-        Me.ButtonExit.TabIndex = 31
-        Me.ButtonExit.Text = "Exit"
-        Me.ButtonExit.UseVisualStyleBackColor = True
-        '
         'ButtonCalC
         '
         Me.ButtonCalC.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
         Me.ButtonCalC.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
-        Me.ButtonCalC.Location = New System.Drawing.Point(566, 81)
+        Me.ButtonCalC.Image = Global.CSE.My.Resources.Resources.Play_icon
+        Me.ButtonCalC.Location = New System.Drawing.Point(837, 18)
         Me.ButtonCalC.Margin = New System.Windows.Forms.Padding(2)
         Me.ButtonCalC.Name = "ButtonCalC"
-        Me.ButtonCalC.Size = New System.Drawing.Size(60, 40)
-        Me.ButtonCalC.TabIndex = 30
+        Me.ButtonCalC.Size = New System.Drawing.Size(60, 111)
+        Me.ButtonCalC.TabIndex = 12
         Me.ButtonCalC.Text = "Calibrate"
+        Me.ButtonCalC.TextAlign = System.Drawing.ContentAlignment.BottomCenter
+        Me.ButtonCalC.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText
         Me.ButtonCalC.UseVisualStyleBackColor = True
         '
         'GroupBox1
@@ -948,15 +864,14 @@ Partial Class F_Main
         Me.GroupBox1.Controls.Add(Me.TextBoxDataC)
         Me.GroupBox1.Controls.Add(Me.ButtonDataC)
         Me.GroupBox1.Controls.Add(Me.ButtonSelectDataC)
-        Me.GroupBox1.Controls.Add(Me.GroupBox2)
-        Me.GroupBox1.Controls.Add(Me.GroupBox3)
+        Me.GroupBox1.Controls.Add(Me.GB_Anemometer)
         Me.GroupBox1.Controls.Add(Me.TextBoxMSCC)
         Me.GroupBox1.Controls.Add(Me.ButtonMSCC)
         Me.GroupBox1.Controls.Add(Me.ButtonSelectMSCC)
         Me.GroupBox1.Controls.Add(Me.ButtonCalC)
         Me.GroupBox1.Location = New System.Drawing.Point(6, 81)
         Me.GroupBox1.Name = "GroupBox1"
-        Me.GroupBox1.Size = New System.Drawing.Size(631, 188)
+        Me.GroupBox1.Size = New System.Drawing.Size(906, 138)
         Me.GroupBox1.TabIndex = 33
         Me.GroupBox1.TabStop = False
         Me.GroupBox1.Text = "Calibration test"
@@ -965,11 +880,11 @@ Partial Class F_Main
         '
         Me.TextBoxDataC.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Left) _
                     Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
-        Me.TextBoxDataC.Location = New System.Drawing.Point(98, 47)
+        Me.TextBoxDataC.Location = New System.Drawing.Point(144, 47)
         Me.TextBoxDataC.Margin = New System.Windows.Forms.Padding(2)
         Me.TextBoxDataC.Name = "TextBoxDataC"
-        Me.TextBoxDataC.Size = New System.Drawing.Size(491, 20)
-        Me.TextBoxDataC.TabIndex = 33
+        Me.TextBoxDataC.Size = New System.Drawing.Size(654, 20)
+        Me.TextBoxDataC.TabIndex = 6
         '
         'ButtonDataC
         '
@@ -977,23 +892,56 @@ Partial Class F_Main
         Me.ButtonDataC.Location = New System.Drawing.Point(5, 45)
         Me.ButtonDataC.Margin = New System.Windows.Forms.Padding(2)
         Me.ButtonDataC.Name = "ButtonDataC"
-        Me.ButtonDataC.Size = New System.Drawing.Size(89, 23)
+        Me.ButtonDataC.Size = New System.Drawing.Size(135, 23)
         Me.ButtonDataC.TabIndex = 34
-        Me.ButtonDataC.Text = "Data calib"
+        Me.ButtonDataC.Text = "Calibration run"
         Me.ButtonDataC.UseVisualStyleBackColor = True
         '
         'ButtonSelectDataC
         '
         Me.ButtonSelectDataC.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
         Me.ButtonSelectDataC.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
-        Me.ButtonSelectDataC.Location = New System.Drawing.Point(593, 45)
+        Me.ButtonSelectDataC.Location = New System.Drawing.Point(802, 45)
         Me.ButtonSelectDataC.Margin = New System.Windows.Forms.Padding(2)
         Me.ButtonSelectDataC.Name = "ButtonSelectDataC"
         Me.ButtonSelectDataC.Size = New System.Drawing.Size(31, 23)
-        Me.ButtonSelectDataC.TabIndex = 32
+        Me.ButtonSelectDataC.TabIndex = 7
         Me.ButtonSelectDataC.Text = "..."
         Me.ButtonSelectDataC.UseVisualStyleBackColor = True
         '
+        'TextBoxMSCC
+        '
+        Me.TextBoxMSCC.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Left) _
+                    Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
+        Me.TextBoxMSCC.Location = New System.Drawing.Point(144, 20)
+        Me.TextBoxMSCC.Margin = New System.Windows.Forms.Padding(2)
+        Me.TextBoxMSCC.Name = "TextBoxMSCC"
+        Me.TextBoxMSCC.Size = New System.Drawing.Size(654, 20)
+        Me.TextBoxMSCC.TabIndex = 4
+        '
+        'ButtonMSCC
+        '
+        Me.ButtonMSCC.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
+        Me.ButtonMSCC.Location = New System.Drawing.Point(5, 18)
+        Me.ButtonMSCC.Margin = New System.Windows.Forms.Padding(2)
+        Me.ButtonMSCC.Name = "ButtonMSCC"
+        Me.ButtonMSCC.Size = New System.Drawing.Size(135, 23)
+        Me.ButtonMSCC.TabIndex = 18
+        Me.ButtonMSCC.Text = "CalibrationTrack"
+        Me.ButtonMSCC.UseVisualStyleBackColor = True
+        '
+        'ButtonSelectMSCC
+        '
+        Me.ButtonSelectMSCC.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
+        Me.ButtonSelectMSCC.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
+        Me.ButtonSelectMSCC.Location = New System.Drawing.Point(802, 18)
+        Me.ButtonSelectMSCC.Margin = New System.Windows.Forms.Padding(2)
+        Me.ButtonSelectMSCC.Name = "ButtonSelectMSCC"
+        Me.ButtonSelectMSCC.Size = New System.Drawing.Size(31, 23)
+        Me.ButtonSelectMSCC.TabIndex = 5
+        Me.ButtonSelectMSCC.Text = "..."
+        Me.ButtonSelectMSCC.UseVisualStyleBackColor = True
+        '
         'GroupBox3
         '
         Me.GroupBox3.Controls.Add(Me.Label17)
@@ -1005,7 +953,7 @@ Partial Class F_Main
         Me.GroupBox3.Controls.Add(Me.TextBoxRAirPos)
         Me.GroupBox3.Controls.Add(Me.Label7)
         Me.GroupBox3.Controls.Add(Me.TextBoxRVeh)
-        Me.GroupBox3.Location = New System.Drawing.Point(98, 135)
+        Me.GroupBox3.Location = New System.Drawing.Point(341, 225)
         Me.GroupBox3.Name = "GroupBox3"
         Me.GroupBox3.Size = New System.Drawing.Size(463, 46)
         Me.GroupBox3.TabIndex = 31
@@ -1096,53 +1044,21 @@ Partial Class F_Main
         Me.TextBoxRVeh.TabIndex = 0
         Me.TextBoxRVeh.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
         '
-        'TextBoxMSCC
-        '
-        Me.TextBoxMSCC.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Left) _
-                    Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
-        Me.TextBoxMSCC.Location = New System.Drawing.Point(98, 20)
-        Me.TextBoxMSCC.Margin = New System.Windows.Forms.Padding(2)
-        Me.TextBoxMSCC.Name = "TextBoxMSCC"
-        Me.TextBoxMSCC.Size = New System.Drawing.Size(491, 20)
-        Me.TextBoxMSCC.TabIndex = 17
-        '
-        'ButtonMSCC
-        '
-        Me.ButtonMSCC.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
-        Me.ButtonMSCC.Location = New System.Drawing.Point(5, 18)
-        Me.ButtonMSCC.Margin = New System.Windows.Forms.Padding(2)
-        Me.ButtonMSCC.Name = "ButtonMSCC"
-        Me.ButtonMSCC.Size = New System.Drawing.Size(89, 23)
-        Me.ButtonMSCC.TabIndex = 18
-        Me.ButtonMSCC.Text = "MS config"
-        Me.ButtonMSCC.UseVisualStyleBackColor = True
-        '
-        'ButtonSelectMSCC
-        '
-        Me.ButtonSelectMSCC.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
-        Me.ButtonSelectMSCC.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
-        Me.ButtonSelectMSCC.Location = New System.Drawing.Point(593, 18)
-        Me.ButtonSelectMSCC.Margin = New System.Windows.Forms.Padding(2)
-        Me.ButtonSelectMSCC.Name = "ButtonSelectMSCC"
-        Me.ButtonSelectMSCC.Size = New System.Drawing.Size(31, 23)
-        Me.ButtonSelectMSCC.TabIndex = 16
-        Me.ButtonSelectMSCC.Text = "..."
-        Me.ButtonSelectMSCC.UseVisualStyleBackColor = True
-        '
         'TabControlOutMsg
         '
         Me.TabControlOutMsg.Alignment = System.Windows.Forms.TabAlignment.Bottom
-        Me.TabControlOutMsg.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Left) _
+        Me.TabControlOutMsg.Anchor = CType((((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
+                    Or System.Windows.Forms.AnchorStyles.Left) _
                     Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
         Me.TabControlOutMsg.Controls.Add(Me.TabPageMSG)
         Me.TabControlOutMsg.Controls.Add(Me.TabPageWar)
         Me.TabControlOutMsg.Controls.Add(Me.TabPageErr)
         Me.TabControlOutMsg.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.5!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
-        Me.TabControlOutMsg.Location = New System.Drawing.Point(5, 455)
+        Me.TabControlOutMsg.Location = New System.Drawing.Point(8, 520)
         Me.TabControlOutMsg.Margin = New System.Windows.Forms.Padding(2)
         Me.TabControlOutMsg.Name = "TabControlOutMsg"
         Me.TabControlOutMsg.SelectedIndex = 0
-        Me.TabControlOutMsg.Size = New System.Drawing.Size(530, 119)
+        Me.TabControlOutMsg.Size = New System.Drawing.Size(925, 187)
         Me.TabControlOutMsg.TabIndex = 34
         '
         'TabPageMSG
@@ -1153,14 +1069,15 @@ Partial Class F_Main
         Me.TabPageMSG.Margin = New System.Windows.Forms.Padding(2)
         Me.TabPageMSG.Name = "TabPageMSG"
         Me.TabPageMSG.Padding = New System.Windows.Forms.Padding(2)
-        Me.TabPageMSG.Size = New System.Drawing.Size(522, 93)
+        Me.TabPageMSG.Size = New System.Drawing.Size(917, 161)
         Me.TabPageMSG.TabIndex = 0
-        Me.TabPageMSG.Text = "Messages"
+        Me.TabPageMSG.Text = "Messages(0)"
         Me.TabPageMSG.UseVisualStyleBackColor = True
         '
         'ListBoxMSG
         '
-        Me.ListBoxMSG.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Left) _
+        Me.ListBoxMSG.Anchor = CType((((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
+                    Or System.Windows.Forms.AnchorStyles.Left) _
                     Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
         Me.ListBoxMSG.Font = New System.Drawing.Font("Consolas", 8.5!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
         Me.ListBoxMSG.FormattingEnabled = True
@@ -1168,7 +1085,8 @@ Partial Class F_Main
         Me.ListBoxMSG.Location = New System.Drawing.Point(2, 4)
         Me.ListBoxMSG.Margin = New System.Windows.Forms.Padding(2)
         Me.ListBoxMSG.Name = "ListBoxMSG"
-        Me.ListBoxMSG.Size = New System.Drawing.Size(516, 82)
+        Me.ListBoxMSG.SelectionMode = System.Windows.Forms.SelectionMode.MultiSimple
+        Me.ListBoxMSG.Size = New System.Drawing.Size(913, 160)
         Me.ListBoxMSG.TabIndex = 23
         '
         'TabPageWar
@@ -1178,14 +1096,15 @@ Partial Class F_Main
         Me.TabPageWar.Margin = New System.Windows.Forms.Padding(2)
         Me.TabPageWar.Name = "TabPageWar"
         Me.TabPageWar.Padding = New System.Windows.Forms.Padding(2)
-        Me.TabPageWar.Size = New System.Drawing.Size(522, 93)
+        Me.TabPageWar.Size = New System.Drawing.Size(917, 161)
         Me.TabPageWar.TabIndex = 1
         Me.TabPageWar.Text = "Warnings (0)"
         Me.TabPageWar.UseVisualStyleBackColor = True
         '
         'ListBoxWar
         '
-        Me.ListBoxWar.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Left) _
+        Me.ListBoxWar.Anchor = CType((((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
+                    Or System.Windows.Forms.AnchorStyles.Left) _
                     Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
         Me.ListBoxWar.Font = New System.Drawing.Font("Consolas", 8.5!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
         Me.ListBoxWar.FormattingEnabled = True
@@ -1193,7 +1112,8 @@ Partial Class F_Main
         Me.ListBoxWar.Location = New System.Drawing.Point(2, 4)
         Me.ListBoxWar.Margin = New System.Windows.Forms.Padding(2)
         Me.ListBoxWar.Name = "ListBoxWar"
-        Me.ListBoxWar.Size = New System.Drawing.Size(516, 82)
+        Me.ListBoxWar.SelectionMode = System.Windows.Forms.SelectionMode.MultiSimple
+        Me.ListBoxWar.Size = New System.Drawing.Size(915, 160)
         Me.ListBoxWar.TabIndex = 26
         '
         'TabPageErr
@@ -1202,14 +1122,15 @@ Partial Class F_Main
         Me.TabPageErr.Location = New System.Drawing.Point(4, 4)
         Me.TabPageErr.Margin = New System.Windows.Forms.Padding(2)
         Me.TabPageErr.Name = "TabPageErr"
-        Me.TabPageErr.Size = New System.Drawing.Size(522, 93)
+        Me.TabPageErr.Size = New System.Drawing.Size(917, 161)
         Me.TabPageErr.TabIndex = 2
         Me.TabPageErr.Text = "Errors (0)"
         Me.TabPageErr.UseVisualStyleBackColor = True
         '
         'ListBoxErr
         '
-        Me.ListBoxErr.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Left) _
+        Me.ListBoxErr.Anchor = CType((((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
+                    Or System.Windows.Forms.AnchorStyles.Left) _
                     Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
         Me.ListBoxErr.Font = New System.Drawing.Font("Consolas", 8.5!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
         Me.ListBoxErr.FormattingEnabled = True
@@ -1217,7 +1138,8 @@ Partial Class F_Main
         Me.ListBoxErr.Location = New System.Drawing.Point(2, 4)
         Me.ListBoxErr.Margin = New System.Windows.Forms.Padding(2)
         Me.ListBoxErr.Name = "ListBoxErr"
-        Me.ListBoxErr.Size = New System.Drawing.Size(516, 82)
+        Me.ListBoxErr.SelectionMode = System.Windows.Forms.SelectionMode.MultiSimple
+        Me.ListBoxErr.Size = New System.Drawing.Size(913, 160)
         Me.ListBoxErr.TabIndex = 27
         '
         'TextBoxVeh
@@ -1235,407 +1157,293 @@ Partial Class F_Main
         Me.TabControl1.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Left) _
                     Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
         Me.TabControl1.Controls.Add(Me.TPMain)
-        Me.TabControl1.Controls.Add(Me.TPOptions)
+        Me.TabControl1.Controls.Add(Me.TPCriteria)
         Me.TabControl1.Location = New System.Drawing.Point(8, 72)
         Me.TabControl1.Name = "TabControl1"
         Me.TabControl1.SelectedIndex = 0
-        Me.TabControl1.Size = New System.Drawing.Size(650, 606)
+        Me.TabControl1.Size = New System.Drawing.Size(925, 443)
         Me.TabControl1.TabIndex = 35
         '
         'TPMain
         '
+        Me.TPMain.Controls.Add(Me.PbInfoIconMain)
+        Me.TPMain.Controls.Add(Me.TBInfoMain)
+        Me.TPMain.Controls.Add(Me.GroupBox3)
         Me.TPMain.Controls.Add(Me.GroupBoxJob)
-        Me.TPMain.Controls.Add(Me.ButtonSave)
-        Me.TPMain.Controls.Add(Me.TabControlOutMsg)
-        Me.TPMain.Controls.Add(Me.ButtonExit)
         Me.TPMain.Controls.Add(Me.GroupBox1)
         Me.TPMain.Controls.Add(Me.GroupBoxInput)
         Me.TPMain.Location = New System.Drawing.Point(4, 22)
         Me.TPMain.Name = "TPMain"
         Me.TPMain.Padding = New System.Windows.Forms.Padding(3)
-        Me.TPMain.Size = New System.Drawing.Size(642, 580)
+        Me.TPMain.Size = New System.Drawing.Size(917, 417)
         Me.TPMain.TabIndex = 0
         Me.TPMain.Text = "Main"
         Me.TPMain.UseVisualStyleBackColor = True
         '
-        'TPOptions
-        '
-        Me.TPOptions.Controls.Add(Me.TBInfo)
-        Me.TPOptions.Controls.Add(Me.PBInfoIcon)
-        Me.TPOptions.Controls.Add(Me.GroupBox14)
-        Me.TPOptions.Controls.Add(Me.ButtonToStd)
-        Me.TPOptions.Controls.Add(Me.GroupBox10)
-        Me.TPOptions.Controls.Add(Me.GroupBox9)
-        Me.TPOptions.Controls.Add(Me.GroupBox8)
-        Me.TPOptions.Controls.Add(Me.GroupBox7)
-        Me.TPOptions.Controls.Add(Me.GroupBox6)
-        Me.TPOptions.Controls.Add(Me.GroupBox4)
-        Me.TPOptions.Location = New System.Drawing.Point(4, 22)
-        Me.TPOptions.Name = "TPOptions"
-        Me.TPOptions.Padding = New System.Windows.Forms.Padding(3)
-        Me.TPOptions.Size = New System.Drawing.Size(642, 580)
-        Me.TPOptions.TabIndex = 1
-        Me.TPOptions.Text = "Options"
-        Me.TPOptions.UseVisualStyleBackColor = True
-        '
-        'TBInfo
-        '
-        Me.TBInfo.Location = New System.Drawing.Point(488, 275)
-        Me.TBInfo.Multiline = True
-        Me.TBInfo.Name = "TBInfo"
-        Me.TBInfo.Size = New System.Drawing.Size(136, 146)
-        Me.TBInfo.TabIndex = 83
-        '
-        'PBInfoIcon
-        '
-        Me.PBInfoIcon.Image = Global.CSE.My.Resources.Resources.Info
-        Me.PBInfoIcon.Location = New System.Drawing.Point(488, 245)
-        Me.PBInfoIcon.Name = "PBInfoIcon"
-        Me.PBInfoIcon.Size = New System.Drawing.Size(25, 24)
-        Me.PBInfoIcon.TabIndex = 81
-        Me.PBInfoIcon.TabStop = False
+        'TBInfoMain
+        '
+        Me.TBInfoMain.Location = New System.Drawing.Point(43, 176)
+        Me.TBInfoMain.Multiline = True
+        Me.TBInfoMain.Name = "TBInfoMain"
+        Me.TBInfoMain.Size = New System.Drawing.Size(282, 78)
+        Me.TBInfoMain.TabIndex = 85
+        '
+        'PbInfoIconMain
+        '
+        Me.PbInfoIconMain.Image = Global.CSE.My.Resources.Resources.Info
+        Me.PbInfoIconMain.Location = New System.Drawing.Point(12, 204)
+        Me.PbInfoIconMain.Name = "PbInfoIconMain"
+        Me.PbInfoIconMain.Size = New System.Drawing.Size(25, 30)
+        Me.PbInfoIconMain.TabIndex = 84
+        Me.PbInfoIconMain.TabStop = False
+        '
+        'TPCriteria
+        '
+        Me.TPCriteria.Controls.Add(Me.GroupBox7)
+        Me.TPCriteria.Controls.Add(Me.GroupBox8)
+        Me.TPCriteria.Controls.Add(Me.GroupBox9)
+        Me.TPCriteria.Controls.Add(Me.TBInfoCrt)
+        Me.TPCriteria.Controls.Add(Me.PBInfoIconCrt)
+        Me.TPCriteria.Controls.Add(Me.GroupBox14)
+        Me.TPCriteria.Controls.Add(Me.GroupBox10)
+        Me.TPCriteria.Location = New System.Drawing.Point(4, 22)
+        Me.TPCriteria.Name = "TPCriteria"
+        Me.TPCriteria.Padding = New System.Windows.Forms.Padding(3)
+        Me.TPCriteria.Size = New System.Drawing.Size(917, 417)
+        Me.TPCriteria.TabIndex = 1
+        Me.TPCriteria.Text = "Criteria"
+        Me.TPCriteria.UseVisualStyleBackColor = True
         '
-        'GroupBox14
+        'GroupBox7
         '
-        Me.GroupBox14.Controls.Add(Me.Label82)
-        Me.GroupBox14.Controls.Add(Me.LTambTamac)
-        Me.GroupBox14.Controls.Add(Me.TBTambMin)
-        Me.GroupBox14.Controls.Add(Me.Label84)
-        Me.GroupBox14.Controls.Add(Me.TBTambTamac)
-        Me.GroupBox14.Controls.Add(Me.LTambMin)
-        Me.GroupBox14.Controls.Add(Me.LDeltaTTireMax)
-        Me.GroupBox14.Controls.Add(Me.TBDeltaTTireMax)
-        Me.GroupBox14.Controls.Add(Me.Label65)
-        Me.GroupBox14.Controls.Add(Me.Label66)
-        Me.GroupBox14.Controls.Add(Me.TBDeltaRRCMax)
-        Me.GroupBox14.Controls.Add(Me.LTambVar)
-        Me.GroupBox14.Controls.Add(Me.LDeltaRRCMax)
-        Me.GroupBox14.Controls.Add(Me.TBTambMax)
-        Me.GroupBox14.Controls.Add(Me.Label69)
-        Me.GroupBox14.Controls.Add(Me.Label70)
-        Me.GroupBox14.Controls.Add(Me.TBTambVar)
-        Me.GroupBox14.Controls.Add(Me.LTambMax)
-        Me.GroupBox14.Location = New System.Drawing.Point(254, 6)
-        Me.GroupBox14.Name = "GroupBox14"
-        Me.GroupBox14.Size = New System.Drawing.Size(219, 185)
-        Me.GroupBox14.TabIndex = 80
-        Me.GroupBox14.TabStop = False
-        Me.GroupBox14.Text = "General validity criteria"
+        Me.GroupBox7.Controls.Add(Me.Label26)
+        Me.GroupBox7.Controls.Add(Me.LContAng)
+        Me.GroupBox7.Controls.Add(Me.TB_delta_head_max)
+        Me.GroupBox7.Controls.Add(Me.Label28)
+        Me.GroupBox7.Controls.Add(Me.LDeltaYMax)
+        Me.GroupBox7.Controls.Add(Me.TB_trigger_delta_y_max)
+        Me.GroupBox7.Controls.Add(Me.Label30)
+        Me.GroupBox7.Controls.Add(Me.LDeltaXMax)
+        Me.GroupBox7.Controls.Add(Me.TB_trigger_delta_x_max)
+        Me.GroupBox7.Location = New System.Drawing.Point(231, 243)
+        Me.GroupBox7.Name = "GroupBox7"
+        Me.GroupBox7.Size = New System.Drawing.Size(219, 98)
+        Me.GroupBox7.TabIndex = 42
+        Me.GroupBox7.TabStop = False
+        Me.GroupBox7.Text = "Identification of measurement section"
         '
-        'Label82
+        'Label26
         '
-        Me.Label82.AutoSize = True
-        Me.Label82.Location = New System.Drawing.Point(173, 157)
-        Me.Label82.Name = "Label82"
-        Me.Label82.Size = New System.Drawing.Size(24, 13)
-        Me.Label82.TabIndex = 70
-        Me.Label82.Text = "[°C]"
+        Me.Label26.AutoSize = True
+        Me.Label26.Location = New System.Drawing.Point(178, 74)
+        Me.Label26.Name = "Label26"
+        Me.Label26.Size = New System.Drawing.Size(17, 13)
+        Me.Label26.TabIndex = 46
+        Me.Label26.Text = "[°]"
         '
-        'LTambTamac
+        'LContAng
         '
-        Me.LTambTamac.AutoSize = True
-        Me.LTambTamac.Location = New System.Drawing.Point(6, 105)
-        Me.LTambTamac.Name = "LTambTamac"
-        Me.LTambTamac.Size = New System.Drawing.Size(74, 13)
-        Me.LTambTamac.TabIndex = 69
-        Me.LTambTamac.Text = "t_amb_tarmac"
+        Me.LContAng.AutoSize = True
+        Me.LContAng.Location = New System.Drawing.Point(11, 74)
+        Me.LContAng.Name = "LContAng"
+        Me.LContAng.Size = New System.Drawing.Size(85, 13)
+        Me.LContAng.TabIndex = 45
+        Me.LContAng.Text = "delta_head_max"
         '
-        'TBTambMin
+        'TB_delta_head_max
         '
-        Me.TBTambMin.Location = New System.Drawing.Point(128, 154)
-        Me.TBTambMin.Name = "TBTambMin"
-        Me.TBTambMin.Size = New System.Drawing.Size(45, 20)
-        Me.TBTambMin.TabIndex = 68
-        Me.TBTambMin.Text = "0"
-        Me.TBTambMin.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
+        Me.TB_delta_head_max.Location = New System.Drawing.Point(133, 71)
+        Me.TB_delta_head_max.Name = "TB_delta_head_max"
+        Me.TB_delta_head_max.Size = New System.Drawing.Size(45, 20)
+        Me.TB_delta_head_max.TabIndex = 44
+        Me.TB_delta_head_max.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
         '
-        'Label84
+        'Label28
         '
-        Me.Label84.AutoSize = True
-        Me.Label84.Location = New System.Drawing.Point(173, 105)
-        Me.Label84.Name = "Label84"
-        Me.Label84.Size = New System.Drawing.Size(24, 13)
-        Me.Label84.TabIndex = 67
-        Me.Label84.Text = "[°C]"
+        Me.Label28.AutoSize = True
+        Me.Label28.Location = New System.Drawing.Point(178, 48)
+        Me.Label28.Name = "Label28"
+        Me.Label28.Size = New System.Drawing.Size(21, 13)
+        Me.Label28.TabIndex = 43
+        Me.Label28.Text = "[m]"
         '
-        'TBTambTamac
+        'LDeltaYMax
         '
-        Me.TBTambTamac.Location = New System.Drawing.Point(128, 102)
-        Me.TBTambTamac.Name = "TBTambTamac"
-        Me.TBTambTamac.Size = New System.Drawing.Size(45, 20)
-        Me.TBTambTamac.TabIndex = 65
-        Me.TBTambTamac.Text = "25"
-        Me.TBTambTamac.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
+        Me.LDeltaYMax.AutoSize = True
+        Me.LDeltaYMax.Location = New System.Drawing.Point(11, 48)
+        Me.LDeltaYMax.Name = "LDeltaYMax"
+        Me.LDeltaYMax.Size = New System.Drawing.Size(66, 13)
+        Me.LDeltaYMax.TabIndex = 42
+        Me.LDeltaYMax.Text = "delta_y_max"
         '
-        'LTambMin
+        'TB_trigger_delta_y_max
         '
-        Me.LTambMin.AutoSize = True
-        Me.LTambMin.Location = New System.Drawing.Point(6, 157)
-        Me.LTambMin.Name = "LTambMin"
-        Me.LTambMin.Size = New System.Drawing.Size(58, 13)
-        Me.LTambMin.TabIndex = 66
-        Me.LTambMin.Text = "t_amb_min"
+        Me.TB_trigger_delta_y_max.Location = New System.Drawing.Point(133, 45)
+        Me.TB_trigger_delta_y_max.Name = "TB_trigger_delta_y_max"
+        Me.TB_trigger_delta_y_max.Size = New System.Drawing.Size(45, 20)
+        Me.TB_trigger_delta_y_max.TabIndex = 41
+        Me.TB_trigger_delta_y_max.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
         '
-        'LDeltaTTireMax
+        'Label30
         '
-        Me.LDeltaTTireMax.AutoSize = True
-        Me.LDeltaTTireMax.Location = New System.Drawing.Point(6, 27)
-        Me.LDeltaTTireMax.Name = "LDeltaTTireMax"
-        Me.LDeltaTTireMax.Size = New System.Drawing.Size(84, 13)
-        Me.LDeltaTTireMax.TabIndex = 54
-        Me.LDeltaTTireMax.Text = "delta_t_tire_max"
+        Me.Label30.AutoSize = True
+        Me.Label30.Location = New System.Drawing.Point(178, 22)
+        Me.Label30.Name = "Label30"
+        Me.Label30.Size = New System.Drawing.Size(21, 13)
+        Me.Label30.TabIndex = 40
+        Me.Label30.Text = "[m]"
         '
-        'TBDeltaTTireMax
+        'LDeltaXMax
         '
-        Me.TBDeltaTTireMax.Location = New System.Drawing.Point(128, 24)
-        Me.TBDeltaTTireMax.Name = "TBDeltaTTireMax"
-        Me.TBDeltaTTireMax.Size = New System.Drawing.Size(45, 20)
-        Me.TBDeltaTTireMax.TabIndex = 53
-        Me.TBDeltaTTireMax.Text = "5"
-        Me.TBDeltaTTireMax.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
+        Me.LDeltaXMax.AutoSize = True
+        Me.LDeltaXMax.Location = New System.Drawing.Point(11, 22)
+        Me.LDeltaXMax.Name = "LDeltaXMax"
+        Me.LDeltaXMax.Size = New System.Drawing.Size(66, 13)
+        Me.LDeltaXMax.TabIndex = 39
+        Me.LDeltaXMax.Text = "delta_x_max"
         '
-        'Label65
+        'TB_trigger_delta_x_max
         '
-        Me.Label65.AutoSize = True
-        Me.Label65.Location = New System.Drawing.Point(173, 27)
-        Me.Label65.Name = "Label65"
-        Me.Label65.Size = New System.Drawing.Size(24, 13)
-        Me.Label65.TabIndex = 55
-        Me.Label65.Text = "[°C]"
+        Me.TB_trigger_delta_x_max.Location = New System.Drawing.Point(133, 19)
+        Me.TB_trigger_delta_x_max.Name = "TB_trigger_delta_x_max"
+        Me.TB_trigger_delta_x_max.Size = New System.Drawing.Size(45, 20)
+        Me.TB_trigger_delta_x_max.TabIndex = 38
+        Me.TB_trigger_delta_x_max.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
         '
-        'Label66
+        'GroupBox8
         '
-        Me.Label66.AutoSize = True
-        Me.Label66.Location = New System.Drawing.Point(173, 131)
-        Me.Label66.Name = "Label66"
-        Me.Label66.Size = New System.Drawing.Size(24, 13)
-        Me.Label66.TabIndex = 64
-        Me.Label66.Text = "[°C]"
-        '
-        'TBDeltaRRCMax
-        '
-        Me.TBDeltaRRCMax.Location = New System.Drawing.Point(128, 50)
-        Me.TBDeltaRRCMax.Name = "TBDeltaRRCMax"
-        Me.TBDeltaRRCMax.Size = New System.Drawing.Size(45, 20)
-        Me.TBDeltaRRCMax.TabIndex = 56
-        Me.TBDeltaRRCMax.Text = "0.3"
-        Me.TBDeltaRRCMax.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
-        '
-        'LTambVar
-        '
-        Me.LTambVar.AutoSize = True
-        Me.LTambVar.Location = New System.Drawing.Point(6, 79)
-        Me.LTambVar.Name = "LTambVar"
-        Me.LTambVar.Size = New System.Drawing.Size(57, 13)
-        Me.LTambVar.TabIndex = 63
-        Me.LTambVar.Text = "t_amb_var"
-        '
-        'LDeltaRRCMax
-        '
-        Me.LDeltaRRCMax.AutoSize = True
-        Me.LDeltaRRCMax.Location = New System.Drawing.Point(6, 53)
-        Me.LDeltaRRCMax.Name = "LDeltaRRCMax"
-        Me.LDeltaRRCMax.Size = New System.Drawing.Size(84, 13)
-        Me.LDeltaRRCMax.TabIndex = 57
-        Me.LDeltaRRCMax.Text = "delta_RRC_max"
-        '
-        'TBTambMax
-        '
-        Me.TBTambMax.Location = New System.Drawing.Point(128, 128)
-        Me.TBTambMax.Name = "TBTambMax"
-        Me.TBTambMax.Size = New System.Drawing.Size(45, 20)
-        Me.TBTambMax.TabIndex = 62
-        Me.TBTambMax.Text = "35"
-        Me.TBTambMax.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
-        '
-        'Label69
-        '
-        Me.Label69.AutoSize = True
-        Me.Label69.Location = New System.Drawing.Point(173, 53)
-        Me.Label69.Name = "Label69"
-        Me.Label69.Size = New System.Drawing.Size(33, 13)
-        Me.Label69.TabIndex = 58
-        Me.Label69.Text = "[kg/t]"
-        '
-        'Label70
-        '
-        Me.Label70.AutoSize = True
-        Me.Label70.Location = New System.Drawing.Point(173, 79)
-        Me.Label70.Name = "Label70"
-        Me.Label70.Size = New System.Drawing.Size(24, 13)
-        Me.Label70.TabIndex = 61
-        Me.Label70.Text = "[°C]"
-        '
-        'TBTambVar
-        '
-        Me.TBTambVar.Location = New System.Drawing.Point(128, 76)
-        Me.TBTambVar.Name = "TBTambVar"
-        Me.TBTambVar.Size = New System.Drawing.Size(45, 20)
-        Me.TBTambVar.TabIndex = 59
-        Me.TBTambVar.Text = "3"
-        Me.TBTambVar.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
-        '
-        'LTambMax
-        '
-        Me.LTambMax.AutoSize = True
-        Me.LTambMax.Location = New System.Drawing.Point(6, 131)
-        Me.LTambMax.Name = "LTambMax"
-        Me.LTambMax.Size = New System.Drawing.Size(61, 13)
-        Me.LTambMax.TabIndex = 60
-        Me.LTambMax.Text = "t_amb_max"
-        '
-        'ButtonToStd
-        '
-        Me.ButtonToStd.Location = New System.Drawing.Point(509, 170)
-        Me.ButtonToStd.Name = "ButtonToStd"
-        Me.ButtonToStd.Size = New System.Drawing.Size(75, 42)
-        Me.ButtonToStd.TabIndex = 46
-        Me.ButtonToStd.Text = "Set to Standard"
-        Me.ButtonToStd.UseVisualStyleBackColor = True
-        '
-        'GroupBox10
-        '
-        Me.GroupBox10.Controls.Add(Me.Label24)
-        Me.GroupBox10.Controls.Add(Me.LDeltaParaMax)
-        Me.GroupBox10.Controls.Add(Me.TBDeltaParaMax)
-        Me.GroupBox10.Controls.Add(Me.Label22)
-        Me.GroupBox10.Controls.Add(Me.LAccCorrAve)
-        Me.GroupBox10.Controls.Add(Me.TBAccCorrAve)
-        Me.GroupBox10.Controls.Add(Me.Label20)
-        Me.GroupBox10.Controls.Add(Me.LRhoAirRef)
-        Me.GroupBox10.Controls.Add(Me.TBRhoAirRef)
-        Me.GroupBox10.Controls.Add(Me.Label18)
-        Me.GroupBox10.Controls.Add(Me.LDeltaHzMax)
-        Me.GroupBox10.Controls.Add(Me.TBDeltaHzMax)
-        Me.GroupBox10.Location = New System.Drawing.Point(254, 197)
-        Me.GroupBox10.Name = "GroupBox10"
-        Me.GroupBox10.Size = New System.Drawing.Size(219, 120)
-        Me.GroupBox10.TabIndex = 45
-        Me.GroupBox10.TabStop = False
-        Me.GroupBox10.Text = "General"
-        '
-        'Label24
-        '
-        Me.Label24.AutoSize = True
-        Me.Label24.Location = New System.Drawing.Point(173, 94)
-        Me.Label24.Name = "Label24"
-        Me.Label24.Size = New System.Drawing.Size(17, 13)
-        Me.Label24.TabIndex = 40
-        Me.Label24.Text = "[°]"
-        '
-        'LDeltaParaMax
-        '
-        Me.LDeltaParaMax.AutoSize = True
-        Me.LDeltaParaMax.Location = New System.Drawing.Point(5, 94)
-        Me.LDeltaParaMax.Name = "LDeltaParaMax"
-        Me.LDeltaParaMax.Size = New System.Drawing.Size(94, 13)
-        Me.LDeltaParaMax.TabIndex = 39
-        Me.LDeltaParaMax.Text = "delta_parallel_max"
-        '
-        'TBDeltaParaMax
-        '
-        Me.TBDeltaParaMax.Location = New System.Drawing.Point(128, 91)
-        Me.TBDeltaParaMax.Name = "TBDeltaParaMax"
-        Me.TBDeltaParaMax.Size = New System.Drawing.Size(45, 20)
-        Me.TBDeltaParaMax.TabIndex = 38
-        Me.TBDeltaParaMax.Text = "20"
-        Me.TBDeltaParaMax.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
-        '
-        'Label22
-        '
-        Me.Label22.AutoSize = True
-        Me.Label22.Location = New System.Drawing.Point(173, 68)
-        Me.Label22.Name = "Label22"
-        Me.Label22.Size = New System.Drawing.Size(18, 13)
-        Me.Label22.TabIndex = 37
-        Me.Label22.Text = "[s]"
+        Me.GroupBox8.Controls.Add(Me.LDsMinHeadMS)
+        Me.GroupBox8.Controls.Add(Me.TB_segruns_min_head_MS)
+        Me.GroupBox8.Controls.Add(Me.LDsMinHS)
+        Me.GroupBox8.Controls.Add(Me.TB_segruns_min_HS)
+        Me.GroupBox8.Controls.Add(Me.LDsMinLS)
+        Me.GroupBox8.Controls.Add(Me.TB_segruns_min_LS)
+        Me.GroupBox8.Controls.Add(Me.LDsMinCAL)
+        Me.GroupBox8.Controls.Add(Me.TB_segruns_min_CAL)
+        Me.GroupBox8.Location = New System.Drawing.Point(6, 180)
+        Me.GroupBox8.Name = "GroupBox8"
+        Me.GroupBox8.Size = New System.Drawing.Size(219, 161)
+        Me.GroupBox8.TabIndex = 43
+        Me.GroupBox8.TabStop = False
+        Me.GroupBox8.Text = "Requirements on number of valid datasets"
         '
-        'LAccCorrAve
+        'LDsMinHeadMS
         '
-        Me.LAccCorrAve.AutoSize = True
-        Me.LAccCorrAve.Location = New System.Drawing.Point(6, 68)
-        Me.LAccCorrAve.Name = "LAccCorrAve"
-        Me.LAccCorrAve.Size = New System.Drawing.Size(73, 13)
-        Me.LAccCorrAve.TabIndex = 36
-        Me.LAccCorrAve.Text = "acc_corr_ave"
+        Me.LDsMinHeadMS.AutoSize = True
+        Me.LDsMinHeadMS.Location = New System.Drawing.Point(8, 108)
+        Me.LDsMinHeadMS.Name = "LDsMinHeadMS"
+        Me.LDsMinHeadMS.Size = New System.Drawing.Size(91, 13)
+        Me.LDsMinHeadMS.TabIndex = 51
+        Me.LDsMinHeadMS.Text = "ds_min_head_HS"
         '
-        'TBAccCorrAve
+        'TB_segruns_min_head_MS
         '
-        Me.TBAccCorrAve.Location = New System.Drawing.Point(128, 65)
-        Me.TBAccCorrAve.Name = "TBAccCorrAve"
-        Me.TBAccCorrAve.Size = New System.Drawing.Size(45, 20)
-        Me.TBAccCorrAve.TabIndex = 35
-        Me.TBAccCorrAve.Text = "1"
-        Me.TBAccCorrAve.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
+        Me.TB_segruns_min_head_MS.Location = New System.Drawing.Point(122, 108)
+        Me.TB_segruns_min_head_MS.Name = "TB_segruns_min_head_MS"
+        Me.TB_segruns_min_head_MS.Size = New System.Drawing.Size(45, 20)
+        Me.TB_segruns_min_head_MS.TabIndex = 50
+        Me.TB_segruns_min_head_MS.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
         '
-        'Label20
+        'LDsMinHS
         '
-        Me.Label20.AutoSize = True
-        Me.Label20.Location = New System.Drawing.Point(173, 42)
-        Me.Label20.Name = "Label20"
-        Me.Label20.Size = New System.Drawing.Size(44, 13)
-        Me.Label20.TabIndex = 34
-        Me.Label20.Text = "[kg/m3]"
+        Me.LDsMinHS.AutoSize = True
+        Me.LDsMinHS.Location = New System.Drawing.Point(9, 82)
+        Me.LDsMinHS.Name = "LDsMinHS"
+        Me.LDsMinHS.Size = New System.Drawing.Size(61, 13)
+        Me.LDsMinHS.TabIndex = 48
+        Me.LDsMinHS.Text = "ds_min_HS"
         '
-        'LRhoAirRef
+        'TB_segruns_min_HS
         '
-        Me.LRhoAirRef.AutoSize = True
-        Me.LRhoAirRef.Location = New System.Drawing.Point(6, 42)
-        Me.LRhoAirRef.Name = "LRhoAirRef"
-        Me.LRhoAirRef.Size = New System.Drawing.Size(57, 13)
-        Me.LRhoAirRef.TabIndex = 33
-        Me.LRhoAirRef.Text = "rho_air_ref"
+        Me.TB_segruns_min_HS.Location = New System.Drawing.Point(122, 82)
+        Me.TB_segruns_min_HS.Name = "TB_segruns_min_HS"
+        Me.TB_segruns_min_HS.Size = New System.Drawing.Size(45, 20)
+        Me.TB_segruns_min_HS.TabIndex = 47
+        Me.TB_segruns_min_HS.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
         '
-        'TBRhoAirRef
+        'LDsMinLS
         '
-        Me.TBRhoAirRef.Location = New System.Drawing.Point(128, 39)
-        Me.TBRhoAirRef.Name = "TBRhoAirRef"
-        Me.TBRhoAirRef.Size = New System.Drawing.Size(45, 20)
-        Me.TBRhoAirRef.TabIndex = 32
-        Me.TBRhoAirRef.Text = "1.1884"
-        Me.TBRhoAirRef.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
+        Me.LDsMinLS.AutoSize = True
+        Me.LDsMinLS.Location = New System.Drawing.Point(9, 56)
+        Me.LDsMinLS.Name = "LDsMinLS"
+        Me.LDsMinLS.Size = New System.Drawing.Size(59, 13)
+        Me.LDsMinLS.TabIndex = 45
+        Me.LDsMinLS.Text = "ds_min_LS"
         '
-        'Label18
+        'TB_segruns_min_LS
         '
-        Me.Label18.AutoSize = True
-        Me.Label18.Location = New System.Drawing.Point(173, 16)
-        Me.Label18.Name = "Label18"
-        Me.Label18.Size = New System.Drawing.Size(21, 13)
-        Me.Label18.TabIndex = 31
-        Me.Label18.Text = "[%]"
+        Me.TB_segruns_min_LS.Location = New System.Drawing.Point(122, 56)
+        Me.TB_segruns_min_LS.Name = "TB_segruns_min_LS"
+        Me.TB_segruns_min_LS.Size = New System.Drawing.Size(45, 20)
+        Me.TB_segruns_min_LS.TabIndex = 44
+        Me.TB_segruns_min_LS.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
         '
-        'LDeltaHzMax
+        'LDsMinCAL
         '
-        Me.LDeltaHzMax.AutoSize = True
-        Me.LDeltaHzMax.Location = New System.Drawing.Point(6, 16)
-        Me.LDeltaHzMax.Name = "LDeltaHzMax"
-        Me.LDeltaHzMax.Size = New System.Drawing.Size(74, 13)
-        Me.LDeltaHzMax.TabIndex = 30
-        Me.LDeltaHzMax.Text = "delta_Hz_max"
+        Me.LDsMinCAL.AutoSize = True
+        Me.LDsMinCAL.Location = New System.Drawing.Point(9, 30)
+        Me.LDsMinCAL.Name = "LDsMinCAL"
+        Me.LDsMinCAL.Size = New System.Drawing.Size(66, 13)
+        Me.LDsMinCAL.TabIndex = 42
+        Me.LDsMinCAL.Text = "ds_min_CAL"
         '
-        'TBDeltaHzMax
+        'TB_segruns_min_CAL
         '
-        Me.TBDeltaHzMax.Location = New System.Drawing.Point(128, 13)
-        Me.TBDeltaHzMax.Name = "TBDeltaHzMax"
-        Me.TBDeltaHzMax.Size = New System.Drawing.Size(45, 20)
-        Me.TBDeltaHzMax.TabIndex = 29
-        Me.TBDeltaHzMax.Text = "1"
-        Me.TBDeltaHzMax.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
+        Me.TB_segruns_min_CAL.Location = New System.Drawing.Point(122, 30)
+        Me.TB_segruns_min_CAL.Name = "TB_segruns_min_CAL"
+        Me.TB_segruns_min_CAL.Size = New System.Drawing.Size(45, 20)
+        Me.TB_segruns_min_CAL.TabIndex = 41
+        Me.TB_segruns_min_CAL.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
         '
         'GroupBox9
         '
+        Me.GroupBox9.Controls.Add(Me.ButtonCrtImport)
+        Me.GroupBox9.Controls.Add(Me.ButtonCrtExport)
+        Me.GroupBox9.Controls.Add(Me.ButtonCrtReset)
         Me.GroupBox9.Controls.Add(Me.LDistFloat)
-        Me.GroupBox9.Controls.Add(Me.TBDistFloat)
+        Me.GroupBox9.Controls.Add(Me.TB_dist_float)
         Me.GroupBox9.Controls.Add(Me.Label81)
         Me.GroupBox9.Controls.Add(Me.GroupBox15)
         Me.GroupBox9.Controls.Add(Me.GroupBox13)
-        Me.GroupBox9.Location = New System.Drawing.Point(6, 6)
+        Me.GroupBox9.Location = New System.Drawing.Point(456, 6)
         Me.GroupBox9.Name = "GroupBox9"
-        Me.GroupBox9.Size = New System.Drawing.Size(242, 566)
+        Me.GroupBox9.Size = New System.Drawing.Size(455, 397)
         Me.GroupBox9.TabIndex = 44
         Me.GroupBox9.TabStop = False
         Me.GroupBox9.Text = "Dataset validity criteria"
         '
+        'ButtonCrtImport
+        '
+        Me.ButtonCrtImport.Image = Global.CSE.My.Resources.Resources.Öffnen
+        Me.ButtonCrtImport.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft
+        Me.ButtonCrtImport.Location = New System.Drawing.Point(305, 62)
+        Me.ButtonCrtImport.Name = "ButtonCrtImport"
+        Me.ButtonCrtImport.Size = New System.Drawing.Size(143, 43)
+        Me.ButtonCrtImport.TabIndex = 87
+        Me.ButtonCrtImport.Text = "Import Criteria"
+        Me.ButtonCrtImport.UseVisualStyleBackColor = True
+        '
+        'ButtonCrtExport
+        '
+        Me.ButtonCrtExport.Image = Global.CSE.My.Resources.Resources.Speichern_unter
+        Me.ButtonCrtExport.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft
+        Me.ButtonCrtExport.Location = New System.Drawing.Point(306, 111)
+        Me.ButtonCrtExport.Name = "ButtonCrtExport"
+        Me.ButtonCrtExport.Size = New System.Drawing.Size(142, 43)
+        Me.ButtonCrtExport.TabIndex = 86
+        Me.ButtonCrtExport.Text = "Export Criteria"
+        Me.ButtonCrtExport.UseVisualStyleBackColor = True
+        '
+        'ButtonCrtReset
+        '
+        Me.ButtonCrtReset.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft
+        Me.ButtonCrtReset.Location = New System.Drawing.Point(306, 13)
+        Me.ButtonCrtReset.Name = "ButtonCrtReset"
+        Me.ButtonCrtReset.Size = New System.Drawing.Size(142, 43)
+        Me.ButtonCrtReset.TabIndex = 85
+        Me.ButtonCrtReset.Text = "Reset Criteria"
+        Me.ButtonCrtReset.UseVisualStyleBackColor = True
+        '
         'LDistFloat
         '
         Me.LDistFloat.AutoSize = True
@@ -1645,14 +1453,13 @@ Partial Class F_Main
         Me.LDistFloat.TabIndex = 83
         Me.LDistFloat.Text = "dist_float"
         '
-        'TBDistFloat
+        'TB_dist_float
         '
-        Me.TBDistFloat.Location = New System.Drawing.Point(134, 19)
-        Me.TBDistFloat.Name = "TBDistFloat"
-        Me.TBDistFloat.Size = New System.Drawing.Size(45, 20)
-        Me.TBDistFloat.TabIndex = 82
-        Me.TBDistFloat.Text = "25"
-        Me.TBDistFloat.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
+        Me.TB_dist_float.Location = New System.Drawing.Point(134, 19)
+        Me.TB_dist_float.Name = "TB_dist_float"
+        Me.TB_dist_float.Size = New System.Drawing.Size(45, 20)
+        Me.TB_dist_float.TabIndex = 82
+        Me.TB_dist_float.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
         '
         'Label81
         '
@@ -1666,13 +1473,13 @@ Partial Class F_Main
         'GroupBox15
         '
         Me.GroupBox15.Controls.Add(Me.LLengCrit)
-        Me.GroupBox15.Controls.Add(Me.TBLengCrit)
+        Me.GroupBox15.Controls.Add(Me.TB_leng_crit)
         Me.GroupBox15.Controls.Add(Me.Label79)
         Me.GroupBox15.Controls.Add(Me.GroupBox12)
         Me.GroupBox15.Controls.Add(Me.GroupBox11)
         Me.GroupBox15.Location = New System.Drawing.Point(6, 152)
         Me.GroupBox15.Name = "GroupBox15"
-        Me.GroupBox15.Size = New System.Drawing.Size(230, 408)
+        Me.GroupBox15.Size = New System.Drawing.Size(442, 233)
         Me.GroupBox15.TabIndex = 81
         Me.GroupBox15.TabStop = False
         Me.GroupBox15.Text = "Low and high speed test"
@@ -1686,19 +1493,18 @@ Partial Class F_Main
         Me.LLengCrit.TabIndex = 80
         Me.LLengCrit.Text = "leng_crit"
         '
-        'TBLengCrit
+        'TB_leng_crit
         '
-        Me.TBLengCrit.Location = New System.Drawing.Point(128, 19)
-        Me.TBLengCrit.Name = "TBLengCrit"
-        Me.TBLengCrit.Size = New System.Drawing.Size(45, 20)
-        Me.TBLengCrit.TabIndex = 79
-        Me.TBLengCrit.Text = "10"
-        Me.TBLengCrit.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
+        Me.TB_leng_crit.Location = New System.Drawing.Point(134, 19)
+        Me.TB_leng_crit.Name = "TB_leng_crit"
+        Me.TB_leng_crit.Size = New System.Drawing.Size(45, 20)
+        Me.TB_leng_crit.TabIndex = 79
+        Me.TB_leng_crit.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
         '
         'Label79
         '
         Me.Label79.AutoSize = True
-        Me.Label79.Location = New System.Drawing.Point(173, 22)
+        Me.Label79.Location = New System.Drawing.Point(179, 22)
         Me.Label79.Name = "Label79"
         Me.Label79.Size = New System.Drawing.Size(21, 13)
         Me.Label79.TabIndex = 81
@@ -1707,24 +1513,24 @@ Partial Class F_Main
         'GroupBox12
         '
         Me.GroupBox12.Controls.Add(Me.Label74)
-        Me.GroupBox12.Controls.Add(Me.TBTq1sD)
-        Me.GroupBox12.Controls.Add(Me.LTq1sD)
+        Me.GroupBox12.Controls.Add(Me.TB_tq_sum_1s_delta_HS)
+        Me.GroupBox12.Controls.Add(Me.LB_tq_sum_1s_delta_HS)
         Me.GroupBox12.Controls.Add(Me.Label76)
-        Me.GroupBox12.Controls.Add(Me.TBvVeh1sD)
-        Me.GroupBox12.Controls.Add(Me.LvVeh1sD)
+        Me.GroupBox12.Controls.Add(Me.TB_v_veh_1s_delta_HS)
+        Me.GroupBox12.Controls.Add(Me.LB_v_veh_1s_delta_HS)
         Me.GroupBox12.Controls.Add(Me.Label62)
-        Me.GroupBox12.Controls.Add(Me.TBBetaAveHSMax)
-        Me.GroupBox12.Controls.Add(Me.LBetaAveHSMax)
-        Me.GroupBox12.Controls.Add(Me.LvWindAveHSMax)
+        Me.GroupBox12.Controls.Add(Me.TB_beta_avg_max_HS)
+        Me.GroupBox12.Controls.Add(Me.LB_beta_avg_max_HS)
+        Me.GroupBox12.Controls.Add(Me.LB_v_wind_avg_max_HS)
         Me.GroupBox12.Controls.Add(Me.Label57)
-        Me.GroupBox12.Controls.Add(Me.TBvWindAveHSMax)
+        Me.GroupBox12.Controls.Add(Me.TB_v_wind_avg_max_HS)
         Me.GroupBox12.Controls.Add(Me.Label58)
-        Me.GroupBox12.Controls.Add(Me.TBvVehAveHSMin)
-        Me.GroupBox12.Controls.Add(Me.TBvWind1sHSMax)
-        Me.GroupBox12.Controls.Add(Me.LvWind1sHSMax)
-        Me.GroupBox12.Controls.Add(Me.LvVehAveHSMin)
+        Me.GroupBox12.Controls.Add(Me.TB_v_veh_avg_min_HS)
+        Me.GroupBox12.Controls.Add(Me.TB_v_wind_1s_max_HS)
+        Me.GroupBox12.Controls.Add(Me.LB_v_wind_1s_max_HS)
+        Me.GroupBox12.Controls.Add(Me.LB_v_veh_avg_min_HS)
         Me.GroupBox12.Controls.Add(Me.Label61)
-        Me.GroupBox12.Location = New System.Drawing.Point(6, 229)
+        Me.GroupBox12.Location = New System.Drawing.Point(223, 45)
         Me.GroupBox12.Name = "GroupBox12"
         Me.GroupBox12.Size = New System.Drawing.Size(211, 176)
         Me.GroupBox12.TabIndex = 78
@@ -1740,23 +1546,22 @@ Partial Class F_Main
         Me.Label74.TabIndex = 94
         Me.Label74.Text = "[-]"
         '
-        'TBTq1sD
+        'TB_tq_sum_1s_delta_HS
         '
-        Me.TBTq1sD.Location = New System.Drawing.Point(128, 148)
-        Me.TBTq1sD.Name = "TBTq1sD"
-        Me.TBTq1sD.Size = New System.Drawing.Size(45, 20)
-        Me.TBTq1sD.TabIndex = 93
-        Me.TBTq1sD.Text = "0.1"
-        Me.TBTq1sD.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
+        Me.TB_tq_sum_1s_delta_HS.Location = New System.Drawing.Point(128, 148)
+        Me.TB_tq_sum_1s_delta_HS.Name = "TB_tq_sum_1s_delta_HS"
+        Me.TB_tq_sum_1s_delta_HS.Size = New System.Drawing.Size(45, 20)
+        Me.TB_tq_sum_1s_delta_HS.TabIndex = 93
+        Me.TB_tq_sum_1s_delta_HS.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
         '
-        'LTq1sD
+        'LB_tq_sum_1s_delta_HS
         '
-        Me.LTq1sD.AutoSize = True
-        Me.LTq1sD.Location = New System.Drawing.Point(6, 151)
-        Me.LTq1sD.Name = "LTq1sD"
-        Me.LTq1sD.Size = New System.Drawing.Size(87, 13)
-        Me.LTq1sD.TabIndex = 92
-        Me.LTq1sD.Text = "tq_sum_1s_delta"
+        Me.LB_tq_sum_1s_delta_HS.AutoSize = True
+        Me.LB_tq_sum_1s_delta_HS.Location = New System.Drawing.Point(6, 151)
+        Me.LB_tq_sum_1s_delta_HS.Name = "LB_tq_sum_1s_delta_HS"
+        Me.LB_tq_sum_1s_delta_HS.Size = New System.Drawing.Size(87, 13)
+        Me.LB_tq_sum_1s_delta_HS.TabIndex = 92
+        Me.LB_tq_sum_1s_delta_HS.Text = "tq_sum_1s_delta"
         '
         'Label76
         '
@@ -1767,23 +1572,22 @@ Partial Class F_Main
         Me.Label76.TabIndex = 91
         Me.Label76.Text = "[km/h]"
         '
-        'TBvVeh1sD
+        'TB_v_veh_1s_delta_HS
         '
-        Me.TBvVeh1sD.Location = New System.Drawing.Point(128, 122)
-        Me.TBvVeh1sD.Name = "TBvVeh1sD"
-        Me.TBvVeh1sD.Size = New System.Drawing.Size(45, 20)
-        Me.TBvVeh1sD.TabIndex = 90
-        Me.TBvVeh1sD.Text = "0.3"
-        Me.TBvVeh1sD.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
+        Me.TB_v_veh_1s_delta_HS.Location = New System.Drawing.Point(128, 122)
+        Me.TB_v_veh_1s_delta_HS.Name = "TB_v_veh_1s_delta_HS"
+        Me.TB_v_veh_1s_delta_HS.Size = New System.Drawing.Size(45, 20)
+        Me.TB_v_veh_1s_delta_HS.TabIndex = 90
+        Me.TB_v_veh_1s_delta_HS.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
         '
-        'LvVeh1sD
+        'LB_v_veh_1s_delta_HS
         '
-        Me.LvVeh1sD.AutoSize = True
-        Me.LvVeh1sD.Location = New System.Drawing.Point(6, 125)
-        Me.LvVeh1sD.Name = "LvVeh1sD"
-        Me.LvVeh1sD.Size = New System.Drawing.Size(83, 13)
-        Me.LvVeh1sD.TabIndex = 89
-        Me.LvVeh1sD.Text = "v_veh_1s_delta"
+        Me.LB_v_veh_1s_delta_HS.AutoSize = True
+        Me.LB_v_veh_1s_delta_HS.Location = New System.Drawing.Point(6, 125)
+        Me.LB_v_veh_1s_delta_HS.Name = "LB_v_veh_1s_delta_HS"
+        Me.LB_v_veh_1s_delta_HS.Size = New System.Drawing.Size(83, 13)
+        Me.LB_v_veh_1s_delta_HS.TabIndex = 89
+        Me.LB_v_veh_1s_delta_HS.Text = "v_veh_1s_delta"
         '
         'Label62
         '
@@ -1794,32 +1598,31 @@ Partial Class F_Main
         Me.Label62.TabIndex = 88
         Me.Label62.Text = "[°]"
         '
-        'TBBetaAveHSMax
+        'TB_beta_avg_max_HS
         '
-        Me.TBBetaAveHSMax.Location = New System.Drawing.Point(128, 96)
-        Me.TBBetaAveHSMax.Name = "TBBetaAveHSMax"
-        Me.TBBetaAveHSMax.Size = New System.Drawing.Size(45, 20)
-        Me.TBBetaAveHSMax.TabIndex = 87
-        Me.TBBetaAveHSMax.Text = "3"
-        Me.TBBetaAveHSMax.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
+        Me.TB_beta_avg_max_HS.Location = New System.Drawing.Point(128, 96)
+        Me.TB_beta_avg_max_HS.Name = "TB_beta_avg_max_HS"
+        Me.TB_beta_avg_max_HS.Size = New System.Drawing.Size(45, 20)
+        Me.TB_beta_avg_max_HS.TabIndex = 87
+        Me.TB_beta_avg_max_HS.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
         '
-        'LBetaAveHSMax
+        'LB_beta_avg_max_HS
         '
-        Me.LBetaAveHSMax.AutoSize = True
-        Me.LBetaAveHSMax.Location = New System.Drawing.Point(6, 99)
-        Me.LBetaAveHSMax.Name = "LBetaAveHSMax"
-        Me.LBetaAveHSMax.Size = New System.Drawing.Size(98, 13)
-        Me.LBetaAveHSMax.TabIndex = 86
-        Me.LBetaAveHSMax.Text = "beta_ave_HS_max"
+        Me.LB_beta_avg_max_HS.AutoSize = True
+        Me.LB_beta_avg_max_HS.Location = New System.Drawing.Point(6, 99)
+        Me.LB_beta_avg_max_HS.Name = "LB_beta_avg_max_HS"
+        Me.LB_beta_avg_max_HS.Size = New System.Drawing.Size(98, 13)
+        Me.LB_beta_avg_max_HS.TabIndex = 86
+        Me.LB_beta_avg_max_HS.Text = "beta_avg_HS_max"
         '
-        'LvWindAveHSMax
+        'LB_v_wind_avg_max_HS
         '
-        Me.LvWindAveHSMax.AutoSize = True
-        Me.LvWindAveHSMax.Location = New System.Drawing.Point(6, 21)
-        Me.LvWindAveHSMax.Name = "LvWindAveHSMax"
-        Me.LvWindAveHSMax.Size = New System.Drawing.Size(111, 13)
-        Me.LvWindAveHSMax.TabIndex = 78
-        Me.LvWindAveHSMax.Text = "v_wind_ave_HS_max"
+        Me.LB_v_wind_avg_max_HS.AutoSize = True
+        Me.LB_v_wind_avg_max_HS.Location = New System.Drawing.Point(6, 21)
+        Me.LB_v_wind_avg_max_HS.Name = "LB_v_wind_avg_max_HS"
+        Me.LB_v_wind_avg_max_HS.Size = New System.Drawing.Size(111, 13)
+        Me.LB_v_wind_avg_max_HS.TabIndex = 78
+        Me.LB_v_wind_avg_max_HS.Text = "v_wind_avg_HS_max"
         '
         'Label57
         '
@@ -1830,14 +1633,13 @@ Partial Class F_Main
         Me.Label57.TabIndex = 85
         Me.Label57.Text = "[km/h]"
         '
-        'TBvWindAveHSMax
+        'TB_v_wind_avg_max_HS
         '
-        Me.TBvWindAveHSMax.Location = New System.Drawing.Point(128, 18)
-        Me.TBvWindAveHSMax.Name = "TBvWindAveHSMax"
-        Me.TBvWindAveHSMax.Size = New System.Drawing.Size(45, 20)
-        Me.TBvWindAveHSMax.TabIndex = 77
-        Me.TBvWindAveHSMax.Text = "5"
-        Me.TBvWindAveHSMax.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
+        Me.TB_v_wind_avg_max_HS.Location = New System.Drawing.Point(128, 18)
+        Me.TB_v_wind_avg_max_HS.Name = "TB_v_wind_avg_max_HS"
+        Me.TB_v_wind_avg_max_HS.Size = New System.Drawing.Size(45, 20)
+        Me.TB_v_wind_avg_max_HS.TabIndex = 77
+        Me.TB_v_wind_avg_max_HS.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
         '
         'Label58
         '
@@ -1848,41 +1650,39 @@ Partial Class F_Main
         Me.Label58.TabIndex = 79
         Me.Label58.Text = "[m/s]"
         '
-        'TBvVehAveHSMin
+        'TB_v_veh_avg_min_HS
         '
-        Me.TBvVehAveHSMin.Location = New System.Drawing.Point(128, 70)
-        Me.TBvVehAveHSMin.Name = "TBvVehAveHSMin"
-        Me.TBvVehAveHSMin.Size = New System.Drawing.Size(45, 20)
-        Me.TBvVehAveHSMin.TabIndex = 84
-        Me.TBvVehAveHSMin.Text = "80"
-        Me.TBvVehAveHSMin.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
+        Me.TB_v_veh_avg_min_HS.Location = New System.Drawing.Point(128, 70)
+        Me.TB_v_veh_avg_min_HS.Name = "TB_v_veh_avg_min_HS"
+        Me.TB_v_veh_avg_min_HS.Size = New System.Drawing.Size(45, 20)
+        Me.TB_v_veh_avg_min_HS.TabIndex = 84
+        Me.TB_v_veh_avg_min_HS.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
         '
-        'TBvWind1sHSMax
+        'TB_v_wind_1s_max_HS
         '
-        Me.TBvWind1sHSMax.Location = New System.Drawing.Point(128, 44)
-        Me.TBvWind1sHSMax.Name = "TBvWind1sHSMax"
-        Me.TBvWind1sHSMax.Size = New System.Drawing.Size(45, 20)
-        Me.TBvWind1sHSMax.TabIndex = 80
-        Me.TBvWind1sHSMax.Text = "10"
-        Me.TBvWind1sHSMax.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
+        Me.TB_v_wind_1s_max_HS.Location = New System.Drawing.Point(128, 44)
+        Me.TB_v_wind_1s_max_HS.Name = "TB_v_wind_1s_max_HS"
+        Me.TB_v_wind_1s_max_HS.Size = New System.Drawing.Size(45, 20)
+        Me.TB_v_wind_1s_max_HS.TabIndex = 80
+        Me.TB_v_wind_1s_max_HS.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
         '
-        'LvWind1sHSMax
+        'LB_v_wind_1s_max_HS
         '
-        Me.LvWind1sHSMax.AutoSize = True
-        Me.LvWind1sHSMax.Location = New System.Drawing.Point(6, 47)
-        Me.LvWind1sHSMax.Name = "LvWind1sHSMax"
-        Me.LvWind1sHSMax.Size = New System.Drawing.Size(104, 13)
-        Me.LvWind1sHSMax.TabIndex = 81
-        Me.LvWind1sHSMax.Text = "v_wind_1s_HS_max"
+        Me.LB_v_wind_1s_max_HS.AutoSize = True
+        Me.LB_v_wind_1s_max_HS.Location = New System.Drawing.Point(6, 47)
+        Me.LB_v_wind_1s_max_HS.Name = "LB_v_wind_1s_max_HS"
+        Me.LB_v_wind_1s_max_HS.Size = New System.Drawing.Size(104, 13)
+        Me.LB_v_wind_1s_max_HS.TabIndex = 81
+        Me.LB_v_wind_1s_max_HS.Text = "v_wind_1s_HS_max"
         '
-        'LvVehAveHSMin
+        'LB_v_veh_avg_min_HS
         '
-        Me.LvVehAveHSMin.AutoSize = True
-        Me.LvVehAveHSMin.Location = New System.Drawing.Point(6, 73)
-        Me.LvVehAveHSMin.Name = "LvVehAveHSMin"
-        Me.LvVehAveHSMin.Size = New System.Drawing.Size(104, 13)
-        Me.LvVehAveHSMin.TabIndex = 83
-        Me.LvVehAveHSMin.Text = "v_veh_ave_HS_min"
+        Me.LB_v_veh_avg_min_HS.AutoSize = True
+        Me.LB_v_veh_avg_min_HS.Location = New System.Drawing.Point(6, 73)
+        Me.LB_v_veh_avg_min_HS.Name = "LB_v_veh_avg_min_HS"
+        Me.LB_v_veh_avg_min_HS.Size = New System.Drawing.Size(104, 13)
+        Me.LB_v_veh_avg_min_HS.TabIndex = 83
+        Me.LB_v_veh_avg_min_HS.Text = "v_veh_avg_HS_min"
         '
         'Label61
         '
@@ -1896,23 +1696,23 @@ Partial Class F_Main
         'GroupBox11
         '
         Me.GroupBox11.Controls.Add(Me.Label72)
-        Me.GroupBox11.Controls.Add(Me.TBTqSumFloatD)
-        Me.GroupBox11.Controls.Add(Me.LTqSumFloatD)
+        Me.GroupBox11.Controls.Add(Me.TB_tq_sum_float_delta_LS)
+        Me.GroupBox11.Controls.Add(Me.LB_tq_sum_float_delta_LS)
         Me.GroupBox11.Controls.Add(Me.Label46)
-        Me.GroupBox11.Controls.Add(Me.TBvVehFloatD)
-        Me.GroupBox11.Controls.Add(Me.LvVehFloatD)
+        Me.GroupBox11.Controls.Add(Me.TB_v_veh_float_delta_LS)
+        Me.GroupBox11.Controls.Add(Me.LB_v_veh_float_delta_LS)
         Me.GroupBox11.Controls.Add(Me.LvWindAveLSMax)
         Me.GroupBox11.Controls.Add(Me.Label48)
-        Me.GroupBox11.Controls.Add(Me.TBvWindAveLSMax)
-        Me.GroupBox11.Controls.Add(Me.LvVehAveLSMax)
+        Me.GroupBox11.Controls.Add(Me.TB_v_wind_avg_max_LS)
+        Me.GroupBox11.Controls.Add(Me.LB_v_veh_avg_min_LS)
         Me.GroupBox11.Controls.Add(Me.Label54)
-        Me.GroupBox11.Controls.Add(Me.TBvVehAveLSMin)
-        Me.GroupBox11.Controls.Add(Me.TBvWind1sLSMax)
+        Me.GroupBox11.Controls.Add(Me.TB_v_veh_avg_max_LS)
+        Me.GroupBox11.Controls.Add(Me.TB_v_wind_1s_max_LS)
         Me.GroupBox11.Controls.Add(Me.Label50)
         Me.GroupBox11.Controls.Add(Me.LvWind1sLSMax)
-        Me.GroupBox11.Controls.Add(Me.LvVehAveLSMin)
+        Me.GroupBox11.Controls.Add(Me.LB_v_veh_avg_max_LS)
         Me.GroupBox11.Controls.Add(Me.Label52)
-        Me.GroupBox11.Controls.Add(Me.TBvVehAveLSMax)
+        Me.GroupBox11.Controls.Add(Me.TB_v_veh_avg_min_LS)
         Me.GroupBox11.Location = New System.Drawing.Point(6, 45)
         Me.GroupBox11.Name = "GroupBox11"
         Me.GroupBox11.Size = New System.Drawing.Size(211, 178)
@@ -1929,23 +1729,22 @@ Partial Class F_Main
         Me.Label72.TabIndex = 82
         Me.Label72.Text = "[-]"
         '
-        'TBTqSumFloatD
+        'TB_tq_sum_float_delta_LS
         '
-        Me.TBTqSumFloatD.Location = New System.Drawing.Point(128, 150)
-        Me.TBTqSumFloatD.Name = "TBTqSumFloatD"
-        Me.TBTqSumFloatD.Size = New System.Drawing.Size(45, 20)
-        Me.TBTqSumFloatD.TabIndex = 81
-        Me.TBTqSumFloatD.Text = "0.1"
-        Me.TBTqSumFloatD.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
+        Me.TB_tq_sum_float_delta_LS.Location = New System.Drawing.Point(128, 150)
+        Me.TB_tq_sum_float_delta_LS.Name = "TB_tq_sum_float_delta_LS"
+        Me.TB_tq_sum_float_delta_LS.Size = New System.Drawing.Size(45, 20)
+        Me.TB_tq_sum_float_delta_LS.TabIndex = 81
+        Me.TB_tq_sum_float_delta_LS.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
         '
-        'LTqSumFloatD
+        'LB_tq_sum_float_delta_LS
         '
-        Me.LTqSumFloatD.AutoSize = True
-        Me.LTqSumFloatD.Location = New System.Drawing.Point(6, 153)
-        Me.LTqSumFloatD.Name = "LTqSumFloatD"
-        Me.LTqSumFloatD.Size = New System.Drawing.Size(96, 13)
-        Me.LTqSumFloatD.TabIndex = 80
-        Me.LTqSumFloatD.Text = "tq_sum_float_delta"
+        Me.LB_tq_sum_float_delta_LS.AutoSize = True
+        Me.LB_tq_sum_float_delta_LS.Location = New System.Drawing.Point(6, 153)
+        Me.LB_tq_sum_float_delta_LS.Name = "LB_tq_sum_float_delta_LS"
+        Me.LB_tq_sum_float_delta_LS.Size = New System.Drawing.Size(96, 13)
+        Me.LB_tq_sum_float_delta_LS.TabIndex = 80
+        Me.LB_tq_sum_float_delta_LS.Text = "tq_sum_float_delta"
         '
         'Label46
         '
@@ -1956,23 +1755,22 @@ Partial Class F_Main
         Me.Label46.TabIndex = 79
         Me.Label46.Text = "[km/h]"
         '
-        'TBvVehFloatD
+        'TB_v_veh_float_delta_LS
         '
-        Me.TBvVehFloatD.Location = New System.Drawing.Point(128, 124)
-        Me.TBvVehFloatD.Name = "TBvVehFloatD"
-        Me.TBvVehFloatD.Size = New System.Drawing.Size(45, 20)
-        Me.TBvVehFloatD.TabIndex = 78
-        Me.TBvVehFloatD.Text = "0.15"
-        Me.TBvVehFloatD.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
+        Me.TB_v_veh_float_delta_LS.Location = New System.Drawing.Point(128, 124)
+        Me.TB_v_veh_float_delta_LS.Name = "TB_v_veh_float_delta_LS"
+        Me.TB_v_veh_float_delta_LS.Size = New System.Drawing.Size(45, 20)
+        Me.TB_v_veh_float_delta_LS.TabIndex = 78
+        Me.TB_v_veh_float_delta_LS.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
         '
-        'LvVehFloatD
+        'LB_v_veh_float_delta_LS
         '
-        Me.LvVehFloatD.AutoSize = True
-        Me.LvVehFloatD.Location = New System.Drawing.Point(6, 127)
-        Me.LvVehFloatD.Name = "LvVehFloatD"
-        Me.LvVehFloatD.Size = New System.Drawing.Size(92, 13)
-        Me.LvVehFloatD.TabIndex = 77
-        Me.LvVehFloatD.Text = "v_veh_float_delta"
+        Me.LB_v_veh_float_delta_LS.AutoSize = True
+        Me.LB_v_veh_float_delta_LS.Location = New System.Drawing.Point(6, 127)
+        Me.LB_v_veh_float_delta_LS.Name = "LB_v_veh_float_delta_LS"
+        Me.LB_v_veh_float_delta_LS.Size = New System.Drawing.Size(92, 13)
+        Me.LB_v_veh_float_delta_LS.TabIndex = 77
+        Me.LB_v_veh_float_delta_LS.Text = "v_veh_float_delta"
         '
         'LvWindAveLSMax
         '
@@ -1981,7 +1779,7 @@ Partial Class F_Main
         Me.LvWindAveLSMax.Name = "LvWindAveLSMax"
         Me.LvWindAveLSMax.Size = New System.Drawing.Size(109, 13)
         Me.LvWindAveLSMax.TabIndex = 66
-        Me.LvWindAveLSMax.Text = "v_wind_ave_LS_max"
+        Me.LvWindAveLSMax.Text = "v_wind_avg_LS_max"
         '
         'Label48
         '
@@ -1992,23 +1790,22 @@ Partial Class F_Main
         Me.Label48.TabIndex = 76
         Me.Label48.Text = "[km/h]"
         '
-        'TBvWindAveLSMax
+        'TB_v_wind_avg_max_LS
         '
-        Me.TBvWindAveLSMax.Location = New System.Drawing.Point(128, 20)
-        Me.TBvWindAveLSMax.Name = "TBvWindAveLSMax"
-        Me.TBvWindAveLSMax.Size = New System.Drawing.Size(45, 20)
-        Me.TBvWindAveLSMax.TabIndex = 65
-        Me.TBvWindAveLSMax.Text = "5"
-        Me.TBvWindAveLSMax.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
+        Me.TB_v_wind_avg_max_LS.Location = New System.Drawing.Point(128, 20)
+        Me.TB_v_wind_avg_max_LS.Name = "TB_v_wind_avg_max_LS"
+        Me.TB_v_wind_avg_max_LS.Size = New System.Drawing.Size(45, 20)
+        Me.TB_v_wind_avg_max_LS.TabIndex = 65
+        Me.TB_v_wind_avg_max_LS.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
         '
-        'LvVehAveLSMax
+        'LB_v_veh_avg_min_LS
         '
-        Me.LvVehAveLSMax.AutoSize = True
-        Me.LvVehAveLSMax.Location = New System.Drawing.Point(6, 75)
-        Me.LvVehAveLSMax.Name = "LvVehAveLSMax"
-        Me.LvVehAveLSMax.Size = New System.Drawing.Size(105, 13)
-        Me.LvVehAveLSMax.TabIndex = 75
-        Me.LvVehAveLSMax.Text = "v_veh_ave_LS_max"
+        Me.LB_v_veh_avg_min_LS.AutoSize = True
+        Me.LB_v_veh_avg_min_LS.Location = New System.Drawing.Point(6, 75)
+        Me.LB_v_veh_avg_min_LS.Name = "LB_v_veh_avg_min_LS"
+        Me.LB_v_veh_avg_min_LS.Size = New System.Drawing.Size(102, 13)
+        Me.LB_v_veh_avg_min_LS.TabIndex = 75
+        Me.LB_v_veh_avg_min_LS.Text = "v_veh_avg_LS_min"
         '
         'Label54
         '
@@ -2019,23 +1816,21 @@ Partial Class F_Main
         Me.Label54.TabIndex = 67
         Me.Label54.Text = "[m/s]"
         '
-        'TBvVehAveLSMin
+        'TB_v_veh_avg_max_LS
         '
-        Me.TBvVehAveLSMin.Location = New System.Drawing.Point(128, 98)
-        Me.TBvVehAveLSMin.Name = "TBvVehAveLSMin"
-        Me.TBvVehAveLSMin.Size = New System.Drawing.Size(45, 20)
-        Me.TBvVehAveLSMin.TabIndex = 74
-        Me.TBvVehAveLSMin.Text = "9"
-        Me.TBvVehAveLSMin.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
+        Me.TB_v_veh_avg_max_LS.Location = New System.Drawing.Point(128, 98)
+        Me.TB_v_veh_avg_max_LS.Name = "TB_v_veh_avg_max_LS"
+        Me.TB_v_veh_avg_max_LS.Size = New System.Drawing.Size(45, 20)
+        Me.TB_v_veh_avg_max_LS.TabIndex = 74
+        Me.TB_v_veh_avg_max_LS.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
         '
-        'TBvWind1sLSMax
+        'TB_v_wind_1s_max_LS
         '
-        Me.TBvWind1sLSMax.Location = New System.Drawing.Point(128, 46)
-        Me.TBvWind1sLSMax.Name = "TBvWind1sLSMax"
-        Me.TBvWind1sLSMax.Size = New System.Drawing.Size(45, 20)
-        Me.TBvWind1sLSMax.TabIndex = 68
-        Me.TBvWind1sLSMax.Text = "8"
-        Me.TBvWind1sLSMax.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
+        Me.TB_v_wind_1s_max_LS.Location = New System.Drawing.Point(128, 46)
+        Me.TB_v_wind_1s_max_LS.Name = "TB_v_wind_1s_max_LS"
+        Me.TB_v_wind_1s_max_LS.Size = New System.Drawing.Size(45, 20)
+        Me.TB_v_wind_1s_max_LS.TabIndex = 68
+        Me.TB_v_wind_1s_max_LS.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
         '
         'Label50
         '
@@ -2055,14 +1850,14 @@ Partial Class F_Main
         Me.LvWind1sLSMax.TabIndex = 69
         Me.LvWind1sLSMax.Text = "v_wind_1s_LS_max"
         '
-        'LvVehAveLSMin
+        'LB_v_veh_avg_max_LS
         '
-        Me.LvVehAveLSMin.AutoSize = True
-        Me.LvVehAveLSMin.Location = New System.Drawing.Point(6, 101)
-        Me.LvVehAveLSMin.Name = "LvVehAveLSMin"
-        Me.LvVehAveLSMin.Size = New System.Drawing.Size(102, 13)
-        Me.LvVehAveLSMin.TabIndex = 72
-        Me.LvVehAveLSMin.Text = "v_veh_ave_LS_min"
+        Me.LB_v_veh_avg_max_LS.AutoSize = True
+        Me.LB_v_veh_avg_max_LS.Location = New System.Drawing.Point(6, 101)
+        Me.LB_v_veh_avg_max_LS.Name = "LB_v_veh_avg_max_LS"
+        Me.LB_v_veh_avg_max_LS.Size = New System.Drawing.Size(105, 13)
+        Me.LB_v_veh_avg_max_LS.TabIndex = 72
+        Me.LB_v_veh_avg_max_LS.Text = "v_veh_avg_LS_max"
         '
         'Label52
         '
@@ -2073,25 +1868,24 @@ Partial Class F_Main
         Me.Label52.TabIndex = 70
         Me.Label52.Text = "[m/s]"
         '
-        'TBvVehAveLSMax
+        'TB_v_veh_avg_min_LS
         '
-        Me.TBvVehAveLSMax.Location = New System.Drawing.Point(128, 72)
-        Me.TBvVehAveLSMax.Name = "TBvVehAveLSMax"
-        Me.TBvVehAveLSMax.Size = New System.Drawing.Size(45, 20)
-        Me.TBvVehAveLSMax.TabIndex = 71
-        Me.TBvVehAveLSMax.Text = "16"
-        Me.TBvVehAveLSMax.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
+        Me.TB_v_veh_avg_min_LS.Location = New System.Drawing.Point(128, 72)
+        Me.TB_v_veh_avg_min_LS.Name = "TB_v_veh_avg_min_LS"
+        Me.TB_v_veh_avg_min_LS.Size = New System.Drawing.Size(45, 20)
+        Me.TB_v_veh_avg_min_LS.TabIndex = 71
+        Me.TB_v_veh_avg_min_LS.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
         '
         'GroupBox13
         '
         Me.GroupBox13.Controls.Add(Me.Label40)
-        Me.GroupBox13.Controls.Add(Me.TBvWindAveCALMax)
+        Me.GroupBox13.Controls.Add(Me.TB_v_wind_avg_max_CAL)
         Me.GroupBox13.Controls.Add(Me.LvWind1sCALMax)
         Me.GroupBox13.Controls.Add(Me.LvWindAveCALMax)
-        Me.GroupBox13.Controls.Add(Me.TBBetaAveCALMax)
+        Me.GroupBox13.Controls.Add(Me.TB_beta_avg_max_CAL)
         Me.GroupBox13.Controls.Add(Me.Label44)
         Me.GroupBox13.Controls.Add(Me.Label42)
-        Me.GroupBox13.Controls.Add(Me.TBvWind1sCALMax)
+        Me.GroupBox13.Controls.Add(Me.TB_v_wind_1s_max_CAL)
         Me.GroupBox13.Controls.Add(Me.LBetaAveCALMax)
         Me.GroupBox13.Location = New System.Drawing.Point(6, 45)
         Me.GroupBox13.Name = "GroupBox13"
@@ -2109,14 +1903,13 @@ Partial Class F_Main
         Me.Label40.TabIndex = 64
         Me.Label40.Text = "[°]"
         '
-        'TBvWindAveCALMax
+        'TB_v_wind_avg_max_CAL
         '
-        Me.TBvWindAveCALMax.Location = New System.Drawing.Point(128, 20)
-        Me.TBvWindAveCALMax.Name = "TBvWindAveCALMax"
-        Me.TBvWindAveCALMax.Size = New System.Drawing.Size(45, 20)
-        Me.TBvWindAveCALMax.TabIndex = 56
-        Me.TBvWindAveCALMax.Text = "5"
-        Me.TBvWindAveCALMax.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
+        Me.TB_v_wind_avg_max_CAL.Location = New System.Drawing.Point(128, 20)
+        Me.TB_v_wind_avg_max_CAL.Name = "TB_v_wind_avg_max_CAL"
+        Me.TB_v_wind_avg_max_CAL.Size = New System.Drawing.Size(45, 20)
+        Me.TB_v_wind_avg_max_CAL.TabIndex = 56
+        Me.TB_v_wind_avg_max_CAL.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
         '
         'LvWind1sCALMax
         '
@@ -2134,16 +1927,15 @@ Partial Class F_Main
         Me.LvWindAveCALMax.Name = "LvWindAveCALMax"
         Me.LvWindAveCALMax.Size = New System.Drawing.Size(116, 13)
         Me.LvWindAveCALMax.TabIndex = 57
-        Me.LvWindAveCALMax.Text = "v_wind_ave_CAL_max"
+        Me.LvWindAveCALMax.Text = "v_wind_avg_CAL_max"
         '
-        'TBBetaAveCALMax
+        'TB_beta_avg_max_CAL
         '
-        Me.TBBetaAveCALMax.Location = New System.Drawing.Point(128, 72)
-        Me.TBBetaAveCALMax.Name = "TBBetaAveCALMax"
-        Me.TBBetaAveCALMax.Size = New System.Drawing.Size(45, 20)
-        Me.TBBetaAveCALMax.TabIndex = 62
-        Me.TBBetaAveCALMax.Text = "5"
-        Me.TBBetaAveCALMax.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
+        Me.TB_beta_avg_max_CAL.Location = New System.Drawing.Point(128, 72)
+        Me.TB_beta_avg_max_CAL.Name = "TB_beta_avg_max_CAL"
+        Me.TB_beta_avg_max_CAL.Size = New System.Drawing.Size(45, 20)
+        Me.TB_beta_avg_max_CAL.TabIndex = 62
+        Me.TB_beta_avg_max_CAL.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
         '
         'Label44
         '
@@ -2163,14 +1955,13 @@ Partial Class F_Main
         Me.Label42.TabIndex = 61
         Me.Label42.Text = "[m/s]"
         '
-        'TBvWind1sCALMax
+        'TB_v_wind_1s_max_CAL
         '
-        Me.TBvWind1sCALMax.Location = New System.Drawing.Point(128, 46)
-        Me.TBvWind1sCALMax.Name = "TBvWind1sCALMax"
-        Me.TBvWind1sCALMax.Size = New System.Drawing.Size(45, 20)
-        Me.TBvWind1sCALMax.TabIndex = 59
-        Me.TBvWind1sCALMax.Text = "8"
-        Me.TBvWind1sCALMax.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
+        Me.TB_v_wind_1s_max_CAL.Location = New System.Drawing.Point(128, 46)
+        Me.TB_v_wind_1s_max_CAL.Name = "TB_v_wind_1s_max_CAL"
+        Me.TB_v_wind_1s_max_CAL.Size = New System.Drawing.Size(45, 20)
+        Me.TB_v_wind_1s_max_CAL.TabIndex = 59
+        Me.TB_v_wind_1s_max_CAL.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
         '
         'LBetaAveCALMax
         '
@@ -2179,243 +1970,373 @@ Partial Class F_Main
         Me.LBetaAveCALMax.Name = "LBetaAveCALMax"
         Me.LBetaAveCALMax.Size = New System.Drawing.Size(103, 13)
         Me.LBetaAveCALMax.TabIndex = 60
-        Me.LBetaAveCALMax.Text = "beta_ave_CAL_max"
+        Me.LBetaAveCALMax.Text = "beta_avg_CAL_max"
         '
-        'GroupBox8
+        'TBInfoCrt
         '
-        Me.GroupBox8.Controls.Add(Me.Label32)
-        Me.GroupBox8.Controls.Add(Me.LDsMinHeadMS)
-        Me.GroupBox8.Controls.Add(Me.TBDsMinHeadHS)
-        Me.GroupBox8.Controls.Add(Me.Label34)
-        Me.GroupBox8.Controls.Add(Me.LDsMinHS)
-        Me.GroupBox8.Controls.Add(Me.TBDsMinHS)
-        Me.GroupBox8.Controls.Add(Me.Label36)
-        Me.GroupBox8.Controls.Add(Me.LDsMinLS)
-        Me.GroupBox8.Controls.Add(Me.TBDsMinLS)
-        Me.GroupBox8.Controls.Add(Me.Label38)
-        Me.GroupBox8.Controls.Add(Me.LDsMinCAL)
-        Me.GroupBox8.Controls.Add(Me.TBDsMinCAL)
-        Me.GroupBox8.Location = New System.Drawing.Point(254, 427)
-        Me.GroupBox8.Name = "GroupBox8"
-        Me.GroupBox8.Size = New System.Drawing.Size(219, 125)
-        Me.GroupBox8.TabIndex = 43
-        Me.GroupBox8.TabStop = False
-        Me.GroupBox8.Text = "Requirements on number of valid datasets"
+        Me.TBInfoCrt.Location = New System.Drawing.Point(37, 347)
+        Me.TBInfoCrt.Multiline = True
+        Me.TBInfoCrt.Name = "TBInfoCrt"
+        Me.TBInfoCrt.Size = New System.Drawing.Size(413, 64)
+        Me.TBInfoCrt.TabIndex = 83
         '
-        'Label32
+        'PBInfoIconCrt
         '
-        Me.Label32.AutoSize = True
-        Me.Label32.Location = New System.Drawing.Point(173, 100)
-        Me.Label32.Name = "Label32"
-        Me.Label32.Size = New System.Drawing.Size(20, 13)
-        Me.Label32.TabIndex = 52
-        Me.Label32.Text = "[#]"
+        Me.PBInfoIconCrt.Image = Global.CSE.My.Resources.Resources.Info
+        Me.PBInfoIconCrt.Location = New System.Drawing.Point(6, 363)
+        Me.PBInfoIconCrt.Name = "PBInfoIconCrt"
+        Me.PBInfoIconCrt.Size = New System.Drawing.Size(25, 30)
+        Me.PBInfoIconCrt.TabIndex = 81
+        Me.PBInfoIconCrt.TabStop = False
         '
-        'LDsMinHeadMS
+        'GroupBox14
         '
-        Me.LDsMinHeadMS.AutoSize = True
-        Me.LDsMinHeadMS.Location = New System.Drawing.Point(8, 100)
-        Me.LDsMinHeadMS.Name = "LDsMinHeadMS"
-        Me.LDsMinHeadMS.Size = New System.Drawing.Size(91, 13)
-        Me.LDsMinHeadMS.TabIndex = 51
-        Me.LDsMinHeadMS.Text = "ds_min_head_HS"
+        Me.GroupBox14.Controls.Add(Me.Label82)
+        Me.GroupBox14.Controls.Add(Me.LB_t_amb_tarmac)
+        Me.GroupBox14.Controls.Add(Me.TB_t_amb_min)
+        Me.GroupBox14.Controls.Add(Me.Label24)
+        Me.GroupBox14.Controls.Add(Me.Label84)
+        Me.GroupBox14.Controls.Add(Me.TB_t_amb_tarmac)
+        Me.GroupBox14.Controls.Add(Me.LB_t_amb_min)
+        Me.GroupBox14.Controls.Add(Me.LDeltaParaMax)
+        Me.GroupBox14.Controls.Add(Me.LB_delta_t_tyre_max)
+        Me.GroupBox14.Controls.Add(Me.TB_delta_parallel_max)
+        Me.GroupBox14.Controls.Add(Me.TB_delta_t_tyre_max)
+        Me.GroupBox14.Controls.Add(Me.Label65)
+        Me.GroupBox14.Controls.Add(Me.Label66)
+        Me.GroupBox14.Controls.Add(Me.TB_delta_rr_corr_max)
+        Me.GroupBox14.Controls.Add(Me.LB_t_amb_var)
+        Me.GroupBox14.Controls.Add(Me.LB_delta_rr_corr_max)
+        Me.GroupBox14.Controls.Add(Me.TB_t_amb_max)
+        Me.GroupBox14.Controls.Add(Me.Label69)
+        Me.GroupBox14.Controls.Add(Me.Label18)
+        Me.GroupBox14.Controls.Add(Me.Label70)
+        Me.GroupBox14.Controls.Add(Me.LDeltaHzMax)
+        Me.GroupBox14.Controls.Add(Me.TB_t_amb_var)
+        Me.GroupBox14.Controls.Add(Me.TB_delta_Hz_max)
+        Me.GroupBox14.Controls.Add(Me.LB_t_amb_max)
+        Me.GroupBox14.Location = New System.Drawing.Point(231, 6)
+        Me.GroupBox14.Name = "GroupBox14"
+        Me.GroupBox14.Size = New System.Drawing.Size(219, 231)
+        Me.GroupBox14.TabIndex = 1
+        Me.GroupBox14.TabStop = False
+        Me.GroupBox14.Text = "General validity criteria"
         '
-        'TBDsMinHeadHS
+        'Label82
         '
-        Me.TBDsMinHeadHS.Location = New System.Drawing.Point(128, 97)
-        Me.TBDsMinHeadHS.Name = "TBDsMinHeadHS"
-        Me.TBDsMinHeadHS.Size = New System.Drawing.Size(45, 20)
-        Me.TBDsMinHeadHS.TabIndex = 50
-        Me.TBDsMinHeadHS.Text = "10"
-        Me.TBDsMinHeadHS.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
+        Me.Label82.AutoSize = True
+        Me.Label82.Location = New System.Drawing.Point(178, 196)
+        Me.Label82.Name = "Label82"
+        Me.Label82.Size = New System.Drawing.Size(24, 13)
+        Me.Label82.TabIndex = 70
+        Me.Label82.Text = "[°C]"
         '
-        'Label34
+        'LB_t_amb_tarmac
         '
-        Me.Label34.AutoSize = True
-        Me.Label34.Location = New System.Drawing.Point(173, 74)
-        Me.Label34.Name = "Label34"
-        Me.Label34.Size = New System.Drawing.Size(20, 13)
-        Me.Label34.TabIndex = 49
-        Me.Label34.Text = "[#]"
+        Me.LB_t_amb_tarmac.AutoSize = True
+        Me.LB_t_amb_tarmac.Location = New System.Drawing.Point(11, 150)
+        Me.LB_t_amb_tarmac.Name = "LB_t_amb_tarmac"
+        Me.LB_t_amb_tarmac.Size = New System.Drawing.Size(74, 13)
+        Me.LB_t_amb_tarmac.TabIndex = 69
+        Me.LB_t_amb_tarmac.Text = "t_amb_tarmac"
         '
-        'LDsMinHS
+        'TB_t_amb_min
         '
-        Me.LDsMinHS.AutoSize = True
-        Me.LDsMinHS.Location = New System.Drawing.Point(9, 74)
-        Me.LDsMinHS.Name = "LDsMinHS"
-        Me.LDsMinHS.Size = New System.Drawing.Size(61, 13)
-        Me.LDsMinHS.TabIndex = 48
-        Me.LDsMinHS.Text = "ds_min_HS"
+        Me.TB_t_amb_min.Location = New System.Drawing.Point(133, 199)
+        Me.TB_t_amb_min.Name = "TB_t_amb_min"
+        Me.TB_t_amb_min.Size = New System.Drawing.Size(45, 20)
+        Me.TB_t_amb_min.TabIndex = 68
+        Me.TB_t_amb_min.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
         '
-        'TBDsMinHS
+        'Label24
         '
-        Me.TBDsMinHS.Location = New System.Drawing.Point(128, 71)
-        Me.TBDsMinHS.Name = "TBDsMinHS"
-        Me.TBDsMinHS.Size = New System.Drawing.Size(45, 20)
-        Me.TBDsMinHS.TabIndex = 47
-        Me.TBDsMinHS.Text = "2"
-        Me.TBDsMinHS.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
+        Me.Label24.AutoSize = True
+        Me.Label24.Location = New System.Drawing.Point(178, 46)
+        Me.Label24.Name = "Label24"
+        Me.Label24.Size = New System.Drawing.Size(17, 13)
+        Me.Label24.TabIndex = 40
+        Me.Label24.Text = "[°]"
         '
-        'Label36
+        'Label84
         '
-        Me.Label36.AutoSize = True
-        Me.Label36.Location = New System.Drawing.Point(173, 48)
-        Me.Label36.Name = "Label36"
-        Me.Label36.Size = New System.Drawing.Size(20, 13)
-        Me.Label36.TabIndex = 46
-        Me.Label36.Text = "[#]"
+        Me.Label84.AutoSize = True
+        Me.Label84.Location = New System.Drawing.Point(178, 144)
+        Me.Label84.Name = "Label84"
+        Me.Label84.Size = New System.Drawing.Size(24, 13)
+        Me.Label84.TabIndex = 67
+        Me.Label84.Text = "[°C]"
         '
-        'LDsMinLS
+        'TB_t_amb_tarmac
         '
-        Me.LDsMinLS.AutoSize = True
-        Me.LDsMinLS.Location = New System.Drawing.Point(9, 48)
-        Me.LDsMinLS.Name = "LDsMinLS"
-        Me.LDsMinLS.Size = New System.Drawing.Size(59, 13)
-        Me.LDsMinLS.TabIndex = 45
-        Me.LDsMinLS.Text = "ds_min_LS"
+        Me.TB_t_amb_tarmac.Location = New System.Drawing.Point(133, 147)
+        Me.TB_t_amb_tarmac.Name = "TB_t_amb_tarmac"
+        Me.TB_t_amb_tarmac.Size = New System.Drawing.Size(45, 20)
+        Me.TB_t_amb_tarmac.TabIndex = 65
+        Me.TB_t_amb_tarmac.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
         '
-        'TBDsMinLS
+        'LB_t_amb_min
         '
-        Me.TBDsMinLS.Location = New System.Drawing.Point(128, 45)
-        Me.TBDsMinLS.Name = "TBDsMinLS"
-        Me.TBDsMinLS.Size = New System.Drawing.Size(45, 20)
-        Me.TBDsMinLS.TabIndex = 44
-        Me.TBDsMinLS.Text = "1"
-        Me.TBDsMinLS.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
+        Me.LB_t_amb_min.AutoSize = True
+        Me.LB_t_amb_min.Location = New System.Drawing.Point(11, 202)
+        Me.LB_t_amb_min.Name = "LB_t_amb_min"
+        Me.LB_t_amb_min.Size = New System.Drawing.Size(58, 13)
+        Me.LB_t_amb_min.TabIndex = 66
+        Me.LB_t_amb_min.Text = "t_amb_min"
         '
-        'Label38
+        'LDeltaParaMax
         '
-        Me.Label38.AutoSize = True
-        Me.Label38.Location = New System.Drawing.Point(173, 22)
-        Me.Label38.Name = "Label38"
-        Me.Label38.Size = New System.Drawing.Size(20, 13)
-        Me.Label38.TabIndex = 43
-        Me.Label38.Text = "[#]"
+        Me.LDeltaParaMax.AutoSize = True
+        Me.LDeltaParaMax.Location = New System.Drawing.Point(11, 46)
+        Me.LDeltaParaMax.Name = "LDeltaParaMax"
+        Me.LDeltaParaMax.Size = New System.Drawing.Size(94, 13)
+        Me.LDeltaParaMax.TabIndex = 39
+        Me.LDeltaParaMax.Text = "delta_parallel_max"
         '
-        'LDsMinCAL
+        'LB_delta_t_tyre_max
         '
-        Me.LDsMinCAL.AutoSize = True
-        Me.LDsMinCAL.Location = New System.Drawing.Point(9, 22)
-        Me.LDsMinCAL.Name = "LDsMinCAL"
-        Me.LDsMinCAL.Size = New System.Drawing.Size(66, 13)
-        Me.LDsMinCAL.TabIndex = 42
-        Me.LDsMinCAL.Text = "ds_min_CAL"
+        Me.LB_delta_t_tyre_max.AutoSize = True
+        Me.LB_delta_t_tyre_max.Location = New System.Drawing.Point(11, 72)
+        Me.LB_delta_t_tyre_max.Name = "LB_delta_t_tyre_max"
+        Me.LB_delta_t_tyre_max.Size = New System.Drawing.Size(87, 13)
+        Me.LB_delta_t_tyre_max.TabIndex = 54
+        Me.LB_delta_t_tyre_max.Text = "delta_t_tyre_max"
         '
-        'TBDsMinCAL
+        'TB_delta_parallel_max
         '
-        Me.TBDsMinCAL.Location = New System.Drawing.Point(128, 19)
-        Me.TBDsMinCAL.Name = "TBDsMinCAL"
-        Me.TBDsMinCAL.Size = New System.Drawing.Size(45, 20)
-        Me.TBDsMinCAL.TabIndex = 41
-        Me.TBDsMinCAL.Text = "5"
-        Me.TBDsMinCAL.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
+        Me.TB_delta_parallel_max.Location = New System.Drawing.Point(133, 43)
+        Me.TB_delta_parallel_max.Name = "TB_delta_parallel_max"
+        Me.TB_delta_parallel_max.Size = New System.Drawing.Size(45, 20)
+        Me.TB_delta_parallel_max.TabIndex = 3
+        Me.TB_delta_parallel_max.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
         '
-        'GroupBox7
+        'TB_delta_t_tyre_max
         '
-        Me.GroupBox7.Controls.Add(Me.Label26)
-        Me.GroupBox7.Controls.Add(Me.LContAng)
-        Me.GroupBox7.Controls.Add(Me.TBDeltaHeadMax)
-        Me.GroupBox7.Controls.Add(Me.Label28)
-        Me.GroupBox7.Controls.Add(Me.LDeltaYMax)
-        Me.GroupBox7.Controls.Add(Me.TBDeltaYMax)
-        Me.GroupBox7.Controls.Add(Me.Label30)
-        Me.GroupBox7.Controls.Add(Me.LDeltaXMax)
-        Me.GroupBox7.Controls.Add(Me.TBDeltaXMax)
-        Me.GroupBox7.Location = New System.Drawing.Point(254, 323)
-        Me.GroupBox7.Name = "GroupBox7"
-        Me.GroupBox7.Size = New System.Drawing.Size(219, 98)
-        Me.GroupBox7.TabIndex = 42
-        Me.GroupBox7.TabStop = False
-        Me.GroupBox7.Text = "Identification of measurement section"
+        Me.TB_delta_t_tyre_max.Location = New System.Drawing.Point(133, 69)
+        Me.TB_delta_t_tyre_max.Name = "TB_delta_t_tyre_max"
+        Me.TB_delta_t_tyre_max.Size = New System.Drawing.Size(45, 20)
+        Me.TB_delta_t_tyre_max.TabIndex = 53
+        Me.TB_delta_t_tyre_max.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
         '
-        'Label26
+        'Label65
         '
-        Me.Label26.AutoSize = True
-        Me.Label26.Location = New System.Drawing.Point(173, 74)
-        Me.Label26.Name = "Label26"
-        Me.Label26.Size = New System.Drawing.Size(17, 13)
-        Me.Label26.TabIndex = 46
-        Me.Label26.Text = "[°]"
+        Me.Label65.AutoSize = True
+        Me.Label65.Location = New System.Drawing.Point(178, 66)
+        Me.Label65.Name = "Label65"
+        Me.Label65.Size = New System.Drawing.Size(24, 13)
+        Me.Label65.TabIndex = 55
+        Me.Label65.Text = "[°C]"
         '
-        'LContAng
+        'Label66
         '
-        Me.LContAng.AutoSize = True
-        Me.LContAng.Location = New System.Drawing.Point(6, 74)
-        Me.LContAng.Name = "LContAng"
-        Me.LContAng.Size = New System.Drawing.Size(85, 13)
-        Me.LContAng.TabIndex = 45
-        Me.LContAng.Text = "delta_head_max"
+        Me.Label66.AutoSize = True
+        Me.Label66.Location = New System.Drawing.Point(178, 170)
+        Me.Label66.Name = "Label66"
+        Me.Label66.Size = New System.Drawing.Size(24, 13)
+        Me.Label66.TabIndex = 64
+        Me.Label66.Text = "[°C]"
         '
-        'TBDeltaHeadMax
+        'TB_delta_rr_corr_max
         '
-        Me.TBDeltaHeadMax.Location = New System.Drawing.Point(128, 71)
-        Me.TBDeltaHeadMax.Name = "TBDeltaHeadMax"
-        Me.TBDeltaHeadMax.Size = New System.Drawing.Size(45, 20)
-        Me.TBDeltaHeadMax.TabIndex = 44
-        Me.TBDeltaHeadMax.Text = "10"
-        Me.TBDeltaHeadMax.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
+        Me.TB_delta_rr_corr_max.Location = New System.Drawing.Point(133, 95)
+        Me.TB_delta_rr_corr_max.Name = "TB_delta_rr_corr_max"
+        Me.TB_delta_rr_corr_max.Size = New System.Drawing.Size(45, 20)
+        Me.TB_delta_rr_corr_max.TabIndex = 56
+        Me.TB_delta_rr_corr_max.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
         '
-        'Label28
+        'LB_t_amb_var
         '
-        Me.Label28.AutoSize = True
-        Me.Label28.Location = New System.Drawing.Point(173, 48)
-        Me.Label28.Name = "Label28"
-        Me.Label28.Size = New System.Drawing.Size(21, 13)
-        Me.Label28.TabIndex = 43
-        Me.Label28.Text = "[m]"
+        Me.LB_t_amb_var.AutoSize = True
+        Me.LB_t_amb_var.Location = New System.Drawing.Point(11, 124)
+        Me.LB_t_amb_var.Name = "LB_t_amb_var"
+        Me.LB_t_amb_var.Size = New System.Drawing.Size(57, 13)
+        Me.LB_t_amb_var.TabIndex = 63
+        Me.LB_t_amb_var.Text = "t_amb_var"
         '
-        'LDeltaYMax
+        'LB_delta_rr_corr_max
         '
-        Me.LDeltaYMax.AutoSize = True
-        Me.LDeltaYMax.Location = New System.Drawing.Point(6, 48)
-        Me.LDeltaYMax.Name = "LDeltaYMax"
-        Me.LDeltaYMax.Size = New System.Drawing.Size(66, 13)
-        Me.LDeltaYMax.TabIndex = 42
-        Me.LDeltaYMax.Text = "delta_y_max"
+        Me.LB_delta_rr_corr_max.AutoSize = True
+        Me.LB_delta_rr_corr_max.Location = New System.Drawing.Point(11, 98)
+        Me.LB_delta_rr_corr_max.Name = "LB_delta_rr_corr_max"
+        Me.LB_delta_rr_corr_max.Size = New System.Drawing.Size(84, 13)
+        Me.LB_delta_rr_corr_max.TabIndex = 57
+        Me.LB_delta_rr_corr_max.Text = "delta_RRC_max"
         '
-        'TBDeltaYMax
+        'TB_t_amb_max
         '
-        Me.TBDeltaYMax.Location = New System.Drawing.Point(128, 45)
-        Me.TBDeltaYMax.Name = "TBDeltaYMax"
-        Me.TBDeltaYMax.Size = New System.Drawing.Size(45, 20)
-        Me.TBDeltaYMax.TabIndex = 41
-        Me.TBDeltaYMax.Text = "100"
-        Me.TBDeltaYMax.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
+        Me.TB_t_amb_max.Location = New System.Drawing.Point(133, 173)
+        Me.TB_t_amb_max.Name = "TB_t_amb_max"
+        Me.TB_t_amb_max.Size = New System.Drawing.Size(45, 20)
+        Me.TB_t_amb_max.TabIndex = 62
+        Me.TB_t_amb_max.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
         '
-        'Label30
+        'Label69
         '
-        Me.Label30.AutoSize = True
-        Me.Label30.Location = New System.Drawing.Point(173, 22)
-        Me.Label30.Name = "Label30"
-        Me.Label30.Size = New System.Drawing.Size(21, 13)
-        Me.Label30.TabIndex = 40
-        Me.Label30.Text = "[m]"
+        Me.Label69.AutoSize = True
+        Me.Label69.Location = New System.Drawing.Point(178, 92)
+        Me.Label69.Name = "Label69"
+        Me.Label69.Size = New System.Drawing.Size(33, 13)
+        Me.Label69.TabIndex = 58
+        Me.Label69.Text = "[kg/t]"
         '
-        'LDeltaXMax
+        'Label18
         '
-        Me.LDeltaXMax.AutoSize = True
-        Me.LDeltaXMax.Location = New System.Drawing.Point(6, 22)
-        Me.LDeltaXMax.Name = "LDeltaXMax"
-        Me.LDeltaXMax.Size = New System.Drawing.Size(66, 13)
-        Me.LDeltaXMax.TabIndex = 39
-        Me.LDeltaXMax.Text = "delta_x_max"
+        Me.Label18.AutoSize = True
+        Me.Label18.Location = New System.Drawing.Point(178, 20)
+        Me.Label18.Name = "Label18"
+        Me.Label18.Size = New System.Drawing.Size(21, 13)
+        Me.Label18.TabIndex = 31
+        Me.Label18.Text = "[%]"
+        '
+        'Label70
+        '
+        Me.Label70.AutoSize = True
+        Me.Label70.Location = New System.Drawing.Point(178, 118)
+        Me.Label70.Name = "Label70"
+        Me.Label70.Size = New System.Drawing.Size(24, 13)
+        Me.Label70.TabIndex = 61
+        Me.Label70.Text = "[°C]"
+        '
+        'LDeltaHzMax
+        '
+        Me.LDeltaHzMax.AutoSize = True
+        Me.LDeltaHzMax.Location = New System.Drawing.Point(11, 20)
+        Me.LDeltaHzMax.Name = "LDeltaHzMax"
+        Me.LDeltaHzMax.Size = New System.Drawing.Size(74, 13)
+        Me.LDeltaHzMax.TabIndex = 30
+        Me.LDeltaHzMax.Text = "delta_Hz_max"
+        '
+        'TB_t_amb_var
+        '
+        Me.TB_t_amb_var.Location = New System.Drawing.Point(133, 121)
+        Me.TB_t_amb_var.Name = "TB_t_amb_var"
+        Me.TB_t_amb_var.Size = New System.Drawing.Size(45, 20)
+        Me.TB_t_amb_var.TabIndex = 59
+        Me.TB_t_amb_var.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
+        '
+        'TB_delta_Hz_max
+        '
+        Me.TB_delta_Hz_max.Location = New System.Drawing.Point(133, 17)
+        Me.TB_delta_Hz_max.Name = "TB_delta_Hz_max"
+        Me.TB_delta_Hz_max.Size = New System.Drawing.Size(45, 20)
+        Me.TB_delta_Hz_max.TabIndex = 0
+        Me.TB_delta_Hz_max.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
+        '
+        'LB_t_amb_max
+        '
+        Me.LB_t_amb_max.AutoSize = True
+        Me.LB_t_amb_max.Location = New System.Drawing.Point(11, 176)
+        Me.LB_t_amb_max.Name = "LB_t_amb_max"
+        Me.LB_t_amb_max.Size = New System.Drawing.Size(61, 13)
+        Me.LB_t_amb_max.TabIndex = 60
+        Me.LB_t_amb_max.Text = "t_amb_max"
+        '
+        'GroupBox10
+        '
+        Me.GroupBox10.Controls.Add(Me.Label14)
+        Me.GroupBox10.Controls.Add(Me.CB_gradient_correction)
+        Me.GroupBox10.Controls.Add(Me.Label2)
+        Me.GroupBox10.Controls.Add(Me.TB_rr_corr_factor)
+        Me.GroupBox10.Controls.Add(Me.CB_accel_correction)
+        Me.GroupBox10.Controls.Add(Me.Label22)
+        Me.GroupBox10.Controls.Add(Me.LAccCorrAve)
+        Me.GroupBox10.Controls.Add(Me.TB_acc_corr_avg)
+        Me.GroupBox10.Controls.Add(Me.GB_hz_out)
+        Me.GroupBox10.Controls.Add(Me.Label20)
+        Me.GroupBox10.Controls.Add(Me.LRhoAirRef)
+        Me.GroupBox10.Controls.Add(Me.TB_roh_air_ref)
+        Me.GroupBox10.Location = New System.Drawing.Point(6, 6)
+        Me.GroupBox10.Name = "GroupBox10"
+        Me.GroupBox10.Size = New System.Drawing.Size(219, 167)
+        Me.GroupBox10.TabIndex = 0
+        Me.GroupBox10.TabStop = False
+        Me.GroupBox10.Text = "Processing"
+        '
+        'Label14
         '
-        'TBDeltaXMax
+        Me.Label14.AutoSize = True
+        Me.Label14.Location = New System.Drawing.Point(173, 98)
+        Me.Label14.Name = "Label14"
+        Me.Label14.Size = New System.Drawing.Size(16, 13)
+        Me.Label14.TabIndex = 86
+        Me.Label14.Text = "[-]"
         '
-        Me.TBDeltaXMax.Location = New System.Drawing.Point(128, 19)
-        Me.TBDeltaXMax.Name = "TBDeltaXMax"
-        Me.TBDeltaXMax.Size = New System.Drawing.Size(45, 20)
-        Me.TBDeltaXMax.TabIndex = 38
-        Me.TBDeltaXMax.Text = "10"
-        Me.TBDeltaXMax.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
+        'Label2
+        '
+        Me.Label2.AutoSize = True
+        Me.Label2.Location = New System.Drawing.Point(7, 71)
+        Me.Label2.Name = "Label2"
+        Me.Label2.Size = New System.Drawing.Size(80, 13)
+        Me.Label2.TabIndex = 85
+        Me.Label2.Text = "Rolling res. corr"
+        '
+        'TB_rr_corr_factor
+        '
+        Me.TB_rr_corr_factor.Location = New System.Drawing.Point(122, 69)
+        Me.TB_rr_corr_factor.Name = "TB_rr_corr_factor"
+        Me.TB_rr_corr_factor.Size = New System.Drawing.Size(48, 20)
+        Me.TB_rr_corr_factor.TabIndex = 84
+        Me.TB_rr_corr_factor.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
+        '
+        'Label22
+        '
+        Me.Label22.AutoSize = True
+        Me.Label22.Location = New System.Drawing.Point(170, 46)
+        Me.Label22.Name = "Label22"
+        Me.Label22.Size = New System.Drawing.Size(18, 13)
+        Me.Label22.TabIndex = 37
+        Me.Label22.Text = "[s]"
+        '
+        'LAccCorrAve
+        '
+        Me.LAccCorrAve.AutoSize = True
+        Me.LAccCorrAve.Location = New System.Drawing.Point(7, 45)
+        Me.LAccCorrAve.Name = "LAccCorrAve"
+        Me.LAccCorrAve.Size = New System.Drawing.Size(73, 13)
+        Me.LAccCorrAve.TabIndex = 36
+        Me.LAccCorrAve.Text = "acc_corr_avg"
+        '
+        'TB_acc_corr_avg
+        '
+        Me.TB_acc_corr_avg.Location = New System.Drawing.Point(122, 43)
+        Me.TB_acc_corr_avg.Name = "TB_acc_corr_avg"
+        Me.TB_acc_corr_avg.Size = New System.Drawing.Size(45, 20)
+        Me.TB_acc_corr_avg.TabIndex = 2
+        Me.TB_acc_corr_avg.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
+        '
+        'Label20
+        '
+        Me.Label20.AutoSize = True
+        Me.Label20.Location = New System.Drawing.Point(170, 22)
+        Me.Label20.Name = "Label20"
+        Me.Label20.Size = New System.Drawing.Size(44, 13)
+        Me.Label20.TabIndex = 34
+        Me.Label20.Text = "[kg/m3]"
+        '
+        'LRhoAirRef
+        '
+        Me.LRhoAirRef.AutoSize = True
+        Me.LRhoAirRef.Location = New System.Drawing.Point(7, 19)
+        Me.LRhoAirRef.Name = "LRhoAirRef"
+        Me.LRhoAirRef.Size = New System.Drawing.Size(57, 13)
+        Me.LRhoAirRef.TabIndex = 33
+        Me.LRhoAirRef.Text = "rho_air_ref"
+        '
+        'TB_roh_air_ref
+        '
+        Me.TB_roh_air_ref.Location = New System.Drawing.Point(122, 17)
+        Me.TB_roh_air_ref.Name = "TB_roh_air_ref"
+        Me.TB_roh_air_ref.Size = New System.Drawing.Size(45, 20)
+        Me.TB_roh_air_ref.TabIndex = 1
+        Me.TB_roh_air_ref.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
         '
         'F_Main
         '
         Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!)
         Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
-        Me.ClientSize = New System.Drawing.Size(670, 679)
+        Me.ClientSize = New System.Drawing.Size(944, 712)
         Me.Controls.Add(Me.TabControl1)
         Me.Controls.Add(Me.PictureBox2)
+        Me.Controls.Add(Me.TabControlOutMsg)
         Me.Controls.Add(Me.Label1)
         Me.Controls.Add(Me.PictureBox1)
         Me.Controls.Add(Me.MenuStrip1)
@@ -2423,23 +2344,19 @@ Partial Class F_Main
         Me.Icon = CType(resources.GetObject("$this.Icon"), System.Drawing.Icon)
         Me.Location = Global.CSE.My.MySettings.Default.F_Main_location
         Me.MainMenuStrip = Me.MenuStrip1
-        Me.MinimumSize = New System.Drawing.Size(686, 717)
+        Me.MinimumSize = New System.Drawing.Size(960, 750)
         Me.Name = "F_Main"
         Me.Text = "VECTO Constant Speed Evaluator"
         Me.MenuStrip1.ResumeLayout(False)
         Me.MenuStrip1.PerformLayout()
         Me.GroupBoxJob.ResumeLayout(False)
         Me.GroupBoxJob.PerformLayout()
-        Me.GroupBox6.ResumeLayout(False)
-        Me.GroupBox6.PerformLayout()
-        Me.GroupBox2.ResumeLayout(False)
-        Me.GroupBox2.PerformLayout()
-        Me.GroupBox4.ResumeLayout(False)
-        Me.GroupBox4.PerformLayout()
+        Me.GB_hz_out.ResumeLayout(False)
+        Me.GB_hz_out.PerformLayout()
+        Me.GB_Anemometer.ResumeLayout(False)
+        Me.GB_Anemometer.PerformLayout()
         Me.GroupBoxInput.ResumeLayout(False)
         Me.GroupBoxInput.PerformLayout()
-        Me.GroupBox5.ResumeLayout(False)
-        Me.GroupBox5.PerformLayout()
         CType(Me.PictureBox2, System.ComponentModel.ISupportInitialize).EndInit()
         CType(Me.PictureBox1, System.ComponentModel.ISupportInitialize).EndInit()
         Me.GroupBox1.ResumeLayout(False)
@@ -2452,13 +2369,14 @@ Partial Class F_Main
         Me.TabPageErr.ResumeLayout(False)
         Me.TabControl1.ResumeLayout(False)
         Me.TPMain.ResumeLayout(False)
-        Me.TPOptions.ResumeLayout(False)
-        Me.TPOptions.PerformLayout()
-        CType(Me.PBInfoIcon, System.ComponentModel.ISupportInitialize).EndInit()
-        Me.GroupBox14.ResumeLayout(False)
-        Me.GroupBox14.PerformLayout()
-        Me.GroupBox10.ResumeLayout(False)
-        Me.GroupBox10.PerformLayout()
+        Me.TPMain.PerformLayout()
+        CType(Me.PbInfoIconMain, System.ComponentModel.ISupportInitialize).EndInit()
+        Me.TPCriteria.ResumeLayout(False)
+        Me.TPCriteria.PerformLayout()
+        Me.GroupBox7.ResumeLayout(False)
+        Me.GroupBox7.PerformLayout()
+        Me.GroupBox8.ResumeLayout(False)
+        Me.GroupBox8.PerformLayout()
         Me.GroupBox9.ResumeLayout(False)
         Me.GroupBox9.PerformLayout()
         Me.GroupBox15.ResumeLayout(False)
@@ -2469,23 +2387,16 @@ Partial Class F_Main
         Me.GroupBox11.PerformLayout()
         Me.GroupBox13.ResumeLayout(False)
         Me.GroupBox13.PerformLayout()
-        Me.GroupBox8.ResumeLayout(False)
-        Me.GroupBox8.PerformLayout()
-        Me.GroupBox7.ResumeLayout(False)
-        Me.GroupBox7.PerformLayout()
+        CType(Me.PBInfoIconCrt, System.ComponentModel.ISupportInitialize).EndInit()
+        Me.GroupBox14.ResumeLayout(False)
+        Me.GroupBox14.PerformLayout()
+        Me.GroupBox10.ResumeLayout(False)
+        Me.GroupBox10.PerformLayout()
         Me.ResumeLayout(False)
         Me.PerformLayout()
 
     End Sub
     Friend WithEvents MenuStrip1 As System.Windows.Forms.MenuStrip
-    Friend WithEvents DataToolStripMenuItem As System.Windows.Forms.ToolStripMenuItem
-    Friend WithEvents ToolStripMenuItemNew As System.Windows.Forms.ToolStripMenuItem
-    Friend WithEvents ToolStripMenuItemOpen As System.Windows.Forms.ToolStripMenuItem
-    Friend WithEvents ToolStripSeparator1 As System.Windows.Forms.ToolStripSeparator
-    Friend WithEvents ToolStripMenuItemSave As System.Windows.Forms.ToolStripMenuItem
-    Friend WithEvents ToolStripMenuItemSaveAs As System.Windows.Forms.ToolStripMenuItem
-    Friend WithEvents ToolStripSeparator2 As System.Windows.Forms.ToolStripSeparator
-    Friend WithEvents ToolStripMenuItemExit As System.Windows.Forms.ToolStripMenuItem
     Friend WithEvents ToolsToolStripMenuItem As System.Windows.Forms.ToolStripMenuItem
     Friend WithEvents ToolStripMenuItemLog As System.Windows.Forms.ToolStripMenuItem
     Friend WithEvents ToolStripSeparator3 As System.Windows.Forms.ToolStripSeparator
@@ -2505,15 +2416,7 @@ Partial Class F_Main
     Friend WithEvents PictureBox2 As System.Windows.Forms.PictureBox
     Friend WithEvents Label1 As System.Windows.Forms.Label
     Friend WithEvents PictureBox1 As System.Windows.Forms.PictureBox
-    Friend WithEvents ButtonSave As System.Windows.Forms.Button
-    Friend WithEvents ButtonExit As System.Windows.Forms.Button
     Friend WithEvents ButtonCalC As System.Windows.Forms.Button
-    Friend WithEvents TextBoxDataLS1 As System.Windows.Forms.TextBox
-    Friend WithEvents ButtonDataLS1 As System.Windows.Forms.Button
-    Friend WithEvents ButtonSelectDataLS1 As System.Windows.Forms.Button
-    Friend WithEvents TextBoxDataHS As System.Windows.Forms.TextBox
-    Friend WithEvents ButtonDataHS As System.Windows.Forms.Button
-    Friend WithEvents ButtonSelectDataHS As System.Windows.Forms.Button
     Friend WithEvents GroupBox1 As System.Windows.Forms.GroupBox
     Friend WithEvents TextBoxMSCC As System.Windows.Forms.TextBox
     Friend WithEvents ButtonMSCC As System.Windows.Forms.Button
@@ -2522,14 +2425,11 @@ Partial Class F_Main
     Friend WithEvents TextBoxAird As System.Windows.Forms.TextBox
     Friend WithEvents TextBoxbetaf As System.Windows.Forms.TextBox
     Friend WithEvents TextBoxbetad As System.Windows.Forms.TextBox
-    Friend WithEvents GroupBox2 As System.Windows.Forms.GroupBox
+    Friend WithEvents GB_Anemometer As System.Windows.Forms.GroupBox
     Friend WithEvents Label6 As System.Windows.Forms.Label
     Friend WithEvents Label5 As System.Windows.Forms.Label
     Friend WithEvents Label4 As System.Windows.Forms.Label
     Friend WithEvents Label3 As System.Windows.Forms.Label
-    Friend WithEvents TextBoxDataLS2 As System.Windows.Forms.TextBox
-    Friend WithEvents ButtonDataLS2 As System.Windows.Forms.Button
-    Friend WithEvents ButtonSelectDataLS2 As System.Windows.Forms.Button
     Friend WithEvents GroupBox3 As System.Windows.Forms.GroupBox
     Friend WithEvents Label9 As System.Windows.Forms.Label
     Friend WithEvents TextBoxRBetaMis As System.Windows.Forms.TextBox
@@ -2537,18 +2437,14 @@ Partial Class F_Main
     Friend WithEvents TextBoxRAirPos As System.Windows.Forms.TextBox
     Friend WithEvents Label7 As System.Windows.Forms.Label
     Friend WithEvents TextBoxRVeh As System.Windows.Forms.TextBox
-    Friend WithEvents GroupBox4 As System.Windows.Forms.GroupBox
-    Friend WithEvents CheckBoxGrd As System.Windows.Forms.CheckBox
-    Friend WithEvents CheckBoxAcc As System.Windows.Forms.CheckBox
-    Friend WithEvents GroupBox5 As System.Windows.Forms.GroupBox
+    Friend WithEvents CB_gradient_correction As System.Windows.Forms.CheckBox
+    Friend WithEvents CB_accel_correction As System.Windows.Forms.CheckBox
     Friend WithEvents TextBoxDataC As System.Windows.Forms.TextBox
     Friend WithEvents ButtonDataC As System.Windows.Forms.Button
     Friend WithEvents ButtonSelectDataC As System.Windows.Forms.Button
     Friend WithEvents TextBoxWeather As System.Windows.Forms.TextBox
     Friend WithEvents ButtonWeather As System.Windows.Forms.Button
     Friend WithEvents ButtonSelectWeather As System.Windows.Forms.Button
-    Friend WithEvents Label2 As System.Windows.Forms.Label
-    Friend WithEvents TextBoxRRC As System.Windows.Forms.TextBox
     Friend WithEvents ButtonEval As System.Windows.Forms.Button
     Friend WithEvents TabControlOutMsg As System.Windows.Forms.TabControl
     Friend WithEvents TabPageMSG As System.Windows.Forms.TabPage
@@ -2558,7 +2454,7 @@ Partial Class F_Main
     Friend WithEvents TabPageErr As System.Windows.Forms.TabPage
     Friend WithEvents ListBoxErr As System.Windows.Forms.ListBox
     Friend WithEvents TextBoxVeh As System.Windows.Forms.TextBox
-    Friend WithEvents GroupBox6 As System.Windows.Forms.GroupBox
+    Friend WithEvents GB_hz_out As System.Windows.Forms.GroupBox
     Friend WithEvents RB100Hz As System.Windows.Forms.RadioButton
     Friend WithEvents RB1Hz As System.Windows.Forms.RadioButton
     Friend WithEvents Label13 As System.Windows.Forms.Label
@@ -2567,125 +2463,143 @@ Partial Class F_Main
     Friend WithEvents Label10 As System.Windows.Forms.Label
     Friend WithEvents TabControl1 As System.Windows.Forms.TabControl
     Friend WithEvents TPMain As System.Windows.Forms.TabPage
-    Friend WithEvents TPOptions As System.Windows.Forms.TabPage
-    Friend WithEvents Label14 As System.Windows.Forms.Label
+    Friend WithEvents TPCriteria As System.Windows.Forms.TabPage
     Friend WithEvents Label17 As System.Windows.Forms.Label
     Friend WithEvents Label16 As System.Windows.Forms.Label
     Friend WithEvents Label15 As System.Windows.Forms.Label
-    Friend WithEvents ButtonToStd As System.Windows.Forms.Button
     Friend WithEvents GroupBox10 As System.Windows.Forms.GroupBox
-    Friend WithEvents GroupBox9 As System.Windows.Forms.GroupBox
     Friend WithEvents GroupBox8 As System.Windows.Forms.GroupBox
     Friend WithEvents GroupBox7 As System.Windows.Forms.GroupBox
     Friend WithEvents Label20 As System.Windows.Forms.Label
     Friend WithEvents LRhoAirRef As System.Windows.Forms.Label
-    Friend WithEvents TBRhoAirRef As System.Windows.Forms.TextBox
+    Friend WithEvents TB_roh_air_ref As System.Windows.Forms.TextBox
     Friend WithEvents Label18 As System.Windows.Forms.Label
     Friend WithEvents LDeltaHzMax As System.Windows.Forms.Label
-    Friend WithEvents TBDeltaHzMax As System.Windows.Forms.TextBox
+    Friend WithEvents TB_delta_Hz_max As System.Windows.Forms.TextBox
     Friend WithEvents Label22 As System.Windows.Forms.Label
     Friend WithEvents LAccCorrAve As System.Windows.Forms.Label
-    Friend WithEvents TBAccCorrAve As System.Windows.Forms.TextBox
+    Friend WithEvents TB_acc_corr_avg As System.Windows.Forms.TextBox
     Friend WithEvents Label24 As System.Windows.Forms.Label
     Friend WithEvents LDeltaParaMax As System.Windows.Forms.Label
-    Friend WithEvents TBDeltaParaMax As System.Windows.Forms.TextBox
+    Friend WithEvents TB_delta_parallel_max As System.Windows.Forms.TextBox
     Friend WithEvents GroupBox14 As System.Windows.Forms.GroupBox
-    Friend WithEvents LDeltaTTireMax As System.Windows.Forms.Label
-    Friend WithEvents TBDeltaTTireMax As System.Windows.Forms.TextBox
+    Friend WithEvents LB_delta_t_tyre_max As System.Windows.Forms.Label
+    Friend WithEvents TB_delta_t_tyre_max As System.Windows.Forms.TextBox
     Friend WithEvents Label65 As System.Windows.Forms.Label
     Friend WithEvents Label66 As System.Windows.Forms.Label
-    Friend WithEvents TBDeltaRRCMax As System.Windows.Forms.TextBox
-    Friend WithEvents LTambVar As System.Windows.Forms.Label
-    Friend WithEvents LDeltaRRCMax As System.Windows.Forms.Label
-    Friend WithEvents TBTambMax As System.Windows.Forms.TextBox
+    Friend WithEvents TB_delta_rr_corr_max As System.Windows.Forms.TextBox
+    Friend WithEvents LB_t_amb_var As System.Windows.Forms.Label
+    Friend WithEvents LB_delta_rr_corr_max As System.Windows.Forms.Label
+    Friend WithEvents TB_t_amb_max As System.Windows.Forms.TextBox
     Friend WithEvents Label69 As System.Windows.Forms.Label
     Friend WithEvents Label70 As System.Windows.Forms.Label
-    Friend WithEvents TBTambVar As System.Windows.Forms.TextBox
-    Friend WithEvents LTambMax As System.Windows.Forms.Label
-    Friend WithEvents GroupBox13 As System.Windows.Forms.GroupBox
-    Friend WithEvents Label40 As System.Windows.Forms.Label
-    Friend WithEvents TBvWindAveCALMax As System.Windows.Forms.TextBox
-    Friend WithEvents LvWind1sCALMax As System.Windows.Forms.Label
-    Friend WithEvents LvWindAveCALMax As System.Windows.Forms.Label
-    Friend WithEvents TBBetaAveCALMax As System.Windows.Forms.TextBox
-    Friend WithEvents Label44 As System.Windows.Forms.Label
-    Friend WithEvents Label42 As System.Windows.Forms.Label
-    Friend WithEvents TBvWind1sCALMax As System.Windows.Forms.TextBox
-    Friend WithEvents LBetaAveCALMax As System.Windows.Forms.Label
-    Friend WithEvents GroupBox12 As System.Windows.Forms.GroupBox
-    Friend WithEvents Label62 As System.Windows.Forms.Label
-    Friend WithEvents TBBetaAveHSMax As System.Windows.Forms.TextBox
-    Friend WithEvents LBetaAveHSMax As System.Windows.Forms.Label
-    Friend WithEvents LvWindAveHSMax As System.Windows.Forms.Label
-    Friend WithEvents Label57 As System.Windows.Forms.Label
-    Friend WithEvents TBvWindAveHSMax As System.Windows.Forms.TextBox
-    Friend WithEvents Label58 As System.Windows.Forms.Label
-    Friend WithEvents TBvVehAveHSMin As System.Windows.Forms.TextBox
-    Friend WithEvents TBvWind1sHSMax As System.Windows.Forms.TextBox
-    Friend WithEvents LvWind1sHSMax As System.Windows.Forms.Label
-    Friend WithEvents LvVehAveHSMin As System.Windows.Forms.Label
-    Friend WithEvents Label61 As System.Windows.Forms.Label
-    Friend WithEvents GroupBox11 As System.Windows.Forms.GroupBox
-    Friend WithEvents LvWindAveLSMax As System.Windows.Forms.Label
-    Friend WithEvents Label48 As System.Windows.Forms.Label
-    Friend WithEvents TBvWindAveLSMax As System.Windows.Forms.TextBox
-    Friend WithEvents LvVehAveLSMax As System.Windows.Forms.Label
-    Friend WithEvents Label54 As System.Windows.Forms.Label
-    Friend WithEvents TBvVehAveLSMin As System.Windows.Forms.TextBox
-    Friend WithEvents TBvWind1sLSMax As System.Windows.Forms.TextBox
-    Friend WithEvents Label50 As System.Windows.Forms.Label
-    Friend WithEvents LvWind1sLSMax As System.Windows.Forms.Label
-    Friend WithEvents LvVehAveLSMin As System.Windows.Forms.Label
-    Friend WithEvents Label52 As System.Windows.Forms.Label
-    Friend WithEvents TBvVehAveLSMax As System.Windows.Forms.TextBox
-    Friend WithEvents Label32 As System.Windows.Forms.Label
+    Friend WithEvents TB_t_amb_var As System.Windows.Forms.TextBox
+    Friend WithEvents LB_t_amb_max As System.Windows.Forms.Label
     Friend WithEvents LDsMinHeadMS As System.Windows.Forms.Label
-    Friend WithEvents TBDsMinHeadHS As System.Windows.Forms.TextBox
-    Friend WithEvents Label34 As System.Windows.Forms.Label
+    Friend WithEvents TB_segruns_min_head_MS As System.Windows.Forms.TextBox
     Friend WithEvents LDsMinHS As System.Windows.Forms.Label
-    Friend WithEvents TBDsMinHS As System.Windows.Forms.TextBox
-    Friend WithEvents Label36 As System.Windows.Forms.Label
+    Friend WithEvents TB_segruns_min_HS As System.Windows.Forms.TextBox
     Friend WithEvents LDsMinLS As System.Windows.Forms.Label
-    Friend WithEvents TBDsMinLS As System.Windows.Forms.TextBox
-    Friend WithEvents Label38 As System.Windows.Forms.Label
+    Friend WithEvents TB_segruns_min_LS As System.Windows.Forms.TextBox
     Friend WithEvents LDsMinCAL As System.Windows.Forms.Label
-    Friend WithEvents TBDsMinCAL As System.Windows.Forms.TextBox
+    Friend WithEvents TB_segruns_min_CAL As System.Windows.Forms.TextBox
     Friend WithEvents Label26 As System.Windows.Forms.Label
     Friend WithEvents LContAng As System.Windows.Forms.Label
-    Friend WithEvents TBDeltaHeadMax As System.Windows.Forms.TextBox
+    Friend WithEvents TB_delta_head_max As System.Windows.Forms.TextBox
     Friend WithEvents Label28 As System.Windows.Forms.Label
     Friend WithEvents LDeltaYMax As System.Windows.Forms.Label
-    Friend WithEvents TBDeltaYMax As System.Windows.Forms.TextBox
+    Friend WithEvents TB_trigger_delta_y_max As System.Windows.Forms.TextBox
     Friend WithEvents Label30 As System.Windows.Forms.Label
     Friend WithEvents LDeltaXMax As System.Windows.Forms.Label
-    Friend WithEvents TBDeltaXMax As System.Windows.Forms.TextBox
+    Friend WithEvents TB_trigger_delta_x_max As System.Windows.Forms.TextBox
     Friend WithEvents Label82 As System.Windows.Forms.Label
-    Friend WithEvents LTambTamac As System.Windows.Forms.Label
-    Friend WithEvents TBTambMin As System.Windows.Forms.TextBox
+    Friend WithEvents LB_t_amb_tarmac As System.Windows.Forms.Label
+    Friend WithEvents TB_t_amb_min As System.Windows.Forms.TextBox
     Friend WithEvents Label84 As System.Windows.Forms.Label
-    Friend WithEvents TBTambTamac As System.Windows.Forms.TextBox
-    Friend WithEvents LTambMin As System.Windows.Forms.Label
+    Friend WithEvents TB_t_amb_tarmac As System.Windows.Forms.TextBox
+    Friend WithEvents LB_t_amb_min As System.Windows.Forms.Label
+    Friend WithEvents CreatActivationFileToolStripMenuItem As System.Windows.Forms.ToolStripMenuItem
+    Friend WithEvents PBInfoIconCrt As System.Windows.Forms.PictureBox
+    Friend WithEvents TBInfoCrt As System.Windows.Forms.TextBox
+    Friend WithEvents GroupBox9 As System.Windows.Forms.GroupBox
     Friend WithEvents LDistFloat As System.Windows.Forms.Label
-    Friend WithEvents TBDistFloat As System.Windows.Forms.TextBox
+    Friend WithEvents TB_dist_float As System.Windows.Forms.TextBox
     Friend WithEvents Label81 As System.Windows.Forms.Label
     Friend WithEvents GroupBox15 As System.Windows.Forms.GroupBox
     Friend WithEvents LLengCrit As System.Windows.Forms.Label
-    Friend WithEvents TBLengCrit As System.Windows.Forms.TextBox
+    Friend WithEvents TB_leng_crit As System.Windows.Forms.TextBox
     Friend WithEvents Label79 As System.Windows.Forms.Label
+    Friend WithEvents GroupBox12 As System.Windows.Forms.GroupBox
     Friend WithEvents Label74 As System.Windows.Forms.Label
-    Friend WithEvents TBTq1sD As System.Windows.Forms.TextBox
-    Friend WithEvents LTq1sD As System.Windows.Forms.Label
+    Friend WithEvents TB_tq_sum_1s_delta_HS As System.Windows.Forms.TextBox
+    Friend WithEvents LB_tq_sum_1s_delta_HS As System.Windows.Forms.Label
     Friend WithEvents Label76 As System.Windows.Forms.Label
-    Friend WithEvents TBvVeh1sD As System.Windows.Forms.TextBox
-    Friend WithEvents LvVeh1sD As System.Windows.Forms.Label
+    Friend WithEvents TB_v_veh_1s_delta_HS As System.Windows.Forms.TextBox
+    Friend WithEvents LB_v_veh_1s_delta_HS As System.Windows.Forms.Label
+    Friend WithEvents Label62 As System.Windows.Forms.Label
+    Friend WithEvents TB_beta_avg_max_HS As System.Windows.Forms.TextBox
+    Friend WithEvents LB_beta_avg_max_HS As System.Windows.Forms.Label
+    Friend WithEvents LB_v_wind_avg_max_HS As System.Windows.Forms.Label
+    Friend WithEvents Label57 As System.Windows.Forms.Label
+    Friend WithEvents TB_v_wind_avg_max_HS As System.Windows.Forms.TextBox
+    Friend WithEvents Label58 As System.Windows.Forms.Label
+    Friend WithEvents TB_v_veh_avg_min_HS As System.Windows.Forms.TextBox
+    Friend WithEvents TB_v_wind_1s_max_HS As System.Windows.Forms.TextBox
+    Friend WithEvents LB_v_wind_1s_max_HS As System.Windows.Forms.Label
+    Friend WithEvents LB_v_veh_avg_min_HS As System.Windows.Forms.Label
+    Friend WithEvents Label61 As System.Windows.Forms.Label
+    Friend WithEvents GroupBox11 As System.Windows.Forms.GroupBox
     Friend WithEvents Label72 As System.Windows.Forms.Label
-    Friend WithEvents TBTqSumFloatD As System.Windows.Forms.TextBox
-    Friend WithEvents LTqSumFloatD As System.Windows.Forms.Label
+    Friend WithEvents TB_tq_sum_float_delta_LS As System.Windows.Forms.TextBox
+    Friend WithEvents LB_tq_sum_float_delta_LS As System.Windows.Forms.Label
     Friend WithEvents Label46 As System.Windows.Forms.Label
-    Friend WithEvents TBvVehFloatD As System.Windows.Forms.TextBox
-    Friend WithEvents LvVehFloatD As System.Windows.Forms.Label
-    Friend WithEvents CreatActivationFileToolStripMenuItem As System.Windows.Forms.ToolStripMenuItem
-    Friend WithEvents PBInfoIcon As System.Windows.Forms.PictureBox
-    Friend WithEvents TBInfo As System.Windows.Forms.TextBox
+    Friend WithEvents TB_v_veh_float_delta_LS As System.Windows.Forms.TextBox
+    Friend WithEvents LB_v_veh_float_delta_LS As System.Windows.Forms.Label
+    Friend WithEvents LvWindAveLSMax As System.Windows.Forms.Label
+    Friend WithEvents Label48 As System.Windows.Forms.Label
+    Friend WithEvents TB_v_wind_avg_max_LS As System.Windows.Forms.TextBox
+    Friend WithEvents LB_v_veh_avg_min_LS As System.Windows.Forms.Label
+    Friend WithEvents Label54 As System.Windows.Forms.Label
+    Friend WithEvents TB_v_veh_avg_max_LS As System.Windows.Forms.TextBox
+    Friend WithEvents TB_v_wind_1s_max_LS As System.Windows.Forms.TextBox
+    Friend WithEvents Label50 As System.Windows.Forms.Label
+    Friend WithEvents LvWind1sLSMax As System.Windows.Forms.Label
+    Friend WithEvents LB_v_veh_avg_max_LS As System.Windows.Forms.Label
+    Friend WithEvents Label52 As System.Windows.Forms.Label
+    Friend WithEvents TB_v_veh_avg_min_LS As System.Windows.Forms.TextBox
+    Friend WithEvents GroupBox13 As System.Windows.Forms.GroupBox
+    Friend WithEvents Label40 As System.Windows.Forms.Label
+    Friend WithEvents TB_v_wind_avg_max_CAL As System.Windows.Forms.TextBox
+    Friend WithEvents LvWind1sCALMax As System.Windows.Forms.Label
+    Friend WithEvents LvWindAveCALMax As System.Windows.Forms.Label
+    Friend WithEvents TB_beta_avg_max_CAL As System.Windows.Forms.TextBox
+    Friend WithEvents Label44 As System.Windows.Forms.Label
+    Friend WithEvents Label42 As System.Windows.Forms.Label
+    Friend WithEvents TB_v_wind_1s_max_CAL As System.Windows.Forms.TextBox
+    Friend WithEvents LBetaAveCALMax As System.Windows.Forms.Label
+    Friend WithEvents Label14 As System.Windows.Forms.Label
+    Friend WithEvents Label2 As System.Windows.Forms.Label
+    Friend WithEvents TB_rr_corr_factor As System.Windows.Forms.TextBox
+    Friend WithEvents ButtonDataLS1 As System.Windows.Forms.Button
+    Friend WithEvents TextBoxDataLS2 As System.Windows.Forms.TextBox
+    Friend WithEvents ButtonSelectDataLS1 As System.Windows.Forms.Button
+    Friend WithEvents ButtonDataLS2 As System.Windows.Forms.Button
+    Friend WithEvents TextBoxDataLS1 As System.Windows.Forms.TextBox
+    Friend WithEvents ButtonSelectDataLS2 As System.Windows.Forms.Button
+    Friend WithEvents ButtonSelectDataHS As System.Windows.Forms.Button
+    Friend WithEvents TextBoxDataHS As System.Windows.Forms.TextBox
+    Friend WithEvents ButtonDataHS As System.Windows.Forms.Button
+    Friend WithEvents ButtonCrtImport As System.Windows.Forms.Button
+    Friend WithEvents ButtonCrtExport As System.Windows.Forms.Button
+    Friend WithEvents ButtonCrtReset As System.Windows.Forms.Button
+    Friend WithEvents MenuItemNewJob As System.Windows.Forms.ToolStripMenuItem
+    Friend WithEvents MenuItemLoadJob As System.Windows.Forms.ToolStripMenuItem
+    Friend WithEvents MenuItemReloadJob As System.Windows.Forms.ToolStripMenuItem
+    Friend WithEvents MenuItemSaveJob As System.Windows.Forms.ToolStripMenuItem
+    Friend WithEvents MenuItemSaveAsJob As System.Windows.Forms.ToolStripMenuItem
+    Friend WithEvents MenuItemClearLog As System.Windows.Forms.ToolStripMenuItem
+    Friend WithEvents TBInfoMain As System.Windows.Forms.TextBox
+    Friend WithEvents PbInfoIconMain As System.Windows.Forms.PictureBox
+    Friend WithEvents MenuItemExit As System.Windows.Forms.ToolStripMenuItem
 
 End Class
diff --git a/CSE/GUI/F_Main.vb b/CSE/GUI/F_Main.vb
index 7a11dc96d6fb6d7de44c27e277e2330877d84b7e..2841a6de06e76df9c66a8e60db1ae29d2ce9bd7f 100644
--- a/CSE/GUI/F_Main.vb
+++ b/CSE/GUI/F_Main.vb
@@ -1,23 +1,26 @@
 Imports System.IO
+Imports Newtonsoft.Json.Linq
 
 Public Class F_Main
     ' Declarations
     Private ToolstripSave As Boolean = False
-    Private ToolstripSaveAs As Boolean = False
     Private Formname As String = "Job configurations"
-    Private ErrorExit As Boolean = True
-    Private Cali As Boolean = True
 
     ' Load the GUI
-    Private Sub CSEMain_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Me.Load
+    Private Sub FormLoadHandler(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Me.Load
         ' Declarations
         Dim configL As Boolean = True
         Dim NoLegFile As Boolean = False
 
         ' Initialisation
-        HzOut = 1
-        PBInfoIcon.Visible = False
-        TBInfo.Visible = False
+        Crt.hz_out = 1
+
+        PBInfoIconCrt.Visible = False
+        TBInfoMain.Visible = False
+        TBInfoMain.BackColor = System.Drawing.Color.LightYellow
+        TBInfoCrt.Visible = False
+        TBInfoCrt.BackColor = System.Drawing.Color.LightYellow
+        setupInfoBox()
 
         ' Connect the Backgroundworker with the GUI
         BWorker = Me.BackgroundWorkerVECTO
@@ -27,59 +30,636 @@ Public Class F_Main
 
         ' Write the beginning in the Log
         fWriteLog(1)
+        AppFormStarted = True
 
         ' Load the config file
         '
         Try
-            AppPreferences = New cPreferences(PreferencesPath)
+            Prefs = New cPreferences(PrefsPath)
         Catch ex As Exception
-            fInfWarErr(9, False, format(<str>Failed loading Preferences({0}) due to: {1} 
-\iThis is normal the first time you launch the application.</str>, _
-                                        PreferencesPath, ex.Message), ex)
+            logme(9, False, format( _
+                    "Failed loading Preferences({0}) due to: {1}\n\iThis is normal the first time you launch the application.", _
+                    PrefsPath, ex.Message), ex)
             configL = False
         End Try
 
         ' Load the generic shape curve file
-        If Not fGenShpLoad() Then
+        Dim genShpFile = joinPaths(MyPath, "Declaration", "GenShape.shp")
+        Try
+            fGenShpLoad(genShpFile)
+        Catch ex As Exception
+            logme(9, True, format("Failed loading Declaration ShapeFile({0}) \n  due to: {1}", genShpFile, ex.Message), ex)
             Me.Close()
-        End If
+        End Try
 
-        ' Polling if the working dir exist (If not then generate the folder)
-        '
-        If Not IO.Directory.Exists(AppPreferences.workingDir) Then
-            IO.Directory.CreateDirectory(AppPreferences.workingDir)
+        '' Create working dir if not exists.
+        ''
+        If Not IO.Directory.Exists(Prefs.workingDir) Then
+            IO.Directory.CreateDirectory(Prefs.workingDir)
         End If
 
         'Lizenz checken
         If Not Lic.LICcheck() Then
-            fInfWarErr(9, True, Lic.FailMsg)
+            logme(9, True, Lic.FailMsg)
             CreatActivationFileToolStripMenuItem_Click(sender, e)
             Me.Close()
         End If
 
-        ' Write a defult config file if failed to read one.
+        '' Write a defult config file if failed to read one.
+        ''
         If Not configL Then
             Try
-                AppPreferences.Store(PreferencesPath)
-                fInfWarErr(7, False, format("Stored new Preferences({0}).", PreferencesPath))
+                Prefs.Store(PrefsPath)
+                logme(7, False, format("Stored new Preferences({0}).", PrefsPath))
             Catch ex As Exception
-                fInfWarErr(9, False, format("Failed storing Preferences({0}) due to: {1}", PreferencesPath, ex.Message), ex)
+                logme(9, False, format("Failed storing default Preferences({0}) due to: {1}", PrefsPath, ex.Message), ex)
             End Try
         End If
     End Sub
 
-    ' Main Tab
-#Region "Main"
-    ' Close the GUI
-    Private Sub CSEMain_FormClosed(ByVal sender As Object, ByVal e As System.Windows.Forms.FormClosedEventArgs) Handles Me.FormClosed
+    Private Sub ClickExitHandler(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MenuItemExit.Click
+        Me.Close()
+    End Sub
+
+    Private Sub AppExitedHandler(ByVal sender As Object, ByVal e As System.Windows.Forms.FormClosedEventArgs) Handles Me.FormClosed
         ' Write the end into the Log
         fWriteLog(3)
     End Sub
 
+    Private Sub ClearLogsHandler(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MenuItemClearLog.Click
+        ListBoxMSG.Items.Clear()
+        TabPageMSG.Text = "Messages(0)"
+        ListBoxWar.Items.Clear()
+        TabPageWar.Text = "Warnings(0)"
+        ListBoxErr.Items.Clear()
+        TabPageErr.Text = "Errors(0)"
+    End Sub
+
+
+
+
+#Region "AsynJob"
+
+    Private Enum OpType
+        Calibration
+        Evaluation
+    End Enum
+
+    ''' <summary>The Datum exchanged in the 3 AsyncWorked methods</summary>
+    Private Class cAsyncJob
+
+        Public ReadOnly Operation As OpType
+
+        Sub New(ByVal type As OpType)
+            Me.Operation = type
+        End Sub
+
+        Public ReadOnly Property IsCalibration As Boolean
+            Get
+                Return Me.Operation = OpType.Calibration
+            End Get
+        End Property
+
+    End Class
+
+    '*********Backgroundworker*********
+
+    ' Backgroundworker for the calculation in the background
+    Private Sub BackgroundWorkerVECTO_DoWork(ByVal sender As System.Object, ByVal e As System.ComponentModel.DoWorkEventArgs) _
+        Handles BackgroundWorkerVECTO.DoWork
+
+        Dim asyncJob As cAsyncJob = e.Argument
+        '' Pass the async-job datum down the road.
+        e.Result = asyncJob
+
+        '##### START THE CALCULATION #####
+        '#################################
+        calculation(asyncJob.IsCalibration)
+        '#################################
+
+        ' Cancel if cancel requested...
+        If Me.BackgroundWorkerVECTO.CancellationPending Then e.Cancel = True
+
+    End Sub
+
+    ' Output from messages with the Backgroundworker
+    Private Sub BackgroundWorkerVECTO_ProgressChanged(ByVal sender As Object, ByVal e As System.ComponentModel.ProgressChangedEventArgs) _
+        Handles BackgroundWorkerVECTO.ProgressChanged
+
+        Dim workerMsg As cLogMsg = e.UserState
+        If workerMsg IsNot Nothing Then
+            workerMsg.forwardLog()
+        End If
+    End Sub
+
+    ' Identify the ending from the backgroundworker
+    Private Sub BackgroundWorkerVECTO_RunWorkerCompleted(ByVal sender As Object, ByVal e As System.ComponentModel.RunWorkerCompletedEventArgs) _
+        Handles BackgroundWorkerVECTO.RunWorkerCompleted
+        ' If an Error is detected
+        If e.Error IsNot Nothing Then
+            logme(8, False, format("Backround operation ended with exception: {0}", e.Error.Message), e.Error)
+        ElseIf e.Cancelled Then
+            logme(7, False, "Backround operation  aborted by user.")
+        Else
+            logme(7, False, "Backround operation ended OK.")
+            Dim asyncJob As cAsyncJob = e.Result
+            If asyncJob.IsCalibration Then Me.ButtonEval.Enabled = True
+        End If
+
+        FileBlock = False
+
+        '' Re-enable all "Exec" buttons
+        CalibrationState = False
+        EvaluationState = False
+
+        Me.TextBoxRVeh.Text = Math.Round(fv_veh, 3).ToString
+        Me.TextBoxRAirPos.Text = Math.Round(fv_pe, 3).ToString
+        Me.TextBoxRBetaMis.Text = Math.Round(beta_ame, 2).ToString
+
+
+    End Sub
+
+
+    '####################################################################
+    '#### Only HERE manage "Exec" button's state (Text, Image, etc). ####
+    '####################################################################
+    Private _CalibrationState As Boolean = False
+    Private _CalibrationTxts = {"Calibrate", "Cancel"}
+    Private _CalibrationImgs = {My.Resources.Resources.Play_icon, My.Resources.Resources.Stop_icon}
+    Private Property CalibrationState As Boolean
+        Get
+            Return _CalibrationState
+        End Get
+        Set(ByVal value As Boolean)
+            If _CalibrationState Xor value Then
+                Dim indx = -CInt(value)
+                Me.ButtonCalC.Text = _CalibrationTxts(indx)
+                Me.ButtonCalC.Image = _CalibrationImgs(indx)
+                Me.ButtonCalC.UseWaitCursor = value
+            End If
+            _CalibrationState = value
+        End Set
+    End Property
+
+
+    ' Calculate button calibration test
+    Private Sub CalibrationHandler(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ButtonCalC.Click
+        ' Generate cancel butten if the backgroundworker is busy
+        If BWorker.IsBusy Then
+            BWorker.CancelAsync()
+            logme(8, False, "Cancel requested for background-operation...")
+            Return
+        End If
+
+        ' Read the data from the GUI
+        UI_PopulateToJob(True)
+        UI_PopulateToCriteria()
+
+        Me.TextBoxRVeh.Text = 0
+        Me.TextBoxRAirPos.Text = 0
+        Me.TextBoxRBetaMis.Text = 0
+
+        ' Check if outfolder exist. If not then generate the folder
+        If Not System.IO.Directory.Exists(OutFolder) Then
+            If OutFolder <> Nothing Then
+                ' Generate the folder if it is desired
+                Dim resEx As MsgBoxResult
+                resEx = MsgBox(format("Output-folder({0}) doesn´t exist! \n\nCreate Folder?", OutFolder), MsgBoxStyle.YesNo, "Create folder?")
+                If resEx = MsgBoxResult.Yes Then
+                    IO.Directory.CreateDirectory(OutFolder)
+                Else
+                    Exit Sub
+                End If
+            Else
+                logme(9, False, "No outputfolder is given!")
+                Exit Sub
+            End If
+        End If
+
+        Dim ok = False
+        Try
+            ' Change the button "Exec" --> "Cancel" 
+            Me.CalibrationState = True
+
+            ' Save the Jobfiles
+            doSaveJob(False)
+
+            ' Clear the MSG on the GUI
+            Me.ListBoxMSG.Items.Clear()
+            fClear_VECTO_Form(False, False)
+
+            logme(7, False, format("Starting CALIBRATION: \n\i* Job: {0}\n* Out: {1}", JobFile, OutFolder))
+
+            ' Start the calculation in the backgroundworker
+            Dim jobType = OpType.Calibration
+            Me.BackgroundWorkerVECTO.RunWorkerAsync(New cAsyncJob(jobType))
+
+            ok = True
+        Finally
+            '' Re-enable "Exec" button on failures.
+            If Not ok Then CalibrationState = False
+        End Try
+    End Sub
+
+    '####################################################################
+    '#### Only HERE manage "Exec" button's state (Text, Image, etc). ####
+    '####################################################################
+    Private _EvaluationState As Boolean = False
+    Private _EvaluationTxts = {"Evaluate", "Cancel"}
+    Private _EvaluationImgs = {My.Resources.Resources.Play_icon, My.Resources.Resources.Stop_icon}
+    Private Property EvaluationState As Boolean
+        Get
+            Return _EvaluationState
+        End Get
+        Set(ByVal value As Boolean)
+            If _EvaluationState Xor value Then
+                Dim indx = -CInt(value)
+                Me.ButtonEval.Text = _EvaluationTxts(indx)
+                Me.ButtonEval.Image = _EvaluationImgs(indx)
+                Me.ButtonEval.UseWaitCursor = value
+            End If
+            _EvaluationState = value
+        End Set
+    End Property
+
+
+    ' Evaluate button test run
+    Private Sub EvaluationHandler(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ButtonEval.Click
+        ' Generate cancel butten if the backgroundworker is busy
+        If BWorker.IsBusy Then
+            BWorker.CancelAsync()
+            logme(8, False, "Cancel requested for background-operation...")
+
+            Return
+        End If
+
+        ' Read the data from the GUI
+        UI_PopulateToJob(True)
+        UI_PopulateToCriteria()
+
+        ' Check if outfolder exist. If not then generate the folder
+        If Not System.IO.Directory.Exists(OutFolder) Then
+            If OutFolder <> Nothing Then
+                ' Generate the folder if it is desired
+                Dim resEx As MsgBoxResult
+                resEx = MsgBox(format("Output-folder({0}) doesn´t exist! \n\nCreate Folder?", OutFolder), MsgBoxStyle.YesNo, "Create folder?")
+                If resEx = MsgBoxResult.Yes Then
+                    IO.Directory.CreateDirectory(OutFolder)
+                Else
+                    Exit Sub
+                End If
+            Else
+                logme(9, False, "No outputfolder is given!")
+                Exit Sub
+            End If
+        End If
+
+
+        Dim ok = False
+        Try
+            ' Change the button "Exec" --> "Cancel" 
+            Me.EvaluationState = True
+
+            fWriteLog(2, 4, "----- Speed runs ")
+
+            ' Save the Jobfiles
+            doSaveJob(False)
+
+            ' Clear the MSG on the GUI
+            fClear_VECTO_Form(False, False)
+
+            ' Write the Calculation status in the Messageoutput and in the Log
+            logme(7, False, format("Starting EVALUATION: \n\i* Job: {0}\n* Out: {1}", JobFile, OutFolder))
+
+            ' Start the calculation in the backgroundworker
+            Dim jobType = OpType.Evaluation
+            Me.BackgroundWorkerVECTO.RunWorkerAsync(New cAsyncJob(jobType))
+
+            ok = True
+        Finally
+            '' Re-enable "Exec" button on failures.
+            If Not ok Then EvaluationState = False
+        End Try
+    End Sub
+
+#End Region ' AsynJob
+
+
+#Region "Main tab"
+
+#Region "Job IO"
+    ' Menu New
+    Private Sub NewJobHandler(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MenuItemNewJob.Click
+        fClear_VECTO_Form(True)
+    End Sub
+
+    Private Sub ReloadJobHandler(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MenuItemReloadJob.Click
+        Dim reload = True
+        doLoadJob(reload)
+    End Sub
+    Private Sub LoadJobHandler(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MenuItemLoadJob.Click
+        Dim reload = False
+        doLoadJob(reload)
+    End Sub
+    Private Sub doLoadJob(ByVal isReload As Boolean)
+        Dim jobFileToLoad As String = Nothing
+
+        If isReload Then
+            jobFileToLoad = JobFile
+        Else
+            ' Open the filebrowser with the *.csjob parameter
+            If fbVECTO.OpenDialog(Prefs.workingDir, False) Then
+
+                jobFileToLoad = fbVECTO.Files(0)
+                If (jobFileToLoad <> Nothing) Then
+                    ' Clear the GUI
+                    fClear_VECTO_Form(False)
+                    OutFolder = joinPaths(fPath(jobFileToLoad), "Results\")
+                End If
+            End If
+        End If
+
+        If jobFileToLoad Is Nothing Then Return
+
+        '' Read Jobfile according to its version and 
+        ''  populate GUI.
+        ''
+        Try
+            Dim newJob As cJob
+            If jobFileToLoad.EndsWith(".csjob.json") Then
+                newJob = New cJob(jobFileToLoad)
+            Else
+                newJob = New cJob(True)
+                newJob.fReadOldJobFile(jobFileToLoad)
+            End If
+            newJob.Validate()
+
+            JobFile = jobFileToLoad
+            installJob(newJob)
+            UI_PopulateFromJob()
+            UI_PopulateFromCriteria()
+        Catch ex As Exception
+            logme(9, False, format("Failed reading Job-file({0}) due to: {1}", JobFile, ex.Message), ex)
+        End Try
+    End Sub
+
+    Private Sub SaveJobHandler(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MenuItemSaveJob.Click
+        Dim saveAs = False
+        doSaveJob(saveAs)
+    End Sub
+    Private Sub SaveJobAsHandler(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MenuItemSaveAsJob.Click
+        Dim saveAs = True
+        doSaveJob(saveAs)
+    End Sub
+
+    Private Sub doSaveJob(ByVal isSaveAs As Boolean)
+        ' Identify if the file should save under a new name
+        If JobFile = Nothing Or isSaveAs Then
+            ' Open the filebrowser to select the folder and name of the Jobfile
+            If fbVECTO.SaveDialog(JobFile) Then
+                JobFile = fbVECTO.Files(0)
+                OutFolder = joinPaths(fPath(JobFile), "Results\")
+                Me.Text = Formname & " " & JobFile
+            End If
+            If (JobFile = Nothing) Then
+                Exit Sub
+            End If
+        End If
+
+        ' Get all data from the GUI
+        UI_PopulateToJob()
+        UI_PopulateToCriteria()
+
+        ' Write the file
+        If Not JobFile.EndsWith(".csjob.json", StringComparison.OrdinalIgnoreCase) Then
+            JobFile = joinPaths(fPath(JobFile), fName(JobFile, False) & ".csjob.json")
+        End If
+        Job.Store(JobFile)
+    End Sub
+
+
+#Region "UI populate"
+
+    ' Function to get all parameter from the GUI
+    Function UI_PopulateToJob(Optional ByVal validate As Boolean = False) As Boolean
+        ' Read the data from the textboxes (General)
+        Job.vehicle_fpath = TextBoxVeh1.Text
+        Job.ambient_fpath = TextBoxWeather.Text
+
+        Job.v_air_f = TextBoxAirf.Text
+        Job.v_air_d = TextBoxAird.Text
+        Job.beta_f = TextBoxbetaf.Text
+        Job.beta_d = TextBoxbetad.Text
+
+        ' Appropriate the inputfiles from calibration run
+        Job.calib_run_fpath = TextBoxDataC.Text
+        Job.calib_track_fpath = TextBoxMSCC.Text
+
+        ' Appropriate the inputfiles from test run
+        Job.low1_fpath = TextBoxDataLS1.Text
+        Job.high_fpath = TextBoxDataHS.Text
+        Job.low2_fpath = TextBoxDataLS2.Text
+        Job.coast_track_fpath = TextBoxMSCT.Text
+        Crt.rr_corr_factor = TB_rr_corr_factor.Text
+
+        If validate Then
+            Job.Validate()
+        End If
+
+        Return True
+    End Function
+
+    ' Get the parameters from option tab
+    Sub UI_PopulateToCriteria()
+        ' Evaluation box
+        Crt.accel_correction = CB_accel_correction.Checked
+        Crt.gradient_correction = CB_gradient_correction.Checked
+
+        ' Output box
+        If RB1Hz.Checked Then Crt.hz_out = 1
+        If RB100Hz.Checked Then Crt.hz_out = 100
+
+        'Parameter boxes
+        ' General valid criteria
+        Crt.delta_t_tyre_max = TB_delta_t_tyre_max.Text
+        Crt.delta_rr_corr_max = TB_delta_rr_corr_max.Text
+        Crt.t_amb_var = TB_t_amb_var.Text
+        Crt.t_amb_tarmac = TB_t_amb_tarmac.Text
+        Crt.t_amb_max = TB_t_amb_max.Text
+        Crt.t_amb_min = TB_t_amb_min.Text
+        ' General
+        Crt.delta_Hz_max = TB_delta_Hz_max.Text
+        Crt.roh_air_ref = TB_roh_air_ref.Text
+        Crt.acc_corr_avg = TB_acc_corr_avg.Text
+        Crt.delta_parallel_max = TB_delta_parallel_max.Text
+        ' Identification of measurement section
+        Crt.trigger_delta_x_max = TB_trigger_delta_x_max.Text
+        Crt.trigger_delta_y_max = TB_trigger_delta_y_max.Text
+        Crt.delta_head_max = TB_delta_head_max.Text
+        ' Requirements on number of valid datasets
+        Crt.segruns_min_CAL = TB_segruns_min_CAL.Text
+        Crt.segruns_min_LS = TB_segruns_min_LS.Text
+        Crt.segruns_min_HS = TB_segruns_min_HS.Text
+        Crt.segruns_min_head_MS = TB_segruns_min_head_MS.Text
+        ' DataSet validity criteria
+        Crt.dist_float = TB_dist_float.Text
+        ' Calibration
+        Crt.v_wind_avg_max_CAL = TB_v_wind_avg_max_CAL.Text
+        Crt.v_wind_1s_max_CAL = TB_v_wind_1s_max_CAL.Text
+        Crt.beta_avg_max_CAL = TB_beta_avg_max_CAL.Text
+        ' Low and high speed test
+        Crt.leng_crit = TB_leng_crit.Text
+        ' Low speed test
+        Crt.v_wind_avg_max_LS = TB_v_wind_avg_max_LS.Text
+        Crt.v_wind_1s_max_LS = TB_v_wind_1s_max_LS.Text
+        Crt.v_veh_avg_max_LS = TB_v_veh_avg_max_LS.Text
+        Crt.v_veh_avg_min_LS = TB_v_veh_avg_min_LS.Text
+        Crt.v_veh_float_delta_LS = TB_v_veh_float_delta_LS.Text
+        Crt.tq_sum_float_delta_LS = TB_tq_sum_float_delta_LS.Text
+        ' High speed test
+        Crt.v_wind_avg_max_HS = TB_v_wind_avg_max_HS.Text
+        Crt.v_wind_1s_max_HS = TB_v_wind_1s_max_HS.Text
+        Crt.v_veh_avg_min_HS = TB_v_veh_avg_min_HS.Text
+        Crt.beta_avg_max_HS = TB_beta_avg_max_HS.Text
+        Crt.v_veh_1s_delta_HS = TB_v_veh_1s_delta_HS.Text
+        Crt.tq_sum_1s_delta_HS = TB_tq_sum_1s_delta_HS.Text
+    End Sub
+
+    Sub UI_PopulateFromJob()
+        ' Transfer the data to the GUI
+        ' General
+        TextBoxVeh1.Text = Job.vehicle_fpath
+        TextBoxAirf.Text = Job.v_air_f
+        TextBoxAird.Text = Job.v_air_d
+        TextBoxbetaf.Text = Job.beta_f
+        TextBoxbetad.Text = Job.beta_d
+        TextBoxWeather.Text = Job.ambient_fpath
+        ' Calibration
+        TextBoxMSCC.Text = Job.calib_track_fpath
+        TextBoxDataC.Text = Job.calib_run_fpath
+        ' Test
+        TextBoxMSCT.Text = Job.coast_track_fpath
+        TB_rr_corr_factor.Text = Crt.rr_corr_factor
+        TextBoxDataLS1.Text = Job.low1_fpath
+        TextBoxDataHS.Text = Job.high_fpath
+        TextBoxDataLS2.Text = Job.low2_fpath
+
+    End Sub
+
+    ' Function to set the parameters to standard
+    Sub UI_PopulateFromCriteria()
+        ' Write the Standard values in the textboxes
+        ' General valid criteria
+        TB_delta_t_tyre_max.Text = Crt.delta_t_tyre_max
+        TB_delta_rr_corr_max.Text = Crt.delta_rr_corr_max
+        TB_t_amb_var.Text = Crt.t_amb_var
+        TB_t_amb_tarmac.Text = Crt.t_amb_tarmac
+        TB_t_amb_max.Text = Crt.t_amb_max
+        TB_t_amb_min.Text = Crt.t_amb_min
+        ' General
+        TB_delta_Hz_max.Text = Crt.delta_Hz_max
+        TB_roh_air_ref.Text = Crt.roh_air_ref
+        TB_acc_corr_avg.Text = Crt.acc_corr_avg
+        TB_delta_parallel_max.Text = Crt.delta_parallel_max
+        ' Identification of measurement section
+        TB_trigger_delta_x_max.Text = Crt.trigger_delta_x_max
+        TB_trigger_delta_y_max.Text = Crt.trigger_delta_y_max
+        TB_delta_head_max.Text = Crt.delta_head_max
+        ' Requirements on number of valid datasets
+        TB_segruns_min_CAL.Text = Crt.segruns_min_CAL
+        TB_segruns_min_LS.Text = Crt.segruns_min_LS
+        TB_segruns_min_HS.Text = Crt.segruns_min_HS
+        TB_segruns_min_head_MS.Text = Crt.segruns_min_head_MS
+        ' DataSet validity criteria
+        TB_dist_float.Text = Crt.dist_float
+        ' Calibration
+        TB_v_wind_avg_max_CAL.Text = Crt.v_wind_avg_max_CAL
+        TB_v_wind_1s_max_CAL.Text = Crt.v_wind_1s_max_CAL
+        TB_beta_avg_max_CAL.Text = Crt.beta_avg_max_CAL
+        ' Low and high speed test
+        TB_leng_crit.Text = Crt.leng_crit
+        ' Low speed test
+        TB_v_wind_avg_max_LS.Text = Crt.v_wind_avg_max_LS
+        TB_v_wind_1s_max_LS.Text = Crt.v_wind_1s_max_LS
+        TB_v_veh_avg_min_LS.Text = Crt.v_veh_avg_min_LS
+        TB_v_veh_avg_max_LS.Text = Crt.v_veh_avg_max_LS
+        TB_v_veh_float_delta_LS.Text = Crt.v_veh_float_delta_LS
+        TB_tq_sum_float_delta_LS.Text = Crt.tq_sum_float_delta_LS
+        ' High speed test
+        TB_v_wind_avg_max_HS.Text = Crt.v_wind_avg_max_HS
+        TB_v_wind_1s_max_HS.Text = Crt.v_wind_1s_max_HS
+        TB_v_veh_avg_min_HS.Text = Crt.v_veh_avg_min_HS
+        TB_beta_avg_max_HS.Text = Crt.beta_avg_max_HS
+        TB_v_veh_1s_delta_HS.Text = Crt.v_veh_1s_delta_HS
+        TB_tq_sum_1s_delta_HS.Text = Crt.tq_sum_1s_delta_HS
+        ' Evaluation box
+        CB_accel_correction.Checked = Crt.accel_correction
+        CB_gradient_correction.Checked = Crt.gradient_correction
+
+        ' Output
+        If Crt.hz_out = 1 Then
+            RB1Hz.Checked = True
+        ElseIf Crt.hz_out = 100 Then
+            RB100Hz.Checked = True
+        End If
+    End Sub
+
+
+    ' Clear the GUI
+    Public Function fClear_VECTO_Form(ByVal Komplet As Boolean, Optional ByVal Fields As Boolean = True) As Boolean
+        If Komplet Then
+            ' Clear the Jobfile and the output folder
+            JobFile = Nothing
+            OutFolder = Nothing
+        End If
+
+        If Fields Then
+            ' Clear the Textboxes or set them to default
+            TextBoxVeh1.Clear()
+            TextBoxWeather.Clear()
+            TextBoxAirf.Text = 1
+            TextBoxAird.Text = 0
+            TextBoxbetaf.Text = 1
+            TextBoxbetad.Text = 0
+            CB_accel_correction.Checked = True
+            CB_gradient_correction.Checked = False
+
+            ' Calibration fields
+            TextBoxDataC.Clear()
+            TextBoxMSCC.Clear()
+            TB_rr_corr_factor.Text = 1.0
+
+            ' Test run fields
+            TextBoxMSCT.Clear()
+            TextBoxDataLS1.Clear()
+            TextBoxDataHS.Clear()
+            TextBoxDataLS2.Clear()
+
+            ButtonEval.Enabled = False
+            EvaluationState = False
+
+
+            ' Option parameters to standard
+            installJob(New cJob)
+            UI_PopulateFromJob()
+            UI_PopulateFromCriteria()
+        End If
+
+        Return True
+    End Function
+
+
+#End Region ' UI populate
+
+#End Region ' Job IO
+
+
+#Region "Vehicle"
+
     ' Open the filebrowser for the selection of the vehiclefile
     Private Sub ButtonSelectVeh_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ButtonSelectVeh.Click
         ' Open the filebrowser with the *.csveh parameter
-        If fbVEH.OpenDialog(AppPreferences.workingDir, False) Then
+        If fbVEH.OpenDialog(Prefs.workingDir, False) Then
             If (fbVEH.Files(0) <> Nothing) Then
                 Me.TextBoxVeh1.Text = fbVEH.Files(0)
             End If
@@ -89,16 +669,16 @@ Public Class F_Main
     ' Open the vehiclefile in the Notepad
     Private Sub ButtonVeh_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ButtonVeh.Click
         If IO.File.Exists(Me.TextBoxVeh1.Text) Then
-            System.Diagnostics.Process.Start(AppPreferences.editor, Me.TextBoxVeh1.Text)
+            System.Diagnostics.Process.Start(Prefs.editor, Me.TextBoxVeh1.Text)
         Else
-            fInfWarErr(9, True, "No such Inputfile: " & Me.TextBoxVeh1.Text)
+            logme(9, True, "No such Inputfile: " & Me.TextBoxVeh1.Text)
         End If
     End Sub
 
     ' Open the filebrowser for the selection of the weatherfile
     Private Sub ButtonSelectWeather_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ButtonSelectWeather.Click
         ' Open the filebrowser with the *.cswea parameter
-        If fbAMB.OpenDialog(AppPreferences.workingDir, False) Then
+        If fbAMB.OpenDialog(Prefs.workingDir, False) Then
             If (fbAMB.Files(0) <> Nothing) Then
                 Me.TextBoxWeather.Text = fbAMB.Files(0)
             End If
@@ -108,29 +688,21 @@ Public Class F_Main
     ' Open the weatherfile in the Notepad
     Private Sub ButtonWeather_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ButtonWeather.Click
         If IO.File.Exists(Me.TextBoxWeather.Text) Then
-            System.Diagnostics.Process.Start(AppPreferences.editor, Me.TextBoxWeather.Text)
+            System.Diagnostics.Process.Start(Prefs.editor, Me.TextBoxWeather.Text)
         Else
-            fInfWarErr(9, True, "No such Inputfile: " & Me.TextBoxWeather.Text)
+            logme(9, True, "No such Inputfile: " & Me.TextBoxWeather.Text)
         End If
     End Sub
 
-    ' Exit button
-    Private Sub ButtonExit_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ButtonExit.Click
-        ' Close the GUI
-        Me.Close()
-    End Sub
+#End Region ' Vehicle
 
-    ' Save button
-    Private Sub ButtonSave_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ButtonSave.Click
-        ToolStripMenuItemSave_Click(sender, e)
-    End Sub
 
-    ' Calibration elements
 #Region "Calibration"
+
     ' Open the filebrowser for the selection of the datafile from the calibration run
     Private Sub ButtonSelectDataC_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ButtonSelectDataC.Click
         ' Open the filebrowser with the *.csdat parameter
-        If fbVEL.OpenDialog(AppPreferences.workingDir, False) Then
+        If fbVEL.OpenDialog(Prefs.workingDir, False) Then
             If (fbVEL.Files(0) <> Nothing) Then
                 Me.TextBoxDataC.Text = fbVEL.Files(0)
             End If
@@ -154,7 +726,7 @@ Public Class F_Main
     ' Open the filebrowser for the selection of the measure section config file (MSC)
     Private Sub ButtonSelectMSCC_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ButtonSelectMSCC.Click
         ' Open the filebrowser with the *.csmsc parameter
-        If fbMSC.OpenDialog(AppPreferences.workingDir, False) Then
+        If fbMSC.OpenDialog(Prefs.workingDir, False) Then
             If (fbMSC.Files(0) <> Nothing) Then
                 Me.TextBoxMSCC.Text = fbMSC.Files(0)
             End If
@@ -175,67 +747,15 @@ Public Class F_Main
         Process.Start(PSI)
     End Sub
 
-    ' Calculate button calibration test
-    Private Sub ButtonCalc_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ButtonCalC.Click
-        ' Generate cancel butten if the backgroundworker is busy
-        If BWorker.IsBusy Then
-            BWorker.CancelAsync()
-            ErrorExit = False
-            Exit Sub
-        End If
-
-        ' Change the Calculate button in a cancel button
-        Me.ButtonCalC.Text = "Cancel"
-        Me.TextBoxRVeh.Text = 0
-        Me.TextBoxRAirPos.Text = 0
-        Me.TextBoxRBetaMis.Text = 0
-        Cali = True
-
-        ' Read the data from the GUI
-        If Not fGetOpt(True, Cali) Then
-            Me.ButtonCalC.Text = "Calibrate"
-            Exit Sub
-        End If
-
-        ' Save the Jobfiles
-        ToolStripMenuItemSave_Click(sender, e)
-
-        ' Check if outfolder exist. If not then generate the folder
-        If Not System.IO.Directory.Exists(OutFolder) Then
-            If OutFolder <> Nothing Then
-                ' Generate the folder if it is desired
-                Dim resEx As MsgBoxResult
-                resEx = MsgBox(format("Output-folder({0}) doesn´t exist! \n\nCreate Folder?", OutFolder), MsgBoxStyle.YesNo, "Create folder?")
-                If resEx = MsgBoxResult.Yes Then
-                    MkDir(OutFolder)
-                Else
-                    Me.ButtonCalC.Text = "Calibrate"
-                    Exit Sub
-                End If
-            Else
-                fInfWarErr(9, False, "No outputfolder is given!")
-                Me.ButtonCalC.Text = "Calibrate"
-                Exit Sub
-            End If
-        End If
-
-        ' Clear the MSG on the GUI
-        Me.ListBoxMSG.Items.Clear()
-        fClear_VECTO_Form(False, False)
+#End Region ' Calibration
 
-        fInfWarErr(7, False, format("Starting CALIBRATION: \n\i* Job: {0}\n* Out: {1}", JobFile, OutFolder))
 
-        ' Start the calculation in the backgroundworker
-        Me.BackgroundWorkerVECTO.RunWorkerAsync()
-    End Sub
-#End Region
+#Region "Evaluation"
 
-    ' Test elements
-#Region "Test"
     ' Open the filebrowser for the selection of the measure section file from the test run
     Private Sub ButtonSelectMSCT_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ButtonSelectMSCT.Click
         ' Open the filebrowser with the *.csmsc parameter
-        If fbMSC.OpenDialog(AppPreferences.workingDir, False) Then
+        If fbMSC.OpenDialog(Prefs.workingDir, False) Then
             If (fbMSC.Files(0) <> Nothing) Then
                 Me.TextBoxMSCT.Text = fbMSC.Files(0)
             End If
@@ -259,7 +779,7 @@ Public Class F_Main
     ' Open the filebrowser for the selection of the first low speed data file from the test run
     Private Sub ButtonSelectDataLS1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ButtonSelectDataLS1.Click
         ' Open the filebrowser with the *.csdat parameter
-        If fbVEL.OpenDialog(AppPreferences.workingDir, False) Then
+        If fbVEL.OpenDialog(Prefs.workingDir, False) Then
             If (fbVEL.Files(0) <> Nothing) Then
                 Me.TextBoxDataLS1.Text = fbVEL.Files(0)
             End If
@@ -283,7 +803,7 @@ Public Class F_Main
     ' Open the filebrowser for the selection of the high speed data file from the test run
     Private Sub ButtonSelectDataHS_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ButtonSelectDataHS.Click
         ' Open the filebrowser with the *.csdat parameter
-        If fbVEL.OpenDialog(AppPreferences.workingDir, False) Then
+        If fbVEL.OpenDialog(Prefs.workingDir, False) Then
             If (fbVEL.Files(0) <> Nothing) Then
                 Me.TextBoxDataHS.Text = fbVEL.Files(0)
             End If
@@ -307,7 +827,7 @@ Public Class F_Main
     ' Open the filebrowser for the selection of the second low speed data file from the test run
     Private Sub ButtonSelectDataLS2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ButtonSelectDataLS2.Click
         ' Open the filebrowser with the *.csdat parameter
-        If fbVEL.OpenDialog(AppPreferences.workingDir, False) Then
+        If fbVEL.OpenDialog(Prefs.workingDir, False) Then
             If (fbVEL.Files(0) <> Nothing) Then
                 Me.TextBoxDataLS2.Text = fbVEL.Files(0)
             End If
@@ -328,134 +848,13 @@ Public Class F_Main
         Process.Start(PSI)
     End Sub
 
-    ' Evaluate button test run
-    Private Sub ButtonEvaluate_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ButtonEval.Click
-        ' Generate cancel butten if the backgroundworker is busy
-        If BWorker.IsBusy Then
-            BWorker.CancelAsync()
-            ErrorExit = False
-            Exit Sub
-        End If
-
-        ' Change the Calculate button in a cancel button
-        Me.ButtonEval.Text = "Cancel"
-        Cali = False
-
-        fWriteLog(2, 4, "----- Speed runs ")
-
-        ' Read the data from the GUI
-        If Not fGetOpt(True, Cali) Then
-            Me.ButtonCalC.Text = "Evaluate"
-            Exit Sub
-        End If
-
-        ' Save the Jobfiles
-        ToolStripMenuItemSave_Click(sender, e)
-
-        ' Check if outfolder exist. If not then generate the folder
-        If Not System.IO.Directory.Exists(OutFolder) Then
-            If OutFolder <> Nothing Then
-                ' Generate the folder if it is desired
-                Dim resEx As MsgBoxResult
-                resEx = MsgBox(format("Output-folder({0}) doesn´t exist! \n\nCreate Folder?", OutFolder), MsgBoxStyle.YesNo, "Create folder?")
-                If resEx = MsgBoxResult.Yes Then
-                    MkDir(OutFolder)
-                Else
-                    Me.ButtonEval.Text = "Evaluate"
-                    Exit Sub
-                End If
-            Else
-                fInfWarErr(9, False, "No outputfolder is given!")
-                Me.ButtonEval.Text = "Evaluate"
-                Exit Sub
-            End If
-        End If
-
-        ' Clear the MSG on the GUI
-        fClear_VECTO_Form(False, False)
-
-        ' Write the Calculation status in the Messageoutput and in the Log
-        fInfWarErr(7, False, format("Starting EVALUATION: \n\i* Job: {0}\n* Out: {1}", JobFile, OutFolder))
-
-        ' Start the calculation in the backgroundworker
-        Me.BackgroundWorkerVECTO.RunWorkerAsync()
-    End Sub
-#End Region
-
-    ' Programmcode Menustrip
-#Region "Menustrip"
-#Region "Datei"
-    ' Menu New
-    Private Sub ToolStripMenuItemNew_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ToolStripMenuItemNew.Click
-        fClear_VECTO_Form(True)
-    End Sub
-
-    ' Menu open
-    Private Sub ToolStripMenuItemOpen_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ToolStripMenuItemOpen.Click
-        ' Open the filebrowser with the *.csjob parameter
-        If fbVECTO.OpenDialog(AppPreferences.workingDir, False) Then
-            JobFile = fbVECTO.Files(0)
-            If (JobFile <> Nothing) Then
-                ' Clear the GUI
-                fClear_VECTO_Form(False)
-                OutFolder = joinPaths(fPath(JobFile), "Results\")
-
-                ' Identify the given Jobfile
-                If fEXT(JobFile) <> ".txt" And fEXT(JobFile) <> ".csjob" Then
-                    fInfWarErr(8, False, "The Inputfile is not a regular VECTO-File: " & JobFile)
-                Else
-                    ' Read the Jobfile and insert the data in the GUI
-                    fReadJobFile()
-                End If
-            End If
-        End If
-    End Sub
-
-    ' Menu Save
-    Private Sub ToolStripMenuItemSave_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ToolStripMenuItemSave.Click
-        ' Identify if the file should save under a new name
-        If JobFile = Nothing Or ToolstripSaveAs Then
-            ' Open the filebrowser to select the folder and name of the Jobfile
-            If fbVECTO.SaveDialog(JobFile) Then
-                JobFile = fbVECTO.Files(0)
-                OutFolder = joinPaths(fPath(JobFile), "Results\")
-                Me.Text = Formname & " " & JobFile
-            End If
-            If (JobFile = Nothing) Then
-                Exit Sub
-            End If
-        End If
-
-        ' Get all data from the GUI
-        fGetOpt()
-
-        ' Write the file
-        fAusgVECTO()
-    End Sub
-
-    ' Menu Save as
-    Private Sub ToolStripMenuItemSaveAs_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ToolStripMenuItemSaveAs.Click
-        ' Define that the file should save under an other name
-        ToolstripSaveAs = True
+#End Region ' Evaluation
 
-        ' Save the File
-        ToolStripMenuItemSave_Click(sender, e)
 
-        ' Reset the value
-        ToolstripSaveAs = False
-    End Sub
-
-    ' Menu Exit
-    Private Sub ToolStripMenuItemExit_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ToolStripMenuItemExit.Click
-        ' Close the GUI
-        Me.Close()
-    End Sub
-#End Region
-
-#Region "Tools"
+#Region "Tools menu"
     ' Menu open the Log
     Private Sub ToolStripMenuItemLog_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ToolStripMenuItemLog.Click
-        System.Diagnostics.Process.Start(AppPreferences.editor, joinPaths(MyPath, "log.txt"))
+        System.Diagnostics.Process.Start(Prefs.editor, joinPaths(MyPath, "log.txt"))
     End Sub
 
     ' Menu open the config file
@@ -463,13 +862,14 @@ Public Class F_Main
         ' Show the confic GUI
         F_Preferences.Show()
     End Sub
-#End Region
+#End Region ' Tools menu
+
 
-#Region "Info"
+#Region "Infos menu"
     ' Create activation file
     Private Sub CreatActivationFileToolStripMenuItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles CreatActivationFileToolStripMenuItem.Click
         Lic.CreateActFile(MyPath & "ActivationCode.dat")
-        fInfWarErr(7, True, "Activation code created under: " & MyPath & "ActivationCode.dat")
+        logme(7, True, "Activation code created under: " & MyPath & "ActivationCode.dat")
     End Sub
 
     ' Menu open the Infobox
@@ -484,22 +884,22 @@ Public Class F_Main
         Try
             System.Diagnostics.Process.Start(manual_fname)
         Catch ex As Exception
-            fInfWarErr(9, False, format("Failed opening User Manual({0}) due to: {1}", manual_fname, ex.Message), ex)
+            logme(8, False, format("Failed opening User Manual({0}) due to: {1}", manual_fname, ex.Message), ex)
         End Try
     End Sub
-#End Region
-#End Region
-#End Region
+#End Region  ' Infos menu
+
+#End Region ' Main tab
 
-    ' Option Tab
-#Region "Options"
+
+#Region "Options tab"
 
     ' Check if the input is a number
-    Private Sub TextBox_TextChanged(ByVal sender As Object, ByVal e As System.Windows.Forms.KeyPressEventArgs) Handles TBDeltaTTireMax.KeyPress, TBDeltaRRCMax.KeyPress, TBTambVar.KeyPress, _
-        TBTambTamac.KeyPress, TBTambMax.KeyPress, TBTambMin.KeyPress, TBDeltaHzMax.KeyPress, TBRhoAirRef.KeyPress, TBAccCorrAve.KeyPress, TBDeltaParaMax.KeyPress, TBDeltaXMax.KeyPress, TBDeltaYMax.KeyPress, _
-        TBDeltaHeadMax.KeyPress, TBDsMinCAL.KeyPress, TBDsMinLS.KeyPress, TBDsMinHS.KeyPress, TBDsMinHeadHS.KeyPress, TBTq1sD.KeyPress, TBvVeh1sD.KeyPress, TBBetaAveHSMax.KeyPress, TBvVehAveHSMin.KeyPress, _
-        TBvWind1sHSMax.KeyPress, TBvWindAveHSMax.KeyPress, TBTqSumFloatD.KeyPress, TBvVehFloatD.KeyPress, TBvVehAveLSMin.KeyPress, TBvVehAveLSMax.KeyPress, TBvWind1sLSMax.KeyPress, TBvWindAveLSMax.KeyPress, _
-        TBLengCrit.KeyPress, TBBetaAveCALMax.KeyPress, TBvWind1sCALMax.KeyPress, TBvWindAveCALMax.KeyPress, TBDistFloat.KeyPress
+    Private Sub TextBox_TextChanged(ByVal sender As Object, ByVal e As System.Windows.Forms.KeyPressEventArgs) Handles TB_delta_t_tyre_max.KeyPress, TB_delta_rr_corr_max.KeyPress, TB_t_amb_var.KeyPress, _
+        TB_t_amb_tarmac.KeyPress, TB_t_amb_max.KeyPress, TB_t_amb_min.KeyPress, TB_delta_Hz_max.KeyPress, TB_roh_air_ref.KeyPress, TB_acc_corr_avg.KeyPress, TB_delta_parallel_max.KeyPress, TB_trigger_delta_x_max.KeyPress, TB_trigger_delta_y_max.KeyPress, _
+        TB_delta_head_max.KeyPress, TB_segruns_min_CAL.KeyPress, TB_segruns_min_LS.KeyPress, TB_segruns_min_HS.KeyPress, TB_segruns_min_head_MS.KeyPress, TB_tq_sum_1s_delta_HS.KeyPress, TB_v_veh_1s_delta_HS.KeyPress, TB_beta_avg_max_HS.KeyPress, TB_v_veh_avg_min_HS.KeyPress, _
+        TB_v_wind_1s_max_HS.KeyPress, TB_v_wind_avg_max_HS.KeyPress, TB_tq_sum_float_delta_LS.KeyPress, TB_v_veh_float_delta_LS.KeyPress, TB_v_veh_avg_max_LS.KeyPress, TB_v_veh_avg_min_LS.KeyPress, TB_v_wind_1s_max_LS.KeyPress, TB_v_wind_avg_max_LS.KeyPress, _
+        TB_leng_crit.KeyPress, TB_beta_avg_max_CAL.KeyPress, TB_v_wind_1s_max_CAL.KeyPress, TB_v_wind_avg_max_CAL.KeyPress, TB_dist_float.KeyPress
         Select Case Asc(e.KeyChar)
             Case 48 To 57, 46 ' Zahlen zulassen (ASCII)
             Case Else ' Alles andere Unterdrücken
@@ -508,383 +908,162 @@ Public Class F_Main
     End Sub
 
     ' Set all textboxes to standard
-    Private Sub ButtonToStd_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ButtonToStd.Click
+    Private Sub doResetCriteria(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ButtonCrtReset.Click
         ' Set the parameter to standard
-        StdParameter()
-        ' Write parameter on GUI
-        WriteParToTB()
+
+        installJob(New cJob())
+        UI_PopulateFromJob()
+        UI_PopulateFromCriteria()
     End Sub
 
-    ' CheckBox for the acceleration calibration
-    Private Sub CheckBoxAcc_CheckedChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles CheckBoxAcc.CheckedChanged
-        ' Inquiry if the checkbox is checked or unchecked
-        If CheckBoxAcc.Checked Then
-            ' Set the check states
-            AccC = True
-        Else
-            AccC = False
+    ' Set all textboxes to standard
+    Private Sub doExportCriteria(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ButtonCrtExport.Click
+        UI_PopulateToJob(False)
+        UI_PopulateToCriteria()
+        If fbCRT.SaveDialog(Prefs.workingDir) Then
+            Dim fname = fbCRT.Files(0)
+            If fname Is Nothing Then Return
+            Crt.Store(fname)
         End If
     End Sub
 
-    ' Checkbox for the gradient correction
-    Private Sub CheckBoxGrd_CheckedChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles CheckBoxGrd.CheckedChanged
-        ' Inquiry if the checkbox is checked or unchecked
-        If CheckBoxGrd.Checked Then
-            ' Set the check states
-            GradC = True
-        Else
-            GradC = False
+    ' Set all textboxes to standard
+    Private Sub doImportCriteria(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ButtonCrtImport.Click
+        If fbCRT.OpenDialog(Prefs.workingDir) Then
+            Dim fname = fbCRT.Files(0)
+            If fname Is Nothing Then
+                Return
+            End If
+            Dim newCrt = New cCriteria(fname)
+            Job.Criteria = newCrt
+            Crt = newCrt
         End If
+        UI_PopulateFromJob()
+        UI_PopulateFromCriteria()
+    End Sub
+
+    ' CheckBox for the acceleration calibration
+    Private Sub CheckBoxAcc_CheckedChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles CB_accel_correction.CheckedChanged
+        Crt.accel_correction = CB_accel_correction.Checked
+    End Sub
+
+    ' Checkbox for the gradient correction
+    Private Sub CheckBoxGrd_CheckedChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles CB_gradient_correction.CheckedChanged
+        Crt.gradient_correction = CB_gradient_correction.Checked
     End Sub
 
     ' Change in the 1Hz radio button
     Private Sub RB1Hz_CheckedChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles RB1Hz.CheckedChanged
         If RB1Hz.Checked Then
-            HzOut = 1
+            Crt.hz_out = 1
         Else
-            HzOut = 100
+            Crt.hz_out = 100
         End If
     End Sub
 
     ' Change in the 100Hz radio button
     Private Sub RB100Hz_CheckedChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles RB100Hz.CheckedChanged
         If RB100Hz.Checked Then
-            HzOut = 100
+            Crt.hz_out = 100
         Else
-            HzOut = 1
-        End If
-    End Sub
-#End Region
-
-
-    '*********Backgroundworker*********
-
-    ' Backgroundworker for the calculation in the background
-    Private Sub BackgroundWorkerVECTO_DoWork(ByVal sender As System.Object, ByVal e As System.ComponentModel.DoWorkEventArgs) _
-        Handles BackgroundWorkerVECTO.DoWork
-
-        '##### START THE CALCULATION #####
-        '#################################
-        Try
-            calculation(Cali)
-        Catch ex As Exception
-            fInfWarErr(9, False, format("Calculation Failed due to: {0}", ex.Message), ex)
-        End Try
-
-        '#################################
-
-        ' Polling if the backgroundworker was canceled
-
-        If Me.BackgroundWorkerVECTO.CancellationPending Then e.Cancel = True
-
-    End Sub
-
-    ' Output from messages with the Backgroundworker
-    Private Sub BackgroundWorkerVECTO_ProgressChanged(ByVal sender As Object, ByVal e As System.ComponentModel.ProgressChangedEventArgs) _
-        Handles BackgroundWorkerVECTO.ProgressChanged
-
-        Dim workerMsg As cLogMsg = e.UserState
-        If workerMsg IsNot Nothing Then
-            workerMsg.forwardLog()
+            Crt.hz_out = 1
         End If
     End Sub
+#End Region 'Options tab
 
-    ' Identify the ending from the backgroundworker
-    Private Sub BackgroundWorkerVECTO_RunWorkerCompleted(ByVal sender As Object, ByVal e As System.ComponentModel.RunWorkerCompletedEventArgs) _
-        Handles BackgroundWorkerVECTO.RunWorkerCompleted
-
-        Dim op = IIf(Cali, "Calibration", "Evaluation")
-
-        ' If an Error is detected
-        If e.Error IsNot Nothing Then
-            fInfWarErr(8, True, format("{0} ended with exception: {1}", op, e.Error), e.Error)
-        Else
-            If e.Cancelled Then
-                If ErrorExit Then
-                    fInfWarErr(8, False, format("{0} ended with exception: {1}", op, e.Error), e.Error)
-                Else
-                    fInfWarErr(7, False, format("{0} aborted by user.", op))
-                End If
-            Else
-                fInfWarErr(7, False, format("{0} ended OK.", op))
-                If Cali Then Me.ButtonEval.Enabled = True
-            End If
-        End If
-
-        ' Reset the calculate button to calculate
-        If Cali Then
-            Me.ButtonCalC.Text = "Calibrate"
-            Me.TextBoxRVeh.Text = Math.Round(fv_veh, 3).ToString
-            Me.TextBoxRAirPos.Text = Math.Round(fv_pe, 3).ToString
-            Me.TextBoxRBetaMis.Text = Math.Round(beta_ame, 2).ToString
-        Else
-            Me.ButtonEval.Text = "Evaluate"
-        End If
-        ErrorExit = True
-        FileBlock = False
-    End Sub
 
 #Region "Infobox"
-    ' Deactivate the message
-    Private Sub DeacMsg(ByVal sender As Object, ByVal e As System.EventArgs) Handles LDistFloat.MouseLeave, TBDistFloat.MouseLeave, LvWindAveCALMax.MouseLeave, TBvWindAveCALMax.MouseLeave, _
-        LvWind1sCALMax.MouseLeave, TBvWind1sCALMax.MouseLeave, LBetaAveCALMax.MouseLeave, TBBetaAveCALMax.MouseLeave, LLengCrit.MouseLeave, TBLengCrit.MouseLeave, LvWindAveLSMax.MouseLeave, _
-        TBvWindAveLSMax.MouseLeave, LvWind1sLSMax.MouseLeave, TBvWind1sLSMax.MouseLeave, LvVehAveLSMax.MouseLeave, TBvVehAveLSMax.MouseLeave, LvVehAveLSMin.MouseLeave, TBvVehAveLSMin.MouseLeave, _
-        LvVehFloatD.MouseLeave, TBvVehFloatD.MouseLeave, LTqSumFloatD.MouseLeave, TBTqSumFloatD.MouseLeave, LvWindAveHSMax.MouseLeave, TBvWindAveHSMax.MouseLeave, LvWind1sHSMax.MouseLeave, _
-        TBvWind1sHSMax.MouseLeave, LvVehAveHSMin.MouseLeave, TBvVehAveHSMin.MouseLeave, LBetaAveHSMax.MouseLeave, TBBetaAveHSMax.MouseLeave, LvVeh1sD.MouseLeave, TBvVeh1sD.MouseLeave, _
-        LTq1sD.MouseLeave, TBTq1sD.MouseLeave, LDeltaTTireMax.MouseLeave, TBDeltaTTireMax.MouseLeave, LDeltaRRCMax.MouseLeave, TBDeltaRRCMax.MouseLeave, LTambVar.MouseLeave, TBTambVar.MouseLeave, _
-        LTambTamac.MouseLeave, TBTambTamac.MouseLeave, LTambMax.MouseLeave, TBTambMax.MouseLeave, LTambMin.MouseLeave, TBTambMin.MouseLeave, LDeltaHzMax.MouseLeave, TBDeltaHzMax.MouseLeave, _
-        LRhoAirRef.MouseLeave, TBRhoAirRef.MouseLeave, LAccCorrAve.MouseLeave, TBAccCorrAve.MouseLeave, LDeltaParaMax.MouseLeave, TBDeltaParaMax.MouseLeave, LDeltaXMax.MouseLeave, TBDeltaXMax.MouseLeave, _
-        LDeltaYMax.MouseLeave, TBDeltaYMax.MouseLeave, LContAng.MouseLeave, TBDeltaHeadMax.MouseLeave, LDsMinCAL.MouseLeave, TBDsMinCAL.MouseLeave, LDsMinLS.MouseLeave, TBDsMinLS.MouseLeave, LDsMinHS.MouseLeave, _
-        TBDsMinHS.MouseLeave, LDsMinHeadMS.MouseLeave, TBDsMinHeadHS.MouseLeave
-        TBInfo.Visible = False
-        PBInfoIcon.Visible = False
-    End Sub
-
-    ' Show the message in the infobox
-    Private Function InfActivat(ByVal Text As String) As Boolean
-        TBInfo.Visible = True
-        PBInfoIcon.Visible = True
-        TBInfo.BackColor = System.Drawing.Color.LightYellow
-        TBInfo.Text = Text
-        Return True
-    End Function
-
-#Region "FloatDist"
-    ' Show the message
-    Private Sub ShowMsgFloatDist(ByVal sender As Object, ByVal e As System.Windows.Forms.MouseEventArgs) Handles LDistFloat.MouseMove, TBDistFloat.MouseMove
-        InfActivat("Distance used for calculation of floatinig average signal used for stabilitay criteria in low speed tests")
-    End Sub
-#End Region
-
-#Region "vWindAveCALMax"
-    ' Show the message
-    Private Sub ShowMsgvWindAveCALMax(ByVal sender As Object, ByVal e As System.Windows.Forms.MouseEventArgs) Handles LvWindAveCALMax.MouseMove, TBvWindAveCALMax.MouseMove
-        InfActivat("Maximum average wind speed during calibration test")
-    End Sub
-#End Region
-
-#Region "vWind1sCALMax"
-    ' Show the message
-    Private Sub ShowMsgvWind1sCALMax(ByVal sender As Object, ByVal e As System.Windows.Forms.MouseEventArgs) Handles LvWind1sCALMax.MouseMove, TBvWind1sCALMax.MouseMove
-        InfActivat("Maximum gust wind speed during calibration test")
-    End Sub
-#End Region
-
-#Region "BetaAveCALMax"
-    ' Show the message
-    Private Sub ShowMsgBetaAveCALMax(ByVal sender As Object, ByVal e As System.Windows.Forms.MouseEventArgs) Handles LBetaAveCALMax.MouseMove, TBBetaAveCALMax.MouseMove
-        InfActivat("Maximum average beta during calibration test")
-    End Sub
-#End Region
-
-#Region "LengCrit"
-    ' Show the message
-    Private Sub ShowMsgLengCrit(ByVal sender As Object, ByVal e As System.Windows.Forms.MouseEventArgs) Handles LLengCrit.MouseMove, TBLengCrit.MouseMove
-        InfActivat("Maximum absolute difference of distance driven with lenght of section as specified in configuration")
-    End Sub
-#End Region
-
-#Region "vWindAveLSMax"
-    ' Show the message
-    Private Sub ShowMsgvWindAveLSMax(ByVal sender As Object, ByVal e As System.Windows.Forms.MouseEventArgs) Handles LvWindAveLSMax.MouseMove, TBvWindAveLSMax.MouseMove
-        InfActivat("Maximum average wind speed during low speed test")
-    End Sub
-#End Region
-
-#Region "vWind1sLSMax"
-    ' Show the message
-    Private Sub ShowMsgvWind1sLSMax(ByVal sender As Object, ByVal e As System.Windows.Forms.MouseEventArgs) Handles LvWind1sLSMax.MouseMove, TBvWind1sLSMax.MouseMove
-        InfActivat("Maximum gust wind speed during low speed test")
-    End Sub
-#End Region
-
-#Region "vVehAveLSMax"
-    ' Show the message
-    Private Sub ShowMsgvVehAveLSMax(ByVal sender As Object, ByVal e As System.Windows.Forms.MouseEventArgs) Handles LvVehAveLSMax.MouseMove, TBvVehAveLSMax.MouseMove
-        InfActivat("Maximum average vehicle speed for low speed test")
-    End Sub
-#End Region
-
-#Region "vVehAveLSMin"
-    ' Show the message
-    Private Sub ShowMsgvVehAveLSMin(ByVal sender As Object, ByVal e As System.Windows.Forms.MouseEventArgs) Handles LvVehAveLSMin.MouseMove, TBvVehAveLSMin.MouseMove
-        InfActivat("Minimum average vehicle speed for low speed test")
-    End Sub
-#End Region
-
-#Region "vVehFloatD"
-    ' Show the message
-    Private Sub ShowMsgvVehFloatD(ByVal sender As Object, ByVal e As System.Windows.Forms.MouseEventArgs) Handles LvVehFloatD.MouseMove, TBvVehFloatD.MouseMove
-        InfActivat("+/- Maximum deviation of floating average vehicle speed from average vehicle speed over entire section (low speed test)")
-    End Sub
-#End Region
-
-#Region "TqSumFloatD"
-    ' Show the message
-    Private Sub ShowMsgTqSumFloatD(ByVal sender As Object, ByVal e As System.Windows.Forms.MouseEventArgs) Handles LTqSumFloatD.MouseMove, TBTqSumFloatD.MouseMove
-        InfActivat("+/- Maximum relative deviation of floating average torque from average torque over entire section (low speed test)")
-    End Sub
-#End Region
-
-#Region "vWindAveHSMax"
-    ' Show the message
-    Private Sub ShowMsgvWindAveHSMax(ByVal sender As Object, ByVal e As System.Windows.Forms.MouseEventArgs) Handles LvWindAveHSMax.MouseMove, TBvWindAveHSMax.MouseMove
-        InfActivat("Maximum average wind speed during high speed test")
-    End Sub
-#End Region
-
-#Region "vWind1sHSMax"
-    ' Show the message
-    Private Sub ShowMsgvWind1sHSMax(ByVal sender As Object, ByVal e As System.Windows.Forms.MouseEventArgs) Handles LvWind1sHSMax.MouseMove, TBvWind1sHSMax.MouseMove
-        InfActivat("Maximum gust wind speed during high speed test")
-    End Sub
-#End Region
-
-#Region "vVehAveHSMin"
-    ' Show the message
-    Private Sub ShowMsgvVehAveHSMin(ByVal sender As Object, ByVal e As System.Windows.Forms.MouseEventArgs) Handles LvVehAveHSMin.MouseMove, TBvVehAveHSMin.MouseMove
-        InfActivat("Minimum average vehicle speed for high speed test")
-    End Sub
-#End Region
-
-#Region "BetaAveHSMax"
-    ' Show the message
-    Private Sub ShowMsgBetaAveHSMax(ByVal sender As Object, ByVal e As System.Windows.Forms.MouseEventArgs) Handles LBetaAveHSMax.MouseMove, TBBetaAveHSMax.MouseMove
-        InfActivat("Maximum average beta during high speed test")
-    End Sub
-#End Region
-
-#Region "vVeh1sD"
-    ' Show the message
-    Private Sub ShowMsgvVeh1sD(ByVal sender As Object, ByVal e As System.Windows.Forms.MouseEventArgs) Handles LvVeh1sD.MouseMove, TBvVeh1sD.MouseMove
-        InfActivat("+/- Maximum deviation of 1s average vehicle speed from average vehicle speed over entire section (high speed test)")
-    End Sub
-#End Region
-
-#Region "Tq1sD"
-    ' Show the message
-    Private Sub ShowMsgTq1sD(ByVal sender As Object, ByVal e As System.Windows.Forms.MouseEventArgs) Handles LTq1sD.MouseMove, TBTq1sD.MouseMove
-        InfActivat("+/- Maximum relative deviation of 1s average torque from average torque over entire section (high speed test)")
-    End Sub
-#End Region
-
-#Region "DeltaTTireMax"
-    ' Show the message
-    Private Sub ShowMsgDeltaTTireMax(ByVal sender As Object, ByVal e As System.Windows.Forms.MouseEventArgs) Handles LDeltaTTireMax.MouseMove, TBDeltaTTireMax.MouseMove
-        InfActivat("Maximum variation of tire temperature between high speed tests and low speed tests")
-    End Sub
-#End Region
-
-#Region "DeltaRRCMax"
-    ' Show the message
-    Private Sub ShowMsgDeltaRRCMax(ByVal sender As Object, ByVal e As System.Windows.Forms.MouseEventArgs) Handles LDeltaRRCMax.MouseMove, TBDeltaRRCMax.MouseMove
-        InfActivat("Maximum difference of RRC from the two low speed runs")
-    End Sub
-#End Region
-
-#Region "TambVar"
-    ' Show the message
-    Private Sub ShowMsgTambVar(ByVal sender As Object, ByVal e As System.Windows.Forms.MouseEventArgs) Handles LTambVar.MouseMove, TBTambVar.MouseMove
-        InfActivat("Maximum variation of ambient temperature (measured at the vehicle) during the tests (evaluated based on the used datasets only)")
-    End Sub
-#End Region
-
-#Region "TambTamac"
-    ' Show the message
-    Private Sub ShowMsgTambTamac(ByVal sender As Object, ByVal e As System.Windows.Forms.MouseEventArgs) Handles LTambTamac.MouseMove, TBTambTamac.MouseMove
-        InfActivat("Maximum temperature below which no documentation of tarmac conditions is necessary")
-    End Sub
-#End Region
-
-#Region "TambMax"
-    ' Show the message
-    Private Sub ShowMsgTambMax(ByVal sender As Object, ByVal e As System.Windows.Forms.MouseEventArgs) Handles LTambMax.MouseMove, TBTambMax.MouseMove
-        InfActivat("Maximum ambient temperature (measured at the vehicle) during the tests (evaluated based on the used datasets only)")
-    End Sub
-#End Region
-
-#Region "TambMin"
-    ' Show the message
-    Private Sub ShowMsgTambMin(ByVal sender As Object, ByVal e As System.Windows.Forms.MouseEventArgs) Handles LTambMin.MouseMove, TBTambMin.MouseMove
-        InfActivat("Minimum ambient temperature (measured at the vehicle) during the tests (evaluated based on the used datasets only)")
-    End Sub
-#End Region
-
-#Region "ContHz"
-    ' Show the message
-    Private Sub ShowMsgContHz(ByVal sender As Object, ByVal e As System.Windows.Forms.MouseEventArgs) Handles LDeltaHzMax.MouseMove, TBDeltaHzMax.MouseMove
-        InfActivat("Maximum allowed deviation of timestep-size in csdat-file from 100Hz")
-    End Sub
-#End Region
-
-#Region "RhoAirRef"
-    ' Show the message
-    Private Sub ShowMsgRhoAirRef(ByVal sender As Object, ByVal e As System.Windows.Forms.MouseEventArgs) Handles LRhoAirRef.MouseMove, TBRhoAirRef.MouseMove
-        InfActivat("Reference air density")
-    End Sub
-#End Region
-
-#Region "AveSecAcc"
-    ' Show the message
-    Private Sub ShowMsgAveSecAcc(ByVal sender As Object, ByVal e As System.Windows.Forms.MouseEventArgs) Handles LAccCorrAve.MouseMove, TBAccCorrAve.MouseMove
-        InfActivat("Averaging of vehicle speed for correction of acceleration forces")
-    End Sub
-#End Region
-
-#Region "DeltaHeadMax"
-    ' Show the message
-    Private Sub ShowMsgDeltaHeadMax(ByVal sender As Object, ByVal e As System.Windows.Forms.MouseEventArgs) Handles LDeltaParaMax.MouseMove, TBDeltaParaMax.MouseMove
-        InfActivat("Maximum heading difference for measurement section (parallelism criteria for test track layout)")
-    End Sub
-#End Region
-
-#Region "ContSecL"
-    ' Show the message
-    Private Sub ShowMsgContSecL(ByVal sender As Object, ByVal e As System.Windows.Forms.MouseEventArgs) Handles LDeltaXMax.MouseMove, TBDeltaXMax.MouseMove
-        InfActivat("+/- Size of the control area around a MS start/end point where a trigger signal is valid (driving direction)")
+    ''' <summary>NOTE that the name of the controls below after the 3rd char is equal to the schema-property</summary>
+    Private Sub setupInfoBox()
+        Dim isStrict = False
+
+        Dim schema As JObject
+        Dim controls As Control()
+
+        controls = New Control() {
+                Me.GB_Anemometer, Nothing
+        }
+        schema = JObject.Parse(cJob.JSchemaStr(isStrict))
+        armControlsWithInfoBox(schema, controls, AddressOf showInfoBox_main, AddressOf hideInfoBox_main)
+
+
+        controls = New Control() {
+                Me.TB_roh_air_ref, LRhoAirRef, _
+                Me.CB_accel_correction, Nothing, _
+                Me.CB_gradient_correction, Nothing, _
+                Me.TB_rr_corr_factor, Me.Label2, _
+                Me.GB_hz_out, Nothing, _
+                Me.TB_acc_corr_avg, Me.LAccCorrAve, _
+                Me.TB_dist_float, Me.LDistFloat
+        }
+        schema = New cCriteria(True).BodySchema.SelectToken("properties.Processing")
+        armControlsWithInfoBox(schema, controls, AddressOf showInfoBox_crt, AddressOf hideInfoBox_crt)
+
+
+        controls = New Control() {
+            TB_trigger_delta_x_max, LDeltaXMax, _
+            TB_trigger_delta_y_max, LDeltaYMax, _
+            TB_delta_head_max, LContAng, _
+            TB_segruns_min_CAL, LDsMinCAL, _
+            TB_segruns_min_LS, LDsMinLS, _
+            TB_segruns_min_HS, Me.LDsMinHS, _
+            TB_segruns_min_head_MS, LDsMinHeadMS, _
+            TB_delta_Hz_max, LDeltaHzMax, _
+            TB_delta_parallel_max, LDeltaParaMax, _
+            TB_v_wind_avg_max_CAL, LvWindAveCALMax, _
+            TB_v_wind_1s_max_CAL, LvWind1sCALMax, _
+            TB_beta_avg_max_CAL, LBetaAveCALMax, _
+            TB_leng_crit, LLengCrit, _
+            TB_v_wind_avg_max_LS, LvWindAveLSMax, _
+            TB_v_wind_1s_max_LS, LvWind1sLSMax, _
+            TB_v_veh_avg_min_LS, LB_v_veh_avg_min_LS, _
+            TB_v_veh_avg_max_LS, LB_v_veh_avg_max_LS, _
+            TB_v_veh_float_delta_LS, LB_v_veh_float_delta_LS, _
+            TB_tq_sum_float_delta_LS, LB_tq_sum_float_delta_LS, _
+            TB_v_wind_avg_max_HS, LB_v_wind_avg_max_HS, _
+            TB_v_wind_1s_max_HS, LB_v_wind_1s_max_HS, _
+            TB_beta_avg_max_HS, LB_beta_avg_max_HS, _
+            TB_v_veh_avg_min_HS, LB_v_veh_avg_min_HS, _
+            TB_v_veh_1s_delta_HS, LB_v_veh_1s_delta_HS, _
+            TB_tq_sum_1s_delta_HS, LB_tq_sum_1s_delta_HS, _
+            TB_delta_t_tyre_max, LB_delta_t_tyre_max, _
+            TB_delta_rr_corr_max, LB_delta_rr_corr_max, _
+            TB_t_amb_min, LB_t_amb_min, _
+            TB_t_amb_max, LB_t_amb_max, _
+            TB_t_amb_var, LB_t_amb_var, _
+            TB_t_amb_tarmac, LB_t_amb_tarmac _
+        }
+        schema = New cCriteria(True).BodySchema.SelectToken("properties.Validation")
+        armControlsWithInfoBox(schema, controls, AddressOf showInfoBox_crt, AddressOf hideInfoBox_crt)
+    End Sub
+
+    Private Sub showInfoBox_main(ByVal sender As Object, ByVal e As System.EventArgs)
+        TBInfoMain.Text = sender.Tag
+        TBInfoMain.Visible = True
+        PbInfoIconMain.Visible = True
+    End Sub
+
+    Private Sub hideInfoBox_main(ByVal sender As Object, ByVal e As System.EventArgs)
+        TBInfoMain.Visible = False
+        PbInfoIconMain.Visible = False
+    End Sub
+
+    Private Sub showInfoBox_crt(ByVal sender As Object, ByVal e As System.EventArgs)
+        TBInfoCrt.Text = sender.Tag
+        TBInfoCrt.Visible = True
+        PBInfoIconCrt.Visible = True
+    End Sub
+
+    Private Sub hideInfoBox_crt(ByVal sender As Object, ByVal e As System.EventArgs)
+        TBInfoCrt.Visible = False
+        PBInfoIconCrt.Visible = False
     End Sub
-#End Region
 
-#Region "LRec"
-    ' Show the message
-    Private Sub ShowMsgLRec(ByVal sender As Object, ByVal e As System.Windows.Forms.MouseEventArgs) Handles LDeltaYMax.MouseMove, TBDeltaYMax.MouseMove
-        InfActivat("+/- Size of the control area around a MS start/end point where a trigger signal is valid (perpendicular to driving direction)")
-    End Sub
-#End Region
 
-#Region "ContAng"
-    ' Show the message
-    Private Sub ShowMsgContAng(ByVal sender As Object, ByVal e As System.Windows.Forms.MouseEventArgs) Handles LContAng.MouseMove, TBDeltaHeadMax.MouseMove
-        InfActivat("+/- Maximum deviation from heading as read from the csdat-file to the heading from csms-file for a valid dataset")
-    End Sub
-#End Region
 
-#Region "NSecAnz"
-    ' Show the message
-    Private Sub ShowMsgNSecAnz(ByVal sender As Object, ByVal e As System.Windows.Forms.MouseEventArgs) Handles LDsMinCAL.MouseMove, TBDsMinCAL.MouseMove
-        InfActivat("Minimum number of valid datasets required for the calibration test (per combination of MS ID and DIR ID)")
-    End Sub
 #End Region
 
-#Region "NSecAnzLS"
-    ' Show the message
-    Private Sub ShowMsgNSecAnzLS(ByVal sender As Object, ByVal e As System.Windows.Forms.MouseEventArgs) Handles LDsMinLS.MouseMove, TBDsMinLS.MouseMove
-        InfActivat("Minimum number of valid datasets required for the low speed test (per combination of MS ID and DIR ID)")
-    End Sub
-#End Region
+    Private Sub ClearLogToolStripMenuItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MenuItemClearLog.Click
 
-#Region "NSecAnzHS"
-    ' Show the message
-    Private Sub ShowMsgNSecAnzHS(ByVal sender As Object, ByVal e As System.Windows.Forms.MouseEventArgs) Handles LDsMinHS.MouseMove, TBDsMinHS.MouseMove
-        InfActivat("Minimum number of valid datasets required for the high speed test (per combination of MS ID and DIR ID)")
     End Sub
-#End Region
-
-#Region "MSHSMin"
-    ' Show the message
-    Private Sub ShowMsgMSHSMin(ByVal sender As Object, ByVal e As System.Windows.Forms.MouseEventArgs) Handles LDsMinHeadMS.MouseMove, TBDsMinHeadHS.MouseMove
-        InfActivat("Minimum TOTAL number of valid datasets required for the high speed test per heading")
-    End Sub
-#End Region
-#End Region
 End Class
diff --git a/CSE/GUI/F_Preferences.designer.vb b/CSE/GUI/F_Preferences.designer.vb
index 1a189193bf7ab6206c33314c493adc16785d71da..0e35faece8490aca91be489be294d83026dc18f7 100644
--- a/CSE/GUI/F_Preferences.designer.vb
+++ b/CSE/GUI/F_Preferences.designer.vb
@@ -41,12 +41,14 @@ Partial Class F_Preferences
         Me.ButtonSelectNotepad = New System.Windows.Forms.Button()
         Me.editor = New System.Windows.Forms.TextBox()
         Me.GroupBox1 = New System.Windows.Forms.GroupBox()
+        Me.hideUsername = New System.Windows.Forms.CheckBox()
         Me.strictBodies = New System.Windows.Forms.CheckBox()
         Me.includeSchemas = New System.Windows.Forms.CheckBox()
         Me.TextBox1 = New System.Windows.Forms.TextBox()
         Me.Label3 = New System.Windows.Forms.Label()
         Me.CheckBox1 = New System.Windows.Forms.CheckBox()
         Me.ButtonReload = New System.Windows.Forms.Button()
+        Me.ButtonSave = New System.Windows.Forms.Button()
         Me.GroupBoxWorDir.SuspendLayout()
         Me.GroupBoxInterface.SuspendLayout()
         Me.TabControl1.SuspendLayout()
@@ -87,18 +89,18 @@ Partial Class F_Preferences
         '
         Me.ButtonOK.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
         Me.ButtonOK.DialogResult = System.Windows.Forms.DialogResult.OK
-        Me.ButtonOK.Location = New System.Drawing.Point(436, 242)
+        Me.ButtonOK.Location = New System.Drawing.Point(436, 248)
         Me.ButtonOK.Name = "ButtonOK"
         Me.ButtonOK.Size = New System.Drawing.Size(75, 23)
         Me.ButtonOK.TabIndex = 0
-        Me.ButtonOK.Text = "Save"
+        Me.ButtonOK.Text = "OK"
         Me.ButtonOK.UseVisualStyleBackColor = True
         '
         'ButtonCancel
         '
         Me.ButtonCancel.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
         Me.ButtonCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel
-        Me.ButtonCancel.Location = New System.Drawing.Point(99, 242)
+        Me.ButtonCancel.Location = New System.Drawing.Point(355, 248)
         Me.ButtonCancel.Name = "ButtonCancel"
         Me.ButtonCancel.Size = New System.Drawing.Size(75, 23)
         Me.ButtonCancel.TabIndex = 1
@@ -125,7 +127,7 @@ Partial Class F_Preferences
         Me.GroupBoxInterface.Controls.Add(Me.writeLog)
         Me.GroupBoxInterface.Location = New System.Drawing.Point(5, 120)
         Me.GroupBoxInterface.Name = "GroupBoxInterface"
-        Me.GroupBoxInterface.Size = New System.Drawing.Size(341, 84)
+        Me.GroupBoxInterface.Size = New System.Drawing.Size(341, 89)
         Me.GroupBoxInterface.TabIndex = 11
         Me.GroupBoxInterface.TabStop = False
         Me.GroupBoxInterface.Text = "Logging && Messages"
@@ -180,7 +182,7 @@ Partial Class F_Preferences
         Me.TabControl1.Location = New System.Drawing.Point(3, 3)
         Me.TabControl1.Name = "TabControl1"
         Me.TabControl1.SelectedIndex = 0
-        Me.TabControl1.Size = New System.Drawing.Size(508, 233)
+        Me.TabControl1.Size = New System.Drawing.Size(508, 239)
         Me.TabControl1.TabIndex = 12
         '
         'TabPage2
@@ -192,7 +194,7 @@ Partial Class F_Preferences
         Me.TabPage2.Location = New System.Drawing.Point(4, 22)
         Me.TabPage2.Name = "TabPage2"
         Me.TabPage2.Padding = New System.Windows.Forms.Padding(3)
-        Me.TabPage2.Size = New System.Drawing.Size(500, 207)
+        Me.TabPage2.Size = New System.Drawing.Size(500, 213)
         Me.TabPage2.TabIndex = 0
         Me.TabPage2.Text = "General"
         Me.TabPage2.UseVisualStyleBackColor = True
@@ -227,6 +229,7 @@ Partial Class F_Preferences
         '
         'GroupBox1
         '
+        Me.GroupBox1.Controls.Add(Me.hideUsername)
         Me.GroupBox1.Controls.Add(Me.strictBodies)
         Me.GroupBox1.Controls.Add(Me.includeSchemas)
         Me.GroupBox1.Controls.Add(Me.TextBox1)
@@ -234,15 +237,25 @@ Partial Class F_Preferences
         Me.GroupBox1.Controls.Add(Me.CheckBox1)
         Me.GroupBox1.Location = New System.Drawing.Point(352, 120)
         Me.GroupBox1.Name = "GroupBox1"
-        Me.GroupBox1.Size = New System.Drawing.Size(152, 84)
+        Me.GroupBox1.Size = New System.Drawing.Size(143, 89)
         Me.GroupBox1.TabIndex = 11
         Me.GroupBox1.TabStop = False
         Me.GroupBox1.Text = "JSON"
         '
+        'hideUsername
+        '
+        Me.hideUsername.AutoSize = True
+        Me.hideUsername.Location = New System.Drawing.Point(6, 67)
+        Me.hideUsername.Name = "hideUsername"
+        Me.hideUsername.Size = New System.Drawing.Size(94, 17)
+        Me.hideUsername.TabIndex = 12
+        Me.hideUsername.Text = "hideUsername"
+        Me.hideUsername.UseVisualStyleBackColor = True
+        '
         'strictBodies
         '
         Me.strictBodies.AutoSize = True
-        Me.strictBodies.Location = New System.Drawing.Point(6, 57)
+        Me.strictBodies.Location = New System.Drawing.Point(6, 44)
         Me.strictBodies.Name = "strictBodies"
         Me.strictBodies.Size = New System.Drawing.Size(91, 17)
         Me.strictBodies.TabIndex = 12
@@ -280,7 +293,7 @@ Partial Class F_Preferences
         Me.CheckBox1.AutoSize = True
         Me.CheckBox1.Location = New System.Drawing.Point(353, 15)
         Me.CheckBox1.Name = "CheckBox1"
-        Me.CheckBox1.Size = New System.Drawing.Size(129, 17)
+        Me.CheckBox1.Size = New System.Drawing.Size(121, 17)
         Me.CheckBox1.TabIndex = 5
         Me.CheckBox1.Text = "Write log file (log.txt)"
         Me.CheckBox1.UseVisualStyleBackColor = True
@@ -288,20 +301,32 @@ Partial Class F_Preferences
         'ButtonReload
         '
         Me.ButtonReload.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
-        Me.ButtonReload.Location = New System.Drawing.Point(18, 242)
+        Me.ButtonReload.Location = New System.Drawing.Point(18, 248)
         Me.ButtonReload.Name = "ButtonReload"
         Me.ButtonReload.Size = New System.Drawing.Size(75, 23)
         Me.ButtonReload.TabIndex = 0
         Me.ButtonReload.Text = "Reload"
         Me.ButtonReload.UseVisualStyleBackColor = True
         '
+        'ButtonSave
+        '
+        Me.ButtonSave.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
+        Me.ButtonSave.DialogResult = System.Windows.Forms.DialogResult.OK
+        Me.ButtonSave.Location = New System.Drawing.Point(99, 248)
+        Me.ButtonSave.Name = "ButtonSave"
+        Me.ButtonSave.Size = New System.Drawing.Size(75, 23)
+        Me.ButtonSave.TabIndex = 13
+        Me.ButtonSave.Text = "Save"
+        Me.ButtonSave.UseVisualStyleBackColor = True
+        '
         'F_Preferences
         '
         Me.AcceptButton = Me.ButtonOK
         Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!)
         Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
         Me.CancelButton = Me.ButtonCancel
-        Me.ClientSize = New System.Drawing.Size(515, 277)
+        Me.ClientSize = New System.Drawing.Size(515, 283)
+        Me.Controls.Add(Me.ButtonSave)
         Me.Controls.Add(Me.TabControl1)
         Me.Controls.Add(Me.ButtonCancel)
         Me.Controls.Add(Me.ButtonReload)
@@ -350,4 +375,6 @@ Partial Class F_Preferences
     Friend WithEvents CheckBox1 As System.Windows.Forms.CheckBox
     Friend WithEvents strictBodies As System.Windows.Forms.CheckBox
     Friend WithEvents includeSchemas As System.Windows.Forms.CheckBox
+    Friend WithEvents hideUsername As System.Windows.Forms.CheckBox
+    Friend WithEvents ButtonSave As System.Windows.Forms.Button
 End Class
diff --git a/CSE/GUI/F_Preferences.vb b/CSE/GUI/F_Preferences.vb
index f4616b9e7558b41552c7f5243b2a040ccd688fe8..746655d513e21cb02f176173d9265b910d74ee26 100644
--- a/CSE/GUI/F_Preferences.vb
+++ b/CSE/GUI/F_Preferences.vb
@@ -2,8 +2,7 @@ Imports Newtonsoft.Json.Linq
 
 Public Class F_Preferences
 
-    ' Load confic
-    Private Sub F03_Options_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
+    Private Sub FormLoadHandler(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
         Dim controlPairs As IList(Of Control()) = New List(Of Control())
         ''                CONTROL        LABEL
         controlPairs.Add({Me.workingDir, Me.GroupBoxWorDir})
@@ -13,38 +12,86 @@ Public Class F_Preferences
         controlPairs.Add({Me.logSize, Label16})
         controlPairs.Add({Me.includeSchemas, Nothing})
         controlPairs.Add({Me.strictBodies, Nothing})
+        controlPairs.Add({Me.hideUsername, Nothing})
 
-        '' Add help-tooltips from Json-Schema.
+        '' Add help-tooltips from Json-Schema and 
+        '' dirty-check them.
         ''
         Dim schema = JObject.Parse(cPreferences.JSchemaStr)
         For Each row In controlPairs
             Dim ctrl = row(0)
             Dim Label = row(1)
             updateControlsFromSchema(schema, ctrl, Label)
+            If TypeOf ctrl Is CheckBox Then
+                AddHandler DirectCast(ctrl, CheckBox).CheckedChanged, AddressOf DirtyHandler
+            Else
+                AddHandler ctrl.TextChanged, AddressOf DirtyHandler
+            End If
         Next
 
-        UI_PopulateFrom(AppPreferences)
+        UI_PopulateFrom(Prefs)
+    End Sub
+
+    Private Sub FormClosingHandler(ByVal sender As Object, ByVal e As System.Windows.Forms.FormClosingEventArgs) Handles Me.FormClosing
+        If Me.Dirty Then
+            Dim res = MsgBox(format("Preferences have changed.\nSave changes?"), MsgBoxStyle.YesNoCancel, "Save Preferences?")
+            Select Case res
+                Case MsgBoxResult.No
+                Case MsgBoxResult.Yes
+                    Try
+                        StorePrefs()
+                    Catch ex As Exception
+                        e.Cancel = True
+                        logme(9, True, format("Failed storing Preferences({0}) due to: {1} \n  Preferences left unmodified!", _
+                                                    PrefsPath, ex.Message), ex)
+                    End Try
+                Case Else
+                    e.Cancel = True
+            End Select
+        End If
+    End Sub
+
+    Private _Dirty
+    Private Property Dirty As Boolean
+        Get
+            Return _Dirty
+        End Get
+        Set(ByVal value As Boolean)
+            If _Dirty Xor value Then
+                Me.Text = "Preferences" & IIf(value, "*", "")
+            End If
+            _Dirty = value
+        End Set
+    End Property
+
+
+    Private Sub DirtyHandler(ByVal sender As Object, ByVal e As System.EventArgs)
+        Dirty = True
     End Sub
 
     Private Sub UI_PopulateFrom(ByVal value As cPreferences)
         ' Allocate the data from the confic file (Only by the start)
         Me.workingDir.Text = value.workingDir
-        Me.editor.Text = value.Editor
-        Me.writeLog.Checked = value.WriteLog
-        Me.logLevel.Text = value.LogLevel
-        Me.logSize.Text = value.LogSize
-        Me.includeSchemas.Checked = value.IncludeSchemas
-        Me.strictBodies.Checked = value.StrictBodies
+        Me.editor.Text = value.editor
+        Me.writeLog.Checked = value.writeLog
+        Me.logLevel.Text = value.logLevel
+        Me.logSize.Text = value.logSize
+        Me.includeSchemas.Checked = value.includeSchemas
+        Me.strictBodies.Checked = value.strictBodies
+        Me.hideUsername.Checked = value.hideUsername
+
+        Me.Dirty = False
     End Sub
 
     Private Sub UI_PopulateTo(ByVal value As cPreferences)
         value.workingDir = Me.workingDir.Text
-        value.Editor = Me.editor.Text
-        value.WriteLog = Me.writeLog.Checked
-        value.LogLevel = Me.logLevel.Text
-        value.LogSize = Me.logSize.Text
-        value.IncludeSchemas = Me.includeSchemas.Checked
-        value.StrictBodies = Me.strictBodies.Checked
+        value.editor = Me.editor.Text
+        value.writeLog = Me.writeLog.Checked
+        value.logLevel = Me.logLevel.Text
+        value.logSize = Me.logSize.Text
+        value.includeSchemas = Me.includeSchemas.Checked
+        value.strictBodies = Me.strictBodies.Checked
+        value.hideUsername = Me.hideUsername.Checked
     End Sub
 
     ' Open the filebrowser for selecting the working dir
@@ -54,36 +101,43 @@ Public Class F_Preferences
         End If
     End Sub
 
-    ' Ok button
-    Private Sub StorePrefs(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ButtonOK.Click
+    Private Sub SaveHandler(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ButtonOK.Click, ButtonSave.Click
         Try
-            Dim newPrefs As cPreferences = AppPreferences.Clone()
-            UI_PopulateTo(newPrefs)
-
-            ' Write the config file
-            newPrefs.Store(PreferencesPath)
-            AppPreferences = newPrefs           ' Replace active prefs if successful.
-
-            ' Message for the restart of VECTO
-            RestartN = True
-            fInfWarErr(7, True, format("Stored Preferences({0}). \n\nDo you want to restart VECTO now?", PreferencesPath))
+            '' OK-btn save when dirty, always closes-form.
+            '' Save-btn: always saves, burt not closes-form.
+            ''
+            If sender IsNot ButtonOK OrElse Me.Dirty Then
+                StorePrefs()
+            End If
+
+            If sender Is ButtonOK Then Me.Close()
         Catch ex As Exception
-            fInfWarErr(9, False, format("Failed storing Preferences({0}) due to: {1} \n  Preferences left unmodified!", _
-                                        PreferencesPath, ex.Message), ex)
+            logme(9, True, format("Failed storing Preferences({0}) due to: {1} \n  Preferences left unmodified!", _
+                                        PrefsPath, ex.Message), ex)
         End Try
 
-        ' Close the window
-        Me.Close()
+    End Sub
+    Private Sub StorePrefs()
+        Dim newPrefs As cPreferences = Prefs.Clone()
+        UI_PopulateTo(newPrefs)
+
+        ' Write the config file
+        newPrefs.Store(PrefsPath, newPrefs)
+        Prefs = newPrefs           ' Replace active prefs if successful.
+        Me.Dirty = False
+
+        ' Message for the restart of VECTO
+        logme(7, False, format("Stored Preferences({0}).", PrefsPath))
     End Sub
 
     ' Ok button
     Private Sub ReloadPrefs(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ButtonReload.Click
         Try
-            AppPreferences = New cPreferences(PreferencesPath)
-            UI_PopulateFrom(AppPreferences)
+            Prefs = New cPreferences(PrefsPath)
+            UI_PopulateFrom(Prefs)
         Catch ex As Exception
-            fInfWarErr(9, False, format("Failed loading Preferences({0}) due to: {1}", _
-                                        PreferencesPath, ex.Message), ex)
+            logme(9, True, format("Failed loading Preferences({0}) due to: {1}", _
+                                        PrefsPath, ex.Message), ex)
         End Try
     End Sub
 
@@ -110,7 +164,7 @@ Public Class F_Preferences
 
     ' Set the MSG box to default if it is leave without an input
     Private Sub TextBoxMSG_Leave(ByVal sender As Object, ByVal e As System.EventArgs) Handles logLevel.Leave
-        If Me.logLevel.Text = Nothing Then Me.logLevel.Text = 5
+        If Me.logLevel.Text = Nothing Then Me.logLevel.Text = Prefs.PropDefault("logLevel")
     End Sub
 
     ' Changes in the MSG --> Change the lable
@@ -144,7 +198,8 @@ Public Class F_Preferences
 
     ' Set the LogSize to default if it is leave without an input
     Private Sub TextBoxLogSize_Leave(ByVal sender As Object, ByVal e As System.EventArgs) Handles logSize.Leave, TextBox1.Leave
-        If Me.logSize.Text = Nothing Then Me.logSize.Text = 2
+        If Me.logSize.Text = Nothing Then Me.logSize.Text = Prefs.PropDefault("logSize")
     End Sub
+
 End Class
 
diff --git a/CSE/GUI/cFileBrowser.vb b/CSE/GUI/cFileBrowser.vb
index ee3c759e7d9888504bedd88a5c68eaa11c515ff8..83618bb88663367e4836b1f39cd8b5be7043708a 100644
--- a/CSE/GUI/cFileBrowser.vb
+++ b/CSE/GUI/cFileBrowser.vb
@@ -56,14 +56,8 @@ Public Class cFileBrowser
     End Function
 
     'SaveDialog - Return true if all is ok
-    Public Function SaveDialog(ByVal path As String, Optional ByVal ForceExt As Boolean = True, Optional ByVal Ext As String = "") As Boolean
-        Dim x As eExtMode
-        If ForceExt Then
-            x = eExtMode.ForceExt
-        Else
-            x = eExtMode.SingleExt
-        End If
-        Return CustomDialog(path, False, True, x, False, Ext, "Save As")
+    Public Function SaveDialog(ByVal path As String, Optional ByVal forceExt As eExtMode = eExtMode.SingleExt, Optional ByVal Ext As String = "") As Boolean
+        Return CustomDialog(path, False, True, forceExt, False, Ext, "Save As")
     End Function
 
     ' Open the Dialog - Return true if all is ok
diff --git a/CSE/GUI/utils_GUI.vb b/CSE/GUI/utils_GUI.vb
deleted file mode 100644
index d27333dcf9ec30fd9a0cd0099608d95c937e9202..0000000000000000000000000000000000000000
--- a/CSE/GUI/utils_GUI.vb
+++ /dev/null
@@ -1,631 +0,0 @@
-Imports Newtonsoft.Json.Linq
-
-Module utils_GUI
-
-    ' Clear the GUI
-    Public Function fClear_VECTO_Form(ByVal Komplet As Boolean, Optional ByVal Fields As Boolean = True) As Boolean
-        If Komplet Then
-            ' Clear the Jobfile and the output folder
-            JobFile = Nothing
-            OutFolder = Nothing
-        End If
-
-        If Fields Then
-            ' Clear the Textboxes or set them to default
-            F_Main.TextBoxVeh1.Clear()
-            F_Main.TextBoxWeather.Clear()
-            F_Main.TextBoxAirf.Text = 1
-            F_Main.TextBoxAird.Text = 0
-            F_Main.TextBoxbetaf.Text = 1
-            F_Main.TextBoxbetad.Text = 0
-            F_Main.CheckBoxAcc.Checked = True
-            F_Main.CheckBoxGrd.Checked = False
-
-            ' Calibration fields
-            F_Main.TextBoxDataC.Clear()
-            F_Main.TextBoxMSCC.Clear()
-            F_Main.TextBoxRRC.Text = 1.0
-
-            ' Test run fields
-            F_Main.TextBoxMSCT.Clear()
-            F_Main.TextBoxDataLS1.Clear()
-            F_Main.TextBoxDataHS.Clear()
-            F_Main.TextBoxDataLS2.Clear()
-
-            F_Main.ButtonEval.Enabled = False
-
-            ' Option parameters to standard
-            StdParameter()
-            WriteParToTB()
-        End If
-
-        ' Clear the Warning and Error box
-        F_Main.ListBoxWar.Items.Clear()
-        F_Main.ListBoxErr.Items.Clear()
-        F_Main.TabControlOutMsg.SelectTab(0)
-        F_Main.TabPageErr.Text = "Errors (0)"
-        F_Main.TabPageWar.Text = "Warnings (0)"
-        Return True
-    End Function
-
-    ' Function for the path control
-    Function fControlPath(ByVal Line As String, ByVal position As Integer) As Boolean
-        ' Polling if a path is available
-        If (Line = Nothing) Then
-            fInfWarErr(9, False, "No " & NameFK(position) & "-Inputfile")
-            Return True
-            ' Polling if the path is an acceptable inputfile
-        ElseIf IsNumeric(Line) Or (Mid(Line, 2, 1) <> ":") Or (Line = varOutStr) Then
-            fInfWarErr(9, False, "No acceptably " & NameFK(position) & "-Inputfile: " & Line)
-            Return True
-        End If
-
-        fWriteLog(2, 4, NameFK(position) & " File: " & Line)
-
-        Return False
-    End Function
-
-    ' Function for reading the jobfile
-    Function fReadJobFile() As Boolean
-        ' Declarations
-        Dim lauf, i As Integer
-        Dim Info As String = ""
-        Dim Line() As String
-        Using FileInVECTO As New cFile_V3
-
-            ' Initialisation
-            lauf = 0
-
-            ' Open the jobfile
-            If Not FileInVECTO.OpenRead(JobFile) Then
-                ' Falls File nicht vorhanden, abbrechen mit Fehler
-                fInfWarErr(9, False, "Can´t find the Jobfile file: " & JobFile)
-                Return False
-            End If
-
-            ' Read the data from the jobfile
-            Vehspez = FileInVECTO.ReadLine(0)
-            Ambspez = FileInVECTO.ReadLine(0)
-
-            Line = FileInVECTO.ReadLine
-            For i = 0 To UBound(AnemIC) - 1
-                AnemIC(i + 1) = Line(i)
-            Next i
-
-            ' Calibration test files
-            MSCCSpez = FileInVECTO.ReadLine(0)
-            DataSpez(1) = FileInVECTO.ReadLine(0)
-
-            ' Test run files
-            MSCTSpez = FileInVECTO.ReadLine(0)
-            RRC = FileInVECTO.ReadLine(0)
-            For i = 2 To JBerF
-                DataSpez(i) = FileInVECTO.ReadLine(0)
-            Next i
-
-            ' Appropriate the Checkboxes
-            ' Acceleration Correction
-            Line = FileInVECTO.ReadLine
-            If IsNumeric(Line(0)) Then
-                If Line(0) = 1 Then
-                    AccC = True
-                Else
-                    AccC = False
-                    'CSEMain.CheckBoxAcc.Checked = False
-                End If
-            End If
-
-            ' Gradient correction
-            Line = FileInVECTO.ReadLine
-            If IsNumeric(Line(0)) Then
-                If Line(0) = 1 Then
-                    GradC = True
-                Else
-                    GradC = False
-                    'CSEMain.CheckBoxGrd.Checked = False
-                End If
-            End If
-
-            ' Output sequence
-            Line = FileInVECTO.ReadLine
-            If IsNumeric(Line(0)) Then
-                If Line(0) = 1 Then
-                    HzOut = 1
-                ElseIf Line(0) = 100 Then
-                    HzOut = 100
-                Else
-                    HzOut = 1
-                End If
-            End If
-
-            ' Read the parameters
-            Try
-                i = 0
-                Do While Not FileInVECTO.EndOfFile
-                    ' Gradient correction
-                    Line = FileInVECTO.ReadLine
-                    i += 1
-                    If IsNumeric(Line(0)) Then
-                        Select Case i
-                            Case 1 ' TBDeltaTTireMax
-                                delta_t_tire_max = Line(0)
-                            Case 2 ' TBDeltaRRCMax.Text
-                                delta_RRC_max = Line(0)
-                            Case 3 ' TBTambVar
-                                t_amb_var = Line(0)
-                            Case 4 ' TBTambTamac
-                                t_amb_tarmac = Line(0)
-                            Case 5 ' TBTambMax
-                                t_amb_max = Line(0)
-                            Case 6 ' TBTambMin
-                                t_amb_min = Line(0)
-                            Case 7 ' TBContHz
-                                delta_Hz_max = Line(0)
-                            Case 8 ' TBRhoAirRef
-                                roh_air_ref = Line(0)
-                            Case 9 ' TBAveSecAcc
-                                acc_corr_ave = Line(0)
-                            Case 10 ' TBDeltaHeadMax
-                                delta_parallel_max = Line(0)
-                            Case 11 ' TBContSecL
-                                delta_x_max = Line(0)
-                            Case 12 ' TBLRec
-                                delta_y_max = Line(0)
-                            Case 13 ' TBContAng
-                                delta_head_max = Line(0)
-                            Case 14 ' TBNSecAnz
-                                ds_min_CAL = Line(0)
-                            Case 15 ' TBNSecAnzLS
-                                ds_min_LS = Line(0)
-                            Case 16 ' TBNSecAnzHS
-                                ds_min_HS = Line(0)
-                            Case 17 ' TBMSHSMin
-                                ds_min_head_MS = Line(0)
-                            Case 18 ' TBDistFloat
-                                dist_float = Line(0)
-                            Case 19 ' TBvWindAveCALMax
-                                v_wind_ave_CAL_max = Line(0)
-                            Case 20 ' TBvWind1sCALMax
-                                v_wind_1s_CAL_max = Line(0)
-                            Case 21 ' TBBetaAveCALMax
-                                beta_ave_CAL_max = Line(0)
-                            Case 22 ' TBLengCrit
-                                leng_crit = Line(0)
-                            Case 23 ' TBvWindAveLSMax
-                                v_wind_ave_LS_max = Line(0)
-                            Case 24 ' TBvWind1sLSMin
-                                v_wind_1s_LS_max = Line(0)
-                            Case 25 ' TBvVehAveLSMax
-                                v_veh_ave_LS_max = Line(0)
-                            Case 26 ' TBvVehAveLSMin
-                                v_veh_ave_LS_min = Line(0)
-                            Case 27 ' TBvVehFloatD
-                                v_veh_float_delta = Line(0)
-                            Case 28 ' TBTqSumFloatD
-                                tq_sum_float_delta = Line(0)
-                            Case 29 ' TBvWindAveHSMax
-                                v_wind_ave_HS_max = Line(0)
-                            Case 30 ' TBvWind1sHSMax
-                                v_wind_1s_HS_max = Line(0)
-                            Case 31 ' TBvVehAveHSMin
-                                v_veh_ave_HS_min = Line(0)
-                            Case 32 ' TBBetaAveHSMax
-                                beta_ave_HS_max = Line(0)
-                            Case 33 ' TBvVeh1sD
-                                v_veh_1s_delta = Line(0)
-                            Case 34 ' TBTq1sD
-                                tq_sum_1s_delta = Line(0)
-                        End Select
-                    Else
-                        fInfWarErr(9, False, "The given value in the job file at position: " & i & " is not a number")
-                        BWorker.CancelAsync()
-                        Return False
-                    End If
-                Loop
-            Catch ex As Exception
-                ' Error
-                fInfWarErr(9, False, "Invalid value in the job file at position: " & i)
-                BWorker.CancelAsync()
-                Return False
-            End Try
-
-            ' Look if enough parameters are given
-            If i < 34 Then
-                fInfWarErr(9, False, "Not enough parameters given in the job file")
-                BWorker.CancelAsync()
-                Return False
-            End If
-
-            ' Control the input files
-            fControlInput(Vehspez, 1, "csveh.json")
-            fControlInput(Ambspez, 2, "csamb")
-            fControlInput(MSCCSpez, 3, "csms")
-            fControlInput(MSCTSpez, 4, "csms")
-            For i = 1 To JBerF
-                fControlInput(DataSpez(i), 4 + i, "csdat")
-            Next i
-
-        End Using
-
-        ' Transfer the data to the GUI
-        ' General
-        F_Main.TextBoxVeh1.Text = Vehspez
-        F_Main.TextBoxAirf.Text = AnemIC(1)
-        F_Main.TextBoxAird.Text = AnemIC(2)
-        F_Main.TextBoxbetaf.Text = AnemIC(3)
-        F_Main.TextBoxbetad.Text = AnemIC(4)
-        F_Main.TextBoxWeather.Text = Ambspez
-        ' Calibration
-        F_Main.TextBoxMSCC.Text = MSCCSpez
-        F_Main.TextBoxDataC.Text = DataSpez(1)
-        ' Test
-        F_Main.TextBoxMSCT.Text = MSCTSpez
-        F_Main.TextBoxRRC.Text = RRC
-        F_Main.TextBoxDataLS1.Text = DataSpez(2)
-        F_Main.TextBoxDataHS.Text = DataSpez(3)
-        F_Main.TextBoxDataLS2.Text = DataSpez(4)
-        ' Options
-        WriteParToTB()
-
-        Return True
-    End Function
-
-    ' Function to read the generic shape file
-    Function fGenShpLoad() As Boolean
-        ' Declarations
-        Dim i, j, anz, pos, num As Integer
-        Dim Info As String = ""
-        Dim Line(), Line2(), Line3(), GenShpFile As String
-        Dim XVal(,), YVal(,), XClone(), YClone() As Double
-        Using FileInGenShp As New cFile_V3
-
-            ' Initialisation
-            GenShpFile = joinPaths(MyPath, "Declaration", "GenShape.shp")
-
-            ' Open the shape generic file
-            If Not FileInGenShp.OpenRead(GenShpFile) Then
-                ' Falls File nicht vorhanden, abbrechen mit Fehler
-                fInfWarErr(9, True, "Can´t find the generic shape file: " & GenShpFile)
-                Return False
-            End If
-
-            ' Read the line
-            Line = FileInGenShp.ReadLine()
-            Line2 = FileInGenShp.ReadLine()
-            Line3 = FileInGenShp.ReadLine()
-            anz = Int(Line.Length / 2)
-
-            ' Initialise
-            pos = 1
-            num = 0
-            ReDim XVal(anz - 1, 0)
-            ReDim YVal(anz - 1, 0)
-
-            ' Read the Head data
-            For i = 0 To anz - 1
-                ' Control if the vehicle class and configuration is already defined
-                If GenShape.veh_class.Contains(Line(pos)) Then
-                    For j = 0 To GenShape.veh_class.Count - 1
-                        If GenShape.veh_class(j) = Line(pos) And GenShape.veh_conf(j) = Line2(pos) Then
-                            fInfWarErr(9, True, "The vehicle class with this configuration is already defined. Please control your generic shape file!")
-                            Return False
-                        End If
-                    Next
-                End If
-                ' Add the data
-                GenShape.veh_class.Add(Line(pos))
-                GenShape.veh_conf.Add(Line2(pos))
-                GenShape.fa_pe.Add(Line3(pos))
-                pos += 2
-            Next i
-
-            ' Read the shape values
-            Do While Not FileInGenShp.EndOfFile
-                pos = 1
-                num += 1
-                Line = FileInGenShp.ReadLine()
-                ReDim Preserve XVal(anz - 1, UBound(XVal, 2) + 1)
-                ReDim Preserve YVal(anz - 1, UBound(YVal, 2) + 1)
-                For i = 0 To anz - 1
-                    XVal(i, UBound(XVal, 2)) = Line(pos)
-                    YVal(i, UBound(YVal, 2)) = Line(pos + 1)
-                    pos += 2
-                Next i
-            Loop
-
-            ' Clone and add the arrays
-            For i = 0 To anz - 1
-                ' Initialise
-                ReDim XClone(num - 1)
-                ReDim YClone(num - 1)
-
-                ' Copy the arrays
-                For j = 1 To num
-                    XClone(j - 1) = XVal(i, j)
-                    YClone(j - 1) = YVal(i, j)
-                Next j
-                ' Add the arrays
-                GenShape.x_val.Add(XClone.Clone)
-                GenShape.y_val.Add(YClone.Clone)
-            Next i
-        End Using
-
-        Return True
-    End Function
-
-    ' Function if a path is given. Otherwise set to default (Only in the Jobfile)
-    Function fPathOutControl(ByVal Path As String) As String
-        ' Declarationen
-        Dim Pathout As String
-
-        ' Polling if a path is given
-        If Path = Nothing Then
-            Pathout = varOutStr
-        Else
-            Pathout = Path
-        End If
-
-        Return Pathout
-    End Function
-
-    ' Polling after the right fileending
-    Function fControlInput(ByVal File As String, ByVal position As Integer, ByVal endung As String) As Boolean
-        ' If no file, file with the wrong ending or the default is given then writes a warning
-        If (File = Nothing) Then
-            fInfWarErr(8, False, "The " & NameFK(position) & "-Inputfile is not a regular " & NameFK(position) & "-File")
-            Return False
-        ElseIf (Not File.EndsWith(endung, StringComparison.OrdinalIgnoreCase)) And Not (File = varOutStr) Then
-            fInfWarErr(8, False, "The " & NameFK(position) & "-Inputfile is not a regular " & NameFK(position) & "-File")
-            Return False
-        End If
-        Return True
-    End Function
-
-    ' Function to get all parameter from the GUI
-    Function fGetOpt(Optional ByVal berech As Boolean = False, Optional ByVal calib As Boolean = True) As Boolean
-        ' Declaration
-        Dim i As Integer
-
-        ' Read the data from the textboxes (General)
-        Vehspez = F_Main.TextBoxVeh1.Text
-        Ambspez = F_Main.TextBoxWeather.Text
-        AnemIC(1) = F_Main.TextBoxAirf.Text
-        AnemIC(2) = F_Main.TextBoxAird.Text
-        AnemIC(3) = F_Main.TextBoxbetaf.Text
-        AnemIC(4) = F_Main.TextBoxbetad.Text
-
-        ' Appropriate the inputfiles from calibration run
-        DataSpez(1) = F_Main.TextBoxDataC.Text
-        MSCCSpez = F_Main.TextBoxMSCC.Text
-
-        ' Appropriate the inputfiles from test run
-        DataSpez(2) = F_Main.TextBoxDataLS1.Text
-        DataSpez(3) = F_Main.TextBoxDataHS.Text
-        DataSpez(4) = F_Main.TextBoxDataLS2.Text
-        MSCTSpez = F_Main.TextBoxMSCT.Text
-        RRC = F_Main.TextBoxRRC.Text
-
-        ' Get the option parameter
-        If Not fgetPar() Then Return False
-
-        If berech Then
-            ' Control the input
-            If fControlPath(Vehspez, 1) Then Return False
-            If fControlPath(Ambspez, 2) Then Return False
-            If fControlPath(MSCCSpez, 3) Then Return False
-            If Not calib Then
-                If fControlPath(MSCTSpez, 4) Then Return False
-                For i = 1 To JBerF
-                    If fControlPath(DataSpez(i), 4 + i) Then Return False
-                Next i
-            End If
-        End If
-
-        Return True
-    End Function
-
-    ' Get the parameters from option tab
-    Function fgetPar() As Boolean
-        ' Evaluation box
-        If F_Main.CheckBoxAcc.Checked Then AccC = True
-        If F_Main.CheckBoxGrd.Checked Then GradC = True
-
-        ' Output box
-        If F_Main.RB1Hz.Checked Then HzOut = 1
-        If F_Main.RB100Hz.Checked Then HzOut = 100
-
-        'Parameter boxes
-        ' General valid criteria
-        delta_t_tire_max = F_Main.TBDeltaTTireMax.Text
-        delta_RRC_max = F_Main.TBDeltaRRCMax.Text
-        t_amb_var = F_Main.TBTambVar.Text
-        t_amb_tarmac = F_Main.TBTambTamac.Text
-        t_amb_max = F_Main.TBTambMax.Text
-        t_amb_min = F_Main.TBTambMin.Text
-        ' General
-        delta_Hz_max = F_Main.TBDeltaHzMax.Text
-        roh_air_ref = F_Main.TBRhoAirRef.Text
-        acc_corr_ave = F_Main.TBAccCorrAve.Text
-        delta_parallel_max = F_Main.TBDeltaParaMax.Text
-        ' Identification of measurement section
-        delta_x_max = F_Main.TBDeltaXMax.Text
-        delta_y_max = F_Main.TBDeltaYMax.Text
-        delta_head_max = F_Main.TBDeltaHeadMax.Text
-        ' Requirements on number of valid datasets
-        ds_min_CAL = F_Main.TBDsMinCAL.Text
-        ds_min_LS = F_Main.TBDsMinLS.Text
-        ds_min_HS = F_Main.TBDsMinHS.Text
-        ds_min_head_MS = F_Main.TBDsMinHeadHS.Text
-        ' DataSet validity criteria
-        dist_float = F_Main.TBDistFloat.Text
-        ' Calibration
-        v_wind_ave_CAL_max = F_Main.TBvWindAveCALMax.Text
-        v_wind_1s_CAL_max = F_Main.TBvWind1sCALMax.Text
-        beta_ave_CAL_max = F_Main.TBBetaAveCALMax.Text
-        ' Low and high speed test
-        leng_crit = F_Main.TBLengCrit.Text
-        ' Low speed test
-        v_wind_ave_LS_max = F_Main.TBvWindAveLSMax.Text
-        v_wind_1s_LS_max = F_Main.TBvWind1sLSMax.Text
-        v_veh_ave_LS_max = F_Main.TBvVehAveLSMax.Text
-        v_veh_ave_LS_min = F_Main.TBvVehAveLSMin.Text
-        v_veh_float_delta = F_Main.TBvVehFloatD.Text
-        tq_sum_float_delta = F_Main.TBTqSumFloatD.Text
-        ' High speed test
-        v_wind_ave_HS_max = F_Main.TBvWindAveHSMax.Text
-        v_wind_1s_HS_max = F_Main.TBvWind1sHSMax.Text
-        v_veh_ave_HS_min = F_Main.TBvVehAveHSMin.Text
-        beta_ave_HS_max = F_Main.TBBetaAveHSMax.Text
-        v_veh_1s_delta = F_Main.TBvVeh1sD.Text
-        tq_sum_1s_delta = F_Main.TBTq1sD.Text
-
-        Return True
-    End Function
-
-    ' Function to set the parameters to standard
-    Function WriteParToTB() As Boolean
-        ' Write the Standard values in the textboxes
-        ' General valid criteria
-        F_Main.TBDeltaTTireMax.Text = delta_t_tire_max
-        F_Main.TBDeltaRRCMax.Text = delta_RRC_max
-        F_Main.TBTambVar.Text = t_amb_var
-        F_Main.TBTambTamac.Text = t_amb_tarmac
-        F_Main.TBTambMax.Text = t_amb_max
-        F_Main.TBTambMin.Text = t_amb_min
-        ' General
-        F_Main.TBDeltaHzMax.Text = delta_Hz_max
-        F_Main.TBRhoAirRef.Text = roh_air_ref
-        F_Main.TBAccCorrAve.Text = acc_corr_ave
-        F_Main.TBDeltaParaMax.Text = delta_parallel_max
-        ' Identification of measurement section
-        F_Main.TBDeltaXMax.Text = delta_x_max
-        F_Main.TBDeltaYMax.Text = delta_y_max
-        F_Main.TBDeltaHeadMax.Text = delta_head_max
-        ' Requirements on number of valid datasets
-        F_Main.TBDsMinCAL.Text = ds_min_CAL
-        F_Main.TBDsMinLS.Text = ds_min_LS
-        F_Main.TBDsMinHS.Text = ds_min_HS
-        F_Main.TBDsMinHeadHS.Text = ds_min_head_MS
-        ' DataSet validity criteria
-        F_Main.TBDistFloat.Text = dist_float
-        ' Calibration
-        F_Main.TBvWindAveCALMax.Text = v_wind_ave_CAL_max
-        F_Main.TBvWind1sCALMax.Text = v_wind_1s_CAL_max
-        F_Main.TBBetaAveCALMax.Text = beta_ave_CAL_max
-        ' Low and high speed test
-        F_Main.TBLengCrit.Text = leng_crit
-        ' Low speed test
-        F_Main.TBvWindAveLSMax.Text = v_wind_ave_LS_max
-        F_Main.TBvWind1sLSMax.Text = v_wind_1s_LS_max
-        F_Main.TBvVehAveLSMax.Text = v_veh_ave_LS_max
-        F_Main.TBvVehAveLSMin.Text = v_veh_ave_LS_min
-        F_Main.TBvVehFloatD.Text = v_veh_float_delta
-        F_Main.TBTqSumFloatD.Text = tq_sum_float_delta
-        ' High speed test
-        F_Main.TBvWindAveHSMax.Text = v_wind_ave_HS_max
-        F_Main.TBvWind1sHSMax.Text = v_wind_1s_HS_max
-        F_Main.TBvVehAveHSMin.Text = v_veh_ave_HS_min
-        F_Main.TBBetaAveHSMax.Text = beta_ave_HS_max
-        F_Main.TBvVeh1sD.Text = v_veh_1s_delta
-        F_Main.TBTq1sD.Text = tq_sum_1s_delta
-        ' Evaluation box
-        If AccC Then
-            F_Main.CheckBoxAcc.Checked = True
-        Else
-            F_Main.CheckBoxAcc.Checked = False
-        End If
-        If GradC Then
-            F_Main.CheckBoxGrd.Checked = True
-        Else
-            F_Main.CheckBoxGrd.Checked = False
-        End If
-        ' Output
-        If HzOut = 1 Then
-            F_Main.RB1Hz.Checked = True
-        ElseIf HzOut = 100 Then
-            F_Main.RB100Hz.Checked = True
-        End If
-
-        Return True
-    End Function
-
-    ' Delete lines from the Log
-    Function fLoeschZeilen(ByVal File As String, ByVal Anzahl As Integer, Optional ByVal Zeichen As String = "-") As Boolean
-        ' Declarations
-        Dim i, k As Integer
-        Dim inhalt() = System.IO.File.ReadAllLines(File)
-        Dim inhalt2() As String
-
-        ' Search till the given string is found
-        For i = Anzahl To UBound(inhalt)
-            If Trim(inhalt(i)).StartsWith(Zeichen) Then
-                Exit For
-            End If
-        Next i
-
-        ' Redimension from the array
-        ReDim inhalt2(UBound(inhalt) - i + 3)
-
-        ' Write the actualize file
-        inhalt2(1) = "Cleared Log " & CDate(DateAndTime.Now)
-        inhalt2(2) = "-----"
-
-        k = 3
-        For j = i To UBound(inhalt)
-            inhalt2(k) = inhalt(j)
-            k += 1
-        Next j
-
-        ' Write the textfile
-        System.IO.File.WriteAllLines(File, inhalt2)
-
-        Return True
-
-    End Function
-
-    Sub updateControlsFromSchema(ByVal schema As JObject, ByVal ctrl As Control, ByVal label As Control)
-        Try
-            Dim pschema = schema.SelectToken(".properties." & ctrl.Name)
-            If pschema Is Nothing Then
-                fInfWarErr(8, False, format("Schema2GUI: Could not find schema for Control({0})!\n\iSchema: {1}", ctrl.Name, schema))
-                Return
-            End If
-
-            '' Set title on control/label
-            ''
-            Dim title = pschema("title")
-            If title IsNot Nothing Then
-                If label IsNot Nothing Then
-                    label.Text = title
-                Else
-                    If TypeOf ctrl Is CheckBox Then
-                        title = title.ToString() & "?"
-                    End If
-                End If
-                ctrl.Text = title
-            End If
-
-            '' Build tooltip.
-            ''
-            Dim infos = _
-                From pname In {"title", "description", "type", "enum", "default", _
-                               "minimum", "exclusiveMinimum", "maximum", "exclusiveMaximum"}
-                Select pschema(pname)
-
-            ''TODO: Include other schema-props in tooltips.
-
-            If infos.Any() Then
-                Dim msg = schemaInfos2helpMsg(infos.ToArray())
-                Dim t = New ToolTip()
-                t.SetToolTip(ctrl, msg)
-                t.AutomaticDelay = 300
-                t.AutoPopDelay = 10000
-            End If
-
-
-        Catch ex As Exception
-            fInfWarErr(8, False, format("Schema2GUI: Skipped exception: {0} ", ex.Message), ex)
-        End Try
-    End Sub
-
-End Module
diff --git a/CSE/IO/OutputTest.vb b/CSE/IO/OutputTest.vb
index 3914200b341f48db2e4f0cac3c9e8e06013c16d9..e4ae6ff7ced71e04e50890f8d5dc4d1b2715e85b 100644
--- a/CSE/IO/OutputTest.vb
+++ b/CSE/IO/OutputTest.vb
@@ -23,7 +23,7 @@
             End If
 
             ' Write on GUI
-            fInfWarErr(5, False, "Write output-file (*.csv)")
+            logme(5, False, "Write output-file (*.csv)")
 
             ' Generate the file name
             NameOutFile = OutFolder & fName(Datafile, False) & "_test.csv"
@@ -64,7 +64,7 @@
 
         ' Ausgabe bei blockierter Datei
         If BWorker.CancellationPending And FileBlock Then
-            fInfWarErr(9, False, "Can´t write in file " & NameOutFile & ". File is blocked by another process!")
+            logme(9, False, "Can´t write in file " & NameOutFile & ". File is blocked by another process!")
         End If
 
         Return True
diff --git a/CSE/IO/cCriteria.vb b/CSE/IO/cCriteria.vb
new file mode 100644
index 0000000000000000000000000000000000000000..52f0225d1f2fc8cc310f6c25f148a3dec8b72224
--- /dev/null
+++ b/CSE/IO/cCriteria.vb
@@ -0,0 +1,450 @@
+Imports Newtonsoft.Json.Linq
+Imports Newtonsoft.Json.Schema
+
+Public Class cCriteria
+    Inherits cJsonFile
+
+    Protected Overrides Function HeaderOverlay() As JObject
+        Return JObject.Parse(<json>{
+                "Title": "vecto-cse CRITERIA",
+                "FileVersion":  "1.0.0",
+           }</json>.Value)
+    End Function
+
+
+    Private ForeignBody As JToken
+
+
+    '' Default values are Decleration
+    Public Shared Function BuildBody() As JObject
+        Dim b, g As Object
+        b = New JObject()
+
+        g = New JObject()
+        b.Processing = g
+        g.roh_air_ref = 1.1884
+        g.accel_correction = False
+        g.gradient_correction = False
+        g.hz_out = 1
+        g.rr_corr_factor = 1
+        g.acc_corr_avg = 1
+        g.dist_float = 25
+
+        g = New JObject()
+        b.Validation = g
+        g.trigger_delta_x_max = 10
+        g.trigger_delta_y_max = 100
+        g.delta_head_max = 10
+        g.segruns_min_CAL = 5
+        g.segruns_min_LS = 1
+        g.segruns_min_HS = 2
+        g.segruns_min_head_MS = 10
+        g.delta_Hz_max = 1
+        g.delta_parallel_max = 20
+
+
+        g.v_wind_avg_max_CAL = 5
+        g.v_wind_1s_max_CAL = 8
+        g.beta_avg_max_CAL = 5
+
+        g.leng_crit = 3
+
+        g.v_wind_avg_max_LS = 5
+        g.v_wind_1s_max_LS = 8
+        g.v_veh_avg_min_LS = 9
+        g.v_veh_avg_max_LS = 16
+        g.v_veh_float_delta_LS = 0.15
+        g.tq_sum_float_delta_LS = 0.1
+
+        g.v_wind_avg_max_HS = 5
+        g.v_wind_1s_max_HS = 8
+        g.beta_avg_max_HS = 3
+        g.v_veh_avg_min_HS = 80
+        g.v_veh_1s_delta_HS = 0.3
+        g.tq_sum_1s_delta_HS = 0.1
+
+        g.delta_t_tyre_max = 5
+        g.delta_rr_corr_max = 0.3
+        g.t_amb_min = 0
+        g.t_amb_max = 35
+        g.t_amb_var = 3
+        g.t_amb_tarmac = 25
+
+        Return b
+    End Function
+
+    ''' <param name="isStrictBody">when true, more strict validation</param>
+    Public Shared Function JSchemaStr(Optional ByVal isStrictBody As Boolean = False) As String
+        Dim allowAdditionalProps_str As String = (Not isStrictBody).ToString.ToLower
+        Return <json>{
+            "title": "Schema for vecto-cse CRITERIA",
+            "type": "object", "additionalProperties": <%= allowAdditionalProps_str %>, 
+            "required": true,
+            "properties": {
+                "Processing": {
+                    "type": "object",
+                    "required": true,
+                    "additionalProperties": <%= allowAdditionalProps_str %>, 
+                    "properties": {
+                        "roh_air_ref": {"type": "number", "required": true, 
+                            "description": "Reference air density.", 
+                            "units": "kg/m^3", 
+                        },
+                        "accel_correction": {"type": "boolean", "required": true, 
+                            "description": "When True, applies acceleration correction.", 
+                        },
+                        "gradient_correction": {"type": "boolean", "required": true, 
+                            "description": "When True, applies gradient correction.", 
+                        },
+                        "hz_out": {"type": "integer", "required": true, 
+                            "description": "The sampling-rate of the result files.",
+                            "units": "Hz",
+                        },
+                        "rr_corr_factor": {"type": "number", "required": true, 
+                            "description": "Rolling resistance correction factor",
+                        },
+                        "acc_corr_avg": {"type": "number", "required": true, 
+                            "description": "Averaging of vehicle speed for correction of acceleration forces.",
+                            "units": "s",
+                        },
+                        "dist_float": {"type": "number", "required": true, 
+                            "description": "Distance used for calculation of floatinig average signal used for stability criteria in low speeds.",
+                            "units": "m",
+                        },
+                    }
+                },
+                "Validation": {
+                    "type": "object",
+                    "required": true,
+                    "additionalProperties": <%= allowAdditionalProps_str %>, 
+                    "properties": {
+                        "trigger_delta_x_max": {"type": "number", "required": true, 
+                            "description": "+/- size of the control area around a MS start/end point where a trigger signal is valid (driving direction).", 
+                            "units": "m", 
+                        },
+                        "trigger_delta_y_max": {"type": "number", "required": true, 
+                            "description": "+/- size of the control area around a MS start/end point where a trigger signal is valid (perpendicular to driving direction)", 
+                            "units": "m", 
+                        },
+                        "delta_head_max": {"type": "number", "required": true, 
+                            "description": "+/- maximum deviation from heading as read from the csdat-file to the heading from csms-file for a valid dataset.", 
+                            "units": "°", 
+                        },
+                        "segruns_min_CAL": {"type": "integer", "required": true, 
+                            "description": "Minimum number of valid datasets required for the calibration test (per combination of MS ID and DIR ID).", 
+                        },
+                        "segruns_min_LS": {"type": "integer", "required": true, 
+                            "description": "Minimum number of valid datasets required for the low speed (per combination of MS ID and DIR ID).", 
+                        },
+                        "segruns_min_HS": {"type": "integer", "required": true, 
+                            "description": "Minimum number of valid datasets required for the high speed (per combination of MS ID and DIR ID).", 
+                        },
+                        "segruns_min_head_MS": {"type": "integer", "required": true, 
+                            "description": "Minimum TOTAL number of valid datasets required for the high speed per heading.", 
+                        },
+                        "delta_Hz_max": {"type": "number", "required": true, 
+                            "description": "Maximum allowed deviation of timestep-size in csdat-file from 100Hz.", 
+                            "units": "%", 
+                        },
+                        "delta_parallel_max": {"type": "number", "required": true, 
+                            "description": "Maximum heading difference for measurement section (parallelism criteria for test track layout).", 
+                            "units": "°", 
+                        },
+
+                        "v_wind_avg_max_CAL": {"type": "number", "required": true, 
+                            "description": "Maximum average wind speed (calibration).", 
+                            "units": "m/s", 
+                        },
+                        "v_wind_1s_max_CAL": {"type": "number", "required": true, 
+                            "description": "Maximum gust wind speed (calibration).", 
+                            "units": "m/s", 
+                        },
+                        "beta_avg_max_CAL": {"type": "number", "required": true, 
+                            "description": "Maximum average beta (calibration).", 
+                            "units": "°", 
+                        },
+
+                        "leng_crit": {"type": "number", "required": true, 
+                            "description": "Maximum absolute difference of distance driven with lenght of section as specified in configuration", 
+                            "units": "M", 
+                        },
+
+                        "v_wind_avg_max_LS": {"type": "number", "required": true, 
+                            "description": "Maximum average wind speed during (low speed).", 
+                            "units": "m/s", 
+                        },
+                        "v_wind_1s_max_LS": {"type": "number", "required": true, 
+                            "description": "Maximum gust wind speed (low speed).", 
+                            "units": "m/s", 
+                        },
+                        "v_veh_avg_min_LS": {"type": "number", "required": true, 
+                            "description": "Minimum average vehicle speed (low speed).", 
+                            "units": "km/h", 
+                        },
+                        "v_veh_avg_max_LS": {"type": "number", "required": true, 
+                            "description": "Maximum average vehicle speed (low speed).", 
+                            "units": "km/h", 
+                        },
+                        "v_veh_float_delta_LS": {"type": "number", "required": true, 
+                            "description": "+/- maximum deviation of floating average vehicle speed from average vehicle speed over entire section (low speed)", 
+                            "units": "km/h", 
+                        },
+                                                "tq_sum_float_delta_LS": {"type": "number", "required": true, 
+                            "description": "+/- maximum relative deviation of floating average torque from average torque over entire section (low speed)", 
+                        },
+
+                        "v_wind_avg_max_HS": {"type": "number", "required": true, 
+                            "description": "Maximum average wind speed (high speed).", 
+                            "units": "m/s", 
+                        },
+                        "v_wind_1s_max_HS": {"type": "number", "required": true, 
+                            "description": "Maximum gust wind speed (high speed).", 
+                            "units": "m/s", 
+                        },
+                        "beta_avg_max_HS": {"type": "number", "required": true, 
+                            "description": "Maximum average beta during (high speed).", 
+                            "units": "°", 
+                        },
+                        "v_veh_avg_min_HS": {"type": "number", "required": true, 
+                            "description": "Minimum average vehicle speed (high speed).", 
+                            "units": "km/h", 
+                        },
+                        "v_veh_1s_delta_HS": {"type": "number", "required": true, 
+                            "description": "+/- maximum deviation of 1s average vehicle speed from average vehicle speed over entire section (high speed).", 
+                            "units": "km/h", 
+                        },
+                        "tq_sum_1s_delta_HS": {"type": "number", "required": true, 
+                            "description": "+/- maximum relative deviation of 1s average torque from average torque over entire section (high speed).", 
+                        },
+
+                        "delta_t_tyre_max": {"type": "number", "required": true, 
+                            "description": "Maximum variation of tyre temperature between high speeds and low speeds.", 
+                            "units": "°C", 
+                        },
+                        "delta_rr_corr_max": {"type": "number", "required": true, 
+                            "description": "Maximum difference of RRC from the two low speed runs.", 
+                            "units": "kg/t", 
+                        },
+                        "t_amb_min": {"type": "number", "required": true, 
+                            "description": "Minimum ambient temperature (measured at the vehicle) during the tests (evaluated based on the used datasets only)", 
+                            "units": "°C", 
+                        },
+                        "t_amb_max": {"type": "number", "required": true, 
+                            "description": "Maximum ambient temperature (measured at the vehicle) during the tests (evaluated based on the used datasets only) .", 
+                            "units": "°C", 
+                        },
+                        "t_amb_var": {"type": "number", "required": true, 
+                            "description": "Maximum variation of ambient temperature (measured at the vehicle) during the tests (evaluated based on the used datasets only).", 
+                            "units": "°C", 
+                        },
+                        "t_amb_tarmac": {"type": "number", "required": true, 
+                            "description": "Maximum temperature below which no documentation of tarmac conditions is necessary.", 
+                            "units": "°C", 
+                        },
+                    }
+                },
+            },
+        }</json>.Value
+    End Function
+
+
+    ''' <summary>creates defaults</summary>
+    ''' <remarks>See cJsonFile() constructor</remarks>
+    Sub New(Optional ByVal skipValidation As Boolean = False)
+        MyBase.New(BuildBody, skipValidation)
+        PopulateFields()
+    End Sub
+    ''' <summary>Reads from file or creates defaults</summary>
+    ''' <param name="inputFilePath">the fpath of the file to read data from</param>
+    Sub New(ByVal inputFilePath As String, Optional ByVal skipValidation As Boolean = False)
+        MyBase.New(inputFilePath, skipValidation)
+        PopulateFields()
+    End Sub
+    Sub New(ByVal foreignBody As JToken, Optional ByVal skipValidation As Boolean = False)
+        MyBase.New(foreignBody, skipValidation)
+        PopulateFields()
+    End Sub
+
+
+    Protected Overrides Function BodySchemaStr() As String
+        Return JSchemaStr()
+    End Function
+
+    ''' <exception cref="SystemException">includes all validation errors</exception>
+    ''' <param name="isStrictBody">when true, no additional json-properties allowed in the data, when nothing, use value from Header</param>
+    Protected Overrides Sub ValidateBody(ByVal isStrictBody As Boolean, ByVal validateMsgs As IList(Of String))
+        '' Check version
+        ''
+        Dim fromVersion = "1.0.0--"
+        Dim toVersion = "2.0.0--" ' The earliest pre-release.
+        If Not IsSemanticVersionsSupported(Me.FileVersion, fromVersion, toVersion) Then
+            validateMsgs.Add(format("Unsupported FileVersion({0}, was not in between [{1}, {2})", Me.FileVersion, fromVersion, toVersion))
+            Return
+        End If
+
+        '' Check schema
+        ''
+        Dim schema = JsonSchema.Parse(JSchemaStr(isStrictBody))
+        ValidateJson(Body, schema, validateMsgs)
+
+        If validateMsgs.Any() Then Return
+
+        '' Check others
+        ''
+    End Sub
+
+#Region "json props"
+    ' Processing params
+    Public rr_corr_factor As Double
+    Public accel_correction As Boolean = False
+    Public gradient_correction As Boolean = False
+    Public hz_out As Integer = 1
+    Public acc_corr_avg As Single
+    Public dist_float As Single
+    Public roh_air_ref As Single
+
+    ' Criteria
+    Public trigger_delta_x_max As Single
+    Public trigger_delta_y_max As Single
+    Public delta_head_max As Single
+    Public segruns_min_CAL As Integer
+    Public segruns_min_LS As Integer
+    Public segruns_min_HS As Integer
+    Public segruns_min_head_MS As Integer
+    Public delta_Hz_max As Single
+    Public delta_parallel_max As Single
+    Public leng_crit As Single
+    Public v_wind_avg_max_CAL As Single
+    Public v_wind_1s_max_CAL As Single
+    Public beta_avg_max_CAL As Single
+    Public v_wind_avg_max_LS As Single
+    Public v_wind_1s_max_LS As Single
+    Public v_veh_avg_max_LS As Single
+    Public v_veh_avg_min_LS As Single
+    Public v_veh_float_delta_LS As Single
+    Public tq_sum_float_delta_LS As Single
+    Public v_wind_avg_max_HS As Single
+    Public v_wind_1s_max_HS As Single
+    Public v_veh_avg_min_HS As Single
+    Public beta_avg_max_HS As Single
+    Public v_veh_1s_delta_HS As Single
+    Public tq_sum_1s_delta_HS As Single
+    Public delta_t_tyre_max As Single
+    Public delta_rr_corr_max As Single
+    Public t_amb_min As Single
+    Public t_amb_max As Single
+    Public t_amb_var As Single
+    Public t_amb_tarmac As Single
+
+
+    ''' <summary>Override it to set custome fields</summary>
+    Overrides Sub Store(ByVal fpath As String, Optional ByVal prefs As cPreferences = Nothing)
+        Dim g, b As Object
+        b = Me.Body
+
+        g = b("Processing")
+        g.roh_air_ref = Me.roh_air_ref
+        g.accel_correction = Me.accel_correction
+        g.gradient_correction = Me.gradient_correction
+        g.hz_out = Me.hz_out
+        g.rr_corr_factor = Me.rr_corr_factor
+        g.acc_corr_avg = Me.acc_corr_avg
+        g.dist_float = Me.dist_float
+
+        g = b("Validation")
+        g.trigger_delta_x_max = Me.trigger_delta_x_max
+        g.trigger_delta_y_max = Me.trigger_delta_y_max
+        g.delta_head_max = Me.delta_head_max
+        g.segruns_min_CAL = Me.segruns_min_CAL
+        g.segruns_min_LS = Me.segruns_min_LS
+        g.segruns_min_HS = Me.segruns_min_HS
+        g.segruns_min_head_MS = Me.segruns_min_head_MS
+        g.delta_Hz_max = Me.delta_Hz_max
+        g.delta_parallel_max = Me.delta_parallel_max
+
+        g.v_wind_avg_max_CAL = Me.v_wind_avg_max_CAL
+        g.v_wind_1s_max_CAL = Me.v_wind_1s_max_CAL
+        g.beta_avg_max_CAL = Me.beta_avg_max_CAL
+
+        g.leng_crit = Me.leng_crit
+
+        g.v_wind_avg_max_LS = Me.v_wind_avg_max_LS
+        g.v_wind_1s_max_LS = Me.v_wind_1s_max_LS
+        g.v_veh_avg_min_LS = Me.v_veh_avg_min_LS
+        g.v_veh_avg_max_LS = Me.v_veh_avg_max_LS
+        g.v_veh_float_delta_LS = Me.v_veh_float_delta_LS
+        g.tq_sum_float_delta_LS = Me.tq_sum_float_delta_LS
+
+        g.v_wind_avg_max_HS = Me.v_wind_avg_max_HS
+        g.v_wind_1s_max_HS = Me.v_wind_1s_max_HS
+        g.beta_avg_max_HS = Me.beta_avg_max_HS
+        g.v_veh_avg_min_HS = Me.v_veh_avg_min_HS
+        g.v_veh_1s_delta_HS = Me.v_veh_1s_delta_HS
+        g.tq_sum_1s_delta_HS = Me.tq_sum_1s_delta_HS
+
+        g.delta_t_tyre_max = Me.delta_t_tyre_max
+        g.delta_rr_corr_max = Me.delta_rr_corr_max
+        g.t_amb_var = Me.t_amb_var
+        g.t_amb_tarmac = Me.t_amb_tarmac
+        g.t_amb_max = Me.t_amb_max
+        g.t_amb_min = Me.t_amb_min
+
+        MyBase.Store(fpath, prefs)
+    End Sub
+
+    Private Sub PopulateFields()
+        Dim g, p As Object
+        p = Me.Body
+
+        g = p("Processing")
+        Me.rr_corr_factor = g("rr_corr_factor")
+        Me.accel_correction = g("accel_correction")
+        Me.gradient_correction = g("gradient_correction")
+        Me.hz_out = g("hz_out")
+        Me.roh_air_ref = g("roh_air_ref")
+        Me.acc_corr_avg = g("acc_corr_avg")
+        Me.dist_float = g("dist_float")
+
+
+        g = p("Validation")
+        Me.trigger_delta_x_max = g("trigger_delta_x_max")
+        Me.trigger_delta_y_max = g("trigger_delta_y_max")
+        Me.delta_head_max = g("delta_head_max")
+        Me.segruns_min_CAL = g("segruns_min_CAL")
+        Me.segruns_min_LS = g("segruns_min_LS")
+        Me.segruns_min_HS = g("segruns_min_HS")
+        Me.segruns_min_head_MS = g("segruns_min_head_MS")
+        Me.delta_Hz_max = g("delta_Hz_max")
+        Me.delta_parallel_max = g("delta_parallel_max")
+
+        Me.leng_crit = g("leng_crit")
+
+        Me.v_wind_avg_max_CAL = g("v_wind_avg_max_CAL")
+        Me.v_wind_1s_max_CAL = g("v_wind_1s_max_CAL")
+        Me.beta_avg_max_CAL = g("beta_avg_max_CAL")
+
+        Me.v_wind_avg_max_LS = g("v_wind_avg_max_LS")
+        Me.v_wind_1s_max_LS = g("v_wind_1s_max_LS")
+        Me.v_veh_avg_max_LS = g("v_veh_avg_max_LS")
+        Me.v_veh_avg_min_LS = g("v_veh_avg_min_LS")
+        Me.v_veh_float_delta_LS = g("v_veh_float_delta_LS")
+        Me.tq_sum_float_delta_LS = g("tq_sum_float_delta_LS")
+
+        Me.v_wind_avg_max_HS = g("v_wind_avg_max_HS")
+        Me.v_veh_avg_min_HS = g("v_veh_avg_min_HS")
+        Me.v_wind_1s_max_HS = g("v_wind_1s_max_HS")
+        Me.beta_avg_max_HS = g("beta_avg_max_HS")
+        Me.v_veh_1s_delta_HS = g("v_veh_1s_delta_HS")
+        Me.tq_sum_1s_delta_HS = g("tq_sum_1s_delta_HS")
+
+        Me.delta_t_tyre_max = g("delta_t_tyre_max")
+        Me.delta_rr_corr_max = g("delta_rr_corr_max")
+        Me.t_amb_var = g("t_amb_var")
+        Me.t_amb_tarmac = g("t_amb_tarmac")
+        Me.t_amb_max = g("t_amb_max")
+        Me.t_amb_min = g("t_amb_min")
+    End Sub
+
+#End Region ' json props
+
+End Class
diff --git a/CSE/IO/cJob.vb b/CSE/IO/cJob.vb
new file mode 100644
index 0000000000000000000000000000000000000000..f4ae487764179f88b5cf4bd8bef49b944b9d813e
--- /dev/null
+++ b/CSE/IO/cJob.vb
@@ -0,0 +1,435 @@
+Imports Newtonsoft.Json.Linq
+Imports Newtonsoft.Json.Schema
+
+Public Class cJob
+    Inherits cJsonFile
+
+    Protected Overrides Function HeaderOverlay() As JObject
+        Return JObject.Parse(<json>{
+                "Title": "vecto-cse JOB",
+                "FileVersion":  "1.0.0",
+           }</json>.Value)
+    End Function
+
+
+    ' Defaults specified here.
+    Protected Shared Function BuildBody() As JObject
+        Dim b As Object = New JObject()
+        b.vehicle_fpath = ""
+        b.ambient_fpath = ""
+        'b.Anemometer = Nothing  'JObject.Parse(<json>{'v_air_f':0, 'v_air_d': 0, beta_f':0, 'beta_d': 0}</json>)
+        b.calib_track_fpath = ""
+        b.calib_run_fpath = ""
+        b.coast_track_fpath = ""
+        b.low1_fpath = ""
+        b.high_fpath = ""
+        b.low2_fpath = ""
+        b.Criteria = New cCriteria().Body
+        Return b
+    End Function
+
+    ''' <param name="isStrictBody">when true, more no additionalProps accepted and fpaths must have correct extensions</param>
+    Public Shared Function JSchemaStr(Optional ByVal isStrictBody As Boolean = False) As String
+
+        Dim allowAdditionalProps_str As String = (Not isStrictBody).ToString.ToLower
+        Dim requireFPathExts = isStrictBody
+        Return <json>{
+            'title': "Schema for vecto-cse VEHICLE",
+            "type": "object", "additionalProperties": <%= allowAdditionalProps_str %>, 
+            "required": true,
+            "properties": {
+                "vehicle_fpath": {
+                    "type": ["null", "string"], 
+                    <%= IIf(requireFPathExts, "'pattern': '^\\s*$|\\.csveh(\\.json)?$', ", "") %>
+                    "description": "File-path to Vehicle file (*.csveh)", 
+                }, 
+                "Anemometer": {
+                    "type": "object", 
+                    "description": "The Anemometer calibration factors (floats).", 
+                    'default': {'v_air_f':1, 'v_air_d': 0, 'beta_f':1, 'beta_d': 0},
+                }, 
+                "ambient_fpath": {
+                    "type": ["null", "string"], 
+                    <%= IIf(requireFPathExts, "'pattern': '^\\s*$|\\.csamb$', ", "") %>
+                    "description": "File-path to the Ambient(Weather) file (*.csamb)", 
+                }, 
+                "calib_track_fpath": {
+                    "type": ["null", "string"], 
+                    <%= IIf(requireFPathExts, "'pattern': '^\\s*$|\\.csms$', ", "") %>
+                    "description": "File-path to Track-sections (*.csmsc).", 
+                }, 
+                "calib_run_fpath": {
+                    "type": ["null", "string"], 
+                    <%= IIf(requireFPathExts, "'pattern': '^\\s*$|\\.csdat$', ", "") %>
+                    "description": "File-path to a measurement-file (*.csdat)", 
+                }, 
+                "coast_track_fpath": {
+                    "type": ["null", "string"], 
+                    <%= IIf(requireFPathExts, "'pattern': '^\\s*$|\\.csms$', ", "") %>
+                    "description": "File-path to Track-sections (*.csmsc).", 
+                }, 
+                "low1_fpath": {
+                    "type": ["null", "string"], 
+                    <%= IIf(requireFPathExts, "'pattern': '^\\s*$|\\.csdat$', ", "") %>
+                    "description": "File-path to a measurement-file (*.csdat)", 
+                }, 
+                "high_fpath": {
+                    "type": ["null", "string"], 
+                    <%= IIf(requireFPathExts, "'pattern': '^\\s*$|\\.csdat$', ", "") %>
+                    "description": "File-path to a measurement-file (*.csdat)", 
+                }, 
+                "low2_fpath": {
+                    "type": ["null", "string"], 
+                    <%= IIf(requireFPathExts, "'pattern': '^\\s*$|\\.csdat$', ", "") %>
+                    "description": "File-path to a measurement-file (*.csdat)", 
+                }, 
+                "Criteria": <%= cCriteria.JSchemaStr(isStrictBody) %>,
+            }
+        }</json>.Value
+        '"": {
+        '    "type": "string", 
+        '    "required": true, 
+        '    "description": "", 
+        '}, 
+    End Function
+
+
+    ''' <summary>creates defaults</summary>
+    ''' <remarks>See cJsonFile() constructor</remarks>
+    Sub New(Optional ByVal skipValidation As Boolean = False)
+        MyBase.New(BuildBody, skipValidation)
+        PopulateFields()
+    End Sub
+    ''' <summary>Reads from file or creates defaults</summary>
+    ''' <param name="inputFilePath">the fpath of the file to read data from</param>
+    Sub New(ByVal inputFilePath As String, Optional ByVal skipValidation As Boolean = False)
+        MyBase.New(inputFilePath, skipValidation)
+        PopulateFields()
+    End Sub
+
+
+    Protected Overrides Function BodySchemaStr() As String
+        Return JSchemaStr()
+    End Function
+
+    ''' <param name="isStrictBody">when true, no additional json-properties allowed in the data, when nothing, use value from Header</param>
+    Protected Overrides Sub ValidateBody(ByVal isStrictBody As Boolean, ByVal validateMsgs As IList(Of String))
+        '' Check version
+        ''
+        Dim fromVersion = "1.0.0--"
+        Dim toVersion = "2.0.0--" ' The earliest pre-release.
+        If Not IsSemanticVersionsSupported(Me.FileVersion, fromVersion, toVersion) Then
+            validateMsgs.Add(format("Unsupported FileVersion({0}, was not in between [{1}, {2})", Me.FileVersion, fromVersion, toVersion))
+            Return
+        End If
+
+        '' Check schema
+        ''
+        Dim schema = JsonSchema.Parse(JSchemaStr(isStrictBody))
+        ValidateJson(Body, schema, validateMsgs)
+
+        If validateMsgs.Any() Then Return
+
+        '' Check others
+        ''
+    End Sub
+
+
+
+#Region "json props"
+    Public v_air_f As Double
+    Public v_air_d As Double
+    Public beta_f As Double
+    Public beta_d As Double
+
+    Private Sub PopulateFields()
+        Dim anem = PropOrDefault(".Anemometer")
+        Me.v_air_f = anem("v_air_f")
+        Me.v_air_d = anem("v_air_d")
+        Me.beta_f = anem("beta_f")
+        Me.beta_d = anem("beta_d")
+    End Sub
+
+    ''' <summary>Override it to set custome fields</summary>
+    Overrides Sub Store(ByVal fpath As String, Optional ByVal prefs As cPreferences = Nothing)
+        Dim b As Object = Me.Body
+
+        b.v_air_f = Me.v_air_f
+        b.v_air_d = Me.v_air_d
+        b.beta_f = Me.beta_f
+        b.beta_d = Me.beta_d
+
+        MyBase.Store(fpath, prefs)
+    End Sub
+
+
+    Public Property vehicle_fpath As String
+        Get
+            Return getRootedPath(Me.Body("vehicle_fpath"), Prefs.workingDir)
+        End Get
+        Set(ByVal value As String)
+            value = getAnySubPath(value, Prefs.workingDir)
+
+            '' NOTE: Early-binding makes schema-type always a 'string', and will fail later!
+            If value Is Nothing Then Me.Body("vehicle_fpath") = Nothing Else Me.Body("vehicle_fpath") = value
+        End Set
+    End Property
+
+
+
+    Public Property ambient_fpath As String
+        Get
+            Return getRootedPath(Me.Body("ambient_fpath"), Prefs.workingDir)
+        End Get
+        Set(ByVal value As String)
+            value = getAnySubPath(value, Prefs.workingDir)
+
+            '' NOTE: Early-binding makes schema-type always a 'string', and will fail later!
+            If value Is Nothing Then Me.Body("ambient_fpath") = Nothing Else Me.Body("ambient_fpath") = value
+        End Set
+    End Property
+    Public Property calib_track_fpath As String
+        Get
+            Return getRootedPath(Me.Body("calib_track_fpath"), Prefs.workingDir)
+        End Get
+        Set(ByVal value As String)
+            value = getAnySubPath(value, Prefs.workingDir)
+
+            '' NOTE: Early-binding makes schema-type always a 'string', and will fail later!
+            If value Is Nothing Then Me.Body("calib_track_fpath") = Nothing Else Me.Body("calib_track_fpath") = value
+        End Set
+    End Property
+    Public Property calib_run_fpath As String
+        Get
+            Return getRootedPath(Me.Body("calib_run_fpath"), Prefs.workingDir)
+        End Get
+        Set(ByVal value As String)
+            value = getAnySubPath(value, Prefs.workingDir)
+
+            '' NOTE: Early-binding makes schema-type always a 'string', and will fail later!
+            If value Is Nothing Then Me.Body("calib_run_fpath") = Nothing Else Me.Body("calib_run_fpath") = value
+        End Set
+    End Property
+
+    Public Property coast_track_fpath As String
+        Get
+            Return getRootedPath(Me.Body("coast_track_fpath"), Prefs.workingDir)
+        End Get
+        Set(ByVal value As String)
+            value = getAnySubPath(value, Prefs.workingDir)
+
+            '' NOTE: Early-binding makes schema-type always a 'string', and will fail later!
+            If value Is Nothing Then Me.Body("coast_track_fpath") = Nothing Else Me.Body("coast_track_fpath") = value
+        End Set
+    End Property
+    Public Property low1_fpath As String
+        Get
+            Return getRootedPath(Me.Body("low1_fpath"), Prefs.workingDir)
+        End Get
+        Set(ByVal value As String)
+            value = getAnySubPath(value, Prefs.workingDir)
+
+            '' NOTE: Early-binding makes schema-type always a 'string', and will fail later!
+            If value Is Nothing Then Me.Body("low1_fpath") = Nothing Else Me.Body("low1_fpath") = value
+        End Set
+    End Property
+    Public Property high_fpath As String
+        Get
+            Return getRootedPath(Me.Body("high_fpath"), Prefs.workingDir)
+        End Get
+        Set(ByVal value As String)
+            value = getAnySubPath(value, Prefs.workingDir)
+
+            '' NOTE: Early-binding makes schema-type always a 'string', and will fail later!
+            If value Is Nothing Then Me.Body("high_fpath") = Nothing Else Me.Body("high_fpath") = value
+        End Set
+    End Property
+    Public Property low2_fpath As String
+        Get
+            Return getRootedPath(Me.Body("low2_fpath"), Prefs.workingDir)
+        End Get
+        Set(ByVal value As String)
+            value = getAnySubPath(value, Prefs.workingDir)
+
+            '' NOTE: Early-binding makes schema-type always a 'string', and will fail later!
+            If value Is Nothing Then Me.Body("low2_fpath") = Nothing Else Me.Body("low2_fpath") = value
+        End Set
+    End Property
+
+    Public ReadOnly Property coasting_fpaths As String()
+        Get
+            Return {low1_fpath, high_fpath, low2_fpath}
+        End Get
+    End Property
+
+
+    ''' <summary>Do not invoke this method in vain...</summary>
+    Property Criteria As cCriteria
+        Get
+            Return New cCriteria(Me.Body("Criteria"), True)
+        End Get
+        Set(ByVal value As cCriteria)
+            Me.Body("Criteria") = value.Body
+        End Set
+    End Property
+
+
+
+    ' Function for reading the jobfile
+    Public Sub fReadOldJobFile(ByVal jobFile As String)
+        ' Declarations
+        Dim i As Integer
+        Dim Line() As String
+        Dim crt As Object = Me.Criteria
+
+
+        Using FileInVECTO As New cFile_V3
+            ' Open the jobfile
+            FileInVECTO.OpenReadWithEx(jobFile)
+
+            ' Read the data from the jobfile
+            vehicle_fpath = FileInVECTO.ReadLine(0)
+            ambient_fpath = FileInVECTO.ReadLine(0)
+
+            Line = FileInVECTO.ReadLine
+            Dim factors(3) As Single
+            For i = 0 To UBound(factors) - 1
+                factors(i) = Line(i)
+            Next i
+            Job.v_air_f = factors(0)
+            Job.v_air_d = factors(1)
+            Job.beta_f = factors(2)
+            Job.beta_d = factors(3)
+
+            ' Calibration test files
+            calib_track_fpath = FileInVECTO.ReadLine(0)
+            calib_run_fpath = FileInVECTO.ReadLine(0)
+
+            ' Test run files
+            coast_track_fpath = FileInVECTO.ReadLine(0)
+            crt.rr_corr_factor = FileInVECTO.ReadLine(0)
+
+            low1_fpath = FileInVECTO.ReadLine(0)
+            high_fpath = FileInVECTO.ReadLine(0)
+            low2_fpath = FileInVECTO.ReadLine(0)
+
+            ' Appropriate the Checkboxes
+            ' Acceleration Correction
+            Line = FileInVECTO.ReadLine
+            crt.accel_correction = CBool(Line(0))
+            'CSEMain.CheckBoxAcc.Checked = False
+
+            ' Gradient correction
+            Line = FileInVECTO.ReadLine
+            crt.gradient_correction = CBool(Line(0))
+            'CSEMain.CheckBoxGrd.Checked = False
+
+            ' Output sequence
+            Line = FileInVECTO.ReadLine
+            If Line(0) = 1 OrElse Line(0) = 100 Then
+                crt.hz_out = Line(0)
+            Else
+                crt.hz_out = 1
+            End If
+
+            ' Read the parameters
+            Try
+                i = 0
+                Do While Not FileInVECTO.EndOfFile
+                    ' Gradient correction
+                    Line = FileInVECTO.ReadLine
+                    i += 1
+                    If IsNumeric(Line(0)) Then
+                        Select Case i
+                            Case 1 ' TBDeltaTTireMax
+                                crt.delta_t_tyre_max = Line(0)
+                            Case 2 ' TBDeltaRRCMax.Text
+                                crt.delta_rr_corr_max = Line(0)
+                            Case 3 ' TBTambVar
+                                crt.t_amb_var = Line(0)
+                            Case 4 ' TBTambTamac
+                                crt.t_amb_tarmac = Line(0)
+                            Case 5 ' TBTambMax
+                                crt.t_amb_max = Line(0)
+                            Case 6 ' TBTambMin
+                                crt.t_amb_min = Line(0)
+                            Case 7 ' TBContHz
+                                crt.delta_Hz_max = Line(0)
+                            Case 8 ' TBRhoAirRef
+                                crt.roh_air_ref = Line(0)
+                            Case 9 ' TBAveSecAcc
+                                crt.acc_corr_avg = Line(0)
+                            Case 10 ' TBDeltaHeadMax
+                                crt.delta_parallel_max = Line(0)
+                            Case 11 ' TBContSecL
+                                crt.trigger_delta_x_max = Line(0)
+                            Case 12 ' TBLRec
+                                crt.trigger_delta_y_max = Line(0)
+                            Case 13 ' TBContAng
+                                crt.delta_head_max = Line(0)
+                            Case 14 ' TBNSecAnz
+                                crt.segruns_min_CAL = Line(0)
+                            Case 15 ' TBNSecAnzLS
+                                crt.segruns_min_LS = Line(0)
+                            Case 16 ' TBNSecAnzHS
+                                crt.segruns_min_HS = Line(0)
+                            Case 17 ' TBMSHSMin
+                                crt.segruns_min_head_MS = Line(0)
+                            Case 18 ' TBDistFloat
+                                crt.dist_float = Line(0)
+                            Case 19 ' TBvWindAveCALMax
+                                crt.v_wind_avg_max_CAL = Line(0)
+                            Case 20 ' TBvWind1sCALMax
+                                crt.v_wind_1s_max_CAL = Line(0)
+                            Case 21 ' TBBetaAveCALMax
+                                crt.beta_avg_max_CAL = Line(0)
+                            Case 22 ' TBLengCrit
+                                crt.leng_crit = Line(0)
+                            Case 23 ' TBvWindAveLSMax
+                                crt.v_wind_avg_max_LS = Line(0)
+                            Case 24 ' TBvWind1sLSMin
+                                crt.v_wind_1s_max_LS = Line(0)
+                            Case 25 ' TBvVehAveLSMax
+                                crt.v_veh_avg_max_LS = Line(0)
+                            Case 26 ' TBvVehAveLSMin
+                                crt.v_veh_avg_min_LS = Line(0)
+                            Case 27 ' TBvVehFloatD
+                                crt.v_veh_float_delta_LS = Line(0)
+                            Case 28 ' TBTqSumFloatD
+                                crt.tq_sum_float_delta_LS = Line(0)
+                            Case 29 ' TBvWindAveHSMax
+                                crt.v_wind_avg_max_HS = Line(0)
+                            Case 30 ' TBvWind1sHSMax
+                                crt.v_wind_1s_max_HS = Line(0)
+                            Case 31 ' TBvVehAveHSMin
+                                crt.v_veh_avg_min_HS = Line(0)
+                            Case 32 ' TBBetaAveHSMax
+                                crt.beta_avg_max_HS = Line(0)
+                            Case 33 ' TBvVeh1sD
+                                crt.v_veh_1s_delta_HS = Line(0)
+                            Case 34 ' TBTq1sD
+                                crt.tq_sum_1s_delta_HS = Line(0)
+                        End Select
+                    Else
+                        Throw New ArgumentException(format("The given value in the Job-file({0}) at position({1}) is not a number!", jobFile, i))
+                    End If
+                Loop
+            Catch ex As Exception
+                Throw New ArgumentException("Invalid value in the job file at position: " & i)
+            End Try
+
+            ' Look if enough parameters are given
+            If i < 34 Then
+                Throw New ArgumentException(format("Premature ending of the Job-file({0})!", jobFile))
+            End If
+
+
+        End Using
+
+        F_Main.UI_PopulateFromJob()
+        F_Main.UI_PopulateFromCriteria()
+    End Sub
+
+#End Region ' "json props"
+
+End Class
diff --git a/CSE/IO/cJsonFile.vb b/CSE/IO/cJsonFile.vb
index ec9b366ec04df47ac4404c44f69911c94e1d1ab1..bb012c92fb6501efca6ef5539826a294f9fab4ae 100644
--- a/CSE/IO/cJsonFile.vb
+++ b/CSE/IO/cJsonFile.vb
@@ -10,8 +10,17 @@ Imports System.Globalization
 ''' and delegates the Body-building and its validation almost entirely to sub-classes.
 ''' </summary>
 ''' <remarks>
-''' The /Header/Strict boolean controls whether to allow additional-properties in Body, 
-''' so it can be used to debug input-files by manually setting it to 'true' with a text-editor.
+''' JSON files do not support comments, but help is provided by their accompanying json-schemas (see below).  
+''' They are splitted in two sections, Header and Body. The Header contains administrational fields or fields 
+''' related to the actual parsing of the file.
+''' 
+''' Of interest are the following 2 of Header’s properties:
+''' •	/Header/StrictBody: Controls whether the application will accept any unknown body-properties 
+'''     while reading the file. Set it to true to debug malformed input-files, ie to detect accidentally 
+'''     renamed properties.
+''' •	/Header/BodySchema: The JSON-schema of the body will be placed HERE, for documenting file.  
+'''     When true, it is always replaced by the Body's schema on the next save. When false, it overrides 
+''' application's choice and is not replaced ever.
 ''' </remarks>
 Public MustInherit Class cJsonFile
     Implements ICloneable
@@ -27,7 +36,9 @@ Public MustInherit Class cJsonFile
                 "FileVersion":  null,
                 "AppVersion":   null,
                 "ModifiedDate": null,
-                "StrictBody":   false,
+                "CreatedBy": null,
+                "StrictBody":   null,
+                "BodySchema":   null,
             },
             "Body": null
         }</json>.Value
@@ -61,19 +72,26 @@ Public MustInherit Class cJsonFile
                             "description": "Last-modification date",
                             "required": <%= requireAll %>,
                         },
+                        "CreatedBy": {
+                            "type": "string",
+                            "description": "The persons who executed the application to produce this file, fetched from the license-file.",
+                            "required": <%= requireAll %>,
+                        },
                         "StrictBody": {
                             "title": "Validate body strictly",
-                            "type": "boolean",
-                            "description": "When True, the 'Body' does not accept unknown properties.",
-                            "default": false,
+                            "type": ["boolean", "null"],
+                            "description": "If set to true, the application will not accept any unknown body-properties while reading this file.
+When null/property missing, the application decides what to do.
+It is useful for debugging malformed input-files, ie to detect accidentally renamed properties.",
+                            "default": null,
                         },
                         "BodySchema": {
                             "title": "Body schema",
                             "type": ["boolean", "object", "null"],
-                            "description": "Body schema is included HERE, for documenting file. \n _
-                              When null/property missing, application decides what to do. \n _
-                              When True, it is always replaced by the Body's schema on the next save.\n _
-                              When False, it overrides Application's choice and is not replaced ever.", 
+                            "description": "Body schema is included HERE, for documenting file. 
+When null/property missing, the application decides what to do. 
+When True, it is always replaced by the Body's schema on the next save.
+When False, it overrides Application's choice and is not replaced ever.", 
                             "default": null,
                         },
                     }
@@ -87,13 +105,7 @@ Public MustInherit Class cJsonFile
     ''' <remarks>The result json must be valid overlaying this header.</remarks>
     Protected MustOverride Function HeaderOverlay() As JObject
 
-    ''' <summary>When a instance_with_defauls is Created, it gets its /Body from this method</summary>
-    ''' <remarks>The result json must be valid after replacing with this body.</remarks>
-    Protected MustOverride Function BodyContent() As JObject
-
-    ''' <summary>When a instance_with_defauls is Created, it gets its /Body from this method</summary>
-    ''' <remarks>The result json must be valid after replacing with this body.</remarks>
-    Public MustOverride Function BodySchema() As JObject
+    Protected MustOverride Function BodySchemaStr() As String
 
     ''' <summary>Invoked by this class for subclasses to validate file</summary>
     ''' <remarks>To signify validation-failure it can throw an exception or add err-messages into the supplied list</remarks>
@@ -109,33 +121,40 @@ Public MustInherit Class cJsonFile
     ' ''' <summary>Cached instance from 'Content', used (tentatively) for perfomance.</summary>
     'Public ReadOnly Body As JObject
 
-    ''' <summary>Reads from a file (aka "Load") or creates an instance with defaults
-    ''' 
-    ''' When reading, it optionally checks version and validates its body with ValidateVersionAndBody().
-    ''' When defaulting, the resulted file-version is retrieved from 'CodeVersion' prop and the body from 'BodyStr' prop.
-    ''' </summary>
-    ''' <param name="inputFilePath">If unspecifed, create instance_with_defaults, otherwise read json-contents from file</param>
+
+
+    ''' <summary>Reads from a JSON-file (aka "Load")</summary>
     ''' <param name="skipValidation">When false (the default), validates json-contents in both cases (reading or creating-defaults)</param>
-    ''' <remarks></remarks>
-    Protected Sub New(Optional ByVal inputFilePath As String = Nothing, Optional ByVal skipValidation As Boolean = False)
+    ''' <remarks>It optionally checks version and validates its body with ValidateVersionAndBody().</remarks>
+    Protected Sub New(ByVal inputFilePath As String, Optional ByVal skipValidation As Boolean = False)
         Dim strictHeader = True
 
-        If (inputFilePath Is Nothing) Then
-            Dim jstr = JsonStr_FileContents()
-            Me.Content = JObject.Parse(jstr)
-            'Me.Header = Content("Header")
-            UpdateHeader()
+        strictHeader = False   '' Try to read even bad headers.
+        logme(4, False, format("Reading JSON-file({0})...", inputFilePath))
 
-            Me.Content("Body") = Me.BodyContent
-            'Me.Body = Content("Body")
-        Else
-            strictHeader = False   '' Try to read even bad headers.
-            fInfWarErr(4, False, format("Reading JSON-file({0})...", inputFilePath))
+        Me.Content = ReadJsonFile(inputFilePath)
+        'Me.Header = Content("Header")
+        'Me.Body = Content("Body")
 
-            Me.Content = ReadJsonFile(inputFilePath)
-            'Me.Header = Content("Header")
-            'Me.Body = Content("Body")
+        If Not skipValidation Then
+            Me.Validate(strictHeader)
         End If
+    End Sub
+
+    ''' <summary>Creates an instance with defaults</summary>
+    ''' <param name="body">The /Body content with defaults</param>
+    ''' <param name="skipValidation">When false (the default), validates json-contents in both cases (reading or creating-defaults)</param>
+    ''' <remarks>When defaulting, the resulted file-version is retrieved from 'CodeVersion' prop and the body from 'BodyStr' prop.</remarks>
+    Protected Sub New(ByVal body As JToken, Optional ByVal skipValidation As Boolean = False)
+        Dim strictHeader = True
+
+        Dim jstr = JsonStr_FileContents()
+        Me.Content = JObject.Parse(jstr)
+        'Me.Header = Content("Header")
+        UpdateHeader()
+
+        Me.Content("Body") = body
+        'Me.Body = Content("Body")
 
         If Not skipValidation Then
             Me.Validate(strictHeader)
@@ -143,22 +162,37 @@ Public MustInherit Class cJsonFile
     End Sub
 
     ''' <summary>Validates and Writing to the config file</summary>
-    Sub Store(ByVal fpath As String)
-        Me.UpdateHeader()
+    Overridable Sub Store(ByVal fpath As String, Optional ByVal prefs As cPreferences = Nothing)
+        logme(4, False, format("Writting JSON-file({0})...", fpath))
+        Me.UpdateHeader(prefs)
 
         Me.Validate(Me.StrictBody)
         WriteJsonFile(fpath, Content)
     End Sub
 
     ''' <summary>Maintains header's standard props and overlays any props from subclass.</summary>
-    ''' <remarks>Note that it is invoked early enough, before the new file has acquired a Body.</remarks>
-    Sub UpdateHeader()
+    ''' <param name="prefs">It is there to be used when storing cPreferences themselfs.</param>
+    ''' <remarks>Note that it is invoked early enough, before the new file has acquired a Body and before AppPreferences exist(!).</remarks>
+    Sub UpdateHeader(Optional ByVal prefs As cPreferences = Nothing)
+        If prefs Is Nothing Then prefs = CSE.Prefs
         Dim h As JObject = Me.Header
 
         h("ModifiedDate") = DateTime.Now.ToString(dateFrmt)
+
+        '' Decide whether to add username in "CreatedBy".
+        ''
+        Dim username = ""
+        If prefs Is Nothing OrElse Not prefs.hideUsername Then
+            username = System.Security.Principal.WindowsIdentity.GetCurrent().Name & "@"
+        End If
+        h("CreatedBy") = format("{0}{1}(lic: {2})", username, Lic.LicString, Lic.GUID)
+
         h("AppVersion") = AppVers
+
+        '' Ensure StrictBody element always there.
+        
         If h("StrictBody") Is Nothing Then
-            h("StrictBody") = False
+            h("StrictBody") = Nothing
         End If
 
         '' Decide whether to include body-schema in header (for documenting file),
@@ -171,13 +205,13 @@ Public MustInherit Class cJsonFile
         Dim bodySchema = h("BodySchema")
         If bodySchema IsNot Nothing AndAlso bodySchema.Type = JTokenType.Boolean Then
             isIncludeSchema = bodySchema
-        ElseIf AppPreferences IsNot Nothing Then
-            isIncludeSchema = AppPreferences.IncludeSchemas
+        ElseIf prefs IsNot Nothing Then
+            isIncludeSchema = prefs.includeSchemas
         Else
             isIncludeSchema = False
         End If
         If isIncludeSchema Then
-            h("BodySchema") = Me.BodySchema
+            h("BodySchema") = New JRaw(Me.BodySchemaStr)
         ElseIf bodySchema Is Nothing Then
             h("BodySchema") = Nothing
         End If
@@ -191,7 +225,9 @@ Public MustInherit Class cJsonFile
 
     ''' <exception cref="FormatException">includes all validation errors</exception>
     ''' <param name="strictHeader">when false, relaxes Header's schema (used on Loading to be more accepting)</param>
-    Friend Sub Validate(Optional ByVal strictHeader As Boolean = False)
+    ''' <param name="prefs">It is there just to be used when storing cPreferences themselfs.</param>
+    Friend Sub Validate(Optional ByVal strictHeader As Boolean = False, Optional ByVal prefs As cPreferences = Nothing)
+        If prefs Is Nothing Then prefs = CSE.Prefs
         Dim validateMsgs As IList(Of String) = New List(Of String)
 
         Dim fileSchema = JsonSchema.Parse(JSchemaStr_Header(strictHeader))
@@ -205,9 +241,7 @@ Public MustInherit Class cJsonFile
         Dim dummy = New cSemanticVersion(Me.FileVersion) '' Just to ensure its syntax.
 
         '' Validate Body by subclass
-        Dim hsb = Me.Header("StrictBody")
-        Dim strictBody As Boolean = IIf(hsb Is Nothing, AppPreferences.StrictBodies, hsb)
-        Me.ValidateBody(strictBody, validateMsgs)
+        Me.ValidateBody(Me.StrictBody, validateMsgs)
 
         If (validateMsgs.Any()) Then
             Throw New FormatException(format("Validating /Body failed due to: {0}", String.Join(vbCrLf, validateMsgs)))
@@ -227,12 +261,31 @@ Public MustInherit Class cJsonFile
         If obj Is Nothing OrElse Not Me.GetType().Equals(obj.GetType()) Then
             Return False
         Else
-            Return JToken.DeepEquals(Me.Content, DirectCast(obj, cJsonFile).Content)
+            Dim oj As cJsonFile = DirectCast(obj, cJsonFile)
+            If Not JToken.DeepEquals(Me.Body, oj.Body) Then Return False
+
+            '' Compare Headers without the 'ModifiedDate' field 
+            '' which would undoublfully different each time.
+            Dim mh As New JObject(Me.Header)
+            Dim oh As New JObject(oj.Header)
+
+            mh.Remove("ModifiedDate")
+            oh.Remove("ModifiedDate")
+            Return JToken.DeepEquals(mh, oh)
         End If
     End Function
 
-    ''' <summary>Reads value found by XPath and if notinhg there, fetches default-value schema.</summary>
-    ''' <param name="propPath">The JSON.net's XPath for a Body property, including the starting dot('.').
+    ''' <param name="propPath">The JSON.net's XPath for a Body property, with or without a starting dot('.').</param>
+    Public Function PropDefault(ByVal propPath As String) As JToken
+        If Not propPath.StartsWith(".") Then
+            propPath = "." & propPath
+        End If
+        Dim schemaPath = propPath.Replace(".", ".properties.")
+        Return Me.BodySchema.SelectToken(schemaPath & ".default")
+    End Function
+
+    ''' <summary>Reads value found by XPath and if nothing there, fetches default-value schema.</summary>
+    ''' <param name="propPath">The JSON.net's XPath for a Body property, which must start with a starting dot('.')!!!
     ''' 
     ''' Examples:
     '''   PROP REQUESTED                     'propPath' ARGUMENT
@@ -241,7 +294,7 @@ Public MustInherit Class cJsonFile
     '''   /Body/someGroup/somePropName   --> .someGroup.somePropName'.  
     ''' </param>
     ''' <remarks>Used by sublasses to implement Propety-Get with defaults when non-existent</remarks>
-    Protected Function BodyGetter(ByVal propPath As String) As JToken
+    Protected Function PropOrDefault(ByVal propPath As String) As JToken
         Dim value As JToken = Me.Body.SelectToken(propPath)
         If value Is Nothing Then  '' No prop existed
             '' Return a default from schema (if any).
@@ -253,13 +306,24 @@ Public MustInherit Class cJsonFile
         End If
     End Function
 
+    Private _BodySchema As JObject
+    Public ReadOnly Property BodySchema As JObject
+        Get
+            If _BodySchema Is Nothing Then
+                _BodySchema = JObject.Parse(Me.BodySchemaStr)
+            End If
+            Return _BodySchema
+        End Get
+    End Property
+
+
 #Region "json props"
-    Protected ReadOnly Property Header() As JObject
+    Public ReadOnly Property Header() As JObject
         Get
             Return Me.Content("Header")
         End Get
     End Property
-    Protected ReadOnly Property Body() As JObject
+    Public ReadOnly Property Body() As JObject
         Get
             Return Me.Content("Body")
         End Get
@@ -289,12 +353,18 @@ Public MustInherit Class cJsonFile
 
     Public ReadOnly Property StrictBody As Boolean
         Get
-            Dim value = Me.Body("StrictBody")
-            Return IIf(value Is Nothing OrElse value.Type = JTokenType.Null, False, value)
+            Dim value = False
+            Dim jt = Me.Header("StrictBody")
+            If jt IsNot Nothing AndAlso jt.Type <> JTokenType.Null Then
+                value = jt
+            ElseIf Prefs IsNot Nothing Then
+                value = Prefs.strictBodies
+            End If
+            Return value
         End Get
     End Property
 
-    '' NO, logic behind it more complex, see UpdateHeader() instead.
+    '' NO, logic behind it too complex, see UpdateHeader() instead.
     'Public ReadOnly Property BodySchema As Boolean
     '    Get
     '        Dim value = Me.Body("BodySchema")
diff --git a/CSE/IO/cPreferences.vb b/CSE/IO/cPreferences.vb
index 9fc244aff1ad187c03a975cca11e8c97eab1d227..803fdf194c63063a6f5c9397335b24cf49082b21 100644
--- a/CSE/IO/cPreferences.vb
+++ b/CSE/IO/cPreferences.vb
@@ -14,7 +14,7 @@ Public Class cPreferences
     End Function
 
     ' Defaults specified here.
-    Protected Overrides Function BodyContent() As JObject
+    Protected Shared Function BuildBody() As JObject
         '' Return empty body since all proprs are optional.
         '' They will become concrete on the 1st store.
         Return New JObject()
@@ -27,13 +27,9 @@ Public Class cPreferences
         '    }</json>.Value)
     End Function
 
-    Public Overrides Function BodySchema() As JObject
-        Return JObject.Parse(JSchemaStr())
-    End Function
-
-    ''' <param name="allowAdditionalProps">when false, more strict validation</param>
-    Public Shared Function JSchemaStr(Optional ByVal allowAdditionalProps As Boolean = True) As String
-        Dim allowAdditionalProps_str As String = IIf(allowAdditionalProps, "true", "false")
+    ''' <param name="isStrictBody">when false, more strict validation</param>
+    Public Shared Function JSchemaStr(Optional ByVal isStrictBody As Boolean = False) As String
+        Dim allowAdditionalProps_str As String = (Not isStrictBody).ToString.ToLower
         Return <json>{
             "title": "Schema for vecto-cse PREFERENCES",
             "type": "object", "additionalProperties": <%= allowAdditionalProps_str %>, 
@@ -55,7 +51,7 @@ Public Class cPreferences
                     "title": "Log-file's limit",
                     "type": "integer",
                     "minimum": 0,
-                    "default": 10,
+                    "default": 2,
                     "description": "Allowed Log-file size limit [MiB].",
                 }, 
                 "logLevel": {
@@ -63,8 +59,8 @@ Public Class cPreferences
                     "type": "integer",
                     "minimum": 0,
                     "maximum": 10, "exclusiveMaximum": true,
-                    "default": 5,
-                    "description": "Sets the threshold(Level) below from which log-messages are skipped from the log-window.
+                    "default": 2,
+                    "description": "Sets the threshold(Level) above (inclusive) from which log-messages are shown in the log-window. 
     0     : All
     3-7   : No infos
     8     : No warnings
@@ -80,18 +76,25 @@ Public Class cPreferences
                     "title": "Strict Bodies",
                     "type": "boolean",
                     "default": false,
-                    "description": "Controls whether unknown body-properties are accepted when reading JSON-files. 
-It is useful for debugging malformed input-files, ie to detect 
-accidentally renamed properties.
-Each file can override it by setting its /Header/StrictBody property.",
+                    "description": "If set to true, the application will not accept any unknown body-properties when reading JSON-files. 
+It is useful for debugging malformed input-files, ie to detect accidentally renamed properties.
+Each file can override it by setting its `/Header/StrictBody` property.",
                 }, 
                 "includeSchemas": {
                     "title": "Include Schemas",
                     "type": "boolean",
                     "default": false,
-                    "description": "Controls whether to self-document JSON-files by populating their '/Header/BodySchema' property.
-Each file can override it by setting its '/Header/BodySchema' property to false/true.",
+                    "description": "When set to true the JSON-files are self-documented by 
+populating their `/Header/BodySchema` property.  Each file can override it by 
+setting its `/Header/BodySchema` property to false/true.",
                 }, 
+                "hideUsername": {
+                    "title": "Hide Username",
+                    "type": "boolean",
+                    "default": false,
+                    "description": "When true, the name of the user running the application will not be written
+in the `/Header/CreatedBy` property of JSON-files, for protecting its privacy.", 
+                },
             }
         }</json>.Value
     End Function
@@ -99,17 +102,25 @@ Each file can override it by setting its '/Header/BodySchema' property to false/
 
 
 
-    ''' <summary>Reads from file or creates defaults</summary>
-    ''' <param name="inputFilePath">If unspecifed, default prefs used, otherwise data read from file</param>
+    ''' <summary>creates defaults</summary>
     ''' <remarks>See cJsonFile() constructor</remarks>
-    Sub New(Optional ByVal inputFilePath As String = Nothing, Optional ByVal skipValidation As Boolean = False)
+    Sub New(Optional ByVal skipValidation As Boolean = False)
+        MyBase.New(BuildBody, skipValidation)
+    End Sub
+    ''' <summary>Reads from file or creates defaults</summary>
+    ''' <param name="inputFilePath">the fpath of the file to read data from</param>
+    Sub New(ByVal inputFilePath As String, Optional ByVal skipValidation As Boolean = False)
         MyBase.New(inputFilePath, skipValidation)
     End Sub
 
 
+    Protected Overrides Function BodySchemaStr() As String
+        Return JSchemaStr()
+    End Function
+
     ''' <exception cref="SystemException">includes all validation errors</exception>
-    ''' <param name="strictBody">when True, no additional json-properties allowed in the data, when nothing, use value from Header</param>
-    Protected Overrides Sub ValidateBody(ByVal strictBody As Boolean, ByVal validateMsgs As IList(Of String))
+    ''' <param name="isStrictBody">when True, no additional json-properties allowed in the data, when nothing, use value from Header</param>
+    Protected Overrides Sub ValidateBody(ByVal isStrictBody As Boolean, ByVal validateMsgs As IList(Of String))
         '' Check version
         ''
         Dim fromVersion = "1.0.0--"
@@ -121,7 +132,7 @@ Each file can override it by setting its '/Header/BodySchema' property to false/
 
         '' Check schema
         ''
-        Dim schema = JsonSchema.Parse(JSchemaStr(Not strictBody))
+        Dim schema = JsonSchema.Parse(JSchemaStr(isStrictBody))
         ValidateJson(Me.Body, schema, validateMsgs)
     End Sub
 
@@ -131,62 +142,20 @@ Each file can override it by setting its '/Header/BodySchema' property to false/
 #Region "json props"
     Public Property workingDir As String
         Get
-            Dim value As String = Me.Body("workingDir")
-            If value Is Nothing OrElse String.IsNullOrWhiteSpace(value) Then
-                Return MyPath
-            ElseIf IO.Path.IsPathRooted(value) Then
-                Return value
-            Else
-                Return joinPaths(MyPath, value)
-            End If
+            Return getRootedPath(Me.Body("workingDir"), MyPath)
         End Get
         Set(ByVal value As String)
-            If value IsNot Nothing Then
-                '' Convert emtpy-paths into MyPath and store them as null.
-                ''
-                value = value.Trim()
-                If value.Length = 0 Then
-                    value = Nothing
-                Else
-                    '' Convert MyPath-prefixed paths into relative ones.
-                    ''
-                    Dim myPlainPath = IO.Path.GetFullPath(StripBackslash(MyPath))
-                    value = IO.Path.GetFullPath(value)
-                    If value.StartsWith(myPlainPath, StringComparison.OrdinalIgnoreCase) Then
-                        value = value.Substring(myPlainPath.Length)
-                        If (value.First = "\"c) Then
-                            value = value.Substring(1)
-                        End If
-                        If (value.Last <> "\"c) Then
-                            value = value & "\"
-                        End If
-
-                        If value.Length = 1 Then
-                            value = Nothing
-                        End If
-                    End If
-
-                    '' Store MyPath as null.
-                    ''
-                    If String.Equals(value, MyPath, StringComparison.OrdinalIgnoreCase) Then
-                        value = Nothing
-                    End If
-                End If
-            End If
-
-            '' NOTE: Early-binding makes Nulls end-up as 'string' schema-type.
+            value = getAnySubPath(value, MyPath)
+
+            '' NOTE: Early-binding makes schema-type always a 'string', and will fail later!
             ''
-            If value Is Nothing Then
-                Me.Body("workingDir") = Nothing
-            Else
-                Me.Body("workingDir") = value
-            End If
+            If value Is Nothing Then Me.Body("workingDir") = Nothing Else Me.Body("workingDir") = value
         End Set
     End Property
 
     Public Property writeLog As Boolean
         Get
-            Return BodyGetter(".writeLog")
+            Return PropOrDefault(".writeLog")
         End Get
         Set(ByVal value As Boolean)
             Me.Body("writeLog") = value
@@ -195,7 +164,7 @@ Each file can override it by setting its '/Header/BodySchema' property to false/
 
     Public Property logSize As Integer
         Get
-            Return BodyGetter(".logSize")
+            Return PropOrDefault(".logSize")
         End Get
         Set(ByVal value As Integer)
             Me.Body("logSize") = value
@@ -204,7 +173,7 @@ Each file can override it by setting its '/Header/BodySchema' property to false/
 
     Public Property logLevel As Integer
         Get
-            Return BodyGetter(".logLevel")
+            Return PropOrDefault(".logLevel")
         End Get
         Set(ByVal value As Integer)
             Me.Body("logLevel") = value
@@ -213,7 +182,7 @@ Each file can override it by setting its '/Header/BodySchema' property to false/
 
     Public Property editor As String
         Get
-            Return BodyGetter(".editor")
+            Return PropOrDefault(".editor")
         End Get
         Set(ByVal value As String)
             Me.Body("editor") = value
@@ -222,7 +191,7 @@ Each file can override it by setting its '/Header/BodySchema' property to false/
 
     Public Property strictBodies As Boolean
         Get
-            Return BodyGetter(".strictBodies")
+            Return PropOrDefault(".strictBodies")
         End Get
         Set(ByVal value As Boolean)
             Me.Body("strictBodies") = value
@@ -231,12 +200,21 @@ Each file can override it by setting its '/Header/BodySchema' property to false/
 
     Public Property includeSchemas As Boolean
         Get
-            Return BodyGetter(".includeSchemas")
+            Return PropOrDefault(".includeSchemas")
         End Get
         Set(ByVal value As Boolean)
             Me.Body("includeSchemas") = value
         End Set
     End Property
 
+    Public Property hideUsername As Boolean
+        Get
+            Return PropOrDefault(".hideUsername")
+        End Get
+        Set(ByVal value As Boolean)
+            Me.Body("hideUsername") = value
+        End Set
+    End Property
+
 #End Region ' "json props"
 End Class
diff --git a/CSE/IO/cVehicle.vb b/CSE/IO/cVehicle.vb
index d2a5777c892c124f3f4cd60724feccf8c67ce31e..41dd8c69f7fb022329590caf688662b17c647c25 100644
--- a/CSE/IO/cVehicle.vb
+++ b/CSE/IO/cVehicle.vb
@@ -18,7 +18,7 @@ Public Class cVehicle
 
 
     ' Defaults specified here.
-    Protected Overrides Function BodyContent() As JObject
+    Protected Shared Function BuildBody() As JObject
         Return JObject.Parse(<json>{
                 "vehClass":         null,
                 "configuration":    null,
@@ -33,14 +33,9 @@ Public Class cVehicle
             }</json>.Value)
     End Function
 
-    ' Default-prefs specified here.
-    Public Overrides Function BodySchema() As JObject
-        Return JObject.Parse(JSchemaStr())
-    End Function
-
-    ''' <param name="allowAdditionalProps">when false, more strict validation</param>
-    Public Shared Function JSchemaStr(Optional ByVal allowAdditionalProps As Boolean = True) As String
-        Dim allowAdditionalProps_str As String = IIf(allowAdditionalProps, "true", "false")
+    ''' <param name="isStrictBody">when true, more strict validation</param>
+    Public Shared Function JSchemaStr(Optional ByVal isStrictBody As Boolean = False) As String
+        Dim allowAdditionalProps_str As String = (Not isStrictBody).ToString.ToLower
         Return <json>{
             "title": "Schema for vecto-cse VEHICLE",
             "type": "object", "additionalProperties": <%= allowAdditionalProps_str %>, 
@@ -104,17 +99,25 @@ The generic parameters for classes are stored in the GenShape.shp",
     End Function
 
 
-    ''' <summary>Reads from file or creates defaults</summary>
-    ''' <param name="inputFilePath">If unspecifed, default prefs used, otherwise data read from file</param>
+    ''' <summary>creates defaults</summary>
     ''' <remarks>See cJsonFile() constructor</remarks>
-    Sub New(Optional ByVal inputFilePath As String = Nothing, Optional ByVal skipValidation As Boolean = False)
+    Sub New(Optional ByVal skipValidation As Boolean = False)
+        MyBase.New(BuildBody, skipValidation)
+    End Sub
+    ''' <summary>Reads from file or creates defaults</summary>
+    ''' <param name="inputFilePath">the fpath of the file to read data from</param>
+    Sub New(ByVal inputFilePath As String, Optional ByVal skipValidation As Boolean = False)
         MyBase.New(inputFilePath, skipValidation)
     End Sub
 
 
+    Protected Overrides Function BodySchemaStr() As String
+        Return JSchemaStr()
+    End Function
+
     ''' <exception cref="SystemException">includes all validation errors</exception>
-    ''' <param name="strictBody">when true, no additional json-properties allowed in the data, when nothing, use value from Header</param>
-    Protected Overrides Sub ValidateBody(ByVal strictBody As Boolean, ByVal validateMsgs As IList(Of String))
+    ''' <param name="isStrictBody">when true, no additional json-properties allowed in the data, when nothing, use value from Header</param>
+    Protected Overrides Sub ValidateBody(ByVal isStrictBody As Boolean, ByVal validateMsgs As IList(Of String))
         '' Check version
         ''
         Dim fromVersion = "1.0.0--"
@@ -126,7 +129,7 @@ The generic parameters for classes are stored in the GenShape.shp",
 
         '' Check schema
         ''
-        Dim schema = JsonSchema.Parse(JSchemaStr(Not strictBody))
+        Dim schema = JsonSchema.Parse(JSchemaStr(isStrictBody))
         ValidateJson(Body, schema, validateMsgs)
 
         If validateMsgs.Any() Then Return
@@ -145,7 +148,6 @@ The generic parameters for classes are stored in the GenShape.shp",
         ''
         validateMsgs.Add(format("The vehicle (class: {0}, configuration {1}) was not found in the generic shape file. \n\iPlease add it in .", Me.classCode, Me.configuration))
         BWorker.CancelAsync()
-        Return
     End Sub
 
 
diff --git a/CSE/IO/input.vb b/CSE/IO/input.vb
index 6f970c9c7b94ad455a76ba447612801610504138..0c5d850a5ccf661e3b01001a77333e7ac68f982b 100644
--- a/CSE/IO/input.vb
+++ b/CSE/IO/input.vb
@@ -10,12 +10,12 @@ Public Module input
 
             ' Read the filelist with the MSC spezifications
             ' Output on the GUI
-            fInfWarErr(5, False, "Read MS configuration file")
+            logme(5, False, "Read MS configuration file")
 
             ' Open the MSC spezification file
             If Not FileInMSCSpez.OpenRead(MSCfile) Then
                 ' Error if the file is not available
-                fInfWarErr(9, False, "Can´t find the MS configuration specification file: " & MSCfile)
+                logme(9, False, "Can´t find the MS configuration specification file: " & MSCfile)
                 Return False
             End If
 
@@ -36,11 +36,11 @@ Public Module input
                     MSCX.longS.Add(Line(5))
                     MSCX.latE.Add(Line(6))
                     MSCX.longE.Add(Line(7))
-                    If GradC Then MSCX.AltPath.Add(Line(8))
+                    If Crt.gradient_correction Then MSCX.AltPath.Add(Line(8))
                 Loop
             Catch ex As Exception
                 ' Falls kein gültiger Wert eingegeben wurde
-                fInfWarErr(9, False, "Invalid value in the trigger data file: " & fName(MSCfile, True))
+                logme(9, False, "Invalid value in the trigger data file: " & fName(MSCfile, True))
                 BWorker.CancelAsync()
                 Return False
             End Try
@@ -56,14 +56,14 @@ Public Module input
                     RefHead = MSCX.head(i)
                     MSCX.headID.Add(1)
                 Else
-                    If Math.Abs(MSCX.head(i) - RefHead) < delta_parallel_max Then
+                    If Math.Abs(MSCX.head(i) - RefHead) < Crt.delta_parallel_max Then
                         MSCX.headID.Add(1)
                         Continue For
-                    ElseIf (Math.Abs(MSCX.head(i) - RefHead + 180) < delta_parallel_max Or Math.Abs(MSCX.head(i) - RefHead - 180) < delta_parallel_max) Then
+                    ElseIf (Math.Abs(MSCX.head(i) - RefHead + 180) < Crt.delta_parallel_max Or Math.Abs(MSCX.head(i) - RefHead - 180) < Crt.delta_parallel_max) Then
                         MSCX.headID.Add(2)
                         Continue For
                     Else
-                        fInfWarErr(9, False, "Measurement section with invalid headings identified (test track not parallel) at line: " & i)
+                        logme(9, False, "Measurement section with invalid headings identified (test track not parallel) at line: " & i)
                         BWorker.CancelAsync()
                         Return False
                     End If
@@ -72,17 +72,16 @@ Public Module input
 
             ' Control the altitude path
             For i = 1 To MSCX.meID.Count - 1
-                If GradC Then
+                If Crt.gradient_correction Then
                     If MSCX.AltPath(i) = Nothing Then
-                        fInfWarErr(9, False, "Altitude correction = on, missing altitude file at line: " & i)
+                        logme(9, False, "Altitude correction = on, missing altitude file at line: " & i)
                         BWorker.CancelAsync()
                         Return False
                     End If
 
                     If fPath(MSCX.AltPath(i)) = Nothing Then MSCX.AltPath(i) = joinPaths(fPath(MSCfile), MSCX.AltPath(i))
-                    fControlInput(MSCX.AltPath(i), 3, "csalt")
                     If Not FileIO.FileSystem.FileExists(MSCX.AltPath(i)) Then
-                        fInfWarErr(9, False, "Altitude correction = on, altitude file doesen´t exist: " & MSCX.AltPath(i))
+                        logme(9, False, "Altitude correction = on, altitude file doesen´t exist: " & MSCX.AltPath(i))
                         BWorker.CancelAsync()
                         Return False
                     End If
@@ -116,14 +115,14 @@ Public Module input
 
             'Abort if there's no file
             If Datafile = "" OrElse Not IO.File.Exists(Datafile) Then
-                fInfWarErr(9, False, "Weather data file not found (" & Datafile & ") !")
+                logme(9, False, "Weather data file not found (" & Datafile & ") !")
                 BWorker.CancelAsync()
                 Return False
             End If
 
             'Open file
             If Not FileInWeather.OpenRead(Datafile) Then
-                fInfWarErr(9, False, "Failed to open file (" & Datafile & ") !")
+                logme(9, False, "Failed to open file (" & Datafile & ") !")
                 BWorker.CancelAsync()
                 Return False
             End If
@@ -148,7 +147,7 @@ Public Module input
                 Else
                     ' Check if component is already defined
                     If WeathCheck(Comp) Then
-                        fInfWarErr(9, False, "Component '" & Line(i) & "' already defined! Column " & i + 1)
+                        logme(9, False, "Component '" & Line(i) & "' already defined! Column " & i + 1)
                         BWorker.CancelAsync()
                         Return False
                     End If
@@ -164,7 +163,7 @@ Public Module input
             ' Check if all required data is given
             For Each sKVW In WeathCheck
                 If Not WeathCheck(sKVW.Key) Then
-                    fInfWarErr(9, False, "Missing signal for " & fCompName(sKVW.Key))
+                    logme(9, False, "Missing signal for " & fCompName(sKVW.Key))
                     BWorker.CancelAsync()
                     Return False
                 End If
@@ -185,7 +184,7 @@ Public Module input
                     Next sKV
                 Loop
             Catch ex As Exception
-                fInfWarErr(9, False, "Error during file read! Line number: " & tdim + 1 & " (" & Datafile & ")")
+                logme(9, False, "Error during file read! Line number: " & tdim + 1 & " (" & Datafile & ")")
                 BWorker.CancelAsync()
                 Return False
             End Try
@@ -240,14 +239,14 @@ Public Module input
 
             'Abort if there's no file
             If Datafile = "" OrElse Not IO.File.Exists(Datafile) Then
-                fInfWarErr(9, False, "Measurement data file not found (" & Datafile & ") !")
+                logme(9, False, "Measurement data file not found (" & Datafile & ") !")
                 BWorker.CancelAsync()
                 Return False
             End If
 
             'Open file
             If Not FileInMeasure.OpenRead(Datafile) Then
-                fInfWarErr(9, False, "Failed to open file (" & Datafile & ") !")
+                logme(9, False, "Failed to open file (" & Datafile & ") !")
                 BWorker.CancelAsync()
                 Return False
             End If
@@ -286,7 +285,7 @@ Public Module input
 
                     ' Check if the component is already defined
                     If InputUndefData.ContainsKey(txt) Then
-                        fInfWarErr(9, False, "Component '" & Line(i) & "' already defined! Column " & i + 1)
+                        logme(9, False, "Component '" & Line(i) & "' already defined! Column " & i + 1)
                         BWorker.CancelAsync()
                         Return False
                     End If
@@ -298,7 +297,7 @@ Public Module input
                 Else
                     ' Check if component is already defined
                     If MeasCheck(Comp) Then
-                        fInfWarErr(9, False, "Component '" & Line(i) & "' already defined! Column " & i + 1)
+                        logme(9, False, "Component '" & Line(i) & "' already defined! Column " & i + 1)
                         BWorker.CancelAsync()
                         Return False
                     End If
@@ -317,7 +316,7 @@ Public Module input
                     Select Case sKVM.Key
                         Case tComp.trigger
                             If MSCX.tUse Then
-                                fInfWarErr(9, False, "No trigger signal detected, but trigger_used in MS config activated!")
+                                logme(9, False, "No trigger signal detected, but trigger_used in MS config activated!")
                                 BWorker.CancelAsync()
                                 Return False
                             End If
@@ -329,7 +328,7 @@ Public Module input
                         Case tComp.user_valid
                             valid_set = True
                         Case Else
-                            fInfWarErr(9, False, "Missing signal for " & fCompName(sKVM.Key))
+                            logme(9, False, "Missing signal for " & fCompName(sKVM.Key))
                             BWorker.CancelAsync()
                             Return False
                     End Select
@@ -350,9 +349,9 @@ Public Module input
                             If sKV.Key = tComp.t Then
                                 CalcData(tCompCali.t).Add(CDbl(Line(sKV.Value)))
                                 If tDim >= 2 Then
-                                    If Math.Abs((InputData(sKV.Key)(tDim - 1) - InputData(sKV.Key)(tDim - 2)) / (1 / HzIn) - 1) * 100 > delta_Hz_max Then
+                                    If Math.Abs((InputData(sKV.Key)(tDim - 1) - InputData(sKV.Key)(tDim - 2)) / (1 / HzIn) - 1) * 100 > Crt.delta_Hz_max Then
                                         If ErrDat Then
-                                            fInfWarErr(9, False, "The input data is not recorded at " & HzIn & "Hz at line: " & JumpPoint & " and " & tDim)
+                                            logme(9, False, "The input data is not recorded at " & HzIn & "Hz at line: " & JumpPoint & " and " & tDim)
                                             BWorker.CancelAsync()
                                             Return False
                                         Else
@@ -367,7 +366,7 @@ Public Module input
                                     If Not ZoneChange Then
                                         If tDim > 1 Then
                                             If CalcData(tCompCali.zone_UTM).Last <> UTMCoord.Zone Then
-                                                fInfWarErr(8, False, "The coordinates lie in different UTM Zones. A zone adjustment will be done!")
+                                                logme(8, False, "The coordinates lie in different UTM Zones. A zone adjustment will be done!")
                                                 ZoneChange = True
                                             End If
                                         End If
@@ -385,7 +384,7 @@ Public Module input
                                     If Not ZoneChange Then
                                         If tDim > 1 Then
                                             If CalcData(tCompCali.zone_UTM).Last <> UTMCoord.Zone Then
-                                                fInfWarErr(8, False, "The coordinates lie in different UTM Zones. A zone adjustment will be done!")
+                                                logme(8, False, "The coordinates lie in different UTM Zones. A zone adjustment will be done!")
                                                 ZoneChange = True
                                             End If
                                         End If
@@ -422,7 +421,7 @@ Public Module input
                     Next
                 Loop
             Catch ex As Exception
-                fInfWarErr(9, False, "Error during file read! Line number: " & tDim + 1 & " (" & Datafile & ")")
+                logme(9, False, "Error during file read! Line number: " & tDim + 1 & " (" & Datafile & ")")
                 BWorker.CancelAsync()
                 Return False
             End Try
@@ -445,7 +444,7 @@ Public Module input
                     CalcData(tCompCali.longi_UTM)(i) = UTMCoord.Easting
                 Next i
                 If Zone1CentralMeridian > 180 Then
-                    fInfWarErr(9, False, "The adjustment is not possible because the data lie to far away from each other to fit into one UTM stripe")
+                    logme(9, False, "The adjustment is not possible because the data lie to far away from each other to fit into one UTM stripe")
                     BWorker.CancelAsync()
                     Return False
                 End If
@@ -457,4 +456,78 @@ Public Module input
 
         Return True
     End Function
+
+
+    ' Function to read the generic shape file
+    Sub fGenShpLoad(ByVal genShpFile As String)
+        ' Declarations
+        Dim i, j, anz, pos, num As Integer
+        Dim Info As String = ""
+        Dim Line(), Line2(), Line3() As String
+        Dim XVal(,), YVal(,), XClone(), YClone() As Double
+        Using FileInGenShp As New cFile_V3
+            FileInGenShp.OpenReadWithEx(genShpFile)
+
+            ' Read the line
+            Line = FileInGenShp.ReadLine()
+            Line2 = FileInGenShp.ReadLine()
+            Line3 = FileInGenShp.ReadLine()
+            anz = Int(Line.Length / 2)
+
+            ' Initialise
+            pos = 1
+            num = 0
+            ReDim XVal(anz - 1, 0)
+            ReDim YVal(anz - 1, 0)
+
+            ' Read the Head data
+            For i = 0 To anz - 1
+                ' Control if the vehicle class and configuration is already defined
+                If GenShape.veh_class.Contains(Line(pos)) Then
+                    For j = 0 To GenShape.veh_class.Count - 1
+                        If GenShape.veh_class(j) = Line(pos) And GenShape.veh_conf(j) = Line2(pos) Then
+                            Throw New ArgumentException("Invalid The vehicle-class({0}) with this configuration({0}) is already defined. Please control your generic ShapeFile({0})!")
+                        End If
+                    Next
+                End If
+                ' Add the data
+                GenShape.veh_class.Add(Line(pos))
+                GenShape.veh_conf.Add(Line2(pos))
+                GenShape.fa_pe.Add(Line3(pos))
+                pos += 2
+            Next i
+
+            ' Read the shape values
+            Do While Not FileInGenShp.EndOfFile
+                pos = 1
+                num += 1
+                Line = FileInGenShp.ReadLine()
+                ReDim Preserve XVal(anz - 1, UBound(XVal, 2) + 1)
+                ReDim Preserve YVal(anz - 1, UBound(YVal, 2) + 1)
+                For i = 0 To anz - 1
+                    XVal(i, UBound(XVal, 2)) = Line(pos)
+                    YVal(i, UBound(YVal, 2)) = Line(pos + 1)
+                    pos += 2
+                Next i
+            Loop
+
+            ' Clone and add the arrays
+            For i = 0 To anz - 1
+                ' Initialise
+                ReDim XClone(num - 1)
+                ReDim YClone(num - 1)
+
+                ' Copy the arrays
+                For j = 1 To num
+                    XClone(j - 1) = XVal(i, j)
+                    YClone(j - 1) = YVal(i, j)
+                Next j
+                ' Add the arrays
+                GenShape.x_val.Add(XClone.Clone)
+                GenShape.y_val.Add(YClone.Clone)
+            Next i
+        End Using
+
+    End Sub
+
 End Module
diff --git a/CSE/IO/output.vb b/CSE/IO/output.vb
index 89345d391cd6de2af41feb94cf7e0d8720ce4679..df6a0e286513e5c1f128f66ea275352179689aa2 100644
--- a/CSE/IO/output.vb
+++ b/CSE/IO/output.vb
@@ -17,7 +17,7 @@
             ErgEntriesC = New Dictionary(Of tCompCali, CResult)
             ErgEntryListC = New List(Of tCompCali)
             GenErgOutData(calibration)
-            If HzOut = 1 Then
+            If Crt.hz_out = 1 Then
                 ConvTo1Hz(InputData(tComp.t), InputUndefData)
                 ConvTo1Hz(InputData)
                 ConvTo1Hz(CalcData)
@@ -29,11 +29,11 @@
             End If
 
             ' Write on GUI
-            fInfWarErr(5, False, "Writing output-file (*.csv)")
+            logme(5, False, "Writing output-file (*.csv)")
 
             ' Generate the file name
             NameOutFile = ""
-            Select Case HzOut
+            Select Case Crt.hz_out
                 Case 1
                     NameOutFile = OutFolder & fName(Datafile, False) & "_1Hz.csv"
                 Case 100
@@ -80,16 +80,15 @@
 
         ' Ausgabe bei blockierter Datei
         If BWorker.CancellationPending And FileBlock Then
-            fInfWarErr(9, False, "Can´t write in file " & NameOutFile & ". File is blocked by another process!")
+            logme(9, False, "Can´t write in file " & NameOutFile & ". File is blocked by another process!")
         End If
 
         Return True
     End Function
 
     ' Function for the output of the result data
-    Function fOutCalcRes(ByVal Datafile() As String, ByVal calibration As Boolean) As Boolean
-        ' Declaration
-        Dim i As Integer
+    Function fOutCalcRes(ByVal calibration As Boolean) As Boolean
+        Dim coasting_fpaths() = Job.coasting_fpaths
         Dim NameOutFile, key As String
         Using FileOut As New cFile_V3
             Dim first As Boolean
@@ -109,7 +108,7 @@
             End If
 
             ' Write on GUI
-            fInfWarErr(5, False, "Writing result-file (*.csv)")
+            logme(5, False, "Writing result-file (*.csv)")
 
             ' Generate the file name
             NameOutFile = OutFolder & fName(JobFile, False) & "_MS_CAL.csv"
@@ -123,11 +122,11 @@
             ' Filekopf
             FileOut.WriteLine("Resultfile Programm " & AppName & " " & AppVers & " Comp " & AppDate)
             If calibration Then
-                FileOut.WriteLine("Datafile: ", Datafile(1))
+                FileOut.WriteLine("Datafile: ", Job.calib_run_fpath)
             Else
-                FileOut.WriteLine("Datafile LS1: ", Datafile(2))
-                FileOut.WriteLine("Datafile HS: ", Datafile(3))
-                FileOut.WriteLine("Datafile LS2: ", Datafile(4))
+                FileOut.WriteLine("Datafile LS1: ", coasting_fpaths(0))
+                FileOut.WriteLine("Datafile HS: ", coasting_fpaths(1))
+                FileOut.WriteLine("Datafile LS2: ", coasting_fpaths(2))
             End If
             FileOut.WriteLine("")
             FileOut.WriteLine("Results")
@@ -183,16 +182,15 @@
 
         ' Ausgabe bei blockierter Datei
         If BWorker.CancellationPending And FileBlock Then
-            fInfWarErr(9, False, "Can´t write in file " & NameOutFile & ". File is blocked by another process!")
+            logme(9, False, "Can´t write in file " & NameOutFile & ". File is blocked by another process!")
         End If
 
         Return True
     End Function
 
     ' Function for the output of the result data of the regression
-    Function fOutCalcResReg(ByVal Datafile() As String) As Boolean
-        ' Declaration
-        Dim i As Integer
+    Function fOutCalcResReg() As Boolean
+        Dim coasting_fpaths() = Job.coasting_fpaths
         Dim NameOutFile, key As String
         Using FileOut As New cFile_V3
             Dim first As Boolean
@@ -210,7 +208,7 @@
             End If
 
             ' Write on GUI
-            fInfWarErr(5, False, "Writing result-file (*.csv)")
+            logme(5, False, "Writing result-file (*.csv)")
 
             ' Generate the file name
             NameOutFile = OutFolder & fName(JobFile, False) & "_CSE.csv"
@@ -220,9 +218,9 @@
 
             ' Filekopf
             FileOut.WriteLine("Resultfile Programm " & AppName & " " & AppVers & " Comp " & AppDate)
-            FileOut.WriteLine("Datafile LS1: ", Datafile(2))
-            FileOut.WriteLine("Datafile HS: ", Datafile(3))
-            FileOut.WriteLine("Datafile LS2: ", Datafile(4))
+            FileOut.WriteLine("Datafile LS1: ", coasting_fpaths(0))
+            FileOut.WriteLine("Datafile HS: ", coasting_fpaths(1))
+            FileOut.WriteLine("Datafile LS2: ", coasting_fpaths(2))
             FileOut.WriteLine("")
             FileOut.WriteLine("Results")
             FileOut.WriteLine("fv_veh:", fv_veh, "[-] calibration factor for vehicle speed")
@@ -240,7 +238,7 @@
             If valid_t_tire Then
                 FileOut.WriteLine("Tire temp:", "Ok")
             Else
-                FileOut.WriteLine("Tire temp:", "Invalid test - maximum variation of tire temperature exceeded")
+                FileOut.WriteLine("Tire temp:", "Invalid test - maximum variation of tyre temperature exceeded")
             End If
             If valid_RRC Then
                 FileOut.WriteLine("RRC:", "Ok")
@@ -277,7 +275,7 @@
 
         ' Ausgabe bei blockierter Datei
         If BWorker.CancellationPending And FileBlock Then
-            fInfWarErr(9, False, "Can´t write in file " & NameOutFile & ". File is blocked by another process!")
+            logme(9, False, "Can´t write in file " & NameOutFile & ". File is blocked by another process!")
         End If
 
         Return True
@@ -348,7 +346,7 @@
             AddToErg(tCompCali.F_res, fCompName(tCompCali.F_res), fCompUnit(tCompCali.F_res), "CalcData")
             AddToErg(tCompCali.v_veh_1s, fCompName(tCompCali.v_veh_1s), fCompUnit(tCompCali.v_veh_1s), "CalcData")
             AddToErg(tCompCali.v_veh_acc, fCompName(tCompCali.v_veh_acc), fCompUnit(tCompCali.v_veh_acc), "CalcData")
-            AddToErg(tCompCali.a_veh_ave, fCompName(tCompCali.a_veh_ave), fCompUnit(tCompCali.a_veh_ave), "CalcData")
+            AddToErg(tCompCali.a_veh_avg, fCompName(tCompCali.a_veh_avg), fCompUnit(tCompCali.a_veh_avg), "CalcData")
             AddToErg(tCompCali.v_veh_float, fCompName(tCompCali.v_veh_float), fCompUnit(tCompCali.v_veh_float), "CalcData")
             AddToErg(tCompCali.t_amp_stat, fCompName(tCompCali.t_amp_stat), fCompUnit(tCompCali.t_amp_stat), "CalcData")
             AddToErg(tCompCali.p_amp_stat, fCompName(tCompCali.p_amp_stat), fCompUnit(tCompCali.p_amp_stat), "CalcData")
@@ -384,7 +382,7 @@
 
         If Not calibration Then
             AddToErg(tCompErg.val_User, fCompName(tCompErg.val_User), fCompUnit(tCompErg.val_User), "ErgValues")
-            AddToErg(tCompErg.val_vVeh_ave, fCompName(tCompErg.val_vVeh_ave), fCompUnit(tCompErg.val_vVeh_ave), "ErgValues")
+            AddToErg(tCompErg.val_vVeh_avg, fCompName(tCompErg.val_vVeh_avg), fCompUnit(tCompErg.val_vVeh_avg), "ErgValues")
             AddToErg(tCompErg.val_vVeh_f, fCompName(tCompErg.val_vVeh_f), fCompUnit(tCompErg.val_vVeh_f), "ErgValues")
             AddToErg(tCompErg.val_vVeh_1s, fCompName(tCompErg.val_vVeh_1s), fCompUnit(tCompErg.val_vVeh_1s), "ErgValues")
             AddToErg(tCompErg.val_vWind, fCompName(tCompErg.val_vWind), fCompUnit(tCompErg.val_vWind), "ErgValues")
@@ -396,10 +394,10 @@
         End If
 
         AddToErg(tCompErg.vair, fCompName(tCompErg.vair), fCompUnit(tCompErg.vair), "ErgValues")
-        AddToErg(tCompErg.v_wind_ave, fCompName(tCompErg.v_wind_ave), fCompUnit(tCompErg.v_wind_ave), "ErgValues")
+        AddToErg(tCompErg.v_wind_avg, fCompName(tCompErg.v_wind_avg), fCompUnit(tCompErg.v_wind_avg), "ErgValues")
         AddToErg(tCompErg.v_wind_1s, fCompName(tCompErg.v_wind_1s), fCompUnit(tCompErg.v_wind_1s), "ErgValues")
         AddToErg(tCompErg.v_wind_1s_max, fCompName(tCompErg.v_wind_1s_max), fCompUnit(tCompErg.v_wind_1s_max), "ErgValues")
-        AddToErg(tCompErg.beta_ave, fCompName(tCompErg.beta_ave), fCompUnit(tCompErg.beta_ave), "ErgValues")
+        AddToErg(tCompErg.beta_avg, fCompName(tCompErg.beta_avg), fCompUnit(tCompErg.beta_avg), "ErgValues")
 
         If Not calibration Then
             AddToErg(tCompErg.beta_abs, fCompName(tCompErg.beta_abs), fCompUnit(tCompErg.beta_abs), "ErgValues")
@@ -423,8 +421,8 @@
             AddToErg(tCompErg.v_veh_1s, fCompName(tCompErg.v_veh_1s), fCompUnit(tCompErg.v_veh_1s), "ErgValues")
             AddToErg(tCompErg.v_veh_1s_max, fCompName(tCompErg.v_veh_1s_max), fCompUnit(tCompErg.v_veh_1s_max), "ErgValues")
             AddToErg(tCompErg.v_veh_1s_min, fCompName(tCompErg.v_veh_1s_min), fCompUnit(tCompErg.v_veh_1s_min), "ErgValues")
-            AddToErg(tCompErg.v_veh_ave, fCompName(tCompErg.v_veh_ave), fCompUnit(tCompErg.v_veh_ave), "ErgValues")
-            AddToErg(tCompErg.a_veh_ave, fCompName(tCompErg.a_veh_ave), fCompUnit(tCompErg.a_veh_ave), "ErgValues")
+            AddToErg(tCompErg.v_veh_avg, fCompName(tCompErg.v_veh_avg), fCompUnit(tCompErg.v_veh_avg), "ErgValues")
+            AddToErg(tCompErg.a_veh_avg, fCompName(tCompErg.a_veh_avg), fCompUnit(tCompErg.a_veh_avg), "ErgValues")
             AddToErg(tCompErg.v_veh_float, fCompName(tCompErg.v_veh_float), fCompUnit(tCompErg.v_veh_float), "ErgValues")
             AddToErg(tCompErg.v_veh_float_max, fCompName(tCompErg.v_veh_float_max), fCompUnit(tCompErg.v_veh_float_max), "ErgValues")
             AddToErg(tCompErg.v_veh_float_min, fCompName(tCompErg.v_veh_float_min), fCompUnit(tCompErg.v_veh_float_min), "ErgValues")
@@ -653,7 +651,7 @@
         For z = 1 To ValuesX.Item(tCompCali.t).Count - 1
             If fTime(z) < fTime(z - 1) Then
                 If Sprung Then
-                    fInfWarErr(9, False, "Time step invalid! t(" & z - 1 & ") = " & fTime(z - 1) & "[s], t(" & z & ") = " & fTime(z) & "[s]")
+                    logme(9, False, "Time step invalid! t(" & z - 1 & ") = " & fTime(z - 1) & "[s], t(" & z & ") = " & fTime(z) & "[s]")
                     Return False
                 Else
                     Sprung = True
@@ -844,7 +842,7 @@
         For z = 1 To ValuesX.Item(tComp.t).Count - 1
             If fTime(z) < fTime(z - 1) Then
                 If Sprung Then
-                    fInfWarErr(9, False, "Time step invalid! t(" & z - 1 & ") = " & fTime(z - 1) & "[s], t(" & z & ") = " & fTime(z) & "[s]")
+                    logme(9, False, "Time step invalid! t(" & z - 1 & ") = " & fTime(z - 1) & "[s], t(" & z & ") = " & fTime(z) & "[s]")
                     Return False
                 Else
                     Sprung = True
@@ -1035,7 +1033,7 @@
         For z = 1 To ValuesX.Item(ValuesX.First.Key).Count - 1
             If fTime(z) < fTime(z - 1) Then
                 If Sprung Then
-                    fInfWarErr(9, False, "Time step invalid! t(" & z - 1 & ") = " & fTime(z - 1) & "[s], t(" & z & ") = " & fTime(z) & "[s]")
+                    logme(9, False, "Time step invalid! t(" & z - 1 & ") = " & fTime(z - 1) & "[s], t(" & z & ") = " & fTime(z) & "[s]")
                     Return False
                 Else
                     Sprung = True
diff --git a/CSE/My Project/Resources.Designer.vb b/CSE/My Project/Resources.Designer.vb
index c0160149b80e767746b1d68d1b1e47346059f477..bfdf40b445ccaed684f0c74d460458dba5af71eb 100644
--- a/CSE/My Project/Resources.Designer.vb	
+++ b/CSE/My Project/Resources.Designer.vb	
@@ -210,6 +210,16 @@ Namespace My.Resources
             End Get
         End Property
         
+        '''<summary>
+        '''  Looks up a localized resource of type System.Drawing.Bitmap.
+        '''</summary>
+        Friend ReadOnly Property Play_icon() As System.Drawing.Bitmap
+            Get
+                Dim obj As Object = ResourceManager.GetObject("Play-icon", resourceCulture)
+                Return CType(obj,System.Drawing.Bitmap)
+            End Get
+        End Property
+        
         '''<summary>
         '''  Looks up a localized resource of type System.Drawing.Bitmap.
         '''</summary>
@@ -220,6 +230,16 @@ Namespace My.Resources
             End Get
         End Property
         
+        '''<summary>
+        '''  Looks up a localized resource of type System.Drawing.Bitmap.
+        '''</summary>
+        Friend ReadOnly Property Refresh_icon() As System.Drawing.Bitmap
+            Get
+                Dim obj As Object = ResourceManager.GetObject("Refresh-icon", resourceCulture)
+                Return CType(obj,System.Drawing.Bitmap)
+            End Get
+        End Property
+        
         '''<summary>
         '''  Looks up a localized resource of type System.Drawing.Bitmap.
         '''</summary>
@@ -240,6 +260,16 @@ Namespace My.Resources
             End Get
         End Property
         
+        '''<summary>
+        '''  Looks up a localized resource of type System.Drawing.Bitmap.
+        '''</summary>
+        Friend ReadOnly Property Stop_icon() As System.Drawing.Bitmap
+            Get
+                Dim obj As Object = ResourceManager.GetObject("Stop-icon", resourceCulture)
+                Return CType(obj,System.Drawing.Bitmap)
+            End Get
+        End Property
+        
         '''<summary>
         '''  Looks up a localized resource of type System.Drawing.Bitmap.
         '''</summary>
diff --git a/CSE/My Project/Resources.resx b/CSE/My Project/Resources.resx
index f5143e2e463f16ce177c313151a3c80a34c2e362..964990f637374c1da7846e0a6507de4e19e5b2db 100644
--- a/CSE/My Project/Resources.resx	
+++ b/CSE/My Project/Resources.resx	
@@ -118,67 +118,76 @@
     <value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
   </resheader>
   <assembly alias="System.Windows.Forms" name="System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
-  <data name="Beenden" type="System.Resources.ResXFileRef, System.Windows.Forms">
-    <value>..\Resources\Beenden.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
-  </data>
-  <data name="CSE" type="System.Resources.ResXFileRef, System.Windows.Forms">
-    <value>..\Resources\CSE.ico;System.Drawing.Icon, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
+  <data name="plus_circle_icon" type="System.Resources.ResXFileRef, System.Windows.Forms">
+    <value>..\Resources\plus-circle-icon.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
   </data>
   <data name="export_excel" type="System.Resources.ResXFileRef, System.Windows.Forms">
     <value>..\Resources\export_excel.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
   </data>
-  <data name="FVT_91x39" type="System.Resources.ResXFileRef, System.Windows.Forms">
-    <value>..\Resources\FVT_91x39.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
+  <data name="Licencefile" type="System.Resources.ResXFileRef, System.Windows.Forms">
+    <value>..\Resources\Licencefile.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
   </data>
-  <data name="Help" type="System.Resources.ResXFileRef, System.Windows.Forms">
-    <value>..\Resources\Help.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
+  <data name="VECTO_About" type="System.Resources.ResXFileRef, System.Windows.Forms">
+    <value>..\Resources\VECTO-About.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
   </data>
   <data name="Icon" type="System.Resources.ResXFileRef, System.Windows.Forms">
     <value>..\Resources\Icon.ico;System.Drawing.Icon, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
   </data>
-  <data name="Info" type="System.Resources.ResXFileRef, System.Windows.Forms">
-    <value>..\Resources\Info.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
-  </data>
-  <data name="IVT_About" type="System.Resources.ResXFileRef, System.Windows.Forms">
-    <value>..\Resources\IVT_About.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
+  <data name="Refresh-icon" type="System.Resources.ResXFileRef, System.Windows.Forms">
+    <value>..\Resources\Refresh-icon.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
   </data>
-  <data name="JRC_About" type="System.Resources.ResXFileRef, System.Windows.Forms">
-    <value>..\Resources\JRC-About.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
+  <data name="Beenden" type="System.Resources.ResXFileRef, System.Windows.Forms">
+    <value>..\Resources\Beenden.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
   </data>
   <data name="Log_File" type="System.Resources.ResXFileRef, System.Windows.Forms">
     <value>..\Resources\Log-File.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
   </data>
-  <data name="minus_circle_icon" type="System.Resources.ResXFileRef, System.Windows.Forms">
-    <value>..\Resources\minus-circle-icon.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
-  </data>
-  <data name="Neu" type="System.Resources.ResXFileRef, System.Windows.Forms">
-    <value>..\Resources\Neu.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
+  <data name="Info" type="System.Resources.ResXFileRef, System.Windows.Forms">
+    <value>..\Resources\Info.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
   </data>
   <data name="Optionen" type="System.Resources.ResXFileRef, System.Windows.Forms">
     <value>..\Resources\Optionen.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
   </data>
-  <data name="plus_circle_icon" type="System.Resources.ResXFileRef, System.Windows.Forms">
-    <value>..\Resources\plus-circle-icon.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
-  </data>
   <data name="Speichern" type="System.Resources.ResXFileRef, System.Windows.Forms">
     <value>..\Resources\Speichern.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
   </data>
+  <data name="Neu" type="System.Resources.ResXFileRef, System.Windows.Forms">
+    <value>..\Resources\Neu.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
+  </data>
+  <data name="Play-icon" type="System.Resources.ResXFileRef, System.Windows.Forms">
+    <value>..\Resources\Play-icon.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
+  </data>
+  <data name="VECTO_LOGO" type="System.Resources.ResXFileRef, System.Windows.Forms">
+    <value>..\Resources\VECTO_LOGO.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
+  </data>
   <data name="Speichern_unter" type="System.Resources.ResXFileRef, System.Windows.Forms">
     <value>..\Resources\Speichern_unter.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
   </data>
+  <data name="FVT_91x39" type="System.Resources.ResXFileRef, System.Windows.Forms">
+    <value>..\Resources\FVT_91x39.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
+  </data>
+  <data name="JRC_About" type="System.Resources.ResXFileRef, System.Windows.Forms">
+    <value>..\Resources\JRC-About.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
+  </data>
   <data name="TUG_91x34" type="System.Resources.ResXFileRef, System.Windows.Forms">
     <value>..\Resources\TUG_91x34.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
   </data>
-  <data name="VECTO_About" type="System.Resources.ResXFileRef, System.Windows.Forms">
-    <value>..\Resources\VECTO-About.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
+  <data name="IVT_About" type="System.Resources.ResXFileRef, System.Windows.Forms">
+    <value>..\Resources\IVT_About.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
   </data>
-  <data name="VECTO_LOGO" type="System.Resources.ResXFileRef, System.Windows.Forms">
-    <value>..\Resources\VECTO_LOGO.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
+  <data name="CSE" type="System.Resources.ResXFileRef, System.Windows.Forms">
+    <value>..\Resources\CSE.ico;System.Drawing.Icon, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
+  </data>
+  <data name="minus_circle_icon" type="System.Resources.ResXFileRef, System.Windows.Forms">
+    <value>..\Resources\minus-circle-icon.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
+  </data>
+  <data name="Help" type="System.Resources.ResXFileRef, System.Windows.Forms">
+    <value>..\Resources\Help.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
   </data>
   <data name="Öffnen" type="System.Resources.ResXFileRef, System.Windows.Forms">
     <value>..\Resources\Öffnen.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
   </data>
-  <data name="Licencefile" type="System.Resources.ResXFileRef, System.Windows.Forms">
-    <value>..\Resources\Licencefile.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
+  <data name="Stop-icon" type="System.Resources.ResXFileRef, System.Windows.Forms">
+    <value>..\Resources\Stop-icon1.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
   </data>
 </root>
\ No newline at end of file
diff --git a/CSE/Resources/Play-icon.png b/CSE/Resources/Play-icon.png
new file mode 100644
index 0000000000000000000000000000000000000000..bf822612ee7f416f189a9f8d6c03cd4a6411ca4f
Binary files /dev/null and b/CSE/Resources/Play-icon.png differ
diff --git a/CSE/Resources/Refresh-icon.png b/CSE/Resources/Refresh-icon.png
new file mode 100644
index 0000000000000000000000000000000000000000..328c1fd1a489d874ccc7e91574031062a6ce224b
Binary files /dev/null and b/CSE/Resources/Refresh-icon.png differ
diff --git a/CSE/Resources/Stop-icon.png b/CSE/Resources/Stop-icon.png
new file mode 100644
index 0000000000000000000000000000000000000000..d6badde84674c2fa9c4e8760a2f79d694981ef7f
Binary files /dev/null and b/CSE/Resources/Stop-icon.png differ
diff --git a/CSE/Resources/Stop-icon1.png b/CSE/Resources/Stop-icon1.png
new file mode 100644
index 0000000000000000000000000000000000000000..d6badde84674c2fa9c4e8760a2f79d694981ef7f
Binary files /dev/null and b/CSE/Resources/Stop-icon1.png differ
diff --git a/CSE/declaration_public.vb b/CSE/declaration_public.vb
index 1dd8656df05a94245aac18a6557ba08d65ae4109..070ac692406a263b58697600d689d84f5d5ece1e 100644
--- a/CSE/declaration_public.vb
+++ b/CSE/declaration_public.vb
@@ -2,15 +2,23 @@
 
     ' Description of the form
     Public Const AppName As String = "VECTO_CSE"                ' Name of the programm
-    Public Const AppVers As String = "2.0.1-pre1"                     ' Version of the Programm
+    Public Const AppVers As String = "2.0.1-pre2"                     ' Version of the Programm
     Public AppDate As String                                    ' Date of the compilation of the programm
 
     ' Control variables
     Public Const komment = "C"                                  ' Symbol for a comment in the input files
-    Public Const varOutStr As String = "C:\..."                 ' String in the outfiles when no path is given
-    Public NameFK() As String = ({"", "Vehicle", "Weather", "Altitude", "MS Config calibration", "MS Config test", "Data Calib", "Data LS1", "Data HS", "Data LS2"})
     Public AnzeigeMessage() As String = ({"", "", "", "         + ", "      ~ ", "   * ", " - ", "", "", ""})
 
+    Public AppFormStarted = False
+    Public PrefsPath As String
+    Public Prefs As cPreferences
+    Public Job As cJob                                          ' The values for the 'Main' tab (and Criteria)
+    Public Crt As cCriteria                                     ' The values for the 'Options' tab 
+    Public Sub installJob(ByVal newJob As cJob)
+        Job = newJob
+        Crt = newJob.Criteria
+    End Sub
+
     ' General Path variables
     Public MyPath As String                                     ' Path of the *.exe
     Public RestartN As Boolean = False                          ' Restart of the *.exe
@@ -29,67 +37,14 @@
     Public Const f_rollHS = 1                                   ' Constant value for HS rolling resistance
     Public Zone1CentralMeridian = -177                          ' Central UTM zone meridian (Will be changed by zone adjustment)
 
-    Public delta_x_max As Single                                ' [m]; +/- size of the control area around a MS start/end point where a trigger signal is valid (driving direction)
-    Public delta_y_max As Single                                ' [m]; +/- size of the control area around a MS start/end point where a trigger signal is valid (perpendicular to driving direction)
-    Public delta_head_max As Single                             ' [°]; +/- maximum deviation from heading as read from the csdat-file to the heading from csms-file for a valid dataset
-    Public ds_min_CAL As Integer                                ' [#]; Minimum number of valid datasets required for the calibration test (per combination of MS ID and DIR ID)
-    Public ds_min_LS As Integer                                 ' [#]; Minimum number of valid datasets required for the low speed test (per combination of MS ID and DIR ID)
-    Public ds_min_HS As Integer                                 ' [#]; Minimum number of valid datasets required for the high speed test (per combination of MS ID and DIR ID)
-    Public ds_min_head_MS As Integer                            ' [#]; Minimum TOTAL number of valid datasets required for the high speed test per heading
-    Public delta_Hz_max As Single                               ' [%]; maximum allowed deviation of timestep-size in csdat-file from 100Hz
-    Public acc_corr_ave As Single                               ' [s] averaging of vehicle speed for correction of acceleration forces
-    Public dist_float As Single                                 ' [m]; Distance used for calculation of floatinig average signal used for stabilitay criteria in low speed tests
-    Public roh_air_ref As Single                                ' [kg/m^3] Reference air density 
-
-    ' Determination constances
-    Public delta_parallel_max As Single                         ' [°]; maximum heading difference for measurement section (parallelism criteria for test track layout)
-    Public v_wind_ave_CAL_max As Single                         ' [m/s]; maximum average wind speed during calibration test
-    Public beta_ave_CAL_max As Single                           ' [°]; maximum average beta during calibration test
-    Public v_wind_1s_CAL_max As Single                          ' [m/s]; maximum gust wind speed during calibration test
-    Public v_veh_ave_LS_max As Single                           ' [km/h]; maximum average vehicle speed for low speed test
-    Public v_veh_ave_LS_min As Single                           ' [km/h]; minimum average vehicle speed for low speed test
-    Public v_wind_ave_LS_max As Single                          ' [m/s]; maximum average wind speed during low speed test
-    Public v_wind_1s_LS_max As Single                           ' [m/s]; maximum gust wind speed during low speed test
-    Public v_veh_float_delta As Single                          ' [km/h]; +/- maximum deviation of floating average vehicle speed from average vehicle speed over entire section (low speed test)
-    Public tq_sum_float_delta As Single                         ' [-]; +/- maximum relative deviation of floating average torque from average torque over entire section (low speed test)
-    Public v_veh_ave_HS_min As Single                           ' [km/h]; minimum average vehicle speed for high speed test
-    Public v_wind_ave_HS_max As Single                          ' [m/s]; maximum average wind speed during high speed test
-    Public v_wind_1s_HS_max As Single                           ' [m/s]; maximum gust wind speed during high speed test
-    Public beta_ave_HS_max As Single                            ' [°]; maximum average beta during high speed test
-    Public v_veh_1s_delta As Single                             ' [km/h]; +/- maximum deviation of 1s average vehicle speed from average vehicle speed over entire section (high speed test)
-    Public tq_sum_1s_delta As Single                            ' [-]; +/- maximum relative deviation of 1s average torque from average torque over entire section (high speed test)
-    Public leng_crit As Single                                  ' [m]; maximum absolute difference of distance driven with lenght of section as specified in configuration
-    Public delta_t_tire_max As Single                           ' [°C]; maximum variation of tire temperature between high speed tests and low speed tests
-    Public delta_RRC_max As Single                              ' [kg/t]; maximum difference of RRC from the two low speed runs 
-    Public t_amb_var As Single                                  ' [°C]; maximum variation of ambient temperature (measured at the vehicle) during the tests (evaluated based on the used datasets only)
-    Public t_amb_max As Single                                  ' [°C]; Maximum ambient temperature (measured at the vehicle) during the tests (evaluated based on the used datasets only) 
-    Public t_amb_tarmac As Single                               ' [°C]; Maximum temperature below which no documentation of tarmac conditions is necessary
-    Public t_amb_min As Single                                  ' [°C]; Minimum ambient temperature (measured at the vehicle) during the tests (evaluated based on the used datasets only)
-
-    ' Constances for the array declaration and the program control
-    Public Const JBerF = 4                                      ' Number of calculation files
-    Public RRC As Double                                        ' Rolling resistance correction factor
-    Public AnemIC(4) As Single                                  ' Anemometer instrument calibration factors
+
+    ' Constances for the array declaration
     Public JumpPoint As Integer = -1                            ' Point at that a jump in the time-resolved data is detected
     Public OptPar() As Boolean = ({True, True, True})           ' Array to identify if optional parameters are given
-    Public HzOut As Integer = 1                                 ' Hz result file output
-
-    ' Spezification files
-    Public Vehspez As String                                    ' Vehicle specification file
-    Public Ambspez As String                                    ' Ambient conditions file
-    Public DataSpez(JBerF) As String                            ' Data specification file
-    Public MSCCSpez As String                                   ' Measurement section configuration file (Calibration run)
-    Public MSCTSpez As String                                   ' Measurement section configuration file (Test run)
 
     ' Boolean for the programm control
-    Public endofall As Boolean = False                          ' Variable if enough input data in the files
     Public FileBlock As Boolean = False                         ' Variable if a file is blocked by an other process
-    Public AccC As Boolean = False                              ' Variable for the acceleration correction
-    Public GradC As Boolean = False                             ' Variable for the gradient correction
-
 
-    Public PreferencesPath As String
-    Public AppPreferences As cPreferences
 
     'File browser
     Public FB_Drives() As String
@@ -99,6 +54,7 @@
 
     Public fbTXT As cFileBrowser
     Public fbVECTO As cFileBrowser
+    Public fbCRT As cFileBrowser
     Public fbCSV As cFileBrowser
     Public fbDir As cFileBrowser
     Public fbWorkDir As cFileBrowser
diff --git a/CSE/utils.vb b/CSE/utils.vb
index 3d6ae3ba06e42ed915b07e828594e01aa02bf41d..e299d3886af0e524bdf1646ccfe7123d1a9e2331 100644
--- a/CSE/utils.vb
+++ b/CSE/utils.vb
@@ -90,16 +90,54 @@ Module utils
         Return obj.Aggregate(Function(x, y) IO.Path.Combine(x.ToString(), y.ToString()))
     End Function
 
-    Function StripBackslash(ByVal path As String) As String
+    Function StripFinalBackslash(ByVal path As String) As String
         If path Is Nothing Then
             Return Nothing
-        ElseIf (path.Last = "\"c) Then
-            Return path.Substring(0, path.Length - 1)
+        ElseIf (path.EndsWith("\")) Then
+            Return path.Remove(path.Length - 1)
         Else
             Return path
         End If
     End Function
 
+    ''' <summary>Add root to the path if it is a relative one</summary>
+    ''' <returns>the root if path null/empty</returns>
+    Function getRootedPath(ByVal pathToRoot As String, ByVal root As String)
+        If String.IsNullOrWhiteSpace(pathToRoot) Then
+            Return root
+        ElseIf IO.Path.IsPathRooted(pathToRoot) Then
+            Return pathToRoot
+        End If
+        Return joinPaths(root, pathToRoot)
+    End Function
+
+    ''' <summary>Check if path has the specified as parent and return it as relative then</summary>
+    ''' <returns>the parent if path null/empty/invalid, null if path = parent</returns>
+    ''' <exception cref="ArgumentException">if parent not a valid path</exception>
+    Function getAnySubPath(ByVal pathToCheck As String, ByVal parent As String)
+        If String.IsNullOrWhiteSpace(pathToCheck) Then Return parent
+
+        '' Prepare Absolute-paths for comparison, and 
+        ''  scream if parent invalid.
+        ''
+        parent = IO.Path.GetFullPath(StripFinalBackslash(parent))
+        Try
+            pathToCheck = IO.Path.GetFullPath(pathToCheck)
+        Catch ex As Exception
+            Return parent
+        End Try
+
+        If pathToCheck.StartsWith(parent, StringComparison.OrdinalIgnoreCase) Then
+            pathToCheck = pathToCheck.Substring(parent.Length)
+
+            If pathToCheck.StartsWith(IO.Path.DirectorySeparatorChar) Then pathToCheck = pathToCheck.Substring(1)
+            If pathToCheck.Length = 0 OrElse pathToCheck = IO.Path.DirectorySeparatorChar Then
+                pathToCheck = Nothing
+            End If
+        End If
+
+        Return pathToCheck
+    End Function
 #End Region ' File paths'
 
     ' Function for a linear interpolation
@@ -163,7 +201,7 @@ Module utils
     ' Functions for the information depiction on the GUI with the backgroundworker (Info, Warning, Error)
 #Region "Logging"
     ''' <summary>Output from Informations\Warnings\Errors on the GUI, even from within the Backgoundworker</summary>
-    Sub fInfWarErr(ByVal logLevel As Integer, ByVal MsgBoxOut As Boolean, _
+    Sub logme(ByVal logLevel As Integer, ByVal asMsgBox As Boolean, _
                    ByVal text As String, Optional ByVal ex As Exception = Nothing)
 
         ' Declaration
@@ -175,14 +213,14 @@ Module utils
         Select Case logLevel
             Case 5 To 7 ' Info
                 logFileLevel = 1
-                tabLabel = "Info"
+                tabLabel = "Messages"
             Case 8 ' Warning
                 logFileLevel = 2
-                tabLabel = "Warning"
+                tabLabel = "Warnings"
                 StyleOut = MsgBoxStyle.Exclamation
             Case 9 ' Error
                 logFileLevel = 3
-                tabLabel = "Error"
+                tabLabel = "Errors"
                 StyleOut = MsgBoxStyle.Critical
         End Select
 
@@ -191,21 +229,21 @@ Module utils
 
         '' Print only filtered msgs in log-window
         ''
-        If logLevel >= AppPreferences.logLevel Then
+        If logLevel >= Prefs.logLevel Then
             Dim wintext = AnzeigeMessage(logLevel) & text
-            If BWorker.IsBusy Then
+            If BWorker IsNot Nothing AndAlso BWorker.IsBusy Then
                 '' If in Worker-thread, update GUI through a ProgressChanged event
                 ''
-                Dim WorkerMsg As New cLogMsg(logFileLevel, MsgBoxOut, wintext, ex, tabLabel)
+                Dim WorkerMsg As New cLogMsg(logFileLevel, asMsgBox, wintext, ex, tabLabel)
                 BWorker.ReportProgress(0, WorkerMsg)
             Else
-                updateLogWindow(logFileLevel, wintext, tabLabel)
+                updateLogWindow(logFileLevel, wintext, tabLabel, ex)
             End If
         End If
 
         '' Output as an messagebox (if requested)
         ''
-        If MsgBoxOut Then
+        If asMsgBox Then
             ' Output in a MsgBox
             If RestartN Then
                 ' By changes in the confic use other output
@@ -220,30 +258,45 @@ Module utils
         End If
     End Sub
 
-    Private Sub updateLogWindow(ByVal logFileLevel As Integer, ByVal text As String, ByVal tabLabel As String)
+    Private Sub updateLogWindow(ByVal logFileLevel As Integer, ByVal text As String, ByVal tabLabel As String, ByVal ex As Exception)
         ' Established the text wit the symbol from the style
+        Dim printEx = False
+        Dim lbox As ListBox
 
-        ' Write to Log-windows
-        Select Case logFileLevel
-            Case 1 ' Info
-                F_Main.ListBoxMSG.Items.Add(text)
-            Case 2 ' Warning
-                F_Main.ListBoxMSG.Items.Add(text)
-                F_Main.ListBoxWar.Items.Add(text)
-                F_Main.TabPageWar.Text = tabLabel & " (" & F_Main.ListBoxWar.Items.Count & ")"
-            Case 3 ' Error
-                F_Main.ListBoxMSG.Items.Add(text)
-                F_Main.ListBoxErr.Items.Add(text)
-                F_Main.TabPageErr.Text = tabLabel & " (" & F_Main.ListBoxErr.Items.Count & ")"
-                F_Main.TabControlOutMsg.SelectTab(2)
-            Case Else
-                '' ignored
-        End Select
+        If (ex IsNot Nothing) Then
+            printEx = (logFileLevel > 1 AndAlso Prefs.logLevel <= 2)
+            text = format("{0} (Check {1} for details)", text, IIf(printEx, "error/warn tab", "log-file"))
+        End If
 
+        ' Always write to log-msg tab.
+        ''
+        lbox = F_Main.ListBoxMSG
+        lbox.Items.Add(text)
+        F_Main.TabPageMSG.Text = format("Messages({0})", lbox.Items.Count)
         ' Set the Scrollbars in the Listboxes at the end
-        F_Main.ListBoxMSG.TopIndex = F_Main.ListBoxMSG.Items.Count - 1
-        F_Main.ListBoxWar.TopIndex = F_Main.ListBoxWar.Items.Count - 1
-        F_Main.ListBoxErr.TopIndex = F_Main.ListBoxErr.Items.Count - 1
+        lbox.TopIndex = lbox.Items.Count - 1
+
+        ''Write to other Log-windows.
+        ''
+        Dim label As String
+        If logFileLevel = 2 Then        ' Warning
+            lbox = F_Main.ListBoxWar
+            label = "Warnings"
+        ElseIf logFileLevel = 3 Then    ' Error
+            lbox = F_Main.ListBoxErr
+            label = "Errors"
+        Else
+            Return
+        End If
+
+        lbox.Items.Add(text)
+        If printEx Then
+            lbox.Items.Add(format("\i{0}", ex))
+        End If
+
+        lbox.TopIndex = lbox.Items.Count - 1
+        F_Main.TabPageWar.Text = format("Warnings({0})", lbox.Items.Count)
+
 
     End Sub
 
@@ -266,7 +319,7 @@ Module utils
 
         ' Call for the output from Informations\Warnings\Errors with the backgoundworker
         Public Sub forwardLog()
-            updateLogWindow(LogLevel, Text, TabLabel)
+            updateLogWindow(LogLevel, Text, TabLabel, Ex)
         End Sub
     End Class
 
@@ -277,7 +330,7 @@ Module utils
     Function fWriteLog(ByVal eventType As Integer, Optional ByVal logLevel As Integer = 4, Optional ByVal text As String = "", _
                        Optional ByVal ex As Exception = Nothing) As Boolean
 
-        If Not AppPreferences.writeLog Then Return True
+        If Not Prefs.writeLog Then Return True
 
         Dim LogFilenam As String = joinPaths(MyPath, "log.txt")
 
@@ -288,7 +341,7 @@ Module utils
             '' Truncate log-file if size exceeded on session-start.
             ''
             Dim fInf As New System.IO.FileInfo(LogFilenam)
-            If fInf.Exists AndAlso fInf.Length > AppPreferences.logSize * Math.Pow(10, 6) Then
+            If fInf.Exists AndAlso fInf.Length > Prefs.logSize * Math.Pow(10, 6) Then
                 fLoeschZeilen(LogFilenam, System.IO.File.ReadAllLines(LogFilenam).Length / 2)
             End If
         ElseIf eventType = 3 Then
@@ -328,6 +381,40 @@ Module utils
         Return True
     End Function
 
+    ' Delete lines from the Log
+    Function fLoeschZeilen(ByVal File As String, ByVal Anzahl As Integer, Optional ByVal Zeichen As String = "-") As Boolean
+        ' Declarations
+        Dim i, k As Integer
+        Dim inhalt() = System.IO.File.ReadAllLines(File)
+        Dim inhalt2() As String
+
+        ' Search till the given string is found
+        For i = Anzahl To UBound(inhalt)
+            If Trim(inhalt(i)).StartsWith(Zeichen) Then
+                Exit For
+            End If
+        Next i
+
+        ' Redimension from the array
+        ReDim inhalt2(UBound(inhalt) - i + 3)
+
+        ' Write the actualize file
+        inhalt2(1) = "Cleared Log " & CDate(DateAndTime.Now)
+        inhalt2(2) = "-----"
+
+        k = 3
+        For j = i To UBound(inhalt)
+            inhalt2(k) = inhalt(j)
+            k += 1
+        Next j
+
+        ' Write the textfile
+        System.IO.File.WriteAllLines(File, inhalt2)
+
+        Return True
+
+    End Function
+
 #End Region ' Logging
 
 
@@ -381,9 +468,7 @@ Module utils
         End Using
     End Sub
 
-    ''' <summary>
-    ''' Reads an obligatory value from a json-object, or uses the default-value (if supplied).
-    ''' </summary>
+    ''' <summary>Reads an obligatory value from a json-object, or uses the default-value (if supplied).</summary>
     Function jvalue(ByVal jobj As JObject, ByVal item As Object, Optional ByVal defaultValue As Object = Nothing) As Object
         Dim value = jobj(item)
 
@@ -399,22 +484,31 @@ Module utils
     End Function
 
     ''' <summary>Builds a human-readable help-string from any non-null schema-properties.</summary>
-    Function schemaInfos2helpMsg(ByVal ParamArray propSchemaInfos() As JToken) As String
-        Dim titl = propSchemaInfos(0)
-        Dim desc = propSchemaInfos(1)
-        Dim type = propSchemaInfos(2)
-        Dim chce = propSchemaInfos(3)
-        Dim dflt = propSchemaInfos(4)
-        Dim mini = propSchemaInfos(5)
-        Dim miex = propSchemaInfos(6) '' exclusiveMin
-        Dim maxi = propSchemaInfos(7)
-        Dim maex = propSchemaInfos(8) '' exclusiveMax
+    Function schemaInfos2helpMsg(ByVal schema As JObject) As String
+        Dim infos() As JToken = (From pname In { _
+                                 "title", "description", "type", "enum", "default", _
+                                 "minimum", "exclusiveMinimum", "maximum", "exclusiveMaximum", "units"}
+                    Select schema(pname)).ToArray()
+
+        ''TODO: Include other schema-props in hlp-msg.
+
+        Dim titl = infos(0)
+        Dim desc = infos(1)
+        Dim type = infos(2)
+        Dim chce = infos(3)
+        Dim dflt = infos(4)
+        Dim mini = infos(5)
+        Dim miex = infos(6) '' exclusiveMin
+        Dim maxi = infos(7)
+        Dim maex = infos(8) '' exclusiveMax
+        Dim unit = infos(9) '' exclusiveMax
 
         Dim sdesc As String = ""
         Dim stype As String = ""
         Dim senum As String = ""
         Dim sdflt As String = ""
         Dim slimt As String = ""
+        Dim sunit As String = ""
 
         If desc IsNot Nothing Then
             sdesc = format(desc.ToString())
@@ -442,8 +536,9 @@ Module utils
             slimt = format("\n- limits : {0}{1}, {2}{3}", _
                            open, smin, smax, clos)
         End If
+        If unit IsNot Nothing Then sunit = format("\n-  units : {0}", unit)
 
-        Return String.Join("", stype, sdesc, senum, sdflt, slimt)
+        Return String.Join("", stype, sdesc, sunit, senum, sdflt, slimt)
     End Function
 
 #End Region ' Json
@@ -458,10 +553,7 @@ Module utils
     Private regexp_newLine As New Regex("\r\n|\n\r|\n|\r", RegexOptions.Compiled)
 
 
-    '''<summary>
-    ''' Invokes String.Format() translating '\n', '\t' and '\i' for indenting by-2
-    '''   all subsequent lines.
-    '''</summary>
+    '''<summary>Invokes String.Format() translating '\n', '\t' and '\i' for indenting by-2 all subsequent lines</summary>
     ''' <remarks>
     ''' New-lines are visible only in textBoxes - not console and/or imediate-window.
     ''' <h4>EXAMPLE:</h4>
@@ -493,6 +585,91 @@ Module utils
         Return str
     End Function
 
+    Function JoinSingles(ByVal vars As Single())
+        Dim svars As Object() = (From a In vars Select CStr(a)).ToArray()
+
+        Return Join(svars, ", ")
+    End Function
+    Function MyJoinQuoted(ByVal vars As Object())
+        Dim svars As String() = (From a In vars Select sa = String.Format("""{0}""", New JValue(a))).ToArray()
+
+        Return Join(svars, ", ")
+    End Function
 #End Region ' Strings
 
+#Region "GUI"
+    ''' <param name="infoboxControls">An array with even number of controls, made up of pairs (ctrl, label) where label can be null</param>
+    Sub armControlsWithInfoBox(ByVal schema As JObject, ByVal infoboxControls As Control(), ByVal showInfoBox As EventHandler, ByVal hideInfoBox As EventHandler)
+        For i = 0 To UBound(infoboxControls) Step 2
+            Dim ctrl = infoboxControls(i)
+            Dim lbl = infoboxControls(i + 1)
+
+            Dim ctrlName As String = ctrl.Name
+            Dim propName = ctrlName.Substring(3)
+
+            Dim helpMsg = updateControlsFromSchema(schema, ctrl, lbl, propName, True, True)
+            ctrl.Tag = helpMsg
+            AddHandler ctrl.MouseEnter, showInfoBox
+            AddHandler ctrl.MouseLeave, hideInfoBox
+
+            If lbl IsNot Nothing Then
+                lbl.Tag = helpMsg
+                AddHandler lbl.MouseEnter, showInfoBox
+                AddHandler lbl.MouseLeave, hideInfoBox
+            End If
+        Next
+
+    End Sub
+
+
+    Function updateControlsFromSchema(ByVal schema As JObject, ByVal ctrl As Control, ByVal label As Control, _
+                                 Optional ByVal propName As String = Nothing, Optional ByVal skipToolTip As Boolean = False, _
+                                 Optional ByVal usePropNameAsTitle As Boolean = False) As String
+        Dim msg As String = Nothing
+        Try
+            If propName Is Nothing Then propName = ctrl.Name
+
+            Dim pschema = schema.SelectToken(".properties." & propName)
+            If pschema Is Nothing Then
+                logme(8, False, format("Schema2GUI: Could not find schema for Control({0})!", propName))
+                Return msg
+            End If
+
+            '' Set title on control/label
+            ''
+            Dim title = pschema("title")
+            If title Is Nothing AndAlso usePropNameAsTitle Then title = propName
+
+            If title IsNot Nothing Then
+                If label IsNot Nothing Then
+                    label.Text = title
+                Else
+                    If TypeOf ctrl Is CheckBox Then
+                        ctrl.Text = title.ToString() & "?"
+                    End If
+                End If
+            End If
+
+            msg = schemaInfos2helpMsg(pschema)
+            If msg IsNot Nothing Then
+                If Not skipToolTip Then
+
+                    Dim t = New ToolTip()
+                    t.SetToolTip(ctrl, msg)
+                    t.AutomaticDelay = 300
+                    t.AutoPopDelay = 10000
+                End If
+
+            End If
+
+            Return msg
+
+        Catch ex As Exception
+            logme(8, False, format("Schema2GUI: Skipped exception: {0} ", ex.Message), ex)
+            Return msg
+        End Try
+    End Function
+
+#End Region 'GUI
+
 End Module
\ No newline at end of file
diff --git a/DemoData/TrackDemo.csms b/DemoData/CalibrationTrackDemo.csms
similarity index 100%
rename from DemoData/TrackDemo.csms
rename to DemoData/CalibrationTrackDemo.csms
diff --git a/DemoData/CoastingTrackDemo.csms b/DemoData/CoastingTrackDemo.csms
new file mode 100644
index 0000000000000000000000000000000000000000..84e24a4cd785521b3d20fe1dedd8e49d6a867a8d
--- /dev/null
+++ b/DemoData/CoastingTrackDemo.csms
@@ -0,0 +1,8 @@
+c trigger used (1=yes, 0=no)
+0
+c meas. section ID,direction ID,lenght,heading,latitude start,longitude start,latitude end,longitude end
+c [id],[id],[m],[°],[mm.mm],[mm.mm],[mm.mm],[mm.mm],altitude file
+1,1,250.64,45,2873.939,456.856,2874.0265,457.01,TrackDemo_1_1.csalt
+2,1,250.64,45,2874.0265,457.01,2874.114,457.164,TrackDemo_2_1.csalt
+2,2,250.64,225,2874.114,457.164,2874.0265,457.01,TrackDemo_2_2.csalt
+1,2,250.64,225,2874.0265,457.01,2873.939,456.856,TrackDemo_1_2.csalt
diff --git a/DemoData/EvaluationDemo.csjob b/DemoData/EvaluationDemo.csjob
deleted file mode 100644
index 49b75cd616477136826a60c1285c8bc0dfb737f7..0000000000000000000000000000000000000000
--- a/DemoData/EvaluationDemo.csjob
+++ /dev/null
@@ -1,74 +0,0 @@
-c Constant Speed Evaluator VECTO-CSE 2.01
-c General inputfiles
-c Path to vehicle specifications file (*.csveh)
-J:\TE-Em\Projekte\I_2012_08_HDV_CO2_LOT3\Arbeitsordner\CSE\Release_Packages\2.01\Test\WorkingDir\DemoData\VehicleDemo.csveh
-c Path to ambient conditions file (*.csamb)
-J:\TE-Em\Projekte\I_2012_08_HDV_CO2_LOT3\Arbeitsordner\CSE\Release_Packages\2.01\Test\WorkingDir\DemoData\AmbientConditionsDemo.csamb
-c Anemomenter instrument calibration factors (v_air f, v_air d, beta f, beta d)
-1,0,1,0
-c
-c Calibration test inputfiles
-c Path to measurement section specification file (*.csmsc)
-J:\TE-Em\Projekte\I_2012_08_HDV_CO2_LOT3\Arbeitsordner\CSE\Release_Packages\2.01\Test\WorkingDir\DemoData\TrackDemo.csms
-c Path to measurement data file from the calibration test (*.csdat)
-J:\TE-Em\Projekte\I_2012_08_HDV_CO2_LOT3\Arbeitsordner\CSE\Release_Packages\2.01\Test\WorkingDir\DemoData\DataDemo_CAL.csdat
-c
-c Constant speed test inputfiles
-c Path to measurement section specification file (*.csmsc)
-J:\TE-Em\Projekte\I_2012_08_HDV_CO2_LOT3\Arbeitsordner\CSE\Release_Packages\2.01\Test\WorkingDir\DemoData\TrackDemo.csms
-c Rolling resistance correction
-1
-c Path to measurement data files from the test runs LS1, HS, LS2 (*.csdat)
-J:\TE-Em\Projekte\I_2012_08_HDV_CO2_LOT3\Arbeitsordner\CSE\Release_Packages\2.01\Test\WorkingDir\DemoData\DataDemo_LS1.csdat
-J:\TE-Em\Projekte\I_2012_08_HDV_CO2_LOT3\Arbeitsordner\CSE\Release_Packages\2.01\Test\WorkingDir\DemoData\DataDemo_HS.csdat
-J:\TE-Em\Projekte\I_2012_08_HDV_CO2_LOT3\Arbeitsordner\CSE\Release_Packages\2.01\Test\WorkingDir\DemoData\DataDemo_LS2.csdat
-c Evaluation settings
-c Acceleration correction (yes = 1, no = 0)
-0
-c Gradient correction (yes = 1, no = 0)
-0
-c Output frequency (1Hz = 1, 100Hz = 100)
-1
-c Parameters for general validity criteria
-5
-0.3
-3
-25
-35
-0
-c General parameters
-1
-1.1884
-1
-20
-c Parameters for identification of measurement section
-10
-100
-10
-c Requirements on number of valid datasets
-5
-1
-2
-10
-c **DataSet validity criteria**
-25
-c *Calibration test*
-5
-8
-5
-c *Low and high speed test*
-10
-c Low speed test
-5
-8
-16
-9
-0.15
-0.1
-c High speed test
-5
-8
-80
-3
-0.3
-0.1
diff --git a/DemoData/EvaluationDemo.csjob.json b/DemoData/EvaluationDemo.csjob.json
new file mode 100644
index 0000000000000000000000000000000000000000..58c5208f7880db8d9e594b092564c1f96c4d5139
--- /dev/null
+++ b/DemoData/EvaluationDemo.csjob.json
@@ -0,0 +1,75 @@
+{
+  "Header": {
+    "Title": "vecto-cse JOB",
+    "FileVersion": "1.0.0",
+    "AppVersion": "2.0.1-pre2",
+    "ModifiedDate": "2014/06/05 03:57:58 +02:00",
+    "CreatedBy": "ISIS\\anastkn@JRC(lic: 04c137c0-24df-4d90-a3e2-b02fe3dba8ea)",
+    "StrictBody": false,
+    "BodySchema": null
+  },
+  "Body": {
+    "vehicle_fpath": "VehicleDemo.csveh.json",
+    "ambient_fpath": "AmbientConditionsDemo.csamb",
+    "Anemometer": {
+      "v_air_f": "2",
+      "v_air_d": "0",
+      "beta_f": "1",
+      "beta_d": "0"
+    },
+    "calib_track_fpath": "CalibrationTrackDemo.csms",
+    "calib_run_fpath": "DataDemo_CAL.csdat",
+    "coast_track_fpath": "CoastingTrackDemo.csms",
+    "low1_fpath": "DataDemo_LS1.csdat",
+    "high_fpath": "DataDemo_HS.csdat",
+    "low2_fpath": "DataDemo_LS2.csdat",
+    "Criteria": {
+      "Processing": {
+        "roh_air_ref": 1.1884,
+        "accel_correction": false,
+        "gradient_correction": false,
+        "hz_out": 1,
+        "rr_corr_factor": 1,
+        "acc_corr_avg": 1,
+        "dist_float": 25
+      },
+      "Validation": {
+        "trigger_delta_x_max": 10,
+        "trigger_delta_y_max": 100,
+        "delta_head_max": 10,
+        "segruns_min_CAL": 5,
+        "segruns_min_LS": 1,
+        "segruns_min_HS": 2,
+        "segruns_min_head_MS": 10,
+        "delta_Hz_max": 1,
+        "delta_parallel_max": 20,
+        "v_wind_avg_max_CAL": 5,
+        "v_wind_1s_max_CAL": 8,
+        "beta_avg_max_CAL": 5,
+        "leng_crit": 3,
+        "v_wind_avg_max_LS": 5,
+        "v_wind_1s_max_LS": 8,
+        "v_veh_avg_min_LS": 9,
+        "v_veh_avg_max_LS": 16,
+        "v_veh_float_delta_LS": 0.15,
+        "tq_sum_float_delta_LS": 0.1,
+        "v_wind_avg_max_HS": 5,
+        "v_wind_1s_max_HS": 8,
+        "beta_avg_max_HS": 3,
+        "v_veh_avg_min_HS": 80,
+        "v_veh_1s_delta_HS": 0.3,
+        "tq_sum_1s_delta_HS": 0.1,
+        "delta_t_tyre_max": 5,
+        "delta_rr_corr_max": 0.3,
+        "t_amb_min": 0,
+        "t_amb_max": 35,
+        "t_amb_var": 3,
+        "t_amb_tarmac": 25
+      }
+    },
+    "v_air_f": 2.0,
+    "v_air_d": 0.0,
+    "beta_f": 1.0,
+    "beta_d": 0.0
+  }
+}
\ No newline at end of file
diff --git a/DemoData/JobDemo.csjob.json b/DemoData/JobDemo.csjob.json
new file mode 100644
index 0000000000000000000000000000000000000000..9f652c1355ae55363eecf1ecf7c2b7d14b250cff
--- /dev/null
+++ b/DemoData/JobDemo.csjob.json
@@ -0,0 +1,72 @@
+{
+  "Header": {
+    "Title": "vecto-cse JOB",
+    "FileVersion": "1.0.0",
+    "AppVersion": "2.0.1-pre1",
+    "ModifiedDate": "2014/06/03 18:48:29 +02:00",
+    "CreatedBy": "ISIS\\anastkn@JRC(lic: 04c137c0-24df-4d90-a3e2-b02fe3dba8ea)",
+    "StrictBody": false,
+    "BodySchema": null
+  },
+  "Body": {
+    "fpathVehicle": "d:\\Work\\vecto-cse.git\\CSE\\bin\\Debug\\DemoData\\VehicleDemo.csveh.json",
+    "fpathAmbient": "d:\\Work\\vecto-cse.git\\CSE\\bin\\Debug\\DemoData\\AmbientConditionsDemo.csamb",
+    "Anemometer": [
+      1.0,
+      0.0,
+      1.0,
+      0.0
+    ],
+    "fpathTrack": "d:\\Work\\vecto-cse.git\\CSE\\bin\\Debug\\\\DemoData\\TrackDemo.csms",
+    "fpathRunData": [
+      "d:\\Work\\vecto-cse.git\\CSE\\bin\\Debug\\DemoData\\DataDemo_CAL.csdat",
+      "d:\\Work\\vecto-cse.git\\CSE\\bin\\Debug\\DemoData\\DataDemo_CAL.csdat",
+      "d:\\Work\\vecto-cse.git\\CSE\\bin\\Debug\\DemoData\\DataDemo_CAL.csdat",
+      "d:\\Work\\vecto-cse.git\\CSE\\bin\\Debug\\DemoData\\DataDemo_CAL.csdat"
+    ],
+    "Criteria": {
+      "Processing": {
+        "roh_air_ref": 1.1884,
+        "accel_correction": false,
+        "gradient_correction": false,
+        "hz_out": 1,
+        "rr_corr_factor": 1,
+        "acc_corr_avg": 1,
+        "dist_float": 25
+      },
+      "Validation": {
+        "trigger_delta_x_max": 10,
+        "trigger_delta_y_max": 100,
+        "delta_head_max": 10,
+        "segruns_min_CAL": 5,
+        "segruns_min_LS": 1,
+        "segruns_min_HS": 2,
+        "segruns_min_head_MS": 10,
+        "delta_Hz_max": 1,
+        "delta_parallel_max": 20,
+        "v_wind_avg_max_CAL": 5,
+        "v_wind_1s_max_CAL": 8,
+        "beta_avg_max_CAL": 5,
+        "leng_crit": 10,
+        "v_wind_avg_max_LS": 5,
+        "v_wind_1s_max_LS": 8,
+        "v_veh_avg_min_LS": 9,
+        "v_veh_avg_max_LS": 16,
+        "v_veh_float_delta_LS": 0.15,
+        "tq_sum_float_delta_LS": 0.1,
+        "v_wind_avg_max_HS": 5,
+        "v_wind_1s_max_HS": 10,
+        "beta_avg_max_HS": 3,
+        "v_veh_avg_min_HS": 80,
+        "v_veh_1s_delta_HS": 0.3,
+        "tq_sum_1s_delta_HS": 0.1,
+        "delta_t_tyre_max": 5,
+        "delta_rr_corr_max": 0.3,
+        "t_amb_var": 3,
+        "t_amb_tarmac": 25,
+        "t_amb_max": 35,
+        "t_amb_min": 0
+      }
+    }
+  }
+}
\ No newline at end of file
diff --git a/DemoData/Results/DataDemo_CAL_1Hz.csv b/DemoData/Results/DataDemo_CAL_1Hz.csv
new file mode 100644
index 0000000000000000000000000000000000000000..a251adcfcb22068a5e54346183d8452daadf928e
--- /dev/null
+++ b/DemoData/Results/DataDemo_CAL_1Hz.csv
@@ -0,0 +1,1487 @@
+Resultfile Programm VECTO_CSE 2.0.1-pre2 Comp 04/06/2014
+Datafile: ,d:\Work\vecto-cse.git\CSE\bin\Debug\DemoData\DataDemo_CAL.csdat
+
+Time,Lat,Long,Heading,v_veh_GPS,v_veh_CAN,vair_ar,beta_ar,n_eng,tq_l,tq_r,t_amb_veh,t_tire,Satelites,Zone (UTM),Lat (UTM),Long (UTM),Sec_ID,Dir_ID,Lat (root),Long (root),dist (root),slope_deg,altitude,v_veh,dist,vair_ic,vair_uf,vair,beta_ic,beta_uf,beta,vwind_ha,vwind,vwind 1s
+[s],[mm.mm],[mm.mm],[¡],[km/h],[km/h],[m/s],[¡],[rpm],[Nm],[Nm],[¡C],[¡C],[#],[-],[m],[m],[-],[-],[m],[m],[m],[°],[m],[km/h],[m],[m/s],[m/s],[m/s],[°],[°],[°],[m/s],[m/s],[m/s]
+41372,2873.73670488889,456.477632444445,47,0.0358555555555556,0.0369312222222222,3.27814444444444,-5.5,576.466666666667,-138.856666666667,65.8111111111111,20,40,10,32,5305635.86103784,395951.827257944,0,0,0,0,0,0,0,0.0358555555555555,0.0045037037037037,3.27814444444444,3.51601414532909,2.79152887944938,-5.5,-5.48535979107015,-5.48069480274798,3.50610004681072,2.78161473067675,2.79552199373208
+41373,2873.7367,456.477622673267,45,0.0325445544554455,0.0335208910891089,3.32055445544554,-5.5,576.727722772277,18.4554455445545,188.114851485148,20,40,10,32,5305635.8522014,395951.814922447,0,0,0,0,0,0,0,0.0325445544554455,0.0133008525852585,3.32055445544554,3.56150152427486,2.82742776327909,-5.5,-5.48535979107015,-5.48113369018096,3.55250290253861,2.81842910143481,2.79309628713092
+41374,2873.73670029703,456.477613861387,48.5643564356436,0.286514851485149,0.295110297029703,3.04735643564357,-5.5,547.643564356436,2527.77623762376,2459.13168316832,20,40,10,32,5305635.85294951,395951.803955162,0,0,0,0,0,0,0,0.286514851485148,0.0393140814081408,3.04735643564357,3.26847962777864,2.60946687499307,-5.5,-5.48535979107015,-5.44571292989993,3.18927328331898,2.53025567627585,2.51662112856943
+41375,2873.73677118812,456.477756534654,45,1.50049504950495,1.5455099009901,2.85016831683168,-5.5,568.975247524752,3397.84158415842,3080.84851485149,20,40,10,32,5305635.98105974,395951.984054692,0,0,0,0,0,0,0,1.50049504950495,0.278815704070407,2.85016831683168,3.05698308551725,2.51105713205339,-5.5,-5.48535979107015,-5.27430724807749,2.64241866343301,2.09640072464744,2.07036214514508
+41376,2873.73695910891,456.47814990099,45,3.07729702970297,3.16961594059406,2.24637623762376,-5.5,784.891089108911,5463.3,4783.61683168317,20,40,10,32,5305636.32031867,395952.480357821,0,0,0,0,0,0,0,3.07729702970297,0.889725055005499,2.24637623762376,2.40937846427168,2.08745162059384,-5.5,-5.48535979107015,-4.98112549425622,1.56119903427124,1.23859963300175,1.22324752775483
+41377,2873.73737524752,456.478965841584,45,6.21353465346534,6.39994069306931,1.28560396039604,-5.5,1079.9603960396,6326.07920792079,5415.50891089109,20,40,10,32,5305637.07282459,395953.510694748,0,0,0,0,0,0,0,6.21353465346534,2.17463547854785,1.28560396039604,1.37889034075484,1.44956117446115,-5.5,-5.48535979107015,-4.05620131546386,0.705453489406094,0.559681638213457,0.667320595043405
+41378,2873.73809663366,456.480288415842,45,9.25531683168316,9.53297633663366,0.591564356435644,-5.5,1073.57425742574,7648.61287128713,6158.95643564356,20,40,10,32,5305638.37937529,395955.182352546,0,0,0,0,0,0,0,9.25531683168315,4.31446551155115,0.591564356435644,0.63448962678419,1.0336102561323,-5.5,-5.48535979107015,-2.88065499182785,1.94037546857179,1.53942469249636,1.51743542006119
+41379,2873.73916891089,456.482129108911,45,12.5924653465347,12.9702393069307,0.80890099009901,-5.5,761.579207920792,6183.25940594059,5172.68514851485,20,40,10,32,5305640.3242609,395957.511161885,0,0,0,0,0,0,0,12.5924653465346,7.37303261826183,0.80890099009901,0.867596706477899,1.4097200752136,-5.5,-5.48535979107015,-2.8760065564528,2.63564409134797,2.091026020773,2.07035113377946
+41380,2873.74061069307,456.484352970297,45,15.2766633663366,15.7349632673267,1.21933663366337,-5.5,756.658415841584,6159.08910891089,5137.13168316831,20,40,9.59405940594059,32,5305642.9449921,395960.329631564,0,0,0,0,0,0,0,15.2766633663366,11.2471007150715,1.21933663366337,1.30781450437426,1.9125526590542,-5.5,-5.48535979107015,-3.14464753609991,2.94442798464912,2.33600414881686,2.3305614041724
+41381,2873.74242920792,456.486862475247,45,17.8651782178218,18.4011335643564,1.86817821782178,-5.5,895.618811881188,6683.25940594059,5550.2099009901,20,40,10,32,5305646.25714791,395963.516512232,0,0,0,0,0,0,0,17.8651782178218,15.8509552255225,1.86817821782178,2.00373752626702,2.61265567805935,-5.5,-5.48535979107015,-3.44729735968398,2.97452281106284,2.35988031074947,2.36737717798916
+41382,2873.74452683168,456.489805544555,45,20.7732871287129,21.3964857425743,2.54183168316832,-5.5,1050.38118811881,7214.25346534653,6053.83069306931,20,40,10,32,5305650.07657456,395967.252810923,0,0,0,0,0,0,0,20.7732871287128,21.2130955995599,2.54183168316832,2.72627283651622,3.35221215030481,-5.5,-5.48535979107015,-3.63223081851364,3.06797537555888,2.43402224239747,2.43781799566268
+41383,2873.74692524752,456.493229207921,45,23.6955148514852,24.4063802970297,3.31877227722772,-5.5,1029.11881188119,6293.33861386139,5054.50396039604,20,40,10,32,5305654.44238169,395971.597835601,0,0,0,0,0,0,0,23.6955148514851,27.4055828932893,3.31877227722772,3.5595900271064,4.18045823806396,-5.5,-5.48535979107015,-3.7686893218099,3.05929685732342,2.42713701555229,2.38629719667643
+41384,2873.74954049505,456.497165841584,45,26.2050198019802,26.9911703960396,4.44362376237624,-5.5,932.376237623762,5385.14950495049,5473.52871287129,20,40,10,32,5305659.19832027,395976.589112189,0,0,0,0,0,0,0,26.2050198019802,34.3412455720572,4.44362376237624,4.76606332326613,5.2809961678699,-5.5,-5.48535979107015,-3.97117388147781,2.57693676878974,2.04444972487547,2.09376874752701
+41385,2873.75236950495,456.50156990099,45,28.6707128712871,29.5308342574257,4.34869306930693,-5.5,1020.90594059406,4852.56138613861,5791.74554455446,20,40,9.95049504950495,32,5305664.33972911,395982.169799761,0,0,0,0,0,0,0,28.6707128712871,41.9706455720572,4.34869306930693,4.66424424075949,5.34151511669911,-5.5,-5.48535979107015,-3.85762268867375,3.35254716349035,2.65979134957546,2.60719925575209
+41386,2873.75539425743,456.506434059406,45,31.0603069306931,31.9921161386139,4.98048514851485,-5.49811881188119,1105.81188118812,4787.47623762376,5793.04257425743,20,40,9,32,5305669.83339557,395988.330166978,0,0,0,0,0,0,0,31.060306930693,50.2657301430143,4.98048514851485,5.34188060640732,6.01580728052728,-5.49811881188119,-5.48347860295133,-3.91392068165769,3.35096082059181,2.65853280169732,2.70432903849064
+41387,2873.75860425743,456.511784554455,45,33.4361881188119,34.4392737623762,5.73606930693069,-5.4949504950495,1211.06930693069,4366.40099009901,5412.31485148515,20,40,9,32,5305675.659292,395995.102545403,0,0,0,0,0,0,0,33.4361881188118,59.2331635863586,5.73606930693069,6.15229168926211,6.7946305226757,-5.4949504950495,-5.48031028611965,-3.97404050324266,3.22268095369904,2.55676013045744,2.5459942130498
+41388,2873.7619370297,456.517594950495,45,35.1222772277228,36.1759455445545,6.32776237623762,-5.26376237623763,1714.23267326733,3888.73960396039,4625.03069306931,20,40,9,32,5305681.70228838,396002.451915233,0,0,0,0,0,0,0,35.1222772277227,68.7689496149615,6.32776237623762,6.78691936861958,7.39482327996032,-5.26376237623763,-5.24912216730777,-3.85767670199372,3.06750458931214,2.43364873738009,2.46661126933405
+41389,2873.76537653465,456.523843168317,45,37.4892772277228,38.6139555445545,6.12880253025742,-4.67128712871287,1902.89603960396,5059.0603960396,6062.36435643564,20,40,9.33663366336634,32,5305687.93317169,396010.350233935,0,0,0,0,0,0,0,37.4892772277227,78.8351699669966,6.12880253025742,6.57352253859142,7.36197566438825,-4.67128712871287,-4.65664691978302,-3.33943612783254,3.9071881065449,3.0998236923035,3.05718957986652
+41390,2873.76897712871,456.53062950495,45,39.9259306930693,41.1237086138614,6.57963311331683,-2.69485148514852,1825.27227722772,4715.27326732673,5453.94950495049,20,40,10,32,5305694.4503797,396018.924254608,0,0,0,0,0,0,0,39.9259306930692,89.6031348459845,6.57963311331683,7.0570664257042,7.88594193654915,-2.69485148514852,-2.68021127621866,-1.9147416270145,4.09526618416192,3.24903813120485,3.27028962665605
+41391,2873.77274059406,456.537894455446,45,42.3887623762376,43.6604252475247,7.01719801983168,-3.1109900990099,1515.89603960396,5241.67722772277,5474.55841584159,20,40,10,32,5305701.25855204,396028.099906997,0,0,0,0,0,0,0,42.3887623762376,101.03006069857,7.01719801983168,7.52638204827023,8.39918961005042,-3.1109900990099,-3.09634989008005,-2.22892133158243,4.31697776317601,3.42493619056233,3.42553580550782
+41392,2873.7767339604,456.545593564356,45,44.8273267326733,46.1721465346535,7.51802805277228,-4.78891089108911,1588.5396039604,5316.32871287129,4938.67128712871,20,40,10,32,5305708.48285115,396037.824045602,0,0,0,0,0,0,0,44.8273267326732,113.15311729923,7.51802805277228,8.06355346035034,8.96352712477583,-4.78891089108911,-4.77427068215926,-3.44988370940367,4.48413500273978,3.55755278270231,3.54219940293863
+41393,2873.78097871287,456.553654554455,45,47.0813366336634,48.4937767326733,8.09227832781188,-4.39485148514852,1672.21782178218,5253.44554455446,4633.19702970297,20,40,10,32,5305716.16469944,396048.00734667,0,0,0,0,0,0,0,47.0813366336633,125.924023679868,8.09227832781188,8.67947265616861,9.58185802417377,-4.39485148514852,-4.38021127621866,-3.18362898001356,4.49556634214561,3.56662199968359,3.55919306136641
+41394,2873.7854529703,456.562073069307,45,49.2465940594059,50.7239918811881,8.71713806382178,-3.74980198019802,1749.25247524752,5037.24554455446,4552.31881188119,20,40,10,32,5305724.26366558,396058.643649091,0,0,0,0,0,0,0,49.2465940594059,139.306033553355,8.71713806382178,9.34967365185101,10.2380017990719,-3.74980198019802,-3.73516177126817,-2.7337763136487,4.4324616158693,3.51655696051131,3.51967908817553
+41395,2873.79013831683,456.570842475247,45,51.303603960396,52.8427120792079,9.28129537957426,-3.41881188118812,1819.70792079208,4827.47326732673,4457.91188118812,20,40,10,32,5305732.74578839,396069.724070731,0,0,0,0,0,0,0,51.303603960396,153.271923789879,9.28129537957426,9.95476752004167,10.8362518213217,-3.41881188118812,-3.40417167225826,-2.50339811619967,4.40294127467949,3.49313657466611,3.49284236800188
+41396,2873.79499871287,456.579980495049,45,53.2129702970297,54.8093594059406,10.0956490648218,-1.69554455445545,1887.30693069307,4423.34356435643,4252.71782178218,20,40,10,32,5305741.54391514,396081.269482647,0,0,0,0,0,0,0,53.2129702970296,167.796914053905,10.0956490648218,10.8282125817697,11.6389048109018,-1.69554455445545,-1.68090434552559,-1.24488121421889,4.07642554315038,3.2340906385853,3.25091421065783
+41397,2873.80002445544,456.589453663366,45,55.0443564356436,56.6956871287129,10.3564185918812,-1.0009900990099,1950.19801980198,4290.61188118812,4113.10495049505,20,40,10,32,5305750.64082593,396093.23786931,0,0,0,0,0,0,0,55.0443564356435,182.840880693069,10.3564185918812,11.1079041455034,11.9667814465435,-1.0009900990099,-0.986349890080043,-0.733813270898767,4.28431719608003,3.39902446148059,3.39307094591621
+41398,2873.80520891089,456.599226831683,45,56.6717722772277,58.3719254455445,10.8191149611881,-1.50257425742574,1664.60396039604,4197.04455445545,3987.6297029703,20,40,10,32,5305760.02502378,396105.585221122,0,0,0,0,0,0,0,56.6717722772277,198.362234625962,10.8191149611881,11.6041748276061,12.4530890062019,-1.50257425742574,-1.48793404849588,-1.1106115887996,4.26401513734433,3.38291753216075,3.33478809246257
+41399,2873.81055930693,456.60928039604,45,58.4487821782178,60.2022456435644,11.5811529150495,-1.19465346534653,1482.03465346535,4312.38613861386,4000.26831683168,20,40,10,32,5305769.71033893,396118.28735474,0,0,0,0,0,0,0,58.4487821782177,214.351876375137,11.5811529150495,12.4215080081482,13.2030111937566,-1.19465346534653,-1.18001325641668,-0.888834210420616,3.97052526272645,3.15007313307288,3.14806465239701
+41400,2873.81607148515,456.619629603961,45,60.0928613861386,61.8956472277228,12.2398388337624,-1.27811881188119,1533.17326732673,4232.04455445545,3948.54356435643,20,40,10,32,5305779.68872898,396131.363121561,0,0,0,0,0,0,0,60.0928613861385,230.81588630363,12.2398388337624,13.1279896921535,13.8576658592922,-1.27811881188119,-1.26347860295133,-0.970432276715146,3.74963665002447,2.97482798583601,2.96200894165842
+41401,2873.82174128713,456.630266534654,45,61.7196534653465,63.5712430693069,13.0272304731683,2.2380198019802,1576.66336633663,4145.27128712871,3905.92574257426,20,40,10,32,5305789.95267119,396144.802512131,0,0,0,0,0,0,0,61.7196534653465,247.738494719472,13.0272304731683,13.9725162799788,14.6196931499612,2.2380198019802,2.25266001091005,1.71350692919338,3.43266112138677,2.72335090647408,2.78730010239692
+41402,2873.82755683168,456.641186039604,45,63.2767128712871,65.1750142574257,13.0714609462376,-0.236831683168317,1612.51485148515,4050.34752475247,3848.99603960396,20,40,10,32,5305800.48027543,396158.598713042,0,0,0,0,0,0,0,63.276712871287,265.104150082508,13.0714609462376,14.0199562179076,14.7489960275082,-0.236831683168317,-0.222191474238459,-0.176323714572481,3.71779380841642,2.94956501099188,2.91079324079685
+41403,2873.83350752475,456.652381485149,45,64.7949207920792,66.7387684158416,13.7132392740594,2.78089108910891,1653.67326732673,3970.08712871287,3768.07722772277,20,40,10,32,5305811.25206904,396172.743103885,0,0,0,0,0,0,0,64.7949207920791,282.895172854785,13.7132392740594,14.7083034573379,15.3805275823672,2.78089108910891,2.79553129803877,2.13169656432282,3.53309216399014,2.80302931376222,2.79731595758354
+41404,2873.83958623762,456.663847821782,45,66.2402178217822,68.2274243564356,14.7001089108911,2.48029702970297,1688.75247524752,3860.72079207921,3791.11386138614,20,40,10,32,5305822.25496289,396187.229153263,0,0,0,0,0,0,0,66.2402178217821,301.097414438944,14.7001089108911,15.7667826248976,16.3020289132658,2.48029702970297,2.49493723863282,1.92597290112444,3.00154737215209,2.38132063367587,2.34458785312636
+41405,2873.84577415842,456.675594455445,45,67.6936237623762,69.7244324752475,15.5755247524752,-0.20029702970297,1725.31188118812,3882.47821782178,3750.80198019802,20,40,10,32,5305833.45390269,396202.067947518,0,0,0,0,0,0,0,67.6936237623761,319.700636193619,15.5755247524752,16.7057206534739,17.1317796957951,-0.20029702970297,-0.185656820773113,-0.148979249926671,2.49570281552407,1.98000160359598,2.03374099312006
+41406,2873.85207673267,456.687614653465,45,69.1105841584158,71.1839016831683,15.2725401540594,0.925841584158416,1763.20792079208,3831.99207920792,3690.88118811881,20,40,10,32,5305844.85912897,396217.2512777,0,0,0,0,0,0,0,69.1105841584157,338.704617161716,15.2725401540594,16.3807507957081,16.9555404625063,0.925841584158416,0.940481793088273,0.725391309399085,3.11586659844715,2.47201743057737,2.4754212701278
+41407,2873.85848425742,456.699902871287,45,70.4809603960396,72.5953892079208,15.0295121013861,1.74732673267327,1797.42574257426,3762.31881188119,3648.43564356436,20,40,10,32,5305856.45279537,396232.77191019,0,0,0,0,0,0,0,70.4809603960395,358.093752255225,15.0295121013861,16.1200880685488,16.8251392548184,1.74732673267327,1.76196694160312,1.34651476205959,3.7667615369927,2.98841426039065,2.96500871809619
+41408,2873.86500376238,456.712445445545,45,71.8090297029703,73.9633005940594,15.7919158415842,4.26940594059406,1830.34158415842,3709.84158415842,3553.75445544554,20,40,10,32,5305868.24823199,396248.613055381,0,0,0,0,0,0,0,71.8090297029702,377.863259873487,15.7919158415842,16.9378135777255,17.5487617695558,4.26940594059406,4.28404614952391,3.29148741280405,3.42959604152487,2.72091918142895,2.78146098069319
+41409,2873.87163960396,456.725221881188,45,73.1143465346535,75.307776930693,15.6441331136634,4.51495049504951,1860.43564356436,3653.00297029703,3466.61683168317,20,40,10,32,5305880.25396998,396264.749324531,0,0,0,0,0,0,0,73.1143465346533,397.995090841584,15.6441331136634,16.7793073951546,17.4979912576495,4.51495049504951,4.52959070397936,3.46086701895959,3.88265962199169,3.08036366747721,3.00805241220906
+41410,2873.87838326733,456.73823029703,45,74.3460099009901,76.5763901980198,16.7107238724752,2.52643564356436,1891.06930693069,3565.75643564356,3418.93564356436,20,40,10,32,5305892.45428147,396281.178087201,0,0,0,0,0,0,0,74.34600990099,418.478310368537,16.7107238724752,17.9232924326703,18.4790808083487,2.52643564356436,2.54107585249421,1.96389072423389,3.10755888896241,2.46542639016996,2.54510487556412
+41411,2873.88524871287,456.751442772277,45,75.5576435643565,77.8243728712871,16.9788223323762,2.79594059405941,1925.12871287129,3561.88118811881,3281.71584158416,20,40,10,32,5305904.87565338,396297.865024513,0,0,0,0,0,0,0,75.5576435643563,439.296968729373,16.9788223323762,18.2108447334698,18.7763788847737,2.79594059405941,2.81058080298926,2.17807267113284,3.20222766265298,2.54053321881632,2.50404972532924
+41412,2873.89225,456.764833465346,45,76.6786336633664,78.9789926732673,17.423896039703,2.91306930693069,1951.35643564356,3518.07623762376,3225.63366336634,20,40,10,32,5305917.54470915,396314.77841085,0,0,0,0,0,0,0,76.6786336633663,460.445591281627,17.423896039703,18.6882140127054,19.217317677302,2.91306930693069,2.92770951586055,2.26517613021785,3.12524166426702,2.47945527343338,2.41917996307929
+41413,2873.89937455446,456.778390495049,45,77.7409702970297,80.0731994059406,18.0090594059406,1.18267326732673,1793.44059405941,3313.8900990099,3047.18118811881,20,40,10,32,5305930.43842476,396331.903024162,0,0,0,0,0,0,0,77.7409702970296,481.898209240924,18.0090594059406,19.31583817872,19.7769036765132,1.18267326732673,1.19731347625659,0.927102862007559,2.81099187644914,2.23014069962326,2.32739057811268
+41414,2873.9066170297,456.79209990099,45,78.7290693069307,81.0909413861386,17.3462926292079,0.0812871287128713,1707.42079207921,2716.44158415842,2561.44851485149,20,40,10,32,5305943.5472108,396349.221293255,0,0,0,0,0,0,0,78.7290693069306,503.633082425742,17.3462926292079,18.6049795202508,19.2699858830506,0.0812871287128713,0.0959273376427287,0.0723632435060687,3.6307299216836,2.88049162842646,2.80217010034534
+41415,2873.91392851485,456.80590039604,45,78.7093366336633,81.0706167326733,17.3462623759406,-0.634455445544555,1818.60891089109,525.442574257425,503.521782178218,20,40,10,32,5305956.78184019,396366.655245154,0,0,0,0,0,0,0,78.7093366336632,525.535710396038,17.3462623759406,18.6049470717368,19.2682448182521,-0.634455445544555,-0.619815236614697,-0.470699593823816,3.64088560942496,2.88854878887379,2.87570633491488
+41416,2873.92120366337,456.819606831683,45,78.0325544554455,80.3735310891089,17.2138668863366,3.5029702970297,1686.05445544554,356.368316831683,353.743564356436,20,40,10,32,5305969.95131722,396383.970742931,0,0,0,0,0,0,0,78.0325544554454,547.302135506049,17.2138668863366,18.4629446608869,19.1165272005642,3.5029702970297,3.51761050595956,2.70282315261109,3.61102444420471,2.86485800539846,2.87274737231829
+41417,2873.92841267327,456.833198811881,45,77.3018712871288,79.6209274257426,16.771605610198,3.14574257425743,1673.0297029703,266.442574257426,313.742574257426,20,40,10,32,5305983.00089346,396401.14139052,0,0,0,0,0,0,0,77.3018712871286,568.876784735972,16.771605610198,17.9885918893152,18.6994419292771,3.14574257425743,3.16038278318728,2.42004505969182,3.79668791666418,3.01215678268567,3.03157889287641
+41418,2873.93555742574,456.846661584158,45,76.5916633663366,78.8894132673267,16.8606012104951,3.25128712871287,1655.0099009901,275.088118811881,338.939603960396,20,40,10,32,5305995.93438214,396418.148876107,0,0,0,0,0,0,0,76.5916633663366,590.251430858085,16.8606012104951,18.0840452150668,18.7312691410091,3.25128712871287,3.26592733764272,2.51124613029815,3.67109437151779,2.91251534331063,2.83274110726979
+41419,2873.94264019802,456.859998118812,45,75.8722871287129,78.1484557425743,18.0224653465346,5.17643564356436,1642.25247524752,428.455445544554,460.765346534654,20,40,10,32,5306008.75593362,396434.996977471,0.881188118811881,0.881188118811881,4675591.25513096,349335.751247818,8.18241494141283,0,0,75.8722871287128,611.426548899889,18.0224653465346,19.3302168851983,19.677984569662,5.17643564356436,5.19107585249421,4.04876816094632,2.60459317032709,2.06639132747856,2.12566532155794
+41420,2873.94966653465,456.873242475248,45,75.6807722772277,77.9511954455445,18.2861683168317,4.96366336633663,1644.00495049505,2216.21683168317,2179.22772277228,20,40,10,32,5306021.4750557,396451.728306776,1,1,5306020.52135415,396452.505243358,29.0257183262561,0,0,75.6807722772276,632.445347992298,18.2861683168317,19.6130547495581,19.8921035167764,4.96366336633663,4.97830357526649,3.89658922329846,2.35786741326063,1.87064791139501,1.92739599619329
+41421,2873.95671326733,456.886556138614,45,76.463099009901,78.756991980198,17.5624735973267,4.67811881188119,1665.31683168317,3315.21089108911,3235.7198019802,20,40,10,32,5306034.23045703,396468.546571493,1,1,5306033.84517769,396468.86044077,50.1211385885365,0,0,76.4630990099009,653.557684295929,17.5624735973267,18.8368470766499,19.3219913640253,4.67811881188119,4.69275902081104,3.63900965815681,3.00656402340956,2.38530066586268,2.30318913278347
+41422,2873.96383752475,456.900059009901,45,77.5531386138614,79.8797327722773,17.8749405940594,4.6270297029703,1689.33168316832,3495.37326732673,3350.96534653465,20,40,10,32,5306047.12528114,396485.603022248,1,1,5306047.34125304,396485.427079921,71.4892826984635,0,0,77.5531386138613,674.949320324531,17.8749405940594,19.1719873973647,19.6497537188511,4.6270297029703,4.64166991190015,3.59720546485631,2.98377874606662,2.36722363946483,2.39345361957679
+41423,2873.97105940594,456.913767623762,45,78.6811782178218,81.0416135643564,18.3285742574258,4.18821782178218,1711.09405940594,3483.11089108911,3277.28712871287,20,40,10,32,5306060.19639095,396502.918920092,1,1,5306061.03469643,396502.23599136,93.1699168137525,0,0,78.6811782178217,696.657184598458,18.3285742574258,19.6585377627388,20.1018233370511,4.18821782178218,4.20285803071203,3.26380839819608,2.78894470182041,2.21264925759414,2.23004257938463
+41424,2873.97839782178,456.927647920792,45,79.761099009901,82.153931980198,19.1472475247525,3.80029702970297,1736.41089108911,3453.85346534653,3285.12574257426,20,40,10,32,5306073.47957907,396520.452464403,1,1,5306074.91931736,396519.279576154,115.153239603911,0,0,79.7610990099009,718.667466391637,19.1472475247525,20.5366158453571,20.8611182417548,3.80029702970297,3.81493723863282,2.9853287142948,2.39548681364711,1.90049380195066,1.92057887654133
+41425,2873.98584326733,456.941705148515,45,80.8530693069307,83.2786613861386,18.587004400495,4.41821782178218,1756.0099009901,3409.57920792079,3279.17722772277,20,40,10,32,5306086.9571238,396538.209872534,1,1,5306088.99109084,396536.552893577,137.432878375539,0,0,80.8530693069306,740.975494224421,18.587004400495,19.9357201913993,20.4456968308248,4.41821782178218,4.43285803071203,3.43717077882966,3.11781090470106,2.47355997381476,2.37942745104814
+41426,2873.99338980198,456.955946138613,45,81.8814356435644,84.3378787128713,20.0114158415842,4.70742574257426,1781.42079207921,3392.45841584158,3246.19801980198,20,40,10,32,5306100.6178706,396556.199453582,1,1,5306103.24963592,396554.055475991,160.008229952894,0,0,81.8814356435642,763.577873872386,20.0114158415842,21.4634902029147,21.7150364866677,4.70742574257426,4.72206595150411,3.70672319489935,2.50037399253886,1.98370754884012,1.99314042675733
+41427,2874.00102792079,456.970371485148,45,82.9211287128713,85.4087625742574,20.5481782178218,4.17495049504951,1801.68316831683,3284.00891089109,3131.72871287129,20,40,10,32,5306114.44420188,396574.421628571,1,1,5306117.68813082,396571.778949568,182.868493525709,0,0,82.9211287128711,786.466841584157,20.5481782178218,22.0392012917687,22.2323746464816,4.17495049504951,4.18959070397936,3.29981234418492,2.25525010039438,1.78923499525451,1.79664815587962
+41428,2874.00876584158,456.984945148515,45,83.689801980198,86.2004960396039,20.8883861386139,4.72069306930693,1817.39108910891,2662.25643564356,2571.00891089109,20,40,10,32,5306128.45214653,396592.831775443,1,1,5306132.2911194,396589.704341652,205.989197597417,0,0,83.6898019801979,809.615221149613,20.8883861386139,22.404095481799,22.5653211798939,4.72069306930693,4.73533327823678,3.73175949954405,2.28004751141596,1.80890837674943,1.81614760754241
+41429,2874.01656376238,456.999620891089,45,84.1391287128713,86.6633025742575,20.9316831683168,4.83356435643564,1826.19801980198,2288.02277227723,2223.1702970297,20,40,10,32,5306142.5690113,396611.370975746,1,1,5306147.00075224,396607.760641205,229.278750016576,0,0,84.1391287128712,832.933849229922,20.9316831683168,22.4505342435639,22.627345939268,4.83356435643564,4.8482045653655,3.81765752094246,2.34617461406102,1.86137126153842,1.8843544184988
+41430,2874.02439980198,457.014358019802,45,84.4714752475248,87.0056195049505,21.1037623762376,5.31455445544554,1832.81188118812,2207.93168316832,2163.06732673267,20,40,10,32,5306156.75517398,396629.987813547,1.57425742574257,1,5306161.77607266,396625.897289182,108.512627726235,0,0,84.4714752475247,856.355080968095,21.1037623762376,22.6350999146074,22.7910899539871,5.31455445544554,5.3291946643754,4.19999898886692,2.45642718454475,1.94884171875811,1.99615059743371
+41431,2874.03226514852,457.029157920792,45,84.8206930693069,87.3653138613861,19.7947508250495,4.28485148514852,1840.5099009901,1913.20198019802,1932.83762376238,20,40,10,32,5306170.99428174,396648.683721821,2,1,5306176.61187735,396644.106888815,25.123884435056,0,0,84.8206930693068,879.868259295928,19.7947508250495,21.2311034744333,21.6996443887601,4.28485148514852,4.29949169407837,3.34441161670115,3.08051863097898,2.44397361388754,2.36827982110959
+41432,2874.04012871287,457.043992970297,45,84.5537128712872,87.0903242574257,20.4203663366337,4.74485148514852,1825.9603960396,569.356435643564,553.311881188119,20,40,10,32,5306185.22936374,396667.423259876,2,1,5306191.46759923,396662.340771916,48.6433862454004,0,0,84.553712871287,903.415065539052,20.4203663366337,21.902115086504,22.2163002595095,4.74485148514852,4.75949169407837,3.7274849835718,2.64649145103901,2.09963192907644,2.08907897576698
+41433,2874.04791990099,457.058752574257,45,83.8151386138614,86.3295927722772,21.2365445544554,3.98574257425743,1815.02475247525,269.80099009901,304.231683168317,20,40,10,32,5306199.33212243,396686.066329673,2,1,5306206.22329012,396680.451877181,72.0045195111303,0,0,83.8151386138612,926.802581160614,21.2365445544554,22.7775170730864,22.8692097780641,3.98574257425743,4.00038278318728,3.1599913431737,2.17977306482331,1.72935420715114,1.73305745925869
+41434,2874.05562376238,457.073392772277,45,83.0314950495049,85.52243990099,20.8364257425743,3.47594059405941,1793.34653465347,273.826732673267,303.927722772277,20,40,10,32,5306213.27584369,396704.557680265,2,1,5306220.84123654,396698.393915178,95.1475764682341,0,0,83.0314950495048,949.973379757975,20.8364257425743,22.3483647199097,22.4856839220371,3.47594059405941,3.49058080298926,2.75451949085814,1.98718556094954,1.57656215028817,1.58441463356303
+41435,2874.06324554455,457.087901188119,45,82.2163465346535,84.682836930693,20.3281881188119,4.25277227722772,1777.14851485149,271.688118811881,302.162376237624,20,40,10,32,5306227.07052225,396722.882072443,2,1,5306235.31796363,396716.162620831,118.067055684963,0,0,82.2163465346534,972.920669334434,20.3281881188119,21.8032482051797,22.0055363323088,4.25277227722772,4.26741248615758,3.35490746891237,2.15744358851194,1.71163879703541,1.71183708868298
+41436,2874.07079089109,457.102272772277,45,81.428792079208,83.8716558415841,21.0262079207921,3.83366336633663,1760.97524752475,306.279207920792,335.060396039604,20,40,10,32,5306240.72672294,396741.03340626,2,1,5306249.65469926,396733.759501272,140.764901179606,0,0,81.4287920792079,995.647584735974,21.0262079207921,22.5519179294933,22.5541865420468,3.83366336633663,3.84830357526649,3.04831031417173,1.97341406199826,1.56563633418626,1.5794318938085
+41437,2874.0782619802,457.116518811881,45,80.7733168316832,83.1965163366337,21.0505445544554,3.97643564356436,1749.9801980198,882.058415841584,866.975247524752,20,40,10,32,5306254.2482274,396759.025815585,2,1,5306263.85987334,396751.194903316,163.254459090287,0,0,80.7733168316831,1018.1663339934,21.0505445544554,22.5780204852715,22.5383482630881,3.97643564356436,3.99107585249421,3.16951800482195,1.86524531777299,1.47981911039953,1.47866989496627
+41438,2874.0856949505,457.130675742574,45,80.4739801980198,82.8881996039604,20.7126138613861,3.83425742574257,1744.32178217822,1364.34257425743,1341.98910891089,20,40,10,32,5306267.70116348,396776.905884165,2,1,5306277.98267969,396768.529207378,185.613612843069,0,0,80.4739801980197,1040.55334876238,20.7126138613861,22.2155687638453,22.2336761725251,3.83425742574257,3.84889763467243,3.05248025975575,1.90526048796068,1.51156571926936,1.53337540412015
+41439,2874.09310821782,457.144813564356,45,80.4321782178218,82.8451435643564,20.6020198019802,4.62148514851485,1745.65346534653,1654.60891089109,1650.97227722772,20,40,10,32,5306281.11808308,396794.761414603,2,1,5306292.07910088,396785.831126349,207.930993749259,0,0,80.4321782178217,1062.89906306381,20.6020198019802,22.0969497451136,22.1348350823603,4.62148514851485,4.6361253574447,3.67197500612908,2.13710622896878,1.69550386131394,1.65355204899257
+41440,2874.10052851485,457.158953564357,45,80.5062079207921,82.9213941584158,20.8331584158416,4.59673267326733,1745.30693069307,1758.71881188119,1744.5495049505,20,40,10,32,5306294.54802991,396812.61980786,2,1,5306306.18212133,396803.141145226,230.258822553331,0,0,80.506207920792,1085.25333179318,20.8331584158416,22.3448603084342,22.3356671915788,4.59673267326733,4.61137288219718,3.65951707170976,2.07532866069085,1.64649174196396,1.64323867409857
+41441,2874.10796861386,457.173099108911,45,80.6220792079208,83.0407415841584,20.4030495049505,4.69950495049505,1747.89603960396,1767.47920792079,1785.25346534653,20,40,10,32,5306308.01458769,396830.485679879,0.831683168316832,0.415841584158416,2206586.9070155,165012.326046643,102.302790218787,0,0,80.6220792079207,1107.6368120187,20.4030495049505,21.8835417056838,21.9766361243931,4.69950495049505,4.7141451594249,3.72228936583175,2.05155208012726,1.62762825094608,1.64835565689485
+41442,2874.11542722772,457.187254950495,45,80.7884158415842,83.2120683168317,20.5867821782178,4.86613861386139,1753.65841584158,1978.25247524753,1943.04257425743,20,40,10,32,5306321.51526645,396848.364907228,0,0,0,0,0,0,0,80.7884158415841,1130.05131364136,20.5867821782178,22.0806064443233,22.1413179308148,4.86613861386139,4.88077882279124,3.86089190048178,2.24460316768826,1.78078809857259,1.7694489101596
+41443,2874.12292138614,457.201427524753,45,81.0553663366337,83.4870273267327,20.8037722772277,4.98039603960396,1760.5099009901,2201.95841584158,2108.51683168317,20,40,10,32,5306335.08146794,396866.266069427,0,0,0,0,0,0,0,81.0553663366335,1152.52318655115,20.8037722772277,22.313341844012,22.3416544848711,4.98039603960396,4.99503624853381,3.9578907770041,2.11867505032174,1.68088122153075,1.6688415640533
+41444,2874.13045891089,457.215648118812,45,81.4506138613861,83.8941322772278,20.6952574257426,4.75336633663366,1770.54455445545,2534.87623762376,2431.6,20,40,10,32,5306348.72698451,396884.228395,0,0,0,0,0,0,0,81.450613861386,1175.09048949394,20.6952574257426,22.1969529053102,22.2727958413497,4.75336633663366,4.76800654556352,3.76977970928854,2.09099030889214,1.65891713506791,1.68056175614139
+41445,2874.13805465347,457.22994970297,45,82.1304653465347,84.5943793069307,20.3522376237624,5.0409900990099,1787.44554455446,3105.63861386138,2993.5,20,40,10,32,5306362.47859303,396902.293441065,0,0,0,0,0,0,0,82.1304653465345,1197.80163822882,20.3522376237624,21.8290427975252,22.0188837827303,5.0409900990099,5.05563030793975,3.97734228609425,2.3591704143795,1.87168166601067,1.87848220053117
+41446,2874.14571990099,457.244405742574,45,83.0422772277227,85.5335455445545,21.2493663366337,4.80405940594059,1804.82673267327,3072.17623762376,2973.36633663366,20,40,10,32,5306376.35556731,396920.553085286,0,0,0,0,0,0,0,83.0422772277227,1220.74294788228,21.2493663366337,22.7912692332706,22.8353860789494,4.80405940594059,4.81869961487045,3.81559024041057,2.23124395552567,1.77018937610445,1.77953019559349
+41447,2874.15346742574,457.259004653465,45,83.734207920792,86.2462341584159,20.5093861386139,4.55049504950495,1817.60891089109,2495.11485148515,2436.12772277228,20,40,10,32,5306390.38182553,396938.993318909,0,0,0,0,0,0,0,83.734207920792,1243.91846842684,20.5093861386139,21.9975943700686,22.245698098892,4.55049504950495,4.5651352584348,3.58430914423317,2.36874644635443,1.87927894824656,1.83708170516776
+41448,2874.16127069307,457.273691683169,45,84.1842178217822,86.7097443564357,22.3733168316832,3.43633663366337,1823.86633663366,2121.32475247525,2117.89504950495,20,40,10,32,5306404.509436,396957.545063971,0,0,0,0,0,0,0,84.1842178217821,1267.24647123212,22.3733168316832,23.9967761614174,23.8592283354335,3.43633663366337,3.45097684259322,2.75603394990809,2.15360030748696,1.70858967494235,1.76581020304341
+41449,2874.16910435643,457.288444455445,45,84.4655247524753,86.9994904950495,21.6083564356436,4.69712871287129,1831.18316831683,1875.60594059406,1919.57722772277,20,40,10,32,5306418.69194691,396976.179609476,0,0,0,0,0,0,0,84.4655247524752,1290.67413990648,21.6083564356436,23.1763084795708,23.2220588663011,4.69712871287129,4.71176892180114,3.73287098041467,2.18646731957579,1.73466519011847,1.71500534971854
+41450,2874.17694138614,457.303259405941,45,84.6664059405941,87.2063981188119,21.6279702970297,4.49168316831683,1835.08415841584,1725.97425742574,1785.41881188119,20,40,10,32,5306432.87936995,396994.891620811,0,0,0,0,0,0,0,84.6664059405939,1314.16537827282,21.6279702970297,23.1973455678526,23.2502440529279,4.49168316831683,4.50632337724668,3.56606068767716,2.13753413393139,1.69584334584988,1.67937934342735
+41451,2874.18476851485,457.31813049505,45,84.7868316831683,87.3304366336634,21.9623069306931,2.78524752475247,1840.12376237624,1630.48316831683,1684.50495049505,20,40,10,32,5306447.04726448,397013.673136039,0,0,0,0,0,0,0,84.7868316831682,1337.70071721672,21.9623069306931,23.5559424366557,23.5442450625892,2.78524752475247,2.79988773368233,2.22197580491623,2.00702858150912,1.59230489509086,1.58610179903318
+41452,2874.19258237624,457.333050594059,45,84.8759405940594,87.4222188118812,22.5400594059406,1.40059405940594,1839.70297029703,1577.78514851485,1589.21782178218,20,40,10,32,5306461.18955399,397032.515164379,0,0,0,0,0,0,0,84.8759405940593,1361.26725140264,22.5400594059406,24.1756179603843,24.0425684765002,1.40059405940594,1.4152342683358,1.12794441545263,1.85360360691787,1.47058299221335,1.49692520765181
+41453,2874.20038712871,457.347992376238,45,84.9118415841584,87.4591968316832,22.663504950495,3.01356435643564,1840.59900990099,1522.5198019802,1513.44554455446,20,40,10,32,5306475.31454923,397051.38380643,0,0,0,0,0,0,0,84.9118415841584,1384.8480709846,22.663504950495,24.3080209975863,24.1494582620173,3.01356435643564,3.0282045653655,2.41945594905971,1.94607516919096,1.54394663168551,1.51413248204764
+41454,2874.20818366337,457.362951188119,45,84.9169207920792,87.4644284158416,22.6304851485149,3.38435643564356,1841.16336633663,1504.66534653465,1511.37821782178,20,40,10,32,5306489.42400448,397070.273295519,0,0,0,0,0,0,0,84.9169207920791,1408.43648344334,22.6304851485149,24.2726052028262,24.1195665083773,3.38435643564356,3.39899664457342,2.71705748419379,2.07778231280027,1.64843838203709,1.63558243900832
+41455,2874.21597376237,457.377921188119,45,84.9522574257426,87.5008251485149,21.3323366336634,1.17405940594059,1841.18316831683,1496.25445544554,1494.21287128713,20,40,10,32,5306503.52135093,397089.176414605,0,0,0,0,0,0,0,84.9522574257424,1432.02956017602,21.3323366336634,22.8802600458912,23.0196468510343,1.17405940594059,1.18869961487045,0.939484526740965,1.83991299183454,1.45972134648751,1.52606790283853
+41456,2874.22375752475,457.392905940594,45,84.9651287128713,87.5140825742574,19.7023509350495,0.839009900990099,1842.05940594059,1476.97128712871,1469.35841584158,20,40,10,32,5306517.60669293,397108.097606507,0,0,0,0,0,0,0,84.9651287128712,1455.62955937844,19.7023509350495,21.1319988358877,21.6319558582246,0.839009900990099,0.853650109919956,0.670545961732154,3.08870136981605,2.45046550704021,2.30796311689276
+41457,2874.2315449505,457.407886138614,45,84.9825049504951,87.53198009901,20.8694086908911,1.33485148514851,1842.55445544554,1502.20594059406,1481.51782178218,20,40,10,32,5306531.69898291,397127.013154091,0,0,0,0,0,0,0,84.9825049504949,1479.23327667766,20.8694086908911,22.3837409868198,22.6265485428927,1.33485148514851,1.34949169407837,1.06385511497725,2.23233239122992,1.77105290217271,1.98358165945053
+41458,2874.23934831683,457.422855049505,45,85.0122673267327,87.5626353465347,18.9948162818812,-0.253069306930693,1897.91089108911,1466.55742574257,1456.41287128713,20,40,10,32,5306545.82111198,397145.915077037,0,0,0,0,0,0,0,85.0122673267325,1502.84170775577,18.9948162818812,20.3731238408989,21.032051536248,-0.253069306930693,-0.238429098000836,-0.178622234484704,3.69139196267548,2.92861872821343,2.81439108587718
+41459,2874.24716059406,457.437817029703,45,85.0017920792079,87.5518458415842,19.3055286027723,-0.435940594059406,1840.33663366337,1436.43168316832,1423.69405940594,20,40,10,32,5306559.95996186,397164.808569125,0,0,0,0,0,0,0,85.0017920792078,1526.4559810506,19.3055286027723,20.7063821624572,21.2969487546921,-0.435940594059406,-0.421300385129549,-0.32487239453986,3.37838149310259,2.6802873852981,2.6831649237011
+41460,2874.2549840594,457.45277,45,85.021297029703,87.5719359405941,19.1245715075248,-2.00960396039604,1843.23267326733,1451.15742574257,1455.5603960396,20,40,10,32,5306574.11979683,397183.691115724,0,0,0,0,0,0,0,85.0212970297028,1550.07289397689,19.1245715075248,20.5122944041627,21.1429976079797,-2.00960396039604,-1.99496375146618,-1.53468083974008,3.58768592861502,2.84634205950711,2.84941403123891
+41461,2874.26281752475,457.467713168317,45,85.0486534653465,87.600113069307,19.3513118813861,-0.446534653465346,1843.26237623762,1438.75445544555,1430.64653465346,20,40,10,32,5306588.29843355,397202.561690963,0,0,0,0,0,0,0,85.0486534653464,1573.69110781078,19.3513118813861,20.7554875810725,21.3382610406562,-0.446534653465346,-0.431894444535489,-0.325020032484084,3.36765993404845,2.67178128273325,2.72767312929188
+41462,2874.27065594059,457.482652079208,45,85.017297029703,87.5678159405941,18.8747381743564,-0.0542574257425745,1842.73267326733,1410.78316831683,1407.18910891089,20,40,10,32,5306602.48639544,397221.427033957,0,0,0,0,0,0,0,85.0172970297029,1597.31145434543,18.8747381743564,20.2443325897029,20.9301871035119,-0.0542574257425745,-0.0396172168127171,-0.0325609416060112,3.80008867710221,3.01485482472773,2.85094397158016
+41463,2874.27850584158,457.497575346535,45,84.9968316831683,87.5467366336633,20.6393322331683,-0.547425742574257,1841.31683168317,1424.01485148515,1423.68910891089,20,40,10,32,5306616.69603949,397240.273178678,0,0,0,0,0,0,0,84.9968316831683,1620.92499070406,20.6393322331683,22.1369696521304,22.4314296189984,-0.547425742574257,-0.5327855336444,-0.418929077724813,2.3670959883295,1.87796953371383,2.00406484585499
+41464,2874.28635643564,457.512491089109,45,84.9813861386139,87.5308277227723,19.8057590760396,-1.22435643564356,1842.29702970297,1443.1099009901,1466.84059405941,20,40,10,32,5306630.90719477,397259.109881131,0,0,0,0,0,0,0,84.9813861386138,1644.53520921341,19.8057590760396,21.2429105094351,21.7208198942461,-1.22435643564356,-1.20971622671371,-0.934139048389343,3.04002850474913,2.41185019183335,2.29645673415005
+41465,2874.29420881188,457.527406831683,45,84.9877128712871,87.5373442574258,20.01699945,-0.403960396039604,1840.37623762376,1422.03069306931,1448.46831683168,20,40,10,32,5306645.12171173,397277.946549406,0,0,0,0,0,0,0,84.987712871287,1668.14716534653,20.01699945,21.4694789707999,21.9021623031711,-0.403960396039604,-0.389320187109746,-0.301336712211161,2.95236106372588,2.34229797081992,2.36776128597425
+41466,2874.30204544555,457.542335148515,45,84.9896831683168,87.5393736633663,19.7437535756436,1.24564356435644,1842.10396039604,1417.95544554455,1441.20792079208,20,40,10,32,5306659.30684965,397296.798266865,0,0,0,0,0,0,0,84.9896831683167,1691.75403138063,19.7437535756436,21.1764057473127,21.6701544418262,1.24564356435644,1.26028377328629,0.98352002451032,2.93749242248229,2.3305017211533,2.4483010625897
+41467,2874.30987465346,457.557268415841,45,84.9987524752475,87.548715049505,19.3750423541584,1.06277227722772,1844.44059405941,1451.96930693069,1469.63168316832,20,40,10,32,5306673.47818332,397315.655812476,0,0,0,0,0,0,0,84.9987524752474,1715.35872662265,19.3750423541584,20.7809399915311,21.3557770947748,1.06277227722772,1.07741248615758,0.821048214049433,3.35685988467448,2.66321290874803,2.60372466325593
+41468,2874.31770089109,457.572211485149,45,85.0299207920792,87.5808184158416,19.1540528054455,-1.66277227722772,1842.65346534653,1447.5900990099,1451.60594059406,20,40,10,32,5306687.64385832,397334.525375692,0,0,0,0,0,0,0,85.0299207920791,1738.97053195819,19.1540528054455,20.5439149328699,21.1690019213609,-1.66277227722772,-1.64813206829787,-1.26516371616856,3.55030955609113,2.81668897858996,2.84240937127539
+41469,2874.32554613861,457.587136534654,45,85.0065742574258,87.5567714851486,18.7276699672277,0.291485148514851,1840.9801980198,1440.88910891089,1421.40099009901,20,40,10,32,5306701.84520624,397353.373029046,0,0,0,0,0,0,0,85.0065742574256,1762.58467995049,18.7276699672277,20.0865927751962,20.8056614893863,0.291485148514851,0.306125357444709,0.235207948388419,3.89168168790881,3.08752145280025,3.05902520516047
+41470,2874.33340485148,457.602047524752,45,84.9930891089109,87.5428817821782,18.9120665571287,0.402178217821782,1842.70297029703,1448.38811881188,1437.37821782178,20,40,10,32,5306716.0718687,397372.203522308,0,0,0,0,0,0,0,84.9930891089108,1786.19972753025,18.9120665571287,20.2843696057874,20.9607212534171,0.402178217821782,0.416818426751639,0.319508933817738,3.76123171331049,2.98402709550456,2.99626093191313
+41471,2874.34126653465,457.616956237624,45,85.0030594059406,87.5531511881188,18.9235819579208,-0.0137623762376237,1840.37128712871,1440.44554455445,1439.11782178218,20,40,10,32,5306730.30414404,397391.031184152,0,0,0,0,0,0,0,85.0030594059405,1809.81174095159,18.9235819579208,20.2967205905473,20.9739416547395,-0.0137623762376237,0.00087783269223373,-0.00258722861132904,3.66966881975976,2.91138436138869,2.91884659072326
+41472,2874.34912683168,457.631860594059,45,84.9793069306931,87.5286861386138,18.9152387243564,-0.848217821782178,1840.28217821782,1430.14950495049,1435.94653465347,20,40,10,32,5306744.53400867,397409.853281431,0,0,0,0,0,0,0,84.979306930693,1833.42015783827,18.9152387243564,20.2877719527654,20.9631807225858,-0.848217821782178,-0.83357761285232,-0.645324373862758,3.78495438548352,3.00284781752803,2.97777148146812
+41473,2874.35697237624,457.646781287129,45,84.9621485148515,87.511012970297,18.9276727175248,-2.23425742574257,1840.28712871287,1447.91782178218,1448.97722772277,20,40,10,32,5306758.73624521,397428.695146812,0,0,0,0,0,0,0,84.9621485148514,1857.02482120461,18.9276727175248,20.3011081850772,20.9721048147397,-2.23425742574257,-2.21961721681272,-1.70495768940766,3.74461019859008,2.97084017853837,2.98158485012325
+41474,2874.36481663366,457.661699207921,45,84.9590099009901,87.5077801980198,19.0624444447525,-1.39891089108911,1840.4603960396,1459.31584158416,1427.14554455446,20,40,10,32,5306772.93621941,397447.533424072,0,0,0,0,0,0,0,84.95900990099,1880.62490294278,19.0624444447525,20.4456592588184,21.0875517090964,-1.39891089108911,-1.38427068215925,-1.07206264040628,3.61911902541272,2.87127995743242,2.90201254236294
+41475,2874.37267584158,457.676595346535,45,84.9420792079208,87.4903415841584,19.3954488449505,-0.307029702970297,1841.12376237624,1453.12079207921,1440.72277227723,20,40,10,32,5306787.16442975,397466.344971494,0,0,0,0,0,0,0,84.9420792079207,1904.22324524201,19.3954488449505,20.8028272242317,21.3703039475884,-0.307029702970297,-0.29238949404044,-0.228304682873648,3.28025336937205,2.60243603170914,2.59307661714855
+41476,2874.38053673267,457.691484752475,45,84.954297029703,87.5029259405941,18.9834845984158,-1.96079207920792,1839.9801980198,1480.84950495049,1492.41386138614,20,40,10,32,5306801.39596723,397485.148096041,0,0,0,0,0,0,0,84.9542970297028,1927.81558690868,18.9834845984158,20.3609699044176,21.0200520345607,-1.96079207920792,-1.94615187027806,-1.50163981832487,3.6808235109063,2.92023409550782,2.88789144220473
+41477,2874.38838633664,457.706395544555,45,84.9516435643565,87.5001928712871,19.2905456550495,-0.709306930693069,1840.08910891089,1436.77524752475,1452.65247524753,20,40,10,32,5306815.60618406,397503.977391968,0,0,0,0,0,0,0,84.9516435643563,1951.4125111111,19.2905456550495,20.6903120175857,21.2802459321857,-0.709306930693069,-0.694666721763211,-0.541647589238799,3.42403873535023,2.71651021291354,2.78199904256093
+41478,2874.39619237624,457.721321782178,45,84.5921188118812,87.1298823762376,18.5913047307921,-3.06594059405941,1825.82673267327,260.09801980198,310.169306930693,20,40,10,32,5306829.73542323,397522.824398442,0,0,0,0,0,0,0,84.5921188118811,1974.98091586907,18.5913047307921,19.9403325635538,20.6633828791733,-3.06594059405941,-3.05130038512955,-2.34428311795136,4.00727027304561,3.1792253137346,3.11906995573524
+41479,2874.40391623762,457.736172871287,45,83.8886633663366,86.4053232673267,18.3666897690099,-2.38356435643564,1809.36138613861,251.393069306931,286.786138613861,20,40,10,32,5306843.7141626,397541.575014289,0,0,0,0,0,0,0,83.8886633663365,1998.38209496699,18.3666897690099,19.6994190235122,20.4325271367757,-2.38356435643564,-2.36892414750579,-1.81841926988715,4.01415097412758,3.18468421657006,3.10614346493947
+41480,2874.41155346535,457.750924851485,45,83.1575940594059,85.6523218811881,18.7762651262376,-3.27346534653465,1792.10396039604,-677.864356435644,-533.475247524752,20,40,10,32,5306857.53467812,397560.199253383,0,0,0,0,0,0,0,83.1575940594058,2021.58909279427,18.7762651262376,20.1387141107166,20.7384648551648,-3.27346534653465,-3.2588251376048,-2.52050584318703,3.53100458195281,2.80137310062825,2.86648258582394
+41481,2874.41905544554,457.765457326733,45,80.9836237623763,83.4131324752476,17.5197678766337,-2.48524752475248,1735.21782178218,-3188.86831683168,-2791.39207920792,20,40,10,32,5306871.10958096,397578.545571563,0,0,0,0,0,0,0,80.9836237623761,2044.42561086358,17.5197678766337,18.7910425306367,19.5464269091824,-2.48524752475248,-2.47060731582262,-1.89189811146573,4.04471262431937,3.20893073983874,3.18810936627686
+41482,2874.42631316832,457.779546534654,45,78.4295148514851,80.7824002970297,16.9077425742574,-1.57504950495049,1682.15346534653,-3128.11881188119,-2659.88514851485,20,40,10,32,5306884.24189135,397596.331703085,0,0,0,0,0,0,0,78.429514851485,2066.55135995599,16.9077425742574,18.1346072646127,18.8807239366006,-1.57504950495049,-1.56040929602064,-1.19516309341782,3.93833956742384,3.12453815033551,3.14314283885237
+41483,2874.43331762376,457.793176930693,45,75.5221881188119,77.7878537623762,16.0443525854455,-2.55287128712871,1618.24257425743,-3531.94356435644,-3032.68316831683,20,40,10,32,5306896.91525832,397613.537999722,0,0,0,0,0,0,0,75.5221881188118,2087.93878996149,16.0443525854455,17.2085677123462,17.9773020401317,-2.55287128712871,-2.53823107819886,-1.93627532592383,4.08866036156615,3.24379730715668,3.25151294225186
+41484,2874.44003475247,457.806296039604,45,72.4715544554456,74.6457010891089,15.4686600660396,-0.767524752475247,1548.79207920792,-3694.30693069307,-3182.39207920792,20,40,10,32,5306909.06774668,397630.097994644,0,0,0,0,0,0,0,72.4715544554455,2108.49611644664,15.4686600660396,16.5911016195931,17.3139119520519,-0.767524752475247,-0.75288454354539,-0.576414483202727,3.82451843196538,3.03423652093917,2.90919068743744
+41485,2874.44645554456,457.818825742574,45,68.8471881188119,70.9126037623762,15.5772843785149,-1.45108910891089,1469.76237623762,-4074.94653465347,-3414.96138613861,20,40,10,32,5306920.68438773,397645.914107661,0,0,0,0,0,0,0,68.8471881188118,2128.1381201045,15.5772843785149,16.7076079620262,17.1993486658162,-1.45108910891089,-1.43644889998103,-1.12625530541494,2.85652982297348,2.26626888226656,2.35350184471904
+41486,2874.45251425743,457.83066990099,45,64.7163168316831,66.6578063366337,14.5635066008911,-1.24534653465347,1382.75247524752,-4192.73564356436,-3530.9396039604,20,40,10,32,5306931.64552147,397660.864452196,0,0,0,0,0,0,0,64.7163168316831,2146.69104612211,14.5635066008911,15.6202681370877,16.0990745502722,-1.24534653465347,-1.23070632572361,-0.949782965742039,2.77280983411296,2.19984842901157,2.20073111405031
+41487,2874.45817356436,457.841740891089,45,60.0052673267327,61.8054253465346,13.9218344334653,-2.18188118811881,1356.52475247525,-4920.5900990099,-4116.79306930693,20,40,10,32,5306941.88393492,397674.838681692,0,0,0,0,0,0,0,60.0052673267326,2164.03020387788,13.9218344334653,14.932034761296,15.2838231025437,-2.18188118811881,-2.16724097918896,-1.67746106880413,2.16666581099992,1.71895537944312,1.75313451129141
+41488,2874.46338019802,457.851904455446,45,54.6852772277228,56.3258355445545,12.4651386138614,-2.36188118811881,1363.78217821782,-5185.1603960396,-4377.59900990099,20,40,10,32,5306951.30391708,397687.667847304,0,0,0,0,0,0,0,54.6852772277227,2179.95898319581,12.4651386138614,13.3696377425041,13.7383241617999,-2.36188118811881,-2.34724097918896,-1.82112753674244,2.21652552061835,1.75851229478786,1.74553690694034
+41489,2874.46811841584,457.86111009901,45,49.6558712871287,51.1455474257426,10.810125962604,-1.07613861386139,1242.47524752475,-4506.70792079208,-3677.96435643564,20,40,10,32,5306959.877415,397699.288554586,0,0,0,0,0,0,0,49.6558712871286,2194.40452497249,10.810125962604,11.5945335666093,12.043149635866,-1.07613861386139,-1.06149840493153,-0.817398811900165,2.43637585370973,1.93293370801235,1.90110598754648
+41490,2874.47247366337,457.869583861386,45,46.1487623762376,47.5332252475248,9.91264356435644,-0.909405940594059,1158.40594059406,-4070.52574257426,-3300.87722772277,20,40,10,32,5306967.75770454,397709.985138105,0,0,0,0,0,0,0,46.1487623762376,2207.68639526952,9.91264356435644,10.6319277812632,11.0782559787279,-0.909405940594059,-0.894765731664201,-0.695615221839658,2.40552713111789,1.90845943174003,1.95684930548194
+41491,2874.47651841584,457.877490990099,45,43.0056435643565,44.2958128712871,9.46512871287129,-2.13,1398.40594059406,-3823.02475247525,-2977.03861386139,20,40,10,32,5306975.075381,397719.965790608,0,0,0,0,0,0,0,43.0056435643564,2220.06052043454,9.46512871287129,10.1519402228342,10.51702576134,-2.13,-2.11535979107014,-1.64336563630219,2.03878525078049,1.61749950387644,1.59335406631743
+41492,2874.48028415842,457.884906138614,45,40.3978415841584,41.6097768316832,7.96714851485148,-2.43534653465347,1405.86138613861,-3183.45049504951,-2414.55544554455,20,40,10,32,5306981.88711385,397729.324527478,0,0,0,0,0,0,0,40.3978415841584,2231.63520330033,7.96714851485148,8.54526313617118,9.09342942132571,-2.43534653465347,-2.42070632572361,-1.79613412390193,2.80986666989931,2.22924800087756,2.25692260947605
+41493,2874.4837770297,457.891881881188,45,37.6833663366337,38.8138673267327,6.08324807480198,-0.515544554455446,1316.98514851485,-3173.75841584158,-2397.32574257426,20,40,10,32,5306988.20311021,397738.127032567,0,0,0,0,0,0,0,37.6833663366336,2242.47008817381,6.08324807480198,6.52466254706922,7.33518499076202,-0.515544554455446,-0.500904345525588,-0.408421458696351,4.00372713411601,3.17641431367532,2.95890954695866
+41494,2874.48690049505,457.898519009901,45,34.9742475247525,36.0234749504951,7.52709900990099,1.00287128712871,1224.05445544554,-3283.04851485148,-2503.26633663366,20,40,9.93069306930693,32,5306993.84232671,397746.495669686,0,0,0,0,0,0,0,34.9742475247524,2252.56247786028,7.52709900990099,8.07328262699223,8.40805330514886,1.00287128712871,1.01751149605857,0.770174226569256,1.81579935951947,1.4405904506311,1.69515684951241
+41495,2874.48953742574,457.904795742574,45,31.8424851485149,32.7977597029703,5.79347359735644,-1.92524752475248,1121.22772277228,-5064.94950495049,-4005.48712871287,20,40,9.54455445544554,32,5306998.58827913,397754.399469365,0,0,0,0,0,0,0,31.8424851485148,2261.86483033553,5.79347359735644,6.21386136703563,6.75353098691918,-1.92524752475248,-1.91060731582262,-1.36959170884108,2.72281463640482,2.16018402224868,2.06586518298344
+41496,2874.49138237624,457.910692970297,45,27.8222178217822,28.6568843564356,4.7094994499604,-4.04752475247525,1313.4801980198,-4133.18514851485,-3253.40495049505,20,40,10,32,5307001.87559598,397761.804609961,0,0,0,0,0,0,0,27.8222178217821,2270.12611853685,4.7094994499604,5.05123156227686,5.6008933370293,-4.04752475247525,-4.03288454354539,-2.83166120642956,2.75836655241668,2.18838964443917,2.23407627022887
+41497,2874.49259495049,457.91630960396,45,24.8232772277228,25.5679755445545,3.48235808580198,-4.92366336633663,1410.88118811881,-3605.91584158416,-2806.95148514852,20,40,10,32,5307003.99773434,397768.839523435,0,0,0,0,0,0,0,24.8232772277227,2277.43716014851,3.48235808580198,3.73504599821132,4.38461508781839,-4.92366336633663,-4.90902315740678,-3.30396845772636,3.20145911834006,2.53992348316889,2.47008706868686
+41498,2874.49345514851,457.92145970297,45,22.7519207920792,23.4344784158416,3.80229702970297,-4.26970297029703,1523.18811881188,-1590.33465346535,-1159.56633663366,20,40,10,32,5307005.47745416,397775.281830138,0,0,0,0,0,0,0,22.7519207920792,2283.99309796479,3.80229702970297,4.07820044776706,4.53836339033007,-4.26970297029703,-4.25506276136718,-3.03928979413045,2.29052083421556,1.81721753752338,1.95600857354396
+41499,2874.4943029703,457.926307029703,45,21.4114059405941,22.0537481188119,1.90118811881188,-2.09891089108911,1418,-2072.42475247525,-1607.10594059406,20,40,10,32,5307006.94093781,397781.3466466,0,0,0,0,0,0,0,21.411405940594,2290.14293721122,1.90118811881188,2.03914270159838,2.84432205964902,-2.09891089108911,-2.08427068215925,-1.30079270782654,3.92301998442083,3.11238413955999,2.88852875095705
+41500,2874.49543227723,457.930552079208,45,19.663504950495,20.2534100990099,3.4669603960396,-5.5,1263.70792079208,-1937.70693069307,-2373.15346534653,20,40,10,32,5307008.939127,397786.670607074,0,0,0,0,0,0,0,19.663504950495,2295.84541193619,3.4669603960396,3.71853101666386,4.07549581384663,-5.5,-5.48535979107015,-4.00794540664753,1.7982721553129,1.42668499192836,1.55716816840631
+41501,2874.49703435644,457.93387980198,45,17.7098811881188,18.2411776237624,3.24830693069307,-5.5,1104.55445544554,-1165.01188118812,-1704.36930693069,20,40,10,32,5307011.83330217,397790.867618574,0,0,0,0,0,0,0,17.7098811881188,2301.02940775577,3.24830693069307,3.48401155295123,3.77759355466926,-5.5,-5.48535979107015,-4.04338932373223,1.49386370599214,1.18517818508657,1.15258621227811
+41502,2874.49905168317,457.936154158416,45,16.6793762376238,17.1797575247525,3.98324752475247,-5.5,995.925742574257,-39.0910891089109,-291.774257425743,20,40,10,32,5307015.51990688,397793.766366056,0,0,0,0,0,0,0,16.6793762376237,2305.792094967,3.98324752475247,4.27228112693804,4.34377872293682,-5.5,-5.48535979107015,-4.27807877413144,0.672170025994414,0.533275725410688,0.594869464487289
+41503,2874.50136326733,457.937296633663,45,15.8696237623762,16.3457124752475,4.739,-5.5,907.891089108911,65.6356435643564,-172.875247524752,20,40,9.69306930693069,32,5307019.77655588,397795.265096023,0,0,0,0,0,0,0,15.8696237623762,2310.30315217272,4.739,5.08287274008097,4.94037215452772,-5.5,-5.48535979107015,-4.45885758046733,0.891604281175205,0.7073670372605,0.690190086760884
+41504,2874.50361891089,457.937150594059,45,15.6753069306931,16.1455661386139,5.32559405940594,-5.5,909.782178217822,3749.43861386139,3346.3198019802,20,40,10,32,5307023.95801572,397795.157242966,0,0,0,0,0,0,0,15.6753069306931,2314.62623564357,5.32559405940594,5.7120314136509,5.42831608992189,-5.5,-5.48535979107015,-4.55405813275581,1.4466272074664,1.14770243186489,1.14502565347338
+41505,2874.50591821782,457.93598,45,17.4050396039604,17.9271907920792,5.70840594059406,-5.5,980.707920792079,4093.36336633663,3580.8900990099,20,40,10,32,5307028.24296315,397793.774821235,0,0,0,0,0,0,0,17.4050396039604,2319.22645915842,5.70840594059406,6.12262100543613,5.85302710773466,-5.5,-5.48535979107015,-4.52978138653223,1.40200663089406,1.11230205782314,1.16084651583193
+41506,2874.50805227723,457.933578316832,45,18.7482079207921,19.3106541584158,6.48175247524753,-5.5,920.257425742574,3983.23564356436,3493.13267326733,20,40,10,32,5307032.24898097,397790.853754692,0,0,0,0,0,0,0,18.7482079207921,2324.25819040154,6.48175247524753,6.95208334340325,6.58787661797278,-5.5,-5.48535979107015,-4.56857592157442,1.84139913535211,1.46090039975045,1.37998254893645
+41507,2874.50958544554,457.93,45,20.0323168316832,20.6332863366337,6.47460396039604,-5.5,850.762376237624,3373.54059405941,2975.56435643564,20,40,10,32,5307035.16790622,397786.447567149,0,0,0,0,0,0,0,20.0323168316831,2329.6513869637,6.47460396039604,6.94441611587198,6.65529949095173,-5.5,-5.48535979107015,-4.52083827901817,1.51032291944715,1.19823633801734,1.27707853449506
+41508,2874.51034148515,457.925644455446,50.3465346534653,21.0218613861386,21.6525172277228,7.28562376237624,-5.5,920.985148514852,3601.30495049505,3189.88415841584,20,40,9.93069306930693,32,5307036.66447433,397781.047901374,0,0,0,0,0,0,0,21.0218613861386,2335.34213140815,7.28562376237624,7.81428538009461,7.40196040824106,-5.5,-5.48535979107015,-4.57087497199238,2.08206152137811,1.65183335350306,1.58996924685575
+41509,2874.51009881188,457.920828514851,171.534653465347,22.2283564356436,22.8952071287129,7.16482178217822,-5.46188118811881,936.366336633663,3239.5198019802,2876.80198019802,20,40,10,32,5307036.32124444,397775.042068783,0,0,0,0,0,0,0,22.2283564356435,2341.3713629538,7.16482178217822,7.68471773035915,7.36828402958954,-5.46188118811881,-5.44724097918896,-4.48779894717903,1.65494548649204,1.31297472468896,1.34690361938216
+41510,2874.50893504951,457.916206732673,225,23.1222475247525,23.815914950495,7.30722772277228,-4.44980198019802,770.539603960396,3585.82178217822,3211.61188118812,20,40,10,32,5307034.26755761,397769.247807039,0,0,0,0,0,0,0,23.1222475247524,2347.66872524753,7.30722772277228,7.83745697354783,7.54123817731484,-4.44980198019802,-4.43516177126817,-3.64126643065378,1.56006228602343,1.23769777748452,1.22079961973451
+41511,2874.5070480198,457.911838712871,225,23.8958415841584,24.6127168316832,7.17868316831683,-1.79514851485149,814.29702970297,4341.68910891089,3853.96336633663,20,40,10,32,5307030.8685324,397763.745837714,0,0,0,0,0,0,0,23.8958415841584,2354.19361160617,7.17868316831683,7.69958493055829,7.4766037312742,-1.79514851485149,-1.78050830592163,-1.45283000040747,1.23114143349241,0.9767437041804,0.948087809930795
+41512,2874.50479821782,457.907534455446,225,25.3793861386138,26.1407677227723,6.20620792079208,0.527623762376238,894.460396039604,4550.44455445544,3967.6603960396,20,40,10,32,5307026.79612435,397758.311362756,0,0,0,0,0,0,0,25.3793861386138,2361.03016782179,6.20620792079208,6.65654464230189,6.73498223107893,0.527623762376238,0.542263971306095,0.433879861651448,1.00145686002653,0.794520155384905,0.780442639756012
+41513,2874.50238693069,457.903067326733,225,26.5835346534654,27.3810406930693,7.28108910891089,2.12029702970297,1295.77722772277,4793.03663366337,4207.19405940594,20,40,10,32,5307022.42819,397752.668734557,0,0,0,0,0,0,0,26.5835346534653,2368.24587235974,7.28108910891089,7.80942168174375,7.71877453595747,2.12029702970297,2.13493723863283,1.70145070606943,0.853290201239377,0.676970012726425,0.714857865070166
+41514,2874.49980534653,457.898237821782,225,29.3413168316832,30.2215563366337,7.7049702970297,0.574158415841584,1496.58415841584,7549.6,6523.5,20,40,10,32,5307017.75281162,397746.569194185,0,0,0,0,0,0,0,29.3413168316831,2375.97324108912,7.7049702970297,8.26406066383327,8.23719217258537,0.574158415841584,0.588798624771441,0.450318853045904,1.11547458819149,0.884977754423029,0.88666474314862
+41515,2874.4969229703,457.892802475247,225,32.7815247524753,33.7649704950495,7.34489108910891,-0.894752475247525,1661.53465346535,7075.35148514852,6396.99405940594,20,40,10,32,5307012.53364349,397739.705236751,0,0,0,0,0,0,0,32.7815247524752,2384.61259576458,7.34489108910891,7.87785328037462,8.12737381637885,-0.894752475247525,-0.880112266317668,-0.662584438760661,1.50661579155171,1.1952952349613,1.41150009260908
+41516,2874.49372990099,457.886805247525,225,35.7802673267327,36.8536753465346,6.88236468647525,-0.316831683168317,1810.40099009901,6633.6603960396,5975.44158415842,20,40,10,32,5307006.75137759,397732.131282561,0,0,0,0,0,0,0,35.7802673267326,2394.14629719472,6.88236468647525,7.38176489811794,7.90607214056632,-0.316831683168317,-0.30219147423846,-0.133742388577826,3.22244520629042,2.55657309687147,2.31649925706231
+41517,2874.49026168317,457.88031960396,225,38.4791386138614,39.6335127722772,9.63228712871287,-0.470891089108911,1919.96534653465,5687.32673267327,5141.73564356436,20,40,10,32,5307000.47023536,397723.93999036,0,0,0,0,0,0,0,38.4791386138614,2404.47000962597,9.63228712871287,10.331228037807,10.4005200393106,-0.470891089108911,-0.456250880179053,-0.41114587862797,2.02191605687242,1.60411608707634,1.60330574353704
+41518,2874.48655831683,457.87341049505,225,40.7350198019802,41.9570703960396,10.1667722772277,-0.838613861386138,1530.94554455446,5788.05148514851,5154.84158415842,20,40,10,32,5306993.762879,397715.213561025,0,0,0,0,0,0,0,40.7350198019801,2415.47858666117,10.1667722772277,10.9044966580569,10.9839837510643,-0.838613861386138,-0.823973652456281,-0.625044116976096,1.75108727315821,1.38925018929456,1.4102200900395
+41519,2874.48263415842,457.866101980198,225,43.1056831683168,44.3988536633663,11.9815148514851,-1.95475247524752,1538.98514851485,5717.27920792079,5145.42871287129,20,40,10,32,5306986.65537268,397705.98242662,0,0,0,0,0,0,0,43.1056831683168,2427.1321979373,11.9815148514851,12.8509211275563,12.664328931245,-1.95475247524752,-1.94011226631767,-1.53663022999559,1.7442646613949,1.38383737245273,1.35946233169153
+41520,2874.47849485149,457.858363663366,225,45.5679108910891,46.9349482178218,13.5709108910891,-2.48039603960396,1620.14851485149,5484.54554455445,5006.13267326733,20,40,10,32,5306979.15884398,397696.208912538,0,0,0,0,0,0,0,45.567910891089,2439.4558659241,13.5709108910891,14.5556473995326,14.1569123134467,-2.48039603960396,-2.4657558306741,-2.00667239816958,2.23263560960056,1.77129346481356,1.77132523892337
+41521,2874.47414554455,457.850203069307,225,47.8515643564356,49.2871112871287,14.6830891089109,0.472673267326733,1838.25742574257,5198.5900990099,4886.26435643564,20,40,10,32,5306971.28266623,397685.90255543,0,0,0,0,0,0,0,47.8515643564356,2452.43160288779,14.6830891089109,15.7485278269388,15.2350136136165,0.472673267326733,0.48731347625659,0.398061723086209,2.70144459315457,2.14322979210509,2.13132058928179
+41522,2874.46960960396,457.841637227723,225,49.9130594059406,51.4104511881188,15.4229900990099,0.972673267326733,1772.67326732673,5040.75841584158,4752.57425742574,20,40,10,32,5306963.06974861,397675.085328214,0,0,0,0,0,0,0,49.9130594059405,2466.02137560507,15.4229900990099,16.5421177347112,15.9821478199317,0.972673267326733,0.987313476256591,0.815048803714502,2.93758894143627,2.330578295849,2.42523271883856
+41523,2874.46489752475,457.832692970297,225,52.0557821782178,53.6174556435643,16.2391188118812,-0.331188118811881,1847.0198019802,4848.40792079208,4621.6,20,40,10,32,5306954.53894162,397663.79098884,0,0,0,0,0,0,0,52.0557821782178,2480.18497040705,16.2391188118812,17.41746662415,16.800114196128,-0.331188118811881,-0.316547909882024,-0.259975610597767,3.19215508720703,2.53254199669994,2.51133511486785
+41524,2874.46002861386,457.823360693069,225,53.9633069306931,55.5822061386138,17.0611386138614,0.458811881188119,1915.85643564356,4622.23366336634,4510.3,20,40,10,32,5306945.72622337,397652.008206685,0,0,0,0,0,0,0,53.963306930693,2494.90949353686,17.0611386138614,18.2991340736735,17.6091849377125,0.458811881188119,0.473452090117976,0.389283235605747,3.5388190976164,2.80757285864792,2.76606569394136
+41525,2874.45501475248,457.813666831683,225,55.7346039603961,57.406642079208,17.1333663366337,0.00772277227722773,1902.66336633663,4125.50099009901,4036.05940594059,20,40,10,32,5306936.65302071,397639.770292302,0,0,0,0,0,0,0,55.734603960396,2510.15619034654,17.1333663366337,18.3766028061397,17.7720900349885,0.00772277227722773,0.0223629812070851,0.0151284203542469,3.15945609399029,2.50659978170448,2.50353043205379
+41526,2874.44986257426,457.803663267327,225,57.3820198019802,59.1034803960396,17.0884356435644,1.62811881188119,1474.55445544554,4384.43564356436,4161.37524752475,20,40,10,32,5306927.33047765,397627.14207502,0,0,0,0,0,0,0,57.3820198019802,2525.86556102861,17.0884356435644,18.3284118386371,17.8283459162718,1.62811881188119,1.64275902081105,1.33277328634495,2.70659507645026,2.14731600185784,2.27501665763872
+41527,2874.44456594059,457.793347524753,225,59.0621485148515,60.834012970297,18.6040594059406,2.35079207920792,1510.23267326733,4339.53861386139,4083.18316831683,20,40,10,32,5306917.74728061,397614.120266676,0,0,0,0,0,0,0,59.0621485148514,2542.04666265127,18.6040594059406,19.9540127472679,19.2134751140095,2.35079207920792,2.36543228813778,1.94591193453995,3.8021558549623,3.01649484991519,2.90244950416711
+41528,2874.43912732673,457.782734356436,225,60.6816831683168,62.5021336633663,18.2021089108911,0.277425742574258,1547.60396039604,4273.05643564356,4058.51287128713,20,40,10,32,5306907.90769108,397600.723318362,0,0,0,0,0,0,0,60.6816831683167,2558.67994887239,18.2021089108911,19.5228957997791,18.9640734871852,0.277425742574258,0.292065951504115,0.237666813281043,3.02560279067677,2.40040534478722,2.46472457788046
+41529,2874.43355891089,457.771829306931,225,62.2253267326733,64.0920865346535,18.5132079207921,-0.543267326732674,1586.68811881188,4245.16534653465,3974.44158415842,20,40,10,32,5306897.83414734,397586.958532298,0,0,0,0,0,0,0,62.2253267326732,2575.75139053906,18.5132079207921,19.8565688693913,19.317097860224,-0.543267326732674,-0.528627117802814,-0.424635200191141,2.95524968722281,2.34458970167847,2.30115679907597
+41530,2874.42784732673,457.760661782178,225,63.6755445544554,65.5858108910891,18.5599504950495,-1.04059405940594,1623.34158415842,4188.71089108911,3879.71188118812,20,40,10,32,5306887.5012426,397572.862088958,0,0,0,0,0,0,0,63.6755445544553,2593.24644854236,18.5599504950495,19.9067031923485,19.4398572415768,-1.04059405940594,-1.02595385047608,-0.834676779657627,2.68197168539159,2.127780681595,2.09914098614352
+41531,2874.42201108911,457.749243762376,225,65.109099009901,67.062371980198,18.4606831683168,-1.79732673267327,1659.37128712871,4087.28811881188,3828.98613861386,20,40,10,32,5306876.94301024,397558.449514459,0,0,0,0,0,0,0,65.1090990099009,2611.13425214522,18.4606831683168,19.8002328000653,19.4370532645701,-1.79732673267327,-1.78268652374341,-1.4386762363047,2.3122911939403,1.83448936448039,1.88968049092222
+41532,2874.41605009901,457.737578316832,225,66.4638217821782,68.4577364356435,18.9694356435644,-2.72841584158416,1693.82178217822,4051.44356435644,3713.83465346535,20,40,10,32,5306866.1592013,397543.724624803,0,0,0,0,0,0,0,66.4638217821781,2629.40904603961,18.9694356435644,20.3459015250883,19.9478316135348,-2.72841584158416,-2.7137756326543,-2.17885198606952,2.70114888485666,2.14299518768809,2.11816294924139
+41533,2874.40995148515,457.725693168317,225,67.7615148514852,69.7943602970297,19.2363762376238,-2.22089108910891,1726.9603960396,3983.40891089109,3641.41485148515,20,40,10,32,5306855.12536272,397528.721520589,0,0,0,0,0,0,0,67.7615148514851,2648.05437681518,19.2363762376238,20.6322119426375,20.2492964408923,-2.22089108910891,-2.20625088017906,-1.7847368774619,2.51447144909107,1.99489196807721,2.0141868111609
+41534,2874.40370910891,457.713608910891,225,69.0490297029703,71.1205005940594,18.9792772277228,-1.65564356435644,1757.21287128713,3993.1297029703,3521.19900990099,20,40,10,32,5306843.82967012,397513.465645378,0,0,0,0,0,0,0,69.0490297029702,2667.05982365237,18.9792772277228,20.3564572372297,20.1049947182998,-1.65564356435644,-1.64100335542658,-1.31745958844951,2.14105027612298,1.69863292766007,1.76972440195905
+41535,2874.39729584158,457.701369306931,225,70.2596930693069,72.3674838613862,20.9184356435644,-1.50168316831683,1790.19801980198,3974.87623762376,3434.17920792079,20,40,10,32,5306832.22090524,397498.010607248,0,0,0,0,0,0,0,70.2596930693068,2686.41157783279,20.9184356435644,22.436325447945,21.8255577364954,-1.50168316831683,-1.48704295938697,-1.20952977925263,3.30362613087077,2.62097914708332,2.444172258334
+41536,2874.39071247525,457.688993564357,225,71.4061782178218,73.5483635643565,19.970099009901,-2.35841584158416,1817.75247524752,3881.2198019802,3433.19801980198,20,40,10,32,5306820.30011173,397482.380351441,0,0,0,0,0,0,0,71.4061782178217,2706.09184106161,19.970099009901,21.4191753268925,21.0819592248834,-2.35841584158416,-2.3437756326543,-1.87449071685879,2.61407999381747,2.07391783488448,2.33100388432649
+41537,2874.38399990099,457.676449108911,225,72.5104158415842,74.6857283168317,22.4331485148515,-2.93861386138614,1798.0495049505,3670.22871287129,3432.64455445544,20,40,10,32,5306808.14375655,397466.535650364,0,0,0,0,0,0,0,72.5104158415841,2726.08496163367,22.4331485148515,24.0609493691341,23.2411979073063,-2.93861386138614,-2.92397365245628,-2.39102513974073,4.32223246928074,3.42910508697463,3.28888628159434
+41538,2874.3771809901,457.66371980198,225,73.6128811881188,75.8212676237624,22.1683861386139,-2.81356435643564,1605.55940594059,3675.43564356435,3452.15049504951,20,40,10,32,5306795.79456429,397450.457153616,0,0,0,0,0,0,0,73.6128811881187,2746.38036834434,22.1683861386139,23.7769752259019,23.0794269656429,-2.81356435643564,-2.79892414750579,-2.27343987902128,3.77191299227485,2.99250124128279,2.93598975710807
+41539,2874.37026029703,457.650798613861,225,74.6776534653465,76.917983069307,21.9526633663366,-3.02792079207921,1623.36633663366,3595.86237623762,3405.63564356436,20,40,10,32,5306783.26112897,397434.136252759,0,0,0,0,0,0,0,74.6776534653464,2766.977624945,21.9526633663366,23.5455991130886,22.9559061261873,-3.02792079207921,-3.01328058314935,-2.43821098377106,3.38994923776311,2.68946482134352,2.80238199301689
+41540,2874.36324673267,457.637684455446,225,75.7370891089109,78.0092017821782,21.9370396039604,-2.85217821782178,1647.90099009901,3556.92475247525,3403.64851485148,20,40,10,32,5306770.55998278,397417.571881685,0,0,0,0,0,0,0,75.7370891089108,2787.86639422443,21.9370396039604,23.5288416545784,23.0040990703107,-2.85217821782178,-2.83753800889193,-2.2891604960912,3.15937034950862,2.50653175509083,2.45309519407043
+41541,2874.35614811881,457.624377029703,225,76.7444653465347,79.0467993069307,22.503,-2.75663366336634,1671.21782178218,3506.40297029703,3385.61584158416,20,40,10,32,5306757.70562303,397400.763925065,0,0,0,0,0,0,0,76.7444653465345,2809.04482475248,22.503,24.135869438709,23.5436514430275,-2.75663366336634,-2.74199345443648,-2.23031269098775,3.3950119580666,2.69348140306835,2.63276955952444
+41542,2874.34896821782,457.610873663366,225,77.7475148514852,80.0799402970297,22.7676534653465,-3.35514851485148,1692.82673267327,3442.6396039604,3389.98217821782,20,40,10,32,5306744.70508025,397383.709174365,0,0,0,0,0,0,0,77.7475148514851,2830.50294268427,22.7676534653465,24.4197267682253,23.8239679549228,-3.35514851485148,-3.34050830592163,-2.70972350954513,3.46717047291058,2.75072939518323,2.76196278993238
+41543,2874.34172455446,457.597165940594,225,78.7074158415842,81.0686383168317,22.7103168316832,-2.88752475247525,1712.94059405941,3432.6504950495,3360.83069306931,20,40,10,32,5306731.591005,397366.397722283,0,0,0,0,0,0,0,78.7074158415841,2852.23607775028,22.7103168316832,24.3582296565445,23.8324359689926,-2.88752475247525,-2.87288454354539,-2.31922447114852,3.12744008678966,2.48119942345522,2.48782867656718
+41544,2874.33440792079,457.583267425743,225,79.6945643564356,82.0854012871288,21.1238316831683,-2.16910891089109,1734.34158415842,3438.87128712871,3327.49504950495,20,40,10,32,5306718.34604269,397348.846156788,0,0,0,0,0,0,0,79.6945643564355,2874.24230231023,21.1238316831683,22.65662549661,22.538340675616,-2.16910891089109,-2.15446870196123,-1.72790473239003,2.47231185551668,1.96144405017408,2.03131412000422
+41545,2874.32701,457.569188811881,225,80.6509108910891,83.0704382178218,23.3085742574258,-2.27960396039604,1752.07425742574,3432.01485148515,3282.07227722772,20,40,10,32,5306704.9545528,397331.067518991,0,0,0,0,0,0,0,80.650910891089,2896.51621311881,23.3085742574258,24.9998980171391,24.4515063157995,-2.27960396039604,-2.26496375146618,-1.83076204461342,3.28666129245489,2.60751984934192,2.49449805550725
+41546,2874.31952267327,457.554951683168,225,81.5901485148515,84.037852970297,22.7104059405941,-2.67445544554456,1774.63366336634,3430.35742574258,3249.64059405941,20,40,10,32,5306691.40102004,397313.08842124,0,0,0,0,0,0,0,81.5901485148514,2919.04964136414,22.7104059405941,24.3583252314029,23.9972178133825,-2.67445544554456,-2.6598152366147,-2.12996361635415,3.10776422395262,2.46558929562784,2.49905319388698
+41547,2874.31194504951,457.540558118813,225,82.5008415841585,84.9758668316831,22.2330891089109,-3.11792079207921,1796.63861386139,3416.80396039604,3213.21683168317,20,40,10,32,5306677.68374955,397294.911420869,0,0,0,0,0,0,0,82.5008415841584,2941.83960258526,22.2330891089109,23.8463731925457,23.6424665189617,-3.11792079207921,-3.10328058314935,-2.48326253908447,2.31276641584514,1.83486638859071,1.88863401488025
+41548,2874.30427930693,457.52601029703,225,83.3733861386138,85.8745877227723,23.5607227722772,-2.61762376237624,1810.91584158416,3129.71683168317,3014.16138613861,20,40,10,32,5306663.80672968,397276.539299742,0,0,0,0,0,0,0,83.3733861386137,2964.88004975248,23.5607227722772,25.2703430081901,24.8234137467407,-2.61762376237624,-2.60298355344638,-2.09733756332948,2.93161579288789,2.32583941282545,2.31650219118993
+41549,2874.29655861386,457.511333861386,225,83.7145049504951,86.2259400990099,24.6793168316832,-4.69851485148515,1815.71782178218,1853.05643564356,1955.85049504951,20,40,10,32,5306649.83083268,397258.005088292,0,0,0,0,0,0,0,83.714504950495,2988.10873943895,24.6793168316832,26.4701048254028,25.7915412948584,-4.69851485148515,-4.6838746425553,-3.80400177723533,3.90884897871167,3.10114136904494,3.01852074763295
+41550,2874.28883534654,457.496623564356,225,83.8167425742574,86.3312448514851,22.764501650099,-3.18128712871287,1817.81683168317,2074.43267326733,2114.43267326733,20,40,10,32,5306635.85097696,397239.428527357,0,0,0,0,0,0,0,83.8167425742573,3011.37453063807,22.764501650099,24.416346250014,24.1712783156665,-3.18128712871287,-3.16664691978302,-2.53001196765315,2.76356543028586,2.19251424872051,2.3114429939257
+41551,2874.28108267327,457.48189990099,225,84.043,86.56429,19.6670665568317,-2.27891089108911,1824.00495049505,2148.13267326733,2126.16831683168,20,40,10,32,5306621.81700664,397220.834257936,0,0,0,0,0,0,0,84.0429999999999,3034.68635822333,19.6670665568317,21.0941541420295,21.5491143348957,-2.27891089108911,-2.26427068215925,-1.75871191472907,2.99331096987938,2.3747861658673,2.22870071161098
+41552,2874.27329247525,457.467158217822,225,84.2232475247525,86.7499449504951,23.3515940594059,-2.20514851485149,1823.26732673267,2099.29801980198,2063.7603960396,20,40,10,32,5306607.71398629,397202.216215482,0,0,0,0,0,0,0,84.2232475247524,3058.05680748075,23.3515940594059,25.0460394349,24.693680719161,-2.20514851485149,-2.19050830592163,-1.7595472102717,2.6453779166797,2.09874849063041,2.17996789196888
+41553,2874.26546683168,457.452408712871,225,84.3806435643564,86.9120628712871,23.2359801980198,-3.42712871287129,1830.25247524752,1992.70594059406,2028.3702970297,20,40,10,32,5306593.54554119,397183.587169628,0,0,0,0,0,0,0,84.3806435643563,3081.47377992299,23.2359801980198,24.9220363658105,24.6017089573607,-3.42712871287129,-3.41248850394143,-2.72555977597171,2.87139305612957,2.27806084134944,2.33041047926716
+41554,2874.25763108911,457.437632376238,225,84.4732871287129,87.0074857425742,24.6929504950495,-4.24524752475247,1831.48514851485,1916.28910891089,2014.07425742574,20,40,10,32,5306579.35904403,397164.924279318,0,0,0,0,0,0,0,84.4732871287127,3104.92775563807,24.6929504950495,26.4847277787415,25.8467554720154,-4.24524752475247,-4.23060731582262,-3.42974489694376,3.77765598598794,2.99705752766858,2.90650903572616
+41555,2874.24980138614,457.422825148515,225,84.5329801980198,87.0689696039603,24.8860495049505,-4.64742574257426,1836.40594059406,1839.61683168317,1996.56831683168,20,40,10,32,5306565.18447958,397146.223020983,0,0,0,0,0,0,0,84.5329801980196,3128.40227959296,24.8860495049505,26.6918384969442,26.0138466048372,-4.64742574257426,-4.63278553364441,-3.76178434253029,3.96731660084165,3.1475274951717,3.15328608805715
+41556,2874.24199059406,457.407978910891,225,84.5917029702971,87.1294540594059,24.5488415841584,-3.94772277227723,1838.24752475248,1878.47128712871,1979.31584158416,20,40,10,32,5306551.04587058,397127.473707354,0,0,0,0,0,0,0,84.591702970297,3151.89505354786,24.5488415841584,26.3301619938141,25.7324015502031,-3.94772277227723,-3.93308256334737,-3.1824019589993,3.53594275089908,2.80529086774845,2.82065840397547
+41557,2874.23417970297,457.393117722772,225,84.6592277227723,87.1990045544554,24.0609504950495,-4.73613861386139,1836.58415841584,1853.56633663366,1935.5,20,40,10,32,5306536.90747016,397108.705677118,0,0,0,0,0,0,0,84.6592277227722,3175.4031589384,24.0609504950495,25.8068684050907,25.3194455593357,-4.73613861386139,-4.72149840493153,-3.80733066191792,3.20749853431442,2.54471494040476,2.6286041863564
+41558,2874.22636960396,457.37824019802,225,84.7207227722772,87.2623444554456,25.0888415841584,-4.50089108910891,1837.40099009901,1850.70693069307,1922.5900990099,20,40,10,32,5306522.77095991,397089.917233096,0,0,0,0,0,0,0,84.7207227722771,3198.92754356436,25.0888415841584,26.9093456358575,26.198694208976,-4.50089108910891,-4.48625088017906,-3.64562454228297,4.00071174376789,3.17402201051822,3.05561442584475
+41559,2874.21855584158,457.363352871287,225,84.7649405940594,87.3078888118812,23.9393861386139,-4.34633663366337,1838.07920792079,1812.44851485149,1904.48217821782,20,40,10,32,5306508.62794179,397071.116367067,0,0,0,0,0,0,0,84.7649405940592,3222.46289361936,23.9393861386139,25.6764830593443,25.2229460064577,-4.34633663366337,-4.33169642473351,-3.49007005305807,3.02688568066942,2.4014231439526,2.49500655240457
+41560,2874.21074386139,457.34845009901,225,84.783594059406,87.3271018811881,24.1618316831683,-4.08425742574257,1838.03465346535,1821.89801980198,1890.32673267327,20,40,10,32,5306494.48862837,397052.296229579,0,0,0,0,0,0,0,84.7835940594059,3246.01066419142,24.1618316831683,25.9150697642543,25.4135664608203,-4.08425742574257,-4.06961721681272,-3.28408040321666,3.19858173857796,2.53764067268854,2.52596226362654
+41561,2874.2029309901,457.333545049505,225,84.7989207920793,87.3428884158416,23.245,-4.4650495049505,1839.21782178218,1796.14158415842,1886.70495049505,20,40,10,32,5306480.34777531,397033.47313384,0,0,0,0,0,0,0,84.7989207920791,3269.56272929043,23.245,24.9317106653687,24.6340967007023,-4.4650495049505,-4.45040929602064,-3.56126797874211,2.78205667019018,2.20718453896312,2.20416061647326
+41562,2874.19512029703,457.31863019802,225,84.8396138613861,87.3848022772276,23.1356633663366,-3.89920792079208,1838.12376237624,1797.36138613861,1873.61089108911,20,40,10,32,5306466.21123537,397014.637808875,0,0,0,0,0,0,0,84.839613861386,3293.12410253025,23.1356633663366,24.8144403140836,24.5433537672328,-3.89920792079208,-3.88456771186223,-3.10183376948053,2.74682640270031,2.17923410123826,2.24389974103388
+41563,2874.18730267327,457.303715247525,225,84.839198019802,87.384373960396,23.8331386138614,-3.66435643564356,1838.97524752475,1805.41782178218,1866.81485148515,20,40,10,32,5306452.06192003,396995.802038921,0,0,0,0,0,0,0,84.8391980198019,3316.69166443894,23.8331386138614,25.5625259698179,25.1386332135903,-3.66435643564356,-3.64971622671371,-2.94451796818972,3.14954489226923,2.49873658774596,2.43549643285943
+41564,2874.17947326733,457.288807029703,225,84.8445940594059,87.389931881188,23.3336534653465,-3.69178217821782,1838.81683168317,1825.58118811881,1857.93861386139,20,40,10,32,5306437.89069073,396976.974172598,0,0,0,0,0,0,0,84.8445940594058,3340.26189070407,23.3336534653465,25.0267970300708,24.713207511804,-3.69178217821782,-3.67714196928797,-2.95894756393687,2.93859840440973,2.33137916776925,2.43074952357188
+41565,2874.1716269307,457.273917524752,225,84.8645346534654,87.4104706930693,25.0783564356436,-4.55405940594059,1838.20297029703,1800.41584158416,1860.76336633663,20,40,10,32,5306423.68774407,396958.168961432,0,0,0,0,0,0,0,84.8645346534652,3363.83288831133,25.0783564356436,26.8980996608497,26.197077083197,-4.55405940594059,-4.53941919701074,-3.68805877281746,4.00133236955911,3.17451439288611,3.13179861228802
+41566,2874.1637819802,457.259029009901,225,84.8522574257426,87.3978251485148,24.0243305830693,-3.46405940594059,1839.93564356436,1818.09900990099,1871.79306930693,20,40,10,32,5306409.48740325,396939.364936624,0,0,0,0,0,0,0,84.8522574257425,3387.40318627613,24.0243305830693,25.7675912680685,25.3011065840662,-3.46405940594059,-3.44941919701074,-2.80318086353357,3.46798863445463,2.75137849537221,2.72454741473016
+41567,2874.15593049505,457.244147227723,225,84.8689405940595,87.4150088118812,22.722396039604,-3.14504950495049,1841.33663366337,1810.61089108911,1857.84653465347,20,40,10,32,5306395.27486842,396920.568988804,0,0,0,0,0,0,0,84.8689405940593,3410.97552775028,22.722396039604,24.3711853595752,24.1946556443252,-3.14504950495049,-3.13040929602064,-2.49297297062081,2.76845989887772,2.19639734553811,2.11381874175187
+41568,2874.14807237624,457.229262673267,225,84.9034851485149,87.4505897029703,24.1039504950495,-2.66772277227723,1840.21782178218,1809.47227722772,1863.56336633663,20,40,10,32,5306381.05016763,396901.769275619,0,0,0,0,0,0,0,84.9034851485147,3434.55626240374,24.1039504950495,25.8529885839942,25.3722425262904,-2.66772277227723,-2.65308256334737,-2.13952599405568,3.10119929777607,2.46038091734009,2.65886397457861
+41569,2874.14020970297,457.214372475247,225,84.9644554455446,87.5133891089109,26.2248712871287,-3.72821782178218,1842.61386138614,1769.19900990099,1845.12475247525,20,40,10,32,5306366.81721627,396882.962289386,0,0,0,0,0,0,0,84.9644554455444,3458.14679942244,26.2248712871287,28.127808267035,27.1799566362363,-3.72821782178218,-3.71357761285233,-3.04327435221773,4.99531667070076,3.96310608656356,3.68624243673231
+41570,2874.13234881188,457.199470891089,225,84.964702970297,87.513644059406,20.8760401540594,-2.12178217821782,1843.25247524752,1757.52376237624,1782.05841584158,20,40,10,32,5306352.58787988,396864.141087,0,0,0,0,0,0,0,84.9647029702969,3481.74624031904,20.8760401540594,22.3908536442086,22.6303484836561,-2.12178217821782,-2.10714196928797,-1.65080331590893,3.15109362220993,2.49996529484484,2.68716923884907
+41571,2874.12448554455,457.184565643564,225,84.9726237623762,87.5218024752475,22.4918921894059,-2.33841584158416,1840.81188118812,1737.92475247525,1789.36138613861,20,40,10,32,5306338.3542838,396845.315149951,0,0,0,0,0,0,0,84.9726237623761,3505.34954722223,22.4918921894059,24.1239556198294,24.0060381967835,-2.33841584158416,-2.3237756326543,-1.8688718082523,4.11093572066081,3.26146978260277,3.15562071906093
+41572,2874.11662,457.169661386139,225,84.9831584158416,87.5326531683168,22.3941776676238,-2.90633663366337,1843.24752475248,1736.61386138614,1772.40198019802,20,40,10,32,5306324.11650784,396826.490277688,0.277227722772277,0.277227722772277,735529.267807291,55004.4754313387,0.213180367810469,0,0,84.9831584158414,3528.95451542905,22.3941776676238,24.0191507075955,23.9217233464368,-2.90633663366337,-2.89169642473351,-2.28343436053605,3.19620675040405,2.53575644177626,2.68424726547292
+41573,2874.10875930693,457.154757029703,225,84.9727821782178,87.5219656435644,25.0998316831683,-2.52544554455446,1842.13366336634,1702.39702970297,1735.19702970297,20,40,10,32,5306309.88778108,396807.66534978,2,2,5306309.87597245,396807.674970646,14.8576924931873,0,0,84.9727821782177,3552.55916980199,25.0998316831683,26.9211332017297,26.2238677569044,-2.52544554455446,-2.5108053356246,-2.02952794228956,4.03578098503845,3.20184469578375,3.04798872704776
+41574,2874.10090792079,457.139847425743,225,84.9566435643564,87.5053428712871,22.8932244223762,-1.38277227722772,1844.89603960396,1721.88415841584,1759.2594059406,20,40,10,32,5306295.67647126,396788.834101031,2,2,5306294.98482542,396789.39760679,38.4332792136102,0,0,84.9566435643563,3576.15909177668,22.8932244223762,24.5544094427204,24.3467496022099,-1.38277227722772,-1.36813206829787,-1.10662013878329,3.47891070495746,2.76004367656914,2.98227927313035
+41575,2874.09305227723,457.124941089109,225,84.9500198019802,87.4985203960396,25.1271881188119,-1.37762376237624,1841.39603960396,1736.46831683168,1762.95346534653,20,40,10,32,5306281.45726281,396770.006688004,2,2,5306280.09240544,396771.118680512,62.0108812699552,0,0,84.9500198019801,3599.75967464247,25.1271881188119,26.9504746832655,26.2478734692167,-1.37762376237624,-1.36298355344638,-1.11307396719307,3.98895753704275,3.16469664212099,3.14914046106884
+41576,2874.08518960396,457.11003960396,225,84.9494653465347,87.4979493069307,23.8081386138614,-4.20267326732673,1837.16336633663,1695.41386138614,1743.02277227723,20,40,10,32,5306267.22498518,396751.18499198,2,2,5306265.19757089,396752.836790592,85.5923060641829,0,0,84.9494653465345,3623.35978261827,23.8081386138614,25.5357119123159,25.1223063012567,-4.20267326732673,-4.18803305839688,-3.37186562246901,3.41771097807895,2.71148999597651,2.58257957764642
+41577,2874.07734089109,457.095133267327,225,84.9325346534653,87.4805106930693,23.8627326732673,-3.73207920792079,1841.61386138614,1710.39900990099,1764.31188118812,20,40,10,32,5306253.01873553,396732.357622811,2,2,5306250.31034245,396734.564236401,109.161688899608,0,0,84.9325346534652,3646.9553158691,23.8627326732673,25.5942674422431,25.1670770372664,-3.73207920792079,-3.71743899899094,-2.98622823160899,3.15910086210628,2.50631795339719,2.53673234456393
+41578,2874.06950574258,457.080212574257,225,84.9368811881188,87.4849876237623,25.2095742574257,-3.5109900990099,1843.44554455446,1717.04356435644,1778.53762376238,20,40,10,32,5306238.83799224,396713.512728237,2,2,5306235.42470816,396716.293638852,132.728547903189,0,0,84.9368811881187,3670.54515610562,25.2095742574257,27.038838949592,26.3146875257294,-3.5109900990099,-3.49634989008005,-2.8464466827945,4.13620365737455,3.28151646240036,3.21522365179932
+41579,2874.06168861386,457.065262673268,225,84.9573564356436,87.5060771287129,23.9122277227723,-2.0619801980198,1839.15346534653,1716.52277227723,1728.05346534654,20,40,10,32,5306224.6913397,396694.631957137,2,2,5306220.53510656,396698.018171861,156.301687897385,0,0,84.9573564356434,3694.14371608912,23.9122277227723,25.6473539663827,25.2122762226125,-2.0619801980198,-2.04733998908995,-1.64859232407637,3.44253075486612,2.73118112167217,2.75961216403652
+41580,2874.05387118812,457.050320594059,225,84.930099009901,87.478001980198,24.4137326732673,-2.5429702970297,1841.25742574257,1735.53762376238,1760.66930693069,20,40,10,32,5306210.54402321,396675.760826249,2,2,5306205.64996076,396679.748173884,179.867773526354,0,0,84.9300990099009,3717.73598558857,24.4137326732673,26.1852492695874,25.6382628097339,-2.5429702970297,-2.52833008809985,-2.03878967705552,3.60500344485923,2.86008115925911,2.82517828314663
+41581,2874.0460570297,457.03537019802,225,84.9563267326733,87.5050165346534,25.987198019802,-4.23564356435644,1841.62871287129,1733.36435643564,1768.23663366337,20,40,10,32,5306196.40300516,396656.879351556,2,2,5306190.76226258,396661.475043133,203.437900054082,0,0,84.9563267326732,3741.33266240375,25.987198019802,27.8728888807634,26.9762812183941,-4.23564356435644,-4.22100335542658,-3.44935944546245,4.81015788884566,3.81620771280186,3.74401974031105
+41582,2874.0382470297,457.020408217821,225,84.9677623762376,87.5167952475248,24.7558910891089,-4.04049504950495,2034.18316831683,1715.00495049505,1749.14653465346,20,40,10,32,5306182.27000914,396637.983492802,2,2,5306175.87072122,396643.197195277,227.014111075343,0,0,84.9677623762375,3764.93159229924,24.7558910891089,26.5522354870743,25.9298441665081,-4.04049504950495,-4.0258548405751,-3.25958594902705,3.65401902644923,2.89896837353226,2.94686455580098
+41583,2874.03043782178,457.005446237623,225,84.9877821782178,87.5374156435643,24.1206732673267,-3.79356435643564,1839.80198019802,1717.82871287129,1738.2900990099,20,40,10,32,5306168.13854115,396619.08756758,1.51485148514851,2,5306160.9797222,396624.919806111,128.788020568091,0,0,84.9877821782177,3788.53550836085,24.1206732673267,25.8709247990915,25.3909020315787,-3.79356435643564,-3.77892414750579,-3.0493655633564,3.05365665071359,2.42266227678827,2.40588370826724
+41584,2874.02261940594,456.990492475248,225,84.9794950495049,87.5288799009901,23.908702970297,-4.37762376237624,1840.85643564356,1728.71188118812,1717.28811881188,20,40,10,32,5306153.98989432,396600.201480204,1,2,5306146.08729707,396606.639360994,23.1079590172339,0,0,84.9794950495048,3812.14133110562,23.908702970297,25.6435734497606,25.2086716736597,-4.37762376237624,-4.36298355344638,-3.51036514061927,3.31267710914797,2.62815987044169,2.60056825240598
+41585,2874.01478188119,456.975560891089,225,84.9766435643564,87.5259428712871,24.5215346534653,-3.78267326732673,1841.90099009901,1680.23366336634,1686.54059405941,20,40,10,32,5306139.80541682,396581.342291191,1,2,5306131.19400183,396588.357613042,46.6883014901699,0,0,84.9766435643563,3835.74840574809,24.5215346534653,26.3008736094218,25.7307602457548,-3.78267326732673,-3.76803305839688,-3.04726871787656,3.47897249508084,2.76009269864926,2.81358533714767
+41586,2874.00693920792,456.960638415842,225,84.9601386138614,87.5089427722772,24.8436732673267,-3.9329702970297,1842.9603960396,1693.11089108911,1720.65742574257,20,40,10,32,5306125.61125971,396562.494184584,1,2,5306116.30227202,396570.077786675,70.2661654457771,0,0,84.9601386138613,3859.35028773379,24.8436732673267,26.6463873420497,26.0031777738941,-3.9329702970297,-3.91833008809985,-3.17968832216335,3.75076729314668,2.97572499776432,3.00801922841742
+41587,2873.99909970297,456.945716237624,225,84.9653465346535,87.5143069306931,24.8685247524753,-4.05316831683168,1839.93069306931,1697.20792079208,1761.19900990099,20,40,10,32,5306111.4230253,396543.646460293,1,2,5306101.41309208,396551.801090312,93.8399922284303,0,0,84.9653465346534,3882.95000860837,24.8685247524753,26.673042108121,26.0251670519792,-4.05316831683168,-4.03852810790183,-3.27304886583648,3.76206894132733,2.98469132235304,2.97408718439739
+41588,2873.9912659406,456.930793564356,225,84.9625346534654,87.5114106930693,24.4048415841584,-4.44336633663366,1842.61386138614,1669.24554455446,1730.92079207921,20,40,10,32,5306097.24549967,396524.798217261,1,2,5306086.52793004,396533.529325973,117.407457539682,0,0,84.9625346534652,3906.54724708472,24.4048415841584,26.1757130226025,25.6300335516686,-4.44336633663366,-4.42872612770381,-3.57800599562919,3.40437850353271,2.70091248617956,2.74777199033366
+41589,2873.98342524753,456.915875049505,225,84.9388613861386,87.4870272277227,24.446603960396,-4.03821782178218,1842.35148514851,1683.47821782178,1772.19207920792,20,40,10,32,5306083.05510364,396505.954831024,1,2,5306071.64001203,396515.254178651,140.979286323857,0,0,84.9388613861385,3930.14878880639,24.446603960396,26.2205057729168,25.6635105799703,-4.03821782178218,-4.02357761285232,-3.2497212683409,3.50228918778744,2.77859133104349,2.6934653616325
+41590,2873.97558534653,456.900955049505,225,84.958693069307,87.5074538613861,24.7105841584158,-3.93158415841584,1841.65346534653,1683.96732673267,1787.29405940594,20,40,10,32,5306068.86626848,396487.109528317,1,2,5306056.75177824,396496.978643693,164.551615091899,0,0,84.9586930693068,3953.74814796481,24.7105841584158,26.5036409812806,25.8906613462899,-3.93158415841584,-3.91694394948599,-3.17073703466028,3.607869200908,2.86235474789987,2.89064708167754
+41591,2873.96775445545,456.886021287129,225,84.978396039604,87.5277479207921,24.7207821782178,-3.6639603960396,1841.12871287129,1661.38514851485,1743.6,20,40,10,32,5306054.69449083,396468.247289307,1,2,5306041.86205566,396478.701281237,188.126301021874,0,0,84.9783960396038,3977.35181705171,24.7207821782178,26.5145789928556,25.9000111496961,-3.6639603960396,-3.64932018710975,-2.95492399364828,3.64772659496789,2.89397618281706,2.92169661249993
+41592,2873.95993138614,456.871081386139,225,84.9681089108911,87.5171521782178,24.7144752475248,-4.15663366336634,1839.31683168317,1679.11089108911,1744.64356435644,20,40,10,32,5306040.53739964,396449.377570985,1,2,5306026.97452931,396460.426614683,211.697509696554,0,0,84.968108910891,4000.95273657867,24.7144752475248,26.507814416765,25.8938982950017,-4.15663366336634,-4.14199345443648,-3.35778367656696,3.65408356647195,2.89901957728444,2.80307916287394
+41593,2873.95211732673,456.856131584158,225,84.9693663366337,87.5184473267327,23.3047425742574,-3.46841584158416,1840.65841584158,1699.18415841584,1741.84356435644,20,40,10,32,5306026.39727989,396430.49572635,1,2,5306012.08783519,396442.152969695,235.26740072499,0,0,84.9693663366335,4024.55364870738,23.3047425742574,24.9957882982269,24.6957144313143,-3.46841584158416,-3.4537756326543,-2.77157218630502,2.55117307539434,2.02400972940801,2.24020497474669
+41594,2873.94429910891,456.841183069307,225,84.9793762376237,87.5287575247525,23.5200792079208,-3.78554455445545,1843.67821782178,1660.85445544554,1698.5099009901,20,40,10,32,5306012.24948928,396411.615254027,0.148514851485149,0.297029702970297,788020.336692602,58876.000174631,36.9364516472651,0,0,84.9793762376236,4048.15515418043,23.5200792079208,25.2267502533205,24.8786415559756,-3.78554455445545,-3.77090434552559,-3.03497385780436,3.07799745771182,2.44197340493604,2.32423264400926
+41595,2873.93647990099,456.826242079208,225,84.9439405940594,87.4922588118813,22.0122079207921,-2.73544554455446,1840.38118811881,1694.97623762376,1707.47326732673,20,40,10,32,5305998.09975709,396392.74402921,0,0,0,0,0,0,0,84.9439405940593,4071.75593762377,22.0122079207921,23.6094643573725,23.5950762864405,-2.73544554455446,-2.7208053356246,-2.15574154837232,2.33508224553047,1.85257097196005,1.88941954056709
+41596,2873.92864970297,456.811320792079,225,84.9554653465346,87.5041293069307,22.9703069306931,-3.38970297029703,1840.75247524752,1684.03366336634,1718.91386138614,20,40,10,32,5305983.92928738,396373.896889116,0,0,0,0,0,0,0,84.9554653465345,4095.35509029154,22.9703069306931,24.6370852351367,24.4099199950171,-3.38970297029703,-3.37506276136718,-2.70093719296083,2.51342526463341,1.99406196264108,2.10729294348697
+41597,2873.92081851485,456.796397623763,225,84.9470891089109,87.4955017821782,26.0084356435644,-4.42029702970297,1840.13861386139,1669.85247524752,1706.16435643564,20,40,10,32,5305969.75708626,396355.047280039,0,0,0,0,0,0,0,84.9470891089108,4118.95261457646,26.0084356435644,27.8956675553542,26.9934895339219,-4.42029702970297,-4.40565682077312,-3.60073720291571,4.83923767292753,3.83927857635026,3.71302234014258
+41598,2873.91299811881,456.781472178218,225,84.8940396039604,87.4408607920792,26.3662475247525,-5.1239603960396,1841.22277227723,1700.20198019802,1745.41584158416,20,40,10,32,5305955.60498726,396336.195100688,0,0,0,0,0,0,0,84.8940396039603,4142.53929370188,26.3662475247525,28.2794430896374,27.2930946613238,-5.1239603960396,-5.10932018710975,-4.18616907904403,5.2736258616326,4.18390667264008,4.17231846885671
+41599,2873.90519237624,456.766535445544,225,84.8498217821783,87.3953164356436,26.3973168316832,-5.12940594059406,1838.58910891089,1724.0396039604,1768.18613861386,20,40,10,32,5305941.48034468,396317.329256459,0,0,0,0,0,0,0,84.8498217821781,4166.11902480749,26.3973168316832,28.3127668569409,27.3170023069358,-5.12940594059406,-5.11476573166421,-4.1909301068727,5.3131413188629,4.21525682707199,4.17040125236582
+41600,2873.89740821782,456.751586138614,225,84.8378217821782,87.3829564356436,25.7685346534653,-5.41871287128713,1839.70792079208,1741.88910891089,1781.42178217822,20,40,10,32,5305927.39602548,396298.448374879,0,0,0,0,0,0,0,84.8378217821781,4189.68742530253,25.7685346534653,27.638358797622,26.7806418035383,-5.41871287128713,-5.40407266235727,-4.41072209163615,4.73698743944909,3.75815688790402,3.77348641277403
+41601,2873.88961287129,456.736643960396,225,84.8558217821782,87.4014964356435,25.4983861386139,-3.81643564356436,1839.78712871287,1786.52475247525,1776.43762376238,20,40,10,32,5305913.29088316,396279.575908438,0,0,0,0,0,0,0,84.8558217821781,4213.25799433444,25.4983861386139,27.3486076851696,26.5548866096232,-3.81643564356436,-3.8017954346345,-3.09682950207337,4.35242139085986,3.45305590065552,3.42665358460566
+41602,2873.88179118812,456.721734653465,225,84.8669108910891,87.4129182178218,23.0994543453465,-2.6550495049505,1839.09900990099,1804.17425742574,1774.8495049505,20,40,10,32,5305899.1362809,396260.743419318,0,0,0,0,0,0,0,84.866910891089,4236.82900838834,23.0994543453465,24.7756038832468,24.5156049623789,-2.6550495049505,-2.64040929602064,-2.11505107037379,3.47314206816591,2.75546704587947,2.88441201204613
+41603,2873.87395633664,456.706833168317,225,84.9206732673267,87.4682934653466,25.0841683168317,-4.0150495049505,1838.72772277228,1763.03762376238,1802.23663366337,20,40,10,32,5305884.95717163,396241.920142446,0,0,0,0,0,0,0,84.9206732673266,4260.40979603961,25.0841683168317,26.9043332655047,26.2068713914538,-4.0150495049505,-4.00040929602064,-3.24810316242971,3.9421495958676,3.1275608910166,3.07634045035661
+41604,2873.86611415842,456.691927227723,225,84.9428217821782,87.4911064356435,25.1474851485149,-4.79415841584158,1841.79207920792,1714.07326732673,1775.26237623762,20,40,10,32,5305870.76465089,396223.090978811,0,0,0,0,0,0,0,84.9428217821781,4284.00129986249,25.1474851485149,26.9722445121285,26.2594311380189,-4.79415841584158,-4.77951820691173,-3.88054384724101,4.11168241793364,3.26206218558778,3.2118926368973
+41605,2873.85828079208,456.677003762376,225,84.970198019802,87.519303960396,25.0682673267327,-4.86336633663366,1841.03465346535,1700.01683168317,1740.79207920792,20,40,10,32,5305856.58890583,396204.240185769,0,0,0,0,0,0,0,84.9701980198019,4307.59977040704,25.0682673267327,26.8872784629905,26.1942378925637,-4.86336633663366,-4.84872612770381,-3.93826027689349,3.97655484292677,3.15485678695643,3.1991706924354
+41606,2873.85046643565,456.662056633664,225,84.9688217821782,87.5178864356435,25.3904554455445,-4.29633663366337,1840.44554455446,1699.37920792079,1753.30693069307,20,40,10,32,5305842.44896443,396185.360456384,0,0,0,0,0,0,0,84.9688217821781,4331.19940448295,25.3904554455445,27.2328452927619,26.4699954126614,-4.29633663366337,-4.28169642473351,-3.48578787186558,4.21435439758309,3.34351847240436,3.39279106018107
+41607,2873.8426709901,456.647095346534,225,84.9215445544555,87.4691908910891,26.3605247524753,-5.27663366336634,1842.35643564356,1690.6099009901,1731.97227722772,20,40,10,32,5305828.34443055,396166.463627651,0,0,0,0,0,0,0,84.9215445544553,4354.79234862487,26.3605247524753,28.2733050598409,27.2895498055405,-5.27663366336634,-5.26199345443648,-4.31017086977817,5.26686901309858,4.1785460299989,4.13171759053864
+41608,2873.83489376238,456.632121188119,225,84.8818316831683,87.4282866336633,27.4187442244554,-4.78019801980198,1839.62871287129,1727.1900990099,1761.43465346535,20,40,10,32,5305814.27399169,396147.551280034,0,0,0,0,0,0,0,84.8818316831682,4378.38106485149,27.4187442244554,29.4083113706979,28.18854482292,-4.78019801980198,-4.76555781087213,-3.92984321315416,6.2991123569558,4.99749108364279,4.97112861473092
+41609,2873.8271290099,456.617141980198,225,84.8523168316832,87.3978863366336,27.5358811881188,-4.56980198019802,1840.42079207921,1744.78712871287,1784.12673267327,20,40,10,32,5305800.22683541,396128.632965789,0,0,0,0,0,0,0,84.8523168316831,4401.95864925743,27.5358811881188,29.5339480618691,28.2877458784789,-4.56980198019802,-4.55516177126817,-3.75868348892825,6.38648822694096,5.06681198259361,5.08582488756325
+41610,2873.81938356436,456.602151584159,225,84.8148316831683,87.3592766336633,27.1135841584158,-5.28277227722772,1839.07920792079,1773.78217821782,1801.80198019802,20,40,10,32,5305786.21575406,396109.701266081,0,0,0,0,0,0,0,84.8148316831682,4425.52762211221,27.1135841584158,29.0810081883737,27.9241437070411,-5.28277227722772,-5.26813206829787,-4.33621551773084,6.03554906347604,4.78838936668641,4.74937040786188
+41611,2873.81165227723,456.587170891089,225,84.6096930693069,87.1479838613861,26.273297029703,-5.4109900990099,1827.60396039604,787.99504950495,812.476237623762,20,40,10,32,5305772.23074236,396090.78203342,0,0,0,0,0,0,0,84.6096930693068,4449.07316867437,26.273297029703,28.1797478928735,27.1968645514801,-5.4109900990099,-5.39634989008005,-4.41992544545506,5.28523397768867,4.19311613791086,4.19599944833927
+41612,2873.80395227723,456.572323960396,225,83.661198019802,86.171033960396,25.1081188118812,-5.34732673267327,1801.49504950495,-381.876237623762,-316.113861386139,20,40,10,32,5305758.30074525,396072.030380522,0,0,0,0,0,0,0,83.6611980198019,4472.44993817382,25.1081188118812,26.930021663563,26.1515348747846,-5.34732673267327,-5.33268652374341,-4.34248923782942,4.39101204670028,3.48367235064811,3.51033108820213
+41613,2873.79635118812,456.557793366336,225,81.2632475247525,83.7011449504951,24.1786831683168,-5.37376237623762,1739.0099009901,-3579.98712871287,-3117.61881188119,20,40,10,32,5305744.54692695,396053.67599895,0,0,0,0,0,0,0,81.2632475247524,4495.40399361936,24.1786831683168,25.9331440319249,25.2235410996859,-5.37376237623762,-5.35912216730777,-4.35849570156552,4.06739741206489,3.22692804137398,3.27814969725727
+41614,2873.78901623762,456.543833366337,225,77.8821683168317,80.2186333663366,23.6415148514852,-5.29633663366337,1669.42574257426,-3502.56534653466,-3005.3900990099,20,40,10,32,5305731.27334091,396036.041203874,0,0,0,0,0,0,0,77.8821683168316,4517.49266067106,23.6415148514852,25.3569975464936,24.5733148824924,-5.29633663366337,-5.28169642473351,-4.30967384150828,4.32119071534496,3.42827859655655,3.4078440044143
+41615,2873.78198366337,456.530435643564,225,74.6224356435643,76.8611087128713,23.4515148514852,-5.36722772277228,1598.35643564356,-3559.21089108911,-3080.03861386139,20,40,10,32,5305718.54729185,396019.11685368,0,0,0,0,0,0,0,74.6224356435643,4538.67607197469,23.4515148514852,25.1532107094783,24.2245120744938,-5.36722772277228,-5.35258751384242,-4.39260851069238,4.93524744058489,3.91544930178279,3.7278624969529
+41616,2873.77523960396,456.517642871287,225,71.1981881188119,73.3341337623762,21.4239405940594,-5.11722772277228,1525.15841584158,-3766.33069306931,-3209.26930693069,20,40,10,32,5305706.34213963,396002.95565385,0,0,0,0,0,0,0,71.1981881188118,4558.93332629262,21.4239405940594,22.97851100035,22.3041810923445,-5.11722772277228,-5.10258751384243,-4.15535006500275,3.78268973987435,3.00105112847121,3.15694021821159
+41617,2873.76880306931,456.505487722772,225,67.6740297029703,69.7042505940594,20.5283861386139,-4.61356435643564,1446.78217821782,-3815.3495049505,-3155.4099009901,20,40,10,32,5305694.69235722,395987.598949855,0,0,0,0,0,0,0,67.6740297029702,4578.21440970847,20.5283861386139,22.0179730537701,21.3415444456026,-4.61356435643564,-4.59892414750579,-3.74799833694296,3.713667430711,2.94629129008932,2.91343523587333
+41618,2873.76267376238,456.493989207921,225,63.9289603960396,65.8468292079208,18.5135940594059,-4.88267326732673,1367.73267326733,-3924.11287128713,-3244.48118811881,20,40,10,32,5305683.59696123,395973.070422083,0,0,0,0,0,0,0,63.9289603960395,4596.49820148514,18.5135940594059,19.8569830271111,19.4123953809042,-4.88267326732673,-4.86803305839688,-3.93921387949862,2.72320170649835,2.16049110985589,2.15911683614157
+41619,2873.75688089109,456.483197722772,225,60.0677524752475,61.8697850495049,17.2277722772277,-5.18514851485148,1342.78217821782,-2831.05148514852,-2339.74356435644,20,40,10,32,5305673.10891681,395959.433834242,0,0,0,0,0,0,0,60.0677524752474,4613.70123803629,17.2277722772277,18.4778590589246,18.0968410636831,-5.18514851485148,-5.17050830592163,-4.17866197029044,2.45220620924383,1.94549294749713,2.00011189838482
+41620,2873.75132861386,456.472928613861,225,58.4887722772277,60.2434354455446,17.5780099009901,-5.20663366336634,1471.65841584158,-1166.99108910891,-888.10594059406,20,40,10,32,5305663.05483384,395946.455967571,0,0,0,0,0,0,0,58.4887722772276,4630.11382486247,17.5780099009901,18.8535107302418,18.3042379114352,-5.20663366336634,-5.19199345443648,-4.22861116059535,3.09175452437256,2.45288777097337,2.40228572541895
+41621,2873.7459249505,456.462980693069,225,55.8280495049505,57.502890990099,16.9493861386139,-5.5,1395.17326732673,-4322.43366336634,-3459.13267326733,20,40,10,32,5305653.2688483,395933.883131525,0,0,0,0,0,0,0,55.8280495049504,4646.04648289328,16.9493861386139,18.1792725817824,17.6163024126017,-5.5,-5.48535979107015,-4.47588848941901,3.13828213032147,2.48980111410753,2.55875687673954
+41622,2873.74084673267,456.453643861386,225,51.9733762376238,53.5325775247525,16.0961683168317,-5.5,1298.83168316832,-4573.42673267327,-3544.16930693069,20,40,10,32,5305644.07199756,395922.082374345,0,0,0,0,0,0,0,51.9733762376237,4661.01384870736,16.0961683168317,17.2641433123821,16.6697276997051,-5.5,-5.48535979107015,-4.48999173156413,3.22609957800447,2.55947234505476,2.56062998568266
+41623,2873.73616326733,456.44492970297,225,48.1870693069307,49.6326813861386,14.7288118811881,-5.49990099009901,1205.80693069307,-4508.4702970297,-3418.49504950495,20,40,10,32,5305635.5923969,395911.070449457,0,0,0,0,0,0,0,48.1870693069306,4674.92168836633,14.7288118811881,15.7975683487385,15.2896448738806,-5.49990099009901,-5.48526078116916,-4.48006496836163,2.80991629126797,2.22928736870169,2.22194288870817
+41624,2873.73192871287,456.436764455445,225,44.3901881188119,45.7218937623762,13.5611782178218,-5.47435643564356,1137.41584158416,-4942.02277227723,-3856.65544554455,20,40,10,32,5305627.93201931,395900.757286023,0,0,0,0,0,0,0,44.3901881188118,4687.77637387238,13.5611782178218,14.545208501107,14.0789504777476,-5.47435643564356,-5.45971622671371,-4.45940182324981,2.57327380173665,2.04154365745674,2.02368888241481
+41625,2873.72829465346,456.429056732673,225,40.2730198019802,41.4812103960396,12.7104851485148,-5.5,1378.23267326733,-4164.54752475247,-3127.16534653465,20,40,10,32,5305621.37370051,395891.03411389,0,0,0,0,0,0,0,40.2730198019801,4699.5129731298,12.7104851485148,13.6327871860287,13.1194240560316,-5.5,-5.48535979107015,-4.50406641748817,2.73392676137945,2.16899998588517,2.11792352511385
+41626,2873.72529267327,456.421598118812,225,37.9881386138614,39.1277827722772,11.1919603960396,-5.47693069306931,1334.89108910891,-2590.84752475248,-1929.66930693069,20,40,10,32,5305615.98062637,395881.642365596,0,0,0,0,0,0,0,37.9881386138613,4710.3525341309,11.1919603960396,12.0040747847849,11.6967365552371,-5.47693069306931,-5.46229048413945,-4.43294242983347,1.87020427240949,1.48375336814502,1.52780518791643
+41627,2873.72294613861,456.414152178218,225,35.9675049504951,37.0465300990099,11.1441782178218,-5.5,1269.44059405941,-1500.17623762376,-1075.89702970297,20,40,10,32,5305611.80139193,395872.288292935,0,0,0,0,0,0,0,35.967504950495,4720.60516529151,11.1441782178218,11.9528254218127,11.5403562438102,-5.5,-5.48535979107015,-4.48884399866924,2.27477753028927,1.8047273616795,1.79737685045349
+41628,2873.72123455445,456.406683267327,225,34.9564455445544,36.0051389108911,10.9706138613861,-5.5,1238.83663366337,94.8643564356436,216.671287128713,20,40,10,32,5305608.79883447,395862.926814267,0,0,0,0,0,0,0,34.9564455445544,4730.43171339382,10.9706138613861,11.7666668364621,11.3348068840853,-5.5,-5.48535979107015,-4.49929121039905,2.31604804634886,1.83746991719169,1.80331519036876
+41629,2873.72006009901,456.399181782178,196.485148514851,34.4635445544554,35.4974508910891,10.1801584158416,-5.5,1218.05445544554,161.282178217822,267.143564356436,20,40,10,32,5305606.79197055,395853.542701358,0,0,0,0,0,0,0,34.4635445544554,4740.07255071505,10.1801584158416,10.9188541256778,10.6340818655507,-5.5,-5.48535979107015,-4.45466109910054,1.69317835342041,1.34330731771941,1.44168269056849
+41630,2873.71943732673,456.391685742574,110.940594059406,33.872198019802,34.8883639603961,10.0000594059406,-5.5,1320.01485148515,156.922772277228,263.826732673267,20,40,10,32,5305605.80690539,395844.1838081,0,0,0,0,0,0,0,33.8721980198019,4749.56764169415,10.0000594059406,10.7256867173762,10.447007585231,-5.5,-5.48535979107015,-4.45163508375668,1.71748552686131,1.36259176220234,1.29978062942592
+41631,2873.71928049505,456.384217425742,52.1287128712871,33.3840099009901,34.3855301980198,9.29375247524753,-5.5,1180.85643564356,159.447524752475,262.350495049505,20,40,10,32,5305605.68431346,395834.875024285,0,0,0,0,0,0,0,33.38400990099,4758.90698110559,9.29375247524753,9.96812853122931,9.81814971270233,-5.5,-5.48535979107015,-4.40843749396831,1.24214044763908,0.985469929720116,0.980423460543534
+41632,2873.71957673267,456.37686,45,32.8806732673267,33.8670934653465,9.1359504950495,-5.5,1158.26732673267,-241.656435643564,-88.4910891089109,20,40,10,32,5305606.39848235,395825.719529419,0,0,0,0,0,0,0,32.8806732673267,4768.11110695817,9.1359504950495,9.79887607639088,9.65507953967894,-5.5,-5.48535979107015,-4.40690105500903,1.20407787799442,0.955272444480842,1.00747114860454
+41633,2873.72031980198,456.369775940594,45,31.5514257425742,32.4979685148515,9.23990099009901,-5.5,1103.26732673267,-2814.27722772277,-2286.67821782178,20,40,10,32,5305607.93420338,395816.919519793,0,0,0,0,0,0,0,31.5514257425742,4777.08732940041,9.23990099009901,9.91036945845567,9.66741482986209,-5.5,-5.48535979107015,-4.44720554420139,1.50154776677783,1.19127444485884,1.15025251411562
+41634,2873.72137267327,456.363196039604,45,29.4154851485149,30.2979497029703,8.03287128712871,-5.5,1220.32673267327,-1537.38118811881,-1159.4603960396,20,40,9.78217821782178,32,5305610.0324585,395808.757921934,0,0,0,0,0,0,0,29.4154851485148,4785.54422667764,8.03287128712871,8.6157549039725,8.51822820020978,-5.5,-5.48535979107015,-4.39069064886404,1.09287386599555,0.86704714749658,0.87157677665923
+41635,2873.72273287129,456.357101584158,45,28.5578712871287,29.4146074257426,6.90524752475248,-5.5,1423.93069306931,-499.694059405941,-288.641584158416,20,40,10,32,5305612.68908101,395801.21134367,0,0,0,0,0,0,0,28.5578712871287,4793.58537216718,6.90524752475248,7.40630816777294,7.50980400129759,-5.5,-5.48535979107015,-4.29175695863924,1.06825536481944,0.847515706692165,0.839325817398183
+41636,2873.72437613861,456.351322376238,45,27.2195742574258,28.0361614851485,7.38489108910891,-5.5,1365.58910891089,-1108.96237623762,-801.862376237623,20,40,9.68316831683168,32,5305615.86296372,395794.0669539,0,0,0,0,0,0,0,27.2195742574257,4801.32838011547,7.38489108910891,7.92075577237783,7.84122410992927,-5.5,-5.48535979107015,-4.38726221713499,0.945519194154662,0.750141206321429,0.732109256606908
+41637,2873.72619415842,456.345977524752,45,25.8899702970297,26.6666694059406,6.82209900990099,-5.5,1300.15346534653,-747.743564356436,-496.418811881188,20,40,10,32,5305619.35078599,395787.469508634,0,0,0,0,0,0,0,25.8899702970297,4808.6928743399,6.82209900990099,7.31712620543557,7.28629711929474,-5.5,-5.48535979107015,-4.36443840118105,0.805951450732296,0.63941313642961,0.658168042987571
+41638,2873.72809663366,456.341060792079,45,24.9024851485148,25.6495597029703,6.18258415841584,-5.5,1251.87128712871,-124.028712871287,39.1445544554455,20,40,10,32,5305622.9854253,395781.40821722,0,0,0,0,0,0,0,24.9024851485148,4815.74838652362,6.18258415841584,6.63120668539108,6.68569263040519,-5.5,-5.48535979107015,-4.31516768101735,0.816394901959938,0.64769859816375,0.657602144099658
+41639,2873.73015237624,456.336518712871,45,24.1887722772277,24.9144354455445,5.55569306930693,-5.5,1212.55445544554,-94.2346534653465,54.439603960396,20,40,9.16831683168317,32,5305626.89554595,395775.818777694,0,0,0,0,0,0,0,24.1887722772277,4822.56835101757,5.55569306930693,5.95882693695652,6.11151309786408,-5.5,-5.48535979107015,-4.24767841278204,1.04664736441242,0.830372689827227,0.805589953400922
+41640,2873.7322750495,456.332214257426,45,23.3231683168317,24.0228633663366,5.23226732673267,-5.5,1167.27722772277,-226.251485148515,-88.0336633663366,20,40,9,32,5305630.92430449,395770.527599706,0,0,0,0,0,0,0,23.3231683168316,4829.16639045651,5.23226732673267,5.61193267859588,5.78680002019658,-5.5,-5.48535979107015,-4.22783381315491,1.07949762324446,0.856434913566925,0.856243057059964
+41641,2873.73434742574,456.328243861387,45,21.5295841584158,22.1754716831683,4.93768316831683,-5.5,1150.21287128713,-1385.07425742574,-1065.08316831683,20,40,9.7029702970297,32,5305634.85238451,395765.650893651,0,0,0,0,0,0,0,21.5295841584158,4835.42252610007,4.93768316831683,5.29597281607813,5.43347984489627,-5.5,-5.48535979107015,-4.24819989672305,0.915822809203113,0.726581153634337,0.741546992588632
+41642,2873.73605663366,456.324456930693,45,20.1875544554455,20.7931810891089,5.04505940594059,-5.5,1284.46534653465,-729.436633663366,-776.20099009901,20,40,9.92079207920792,32,5305638.10362871,395760.990591444,0,0,0,0,0,0,0,20.1875544554455,4841.1871623212,5.04505940594059,5.41114052047785,5.44798026643372,-5.5,-5.48535979107015,-4.31824257070067,0.746395040118792,0.592163204352102,0.576394394412497
+41643,2873.73730564356,456.320496732673,45,19.3082178217822,19.8874643564356,5.291,-5.5,1245.60396039604,-150.963366336634,-440.228712871287,20,40,9.8019801980198,32,5305640.50633135,395756.099052888,0,0,0,0,0,0,0,19.3082178217822,4846.66636878435,5.291,5.67492712972535,5.60686421102013,-5.5,-5.48535979107015,-4.39289495061855,0.763256054639978,0.605540131918373,0.638788921909897
+41644,2873.73798425742,456.316456237624,48.5643564356436,18.7553168316832,19.3179763366337,6.02242574257426,-5.5,1187.23267326733,1298.46237623762,1096.29900990099,20,40,10,32,5305641.85427641,395751.088404331,0,0,0,0,0,0,0,18.7553168316831,4851.93228366333,6.02242574257426,6.4594268065188,6.19748838850402,-5.5,-5.48535979107015,-4.51535953732203,1.37968644800892,1.09459402078034,1.11208124172514
+41645,2873.73777079208,456.312352277228,167.970297029703,19.3367821782178,19.9168856435644,7.64705940594059,-5.5,1176.79702970297,2553.01881188119,2279.66336633663,20,40,10,32,5305641.5512181,395745.968846508,0,0,0,0,0,0,0,19.3367821782178,4857.2145863586,7.64705940594059,8.20194762528703,7.61303621107933,-5.5,-5.48535979107015,-4.65315226428762,2.90729347841015,2.3065429559839,2.33946562345775
+41646,2873.73658386139,456.308448811881,225,19.4773762376237,20.0616975247525,9.48178272821782,-5.5,1165.58415841584,2679.87227722772,2400.76930693069,20,40,10,32,5305639.44046118,395741.066474375,0,0,0,0,0,0,0,19.4773762376237,4862.61480896586,9.48178272821782,10.1698026918398,9.18214045197111,-5.5,-5.48535979107015,-4.78588218349732,4.81244641404601,3.81802334707465,3.71376369676222
+41647,2873.73460405941,456.305299108911,225,19.9428514851485,20.541137029703,9.53930033,-5.5,1136,3211.04752475247,2849.60198019802,20,40,10,32,5305635.84407539,395737.076548163,0,0,0,0,0,0,0,19.9428514851485,4868.07857301977,9.53930033,10.2314939031024,9.25771403261344,-5.5,-5.48535979107015,-4.77614046454947,4.74715019590452,3.76621965641697,3.789500199458
+41648,2873.73197069307,456.303214257426,225,20.4485346534653,21.0619906930693,9.44859405940594,-5.5,922.410891089109,3523.84455445545,3133.0900990099,20,40,10,32,5305631.01310145,395734.39126168,0,0,0,0,0,0,0,20.4485346534653,4873.68876672164,9.44859405940594,10.1342057768824,9.20947209901156,-5.5,-5.48535979107015,-4.75615082391483,4.51320981902833,3.58061970498067,3.5668215021393
+41649,2873.72894534653,456.302583861387,225,21.2023465346535,21.8384169306931,9.67763366336634,-5.5,933.113861386139,4133.89207920792,3649.33564356436,20,40,10,32,5305625.42331239,395733.50471247,0,0,0,0,0,0,0,21.2023465346534,4879.46411908688,9.67763366336634,10.3798650213156,9.44748577788423,-5.5,-5.48535979107015,-4.74917649300433,4.55255341736011,3.61183351269191,3.56964098329293
+41650,2873.7257619802,456.303490792079,225,22.4267425742574,23.0995448514852,9.10340594059406,-5.49831683168317,999.945544554455,4250.51881188119,3731.8900990099,20,40,10,32,5305619.50621706,395734.527970569,0,0,0,0,0,0,0,22.4267425742574,4885.51797615509,9.10340594059406,9.76397001420906,9.02898394666134,-5.49831683168317,-5.48367662275331,-4.67270169974492,3.61793812192929,2.87034307072606,2.92931539060359
+41651,2873.72278910891,456.305978514851,225,23.6366633663366,24.3457632673267,9.03553465346535,-0.774851485148515,847.10396039604,3943.5198019802,3505.06336633663,20,40,10,32,5305613.94345394,395737.527520404,0,0,0,0,0,0,0,23.6366633663366,4891.92694947742,9.03553465346535,9.69117383037687,9.04192537468625,-0.774851485148515,-0.760211276218659,-0.651425010395179,3.19288927179187,2.53312447256456,2.45200875324211
+41652,2873.72031009901,456.309822673267,225,24.9136336633663,25.6610426732673,8.48457425742574,4.96425742574257,812.014851485148,4424.22376237624,3878.28910891089,20,40,9.92079207920792,32,5305609.2649666,395742.233360757,0,0,0,0,0,0,0,24.9136336633663,4898.66147447743,8.48457425742574,9.10023448074743,8.64532922657953,4.96425742574257,4.97889763467243,4.13385266703083,2.31508737799063,1.83670775717889,1.94146092964989
+41653,2873.71853524753,456.314789603961,225,26.2061188118812,26.9923023762376,8.78282178217822,5.45128712871287,876.737623762376,4915.78316831683,4288.94257425743,20,40,9.62376237623762,32,5305605.86555939,395748.361447484,0,0,0,0,0,0,0,26.2061188118812,4905.76696732671,8.78282178217822,9.42012353188923,8.97253239544506,5.45128712871287,5.46592733764273,4.5308994582246,2.34647199857579,1.86160719580609,1.81974846028233
+41654,2873.7174150495,456.320572772277,203.613861386139,27.8331188118812,28.6681123762376,9.09192079207921,5.32762376237624,949.980198019802,5269.32079207921,4613.15940594059,20,40,10,32,5305603.66043421,395755.528261458,0,0,0,0,0,0,0,27.8331188118811,4913.27791003848,9.09192079207921,9.7516514769012,9.32865295280922,5.32762376237624,5.34226397130609,4.40705147640638,2.24308951916835,1.77958722382178,1.70227120056808
+41655,2873.71672148515,456.326966930693,139.455445544554,29.3947227722772,30.2765644554455,8.42039603960396,5.18643564356436,1016.41089108911,4744.46831683168,4104.89108910891,20,40,10,32,5305602.23184223,395763.470486421,0,0,0,0,0,0,0,29.3947227722772,4921.21792772275,8.42039603960396,9.03139934382544,8.84680212452925,5.18643564356436,5.20107585249421,4.20710151275692,1.43350066685726,1.13728830270894,1.2290095473424
+41656,2873.71632831683,456.33372029703,94.9009900990099,30.8027920792079,31.7268758415842,8.50552475247525,5.34712871287129,856.450495049505,4438.84554455445,3844.31386138614,20,40,10,32,5305601.35161593,395771.870242472,0,0,0,0,0,0,0,30.8027920792079,4929.57379158414,8.50552475247525,9.12270519190555,8.99977248759186,5.34712871287129,5.36176892180114,4.30986145035597,1.16755831675884,0.926299127081313,0.956367534339618
+41657,2873.71610772277,456.340780990099,78.8613861386139,32.5849603960396,33.5625092079208,9.69266336633664,5.44623762376238,828.544554455446,4354.93762376238,3765.54851485148,20,40,10,32,5305600.78415478,395780.658621406,0,0,0,0,0,0,0,32.5849603960395,4938.38091732672,9.69266336633664,10.395985314103,10.1117822907654,5.44623762376238,5.46087783269223,4.43807798663223,1.68404728939014,1.33606305718085,1.32471923839069
+41658,2873.71597465347,456.34821019802,61.039603960396,34.173297029703,35.198495940594,10.5907425742574,5.5,822.772277227723,2696.58910891089,2375.60693069307,20,40,10,32,5305600.37054336,395789.909001324,0,0,0,0,0,0,0,34.1732970297029,4947.6722721947,10.5907425742574,11.3592312150049,10.9667102768805,5.5,5.51464020892985,4.51508429782247,2.12745733815923,1.68784877547721,1.68807239373811
+41659,2873.71585891089,456.355846732673,73.5148514851485,34.2237524752475,35.250465049505,10.1040495049505,5.5,742.480198019802,471.451485148515,408.170297029703,20,40,10,32,5305599.98437854,395799.418235984,0,0,0,0,0,0,0,34.2237524752475,4957.21217799779,10.1040495049505,10.8372225771558,10.5555333857008,5.5,5.51464020892985,4.4764305306089,1.71089912574794,1.35736634646563,1.37944268578457
+41660,2873.71562287129,456.363346039604,98.4653465346535,32.9903168316832,33.9800263366337,9.96956435643564,5.39435643564356,762.059405940594,-537.214851485149,-370.142574257426,20,40,10,32,5305599.37848435,395808.752498972,0,0,0,0,0,0,0,32.9903168316831,4966.58979793728,9.96956435643564,10.6929788769381,10.3706008646412,5.39435643564356,5.40899664457342,4.40956323331362,1.83894525238969,1.45895357652678,1.4262281982937
+41661,2873.71527732673,456.370386336634,116.287128712871,30.6411683168317,31.5604033663366,9.50072277227723,5.49613861386139,646.445544554455,-797.396039603961,-612.219801980198,20,40,10,32,5305598.58008691,395817.511296449,0,0,0,0,0,0,0,30.6411683168316,4975.40123696368,9.50072277227723,10.1901170690598,9.8371514907911,5.49613861386139,5.51077882279124,4.50992551915119,1.93919352212354,1.53848697833891,1.6874347993416
+41662,2873.71487673267,456.37694960396,118.069306930693,28.5667722772277,29.4237754455446,10.6327128712871,5.5,638.673267326733,-513.128712871287,-406.668316831683,20,40,10,32,5305597.69045898,395825.674002,0,0,0,0,0,0,0,28.5667722772277,4983.61877643013,10.6327128712871,11.4042469733221,10.6815075898871,5.5,5.51464020892985,4.64265751181979,3.59475827175137,2.85195300431354,2.70872628056309
+41663,2873.71447475247,456.383167326733,114.504950495049,27.4236732673268,28.2463834653465,10.9028613861386,5.5,998.495049504951,-287.014851485148,-154.235643564356,20,40,10,32,5305596.80604456,395833.406205865,0,0,0,0,0,0,0,27.4236732673267,4991.39157389987,10.9028613861386,11.6939980857745,10.8459304437496,5.5,5.51464020892985,4.68835667894972,4.17738747100556,3.314190231298,3.25781344324688
+41664,2873.7141339604,456.389221683168,94.9009900990099,27.5330297029703,28.3590205940594,9.65927722772278,5.5,1579.72772277228,3890.41287128713,3668.46831683168,20,40,10,32,5305596.03865489,395840.936945904,0,0,0,0,0,0,0,27.5330297029703,4998.95287585257,9.65927722772278,10.3601766004805,9.79412632314794,5.5,5.51464020892985,4.60291692124991,2.852407749369,2.26299857608417,2.31400420604088
+41665,2873.71402267327,456.395594950495,48.5643564356436,29.8245544554455,30.7192910891089,9.27453465346535,5.5,1532.63861386139,6374.03762376238,5487.6,20,40,10,32,5305595.68922725,395848.872638667,0,0,0,0,0,0,0,29.8245544554455,5006.89686823431,9.27453465346535,9.94751622009608,9.59795857630025,5.5,5.51464020892985,4.51637829110469,1.91207649528049,1.51697329638127,1.58680959003507
+41666,2873.71436930693,456.402505049505,45,32.4519306930693,33.4254886138614,10.1495544554455,5.5,1244.45544554455,6088.64356435644,5233.07128712871,20,40,10,32,5305596.17596875,395857.492389394,0,0,0,0,0,0,0,32.4519306930693,5015.54977681517,10.1495544554455,10.8860294715238,10.4928149013445,5.5,5.51464020892985,4.52136927115881,2.1154849524048,1.67835031161958,1.72817185825376
+41667,2873.71534079208,456.409813168317,45,34.5530594059406,35.5896511881188,12.2826633663366,5.5,1287.58910891089,5055.28811881188,4354.23564356436,20,40,10,32,5305597.81121531,395866.628850439,0,0,0,0,0,0,0,34.5530594059405,5024.88872819031,12.2826633663366,13.1739216713112,12.4279343119039,5.5,5.51464020892985,4.61257519398913,3.74120943313993,2.96814213251988,2.87182521462481
+41668,2873.71694613861,456.41731960396,45,36.3461386138614,37.4365227722772,12.4785742574257,5.5,913.663366336634,4777.81188118812,4134.80396039604,20,40,10,32,5305600.61614715,395876.033539907,0,0,0,0,0,0,0,36.3461386138613,5034.74228685368,12.4785742574257,13.3840483072685,12.697250255344,5.5,5.51464020892985,4.58831113813562,3.48182294248937,2.76235414196084,2.73165599943478
+41669,2873.71920326733,456.424838118812,45,37.8909801980198,39.0277096039604,11.9321584158416,5.5,957.594059405941,4678.0297029703,4027.43069306931,20,40,10,32,5305604.6281464,395885.475047979,0,0,0,0,0,0,0,37.8909801980198,5045.05062134212,11.9321584158416,12.7979832754186,12.3207891882045,5.5,5.51464020892985,4.5263267389054,2.54887257818108,2.02218459696717,2.00760144759843
+41670,2873.72194128713,456.432428019802,45,39.427702970297,40.6105340594059,11.5994950495049,5.5,1034.84653465347,4021.54257425742,3490.30297029703,20,40,10,32,5305609.52933168,395895.02153924,0,0,0,0,0,0,0,39.427702970297,5055.79430948844,11.5994950495049,12.4411810900681,12.1257372369744,5.5,5.51464020892985,4.47531839624635,1.90522590828896,1.51153828499111,1.56715660456101
+41671,2873.7250809901,456.440012574258,45,40.6369306930693,41.8560386138614,12.2815742574257,5.5,1421.38613861386,4459.70891089109,3926.46534653465,20,40,9.7029702970297,32,5305615.1747074,395904.574774322,0,0,0,0,0,0,0,40.6369306930693,5066.91870585808,12.2815742574257,13.1727535341527,12.7752603826837,5.5,5.51464020892985,4.49551440297076,2.24913985659492,1.78438734574831,1.82767776630796
+41672,2873.7285670297,456.447730495049,45,43.0366930693069,44.3277938613861,12.2716534653465,5.5,1521.12871287129,5909.50792079208,5033.33663366337,20,40,10,32,5305621.45863638,395914.305699444,0,0,0,0,0,0,0,43.0366930693069,5078.51471969197,12.2716534653465,13.1621128665816,12.9042161455788,5.5,5.51464020892985,4.44711662667406,1.99694556890917,1.58430539250874,1.48953307096375
+41673,2873.73244415842,456.455783069307,45,45.4573465346535,46.8210669306931,11.6313465346535,5.5,1610.92574257426,5765.65049504951,4813.57425742574,20,40,10,32,5305628.45949436,395924.466555174,0,0,0,0,0,0,0,45.4573465346534,5090.81035374037,11.6313465346535,12.47534379224,12.4980525483364,5.5,5.51464020892985,4.36472963314932,1.33482570460054,1.05900310693652,1.07214223268194
+41674,2873.73662603961,456.464202079208,45,47.8060495049505,49.240230990099,12.0936138613861,5.5,1696.14851485149,5443.47623762376,4686.66138613861,20,40,10,32,5305636.01664464,395935.094044429,0,0,0,0,0,0,0,47.8060495049504,5103.77446171616,12.0936138613861,12.9711542994524,13.0258072049242,5.5,5.51464020892985,4.35388314131833,1.51533406974648,1.20221200594015,1.18849041192929
+41675,2873.74102613861,456.47299029703,45,50.0594653465347,51.5612493069307,12.6798910891089,5.5,1777.40099009901,5260.46732673267,4557.48811881188,20,40,10,32,5305643.96973563,395946.188725715,0,0,0,0,0,0,0,50.0594653465346,5117.3738380088,12.6798910891089,13.5999731513035,13.6536023287812,5.5,5.51464020892985,4.35541996230412,1.56254615755826,1.23966839257198,1.27147320090745
+41676,2873.74567475248,456.482083762376,45,52.1520495049505,53.716610990099,12.8350198019802,5.5,1847.73762376238,5059.15841584158,4423.83465346535,20,40,10,32,5305652.3763269,395957.671929557,0,0,0,0,0,0,0,52.1520495049504,5131.57741988448,12.8350198019802,13.7663583603892,13.9053974617463,5.5,5.51464020892985,4.33087245859115,1.72799653056104,1.37093081765855,1.34939810065103
+41677,2873.75055465346,456.491473861386,45,54.1352772277228,55.7593355445544,13.1684554455446,5.38554455445545,1921.77227722772,4853.87722772277,4281.65346534653,20,40,10,32,5305661.20470251,395969.532345859,0,0,0,0,0,0,0,54.1352772277227,5146.34495376787,13.1684554455446,14.1239888611794,14.3028816762441,5.38554455445545,5.4001847633853,4.23079318415012,1.86094459680787,1.47640707177274,1.46552741817701
+41678,2873.75564524752,456.501145346535,45,55.9477326732674,57.6261646534654,13.435504950495,5.38079207920792,1863.17821782178,4429.97722772277,3940.92376237624,20,40,10,32,5305670.41705983,395981.750288599,0,0,0,0,0,0,0,55.9477326732673,5161.64752018701,13.435504950495,14.4104160924445,14.6337964215767,5.38079207920792,5.39543228813777,4.21762160686303,1.89277962643893,1.50166384887293,1.52173121294634
+41679,2873.76091871287,456.511069207921,45,57.6463861386139,59.3757777227723,13.7862475247525,5.02861386138614,1470.74752475248,4385.2099009901,4013.62574257426,20,40,10,32,5305679.96251692,395994.288686717,0,0,0,0,0,0,0,57.6463861386138,5177.41863198569,13.7862475247525,14.7866093546261,15.0299861143462,5.02861386138614,5.04325407031599,3.94096780751266,1.95890529561242,1.55412559639669,1.55341214675703
+41680,2873.76634207921,456.521290693069,45,59.3181683168317,61.0977133663366,14.1628613861386,5.4109900990099,1504.14356435644,4340.44851485149,4167.31782178218,20,40,10,32,5305689.77898783,396007.202801517,0,0,0,0,0,0,0,59.3181683168316,5193.65977288228,14.1628613861386,15.1905511840366,15.4456405171094,5.4109900990099,5.42563030793975,4.23709293907412,2.05326131832167,1.62898429956886,1.60486012176858
+41681,2873.77189693069,456.531848613861,45,61.0051287128713,62.8352825742574,15.0679900990099,5.34336633663366,1558.24257425743,4220.87722772277,4175.62277227723,20,40,10,32,5305699.83149147,396020.540363115,0,0,0,0,0,0,0,61.0051287128712,5210.378630033,15.0679900990099,16.1613581181826,16.3124766455386,5.34336633663366,5.35800654556352,4.21203450475305,1.88566741786048,1.49602127624655,1.51185869040645
+41682,2873.77758366337,456.54273019802,45,62.6933663366337,64.5741673267327,16.1823366336634,5.5,1600.27227722772,4185.28415841584,4036.82574257426,20,40,10,32,5305710.12105097,396034.285470273,0,0,0,0,0,0,0,62.6933663366336,5227.56536974697,16.1823366336634,17.3565642004771,17.356665008093,5.5,5.51464020892985,4.37127411627846,1.88688734441605,1.49698912246658,1.48417387853581
+41683,2873.78341049505,456.55390950495,45,64.2834158415842,66.2119183168317,16.2917128712871,5.48881188118812,1638.98514851485,4096.88217821782,3936.32673267327,20,40,10,32,5305720.66347347,396048.406078862,0,0,0,0,0,0,0,64.283415841584,5245.20498866886,16.2917128712871,17.473877029477,17.5408024260212,5.48881188118812,5.50345209011797,4.34763859430117,1.92168246900727,1.5245943333352,1.53710564811772
+41684,2873.78937475247,456.565378316832,45,65.8305247524753,67.8054404950495,16.2137722772277,5.26633663366337,1678.9702970297,4030.05346534653,3843.45841584158,20,40,10,32,5305731.45399426,396062.891858765,0,0,0,0,0,0,0,65.8305247524752,5263.28373748624,16.2137722772277,17.390280886643,17.563760080616,5.26633663366337,5.28097684259322,4.14952536304358,1.96246706700303,1.556951378786,1.5710879229631
+41685,2873.79547455446,456.577114950495,45,67.3135643564357,69.3329712871287,16.0495148514851,5.36168316831683,1715.37623762376,3939.6702970297,3750.99702970297,20,40,10,32,5305742.48961785,396077.715732484,0,0,0,0,0,0,0,67.3135643564356,5281.77947048955,16.0495148514851,17.2141045642833,17.5085155299637,5.36168316831683,5.37632337724669,4.19859412906209,2.38299262468613,1.89058135803928,1.86692588490574
+41686,2873.80169306931,456.589126039604,45,68.7553861386139,70.8180477227723,16.6379306930693,5.47148514851485,1752.60396039604,3868.62376237624,3704.03267326733,20,40,10,32,5305753.73901996,396092.885398374,0,0,0,0,0,0,0,68.7553861386138,5300.68043479097,16.6379306930693,17.8452172127365,18.0914606301863,5.47148514851485,5.48612535744471,4.29597274306894,2.26485527000725,1.79685539425314,1.77397424950982
+41687,2873.80806108911,456.601404059406,45,70.1226039603961,72.2262820792079,17.1201683168317,5.45247524752475,1786.54455445545,3806.66633663366,3635.7198019802,20,40,10.8910891089109,32,5305765.25940953,396108.392505923,0,0,0,0,0,0,0,70.122603960396,5319.96719799229,17.1201683168317,18.3624471076644,18.5800804716151,5.45247524752475,5.46711545645461,4.28813561077681,2.26913975733996,1.80025455369495,1.85914776308522
+41688,2873.8145719802,456.613925742574,45,71.4842376237624,73.6287647524752,16.6860099009901,5.5,1820.56930693069,3767.18811881188,3544.09207920792,20,40,11,32,5305777.03902309,396124.207845795,0,0,0,0,0,0,0,71.4842376237623,5339.63871663916,16.6860099009901,17.8967851585701,18.2885263311942,5.5,5.51464020892985,4.28735697377747,2.73969579359437,2.17357693028964,2.128992100764
+41689,2873.82120059406,456.626668712871,45,72.7696732673267,74.9527634653466,17.176603960396,5.1690099009901,1854.61881188119,3687.83069306931,3510.40297029703,20,40,11,32,5305789.03178114,396140.302701573,0,0,0,0,0,0,0,72.7696732673266,5359.67426518151,17.176603960396,18.4229778513323,18.7802911840288,5.1690099009901,5.18365010991995,4.03824569470944,2.60422211151737,2.0660969426529,2.10103172119043
+41690,2873.82791237624,456.639621584158,45,74.0053465346534,76.225506930693,17.5831287128713,4.92287128712871,1886.93564356436,3620.56930693069,3448.35940594059,20,40,11,32,5305801.17393449,396156.661734381,0,0,0,0,0,0,0,74.0053465346534,5380.06354334434,17.5831287128713,18.8590009748868,19.1975515248829,4.92287128712871,4.93751149605856,3.85166899986373,2.52301314543888,2.00166864531653,1.97707067027447
+41691,2873.83472534653,456.652782079208,45,75.2109207920792,77.4672484158416,17.8602178217822,4.94465346534654,1917.73762376238,3564.7504950495,3396.15841584158,20,40,11,32,5305813.49891525,396173.282705026,0,0,0,0,0,0,0,75.2109207920791,5400.79043330583,17.8602178217822,19.1561963068675,19.502747945335,4.94465346534654,4.95929367427639,3.86889237562123,2.53149240627456,2.00839578844733,2.03603314150716
+41692,2873.84164138614,456.666165049505,45,76.3506534653465,78.6411730693069,17.9407722772277,4.0639603960396,1841.59900990099,3517.76336633663,3349.38712871287,20,40,11,32,5305826.00987746,396190.184173248,0,0,0,0,0,0,0,76.3506534653465,5421.84525008251,17.9407722772277,19.2425959788819,19.6388017229242,4.0639603960396,4.07860060496946,3.17279521515512,2.57107263528943,2.039797330503,2.00378902626989
+41693,2873.84866257426,456.679762574257,45,77.5300495049505,79.855950990099,19.3345742574257,0.932178217821782,1686.23267326733,3484.57722772277,3318.23564356436,20,40,11,32,5305838.7108524,396207.356338034,0,0,0,0,0,0,0,77.5300495049504,5443.22119942245,19.3345742574257,20.7375354366197,20.8930882790698,0.932178217821782,0.94681842675164,0.748355458403906,1.94290862142815,1.54143440562669,1.54885715910965
+41694,2873.85579663366,456.693572376238,45,78.6337524752475,80.9927650495049,20.2036435643564,2.83534653465347,1709.43564356436,3494.27524752475,3257.2198019802,20,40,11,32,5305851.6161987,396224.796616437,0,0,0,0,0,0,0,78.6337524752474,5464.91189320683,20.2036435643564,21.6696664113905,21.6948561774606,2.83534653465347,2.84998674358332,2.25933463793322,1.8533075000785,1.47034807160777,1.50411465444097
+41695,2873.86304504951,456.707558217822,45,79.7214554455446,82.1130991089109,20.6759207920792,4.17178217821782,1734.87623762376,3475.10792079208,3234.21386138614,20,40,11,32,5305864.72948136,396242.459913892,0,0,0,0,0,0,0,79.7214554455444,5486.90742742025,20.6759207920792,22.1762131610324,22.1584997827165,4.17178217821782,4.18642238714768,3.32224196164999,1.94006239092893,1.53917630786056,1.55793392593181
+41696,2873.87040128713,456.721709702971,45,80.7618712871287,83.1847274257426,20.8177920792079,3.81772277227723,1757.97524752475,3458.1801980198,3198.07524752475,20,40,11,32,5305878.0388308,396260.333059281,0,0,0,0,0,0,0,80.7618712871287,5509.19485162267,20.8177920792079,22.3283789550706,22.338391111319,3.81772277227723,3.83236298120708,3.04129084591297,2.06063061493489,1.63483083667287,1.59833380280665
+41697,2873.87786237624,456.736036336634,45,81.7924356435644,84.2462087128713,20.901198019802,4.19287128712871,1779.14851485149,3301.47524752475,3126.80594059406,20,40,11,32,5305891.53853409,396278.427790486,0,0,0,0,0,0,0,81.7924356435643,5531.77363143565,20.901198019802,22.4178370225545,22.4671415249991,4.19287128712871,4.20751149605857,3.33200991184223,2.16753666723415,1.71964628571991,1.70273639631118
+41698,2873.88542277228,456.750536237624,45,82.6295247524753,85.1084104950495,20.4636336633663,3.9960396039604,1797.58415841584,2797.30594059406,2691.67128712871,20,40,11,32,5305905.21836497,396296.741576298,0,0,0,0,0,0,0,82.6295247524752,5554.6170779703,20.4636336633663,21.9485219899827,22.1440263460172,3.9960396039604,4.01067981289025,3.1574217572023,2.22423284716032,1.76462701278137,1.75590505611387
+41699,2873.89304237624,456.765153366336,45,83.2128910891089,85.7092778217821,20.7225445544555,2.04039603960396,1808,2440.31287128713,2366.98514851485,20,40,11,32,5305919.00530261,396315.203272242,0,0,0,0,0,0,0,83.2128910891088,5577.66012665017,20.7225445544555,22.2262200508451,22.3995857674559,2.04039603960396,2.05503624853382,1.6219834256476,2.01861291704298,1.60149549374346,1.60033614900691
+41700,2873.90070623762,456.779856138614,45,83.6732178217822,86.1834143564357,20.3670693069307,3.76584158415842,1812.87623762376,2282.97128712871,2209.70792079208,20,40,11,32,5305932.87236173,396333.773035495,0,0,0,0,0,0,0,83.6732178217821,5600.84386383388,20.3670693069307,21.8449507017383,22.123343068345,3.76584158415842,3.78048179308827,2.96601070752168,2.33552117155845,1.85291920021617,1.86541778699948
+41701,2873.90841584158,456.794613960396,45,84.0443465346535,86.5656769306931,20.8176237623762,3.75574257425743,1823.08415841584,2065.86732673267,2050.59504950495,20,40,11,32,5305946.82297889,396352.412804142,0,0,0,0,0,0,0,84.0443465346534,5624.13611410891,20.8176237623762,22.3281984247825,22.5269158381416,3.75574257425743,3.77038278318728,2.96797465395917,2.38806430774106,1.89460505049145,1.8715640839236
+41702,2873.91616227723,456.809417227723,45,84.2595643564356,86.7873512871287,21.0875445544554,4.00366336633663,1826.65841584158,1914.10891089109,1901.83564356436,20,40,11,32,5305960.84086356,396371.110317236,0,0,0,0,0,0,0,84.2595643564355,5647.51503267327,21.0875445544554,22.6177052903745,22.7685704523427,4.00366336633663,4.01830357526649,3.17003470431581,2.16634299805556,1.71869927116631,1.76567868690069
+41703,2873.92391920792,456.824243960396,45,84.4317821782178,86.9647356435643,20.816603960396,4.18663366336633,1829.85643564356,1805.3900990099,1810.8297029703,20,40,11,32,5305974.87772338,396389.837318072,0,0,0,0,0,0,0,84.4317821782177,5670.94805632563,20.816603960396,22.3271046236249,22.5467425649503,4.18663366336633,4.20127387229619,3.30350186486655,2.34870011506577,1.86337490396258,1.90111212657681
+41704,2873.93168742574,456.839093366337,45,84.5797425742574,87.1171348514851,19.769202970297,3.03386138613861,1833.68811881188,1772.70891089109,1789.14851485148,20,40,11,32,5305988.93504358,396408.592845898,0,0,0,0,0,0,0,84.5797425742573,5694.42009829483,19.769202970297,21.2037018085779,21.6649064253045,3.03386138613861,3.04850159506847,2.37172244733461,3.00562356177555,2.38455453714419,2.28323954528858
+41705,2873.93946623762,456.853976435644,45,84.6689801980198,87.2090496039604,19.7425770078218,1.55653465346535,1833.64851485149,1724.00495049505,1718.95544554455,20,40,11,32,5306003.0112949,396427.390567073,0.445544554455446,0.445544554455446,2364061.80620224,176628.977778823,2.30086198712811,0,0,84.6689801980197,5717.92723960396,19.7425770078218,21.1751438050236,21.6507419345242,1.55653465346535,1.5711748623952,1.22638301121809,2.84758142313953,2.25916954098657,2.26124345374848
+41706,2873.94724455446,456.868868019802,45,84.7627524752475,87.305635049505,19.6098916392079,2.02287128712871,1838.55445544554,1655.98118811881,1658.03069306931,20,40,11,32,5306017.08649906,396446.198786373,1,1,5306016.0630188,396447.032568447,22.0669435731724,0,0,84.7627524752474,5741.45957013201,19.6098916392079,21.0328304808761,21.5422520447359,2.02287128712871,2.03751149605857,1.58125089146232,3.03066280887953,2.40441978276171,2.44023966258642
+41707,2873.9550359406,456.883793267327,45,84.8072871287129,87.3515057425742,19.993400990099,3.47831683168317,1837.17326732673,1616.70396039604,1605.75544554455,20,40,11,32,5306031.18521997,396465.049280553,1,1,5306030.91784672,396465.267097184,45.5863812968126,0,0,84.8072871287128,5765.01463283829,19.993400990099,21.4441681523702,21.8693447337911,3.47831683168317,3.49295704061302,2.72790249481771,2.86956842615717,2.27661324500549,2.29180511252853
+41708,2873.96285019802,456.898724653465,45,84.8513366336634,87.3968767326732,19.7841661165347,3.76722772277228,1836.9504950495,1602.33168316832,1563.97425742574,20,40,11,32,5306045.32622972,396483.908088951,1,1,5306045.7936156,396483.527331271,69.1389745465375,0,0,84.8513366336633,5788.5831639989,19.7841661165347,21.2197507151229,21.6939595982686,3.76722772277228,3.78186793170213,2.94228609095982,3.04573162685856,2.41637484551085,2.39418332878448
+41709,2873.97066118812,456.913663861386,45,84.8582178217822,87.4039643564357,19.3799372935644,3.85148514851485,1837.20792079208,1631.52673267327,1585.43762376238,20,40,11,32,5306059.46107309,396502.776439278,1,1,5306060.67159707,396501.790281333,92.6950709420305,0,0,84.8582178217821,5812.15335805831,19.3799372935644,20.7861901189991,21.3511412716387,3.85148514851485,3.86612535744471,2.99343446868713,3.30662313281601,2.6233568615374,2.61798238764957
+41710,2873.97848405941,456.928585940594,45,84.8858514851486,87.4324270297029,18.9973806382178,3.6349504950495,1838.75742574257,1594.06831683168,1560.20297029703,20,40,11,32,5306073.61836778,396521.623755554,1,1,5306075.54823486,396520.051582025,116.249039930238,0,0,84.8858514851484,5835.72865360287,18.9973806382178,20.3758742728296,21.0271012291145,3.6349504950495,3.64959070397936,2.81150652534704,3.64890956532781,2.89491470930951,2.90999200446655
+41711,2873.98630544555,456.943483267327,45,84.9108316831683,87.4581566336634,19.789703520297,3.38069306930693,1839.57920792079,1625.6603960396,1575.67425742574,20,40,11,32,5306087.77352477,396540.440097511,1,1,5306090.40885253,396538.293217766,139.777644479496,0,0,84.9108316831683,5859.30938998901,19.789703520297,21.2256899256388,21.7007943100458,3.38069306930693,3.39533327823679,2.64671964170395,3.11655280978375,2.47256184617783,2.39413264226245
+41712,2873.99414237624,456.958366831683,45,84.8978910891089,87.4448278217821,21.1474257425743,2.39108910891089,1839.63861386139,1597.04356435644,1572.79702970297,20,40,11,32,5306101.95784328,396559.239720356,1,1,5306105.27291626,396556.539083592,163.311705119194,0,0,84.8978910891088,5882.8920289054,21.1474257425743,22.6819315952347,22.8593610000846,2.39108910891089,2.40572931784075,1.89911457591749,1.93647015007268,1.53632635208392,1.60555580225956
+41713,2874.00198871287,456.97326049505,45,84.9400198019802,87.4882203960396,21.0242079207921,2.43792079207921,1838.58415841584,1620.07425742574,1578.43267326733,20,40,11,32,5306116.15941954,396578.052142488,1,1,5306120.15013188,396574.801093566,186.866588961046,0,0,84.9400198019801,5906.47860121013,21.0242079207921,22.5497728048931,22.755936533817,2.43792079207921,2.45256100100906,1.93157097460427,2.08731692840771,1.65600280600415,1.64323485621756
+41714,2874.00984742574,456.988125643564,45,84.9198217821782,87.4674164356436,21.5641089108911,2.86782178217822,1839.75247524752,1608.90891089109,1561.73564356436,20,40,11,32,5306130.38461765,396596.829364028,1,1,5306135.01953376,396593.05351206,210.409101425166,0,0,84.9198217821781,5930.06747967548,21.5641089108911,23.1288502526494,23.2133295948181,2.86782178217822,2.88246199110807,2.2836081581092,1.95392570466695,1.55017496653966,1.58752283609157
+41715,2874.01774891089,457.00298980198,45,84.902297029703,87.449365940594,22.6555742574257,4.3309900990099,1838.83663366337,1566.06930693069,1534.0198019802,20,40,11,32,5306144.68912691,396615.60667909,1,1,5306149.92061991,396611.34482349,234.001779157346,0,0,84.9022970297029,5953.65916072608,22.6555742574257,24.2995148351866,24.1392828986207,4.3309900990099,4.34563030793976,3.46896937007193,2.10893836863519,1.6731564855433,1.694327238567
+41716,2874.02565445545,457.017820495049,45,84.9077029702971,87.4549340594059,22.8252277227723,4.14653465346535,1838.85148514851,1628.36237623762,1568.9297029703,20,40,11,32,5306159.00196235,396634.342350832,1.77227722772277,1,5306164.80471908,396629.614760168,63.5483348962449,0,0,84.9077029702969,5977.24406908692,22.8252277227723,24.4814787461953,24.2836261418952,4.14653465346535,4.1611748623952,3.32895616683796,2.26323816335386,1.7955724395091,1.74802867920074
+41717,2874.03356663366,457.032615841584,45,84.8879900990098,87.4346298019801,21.9230891089109,4.69277227722772,1839.5396039604,1620.83267326733,1590.9099009901,20,40,11,32,5306173.32793402,396653.03412157,2,1,5306179.67324035,396647.864399594,29.8774585207744,0,0,84.8879900990098,6000.82438732124,21.9230891089109,23.5138788795208,23.5137934503476,4.69277227722772,4.70741248615758,3.73413647532961,2.11458606806327,1.67763716884208,1.67031461575013
+41718,2874.04152356436,457.047421287129,45,84.8876633663366,87.4342932673267,21.7472178217822,4.88069306930693,1838.21782178218,1659.16633663366,1635.72178217822,20,40,11,32,5306187.73663692,396671.739863292,2,1,5306194.58168077,396666.162989336,53.4804240648844,0,0,84.8876633663366,6024.40317367988,21.7472178217822,23.32524596728,23.3642801271039,4.88069306930693,4.89533327823678,3.87632510194952,2.35461636184282,1.86806864315018,1.93398354572887
+41719,2874.04946633663,457.062225940594,45,84.9008811881188,87.4479076237624,20.1055231022772,4.7749504950495,1837.82673267327,1633.09603960396,1643.25742574257,20,40,11,32,5306202.11919082,396690.444055344,2,1,5306209.4789299,396684.447842894,77.0656715940348,0,0,84.9008811881187,6047.98493718372,20.1055231022772,21.5644261028979,21.9680431237775,4.7749504950495,4.78959070397936,3.73263684974962,2.89514120673954,2.29690177705608,2.25006917301481
+41720,2874.05738336634,457.077032871287,45,84.9094554455446,87.4567391089109,20.706900990099,4.40445544554455,1843.76732673267,1629.35445544554,1627.23762376238,20,40,11,32,5306216.45406939,396709.150136989,2,1,5306224.35808369,396702.710486286,100.622270697891,0,0,84.9094554455445,6071.57468844885,20.706900990099,22.2094413534775,22.4812869171492,4.40445544554455,4.41909565447441,3.46935528360923,2.45625638805614,1.94870621491557,1.91445319547614
+41721,2874.06530316832,457.091861287129,45,84.9460099009902,87.4943901980198,21.0161386138614,4.42792079207921,1842.79207920792,1618.00198019802,1591.9198019802,20,40,11,32,5306230.79366381,396727.882979298,2,1,5306239.25222322,396720.991523132,124.202595130187,0,0,84.94600990099,6095.16814623213,21.0161386138614,22.5411179704915,22.7469557485614,4.42792079207921,4.44256100100906,3.49509174546472,2.30924164631659,1.83206996215907,1.85351417702101
+41722,2874.07322732673,457.106686831683,45,84.9278118811882,87.4756462376237,20.4800396039604,4.82574257425743,1834.94059405941,1568.12673267327,1577.57326732673,20,40,11,32,5306245.1414516,396746.612296379,2,1,5306254.14790534,396739.274453358,147.78536179483,0,0,84.927811881188,6118.75950360287,20.4800396039604,21.9661183833613,22.2885549973599,4.82574257425743,4.84038278318728,3.78770205794924,2.61172330228438,2.07204811987447,2.05672698144842
+41723,2874.08112663366,457.121519108911,45,84.8958613861386,87.4427372277227,20.635702970297,4.76326732673267,1841.33663366337,1614.44851485148,1627.75742574257,20,40,11,32,5306259.44311558,396765.34908276,2,1,5306269.02884343,396757.539286782,171.344785775044,0,0,84.8958613861385,6142.34417871288,20.635702970297,22.1330770415975,22.4186057565681,4.76326732673267,4.77790753566252,3.74657384735928,2.61550638952864,2.07504948636874,2.10636370232509
+41724,2874.0889790099,457.136358712871,45,84.9134257425743,87.4608285148515,20.3156336633663,4.47970297029703,1837.5495049505,1605.37623762376,1629.94752475248,20,40,11,32,5306273.65774427,396784.09334715,2,1,5306283.87871963,396775.765994913,194.855032742852,0,0,84.9134257425741,6165.92874150166,20.3156336633663,21.7897827695708,22.1491604927389,4.47970297029703,4.49434317922688,3.51116201803121,2.64826513247993,2.1010391046726,2.12493294507681
+41725,2874.09681019802,457.151241188119,45,84.9393564356436,87.4875371287129,19.8744257425743,4.14495049504951,1844.71287128713,1591.93663366337,1616.12178217822,20,40,11,32,5306287.83223004,396802.890216873,2,1,5306298.73834037,396794.004663476,218.380707219973,0,0,84.9393564356434,6189.51853179319,19.8744257425743,21.3165597872324,21.7752962466023,4.14495049504951,4.15959070397936,3.2368595071746,2.9730023875007,2.35867406092177,2.33490470553352
+41726,2874.10463455446,457.166157623762,45,84.9896039603961,87.539292079208,19.6063349835644,4.46871287128713,1843.48514851485,1591.38415841584,1577.91386138614,20,40,11,32,5306301.99336492,396821.729068225,1.72277227722772,0.861386138613861,4570784.09514491,341807.479451227,206.973238010154,0,0,84.9896039603959,6213.1151468922,19.6063349835644,21.0290157461184,21.5487327399476,4.46871287128713,4.48335308021698,3.48138946570088,3.27866858185155,2.60117871781245,2.5799188677164
+41727,2874.11245425743,457.181095544554,45,84.9458910891089,87.4942678217822,19.2759939494059,4.64970297029703,1836.13366336634,1533.76930693069,1537.94158415842,20,40,11,32,5306316.14546199,396840.594434269,0,0,0,0,0,0,0,84.9458910891088,6236.71747277228,19.2759939494059,20.6747044067105,21.2660658952222,4.64970297029703,4.66434317922688,3.60727247406486,3.49703731376548,2.77442468150466,2.72676483511423
+41728,2874.12025871287,457.196051386138,45,84.9380396039604,87.4861807920792,19.7284900992079,5.33564356435644,1982.25742574257,1546.04356435644,1526.14455445545,20,40,11,32,5306330.26897698,396859.481524395,0,0,0,0,0,0,0,84.9380396039603,6260.3172539604,19.7284900992079,21.1600347179197,21.6479942565995,5.33564356435644,5.35028377328629,4.15618517957591,3.26578913577726,2.59096062464772,2.63897073047486
+41729,2874.12805445545,457.211017227723,45,84.8859603960396,87.4325392079208,19.5657486249505,4.6660396039604,1841.30198019802,1544.75247524753,1543.1801980198,20,40,11,32,5306344.3761909,396878.380689145,0,0,0,0,0,0,0,84.8859603960395,6283.91101064357,19.5657486249505,20.9854843479716,21.5087414370874,4.6660396039604,4.68067981289025,3.63073268537268,3.27158982121665,2.59556268159156,2.65702928253237
+41730,2874.13582287129,457.226006930693,45,84.9495049504951,87.4979900990099,18.696497249901,1.92217821782178,1843.9900990099,1564.52475247525,1566.22079207921,20,40,11,32,5306358.43231603,396897.308577754,0,0,0,0,0,0,0,84.9495049504949,6307.4983408966,18.696497249901,20.0531580938005,20.7745536176415,1.92217821782178,1.93681842675164,1.49064983334638,3.9542819522974,3.13718626990265,3.02535950003201
+41731,2874.14358168317,457.241014455445,45,84.997504950495,87.5474300990099,19.5243520351485,2.59267326732673,1838.93564356436,1580.68613861386,1567.71683168317,20,40,10.6138613861386,32,5306372.47031575,396916.258254303,0,0,0,0,0,0,0,84.9975049504949,6331.09959507702,19.5243520351485,20.9410839263982,21.481129163668,2.59267326732673,2.60731347625659,2.02285505993778,3.25087418889862,2.57912763774176,2.69009967403593
+41732,2874.15131574257,457.256006534654,45,85.0288910891089,87.5797578217822,19.9445423540594,1.79227722772277,1843.4900990099,1522.38415841584,1497.36534653465,20,40,10.3564356435644,32,5306386.46287018,396935.187780995,0,0,0,0,0,0,0,85.0288910891088,6354.71382442246,19.9445423540594,21.3917642213207,21.8419722337114,1.79227722772277,1.80691743665263,1.40755808618619,2.86882567967571,2.27602397643745,2.2617371368439
+41733,2874.15907782178,457.27100009901,45,85.0552772277228,87.6069355445545,19.8357810781188,1.92613861386139,1843.48514851485,1517.70891089109,1466.0099009901,20,40,10,32,5306400.50735499,396954.119992434,0,0,0,0,0,0,0,85.0552772277227,6378.33550731575,19.8357810781188,21.2751109770382,21.7513014373139,1.92613861386139,1.94077882279124,1.51099917148699,2.9353288263745,2.3287852011669,2.23632983106592
+41734,2874.1668769307,457.285987227723,45,85.1071584158416,87.6603731683168,19.638402640396,3.88009900990099,1843.37128712871,1487.38712871287,1456.43564356436,20,40,10,32,5306414.62063583,396973.045320348,0,0,0,0,0,0,0,85.1071584158415,6401.97062145217,19.638402640396,21.063410305888,21.5842366416384,3.88009900990099,3.89473921883084,3.02241820905425,3.22524621472575,2.55879531706497,2.5416168511161
+41735,2874.17469445545,457.300969207921,45,85.1213762376238,87.6750175247524,18.9752486254455,0.842079207920792,1845.03465346535,1392.24752475248,1405.27128712871,20,40,10,32,5306428.76820469,396991.964751766,0,0,0,0,0,0,0,85.1213762376236,6425.61350885591,18.9752486254455,20.3521363103051,21.0222924198982,0.842079207920792,0.85671941685065,0.665808801170458,3.71362039583299,2.94625397429462,2.96251266320296
+41736,2874.18250425742,457.315968910891,45,85.1108316831683,87.6641566336634,18.7565077008911,-3.2009900990099,1842.51485148515,1347.36534653465,1366.77425742574,20,40,10,32,5306442.90113527,397010.90590947,0,0,0,0,0,0,0,85.1108316831682,6449.25940596812,18.7565077008911,20.1175230411433,20.8336915099101,-3.2009900990099,-3.18634989008005,-2.44778122348186,3.9724251416533,3.15158042925351,3.1676849730902
+41737,2874.19031247525,457.33097019802,45,85.1068910891089,87.6600978217822,18.8397623769307,0.179306930693069,1839.72772277228,1388.61188118812,1338.92475247525,20,40,10,32,5306457.03115734,397029.848894948,0,0,0,0,0,0,0,85.1068910891088,6472.89867431246,18.8397623769307,20.2068188679688,20.9066531605089,0.179306930693069,0.193947139622927,0.152290381951847,3.81968375160332,3.03040085797073,3.05046004879952
+41738,2874.19816376238,457.345918118812,45,85.086396039604,87.6389879207921,19.5504499451485,0.484554455445544,1842.72277227723,1402.39801980198,1367.2198019802,20,40,10,32,5306471.24220589,397048.726740889,0,0,0,0,0,0,0,85.0863960396039,6496.53524735977,19.5504499451485,20.969075560775,21.5095526657603,0.484554455445544,0.499194664375401,0.384429086556233,3.24336462323802,2.57316981617831,2.61572160448925
+41739,2874.20603425743,457.360835742574,45,85.054900990099,87.6065480198019,19.2773129811881,-1.40257425742574,1841.93069306931,1367.89504950495,1377.03762376238,20,40,10,32,5306485.48956812,397067.567392255,0,0,0,0,0,0,0,85.0549009900989,6520.16337032457,19.2773129811881,20.6761191504727,21.2769320975974,-1.40257425742574,-1.38793404849589,-1.0635034172784,3.35697956921293,2.66330786219223,2.65926102812499
+41740,2874.21390613862,457.375741089109,45,85.0102574257426,87.5605651485148,18.7232293726733,-0.00475247524752479,1840.0198019802,1400.76237623762,1391.84059405941,20,40,10,32,5306499.73983121,397086.392704479,0,0,0,0,0,0,0,85.0102574257425,6543.78114845988,18.7232293726733,20.0818299608872,20.8030355731926,-0.00475247524752479,0.00988773368233267,0.00861731800030891,3.86272692234377,3.06454977448427,2.91243503091712
+41741,2874.22178059406,457.390635346535,45,84.9717821782178,87.5209356435644,20.7155940594059,0.896435643564356,1843.99504950495,1423.28217821782,1440.38514851485,20,40,10,32,5306513.9951694,397105.204196741,0,0,0,0,0,0,0,84.9717821782177,6567.39227480751,20.7155940594059,22.2187652118881,22.4947853489333,0.896435643564356,0.911075852494214,0.718874784413679,2.31511077206297,1.83672631720153,1.98791981801837
+41742,2874.22965188119,457.405533168317,45,84.9895148514851,87.5392002970297,20.1623855885149,2.37554455445545,1839.29207920792,1441.23168316832,1437.43168316832,20,40,10,32,5306528.24461992,397124.019930775,0,0,0,0,0,0,0,84.989514851485,6591.00042453249,20.1623855885149,21.6254146619252,22.0247895843431,2.37554455445545,2.3901847633853,1.87083182788797,2.72703051296456,2.16352874835026,2.07665980143035
+41743,2874.23753425743,457.42041980198,45,84.9935841584158,87.5433916831683,20.8663069306931,3.14009900990099,1840.37623762376,1469.83762376238,1455.55346534653,20,40,10,32,5306542.51492005,397142.822002807,0,0,0,0,0,0,0,84.9935841584157,6614.60951716174,20.8663069306931,22.3804141557676,22.6244585420794,3.14009900990099,3.15473921883085,2.47750824322696,2.17300872917706,1.72398762450214,1.83549594892614
+41744,2874.24541465347,457.43530950495,45,85.0217128712871,87.5723642574257,19.2550621562376,2.7119801980198,1843.21287128713,1465.68712871287,1463.24554455446,20,40,10,32,5306556.78154426,397161.627739217,0,0,0,0,0,0,0,85.021712871287,6638.22270852588,19.2550621562376,20.6522537544851,21.2546652634077,2.7119801980198,2.72662040694966,2.10593968918713,3.42533621532614,2.71753958725128,2.60861576348357
+41745,2874.25329148515,457.450213564356,45,85.0392673267327,87.5904453465347,19.1536804180198,1.1139603960396,1843.81188118812,1410.77722772277,1414.74851485148,20,40,10,32,5306571.04130764,397180.451146072,0,0,0,0,0,0,0,85.0392673267326,6661.84476388891,19.1536804180198,20.5435155241561,21.1689361752159,1.1139603960396,1.12860060496946,0.86754069084135,3.55022905513564,2.81662511200298,2.74599915460534
+41746,2874.26115564356,457.465131287129,45,85.0499306930693,87.6014286138614,19.9905374037624,1.26851485148515,1841.77227722772,1409.01188118812,1414.33168316832,20,40,10,32,5306585.27735287,397199.29105944,0,0,0,0,0,0,0,85.0499306930692,6685.46517640267,19.9905374037624,21.4410967776224,21.884161648053,1.26851485148515,1.28315506041501,1.00991932467685,2.73711028233784,2.17152567787201,2.30603792053995
+41747,2874.26900613861,457.480066534653,45,85.0449702970297,87.5963194059406,20.1536732673267,1.84841584158416,1840.53465346535,1414.82871287129,1424.76633663366,20,40,10,32,5306599.48776043,397218.152256151,0,0,0,0,0,0,0,85.0449702970296,6709.0895757701,20.1536732673267,21.6160701546726,22.0216426827685,1.84841584158416,1.86305605051401,1.45379924043766,2.62283377625139,2.08086277366039,2.01065993242488
+41748,2874.27684841584,457.495007425743,45,85.0528514851485,87.604437029703,20.8297326732673,0.915346534653465,1840.71287128713,1399.85742574257,1379.62673267327,20,40,10,32,5306613.68288116,397237.020117773,0,0,0,0,0,0,0,85.0528514851484,6732.7130007701,20.8297326732673,22.3411859860993,22.5972098062954,0.915346534653465,0.929986743583323,0.734931425722086,2.12602975734137,1.68671618377156,1.77219301461712
+41749,2874.28468742574,457.509951089109,45,85.0126138613861,87.5629922772278,19.3715418040594,-0.079009900990099,1843.12376237624,1408.82772277228,1396.21485148515,20,40,10,32,5306627.87194883,397255.891231504,0,0,0,0,0,0,0,85.012613861386,6756.33384612214,19.3715418040594,20.7771854334654,21.3541598258799,-0.079009900990099,-0.064369692060242,-0.0493610750543986,3.30151872153459,2.6193072036776,2.50313794174289
+41750,2874.29252128713,457.524897128713,45,85.0376930693069,87.5888238613862,18.8544317931683,0.410693069306931,1841.56930693069,1421.44356435644,1430.03069306931,20,40,10,32,5306642.05148765,397274.765042051,0,0,0,0,0,0,0,85.0376930693069,6779.95080596813,18.8544317931683,20.2225527307895,20.9147333580127,0.410693069306931,0.425333278236788,0.324711277721973,3.7971262997917,3.01250458022394,3.05965675857501
+41751,2874.30034049505,457.539858514851,45,85.0252277227723,87.5759845544555,18.7057601762376,-0.716336633663366,1843.57920792079,1406.2900990099,1402.19405940594,20,40,10,32,5306656.20360361,397293.657390603,0,0,0,0,0,0,0,85.0252277227722,6803.56780294281,18.7057601762376,20.0630931593776,20.7893664402298,-0.716336633663366,-0.701696424733509,-0.536651136102537,3.87252342469486,3.07232197005344,3.01563258529119
+41752,2874.30815445545,457.554828217822,45,85.0078217821782,87.5580564356436,19.5863828382178,1.84257425742574,1841.62871287129,1405.06534653465,1405.2702970297,20,40,10,32,5306670.34587577,397312.559831889,0,0,0,0,0,0,0,85.0078217821781,6827.18448858638,19.5863828382178,21.007615827214,21.5365372825984,1.84257425742574,1.8572144663556,1.44639793550522,3.13968181501013,2.4909115740192,2.50364564312911
+41753,2874.31597168317,457.569795841584,45,85.0288613861386,87.5797272277228,21.9758613861386,3.9670297029703,1845.09405940594,1448.15841584158,1430.52673267327,20,40,10,32,5306684.49430712,397331.459698377,0,0,0,0,0,0,0,85.0288613861385,6850.80256229375,21.9758613861386,23.5704804345647,23.5690507538897,3.9670297029703,3.98166991190015,3.1571999570559,1.9436538020881,1.54202560538513,1.63510399064881
+41754,2874.32380069307,457.58474960396,45,85.0081881188119,87.5584337623763,21.3748811881188,2.91871287128713,1843.59900990099,1446.35643564356,1414.08316831683,20,40,10,32,5306698.6649312,397350.342596031,0,0,0,0,0,0,0,85.0081881188117,6874.41885401543,21.3748811881188,22.9258917310738,23.0569369224614,2.91871287128713,2.93335308021698,2.3117860284157,2.08726121211714,1.65595860268635,1.56763406905879
+41755,2874.33162762376,457.599700792079,45,84.9823663366336,87.5318373267326,20.8352178217822,1.45168316831683,1839.78217821782,1447.42376237624,1442.21782178218,20,40,10,32,5306712.83182168,397369.22212602,0,0,0,0,0,0,0,84.9823663366335,6898.03224188671,20.8352178217822,22.3470691496066,22.5979161819121,1.45168316831683,1.46632337724669,1.15664230001204,2.31933646059722,1.84007882777373,1.783472477041
+41756,2874.33944475248,457.614660990099,45,85.0111782178218,87.5615135643564,21.2104059405941,0.778811881188119,1841.36633663366,1478.25940594059,1455.7099009901,20,40,10,32,5306726.98041665,397388.112461887,0,0,0,0,0,0,0,85.0111782178217,6921.6437667492,21.2104059405941,22.7494817812823,22.9190467856787,0.778811881188119,0.793452090117976,0.625247290915196,1.90918372939114,1.51467827909631,1.60070154839953
+41757,2874.34727326733,457.629614356436,45,85.0256039603961,87.576372079208,21.1913465346535,0.180693069306931,1842.03465346535,1450.74851485149,1429.89306930693,20,40,10,32,5306741.15031481,397406.994571227,0,0,0,0,0,0,0,85.025603960396,6945.26121952698,21.1913465346535,22.7290393810085,22.9036512457266,0.180693069306931,0.195333278236788,0.154612006604533,1.98403376498975,1.57406162778374,1.60428861898476
+41758,2874.35510811881,457.64456029703,45,85.052900990099,87.604488019802,20.1233602860396,0.298613861386139,1841.13366336634,1465.43564356436,1420.7900990099,20,40,10,32,5306755.33217582,397425.867547709,0,0,0,0,0,0,0,85.0529009900989,6968.88056685921,20.1233602860396,21.583557593741,21.9976823884323,0.298613861386139,0.313254070315996,0.242609729200924,2.67983296825373,2.12608389969603,1.97887379362624
+41759,2874.36296841584,457.659479504951,45,85.0360495049505,87.587130990099,21.6339801980198,2.16732673267327,1841.71287128713,1482.35346534653,1431.87326732673,20,40,10,32,5306769.56182338,397444.70797416,0,0,0,0,0,0,0,85.0360495049503,6992.50194961498,21.6339801980198,23.2037915610818,23.2798636435436,2.16732673267327,2.18196694160312,1.73306832367378,1.89509511841181,1.50350087762127,1.63070454983543
+41760,2874.37084445545,457.674383168317,45,85.0120594059406,87.5624211881188,21.1526138613861,1.48386138613861,1843.22772277228,1406.15049504951,1401.33564356436,20,40,10,32,5306783.82103626,397463.529465462,0,0,0,0,0,0,0,85.0120594059405,7016.12452813534,21.1526138613861,22.6874961758807,22.870045778181,1.48386138613861,1.49850159506847,1.17758160152064,2.03241902226742,1.61244876522826,1.74112913375635
+41761,2874.37871267327,457.689287821782,45,84.989801980198,87.5394960396039,20.0025088009901,1.53792079207921,1842.84653465347,1402.38415841584,1379.76237623762,20,40,10,32,5306798.06579893,397482.351839261,0,0,0,0,0,0,0,84.9898019801979,7039.73503781631,20.0025088009901,21.4539368469682,21.8909690852002,1.53792079207921,1.55256100100907,1.2032927515027,2.70937624436192,2.14952248128748,2.0432573455504
+41762,2874.38657485148,457.704193267327,45,84.9542673267327,87.5028953465347,21.8483388339604,1.6190099009901,1842.75247524752,1417.71485148515,1420.54653465347,20,40,10,32,5306812.299417,397501.174907706,0,0,0,0,0,0,0,84.9542673267325,7063.33999840486,21.8483388339604,23.4337045526883,23.4588098445006,1.6190099009901,1.63365010991996,1.3078298622415,2.53267519270215,2.00933416901443,1.94448414587829
+41763,2874.39440495049,457.719108415841,45,84.6903366336633,87.2310467326733,22.2058415841584,0.584257425742574,1826.66336633663,479.129702970297,499.733663366336,20,40,10,32,5306826.47345894,397520.008912285,0,0,0,0,0,0,0,84.6903366336632,7086.91795093513,22.2058415841584,23.8171485247257,23.7473829480415,0.584257425742574,0.598897634672432,0.479262741037908,1.89802648398203,1.50582651851635,1.54202064784422
+41764,2874.40213831683,457.733940990099,45,83.2635940594059,85.7615018811881,20.7668316831683,-0.0976237623762374,1779.31683168317,-2587.87920792079,-2321.3297029703,20,40,10,32,5306840.47020533,397538.73679865,0,0,0,0,0,0,0,83.2635940594058,7110.30438256329,20.7668316831683,22.2737207554813,22.4402648191422,-0.0976237623762374,-0.0829835534463804,-0.0593509766275399,2.05354316658719,1.62920790793049,1.70221480505021
+41765,2874.40955188119,457.748249207921,45,78.828702970297,81.1935640594059,19.3943564356436,-0.563069306930693,1687.86138613861,-3903.11683168317,-3400.86930693069,20,40,10,32,5306853.88622391,397556.801010003,0,0,0,0,0,0,0,78.8287029702969,7132.81834837737,19.3943564356436,20.8016555471928,21.0176614161479,-0.563069306930693,-0.548429098000836,-0.425399951426942,2.1337562666291,1.69284612067139,1.63349515018736
+41766,2874.4165439604,457.761813960396,45,74.228504950495,76.4553600990099,17.7051287128713,1.04475247524752,1580.54455445545,-4800.96237623762,-4247.37821782178,20,40,10,32,5306866.53800137,397573.925321206,0,0,0,0,0,0,0,74.228504950495,7154.11661820686,17.7051287128713,18.9898535754966,19.3174147752917,1.04475247524752,1.05939268417738,0.826527633814193,2.32662903530544,1.84586449645463,1.9597350061579
+41767,2874.42301792079,457.774439504951,45,68.2949306930693,70.3437786138614,15.490003850396,-0.0482178217821782,1457.12376237624,-5012.7396039604,-4247.3900990099,20,40,10,32,5306878.25085804,397589.862779292,0,0,0,0,0,0,0,68.2949306930692,7173.9006476898,15.490003850396,16.6139941580349,17.0926801241919,-0.0482178217821782,-0.0335776128523209,-0.0351511275930353,2.77089977274668,2.19833305444667,2.03306073922118
+41768,2874.42894554456,457.786035445545,45,62.3799405940594,64.2513388118812,15.2315247524753,-0.574257425742574,1354.26732673267,-5312.81881188119,-4425.91683168317,20,40,10,32,5306888.97451349,397604.499887468,0,0,0,0,0,0,0,62.3799405940593,7192.04377084712,15.2315247524753,16.3367592222463,16.5337449888655,-0.574257425742574,-0.559617216812716,-0.444669279052974,1.68825443910324,1.33940085971355,1.3633106468229
+41769,2874.43431891089,457.796577425743,45,56.2132673267327,57.8996653465346,14.7478316831683,3.52960396039604,1395.5,-5630.90495049505,-4765.49306930693,20,40,10,32,5306898.69482427,397617.806065452,0,0,0,0,0,0,0,56.2132673267326,7208.51742425746,14.7478316831683,15.8179682712975,15.7685361942473,3.52960396039604,3.54424416932589,2.82409828501768,1.34158854521266,1.06436850347876,1.10428603741573
+41770,2874.43911623762,457.806022376237,45,49.9659405940594,51.4649188118812,13.6611287128713,4.80910891089109,1245.32178217822,-5526.31683168317,-4729.87524752475,20,40,10,32,5306907.37238505,397629.726970353,0,0,0,0,0,0,0,49.9659405940593,7223.25907959299,13.6611287128713,14.6524116339715,14.4844589421684,4.80910891089109,4.82374911982094,3.86541828133115,1.59240370739529,1.26335630773121,1.21392422472315
+41771,2874.44332178218,457.814358217822,45,43.5008811881188,44.8059076237624,12.0624257425743,5.42594059405941,1276.06930693069,-6346.00198019802,-5151.52772277228,20,40,10,32,5306914.97829359,397640.247053505,0,0,0,0,0,0,0,43.5008811881188,7236.23641606164,12.0624257425743,12.9377030990044,12.7529853338274,5.42594059405941,5.44058080298926,4.36974883222034,1.5863560143873,1.25855828379206,1.26884129427905
+41772,2874.44692336634,457.821701089109,45,38.5578217821782,39.7145564356436,10.9007326732673,5.5,1343.70792079208,-4990.65148514852,-3914.6396039604,20,40,10,32,5306921.48741783,397649.510570268,0,0,0,0,0,0,0,38.5578217821782,7247.5558006876,10.9007326732673,11.6917149086011,11.4814500380959,5.5,5.51464020892985,4.44431855527518,1.50959917296856,1.19766214337394,1.20319537352191
+41773,2874.44984069307,457.828537722772,45,34.5553465346535,35.592006930693,9.53816831683168,5.5,1204.60891089109,-5330.61287128713,-4281.43465346535,20,40,9.71287128712871,32,5306926.74025933,397658.12108967,0,0,0,0,0,0,0,34.5553465346534,7257.71453916395,9.53816831683168,10.2302797484549,10.0930822306424,5.5,5.51464020892985,4.42515625912064,1.22267341851273,0.970025483110664,0.98665410869304
+41774,2874.45190405941,457.834897524752,45,30.2658316831683,31.1738066336634,8.96687128712871,5.5,1266.36633663366,-4430.2801980198,-3441.83366336634,20,40,10,32,5306930.4218166,397666.109666079,0,0,0,0,0,0,0,30.2658316831683,7266.69821740928,8.96687128712871,9.61752809224758,9.36146500265835,5.5,5.51464020892985,4.48062242044624,1.53042727976767,1.21418642046557,1.15213366035297
+41775,2874.45318990099,457.84110019802,45,28.4239207920792,29.2766384158416,8.30687128712871,5.45,1434.36633663366,-485.338613861386,-223.114851485149,20,40,10,32,5306932.6666098,397673.876990149,0,0,0,0,0,0,0,28.4239207920792,7274.7942156766,8.30687128712871,8.90963697419453,8.69456143608131,5.45,5.46464020892985,4.42913999154553,1.32641407465735,1.05232961974375,1.11057020709182
+41776,2874.45392594059,457.847158415842,45,26.4582277227723,27.2519745544554,7.71689108910891,5.5,1330.78712871287,-828.370297029703,-643.784158415841,20,40,10,32,5306933.89617982,397681.446333498,0,0,0,0,0,0,0,26.4582277227722,7282.45715115515,7.71689108910891,8.27684645600453,8.08003354958869,5.5,5.51464020892985,4.4677314716884,1.24512087779926,0.987834496710973,1.00257135167286
+41777,2874.45430851485,457.852919108911,45,24.6926930693069,25.4334738613861,7.32579207920793,5.42356435643564,1242.16336633663,-468.972277227723,-311.706930693069,20,40,10,32,5306934.47759082,397688.63351135,0,0,0,0,0,0,0,24.6926930693069,7289.51565629816,7.32579207920793,7.85736840238595,7.64630843953389,5.42356435643564,5.4382045653655,4.41838731220922,1.25197415264129,0.993271640545844,0.989180426388008
+41778,2874.45469594059,457.858246930693,45,22.3265247524752,22.9963204950495,6.78105940594059,5.45386138613861,1180.92574257426,-1353.07128712871,-1083.54257425743,20,40,10,32,5306935.0775582,397695.281730809,0,0,0,0,0,0,0,22.3265247524752,7296.08147596263,6.78105940594059,7.27310867341741,7.04736004524841,5.45386138613861,5.46850159506847,4.46153499906013,1.28086443263753,1.01619215831145,0.977354297690996
+41779,2874.45544881188,457.862919207921,45,20.6132079207921,21.2316041584158,6.0259801980198,5.48792079207921,1285.48514851485,-414.838613861386,-782.629702970297,20,40,10,32,5306936.36894368,397701.125510393,0,0,0,0,0,0,0,20.613207920792,7302.00831713424,6.0259801980198,6.463239181427,6.30684672564706,5.48792079207921,5.50256100100906,4.45868332801763,0.987961994527167,0.783813810397495,0.815688502591658
+41780,2874.45677376238,457.866823762376,45,19.4953663366337,20.0802273267327,5.41810891089109,5.5,1240.08910891089,1091.74851485149,846.890099009901,20,40,10,32,5306938.73697964,397706.031924629,0,0,0,0,0,0,0,19.4953663366336,7307.56631430146,5.41810891089109,5.8112593555514,5.72567573054631,5.5,5.51464020892985,4.42949453661223,0.736391225309821,0.584226534472728,0.600402400998164
+41781,2874.45862326733,457.870049207921,45,20.0877623762376,20.6903952475247,4.54533663366337,5.43841584158416,1252.01485148515,3057.60198019802,2728.2801980198,20,40,10,32,5306942.09167445,397710.109774294,0,0,0,0,0,0,0,20.0877623762376,7313.01776397143,4.54533663366337,4.87515671444164,5.01714198394402,5.43841584158416,5.45305605051401,4.21128175557731,0.914133655559266,0.72524103937765,0.776009712572414
+41782,2874.46111306931,457.872646138614,45,20.9009207920792,21.5279484158416,3.73636633663366,4.69831683168317,1099.54455445545,2653.92178217822,2362.52673267327,20,40,10,32,5306946.6463045,397713.425872291,0,0,0,0,0,0,0,20.9009207920792,7318.72167711775,3.73636633663366,4.00748567196275,4.37597222752817,4.69831683168317,4.71295704061302,3.43728025996895,1.85936870480819,1.47515681526501,1.49493566590036
+41783,2874.4641119802,457.874385049505,45,21.7344752475247,22.3865095049505,3.75779207920792,2.15742574257426,996.826732673267,1458.32574257426,1259.4396039604,20,40,10,32,5306952.16293058,397715.690075664,0,0,0,0,0,0,0,21.7344752475247,7324.6477877063,3.75779207920792,4.03046611569912,4.44281756099659,2.15742574257426,2.17206595150411,1.57749789066753,2.04436043600968,1.62192265699606,1.57923276239665
+41784,2874.46727059406,457.874858217821,45,21.4301683168317,22.0730733663366,3.27426732673268,-4.02,991.519801980198,319.827722772277,123.851485148515,20,40,10.1980198019802,32,5306958.0033337,397716.383117849,0,0,0,0,0,0,0,21.4301683168317,7330.66479815735,3.27426732673268,3.51185569503847,4.01341966969508,-4.02,-4.00535979107015,-2.79171645487599,2.47391909447239,1.96271917623872,1.8848527068539
+41785,2874.4703470297,457.874081287129,45,21.0355544554455,21.6666210891089,3.31956435643564,-5.35207920792079,962.985148514852,126.028712871287,-88.110891089109,20,40,11,32,5306963.71911977,397715.516542191,0,0,0,0,0,0,0,21.0355544554455,7336.55974829487,3.31956435643564,3.56043958140349,4.02884632046928,-5.35207920792079,-5.33743899899094,-3.79119387655943,2.3238160720692,1.84363279174846,1.8415280351398
+41786,2874.47311980198,457.871973564356,45,20.5800099009901,21.1974101980198,4.30536633663366,-5.5,925.950495049505,177.253465346535,-34.9663366336634,20,40,11,32,5306968.90180398,397712.982580675,0,0,0,0,0,0,0,20.5800099009901,7342.34575409795,4.30536633663366,4.61777362070849,4.84119170755856,-5.5,-5.48535979107015,-4.16250266530472,1.23080548455009,0.976477174271317,1.00965304606826
+41787,2874.47522712871,457.868839207921,45,19.7320396039604,20.3240007920792,4.55603960396039,-5.5,876.366336633663,237.781188118812,20.4920792079208,20,40,11,32,5306972.87452491,397709.148162772,0,0,0,0,0,0,0,19.7320396039604,7347.95285396044,4.55603960396039,4.88663631688111,5.00587083804224,-5.5,-5.48535979107015,-4.25404449569976,0.806942756563167,0.640199603120504,0.639098264306301
+41788,2874.47656247525,457.865134554455,45,18.9731386138614,19.5423327722772,4.61829702970297,-5.5,847.940594059406,2163.10891089109,1896.42277227723,20,40,11,32,5306975.42986757,397704.578125897,0,0,0,0,0,0,0,18.9731386138614,7353.30849854239,4.61829702970297,4.95341128463265,5.01537612011125,-5.5,-5.48535979107015,-4.29899324954637,0.646404841120668,0.512834546657499,0.539504091668678
+41789,2874.47703237624,457.860902277228,62.8217821782178,19.9379207920792,20.5360584158416,5.94429702970297,-5.5,888.019801980198,4807.20198019802,4222.97128712871,20,40,10.9108910891089,32,5306976.39376085,397699.322543942,0,0,0,0,0,0,0,19.9379207920792,7358.67908314085,5.94429702970297,6.37562889453925,6.19871779332829,-5.5,-5.48535979107015,-4.46048702309074,1.04047176462539,0.825473189211439,0.824372215839072
+41790,2874.47657089109,457.856359009901,200.049504950495,21.6146534653465,22.2630930693069,6.73391089108911,-5.5,970.326732673267,5681.59306930693,4879.07128712871,20,40,10.8118811881188,32,5306975.63927665,397693.649049286,0,0,0,0,0,0,0,21.6146534653465,7364.45128182072,6.73391089108911,7.22253895388293,6.96649696731045,-5.5,-5.48535979107015,-4.49438012064361,1.38129840649071,1.09587289114865,1.08366201909232
+41791,2874.47514455446,457.851903762377,225,22.9753564356436,23.6646171287129,7.25072277227723,-5.5,1008.38118811881,5536.65247524752,4792.17524752475,20,40,11,32,5306973.09561304,397688.053477645,0,0,0,0,0,0,0,22.9753564356435,7370.66319334438,7.25072277227723,7.77685189387893,7.48409067982524,-5.5,-5.48535979107015,-4.50351439257272,1.56001599401165,1.2376610510534,1.25054940212932
+41792,2874.47311,457.8476,225,24.3362178217822,25.0663043564356,7.67879207920792,-5.5,842.282178217822,5809.8495049505,5002.66534653465,20,40,11,32,5306969.42197744,397682.62658309,0,0,0,0,0,0,0,24.3362178217822,7377.21496135868,7.67879207920792,8.23598289431433,7.92619312420914,-5.5,-5.48535979107015,-4.50263319996156,1.65931800504025,1.31644372495748,1.28926977022451
+41793,2874.4708,457.843157920792,225,26.1734455445545,26.9586489108911,7.82229702970297,-5.5,922.064356435644,5818.53168316832,4928.84752475247,20,40,11,32,5306965.24118151,397677.018366779,0,0,0,0,0,0,0,26.1734455445544,7384.22506677672,7.82229702970297,8.38990089409023,8.15346150066757,-5.5,-5.48535979107015,-4.46227108837269,1.38401822654545,1.09803069937661,1.10656014854445
+41794,2874.46833326733,457.838374158416,225,28.4452277227723,29.2985845544555,8.32986138613861,-5.5,1034.70792079208,5253.57524752475,4501.60594059406,20,40,11,32,5306960.77761609,397670.979447774,0,0,0,0,0,0,0,28.4452277227723,7391.80008311335,8.32986138613861,8.93429528766766,8.71534463586013,-5.5,-5.48535979107015,-4.44743494821047,1.35294834162582,1.07338096080126,1.08296764104888
+41795,2874.46566049505,457.833182277228,225,30.3157326732673,31.2252046534653,9.05206930693069,-5.44524752475248,1497.47524752475,5344.24752475248,4638.46534653465,20,40,11,32,5306955.94141673,397664.4254625,0,0,0,0,0,0,0,30.3157326732673,7399.97413223326,9.05206930693069,9.70890827632869,9.43696924122098,-5.44524752475248,-5.43060731582262,-4.41798550311346,1.57505301831457,1.24959088983384,1.19453090545756
+41796,2874.46276455445,457.827596138614,225,33.2617821782178,34.2596356435644,9.36890099009901,-5.5,1685.70297029703,7141.74554455446,6190.50693069307,20,40,11,32,5306950.70055057,397657.373108977,0,0,0,0,0,0,0,33.2617821782178,7408.7802256326,9.36890099009901,10.048729995166,9.87508508805522,-5.5,-5.48535979107015,-4.41777790377839,1.29685498108319,1.02887848913892,1.0952465605209
+41797,2874.45955722772,457.821484158416,225,36.3978811881188,37.4898176237624,10.4907722772277,-5.5,1839.20297029703,6668.55148514851,5757.24554455445,20,40,11,32,5306944.89451691,397649.655604954,0,0,0,0,0,0,0,36.3978811881188,7418.47006397143,10.4907722772277,11.252006843283,11.0090860810146,-5.5,-5.48535979107015,-4.4363246254929,1.56352169810728,1.24044235165053,1.17492937984508
+41798,2874.45603376238,457.81488019802,225,39.073099009901,40.245291980198,10.6325742574257,-5.5,1863.21782178218,5609.69306930693,4810.67722772277,20,40,11,32,5306938.51376684,397641.314962349,0,0,0,0,0,0,0,39.0730990099009,7428.97447285482,10.6325742574257,11.4040983013201,11.2828927230596,-5.5,-5.48535979107015,-4.39054094674528,1.28985920362007,1.02332828880689,1.07709645454931
+41799,2874.45222257426,457.807863168317,225,41.4549900990099,42.6986398019802,11.5497425742574,-5.28237623762376,1481.13861386139,5885.24059405941,5054.71881188119,20,40,11,32,5306931.60919503,397632.450389646,0,0,0,0,0,0,0,41.4549900990098,7440.15661958199,11.5497425742574,12.387818460782,12.1999957794336,-5.28237623762376,-5.26773602869391,-4.23507781684147,1.49790593419694,1.18838514477657,1.25011428423611
+41800,2874.44816722772,457.80037980198,225,43.7337425742574,45.0457548514852,13.4061188118812,-1.89792079207921,1541.36138613861,3788.55445544555,3379.30396039604,20,40,11,32,5306924.26267757,397622.996973176,0,0,0,0,0,0,0,43.7337425742574,7452.01042709024,13.4061188118812,14.3788976280223,13.9122609648086,-1.89792079207921,-1.88328058314935,-1.54086523188724,2.4748330007969,1.96344423692175,1.93059494928762
+41801,2874.44399247525,457.792664554455,225,43.9039207920792,45.2210384158416,13.393099009901,-2.80415841584158,1551.40594059406,1701.02079207921,1655.43069306931,20,40,11,32,5306916.70011961,397613.250811616,0,0,0,0,0,0,0,43.9039207920792,7464.22221080862,13.393099009901,14.3649330792638,13.9103996534669,-2.80415841584158,-2.78951820691173,-2.28295164234527,2.44215026993534,1.93751492389888,1.91869360990643
+41802,2874.43978128713,457.784863069307,225,45.0873960396039,46.4400179207921,13.5551089108911,-1.66019801980198,1603.24752475248,4720.75346534653,4474.5801980198,20,40,11,32,5306909.0719928,397603.396022037,0,0,0,0,0,0,0,45.0873960396039,7476.53248204074,13.5551089108911,14.5386987913055,14.1162992872325,-1.66019801980198,-1.64555781087212,-1.33541178766477,2.29415472995882,1.82010054080173,1.7588844647125
+41803,2874.43543366337,457.776725940594,225,47.2715742574257,48.6897214851485,13.9056831683168,-1.11693069306931,1679.76237623762,5149.40693069307,5019.21584158416,20,40,11,32,5306901.19857709,397593.118692899,0,0,0,0,0,0,0,47.2715742574257,7489.36048506604,13.9056831683168,14.9147115231991,14.5404869556529,-1.11693069306931,-1.10229048413945,-0.900380990264572,2.07734625060179,1.64809242584115,1.68140153065187
+41804,2874.4309480198,457.768215940594,225,49.4020099009901,50.8840701980198,14.4108712871287,-3.06633663366337,1751.79702970297,4952.17623762376,4969.04653465347,20,40,11,32,5306893.07776336,397582.372403823,0,0,0,0,0,0,0,49.4020099009901,7502.79301284381,14.4108712871287,15.4565572538852,15.091381937723,-3.06633663366337,-3.05169642473351,-2.47142988068511,2.12214854714799,1.68363697002904,1.70940942552756
+41805,2874.42632722772,457.759342277228,225,51.4150198019802,52.9574703960396,14.6243564356436,-3.32851485148515,1826.82673267327,4872.91089108911,4748.5,20,40,11,32,5306884.71466921,397571.168713858,0,0,0,0,0,0,0,51.4150198019801,7516.8014727723,14.6243564356436,15.6855333758093,15.3880928952947,-3.32851485148515,-3.31387464255529,-2.67467865598945,1.90245569596028,1.50934049733028,1.50007904158965
+41806,2874.42155267327,457.750118811881,225,53.3548316831683,54.9554766336634,14.8504851485148,-4.40227722772277,1891.9504950495,4765.76435643564,4552.37425742574,20,40,11,32,5306876.07451138,397559.524271039,0,0,0,0,0,0,0,53.3548316831683,7531.35704290432,14.8504851485148,15.9280705082008,15.6904940403733,-4.40227722772277,-4.38763701879292,-3.52446452981789,1.80484145363358,1.43189683891933,1.41523785960052
+41807,2874.41662643564,457.740555742574,225,55.1462277227723,56.8006145544554,14.7512178217822,-4.81762376237624,1955.11386138614,4454.06138613861,4220.89207920792,20,40,11,32,5306867.16091832,397547.45184129,0,0,0,0,0,0,0,55.1462277227722,7546.4320727448,14.7512178217822,15.8216001159175,15.7085266118125,-4.81762376237624,-4.80298355344639,-3.8343191579826,1.54145199257403,1.22293303440534,1.23380373950384
+41808,2874.41155247525,457.730687326733,225,56.7388217821782,58.4409864356436,15.2472574257426,-3.52871287128713,1598.62871287129,4421.93168316832,4101.09603960396,20,40,11,32,5306857.98047087,397534.994217407,0,0,0,0,0,0,0,56.7388217821782,7561.97814543457,15.2472574257426,16.3536334944723,16.2236956038078,-3.52871287128713,-3.51407266235728,-2.80492560813724,1.46997202768051,1.16622337962041,1.18476287338764
+41809,2874.40632811881,457.720536435644,225,58.3531683168317,60.1037633663366,16.2387227722772,-2.85178217821782,1496.91584158416,4410.16633663366,4063.1900990099,20,40,11,32,5306848.52771369,397522.179793129,0,0,0,0,0,0,0,58.3531683168316,7577.96534942247,16.2387227722772,17.4170418470015,17.1589754328596,-2.85178217821782,-2.83714196928797,-2.28289829060326,1.93538998931331,1.5354693910618,1.49264206068232
+41810,2874.40095108911,457.710103168317,225,59.9453564356436,61.7437171287129,16.375504950495,-1.81405940594059,1531.58415841584,4420.32673267327,4047.13465346534,20,40,11,32,5306838.79842869,397509.008613261,0,0,0,0,0,0,0,59.9453564356435,7594.39943998902,16.375504950495,17.5637492546808,17.366703022938,-1.81405940594059,-1.79941919701074,-1.43944831183689,1.76872260497308,1.4032414325853,1.45832250320694
+41811,2874.39542108911,457.699394356436,225,61.5096435643564,63.3549328712871,17.0337227722772,-3.01475247524752,1569.04455445545,4359.97227722772,3998.92475247525,20,40,11,32,5306828.7919169,397495.489172944,0,0,0,0,0,0,0,61.5096435643564,7611.27096012103,17.0337227722772,18.2697288755654,18.0162559424515,-3.01475247524752,-3.00011226631767,-2.40451489928673,1.97845588185254,1.56963633424011,1.54307100831396
+41812,2874.38972990099,457.688432178218,225,63.0186435643564,64.9092028712872,16.6529801980198,-1.51455445544554,1606.85643564356,4324.10792079208,3884.6702970297,20,40,11,32,5306818.49246757,397481.648820153,0,0,0,0,0,0,0,63.0186435643564,7628.5706767877,16.6529801980198,17.8613587443813,17.7801701498221,-1.51455445544554,-1.49991424651569,-1.20438879274066,2.3226853492224,1.84273571656949,1.74459220032459
+41813,2874.38387564356,457.677233861386,225,64.4642673267327,66.3981953465346,17.588099009901,-2.25138613861386,1645.73267326733,4240.75544554456,3822.8,20,40,11,32,5306807.89621703,397467.508945756,0,0,0,0,0,0,0,64.4642673267326,7646.28066053357,17.588099009901,18.864331928101,18.6586093037831,-2.25138613861386,-2.236745929684,-1.78807115092778,2.00042556935834,1.58706630074951,1.61112730441044
+41814,2874.37786980198,457.665806732673,225,65.8867722772277,67.8633754455445,18.0543861386139,-1.60138613861386,1679.69306930693,4128.40198019802,3783.16633663366,20,40,11,32,5306797.02427971,397453.079049333,0,0,0,0,0,0,0,65.8867722772276,7664.38705167769,18.0543861386139,19.3644539233712,19.1368058148087,-1.60138613861386,-1.586745929684,-1.26878424972064,2.09425592281563,1.66150795668537,1.76830363621194
+41815,2874.37172752475,457.654142970297,225,67.2473663366337,69.2647873267327,19.7261287128713,-3.98584158415842,1712.43564356436,4034.80396039604,3722.25346534653,20,40,11,32,5306785.90489125,397438.34988422,0,0,0,0,0,0,0,67.2473663366336,7682.87562651267,19.7261287128713,21.1575019839591,20.6354565013562,-3.98584158415842,-3.97120137522856,-3.21873924686894,3.05103739446208,2.42058425229514,2.44061692626713
+41816,2874.36545712871,457.642244257426,225,68.4820990099009,70.536561980198,19.8647920792079,-4.58653465346535,1681.0495049505,3881.78514851485,3610.03861386138,20,40,11,32,5306774.55342228,397423.323817062,0,0,0,0,0,0,0,68.4820990099009,7701.73075104512,19.8647920792079,21.306227083094,20.8235217895058,-4.58653465346535,-4.57189444453549,-3.70221383659509,2.89713124151049,2.29848059966797,2.32956686226362
+41817,2874.35906653465,457.630131287129,225,69.7151485148515,71.806602970297,21.1031386138614,-4.48930693069307,1512.96534653465,3856.50495049505,3603.12475247525,20,40,11,32,5306762.98408881,397408.026878002,0,0,0,0,0,0,0,69.7151485148514,7720.93182304732,21.1031386138614,22.6344308905985,21.9477785246301,-4.48930693069307,-4.47466672176322,-3.64834713785355,3.75589090247667,2.97978988667117,2.77274391373817
+41818,2874.35255980198,457.617808613861,225,70.9104752475247,73.0377895049505,19.4404752475248,-4.02980198019802,1596.9603960396,3415.95346534654,3186.15742574257,20,40,11,32,5306751.20431151,397392.464869902,0,0,0,0,0,0,0,70.9104752475246,7740.47161251376,19.4404752475248,20.851120846141,20.6018192545503,-4.02980198019802,-4.01516177126817,-3.21343615201155,2.18591807811325,1.73422944153101,1.93162288051915
+41819,2874.34594940594,457.605321683168,225,71.7994851485149,73.9534697029703,19.0802376237624,-4.18910891089109,1827.93069306931,3602.62376237624,3353.53366336634,20,40,11,32,5306739.2361941,397376.694802275,0,0,0,0,0,0,0,71.7994851485148,7760.29169942245,19.0802376237624,20.464743551823,20.3460306686875,-4.18910891089109,-4.17446870196124,-3.32872719073155,2.2054836829052,1.74975209455781,1.73560160849167
+41820,2874.33924425743,457.592653267327,225,72.9734851485149,75.1626897029703,20.1089900990099,-4.36405940594059,1858.30198019802,3752.82178217822,3512.37425742574,20,40,11,32,5306727.09662608,397360.695508981,0,0,0,0,0,0,0,72.9734851485148,7780.39500748076,20.1089900990099,21.5681446728879,21.2886240443796,-4.36405940594059,-4.34941919701074,-3.48484968654708,2.32864078968153,1.8474605506266,1.86498271648136
+41821,2874.33242990099,457.579784356436,225,74.0819603960396,76.3044192079208,21.093801980198,-3.69326732673267,1886.0495049505,3682.80594059406,3475.74356435643,20,40,11,32,5306714.75925412,397344.442834066,0,0,0,0,0,0,0,74.0819603960395,7800.82104466447,21.093801980198,22.6244167693215,22.1904245770355,-3.69326732673267,-3.67862711780282,-2.96447169673391,2.80343162134422,2.22414266286254,2.14725564746328
+41822,2874.32550742574,457.566720693069,225,75.1796435643565,77.4350328712871,20.4835649064356,-2.99089108910891,1916.20792079208,3632.40891089109,3420.60693069307,20,40,11,32,5306702.22597044,397327.943962463,0,0,0,0,0,0,0,75.1796435643564,7821.55816509902,20.4835649064356,21.9698994898926,21.7356598842458,-2.99089108910891,-2.97625088017906,-2.36525964119799,2.99640964797551,2.37724454655317,2.34442321403963
+41823,2874.31847722772,457.553475544554,225,76.2514653465347,78.5390093069307,19.9083173815842,-3.58277227722772,1942.5396039604,3596.2405940594,3376.80396039604,20,40,11,32,5306689.49721658,397311.215428342,0,0,0,0,0,0,0,76.2514653465346,7842.59298446094,19.9083173815842,21.3529106815223,21.3062382211185,-3.58277227722772,-3.56813206829787,-2.84413756614305,3.42094882201987,2.71405878588023,2.85899316366506
+41824,2874.3113690099,457.540034356436,225,77.2385544554456,79.5557110891089,24.0901485148515,-4.3419801980198,1966.33168316832,3500.10495049505,3371.26237623762,20,40,11,32,5306676.62833744,397294.24008044,0,0,0,0,0,0,0,77.2385544554455,7863.91051267876,24.0901485148515,25.8381851003673,24.9195045780502,-4.3419801980198,-4.32733998908995,-3.55071500665887,4.85152874917079,3.84902987787551,3.65702759465096
+41825,2874.30418049505,457.526411683168,225,78.1764653465346,80.5217593069307,22.7518811881188,-2.74306930693069,1869.89108910891,3493.40198019802,3283.15544554456,20,40,11,32,5306663.61479415,397277.035968321,0,0,0,0,0,0,0,78.1764653465345,7885.49959768977,22.7518811881188,24.4028100182845,23.8374443319999,-2.74306930693069,-2.72842909800084,-2.2028736934957,3.32778735667042,2.64014780191297,2.80324740824476
+41826,2874.29690118812,457.512622772277,225,79.1459306930693,81.5203086138613,24.9602178217822,-2.87772277227723,1721.33168316832,3484.30198019802,3277.27821782178,20,40,11,32,5306650.4368101,397259.621733786,0,0,0,0,0,0,0,79.1459306930692,7907.35327249724,24.9602178217822,26.7713886374382,25.7720957416841,-2.87772277227723,-2.86308256334737,-2.34969544413278,5.1474727817304,4.08382131834581,3.98009262702342
+41827,2874.2895329703,457.498665742574,225,80.085801980198,82.4883760396039,24.7910792079208,-3.30485148514851,1742.75247524752,3449.3,3270.00396039604,20,40,11,32,5306637.09791346,397241.995092941,0,0,0,0,0,0,0,80.0858019801979,7929.4722619912,24.7910792079208,26.5899769367227,25.6809946536017,-3.30485148514851,-3.29021127621866,-2.69167317702263,4.77322175480398,3.78690390139521,3.8471984803292
+41828,2874.28208316832,457.484541188119,225,81.0022178217822,83.4322843564356,24.9279603960396,-4.06871287128713,1760.58910891089,3407.91485148515,3267.06435643564,20,40,11,32,5306623.61166465,397224.157024517,0,0,0,0,0,0,0,81.002217821782,7951.84676688669,24.9279603960396,26.7367905386891,25.8492239506601,-4.06871287128713,-4.05407266235727,-3.31629125404348,4.70978772890855,3.73657760764972,3.71680327375207
+41829,2874.27456366337,457.470241089109,225,81.9054158415842,84.3625783168317,25.2144455445545,-5.1919801980198,1782.82673267327,3390.20396039604,3248.60396039604,20,40,11,32,5306610.00025163,397206.097929001,0,0,0,0,0,0,0,81.9054158415841,7974.47403385588,25.2144455445545,27.0440637085191,26.1420942884985,-5.1919801980198,-5.17733998908995,-4.23544515637027,4.86789149983719,3.86201150067018,3.79799563986625
+41830,2874.26697148515,457.455774851485,225,82.7788514851485,85.262217029703,24.6411782178218,-4.92970297029703,1800.27722772277,3385.90099009901,3229.92475247525,20,40,11,32,5306596.25796564,397187.829420838,0,0,0,0,0,0,0,82.7788514851484,7997.34611960945,24.6411782178218,26.4291987859978,25.7052074130059,-4.92970297029703,-4.91506276136718,-3.99865329208863,4.10953478792992,3.26035833253891,3.24241095035855
+41831,2874.25930059406,457.441152772277,225,83.629188118812,86.1380637623763,22.3439207920792,-2.7290099009901,1814.0198019802,3040.82871287129,2868.8702970297,20,40,11,32,5306582.37339263,397169.364123031,0,0,0,0,0,0,0,83.6291881188117,8020.46239097909,22.3439207920792,23.9652470775665,23.8024841177948,-2.7290099009901,-2.71436969206025,-2.16994476361054,2.67772610621511,2.12441239049667,2.28810861021569
+41832,2874.25155990099,457.426428613861,225,84.0143564356436,86.5347871287129,23.7892574257426,-2.88,1820.17821782178,1985.59405940594,2007.9396039604,20,40,11,32,5306568.36184676,397150.769289325,0,0,0,0,0,0,0,84.0143564356435,8043.76030660065,23.7892574257426,25.515460661759,25.0531576309385,-2.88,-2.86535979107015,-2.31828320141647,3.18270089617033,2.52504137871893,2.59352643828909
+41833,2874.24381693069,457.411677227723,225,83.8920099009901,86.4087701980198,24.053702970297,-3.27207920792079,1821.06930693069,1619.56435643564,1682.98514851485,20,40,11,32,5306554.34674623,397132.14037716,0,0,0,0,0,0,0,83.89200990099,8067.08902887788,24.053702970297,25.7990949832723,25.2723714509785,-3.27207920792079,-3.25743899899094,-2.63636698254752,3.21334771262928,2.54935546986648,2.45515196129931
+41834,2874.23608475247,457.396944257426,225,83.9094455445545,86.4267289108911,25.071397689802,-3.60712871287129,1820.30693069307,2053.26237623763,2037.66435643564,20,40,11,32,5306540.35128646,397113.534668262,0,0,0,0,0,0,0,83.9094455445544,8090.38947722771,25.071397689802,26.8906359724042,26.1388225872167,-3.60712871287129,-3.59248850394143,-2.93871601780342,4.47788993346161,3.55259816746991,3.58291728905446
+41835,2874.2283260396,457.38221,225,84.0730693069307,86.5952613861386,25.9645643564356,-3.6850495049505,1822.36138613861,2186.24554455446,2081.63267326733,20,40,11,32,5306526.3067629,397094.926389092,0,0,0,0,0,0,0,84.0730693069305,8113.71632345983,25.9645643564356,27.848612866724,26.9080703136413,-3.6850495049505,-3.67040929602064,-2.99540165551423,5.01175366079806,3.97614660827491,3.80969379098879
+41836,2874.22050227723,457.367501089109,225,84.2079999999999,86.7342400000001,25.8639801980198,-2.14732673267327,1827.0297029703,2186.40198019802,2058.14158415842,20,40,11,32,5306512.14124095,397076.347439654,0,0,0,0,0,0,0,84.2079999999999,8137.08977172716,25.8639801980198,27.7407300904218,26.8301717946219,-2.14732673267327,-2.13268652374341,-1.74978907168164,4.86959494402368,3.86336295253372,3.91930609682376
+41837,2874.21262891089,457.35281029703,225,84.3713465346535,86.9024869306931,25.7158613861386,-3.01643564356436,1828.87623762376,2134.61287128713,2025.94257425743,20,40,11,32,5306497.88349146,397057.789327119,0,0,0,0,0,0,0,84.3713465346534,8160.50276534652,25.7158613861386,27.5818634368653,26.7136922916507,-3.01643564356436,-3.0017954346345,-2.4570830659083,4.61441737549532,3.66091417067353,3.70035184633959
+41838,2874.20471574257,457.338122079208,225,84.4611386138614,86.9949727722772,26.2128712871287,-2.05910891089109,1833.71782178218,2037.9504950495,2026.77722772277,20,40,11,32,5306483.55201639,397039.233013433,0,0,0,0,0,0,0,84.4611386138613,8183.95224562706,26.2128712871287,28.114937519434,27.1435317543715,-2.05910891089109,-2.04446870196123,-1.67901435873507,5.02298928972241,3.98506055554029,3.77890269168269
+41839,2874.19678851485,457.323424554456,225,84.5415247524752,87.0777704950495,22.1907524752475,-4.01712871287129,1831.96534653465,1961.94356435644,2043.00396039604,20,40,11,32,5306469.19476399,397020.664550477,0,0,0,0,0,0,0,84.5415247524752,8207.42781812432,22.1907524752475,23.8009645153661,23.7227715013843,-4.01712871287129,-4.00248850394144,-3.19130300096279,2.47502505411046,1.96359660517107,2.21897854935786
+41840,2874.18887782178,457.308682277228,225,84.6066138613861,87.1448122772277,22.1222766778218,-3.62366336633663,1836.09405940594,1889.56435643564,2044.47920792079,20,40,11,32,5306454.86919332,397002.040800475,0,0,0,0,0,0,0,84.606613861386,8230.92595478548,22.1222766778218,23.7275199565793,23.6686005191501,-3.62366336633663,-3.60902315740678,-2.85639131588969,3.05556061875206,2.42417281712421,2.40855844552826
+41841,2874.18100049505,457.293880990099,225,84.6880792079208,87.2287215841584,21.8991743678218,-2.42851485148515,1834.91089108911,1894.11089108911,1983.78217821782,20,40,11,32,5306440.60680005,396983.344561622,0,0,0,0,0,0,0,84.6880792079207,8254.44083374588,21.8991743678218,23.4882288298125,23.4859919182745,-2.42851485148515,-2.41387464255529,-1.89369680108228,3.07798060549481,2.4419600349881,2.43901438211161
+41842,2874.17312841584,457.279057227723,225,84.7386930693069,87.2808538613862,23.016099009901,-4.1260396039604,1836.89108910891,1896.65742574257,1969.53465346535,20,40,11,32,5306426.35468646,396964.620409677,0,0,0,0,0,0,0,84.7386930693068,8277.96969983499,23.016099009901,24.6862000929374,24.4359012614611,-4.1260396039604,-4.11139939503054,-3.28185128177755,3.32179196124204,2.63539126900827,2.70091584659468
+41843,2874.16526227723,457.264218613861,225,84.7873762376237,87.3309975247524,23.0914653465346,-3.36960396039604,1836.75247524752,1886.04257425743,1953.00594059406,20,40,11,32,5306412.11396704,396945.877863284,0,0,0,0,0,0,0,84.7873762376236,8301.51224620463,23.0914653465346,24.7670351843058,24.5052328337451,-3.36960396039604,-3.35496375146619,-2.67895484400492,3.39872276684255,2.69642542640371,2.69189761296303
+41844,2874.15739445545,457.249367128713,225,84.8262376237624,87.3710247524752,23.9968514851485,-1.75990099009901,1838.19801980198,1875.11287128713,1947.76633663366,20,40,11,32,5306397.87047605,396927.119136583,0,0,0,0,0,0,0,84.8262376237623,8325.06991278879,23.9968514851485,25.7381182235984,25.277628430329,-1.75990099009901,-1.74526078116915,-1.39860337857539,3.0609773526729,2.42847026062702,2.31184505936339
+41845,2874.14953217822,457.23449059406,225,84.9108316831683,87.4581566336633,21.8740594059406,-2.98643564356436,1839.64851485149,1810.3801980198,1916.92871287129,20,40,11,32,5306383.63787293,396908.329299892,0,0,0,0,0,0,0,84.9108316831683,8348.64452678769,21.8740594059406,23.4612914685308,23.4767671510645,-2.98643564356436,-2.9717954346345,-2.34810447802353,2.44378016271435,1.93880802269897,1.94936798162119
+41846,2874.1416739604,457.219596237624,225,84.969504950495,87.5185900990099,24.2890396039604,-2.56386138613861,1840.96534653465,1775.21287128713,1873.14752475247,20,40,11,32,5306369.41324609,396889.517306536,0,0,0,0,0,0,0,84.9695049504949,8372.2359829483,24.2890396039604,26.0515081843675,25.5332829420685,-2.56386138613861,-2.54922117720876,-2.0745010426489,3.75192491764196,2.97664341575174,3.0668720220921
+41847,2874.1338229703,457.204674950495,225,85.0134257425742,87.5638285148515,26.270801980198,-3.43663366336634,1840.12871287129,1739.60891089109,1828.76138613861,20,40,11,32,5306355.20266732,396870.671915523,0,0,0,0,0,0,0,85.0134257425741,8395.84753666117,26.270801980198,28.1770717968377,27.221881692009,-3.43663366336634,-3.42199345443648,-2.80048455007384,5.03695191841441,3.99613800716178,3.88131327200528
+41848,2874.12596841584,457.18974990099,225,85.0273663366336,87.5781873267328,25.8489108910891,-3.17207920792079,1842.46534653465,1705.54851485148,1787.78811881188,20,40,11,32,5306340.98563043,396851.821627183,0,0,0,0,0,0,0,85.0273663366335,8419.46451537404,25.8489108910891,27.7245673199196,26.8639619223555,-3.17207920792079,-3.15743899899094,-2.57853014559607,4.60883469403082,3.65648507030817,3.51811934574188
+41849,2874.11811920792,457.174814752475,225,85.0397524752476,87.590945049505,23.0499306930693,-2.41178217821782,1841.42079207921,1691.82475247525,1766.13069306931,20,40,11,32,5306326.77878261,396832.95884379,0,0,0,0,0,0,0,85.0397524752475,8443.08454812981,23.0499306930693,24.722486680852,24.4830064918045,-2.41178217821782,-2.39714196928797,-1.92685539838064,3.08123021561844,2.44453815976154,2.69960267000242
+41850,2874.11026861386,457.15987990099,225,85.0327920792079,87.5837758415842,24.5826732673267,-2.3149504950495,1844.03465346535,1690.83861386139,1752.11683168317,20,40,11,32,5306312.56942119,396814.096291401,1.7029702970297,1.7029702970297,4518246.69322776,337879.082899836,8.53598095299962,0,0,85.0327920792078,8466.70801672168,24.5826732673267,26.3664485817287,25.7880531463732,-2.3149504950495,-2.30031028611965,-1.85892686071671,3.63273588115678,2.88208308512914,2.83169993829473
+41851,2874.10242534654,457.144934257426,225,85.0157326732673,87.5662046534653,25.7114257425743,-3.85653465346535,1841.74752475248,1641.5702970297,1746.86336633663,20,40,11,32,5306298.37393247,396795.220446279,2,2,5306299.188306,396794.556950381,31.8548932677729,0,0,85.0157326732672,8490.32952678768,25.7114257425743,27.5771059328016,26.7463933455114,-3.85653465346535,-3.84189444453549,-3.13118652481077,4.50861074110701,3.57697096058585,3.5185826889608
+41852,2874.09460287129,457.129958712871,225,84.9940198019802,87.5438403960396,25.7745247524752,-4.0870297029703,1841.44554455446,1641.66732673267,1757.53069306931,20,40,11,32,5306284.21768485,396776.307952918,2,2,5306284.27934243,396776.257718535,55.4586870485325,0,0,84.9940198019801,8513.94220365786,25.7745247524752,27.6447835519938,26.7976994007781,-4.0870297029703,-4.07238949404044,-3.32083432609122,4.59492328035165,3.64544825085126,3.71840006289114
+41853,2874.08681554455,457.11497990099,225,84.9716732673268,87.5208234653466,25.7008613861386,-3.36752475247525,1839.80198019802,1699.15841584158,1777.72376237624,20,40,11,32,5306270.12667817,396757.39246178,2,2,5306269.39493954,396757.988632413,79.023596494247,0,0,84.9716732673266,8537.54564196918,25.7008613861386,27.5657750023641,26.7347243550211,-3.36752475247525,-3.35288454354539,-2.73332460592525,4.54255104926396,3.60389799058289,3.53723825652299
+41854,2874.07903742574,457.099989108911,225,84.9798514851485,87.5292470297029,25.4795940594059,-4.67207920792079,2113.93069306931,1719.39801980198,1772.62673267327,20,40,11,32,5306256.05305575,396738.462260863,2,2,5306254.51026915,396739.71921796,102.588929447193,0,0,84.9798514851484,8561.1495290979,25.4795940594059,27.3284520094711,26.5447047180918,-4.67207920792079,-4.65743899899094,-3.7927796331706,4.36029913567588,3.45930582242963,3.50323299459729
+41855,2874.07125039604,457.085006237624,225,84.9870693069307,87.5366813861386,24.3258910891089,-3.65504950495049,1841.02475247525,1720.91188118812,1751.67227722772,20,40,11,32,5306241.96281175,396719.541538033,2,2,5306239.62360865,396721.44736086,126.157413119432,0,0,84.9870693069306,8584.75563556104,24.3258910891089,26.0910336980397,25.5658000555324,-3.65504950495049,-3.64040929602064,-2.94698154884274,3.35554689649855,2.66217123075749,2.80586514000762
+41856,2874.06344891089,457.070032772277,225,85.0212772277227,87.5719155445545,25.4640891089109,-3.1380198019802,1843.17326732673,1728.20891089109,1737.15841584158,20,40,11,32,5306227.84564251,396700.631959236,2,2,5306224.73166308,396703.169016874,149.734264089387,0,0,85.0212772277226,8608.36583932891,25.4640891089109,27.3118219841055,26.5368122980025,-3.1380198019802,-3.12337959305034,-2.53435138159556,4.26580265743261,3.38433568684617,3.06093820984596
+41857,2874.05562960396,457.055081188119,225,84.9669108910891,87.5159182178218,22.0918118811881,-2.49069306930693,1842.18316831683,1695.26534653465,1739.08613861386,20,40,11,32,5306213.69503409,396681.748951835,2,2,5306209.83938817,396684.890268644,173.311636484131,0,0,84.966910891089,8631.97597904288,22.0918118811881,23.6948445642304,23.6649659092658,-2.49069306930693,-2.47605286037708,-1.96555441393492,2.28960749442211,1.81649292630589,2.07374123933945
+41858,2874.04780564356,457.04014009901,225,84.9577425742575,87.5064748514852,25.7148217821782,-4.37415841584158,1840.34158415842,1671.47524752475,1734.70198019802,20,40,11,32,5306199.53563247,396662.878769935,2,2,5306194.94988555,396666.614923139,196.884619777094,0,0,84.9577425742574,8655.5801773377,25.7148217821782,27.5807483968504,26.7437449237381,-4.37415841584158,-4.35951820691173,-3.54726871575815,4.8547741730975,3.85160468146961,3.70533215105972
+41859,2874.03998465346,457.025204950495,225,84.9257425742574,87.4735148514851,26.9920693069307,-4.59574257425743,1839.54455445545,1709.43861386139,1785.98415841584,20,40,11,32,5306185.38166099,396644.015993447,2,2,5306180.06617568,396648.346687625,220.448432041616,0,0,84.9257425742573,8679.17233275575,26.9920693069307,28.9506759397709,27.8285431019348,-4.59574257425743,-4.58110236532757,-3.7667638209242,5.84479855160153,4.6370547137586,4.64937606134797
+41860,2874.03216950495,457.010261782178,225,84.9266831683168,87.4744836633663,25.9898811881188,-3.44831683168317,1840.5396039604,1715.09504950495,1784.62178217822,20,40,11,32,5306171.23874971,396625.143328559,1.79207920792079,2,5306165.18200387,396630.077848234,191.811162101343,0,0,84.9266831683167,8702.76316094606,25.9898811881188,27.8757667459448,26.9770410326848,-3.44831683168317,-3.43367662275332,-2.80967004811283,4.8127985887219,3.81830274990205,3.87836814745422
+41861,2874.02436237624,456.995312574258,225,84.9335841584158,87.4815916831683,26.0703366336634,-4.4880198019802,1840.46534653465,1741.24356435644,1793.21188118812,20,40,11,32,5306157.11088936,396606.263314151,1,2,5306150.30064276,396611.811307348,16.5080165039416,0,0,84.9335841584157,8726.35309100657,26.0703366336634,27.962060223672,27.0462346483356,-4.4880198019802,-4.47337959305035,-3.65648100643863,4.8766719907818,3.8689776290259,3.82873317813542
+41862,2874.01654772277,456.980368118812,225,84.9599108910891,87.5087082178218,25.5742673267327,-3.2780198019802,1842.66831683168,1758.32079207921,1786.58316831683,20,40,11,32,5306142.9690452,396587.38887706,1,2,5306135.41688803,396593.541270514,40.0732536277875,0,0,84.959910891089,8749.94733190316,25.5742673267327,27.4299949868312,26.6269744114666,-3.2780198019802,-3.26337959305034,-2.65819718784525,4.35207731480484,3.45278292298507,3.50123287510213
+41863,2874.00872435644,456.965424851485,225,84.954207920792,87.5028341584158,24.5582178217822,-4.47742574257426,1840.02475247525,1733.99504950495,1756.82475247525,20,40,11,32,5306128.81109597,396568.515537921,1,2,5306120.52724637,396575.264007382,63.6478114466586,0,0,84.954207920792,8773.54925277775,24.5582178217822,26.3402185928059,25.7597851825215,-4.47742574257426,-4.46278553364441,-3.60680819624123,3.55693429583006,2.82194481082483,2.86128919482571
+41864,2874.00089524752,456.950486633664,225,84.9816435643564,87.5310928712871,25.3623168316832,-3.59207920792079,1841.28217821782,1733.07128712871,1755.49504950495,20,40,11,32,5306114.64245742,396549.648205059,1,2,5306105.6362817,396556.985120233,87.2244639704478,0,0,84.9816435643563,8797.15306314628,25.3623168316832,27.2026648763577,26.446925677202,-3.59207920792079,-3.57743899899094,-2.91129992165948,4.19963379251452,3.33183966935923,3.26042846303328
+41865,2873.99305168317,456.935561980198,225,84.9746435643564,87.5238828712871,25.764,-3.86851485148515,1841.5297029703,1715.05841584159,1742.25742574257,20,40,11,32,5306100.44680008,396530.79719534,1,2,5306090.74253184,396538.702814227,110.80552623802,0,0,84.9746435643563,8820.75840041251,25.764,27.6334950992712,26.7887733227323,-3.86851485148515,-3.85387464255529,-3.14534917595941,4.5306597062798,3.59446382316877,3.60029082328412
+41866,2873.9851990099,456.920646930693,225,84.9801188118812,87.5295223762377,25.2178514851485,-4.96920792079208,1842.07425742574,1662.44257425743,1727.50594059406,20,40,11,32,5306086.23411589,396511.957753069,1,2,5306075.847654,396520.419123598,134.388374433929,0,0,84.980118811881,8844.36569667214,25.2178514851485,27.0477167919966,26.3211048076134,-4.96920792079208,-4.95456771186223,-4.02712966379076,4.1621573250406,3.30210717667865,3.316963397344
+41867,2873.97735564356,456.905728316832,225,84.9626138613862,87.5114922772277,25.4488316831683,-4.81019801980198,1842.01485148515,1688.11287128713,1765.70792079208,20,40,11,32,5306072.03881144,396493.114087206,1,2,5306060.95764102,396502.14140467,157.963520152158,0,0,84.962613861386,8867.96578239821,25.4488316831683,27.2954574444577,26.5169486229225,-4.81019801980198,-4.79555781087213,-3.90551221387916,4.35807714605433,3.45754297511203,3.46129368882322
+41868,2873.96953346535,456.890784752475,225,84.9617623762376,87.5106152475247,25.7362673267327,-4.71564356435644,1842.59900990099,1678.75643564356,1763.18217821782,20,40,11,32,5306057.88337276,396474.239953404,1,2,5306046.06861173,396483.864893234,181.537108409852,0,0,84.9617623762375,8891.56887348732,25.7362673267327,27.6037500794442,26.7619613132962,-4.71564356435644,-4.70100335542658,-3.8347886145594,4.60674401462295,3.65482639983088,3.62939589256911
+41869,2873.96172287129,456.875830990099,225,84.9687326732673,87.5177946534653,25.6461188118812,-4.42079207920792,1843.68811881188,1698.90792079208,1762.88910891089,20,40,11,32,5306043.74968055,396455.353408827,1,2,5306031.18218021,396465.591570593,205.106583666333,0,0,84.9687326732672,8915.16794551702,25.6461188118812,27.5070601810063,26.6870214536896,-4.42079207920792,-4.40615187027807,-3.59215278948318,4.46936791747786,3.54583710392951,3.58224075022832
+41870,2873.95393237624,456.860854059406,225,84.9678910891089,87.5169278217822,25.8485445544555,-4.98445544554455,1841.17326732673,1711.50099009901,1770.67128712871,20,40,11,32,5306029.65379734,396436.438580323,1,2,5306016.29698136,396447.31976107,228.674107258154,0,0,84.9678910891088,8938.76878182066,25.8485445544555,27.7241744010572,26.8575379382483,-4.98445544554455,-4.9698152366147,-4.05677193888281,4.729598202149,3.75229453057023,3.66653391049875
+41871,2873.94614782178,456.845866435644,225,84.972900990099,87.522088019802,24.8406138613861,-4.04940594059406,1840.31683168317,1690.71881188119,1728.68415841584,20,40,11,32,5306015.56921819,396417.51053697,0.435643564356436,0.871287128712871,2311527.21415209,172704.03024646,106.963679729766,0,0,84.9729009900989,8962.37329007148,24.8406138613861,26.6431059385772,26.0020652202198,-4.04940594059406,-4.03476573166421,-3.26977611751484,3.72426938056253,2.95470249897873,3.04918804966747
+41872,2873.93836128713,456.830879702971,225,84.9773267326733,87.5266465346535,25.5390099009901,-4.13792079207921,1840.53465346535,1689.3297029703,1732.94752475248,20,40,11,32,5306001.48101215,396398.583445142,0,0,0,0,0,0,0,84.9773267326731,8985.9780923542,25.5390099009901,27.3921792011818,26.5966363267477,-4.13792079207921,-4.12328058314935,-3.35795877827166,4.35185533195007,3.45260680970521,3.46002009423911
+41873,2873.93056831683,456.81590049505,225,84.9808712871287,87.5302974257426,25.4417920792079,-4.65504950495049,1840.29207920792,1703.55841584158,1742.78811881188,20,40,11,32,5305987.38077779,396379.665419829,0,0,0,0,0,0,0,84.9808712871286,9009.58263883385,25.4417920792079,27.2879070306423,26.5127209448968,-4.65504950495049,-4.64040929602064,-3.77626293504056,4.34376965101141,3.44619191882753,3.4351190908734
+41874,2873.92276673268,456.800930891089,225,84.9652673267326,87.5142253465347,24.2851881188119,-4.39356435643564,1840.51485148515,1690.58613861386,1701.48514851485,20,40,11,32,5305973.2644337,396360.758978505,0,0,0,0,0,0,0,84.9652673267325,9033.18836331129,24.2851881188119,26.0473772265978,25.5290295454378,-4.39356435643564,-4.37892414750579,-3.53645696640959,3.32128571649116,2.63498963247834,2.62211610734413
+41875,2873.91495445545,456.785979207921,225,84.9398811881188,87.4880776237624,24.911396039604,-4.88366336633663,1839.41584158416,1696.9702970297,1702.00594059406,20,40,11,32,5305959.12794226,396341.874411841,0,0,0,0,0,0,0,84.9398811881187,9056.78788734869,24.911396039604,26.7190242344512,26.0593174371749,-4.88366336633663,-4.86902315740678,-3.9496654066945,3.94145661624414,3.12701110569875,3.07232894191233
+41876,2873.90712742574,456.771052970297,225,84.9456435643564,87.4940128712871,24.2941287128713,-4.1639603960396,1839.09405940594,1731.22079207921,1728.2900990099,20,40,11,32,5305944.96361544,396323.020957988,0,0,0,0,0,0,0,84.9456435643563,9080.38259755221,24.2941287128713,26.0569665707263,25.5357995763978,-4.1639603960396,-4.14932018710975,-3.34970499817449,3.99633196080859,3.17054724692503,3.28398822445106
+41877,2873.8992829703,456.756151188119,225,84.919801980198,87.467396039604,26.402504950495,-3.67742574257426,1840.63366336634,1729.72871287129,1729.60099009901,20,40,11,32,5305930.76652328,396304.197294618,0,0,0,0,0,0,0,84.9198019801979,9103.97209114407,26.402504950495,28.3183314375869,27.3278005051059,-3.67742574257426,-3.66278553364441,-3.00128324383135,5.21217637797951,4.13515484393018,4.00581253002758
+41878,2873.89141831683,456.741271980198,225,84.9324851485149,87.4804597029703,25.9424356435643,-3.61524752475247,1840.27722772277,1737.63465346535,1751.80693069307,20,40,11,32,5305916.5315724,396285.400986023,0,0,0,0,0,0,0,84.9324851485147,9127.5639303905,25.9424356435643,27.8248784435489,26.9379573879232,-3.61524752475247,-3.60060731582262,-2.9425830118891,4.72216927032774,3.74640068101907,3.74784204699885
+41879,2873.88354316832,456.726402277228,225,84.9535544554456,87.5021610891089,25.6600792079208,-4.17742574257426,1841.26732673267,1709.2297029703,1755.58118811881,20,40,11,32,5305902.27702843,396266.616075117,0,0,0,0,0,0,0,84.9535544554454,9151.15689194165,25.6600792079208,27.5220335754925,26.698034114951,-4.17742574257426,-4.1627855336444,-3.39048985730715,4.50429028250775,3.57354326282409,3.53780838529237
+41880,2873.87567504951,456.711522079208,225,84.9356831683168,87.4837536633663,23.7447524752475,-3.37108910891089,1839.86633663366,1677.6099009901,1754.88514851485,20,40,11,32,5305888.03580104,396247.818232006,0,0,0,0,0,0,0,84.9356831683167,9174.75151133109,23.7447524752475,25.467726329691,25.0681808671215,-3.37108910891089,-3.35644889998104,-2.68860825428494,3.34507750909283,2.65386519218469,2.69387247958436
+41881,2873.8678219802,456.69662059406,225,84.9538316831683,87.5024466336634,24.3593069306931,-3.20653465346535,1838.9504950495,1676.51287128713,1777.63069306931,20,40,11,32,5305873.82298751,396228.99428041,0,0,0,0,0,0,0,84.9538316831682,9198.34833220567,24.3593069306931,26.1268742699484,25.5937054336854,-3.20653465346535,-3.19189444453549,-2.56486951529457,4.24881146142726,3.37085547793334,3.34479155786228
+41882,2873.85997920792,456.681706633663,225,84.9706732673268,87.5197934653466,25.8937722772277,-4.76089108910891,1840.64851485149,1634.27524752475,1716.82277227723,20,40,11,32,5305859.62958747,396210.155038841,0,0,0,0,0,0,0,84.9706732673266,9221.94801416386,25.8937722772277,27.7726839514212,26.8962717952209,-4.76089108910891,-4.74625088017906,-3.87621483958517,4.76736438573011,3.78225687367742,3.79438838598177
+41883,2873.85214891089,456.666781980198,225,84.9354158415842,87.4834783168317,25.5356732673267,-3.01782178217822,1839.67326732673,1680.29900990099,1743.17227722772,20,40,11,32,5305845.45959593,396191.302799974,0,0,0,0,0,0,0,84.935415841584,9245.54524251919,25.5356732673267,27.3886004537053,26.5934899149736,-3.01782178217822,-3.00318157324836,-2.44590207017895,4.26606294643686,3.38454219085883,3.45928465108418
+41884,2873.84432049505,456.651855544554,225,84.9439900990099,87.4923098019802,25.1000099009901,-3.76396039603961,1839.76237623762,1697.94059405941,1742.38910891089,20,40,11,32,5305831.29318946,396172.448311011,0,0,0,0,0,0,0,84.9439900990098,9269.14024199663,25.1000099009901,26.9213243514465,26.2217118522923,-3.76396039603961,-3.74932018710975,-3.05375518850617,3.94250394067208,3.12784201554663,3.0816627066199
+41885,2873.83648108911,456.636937326733,225,84.9427623762376,87.4910452475248,24.7912178217822,-3.81475247524752,1839.4900990099,1690.06534653465,1727.60594059406,20,40,11,32,5305817.10630189,396153.603599813,0,0,0,0,0,0,0,84.9427623762375,9292.73773729365,24.7912178217822,26.5901256087247,25.9580185898717,-3.81475247524752,-3.80011226631767,-3.07797113636072,3.74403307889905,2.97038231235871,2.95403336867988
+41886,2873.82863405941,456.622032772277,225,84.9543168316832,87.5029463366336,24.4651881188119,-3.1539603960396,1840.40594059406,1733.40297029703,1745.80891089109,20,40,11,32,5305802.90504665,396134.775561958,0,0,0,0,0,0,0,84.9543168316831,9316.33396787669,24.4651881188119,26.2404384406123,25.6830476022371,-3.1539603960396,-3.13932018710975,-2.5482442078241,4.00268634120467,3.17558858569976,3.10979877270949
+41887,2873.82077188119,456.607141188118,225,84.9587128712871,87.5074742574257,23.9754455445545,-2.11,1841.04455445545,1707.15643564356,1726.32079207921,20,40,11,32,5305788.67550068,396115.963083179,0,0,0,0,0,0,0,84.958712871287,9339.93194364676,23.9754455445545,25.7151590187195,25.2673274628048,-2.11,-2.09535979107014,-1.68780512353651,3.10648594835828,2.4645751573615,2.56393488237764
+41888,2873.81290663366,456.592254653465,225,84.9232178217822,87.4709143564356,24.1851881188119,-4.37623762376238,1839.62871287129,1708.95940594059,1760.00198019802,20,40,11,32,5305774.44021632,396097.156699277,0,0,0,0,0,0,0,84.923217821782,9363.52500321772,24.1851881188119,25.9401209965898,25.4410856185392,-4.37623762376238,-4.36159741483252,-3.51966977523068,3.21753636233885,2.55267859515618,2.71952150557826
+41889,2873.80504188119,456.577374356436,225,84.9033267326733,87.4504265346534,25.9914455445545,-3.81881188118812,1840.14851485149,1720.99702970297,1768.49504950495,20,40,11,32,5305760.20576927,396078.358009175,0,0,0,0,0,0,0,84.9033267326732,9387.11460129252,25.9914455445545,27.8774446156815,26.9770566363733,-3.81881188118812,-3.80417167225827,-3.10854542587848,4.84218880532678,3.84161989954251,3.67405284552023
+41890,2873.79717346535,456.562505148515,225,84.8573663366337,87.4030873267327,22.9054257425743,-2.69267326732673,1834.0495049505,1293.33465346535,1330.1396039604,20,40,11,32,5305745.96434779,396059.572917719,0,0,0,0,0,0,0,84.8573663366335,9410.69749246414,22.9054257425743,24.567496118776,24.3498694544038,-2.69267326732673,-2.67803305839688,-2.14384328118572,3.22718015638861,2.56032963740548,2.52577411375849
+41891,2873.78933712871,456.547693069307,225,84.0911881188119,86.6139237623762,21.7586353135644,-3.30831683168317,1809.78217821782,-627.128712871287,-513.89702970297,20,40,11,32,5305731.78112606,396040.859969549,0,0,0,0,0,0,0,84.0911881188117,9434.18530998338,21.7586353135644,23.337491938527,23.3307493935172,-3.30831683168317,-3.29367662275331,-2.61601981604879,2.72744136251058,2.16385470172696,2.26842982118892
+41892,2873.7816690099,456.533147425743,225,81.3660297029703,83.8070105940594,19.2364636966337,-1.89960396039604,1736.94554455446,-3829.37623762376,-3264.04356435644,20,40,11,32,5305717.9035809,396022.484445097,0,0,0,0,0,0,0,81.3660297029702,9457.22248657854,19.2364636966337,20.6323057478743,21.0282971010453,-1.89960396039604,-1.88496375146618,-1.45066799279091,3.29707152069779,2.61577895314487,2.52836670738257
+41893,2873.77431405941,456.519205643564,225,77.7360297029703,80.0681105940594,20.283301980198,-2.68663366336634,1662.93564356436,-3821.16138613861,-3101.08415841584,20,40,11,32,5305704.59263264,396004.871523582,0,0,0,0,0,0,0,77.7360297029702,9479.30917893277,20.283301980198,21.7551050251063,21.7107039488174,-2.68663366336634,-2.67199345443648,-2.11891641317938,2.87386570339717,2.28002255150359,2.18618577176395
+41894,2873.76731554455,456.50587950495,225,73.9038118811881,76.1209262376238,18.8350891089109,-0.748514851485149,1579.68811881188,-4180.91683168317,-3389.86633663366,20,40,11,32,5305691.92815583,395988.037337163,0,0,0,0,0,0,0,73.903811881188,9500.38110896577,18.8350891089109,20.2018064968726,20.2598465942142,-0.748514851485149,-0.733874642555291,-0.561338690911568,2.25881893494266,1.7920663813012,1.87623057647857
+41895,2873.76071069307,456.493263465346,225,69.6158217821782,71.7042964356436,18.6018910891089,-1.82039603960396,1487.71782178218,-4141.24356435643,-3452.80693069307,20,40,11,32,5305679.97698123,395972.100804531,0,0,0,0,0,0,0,69.6158217821781,9520.30297854773,18.6018910891089,19.9516870923796,19.8146687155678,-1.82039603960396,-1.8057558306741,-1.45512389506447,2.15715575706558,1.71141044183149,1.83400113864085
+41896,2873.75448495049,456.481394752475,225,65.3987425742574,67.3607048514852,20.0537524752475,-1.89653465346535,1395.43069306931,-4110.28910891089,-3479.20396039604,20,40,11,32,5305668.71130567,395957.107826432,0,0,0,0,0,0,0,65.3987425742574,9539.0559152639,20.0537524752475,21.5088988800943,20.8086219364954,-1.89653465346535,-1.88189444453549,-1.5283132420711,3.83489248717576,3.04246692634825,2.92159717748267
+41897,2873.74863009901,456.470301782178,225,61.0717326732673,62.9038846534653,19.091396039604,-2.53752475247525,1316.81188118812,-4397.19603960396,-3731.21386138614,20,40,11,32,5305658.11526143,395943.093537581,0,0,0,0,0,0,0,61.0717326732672,9556.61995937831,19.091396039604,20.4767116479833,19.7424644854415,-2.53752475247525,-2.52288454354539,-2.0662799241574,3.82982707477443,3.03844820880899,2.98056255460668
+41898,2873.74317772277,456.460024158416,225,56.2475742574257,57.9350014851485,17.1740198019802,-2.81861386138614,1383.04455445545,-5107.48712871287,-4293.58613861386,20,40,11,32,5305648.2464565,395930.108338968,0,0,0,0,0,0,0,56.2475742574256,9572.92437510988,17.1740198019802,18.4202061804381,17.8352176675122,-2.81861386138614,-2.80397365245628,-2.28961794092452,3.15356198049775,2.50192360227541,2.5221594878942
+41899,2873.73819207921,456.450656534654,225,50.8035841584158,52.3276916831683,15.7337722772277,-3.13792079207921,1268.23762376238,-5190.62079207921,-4145.98613861386,20,40,11,32,5305639.22178426,395918.272299843,0,0,0,0,0,0,0,50.8035841584158,9587.78505090747,15.7337722772277,16.8754509826045,16.2969062958994,-3.13792079207921,-3.12328058314935,-2.55457284680742,3.05861861557585,2.42659892273952,2.49952709023858
+41900,2873.73372811881,456.442176534653,225,45.8100594059406,47.1843611881188,14.4693762376238,-4.03168316831683,1182.22772277228,-5371.95148514851,-4101.2,20,40,11,32,5305631.14352772,395907.559391941,0,0,0,0,0,0,0,45.8100594059405,9601.1816021451,14.4693762376238,15.5193074581543,14.9346140655672,-4.03168316831683,-4.01704295938698,-3.3011141632352,3.04910078639114,2.41904781652157,2.39973592456171
+41901,2873.72983742574,456.434418316832,225,41.1684653465347,42.4035193069307,13.1694059405941,-1.78,1406.5,-5039.15841584158,-3904.74653465347,20,40,11,32,5305624.11095886,395897.764754948,0,0,0,0,0,0,0,41.1684653465346,9613.24262621001,13.1694059405941,14.1250083263359,13.5644542383766,-1.78,-1.76535979107014,-1.45261598597273,2.86267912048071,2.27114751559164,2.31171535755007
+41902,2873.72656504951,456.42713990099,225,37.6336831683168,38.7626936633663,11.2863465346535,-1.60534653465346,1315.4702970297,-4267.7801980198,-3302.5297029703,20,40,11,32,5305618.21295823,395888.588460416,0,0,0,0,0,0,0,37.6336831683168,9624.16299510441,11.2863465346535,12.1053097987123,11.7587604588215,-1.60534653465346,-1.59070632572361,-1.29785290356078,2.09245567944526,1.66007970780173,1.65615019684436
+41903,2873.72392336634,456.420123663367,225,34.8627425742574,35.9086248514852,8.45662376237624,-5.27277227722772,1227.90594059406,-1956.93762376238,-1395.74257425742,20,40,11,32,5305613.47733901,395879.759828152,0,0,0,0,0,0,0,34.8627425742574,9634.19851993939,8.45662376237624,9.07025583348874,9.19095685984227,-5.27277227722772,-5.25813206829787,-4.10334986554782,1.60891665787685,1.27645709370228,1.31175708442936
+41904,2873.72187732673,456.413106831683,225,33.8743465346535,34.8905769306931,11.0129207920792,-4.67861386138614,1195.68811881188,117.623762376238,248.092079207921,20,40,11,32,5305609.84508229,395870.950348529,0,0,0,0,0,0,0,33.8743465346534,9643.70608789869,11.0129207920792,11.8120436553556,11.3093627817708,-4.67861386138614,-4.66397365245629,-3.85994900591891,2.64339426953732,2.09717473573522,2.06715290487904
+41905,2873.72035188119,456.406004059406,225,32.9930891089109,33.9828817821782,11.5617524752475,-5.5,1159.15346534653,-1494.13663366337,-1203.0603960396,20,40,10.3663366336634,32,5305607.17908903,395862.051199019,0,0,0,0,0,0,0,32.9930891089108,9653.01421306371,11.5617524752475,12.4006998278116,11.7253584754574,-5.5,-5.48535979107015,-4.57891854059844,3.397132824064,2.69516402250915,2.68828137982143
+41906,2873.71938237624,456.399071485148,176.881188118812,30.7566633663366,31.6793632673267,10.6600099009901,-5.47990099009901,1086.50495049505,-3322.32574257426,-2696.36237623762,20,40,10,32,5305605.53907543,395853.382646132,0,0,0,0,0,0,0,30.7566633663366,9661.90032321222,10.6600099009901,11.4335247382857,10.8301707857416,-5.47990099009901,-5.46526078116915,-4.5546582901584,3.04324287705074,2.41440036017557,2.46744678213264
+41907,2873.71884306931,456.392626138614,107.376237623762,28.5932376237624,29.4510347524752,10.7094554455446,-5.5,1362.45544554455,-1377.60495049505,-989.723762376237,20,40,10,32,5305604.68499472,395845.335425993,0,0,0,0,0,0,0,28.5932376237623,9670.10752323973,10.7094554455446,11.4865581652817,10.7483756961418,-5.5,-5.48535979107015,-4.62406111475087,3.66285819225936,2.90598105243363,2.83780847061644
+41908,2873.71863267327,456.386395247525,62.8217821782178,27.7991683168317,28.6331433663366,10.5308316831683,-5.5,1393.97524752475,-225.483168316832,-50.3346534653465,20,40,10.3465346534653,32,5305604.43535898,395837.566354025,0,0,0,0,0,0,0,27.7991683168317,9677.91787323973,10.5308316831683,11.2949730518585,10.5509486012266,-5.5,-5.48535979107015,-4.63221031059725,3.68425592985587,2.92295725428381,2.91946023088376
+41909,2873.71865831683,456.380274356436,45,26.7474455445545,27.5498689108911,9.83456435643564,-5.5,1334.39108910891,-1605.1,-1297.31485148515,20,40,11,32,5305604.62048637,395829.942203848,0,0,0,0,0,0,0,26.7474455445544,9685.51198976887,9.83456435643564,10.5481829664272,9.89835424983435,-5.5,-5.48535979107015,-4.61197298811063,3.23311682777339,2.56503958074841,2.57641301770344
+41910,2873.71897257426,456.37452049505,45,24.7455643564357,25.4879312871287,9.17087128712872,-5.5,1228.82673267327,-3178.76930693069,-2629.42871287129,20,40,10.6831683168317,32,5305605.33198197,395822.784925965,0,0,0,0,0,0,0,24.7455643564356,9692.68500272267,9.17087128712872,9.83633080146398,9.21909231377446,-5.5,-5.48535979107015,-4.61735690038005,3.06743768010556,2.43359565400193,2.46814177339542
+41911,2873.71960693069,456.369476138614,45,21.5138712871287,22.1592874257426,8.61753465346535,-5.5,1271.70792079208,-3596.59603960396,-2826.8198019802,20,40,10.980198019802,32,5305606.62046359,395816.522208249,0,0,0,0,0,0,0,21.5138712871287,9699.12432018692,8.61753465346535,9.24284278894326,8.56333846053181,-5.5,-5.48535979107015,-4.66763462340715,3.34469013806969,2.65355786583067,2.60833820659958
+41912,2873.72026415842,456.365010990099,45,19.831801980198,20.426756039604,7.76903960396039,-5.5,1337.82178217822,-839.062376237624,-509.762376237624,20,40,11,32,5305607.93829132,395810.981797074,0,0,0,0,0,0,0,19.831801980198,9704.81464493941,7.76903960396039,8.33277898703941,7.74514613000832,-5.5,-5.48535979107015,-4.65250043026839,2.89946893540749,2.30033524263105,2.31441376883863
+41913,2873.72103970297,456.360843168317,45,19.0978118811881,19.6707462376238,6.75972277227723,-5.5,1289.10891089109,-450.391089108911,-227.288118811881,20,40,10.8415841584158,32,5305609.46860053,395805.815735139,0,0,0,0,0,0,0,19.0978118811881,9710.20378712862,6.75972277227723,7.25022380453946,6.84438800141359,-5.5,-5.48535979107015,-4.58441199521888,2.03763005621178,1.6165830137061,1.65851367712957
+41914,2873.72201376238,456.356932772277,45,18.581198019802,19.138633960396,6.76049504950495,-5.5,1279.62376237624,2136.89900990099,2383.19504950495,20,40,11,32,5305611.36084187,395800.976998872,0,0,0,0,0,0,0,18.581198019802,9715.41429862476,6.76049504950495,7.25105211997913,6.8154744597602,-5.5,-5.48535979107015,-4.60421519551201,2.17262100002381,1.72368001402047,1.68369450684897
+41915,2873.72313881188,456.352976633663,45,20.2234752475248,20.8301795049505,6.95063366336633,-5.5,1206.63366336634,4603.2405940594,5343.09702970297,20,40,11,32,5305613.53380158,395796.086332655,0,0,0,0,0,0,0,20.2234752475247,9720.76965236514,6.95063366336633,7.45498762899639,7.07124817561112,-5.5,-5.48535979107015,-4.56525530327224,1.94245348283974,1.54107331490334,1.50795815710566
+41916,2873.72452405941,456.34864,45,22.5302178217822,23.2061243564356,7.25525742574258,-5.5,1124.65346534653,4445.67425742574,5198.88712871287,20,40,11,32,5305616.19730015,395790.730377948,0,0,0,0,0,0,0,22.5302178217821,9726.71052970287,7.25525742574258,7.78171559222979,7.46246665880223,-5.5,-5.48535979107015,-4.51792756919955,1.67136411256549,1.32600067703875,1.34605312564567
+41917,2873.72623029703,456.344074455446,45,24.3728712871287,25.1040574257426,7.18043564356435,-5.5,920.019801980198,3810.34851485149,4473.31881188119,20,40,10.9207920792079,32,5305619.46053667,395785.100003395,0,0,0,0,0,0,0,24.3728712871287,9733.23795805821,7.18043564356435,7.7014645694406,7.50429780234102,-5.5,-5.48535979107015,-4.45191073489363,1.20661180725712,0.957282773584268,0.971832097740216
+41918,2873.7282249505,456.339361584159,45,25.7249900990099,26.4967398019802,6.76800990099009,-5.5,911.158415841584,2567.9297029703,2964.30792079208,20,40,10.960396039604,32,5305623.26133796,395779.295753511,0,0,0,0,0,0,0,25.7249900990099,9740.21403149056,6.76800990099009,7.2591122663728,7.23083444799095,-5.5,-5.48535979107015,-4.36326150508963,0.798093334328416,0.633178787137642,0.635480670357931
+41919,2873.73048019802,456.334628613861,45,25.9766336633663,26.7559326732673,6.8440198019802,-5.5,911.995049504951,613.938613861386,702.435643564357,20,40,11,32,5305627.54530677,395773.475190943,0,0,0,0,0,0,0,25.9766336633663,9747.43255838826,6.8440198019802,7.34063762060762,7.30990839644652,-5.5,-5.48535979107015,-4.36449584448578,0.810241936674948,0.64281705495461,0.646465138359511
+41920,2873.73278772277,456.330038613862,45,25.3621584158416,26.1230231683168,6.49342574257426,-5.5,895.707920792079,-219.176237623762,-129.563366336634,20,40,11,32,5305631.9229002,395767.834488148,0,0,0,0,0,0,0,25.3621584158415,9754.56290948837,6.49342574257426,6.96460364985666,6.97645860352983,-5.5,-5.48535979107015,-4.34047568679178,0.802661794002394,0.636803240107032,0.640480945479509
+41921,2873.7349019802,456.325604158416,45,23.4420099009901,24.1452701980198,5.99219801980198,-5.5,1002.71287128713,-1045.94653465347,-1046.29405940594,20,40,11,32,5305635.93900228,395762.381093966,0,0,0,0,0,0,0,23.4420099009901,9761.38343006042,5.99219801980198,6.42700569065597,6.44009736772653,-5.5,-5.48535979107015,-4.3388791483332,0.77931979524379,0.618284530793693,0.620042833516199
+41922,2873.73643168317,456.321177623762,45,21.6773465346535,22.3276669306931,6.3559801980198,-5.5,1026.58415841584,-997.655445544554,-1401.66633663366,20,40,11,32,5305638.87213654,395756.918016045,0,0,0,0,0,0,0,21.6773465346534,9767.61107180961,6.3559801980198,6.81718474045353,6.64855304695845,-5.5,-5.48535979107015,-4.44667105721008,1.08002000341822,0.856849351365889,0.878306157011299
+41923,2873.7372360396,456.316720891089,45,20.0205742574257,20.6211914851485,7.14822772277228,-5.5,1023.91584158416,-1172.30495049505,-1650.73366336634,20,40,11,32,5305640.46236557,395751.393054626,0,0,0,0,0,0,0,20.0205742574257,9773.40854359178,7.14822772277228,7.66691956783505,7.22775306543218,-5.5,-5.48535979107015,-4.58922141275453,2.20576609279647,1.74997614849329,1.78879472747443
+41924,2873.73722326733,456.31245039604,119.851485148515,19.043603960396,19.6149120792079,7.97219801980198,-5.5,1184.05940594059,2188.89801980198,1827.76534653465,20,40,11,32,5305640.53480684,395746.07275445,0,0,0,0,0,0,0,19.043603960396,9778.80185363029,7.97219801980198,8.55067904481515,7.87289094150189,-5.5,-5.48535979107015,-4.69504105263459,3.32495504743341,2.63790074877976,2.656417798306
+41925,2873.73637039604,456.308326930693,221.435643564356,20.2126336633663,20.8190126732673,8.46825742574257,-5.5,1233.06930693069,4249.28118811881,3744.6297029703,20,40,10.7227722772277,32,5305639.04779328,395740.907500256,0,0,0,0,0,0,0,20.2126336633663,9784.22521655658,8.46825742574257,9.0827336622273,8.36185959464762,-5.5,-5.48535979107015,-4.69564318592177,3.53634132956845,2.80560708584926,2.7632353036763
+41926,2873.73465069307,456.304648910891,225,20.809801980198,21.434096039604,8.7269603960396,-5.5,1136.62871287129,2132.49405940594,1889.90198019802,20,40,10.8613861386139,32,5305635.94509016,395736.268138595,0,0,0,0,0,0,0,20.809801980198,9789.95145990092,8.7269603960396,9.36020871508671,8.61614841660864,-5.5,-5.48535979107015,-4.69629533915083,3.64953120307376,2.89540789452619,2.8000451775471
+41927,2873.73215920792,456.302048217822,225,20.7004851485149,21.3214997029703,8.3039801980198,-5.5,916.579207920792,2650.55643564356,2370.04554455446,20,40,11,32,5305631.3885389,395732.945000603,0,0,0,0,0,0,0,20.7004851485148,9795.72121694163,8.3039801980198,8.90653610101013,8.25001132931975,-5.5,-5.48535979107015,-4.66328517596908,3.27236285878912,2.59617598203086,2.62433949428319
+41928,2873.72920267327,456.300804752475,225,21.3679306930693,22.0089686138614,8.22389108910891,-5.35910891089109,936.163366336634,3442.94455445544,3062.96237623762,20,40,11,32,5305625.94001143,395731.297033707,0,0,0,0,0,0,0,21.3679306930693,9801.53993679861,8.22389108910891,8.82063554214528,8.22018712526133,-5.35910891089109,-5.34446870196124,-4.5193803798305,2.96865190051895,2.35522253971232,2.36409943970661
+41929,2873.72599881188,456.301066534653,225,21.9431881188119,22.6014837623762,7.86205940594059,-3.88158415841584,988.60396039604,3755.74257425743,3314.89603960396,20,40,11,32,5305619.99947203,395731.515921464,0,0,0,0,0,0,0,21.9431881188118,9807.55184983492,7.86205940594059,8.43254851980432,7.94618872498863,-3.88158415841584,-3.86694394948599,-3.23271963462149,2.41687053222737,1.91745888161335,1.89007022872742
+41930,2873.72284217822,456.302786237624,225,23.1447128712871,23.8390542574258,7.91873267326732,-2.07247524752475,1001.90099009901,3107.36534653465,2766.55841584158,20,40,11,32,5305614.11360177,395733.552570762,0,0,0,0,0,0,0,23.1447128712871,9813.82649504945,7.91873267326732,8.49333412976135,8.06357347276912,-2.07247524752475,-2.0578350385949,-1.68080613042198,2.23826151825534,1.77575686008998,1.75636184284065
+41931,2873.72003475248,456.305858118812,225,23.9449900990099,24.6633398019802,7.21007920792079,2.94752475247525,795.90099009901,3579.82277227723,3193.75049504951,20,40,10.8712871287129,32,5305608.84415309,395737.28536547,0,0,0,0,0,0,0,23.9449900990099,9820.35573578102,7.21007920792079,7.73325913900933,7.50622206906813,2.94752475247525,2.9621649614051,2.44520430735425,1.54205345015508,1.22341020939892,1.26476433467382
+41932,2873.71768752475,456.309938415841,225,24.8602277227723,25.6060345544554,7.06347524752475,4.62128712871287,833.752475247525,3650.67722772277,3224.57128712871,20,40,10.5940594059406,32,5305604.4044571,395742.289785985,0,0,0,0,0,0,0,24.8602277227722,9827.13909983493,7.06347524752475,7.57601725804606,7.43289680666699,4.62128712871287,4.63592733764272,3.77440751285941,1.38757558083255,1.10085297739352,1.10799906677566
+41933,2873.71592396039,456.314866039604,225,26.0795247524752,26.8619104950495,7.74317821782178,5.13069306930693,877.970297029703,3596.44653465346,3192.22376237624,20,40,10.5049504950495,32,5305601.0268422,395748.369289681,0,0,0,0,0,0,0,26.0795247524752,9834.21284851479,7.74317821782178,8.30504103923931,8.08082285499641,5.13069306930693,5.14533327823678,4.19107191011051,1.45023196868388,1.15056232084959,1.19619544304067
+41934,2873.71483693069,456.320519504951,182.227722772277,27.0243168316832,27.8350463366336,7.86634653465347,5.2280198019802,915.574257425743,3233.45049504951,2863.75346534653,20,40,11,32,5305598.88607472,395755.375643791,0,0,0,0,0,0,0,27.0243168316831,9841.59981166111,7.86634653465347,8.43714673243733,8.23990423092868,5.2280198019802,5.24266001091005,4.24856319111269,1.31040371880758,1.03962757442829,0.991137421715143
+41935,2873.71434425742,456.326608811881,89.5544554455445,27.4169108910891,28.2394182178218,7.68163366336634,5.14683168316832,939.995049504951,2606.78712871287,2330.2702970297,20,40,11,32,5305597.83646077,395762.944831715,0,0,0,0,0,0,0,27.4169108910891,9849.17352109455,7.68163366336634,8.23903067035516,8.105147252574,5.14683168316832,5.16147189209817,4.1630168322918,1.29808291502056,1.02985268813007,0.983472388735798
+41936,2873.71434623763,456.332795643564,45,27.7932079207921,28.6270041584159,7.97139603960396,5.43316831683168,962.564356435644,2462.07722772277,2209.34653465347,20,40,11,32,5305597.70093007,395770.652060313,0,0,0,0,0,0,0,27.793207920792,9856.84194196914,7.97139603960396,8.54981887108934,8.37306734235465,5.43316831683168,5.44780852576154,4.39942275425657,1.32940421961557,1.05470189410888,1.13077049660589
+41937,2873.71458336634,456.338968910891,45,28.0914356435644,28.9341787128713,8.66047524752475,5.5,990.386138613861,2612.79207920792,2329.99108910891,20,40,11,32,5305598.00129031,395778.350257425,0,0,0,0,0,0,0,28.0914356435643,9864.58207918036,8.66047524752475,9.28889925127444,8.97631787854346,5.5,5.51464020892985,4.50568849452654,1.83293872247509,1.45418820991784,1.43121338604049
+41938,2873.71486455446,456.345275841584,45,28.7638217821782,29.6267364356435,8.35576237623763,5.44980198019802,876.70297029703,1842.76336633663,1706.65247524752,20,40,11,32,5305598.38026717,395786.216436486,0,0,0,0,0,0,0,28.7638217821782,9872.50629730467,8.35576237623763,8.96207571318261,8.75562124100109,5.44980198019802,5.46444218912787,4.42044128561962,1.51301771245674,1.20037429068028,1.21090062080556
+41939,2873.71502594059,456.351693366337,45,28.948801980198,29.8172660396039,8.90289108910891,5.47910891089109,732.688118811881,678.775247524753,701.189108910891,20,40,11,32,5305598.53485283,395794.216378288,0,0,0,0,0,0,0,28.948801980198,9880.52887797026,8.90289108910891,9.54890534389987,9.23166929117159,5.47910891089109,5.49374911982094,4.49098262327967,1.77858181279772,1.41106337644077,1.33886660422342
+41940,2873.71499841584,456.358060792079,69.950495049505,28.5082673267327,29.3635153465347,8.35131683168317,5.5,720.70297029703,180.00198019802,221.735643564357,20,40,11,32,5305598.34064875,395802.147591274,0,0,0,0,0,0,0,28.5082673267326,9888.52264009897,8.35131683168317,8.95730758969018,8.73714708830793,5.5,5.51464020892985,4.47188724890637,1.34588417307503,1.06777650141947,1.10345926311308
+41941,2873.71477237624,456.364226633663,100.247524752475,26.859198019802,27.6649739603961,8.31569306930693,5.5,669.064356435644,-349.331683168317,-151.389108910891,20,40,11,32,5305597.78327171,395809.821045119,0,0,0,0,0,0,0,26.8591980198019,9896.22831600655,8.31569306930693,8.9190988851784,8.61243831134092,5.5,5.51464020892985,4.51194923803356,1.70064837266944,1.34923376457036,1.32790432789165
+41942,2873.71438158416,456.37003019802,130.544554455446,25.8736237623763,26.6498324752475,7.90032673267327,5.5,743,-633.984158415841,-399.630693069307,20,40,11,32,5305596.92887395,395817.037688993,0,0,0,0,0,0,0,25.8736237623762,9903.52536518146,7.90032673267327,8.47359261178264,8.20262817532069,5.5,5.51464020892985,4.5027489424106,1.50852972498542,1.1968136814864,1.28561618009953
+41943,2873.71386336634,456.375651881188,143.019801980198,24.8443465346535,25.5896769306931,8.29417821782178,5.5,929.851485148515,-144.630693069307,-17.249504950495,20,40,11,32,5305595.8425391,395824.023497917,0,0,0,0,0,0,0,24.8443465346534,9910.58988666112,8.29417821782178,8.8960228665836,8.47879460594816,5.5,5.51464020892985,4.56814786541372,2.14042766932352,1.6981389736309,1.73196018106273
+41944,2873.71330306931,456.381046831683,143.019801980198,24.3160396039604,25.0455207920792,9.01768316831683,5.5,1328.08910891089,2273.41881188119,2458.74554455446,20,40,11,32,5305594.68336582,395830.725453011,0,0,0,0,0,0,0,24.3160396039604,9917.37301908687,9.01768316831683,9.67202700040613,9.06412064966891,5.5,5.51464020892985,4.64110596037514,3.02290135977172,2.39826212585477,2.2934932458521
+41945,2873.71280148515,456.386578019802,123.415841584158,25.9944257425743,26.7742585148515,8.44939603960396,5.5,1406.68811881188,5567.8198019802,5546.2198019802,20,40,11,32,5305593.62989362,395837.59908973,0,0,0,0,0,0,0,25.9944257425742,9924.31087109457,8.44939603960396,9.06250365052776,8.6766919887575,5.5,5.51464020892985,4.54639249320092,2.03527003539772,1.61471065736331,1.62764147595005
+41946,2873.71251376238,456.392687920792,66.3861386138614,28.8575841584158,29.7233116831683,7.71347524752475,5.5,1310.26237623762,6471.81386138614,5379.74158415842,20,40,11,32,5305592.95956333,395845.20080229,0,0,0,0,0,0,0,28.8575841584158,9931.93530811327,7.71347524752475,8.27318275309831,8.21450152748633,5.5,5.51464020892985,4.3971114804799,1.12081910681652,0.889217904885725,0.894005625176011
+41947,2873.71267207921,456.399424851485,45,31.4875940594059,32.4322218811881,8.26875247524752,5.5,1116.31188118812,5840.46732673267,4942.23564356436,20,40,11,32,5305593.1013651,395853.598540459,0,0,0,0,0,0,0,31.4875940594059,9940.31713814628,8.26875247524752,8.86875217364691,8.83748199092742,5.5,5.51464020892985,4.38349959548693,1.03926381987321,0.824514848926893,0.833715669050692
+41948,2873.71346069307,456.406572673267,45,33.3497623762376,34.3502552475248,7.84415841584158,5.5,1592.69306930693,4997.99603960396,4297.34653465346,20,40,11,32,5305594.40146858,395862.52920735,0,0,0,0,0,0,0,33.3497623762376,9949.35906839931,7.84415841584158,8.41334859269,8.5828971887666,5.5,5.51464020892985,4.29081337971807,1.35425967167592,1.0744213232939,1.08195690894432
+41949,2873.71493732673,456.413886435643,45,35.7705346534653,36.8436506930693,7.60585148514852,5.5,1785.36138613861,6926.44059405941,5871.24257425743,20,40,10.8019801980198,32,5305596.9723042,395871.689582637,0,0,0,0,0,0,0,35.7705346534653,9958.92034293176,7.60585148514852,8.15774956298075,8.51879531985271,5.5,5.51464020892985,4.2042057725908,1.99597535272469,1.58353565759113,1.53369338940205
+41950,2873.7170760396,456.421447821782,45,38.3995247524753,39.5515104950495,8.43049504950495,5.5,1919.35643564356,6102.31782178218,5141.87722772277,20,40,10.9009900990099,32,5305600.76398631,395881.180548767,0,0,0,0,0,0,0,38.3995247524752,9969.23716622659,8.43049504950495,9.04223116111338,9.37087561334833,5.5,5.51464020892985,4.23266085360479,1.92278063824012,1.52546558163789,1.55149518622986
+41951,2873.71980514851,456.429318118812,45,40.6061584158416,41.8243431683168,8.27466336633663,5.5,1608.08910891089,5784.39504950495,4861.61188118812,20,40,10.8613861386139,32,5305605.64235745,395891.076051319,0,0,0,0,0,0,0,40.6061584158415,9980.21366248621,8.27466336633663,8.87509197258897,9.36468831809141,5.5,5.51464020892985,4.16516086657217,2.60990061199846,2.0706020624086,2.04444722885957
+41952,2873.72296326733,456.437284455446,45,43.0319207920792,44.3228784158416,9.32443564356436,5.5,1527.58910891089,5931.94455445545,4966.72673267326,20,40,10.1485148514851,32,5305611.31326044,395901.105510752,0,0,0,0,0,0,0,43.0319207920791,9991.82753091306,9.32443564356436,10.001038140813,10.3966355271789,5.5,5.51464020892985,4.22087765137785,2.2423794404884,1.77902387272235,1.84866402987591
+41953,2873.7265719802,456.445359009901,45,45.4696732673267,46.8337634653465,9.31588118811882,5.5,1612.34158415842,5771.87821782178,4817.30396039604,20,40,10.4257425742574,32,5305617.81640369,395911.284814383,0,0,0,0,0,0,0,45.4696732673267,10004.1176433993,9.31588118811882,9.99186295440436,10.5289725611835,5.5,5.51464020892985,4.1710652789243,2.8677045929409,2.27513454620606,2.2399626367736
+41954,2873.73068207921,456.453814158416,45,47.849198019802,49.284673960396,9.54262376237624,5.48207920792079,1696.66831683168,5509.55742574258,4657.92277227723,20,40,11,32,5305625.23975305,395921.954961536,0,0,0,0,0,0,0,47.8491980198019,10017.0985922992,9.54262376237624,10.235058491376,10.8581846916884,5.48207920792079,5.49671941685065,4.13331274012188,3.26179176120478,2.58778925022987,2.53515755412769
+41955,2873.73511712871,456.462655346535,45,50.1179603960396,51.6214992079208,10.7917326732673,3.57811881188119,1776.94554455446,5356.58514851485,4452.11386138614,20,40,11,32,5305633.25636965,395933.116835661,0,0,0,0,0,0,0,50.1179603960395,10030.7134315731,10.7917326732673,11.5748056178923,12.0533683997901,3.57811881188119,3.59275902081104,2.73677534247771,2.57465313082605,2.04263796796195,2.1225543816049
+41956,2873.7398260396,456.471932772277,45,52.2994257425743,53.8684085148515,11.1731188118812,4.44534653465347,1855.56930693069,5135.59504950495,4349.29702970297,20,40,10.9306930693069,32,5305641.7704942,395944.831258043,0,0,0,0,0,0,0,52.2994257425742,10044.9424471397,11.1731188118812,11.9838660119428,12.5018998634481,4.44534653465347,4.45998674358332,3.40082052972966,2.79735356504801,2.21932054977344,2.21114448662366
+41957,2873.74475039604,456.481472871287,45,54.3057821782178,55.9349556435643,11.5890495049505,3.06752475247525,1925.83663366337,4810.56732673267,4322.10594059406,20,40,10.6633663366337,32,5305650.67782184,395956.880059074,0,0,0,0,0,0,0,54.3057821782177,10059.7541892189,11.5890495049505,12.4299775927752,12.9722152494627,3.06752475247525,3.0821649614051,2.36070905491634,2.88433138610829,2.28832565090383,2.27548470144661
+41958,2873.74980742574,456.491292079208,45,56.1218217821782,57.8054764356436,12.1208316831683,2.32168316831683,1789.85148514851,4264.62475247525,4094.63465346535,20,40,10.4554455445545,32,5305659.82466296,395969.280945147,0,0,0,0,0,0,0,56.1218217821781,10075.1002752475,12.1208316831683,13.0003471089863,13.5290311452912,2.32168316831683,2.33632337724669,1.78804180733419,2.81781240303267,2.23555186215782,2.31614678185298
+41959,2873.75500485148,456.501395445545,45,57.9320396039604,59.6700007920792,11.9429713969307,1.47009900990099,1481.42079207921,4395.81188118812,4078.26336633663,20,40,10.4158415841584,32,5305669.22521163,395982.040461128,0,0,0,0,0,0,0,57.9320396039603,10090.9432275852,11.9429713969307,12.8095808712863,13.4816229340874,1.47009900990099,1.48473921883085,1.12309219949091,3.45859455496775,2.74392556775093,2.68323766064327
+41960,2873.76038613861,456.511785247525,45,59.686495049505,61.4770899009901,12.902603960396,0.571881188118812,1527.09405940594,4410.9900990099,4011.97623762376,20,40,11,32,5305678.95993178,395995.162891338,0,0,0,0,0,0,0,59.6864950495049,10107.2775910341,12.902603960396,13.8388465807887,14.39968330289,0.571881188118812,0.586521397048669,0.448788696716147,2.95952860942571,2.34798444594477,2.40297909849524
+41961,2873.7659429703,456.522453168317,45,61.401297029703,63.2433359405941,12.8312678768317,0.184158415841584,1565.56435643564,4372.58910891089,3956.59207920792,20,40,10.7227722772277,32,5305689.01360689,396008.637593702,0,0,0,0,0,0,0,61.4012970297029,10124.0947020077,12.8312678768317,13.7623341869222,14.4360930023625,0.184158415841584,0.198798624771442,0.150393613106494,3.5033940118446,2.77946785904644,2.73240781777172
+41962,2873.77166356435,456.53338990099,45,63.071099009901,64.963231980198,13.6244169417822,-0.552772277227723,1608.79207920792,4264.74455445545,3919.28118811881,20,40,10.9009900990099,32,5305699.36462367,396022.45257711,0,0,0,0,0,0,0,63.0710990099009,10141.3887810506,13.6244169417822,14.6130359723321,15.2066880012217,-0.552772277227723,-0.538132068297866,-0.416097863905012,3.17078682348492,2.51558917837051,2.54156119222953
+41963,2873.7775650495,456.544602376238,45,64.7209900990099,66.6626198019802,14.6748712871287,-0.532673267326733,1650.0495049505,4156.5495049505,3856.09207920792,20,40,11,32,5305710.0445572,396036.617042837,0,0,0,0,0,0,0,64.7209900990098,10159.1433630363,14.6748712871287,15.7397137011065,16.1933813732538,-0.532673267326733,-0.518033058396876,-0.394311732504192,2.66175414721091,2.11174080786905,2.04211364461628
+41964,2873.78364891089,456.556094851485,45,66.3047425742574,68.2938848514851,15.2823267326733,-0.706435643564356,1688.41584158416,4064.17722772277,3767.93762376237,20,40,11,32,5305721.05606552,396051.136339615,0,0,0,0,0,0,0,66.3047425742573,10177.3431655115,15.2823267326733,16.3912475109761,16.8030325397789,-0.706435643564356,-0.691795434634499,-0.544186446633794,2.41318583509047,1.91453557432113,1.9848455853557
+41965,2873.78986465346,456.567860693069,45,67.8167227722772,69.8512244554455,15.4379504950495,0.341683168316832,1728.41089108911,4006.16336633663,3684.34356435644,20,40,10.980198019802,32,5305732.3057659,396066.000514808,0,0,0,0,0,0,0,67.8167227722771,10195.9777434268,15.4379504950495,16.5581636914975,17.0211766707377,0.341683168316832,0.356323377246689,0.277407108331611,2.70177921838404,2.14349527182761,2.09545069946472
+41966,2873.79621574258,456.579868217822,45,69.2958118811881,71.3746862376238,15.6590792079208,0.0957425742574258,1765.13366336634,3874.51089108911,3685.88811881188,20,40,10.960396039604,32,5305743.80079071,396081.170212228,0,0,0,0,0,0,0,69.295811881188,10215.021900495,15.6590792079208,16.7953380123885,17.2945336467755,0.0957425742574258,0.110382783187283,0.0865449642408429,2.82250978814228,2.23927859996965,2.26115385932414
+41967,2873.80268059406,456.592154059406,45,70.7133267326733,72.8347265346535,15.524902640297,-1.00247524752475,1805.30693069307,3774.92079207921,3673.60792079208,20,40,10.970297029703,32,5305755.5003394,396096.690342915,0,0,0,0,0,0,0,70.7133267326732,10234.4723367437,15.524902640297,16.6514252844011,17.2617866518724,-1.00247524752475,-0.987835038594895,-0.763566944176008,3.29626079920038,2.61513575562354,2.59484092795142
+41968,2873.80926118812,456.604697326733,45,72.138702970297,74.302864059406,16.6747167216832,0.498415841584159,1837.27227722772,3744.14455445544,3581.08118811881,20,40,10.980198019802,32,5305767.40855126,396112.534945054,0,0,0,0,0,0,0,72.1387029702969,10254.3116178768,16.6747167216832,17.8846725201974,18.3210751479719,0.498415841584159,0.513056050514016,0.386316608704251,2.64186097928023,2.09595827793065,2.15253536341833
+41969,2873.81597584158,456.617494455445,45,73.4592178217822,75.6629943564356,17.3293366336634,1.70207920792079,1872.9801980198,3708.59504950495,3483.64059405941,20,40,10.8019801980198,32,5305779.55943787,396128.700185515,0,0,0,0,0,0,0,73.4592178217821,10274.5376677668,17.3293366336634,18.5867931586693,18.9540253615154,1.70207920792079,1.71671941685065,1.33652238820206,2.40538391167785,1.90834580654429,1.92744875107346
+41970,2873.82280089109,456.630518910891,45,74.7527722772277,76.9953554455445,17.8026633663366,2.1050495049505,1901.99504950495,3644.45148514852,3416.95148514851,20,40,10.5148514851485,32,5305791.90976408,396145.152217343,0,0,0,0,0,0,0,74.7527722772276,10295.1242027503,17.8026633663366,19.0944655677549,19.4306315731008,2.1050495049505,2.11968971388035,1.66214146568688,2.349837062868,1.86427691779916,1.77701834251607
+41971,2873.82975247525,456.643754752475,45,75.9650396039604,78.2439907920792,19.0072475247525,4.57594059405941,1932.71782178218,3617.39603960396,3333.63564356436,20,40,10.7326732673267,32,5305804.48978384,396161.871717831,0,0,0,0,0,0,0,75.9650396039603,10316.060530363,19.0072475247525,20.3864571233458,20.5219291934919,4.57594059405941,4.59058080298926,3.61669112875978,2.0455094037777,1.62283420704481,1.63042724379157
+41972,2873.83684138614,456.657176336634,45,77.1362178217821,79.4503043564357,18.9438514851485,4.40326732673267,1962.79207920792,3551.32079207921,3284.2702970297,20,40,10.4158415841584,32,5305817.32006477,396178.827099015,0,0,0,0,0,0,0,77.1362178217821,10337.3270034928,18.9438514851485,20.3184609212922,20.5357692532715,4.40326732673267,4.41790753566253,3.47094011563541,2.19048678276288,1.73785408885534,1.77948646745791
+41973,2873.84406079208,456.670758910891,45,78.2400396039604,80.5872407920792,18.6371881188119,4.89217821782178,1813.37128712871,3524.52871287129,3273.01584158416,20,40,10.6732673267327,32,5305830.38850893,396195.987295722,0,0,0,0,0,0,0,78.2400396039603,10358.9068539054,18.6371881188119,19.9895453557438,20.3372594757605,4.89217821782178,4.90681842675164,3.83088526312248,2.59929949876948,2.06219151726568,2.01271326690646
+41974,2873.85139752475,456.684533564356,45,79.3831485148515,81.764642970297,19.3451089108911,4.41653465346535,1727.22772277228,3493.7,3254.94257425743,20,40,10.5940594059406,32,5305843.67002936,396213.390592891,0,0,0,0,0,0,0,79.3831485148513,10380.8028702145,19.3451089108911,20.748834508771,21.005706133091,4.41653465346535,4.4311748623952,3.47498840871044,2.33799055790436,1.85487832327136,1.87113953754332
+41975,2873.85883782178,456.698495049505,45,80.4475742574258,82.8610014851485,19.3330198019802,4.8929702970297,1748.56930693069,3425.30396039604,3192.29603960396,20,40,10.8217821782178,32,5305857.13925312,396231.029991804,0,0,0,0,0,0,0,80.4475742574256,10403.0032309406,19.3330198019802,20.7358681863116,21.0560773151767,4.8929702970297,4.90761050595956,3.83867969250738,2.57042589217053,2.03928422757882,2.04153847550109
+41976,2873.8663629703,456.712641386139,45,81.1630891089109,83.5979817821782,19.1093762376238,4.31138613861386,1756.21287128713,1916.57920792079,1935.99207920792,20,40,10.3861386138614,32,5305870.761564,396248.902399224,0,0,0,0,0,0,0,81.1630891089108,10425.4730985148,19.1093762376238,20.4959965305273,20.9077835719745,4.31138613861386,4.32602634754371,3.37054229407242,2.78639653686945,2.21062763440337,2.20537405890925
+41977,2873.87386891089,456.726856336633,45,80.8758613861386,83.3021372277228,18.7073366336634,3.09871287128713,1746.62376237624,539.561386138614,527.932673267327,20,40,10.6930693069307,32,5305884.34681315,396266.859553118,0,0,0,0,0,0,0,80.8758613861385,10448.0020766501,18.7073366336634,20.0647840081801,20.5500950451259,3.09871287128713,3.11335308021698,2.41543518887725,2.97487102713107,2.36015657295873,2.3737945954594
+41978,2873.88130841584,456.741046138614,45,80.7054059405941,83.1265681188119,18.1985550054455,4.57712871287129,1750.9702970297,2232.75742574257,2240.64752475248,20,40,11,32,5305897.80961861,396284.783083775,0,0,0,0,0,0,0,80.7054059405939,10470.417350605,18.1985550054455,19.5190840147802,20.1062530585399,4.57712871287129,4.59176892180114,3.54667577099794,3.43719766473826,2.72695003817151,2.69359660041357
+41979,2873.88878237624,456.755309108911,45,81.5143366336634,83.9597667326732,19.0682233222772,4.00861386138614,1773.90594059406,3327.67722772277,3164.68811881188,20,40,10.8613861386139,32,5305911.33466433,396302.798820833,0,0,0,0,0,0,0,81.5143366336632,10492.9289455445,19.0682233222772,20.4518574649882,20.8939929005868,4.00861386138614,4.02325407031599,3.12931434520984,2.82580488790173,2.24189281459775,2.30008172987731
+41980,2873.89634138614,456.769725346535,45,82.5175544554455,84.9930810891089,19.6723861386139,3.86960396039604,1791.37128712871,3085.11584158416,2917.67821782178,20,40,10.6633663366337,32,5305925.01387605,396321.0082234,0,0,0,0,0,0,0,82.5175544554454,10515.7128553355,19.6723861386139,21.0998597249013,21.4660622077774,3.86960396039604,3.88424416932589,3.03555495805647,2.5558878548215,2.02775026725102,1.99505749518472
+41981,2873.90396336634,456.784320396039,45,83.1822475247525,85.677714950495,20.5018415841584,3.45188118811881,1805.61881188119,2523.19405940594,2444.42376237624,20,40,10.5247524752475,32,5305938.80578562,396339.442373835,0,0,0,0,0,0,0,83.1822475247523,10538.7386497249,20.5018415841584,21.9895023653888,22.2103354164855,3.45188118811881,3.46652139704867,2.72545568085513,2.08856392792314,1.65699213094495,1.63973404054627
+41982,2873.91167861386,456.798957920792,45,83.6463762376238,86.1557675247525,21.589297029703,2.87782178217822,1814.36138613861,2269.59405940594,2202.36237623762,20,40,10.7623762376238,32,5305952.76956593,396357.932448548,0,0,0,0,0,0,0,83.6463762376237,10561.9155432618,21.589297029703,23.155866079297,23.1620262253903,2.87782178217822,2.89246199110807,2.29883923776966,1.91303386081413,1.51773283605083,1.52017523013646
+41983,2873.91942732673,456.81367970297,45,83.9922475247524,86.5120149504951,21.0727227722772,3.28019801980198,1821.65346534653,2093.78316831683,2077.5495049505,20,40,10.6534653465347,32,5305966.79350908,396376.528502509,0,0,0,0,0,0,0,83.9922475247523,10585.1995059956,21.0727227722772,22.6018080055901,22.7420218843262,3.28019801980198,3.29483822873183,2.59677398893894,2.06945362053956,1.64183069464359,1.64834466023449
+41984,2873.92718594059,456.828477920792,45,84.2369108910891,86.7640182178218,20.9611188118812,2.51960396039604,1824.66336633663,1906.90792079208,1956.11089108911,20,40,11,32,5305980.83414168,396395.2200074,0,0,0,0,0,0,0,84.236910891089,10608.5703533828,20.9611188118812,22.4821058051296,22.6589856451727,2.51960396039604,2.5342441693259,2.0010688518053,2.24824789350727,1.78367969404679,1.76942920684822
+41985,2873.93499386139,456.843322574258,45,84.4192178217822,86.9517943564357,21.6489900990099,4.61485148514852,1829.58910891089,1822.27128712871,1839.22079207921,20,40,10.990099009901,32,5305994.96512885,396413.970903214,0,0,0,0,0,0,0,84.4192178217821,10631.9977596534,21.6489900990099,23.2198906150117,23.2540922427401,4.61485148514852,4.62949169407837,3.66872420640051,2.1765734098549,1.72681571501618,1.72494124036516
+41986,2873.94275465346,456.858197920792,45,84.5476336633664,87.0840626732673,21.5503861386139,4.78217821782178,1831.93069306931,1804.6495049505,1776.6702970297,20,40,10.980198019802,32,5306009.00819111,396432.758372938,0.782178217821782,0.782178217821782,4150243.79283587,310084.383348874,7.15429433461607,0,0,84.5476336633662,10655.4663033828,21.5503861386139,23.1141317244522,23.1772909588531,4.78217821782178,4.79681842675163,3.79460672633282,2.11675859962838,1.67936077790163,1.69564842558797
+41987,2873.95054970297,456.873051584158,45,84.6552376237624,87.1948947524752,21.428801980198,4.97623762376238,1831.36633663366,1757.97920792079,1759.40198019802,20,40,11,32,5306023.11525472,396451.51988022,1,1,5306021.07359431,396453.183126608,30.0247080316872,0,0,84.6552376237622,10678.9645856435,21.428801980198,22.9837251398484,23.0789167644376,4.97623762376238,4.99087783269223,3.94370217398257,2.30922572311344,1.8320573292576,1.79379440146869
+41988,2873.95837742574,456.887924950495,45,84.7470594059406,87.2894711881188,21.8592772277228,5.02019801980198,1836.08910891089,1711.4297029703,1717.41386138614,20,40,11,32,5306037.28246008,396470.30692427,1,1,5306035.9246718,396471.413051637,53.5382077562908,0,0,84.7470594059404,10702.4867841584,21.8592772277228,23.4454366614612,23.4510018211143,5.02019801980198,5.03483822873183,3.99200016803106,2.17548670262165,1.72595356025516,1.76211445106978
+41989,2873.96621485149,456.902814257426,45,84.7583267326733,87.3010765346535,21.4414218921782,4.99970297029703,1835.94554455446,1717.43861386139,1677.24851485148,20,40,10.9207920792079,32,5306051.46734262,396489.114054523,1,1,5306050.79263672,396489.66370624,77.0784451022079,0,0,84.7583267326732,10726.0252815181,21.4414218921782,22.9972607816687,23.0957926918525,4.99970297029703,5.01434317922688,3.96309925984422,2.30895335197705,1.83184123971222,1.80676159276957
+41990,2873.97404435643,456.917684752475,45,84.7932871287129,87.3370857425743,21.0813663366337,4.19772277227723,1837.29207920792,1704.27425742574,1653.43564356436,20,40,10.8910891089109,32,5306065.63803362,396507.897396327,1,1,5306065.64329179,396507.893112737,100.59127600898,0,0,84.7932871287128,10749.5798675467,21.0813663366337,22.6110787668571,22.7941678573678,4.19772277227723,4.21236298120708,3.31680625425403,2.18725537418675,1.73529040454053,1.72947857725646
+41991,2873.98187940594,456.932554356436,45,84.836099009901,87.381181980198,21.6086732673267,4.12257425742574,1837.21782178218,1650.34752475248,1658.17326732673,20,40,10.7524752475248,32,5306079.81907507,396526.679719896,1,1,5306080.49757722,396526.12697555,124.109854805104,0,0,84.8360990099009,10773.1448956545,21.6086732673267,23.1766483012896,23.2452433968485,4.12257425742574,4.1372144663556,3.27300782505293,2.1727086491631,1.72374955172154,1.77787439954568
+41992,2873.98977128713,456.947392673267,45,84.8649504950495,87.410899009901,20.9623366336634,4.34663366336634,1839.28712871287,1678.27524752475,1654.71386138614,20,40,11,32,5306094.10614716,396545.424866294,1,1,5306095.37595521,396544.390412357,147.666579018316,0,0,84.8649504950494,10796.7174870462,20.9623366336634,22.4834119948614,22.6956855110449,4.34663366336634,4.36127387229619,3.43168672728219,2.35668522727089,1.86971000719389,1.85294915491668
+41993,2873.99768435644,456.962231584158,45,84.8966039603961,87.4435020792079,20.6458316831683,4.37316831683168,1839.29702970297,1636.32178217822,1633.43663366337,20,40,11,32,5306108.43251355,396564.171363295,1,1,5306110.27066968,396562.673902439,171.249168542318,0,0,84.8966039603959,10820.2955789054,20.6458316831683,22.1439407171716,22.4292485918817,4.37316831683168,4.38780852576154,3.4408133058305,2.4294894105195,1.92747024959297,1.92615839057723
+41994,2874.0055850495,456.977076930693,45,84.901900990099,87.448958019802,20.3078910891089,3.98485148514852,1839.5396039604,1630.9297029703,1664.2801980198,20,40,11,32,5306122.73587105,396582.925372601,1,1,5306125.15988412,396580.950641164,194.823049965261,0,0,84.9019009900989,10843.8816737073,20.3078910891089,21.7814783763167,22.1433128439024,3.98485148514852,3.99949169407837,3.12727335897626,2.58756596665895,2.0528825513703,2.06247906915959
+41995,2874.01346663366,456.99193039604,45,84.9618613861386,87.5107172277228,19.7132596259406,4.2219801980198,1841.29702970297,1587.75445544554,1608.2603960396,20,40,11,32,5306137.00371096,396601.688767472,1,1,5306140.03952592,396599.215629312,218.381775144291,0,0,84.9618613861385,10867.4720710946,19.7132596259406,21.1436990864807,21.6392683235929,4.2219801980198,4.23662040694965,3.29185775146671,3.13842806653591,2.48991689469519,2.4741244925317
+41996,2874.02133861386,457.00679970297,45,84.9854554455446,87.5350191089108,20.0273382838614,3.03881188118812,1841.9801980198,1584.10396039604,1559.31584158416,20,40,11,32,5306151.25346746,396620.471483201,1.10891089108911,1,5306154.92140399,396617.483351285,214.566635642024,0,0,84.9854554455445,10891.0734671067,20.0273382838614,21.4805680142264,21.9107246108539,3.03881188118812,3.05345209011797,2.37704375505691,2.71373371750929,2.15297954507159,2.17950532028771
+41997,2874.02921821782,457.021673168317,45,84.9660891089109,87.5150717821782,20.491495049505,3.04732673267327,1841.25742574257,1603.24257425743,1603.40495049505,20,40,11,32,5306165.51731309,396639.259538761,2,1,5306169.81189634,396635.760605819,14.1448425915329,0,0,84.9660891089108,10914.6788999725,20.491495049505,21.978405062383,22.3030417534483,3.04732673267327,3.06196694160312,2.40110243324935,2.44710244680437,1.94144380440539,1.91349377781243
+41998,2874.03709831683,457.036552376238,45,85.0069207920792,87.5571284158416,20.4499444444554,2.37168316831683,1841.44059405941,1560.2396039604,1578.77623762376,20,40,11,32,5306179.78200776,396658.054670718,2,1,5306184.70665603,396654.042403853,37.7261488644376,0,0,85.0069207920791,10938.2862022827,20.4499444444554,21.9338394498613,22.2704633631027,2.37168316831683,2.38632337724669,1.86607210615846,2.47188508007803,1.96110546176217,1.9459362198893
+41999,2874.04497138614,457.051448712871,45,85.0028514851485,87.552937029703,20.5189246425743,2.76029702970297,1840.29702970297,1541.74455445545,1562.44455445544,20,40,11,32,5306194.03335911,396676.870812057,2,1,5306199.60638022,396672.330295309,61.315314914043,0,0,85.0028514851484,10961.8967465896,20.5189246425743,22.0078250098157,22.3280973024916,2.76029702970297,2.77493723863283,2.17673575553294,2.57413711776217,2.04222858160088,2.02794860148498
+42000,2874.05283811881,457.066357722772,45,85.0141782178218,87.5646035643564,19.6606936193069,1.5790099009901,1840.51485148515,1555.97524752475,1579.51188118812,20,40,11,32,5306208.27275051,396695.702436011,2,1,5306214.50891445,396690.621635803,84.9089298061296,0,0,85.0141782178217,10985.5104377337,19.6606936193069,21.0873187694997,21.5989473302961,1.5790099009901,1.59365010991995,1.241553046861,3.12243814353837,2.47723106007595,2.43755785768863
+42001,2874.06070277228,457.081275247525,45,85.0348910891089,87.5859378217822,19.3744895490099,2.19386138613861,1842.79207920792,1511.09603960396,1514.21584158416,20,40,11,32,5306222.50816107,396714.544504025,2,1,5306229.41497478,396708.917304215,108.508127188038,0,0,85.0348910891088,11009.1281094059,19.3744895490099,20.7803470735696,21.3571539437192,2.19386138613861,2.20850159506847,1.71181793325921,3.33063962618454,2.64241069081813,2.71844968785027
+42002,2874.06856663366,457.096192871287,45,84.9901683168316,87.5398733663366,20.2056133112871,0.683267326732673,1841.58415841584,1520.90495049505,1506.42079207921,20,40,11,32,5306236.74216268,396733.386575985,2,1,5306244.32047492,396727.212285059,132.10643769042,0,0,84.9901683168316,11032.7443416666,20.2056133112871,21.6717790876891,22.0624225035177,0.683267326732673,0.697907535662531,0.552196302530952,2.68828367936519,2.13278839249386,2.21325649459466
+42003,2874.07643079208,457.111104554456,45,84.9848217821782,87.5343664356436,20.0934669967327,-0.381386138613861,1842.92079207921,1544.53861386139,1563.32376237624,20,40,11,32,5306250.97690738,396752.221165116,2,1,5306259.2226073,396745.503132321,155.699416371851,0,0,84.9848217821781,11056.3534517326,20.0934669967327,21.551495178605,21.9675149647461,-0.381386138613861,-0.366745929684003,-0.278072407942303,2.63992272663891,2.09442053741359,2.04371638923954
+42004,2874.08429475248,457.126013762376,45,84.9919306930693,87.5416886138614,19.5267299230693,1.01663366336634,1840.32673267327,1522.38316831683,1554.83663366337,20,40,11,32,5306265.21140088,396771.052571462,2,1,5306274.1230809,396763.791943591,179.289768871521,0,0,84.9919306930692,11079.962025055,19.5267299230693,20.9436343593358,21.4841346421851,1.01663366336634,1.03127387229619,0.792978458532938,3.17869093347031,2.52186001732967,2.39889883250933
+42005,2874.0921560396,457.140925346535,45,84.9974356435644,87.5473587128713,20.7685049504951,2.07425742574257,1840.9900990099,1539.09702970297,1555.66138613861,20,40,11,32,5306279.44095003,396789.886755984,2,1,5306289.02294232,396782.080003482,202.879152182041,0,0,84.9974356435642,11103.5712293729,20.7685049504951,22.2755154389339,22.5414660891446,2.07425742574257,2.08889763467243,1.64169720261288,2.2718718758536,1.80242211908157,1.91264022222332
+42006,2874.10001762376,457.155839009901,45,85.0072079207921,87.5574241584158,20.3781127612871,3.73732673267327,1837.88118811881,1562.93861386139,1552.82376237624,20,40,11,32,5306293.67106349,396808.723447122,2,1,5306303.92425633,396800.369846279,226.470835225178,0,0,85.007207920792,11127.183689934,20.3781127612871,21.8567954945437,22.2075944521763,3.73732673267327,3.75196694160312,2.94039650348752,2.67695044283346,2.123797006834,2.06644950373731
+42007,2874.10788633663,457.170742574257,45,85.0025049504951,87.5525800990099,20.3494356435644,3.49564356435644,1841.29207920792,1517.76633663366,1548.26237623762,20,40,11,32,5306307.91466716,396827.547702191,1.02970297029703,0.514851485148515,2731964.24730456,204300.367893617,125.767525652073,0,0,85.0025049504949,11150.7962823982,20.3494356435644,21.8260374991993,22.183131046866,3.49564356435644,3.51028377328629,2.74861753380172,2.65556067845051,2.10682713064709,2.09702843692706
+42008,2874.11574524752,457.185650792079,45,85.0107524752475,87.5610750495049,20.3767920792079,3.31594059405941,1840.89603960396,1544.93465346535,1569.25643564356,20,40,11,32,5306322.14007093,396846.377335825,0,0,0,0,0,0,0,85.0107524752474,11174.4046283003,20.3767920792079,21.8553789807351,22.2071320572116,3.31594059405941,3.33058080298926,2.60379420856849,2.58525514207726,2.05104922556368,2.09893631230539
+42009,2874.12360079208,457.200564653466,45,85.0035544554455,87.5536610891089,20.0776617162376,2.64683168316832,1840.08415841584,1543.36237623762,1564.14653465347,20,40,11,32,5306336.35917383,396865.213794483,0,0,0,0,0,0,0,85.0035544554454,11198.0128490649,20.0776617162376,21.5345430306038,21.9529849190422,2.64683168316832,2.66147189209817,2.08194539663358,2.82488856420955,2.24116583606143,2.18100727017963
+42010,2874.13144960396,457.215489504951,45,84.996702970297,87.546604059406,19.9670346534653,1.45811881188119,1840.10396039604,1520.62178217822,1531.60099009901,20,40,11,32,5306350.56562129,396884.063626213,0,0,0,0,0,0,0,84.9967029702969,11221.6266964521,19.9670346534653,21.4158886137057,21.8596783274249,1.45811881188119,1.47275902081105,1.14931086717885,2.82900047987197,2.24442808329488,2.27516918920822
+42011,2874.13929009901,457.23042059406,45,85.0045247524752,87.5546604950495,20.013198019802,2.15613861386139,1841.63861386139,1530.21782178218,1552.96732673267,20,40,11,32,5306364.75658482,396902.920859057,0,0,0,0,0,0,0,85.0045247524751,11245.2383355061,20.013198019802,21.4654017000831,21.8995298133287,2.15613861386139,2.17077882279124,1.69463524743386,2.74349197749953,2.17658868720757,2.15971121662591
+42012,2874.14712653465,457.245361287129,45,85.0152475247525,87.565704950495,20.522198019802,2.47425742574257,1841.58910891089,1546.32871287129,1547.39702970297,20,40,11,32,5306378.9398758,396921.789826986,0,0,0,0,0,0,0,85.0152475247523,11268.8512934819,20.522198019802,22.011335910824,22.3342916549222,2.47425742574257,2.48889763467243,1.95106878803895,2.29920023949401,1.82410346811683,1.92636106287789
+42013,2874.15495960396,457.260304257426,45,85.0375247524752,87.5886504950495,19.6062145211881,2.02782178217822,1842.64851485149,1493.47722772277,1511.1504950495,20,40,11,32,5306393.11694115,396940.66142704,0,0,0,0,0,0,0,85.0375247524752,11292.4718839109,19.6062145211881,21.0288865427151,21.5549153091305,2.02782178217822,2.04246199110807,1.58434933517843,3.10370293525302,2.46236721402107,2.35435077073244
+42014,2874.16278188119,457.275262277228,45,85.074396039604,87.6266279207921,20.4694653465347,2.01158415841584,1843.62871287129,1477.66237623762,1499.2,20,40,11,32,5306407.27374176,396959.551322187,0,0,0,0,0,0,0,85.0743960396038,11316.099660066,20.4694653465347,21.9547768334951,22.2892478009536,2.01158415841584,2.0262243673457,1.59398023445432,2.63539135589082,2.0908255094752,2.04526474956023
+42015,2874.17061831683,457.290231287128,45,85.1213663366336,87.6750073267327,21.1027524752475,1.61554455445545,1844.86138613861,1472.79900990099,1467.97722772277,20,40,11,32,5306421.45658502,396978.455281514,0,0,0,0,0,0,0,85.1213663366336,11339.7389657866,21.1027524752475,22.6340167328786,22.8328136062496,1.61554455445545,1.6301847633853,1.27598500452546,2.2251468518292,1.76535215148731,1.79652886326289
+42016,2874.17845732673,457.305195643564,45,85.1309405940594,87.6848688118812,21.5034752475248,0.267128712871287,1843.75247524752,1405.72079207921,1397.06138613861,20,40,11,32,5306435.64436106,396997.353436737,0,0,0,0,0,0,0,85.1309405940593,11363.3829522552,21.5034752475248,23.0638168712069,23.1747620095467,0.267128712871287,0.281768921801145,0.225976869114964,1.98008254239038,1.57092686869534,1.59874159662825
+42017,2874.18629712871,457.320152079208,45,85.0843267326733,87.6368565346535,21.6619603960396,0.457029702970297,1842.14851485149,1386.19702970297,1382.26732673267,20,40,11,32,5306449.83384125,397016.241659303,0,0,0,0,0,0,0,85.0843267326732,11387.0237356436,21.6619603960396,23.2338020666266,23.3082080470708,0.457029702970297,0.471669911900154,0.371903774098662,1.73132145710871,1.37356869579663,1.42718413723675
+42018,2874.19413247525,457.335105544554,45,85.0596831683169,87.6114736633663,21.9607128712871,0.325346534653465,1839.84158415842,1415.50099009901,1413.04059405941,20,40,11,32,5306464.01519523,397035.125941868,0,0,0,0,0,0,0,85.0596831683168,11410.6552388889,21.9607128712871,23.5542327086328,23.5598849565745,0.325346534653465,0.339986743583323,0.2660663277494,1.89275230226704,1.50164217084948,1.47169446026561
+42019,2874.20195960396,457.350065742574,45,85.0572178217822,87.6089343564357,20.2571705171287,-0.441089108910891,1843.0198019802,1428.59504950495,1432.34356435644,20,40,11,32,5306478.1812381,397054.018245646,0,0,0,0,0,0,0,85.0572178217821,11434.2840533554,20.2571705171287,21.7270774029722,22.1092236168749,-0.441089108910891,-0.426448899981034,-0.328698794215333,2.71477451978634,2.15380528047757,2.18575697020192
+42020,2874.20978168317,457.365032871287,45,85.0388415841584,87.5900068316832,19.1599196918812,-1.45445544554455,1841.74752475248,1406.23366336634,1397.2297029703,20,40,11,32,5306492.33783435,397072.918922064,0,0,0,0,0,0,0,85.0388415841583,11457.9121890539,19.1599196918812,20.5502075340797,21.1765212142207,-1.45445544554455,-1.4398152366147,-1.10285347669629,3.4302904420884,2.72147009406998,2.64398563046984
+42021,2874.21759970297,457.380001881188,45,85.0413168316832,87.5925563366337,19.5691853685148,-0.293366336633663,1840.84158415842,1423.64950495049,1421.75643564356,20,40,11,32,5306506.48693025,397091.821714519,0,0,0,0,0,0,0,85.041316831683,11481.5345688394,19.5691853685148,20.9891704695538,21.5239151511895,-0.293366336633663,-0.278726127703806,-0.206212561389792,3.23090738852567,2.5632866904498,2.59827117252677
+42022,2874.2254119802,457.394974653465,45,85.0544356435643,87.6060687128713,18.8742739275248,-0.434257425742574,1841.5396039604,1444.72673267327,1439.57425742574,20,40,11,32,5306520.62536625,397110.728910542,0,0,0,0,0,0,0,85.0544356435643,11505.1563992574,18.8742739275248,20.2438346560533,20.9323455139095,-0.434257425742574,-0.419617216812717,-0.325243018907943,3.7996220688313,3.01448463436736,3.00807356706823
+42023,2874.23321485149,457.409963663366,45,85.0584158415841,87.6101683168317,19.1658454344554,0.560495049504951,1840.79702970297,1408.75544554455,1404.35544554455,20,40,11,32,5306534.74607949,397129.655927502,0,0,0,0,0,0,0,85.0584158415841,11528.781115154,19.1658454344554,20.5565632621648,21.1818722020584,0.560495049504951,0.575135258434808,0.44592903821475,3.474933932116,2.75688864682992,2.78321564909041
+42024,2874.24102267327,457.424951188119,45,85.0804158415842,87.6328283168317,18.6782062711881,2.5019801980198,1842.16336633663,1414.81584158416,1390.64653465347,20,40,11,32,5306548.87605678,397148.581165296,0,0,0,0,0,0,0,85.0804158415841,11552.4090286029,18.6782062711881,20.0335398796015,20.766672589707,2.5019801980198,2.51662040694966,1.93197584771035,3.99166021644527,3.1668408515668,3.08456924132466
+42025,2874.2488370297,457.439936039604,45,85.0718415841584,87.6239968316832,19.1694801980198,1.87762376237624,1843.20297029703,1396.59207920792,1379.38415841584,20,40,11,32,5306563.01825889,397167.50319633,0,0,0,0,0,0,0,85.0718415841583,11576.0406540429,19.1694801980198,20.5604617725336,21.1852641976246,1.87762376237624,1.89226397130609,1.46564525604398,3.5127325402116,2.78687671439047,2.83889478304911
+42026,2874.25665128713,457.454931485149,45,85.0832376237624,87.6357347524753,18.7999108909901,0.412178217821782,1841.5099009901,1360.71287128713,1354.07821782178,20,40,11,32,5306577.16010347,397186.43832626,0,0,0,0,0,0,0,85.0832376237623,11599.6786058031,18.7999108909901,20.1640756665467,20.8714764894101,0.412178217821782,0.42681842675164,0.328752483021743,3.83981813355685,3.04637475851185,3.02434730168776
+42027,2874.26447316831,457.469926138614,45,85.1006435643565,87.6536628712871,19.0963558856436,2.13524752475248,1841.14851485149,1356.59207920792,1350.92871287129,20,40,11,32,5306591.31614858,397205.372628236,0,0,0,0,0,0,0,85.1006435643564,11623.3119573983,19.0963558856436,20.4820313918596,21.1253436933975,2.13524752475248,2.14988773368233,1.65630617194683,3.55323726365904,2.81901171735648,2.83309116502106
+42028,2874.27227445545,457.48491990099,45,85.0417821782178,87.5930356435643,19.1578751377228,2.27574257425743,1843.16831683168,1379.08217821782,1363.3801980198,20,40,11,32,5306605.43412722,397224.30504769,0,0,0,0,0,0,0,85.0417821782177,11646.9431721948,19.1578751377228,20.5480146223689,21.1725889628431,2.27574257425743,2.29038278318728,1.77348163479524,3.58140451651345,2.8413586111748,2.76927761882049
+42029,2874.2800780198,457.499924653465,45,85.0369801980198,87.5880896039604,20.5153366336634,1.38594059405941,1839.83168316832,1359.54356435644,1364.3,20,40,11,32,5306619.55614136,397243.251137705,0,0,0,0,0,0,0,85.0369801980197,11670.5680380639,20.5153366336634,22.0039766467255,22.3270540796506,1.38594059405941,1.40058080298926,1.10841586150951,2.50752476353822,1.9893807155159,2.07176693419016
+42030,2874.28786207921,457.514924059406,45,85.0139702970297,87.5643894059406,20.5537722772277,1.78891089108911,1842.82673267327,1376.81485148515,1369.09405940594,20,40,11,32,5306633.64220531,397262.189832235,0,0,0,0,0,0,0,85.0139702970296,11694.1873616887,20.5537722772277,22.0452012689919,22.3584711714809,1.78891089108911,1.80355110001897,1.41421766153049,2.47848423627457,1.96634099692695,1.94331984870467
+42031,2874.29564485149,457.529901980198,45,84.7030792079208,87.2441715841584,19.929801980297,3.92653465346535,1828.44059405941,384.334653465347,397.558415841584,20,40,11,32,5306647.72642262,397281.101631784,0,0,0,0,0,0,0,84.7030792079207,11717.7794163092,19.929801980297,21.3759542521341,21.8087756439329,3.92653465346535,3.9411748623952,3.07253706493672,2.94577506575632,2.33707287492313,2.2875619352224
+42032,2874.30338920792,457.544784455445,45,84.049504950495,86.5709900990099,19.6564653465347,-0.252673267326733,1813.96534653465,296.963366336634,293.233663366337,20,40,11,32,5306661.74165758,397299.893194476,0,0,0,0,0,0,0,84.0495049504949,11741.2158466997,19.6564653465347,21.0827836835297,21.5426183886871,-0.252673267326733,-0.238033058396875,-0.177702529951809,2.73563581167875,2.17035588543867,2.24924541026901
+42033,2874.31108287129,457.559512772277,45,83.3663168316832,85.8673063366337,19.1530517052475,2.51485148514852,1796.49504950495,-46.680198019802,-31.9237623762377,20,40,11,32,5306675.66646889,397318.49099027,0,0,0,0,0,0,0,83.3663168316831,11764.4633277779,19.1530517052475,20.5428411905389,21.07328878825,2.51485148514852,2.52949169407837,1.96579677244766,3.12389935186058,2.47839033064421,2.43903593917677
+42034,2874.31872,457.574070693069,45,82.3576138613861,84.8283422772277,18.9047574256436,-0.365049504950495,1776.14851485149,-233.888118811881,-147.920792079208,20,40,11,32,5306689.49039394,397336.874605041,0,0,0,0,0,0,0,82.357613861386,11787.4763259077,18.9047574256436,20.2765301069101,20.8038573380686,-0.365049504950495,-0.350409296020638,-0.279071607956501,3.12163801826193,2.47659626921842,2.4809384425471
+42035,2874.32625089109,457.588442475247,45,80.9068811881188,83.3340876237623,18.0269741474258,0.878118811881188,1735.66831683168,-2382.30891089109,-2063.96336633663,20,40,11,32,5306703.12171244,397355.022796018,0,0,0,0,0,0,0,80.9068811881187,11810.1809119088,18.0269741474258,19.3350528550527,19.9752243582504,0.878118811881188,0.892759020811046,0.687478503232872,3.49612989256756,2.77370476588977,2.7871634912662
+42036,2874.33358495049,457.602471287129,45,78.4624158415842,80.8162883168317,17.2322502747525,-1.56623762376238,1681.08910891089,-3312.22277227723,-2813.66336633663,20,40,11,32,5306716.39608527,397372.737249237,0,0,0,0,0,0,0,78.4624158415841,11832.3240294005,17.2322502747525,18.4826619902495,19.1572280845508,-1.56623762376238,-1.55159741483252,-1.19438442143488,3.68729991803247,2.92537224593808,2.94847707304919
+42037,2874.3406749505,457.616048712871,45,75.7879108910891,78.0615482178218,16.6644543451485,1.72465346534653,1623.88118811881,-3397.08712871287,-2942.26435643565,20,40,11,32,5306729.22842811,397389.881384409,0,0,0,0,0,0,0,75.787910891089,11853.7445281354,16.6644543451485,17.8736654820172,18.5220174158744,1.72465346534653,1.73929367427639,1.33017192312256,3.50345470305585,2.77951600928887,2.72062591965108
+42038,2874.34753405941,457.629136831683,45,73.0901782178218,75.2828835643564,16.859802530297,1.7449504950495,1566.69306930693,-3382.3801980198,-3017.17425742574,20,40,11,32,5306741.64396815,397406.408413282,0,0,0,0,0,0,0,73.0901782178216,11874.4194577558,16.859802530297,18.0831885807966,18.5352237095901,1.7449504950495,1.75959070397936,1.36235185504768,2.58622194819451,2.05181625505558,2.14844460230954
+42039,2874.3541739604,457.641728811881,45,70.4178712871287,72.5304074257426,15.635603410297,0.708118811881188,1498.24752475248,-3406.45643564356,-2983.61089108911,20,40,11,32,5306753.66449279,397422.310219516,0,0,0,0,0,0,0,70.4178712871286,11894.3442742025,15.635603410297,16.770158756893,17.339626569021,0.708118811881188,0.722759020811046,0.554747189824506,3.08037034147372,2.44385596628288,2.38182961065554
+42040,2874.36056742574,457.653837722772,45,67.7262574257426,69.7580451485148,14.8778646865347,1.02871287128713,1452.36138613861,-3379.20891089109,-2966.56237623762,20,40,11,32,5306765.23927232,397437.602191249,0,0,0,0,0,0,0,67.7262574257425,11913.5248533279,14.8778646865347,15.9574367684744,16.5395847540892,1.02871287128713,1.04335308021699,0.800076622308846,3.16494992742932,2.51095839321523,2.52135277985775
+42041,2874.36672267327,457.665472079208,45,65.0454257425743,66.9967885148515,13.609501650198,-1.23405940594059,1413.42574257426,-3656.43564356436,-3188.30693069307,20,40,11,32,5306776.38333575,397452.29521133,0,0,0,0,0,0,0,65.0454257425742,11931.9643163092,13.609501650198,14.5970383928843,15.3070318602399,-1.23405940594059,-1.21941919701074,-0.92675400632249,3.687824890382,2.92578874027684,2.89790728473342
+42042,2874.37261970297,457.676605049505,45,62.0919702970297,63.9547294059406,12.936602860198,1.31376237623762,1544.65346534653,-4074.71683168317,-3555.32673267327,20,40,11,32,5306787.06022557,397466.355209935,0,0,0,0,0,0,0,62.0919702970296,11949.6282103686,12.936602860198,13.8753125189605,14.5648497407155,1.31376237623762,1.32840258516748,1.0033538706624,3.58223456505812,2.84201714208613,2.79256402128416
+42043,2874.37824980198,457.687206138614,45,59.114,60.88742,12.9225643564356,2.93118811881188,1489.67326732673,-3214.86534653465,-2782.48712871287,20,40,11,32,5306797.25447291,397479.743926456,0,0,0,0,0,0,0,59.1139999999999,11966.4562751376,12.9225643564356,13.8602553490755,14.3821088755232,2.93118811881188,2.94582832774174,2.2618796570345,2.83888087590225,2.25226683711701,2.23878552775098
+42044,2874.38366534653,457.697384554455,45,57.6046831683169,59.3328236633663,13.1594158415842,3.7590099009901,1457.36138613861,0.882178217821727,32.1138613861387,20,40,11,32,5306807.06067542,397492.599106823,0,0,0,0,0,0,0,57.6046831683168,11982.6181219473,13.1594158415842,14.1142933227638,14.4965689791384,3.7590099009901,3.77365010991995,2.90969239220088,2.28453827408284,1.81247118768449,1.84751838390705
+42045,2874.38900138614,457.70741009901,45,57.0892673267327,58.8019453465346,12.868702970297,2.43356435643564,1443.10891089109,325.406930693069,344.528712871287,20,40,11,32,5306816.72301803,397505.261230598,0,0,0,0,0,0,0,57.0892673267326,11998.5378028053,12.868702970297,13.8024856568731,14.2202681327667,2.43356435643564,2.4482045653655,1.89252432907124,2.40055665701995,1.90451603486468,1.92860697827636
+42046,2874.39428920792,457.717348514851,45,56.543693069307,58.2400038613862,13.0308118811881,1.6309900990099,1429.87128712871,323.493069306931,354.134653465347,20,40,11,32,5306826.29799953,397517.813209427,0,0,0,0,0,0,0,56.5436930693068,12014.3199264577,13.0308118811881,13.976357563202,14.3268170579009,1.6309900990099,1.64563030793976,1.2842283880972,2.14401418061956,1.70098438377881,1.76166161134483
+42047,2874.39951831683,457.727201287129,45,56.0532079207921,57.7348041584158,11.8204097908911,1.77445544554455,1416.76237623762,328.89603960396,357.507920792079,20,40,11,32,5306835.76614588,397530.256548811,0,0,0,0,0,0,0,56.053207920792,12029.9545646315,11.8204097908911,12.6781259132109,13.2691292986848,1.77445544554455,1.78909565447441,1.35268678403054,3.13782171976212,2.48943584079046,2.34619903155658
+42048,2874.40469108911,457.736970495049,45,55.4825841584159,57.1470616831683,12.905099009901,5.31554455445545,1403.06435643564,329.40297029703,360.280198019802,20,40,11,32,5306845.13181202,397542.593917726,0,0,0,0,0,0,0,55.4825841584158,12045.4467657316,12.905099009901,13.8415226768246,14.1561297459596,5.31554455445545,5.3301847633853,4.1397986194681,2.21469341569685,1.7570587680859,1.81650712271211
+42049,2874.40980138614,457.746660693069,45,54.9841584158416,56.6336831683168,13.7636534653465,5.02306930693069,1389.43069306931,319.637623762376,367.485148514851,20,40,11,32,5306854.3835257,397554.830787797,0,0,0,0,0,0,0,54.9841584158415,12060.7922536304,13.7636534653465,14.7623758183015,14.8587171028155,5.02306930693069,5.03770951586055,3.97203407775749,1.58302689208803,1.2559170768943,1.31967199339021
+42050,2874.4148439604,457.756271782178,45,54.4502574257425,56.0837651485148,12.8762178217822,5.37405940594059,1377.76732673267,308.028712871287,381.028712871287,20,40,11,32,5306863.51156825,397566.966864326,0,0,0,0,0,0,0,54.4502574257425,12075.9844800055,12.8762178217822,13.8105458032668,14.0724125800305,5.37405940594059,5.38869961487045,4.2000761165439,1.97665934917739,1.56821102928971,1.54431658573997
+42051,2874.41981594059,457.765810594059,45,53.7886039603961,55.402262079208,13.1591386138614,5.21831683168317,1352.72772277228,-883.822772277228,-560.753465346535,20,40,11,32,5306872.51046935,397579.010562694,0,0,0,0,0,0,0,53.788603960396,12091.0270580583,13.1591386138614,14.1139959787599,14.2756443583353,5.21831683168317,5.23295704061302,4.1043982579763,1.75756360221,1.39438827778338,1.40773371807384
+42052,2874.42465029703,457.775130792079,45,51.549702970297,53.0961940594059,13.4648316831683,5.4360396039604,1289.73762376238,-3842.18415841584,-3038.00495049505,20,40,11,32,5306881.25930148,397590.777424576,0,0,0,0,0,0,0,51.5497029702969,12105.6998015677,13.4648316831683,14.4418708402943,14.4069181494723,5.4360396039604,5.45067981289025,4.32985757076969,1.53622626964959,1.21878713221459,1.21881241740438
+42053,2874.42920732673,457.783995247525,45,48.5387425742574,49.9949048514852,12.2250891089109,5.45930693069307,1216.42574257426,-3579.46633663366,-2853.14257425743,20,40,11,32,5306889.5045268,397601.967526916,0,0,0,0,0,0,0,48.5387425742573,12119.5919340484,12.2250891089109,13.1121696933412,13.1797327498229,5.45930693069307,5.47394713962292,4.31882191525274,1.52975218458909,1.21365082402843,1.20314344234004
+42054,2874.43350960396,457.79238990099,45,45.9622079207921,47.3410741584158,11.658297029703,5.49693069306931,1153.05445544554,-3237.14851485149,-2595.73861386139,20,40,11,32,5306897.28826816,397612.564106935,0,0,0,0,0,0,0,45.962207920792,12132.710179373,11.658297029703,12.5042498771986,12.5498974860388,5.49693069306931,5.51157090199916,4.3545339632264,1.37257167250698,1.08894941164842,1.10418127173896
+42055,2874.43754871287,457.80033029703,45,43.1231287128713,44.4168225742574,10.8466534653465,5.4760396039604,1184.02475247525,-4446.04554455446,-3645.35247524753,20,40,11,32,5306904.5945897,397622.586252902,0,0,0,0,0,0,0,43.1231287128712,12145.0986316832,10.8466534653465,11.633711588967,11.6968963977588,5.4760396039604,5.49067981289025,4.33159801841808,1.33886264956559,1.06220587509253,1.06253400901749
+42056,2874.44126168317,457.80775,45,39.8468514851485,41.042257029703,10.6261089108911,5.5,1389.85643564356,-3598.33663366337,-2882.8099009901,20,40,11,32,5306911.30831388,397631.94915757,0,0,0,0,0,0,0,39.8468514851485,12156.6087472498,10.6261089108911,11.3971638143701,11.3216152426039,5.5,5.51464020892985,4.39674499915784,1.3036801359201,1.03429332356464,1.03408799187148
+42057,2874.44466950495,457.814673861386,45,37.0416732673267,38.1529234653465,9.14467326732673,5.5,1289.91584158416,-3578.66831683168,-2786.96237623762,20,40,11,32,5306917.46776932,397640.684467145,0,0,0,0,0,0,0,37.0416732673267,12167.2908360011,9.14467326732673,9.80823179308762,9.90067764603171,5.5,5.51464020892985,4.33419950054194,1.19712076334494,0.949752917846224,0.944857190871359
+42058,2874.44769722772,457.821084950495,45,34.0938811881188,35.1166976237624,8.78187128712871,5.5,1190.67821782178,-3622.73267326733,-2736.7603960396,20,40,11,32,5306922.93449295,397648.768636746,0,0,0,0,0,0,0,34.0938811881188,12177.1588412541,8.78187128712871,9.41910406673271,9.42324226359155,5.5,5.51464020892985,4.36882276207738,1.08388287062877,0.859914012440033,0.862445956995404
+42059,2874.45016336634,457.827152970297,45,30.9268613861386,31.8546672277228,7.83219801980198,5.5,1139.16831683168,-4728.73069306931,-3621.28415841584,20,40,10.5742574257426,32,5306927.36855881,397656.407062461,0,0,0,0,0,0,0,30.9268613861386,12186.1965101485,7.83219801980198,8.40052032280389,8.43398441124929,5.5,5.51464020892985,4.35299596164459,1.11957172700931,0.888228278234986,0.862267285913481
+42060,2874.45203990099,457.832897623763,45,27.6127128712871,28.4410942574257,7.33740594059406,5.5,1362.30198019802,-3554.71683168317,-2621.20198019802,20,40,10.8217821782178,32,5306930.71762748,397663.623367528,0,0,0,0,0,0,0,27.6127128712871,12194.3079180693,7.33740594059406,7.86982499226709,7.82327938233136,5.5,5.51464020892985,4.39446679445944,0.897737669852191,0.712233049087056,0.758164880113988
+42061,2874.45323891089,457.838563465347,45,24.946396039604,25.6947879207921,7.50614851485148,5.5,1350.0396039604,-3208.77128712871,-2420.33267326733,20,40,10.8613861386139,32,5306932.81343464,397670.719246308,0,0,0,0,0,0,0,24.9463960396039,12201.6011624588,7.50614851485148,8.05081191583412,7.81418829173588,5.5,5.51464020892985,4.4919748171129,1.35611689878001,1.07589478103954,1.05464085860994
+42062,2874.4537470297,457.843725049505,45,22.9521386138614,23.6407027722772,6.98525742574257,5.5,1527,-1692.9495049505,-1225.33762376238,20,40,11,32,5306933.64061936,397677.164396477,0,0,0,0,0,0,0,22.9521386138614,12208.2194966997,6.98525742574257,7.49212377120808,7.2568586032725,5.5,5.51464020892985,4.50073526621072,1.31534424412259,1.0435472110074,1.03252388891102
+42063,2874.45390485149,457.848768118812,45,21.7382079207921,22.3903541584159,6.6529702970297,5.5,1475.14356435644,-988.523762376238,-678.987128712871,20,40,11,32,5306933.82155727,397683.450432473,0,0,0,0,0,0,0,21.7382079207921,12214.4253435644,6.6529702970297,7.13572512414869,6.90466251502177,5.5,5.51464020892985,4.5046943554092,1.28719314940601,1.02121313647934,1.10522316440828
+42064,2874.45407930693,457.853645841584,45,20.8254752475248,21.4502395049505,7.29357425742574,5.5,1392.93564356436,-508.332673267327,-266.70099009901,20,40,11,32,5306934.03696555,397689.531084747,0,0,0,0,0,0,0,20.8254752475247,12220.3204298405,7.29357425742574,7.82281278135168,7.39743878008646,5.5,5.51464020892985,4.60219193416806,2.14232448525955,1.69964383974384,1.59759855486707
+42065,2874.4546060396,457.858206336634,45,19.8978415841584,20.4947768316832,6.39853465346534,5.5,1298.07425742574,-107.355445544554,-301.59603960396,20,40,11,32,5306934.91192682,397695.22821998,0,0,0,0,0,0,0,19.8978415841584,12225.9824472222,6.39853465346534,6.86282704506487,6.58284107336206,5.5,5.51464020892985,4.54018597931521,1.47506044189417,1.1702603459772,1.17644645470831
+42066,2874.45559514852,457.862233960396,45,18.6154158415842,19.1738783168317,5.97455445544554,5.5,1191.56930693069,-9.5990099009901,-266.386138613861,20,40,10.8316831683168,32,5306936.65514428,397700.276881686,0,0,0,0,0,0,0,18.6154158415841,12231.33762456,5.97455445544554,6.40808186868822,6.14871250095298,5.5,5.51464020892985,4.53859181966821,1.37183479718008,1.08836480104501,1.1016812862888
+42067,2874.45693772277,457.86547039604,45,17.3905049504951,17.9122200990099,5.292,5.5,1092.77722772277,4.07029702970297,-244.557425742574,20,40,10.9405940594059,32,5306939.07058032,397704.35177249,0,0,0,0,0,0,0,17.390504950495,12236.3338808581,5.292,5.67599969202543,5.49788314606953,5.5,5.51464020892985,4.49912086077177,1.00613009555553,0.798227733780796,0.793477906672343
+42068,2874.45865019802,457.868041881188,45,16.3427722772277,16.8330554455446,4.10148514851485,5.5,1011.75247524752,-14.7138613861386,-278.787128712871,20,40,10.8019801980198,32,5306942.18588955,397707.610653569,0,0,0,0,0,0,0,16.3427722772277,12241.0068632838,4.10148514851485,4.39909834463665,4.42505725959232,5.5,5.51464020892985,4.34414205040821,0.580734433349854,0.460733987293539,0.477889920988906
+42069,2874.46056445545,457.870099405941,45,15.3424752475248,15.8027495049505,3.64538613861386,5.5,954.564356435644,-14.9564356435644,-256.505940594059,20,40,11,32,5306945.68632159,397710.236052222,0,0,0,0,0,0,0,15.3424752475247,12245.404700275,3.64538613861386,3.90990374151286,3.97976230321762,5.5,5.51464020892985,4.29842786010807,0.614219913420731,0.48730017290871,0.479288935902709
+42070,2874.46264019802,457.871588910891,45,15.4316633663366,15.8946132673267,3.18274257425742,5.5,970.430693069307,2626.35940594059,2345.04356435644,20,40,10.9009900990099,32,5306949.49842529,397712.159317917,0,0,0,0,0,0,0,15.4316633663366,12249.6283507976,3.18274257425742,3.41368969600933,3.5913062296592,5.5,5.51464020892985,4.16898348186141,0.985241738843231,0.781655656556868,0.839352001724391
+42071,2874.46497316832,457.872327326733,45,16.6236336633663,17.1223426732673,2.32144554455446,5.5,987.767326732673,2209.46435643564,1949.23366336634,20,40,11,32,5306953.8035913,397713.155595016,0,0,0,0,0,0,0,16.6236336633663,12254.0961289329,2.32144554455446,2.4898949727787,2.92695706216352,5.5,5.51464020892985,3.79183047282709,2.15331282030183,1.70836159286301,1.70766395299149
+42072,2874.46747495049,457.87226960396,45,17.0531881188119,17.5647837623762,1.32371287128713,4.31673267326733,783.277227722772,798.037623762377,601.297029702971,20,40,11,32,5306958.43903712,397713.165875083,0,0,0,0,0,0,0,17.0531881188119,12258.7998226348,1.32371287128713,1.41976452187374,2.10317777762612,4.31673267326733,4.33137288219718,2.48988008101957,3.32709811895752,2.63960098529349,2.56267809719101
+42073,2874.46995524752,457.87151950495,45,16.8878712871287,17.3945074257426,1.14708910891089,-0.264752475247525,768.059405940594,1028.62277227723,857.812871287129,20,40,11,32,5306963.04997503,397712.313139611,0,0,0,0,0,0,0,16.8878712871287,12263.5038243399,1.14708910891089,1.23032453305063,1.94376795056788,-0.264752475247525,-0.250112266317668,-0.0287497734161628,3.46749434525929,2.75098634395365,2.76762724110107
+42074,2874.47212534654,457.869678217822,45,17.4052871287129,17.9274457425743,1.55111881188119,-5.5,787.747524752475,2552.63267326733,2270.3900990099,20,40,11,32,5306967.11041607,397710.091213473,0,0,0,0,0,0,0,17.4052871287128,12268.2523827008,1.55111881188119,1.66367156056925,2.31671958268818,-5.5,-5.48535979107015,-3.2224786899387,3.18382255971518,2.52593126657084,2.46077802313366
+42075,2874.47394950495,457.866957623762,45,18.4625544554455,19.0164310891089,3.39036633663366,-5.5,820.60396039604,3202.67326732673,2823.10495049505,20,40,10.8514851485149,32,5306970.54947483,397706.762808822,0,0,0,0,0,0,0,18.4625544554455,12273.2305326183,3.39036633663366,3.63637911613493,3.94155439531597,-5.5,-5.48535979107015,-4.03737887029125,1.55440219190244,1.23320726067845,1.29017830828935
+42076,2874.47524128713,457.863337029703,45,19.3862475247525,19.967834950495,4.55824752475248,-5.5,859.688118811881,3774.35247524753,3309.81782178218,20,40,11,32,5306973.02226653,397702.296030471,0,0,0,0,0,0,0,19.3862475247524,12278.4939071232,4.55824752475248,4.88900444948426,4.98795249037137,-5.5,-5.48535979107015,-4.26309466530787,0.844151135824773,0.669719404174909,0.705363032355089
+42077,2874.47575772277,457.859002178218,69.950495049505,20.4936732673267,21.1084834653465,6.25397029702971,-5.5,914.633663366337,4702.69504950495,4079.76732673267,20,40,10.8217821782178,32,5306974.07462577,397696.914225871,0,0,0,0,0,0,0,20.4936732673267,12284.017930143,6.25397029702971,6.70777276641662,6.49400109740498,-5.5,-5.48535979107015,-4.47465279414264,1.22229742052184,0.969727179714811,0.969485519446075
+42078,2874.47526019802,457.854361287129,200.049504950495,21.9479603960396,22.6063992079208,7.54987128712871,-5.5,989.138613861386,5000.17128712871,4322.87128712871,20,40,11,32,5306973.25554233,397691.11796069,0,0,0,0,0,0,0,21.9479603960396,12289.9219925193,7.54987128712871,8.09770731303367,7.67979458750756,-5.5,-5.48535979107015,-4.56505860327895,2.11588165758974,1.67866504336466,1.66437193418422
+42079,2874.47391059406,457.849887227723,225,22.915198019802,23.602653960396,8.04785148514851,-5.5,881.049504950495,5083.15148514851,4394.39306930693,20,40,10.4950495049505,32,5306970.85443227,397685.501477623,0,0,0,0,0,0,0,22.9151980198019,12296.1636609736,8.04785148514851,8.63182209961628,8.15884734089136,-5.5,-5.48535979107015,-4.57771925423726,2.38483539742909,1.89204334821031,1.92062479069626
+42080,2874.47205633663,457.845595247525,225,24.183396039604,24.9088979207921,9.27079207920792,-5.5,829.014851485148,5510.98415841584,4764.2396039604,20,40,11,32,5306967.51451161,397680.095176974,0,0,0,0,0,0,0,24.1833960396039,12302.6835380638,9.27079207920792,9.94350207604231,9.27193264625696,-5.5,-5.48535979107015,-4.63865542088934,3.32182414699803,2.63541680403915,2.59393017781481
+42081,2874.46981,457.841188019802,225,26.0351584158416,26.8162131683168,9.39116831683169,-5.5,914.722772277228,5787.59603960396,4945.2198019802,20,40,11,32,5306963.45087486,397674.532454032,0,0,0,0,0,0,0,26.0351584158415,12309.6578528878,9.39116831683169,10.0726130903431,9.48033806246657,-5.5,-5.48535979107015,-4.59829854767218,2.96018482587755,2.34850506467344,2.33474745677217
+42082,2874.46727287129,457.83649,225,28.3419702970297,29.1922294059406,9.12057425742574,-5.5,1003.29207920792,5870.01782178218,4969.03069306931,20,40,11,32,5306958.85501974,397668.598005012,0,0,0,0,0,0,0,28.3419702970297,12317.2019308031,9.12057425742574,9.78238410359856,9.38216005904904,-5.5,-5.48535979107015,-4.5178244664952,2.09926580862132,1.66548262140403,1.68200817918585
+42083,2874.46447742574,457.831377722772,225,30.771,31.69413,9.56413861386138,-5.5,1089.72772277228,5642.70594059406,4773.55445544554,20,40,11,32,5306953.78983069,397662.139126154,0,0,0,0,0,0,0,30.771,12325.4146446645,9.56413861386138,10.2581345099708,9.89859143940517,-5.5,-5.48535979107015,-4.49211176150357,1.94936315055473,1.54655519883235,1.54418129924244
+42084,2874.46144980198,457.825796435644,225,33.0695544554455,34.0616410891089,10.3596534653465,-5.5,1182.09405940594,5576.32475247525,4876.29900990099,20,40,11,32,5306948.30493703,397655.08848265,0,0,0,0,0,0,0,33.0695544554455,12334.2821979373,10.3596534653465,11.1113737488279,10.7069896023247,-5.5,-5.48535979107015,-4.49843553523185,2.1668679804377,1.7191157734646,1.7915701607713
+42085,2874.45827148515,457.81982970297,225,34.9618217821782,36.0106764356435,11.3751386138614,-5.44346534653465,1667.09405940594,4191.87425742574,4382.6,20,40,11,32,5306942.54943318,397647.55282376,0,0,0,0,0,0,0,34.9618217821782,12343.7557314632,11.3751386138614,12.2005448354164,11.6793877284444,-5.44346534653465,-5.4288251376048,-4.47920986736634,2.71364430533643,2.15290860864256,2.11573072177421
+42086,2874.45494188119,457.813476930693,225,37.3793465346535,38.5007269306931,11.8896732673267,-5.08554455445545,1888.4702970297,5788.85346534653,5779.07524752476,20,40,11,32,5306936.52223375,397639.531387501,0,0,0,0,0,0,0,37.3793465346534,12353.7805282454,11.8896732673267,12.7524153068083,12.2561479775503,-5.08554455445545,-5.07090434552559,-4.16940036269352,2.60165216100706,2.06405803557633,2.01048388215084
+42087,2874.45140059406,457.806638514852,225,39.8394356435644,41.0346187128713,12.2580099009901,-5.07653465346535,2013.17821782178,5248.03069306931,5184.74059405941,20,40,11,32,5306930.1136676,397630.898134913,0,0,0,0,0,0,0,39.8394356435643,12364.525015044,12.2580099009901,13.1474792938141,12.7102956762727,-5.07653465346535,-5.06189444453549,-4.13700148831529,2.37088272576208,1.88097379613733,1.9198586331583
+42088,2874.44766178218,457.799368910891,225,42.3311287128713,43.6010625742574,13.0584950495049,-5.23653465346535,1492.84158415842,5625.92178217822,5398.79207920792,20,40,11,32,5306923.34876012,397621.721348892,0,0,0,0,0,0,0,42.3311287128712,12375.931834736,13.0584950495049,14.0060494858854,13.5339097333014,-5.23653465346535,-5.22189444453549,-4.26997980359566,2.56018458910178,2.03115914298425,1.99336223157016
+42089,2874.44371069307,457.791647425743,225,44.7602673267327,46.1030753465346,13.4849306930693,-5.41009900990099,1590.23762376238,5506.8495049505,5122.84158415841,20,40,11,32,5306916.20064455,397611.974768696,0,0,0,0,0,0,0,44.7602673267326,12388.0336090484,13.4849306930693,14.4634282805831,14.0353873207456,-5.41009900990099,-5.39545880097114,-4.39624059404492,2.4205070916381,1.92034399815047,1.91935633840617
+42090,2874.43954435644,457.783513069307,225,47.0696336633663,48.4817226732673,14.0311089108911,-4.74980198019802,1671.66831683168,5369.72574257426,4904.5198019802,20,40,11,32,5306908.66295932,397601.706877377,0,0,0,0,0,0,0,47.0696336633663,12400.7919731848,14.0311089108911,15.0492384461438,14.6334620136232,-4.74980198019802,-4.73516177126817,-3.85130454944579,2.34502182450848,1.86045667942213,1.89202223720443
+42091,2874.43516376238,457.774992277228,225,49.2126831683168,50.6890636633663,15.4866534653465,-2.59148514851485,1747.90594059406,5255.75940594059,4695.0495049505,20,40,11,32,5306900.73695669,397590.950627624,0,0,0,0,0,0,0,49.2126831683168,12414.1707111936,15.4866534653465,16.61040066134,15.9959751299544,-2.59148514851485,-2.576844939585,-2.1161096178444,3.19824825179981,2.53737609617269,2.56744511278697
+42092,2874.4305750495,457.766123465346,225,51.2568118811881,52.7945162376238,16.7054653465347,-3.3509900990099,1816.13366336634,5138.80495049505,4545.46237623762,20,40,11,32,5306892.43316076,397579.754062186,0,0,0,0,0,0,0,51.256811881188,12428.1311866612,16.7054653465347,17.9176523359925,17.1502069401427,-3.3509900990099,-3.33634989008005,-2.75684054908188,3.89514663792844,3.090270420567,3.0261942486884
+42093,2874.42579415842,457.756924851485,225,53.1057227722772,54.6988944554456,16.372099009901,-3.88762376237624,1881.71782178218,4788.04257425742,4263.75742574258,20,40,11,32,5306883.78069867,397568.140390708,0,0,0,0,0,0,0,53.1057227722771,12442.6326463972,16.372099009901,17.5600961712033,16.9709776600326,-3.88762376237624,-3.87298355344638,-3.16713627219021,3.15638360682129,2.50416217996608,2.53549666350312
+42094,2874.42082564356,457.747433366337,225,54.851297029703,56.4968359405941,16.9355148514852,-4.52247524752475,1942.73762376238,4690.58118811881,4153.60495049505,20,40,11,32,5306874.78719255,397556.155754541,0,0,0,0,0,0,0,54.8512970297029,12457.6317875688,16.9355148514852,18.1643947621545,17.5506611645828,-4.52247524752475,-4.5078350385949,-3.68721947272116,3.27499981066333,2.59826804559992,2.58254029249185
+42095,2874.41568108911,457.737664653465,225,56.4190594059406,58.1116311881188,17.5734257425743,-3.58059405940594,1736.28217821782,4429.33861386139,3937.9900990099,20,40,11,32,5306865.47375652,397543.820014328,0,0,0,0,0,0,0,56.4190594059405,12473.0913601761,17.5734257425743,18.8485939347474,18.1841545985366,-3.58059405940594,-3.56595385047609,-2.92285604157212,3.47642725507326,2.75807339600425,2.78032786008867
+42096,2874.4103760396,457.727642277228,225,58.0379108910891,59.7790482178218,18.4185940594059,-3.9419801980198,1477.83168316832,4500.20693069307,4058.72376237624,20,40,11,32,5306855.86866542,397531.163026203,0,0,0,0,0,0,0,58.037910891089,12488.9900851485,18.4185940594059,19.7550896086035,18.9959268419635,-3.9419801980198,-3.92733998908995,-3.22806153355313,3.91807137689352,3.10845809084189,3.12117482311172
+42097,2874.4049029703,457.717342970297,225,59.6384059405941,61.4275581188119,19.257702970297,-3.71118811881188,1518.80198019802,4458.91089108911,4017.72277227723,20,40,11,32,5306845.95849767,397518.15556049,0,0,0,0,0,0,0,59.638405940594,12505.3370704896,19.257702970297,20.6550861920868,19.801862839869,-3.71118811881188,-3.69654790988203,-3.04447877848789,4.3543253186157,3.45456640903266,3.38275162156099
+42098,2874.39928188119,457.706794455445,225,61.1741881188119,63.0094137623762,19.4016930693069,-2.07485148514851,1558.74257425743,4389.00693069307,3965.27326732673,20,40,11,32,5306835.77968908,397504.832799244,0,0,0,0,0,0,0,61.1741881188118,12522.1206824808,19.4016930693069,20.8095245438696,20.0129197128462,-2.07485148514851,-2.06021127621866,-1.68505555753962,4.09154626175795,3.24608687744206,3.24108892119791
+42099,2874.39351445545,457.695992574257,225,62.6695247524752,64.5496104950495,19.4585247524752,-3.07108910891089,1596.94059405941,4277.68217821782,3947.93465346535,20,40,11,32,5306825.33545166,397491.189615157,0,0,0,0,0,0,0,62.6695247524752,12539.3244356986,19.4585247524752,20.8704800646861,20.1463148359788,-3.07108910891089,-3.05644889998104,-2.49734919181251,3.81751728284482,3.02868205892571,3.00018911131886
+42100,2874.3876029703,457.684949009901,225,64.1036534653465,66.0267630693069,19.2480396039604,-3.00643564356436,1632.06930693069,4185.01386138614,3868.63465346535,20,40,11,32,5306814.62974724,397477.240630605,0,0,0,0,0,0,0,64.1036534653465,12556.9329941145,19.2480396039604,20.6447216296622,20.0493150183827,-3.00643564356436,-2.9917954346345,-2.43221375346852,3.38780344108825,2.68776242279237,2.93823667608819
+42101,2874.38155316832,457.673651188119,225,65.4622772277228,67.4261455445544,20.4898118811881,-3.55841584158416,1667.21287128713,4056.67326732673,3816.20396039604,20,40,11,32,5306803.67349361,397462.970370175,0,0,0,0,0,0,0,65.4622772277227,12574.9315795105,20.4898118811881,21.9765997595016,21.183341155566,-3.55841584158416,-3.5437756326543,-2.90256643253757,4.15004381619052,3.29249675079015,3.17938813284432
+42102,2874.37538871287,457.662112871287,225,66.7888118811881,68.7924762376237,19.8561584158416,-1.93475247524752,1704.35643564356,3957.9900990099,3781.76534653465,20,40,11,32,5306792.51022119,397448.396750048,0,0,0,0,0,0,0,66.7888118811881,12593.3040230749,19.8561584158416,21.2969669412557,20.7204589538899,-1.93475247524752,-1.92011226631767,-1.55705736856635,3.19803469778323,2.53720667003243,2.51414492383672
+42103,2874.36911554455,457.650313564356,225,68.0994455445544,70.1424289108911,20.506801980198,-2.73079207920792,1735.56435643564,3903.11089108911,3752.23267326733,20,40,11,32,5306781.15139012,397433.494436407,0,0,0,0,0,0,0,68.0994455445544,12612.0408380914,20.506801980198,21.9948226991743,21.3499059510024,-2.73079207920792,-2.71615187027806,-2.21320916804069,3.47906314579841,2.76016461769548,2.72697156993114
+42104,2874.36273653465,457.63826,225,69.3739108910891,71.4551282178218,20.9520396039604,-2.44217821782178,1766.62376237624,3848.99306930693,3700.24158415841,20,40,11,32,5306769.60217237,397418.271905794,0,0,0,0,0,0,0,69.373910891089,12631.1346105336,20.9520396039604,22.4723677889992,21.8017731603719,-2.44217821782178,-2.42753800889193,-1.98118704442362,3.60079220466338,2.8567401114833,2.8877833085695
+42105,2874.35627287129,457.625994752475,225,70.5742178217822,72.6914443564356,21.1933663366337,-3.51346534653465,1800.28712871287,3791.51584158416,3657.7099009901,20,40,11,32,5306757.90087523,397402.782878122,0,0,0,0,0,0,0,70.5742178217821,12650.5737561882,21.1933663366337,22.7312057444661,22.0748842856231,-3.51346534653465,-3.4988251376048,-2.85047935747768,3.61590786233795,2.86873233517631,2.90985881774213
+42106,2874.34971118812,457.613497227723,225,71.7478910891089,73.9003278217822,20.3660693069307,-1.82059405940594,1826.89603960396,3761.10495049505,3589.41188118812,20,40,11,32,5306746.02319792,397387.001260587,0,0,0,0,0,0,0,71.7478910891088,12670.3456811332,20.3660693069307,21.8438781394382,21.4384626392581,-1.82059405940594,-1.80595385047608,-1.4078624126317,3.63006300772451,2.87996252267708,2.78354044492188
+42107,2874.34304178218,457.600788316832,225,72.886504950495,75.0731000990099,21.2866138613861,0.658811881188119,1856.36138613861,3748.27128712871,3504.91584158416,20,40,11,32,5306733.95070665,397370.952749751,0,0,0,0,0,0,0,72.886504950495,12690.4404872388,21.2866138613861,22.8312195240914,22.2878899486517,0.658811881188119,0.673452090117976,0.556980069345512,3.11384445418879,2.47041313344337,2.4902591241639
+42108,2874.33625623762,457.587887623762,225,73.9986336633663,76.2185926732673,22.8952178217822,-1.63039603960396,1885.28217821782,3708.72475247525,3465.54059405941,20,40,11,32,5306721.66738016,397354.661481444,0,0,0,0,0,0,0,73.9986336633663,12710.8436602036,22.8952178217822,24.5565474877722,23.7211600257811,-1.63039603960396,-1.6157558306741,-1.31780437686485,4.3841407412304,3.47822090195616,3.44264924362336
+42109,2874.32938019802,457.574801386139,225,75.0926237623762,77.3454024752475,22.9280495049505,-0.653960396039604,1910.88613861386,3631.4801980198,3443.17326732673,20,40,11,32,5306709.22058297,397338.136066544,0,0,0,0,0,0,0,75.0926237623761,12731.5476667492,22.9280495049505,24.5917615133868,23.8115052227288,-0.653960396039604,-0.639320187109747,-0.515583696405367,4.11716370660075,3.2664108445239,3.23332765050313
+42110,2874.32240138614,457.561533069307,225,76.1197326732674,78.4033246534653,19.1726039605941,0.0485148514851487,1937.90099009901,3603.83861386139,3364.32574257426,20,40,11,32,5306696.58749857,397321.380413415,0,0,0,0,0,0,0,76.1197326732673,12752.5477776678,19.1726039605941,20.5638122025052,20.6763199299882,0.0485148514851487,0.0631550604150056,0.0242779876966072,2.55254100114656,2.0250949929122,2.03266853973057
+42111,2874.31532277228,457.548082871287,225,77.1302277227723,79.4441345544554,17.4881463147525,-3.23128712871287,1962.32673267327,3535.79603960396,3357.97920792079,20,40,11,32,5306683.77362657,397304.394863502,0,0,0,0,0,0,0,77.1302277227722,12773.8371558581,17.4881463147525,18.7571264354933,19.2990909936761,-3.23128712871287,-3.21664691978302,-2.47728601984632,3.19244311939042,2.53277051116146,2.52297653050984
+42112,2874.30815425742,457.534453366337,225,78.1170495049505,80.460560990099,20.2004752475247,-4.12257425742574,1848.61881188119,3392.39108910891,3229.78217821782,20,40,11,32,5306670.79725192,397287.182946429,0,0,0,0,0,0,0,78.1170495049504,12795.4027134214,20.2004752475247,21.6662681942022,21.6611255668949,-4.12257425742574,-4.10793404849589,-3.25813065115484,2.28927229133149,1.81622698812894,2.01372535319549
+42113,2874.3008939604,457.520653861386,225,79.0546336633664,81.4262726732673,21.5255863585149,-1.88861386138614,1721.27227722772,3428.71386138614,3255.59801980198,20,40,11,32,5306657.65468563,397269.756188964,0,0,0,0,0,0,0,79.0546336633663,12817.2314361937,21.5255863585149,23.0875324152678,22.8451218727732,-1.88861386138614,-1.87397365245628,-1.49624439233005,2.78912452746881,2.21279192485002,2.19228371013138
+42114,2874.29354544554,457.506681782178,225,80.0363564356435,82.4374471287129,19.119202970198,-1.03821782178218,1740.58910891089,3477.91584158416,3294.17227722772,20,40,11,32,5306644.3525891,397252.111499482,0,0,0,0,0,0,0,80.0363564356435,12839.3262330033,19.119202970198,20.5065363134194,20.8535928744502,-1.03821782178218,-1.02357761285232,-0.80065715783401,2.92260217225145,2.31868832768689,2.32298574015378
+42115,2874.28610544554,457.49254980198,225,81.0014356435644,83.4314787128713,20.2040209020792,-0.754257425742574,1762.90594059406,3461.30495049505,3257.39900990099,20,40,11,32,5306630.88463093,397234.26455184,0,0,0,0,0,0,0,81.0014356435643,12861.6942018702,20.2040209020792,21.6700711296064,21.8314865208116,-0.754257425742574,-0.739617216812717,-0.595307695240261,2.57705568715456,2.04454407046486,1.94427401457373
+42116,2874.27858069307,457.478258316832,225,81.9446435643564,84.4029828712872,20.8984515951485,-1.32386138613861,1781.65346534653,3384.18811881188,3191.48415841584,20,40,11,32,5306617.26327543,397216.216058545,0,0,0,0,0,0,0,81.9446435643563,12884.3281784104,20.8984515951485,22.4148913110112,22.4778411131779,-1.32386138613861,-1.30922117720876,-1.03333018574589,1.93589588549205,1.53587075104702,1.60940477223314
+42117,2874.27096376238,457.463803564357,225,82.7668811881187,85.2498876237624,20.7577816283168,-2.3090099009901,1800.50495049505,2930.93564356436,2835.28910891089,20,40,11,32,5306603.47485288,397197.961085539,0,0,0,0,0,0,0,82.7668811881187,12907.2138458471,20.7577816283168,22.264014007834,22.4042180391595,-2.3090099009901,-2.29436969206024,-1.81381869330846,2.46538326424205,1.95594715296777,1.90344277980671
+42118,2874.26328841584,457.449221683168,225,83.3119801980198,85.8113396039604,19.6943239823762,-3.81732673267327,1808.42079207921,2505.76831683168,2532.17623762376,20,40,11,32,5306589.58110265,397179.545755662,0,0,0,0,0,0,0,83.3119801980197,12930.2868125688,19.6943239823762,21.1233894290658,21.5280182189357,-3.81732673267327,-3.80268652374341,-2.95830478200915,2.98618196424292,2.36913026705417,2.31906731986625
+42119,2874.25559732673,457.434533267326,225,83.7200099009901,86.2316101980198,21.1913366335644,-2.1309900990099,1814.39603960396,2312.60297029703,2379.36831683168,20,40,11,32,5306575.6606147,397160.997126007,0,0,0,0,0,0,0,83.72000990099,12953.4908215622,21.1913366335644,22.7290287614736,22.8266240463709,-2.1309900990099,-2.11634989008005,-1.65473049738065,2.62720048292764,2.08432716299698,2.16421213358664
+42120,2874.24788425743,457.419768811881,225,84.0564356435644,86.5781287128713,21.6120297029703,-3.06267326732673,1823.12376237624,2212.25841584158,2254.40495049505,20,40,11,32,5306561.70115891,397142.352971656,0,0,0,0,0,0,0,84.0564356435642,12976.7933833884,21.6120297029703,23.1802482876235,23.2040658264134,-3.06267326732673,-3.04803305839688,-2.41484745989148,2.25204317297801,1.78669073341871,1.84501502885155
+42121,2874.24015811881,457.404939009901,225,84.2677821782178,86.7958156435643,24.4190891089109,-3.40594059405941,1827.06435643564,2094.44653465347,2172.16039603961,20,40,11,32,5306547.71900477,397123.62690436,0,0,0,0,0,0,0,84.2677821782177,13000.1724234599,24.4190891089109,26.1909943805215,25.6033012169553,-3.40594059405941,-3.39130038512955,-2.74520438649618,3.47068901974146,2.75352088474846,2.67948898720055
+42122,2874.23242752475,457.390060495049,225,84.4157821782178,86.9482556435644,24.7211881188119,-3.47811881188119,1831.45544554455,2020.28217821782,2070.43663366337,20,40,11,32,5306533.72973943,397104.839925573,0,0,0,0,0,0,0,84.4157821782177,13023.6044274753,24.7211881188119,26.5150143894329,25.8682049100124,-3.47811881188119,-3.46347860295133,-2.81195478265364,3.79720144793356,3.0125642000795,3.04995661479495
+42123,2874.22469148515,457.37515019802,225,84.5508514851485,87.0873770297029,24.3025544554455,-2.62,1833.76237623762,1998.63762376238,1969.21188118812,20,40,11,32,5306519.7311533,397086.013089783,0,0,0,0,0,0,0,84.5508514851484,13047.0743032454,24.3025544554455,26.0660037045616,25.5215365832737,-2.62,-2.60535979107014,-2.10386654590441,3.35844899821305,2.66447365475316,2.72312235388776
+42124,2874.21690079208,457.360264455445,225,84.6627128712871,87.2025942574257,24.0502079207921,-5.15465346534654,1836.79207920792,2031.23762376238,1821.26732673267,20,40,11,32,5306505.6308448,397067.214939735,0,0,0,0,0,0,0,84.662712871287,13070.576153988,24.0502079207921,25.7953463249364,25.3097501549335,-5.15465346534654,-5.14001325641668,-4.14521217125551,3.34842249885937,2.65651898776506,2.53608396910366
+42125,2874.20900653465,457.345461188119,225,84.7074059405941,87.2486281188119,22.2989620462376,-4.51019801980198,1834.98514851485,1986.56435643564,1793.71485148515,20,40,11,32,5306491.33692644,397048.516000694,0,0,0,0,0,0,0,84.7074059405939,13094.1031625138,22.2989620462376,23.9170260217179,23.8237604156957,-4.51019801980198,-4.49555781087213,-3.56179975060415,3.35759421494567,2.66379550019501,2.52270530254766
+42126,2874.20106287129,457.330729009901,225,84.7734554455445,87.3166591089109,23.5841386138614,-2.12376237623762,1837.55445544554,1880.57920792079,1851.21089108911,20,40,11,32,5306476.9499705,397029.903880138,0,0,0,0,0,0,0,84.7734554455444,13117.6408479373,23.5841386138614,25.2954579570979,24.9239365788397,-2.12376237623762,-2.10912216730777,-1.69681950438216,3.19257132758894,2.53287222697357,2.5671708697703
+42127,2874.19312019802,457.31600029703,225,84.7965940594059,87.3404918811881,22.1676336633663,-3.80841584158416,1838.0396039604,1812.19306930693,1907.53267326733,20,40,11,32,5306462.56483055,397011.296015679,0,0,0,0,0,0,0,84.7965940594058,13141.1895327833,22.1676336633663,23.7761681493197,23.7181529754123,-3.80841584158416,-3.79377563265431,-3.00966166197532,2.29189042076499,1.81830411864485,1.92328269777389
+42128,2874.18520465347,457.301232475248,225,84.8065841584159,87.3507816831683,21.0210264025743,-3.42990099009901,1839.22277227723,1759.83267326733,1927.21683168317,20,40,11,32,5306448.23087102,396992.640243472,0,0,0,0,0,0,0,84.8065841584158,13164.7412160892,21.0210264025743,22.5463604283957,22.7438404808464,-3.42990099009901,-3.41526078116916,-2.6734581019796,2.62376107656132,2.08159846065375,2.07275347600239
+42129,2874.17734712871,457.286384059406,225,84.8039504950495,87.3480690099009,24.7355247524753,-3.70059405940594,1839.42079207921,1750.12178217822,1943.54554455446,20,40,11,32,5306434.00623603,396973.885913469,0,0,0,0,0,0,0,84.8039504950494,13188.2998535479,24.7355247524753,26.5303913222103,25.9025229397135,-3.70059405940594,-3.68595385047609,-2.98927172129359,3.6904867691429,2.92790057994877,2.99728615411618
+42130,2874.16954306931,457.271470495049,225,84.8042574257426,87.3483851485148,25.9767821782178,-5.01019801980198,1837.9900990099,1778.7495049505,1958.24455445545,20,40,11,32,5306419.88214651,396955.052113534,0,0,0,0,0,0,0,84.8042574257425,13211.8590887789,25.9767821782178,27.8617172417566,26.9572842056442,-5.01019801980198,-4.99555781087213,-4.08242753488243,4.89841887642585,3.8862308324845,3.83016714311843
+42131,2874.16179455446,457.256486930693,225,84.824099009901,87.368821980198,25.9462079207921,-5.07425742574257,1839.30693069307,1788.60396039604,1966.24257425743,20,40,11,32,5306405.86256258,396936.132869998,0,0,0,0,0,0,0,84.8240990099009,13235.4196514027,25.9462079207921,27.8289244458888,26.9322334961093,-5.07425742574257,-5.05961721681272,-4.13383410788397,4.86431589823922,3.85917474588761,3.8177487181965
+42132,2874.1540729703,457.241462871287,225,84.8915841584158,87.4383316831683,23.8099526952475,-3.84574257425742,1838.0198019802,1886.1099009901,1876.33465346535,20,40,11,32,5306391.89382573,396917.163986468,0,0,0,0,0,0,0,84.8915841584157,13258.990468867,23.8099526952475,25.53765762762,25.1210355983081,-3.84574257425742,-3.83110236532757,-3.08102908470783,3.76883966798272,2.99006297540076,3.09438947318231
+42133,2874.14629712871,457.226481782178,225,84.951495049505,87.5000399009901,25.3913465346535,-3.36742574257426,1846.06435643564,1931.03762376238,1794.45247524752,20,40,11,32,5306377.82369026,396898.246737176,0,0,0,0,0,0,0,84.9514950495048,13282.5819373488,25.3913465346535,27.2338010413462,26.4714828478716,-3.36742574257426,-3.3527855336444,-2.72950430573545,4.14723335906142,3.29026703434,3.2320742343488
+42134,2874.13845940594,457.211559108911,225,84.992297029703,87.5420659405941,26.2662277227723,-4.33019801980198,1843.34158415842,1823.57425742574,1776.07920792079,20,40,11,32,5306363.63769004,396879.400107664,0,0,0,0,0,0,0,84.9922970297028,13306.1870375688,26.2662277227723,28.172165620772,27.2161649082175,-4.33019801980198,-4.31555781087213,-3.53105885528965,5.06136036151442,4.01550279538043,3.97256224969811
+42135,2874.13058930693,457.196668613861,225,85.0244455445545,87.5751789108911,25.278801980198,-4.78712871287129,1842.73267326733,1783.8900990099,1791.95544554455,20,40,11,32,5306349.39106189,396860.592393529,0,0,0,0,0,0,0,85.0244455445543,13329.7981911442,25.278801980198,27.1130899951579,26.3761182870207,-4.78712871287129,-4.77248850394144,-3.88053503856082,4.19126484260162,3.32520004298029,3.37815188781265
+42136,2874.12269693069,457.181791485148,225,85.055900990099,87.607578019802,24.1409405940594,-3.69623762376238,1845.36633663366,1775.13168316832,1754.36732673267,20,40,11,32,5306335.10293123,396841.800497361,0,0,0,0,0,0,0,85.0559009900989,13353.4206257976,24.1409405940594,25.8926627696684,25.41272476657,-3.69623762376238,-3.68159741483252,-2.96407497442448,3.30663628630263,2.62336729704456,2.60733497548679
+42137,2874.11475475248,457.166962574257,225,85.0797227722772,87.6321144554456,23.6320396039604,-2.39623762376238,1841.79207920792,1725.10396039604,1673.0801980198,20,40,11,32,5306320.72153627,396823.066917383,0.693069306930693,0.693069306930693,1838822.65965005,137510.562767173,1.38996515670906,0,0,85.0797227722771,13377.0511163642,23.6320396039604,25.3468347532146,24.9813952774494,-2.39623762376238,-2.38159741483252,-1.91130227529519,2.64692449719948,2.09997549245539,2.10091908553094
+42138,2874.10678108911,457.152173960396,225,85.056891089109,87.6085978217823,22.6187425742574,-3.45653465346535,1844.72772277228,1670.59801980198,1698.24257425743,20,40,11,32,5306306.28098203,396804.382394039,2,2,5306306.82938374,396803.935593803,19.824725987845,0,0,85.0568910891088,13400.6796962872,22.6187425742574,24.2600105603718,24.117212865802,-3.45653465346535,-3.44189444453549,-2.74628422259471,2.68123330824714,2.12719487950312,2.22392880737172
+42139,2874.09881851485,457.137381386139,225,85.0338415841585,87.5848568316832,25.1121782178218,-4.08386138613861,1844.4900990099,1667.64356435643,1753.29504950495,20,40,11,32,5306291.86111635,396785.693211549,2,2,5306291.9245986,396785.641490552,43.4219045019346,0,0,85.0338415841583,13424.3012791805,25.1121782178218,26.9343756293356,26.2367412205632,-4.08386138613861,-4.06922117720876,-3.30485423327012,3.94045690519643,3.12621797060859,2.84794855072539
+42140,2874.09086623762,457.122578118812,225,85.0364653465346,87.5875593069307,22.3224526952475,-2.27009900990099,1842.85148514851,1637.41584158416,1717.94059405941,20,40,11,32,5306277.46062211,396766.990957684,2,2,5306277.02114107,396767.349016803,67.0169811548077,0,0,85.0364653465346,13447.9234366612,22.3224526952475,23.9422212062504,23.8657879463492,-2.27009900990099,-2.25545880097114,-1.79041322814448,2.32583679716842,1.84523596297221,2.17150616267825
+42141,2874.08291910891,457.107768514852,225,85.0349405940594,87.5859888118812,20.477701870198,-3.04346534653465,1839.15346534653,1606.82871287129,1698.20594059406,20,40,11,32,5306263.06986551,396748.280888201,2,2,5306262.11774129,396749.056613946,90.6119663669428,0,0,85.0349405940593,13471.5463474423,20.477701870198,21.9636110182601,22.2938718032659,-3.04346534653465,-3.0288251376048,-2.32999220345072,3.5277314136899,2.79877628566732,2.54504372675042
+42142,2874.07499356436,457.092941584159,225,84.9957920792079,87.5456658415842,22.0302079207921,-1.69831683168317,1844.5099009901,1645.7297029703,1744.48316831683,20,40,11,32,5306248.71953611,396729.549858833,2,2,5306247.22020669,396730.771409986,114.197665871592,0,0,84.9957920792078,13495.1610683719,22.0302079207921,23.628770478774,23.6139880043775,-1.69831683168317,-1.68367662275331,-1.33326336663605,2.00537355758907,1.59099185813979,1.75453246878646
+42143,2874.06709871287,457.078076138614,225,85.0249603960396,87.5757092079208,22.943900990099,-3.42524752475248,1843.93069306931,1639.37722772277,1749.0900990099,20,40,11,32,5306234.42697942,396710.77177999,2,2,5306232.32268177,396712.486217912,137.783350045701,0,0,85.0249603960395,13518.7755873213,22.943900990099,24.6087632187574,24.3911804670929,-3.42524752475248,-3.41060731582262,-2.70979060306918,2.81084661583114,2.23002545502971,2.07912744736886
+42144,2874.05923613862,457.063166336633,225,85.0208613861386,87.5714872277228,22.6803267326733,-1.88643564356436,1843.36633663366,1600.11683168317,1695.23267326733,20,40,11,32,5306220.19526055,396691.93942812,2,2,5306217.42285213,396694.19819704,161.372683027294,0,0,85.0208613861385,13542.3956480198,22.6803267326733,24.3260634069708,24.1685034785541,-1.88643564356436,-1.8717954346345,-1.49938882394204,2.50548139171012,1.98775957718515,2.05071124608834
+42145,2874.05141742574,457.048207524752,225,85.0163168316832,87.5668063366337,22.5171683168317,-1.7,1841.23267326733,1628.35742574257,1723.99801980198,20,40,11,32,5306206.0459417,396673.047391268,2,2,5306202.52667012,396675.914653252,184.956241112521,0,0,85.016316831683,13566.0093530528,22.5171683168317,24.1510658411983,24.0285178102605,-1.7,-1.68535979107015,-1.3642712026207,2.49320865119221,1.97802282257045,2.05401256933018
+42146,2874.04362534653,457.033218514852,225,85.0134851485149,87.5638897029703,23.5195148514851,-3.55851485148515,1844.33663366337,1649.87128712871,1729.08514851485,20,40,11,32,5306191.94669208,396654.118530371,2,2,5306187.63243164,396657.633494948,208.536722211148,0,0,85.0134851485147,13589.6239100661,23.5195148514851,25.2261449458838,24.8793225006156,-3.55851485148515,-3.5438746425553,-2.83441119912279,2.88917255285897,2.29216645994167,2.22741365681177
+42147,2874.03584623762,457.018208910891,225,84.995801980198,87.5456760396039,24.5505049504951,-3.55495049504951,1843.10891089109,1641.36336633663,1679.72871287129,20,40,11,32,5306177.87198848,396635.164355015,2,2,5306172.73558998,396639.349141503,232.121324654793,0,0,84.9958019801979,13613.2377626238,24.5505049504951,26.331946057838,25.7579623806585,-3.55495049504951,-3.54031028611965,-2.86662771167004,3.39362096388028,2.69237783789129,2.66007987595173
+42148,2874.02807326733,457.003206039604,225,84.972702970297,87.5218840594059,23.913298129802,-3.70138613861386,1839.49504950495,1681.00693069307,1703.04653465346,20,40,11,32,5306163.80856667,396616.218677007,1.30693069306931,2,5306157.84745657,396621.075053466,81.5858353832203,0,0,84.9727029702969,13636.843905363,23.913298129802,25.6485020446085,25.2137028480952,-3.70138613861386,-3.68674592968401,-2.97188117392825,3.31711022031354,2.63167694273176,2.651034628109
+42149,2874.0202840594,456.988220693069,225,84.9932772277228,87.5430755445545,21.062097359703,-2.72554455445545,1841.37128712871,1711.24851485149,1691.37623762376,20,40,11,32,5306149.71473714,396597.294196512,1,2,5306142.95824342,396602.798399727,28.0552841195711,0,0,84.9932772277226,13660.4509934819,21.062097359703,22.5904115886401,22.7898645580669,-2.72554455445545,-2.71090434552559,-2.12763033847115,2.80654253570653,2.22661075136559,2.18220236940704
+42150,2874.01247079208,456.973254554455,225,85.0138811881188,87.5642976237624,22.2071584158416,-1.74693069306931,1840.83663366337,1669.01881188119,1670.95148514852,20,40,11,32,5306135.5759735,396578.392750325,1,2,5306128.06249187,396584.513636609,51.6395156436127,0,0,85.0138811881187,13684.063044252,22.2071584158416,23.8185609087447,23.7662268947609,-1.74693069306931,-1.73229048413945,-1.35901261068036,2.40936869317408,1.91150719006456,1.86448947774717
+42151,2874.00464485148,456.958301683168,225,85.0177128712871,87.5682442574257,20.4307920791089,-3.1690099009901,1841.84653465347,1686.91782178218,1643.99207920792,20,40,11,32,5306121.41349921,396559.507316553,1,2,5306113.16512264,396566.226887776,75.2263084015051,0,0,85.017712871287,13707.6768358361,20.4307920791089,21.9132973448333,22.2527047101058,-3.1690099009901,-3.15436969206024,-2.45457992188169,2.96498896690678,2.35231649882442,2.31338998652501
+42152,2873.99678158416,456.943388019802,225,85.0209801980198,87.5716096039604,20.7281325631683,-1.60920792079208,1840.84653465347,1667.12178217822,1649.6099009901,20,40,11,32,5306107.18106805,396540.669388525,1,2,5306098.26310891,396547.934437729,98.8204547545372,0,0,85.0209801980197,13731.2924142465,20.7281325631683,22.2322135383231,22.5071400066947,-1.60920792079208,-1.59456771186222,-1.25766007306406,3.06899430802453,2.43483062707508,2.47204391172165
+42153,2873.98889386139,456.928506930693,225,84.9933564356435,87.5431571287128,19.6921446646535,-1.29465346534653,1841.69306930693,1631.0801980198,1642.96633663366,20,40,11,32,5306092.9026698,396521.871130449,1,2,5306083.36218356,396529.643323705,122.412877865969,0,0,84.9933564356434,13754.9039704621,19.6921446646535,21.1210519750365,21.6243640994053,-1.29465346534653,-1.28001325641668,-0.989016750324522,3.31620553401184,2.63095919688599,2.68889121701278
+42154,2873.98099504951,456.913652079208,225,84.9494752475248,87.4979595049505,20.098494499703,-2.47930693069307,1839.59405940594,1651.91881188119,1699.62079207921,20,40,11,32,5306078.6032047,396503.105093181,1,2,5306068.46863206,396511.361261178,145.993626087509,0,0,84.9494752475247,13778.5087311331,20.098494499703,21.5568874887545,21.9688002212599,-2.47930693069307,-2.46466672176321,-1.92421549502624,2.87794174702402,2.28325633914341,2.34561861626151
+42155,2873.97310673267,456.898787425743,225,84.9781386138614,87.5274827722772,23.1103355334653,-3.75603960396039,1839.69306930693,1655.37227722772,1692.84257425743,20,40,11,32,5306064.32345907,396484.327101853,1,2,5306053.57709335,396493.081669394,169.571187470183,0,0,84.9781386138613,13802.1088599835,23.1103355334653,24.7872746354032,24.5300302650205,-3.75603960396039,-3.74139939503054,-2.99379811323622,2.77483501219531,2.20145513307331,2.19087834280044
+42156,2873.96522762376,456.883908217822,225,84.9645346534654,87.5134706930693,22.0925412540594,-2.89267326732673,1840.85148514851,1658.64059405941,1712.1099009901,20,40,11,32,5306050.06115501,396465.53119393,1,2,5306038.68373906,396474.799848943,193.151623453959,0,0,84.9645346534652,13825.7122601211,22.0925412540594,23.6956268620749,23.6641507729215,-2.89267326732673,-2.87803305839688,-2.30837631622833,3.36548601123277,2.67005656990511,2.53834101054549
+42157,2873.95737267327,456.869005148515,225,84.9657425742574,87.5147148514852,23.9336930693069,-4.55445544554455,1842.26732673267,1683.43762376238,1709.52277227723,20,40,11,32,5306035.84419424,396446.706273328,1,2,5306023.79426612,396456.52279292,216.725914137198,0,0,84.9657425742573,13849.3146346535,23.9336930693069,25.6703768878339,25.2294494724755,-4.55445544554455,-4.5398152366147,-3.65960491463471,3.06124780372993,2.42868482684992,2.55840892139467
+42158,2873.94954158416,456.854077425743,225,84.9333267326733,87.4813265346534,26.6339603960396,-5.26693069306931,1839.20297029703,1642.37623762376,1705.94455445545,20,40,11,32,5306021.67204451,396427.851343736,0.930693069306931,1.86138613861386,4938266.20103606,368962.926330784,222.873623411497,0,0,84.9333267326732,13872.9136507701,26.6339603960396,28.5665818226263,27.52300893895,-5.26693069306931,-5.25229048413945,-4.3097464337484,5.52909872598707,4.38658973167685,4.31359850015046
+42159,2873.94175326733,456.839117821782,225,84.8873663366337,87.4339873267326,27.1118811881188,-4.66346534653465,1839.27722772277,1690.77524752475,1764.34257425743,20,40,11,32,5306007.57989723,396408.958031006,0,0,0,0,0,0,0,84.8873663366335,13896.4977061882,27.1118811881188,29.079181646635,27.9286465287824,-4.66346534653465,-4.6488251376048,-3.82549640700091,5.95966221027644,4.72818344389288,4.75448193373246
+42160,2873.9339919802,456.824133069307,225,84.8381287128713,87.3832725742574,26.5809306930693,-4.64910891089109,1837.70792079208,1740.20297029703,1798.67425742574,20,40,11,32,5305993.53844153,396390.034198553,0,0,0,0,0,0,0,84.8381287128712,13920.0706855611,26.5809306930693,28.5097041624359,27.4743921579207,-4.64910891089109,-4.63446870196124,-3.80151627443435,5.44173924646516,4.31728183633501,4.28890834721916
+42161,2873.92623227723,456.809146336634,225,84.8773366336634,87.4236567326733,26.4021188118812,-4.66326732673267,1839.0198019802,1804.52475247525,1792.56732673267,20,40,11,32,5305979.50002554,396371.107859845,0,0,0,0,0,0,0,84.8773366336632,13943.6414993125,26.4021188118812,28.317917279867,27.3243279094372,-4.66326732673267,-4.64862711780282,-3.80896632020456,5.25715875160529,4.17084225485049,4.19752829734796
+42162,2873.91847029703,456.794162079208,225,84.854,87.3996200000001,26.796099009901,-5.26564356435644,1838.89108910891,1820.55247524753,1804.93564356436,20,40,11,32,5305965.45739698,396352.184436369,0,0,0,0,0,0,0,84.8539999999999,13967.2136459296,26.796099009901,28.7404855872413,27.6564660209015,-5.26564356435644,-5.25100335542658,-4.31336013072845,5.70449607017441,4.52574372893854,4.50105166522963
+42163,2873.91069376238,456.779196039604,225,84.8714356435644,87.4175787128713,26.2579207920792,-5.04485148514852,1837.32673267327,1851.54752475248,1820.00099009901,20,40,11,32,5305951.38746189,396333.283129428,0,0,0,0,0,0,0,84.8714356435642,13990.7856386689,26.2579207920792,28.1632559200812,27.2003500443663,-5.04485148514852,-5.03021127621866,-4.11779252745245,5.14768997258341,4.0839936298224,4.14082444133822
+42164,2873.90290495049,456.764240693069,225,84.8891485148515,87.435822970297,26.4611386138614,-4.29881188118812,1838.49504950495,1850.57128712871,1828.33267326733,20,40,11,32,5305937.29460669,396314.394641436,0,0,0,0,0,0,0,84.8891485148514,14014.3646940319,26.4611386138614,28.3812196944292,27.376362739777,-4.29881188118812,-4.28417167225827,-3.51187631229075,5.26320497597944,4.17563911362792,4.14859842266373
+42165,2873.89510405941,456.749291188119,225,84.9284950495049,87.4763499009901,26.1425742574257,-4.97455445544554,1838.76732673267,1819.82673267327,1827.36732673267,20,40,11,32,5305923.17930664,396295.512935539,0,0,0,0,0,0,0,84.9284950495048,14037.9517191144,26.1425742574257,28.039539575567,27.1053325068929,-4.97455445544554,-4.95991424651569,-4.05724452943921,5.02403416233834,3.98588952020797,3.97985263509234
+42166,2873.88727910891,456.734335940594,225,84.9503564356436,87.4988671287129,25.4304653465347,-5.00871287128713,1841.86633663366,1812.85841584158,1835.56930693069,20,40,11,32,5305909.01962962,396276.623182683,0,0,0,0,0,0,0,84.9503564356434,14061.5477425193,25.4304653465347,27.2757584041939,26.5001331478212,-5.00871287128713,-4.99407266235728,-4.06709580456769,4.36664503818745,3.46434043515315,3.49085883239307
+42167,2873.87945930693,456.719396831683,225,84.9668712871287,87.5158774257426,25.6519405940594,-4.86990099009901,1840.36633663366,1773.27326732673,1821.70495049505,20,40,11,32,5305894.86918879,396257.753611818,0,0,0,0,0,0,0,84.9668712871286,14085.1479985974,25.6519405940594,27.5133044050899,26.6901954971119,-4.86990099009901,-4.85526078116916,-3.95800590673196,4.55577433547583,3.61438887424958,3.55827856938973
+42168,2873.87164217822,456.704452673267,225,85.0200792079208,87.5706815841584,25.2845742574257,-4.46762376237624,1841.35148514851,1778.35742574257,1796.73168316832,20,40,11,32,5305880.72387352,396238.877747218,0,0,0,0,0,0,0,85.0200792079207,14108.7565178493,25.2845742574257,27.119281122098,26.3815030205459,-4.46762376237624,-4.45298355344639,-3.6228697606431,4.1468913011235,3.28999565777169,3.40455020934892
+42169,2873.86380039604,456.689522871287,225,85.0251683168316,87.5759233663367,26.0677425742574,-4.9780198019802,1843.64356435644,1759.36930693069,1765.78217821782,20,40,11,32,5305866.53263062,396220.018852111,0,0,0,0,0,0,0,85.0251683168315,14132.3744275578,26.0677425742574,27.9592779333491,27.0471889093181,-4.9780198019802,-4.96337959305035,-4.05718906604772,4.93127993375268,3.91230162336483,3.81853813346614
+42170,2873.85594207921,456.674607722772,225,85.0215742574257,87.5722214851485,25.9242673267327,-4.49495049504951,1841.9603960396,1691.35940594059,1756.54851485149,20,40,11,32,5305852.31049213,396201.177566718,0,0,0,0,0,0,0,85.0215742574256,14155.9946124313,25.9242673267327,27.8053917918593,26.9268051981616,-4.49495049504951,-4.48031028611965,-3.65859492995123,4.7172366834625,3.74248734252288,3.76495430502908
+42171,2873.84808742574,456.659692079208,225,85.0038316831683,87.5539466336633,25.7593663366337,-4.76346534653465,1839.22772277228,1697.76336633663,1780.22178217822,20,40,11,32,5305838.09521101,396182.335693707,0,0,0,0,0,0,0,85.0038316831682,14179.6090166667,25.7593663366337,27.6285252066332,26.7847675936741,-4.76346534653465,-4.7488251376048,-3.87363326335227,4.59541064513443,3.64583490868785,3.66395447223249
+42172,2873.84023158416,456.644784851485,225,84.9990297029703,87.5490005940595,25.665603960396,-4.53643564356436,1842.19306930693,1720.89504950495,1768.03762376238,20,40,11,32,5305823.8776009,396163.504171613,0,0,0,0,0,0,0,84.9990297029702,14203.217489439,25.665603960396,27.5279592167148,26.704294436393,-4.53643564356436,-4.52179543463451,-3.68576469005733,4.52528786153791,3.59020199313955,3.57916957185094
+42173,2873.83236663366,456.629872376238,225,84.9795247524753,87.5289104950495,25.4339603960396,-4.32980198019802,1841.23762376238,1681.30693069307,1791.56435643564,20,40,11,32,5305809.64329601,396144.665716137,0,0,0,0,0,0,0,84.9795247524751,14226.8269521452,25.4339603960396,27.2795070625298,26.5064489641103,-4.32980198019802,-4.31516177126817,-3.51288148843477,4.29268321732252,3.40566176435689,3.41834133134401
+42174,2873.8245349505,456.614963069307,225,84.7010792079208,87.2421115841584,25.758405940594,-4.5509900990099,1827.10396039604,473.373267326732,505.40099009901,20,40,11,32,5305795.47060301,396125.832223556,0,0,0,0,0,0,0,84.7010792079207,14250.412070462,25.758405940594,27.627495122048,26.7671154425055,-4.5509900990099,-4.53634989008005,-3.70310173145201,4.63976566796356,3.68102460186083,3.68244257732365
+42175,2873.8167939604,456.600174158416,225,83.2403762376238,85.7375875247524,25.3578217821782,-5.16465346534654,1784.5099009901,-2470.69702970297,-2082.6099009901,20,40,11,32,5305781.46326498,396107.151639668,0,0,0,0,0,0,0,83.2403762376236,14273.7766978273,25.3578217821782,27.1978436557217,26.3408518507337,-5.16465346534654,-5.15001325641668,-4.20490831829983,4.67904316204653,3.7121859648187,3.62585090250699
+42176,2873.80928039604,456.585766336634,225,80.3555346534654,82.7662006930693,23.2774862486139,-3.16445544554455,1721.4900990099,-3560.8198019802,-2791.30495049505,20,40,11,32,5305767.86870884,396088.953272773,0,0,0,0,0,0,0,80.3555346534652,14296.5051005225,23.2774862486139,24.9665541909029,24.408348240315,-3.16445544554455,-3.1498152366147,-2.56435430544241,3.72068081766043,2.95185546115974,2.97288094113129
+42177,2873.80203158416,456.571881386138,225,77.4329603960396,79.7559492079208,18.8392238721782,-1.90267326732673,1657,-3540.08316831683,-2795.90198019802,20,40,11,32,5305754.75289139,396071.414993527,0,0,0,0,0,0,0,77.4329603960395,14318.413280418,18.8392238721782,20.2062412880729,20.4663442037025,-1.90267326732673,-1.88803305839688,-1.48767181129322,2.53579012718687,2.01180544693921,2.17538326184137
+42178,2873.79506227723,456.558570990099,225,73.6052277227723,75.8133845544554,17.0850660065347,0.694554455445544,1568.88613861386,-4418.65346534654,-3738.57128712871,20,40,11,32,5305742.14197364,396054.601685053,0,0,0,0,0,0,0,73.6052277227722,14339.4337770352,17.0850660065347,18.3247976929941,18.7525732860181,0.694554455445544,0.709194664375402,0.517469819087551,3.47984166637295,2.76078226815307,2.68905728227051
+42179,2873.78849435644,456.546118316832,225,68.4663168316832,70.5203063366336,18.6375495048515,-0.116336633663366,1462.64851485149,-4467.88910891089,-3871.80891089109,20,40,11,32,5305730.25536055,396038.870168441,0,0,0,0,0,0,0,68.4663168316831,14359.154505088,18.6375495048515,19.9899329647856,19.7828276204452,-0.116336633663366,-0.101696424733509,-0.11027303933303,3.13391006655189,2.48633247464415,2.42429353584594
+42180,2873.78234960396,456.534587227723,225,63.6601881188119,65.5699937623763,15.5537062705941,-1.37930693069307,1362.29702970297,-4124.13564356436,-3519.10495049505,20,40,11,32,5305719.13195825,396024.300735901,0,0,0,0,0,0,0,63.6601881188118,14377.4844351485,15.5537062705941,16.6823189723632,16.8817949134372,-1.37930693069307,-1.36466672176321,-1.07952970049914,2.63533545049086,2.09078115612477,1.98804171320026
+42181,2873.77656920792,456.523867425742,225,59.754099009901,61.546721980198,17.3275049504951,-1.20336633663366,1434.67821782178,-4159.26930693069,-3559.77425742574,20,40,11,32,5305708.6652942,396010.754038628,0,0,0,0,0,0,0,59.7540990099009,14394.6040633388,17.3275049504951,18.5848285643573,18.1675444330532,-1.20336633663366,-1.18872612770381,-0.965686423586678,2.57675441261146,2.04430504998744,2.17676017526792
+42182,2873.77112732673,456.513788514852,225,56.4320594059406,58.1250211881188,17.3643168316832,-1.63316831683168,1418.40099009901,-2909.3702970297,-2322.67326732673,20,40,11,32,5305698.81131911,395998.016959517,0,0,0,0,0,0,0,56.4320594059405,14410.7143117987,17.3643168316832,18.6243116003147,18.0072933925485,-1.63316831683168,-1.61852810790183,-1.32189770863649,3.26551451542189,2.59074275065222,2.65712523805809
+42183,2873.76592534653,456.504121485148,225,55.0275742574257,56.6784014851485,17.5162178217822,-1.83762376237624,1389.20297029703,176.577227722772,265.543564356436,20,40,11,32,5305689.3925029,395985.800933086,0,0,0,0,0,0,0,55.0275742574257,14426.1446368812,17.5162178217822,18.7872348756398,18.0557452962803,-1.83762376237624,-1.82298355344638,-1.50007743273605,3.77165626336119,2.99229756171903,2.87005686957703
+42184,2873.76083811881,456.49461970297,225,53.7454158415842,55.3577783168317,16.4009504950495,-0.742079207920792,1358.31683168317,-201.784158415842,-115.60198019802,20,40,11,32,5305680.1825624,395973.794550116,0,0,0,0,0,0,0,53.7454158415841,14441.2814011551,16.4009504950495,17.5910411864749,17.0345941387704,-0.742079207920792,-0.727438998990933,-0.595763438243973,2.93941828361699,2.33202963069096,2.42081172456737
+42185,2873.75595356436,456.485400792079,225,51.494495049505,53.0393299009901,15.972702970297,-1.0290099009901,1298.89603960396,-440.00396039604,-403.818811881188,20,40,11,32,5305671.3417142,395962.147275201,0,0,0,0,0,0,0,51.4944950495049,14455.9135426567,15.972702970297,17.1317190363227,16.5407966337523,-1.0290099009901,-1.01436969206024,-0.832736931905369,3.08303005894595,2.44596609126545,2.39267341322049
+42186,2873.75133059406,456.47660049505,225,48.7222277227723,50.1838945544554,15.2049108910891,-3.56009900990099,1228.91089108911,-551.095049504951,-493.040594059406,20,40,11,32,5305662.9760306,395951.030177099,0,0,0,0,0,0,0,48.7222277227722,14469.8329509351,15.2049108910891,16.3082141978639,15.7278123093749,-3.56009900990099,-3.54545880097114,-2.91014072865358,3.03755505175318,2.40988784244306,2.43557362464411
+42187,2873.74698782178,456.468278415842,225,45.8306534653465,47.2055730693069,14.9285247524752,-3.18316831683168,1162.07920792079,-954.59306930693,-795.206930693069,20,40,11,32,5305655.11864904,395940.518132592,0,0,0,0,0,0,0,45.8306534653465,14482.9603806655,14.9285247524752,16.0117728453219,15.326956052516,-3.18316831683168,-3.16852810790183,-2.61371596016892,3.49523912629042,2.77299806369502,2.72934688689872
+42188,2873.74293287129,456.460473168317,225,42.7420495049505,44.024310990099,13.7247623762376,-3.89683168316832,1372.9504950495,-1068.61485148515,-883.349504950495,20,40,11,32,5305647.78282067,395930.659503857,0,0,0,0,0,0,0,42.7420495049504,14495.2485014576,13.7247623762376,14.7206627023142,14.1253473334319,-3.89683168316832,-3.88219147423846,-3.19533317818816,3.07092043292672,2.43635874587646,2.42116648827323
+42189,2873.73910772277,456.453067425743,225,41.2860693069307,42.5246513861386,13.073702970297,-2.4370297029703,1447.74257425743,38.1792079207921,183.883168316832,20,40,11,32,5305640.86370557,395921.306200711,0,0,0,0,0,0,0,41.2860693069306,14506.8772836358,13.073702970297,14.0223609283896,13.4881917387527,-2.4370297029703,-2.42238949404044,-1.99756553521226,2.78018159471819,2.20569692095896,2.22912121182026
+42190,2873.73538564356,456.44581980198,225,40.4352673267327,41.6483253465346,12.7866534653465,-0.782871287128713,1419.40594059406,61.3316831683168,187.527722772277,20,40,11,32,5305634.13197244,395912.153291558,0,0,0,0,0,0,0,40.4352673267326,14518.232265539,12.7866534653465,13.714482451123,13.1964727987619,-0.782871287128713,-0.768231078198855,-0.636183512594623,2.66470627018377,2.11408291694706,2.07386396685573
+42191,2873.73178673267,456.438711188119,225,39.1891782178218,40.3648535643564,11.5484356435644,-2.57633663366337,1372.00495049505,-459.845544554456,-374.023762376238,20,40,11,32,5305627.62527993,395903.177645031,0,0,0,0,0,0,0,39.1891782178217,14529.3138720847,11.5484356435644,12.3864166961918,12.0709770950698,-2.57633663366337,-2.56169642473351,-2.07839200087012,1.82059375357084,1.44439415187746,1.51035707679688
+42192,2873.72848792079,456.431785643564,225,36.8767326732673,37.9830346534653,11.7082772277228,-0.131782178217822,1296.93564356436,-607.002970297029,-533.559405940594,20,40,11,32,5305621.67037335,395894.440061009,0,0,0,0,0,0,0,36.8767326732673,14539.8827393564,11.7082772277228,12.5578567533452,12.0750834166165,-0.131782178217822,-0.117141969287965,-0.0642242334255344,2.52678171388501,2.00465849311419,1.94269902490278
+42193,2873.72566435644,456.425006930693,225,34.7699801980198,35.8130796039604,11.6045445544554,-2.95019801980198,1228.65841584158,-357.715841584158,-237.151485148515,20,40,11,32,5305616.59250107,395885.901253196,0,0,0,0,0,0,0,34.7699801980198,14549.8137885038,11.6045445544554,12.4465969987121,11.8646723716331,-2.95019801980198,-2.93555781087213,-2.40680340793297,3.04782907590217,2.41803888677568,2.33879315938158
+42194,2873.72338722772,456.418187425743,225,33.8475346534653,34.8629606930693,9.81359405940594,-4.40039603960396,1196.78217821782,91.069306930693,212.359405940594,20,40,11,32,5305612.52774395,395877.329875864,0,0,0,0,0,0,0,33.8475346534653,14559.3214411441,9.81359405940594,10.5256910164117,10.2877647975067,-4.40039603960396,-4.38575583067411,-3.5475363216373,1.59150659684129,1.26264457221347,1.40233977637998
+42195,2873.72157910891,456.411203564356,225,33.2625445544554,34.2604208910891,9.43068316831683,-2.59960396039604,1174.48514851485,145.285148514852,258.291089108911,20,40,11,32,5305609.33546054,395868.569417286,0,0,0,0,0,0,0,33.2625445544554,14568.6456738174,9.43068316831683,10.1149952303393,9.92926266793597,-2.59960396039604,-2.58496375146618,-2.08582061977963,1.56357115707035,1.24048159062786,1.28510840503681
+42196,2873.7202380198,456.404135940594,217.871287128713,32.6712574257426,33.6513951485148,9.1730396039604,-3.97752475247525,1156.06435643564,156.971287128713,268.051485148515,20,40,11,32,5305607.01017205,395859.72021366,0,0,0,0,0,0,0,32.6712574257425,14577.795644912,9.1730396039604,9.83865645635228,9.67586684592354,-3.97752475247525,-3.96288454354539,-3.1823165706312,1.68395162403797,1.33598715970238,1.31580812722838
+42197,2873.71940782178,456.397044653465,157.277227722772,31.7643465346535,32.7172769306931,9.82436633663366,-2.8319801980198,1116.60396039604,-539.151485148515,-354.909900990099,20,40,11,32,5305605.63177413,395850.858602371,0,0,0,0,0,0,0,31.7643465346534,14586.7776728548,9.82436633663366,10.5372449548522,10.1782700627247,-2.8319801980198,-2.81733998908995,-2.32967046797273,2.01386467855213,1.59772841067265,1.50052899003866
+42198,2873.71899970297,456.390305346535,85.990099009901,28.8274653465347,29.6922893069307,8.15841584158416,-4.94653465346535,1143.0297029703,-1541.31287128713,-1298.37128712871,20,40,11,32,5305605.02731127,395842.449570919,0,0,0,0,0,0,0,28.8274653465346,14595.2089017051,8.15841584158416,8.7504092600618,8.59187794341617,-4.94653465346535,-4.9318944445355,-3.97047349498715,1.36209973511989,1.08064135001134,1.15916422301465
+42199,2873.71891702971,456.384065841584,48.5643564356436,27.5330495049505,28.359040990099,8.78483168316831,-5.06910891089109,1312.35148514851,-707.352475247525,-449.376237623762,20,40,11,32,5305605.01445935,395834.674038781,0,0,0,0,0,0,0,27.5330495049505,14602.9927948295,8.78483168316831,9.4222792759181,9.05070807291053,-5.06910891089109,-5.05446870196124,-4.15340989495444,2.00870629541462,1.59363593346715,1.60923571564502
+42200,2873.71904792079,456.378082277228,45,26.1025544554455,26.8856310891089,9.09492079207921,-5.14237623762376,1302.60396039604,-713.777227722772,-488.538613861386,20,40,11,32,5305605.39145703,395827.224481027,0,0,0,0,0,0,0,26.1025544554455,14610.4568978273,9.09492079207921,9.75486916380144,9.23262267305953,-5.14237623762376,-5.12773602869391,-4.27585095023331,2.62387044547785,2.08168523005144,2.04184705233624
+42201,2873.71936306931,456.372519504951,45,23.8931287128713,24.6099225742574,8.05062376237624,-5.46148514851485,1230.58910891089,-1488.59900990099,-1240.66831683168,20,40,11,32,5305606.10030947,395820.305280412,0,0,0,0,0,0,0,23.8931287128713,14617.419440209,8.05062376237624,8.63479553965611,8.21723529174435,-5.46148514851485,-5.446844939585,-4.51929146940806,2.12819797591441,1.68843637105702,1.66592923850549
+42202,2873.71987257426,456.367503861386,45,21.9602376237624,22.6190447524752,7.18550495049505,-5.5,1358.56435643564,-1496.48415841584,-1120.62277227723,20,40,11,32,5305607.15688045,395814.074157592,0,0,0,0,0,0,0,21.9602376237623,14623.7543209296,7.18550495049505,7.706901716942,7.37049481503745,-5.5,-5.48535979107015,-4.52845356467754,1.74785867256395,1.3866887327324,1.37352410086944
+42203,2873.72056079208,456.362875841584,45,20.7045148514852,21.3256502970297,6.37641584158416,-5.5,1406.09900990099,-741.732673267327,-457.766336633663,20,40,10.7029702970297,32,5305608.53577782,395808.33188949,0,0,0,0,0,0,0,20.7045148514851,14629.6614290429,6.37641584158416,6.83910324131855,6.61024260851686,-5.5,-5.48535979107015,-4.48558196745612,1.25616431796786,0.996595968272017,1.04790437158511
+42204,2873.72145910891,456.358531188119,45,20.1552277227723,20.7598845544555,6.19146534653465,-5.5,1379.40594059406,1427.77128712871,1665.86831683168,20,40,10.8811881188119,32,5305610.29748289,395802.949649465,0,0,0,0,0,0,0,20.1552277227722,14635.327955143,6.19146534653465,6.64073231294724,6.42144439026797,-5.5,-5.48535979107015,-4.48340688923437,1.2087680480824,0.958993458151851,0.939228765667823
+42205,2873.72256287129,456.354248316832,45,21.3629900990099,22.0038798019802,6.36232673267327,-5.5,1434.37128712871,3760.75445544554,4279.47326732673,20,40,10.6237623762376,32,5305612.43835889,395797.651247921,0,0,0,0,0,0,0,21.3629900990099,14641.0470903465,6.36232673267327,6.82399179425899,6.63595253131523,-5.5,-5.48535979107015,-4.46041345427258,1.09798417690741,0.871101485912768,0.866484029357891
+42206,2873.72403960396,456.349830891089,45,22.9302376237624,23.6181447524752,6.30922772277228,-5.5,1243.76237623762,3885.36732673267,4523.79207920792,20,40,10.7128712871287,32,5305615.27313506,395792.197706077,0,0,0,0,0,0,0,22.9302376237624,14647.1969189769,6.30922772277228,6.7670397980676,6.68050794171934,-5.5,-5.48535979107015,-4.39844553735091,0.863062846506791,0.684723280936283,0.701322676968753
+42207,2873.7258490099,456.345266732673,45,24.3906732673267,25.1223934653465,6.43052475247525,-5.5,1168.67326732673,2871.68316831683,3315.90198019802,20,40,10.5940594059406,32,5305618.72744197,395786.572507439,0,0,0,0,0,0,0,24.3906732673267,14653.7968247799,6.43052475247525,6.89713841923874,6.86731971915091,-5.5,-5.48535979107015,-4.36475761119294,0.776868407602206,0.616339687268582,0.621394984533387
+42208,2873.72789594059,456.340641089109,45,25.3706039603961,26.1317220792079,6.58502970297029,-5.5,910.128712871287,2074.12475247525,2342.54356435643,20,40,10.0693069306931,32,5305622.62311476,395780.878666862,0,0,0,0,0,0,0,25.370603960396,14660.7100996149,6.58502970297029,7.06285460431551,7.05487423697712,-5.5,-5.48535979107015,-4.35114851610184,0.813007970310896,0.645011527389674,0.644504419109342
+42209,2873.73007851485,456.335985148515,45,25.4030396039604,26.1651307920792,6.65562376237624,-5.46881188118812,891.108910891089,449.082178217822,505.442574257426,20,40,10.8415841584158,32,5305626.77073321,395775.151629605,0,0,0,0,0,0,0,25.4030396039604,14667.7982724422,6.65562376237624,7.13857113104396,7.11684003096519,-5.46881188118812,-5.45417167225826,-4.33426002123508,0.806334920382723,0.63971736757366,0.6313568205275
+42210,2873.7322470297,456.331414455446,45,24.8243465346535,25.5690769306931,6.3030198019802,-5.5,869.346534653465,197.765346534653,278.632673267327,20,40,11,32,5305630.8903967,395769.530325504,0,0,0,0,0,0,0,24.8243465346534,14674.7672814906,6.3030198019802,6.76038141626413,6.78367637221272,-5.5,-5.48535979107015,-4.33446296750768,0.75759527971134,0.601049074983797,0.601201707099895
+42211,2873.73419920792,456.326766633663,45,24.4525742574257,25.1861514851485,6.40027722772277,-5.5,843.648514851485,312.257425742574,148.524752475248,20,40,10.8415841584158,32,5305634.61107174,395763.805710085,0,0,0,0,0,0,0,24.4525742574257,14681.6076834158,6.40027722772277,6.86469606451848,6.84513082370821,-5.5,-5.48535979107015,-4.35892466576503,0.767314367993104,0.608759852991372,0.604490371663675
+42212,2873.73563009901,456.321835643564,45,23.8987128712871,24.6156742574257,7.02016831683168,-5.5,807.59900990099,-47.4861386138614,-289.312871287129,20,40,11,32,5305637.37252208,395757.710909826,0,0,0,0,0,0,0,23.8987128712871,14688.332840319,7.02016831683168,7.52956787685247,7.34080331507486,-5.5,-5.48535979107015,-4.4473818390357,1.19423473346052,0.947463244667341,0.948986011676522
+42213,2873.73621881188,456.316773069307,61.039603960396,22.4133168316832,23.0857163366337,7.2220198019802,-5.5,780.608910891089,-1364.79603960396,-1863.37425742574,20,40,10.8118811881188,32,5305638.57693762,395751.424017534,0,0,0,0,0,0,0,22.4133168316831,14694.7914189219,7.2220198019802,7.74606617003801,7.42749681673167,-5.5,-5.48535979107015,-4.51843281122023,1.66982048693468,1.3247760195173,1.36518958972222
+42214,2873.73584881188,456.312085742574,184.009900990099,20.5855742574257,21.2031414851485,7.0270099009901,-5.5,933.381188118812,-366.10198019802,-687.698019801981,20,40,11,32,5305637.99705112,395745.572503123,0,0,0,0,0,0,0,20.5855742574257,14700.7508661716,7.0270099009901,7.53690590209362,7.15695574943335,-5.5,-5.48535979107015,-4.56070292879671,1.92670020176297,1.52857522354412,1.47832533723552
+42215,2873.73464623762,456.308076930693,225,19.4162871287129,19.9987757425743,6.73644554455445,-5.5,874.222772277228,169.257425742574,-42.4514851485148,20,40,11,32,5305635.85968807,395740.538371236,0,0,0,0,0,0,0,19.4162871287128,14706.2961266501,6.73644554455445,7.22525752763363,6.84281232631324,-5.5,-5.48535979107015,-4.5716185995244,1.93093546261041,1.5319353284482,1.54530696270171
+42216,2873.73277306931,456.304951089109,225,18.8522673267327,19.4178353465347,6.78669306930694,-5.5,842.89603960396,2555.42475247525,2289.04554455445,20,40,10.8217821782178,32,5305632.46028763,395736.581735687,0,0,0,0,0,0,0,18.8522673267327,14711.572020517,6.78669306930694,7.27915112835549,6.85327881928312,-5.5,-5.48535979107015,-4.59728409366488,2.12804280833624,1.68831326663462,1.70333462064118
+42217,2873.73034306931,456.302825742574,225,19.3643366336634,19.9452667326733,7.04226732673268,-5.36435643564356,851.841584158416,3355.99405940594,2950.79108910891,20,40,11,32,5305628.00692937,395733.852807262,0,0,0,0,0,0,0,19.3643366336634,14716.8655929593,7.04226732673268,7.55327044174138,7.10017020386262,-5.36435643564356,-5.34971622671371,-4.4905946874208,2.25697002468495,1.79059952184486,1.7269333039144
+42218,2873.72747574257,456.301923762376,225,20.1812178217822,20.7866543564357,6.16911881188119,-4.52742574257426,889.950495049505,3348.40693069307,2943.66435643565,20,40,11,32,5305622.71595957,395732.633224621,0,0,0,0,0,0,0,20.1812178217822,14722.3676566831,6.16911881188119,6.61676426234049,6.40452281667114,-4.52742574257426,-4.51278553364441,-3.69887523633265,1.25381764759297,0.994734203691523,1.11372775945747
+42219,2873.72443366337,456.302436930693,225,21.1157128712871,21.7491842574257,5.38865346534654,0.67029702970297,934.673267326733,3185.72178217822,2799.19306930693,20,40,11,32,5305617.06943839,395733.170688151,0,0,0,0,0,0,0,21.1157128712871,14728.0970370737,5.38865346534654,5.77966655512825,5.7949205966055,0.67029702970297,0.684937238632828,0.491677670710462,1.09801503143463,0.871125964794224,0.799138834544113
+42220,2873.72150772277,456.304393564356,225,22.0641089108911,22.7260321782178,5.70744554455446,3.1890099009901,994.361386138614,3188.5900990099,2811.28316831683,20,40,10.8811881188119,32,5305611.60555891,395735.510213038,0,0,0,0,0,0,0,22.0641089108911,14734.0988268701,5.70744554455446,6.1215909208509,6.11975275451769,3.1890099009901,3.20365010991995,2.49241338511627,1.1841976523479,0.939500182489105,0.890673171340713
+42221,2873.7189850495,456.307630693069,225,22.9243465346535,23.6120769306931,5.10370297029703,5.44178217821782,832.811881188119,3258.22178217822,2882.20693069307,20,40,11,32,5305606.85985166,395739.45839473,0,0,0,0,0,0,0,22.9243465346534,14740.3557177942,5.10370297029703,5.4740393967489,5.65461244316846,5.44178217821782,5.45642238714768,4.19365101270379,1.24485409246888,0.987622838744854,1.05309025065819
+42222,2873.71707435644,456.311838910891,225,23.5851089108911,24.2926621782178,4.93409900990099,5.48049504950495,775.905940594059,3213.11188118812,2852.27722772277,20,40,11,32,5305603.2258904,395744.636781529,0,0,0,0,0,0,0,23.585108910891,14746.8125662266,4.93409900990099,5.29212858288378,5.54813745329226,5.48049504950495,5.49513525843481,4.16737557022926,1.42685203903992,1.13201351852463,1.15144848428089
+42223,2873.71584772277,456.316758019802,200.049504950495,24.3132277227723,25.0426245544554,5.31764356435644,5.5,810.985148514852,3128.6297029703,2734.52772277228,20,40,10.8316831683168,32,5305600.84304892,395750.723646346,0,0,0,0,0,0,0,24.3132277227722,14753.4629420792,5.31764356435644,5.70350401239383,5.91609317368049,5.5,5.51464020892985,4.21889849913983,1.29294309831904,1.02577494087271,0.971131343268426
+42224,2873.71524188119,456.322147920792,110.940594059406,24.7216534653465,25.4633030693069,6.03628712871287,5.40475247524753,840.658415841584,2853.36435643564,2527.12079207921,20,40,10.980198019802,32,5305599.59953982,395757.417769396,0,0,0,0,0,0,0,24.7216534653465,14760.2947580583,6.03628712871287,6.47429400671794,6.55096853310976,5.40475247524753,5.41939268417738,4.24898514261335,0.879249719222946,0.69756536843798,0.686135827496828
+42225,2873.71503108911,456.327741980198,61.039603960396,24.9879504950495,25.737589009901,5.81470297029703,5.49881188118812,864.881188118812,2456.09603960396,2187.30297029703,20,40,11,32,5305599.08321181,395764.379439423,0,0,0,0,0,0,0,24.9879504950495,14767.1915034103,5.81470297029703,6.23663119210606,6.37757848479845,5.49881188118812,5.51345209011797,4.27901278275356,1.09015937322826,0.864893565748483,0.872715357799104
+42226,2873.71499405941,456.333361089109,46.7821782178218,25.3403861386139,26.1005977227723,5.62436633663366,5.46306930693069,883.391089108911,2142.19504950495,1923.14950495049,20,40,11,32,5305598.88819602,395771.378128516,0,0,0,0,0,0,0,25.3403861386138,14774.1877023927,5.62436633663366,6.03248329451452,6.23588850792233,5.46306930693069,5.47770951586055,4.21378857402494,1.21560308605925,0.964416133508316,0.958342689002097
+42227,2873.71503920792,456.339027029703,45,25.670396039604,26.4405079207921,5.89175247524753,5.5,903.064356435644,1933.3702970297,1739.58910891089,20,40,11,32,5305598.84435734,395778.437906705,0,0,0,0,0,0,0,25.6703960396039,14781.2595783278,5.89175247524753,6.31927158635582,6.48220047999393,5.5,5.51464020892985,4.27016035948147,1.10507471069288,0.876726862531426,0.868617067775496
+42228,2873.71509742574,456.344784653465,45,26.0883663366337,26.8710173267327,6.46558415841585,5.49633663366337,914.232673267327,1138.47128712871,1041.97722772277,20,40,11,32,5305598.82267371,395785.612334943,0,0,0,0,0,0,0,26.0883663366336,14788.4674771177,6.46558415841585,6.93474181631383,6.99430931487183,5.49633663366337,5.51097684259322,4.33440998166107,0.844762180336511,0.670204185097373,0.682740520125745
+42229,2873.71512425742,456.350543168317,50.3465346534653,25.8222475247525,26.596914950495,6.51239603960396,5.41594059405941,908.29702970297,173.581188118812,221.620792079208,20,40,11,32,5305598.74284105,395792.786823249,0,0,0,0,0,0,0,25.8222475247524,14795.6850028602,6.51239603960396,6.98495047527205,7.01893932069091,5.41594059405941,5.43058080298926,4.28602975579988,0.824560983791519,0.654177276242345,0.654314997349347
+42230,2873.71502118812,456.356215346535,77.0792079207921,25.3479801980198,26.1084196039604,6.52708910891089,5.5,894.460396039604,-237.248514851485,-110.158415841584,20,40,11,32,5305598.42433812,395799.849414333,0,0,0,0,0,0,0,25.3479801980198,14802.7916413366,6.52708910891089,7.00070970748314,7.00423439914377,5.5,5.51464020892985,4.36860818346673,0.798955928304778,0.633863138433728,0.635912959651336
+42231,2873.71478,456.361668910891,96.6831683168317,23.4504752475248,24.1539895049505,6.20280198019802,5.5,987.950495049505,-1403.03069306931,-1118.7495049505,20,40,11,32,5305597.85491725,395806.63505165,0,0,0,0,0,0,0,23.4504752475247,14809.6246775577,6.20280198019802,6.65289155882439,6.61970506886213,5.5,5.51464020892985,4.38947755788469,0.799790456496833,0.634525223337522,0.627502948081743
+42232,2873.71447970297,456.366615346535,102.029702970297,21.5232079207921,22.1689041584158,5.35049504950495,5.38673267326733,1045.32178217822,-761.30594059406,-515.193069306931,20,40,11,32,5305597.18741937,395812.786964655,0,0,0,0,0,0,0,21.5232079207921,14815.8301674917,5.35049504950495,5.73873927686578,5.7842739190709,5.38673267326733,5.40137288219718,4.26210095090839,0.783420407413533,0.621537810239191,0.620764638780582
+42233,2873.71412178218,456.371280990099,114.504950495049,20.8497821782178,21.4752756435644,5.009,5.5,1053.71287128713,815.078217821782,940.656435643564,20,40,11,32,5305596.41950362,395818.587159042,0,0,0,0,0,0,0,20.8497821782178,14821.6900980748,5.009,5.37246456110268,5.4551804341288,5.5,5.51464020892985,4.3097023778381,0.76973726862081,0.610682095935671,0.637603442855775
+42234,2873.71371089109,456.375937524752,123.415841584158,21.5541782178218,22.2008035643564,4.69386138613861,5.5,1094.18811881188,4238.52376237624,4530.2900990099,20,40,11,32,5305595.55367947,395824.374236337,0,0,0,0,0,0,0,21.5541782178218,14827.5383578933,4.69386138613861,5.03445876457536,5.22742726905721,5.5,5.51464020892985,4.22422034594633,1.12044019145452,0.888917286951683,0.862077748966101
+42235,2873.71325237624,456.380937821782,125.19801980198,23.7085247524752,24.4197804950495,5.46435643564356,5.49722772277228,1198.08910891089,5338.08514851485,5948.36534653466,20,40,11,32,5305594.59191604,395830.58796042,0,0,0,0,0,0,0,23.7085247524752,14833.8101974697,5.46435643564356,5.86086270707294,6.00626613562723,5.49722772277228,5.51186793170213,4.27254833024821,0.989878390436675,0.785334210563071,0.827062916064026
+42236,2873.71287108911,456.386508712871,98.4653465346535,26.3514158415842,27.1419583168317,6.04977227722772,4.68217821782178,1233.51485148515,5933.45940594059,5247.41782178218,20,40,11,32,5305593.76038227,395837.515078502,0,0,0,0,0,0,0,26.3514158415841,14840.7650926842,6.04977227722772,6.48875766862595,6.65637858425506,4.68217821782178,4.69681842675163,3.62585804928197,1.07748357166693,0.854837036877267,0.859784685809406
+42237,2873.71273693069,456.392656435644,50.3465346534653,29.0081386138614,29.8783827722772,6.30164356435644,4.64564356435644,1029.69306930693,6197.2396039604,5193.28811881188,20,40,11,32,5305593.37365527,395845.169040521,0,0,0,0,0,0,0,29.0081386138613,14848.4549075907,6.30164356435644,6.75890531567293,7.02297857078479,4.64564356435644,4.66028377328629,3.56971379270763,1.46589296713307,1.1629871984634,1.12952600358486
+42238,2873.71303,456.399345049505,45,31.4850891089109,32.4296417821782,6.54045544554456,1.64633663366337,1102.15841584158,5862.75346534653,4919.16930693069,20,40,11,32,5305593.76615087,395853.511092416,0,0,0,0,0,0,0,31.4850891089108,14856.8618395214,6.54045544554456,7.01504593624658,7.36958956158034,1.64633663366337,1.66097684259322,1.27341813305686,1.83223575712112,1.45363050227753,1.50381009762805
+42239,2873.71388306931,456.406448415842,45,33.5541485148515,34.560772970297,5.62414906490099,-2.03118811881188,989.920792079208,5006.86138613861,4221.26633663366,20,40,11,32,5305595.18664705,395862.388532934,0,0,0,0,0,0,0,33.5541485148514,14865.9129626787,5.62414906490099,6.03225025704518,6.70756844258373,-2.03118811881188,-2.01654790988202,-1.39216746569914,3.35619061894819,2.66268193719042,2.59855440269387
+42240,2873.7153539604,456.413731287129,45,35.1879306930693,36.2435686138614,5.38099889989109,1.34742574257426,887.039603960396,4770.76435643564,4057.84356435644,20,40,10.5940594059406,32,5305597.74753952,395871.510233014,0,0,0,0,0,0,0,35.1879306930693,14875.4626014026,5.38099889989109,5.77145655679724,6.59517919029959,1.34742574257426,1.36206595150412,0.937544531743875,4.04194131049239,3.20673207828843,3.18737837231657
+42241,2873.71739920792,456.421102178218,45,36.8296732673267,37.9345634653465,6.07420242025743,-3.3360396039604,930.163366336634,4636.86930693069,3958.52079207921,20,40,11,32,5305601.37037278,395880.760768152,0,0,0,0,0,0,0,36.8296732673267,14885.4702415016,6.07420242025743,6.51496051902518,7.27778306118693,-3.3360396039604,-3.32139939503054,-2.40568194349599,3.7842311958317,3.00227406465113,3.04495513790274
+42242,2873.71998950495,456.42866,45,38.3315940594059,39.4815418811881,6.27955445542574,-0.861980198019802,1093.24752475248,3578.63465346535,3101.18316831683,20,40,11,32,5305605.99863817,395890.262370477,0,0,0,0,0,0,0,38.3315940594059,14895.9267481298,6.27955445542574,6.73521337019149,7.53972801773292,-0.861980198019802,-0.847339989089945,-0.583439975780652,3.96646572554531,3.14685244105839,2.99986344004227
+42243,2873.72298455446,456.436252574257,45,39.6486435643564,40.8381028712871,6.89591364137624,-2.3790099009901,1403.4801980198,5327.78910891089,4618.60198019802,20,40,10.9207920792079,32,5305611.37587819,395899.820773435,0,0,0,0,0,0,0,39.6486435643564,14906.7259711771,6.89591364137624,7.39629699635023,8.13974786799717,-2.3790099009901,-2.36436969206024,-1.69729444228341,3.68098156985001,2.92035949383653,3.01053588838632
+42244,2873.72631455445,456.443779405941,45,42.1682574257426,43.4333051485149,7.00964191418812,-1.12910891089109,1505.0099009901,5992.8198019802,5029.55247524752,20,40,10,32,5305617.37505394,395909.308451239,0,0,0,0,0,0,0,42.1682574257425,14918.0842020077,7.00964191418812,7.51827765422152,8.37954580862696,-1.12910891089109,-1.11446870196123,-0.790048219002479,4.27417250990331,3.39097602928228,3.37566743479252
+42245,2873.72998821782,456.451620693069,45,44.7594851485148,46.1022697029703,8.38416996698019,0.0651485148514854,1583.85148514851,5789.2306930693,4922.38712871287,20,40,10,32,5305624.00376267,395919.19931641,0,0,0,0,0,0,0,44.7594851485148,14930.1747457095,8.38416996698019,8.99254462404921,9.69863598835648,0.0651485148514854,0.0797887237813433,0.0575132504503407,3.54943432335281,2.8159946001509,2.72733545025479
+42246,2873.73398336634,456.459863861386,45,47.210702970297,48.6270240594059,10.0596930693069,1.51039603960396,1673.28217821782,5630.24653465347,4670.11089108911,20,40,10,32,5305631.21896069,395929.601532362,0,0,0,0,0,0,0,47.210702970297,14942.9519124587,10.0596930693069,10.7896475365186,11.2649137494365,1.51039603960396,1.52503624853382,1.16330680883307,2.49359031505329,1.97832562106565,2.20937999674359
+42247,2873.73830633663,456.468486633663,45,49.5030198019802,50.9881103960396,10.3243762376238,1.36405940594059,1755.59405940594,5444.20297029703,4483.86336633663,20,40,10,32,5305639.03288874,395940.48755433,0,0,0,0,0,0,0,49.5030198019801,14956.3863820682,10.3243762376238,11.0735367243211,11.6210375270222,1.36405940594059,1.37869961487045,1.03609928779681,2.84989433501901,2.26100452278082,2.10915072182836
+42248,2873.74291742574,456.477456732673,45,51.6826336633664,53.2331126732673,10.9954548954851,-0.532574257425743,1829.88613861386,5220.62178217822,4382.23663366337,20,40,10.049504950495,32,5305647.37273092,395951.815842556,0,0,0,0,0,0,0,51.6826336633663,14970.4470161441,10.9954548954851,11.7933103931317,12.3171350757887,-0.532574257425743,-0.517934048495886,-0.395048367482263,2.77873601982214,2.20455005339344,2.40843212395874
+42249,2873.74774128713,456.486792871287,45,53.7441683168317,55.3564933663366,9.99312981326733,1.97158415841584,1908.0099009901,4898.64257425743,4350.68514851485,20,40,11,32,5305656.09850198,395963.607187029,0,0,0,0,0,0,0,53.7441683168316,14985.0934674367,9.99312981326733,10.7182542975199,11.5825718294344,1.97158415841584,1.9862243673457,1.46806493470972,4.31750597409997,3.42535525427055,3.28838295827964
+42250,2873.75280277228,456.496527623762,45,55.6593663366337,57.3291473267327,10.8216710672277,1.54326732673267,1905.85643564356,4476.73861386139,3972.42772277228,20,40,11,32,5305665.25550671,395975.90299155,0,0,0,0,0,0,0,55.6593663366336,15000.2974083608,10.8216710672277,11.6069164105792,12.3968546993417,1.54326732673267,1.55790753566253,1.1626879186139,3.99844097256311,3.17222046163231,3.13224966808701
+42251,2873.75806544554,456.506532673267,45,57.3774257425743,59.0987485148515,12.6255852583168,0.444851485148515,1476.17821782178,4483.6603960396,4051.47623762376,20,40,11,32,5305674.77913788,395988.542187839,0,0,0,0,0,0,0,57.3774257425742,15015.9975485698,12.6255852583168,13.5417267645214,14.0300919548918,0.444851485148515,0.459491694078372,0.378248289502101,2.71441389472565,2.15351917341625,2.1948157914004
+42252,2873.76347237624,456.516778910891,45,59.1021386138614,60.8752027722772,14.3243762376238,1.17316831683168,1496.73267326733,4442.43861386139,4055.96435643564,20,40,11,32,5305684.56459605,396001.486609919,0,0,0,0,0,0,0,59.1021386138613,15032.184360286,14.3243762376238,15.3637859246426,15.5739415224459,1.17316831683168,1.18780852576154,0.932039843091284,1.76312224287276,1.39879830503406,1.46228470339732
+42253,2873.76903920792,456.527305346535,45,60.8756732673267,62.7019434653466,15.2247128712871,3.93455445544554,1554.71287128713,4378.40792079208,4020.94752475248,20,40,11,32,5305694.63998487,396014.785371808,0,0,0,0,0,0,0,60.8756732673267,15048.8528649065,15.2247128712871,16.3294530552913,16.4410151316401,3.93455445544554,3.9491946643754,3.10902785416895,1.67090780199028,1.32563865650289,1.28720296782235
+42254,2873.77477237624,456.538111485149,45,62.5569702970297,64.4336794059406,15.8195445544554,5.20386138613861,1592.66336633663,4273.83663366337,3975.9900990099,20,40,11,32,5305705.01723885,396028.438067745,0,0,0,0,0,0,0,62.5569702970297,15065.9962323432,15.8195445544554,16.967447093551,17.0411335999317,5.20386138613861,5.21850159506847,4.12076261402907,1.75909872480319,1.39560618929805,1.36114552395758
+42255,2873.78065386139,456.549206039604,45,64.1600495049505,66.084850990099,15.7938712871287,4.73613861386139,1635.49504950495,4134.72772277228,3942.37227722772,20,40,11,32,5305715.6627861,396042.45494612,0,0,0,0,0,0,0,64.1600495049504,15083.598120187,15.7938712871287,16.9399109148964,17.1120440807763,4.73613861386139,4.75077882279124,3.72946073193712,1.81724210807135,1.44173507587595,1.44694020439181
+42256,2873.78666980198,456.560593663366,45,65.7565841584158,67.7292816831683,16.0678514851485,5.14237623762376,1677.15841584158,4049.86138613862,3864.46930693069,20,40,11,32,5305726.55084878,396056.841337338,0,0,0,0,0,0,0,65.7565841584158,15101.6451186744,16.0678514851485,17.233771746261,17.4357018091193,5.14237623762376,5.15701644655362,4.0425406965114,2.04615815273236,1.62334890132755,1.6086117382725
+42257,2873.79282207921,456.572255148515,45,67.2683663366337,69.2864173267327,16.5075742574257,4.4809900990099,1711.94554455446,3906.81485148515,3720.9504950495,20,40,11,32,5305737.68534511,396071.573372832,0,0,0,0,0,0,0,67.2683663366336,15120.1222885038,16.5075742574257,17.7054018142924,17.8972216211999,4.4809900990099,4.49563030793975,3.52953788218789,1.99265860442016,1.58090426777947,1.64253035815063
+42258,2873.79910405941,456.584185148515,45,68.7167227722773,70.7782244554455,16.4398217821782,3.2880198019802,1552.04455445545,3945.43366336633,3729.12277227723,20,40,11,32,5305749.05410983,396086.644167239,0,0,0,0,0,0,0,68.7167227722772,15139.0112201045,16.4398217821782,17.6327330636048,17.9248050699685,3.2880198019802,3.30266001091005,2.58368132187748,2.12748368922626,1.68786968147397,1.64243577364586
+42259,2873.80550039604,456.596395247525,45,70.102603960396,72.2056820792079,17.8641287128713,4.25673267326733,1524.70792079208,3821.13663366336,3630.64257425743,20,40,11,32,5305760.62845867,396102.067635317,0,0,0,0,0,0,0,70.1026039603959,15158.2980045654,17.8641287128713,19.1603909812094,19.2147950326463,4.25673267326733,4.27137288219718,3.37769612660907,1.72796813395619,1.37090828880503,1.37372754028953
+42260,2873.81202811881,456.60883980198,45,71.4927623762376,73.6375452475248,18.5901386138614,4.85148514851485,1556.55940594059,3814.65346534653,3558.33366336634,20,40,11,32,5305772.44096277,396117.787483007,0,0,0,0,0,0,0,71.4927623762375,15177.9675910341,18.5901386138614,19.9390818304965,19.9106308374019,4.85148514851485,4.8661253574447,3.86544384485021,1.8545246170625,1.47131368881391,1.49132244927623
+42261,2873.81869613861,456.62150019802,45,72.7844356435643,74.9679687128713,18.1115643564356,5.28366336633663,1586.25247524752,3774.14554455445,3495.37920792079,20,40,11,32,5305784.5085479,396133.780816446,0,0,0,0,0,0,0,72.7844356435643,15198.0111391639,18.1115643564356,19.4257811241926,19.5764918535822,5.28366336633663,5.29830357526649,4.17036417214799,2.18932734080146,1.73693422895512,1.70216044729593
+42262,2873.82550029703,456.634364950495,45,74.0777722772277,76.3001054455445,18.9633762376238,5.35178217821782,1613.26237623762,3721.54554455446,3456.47227722772,20,40,11,32,5305796.82377091,396150.033186214,0,0,0,0,0,0,0,74.0777722772276,15218.412465044,18.9633762376238,20.3394024347156,20.3750480866207,5.35178217821782,5.36642238714768,4.24840841034405,2.05283199403057,1.62864368898832,1.66603115138351
+42263,2873.83242485149,456.647438613861,45,75.2669504950495,77.524959009901,18.7596435643564,5.41168316831683,1637.06435643564,3643.49504950495,3431.32772277228,20,40,11,32,5305809.35737125,396166.549737345,0,0,0,0,0,0,0,75.2669504950494,15239.1564821782,18.7596435643564,20.1208864500744,20.2695923180866,5.41168316831683,5.42632337724669,4.27403638256398,2.21652312265962,1.75851039233293,1.7432733721899
+42264,2873.83945891089,456.660721683168,45,76.4574059405941,78.7511281188119,19.2569405940594,5.19435643564357,1665.68316831683,3561.26732673267,3409.78217821782,20,40,11,32,5305822.08916601,396183.330719972,0,0,0,0,0,0,0,76.457405940594,15260.2327062981,19.2569405940594,20.6542684960758,20.7617069027125,5.19435643564357,5.20899664457342,4.11028337235717,2.16174279560325,1.71504963460871,1.73546364480345
+42265,2873.84659524752,456.674194950495,45,77.6009504950495,79.928979009901,19.2414356435643,4.26386138613861,1687.63861386139,3505.31287128713,3365.29900990099,20,40,11,32,5305835.00619959,396200.351962804,0,0,0,0,0,0,0,77.6009504950494,15281.6286295104,19.2414356435643,20.6376384707102,20.8162313558455,4.26386138613861,4.27850159506847,3.36990877443996,2.07874568562496,1.64920268767712,1.66751833234708
+42266,2873.85381524752,456.687902970297,45,78.7075247524753,81.0687504950495,19.3542574257426,3.64356435643564,1711.27722772277,3476.99603960396,3323.89405940594,20,40,11,32,5305848.07299675,396217.668343128,0,0,0,0,0,0,0,78.7075247524752,15303.342249945,19.3542574257426,20.7586468609024,20.9757279661181,3.64356435643564,3.6582045653655,2.87521028209299,2.14212137124373,1.69948269632783,1.64288473580099
+42267,2873.86112009901,456.701830891089,45,79.8308514851485,82.225777029703,21.1100099009901,2.55554455445545,1734.34653465347,3460.79405940594,3298.64554455445,20,40,11,32,5305861.29209345,396235.261396975,0,0,0,0,0,0,0,79.8308514851484,15325.3611810506,21.1100099009901,22.6418007741258,22.5371965484323,2.55554455445545,2.5701847633853,2.0529473104566,1.79982532301488,1.42791721978876,1.4879522502448
+42268,2873.86851178218,456.715970891089,45,80.8906435643564,83.3173628712871,19.4317623762376,2.41118811881188,1758.55445544554,3398.62475247524,3287.36534653465,20,40,11,32,5305874.6673355,396253.121443559,0,0,0,0,0,0,0,80.8906435643563,15347.6853221397,19.4317623762376,20.841775748873,21.1690692720871,2.41118811881188,2.42582832774174,1.8971014806745,2.34523779682304,1.86062802415376,1.82260881320493
+42269,2873.87597138614,456.730351782178,45,81.9332178217822,84.3912143564357,20.7738217821782,3.33623762376238,1780.12871287129,3211.80297029703,3037.84455445545,20,40,11,32,5305888.16305061,396271.283740052,0,0,0,0,0,0,0,81.9332178217821,15370.3043663916,20.7738217821782,22.2812180721532,22.368484970046,3.33623762376238,3.35087783269223,2.64763796076893,2.02751823008624,1.60856065150043,1.66489926995996
+42270,2873.88352653465,456.744874455445,45,82.7248316831683,85.2065766336634,21.080297029703,2.93712871287129,1795.91584158416,2748.12673267327,2595.71584158416,20,40,11,32,5305901.83262912,396289.625745856,0,0,0,0,0,0,0,82.7248316831682,15393.1841754125,21.080297029703,22.609931868556,22.6747890912729,2.93712871287129,2.95176892180114,2.34164722248549,2.29742079963605,1.82269172399797,1.73692214381417
+42271,2873.89116247525,456.759484653466,45,83.2741584158416,85.7723831683168,21.4351782178218,3.75009900990099,1807.13366336634,2453.49603960396,2285.46237623762,20,40,11,32,5305915.64996051,396308.079380354,0,0,0,0,0,0,0,83.2741584158414,15416.2480017877,21.4351782178218,22.99056405194,23.0088338643378,3.75009900990099,3.76473921883084,2.98616624975013,1.93468307276291,1.53490854868317,1.54546097511731
+42272,2873.89886227723,456.774151881188,45,83.7027524752475,86.2138350495049,22.3343861386139,3.23643564356436,1815.66831683168,2283.84653465346,2195.01386138614,20,40,11,32,5305929.58436685,396326.606091364,0,0,0,0,0,0,0,83.7027524752475,15439.4410558581,22.3343861386139,23.9550205677153,23.7990573971561,3.23643564356436,3.25107585249421,2.59373580860347,2.08134056425802,1.6512613718372,1.66537975986352
+42273,2873.90659881188,456.78888009901,45,84.0219504950495,86.542609009901,22.4235643564356,3.35118811881188,1821.5,2142.61782178218,2081.41683168317,20,40,11,32,5305943.5855085,396345.209907892,0,0,0,0,0,0,0,84.0219504950494,15462.7365435918,22.4235643564356,24.0506697621393,23.8927911654071,3.35118811881188,3.36582832774174,2.69324124743653,2.05682875897852,1.6318145797518,1.65589750019034
+42274,2873.91437544555,456.803654554455,45,84.3006435643564,86.8296628712871,22.2211584158416,3.84336633663366,1827.9603960396,1982.98910891089,1944.76237623762,20,40,11,32,5305957.65995185,396363.872564192,0,0,0,0,0,0,0,84.3006435643563,15486.1203714521,22.2211584158416,23.8335767809458,23.7366666719257,3.84336633663366,3.85800654556352,3.07480953047435,1.94557304843947,1.54354826698961,1.56093011354487
+42275,2873.92216752476,456.818469009901,45,84.4800198019802,87.0144203960396,22.589495049505,3.22712871287129,1830.60891089109,1858.89405940594,1817.79108910891,20,40,11,32,5305971.76217028,396382.585469205,0,0,0,0,0,0,0,84.4800198019801,15509.5613448845,22.589495049505,24.2286407679516,24.0602257208342,3.22712871287129,3.24176892180114,2.59214129584342,2.01371284682095,1.59760795279227,1.5921390473135
+42276,2873.92997881188,456.833301881188,45,84.5982475247525,87.1361949504951,22.2139504950495,2.01633663366337,1834.05445544554,1811.54950495049,1766.34257425743,20,40,11,32,5305985.89961617,396401.321861086,0,0,0,0,0,0,0,84.5982475247524,15533.0447083333,22.2139504950495,23.8258458368422,23.7472216503854,2.01633663366337,2.03097684259322,1.62362048680746,1.99301006978082,1.58118310786146,1.54097558099538
+42277,2873.93783287129,456.848091485149,45,84.7185148514851,87.2600702970297,21.0748118811881,0.921287128712872,1835.82178217822,1770.32673267327,1725.26930693069,20,40,11,32,5306000.11731825,396420.005687327,0.118811881188119,0.118811881188119,630416.205853101,47100.7221912788,0.153283563570672,0,0,84.718514851485,15556.5612217546,21.0748118811881,22.6040487050487,22.7887710262646,0.921287128712872,0.935927337642729,0.737767182695959,1.79253766282,1.42213545010747,1.50330585090052
+42278,2873.94569821782,456.86289970297,45,84.778297029703,87.3216459405941,20.7266930693069,2.90029702970297,1837.39108910891,1707.65148514852,1679.34356435644,20,40,11,32,5306014.35557134,396438.712982858,1,1,5306011.30799429,396441.195703048,14.3396793654338,0,0,84.7782970297029,15580.1029262651,20.7266930693069,22.2306695914761,22.4913271169186,2.90029702970297,2.91493723863282,2.29479277926555,2.39286641178735,1.89841486857281,1.80295334526414
+42279,2873.95353742574,456.877784356436,45,84.836198019802,87.381283960396,20.6456138613861,2.7860396039604,1839.56930693069,1647.44752475247,1663.59405940594,20,40,11,32,5306028.54375787,396457.51452856,1,1,5306026.17454261,396459.444618752,37.877673827326,0,0,84.8361980198019,15603.6634832508,20.6456138613861,22.1437070897399,22.428744820814,2.7860396039604,2.80067981289025,2.19521997030624,2.1613902173683,1.71476991161195,1.8083542471953
+42280,2873.96135475248,456.892700693069,45,84.8632277227723,87.4091245544555,20.4242277227723,1.73,1837.83663366337,1613.32871287129,1634.28217821782,20,40,11,32,5306042.69076511,396476.354720265,1,1,5306041.04358785,396477.696599463,61.4196216275298,0,0,84.8632277227722,15627.2365765677,20.4242277227723,21.9062566637023,22.2402908360468,1.73,1.74464020892986,1.36467655141521,2.4392643131066,1.93522530867976,1.87528069428943
+42281,2873.9691109901,456.907678316831,45,84.9342871287129,87.4823157425743,20.5069702970297,0.392277227722772,1841.01485148515,1583.15643564356,1622.79900990099,20,40,11,32,5306056.72330536,396495.269131076,1,1,5306055.90331365,396495.937140427,84.9468141006771,0,0,84.9342871287128,15650.8202179318,20.5069702970297,21.9950032294624,22.3160094542645,0.392277227722772,0.40691743665263,0.321318556994438,2.34186247335997,1.85795016290043,1.85496479017935
+42282,2873.97687881188,456.922711089109,45,84.9679603960396,87.5169992079207,20.9699405940594,3.40564356435644,1838.02475247525,1577.58217821782,1605.2603960396,20,40,11,32,5306070.77613244,396514.252529236,1,1,5306070.80491361,396514.229082551,108.540305319969,0,0,84.9679603960395,15674.4132369087,20.9699405940594,22.4915677161135,22.7094773336052,3.40564356435644,3.42028377328629,2.69336531501279,2.2819372925207,1.81040766167813,1.78338346447389
+42283,2873.98462910891,456.937754356435,45,84.9682079207921,87.5172541584158,22.3794455445545,2.97089108910891,1840.63366336634,1552.21386138614,1571.42772277228,20,40,11,32,5306084.79632462,396533.248325602,1,1,5306085.69956608,396532.512496526,132.122796679542,0,0,84.9682079207919,15698.0124565456,22.3794455445545,24.0033495877912,23.9097896888048,2.97089108910891,2.98553129803877,2.38319963095733,1.95066434556423,1.54758752054525,1.53559599909016
+42284,2873.99238207921,456.952785940594,45,84.964702970297,87.513644059406,22.3629108910891,3.17287128712871,1838.57425742574,1582.38118811881,1578.12574257426,20,40,11,32,5306098.82179098,396552.229565335,1,1,5306100.58919447,396550.789743383,155.697333505,0,0,84.9647029702969,15721.6148055005,22.3629108910891,23.9856151418394,23.8954349815899,3.17287128712871,3.18751149605857,2.53779425222746,1.92942297362769,1.53073537363283,1.51901294291861
+42285,2874.00015118812,456.967783168317,45,84.9652277227723,87.5141845544554,21.6782475247525,2.78019801980198,1840.21287128713,1603.23465346535,1552.79108910891,20,40,11,32,5306112.87798006,396571.168453234,1,1,5306115.47034,396569.056577386,179.258439522598,0,0,84.9652277227722,15745.2154217547,21.6782475247525,23.2512710268606,23.3130101288949,2.78019801980198,2.79483822873183,2.21391095268691,1.89009283022507,1.49953224058252,1.52501829686163
+42286,2874.00795920792,456.982739306931,45,84.9688712871287,87.5179374257426,20.8988712871287,3.08,1838.67326732673,1618.68118811881,1559.64752475248,20,40,11,32,5306127.00722391,396590.057358949,1,1,5306130.35615319,396587.329141014,202.826935781593,0,0,84.9688712871286,15768.8184112761,20.8988712871287,22.4153414568068,22.6508905129102,3.08,3.09464020892986,2.42922664394364,2.14672418466122,1.70313440433208,1.74466801575321
+42287,2874.01582069307,456.997635247525,45,85.0136435643565,87.5640528712871,20.6359900990099,3.04722772277228,1839.9504950495,1655.78415841584,1547.72772277228,20,40,11,32,5306141.23690828,396608.872962858,1,1,5306145.24613962,396605.606827354,226.402039467055,0,0,85.0136435643563,15792.4286278053,20.6359900990099,22.1333850050302,22.4289387405963,3.04722772277228,3.06186793170213,2.39968238857121,2.38039408592001,1.88851977006016,1.899664009288
+42288,2874.02373574257,457.012458118812,45,84.9932079207921,87.5430041584159,20.4634851485148,4.6060396039604,1842.0198019802,1598.97623762376,1524.37326732673,20,40,11,32,5306155.56750321,396627.599235235,1.45544554455446,1,5306160.1326467,396623.880056503,135.586917049693,0,0,84.993207920792,15816.0404469747,20.4634851485148,21.948362698552,22.2788385240363,4.6060396039604,4.62067981289025,3.61687047843682,2.63096010232513,2.08730991093862,2.13391222745067
+42289,2874.03165277228,457.027282970297,45,84.9790198019802,87.5283903960396,20.2276127612871,3.54544554455445,1840.79207920792,1580.34653465346,1551.09108910891,20,40,11,32,5306169.90178169,396646.327946761,2,1,5306175.02242418,396642.155997195,22.3963721242628,0,0,84.9790198019801,15839.6475113586,20.2276127612871,21.6953748683816,22.0793185320182,3.54544554455445,3.56008575348431,2.78163805566091,2.67272918271953,2.12044800961255,2.10880838922012
+42290,2874.03956495049,457.042116831683,45,84.9870198019802,87.5366303960396,20.0527821782178,3.34792079207921,1843.57920792079,1571.37722772277,1551.0900990099,20,40,11,32,5306184.2269323,396665.067626988,2,1,5306189.91414961,396660.434070983,45.9728745707844,0,0,84.9870198019801,15863.2560854785,20.0527821782178,21.5078581760804,21.9308673248822,3.34792079207921,3.36256100100906,2.62234703474021,2.79844395317917,2.22018562482757,2.16610591764697
+42291,2874.04747316832,457.056960693069,45,84.9903762376238,87.5400875247525,19.4520330032673,2.39267326732673,1841.0198019802,1526.33069306931,1523.95148514851,20,40,11,32,5306198.54458368,396683.81953875,2,1,5306204.80887272,396678.71582413,69.5541229457568,0,0,84.9903762376237,15886.8652484873,19.4520330032673,20.8635172592241,21.4214618124011,2.39267326732673,2.40731347625659,1.86177261632934,3.22441472633839,2.5581356438338,2.50443071718137
+42292,2874.0553670297,457.07182009901,45,85.0003564356436,87.5503671287129,20.5283564356436,3.93811881188119,1840.06930693069,1537.45742574257,1568.52574257426,20,40,11,32,5306212.83535526,396702.590243572,2,1,5306219.7020745,396696.995709989,93.1329627446582,0,0,85.0003564356435,15910.4721874312,20.5283564356436,22.0179411954839,22.335268076332,3.93811881188119,3.95275902081104,3.09284410184247,2.50842727410188,1.9900967352087,2.03691602789347
+42293,2874.0632470297,457.086701485149,45,85.0021188118811,87.5521823762376,20.7424554455445,3.48029702970297,1840.38613861386,1538.98415841584,1548.50396039604,20,40,11,32,5306227.10002073,396721.387774199,2,1,5306234.59799714,396715.278935418,116.716110185454,0,0,85.002118811881,15934.0816590208,20.7424554455445,22.2475757219883,22.5182978643126,3.48029702970297,3.49493723863282,2.73990625008506,2.33536671297834,1.85279665828754,1.8915831437564
+42294,2874.0711250495,457.101582673267,45,84.9826138613861,87.5320922772277,20.3014059405941,3.75158415841584,1842.72277227723,1518.83663366337,1542.22376237624,20,40,11,32,5306241.36108278,396740.184899462,2,1,5306249.49228365,396733.560152672,140.296667323171,0,0,84.982613861386,15957.6903390263,20.3014059405941,21.7745226505093,22.1425438759252,3.75158415841584,3.7662243673457,2.94340455683922,2.568183032621,2.0375048228047,2.01123679196951
+42295,2874.07898623763,457.116477524752,45,84.9761782178218,87.5254635643564,19.6579411440594,3.62633663366337,1842.27227722772,1555.28514851485,1595.66336633663,20,40,11,32,5306255.59072244,396758.998392782,2,1,5306264.38204901,396751.835820676,163.870066598979,0,0,84.9761782178217,15981.2949180417,19.6579411440594,21.0843665683173,21.5943071474371,3.62633663366337,3.64097684259322,2.82886898856694,3.11488425115823,2.47123807127415,2.49556336818887
+42296,2874.08683366337,457.131391881188,45,84.9996039603961,87.5495920792079,19.335403740396,2.42277227722772,1839.47524752475,1524.34950495049,1565.05247524753,20,40,11,32,5306269.79449508,396777.835632245,2,1,5306279.27312255,396770.113094339,187.445536982167,0,0,84.9996039603959,16004.9012003299,19.335403740396,20.7384251087822,21.323602036852,2.42277227722772,2.43741248615758,1.88669154831935,3.26469061315558,2.59008909597892,2.5826546228613
+42297,2874.09466346535,457.146329108911,45,84.9989900990099,87.5489598019802,19.4744070407921,2.98772277227723,1841.31683168317,1543.25643564356,1568.82574257426,20,40,11,32,5306283.96517334,396796.700683047,2,1,5306294.16461148,396788.390877857,211.021665015241,0,0,84.9989900990097,16028.5124785478,19.4744070407921,20.8875148083737,21.4398259276063,2.98772277227723,3.00236298120708,2.32797581296849,3.25393015802155,2.58155213465153,2.56992476322639
+42298,2874.10245663366,457.161242376237,45,85.0153762376238,87.5658375247525,19.376397689406,1.82405940594059,1840.39603960396,1542.42673267327,1542.14257425743,20,40,11,32,5306298.06858774,396815.534582866,2,1,5306309.01401055,396806.617000351,234.531156583506,0,0,85.0153762376237,16052.1276926842,19.376397689406,20.7823936730216,21.3596365901789,1.82405940594059,1.83869961487045,1.42375377247982,3.22871815362295,2.56154982955792,2.55215402217893
+42299,2874.11027524752,457.176219207921,45,85.0147524752476,87.565195049505,19.1121468645545,1.90455445544554,1842.71287128713,1505.84752475248,1518.99405940594,20,40,11,32,5306312.2177809,396834.448407553,0.356435643564356,0.178217821782178,945680.386475268,70719.9162345223,44.2552175273712,0,0,85.0147524752474,16075.7491293453,19.1121468645545,20.4989682005208,21.1322970502232,1.90455445544554,1.9191946643754,1.48319045848507,3.57570386117421,2.83683591454481,2.84436538383563
+42300,2874.11808405941,457.19123,45,85.0139504950495,87.564369009901,19.9224510452475,1.17821782178218,1840.95544554455,1533.34158415841,1510.20099009901,20,40,11,32,5306326.34812215,396853.404114999,0,0,0,0,0,0,0,85.0139504950494,16099.3658768151,19.9224510452475,21.3680699163297,21.822509445832,1.17821782178218,1.19285803071203,0.920231548610667,2.94221735537443,2.33425031439329,2.37783326150328
+42301,2874.12588544555,457.206232475247,45,85.0459900990099,87.5973698019802,20.174602310297,-0.820693069306931,1840.93564356436,1521.57920792079,1508.71683168317,20,40,11,32,5306340.46495473,396872.349124326,0,0,0,0,0,0,0,85.0459900990098,16122.9823458745,20.174602310297,21.6385178571393,22.0387908760681,-0.820693069306931,-0.806052860377073,-0.624718950992066,2.71944889442675,2.15751376260382,2.0390389882224
+42302,2874.13367118812,457.221231386139,45,84.970702970297,87.5198240594059,20.5959180417822,0.948118811881188,1841.68811881188,1531.79108910891,1503.80594059406,20,40,11,32,5306354.55295052,396891.289083264,0,0,0,0,0,0,0,84.9707029702969,16146.5904715896,20.5959180417822,22.0904052271611,22.3925805031437,0.948118811881188,0.962759020811045,0.74396245379069,2.49907788493279,1.98267926329166,2.0996887092769
+42303,2874.14144891089,457.23623029703,45,84.9546237623762,87.5032624752475,19.3902227722772,1.67306930693069,1839.52475247525,1569.51584158416,1561.50198019802,20,40,11,32,5306368.626152,396910.228684079,0,0,0,0,0,0,0,84.9546237623761,16170.195040869,19.3902227722772,20.7972219357048,21.3677940983195,1.67306930693069,1.68770951586055,1.31243277641131,3.30674299497877,2.6234519559024,2.49895230808521
+42304,2874.14921207921,457.251244158416,45,85.0016732673267,87.5517234653465,20.3653074807921,-0.531881188118812,1840.66831683168,1560.56336633663,1555.20792079208,20,40,11,32,5306382.67212206,396929.186332464,0,0,0,0,0,0,0,85.0016732673266,16193.799140869,20.3653074807921,21.8430610334427,22.1977444319935,-0.531881188118812,-0.517240979188955,-0.396725396097151,2.76813882429374,2.19614261641443,2.37826054875797
+42305,2874.15697465347,457.266266633663,45,85.043900990099,87.595218019802,21.9792893289109,-0.340891089108911,1840.74257425743,1580.54455445545,1565.80693069307,20,40,11,32,5306396.71686132,396948.154597752,0,0,0,0,0,0,0,85.0439009900989,16217.413470407,21.9792893289109,23.574157116749,23.5736147403841,-0.340891089108911,-0.326250880179053,-0.22621035766608,2.45881139515285,1.95073326642074,1.82539089644597
+42306,2874.16473831683,457.281318811881,45,85.1178514851485,87.671387029703,20.8410159517822,-0.0213861386138613,1842.34158415842,1550.40099009901,1494.74554455446,20,40,11,32,5306410.76301866,396967.159803238,0,0,0,0,0,0,0,85.1178514851484,16241.045956298,20.8410159517822,22.3532880052556,22.6100597303716,-0.0213861386138613,-0.00674592968400433,0.0102596275042714,2.45078419591269,1.94436477283688,2.04194401935924
+42307,2874.17254009901,457.296340495049,45,85.1377623762376,87.6918952475248,19.115497800099,-1.82247524752475,1844.03465346535,1468.00792079208,1422.22574257426,20,40,11,32,5306424.88052486,396986.128193411,0,0,0,0,0,0,0,85.1377623762375,16264.6942092683,19.115497800099,20.5025622876558,21.1421092138219,-1.82247524752475,-1.8078350385949,-1.39160352591288,3.6105716103802,2.8644987431926,2.85510408929638
+42308,2874.18038396039,457.311309405941,45,85.1620396039604,87.7169007920792,18.9948575355446,-2.3590099009901,1844.39108910891,1414.66237623762,1380.99702970297,20,40,11,32,5306439.07721103,397005.032151405,0,0,0,0,0,0,0,85.1620396039603,16288.3504327557,18.9948575355446,20.373168088023,21.0397670285239,-2.3590099009901,-2.34436969206025,-1.80589052889712,3.75745353192834,2.98102962114632,2.9543226204199
+42309,2874.18823168317,457.326278514851,45,85.1735940594059,87.7288018811882,18.694595710198,-0.468811881188119,1843.82178217822,1404.44554455446,1367.79405940594,20,40,11,32,5306453.28110631,397023.936390504,0,0,0,0,0,0,0,85.1735940594058,16312.0086213696,18.694595710198,20.051118574003,20.7857419564041,-0.468811881188119,-0.454171672258262,-0.349693370181787,4.01078715530774,3.18201548269035,3.09661465039491
+42310,2874.19610534654,457.34122039604,45,85.1802574257426,87.7356651485149,19.5473547855446,-1.11534653465347,1846.60891089109,1401.71287128713,1358.82871287129,20,40,11,32,5306467.5337186,397042.807480464,0,0,0,0,0,0,0,85.1802574257424,16335.6685814631,19.5473547855446,20.9657558092711,21.5132459907176,-1.11534653465347,-1.10070632572361,-0.851668392112353,3.20769946263046,2.54487434976451,2.59569594605994
+42311,2874.20398841584,457.356148811881,45,85.1605247524753,87.7153404950495,19.6846320131683,-1.81861386138614,1843.5099009901,1362.48316831683,1330.07920792079,20,40,11,32,5306481.80411385,397061.662016253,0,0,0,0,0,0,0,85.1605247524751,16359.3258635038,19.6846320131683,21.1129941882799,21.626293724434,-1.81861386138614,-1.80397365245628,-1.40307799588431,3.2587709858006,2.58539267476136,2.67461277813532
+42312,2874.21187178218,457.371062178218,45,85.0954554455446,87.6483191089109,19.1074246421782,-1.55940594059406,1841.65346534653,1351.97128712871,1340.31188118812,20,40,11,32,5306496.07545425,397080.497723715,0,0,0,0,0,0,0,85.0954554455445,16382.9707564906,19.1074246421782,20.4939033228274,21.132100214563,-1.55940594059406,-1.5447657316642,-1.19728351982845,3.66383514769566,2.90675613403328,2.82294716083248
+42313,2874.21973752475,457.385983861386,45,85.0463267326733,87.5977165346535,18.85099945,-2.41425742574257,1839.82673267327,1390.87920792079,1388.31881188119,20,40,11,32,5306510.31402504,397099.34311452,0,0,0,0,0,0,0,85.0463267326731,16406.6025212871,18.85099945,20.2188713289062,20.9122534473931,-2.41425742574257,-2.39961721681272,-1.84548799592427,3.81082760046743,3.02337470351769,2.92889718783605
+42314,2874.2275939604,457.400906039604,45,85.032198019802,87.5831639603961,19.3298916386139,-1.38188118811881,1840.25247524752,1424.53069306931,1402.95445544554,20,40,11,32,5306524.5354057,397118.188721337,0,0,0,0,0,0,0,85.0321980198019,16430.2247786303,19.3298916386139,20.7325130362164,21.3178728188269,-1.38188118811881,-1.36724097918895,-1.04054649103586,3.57407442463627,2.83554317771012,2.84557835686904
+42315,2874.23544514852,457.415831881188,45,85.0143366336633,87.5647667326733,19.3243140811881,-1.34613861386139,1840.54455445545,1448.03069306931,1422.81287128713,20,40,11,32,5306538.74704528,397137.038624625,0,0,0,0,0,0,0,85.0143366336632,16453.8418182618,19.3243140811881,20.726530758395,21.3123485809985,-1.34613861386139,-1.33149840493153,-1.02711497267128,3.51737130036215,2.79055694125068,2.81209736780865
+42316,2874.24328960396,457.430769504951,45,85.0354356435643,87.5864987128713,19.1658773372277,-2.58108910891089,1842.14356435644,1476.49207920792,1449.00693069307,20,40,11,32,5306552.94601257,397155.902887593,0,0,0,0,0,0,0,85.0354356435643,16477.4626916941,19.1658773372277,20.5565974798756,21.1786273609853,-2.58108910891089,-2.56644889998103,-1.97899039834978,3.58405958366452,2.84346504675843,2.87408678538712
+42317,2874.25112910891,457.445718514852,45,85.0901683168317,87.6428733663367,18.6527689767327,-2.46613861386139,1841.79702970297,1454.36930693069,1416.8198019802,20,40,11,32,5306567.13561771,397174.781075805,0,0,0,0,0,0,0,85.0901683168316,16501.0897791803,18.6527689767327,20.0062567965526,20.7464319095376,-2.46613861386139,-2.45149840493153,-1.88188986576415,3.98889142726011,3.16464419297727,3.16283752763614
+42318,2874.2589740594,457.460664059405,45,85.0496831683168,87.6011736633664,19.1800742575248,-1.45504950495049,1841.52475247525,1450.99504950495,1408.45544554455,20,40,11,32,5306581.33544752,397193.655034576,0,0,0,0,0,0,0,85.0496831683167,16524.71812588,19.1800742575248,20.5718245613634,21.1931251668819,-1.45504950495049,-1.44040929602064,-1.12854317755746,3.57446604103237,2.83585387219163,2.97180033847579
+42319,2874.26681752475,457.475616534653,45,85.0647722772277,87.6167154455446,18.6431881185148,1.28415841584158,1842.27722772277,1453.35247524753,1429.5900990099,20,40,11,32,5306595.53243323,397212.537483559,0,0,0,0,0,0,0,85.0647722772276,16548.3500408965,18.6431881185148,19.9959807292257,20.7358963472148,1.28415841584158,1.29879862477144,0.996369998977998,4.02734255957063,3.1951499499774,3.07739606731681
+42320,2874.27466019802,457.490568613861,45,85.0915841584158,87.6443316831683,18.6365511548515,-1.08237623762376,1842.37623762376,1425.63465346535,1390.63267326733,20,40,11,32,5306609.72802127,397231.419320036,0,0,0,0,0,0,0,85.0915841584157,16571.9809784653,18.6365511548515,19.9888621722134,20.733313732215,-1.08237623762376,-1.0677360286939,-0.819644926501125,3.9842106278464,3.16093061366503,3.12679425157524
+42321,2874.28250178218,457.505527623762,45,85.0879405940594,87.6405788118812,19.621094059604,-0.394257425742574,1840.89603960396,1413.2702970297,1383.2702970297,20,40,11,32,5306623.92149892,397250.309659752,0,0,0,0,0,0,0,85.0879405940593,16595.6151227722,19.621094059604,21.0448457746625,21.5714335406291,-0.394257425742574,-0.379617216812717,-0.296050638197481,3.06856739264405,2.43449192763831,2.57774499782697
+42322,2874.29034930693,457.520475742574,45,85.1130693069307,87.6664613861386,18.8801496153465,-2.08861386138614,1842.67326732673,1449.0198019802,1404.10396039604,20,40,11,32,5306638.12628296,397269.186537356,0,0,0,0,0,0,0,85.1130693069306,16619.2489678217,18.8801496153465,20.250136697298,20.9409471339479,-2.08861386138614,-2.07397365245628,-1.59413241834303,3.79214325622152,3.00855121117761,2.92452613786867
+42323,2874.29821653465,457.535408613862,45,85.1143366336633,87.6677667326733,18.6428712876238,-0.784950495049505,1842.27722772277,1425.17920792079,1372.18415841584,20,40,11,32,5306652.36796254,397288.044980758,0,0,0,0,0,0,0,85.1143366336632,16642.8907528327,18.6428712876238,19.9956409083564,20.7405050431174,-0.784950495049505,-0.770310286119647,-0.591300075556829,3.96632016582197,3.14673695916534,3.12284473466587
+42324,2874.30609485148,457.550326633663,45,85.0711782178218,87.6233135643565,18.6308828382178,-0.576534653465346,1838.84158415842,1118.45544554455,1087.8900990099,20,40,11,32,5306666.63057286,397306.885198995,0,0,0,0,0,0,0,85.0711782178217,16666.53320066,18.6308828382178,19.9827825494872,20.7266906236862,-0.576534653465346,-0.561894444535488,-0.431341256368449,4.00698760962007,3.17900105865407,3.17482506514913
+42325,2874.31395514851,457.565207920792,45,84.5900099009901,87.1277101980198,18.5042618263366,-2.86069306930693,1823.4801980198,51.0485148514852,82.5287128712872,20,40,11,32,5306680.86067894,397325.678979474,0,0,0,0,0,0,0,84.59000990099,16690.1181328932,18.5042618263366,19.8469736257454,20.5900040906704,-2.86069306930693,-2.84605286037708,-2.18373020443966,4.05347430597892,3.21588194557854,3.20154226199866
+42326,2874.32173534653,457.579951188118,45,83.3930792079208,85.8948715841584,18.2642491748515,-3.72287128712871,1787.63861386139,-1972.52376237624,-1725.88514851485,20,40,11,32,5306694.94553281,397344.298124152,0,0,0,0,0,0,0,83.3930792079207,16713.4757874312,18.2642491748515,19.5895451042201,20.3170026378208,-3.72287128712871,-3.70823107819886,-2.84701797376814,3.98648860254828,3.16273787754861,3.17871831032984
+42327,2874.32934465347,457.59436009901,45,80.9731683168317,83.4023633663366,17.5367277228713,-2.12465346534654,1731.49504950495,-3436.18811881188,-2907.86831683168,20,40,10.990099009901,32,5306708.72130482,397362.495108109,0,0,0,0,0,0,0,80.9731683168315,16736.319505638,17.5367277228713,18.8092330223264,19.5612922887746,-2.12465346534654,-2.11001325641668,-1.6155035510463,3.99017424536268,3.16566193510763,3.17051067223837
+42328,2874.3367080198,457.608296633663,45,78.2758712871287,80.6241474257426,16.7793481855446,-2.50960396039604,1674.90099009901,-3407.85643564356,-2856.6495049505,20,40,10.990099009901,32,5306722.05203117,397380.095562281,0,0,0,0,0,0,0,78.2758712871286,16758.427420187,16.7793481855446,17.9968962837374,18.7607659580499,-2.50960396039604,-2.49496375146619,-1.90728626943052,4.07899246722381,3.23612714459479,3.21774266843531
+42329,2874.34380326733,457.621813762376,45,75.7556138613861,78.0282822772277,16.0457750275248,-0.127623762376237,1628.69306930693,-2090.09207920792,-1769.35940594059,20,40,11,32,5306734.89545138,397397.164737989,0,0,0,0,0,0,0,75.755613861386,16779.8043765951,16.0457750275248,17.2100933700944,17.9941220821075,-0.127623762376237,-0.11298355344638,-0.085854992490206,4.07803251170672,3.23536555012473,3.24162955567041
+42330,2874.3507360396,457.634998811881,45,74.669396039604,76.9094779207921,15.741498900198,-2.99663366336634,1614.13366336634,274.931683168317,302.891089108911,20,40,11,32,5306747.44531541,397413.814886701,0,0,0,0,0,0,0,74.6693960396039,16800.6580298679,15.741498900198,16.8837382671093,17.6711668617648,-2.99663366336634,-2.98199345443648,-2.27069456004227,4.14766218177232,3.29060724698469,3.2715330197692
+42331,2874.35760633663,457.648059405941,45,74.1223960396039,76.3460679207921,15.7230423544554,0.416435643564356,1601.92574257426,332.885148514851,364.693069306931,20,40,11,32,5306759.88225676,397430.307898473,0,0,0,0,0,0,0,74.1223960396039,16821.3280312431,15.7230423544554,16.8639424719561,17.6254457418633,0.416435643564356,0.431075852494214,0.327670343267514,3.98656496016188,3.16279845695592,3.1823269656238
+42332,2874.36442960396,457.661012673267,45,73.550504950495,75.7570200990099,16.500198020099,0.572574257425742,1587.61386138614,343.087128712871,359.454455445545,20,40,11,32,5306772.23450537,397446.66561736,0,0,0,0,0,0,0,73.550504950495,16841.838320407,16.500198020099,17.6974903402193,18.2529261397438,0.572574257425742,0.5872144663556,0.442546539850417,3.21374590802772,2.5496713838938,2.59756909670192
+42333,2874.37120970297,457.673856237624,45,72.971198019802,75.1603339603961,16.3231859185149,-0.32970297029703,1575.04455445545,288.158415841584,306.243564356435,20,40,11,32,5306784.50926533,397462.885212542,0,0,0,0,0,0,0,72.9711980198019,16862.1899924917,16.3231859185149,17.5076338334021,18.0698711276726,-0.32970297029703,-0.315062761367173,-0.249706560768205,3.14257578161228,2.49320754390687,2.48781391842186
+42334,2874.37793445545,457.686581089109,45,72.1713267326733,74.3364665346534,15.0812271730693,-1.2990099009901,1556.54455445545,-518.384158415842,-408.248514851485,20,40,11,32,5306796.68417662,397478.955063121,0,0,0,0,0,0,0,72.1713267326732,16882.3605071782,15.0812271730693,16.1755557047821,16.9672723955226,-1.2990099009901,-1.28436969206024,-0.97456614093201,4.11268840181443,3.26286029731998,3.19755794478091
+42335,2874.38456267327,457.699121485148,45,70.8515643564357,72.9771112871287,14.8973371831683,-2.01029702970297,1519.4504950495,-1553.4900990099,-1274.09603960396,20,40,11,32,5306808.68439817,397494.791934895,0,0,0,0,0,0,0,70.8515643564356,16902.2386329482,14.8973371831683,15.9783222342521,16.7346956965823,-2.01029702970297,-1.99565682077311,-1.52126108391528,3.96494178317225,3.14564339953162,3.12288251367408
+42336,2874.39102821782,457.711398712871,45,69.1136039603961,71.1870120792079,14.8281573159406,-1.13079207920792,1482.13861386139,-2223.53762376238,-1725.68712871287,20,40,11,32,5306820.38915808,397510.295619947,0,0,0,0,0,0,0,69.113603960396,16921.6747941418,14.8281573159406,15.9041225167391,16.5752591138939,-1.13079207920792,-1.11615187027806,-0.858843219534697,3.63210123075055,2.8815795761319,2.82593444315734
+42337,2874.39729683168,457.723356336634,45,66.9388910891089,68.9470578217822,14.7019257425743,1.20217821782178,1437.15841584158,-2955.32376237624,-2301.63861386139,20,40,11,32,5306831.73624558,397525.394706894,0,0,0,0,0,0,0,66.9388910891088,16940.571860561,14.7019257425743,15.7687312900665,16.3439844853653,1.20217821782178,1.21681842675164,0.948448855774142,3.16096617945127,2.50779782965141,2.7000189894051
+42338,2874.40332782178,457.734929405941,45,64.3130891089109,66.2424817821782,13.7340077007921,-0.932871287128713,1425.89108910891,-3910.37425742574,-3134.99702970297,20,40,11,32,5306842.6517166,397540.006968773,0,0,0,0,0,0,0,64.3130891089108,16958.8187814081,13.7340077007921,14.7305788888834,15.3706886245432,-0.932871287128713,-0.918231078198855,-0.696251648798586,3.44399457281251,2.73234246262318,2.70136629489517
+42339,2874.4090790099,457.746025346535,45,61.3689900990099,63.2100598019802,13.7633366336634,-0.93039603960396,1526.37128712871,-4263.32673267327,-3442.55445544554,20,40,11,32,5306853.05948627,397554.01572664,0,0,0,0,0,0,0,61.3689900990098,16976.2729772827,13.7633366336634,14.7620359965827,15.2269437410983,-0.93039603960396,-0.915755830674103,-0.706027383849648,2.62969117379797,2.08630318830201,1.9610935167112
+42340,2874.41453841584,457.756604752475,45,58.3254653465346,60.0752293069307,13.7056336633663,-2.81772277227723,1453.83168316832,-4248.75247524752,-3411.16732673267,20,40,11,32,5306862.93823024,397567.37151498,0,0,0,0,0,0,0,58.3254653465346,16992.8867060505,13.7056336633663,14.7001459660394,15.0029716128679,-2.81772277227723,-2.80308256334737,-2.18864248689113,2.01193676054888,1.59619886928884,1.63191926075415
+42341,2874.4197049505,457.766677029703,45,55.3036534653465,56.9627630693069,13.4907425742574,-3.27841584158416,1382.5495049505,-4168.35841584158,-3389.51881188119,20,40,11,32,5306872.28571867,397580.086019682,0,0,0,0,0,0,0,55.3036534653465,17008.6652976897,13.4907425742574,14.469661885238,14.6471624819343,-3.27841584158416,-3.2637756326543,-2.56203975682245,1.55272344498015,1.23187540274349,1.25631144846219
+42342,2874.4245809901,457.776178217822,45,52.3650099009901,53.9359601980198,13.1869405940594,-2.05811881188119,1311.23267326733,-3805.9198019802,-3165.10396039604,20,40,11,32,5306881.10776309,397592.079665822,0,0,0,0,0,0,0,52.36500990099,17023.6115376237,13.1869405940594,14.1438153345878,14.2200256244986,-2.05811881188119,-2.04347860295133,-1.61750750939681,1.31039483447013,1.03962052591182,1.06483853774418
+42343,2874.42920762376,457.785135742574,45,50.1917722772277,51.6975254455445,12.3437128712871,-1.70653465346535,1265.75247524752,-1454.89801980198,-1202.15940594059,20,40,10.950495049505,32,5306889.47986419,397603.387968319,0,0,0,0,0,0,0,50.1917722772277,17037.8157331408,12.3437128712871,13.2394010687596,13.3781788578492,-1.70653465346535,-1.69189444453549,-1.32961623031686,1.4083630703418,1.11734503017602,1.10335353968009
+42344,2874.43371306931,457.79388019802,45,48.7552772277228,50.2179355445545,11.1705940594059,-0.947722772277228,1228.46534653465,-1340.23168316832,-1048.38811881188,20,40,11,32,5306897.63221438,397614.42688653,0,0,0,0,0,0,0,48.7552772277227,17051.563605033,11.1705940594059,11.9811580576208,12.2985073326825,-0.947722772277228,-0.93308256334737,-0.744383887680453,1.94866745732162,1.54600326063338,1.47197294314586
+42345,2874.43807821782,457.802425049505,45,47.2233069306931,48.6400061386138,10.0966144114356,-2.19138613861386,1186.84653465347,-1643.71485148515,-1276.52178217822,20,40,11,32,5306905.5291181,397625.212565203,0,0,0,0,0,0,0,47.223306930693,17064.8971796204,10.0966144114356,10.8292479761542,11.2956800828715,-2.19138613861386,-2.176745929684,-1.6197290798947,2.57971794511982,2.04665621098399,1.86579390375083
+42346,2874.44217534653,457.810577722772,45,43.918594059406,45.2361518811881,11.0228014301386,-1.84059405940594,1116.70297029703,-2616.22376237624,-2043.10495049505,20,40,11,32,5306912.93824278,397635.500967764,0,0,0,0,0,0,0,43.9185940594059,17077.5999639988,11.0228014301386,11.8226412552389,11.895469292111,-1.84059405940594,-1.82595385047608,-1.44949729408108,1.11418432494058,0.883954105577515,1.12547629702415
+42347,2874.44582891089,457.818186633663,45,40.2739405940594,41.4821588118812,9.10853575360396,-1.40861386138614,1358.90099009901,-2601.70594059406,-2120.80297029703,20,40,10.6633663366337,32,5306919.53776604,397645.097539385,0,0,0,0,0,0,0,40.2739405940594,17089.278995737,9.10853575360396,9.76947205824994,10.0572798925474,-1.40861386138614,-1.39397365245628,-1.09259135149854,2.01410665870669,1.59792038909696,1.71836420719463
+42348,2874.4488970297,457.825352673267,45,36.1261485148515,37.209932970297,6.63559570956436,-2.87693069306931,1264.48514851485,-3043.23069306931,-2413.70297029703,20,40,10,32,5306925.06264187,397654.123278007,0,0,0,0,0,0,0,36.1261485148514,17099.9113809405,6.63559570956436,7.11708979665392,7.71494337443858,-2.87693069306931,-2.86229048413945,-2.09203856658555,3.02000772118674,2.39596641620422,2.46124642986282
+42349,2874.45127752475,457.832034059406,45,32.5079306930693,33.4831686138614,4.83430693070297,-0.0123762376237626,1298.66831683168,-3141.28712871287,-2446.64950495049,20,40,10,32,5306929.32452121,397662.522795242,0,0,0,0,0,0,0,32.5079306930693,17109.3949584158,4.83430693070297,5.18509536088935,5.97575588717263,-0.0123762376237626,0.00226397130609567,0.0618637848558254,3.89190412456028,3.08769792610624,2.95810177389732
+42350,2874.45289782178,457.838552970297,45,30.2243069306931,31.1310361386139,5.82694059405941,0.906336633663366,1516.16831683168,-2491.14455445544,-1984.33069306931,20,40,10,32,5306932.18185098,397670.694967698,0,0,0,0,0,0,0,30.224306930693,17118.0926031353,5.82694059405941,6.24975680599615,6.68966850363277,0.906336633663366,0.920976842593224,0.621966756431158,2.23428912345364,1.77260530373137,1.7285379542911
+42351,2874.45386059406,457.844862574257,45,27.1890396039604,28.0047107920792,5.65252475247525,3.98920792079208,1358.59405940594,-2822.09207920792,-2209.89207920792,20,40,10,32,5306933.8258513,397678.584848813,0,0,0,0,0,0,0,27.1890396039604,17126.0839380088,5.65252475247525,6.06268494977619,6.36704079122109,3.98920792079208,4.00384812972193,3.03669001195278,1.59650791465226,1.26661243939069,1.30678011401463
+42352,2874.45452435644,457.850599504951,45,24.7014554455446,25.4424991089109,4.7470396039604,4.98316831683168,1456.70792079208,-2982.92277227723,-2279.30792079208,20,40,10,32,5306934.92864182,397685.751670426,0,0,0,0,0,0,0,24.7014554455445,17133.2695116336,4.7470396039604,5.09149571619647,5.45343878424383,4.98316831683168,4.99780852576153,3.72829783423834,1.8532480516222,1.47030090732279,1.47480130318351
+42353,2874.45524079208,457.855806336634,45,22.781,23.46443,3.82508910891089,5.49257425742574,1509.9603960396,-2135.62079207921,-1800.15049504951,20,40,10,32,5306936.14071907,397692.260012001,0,0,0,0,0,0,0,22.781,17139.8512079483,3.82508910891089,4.10264637266592,4.55868433016419,5.49257425742574,5.5072144663556,3.97461216302751,2.28073869433274,1.80945673662429,1.76868345852849
+42354,2874.45637910891,457.860388415842,45,21.1667326732673,21.8017346534653,3.0880396039604,2.38435643564356,1374.5495049505,17.8009900990097,-296.783168316831,20,40,10,32,5306938.14807287,397698.004116593,0,0,0,0,0,0,0,21.1667326732673,17145.9319740649,3.0880396039604,3.3121148603631,3.83991570565103,2.38435643564356,2.39899664457342,1.72135109600666,2.59934408104216,2.06222688725077,2.08825501550549
+42355,2874.45815415842,457.864195742574,45,21.003297029703,21.6333959405941,2.71877227722772,-5.02108910891089,1328.89603960396,2102.30297029703,1883.21584158416,20,40,9.95049504950495,32,5306941.35199348,397702.804224117,0,0,0,0,0,0,0,21.0032970297029,17151.7656817106,2.71877227722772,2.91605264705817,3.51619254905383,-5.02108910891089,-5.00644889998104,-3.37140254191546,2.94378469601597,2.33549378655846,2.30084036990608
+42356,2874.46051544554,457.867323960396,45,21.4706435643564,22.1147628712871,3.63962376237624,-5.5,1331.83168316832,2713.31782178218,2412.24257425742,20,40,10,32,5306945.65683189,397706.77779303,0,0,0,0,0,0,0,21.4706435643564,17157.6561055005,3.63962376237624,3.9037232340015,4.3258903552267,-5.5,-5.48535979107015,-3.96784303781723,2.1137230140967,1.67695245260617,1.65573111078414
+42357,2874.46337217822,457.869566435644,45,22.3338910891089,23.0039078217822,4.76235643564357,-5.5,1100.62871287129,1927.43069306931,1646.75841584158,20,40,10,32,5306950.89897115,397709.664491508,0,0,0,0,0,0,0,22.3338910891089,17163.7282589109,4.76235643564357,5.10792397241651,5.33039741532529,-5.5,-5.48535979107015,-4.17748546097195,1.26817566424436,1.00612534201831,1.03043347896949
+42358,2874.4665850495,457.870627623763,45,22.3382178217822,23.0083643564356,5.79489108910891,-5.5,1014.72277227723,101.810891089109,-113.6,20,40,10,32,5306956.82689151,397711.091663646,0,0,0,0,0,0,0,22.3382178217821,17169.9649713422,5.79489108910891,6.21538171525002,6.20903582435885,-5.5,-5.48535979107015,-4.35165964579886,0.698141301867638,0.553880409412544,0.589298150958797
+42359,2874.46980762376,457.870113366337,45,21.8434851485148,22.4987897029703,6.52047524752475,-5.5,976.69801980198,69.8752475247525,-167.193069306931,20,40,10,32,5306962.80757716,397710.557035705,0,0,0,0,0,0,0,21.8434851485148,17176.1037160341,6.52047524752475,6.9936159291024,6.79801162913717,-5.5,-5.48535979107015,-4.46098372253964,1.15687834290698,0.917826016732794,0.942257888870533
+42360,2874.47259386139,457.86805950495,45,20.5972376237624,21.2151547524752,7.22550495049505,-5.5,1023.45544554455,-739.674257425742,-1112.55346534653,20,40,10,32,5306968.01401661,397708.09060124,0,0,0,0,0,0,0,20.5972376237624,17182.0152488999,7.22550495049505,7.74980420894522,7.32650706000456,-5.5,-5.48535979107015,-4.57844846789147,2.1323269041208,1.6917121154361,1.66348522211959
+42361,2874.4746249505,457.864943564356,45,19.2686237623762,19.8466824752475,7.58542574257426,-5.5,1120.51485148515,450.636633663366,170.512871287129,20,40,10,32,5306971.8451155,397704.276617458,0,0,0,0,0,0,0,19.2686237623762,17187.5458276953,7.58542574257426,8.13584168154445,7.55668972997908,-5.5,-5.48535979107015,-4.65611091394368,2.85604030692109,2.26588051768938,2.22820495134789
+42362,2874.47578534653,457.861087425742,45,19.575603960396,20.1628720792079,7.33383168316831,-5.5,1161.9504950495,4804.98514851485,4213.8603960396,20,40,9.8019801980198,32,5306974.07973862,397699.512170154,0,0,0,0,0,0,0,19.575603960396,17192.877929703,7.33383168316831,7.86599137850146,7.36019656018889,-5.5,-5.48535979107015,-4.62388869910669,2.51011993040722,1.9914396283521,1.98761853039471
+42363,2874.47599960396,457.856511782178,121.633663366337,21.3807722772277,22.0221954455446,7.69408910891089,-5.5,1114.38613861386,5314.97227722772,4557.25742574257,20,40,10.0891089108911,32,5306974.57767973,397693.820549639,0,0,0,0,0,0,0,21.3807722772277,17198.5682823983,7.69408910891089,8.25238991167695,7.77003172910776,-5.5,-5.48535979107015,-4.59594771915599,2.41206186690661,1.91364385805083,1.9444592557371
+42364,2874.47491128713,457.851882475247,225,22.7670891089109,23.4501017821782,8.13273267326733,-5.5,1002.43564356436,5339.79900990099,4579.47524752475,20,40,11.3168316831683,32,5306972.66399099,397688.019302472,0,0,0,0,0,0,0,22.7670891089109,17204.7128254401,8.13273267326733,8.72286246197855,8.22258629490397,-5.5,-5.48535979107015,-4.59096445593598,2.50651567735179,1.98858014252505,1.99183029997627
+42365,2874.47307277228,457.847462376238,225,23.6283168316832,24.3371663366337,7.83714851485148,-4.87643564356436,836.371287128713,5712.12574257426,4911.09504950495,20,40,12,32,5306969.35605885,397682.453958632,0,0,0,0,0,0,0,23.6283168316831,17211.1554620738,7.83714851485148,8.40583003716072,8.02099092215434,-4.87643564356436,-4.86179543463451,-4.02793762010338,1.96095094089071,1.55574853840173,1.57039961268737
+42366,2874.47081029703,457.843117524752,225,25.2610594059406,26.0188911881188,8.041,-0.389702970297029,876.544554455446,5744.03366336634,4936.91881188119,20,40,12,32,5306965.26114756,397676.968394462,0,0,0,0,0,0,0,25.2610594059406,17217.9323028878,8.041,8.62447345494642,8.28879635289565,-0.389702970297029,-0.375062761367173,-0.317433799146515,1.73085415104991,1.37319795183624,1.34095623861132
+42367,2874.46830138614,457.83862019802,225,27.3115643564356,28.1309112871287,7.42561386138614,1.93871287128713,964.589108910891,5823.10198019802,4886.21782178218,20,40,12,32,5306960.7131254,397671.284826891,0,0,0,0,0,0,0,27.3115643564356,17225.2241054731,7.42561386138614,7.96443348267715,7.88303389148304,1.93871287128713,1.95335308021699,1.54664516933398,1.05944141490044,0.840523033179481,0.880951994106389
+42368,2874.46562257426,457.83376980198,225,29.1842376237624,30.0597647524752,8.09286138613861,2.5949504950495,1344.36633663366,4450.21584158416,3795.26831683168,20,40,12,32,5306955.85819358,397665.155941726,0,0,0,0,0,0,0,29.1842376237623,17233.0985228823,8.09286138613861,8.68009802254861,8.55777710872207,2.5949504950495,2.60959070397936,2.09131876968714,0.980554266495841,0.777936783177028,0.756322342255733
+42369,2874.46276603961,457.828565643564,225,31.757900990099,32.710638019802,8.0980495049505,-0.626633663366336,1609.84158415842,7509.9,6032.69108910891,20,40,12,32,5306950.68188015,397658.580616615,0,0,0,0,0,0,0,31.757900990099,17241.5199122113,8.0980495049505,8.68566260319457,8.70991907365863,-0.626633663366336,-0.611993454436478,-0.491868601277258,0.964865639632756,0.76548998616502,0.767587465207165
+42370,2874.45959782178,457.822824158416,225,35.0131485148515,36.063542970297,8.33036633663367,-2.57227722772277,1768.57920792079,6963.96336633663,5857.60693069307,20,40,12,32,5306944.94010151,397651.325828395,0,0,0,0,0,0,0,35.0131485148514,17250.8056566007,8.33036633663367,8.93483687853206,9.09400713608644,-2.57227722772277,-2.55763701879292,-1.95344488295156,1.70639098237384,1.35378974629735,1.23551200419665
+42371,2874.45614693069,457.816531089109,225,37.9411386138614,39.0793727722772,9.55436633663366,0.181188118811881,1910.43564356436,5682.31089108911,5349.26435643564,20,40,12,32,5306938.68691165,397643.37476963,0,0,0,0,0,0,0,37.9411386138613,17260.9490384764,9.55436633663366,10.2476531338305,10.3041663307788,0.181188118811881,0.195828327741738,0.14610869278931,1.00377574807745,0.796359878460429,1.01167611777665
+42372,2874.45249247525,457.809743663366,225,40.3284851485149,41.5383397029703,8.135880088,-0.494950495049505,1580.56435643564,5414.40297029703,5483.32178217821,20,40,12,32,5306932.06758586,397634.801310066,0,0,0,0,0,0,0,40.3284851485148,17271.8261251651,8.135880088,8.72623826036353,9.23284166378177,-0.494950495049505,-0.480310286119646,-0.354492194037336,2.64784672673771,2.10070715647934,2.03944607319834
+42373,2874.44864920792,457.802479108911,225,42.8302376237624,44.1151447524752,8.57999669966337,-0.41029702970297,1518.0396039604,5405.23465346535,5496.7396039604,20,40,12,32,5306925.10907284,397625.627386976,0,0,0,0,0,0,0,42.8302376237623,17283.3791138889,8.57999669966337,9.2025809948731,9.75390236419197,-0.41029702970297,-0.395656820773114,-0.274728194701782,2.84840790208199,2.25982523990282,2.28378516190175
+42374,2874.44462455446,457.794723762376,225,45.2862277227723,46.6448145544555,10.6464147414752,-1.52811881188119,1608.37623762376,5275.84851485149,5331.4900990099,20,40,12,32,5306917.82543249,397615.836223713,0,0,0,0,0,0,0,45.2862277227722,17295.6253361661,10.6464147414752,11.4189430827265,11.6531018194445,-1.52811881188119,-1.51347860295133,-1.21566500954868,2.09899578009218,1.66526839039968,1.7044458803866
+42375,2874.44040742574,457.786517524752,225,47.6245742574257,49.0533114851485,9.63139548955445,-2.15029702970297,1688.81683168317,5177.04851485149,5003.76435643564,20,40,12,32,5306910.19524493,397605.477146226,0,0,0,0,0,0,0,47.6245742574257,17308.5368575358,9.63139548955445,10.3302716992604,10.9245986339269,-2.15029702970297,-2.13565682077311,-1.59304529542074,3.07123525594396,2.43660851523005,2.10114981061244
+42376,2874.43599693069,457.77790019802,225,49.7921485148515,51.285912970297,13.3155445544554,-2.77792079207921,1765.34653465347,5116.15445544554,4759.07920792079,20,40,11.960396039604,32,5306902.21598261,397594.599692413,0,0,0,0,0,0,0,49.7921485148514,17322.0748163367,13.3155445544554,14.2817510941496,14.1816585439556,-2.77792079207921,-2.76328058314935,-2.19763810198417,1.4642635830176,1.16169450321882,1.39840117811068
+42377,2874.4313919802,457.768920891089,225,51.8528217821782,53.4084064356436,14.0695643564356,-3.39356435643564,1837.40099009901,5034.45940594059,4544.20396039604,20,40,12,32,5306893.88454513,397583.264985064,0,0,0,0,0,0,0,51.8528217821782,17336.198154868,14.0695643564356,15.0904843072677,14.9410689180778,-3.39356435643564,-3.37892414750579,-2.70087102488929,1.46017313874604,1.1584492906211,1.23364758158975
+42378,2874.42660435644,457.759606633663,225,53.7436930693069,55.3560038613861,15.9799702970297,-2.58415841584159,1905.49504950495,4844.6801980198,4399.33762376238,20,40,12,32,5306885.22216212,397571.507071838,0,0,0,0,0,0,0,53.7436930693069,17350.8705561881,15.9799702970297,17.1395136969985,16.6754232523325,-2.58415841584159,-2.56951820691173,-2.09428898889242,2.57614121617608,2.0438185618055,2.02052444047285
+42379,2874.42164267327,457.749972475247,225,55.5382871287128,57.2044357425743,16.9349801980198,-1.7460396039604,1950.13366336634,4397.76237623762,3983.13861386139,20,40,12,32,5306876.24445916,397559.344975616,0,0,0,0,0,0,0,55.5382871287128,17366.0550554456,16.9349801980198,18.163821313004,17.5917650126984,-1.7460396039604,-1.73139939503054,-1.41298749004707,3.01049864233674,2.38842225218974,2.36646365102001
+42380,2874.41652613861,457.740052673267,225,57.0775940594059,58.7899218811882,17.6627128712871,-2.63673267326733,1517.17821782178,4600.60396039604,4100.20297029703,20,40,12,32,5306866.98626075,397546.821990566,0,0,0,0,0,0,0,57.0775940594059,17381.6963512652,17.6627128712871,18.9443599428873,18.2982211613405,-2.63673267326733,-2.62209246433747,-2.14499474564772,3.39005527062194,2.689548944032,2.68819355468621
+42381,2874.41127079208,457.729854356436,225,58.6727722772277,60.4329554455446,18.3630693069307,0.0134653465346535,1504.83663366337,4493.64554455445,3994.28415841584,20,40,12,32,5306857.47712243,397533.947519315,0,0,0,0,0,0,0,58.6727722772276,17397.7819184544,18.3630693069307,19.6955358523772,18.9861554566396,0.0134653465346535,0.028105555464511,0.0228944647092832,3.67745480128922,2.91756148144401,2.67712753943529
+42382,2874.40579386139,457.719420792079,225,60.2410891089109,62.0483217821782,17.3769900990099,-1.46851485148515,1536.28217821782,4336.71287128713,3908.66831683168,20,40,12,32,5306847.56276624,397520.772722586,0,0,0,0,0,0,0,60.2410891089108,17414.2996879264,17.3769900990099,18.6379044690682,18.2361163148069,-1.46851485148515,-1.45387464255529,-1.18135119363437,2.44462510870134,1.93947837270971,2.10989217586253
+42383,2874.40016871287,457.708730297029,225,61.636702970297,63.485804059406,18.8171386138614,-1.11653465346535,1386.48514851485,4059.35841584158,3737.53861386139,20,40,12,32,5306837.37957392,397507.273004977,0,0,0,0,0,0,0,61.6367029702969,17431.233739054,18.8171386138614,20.1825534726147,19.5430154484384,-1.11653465346535,-1.10189444453549,-0.893495499139203,3.3535563655226,2.66059201447425,2.63894240983679
+42384,2874.39442128713,457.697801584158,225,62.960504950495,64.8493200990099,19.5546534653465,-0.27049504950495,1370.82673267327,3995.69108910891,3639.27128712871,20,40,12,32,5306826.97518457,397493.4725229,0,0,0,0,0,0,0,62.960504950495,17448.5408786304,19.5546534653465,20.9735840980671,20.2458151201413,-0.27049504950495,-0.255854840575093,-0.205334854790345,3.7991997221073,3.0141495595397,3.10492312988098
+42385,2874.38851990099,457.686684653466,225,64.2403861386139,66.1675977227723,19.9442079207921,-0.686435643564357,1397.16336633663,4070.38415841584,3527.44257425743,20,40,12,32,5306816.28980542,397479.432503578,0,0,0,0,0,0,0,64.2403861386138,17466.2089723598,19.9442079207921,21.3914055208063,20.6495473771414,-0.686435643564357,-0.671795434634499,-0.546694066943853,3.9098938854504,3.10197036078443,3.03382557853044
+42386,2874.38243752475,457.675418019802,225,65.5005544554456,67.4655710891089,20.3842871287129,0.865445544554455,1426.16831683168,4094.28514851485,3478.43564356436,20,40,12,32,5306805.27251721,397465.200022888,0,0,0,0,0,0,0,65.5005544554455,17484.2329213972,20.3842871287129,21.8634178882714,21.098071499731,0.865445544554455,0.880085753484313,0.713674513774697,3.96657035151451,3.14693544757083,3.20828985672193
+42387,2874.3761849505,457.664005742574,225,66.7640396039604,68.7669607920792,21.4000594059406,0.925940594059406,1450.31683168317,4063.66237623762,3508.29900990099,20,40,12,32,5306793.94322215,397450.780488541,0,0,0,0,0,0,0,66.7640396039603,17502.6039361937,21.4000594059406,22.9528969382926,22.0325841688269,0.925940594059406,0.940580802989263,0.783386955199621,4.72159501991621,3.74594509122344,3.7179050050343
+42388,2874.36977792079,457.652411485149,225,67.998,70.03794,21.4239702970297,1.58237623762376,1477.54455445545,3916.06435643564,3619.30297029703,20,40,12,32,5306782.3318869,397436.1291592,0,0,0,0,0,0,0,67.9979999999999,17521.3192006051,21.4239702970297,22.9785428586361,22.1253150990917,1.58237623762376,1.59701644655362,1.31876216055159,4.37704043535408,3.47258777250915,3.47812127134445
+42389,2874.36327168317,457.640576435643,225,69.2077722772278,71.2840054455446,21.3653465346535,2.74693069306931,1495.35643564356,3788.8198019802,3717.92277227723,20,40,12,32,5306770.54215323,397421.174602094,0,0,0,0,0,0,0,69.2077722772276,17540.3758119363,21.3653465346535,22.9156652212225,22.1428701418917,2.74693069306931,2.76157090199916,2.26460590489135,4.08258352996362,3.23897616569586,3.33286024241019
+42390,2874.35669207921,457.628474257426,225,70.4356336633663,72.5487026732674,22.0851287128713,3.13475247524753,1533.12376237624,3734.80099009901,3711.36435643564,20,40,12,32,5306758.62247437,397405.884863438,0,0,0,0,0,0,0,70.4356336633662,17559.7748224423,22.0851287128713,23.6876764498487,22.8263390646075,3.13475247524753,3.14939268417738,2.58381356799768,4.46207268699477,3.54004932825155,3.4610569355387
+42391,2874.35003029703,457.616121188119,225,71.6224455445544,73.7711189108911,22.1108217821782,1.27346534653465,1560.60396039604,3749.3297029703,3629.63861386139,20,40,12,32,5306746.55617054,397390.279873443,0,0,0,0,0,0,0,71.6224455445544,17579.5114208746,22.1108217821782,23.7152338673607,22.9161468551309,1.27346534653465,1.28810555546451,1.06396812537676,4.19953240034261,3.33175922842624,3.21802286957096
+42392,2874.34328445545,457.603538811881,225,72.7961287128713,74.9800125742574,21.5011485148515,-0.336237623762376,1585.09405940594,3725.27128712871,3579.30198019802,20,40,12,32,5306734.33928148,397374.386449694,0,0,0,0,0,0,0,72.7961287128712,17599.5755169693,21.5011485148515,23.0613213054592,22.4650270156082,-0.336237623762376,-0.321597414832519,-0.262452083584554,3.3164177432163,2.63112755610029,2.62575252626597
+42393,2874.33645643564,457.590728019802,225,73.9606336633664,76.1794526732673,20.0186534653465,-1.24683168316832,1608.32178217822,3662.04356435644,3563.45643564357,20,40,12,32,5306721.97527439,397358.205760926,0,0,0,0,0,0,0,73.9606336633662,17619.9589840485,20.0186534653465,21.4712530053044,21.2709156368937,-1.24683168316832,-1.23219147423846,-0.967753791331226,2.08392553296604,1.6533121938162,1.81242936215687
+42394,2874.32955930693,457.577678613861,225,75.082792079208,77.3352758415842,19.2828811881188,0.153069306930693,1634.43564356436,3609.0396039604,3522.3099009901,20,40,12,32,5306709.48858655,397341.725533265,0,0,0,0,0,0,0,75.0827920792078,17640.6558924093,19.2828811881188,20.6820913993056,20.7093967319987,0.153069306930693,0.16770951586055,0.126403444790439,1.98217304784353,1.57258540116315,1.59458199607186
+42395,2874.32257910891,457.564411386139,225,76.1684455445545,78.4534989108911,18.2003943895049,-1.41217821782178,1657.66831683168,3621.42277227723,3426.64752475247,20,40,12,32,5306696.8529001,397324.971199857,0,0,0,0,0,0,0,76.1684455445543,17661.6638599836,18.2003943895049,19.5210568687777,19.8494150511961,-1.41217821782178,-1.39753800889193,-1.08657573685254,2.65068659888158,2.1029602097531,1.96322823244635
+42396,2874.31549138614,457.550958316832,225,77.247801980198,79.565236039604,19.531297029703,0.262772277227723,1678.50495049505,3609.81881188119,3349.48910891089,20,40,12,32,5306684.02220843,397307.981782484,0,0,0,0,0,0,0,77.2478019801979,17682.9751978824,19.531297029703,20.9485328657315,21.045294644989,0.262772277227723,0.27741248615758,0.217343572904899,2.08167352817171,1.65152553353103,1.61648055117333
+42397,2874.30829673267,457.537335049505,225,78.2785742574258,80.6269314851485,20.7243366336634,-0.282475247524753,1701.32178217822,3527.44752475247,3344.80198019802,20,40,12,32,5306670.99726713,397290.776781508,0,0,0,0,0,0,0,78.2785742574256,17704.5755320133,20.7243366336634,22.2281421674423,22.1199187365871,-0.282475247524753,-0.267835038594895,-0.20988149940587,1.80355792198906,1.43087853069024,1.53017592639865
+42398,2874.3010139604,457.523526336634,225,79.2858415841584,81.6644168316832,18.7467134211881,-1.6819801980198,1724.16336633663,3488.42079207921,3333.51782178218,20,40,12,32,5306657.81326236,397273.337823372,0,0,0,0,0,0,0,79.2858415841583,17726.4609326458,18.7467134211881,20.1070180659775,20.4942312052032,-1.6819801980198,-1.66733998908994,-1.27753287118873,2.78145804374113,2.20670961008869,2.26091646511069
+42399,2874.29365445545,457.509527821782,225,80.259099009901,82.666871980198,19.2202233222772,-0.217425742574257,1744.86633663366,3417.84158415842,3349.95247524752,20,40,12,32,5306644.49138392,397255.659854663,0,0,0,0,0,0,0,80.2590990099009,17748.6219525578,19.2202233222772,20.6148869346004,20.9519366459703,-0.217425742574257,-0.2027855336444,-0.156034483130525,2.83330846560969,2.24784588553314,2.29852442719095
+42400,2874.28622346535,457.495332178218,225,81.2633366336634,83.7012367326732,18.6356149612871,-1.15386138613861,1767.24257425743,3428.90198019802,3293.79702970297,20,40,12,32,5306631.04151673,397237.733920052,0,0,0,0,0,0,0,81.2633366336633,17771.0598474973,18.6356149612871,19.9878580462907,20.512243616647,-1.15386138613861,-1.13922117720876,-0.884100025929013,3.23791826279954,2.56884886805305,2.41083954154285
+42401,2874.27870227723,457.480961584158,225,82.2091782178218,84.6754535643564,19.4919235422772,-1.32178217821782,1788.09405940594,3269.90198019802,3084.24356435644,20,40,12,32,5306617.42850824,397219.587022301,0,0,0,0,0,0,0,82.2091782178217,17793.7681426569,19.4919235422772,20.906302347496,21.2959852191109,-1.32178217821782,-1.30714196928797,-1.03009764774705,2.72692833706194,2.16344768563327,2.13035111351906
+42402,2874.27109069307,457.466456534653,225,82.9289108910891,85.4167782178218,20.6946314634653,-1.72514851485149,1800.61881188119,2851.87920792079,2690.77425742574,20,40,12,32,5306603.651095,397201.269588977,0,0,0,0,0,0,0,82.928910891089,17816.7114286305,20.6946314634653,22.1962815217704,22.3613460203749,-1.72514851485149,-1.71050830592163,-1.3589578767086,2.5113617791789,1.99242486687651,2.02954892182318
+42403,2874.26341425743,457.451861881188,225,83.4275742574257,85.9304014851485,19.7557436745545,-2.53059405940594,1809.08415841584,2521.38514851485,2434.38910891089,20,40,12,32,5306589.75560041,397182.838323879,0,0,0,0,0,0,0,83.4275742574256,17839.8202167218,19.7557436745545,21.1892658753788,21.5889747777999,-2.53059405940594,-2.51595385047609,-1.94266891115985,2.89646873804377,2.29795499304592,2.29568113087925
+42404,2874.25568247525,457.437198712872,225,83.7833267326733,86.2968265346535,20.9184917492079,-1.33386138613861,1815.51485148515,2393.79207920792,2325.80396039604,20,40,12,32,5306575.75916382,397164.319805803,0,0,0,0,0,0,0,83.7833267326732,17863.0488086085,20.9184917492079,22.4363856247431,22.5993113098062,-1.33386138613861,-1.31922117720876,-1.04617127482892,2.47710257859306,1.96524483899982,2.04630866280457
+42405,2874.24791871287,457.422486534653,225,84.1109405940594,86.6342688118812,22.3488811881188,-2.28326732673267,1822.82673267327,2212.49504950495,2230.67524752475,20,40,12,32,5306561.7046355,397145.739098674,0,0,0,0,0,0,0,84.1109405940593,17886.3693430144,22.3488811881188,23.9705674113521,23.8335394293829,-2.28326732673267,-2.26862711780282,-1.80835194347272,2.22935672377836,1.76869211374501,1.75455825734952
+42406,2874.24015475248,457.407705742574,225,84.3310297029703,86.8609605940594,22.0299686468317,-2.48782178217822,1827.97524752475,2105.02574257426,2118.32772277228,20,40,11.8712871287129,32,5306547.65132301,397127.072833908,0,0,0,0,0,0,0,84.3310297029702,17909.7679819033,22.0299686468317,23.6285138425447,23.5752807547602,-2.48782178217822,-2.47318157324836,-1.95971650852713,2.82091799963125,2.23801573173678,2.11764921784623
+42407,2874.23233306931,457.392915148515,225,84.5020198019801,87.0370803960397,21.6419306930693,-3.23168316831683,1830.31188118812,2036.59207920792,2021.60792079208,20,40,11.8910891089109,32,5306533.49136505,397108.392362534,0,0,0,0,0,0,0,84.5020198019801,17933.2193627339,21.6419306930693,23.2123189623388,23.2546815988968,-3.23168316831683,-3.21704295938698,-2.56330320904451,2.73771054220295,2.17200190264047,2.26660010010871
+42408,2874.22449871287,457.378101188119,225,84.6348712871287,87.1739174257426,22.4959405940594,-2.60940594059406,1834.68316831683,1948.63366336634,1958.97623762376,20,40,12,32,5306519.30851041,397089.682277082,0,0,0,0,0,0,0,84.6348712871286,17956.7110930969,22.4959405940594,24.1282977860362,23.9893949921591,-2.60940594059406,-2.59476573166421,-2.08063296191331,2.64510086023273,2.09852868392671,2.1608596610215
+42409,2874.21664920792,457.36326950495,225,84.7161881188119,87.2576737623762,19.6071380638614,-3.48574257425742,1834.30693069307,1877.69405940594,1892.35841584158,20,40,12,32,5306505.0980489,397070.949524536,0,0,0,0,0,0,0,84.7161881188118,17980.2303272003,19.6071380638614,21.0298770997689,21.5361993423047,-3.48574257425742,-3.47110236532757,-2.69075749872886,3.0802448021459,2.44375636785759,2.31524795497821
+42410,2874.20880653465,457.348410990099,225,84.7659504950495,87.308929009901,20.1402563255446,-3.29851485148515,1835.55940594059,1847.20891089109,1903.54752475248,20,40,12,32,5306490.90089816,397052.183485469,0,0,0,0,0,0,0,84.7659504950494,18003.7686624314,20.1402563255446,21.6016796487347,21.9927734458331,-3.29851485148515,-3.28387464255529,-2.55704023378607,2.73533161172054,2.17011454404124,2.18479882185668
+42411,2874.20097673267,457.333531485148,225,84.7937722772277,87.3375854455445,20.1573652365346,-3.30554455445545,1838.40594059406,1842.31089108911,1846.74653465347,20,40,12,32,5306476.72811606,397033.391635331,0,0,0,0,0,0,0,84.7937722772276,18027.317034076,20.1573652365346,21.6200300216581,22.0075902734494,-3.30554455445545,-3.29090434552559,-2.56202627616383,2.84938486079297,2.26060032410048,2.35261373454286
+42412,2874.1931430693,457.318646336634,225,84.8156435643564,87.3601128712871,20.9881182618812,-1.96069306930693,1836.89603960396,1851.29306930693,1866.68712871287,20,40,12,32,5306462.54836698,397014.592535729,0,0,0,0,0,0,0,84.8156435643563,18050.8748246701,20.9881182618812,22.5110643973225,22.717473829675,-1.96069306930693,-1.94605286037707,-1.54789435734996,2.88575095179295,2.28945188368866,2.23888989895912
+42413,2874.18531059406,457.303763465347,225,84.8096831683168,87.3539736633663,20.7313938393069,-1.9160396039604,1836.22277227723,1824.85049504951,1859.99801980198,20,40,12,32,5306448.37082828,396995.796219261,0,0,0,0,0,0,0,84.8096831683167,18074.4336313532,20.7313938393069,22.2357114601595,22.4978153034654,-1.9160396039604,-1.90139939503054,-1.49637212861201,2.75066023075282,2.18227572368011,2.1559345855988
+42414,2874.17748049505,457.288874158416,225,84.8185445544555,87.3631008910891,20.3553569857426,-2.81188118811881,1837.9603960396,1863.05445544554,1896.5900990099,20,40,12,32,5306434.19789451,396976.99187293,0,0,0,0,0,0,0,84.8185445544553,18097.9970262377,20.3553569857426,21.8323885075855,22.1786957045343,-2.81188118811881,-2.79724097918896,-2.18772604057695,2.66066903005021,2.11087991461488,2.15382177178018
+42415,2874.16965009901,457.273985742574,225,84.8366336633663,87.3817326732674,22.4016336633663,-1.49891089108911,1838.41584158416,1850.75148514851,1897.57722772277,20,40,12,32,5306420.02445097,396958.188534123,0,0,0,0,0,0,0,84.8366336633662,18121.559634351,22.4016336633663,24.0271477275385,23.9212074190375,-1.49891089108911,-1.48427068215925,-1.18980899689806,2.45374167804418,1.94671113368022,1.96293789545548
+42416,2874.16182693069,457.259085445545,225,84.843801980198,87.3891160396039,21.0416930693069,-0.931386138613861,1839.90099009901,1869.82277227723,1903.20396039604,20,40,12,32,5306405.86472026,396939.370543213,0,0,0,0,0,0,0,84.8438019801979,18145.1256116062,21.0416930693069,22.5685267160015,22.7652321018079,-0.931386138613861,-0.916745929684004,-0.716410286453679,2.60102656926413,2.06356171339947,2.12145310414572
+42417,2874.154,457.244184257426,225,84.8900792079208,87.4367815841584,21.1363201319802,-2.9539603960396,1838.64851485149,1866.09702970297,1857.42871287129,20,40,12,32,5306391.69810048,396920.551225355,0,0,0,0,0,0,0,84.8900792079207,18168.6984008527,21.1363201319802,22.6700201359921,22.8467666465976,-2.9539603960396,-2.93932018710975,-2.31502979913546,3.18344876612647,2.52563471206905,2.43247543960935
+42418,2874.14616009901,457.229282871287,225,84.9221386138614,87.4698027722772,24.6078811881188,-2.80178217821782,1838.10891089109,1835.84653465347,1875.37920792079,20,40,12,32,5306377.50751997,396901.73113897,0,0,0,0,0,0,0,84.9221386138612,18192.2851666117,24.6078811881188,26.3934856472337,25.8023363679323,-2.80178217821782,-2.78714196928797,-2.24646662289688,3.53487020001969,2.8044399441337,2.78562685770628
+42419,2874.13831465347,457.214365742574,225,85.0044851485148,87.5546197029703,23.6007524752475,-2.75841584158416,1842.83168316832,1778.00099009901,1801.87821782178,20,40,12,32,5306363.30707984,396882.891167856,0,0,0,0,0,0,0,85.0044851485148,18215.8862740925,23.6007524752475,25.3132773584795,24.9492492542339,-2.75841584158416,-2.7437756326543,-2.19378911763849,2.82482510039501,2.24111548613443,2.43101768712912
+42420,2874.13046346535,457.199446732673,225,85.0136237623763,87.5640324752476,24.7500792079208,-3.73039603960396,1840.23762376238,1758.62673267327,1777.90099009901,20,40,12,32,5306349.09610482,396864.04857056,0,0,0,0,0,0,0,85.0136237623761,18239.4988718098,24.7500792079208,26.5460018824194,25.9278950153705,-3.73039603960396,-3.71575583067411,-3.01021985631086,3.70043783894994,2.93579540382479,2.71392473486663
+42421,2874.12260485149,457.18453009901,225,85.0351683168316,87.5862233663366,22.1917365236634,-2.34831683168317,1841.9900990099,1724.17326732673,1762.58217821782,20,40,12,32,5306334.87138233,396845.20859415,0,0,0,0,0,0,0,85.0351683168316,18263.1187451871,22.1917365236634,23.8020199685984,23.7534489582966,-2.34831683168317,-2.33367662275331,-1.83364835560942,2.90350213193937,2.30353503691388,2.35770340784788
+42422,2874.11473831683,457.169617623762,225,85.0260396039604,87.5768207920792,23.6147299229703,-3.19752475247525,1839.71782178218,1666.64851485148,1703.35841584158,20,40,12,32,5306320.63195564,396826.373441968,0.475247524752475,0.475247524752475,1260907.14913941,94293.1813534787,0.645344182222626,0,0,85.0260396039603,18286.7381327008,23.6147299229703,25.3282690419582,24.9613526527673,-3.19752475247525,-3.1828845435454,-2.55621746794152,3.6397413724788,2.88764099209038,2.91509590654478
+42423,2874.10687386138,457.154707029703,225,85.0177128712871,87.5682442574258,24.6078514851485,-3.49277227722772,1832.91584158416,1686.10693069307,1724.18811881188,20,40,12,32,5306306.39639891,396807.540608728,2,2,5306308.42196062,396805.890319466,17.224222354872,0,0,85.017712871287,18310.353339219,24.6078514851485,26.3934537889475,25.8067516084277,-3.49277227722772,-3.47813206829787,-2.80994933807703,4.0032877535845,3.1760657248323,3.09444745358937
+42424,2874.0990219802,457.139786336633,225,85.0190297029703,87.5696005940594,24.7976930693069,-3.16336633663366,1839.0099009901,1701.56633663366,1775.48910891089,20,40,12,32,5306292.18441947,396788.695519897,2,2,5306293.52376917,396787.604309292,40.8109617784392,0,0,85.0190297029702,18333.9665796755,24.7976930693069,26.5970707151034,25.9687911537888,-3.16336633663366,-3.14872612770381,-2.55140887233939,3.67354708485582,2.91446123859603,2.89640822131682
+42425,2874.09118267327,457.124847722772,225,85.0079900990099,87.5582298019802,22.5396732673267,-3.70821782178218,1839.0495049505,1647.15940594059,1743.84455445545,20,40,12,32,5306277.99619177,396769.828432891,2,2,5306278.62428158,396769.316708237,64.3997532462279,0,0,85.0079900990098,18357.5843761552,22.5396732673267,24.1752038026644,24.0460851712937,-3.70821782178218,-3.69357761285233,-2.94229341116602,2.73725329954341,2.17163914262214,2.32197276232377
+42426,2874.08336613862,457.109881485148,225,85.0325742574257,87.5835514851485,24.334099009901,-3.76990099009901,1846.15841584158,1637.26138613861,1735.55049504951,20,40,12,32,5306263.85082253,396750.927599876,2,2,5306263.72536796,396751.029811681,87.9876359953966,0,0,85.0325742574256,18381.2039881189,24.334099009901,26.0998372044434,25.5743088183188,-3.76990099009901,-3.75526078116916,-3.03039083601121,3.32048035928076,2.63435069079099,2.55558928161856
+42427,2874.07557118812,457.094895148515,225,85.0320495049505,87.583010990099,25.2362673267327,-3.75594059405941,1837.50495049505,1678.14059405941,1738.00693069307,20,40,12,32,5306249.74594351,396732.002354384,2,2,5306248.83065398,396732.748069749,111.568869904815,0,0,85.0320495049504,18404.825104483,25.2362673267327,27.067468929404,26.3428039113297,-3.75594059405941,-3.74130038512955,-3.03649483493583,4.16968440667866,3.30807889479391,3.31186816011131
+42428,2874.06780019802,457.07988019802,225,85.0323861386138,87.5833577227723,25.4433168316832,-3.8549504950495,1840.59900990099,1623.18811881188,1704.12277227723,20,40,12,32,5306235.68614646,396713.042169341,2,2,5306233.9368166,396714.467403761,135.14871597547,0,0,85.0323861386137,18428.4445450771,25.4433168316832,27.2895424226642,26.5188361279823,-3.8549504950495,-3.84031028611965,-3.12653850928819,4.26396700487326,3.38287934557487,3.41463494873299
+42429,2874.06004653465,457.064847029703,225,85.0104752475247,87.5607895049505,25.8131782178218,-4.55,1837.91584158416,1677.74059405941,1643.31683168317,20,40,12,32,5306221.658912,396694.0597742,2,2,5306219.04509451,396696.189334067,158.725213142018,0,0,85.0104752475246,18452.0627247525,25.8131782178218,27.686241801692,26.8312013768707,-4.55,-4.53535979107015,-3.70059328077763,4.63606424786374,3.67808802716626,3.63535649342427
+42430,2874.05225574258,457.049866930693,225,85.0053960396039,87.5555579207921,25.3204059405941,-4.09584158415842,1840.14851485149,1766.96930693069,1641.72574257426,20,40,12,32,5306207.56178002,396675.142158193,2,2,5306204.15720734,396677.915971349,182.295638879281,0,0,85.0053960396038,18475.6720040705,25.3204059405941,27.1577128346128,26.4124666803558,-4.09584158415842,-4.08120137522856,-3.32029528385608,4.13041603222182,3.27692476702216,3.27947935723987
+42431,2874.04438336634,457.034977722772,225,84.9866336633663,87.5362326732673,20.0198602861386,-3.81564356435644,1841.96534653465,1737.3,1646.57524752475,20,40,12,32,5306193.31155933,396656.334957336,2,2,5306189.26231226,396659.634007135,205.877159504711,0,0,84.9866336633662,18499.2825918593,20.0198602861386,21.4725473957889,21.9018903882567,-3.81564356435644,-3.80100335542658,-2.95515891231325,3.16798476725924,2.51336612689751,2.62453395824571
+42432,2874.03645871287,457.02014980198,225,85.0027524752475,87.552835049505,21.3438762377228,-2.05574257425743,1841.57425742574,1724.85841584158,1704.52277227723,20,40,12,32,5306178.96319597,396637.602268553,2,2,5306174.36474944,396641.34876854,229.462903684542,0,0,85.0027524752474,18522.8923618813,21.3438762377228,22.8926369901631,23.0299956526045,-2.05574257425743,-2.04110236532757,-1.60387087658818,3.0342026107998,2.4072281353568,2.28359359514521
+42433,2874.02851732673,457.005337029703,225,85.0187326732673,87.5692946534653,21.2406534653465,-3.32188118811881,1848.00495049505,1673.8396039604,1726.34257425743,20,40,12,32,5306164.58355964,396618.887800363,1.41584158415842,2,5306159.4636637,396623.058903735,106.330002803605,0,0,85.0187326732672,18546.5045548131,21.2406534653465,22.7819241360026,22.9420771793606,-3.32188118811881,-3.30724097918896,-2.60132115027539,2.74162888953591,2.17511057966502,2.12958552665353
+42434,2874.02057237624,456.990525148515,225,85.0102574257426,87.5605651485149,22.7011903190099,-0.663861386138614,1839.29207920792,1639.26534653465,1704.57128712871,20,40,12,32,5306150.19736065,396600.174230453,1,2,5306144.56105143,396604.765871111,25.4770604549385,0,0,85.0102574257425,18570.1208507427,22.7011903190099,24.3484409031199,24.186448567686,-0.663861386138614,-0.649221177208756,-0.504328080900582,2.77610728614431,2.2024645098483,2.24821387905003
+42435,2874.01262782178,456.975713069307,225,85.0059108910891,87.5560882178218,21.2817128712871,-1.9980198019802,1834.51485148515,1679.87920792079,1720.85346534653,20,40,12,32,5306135.81195933,396581.460333639,1,2,5306129.6587505,396586.473068523,49.071661525754,0,0,85.005910891089,18593.7346678219,21.2817128712871,22.8259629068782,22.9760694905752,-1.9980198019802,-1.98337959305034,-1.54640926391127,2.345424362812,1.86077603895545,1.98259542352467
+42436,2874.00469267327,456.960887821782,225,85.0259405940594,87.5767188118812,21.3416155115842,-2.42673267326733,1834.11386138614,1649.15445544554,1703.09405940594,20,40,12,32,5306121.44433472,396562.730253027,1,2,5306114.75561617,396568.179242937,72.6675820901287,0,0,85.0259405940593,18617.3502852311,21.3416155115842,22.890212220536,23.0307452701758,-2.42673267326733,-2.41209246433747,-1.89013250184904,2.57236466113469,2.04082237772801,2.04264382752104
+42437,2873.99676366337,456.946052871287,225,84.9957524752475,87.545625049505,20.0621644666337,-0.291782178217822,1841.70792079208,1619.83861386139,1666.02376237624,20,40,12,32,5306107.08835739,396543.988196667,1,2,5306099.85126389,396549.883922299,96.2654310179735,0,0,84.9957524752474,18640.9655713973,20.0621644666337,21.5179212649237,21.9396169750407,-0.291782178217822,-0.277141969287964,-0.238136795857883,2.98715762376507,2.36990432052175,2.22871245656911
+42438,2873.98886148515,456.931200693069,225,84.9902673267327,87.5399753465347,20.0941897690099,-1.65514851485149,1842.15346534653,1642.9801980198,1711.33267326733,20,40,12,32,5306092.78252622,396525.2254789,1,2,5306084.95679834,396531.600737762,119.847626440865,0,0,84.9902673267326,18664.5710648241,20.0941897690099,21.5522703969011,21.9672942123016,-1.65514851485149,-1.64050830592163,-1.27625183828687,2.87616509036014,2.28184680311146,2.23060204346437
+42439,2873.9809909901,456.916308316832,225,84.9762079207921,87.5254941584159,21.2022662266337,-1.28435643564356,1839.22277227723,1645.40792079208,1725.1900990099,20,40,12,32,5306078.53634121,396506.413648708,1,2,5306070.06207744,396513.317239789,143.430226142685,0,0,84.976207920792,18688.178833361,21.2022662266337,22.740751430955,22.9092220958851,-1.28435643564356,-1.26971622671371,-1.00299011086392,2.5007528254223,1.98400810133861,2.11965132632176
+42440,2873.97317316832,456.901365940594,225,84.9988613861386,87.5488272277228,20.8794383939604,-1.10108910891089,1841.10891089109,1654.70495049505,1719.0702970297,20,40,11.970297029703,32,5306064.38890276,396487.54119409,1,2,5306055.17706183,396495.045655201,166.997459606883,0,0,84.9988613861385,18711.7879373214,20.8794383939604,22.394498468213,22.636538466639,-1.10108910891089,-1.08644889998103,-0.860724428347702,3.04418047874765,2.41514421992196,2.41703973793878
+42441,2873.96542881188,456.886372376238,225,85.0199207920792,87.5705184158416,22.8178553354455,-3.4870297029703,1846.87128712871,1685.48514851485,1735.25841584158,20,40,12,32,5306050.37875208,396468.607326541,1,2,5306040.3167401,396476.804382726,190.5255956052,0,0,85.0199207920791,18735.4011198847,22.8178553354455,24.4735714014871,24.2854231969335,-3.4870297029703,-3.47238949404044,-2.77184296857234,3.19177681255964,2.53224188708602,2.41287525380598
+42442,2873.95768425743,456.871355049505,225,85.0165544554455,87.5670510891089,23.1243465346535,-3.27920792079208,1836.91089108911,1660.48316831683,1674.80099009901,20,40,11.7920792079208,32,5306036.36882685,396449.643760844,1,2,5306025.44196585,396458.545369562,214.076614071883,0,0,85.0165544554454,18759.0165218374,23.1243465346535,24.8023023070639,24.5455493730135,-3.27920792079208,-3.26456771186223,-2.61007557991703,2.32164711594828,1.84191201931881,1.90057909908311
+42443,2873.94992722772,456.856343762376,225,85.0163267326733,87.5668165346535,23.109198019802,-3.7680198019802,1841.69801980198,1654.94455445545,1688.5801980198,20,40,11.950495049505,32,5306022.3357194,396430.687211292,1,2,5306010.56137947,396440.279221925,237.636834793471,0,0,85.0163267326732,18782.6308599012,23.109198019802,24.786054581132,24.532337867194,-3.7680198019802,-3.75337959305035,-2.99909643767398,2.54261478849157,2.01721988981409,1.97273825494708
+42444,2873.94216306931,456.841318118812,225,85.0362574257426,87.5873451485148,23.6771287128713,-3.80029702970297,1836.80198019802,1660.00297029703,1710.6603960396,20,40,11.970297029703,32,5306008.28978937,396411.712449224,0.0495049504950495,0.099009900990099,262673.40658438,19625.2855432161,12.3715211239601,0,0,85.0362574257424,18806.247563119,23.6771287128713,25.3951956315767,25.0160403186287,-3.80029702970297,-3.78565682077312,-3.04477580810317,2.90222973126787,2.30252555960179,2.39757383689276
+42445,2873.93441079208,456.826288019802,225,85.0108118811881,87.5611362376238,22.0830456545545,-1.98475247524752,1835.21287128713,1655.08118811881,1660.99702970297,20,40,11.8316831683168,32,5305994.26602837,396392.732439793,0,0,0,0,0,0,0,85.010811881188,18829.8665074259,22.0830456545545,23.6854422400292,23.6598528780252,-1.98475247524752,-1.97011226631767,-1.55933958817139,2.54475965103653,2.01892154725988,2.12859378610936
+42446,2873.92665108911,456.81126970297,225,85.028198019802,87.579043960396,20.4526897694059,-0.615643564356436,1843.35643564356,1667.55742574257,1654.79306930693,20,40,11.980198019802,32,5305980.22831016,396373.766767349,0,0,0,0,0,0,0,85.0281980198019,18853.4836363863,20.4526897694059,21.9367839819047,22.2741486156656,-0.615643564356436,-0.601003355426578,-0.484456251265577,3.38004776518149,2.68160934613724,2.44719512694754
+42447,2873.91887108911,456.796258514852,225,85.0143564356436,87.5647871287129,20.9999114410891,-2.01069306930693,1837.94059405941,1715.39603960396,1663.85643564356,20,40,11.980198019802,32,5305966.15289666,396354.809207032,0,0,0,0,0,0,0,85.0143564356434,18877.0994442796,20.9999114410891,22.523713316739,22.7387447143781,-2.01069306930693,-1.99605286037707,-1.56624230239492,2.7411568057614,2.17473604523538,2.29963457299392
+42448,2873.91106970297,456.78128990099,225,85.0012574257426,87.5512951485149,19.0478300329703,-0.630594059405941,1840.53465346535,1696.14158415842,1650.46237623762,20,40,12,32,5305952.03697719,396335.903875355,0,0,0,0,0,0,0,85.0012574257425,18900.7124479925,19.0478300329703,20.429984391703,21.0773031682692,-0.630594059405941,-0.615953850476083,-0.480938206597361,3.62616119569024,2.87686696416878,2.9127526906064
+42449,2873.90324811881,456.766347029703,225,84.9917623762376,87.5415152475248,19.0273333336634,-0.0574257425742574,1836.80693069307,1736.74950495049,1683.43861386139,20,40,12,32,5305937.88312879,396317.029845282,0,0,0,0,0,0,0,84.9917623762375,18924.3242609463,19.0273333336634,20.4080004047503,21.0597433481147,-0.0574257425742574,-0.0427855336444001,-0.0399037768375092,3.63712933694155,2.88556869625441,2.88529065023164
+42450,2873.89540306931,456.751414554455,225,85.0353663366337,87.5864273267327,20.2499724975247,-2.34267326732673,1835.15346534653,1699.04851485149,1671.85148514852,20,40,12,32,5305923.68564245,396298.167891305,0,0,0,0,0,0,0,85.0353663366336,18947.9406280531,20.2499724975247,21.7193570785098,22.1011454389383,-2.34267326732673,-2.32803305839688,-1.81005556882285,3.03870393410143,2.41079932472281,2.45864268466766
+42451,2873.88753514852,456.736497326733,225,85.0449504950495,87.596299009901,21.5904702971287,-2.26009900990099,1841.23267326733,1651.96237623762,1644.67425742574,20,40,12,32,5305909.44550985,396279.324076232,0,0,0,0,0,0,0,85.0449504950494,18971.5643480201,21.5904702971287,23.1571244817057,23.2426014962525,-2.26009900990099,-2.24545880097113,-1.76892896321823,2.59121793811339,2.05577989527323,2.07314528554119
+42452,2873.87965831683,456.721601089109,225,85.0085841584158,87.5588416831683,19.1902530256436,-3.45831683168317,1842.28217821782,1664.12871287129,1676.63861386139,20,40,12,32,5305895.18846165,396260.506018033,0,0,0,0,0,0,0,85.0085841584158,18995.1827813534,19.1902530256436,20.5827419243089,21.1968295464302,-3.45831683168317,-3.44367662275331,-2.6525504024281,3.73553924435582,2.96364360696812,2.81841484513606
+42453,2873.87178188119,456.706704356435,225,85.0431485148515,87.594442970297,21.2949724971287,-4.26752475247525,1844.11386138614,1652.35841584158,1696.57821782178,20,40,12,32,5305880.93221846,396241.68726323,0,0,0,0,0,0,0,85.0431485148514,19018.8001077836,21.2949724971287,22.840184681669,22.9891739070485,-4.26752475247525,-4.25288454354539,-3.34748533249354,2.87741130868542,2.28283550828386,2.44309729566263
+42454,2873.86390158416,456.691805742574,225,85.0384851485148,87.5896397029703,20.8030390538614,-2.88,1836.68811881188,1628.12079207921,1667.06930693069,20,40,12,32,5305866.6689251,396222.865943323,0,0,0,0,0,0,0,85.0384851485148,19042.4216656494,20.8030390538614,22.3125554162718,22.5711940337873,-2.88,-2.86535979107015,-2.24995034644184,3.24216805471644,2.57222050138938,2.46594475271062
+42455,2873.85601752475,456.676907920792,225,85.0486831683168,87.6001436633664,22.6630099009901,-3.3229702970297,1843.09405940594,1602.88712871287,1683.75148514851,20,40,12,32,5305852.39870512,396204.045391562,0,0,0,0,0,0,0,85.0486831683167,19066.0445275305,22.6630099009901,24.3074900261506,24.1541202703327,-3.3229702970297,-3.30833008809985,-2.63459110617377,2.37860560747899,1.88710085505186,1.85020593229012
+42456,2873.84815425743,456.661982277227,225,85.0566633663366,87.6083632673267,22.5860099009901,-2.1229702970297,1842.74752475248,1596.81485148515,1688.15643564356,20,40,12,32,5305838.16768302,396185.190782315,0,0,0,0,0,0,0,85.0566633663365,19089.6679132291,22.5860099009901,24.2249027290444,24.09132530287,-2.1229702970297,-2.10833008809985,-1.68819513781609,2.15955038760779,1.71331025629823,1.78929658202341
+42457,2873.84030069307,456.647038910891,225,85.0361485148514,87.587232970297,19.6192794282178,-2.02148514851485,1840.33663366337,1579.67326732673,1636.30198019802,20,40,12,32,5305823.95509191,396166.314326305,0,0,0,0,0,0,0,85.0361485148514,19113.2901714249,19.6192794282178,21.0428994694492,21.5647242070017,-2.02148514851485,-2.006844939585,-1.53860271596969,3.51551295075893,2.78908259295426,2.76526608440114
+42458,2873.83243960396,456.632118613861,225,85.0132277227722,87.5636245544555,18.6882436745545,-2.2850495049505,1840.14356435644,1627.67722772277,1663.41188118812,20,40,12,32,5305809.7281059,396147.466263505,0,0,0,0,0,0,0,85.0132277227721,19136.9110360564,18.6882436745545,20.0443056200429,20.7706090892229,-2.2850495049505,-2.27040929602064,-1.74393120421066,3.99270948392579,3.1676733029633,3.146354497425
+42459,2873.82456574257,456.617214059406,225,85.012,87.56236,19.0979823988119,-0.466732673267327,1845.55445544554,1638.22673267327,1688.50495049505,20,40,12,32,5305795.47716878,396128.637292182,0,0,0,0,0,0,0,85.0119999999999,19160.5286845713,19.0979823988119,20.4837759285645,21.1190906701804,-0.466732673267327,-0.452092464337469,-0.355642115693773,3.66034111709013,2.90398409476686,2.91165000211241
+42460,2873.81668108911,456.602318514851,225,85.006297029703,87.556485940594,20.2429576457426,-2.25722772277228,1840.91089108911,1628.05049504951,1658.2,20,40,12,32,5305781.20609935,396109.819091435,0,0,0,0,0,0,0,85.0062970297028,19184.1472929321,20.2429576457426,21.7118332129476,22.0942828727417,-2.25722772277228,-2.24258751384242,-1.73895142964093,2.83709294756087,2.25084835853814,2.30922851205376
+42461,2873.80879148515,456.587433465347,225,85.0210792079208,87.5717115841584,21.097795929703,-2.7049504950495,1842.0396039604,1624.0297029703,1693.93069306931,20,40,12,32,5305766.92568481,396091.01370604,0,0,0,0,0,0,0,85.0210792079207,19207.7607480201,21.097795929703,22.6287005289889,22.8220509795486,-2.7049504950495,-2.69031028611965,-2.10405824529436,2.71096447550435,2.15078252723099,2.0981256388931
+42462,2873.80091782178,456.572568415841,225,84.6346732673268,87.1737134653465,19.7785302530693,-2.63287128712871,1822.21287128713,248.024752475248,288.805940594059,20,40,12,32,5305752.67440925,396072.233673285,0,0,0,0,0,0,0,84.6346732673266,19231.3411459299,19.7785302530693,21.2137059004416,21.6775200953694,-2.63287128712871,-2.61823107819886,-2.03980492142888,3.07672996453007,2.44096782105129,2.48457240772344
+42463,2873.79312623762,456.557881386139,225,82.9048712871287,85.3920174257426,19.5687211223762,0.0218811881188119,1772.83168316832,-3041.09801980198,-2536.46237623762,20,40,12,32,5305738.57123814,396053.678046496,0,0,0,0,0,0,0,82.9048712871286,19254.6544001378,19.5687211223762,20.9886725366476,21.4002835287642,0.0218811881188119,0.0365213970486695,0.00128040895728607,3.36959205859762,2.67331416144056,2.53033474924881
+42464,2873.78559485148,456.543633861386,225,79.7101485148515,82.101452970297,19.4792546753465,-1.04881188118812,1704.43564356436,-3674.20396039604,-2821.01188118812,20,40,12,32,5305724.9402383,396035.678506858,0,0,0,0,0,0,0,79.7101485148514,19277.2379875416,19.4792546753465,20.8927141984414,21.1401804317007,-1.04881188118812,-1.03417167225826,-0.781658737265833,2.80018019691484,2.22156309868362,2.23925290529213
+42465,2873.77836960396,456.529925544555,225,76.519702970297,78.815294059406,19.9054554455446,-2.33247524752475,1634.17326732673,-3861.30693069307,-3023.27821782178,20,40,12,32,5305711.86426457,396018.360796964,0,0,0,0,0,0,0,76.5197029702969,19298.941891557,19.9054554455446,21.349841076821,21.3210550130883,-2.33247524752475,-2.3178350385949,-1.840388416181,1.9079322666786,1.5136854132141,1.62389385350238
+42466,2873.77149108911,456.516825742574,225,72.489900990099,74.664598019802,19.5373168316832,-2.25574257425743,1554.44059405941,-4191.32178217822,-3413.15445544554,20,40,12,32,5305699.41694914,396001.812618188,0,0,0,0,0,0,0,72.4899009900989,19319.6482398793,19.5373168316832,20.9549894783894,20.7756590434994,-2.25574257425743,-2.24110236532757,-1.78651603506162,2.06798387653753,1.64066465217139,1.60384300788014
+42467,2873.76500881188,456.504441584159,225,68.2877524752475,70.336385049505,18.0103762376238,-1.11742574257426,1462.27722772277,-4278.66237623762,-3473.66534653465,20,40,12,32,5305687.68758039,395986.169085602,0,0,0,0,0,0,0,68.2877524752474,19339.1951871565,18.0103762376238,19.317250562739,19.2364250239974,-1.11742574257426,-1.1027855336444,-0.880585725329022,1.91832232070907,1.52192851151644,1.54074544351966
+42468,2873.75892465347,456.492796336634,225,64.0773069306931,65.9996261386139,18.1434653465346,-3.67326732673267,1501.26732673267,-4408.02178217822,-3617.62277227723,20,40,12,32,5305676.67911325,395971.459257929,0,0,0,0,0,0,0,64.077306930693,19357.5630409519,18.1434653465346,19.4599969235081,19.1077819696962,-3.67326732673267,-3.65862711780282,-2.94361109675698,2.33499145499284,1.85249894198556,1.8672997885412
+42469,2873.75321049505,456.481828811881,225,60.3731188118812,62.1843123762376,18.2309702970297,-3.85772277227723,1519.11386138614,-4322.08910891089,-3540.24356435643,20,40,12,32,5305666.34082921,395957.605983652,0,0,0,0,0,0,0,60.3731188118811,19374.8412662269,18.2309702970297,19.5538514344795,18.9693378233261,-3.85772277227723,-3.84308256334738,-3.1366634572767,3.19203922446358,2.53245007533158,2.45777494217448
+42470,2873.74783524752,456.471507920792,225,56.7262673267326,58.4280553465347,16.9238316831683,-3.76821782178218,1416.76732673267,-4329.23762376237,-3435.45940594059,20,40,12,32,5305656.61583281,395944.569505485,0,0,0,0,0,0,0,56.7262673267326,19391.0975680696,16.9238316831683,18.1518638362724,17.6486293885003,-3.76821782178218,-3.75357761285232,-3.05624553688141,2.7892712103538,2.21290829781947,2.2132060811156
+42471,2873.74279584158,456.46182970297,225,53.0835148514851,54.6760202970297,15.5259900990099,-3.89287128712871,1326.0495049505,-4400.2,-3457.11287128713,20,40,12,32,5305647.49852217,395932.344795645,0,0,0,0,0,0,0,53.0835148514851,19406.3434668045,15.5259900990099,16.6525916516194,16.2504726446294,-3.89287128712871,-3.87823107819886,-3.14767783666891,2.3328260989573,1.85078102573526,1.83906113451546
+42472,2873.73812138614,456.452823465347,225,48.8235247524753,50.2882304950495,14.1304851485149,-4.33920792079208,1222.69306930693,-5296.90396039604,-4052.32178217822,20,40,12,32,5305639.04215346,395920.96934275,0,0,0,0,0,0,0,48.8235247524752,19420.5162924095,14.1304851485149,15.1558256521429,14.8190695010182,-4.33920792079208,-4.32456771186223,-3.50078821186387,2.01820493795756,1.60117181768783,1.60139711811454
+42473,2873.73392455446,456.444594356436,225,43.7948514851485,45.108697029703,12.1652376237624,-4.68623762376238,1411.08415841584,-6312.75247524752,-4836.08217821782,20,40,12,32,5305631.4530687,395910.577905321,0,0,0,0,0,0,0,43.7948514851484,19433.378636634,12.1652376237624,13.0479752467671,12.8586436553405,-4.68623762376238,-4.67159741483252,-3.75308180360488,1.56524949125304,1.24181312110994,1.25865371292609
+42474,2873.73024247525,456.437122079208,225,39.321603960396,40.5012520792079,9.95234653465346,-4.98861386138614,1359.80693069307,-6011.89702970297,-4694.82376237624,20,40,12,32,5305624.80049389,395901.146447781,0,0,0,0,0,0,0,39.321603960396,19444.8988450223,9.95234653465346,10.674511690405,10.7193269965479,-4.98861386138614,-4.97397365245629,-3.9167886259932,1.45571551204654,1.15491276858076,1.09563593013373
+42475,2873.72710217822,456.430256633664,225,34.9884653465346,36.0381193069307,9.25088118811881,-4.87623762376238,1274.23267326733,-7298.29702970297,-5509.39504950495,20,40,12,32,5305619.13786347,395892.489021522,0,0,0,0,0,0,0,34.9884653465346,19455.2240666395,9.25088118811881,9.92214640489913,9.87432427408165,-4.87623762376238,-4.86159741483252,-3.87177514156725,1.04672131949724,0.830431363153883,0.871649714013059
+42476,2873.72457415842,456.424019207921,225,30.406801980198,31.319006039604,7.47674257425742,-4.56029702970297,1490.69306930693,-6675.88613861386,-5108.39504950495,20,40,12,32,5305614.5952788,395884.634383725,0,0,0,0,0,0,0,30.406801980198,19464.2915756878,7.47674257425742,8.01927221255453,8.1029955659178,-4.56029702970297,-4.54565682077312,-3.57162079915513,1.0166275048659,0.806556003933337,0.810793156035196
+42477,2873.72258247525,456.41831970297,225,27.7232673267327,28.5549653465347,7.46981188118812,-5.29762376237624,1738.36138613861,121.182178217822,484.627722772277,20,40,12,32,5305611.03409374,395877.467763524,0,0,0,0,0,0,0,27.7232673267326,19472.2765208198,7.46981188118812,8.01183861245496,7.94254858337363,-5.29762376237624,-5.28298355344638,-4.21721635936901,0.964748658802435,0.76539717774641,0.777281644515017
+42478,2873.72095584158,456.412555841584,225,28.4366732673267,29.2897734653465,7.21535643564357,-5.32930693069307,1935.74752475248,3168.71089108911,3567.86633663366,20,40,12,32,5305608.15056073,395870.233163902,0,0,0,0,0,0,0,28.4366732673267,19480.0333290707,7.21535643564357,7.73891929451371,7.76691190451926,-5.32930693069307,-5.31466672176322,-4.19825242655147,0.872434464041042,0.692158388045463,0.695205540503392
+42479,2873.71962841584,456.406384257426,223.217821782178,29.3375049504951,30.2176300990099,7.25768316831683,-5.00990099009901,1968.78217821782,740.444554455445,913.569306930693,20,40,12,32,5305605.83043716,395862.500643324,0,0,0,0,0,0,0,29.337504950495,19488.0910020904,7.25768316831683,7.78431735226464,7.85486260516297,-5.00990099009901,-4.99526078116916,-3.92603594442078,0.902365694738734,0.715904758971677,0.716088122944575
+42480,2873.7186729703,456.400084752475,180.445544554455,28.4923861386139,29.3471577227723,7.06085148514851,-5.44336633663366,1917.16336633663,-754.529702970297,-509.939603960396,20,40,12,32,5305604.20223413,395854.621195035,0,0,0,0,0,0,0,28.4923861386138,19496.144112679,7.06085148514851,7.57320310943694,7.63852963508444,-5.44336633663366,-5.42872612770381,-4.26311741542005,0.978845257076176,0.776580916055972,0.786950062885596
+42481,2873.71811861386,456.393922574257,110.940594059406,27.4406930693069,28.2639138613861,6.24195049504951,-5.48386138613861,1848.06435643564,-758.706930693069,-495.459405940594,20,40,12,32,5305603.31390871,395846.926222894,0,0,0,0,0,0,0,27.4406930693069,19503.911557591,6.24195049504951,6.69488077995823,6.88157389297071,-5.48386138613861,-5.46922117720876,-4.22855582104412,1.19299033295267,0.946475981686457,0.916218453580486
+42482,2873.71793019802,456.387939009901,57.4752475247525,26.4883762376238,27.2830275247525,6.04579207920792,-5.23366336633663,1784.57920792079,-750.935643564356,-477.383168316832,20,40,12,32,5305603.09942484,395839.465987686,0,0,0,0,0,0,0,26.4883762376237,19511.3927545932,6.04579207920792,6.48448865828306,6.66042238834114,-5.23366336633663,-5.21902315740678,-4.03702256457265,1.14833680269219,0.911049463363838,1.04369212521623
+42483,2873.71805425743,456.382123762376,45,25.5667326732673,26.3337346534653,5.15132673267327,-5.28376237623762,1718.29702970297,-740.378217821782,-456.137623762377,20,40,11.3762376237624,32,5305603.45997709,395832.225877158,0,0,0,0,0,0,0,25.5667326732673,19518.6211717549,5.15132673267327,5.52511884886164,5.84668027950161,-5.28376237623762,-5.26912216730777,-3.94804951384374,1.73785153511526,1.37874942678918,1.28550993975334
+42484,2873.71844356435,456.376588514851,45,23.7755940594059,24.4888618811881,5.37254455445544,-5.5,1589.54455445545,-1186.88415841584,-888.208910891089,20,40,11,32,5305604.30557132,395825.343441931,0,0,0,0,0,0,0,23.7755940594059,19525.5274650993,5.37254455445544,5.76238874461111,5.93204761415532,-5.5,-5.48535979107015,-4.23397255647704,1.12887169943263,0.89560654466841,0.893427451464797
+42485,2873.71896475248,456.371628316832,45,21.278,21.91634,5.40088118811881,-5.5,1425.70297029703,-1257.23465346535,-812.763366336634,20,40,11,32,5305605.38253118,395819.181777502,0,0,0,0,0,0,0,21.278,19531.7693368264,5.40088118811881,5.79278154958963,5.81313283178599,-5.5,-5.48535979107015,-4.33098949717622,0.824711233803238,0.654296479242916,0.635122598355181
+42486,2873.71957574257,456.367184950495,45,19.6953762376238,20.2862375247525,4.71774257425743,-5.5,1331.12376237624,-530.911881188119,-301.067326732673,20,40,11,32,5305606.61421855,395813.666953236,0,0,0,0,0,0,0,19.6953762376237,19537.4151115239,4.71774257425743,5.06007282663273,5.14133922059884,-5.5,-5.48535979107015,-4.28086430079583,0.793652944557497,0.629655940261675,0.677193644200585
+42487,2873.72029217822,456.363018910891,45,18.9215940594059,19.4892418811881,3.90612871287129,-5.5,1280.71287128713,-474.385148514852,-233.60099009901,20,40,11.6732673267327,32,5305608.03499533,395808.501132862,0,0,0,0,0,0,0,18.9215940594059,19542.7680988452,3.90612871287129,4.18956639668728,4.40657967986328,-5.5,-5.48535979107015,-4.15438057986264,1.17451862158106,0.931821184685205,0.915014412043058
+42488,2873.72106841584,456.359003366337,45,18.8482178217822,19.4136643564356,3.55010891089109,-5.5,1294.78217821782,2659.76336633663,2875.69603960396,20,40,12,32,5305609.56316568,395803.524791666,0,0,0,0,0,0,0,18.8482178217822,19547.9867009904,3.55010891089109,3.80771297900124,4.09952200392615,-5.5,-5.48535979107015,-4.07137032958441,1.49304534387628,1.18452892577106,1.16573842557582
+42489,2873.72202435644,456.354906435644,45,20.6402772277228,21.2594855445544,3.82385148514851,-5.5,1168.94554455446,4583.47128712871,5403.9099009901,20,40,12,32,5305611.42604236,395798.453077753,0,0,0,0,0,0,0,20.6402772277227,19553.430816997,3.82385148514851,4.10131894407671,4.43503225894333,-5.5,-5.48535979107015,-4.05311371514866,1.70193391627527,1.3502536690178,1.32711637853801
+42490,2873.72329049505,456.350481485149,45,22.5012178217822,23.1762543564356,4.43865346534653,-5.5,1089.82178217822,3646.06336633663,4298.53168316832,20,40,12,32,5305613.87089477,395792.983117013,0,0,0,0,0,0,0,22.5012178217822,19559.453037074,4.43865346534653,4.76073237005188,5.06460848247394,-5.5,-5.48535979107015,-4.11315524124351,1.58520348550927,1.25764390848563,1.29147980303324
+42491,2873.72488207921,456.345875346535,45,24.0343069306931,24.7553361386139,4.52592079207921,-5.5,870.836633663366,3362.4801980198,4020.26237623763,20,40,11.9405940594059,32,5305616.92266473,395787.298334593,0,0,0,0,0,0,0,24.034306930693,19565.9149487076,4.52592079207921,4.85433201473414,5.22665504326953,-5.5,-5.48535979107015,-4.07034819474534,1.90518039499689,1.51150217636844,1.48834138854821
+42492,2873.72683693069,456.341188118812,45,25.2538712871287,26.0114874257426,4.89145544554455,-5.49069306930693,897.420792079208,2768.95544554455,3206.11485148515,20,40,11.4059405940594,32,5305620.64915996,395781.524694299,0,0,0,0,0,0,0,25.2538712871287,19572.7741645767,4.89145544554455,5.24639070341402,5.60746707590138,-5.49069306930693,-5.47605286037708,-4.09044503676671,1.86536212162662,1.47991177841114,1.52718385386062
+42493,2873.72909871287,456.336533465347,45,26.0053069306931,26.7854661386139,4.71633663366336,-5.20049504950495,915.623762376238,1412.96237623762,1597.30099009901,20,40,11.5643564356436,32,5305624.94346894,395775.801907713,0,0,0,0,0,0,0,26.0053069306931,19579.9144509903,4.71633663366336,5.05856486775539,5.50180725718613,-5.20049504950495,-5.1858548405751,-3.81332248452706,2.23954065572794,1.77677168213979,1.76252739741729
+42494,2873.73155059406,456.332066138614,45,25.6587920792079,26.4285558415841,4.07465346534653,-2.3139603960396,902.836633663366,290.433663366337,382.426732673267,20,40,11,32,5305629.58569756,395770.31884768,0,0,0,0,0,0,0,25.6587920792079,19587.1017545382,4.07465346534653,4.37031969282261,4.93648033298259,-2.3139603960396,-2.29932018710975,-1.65417969086989,2.80393873474521,2.22454498854848,2.22985293934961
+42495,2873.73388673267,456.327578118812,45,25.221396039604,25.9780379207921,3.779,-4.60178217821782,921.683168316832,-424.783168316832,-499.324752475248,20,40,11,32,5305634.01400234,395764.80614621,0,0,0,0,0,0,0,25.2213960396039,19594.1802710398,3.779,4.0532129320038,4.65998530640393,-4.60178217821782,-4.58714196928797,-3.20386342075169,2.99293201735865,2.37448551845284,2.33684202900441
+42496,2873.73566831683,456.322785445545,45,24.0253366336634,24.7460967326733,4.31074257425742,-5.5,1064.86633663366,-465.271287128713,-841.764356435644,20,40,11,32,5305637.4219429,395758.895383532,0,0,0,0,0,0,0,24.0253366336633,19601.024217217,4.31074257425742,4.62353997050001,5.04310285642419,-5.5,-5.48535979107015,-4.02439604724706,2.12160844261974,1.68320847035937,1.69719856833649
+42497,2873.73663861386,456.317828910891,45,22.3919900990099,23.0637498019802,4.05107095709901,-5.5,1051.56930693069,-1176.36534653465,-1661.20792079208,20,40,11,32,5305639.33079547,395752.753355395,0,0,0,0,0,0,0,22.3919900990099,19607.4874265404,4.05107095709901,4.34502598353498,4.7286693778506,-5.5,-5.48535979107015,-4.01670182118907,1.94628692781651,1.54411463342656,1.52950425048289
+42498,2873.73656841584,456.312992475247,153.712871287129,21.3143168316832,21.9537463366337,4.21146534653465,-5.48732673267327,974.009900990099,173.822772277228,-35.0811881188119,20,40,11,32,5305639.30959903,395746.726124723,0,0,0,0,0,0,0,21.3143168316831,19613.5393036581,4.21146534653465,4.51705895878807,4.80338767330434,-5.48732673267327,-5.47268652374341,-4.09740401908015,1.50977835282303,1.19780429827995,1.20093841890956
+42499,2873.73549613861,456.308686336634,225,20.4747722772277,21.0890154455446,4.944,-5.5,916.876237623762,991.567326732673,820.178217821782,20,40,11.3861386138614,32,5305637.42028095,395741.325966321,0,0,0,0,0,0,0,20.4747722772277,19619.3278221949,4.944,5.30274801159745,5.37846813720984,-5.5,-5.48535979107015,-4.27414406949526,0.896190429954806,0.711005524135402,0.729039632946501
+42500,2873.73353178218,456.305278910891,225,20.281900990099,20.890358019802,6.05870297029703,-5.5,893.079207920792,2698.15247524752,2405.43168316832,20,40,11.6138613861386,32,5305633.85830561,395737.01550314,0,0,0,0,0,0,0,20.281900990099,19624.9691049507,6.05870297029703,6.49833639332568,6.31575266524057,-5.5,-5.48535979107015,-4.45512746806819,1.15628941011891,0.917358778463265,0.981140459256079
+42501,2873.73090148515,456.303059504951,225,20.6541485148515,21.273772970297,7.22607920792079,-5.5,901.767326732673,3339.79801980198,2951.19207920792,20,40,12,32,5305629.03604543,395734.162699965,0,0,0,0,0,0,0,20.6541485148515,19630.6477266779,7.22607920792079,7.75042013581061,7.33026483209353,-5.5,-5.48535979107015,-4.56609602590249,2.24262096177274,1.77921548709539,1.7485491920151
+42502,2873.72781910891,456.302332673267,225,21.3466435643564,21.9870428712871,7.89287128712871,-5.5,936.480198019802,3438.32772277228,3025.86633663366,20,40,12,32,5305623.34278832,395733.154108883,0,0,0,0,0,0,0,21.3466435643564,19636.4826662543,7.89287128712871,8.46559618196124,7.9372100556721,-5.5,-5.48535979107015,-4.610731831501,2.64443484191938,2.09800028875071,2.07519226954151
+42503,2873.72465237624,456.303090891089,225,21.9729207920792,22.6321084158416,8.34385148514851,-5.49861386138614,993.990099009901,3742.17821782178,3295.56732673267,20,40,11.5841584158416,32,5305617.45985115,395733.992667293,0,0,0,0,0,0,0,21.9729207920792,19642.4973238176,8.34385148514851,8.94930054044007,8.35675757270134,-5.49861386138614,-5.48397365245628,-4.63047878129298,2.93634494342687,2.32959135219603,2.30209693678651
+42504,2873.7216190099,456.305062178218,225,22.8283564356436,23.5132071287129,8.08090099009901,-4.92524752475248,981.613861386139,3342.09504950495,2943.88217821782,20,40,12,32,5305611.79665299,395736.346852071,0,0,0,0,0,0,0,22.8283564356435,19648.7121345711,8.08090099009901,8.6672697526625,8.18252291658846,-4.92524752475248,-4.91060731582262,-4.09359235279614,2.48165407302067,1.96885583234782,1.98440675233399
+42505,2873.7188239604,456.308240792079,225,24.1077821782178,24.8310156435643,7.99571287128713,-4.30306930693069,794.346534653465,3373.24554455445,2972.17326732673,20,40,12,32,5305606.54772921,395740.213025636,0,0,0,0,0,0,0,24.1077821782178,19655.230027888,7.99571287128713,8.5759001880101,8.1834971344776,-4.30306930693069,-4.28842909800084,-3.54298763533692,2.06246843282344,1.63628889583914,1.58418919381322
+42506,2873.71659534653,456.312582079208,225,25.0123564356436,25.7627271287129,7.50055445544554,-2.95237623762376,826.579207920792,3113.61683168317,2767.78316831683,20,40,12,32,5305602.32187604,395745.546544113,0,0,0,0,0,0,0,25.0123564356435,19662.0568187846,7.50055445544554,8.04481193861089,7.81454847058205,-2.95237623762376,-2.93773602869391,-2.34607441585765,1.62939067143648,1.29270044584659,1.27971252077671
+42507,2873.71513089109,456.317732277228,208.960396039604,25.6304356435644,26.3993487128713,7.671,-1.01069306930693,856.549504950495,2866.04554455446,2538.43564356436,20,40,11.980198019802,32,5305599.49330817,395751.913328789,0,0,0,0,0,0,0,25.6304356435643,19669.0919774204,7.671,8.22762540391668,7.99562878635579,-1.01069306930693,-0.996052860377074,-0.77724418350539,1.45198136876862,1.15195023248377,1.22281862072273
+42508,2873.71443970297,456.323358613861,119.851485148515,25.9320396039604,26.7100007920792,7.54558415841584,-0.0352475247524753,878.193069306931,2506.30891089109,2229.2504950495,20,40,12,32,5305598.08638947,395758.899134623,0,0,0,0,0,0,0,25.9320396039603,19676.2805118264,7.54558415841584,8.09310910040065,7.90650326420212,-0.0352475247524753,-0.0206073158226179,0.00133551030733928,1.3246768326576,1.05095135390057,1.06045169965397
+42509,2873.71425861386,456.329117227723,50.3465346534653,26.0043366336634,26.7844667326733,6.82444554455446,2.49782178217822,893.712871287129,2037.39108910891,1830.46435643564,20,40,12,32,5305597.62138097,395766.066791752,0,0,0,0,0,0,0,26.0043366336633,19683.4847706823,6.82444554455446,7.3196430100407,7.29674396889039,2.49782178217822,2.51246199110807,1.99779786719607,1.17975690942822,0.935977055437506,0.946397654007147
+42510,2873.71440821782,456.334908316832,45,25.9271683168317,26.7049833663366,7.48044554455446,2.5740594059406,894.19801980198,932.666336633663,803.425742574258,20,40,11.970297029703,32,5305597.76820746,395773.285968066,0,0,0,0,0,0,0,25.9271683168317,19690.7234014578,7.48044554455446,8.02324387889343,7.84981072069495,2.5740594059406,2.58869961487045,2.14441729996433,1.44782073957929,1.14864933767547,1.10306092907272
+42511,2873.71475316832,456.340560198019,45,25.3744752475248,26.1357095049505,7.66959405940594,2.70851485148515,885.737623762376,390.522772277228,261.151485148515,20,40,12,32,5305598.28002323,395780.338261831,0,0,0,0,0,0,0,25.3744752475247,19697.8286070409,7.66959405940594,8.22611744503934,7.97944681592439,2.70851485148515,2.723155060415,2.23520205766106,1.4556594094085,1.15486825874866,1.19537830021863
+42512,2873.71510990099,456.346122970297,45,24.7669108910891,25.5099182178218,7.49249504950495,2.8080198019802,917.059405940594,-258.944554455446,-458.538613861386,20,40,12,32,5305598.81567671,395787.279941997,0,0,0,0,0,0,0,24.7669108910891,19704.8139308583,7.49249504950495,8.03616772363797,7.79395291705359,2.8080198019802,2.82266001091005,2.32748084188607,1.4609261632362,1.15904671339467,1.15965563801115
+42513,2873.71533514852,456.351505841584,45,23.7318613861386,24.4438172277228,6.97739603960396,4.53920792079208,1083.40099009901,-586.29603960396,-502.117821782178,20,40,12,32,5305599.1118296,395793.99311377,0,0,0,0,0,0,0,23.7318613861386,19711.5494791257,6.97739603960396,7.48369194480943,7.29544603537071,4.53920792079208,4.55384812972193,3.70119597613822,1.18609706371371,0.94100710772347,0.929436225155698
+42514,2873.71531247525,456.356596237624,69.950495049505,21.5393465346535,22.1855269306931,6.47948514851486,3.66831683168317,1061.45544554455,-3916.06336633664,-3157.36633663366,20,40,12,32,5305598.95533445,395800.333646081,0,0,0,0,0,0,0,21.5393465346534,19717.9011478825,6.47948514851486,6.94965149422782,6.74695950538054,3.66831683168317,3.68295704061302,3.00010441792428,1.11057559916105,0.88109107125068,0.934977698262154
+42515,2873.71510524752,456.36097990099,96.6831683168317,18.4665841584158,19.0205816831683,5.79552475247525,4.43257425742574,1019.0495049505,-2747.23762376238,-2088.46237623762,20,40,12,32,5305598.47288314,395805.787604024,0,0,0,0,0,0,0,18.4665841584158,19723.4007201048,5.79552475247525,6.21606135868769,5.98875361117097,4.43257425742574,4.4472144663556,3.64697314184389,1.20271426490641,0.954190602490622,0.892401297761318
+42516,2873.71476613861,456.364866732673,107.376237623762,17.1874752475247,17.7030995049505,5.17852475247525,4.72544554455445,1164.24257425743,-569.366336633663,-286.315841584158,20,40,11.7722772277228,32,5305597.75732154,395810.618231159,0,0,0,0,0,0,0,17.1874752475247,19728.3336177395,5.17852475247525,5.55429041953809,5.3903316591324,4.72544554455445,4.74008575348431,3.86199846089651,0.914661719646617,0.725659986590937,0.706127700694155
+42517,2873.71440712871,456.368550990099,114.504950495049,16.3644158415841,16.8553483168317,4.56426732673267,2.00148514851485,1116.60396039604,-17.4663366336634,176.542574257426,20,40,12,32,5305597.00945621,395815.195839725,0,0,0,0,0,0,0,16.3644158415841,19732.9835729376,4.56426732673267,4.89546106214217,4.82068698678169,2.00148514851485,2.01612535744471,1.64793902985439,0.608238119607879,0.482554431040666,0.50226235537612
+42518,2873.71398554455,456.372201188119,125.19801980198,16.8888514851485,17.395517029703,4.55233663366337,2.00554455445545,1147.26732673267,3607.29900990099,4086.36336633663,20,40,12,32,5305596.14645154,395819.728927951,0,0,0,0,0,0,0,16.8888514851485,19737.55229758,4.55233663366337,4.8826646505422,4.84092277931195,2.00554455445545,2.0201847633853,1.61535436851964,0.498891869785345,0.395803016309277,0.413967085508536
+42519,2873.71353821782,456.37614970297,125.19801980198,18.808495049505,19.3727499009901,5.29681188118812,2.81514851485149,1007.65346534653,5139.06732673267,5688.84752475248,20,40,12,32,5305595.22905824,395824.632780967,0,0,0,0,0,0,0,18.8084950495049,19742.5009817934,5.29681188118812,5.68116073438027,5.58468839559944,2.81514851485149,2.82978872378134,2.28707025838858,0.677074787635703,0.537166988366596,0.526423390939754
+42520,2873.71312386139,456.380577128713,109.158415841584,21.3108811881188,21.9502076237624,4.84359405940594,-0.845841584158416,1073.57425742574,6222.80693069307,6002.89801980198,20,40,12,32,5305594.36197284,395830.134334823,0,0,0,0,0,0,0,21.3108811881188,19748.0656708473,4.84359405940594,5.19505638501215,5.34218021507743,-0.845841584158416,-0.831201375228559,-0.625133890238322,1.06939225242442,0.848417672770404,0.78578143998847
+42521,2873.71285792079,456.385607128713,75.2970297029703,24.4363861386139,25.1694777227723,5.63313861386139,-0.953069306930693,1228.67326732673,7628.27128712871,6431.09207920792,20,40,12,32,5305593.75626123,395836.391501293,0,0,0,0,0,0,0,24.4363861386138,19754.4094366889,5.63313861386139,6.04189210835483,6.19284524495538,-0.953069306930693,-0.938429098000836,-0.757275992711952,1.08545241029557,0.861159229233409,0.941158130297429
+42522,2873.71278762376,456.391405049505,48.5643564356436,27.891603960396,28.7283520792079,5.71240594059406,2.07287128712871,1400.64851485149,7866.89801980198,6458.08217821782,20,40,12,32,5305593.49569035,395843.611836869,0,0,0,0,0,0,0,27.891603960396,19761.674767437,5.71240594059406,6.12691125463645,6.45850863253355,2.07287128712871,2.08751149605857,1.54840204582391,1.88931545809862,1.49891550126268,1.66019056289628
+42523,2873.71304524752,456.397957722772,45,31.252801980198,32.190386039604,5.54812321235644,-2.50188118811881,1571.65841584158,7716.93762376238,6354.97128712871,20,40,11.960396039604,32,5305593.8255825,395851.783357673,0,0,0,0,0,0,0,31.252801980198,19769.900932316,5.54812321235644,5.95070779377442,6.51084054178554,-2.50188118811881,-2.48724097918896,-1.73840049615701,2.86768856422282,2.27512182959281,2.18721447485753
+42524,2873.71383643564,456.405181980198,45,34.5132376237624,35.5486347524753,6.84886798680198,-3.29247524752475,1722.63861386139,7221.44851485149,5958.99504950495,20,40,11.5841584158416,32,5305595.12873345,395860.809328708,0,0,0,0,0,0,0,34.5132376237623,19779.0447036031,6.84886798680198,7.34583760087129,7.80462214775894,-3.29247524752475,-3.2778350385949,-2.41740362145591,2.4286834481552,1.92683082779811,1.9036623553792
+42525,2873.71526079208,456.41287960396,45,37.2397821782178,38.3569756435643,7.1190506050693,-0.925346534653466,1865.19801980198,6720.44356435644,5613.57128712871,20,40,12,32,5305597.59410303,395870.446146551,0,0,0,0,0,0,0,37.2397821782178,19789.0266330586,7.1190506050693,7.63562529136183,8.19068662210749,-0.925346534653466,-0.910706325723608,-0.729800517595448,2.82780334862073,2.24347832205631,2.21336443161413
+42526,2873.71733891089,456.420837029703,45,39.7511188118812,40.9436523762376,7.45764796481188,0.959306930693069,1822.59900990099,5850.94851485148,4891.99108910891,20,40,11.9009900990099,32,5305601.26464127,395880.428448139,0,0,0,0,0,0,0,39.7511188118811,19799.7398210399,7.45764796481188,7.99879205432847,8.62272854419835,0.959306930693069,0.973947139622926,0.743251601210779,3.16357321845949,2.50986616141944,2.496533982798
+42527,2873.72007376238,456.428912871287,45,42.0271683168317,43.2879833663367,8.14148569856436,-0.217821782178218,1474.29702970297,5843.83366336634,4897.51188118812,20,40,11.4257425742574,32,5305606.1490292,395890.580196327,0,0,0,0,0,0,0,42.0271683168316,19811.0963491752,8.14148569856436,8.73225062692379,9.33518937277029,-0.217821782178218,-0.203181573248361,-0.10301067746136,3.08201102493321,2.445157626024,2.46947280684514
+42528,2873.7233509901,456.437160495049,45,44.278099009901,45.606441980198,8.63835093509901,-1.67089108910891,1565.84158415842,5889.86435643565,4919.7504950495,20,40,12,32,5305612.03424124,395900.964043739,0,0,0,0,0,0,0,44.2780990099009,19823.0761542082,8.63835093509901,9.26516954785139,9.88642370361816,-1.67089108910891,-1.65625088017906,-1.1993167410382,3.19886897580486,2.53786855645993,2.63348915441648
+42529,2873.72701643564,456.445670693069,45,46.6130594059406,48.0114511881188,8.74310451046534,-0.128811881188119,1646.86633663366,5509.9801980198,4408.9297029703,20,40,12,32,5305618.63268451,395911.68793668,0,0,0,0,0,0,0,46.6130594059405,19835.6964647968,8.74310451046534,9.37752428358795,10.1100620632676,-0.128811881188119,-0.114171672258261,-0.100277498090168,3.69498471128627,2.93146908682441,2.69341526882518
+42530,2873.73098950495,456.454521485148,45,48.4118910891089,49.8642478217822,11.8828910891089,0.95019801980198,1349.06435643564,3541.92871287129,2967.4900990099,20,40,12,32,5305625.79332026,395922.846369417,0,0,0,0,0,0,0,48.4118910891089,19848.932866557,11.8828910891089,12.7451409981394,12.8853828629784,0.95019801980198,0.964838228731838,0.743048945385464,1.37762171451311,1.09295593486431,1.20847296891489
+42531,2873.7351429703,456.463538316832,45,49.2506930693069,50.7282138613861,11.921099009901,0.45990099009901,1134.67821782178,2411.67326732673,2146.67326732673,20,40,12,32,5305633.28440269,395934.217640086,0,0,0,0,0,0,0,49.2506930693069,19862.5155007154,11.921099009901,12.7861213735455,12.9650677251018,0.45990099009901,0.474541199028868,0.366389195153939,1.47421659856492,1.16959087077578,1.2403508083242
+42532,2873.73941,456.472618316832,45,49.8267524752475,51.3215550495049,11.0938118811881,-0.84990099009901,1078.09405940594,2000.41188118812,1811.09306930693,20,40,12,32,5305640.98444843,395945.671364332,0,0,0,0,0,0,0,49.8267524752475,19876.2830685922,11.0938118811881,11.8988043879463,12.2941800599678,-0.84990099009901,-0.835260781169152,-0.647598893872871,2.25275972810627,1.78725922270125,1.65530948931125
+42533,2873.74374782178,456.481707722772,45,49.9348811881188,51.4329276237624,11.6019504950495,-0.780693069306931,1076.40099009901,781.039603960396,718.50099009901,20,40,12,32,5305648.81543646,395957.139139133,0,0,0,0,0,0,0,49.9348811881187,19890.1550043457,11.6019504950495,12.4438147083891,12.7327948628896,-0.780693069306931,-0.766052860377072,-0.586474706973598,1.78177099767259,1.41359356197694,1.47954896935692
+42534,2873.7480849505,456.49070970297,45,49.4857326732673,50.9703046534653,11.4486930693069,-1.97277227722772,1069.10396039604,513.969306930693,453.740594059406,20,40,12,32,5305656.64712631,395968.497951238,0,0,0,0,0,0,0,49.4857326732673,19903.96394714,11.4486930693069,12.2794365713303,12.5761251315986,-1.97277227722772,-1.95813206829787,-1.51554560680587,1.85878271047579,1.4746919082614,1.42952548391966
+42535,2873.75246,456.499602772277,45,49.0704455445544,50.5425589108911,11.6757227722772,-0.903465346534653,1058.75247524752,529.586138613862,449.015841584158,20,40,12,32,5305664.55152589,395979.722325751,0,0,0,0,0,0,0,49.0704455445544,19917.6514408144,11.6757227722772,12.5229400717346,12.746622566149,-0.903465346534653,-0.888825137604795,-0.688154969815064,1.51717663162615,1.20367382881977,1.2218577489503
+42536,2873.75682405941,456.508375841584,45,48.2744851485149,49.7227197029703,12.0073267326733,-0.032970297029703,1036.29702970297,-440.29603960396,-469.274257425742,20,40,12,32,5305672.43828359,395990.796816219,0,0,0,0,0,0,0,48.2744851485148,19931.1971452698,12.0073267326733,12.8786059782128,12.9827432937425,-0.032970297029703,-0.0183300880998454,-0.0105361383107579,1.26189049764166,1.00113891499872,1.13191754838916
+42537,2873.76097920792,456.516684752475,45,44.6501485148515,45.989652970297,10.5770396039604,-2.26039603960396,962.430693069307,-2983.04554455446,-2768.66336633663,20,40,12,32,5305679.94850736,396001.28609231,0,0,0,0,0,0,0,44.6501485148514,19944.1653199673,10.5770396039604,11.3445339256651,11.5574533896192,-2.26039603960396,-2.24575583067411,-1.76140269370915,1.66428898481349,1.32038752301759,1.19539083352235
+42538,2873.76481207921,456.524257821782,45,39.9405643564357,41.1387812871287,8.55806160616831,0.0834653465346537,970.460396039604,-3917.88712871287,-3645.18415841584,20,40,12,32,5305686.87829924,396010.8479342,0,0,0,0,0,0,0,39.9405643564356,19955.9196529431,8.55806160616831,9.17905424054157,9.57095889002252,0.0834653465346537,0.0981055554645107,0.0420492137500073,2.19077588257305,1.73808345033387,1.69472710612369
+42539,2873.76824841584,456.530991782178,45,35.961603960396,37.0404520792079,5.92887293730693,1.67861386138614,1130.39108910891,-3724.23267326733,-3535.18811881188,20,40,12,32,5305693.09242233,396019.351228089,0,0,0,0,0,0,0,35.961603960396,19966.4104738727,5.92887293730693,6.3590855945223,7.10436376839179,1.67861386138614,1.69325407031599,1.17772742927562,3.70146278888342,2.93660856254676,2.95737554831545
+42540,2873.7714049505,456.537085544554,45,33.2637821782178,34.2616956435643,5.6310099009901,0.744653465346535,1152.15841584158,-3669.75643564356,-3485.39702970297,20,40,12,32,5305698.80263675,396027.047662315,0,0,0,0,0,0,0,33.2637821782178,19976.0131095163,5.6310099009901,6.03960893118139,6.69678279874091,0.744653465346535,0.759293674276392,0.524668205252329,3.267995053007,2.59271072070287,2.7098025200945
+42541,2873.77423455446,456.542483168317,45,28.361594059406,29.2124418811881,4.74094059405941,1.51316831683168,1074.28217821782,-4745.70396039604,-4122.52871287129,20,40,12,32,5305703.92289614,396033.865982803,0,0,0,0,0,0,0,28.3615940594059,19984.6158412269,4.74094059405941,5.08495414810885,5.65896109591799,1.51316831683168,1.52780852576154,1.14467309432921,2.85737445195217,2.26693898077422,2.13088719965528
+42542,2873.77665108911,456.547288514851,45,26.3512376237624,27.1417747524752,5.21358415841584,1.48980198019802,1304.44059405941,-348.088118811881,-151.815841584159,20,40,12,32,5305708.29130861,396039.932700853,0,0,0,0,0,0,0,26.3512376237623,19992.1136256329,5.21358415841584,5.59189381661318,5.94605621319751,1.48980198019802,1.50444218912788,1.16272624964018,1.83172189972744,1.45322282614832,1.39714288948633
+42543,2873.77894554455,456.551932871287,45,24.2749405940594,25.0031888118812,5.4229900990099,1.23841584158416,1197.79207920792,-1721.91188118812,-1603.10297029703,20,40,12,32,5305712.4372073,396045.794789195,0,0,0,0,0,0,0,24.2749405940594,19999.2334087737,5.4229900990099,5.81649473390725,6.00582684665708,1.23841584158416,1.25305605051402,0.961361135841937,1.0370767977906,0.822779743607564,0.915039145257671
+42544,2873.78095851485,456.555676633663,45,19.1647722772277,19.7397154455445,3.9210198019802,-0.777623762376238,1167.84653465347,-2165.55742574257,-2117.31782178218,20,40,11.8514851485149,32,5305716.0819125,396050.525598281,0,0,0,0,0,0,0,19.1647722772277,20005.2541391092,3.9210198019802,4.20553801747264,4.43469180732536,-0.777623762376238,-0.76298355344638,-0.577875602447753,1.18332916657014,0.938811156847925,0.948222676390692
+42545,2873.78301455446,456.558215940594,45,16.5856633663366,17.0832332673267,2.29825742574257,-4.75673267326733,1051.54455445545,-518.939603960396,-683.536633663366,20,40,11.5247524752475,32,5305719.83342563,396053.757436924,0,0,0,0,0,0,0,16.5856633663366,20010.1512183172,2.29825742574257,2.46502427073129,2.90538077296827,-4.75673267326733,-4.74209246433747,-3.04679110576692,2.16991074716924,1.72152979606791,1.68985877358441
+42546,2873.78513108911,456.559700693069,45,14.147198019802,14.571613960396,1.80965346534653,-5.49782178217822,865.509900990099,-378.604950495049,-502.889108910891,20,40,11.5148514851485,32,5305723.72065923,396055.677622385,0,0,0,0,0,0,0,14.147198019802,20014.4288724151,1.80965346534653,1.94096608314053,2.34986947295233,-5.49782178217822,-5.48318157324836,-3.5774483207936,2.00979086234999,1.59449639019215,1.58909083101854
+42547,2873.78710069307,456.560096039604,45,13.2049108910891,13.6010582178218,2.51238613861386,-5.5,757,101.956435643564,-129.487128712871,20,40,12,32,5305727.36017046,396056.235821956,0,0,0,0,0,0,0,13.2049108910891,20018.1905233501,2.51238613861386,2.69469065552178,2.893539967869,-5.5,-5.48535979107015,-4.07453662984924,1.02723066383483,0.81496817209337,0.828458142254872
+42548,2873.78889584158,456.559533960396,45,12.0120891089109,12.3724517821782,2.77120792079208,-5.5,640.712871287129,-652.646534653465,-696.363366336634,20,40,12,32,5305730.69801238,396055.595528584,0,0,0,0,0,0,0,12.0120891089109,20021.7425479376,2.77120792079208,2.97229314152575,3.04539985815022,-5.5,-5.48535979107015,-4.25145863939326,0.555662942421055,0.440843160575398,0.458865240170476
+42549,2873.79025227723,456.558399405941,45,9.33102970297029,9.61096059405941,2.5580495049505,-5.5,537.871287128713,730.039603960396,585.960396039604,20,40,11.7227722772277,32,5305733.23605268,396054.227462685,0,0,0,0,0,0,0,9.33102970297029,20024.6705178221,2.5580495049505,2.74366746074921,2.7105358977041,-5.5,-5.48535979107015,-4.39134107409553,0.399583794560012,0.317015531287788,0.338251846300667
+42550,2873.79121693069,456.557054752475,45,7.55084158415841,7.77736683168317,2.97323762376238,-5.5,540.816831683168,-342.018811881188,-325.020792079208,20,40,11.6336633663366,32,5305735.0530926,396052.584604718,0,0,0,0,0,0,0,7.5508415841584,20027.0618634217,2.97323762376238,3.18898258442813,2.96187772140698,-5.5,-5.48535979107015,-4.65206402336694,1.13920475010993,0.903804418543386,0.860642557012825
+42551,2873.7917180198,456.55602960396,45,3.84084158415842,3.95606683168317,2.14756435643564,-5.5,569.361386138614,-1420.30495049505,-1621.43465346535,20,40,12,32,5305736.00428375,396051.32428997,0,0,0,0,0,0,0,3.84084158415841,20028.6528129816,2.14756435643564,2.30339656570928,2.04705001108388,-5.5,-5.48535979107015,-4.87222806647238,1.24617253730709,0.988668845856623,0.979558640535225
+42552,2873.79182613862,456.555739603961,46.7821782178218,0.60670297029703,0.624904059405941,1.17372277227723,-5.5,562.826732673267,-179.892079207921,-21.8930693069306,20,40,12,32,5305736.21106394,396050.966642698,0,0,0,0,0,0,0,0.606702970297029,20029.1891896593,1.17372277227723,1.2588907962904,1.03343560108927,-5.5,-5.48535979107015,-5.27548435284714,1.0913310981181,0.865823170486043,0.912394955129781
+42553,2873.79183029703,456.55579851485,45,0.147316831683168,0.151736336633663,1.28834653465347,-5.5,549.178217821782,2540.95247524752,2666.38316831683,20,40,12,32,5305736.2174449,396051.040167082,0,0,0,0,0,0,0,0.147316831683168,20029.2704558034,1.28834653465347,1.38183192250852,1.10471413013496,-5.5,-5.48535979107015,-5.4340135386903,1.34110881008673,1.06398789873979,1.0148706899053
+42554,2873.79186316831,456.555776732674,45,0.490336633663366,0.505046732673267,1.05755445544554,-5.5,550.772277227723,2421.87524752475,1653.42277227723,20,40,12,32,5305736.27882254,396051.014129658,0,0,0,0,0,0,0,0.490336633663366,20029.375101788,1.05755445544554,1.13429303919294,0.927930861435783,-5.5,-5.48535979107015,-5.29649768349176,0.998816144012534,0.792425105481595,0.862990732201092
+42555,2873.79188851485,456.555761089109,48.5643564356436,0.149425742574257,0.153908514851485,0.992782178217822,-4.50108910891089,589.544554455446,1934.51188118812,1320.35247524752,20,40,12,32,5305736.32612402,396050.995488075,0,0,0,0,0,0,0,0.149425742574257,20029.4565592963,0.992782178217822,1.06482073654813,0.853332149987884,-4.50108910891089,-4.48644889998104,-4.40111274309402,1.02351340419259,0.812019030870768,0.756824691471239
+42556,2873.7918691089,456.555747821782,52.1287128712871,0.403316831683168,0.415416336633663,0.322930693069307,0.0765346534653466,566.361386138614,385.072277227723,337.608910891089,20,40,12,32,5305736.29047527,396050.978313405,0,0,0,0,0,0,0,0.403316831683168,20029.5110224426,0.322930693069307,0.346363286924971,0.297852067688238,0.0765346534653466,0.0911748623952037,0.0331613478996756,0.235950572096768,0.187194768629889,0.222118847578353
+42557,2873.79177039604,456.555927128713,77.0792079207921,1.78567326732673,1.83924346534653,0.888950495049505,-5.5,536.163366336634,-1819.46435643564,-1413.31089108911,20,40,12,32,5305736.10360186,396051.1983835,0,0,0,0,0,0,0,1.78567326732673,20029.7867047308,0.888950495049505,0.953454787627898,0.85854994914652,-5.5,-5.48535979107015,-4.78615445435418,0.464509515755563,0.368525282882479,0.343116173369588
+42558,2873.79154168317,456.556460891089,96.6831683168317,3.43245544554456,3.53542910891089,1.30153465346535,-5.5,558.79702970297,-431.403960396039,65.1930693069306,20,40,12,32,5305735.66797057,396051.855663372,0,0,0,0,0,0,0,3.43245544554455,20030.5470245603,1.30153465346535,1.39597700155513,1.30383294041869,-5.5,-5.48535979107015,-4.62012290339988,0.458351259383224,0.363639541913346,0.356473532090687
+42559,2873.79124415842,456.557083564356,98.4653465346535,3.44835643564357,3.55180712871287,1.09016831683168,-5.5,565.004950495049,-318.079207920792,183.738613861386,20,40,12,32,5305735.10288118,396052.621404271,0,0,0,0,0,0,0,3.44835643564356,20031.4944617715,1.09016831683168,1.16927343737576,1.12491643606588,-5.5,-5.48535979107015,-4.47902640726952,0.33246032098106,0.263762161335826,0.280118464230279
+42560,2873.79096891089,456.557692871287,87.7722772277228,3.44123762376238,3.54447475247525,1.45760396039604,-5.5,562.435643564356,121.286138613861,664.623762376238,20,40,11.6039603960396,32,5305734.57935687,396053.37123806,0,0,0,0,0,0,0,3.44123762376237,20032.4883719201,1.45760396039604,1.56337105636866,1.43713300484503,-5.5,-5.48535979107015,-4.66317810084105,0.650433679991267,0.51603088372728,0.524880063006062
+42561,2873.79069326733,456.558242772277,107.376237623762,3.83395049504951,3.94896900990099,1.75935643564356,-5.5,565.079207920792,425.186138613861,807.411881188119,20,40,11.960396039604,32,5305734.05643199,396054.047056426,0,0,0,0,0,0,0,3.8339504950495,20033.4810990928,1.75935643564356,1.8870193852751,1.71634162655552,-5.5,-5.48535979107015,-4.74703423335264,0.833694886839756,0.661423789156505,0.654437270034293
+42562,2873.79034049505,456.558771584159,109.158415841584,3.38872277227723,3.49038445544555,1.544,-5.5,558.019801980198,362.468316831683,856.887128712871,20,40,11.4851485148515,32,5305733.39111155,396054.694030741,0,0,0,0,0,0,0,3.38872277227722,20034.4916081412,1.544,1.65603619132412,1.50762803999379,-5.5,-5.48535979107015,-4.7415320503984,0.725077615489631,0.575250719945816,0.568722039582381
+42563,2873.78993188119,456.559224158416,126.980198019802,3.24334653465346,3.34064693069307,1.36425742574257,-5.5,556.331683168317,576.275247524752,1100.71782178218,20,40,12,32,5305732.62406401,396055.244172411,0,0,0,0,0,0,0,3.24334653465346,20035.4271482952,1.36425742574257,1.46325108245621,1.3463759460026,-5.5,-5.48535979107015,-4.69114963198082,0.573851502625785,0.455273315539544,0.468349159198878
+42564,2873.78953782178,456.559584356436,102.029702970297,2.24829702970297,2.31574594059406,1.18669306930693,-5.5,547.425742574257,499.508910891089,1223.83762376238,20,40,12,32,5305731.88604903,396055.679726119,0,0,0,0,0,0,0,2.24829702970297,20036.1921001379,1.18669306930693,1.2728022479053,1.1383570810996,-5.5,-5.48535979107015,-4.82007352052186,0.65436232139818,0.519147727702954,0.531175855062924
+42565,2873.78931722772,456.559776039604,62.8217821782178,0.885148514851485,0.91170297029703,1.27237623762376,-5.5,549.965346534653,219.370297029703,1255.99207920792,20,40,12,32,5305731.47313236,396055.911147285,0,0,0,0,0,0,0,0.885148514851484,20036.6395586363,1.27237623762376,1.36470278399338,1.1333008871387,-5.5,-5.48535979107015,-5.21744419547719,1.12031870821653,0.888820906483414,0.852363865017208
+42566,2873.78929841584,456.559832079208,46.7821782178218,0.237,0.24411,1.06171287128713,-5.5,570.806930693069,-126.49900990099,1061.74653465347,20,40,12,32,5305731.43702894,396055.980328566,0,0,0,0,0,0,0,0.237,20036.7647080862,1.06171287128713,1.13875319925268,0.916989210277875,-5.5,-5.48535979107015,-5.39210312455409,1.07324363196914,0.851473219940186,0.857193667715842
+42567,2873.78928673267,456.55987009901,46.7821782178218,0.0685742574257426,0.0706314851485149,0.908920792079208,-5.5,586.415841584158,679.50396039604,1334.59900990099,20,40,12,32,5305731.41453466,396056.027300298,0,0,0,0,0,0,0,0.0685742574257425,20036.8031898244,0.908920792079208,0.974874175343366,0.777348674295373,-5.5,-5.48535979107015,-5.45453000527839,0.955915486480939,0.758389253865166,0.754148849997002
+42568,2873.78931881188,456.559894455445,45,0.960514851485149,0.989330297029703,0.632128712871287,-5.5,701.876237623762,5882.26435643564,5191.73267326733,20,40,12,32,5305731.47340986,396056.058711555,0,0,0,0,0,0,0,0.960514851485147,20036.8849259905,0.632128712871287,0.677997426224085,0.592840517836015,-5.5,-5.48535979107015,-4.88655997722078,0.464158537776163,0.368246829471394,0.39796309037852
+42569,2873.78969683168,456.559935445544,45,4.21186138613862,4.33821722772277,0.562653465346535,-5.37782178217822,984.113861386139,8174.50891089109,6960.18811881188,20,40,12,32,5305732.17271241,396056.122385314,0,0,0,0,0,0,0,4.21186138613861,20037.58399626,0.562653465346535,0.603480894940282,0.71991629953744,-5.37782178217822,-5.36318157324836,-3.6225122210982,0.572636287819258,0.454309207453168,0.447823680192677
+42570,2873.79052009901,456.560261485149,45,6.79925742574257,7.00323514851485,0.879207920792079,-0.599207920792079,1123.94059405941,6785.33366336633,5707.30396039604,20,40,12,32,5305733.69037034,396056.556002092,0,0,0,0,0,0,0,6.79925742574256,20039.150161359,0.879207920792079,0.94300526977365,1.13771719070591,-0.599207920792079,-0.584567711862221,-0.403970671307044,0.951919672217002,0.755219117340475,0.752336924274246
+42571,2873.79159128713,456.561041683168,45,9.5329702970297,9.81895940594059,1.46165346534653,5.33841584158416,1090.65346534653,7533.33168316832,6278.21584158416,20,40,12,32,5305735.65707269,396057.563637933,0,0,0,0,0,0,0,9.53297029702969,20041.404926513,1.46165346534653,1.56771440271255,1.78946122217934,5.33841584158416,5.35305605051401,3.77346267191555,1.09809899751332,0.871192580486369,0.858173408597886
+42572,2873.79288178218,456.562484752475,45,12.0736435643564,12.4358528712871,2.08813861386139,5.48683168316832,801.504950495049,4424.74653465346,5188.03960396039,20,40,12,32,5305738.0151343,396059.404332135,0,0,0,0,0,0,0,12.0736435643564,20044.4381221676,2.08813861386139,2.23965875456985,2.4678431694531,5.48683168316832,5.50147189209817,3.99756015716277,1.14659885028268,0.909670633906901,0.8910850087556
+42573,2873.7941560396,456.56460019802,45,13.7545148514851,14.1671502970297,2.82162376237624,5.48287128712871,704.539603960396,3945.6198019802,4711.54851485148,20,40,12,32,5305740.32803341,396062.082065504,0,0,0,0,0,0,0,13.7545148514851,20048.0273177121,2.82162376237624,3.02636727253574,3.18806151554932,5.48287128712871,5.49751149605857,4.15653852028033,0.865487460999341,0.686646883599825,0.70992569799035
+42574,2873.79511970297,456.567477623763,45,15.1299603960396,15.5838592079208,3.35822772277228,5.5,747.752475247525,3032.14554455446,3534.09108910891,20,40,12,32,5305742.04851187,396065.698637176,0,0,0,0,0,0,0,15.1299603960396,20052.053431161,3.35822772277228,3.60190845053036,3.72330302555494,5.5,5.51464020892985,4.24051104115304,0.733404202152516,0.581856736833099,0.585398777308722
+42575,2873.79569792079,456.570832673267,45,16.0882277227723,16.5708745544554,3.74666336633663,5.5,794.638613861386,2401.43762376238,2754.37326732673,20,40,11.6534653465347,32,5305743.0443001,396069.897326324,0,0,0,0,0,0,0,16.0882277227723,20056.3967121566,3.74666336633663,4.01852987782496,4.10862496527718,5.5,5.51464020892985,4.28172150386189,0.677318024948496,0.537359964175411,0.542329656553256
+42576,2873.79606782178,456.574434554455,45,16.7157326732673,17.2172046534653,3.70450495049505,5.5,829.777227722772,1455.67821782178,1643.10891089109,20,40,11.9306930693069,32,5305743.64867991,396074.396544112,0,0,0,0,0,0,0,16.7157326732673,20060.9747836912,3.70450495049505,3.97331235036216,4.10869333919755,5.5,5.51464020892985,4.24120863478423,0.803877153722088,0.637767463162345,0.643051047970544
+42577,2873.79645009901,456.578221386139,45,17.9815049504951,18.5209500990099,3.84164356435644,3.75158415841584,902.717821782178,4012.92178217822,4608.92673267327,20,40,12,32,5305744.27183941,396079.12656719,0,0,0,0,0,0,0,17.981504950495,20065.7317359739,3.84164356435644,4.12040205747517,4.29833550809902,3.75158415841584,3.76622436734569,2.86963461141551,0.982316173262541,0.779334617166617,0.786462805297941
+42578,2873.79726673267,456.582451782178,45,20.7361485148515,21.358232970297,4.27907920792079,1.35752475247525,1029.91584158416,5157.7297029703,5469.65445544555,20,40,11.2673267326733,32,5305745.68963017,396084.423626712,0,0,0,0,0,0,0,20.7361485148515,20071.1101540433,4.27907920792079,4.5895790374737,4.8292536781774,1.35752475247525,1.3721649614051,1.04286450765021,1.25387199560808,0.994777321468363,0.948508962229573
+42579,2873.79857722772,456.586894356436,45,23.3264158415842,24.0262083168317,5.42846534653465,-3.76871287128713,1428.99504950495,5354.80099009901,4575.76831683168,20,40,11.6435643564356,32,5305748.01746721,396090.001466326,0,0,0,0,0,0,0,23.3264158415841,20077.2496820686,5.42846534653465,5.8223672779859,5.9545938111353,-3.76871287128713,-3.75407266235728,-2.90564718223275,0.937410530640288,0.743708081887857,0.763046690169426
+42580,2873.80043673267,456.591563267327,45,26.5602079207921,27.3570141584158,6.41815841584159,-3.4570297029703,1780.20297029703,8369.24356435643,6985.75742574257,20,40,11.5445544554455,32,5305751.35718779,396095.879559479,0,0,0,0,0,0,0,26.560207920792,20084.1438398518,6.41815841584159,6.88387475277537,6.98236281667903,-3.4570297029703,-3.44238949404044,-2.68612660831903,0.828056183942251,0.656950243384222,0.664797997932751
+42581,2873.80288633663,456.596747722772,45,30.019495049505,30.9200799009901,7.13326732673267,-2.01346534653465,1869.63861386139,7128.20297029703,5898.97326732673,20,40,11.980198019802,32,5305755.77841772,396102.419539639,0,0,0,0,0,0,0,30.0194950495049,20092.0340427396,7.13326732673267,7.6508736110487,7.78933429019196,-2.01346534653465,-1.9988251376048,-1.55977071884533,0.96460065448673,0.765279756400964,0.784107297053187
+42582,2873.80581970297,456.602298019802,45,32.9240792079208,33.9118015841584,7.07630583059406,-2.38920792079208,1664.61881188119,7127.83861386139,5848.32871287129,20,40,12,32,5305761.08754448,396109.431370705,0,0,0,0,0,0,0,32.9240792079207,20100.7706247804,7.07630583059406,7.58977885773424,7.90722586376091,-2.38920792079208,-2.37456771186222,-1.82246742474022,1.74458806860031,1.38409395219506,1.3815639656132
+42583,2873.80909108911,456.608333564357,45,36.0568910891089,37.1385978217822,7.33938503850495,-0.361485148514851,1816.44059405941,6879.46534653465,5768.37425742574,20,40,12,32,5305767.01192695,396117.058932311,0,0,0,0,0,0,0,36.0568910891089,20110.3633362765,7.33938503850495,7.87194769807448,8.31018905874092,-0.361485148514851,-0.346844939584994,-0.223262556915719,2.29818745044882,1.82329995740991,1.80115869380715
+42584,2873.81260623762,456.614762871287,45,38.7266336633663,39.8884326732673,7.59090099011881,1.64148514851485,1897.76237623762,5633.38613861386,4831.78316831683,20,40,12,32,5305773.37902173,396125.18511463,0,0,0,0,0,0,0,38.7266336633663,20120.7639871016,7.59090099011881,8.14171422564435,8.67797177409386,1.64148514851485,1.65612535744471,1.23673366210069,2.7264415982944,2.16306152445483,2.03623218071157
+42585,2873.81637376238,456.621601881188,45,41.0299603960396,42.2608592079208,9.27105940594059,0.0562376237623762,1489.4801980198,5703.85643564357,5106.18613861386,20,40,12,32,5305780.20442935,396133.830058412,0,0,0,0,0,0,0,41.0299603960395,20131.8413711225,9.27105940594059,9.94378880061759,10.2394426310391,0.0562376237623762,0.0708778326922333,0.0435037568646886,1.69126290547796,1.34178766963709,1.47254292534031
+42586,2873.82038415842,456.62889059406,45,43.5229207920792,44.8286084158416,9.78404950495049,0.585049504950495,1543.54455445545,5556.44851485149,5359.58811881188,20,40,12,32,5305787.46964892,396143.043270697,0,0,0,0,0,0,0,43.5229207920791,20143.5904804734,9.78404950495049,10.4940026411301,10.8190475351084,0.585049504950495,0.599689713880354,0.469013708924989,1.82604268051969,1.44871713618052,1.5198445485388
+42587,2873.82461485149,456.636653069307,45,45.9699900990099,47.3490898019802,9.24336358635643,0.238514851485149,1632.93564356436,5264.68514851485,5270.90792079208,20,40,12,32,5305795.1323285,396152.853965406,0,0,0,0,0,0,0,45.9699900990099,20156.0261515955,9.24336358635643,9.91408330866179,10.4995017043472,0.238514851485149,0.253155060415006,0.186792229535926,2.97879012262861,2.36326584355037,2.34388842976472
+42588,2873.82903356436,456.644843663366,45,48.2809702970297,49.7293994059406,9.59412376239604,-1.98069306930693,1714.03465346535,5044.22079207921,5038.72772277228,20,40,12,32,5305803.13370565,396163.204204536,0,0,0,0,0,0,0,48.2809702970297,20169.1205163095,9.59412376239604,10.2902954498514,10.9301772267652,-1.98069306930693,-1.96605286037707,-1.46512910240074,3.24535925622132,2.57475228684787,2.56810330452946
+42589,2873.83365960396,456.653400792079,45,50.5023069306931,52.0173761386139,9.25362156218812,-3.07029702970297,1792.06930693069,4980.66831683168,4832.87425742574,20,40,12,32,5305811.51092652,396174.017912697,0,0,0,0,0,0,0,50.502306930693,20182.844256766,9.25362156218812,9.92508562681398,10.7668771557047,-3.07029702970297,-3.05565682077312,-2.2550141999882,4.2116047352785,3.34133698839971,3.32384556948961
+42590,2873.83845554456,456.66242069307,45,52.5817920792079,54.1592458415842,10.4690016501782,-0.738019801980198,1865.56930693069,4806.93762376238,4647.32673267327,20,40,12,32,5305820.19251171,396185.413720614,0,0,0,0,0,0,0,52.5817920792078,20197.1664003854,10.4690016501782,11.2286564894606,11.9201924514237,-0.738019801980198,-0.723379593050339,-0.522399269565139,3.5702773711128,2.83253073086803,2.74658652311104
+42591,2873.84341970297,456.67177960396,45,54.5818415841584,56.2192968316832,13.7749108910891,4.62079207920792,1934.5198019802,4691.72178217822,4424.10891089109,20,40,12,32,5305829.17811992,396197.237398784,0,0,0,0,0,0,0,54.5818415841583,20212.053581381,13.7749108910891,14.774450108749,14.8460420119939,4.62079207920792,4.63543228813777,3.65908066025635,1.45574395834152,1.15493533685664,1.26229010672998
+42592,2873.84855049505,456.681478712871,45,56.3264554455446,58.0162491089109,13.6689405940594,3.46673267326733,1726.25742574257,4273.15643564356,4104.0900990099,20,40,12,32,5305838.46479276,396209.490370535,0,0,0,0,0,0,0,56.3264554455445,20227.4668574261,13.6689405940594,14.6607903632266,14.8565987720675,3.46673267326733,3.48137288219718,2.72558649206104,1.67226409656996,1.32671469224962,1.30978977358745
+42593,2873.85384415841,456.69149059406,45,58.0520396039604,59.7936007920792,14.5118712871287,3.01257425742574,1478.54455445545,4292.24653465346,4108.63069306931,20,40,12,32,5305848.04617805,396222.138342835,0,0,0,0,0,0,0,58.0520396039603,20243.3574981852,14.5118712871287,15.5648860461934,15.6740193438701,3.01257425742574,3.0272144663556,2.3865770028152,1.40239038363475,1.11260651356092,1.10400629063247
+42594,2873.8592580198,456.701856534653,45,59.7657524752476,61.558725049505,14.9801089108911,4.05930693069307,1523.78712871287,4349.5801980198,4113.49306930693,20,40,12,32,5305857.84230804,396235.231320929,0,0,0,0,0,0,0,59.7657524752474,20259.72149604,14.9801089108911,16.0671000689201,16.1698281251286,4.05930693069307,4.07394713962292,3.21168940103443,1.54619366916629,1.22669491149985,1.22094431093396
+42595,2873.86483811881,456.712528712871,45,61.4130198019802,63.2554103960396,16.1732079207921,4.81485148514852,1566.00495049505,4323.6801980198,4005.23366336634,20,40,12,32,5305867.93953787,396248.711263814,0,0,0,0,0,0,0,61.4130198019801,20276.557291667,16.1732079207921,17.3467730872031,17.2776428284644,4.81485148514852,4.82949169407837,3.84480454805294,1.66054904455355,1.31742038780181,1.32346686009361
+42596,2873.87057752475,456.723450891089,45,63.0531584158416,64.9447531683168,16.9018217821782,5.22257425742574,1606.86138613861,4258.30495049505,3909.84356435644,20,40,12,32,5305878.3262915,396262.507882832,0,0,0,0,0,0,0,63.0531584158415,20293.8493611115,16.9018217821782,18.1282568462419,17.9902999843767,5.22257425742574,5.2372144663556,4.18228894753121,1.87706162058731,1.48919374361923,1.48959047463482
+42597,2873.87646752475,456.734654653465,45,64.5952079207921,66.5330641584159,16.9651782178218,5.32841584158416,1644.40099009901,4137.73564356436,3869.91386138614,20,40,12,32,5305888.98572481,396276.660227569,0,0,0,0,0,0,0,64.595207920792,20311.5778342138,16.9651782178218,18.1962105705807,18.1321958877977,5.32841584158416,5.34305605051401,4.24923672487991,1.87551342551045,1.48796546086225,1.49285327952754
+42598,2873.88250821782,456.746123663366,45,66.0667722772277,68.0487754455445,16.8711188118812,5.08158415841584,1681.58415841584,4058.52871287129,3783.45940594059,20,40,12,32,5305899.91838945,396291.147947335,0,0,0,0,0,0,0,66.0667722772276,20329.7284091863,16.8711188118812,18.0953259978008,18.137165873612,5.08158415841584,5.09622436734569,4.03051597515995,1.77923517542407,1.41158173104608,1.41667042654495
+42599,2873.88868861386,456.757814356436,45,67.5302277227723,69.5561345544554,17.345900990099,4.94811881188119,1719.9900990099,3975.12079207921,3703.67227722772,20,40,12,32,5305911.10490561,396305.916405656,0,0,0,0,0,0,0,67.5302277227722,20348.2893142468,17.345900990099,18.6045594629073,18.625212910561,4.94811881188119,4.96275902081104,3.93061469901369,1.76247126004122,1.39828183847309,1.39725673172626
+42600,2873.89500732673,456.769754356436,45,68.9302871287129,70.9981957425742,17.8625643564356,4.73455445544554,1754.92079207921,3931.02178217822,3660.55940594059,20,40,12,32,5305922.5420896,396320.999962733,0,0,0,0,0,0,0,68.9302871287128,20367.2410223601,17.8625643564356,19.1587131114726,19.1456894028425,4.73455445544554,4.7491946643754,3.76796269874953,1.74261108992031,1.38252548782008,1.3652279685868
+42601,2873.90145425742,456.781922574258,45,70.2662079207921,72.3741941584159,18.3419405940594,4.44079207920792,1789.55940594059,3858.70099009901,3616.61287128713,20,40,12,32,5305934.21170888,396336.372008816,0,0,0,0,0,0,0,70.266207920792,20386.5766603689,18.3419405940594,19.6728739915022,19.630839293716,4.44079207920792,4.45543228813777,3.54013376328089,1.73691235820704,1.37800431732632,1.39077497196773
+42602,2873.90803405941,456.794321980198,45,71.6054752475247,73.7536395049505,18.2426336633663,4.32980198019802,1822.26237623762,3783.32178217822,3589.63267326733,20,40,12,32,5305946.12231911,396352.03639507,0,0,0,0,0,0,0,71.6054752475247,20406.2832618266,18.2426336633663,19.5663611215042,19.6227748852549,4.32980198019802,4.34444218912787,3.43368636314983,1.77861891537056,1.41109281229879,1.42255017122672
+42603,2873.91473930693,456.806966039604,45,72.888900990099,75.075568019802,18.0636732673267,4.50435643564357,1855.5297029703,3734.82178217822,3527.35544554455,20,40,12,32,5305958.25986634,396368.009643937,0,0,0,0,0,0,0,72.8889009900989,20426.3562136142,18.0636732673267,19.3744149475046,19.5435848256794,4.50435643564357,4.51899664457342,3.55738900835637,1.98490527290836,1.57475305108369,1.57378151630931
+42604,2873.92155336634,456.819821782178,45,74.1568415841584,76.3815468316832,18.3195247524752,4.4049504950495,1886.52475247525,3670.27920792079,3473.75247524752,20,40,12,32,5305970.59427931,396384.250128686,0,0,0,0,0,0,0,74.1568415841583,20446.7828661995,18.3195247524752,19.6488316048945,19.8346153339952,4.4049504950495,4.41959070397936,3.47648217060972,1.99190096725073,1.58030318547068,1.55605929343288
+42605,2873.92847752475,456.832905445544,45,75.357,77.61771,18.4313564356436,3.41019801980198,1918.97524752475,3583.43465346535,3443.04356435644,20,40,12,32,5305983.12758131,396400.778115191,0,0,0,0,0,0,0,75.3569999999999,20467.5515947749,18.4313564356436,19.7687780522154,20.0005849334024,3.41019801980198,3.42483822873184,2.68752011481871,1.94796477866297,1.54544578044692,1.61297872852766
+42606,2873.93549336634,456.846192376238,45,76.5563069306931,78.8529961386139,18.3951386138614,4.02158415841584,1950.67821782178,3527.02673267327,3398.45148514852,20,40,12,32,5305995.82621353,396417.562277966,0,0,0,0,0,0,0,76.556306930693,20488.6550545384,18.3951386138614,19.7299321819808,20.0371380530432,4.02158415841584,4.0362243673457,3.15390599277408,2.26759525715347,1.79902920233221,1.79288238186224
+42607,2873.94262277228,456.859744059406,45,77.7090792079208,80.0403515841584,19.0398514851485,3.58465346534654,1937.37128712871,3468.16534653465,3333.25346534653,20,40,12,32,5306008.72933511,396434.679929983,0.861386138613861,0.861386138613861,4570521.77945344,341485.498267563,7.99772895110108,0,0,77.7090792079207,20510.085280446,19.0398514851485,20.4214269020999,20.6510084961662,3.58465346534654,3.59929367427639,2.82524144764757,2.19608677132018,1.74229692005087,1.68053397485471
+42608,2873.94984940594,456.873511584159,45,78.8715346534653,81.2376806930693,19.0598217821782,2.22663366336634,1720.26732673267,3486.90495049505,3357.70792079208,20,40,12,32,5306021.80778114,396452.069598695,1,1,5306020.82120589,396452.873315959,29.5165662898258,0,0,78.8715346534652,20531.8297032733,19.0598217821782,20.4428462898154,20.7371794128614,2.22663366336634,2.24127387229619,1.75526206366353,2.16610681055829,1.7185118884297,1.71355103852821
+42609,2873.95716465347,456.887481287129,45,80.0037623762376,82.4038752475248,20.0068712871287,3.37504950495049,1737.10396039604,3448.69504950495,3281.87821782178,20,40,12,32,5306035.04590358,396469.713974711,1,1,5306034.74212096,396469.961452372,51.5573530840575,0,0,80.0037623762375,20553.892586139,20.0068712871287,21.4586158851351,21.6064105939143,3.37504950495049,3.38968971388035,2.67244232446403,2.02783733565409,1.60881381847693,1.64277667027096
+42610,2873.96456960396,456.901632772277,45,81.052099009901,83.483661980198,19.7655544554455,3.99574257425743,1760.82673267327,3438.0099009901,3232.53465346535,20,40,12,32,5306048.44617789,396487.587684934,1,1,5306048.84002032,396487.266839704,73.8783565793634,0,0,81.0520990099009,20576.2593865241,19.7655544554455,21.1997885490969,21.4597854066429,3.99574257425743,4.01038278318728,3.14842379158872,2.32962077611357,1.84823803691017,1.85631449602498
+42611,2873.97210069307,456.915926435644,45,82.0968910891089,84.5597978217822,19.9310693069307,3.99049504950495,1787.11881188119,3383.2504950495,3234.17524752475,20,40,12,32,5306062.07698232,396505.642604649,1,1,5306063.11861565,396504.794034111,96.4854534383056,0,0,82.0968910891088,20598.9269650994,19.9310693069307,21.3773135389033,21.6605661461809,3.99049504950495,4.0051352584348,3.13715787878053,2.39216568107293,1.89785893381583,1.88191403624123
+42612,2873.97973613862,456.930460396039,45,83.1605643564356,85.6553812871288,20.2033465346535,3.30653465346535,1808.64356435644,3345.85445544554,3213.29504950495,20,40,12,32,5306075.89577877,396524.000226816,1,1,5306077.62042994,396522.595233206,119.445969697266,0,0,83.1605643564355,20621.8862347914,20.2033465346535,21.6693478285291,21.9556507058587,3.30653465346535,3.3211748623952,2.60441483574994,2.2632760613526,1.79560250642965,1.827247157077
+42613,2873.98741544554,456.945183960396,45,83.9900792079208,86.5097815841584,20.406504950495,3.17861386138614,1816.34158415842,2021.47326732673,1931.22178217822,20,40,12,32,5306089.79164448,396542.595393575,1,1,5306092.26930813,396540.576955498,142.63933014683,0,0,83.9900792079206,20645.1230169971,20.406504950495,21.8872478863048,22.1756007559917,3.17861386138614,3.19325407031599,2.50495802439411,2.26095913648953,1.79376434087734,1.8020994486364
+42614,2873.99513633663,456.959901188119,45,83.8973465346535,86.4142669306931,19.9605544554455,4.14168316831683,1817.68811881188,1519.9900990099,1493.4495049505,20,40,12,32,5306103.76473871,396561.183958457,1,1,5306106.94576123,396558.59252641,165.876349552871,0,0,83.8973465346533,20668.4475091589,19.9605544554455,21.4089381976126,21.7881499114454,4.14168316831683,4.15632337724668,3.24081073987456,2.71897970817179,2.15714152696285,2.12893198050056
+42615,2874.00286396039,456.974597623763,45,83.997603960396,86.5175320792079,20.1166633663366,3.50504950495049,1820.61881188119,1845.49702970297,1801.28712871287,20,40,12,32,5306117.75082727,396579.746757532,1,1,5306121.6147811,396576.59897291,189.101600020973,0,0,83.9976039603959,20691.7600633943,20.1166633663366,21.576374730141,21.9287434965215,3.50504950495049,3.51968971388035,2.74951759968139,2.54903056988711,2.02230994195189,2.04060565197022
+42616,2874.01064673267,456.989356633663,45,84.1595643564357,86.6843512871287,21.0859603960396,3.96683168316832,1822.5099009901,1851.2495049505,1826.02475247525,20,40,12,32,5306131.83773183,396598.389240728,1,1,5306136.36303742,396594.702683381,212.452304454104,0,0,84.1595643564356,20715.1098230753,21.0859603960396,22.6160061817803,22.7611632103284,3.96683168316832,3.98147189209817,3.14235064694911,2.16928334232032,1.72103203543742,1.70634755888404
+42617,2874.0184380198,457.004114257426,45,84.3035247524753,86.8326304950495,20.671396039604,3.36039603960396,1826.57425742574,1840.39603960396,1777.54158415842,20,40,12,32,5306145.94049893,396617.030188799,1,1,5306151.11686985,396612.813238608,235.811837456519,0,0,84.3035247524752,20738.5119371292,20.671396039604,22.1713600821103,22.4180537357491,3.36039603960396,3.37503624853382,2.65605726467293,2.26032660857963,1.79326251579298,1.85386464473121
+42618,2874.02624960396,457.018885742574,45,84.4646831683168,86.9986236633663,20.0166336633663,3.00891089108911,1828.13861386139,1821.94356435644,1749.65643564356,20,40,12,32,5306160.08061305,396635.688984963,1.84158415841584,1,5306165.89445859,396630.952329302,47.7820479609881,0,0,84.4646831683167,20761.9542675747,20.0166336633663,21.4690866418468,21.870606475495,3.00891089108911,3.02355110001896,2.35997639596088,2.69236571346025,2.1360269327575,2.12426002485166
+42619,2874.03408970297,457.033688910891,45,84.5931881188119,87.1309837623763,19.2704345434653,0.322475247524753,1832.82178217822,1753.43168316832,1717.09405940594,20,40,12,32,5306174.27289897,396654.388100423,2,1,5306180.71326821,396649.140927693,31.4452069395686,0,0,84.5931881188117,20785.4321082788,19.2704345434653,20.6687415974878,21.2429882935313,0.322475247524753,0.33711545645461,0.277180493341646,3.35743103931862,2.66366604247223,2.64780087001652
+42620,2874.0419409901,457.048517128713,45,84.6862673267326,87.2268553465347,18.9083245321782,1.81227722772277,1833.97524752475,1669.54851485149,1649.10891089109,20,40,12,32,5306188.48540994,396673.118696748,2,1,5306195.55560647,396667.358383776,54.9435198849229,0,0,84.6862673267325,20808.9428805561,18.9083245321782,20.2803560508995,20.9398605812081,1.81227722772277,1.82691743665263,1.41119165446407,3.72535763713995,2.95556588293415,2.85535686705915
+42621,2874.04979326733,457.06336029703,45,84.7310693069306,87.2730013861386,21.4683465346535,1.74742574257426,1834.18316831683,1642.48613861386,1616.18514851485,20,40,12,32,5306202.69948128,396691.867855852,2,1,5306210.40765718,396685.587760889,78.4572095165663,0,0,84.7310693069305,20832.4746038784,21.4683465346535,23.0261391381308,23.1208548688634,1.74742574257426,1.76206595150411,1.4027573308416,1.980533260821,1.57128445262314,1.6848542191365
+42622,2874.05764980198,457.078184851485,45,84.7465346534653,87.2889306930693,20.667603960396,1.41633663366337,1837.57425742574,1630.32871287129,1597.47326732673,20,40,12,32,5306216.92191374,396710.593878204,2,1,5306225.25171394,396703.80732625,101.958243174535,0,0,84.7465346534652,20856.0175825913,20.667603960396,22.167292840913,22.442049571137,1.41633663366337,1.43097684259322,1.13101668076981,2.27961761327109,1.80856731089378,1.78988064668072
+42623,2874.06551861386,457.093017227723,45,84.8018316831683,87.3458866336634,20.0088228824753,0.755841584158415,1836.0495049505,1635.51287128713,1585.36237623762,20,40,12,32,5306231.16697323,396729.329957914,2,1,5306240.10972295,396722.044016575,125.48136596483,0,0,84.8018316831682,20879.5702103416,20.0088228824753,21.4607090927288,21.8837094895071,0.755841584158415,0.770481793088273,0.591955998316104,2.98773864905466,2.37036528526402,2.41869091602049
+42624,2874.07339990099,457.107863168317,45,84.8295544554455,87.3744410891089,18.8625511548515,-1.70613861386139,1837.76237623762,1616.19702970297,1630.24752475248,20,40,12,32,5306245.43489862,396748.083254216,2,1,5306254.98528529,396740.302251819,149.03227909151,0,0,84.8295544554454,20903.1281480203,18.8625511548515,20.2312612520315,20.90971282706,-1.70613861386139,-1.69149840493153,-1.29718442040287,3.7465803536107,2.97240322926536,2.97805485887927
+42625,2874.08125752475,457.122676336634,45,84.8467524752475,87.392155049505,19.7576336633663,-1.52970297029703,1838.61386138614,1586.25742574257,1642.34455445545,20,40,12,32,5306259.65978157,396766.794852545,2,1,5306269.82325647,396758.514347752,172.523678093264,0,0,84.8467524752474,20926.6929769807,19.7576336633663,21.191293006126,21.6723597458833,-1.52970297029703,-1.51506276136717,-1.17037645818545,3.01231337705509,2.38986199799203,2.43787418127197
+42626,2874.08911871287,457.137583366337,45,84.8879207920792,87.4345584158416,19.2928525853465,-1.7719801980198,1838.49504950495,1544.84455445545,1628.65247524752,20,40,12,32,5306273.88923522,396785.623389172,2,1,5306284.7203141,396776.798966275,196.108622455352,0,0,84.8879207920791,20950.2685668322,19.2928525853465,20.6927863440512,21.2788777777467,-1.7719801980198,-1.75733998908995,-1.35465474193751,3.41762867894703,2.71142470278047,2.69338498515745
+42627,2874.09692425743,457.152483465346,45,84.9168415841584,87.4643468316832,18.7396815181188,-1.24524752475248,1839.9504950495,1526.16336633663,1585.59405940594,20,40,12,32,5306288.01583254,396804.441356619,2,1,5306299.57116042,396795.026865129,219.620405311745,0,0,84.9168415841583,20973.8512924098,18.7396815181188,20.0994759118475,20.810000968922,-1.24524752475248,-1.23060731582262,-0.945911430066414,3.88411487364393,3.08151821223596,2.95204294161234
+42628,2874.1047270297,457.167441584158,45,84.9570693069307,87.5057813861386,19.0464675467327,-0.26960396039604,1838.72277227723,1533.73663366337,1560.65940594059,20,40,12,32,5306302.13606272,396823.331408217,1.6039603960396,0.801980198019802,4255557.92016327,318234.935652589,193.133670284995,0,0,84.9570693069306,20997.4402761557,19.0464675467327,20.4285230403301,21.0741892296972,-0.26960396039604,-0.254963751466183,-0.191559800172593,3.59772227367698,2.85430453772901,2.90245533659827
+42629,2874.11252089109,457.182444455446,45,84.9341188118811,87.4821423762376,18.6183080305941,-1.55950495049505,1840.83663366337,1513.9495049505,1558.55148514851,20,40,12,32,5306316.23885102,396842.276814825,0,0,0,0,0,0,0,84.9341188118811,21021.0330020083,18.6183080305941,19.9692952848992,20.7089792603518,-1.55950495049505,-1.54486474156519,-1.18646860277941,3.95483520523851,3.13762520105414,3.08415748837819
+42630,2874.12028,457.197427623762,45,84.9370495049505,87.485160990099,19.2926375136634,-2.54435643564357,1839.33663366337,1516.39207920792,1565.62673267327,20,40,12,32,5306330.27776556,396861.1964364,0,0,0,0,0,0,0,84.9370495049504,21044.6291912822,19.2926375136634,20.692555666272,21.2814439658947,-2.54435643564357,-2.52971622671371,-1.95461211858515,3.42626263400737,2.71827457479188,2.82503892877872
+42631,2874.12802910891,457.212457425743,45,84.9248415841583,87.4725868316831,19.3668168315842,-3.9570297029703,1839.32673267327,1500.80594059406,1531.32871287129,20,40,12,32,5306344.29717957,396880.173720143,0,0,0,0,0,0,0,84.9248415841582,21068.2303587189,19.3668168315842,20.7721176061195,21.3429616094749,-3.9570297029703,-3.94238949404044,-3.04426778160169,3.37943771547168,2.68112535445514,2.56753842504331
+42632,2874.13576039604,457.227481683168,45,84.988198019802,87.537843960396,19.4014895489109,-3.13029702970297,1840.62871287129,1527.88712871287,1542.38514851485,20,40,12,32,5306358.28376621,396899.143415475,0,0,0,0,0,0,0,84.9881980198019,21091.8295253306,19.4014895489109,20.8093062555655,21.3759259730858,-3.13029702970297,-3.11565682077312,-2.40788237214123,3.34892421676469,2.65691703285717,2.74929119438237
+42633,2874.14349405941,457.242539009901,45,84.9738811881189,87.5230976237623,18.6038558855445,-1.29940594059406,1842.36138613861,1512.60792079208,1532.97425742574,20,40,12,32,5306372.27407994,396918.154287177,0,0,0,0,0,0,0,84.9738811881187,21115.4314084439,18.6038558855445,19.9537944589638,20.6988471589009,-1.29940594059406,-1.2847657316642,-0.986178469043243,3.98226319896756,3.15938559304839,3.13285114655063
+42634,2874.15124722772,457.257587128713,45,85.005504950495,87.5556700990099,18.6206270640594,-2.47752475247525,1839.0495049505,1601.93465346535,1486.8900990099,20,40,12,32,5306386.30078997,396937.154242811,0,0,0,0,0,0,0,85.005504950495,21139.0392653746,18.6206270640594,19.9717825927667,20.714259201816,-2.47752475247525,-2.46288454354539,-1.89062840236959,3.99797908331125,3.17185401517335,3.16157599092253
+42635,2874.15903475248,457.272553960396,45,85.040504950495,87.5917200990099,18.8042090218812,-2.86217821782178,1839.77722772277,1531.71287128713,1466.46633663366,20,40,12,32,5306400.39300977,396956.053994425,0,0,0,0,0,0,0,85.0405049504949,21162.6568124318,18.8042090218812,20.1686856797013,20.8709735962428,-2.86217821782178,-2.84753800889193,-2.1899535959974,3.8936251330092,3.08906331282916,3.10917353202973
+42636,2874.16682435644,457.287533465346,45,85.0589207920792,87.6106884158416,19.4324086910891,-1.65326732673267,1840.79207920792,1438.42574257426,1473.05049504951,20,40,12,32,5306414.48886,396974.969507572,0,0,0,0,0,0,0,85.0589207920791,21186.2836827564,19.4324086910891,20.8424689618167,21.4075833360375,-1.65326732673267,-1.63862711780282,-1.26362288519587,3.33269929994868,2.64404476252351,2.75617031293365
+42637,2874.17462029703,457.30253039604,45,85.1095148514852,87.6628002970297,19.0226358630693,-3.26207920792079,1841.78712871287,1462.26930693069,1415.08613861386,20,40,12,32,5306428.59612134,396993.906842326,0,0,0,0,0,0,0,85.109514851485,21209.9178753856,19.0226358630693,20.4029620748854,21.0603322216608,-3.26207920792079,-3.24743899899094,-2.50163538182873,3.72606202088455,2.95612471587498,2.80813824235615
+42638,2874.18244554455,457.317543663367,45,85.1163168316832,87.6698063366337,18.8366699666337,-2.2049504950495,1842.17821782178,1412.49702970297,1361.25445544554,20,40,12,32,5306442.75736715,397012.865401364,0,0,0,0,0,0,0,85.1163168316831,21233.5614945275,18.8366699666337,20.2035020652678,20.904175616226,-2.2049504950495,-2.19031028611965,-1.68917980302743,3.84617531250671,3.05141831755934,3.01358587458216
+42639,2874.19029257426,457.332546930693,45,85.1083069306931,87.6615561386139,19.248608360495,-2.71940594059406,1839.0495049505,1412.70297029703,1341.5801980198,20,40,12,32,5306456.95924459,397031.812131782,0,0,0,0,0,0,0,85.108306930693,21257.2019974153,19.248608360495,20.6453316564792,21.252473101537,-2.71940594059406,-2.7047657316642,-2.08585502830606,3.56097691689005,2.82515208219212,2.81619674098095
+42640,2874.19814514852,457.347501485149,45,85.0972772277228,87.6501955445544,19.4642920787129,-2.12168316831683,1840.64356435644,1397.22178217822,1387.30693069307,20,40,12,32,5306471.17253627,397050.698277995,0,0,0,0,0,0,0,85.0972772277227,21280.8403077564,19.4642920787129,20.8766658813808,21.4379830143105,-2.12168316831683,-2.10704295938698,-1.62975265458982,3.23838594796513,2.56921991278324,2.64196349026038
+42641,2874.20597128713,457.362432574257,45,85.0879108910891,87.6405482178218,18.8029136418812,-1.74267326732673,1841.0297029703,1369.39504950495,1375.70693069307,20,40,12,32,5306485.3374422,397069.554230324,0,0,0,0,0,0,0,85.087910891089,21304.4763752482,18.8029136418812,20.167296303949,20.8747523632257,-1.74267326732673,-1.72803305839688,-1.32807960058688,3.82702722986036,3.03622691171177,3.02576449816691
+42642,2874.21380207921,457.377391188119,45,85.0551089108911,87.6067621782178,18.6520115509901,-1.74108910891089,1841.36633663366,1379.20594059406,1364.42376237624,20,40,12,32,5306499.51041703,397088.444526774,0,0,0,0,0,0,0,85.0551089108909,21328.1062866343,18.6520115509901,20.005444410256,20.744111685813,-1.74108910891089,-1.72644889998103,-1.32606126072071,3.97063688216795,3.15016168795682,3.13690150635966
+42643,2874.22163831683,457.392360594059,45,85.0298415841584,87.5807368316832,18.6853146317822,-1.59277227722772,1839.4603960396,1427.87128712871,1407.98910891089,20,40,12,32,5306513.69329997,397107.348352037,0,0,0,0,0,0,0,85.0298415841583,21351.7308824264,18.6853146317822,20.0411640391901,20.76955923217,-1.59277227722772,-1.57813206829787,-1.21355534341096,3.98413295623237,3.16086899177664,3.1682766860195
+42644,2874.22945811881,457.407288415842,45,85.0448712871287,87.5962174257425,18.6426226632673,-0.688514851485149,1841.22277227723,1433.91584158416,1401.32277227723,20,40,12,32,5306527.84672282,397126.199746973,0,0,0,0,0,0,0,85.0448712871287,21375.3548722504,18.6426226632673,19.9953742432448,20.7352609730671,-0.688514851485149,-0.673874642555291,-0.517496046783376,3.98657249909117,3.16280443807354,3.16886223090316
+42645,2874.23730881188,457.422224257426,45,85.0617326732673,87.6135846534654,18.6461254129703,-0.842079207920792,1838.5495049505,1423,1410.3504950495,20,40,12,32,5306542.05724915,397145.062058194,0,0,0,0,0,0,0,85.0617326732672,21398.9794350667,18.6461254129703,19.9991311605229,20.7392702744878,-0.842079207920792,-0.827438998990935,-0.635870246479946,3.98546364444532,3.16192471234527,3.15059155312437
+42646,2874.24517306931,457.43716960396,45,85.0718613861387,87.6240172277228,19.0897711770297,-3.18722772277228,1839.5297029703,1432.22079207921,1405.12376237624,20,40,12,32,5306556.29275099,397163.936562891,0,0,0,0,0,0,0,85.0718613861385,21422.607643455,19.0897711770297,20.4749688816433,21.115586872448,-3.18722772277228,-3.17258751384242,-2.4480850383591,3.649955912237,2.89574484362887,2.95601834369923
+42647,2874.25301524753,457.452151089109,45,85.0815346534653,87.6339806930694,19.0058938393069,-1.86059405940594,1840.92079207921,1394.13861386139,1363.54257425743,20,40,12,32,5306570.48661301,397182.85525688,0,0,0,0,0,0,0,85.0815346534652,21446.2422190876,19.0058938393069,20.3850052113708,21.0469156415011,-1.86059405940594,-1.84595385047609,-1.42201137098924,3.63955346965815,2.8874919166941,2.786589997257
+42648,2874.2608580198,457.467082970297,45,85.074405940594,87.6266381188119,19.3626870185149,-3.0309900990099,1841.43069306931,1408.7900990099,1358.22475247525,20,40,12,32,5306584.68273726,397201.712094527,0,0,0,0,0,0,0,85.0744059405939,21469.8735213704,19.3626870185149,20.767688124315,21.348491755744,-3.0309900990099,-3.01634989008005,-2.33337581718623,3.40972669572836,2.70515555112217,2.76677996913043
+42649,2874.26871871287,457.482009108911,45,85.0700495049505,87.622150990099,18.6316903204951,-2.63910891089109,1838.63861386139,1427.1603960396,1370.89900990099,20,40,12,32,5306598.91224504,397220.562278105,0,0,0,0,0,0,0,85.0700495049504,21493.5053758258,18.6316903204951,19.9836486245357,20.7255601895198,-2.63910891089109,-2.62446870196123,-2.01462264297738,4.0687351271614,3.22798933682141,3.22248491164496
+42650,2874.27660712871,457.496935346535,45,85.0592574257425,87.6110351485149,18.6282216718812,-1.57990099009901,1841.07425742574,1385.14257425743,1351.07722772277,20,40,12,32,5306613.19316334,397239.413406546,0,0,0,0,0,0,0,85.0592574257424,21517.13554263,18.6282216718812,19.9799282828003,20.7223899917284,-1.57990099009901,-1.56526078116915,-1.20149453296533,4.05468868786296,3.21684539285391,3.21753682672136
+42651,2874.28448425743,457.511824752475,45,85.0190594059406,87.5696311881188,18.822698570495,-2.71445544554455,1842.60891089109,1391.58316831683,1386.1801980198,20,40,12,32,5306627.45405147,397258.218194962,0,0,0,0,0,0,0,85.0190594059404,21540.7570843242,18.822698570495,20.1885168724901,20.8846263081439,-2.71445544554455,-2.6998152366147,-2.0802742980336,3.92575924511933,3.11455737130135,3.05349270683561
+42652,2874.29237653465,457.526707821782,45,84.8337722772278,87.3787854455445,19.4513410341584,-2.08227722772277,1828.19801980198,442.994059405941,439.4,20,40,12,32,5306641.74320066,397277.015497643,0,0,0,0,0,0,0,84.8337722772276,21564.362872223,19.4513410341584,20.862775079245,21.4105698668489,-2.08227722772277,-2.06763701879292,-1.59115822213535,3.24596884657063,2.57523591408973,2.64344006972824
+42653,2874.30016356436,457.541513663367,45,84.053405940594,86.5750081188119,18.7460242023762,-2.32653465346535,1808.82673267327,-351.685148514851,-289.248514851485,20,40,12,32,5306655.83916746,397295.71304911,0,0,0,0,0,0,0,84.053405940594,21587.8230144673,18.7460242023762,20.1062788358633,20.7660553478569,-2.32653465346535,-2.31189444453549,-1.78716355379502,3.67450082097789,2.9152178988199,2.85833152156808
+42654,2874.30785811881,457.55613,45,82.2531980198019,84.720793960396,18.4118118811881,-1.27663366336634,1760.15346534653,-3116.35742574258,-2826.42079207921,20,40,12,32,5306669.76809856,397314.171431836,0,0,0,0,0,0,0,82.2531980198019,21610.9596732131,18.4118118811881,19.7478152999346,20.378725805875,-1.27663366336634,-1.26199345443648,-0.979716221542543,3.52124709793751,2.79363186081509,2.86003660061532
+42655,2874.31535059406,457.570287425742,45,79.535396039604,81.9214579207921,17.9093817379208,-2.32306930693069,1702.81188118812,-3316.33168316832,-2905.2099009901,20,40,12,32,5306683.33293849,397332.051491799,0,0,0,0,0,0,0,79.5353960396039,21633.4251721405,17.9093817379208,19.2089276698421,19.7939229162553,-2.32306930693069,-2.30842909800084,-1.78642475845852,3.37649535361652,2.67879098949977,2.74055620066391
+42656,2874.32262069307,457.583971782178,45,76.9164752475247,79.2239695049505,16.7319768973267,-1.17722772277228,1650.00495049505,-2907.34158415842,-2568.36831683168,20,40,12,32,5306696.49639866,397349.334933186,0,0,0,0,0,0,0,76.9164752475246,21655.1482580041,16.7319768973267,17.9460876258887,18.6424968002061,-1.17722772277228,-1.16258751384242,-0.896448868285855,3.78315101002583,3.00141708375801,2.98195414838738
+42657,2874.32967940594,457.597229603961,45,75.3179603960396,77.5774992079207,16.3190654558416,-2.97534653465346,1630.27722772277,98.9613861386138,161.562376237624,20,40,12,32,5306709.27780022,397366.080084341,0,0,0,0,0,0,0,75.3179603960395,21676.2439693352,16.3190654558416,17.5032143804799,18.1997417985133,-2.97534653465346,-2.96070632572361,-2.26049133618281,3.76036938361248,2.9833429538775,2.95098402086265
+42658,2874.33666059406,457.61036029703,45,74.7577821782178,77.0005156435644,16.9628217821782,-2.52722772277228,1614.77227722772,316.523762376238,394.052475247525,20,40,12,32,5306721.91846328,397382.664269437,0,0,0,0,0,0,0,74.7577821782177,21697.0873370195,16.9628217821782,18.1936831465468,18.7158412501442,-2.52722772277228,-2.51258751384242,-1.94968063278889,3.03425489723003,2.40726961754573,2.42592854272223
+42659,2874.34357445545,457.623382574257,45,74.202792079208,76.4288758415842,16.1738305829703,-3.03267326732673,1603.28217821782,329.840594059406,378.588118811881,20,40,12,32,5306734.43686215,397399.111133413,0,0,0,0,0,0,0,74.2027920792078,21717.7757626245,16.1738305829703,17.3474409311812,18.0119759211121,-3.03267326732673,-3.01803305839688,-2.3096179325345,3.64117041055401,2.88877473993203,2.90385595045689
+42660,2874.35044623762,457.636295742574,45,73.579702970297,75.7870940594059,15.8580275029703,-2.80148514851485,1586.74257425743,50.0891089108911,146.336633663366,20,40,12,32,5306746.87977826,397415.420646596,0,0,0,0,0,0,0,73.5797029702969,21738.3034665849,15.8580275029703,17.0087224533239,17.7085732251924,-2.80148514851485,-2.786844939585,-2.12882185835256,3.72713283506376,2.95697426165376,2.94154739897458
+42661,2874.35724960396,457.649124950495,45,72.6185643564356,74.7971212871287,15.4663371841584,-1.61287128712871,1561.59900990099,-1164.3801980198,-894.453465346535,20,40,12,32,5306759.19786896,397431.623265172,0,0,0,0,0,0,0,72.6185643564355,21758.6266985981,15.4663371841584,16.5886101840598,17.3205814271822,-1.61287128712871,-1.59823107819886,-1.22125949849348,3.85901542460411,3.06160520454968,3.04268735966007
+42662,2874.3638990099,457.661694653465,45,70.6335742574258,72.7525814851485,14.6204372941584,-0.875346534653465,1505.32178217822,-3226.45148514851,-2679.66435643564,20,40,12,32,5306771.23656166,397447.497537326,0,0,0,0,0,0,0,70.6335742574257,21778.5493136697,14.6204372941584,15.6813298524037,16.4869870007475,-0.875346534653465,-0.860706325723609,-0.654288488483475,4.16710402176312,3.30603170943238,3.29748242509707
+42663,2874.37029554455,457.673834158416,45,67.9555742574257,69.9942414851485,14.3829779975247,-0.855148514851485,1456.28217821782,-3454.11089108911,-2883.94257425743,20,40,12,32,5306782.81641504,397462.827616827,0,0,0,0,0,0,0,67.9555742574256,21797.7968955728,14.3829779975247,15.4266399630308,16.1308990925317,-0.855148514851485,-0.840508305921627,-0.638542781584876,3.72478793962035,2.95511390524059,2.90776484323913
+42664,2874.37645217822,457.685548811881,45,65.2926138613862,67.2513922772277,14.3667524752475,-1.12009900990099,1412.38613861386,-3706.96435643564,-3063.20396039604,20,40,12,32,5306793.96133202,397477.620596508,0,0,0,0,0,0,0,65.2926138613861,21816.3037645222,14.3667524752475,15.4092370795371,15.9659399345044,-1.12009900990099,-1.10545880097113,-0.847532202666876,2.99002588550105,2.37217989708538,2.42649269662421
+42665,2874.38233495049,457.696776732673,45,62.4231386138614,64.2958327722772,13.5960495049505,-0.0523762376237626,1548.94554455446,-4123.99702970297,-3394.19405940594,20,40,12,32,5306804.60977153,397491.798293897,0,0,0,0,0,0,0,62.4231386138613,21834.0425189502,13.5960495049505,14.5826101290366,15.1463892428767,-0.0523762376237626,-0.0377360286939049,-0.0338382765017871,2.97848104159264,2.36302062967993,2.36798407195065
+42666,2874.3879349505,457.707491287129,45,59.4111584158416,61.1934931683168,12.4641600659406,-1.71207920792079,1484.35643564356,-4161.32673267327,-3457.11584158416,20,40,12,32,5306814.7458124,397505.327251391,0,0,0,0,0,0,0,59.4111584158415,21850.9539287686,12.4641600659406,13.3685881888954,14.0088559586339,-1.71207920792079,-1.69743899899093,-1.29445619818797,3.35853338072922,2.66454060083195,2.654867251289
+42667,2874.39325881188,457.717702079208,45,56.4656930693069,58.1596638613861,11.3495478549505,-0.655742574257426,1415.5099009901,-3421.04554455446,-2878.69207920792,20,40,12,32,5306824.38152552,397518.219655701,0,0,0,0,0,0,0,56.4656930693068,21867.042142245,11.3495478549505,12.1730971521782,12.8922368926661,-0.655742574257426,-0.641102365327569,-0.47530024347511,3.67661905430057,2.91689842959047,2.87570203256191
+42668,2874.39835435644,457.727479504951,45,54.6265049504951,56.2653000990099,11.0697513753465,-1.05158415841584,1379.0396039604,-770.861386138614,-591.265346534653,20,40,12,32,5306833.60393196,397530.564762516,0,0,0,0,0,0,0,54.626504950495,21882.4278930151,11.0697513753465,11.8729979964597,12.5489002360936,-1.05158415841584,-1.03694394948598,-0.780198077384941,3.46518704303719,2.7491558126615,2.83827153020091
+42669,2874.4033339604,457.737033960396,45,53.934900990099,55.552948019802,10.1818080307327,-1.50049504950495,1362.55940594059,325.074257425743,360.778217821782,20,40,12,32,5306842.6165342,397542.628314395,0,0,0,0,0,0,0,53.9349009900989,21897.4925566839,10.1818080307327,10.9206234404196,11.7547155548076,-1.50049504950495,-1.48585484057509,-1.10275493718343,4.16295829525168,3.3027426378772,3.21194154130828
+42670,2874.40827425742,457.74649019802,45,53.5164158415841,55.1219083168317,11.0376633663366,-2.51564356435644,1351.0099009901,349.540594059406,386.993069306931,20,40,12,32,5306851.55852345,397554.568209123,0,0,0,0,0,0,0,53.5164158415841,21912.4171990107,11.0376633663366,11.8385816077111,12.4573683410215,-2.51564356435644,-2.50100335542658,-1.88964632083972,3.21376134896548,2.54968363418311,2.63829775690387
+42671,2874.41317069307,457.755860792079,45,53.0084455445544,54.5986989108911,10.3340940594158,-2.15574257425743,1340.4900990099,346.712871287129,395.675247524752,20,40,12,32,5306860.42118446,397566.39995865,0,0,0,0,0,0,0,53.0084455445544,21927.2051544287,10.3340940594158,11.0839596936142,11.8302543207242,-2.15574257425743,-2.14110236532757,-1.59360920507746,3.77899750703165,2.99812184261877,2.96162780563074
+42672,2874.41801356436,457.765164455445,45,52.5228415841584,54.0985268316832,9.71530583057426,-2.08633663366337,1326.80198019802,351.219801980198,395.590099009901,20,40,12,32,5306869.1861295,397578.146550924,0,0,0,0,0,0,0,52.5228415841584,21941.8618633396,9.71530583057426,10.4202707676251,11.2752968191636,-2.08633663366337,-2.07169642473351,-1.52820162249965,4.28890263662004,3.40266238646347,3.39476038623372
+42673,2874.42280920792,457.774388811881,45,52.0622871287129,53.6241557425743,9.66809020904951,0.811089108910891,1316.69306930693,387.133663366337,420.540594059406,20,40,12,32,5306877.86536934,397589.792781252,0,0,0,0,0,0,0,52.0622871287128,21956.3842267335,9.66809020904951,10.3696290720028,11.2098377901293,0.811089108910891,0.825729317840749,0.607083626870747,4.19332448818702,3.32683409232967,3.2815311780935
+42674,2874.42755574257,457.783535148515,45,51.5531485148515,53.0997429702971,10.1055572057228,1.18267326732673,1302.9801980198,349.470297029703,399.109900990099,20,40,12,32,5306886.45539032,397601.340191816,0,0,0,0,0,0,0,51.5531485148514,21970.7796889997,10.1055572057228,10.838839680164,11.5526319349256,1.18267326732673,1.19731347625659,0.893472795363885,3.61059477116067,2.86451711812978,2.94085778407817
+42675,2874.43224415842,457.792608910891,45,51.0435445544554,52.5748508910891,9.77920242024753,2.76267326732673,1286.24752475248,-205.576237623762,-83.4762376237624,20,40,12,32,5306894.93938204,397612.795269526,0,0,0,0,0,0,0,51.0435445544554,21985.038442575,9.77920242024753,10.4888038408124,11.2456253772666,2.76267326732673,2.77731347625659,2.0731416642809,3.81192133564912,3.02424243400234,2.99097719464963
+42676,2874.43680306931,457.801502079208,45,48.7324059405941,50.1943781188119,9.66405610561386,2.6919801980198,1214.45544554455,-4228.24455445544,-3418.08316831683,20,40,12,32,5306903.1874994,397624.021135734,0,0,0,0,0,0,0,48.732405940594,21998.971842135,9.66405610561386,10.3653022447431,11.0155936924741,2.6919801980198,2.70662040694966,2.03561042998677,3.29334593698395,2.61282320790075,2.6254286803539
+42677,2874.4410019802,457.809834752475,45,44.8768613861386,46.2231672277228,8.69626732673268,2.66742574257426,1210.10891089109,-4898.43762376238,-3694.92277227723,20,40,12,32,5306910.78117998,397634.537069944,0,0,0,0,0,0,0,44.8768613861386,22011.947161607,8.69626732673268,9.32728848607434,9.97100602821592,2.66742574257426,2.68206595150411,2.00907077696684,3.24448957916374,2.57406231608777,2.45713960773248
+42678,2874.44475168317,457.817658514851,45,41.3451287128713,42.5854825742574,8.57104950495049,2.83178217821782,1436.07920792079,-4239.58118811881,-3131.38514851485,20,40,11.9108910891089,32,5306917.55403603,397644.404391773,0,0,0,0,0,0,0,41.3451287128712,22023.9196732681,8.57104950495049,9.1929845711326,9.6617596476549,2.83178217821782,2.84642238714768,2.15011052277745,2.43460356279436,1.93152763560956,2.03242824375639
+42679,2874.44796752475,457.825132277228,45,37.9347722772277,39.0728154455445,8.04230693069307,5.23821782178218,1320.74752475248,-4787.26633663366,-3713.88910891089,20,40,12,32,5306923.34574535,397653.818240357,0,0,0,0,0,0,0,37.9347722772277,22034.9430654849,8.04230693069307,8.62587521953662,9.01448930432587,5.23821782178218,5.25285803071203,4.00222243342531,2.12778598103407,1.68810950901293,1.68560579052097
+42680,2874.45040405941,457.832335742574,45,34.0884356435644,35.1110887128713,7.69771287128713,5.46207920792079,1192.11386138614,-4321.97623762376,-3332.28118811881,20,40,12,32,5306927.69989423,397662.869821937,0,0,0,0,0,0,0,34.0884356435643,22044.9167709304,7.69771287128713,8.25627662258615,8.50068980538008,5.46207920792079,5.47671941685065,4.22832025536371,1.5226180962406,1.20799089277286,1.21161031953465
+42681,2874.45208990099,457.839141881188,45,30.8672475247525,31.7932649504951,7.34921782178218,5.5,1277.12871287129,-3702.61485148515,-2849.33168316832,20,40,11.9306930693069,32,5306930.67229026,397671.401875824,0,0,0,0,0,0,0,30.8672475247524,22053.9286393573,7.34921782178218,7.88249397072249,8.01968119397674,5.5,5.51464020892985,4.30314718285875,1.15468787447709,0.916088177204461,0.918732620591363
+42682,2874.45304346535,457.845549405941,45,28.663900990099,29.523818019802,6.96264356435643,5.5,1440.9603960396,-2360.82871287129,-1810.73465346535,20,40,11.5148514851485,32,5306932.29707221,397679.413410987,0,0,0,0,0,0,0,28.663900990099,22062.1655093793,6.96264356435643,7.46786899602607,7.56464253453972,5.5,5.51464020892985,4.32117263835527,0.95379533048022,0.756707197710409,0.757492567480955
+42683,2874.45334059406,457.851615148515,45,26.3740594059406,27.1652811881188,6.91354455445544,5.5,1323.89603960396,-2894.87821782178,-2213.08712871287,20,40,11.7722772277228,32,5306932.71346761,397686.977705573,0,0,0,0,0,0,0,26.3740594059406,22069.8256550889,6.91354455445544,7.41520724903499,7.39175905955407,5.5,5.51464020892985,4.38380624965562,0.82640176207561,0.655637684080848,0.663057473159116
+42684,2874.45353,457.857286336634,45,24.0853069306931,24.8078661386139,6.16340594059406,5.5,1288.13861386139,-2726.77623762376,-2084.96930693069,20,40,12,32,5306932.9390475,397694.047065129,0,0,0,0,0,0,0,24.085306930693,22076.8240273111,6.16340594059406,6.61063685197271,6.62253760642463,5.5,5.51464020892985,4.361634971425,0.803548059208448,0.637506371312511,0.663124115873744
+42685,2874.45412019802,457.862422376238,45,22.3148514851485,22.984297029703,4.64982178217822,5.5,1437.57425742574,-475.887128712871,-634.531683168317,20,40,11.7920792079208,32,5306933.91886161,397700.463092683,0,0,0,0,0,0,0,22.3148514851485,22083.2359350119,4.64982178217822,4.98722354565697,5.23353111983897,5.5,5.51464020892985,4.18074922251195,1.3507285698737,1.07161987306218,1.09671035776544
+42686,2874.45536039604,457.866822574257,45,21.233603960396,21.8706120792079,3.01886138613861,5.5,1359.31683168317,1171.98316831683,904.022772277228,20,40,11.8811881188119,32,5306936.11895977,397705.984020414,0,0,0,0,0,0,0,21.233603960396,22089.2806975806,3.01886138613861,3.23791691194071,3.78427743135956,5.5,5.51464020892985,3.80203080320278,2.69587747568214,2.13881303965594,2.1087299867951
+42687,2874.45726336634,457.870582376238,45,21.956900990099,22.615608019802,2.43373267326733,4.45782178217822,1360.63861386139,2919.09702970297,2598.34059405941,20,40,11.8811881188119,32,5306939.56089032,397710.729137222,0,0,0,0,0,0,0,21.956900990099,22095.2370447203,2.43373267326733,2.6103299138204,3.32852946964325,4.45782178217822,4.47246199110807,2.8839310823089,3.5073667487715,2.78261968683499,2.77481274023985
+42688,2874.45988683168,457.873612079208,45,22.6671188118812,23.3471323762376,1.81697579757426,-2.08891089108911,1155.54455445545,2412.37227722772,2147.53564356436,20,40,11.960396039604,32,5306944.35355486,397714.588617926,0,0,0,0,0,0,0,22.6671188118811,22101.4396973056,1.81697579757426,1.94881974063665,2.84476716272457,-2.08891089108911,-2.07427068215925,-1.0327906268359,4.35900977658125,3.45828289090946,3.32476177619471
+42689,2874.46305465347,457.875426633663,45,23.1958415841584,23.8917168316832,3.05422772277228,-5.5,1057.48514851485,903.736633663366,699.275247524753,20,40,12,32,5306950.18139271,397716.952577997,0,0,0,0,0,0,0,23.1958415841584,22107.8263429327,3.05422772277228,3.27584951130593,3.92684000717676,-5.5,-5.48535979107015,-3.69437766057748,3.19956499349467,2.53842075207128,2.5743774280389
+42690,2874.46649653465,457.875745346535,45,22.9471287128713,23.6355425742574,4.33564356435643,-5.5,1048.18811881188,515.780198019802,346.769306930693,20,40,12,32,5306956.54991634,397717.462557933,0,0,0,0,0,0,0,22.9471287128713,22114.2428483232,4.33564356435643,4.65024783371488,5.00254443953459,-5.5,-5.48535979107015,-4.05513489082068,1.84585244624684,1.46443349778521,1.52924235651709
+42691,2874.46978514852,457.874584059406,45,22.5196336633663,23.1952226732673,5.74202970297029,-5.5,1024.41584158416,238.471287128713,38.4356435643564,20,40,12,32,5306962.66721773,397716.124258413,0,0,0,0,0,0,0,22.5196336633663,22120.5648127897,5.74202970297029,6.15868458534774,6.17445783485007,-5.5,-5.48535979107015,-4.33323037411302,0.858551943548235,0.681144491412125,0.695706578741541
+42692,2874.47256990099,457.871951782178,45,22.1982178217822,22.8641643564356,6.29175247524752,-5.5,1009.86633663366,1371.27425742574,1181.73366336634,20,40,11.7920792079208,32,5306967.88367705,397712.937391046,0,0,0,0,0,0,0,22.1982178217821,22126.7664814915,6.29175247524752,6.74829650638797,6.62373108267152,-5.5,-5.48535979107015,-4.41979928070527,0.953633081515784,0.756578475168699,0.775867067900281
+42693,2874.47458891089,457.868075841584,45,22.771297029703,23.4544359405941,7.43446534653466,-5.5,1024.77722772277,3291.50891089109,2916.8603960396,20,40,12,32,5306971.7091819,397708.176477613,0,0,0,0,0,0,0,22.7712970297029,22132.9857683177,7.43446534653466,7.97392725194717,7.6287451577032,-5.5,-5.48535979107015,-4.52076491394111,1.85721200749215,1.47344576853393,1.39577985884134
+42694,2874.47565811881,457.863267326732,45,23.5440099009901,24.2503301980198,7.47810891089109,-5.5,1059.72277227723,3715.33267326733,3276.89702970297,20,40,12,32,5306973.79592342,397702.222912237,0,0,0,0,0,0,0,23.5440099009901,22139.4218165025,7.47810891089109,8.02073769371701,7.71011822064134,-5.5,-5.48535979107015,-4.49575108672152,1.88957445633807,1.49912098122859,1.64042932058253
+42695,2874.47558039604,457.857991881188,162.623762376238,24.2709900990099,24.9991198019802,8.83811881188119,-5.5,907.752475247525,4062.83168316832,3581.72772277228,20,40,11.980198019802,32,5306973.76846945,397695.650142901,0,0,0,0,0,0,0,24.2709900990099,22146.0734583342,8.83811881188119,9.47943304125505,8.90882276969974,-5.5,-5.48535979107015,-4.60113812377,2.88424669315137,2.28825845853242,2.24707201012651
+42696,2874.47444514852,457.85281990099,225,24.9230792079208,25.6707715841584,9.06541584158416,-5.5,819.886138613861,4545.17920792079,3979.9603960396,20,40,12,32,5306971.77983367,397689.171490214,0,0,0,0,0,0,0,24.9230792079208,22152.9072899624,9.06541584158416,9.72322326623472,9.13953990321657,-5.5,-5.48535979107015,-4.59691715806057,2.98083580162024,2.36488881230237,2.36913698923209
+42697,2874.4725619802,457.847946930693,225,25.9496138613862,26.7281022772277,9.58221782178218,-5.35643564356436,884.678217821782,5156.59306930693,4452.60396039604,20,40,11.7425742574257,32,5306968.39919049,397683.040657585,0,0,0,0,0,0,0,25.9496138613861,22159.9495971681,9.58221782178218,10.277525586802,9.63812092031004,-5.35643564356436,-5.3417954346345,-4.48992858681146,3.18300927508734,2.52528603555323,2.45522974058134
+42698,2874.47025564356,457.843076831683,225,27.5037227722772,28.3288344554455,10.2081782178218,-5.28851485148515,964.69801980198,5728.97821782178,4865.13465346535,20,40,11.5940594059406,32,5306964.23463537,397676.899489941,0,0,0,0,0,0,0,27.5037227722772,22167.3724497809,10.2081782178218,10.9489071089375,10.2596965397459,-5.28851485148515,-5.2738746425553,-4.43110398778883,3.46559930932605,2.74948289003144,2.69565590864652
+42699,2874.4677550495,457.838013564356,225,29.6658613861386,30.5558372277228,10.5763564356436,-3.57623762376238,1051.92574257426,5855.22277227723,4916.35148514852,20,40,11,32,5306959.71452194,397670.511351541,0,0,0,0,0,0,0,29.6658613861386,22175.2947614695,10.5763564356436,11.3438011850839,10.6985599938576,-3.57623762376238,-3.56159741483252,-2.967829615628,3.21875690598842,2.55364693095658,2.66760246507217
+42700,2874.46501613861,457.832637029703,225,31.8987128712871,32.8556742574257,11.7904829483168,-3.5960396039604,1047.26237623762,5039.8297029703,4324.98613861386,20,40,11,32,5306954.7598911,397663.72521697,0,0,0,0,0,0,0,31.8987128712871,22183.8649676302,11.7904829483168,12.6460275101053,11.8587046659088,-3.5960396039604,-3.58139939503054,-3.00558023942375,3.89608112081395,3.09101180595966,3.09371744851982
+42701,2874.46202336634,457.826852574258,225,33.8541683168317,34.8697933663366,12.5941386138614,-2.48613861386139,876.633663366337,4797.29306930693,4137.11584158416,20,40,10.5643564356436,32,5306949.3440417,397656.422687783,0,0,0,0,0,0,0,33.8541683168316,22193.0021790163,12.5941386138614,13.5079982792144,12.6547683150593,-2.48613861386139,-2.47149840493153,-2.0943377441064,4.20784079966841,3.33835081612893,3.3159662110635
+42702,2874.45881722772,457.820733762376,225,35.6891386138614,36.7598127722772,12.9092178217822,-2.42633663366337,909.311881188119,4589.19504950495,3997.33861386139,20,40,10.6039603960396,32,5306943.54036103,397648.696711663,0,0,0,0,0,0,0,35.6891386138613,22202.6661953254,12.9092178217822,13.8459403591695,13.0284320075199,-2.42633663366337,-2.41169642473351,-2.01439035247196,4.04421576111568,3.20853654629375,3.190569622009
+42703,2874.45542118812,457.814288910891,225,37.4910198019802,38.6157503960396,13.2175544554455,-3.70811881188119,966.638613861386,4285.16534653465,3837.00495049505,20,40,11,32,5306937.39213295,397640.558415153,0,0,0,0,0,0,0,37.4910198019801,22212.8333832792,13.2175544554455,14.1766506081705,13.3934811315837,-3.70811881188119,-3.69347860295133,-3.08889608023274,3.89817809273927,3.09267546869586,3.12108377432547
+42704,2874.45188712871,457.807610693069,225,38.8057326732673,39.9699046534653,13.4452079207921,-2.78069306930693,1335.67326732673,4002.33168316832,3642.74158415841,20,40,11.3960396039604,32,5306930.99341301,397632.124920119,0,0,0,0,0,0,0,38.8057326732673,22223.4419824266,13.4452079207921,14.4208231325838,13.6632146115471,-2.78069306930693,-2.76605286037707,-2.30129015848981,3.77113710697694,2.99188568155969,2.94728407497461
+42705,2874.44819,457.800681089109,225,41.0092772277228,42.2395555445545,13.048396039604,-2.71871287128713,1453.33168316832,5762.51386138614,5283.97623762376,20,40,12,32,5306924.29820043,397623.37295827,0,0,0,0,0,0,0,41.0092772277227,22234.5002384497,13.048396039604,13.9952176685975,13.452215818785,-2.71871287128713,-2.70407266235727,-2.21829823585996,2.80090113206746,2.22213506292127,2.20497137149749
+42706,2874.44424326733,457.793318811881,225,43.5303069306931,44.8362161386139,13.6980693069307,-2.18089108910891,1542.29702970297,5673.75742574257,5188.86237623762,20,40,11.8217821782178,32,5306917.1502116,397614.073898993,0,0,0,0,0,0,0,43.530306930693,22246.2476033287,13.6980693069307,14.6920327225022,14.1485438796169,-2.18089108910891,-2.16625088017906,-1.77035106321075,2.90564449283105,2.30523470963717,2.37320019470403
+42707,2874.44008108911,457.785474257426,225,45.9304158415842,47.3083283168317,15.005297029703,-1.23049504950495,1631.79702970297,5513.82475247525,5002.1099009901,20,40,11.6435643564356,32,5306909.61381896,397604.167082039,0,0,0,0,0,0,0,45.9304158415841,22258.67856631,15.005297029703,16.0941158955677,15.3988371243002,-1.23049504950495,-1.21585484057509,-1.00454419470178,3.52418276413303,2.79596091367291,2.72219803266692
+42708,2874.43570772277,457.777209405941,225,48.1550396039604,49.5996907920792,15.660603960396,-2.87564356435644,1708.5297029703,5263.68712871287,4849.2801980198,20,40,11.019801980198,32,5306901.69554149,397593.729836217,0,0,0,0,0,0,0,48.1550396039603,22271.7535916125,15.660603960396,16.7969734044105,16.0839973142355,-2.87564356435644,-2.86100335542658,-2.36167512016652,3.6111265329548,2.86493899897175,2.91781676998612
+42709,2874.43112435644,457.768610693069,225,50.2624356435644,51.7703087128713,16.3435049504951,-3.48138613861386,1782.66336633663,5107.92079207921,4735.31089108911,20,40,11,32,5306893.39567165,397582.869847676,0,0,0,0,0,0,0,50.2624356435643,22285.4284088843,16.3435049504951,17.5294272610782,16.7853395609366,-3.48138613861386,-3.46674592968401,-2.85623664274934,3.78824839714922,3.00546116890135,2.97939153719286
+42710,2874.42637108911,457.759649009901,225,52.2213564356436,53.7879971287128,16.0567128712871,-2.01168316831683,1853.08910891089,4952.26930693069,4580.08613861386,20,40,11,32,5306884.78913278,397571.552177505,0,0,0,0,0,0,0,52.2213564356435,22299.6681411175,16.0567128712871,17.2218248889581,16.6537468914378,-2.01168316831683,-1.99704295938698,-1.63164581019482,2.99114978108456,2.37307155575715,2.38808710627996
+42711,2874.42145465346,457.750333366337,225,54.1295544554456,55.7534410891089,16.2325445544554,-3.28405940594059,1919.20297029703,4773.90693069307,4417.50396039604,20,40,11,32,5306875.88819953,397559.78826471,0,0,0,0,0,0,0,54.1295544554454,22314.4444957655,16.2325445544554,17.4104153234842,16.9109991559148,-3.28405940594059,-3.26941919701074,-2.66478029883046,2.78644968335688,2.210669798931,2.25338343696102
+42712,2874.41638178218,457.740678217822,225,55.8192673267327,57.4938453465347,16.4049801980198,-2.87445544554455,1920.5396039604,4340.3396039604,4076.78514851485,20,40,11,32,5306866.70502609,397547.59633054,0,0,0,0,0,0,0,55.8192673267326,22329.7241441428,16.4049801980198,17.5953632939614,17.1562944438591,-2.87445544554455,-2.8598152366147,-2.31975576705673,2.47921818073256,1.9669232822835,1.97141278761403
+42713,2874.41117861386,457.730726237624,225,57.4175247524753,59.1400504950495,16.4055148514852,-2.62118811881188,1480.72277227723,4419.01683168317,4185.58712871287,20,40,11,32,5306857.28708893,397535.030378936,0,0,0,0,0,0,0,57.4175247524752,22345.454496618,16.4055148514852,17.5959367431119,17.2478733373285,-2.62118811881188,-2.60654790988203,-2.10252187309877,2.2698870851822,1.80084745695124,1.84946871887712
+42714,2874.40585584158,457.720478514851,225,59.0172376237624,60.7877547524752,17.4712673267327,-1.56158415841584,1501.36138613861,4337.85445544554,4146.78316831683,20,40,11,32,5306847.65417365,397522.092114789,0,0,0,0,0,0,0,59.0172376237623,22361.6278003309,17.4712673267327,18.7390226692798,18.2463248312989,-1.56158415841584,-1.54694394948599,-1.24721285062905,2.82439881513282,2.24077728661105,2.19097114021845
+42715,2874.40040435644,457.709916435643,225,60.607297029703,62.4255159405941,18.9959900990099,0.367920792079208,1543.4702970297,4385.51485148515,4035.46435643564,20,40,11,32,5306837.78982171,397508.758052117,0,0,0,0,0,0,0,60.6072970297029,22378.245381464,18.9959900990099,20.3743828328984,19.636326372816,0.367920792079208,0.382561001009065,0.31261725462353,3.78505993465164,3.00293155647356,2.92751610141322
+42716,2874.3947880198,457.699078217822,225,62.1294653465346,63.9933493069307,18.9260297029703,2.25653465346535,1584.08415841584,4359.74455445544,3935.02871287129,20,40,11,32,5306827.62624878,397495.074596808,0,0,0,0,0,0,0,62.1294653465346,22395.2952470856,18.9260297029703,20.2993459496076,19.6628885191711,2.25653465346535,2.2711748623952,1.85761081413161,3.37715522968973,2.67931451164151,2.75887765346183
+42717,2874.38901247525,457.688014554455,225,63.6059108910891,65.5140882178218,20.3162178217822,2.58950495049505,1621.55445544554,4334.15742574257,3819.79504950495,20,40,11,32,5306817.17278916,397481.105067251,0,0,0,0,0,0,0,63.605910891089,22412.7621447479,20.3162178217822,21.7904093158649,20.9303615525265,2.58950495049505,2.60414515942491,2.14466961690137,4.39659576140894,3.48810227075254,3.44304745081578
+42718,2874.38304623762,457.676754356436,225,65.0244356435643,66.9751687128712,20.5981287128713,3.30485148514851,1655.22772277228,4283.95148514851,3734.42673267327,20,40,11,32,5306806.37048348,397466.884430899,0,0,0,0,0,0,0,65.0244356435643,22430.6320083892,20.5981287128713,22.0927763096292,21.2506343556588,3.30485148514851,3.31949169407837,2.73321923362454,4.34823787260966,3.44973684648267,3.41955422695645
+42719,2874.37692148515,457.665311386139,225,66.4132079207921,68.4056041584158,20.9953762376238,3.32722772277228,1690.17821782178,4171.36435643564,3696.58910891089,20,40,11,32,5306795.27863412,397452.430883985,0,0,0,0,0,0,0,66.413207920792,22448.8888107269,20.9953762376238,22.5188490284789,21.6687780805271,3.32722772277228,3.34186793170213,2.74932574694798,4.36935830167572,3.46649304163511,3.48458800909832
+42720,2874.37061108911,457.65367970297,225,67.7410891089109,69.7733217821782,20.7479306930693,2.35693069306931,1722.92079207921,4052.33465346535,3715.45544554455,20,40,10.6732673267327,32,5306783.84712254,397437.73613077,0,0,0,0,0,0,0,67.7410891089108,22467.5196814365,20.7479306930693,22.2534482660669,21.535527048359,2.35693069306931,2.37157090199916,1.93684400168363,3.78050897718897,2.9993209891344,3.00757386346809
+42721,2874.36417792079,457.641821188119,225,69.002603960396,71.0726820792079,20.8342079207921,3.5909900990099,1758.38613861386,3972.03168316832,3703.81881188119,20,40,10.9306930693069,32,5306772.19325415,397422.754761887,0,0,0,0,0,0,0,69.002603960396,22486.5124491208,20.8342079207921,22.3459859678778,21.6792235449107,3.5909900990099,3.60563030793976,2.94603803904049,3.60563168393507,2.86057958173549,2.82014169125147
+42722,2874.35763683168,457.629736633663,225,70.2501188118812,72.3576223762376,20.7214851485149,3.29425742574257,1788.56435643564,3850.12871287129,3724.88712871287,20,40,10.7524752475248,32,5306760.34452369,397407.488249584,0,0,0,0,0,0,0,70.2501188118811,22505.8599683177,20.7214851485149,22.2250837719727,21.6552437010309,3.29425742574257,3.30889763467243,2.68735986046558,3.1952990615284,2.53503631379541,2.62152227472871
+42723,2874.35101623763,457.617412475248,225,71.4779108910891,73.6222482178218,21.9140198019802,3.40059405940594,1820.25247524752,3777.16138613861,3676.78316831683,20,40,10.8316831683168,32,5306748.35386988,397391.920632547,0,0,0,0,0,0,0,71.477910891089,22525.5498764035,21.9140198019802,23.5041514828191,22.7397303321515,3.40059405940594,3.4152342683358,2.79516535988697,4.071321037712,3.23004090602472,3.19083286041547
+42724,2874.34432594059,457.604842772277,225,72.6730792079208,74.8532715841584,21.9589504950495,1.42693069306931,1849.60396039604,3711.77623762376,3623.05940594059,20,40,11,32,5306736.2395834,397376.044831775,0,0,0,0,0,0,0,72.6730792079207,22545.5752468656,21.9589504950495,23.5523424503217,22.848126773426,1.42693069306931,1.44157090199917,1.1794439305058,3.75093111409934,2.97585496746543,2.94197917141503
+42725,2874.33755148515,457.592039207921,225,73.841801980198,76.057056039604,21.3401782178218,1.53306930693069,1878.62871287129,3677.64554455445,3537.62871287129,20,40,11,32,5306723.97463135,397359.874919113,0,0,0,0,0,0,0,73.8418019801979,22565.9253233507,21.3401782178218,22.8886706334324,22.3892448374629,1.53306930693069,1.54770951586055,1.25509257304134,2.87382992578705,2.27999416682375,2.39764949394708
+42726,2874.33068594059,457.579001485148,225,74.920198019802,77.167803960396,21.4338712871287,-0.0111881188118814,1907.12871287129,3608.31584158416,3493.12079207921,20,40,11,32,5306711.54618473,397343.410293022,0,0,0,0,0,0,0,74.9201980198019,22586.5849449954,21.4338712871287,22.9891622873498,22.5307688828027,-0.0111881188118814,0.00345209011797636,-5.31227128345088E-05,2.87741302444843,2.28283686950904,2.19076647499281
+42727,2874.32373376238,457.565752574257,225,75.9744851485148,78.2537197029703,20.9738811881188,-0.335049504950495,1934.19306930693,3576.15643564356,3423.78910891089,20,40,11,32,5306698.96198987,397326.679706412,0,0,0,0,0,0,0,75.9744851485147,22607.5457223331,20.9738811881188,22.4957942487416,22.1999660665037,-0.335049504950495,-0.320409296020637,-0.255888508722791,2.58695648338456,2.05239900907787,2.07791323262659
+42728,2874.3166850495,457.552314950495,225,77.0355445544554,79.3466108910891,22.946,0.136633663366337,1960.48514851485,3565.31188118812,3335.23069306931,20,40,11,32,5306686.20321073,397309.710822552,0,0,0,0,0,0,0,77.0355445544553,22628.8007332792,22.946,24.6110145376446,23.9386967246866,0.136633663366337,0.151273872296194,0.120848258584898,3.71612654738899,2.94824226555625,2.84840727758442
+42729,2874.30953851485,457.538703366337,225,78.0152376237624,80.3556947524753,21.7001881188119,0.441485148514852,1945.88118811881,3500.61584158416,3303.75445544554,20,40,11,32,5306673.26713804,397292.521970078,0,0,0,0,0,0,0,78.0152376237623,22650.3356518436,21.7001881188119,23.27480368089,22.9339916497358,0.441485148514852,0.456125357444709,0.380156244072883,2.58723604395655,2.05262080246505,2.25180894163906
+42730,2874.30229881188,457.524919504951,225,79.0128514851486,81.383237029703,22.5637326732673,-0.862475247524752,1809.85148514851,3493.69108910891,3317.36831683168,20,40,11,32,5306660.16235626,397275.1153958,0,0,0,0,0,0,0,79.0128514851484,22672.1448670251,22.5637326732673,24.2010090144387,23.7257580745395,-0.862475247524752,-0.847835038594895,-0.681795976973867,3.00781641484593,2.38629426856125,2.32367223215631
+42731,2874.29495564357,457.510958019802,225,79.9721188118812,82.3712823762376,21.6856952694059,-0.692475247524753,1738.09405940594,3489.92079207921,3235.94554455446,20,40,10.990099009901,32,5306646.86991224,397257.484097875,0,0,0,0,0,0,0,79.9721188118811,22694.2297171351,21.6856952694059,23.2592591969965,23.0328835438863,-0.692475247524753,-0.677835038594896,-0.551346299402739,3.11689724676398,2.47283511019346,2.32051198118048
+42732,2874.28750287129,457.496854356435,225,80.9180099009901,83.3455501980198,20.2524884488119,0.158811881188119,1761.25247524752,3445.6900990099,3221.25841584158,20,40,10.9405940594059,32,5306633.37765081,397239.672018238,0,0,0,0,0,0,0,80.91800990099,22716.5806877072,20.2524884488119,21.7220555930092,21.8692591845621,0.158811881188119,0.173452090117977,0.116174850746851,2.4562841802589,1.94872826425801,1.96738924947322
+42733,2874.27994980198,457.482606534653,225,81.8426534653465,84.297933069307,19.854801429901,-0.479108910891089,1778.11386138614,3405.61386138614,3209.31386138614,20,40,10.6039603960396,32,5306619.70285723,397221.676994543,0,0,0,0,0,0,0,81.8426534653464,22739.1875079767,19.854801429901,21.295511489294,21.5831527569669,-0.479108910891089,-0.464468701961232,-0.36125401915373,2.97852379294785,2.36305454708041,2.43286822953996
+42734,2874.27231693069,457.468208415841,225,82.7237722772277,85.2054854455446,19.3595753576238,-1.54445544554455,1795.4801980198,3369.51188118812,3207.00495049505,20,40,10.6435643564356,32,5306605.88363333,397203.492054488,0,0,0,0,0,0,0,82.7237722772276,22762.0452171626,19.3595753576238,20.7643506741526,21.2114557078793,-1.54445544554455,-1.5298152366147,-1.20067937243476,3.05657411699172,2.42497689048073,2.45313878758297
+42735,2874.26461079208,457.453648910891,225,83.6047029702971,86.1128440594059,19.94109901,-2.34891089108911,1815.51485148515,3047.41386138614,2987.75346534654,20,40,10.7227722772277,32,5306591.93233145,397185.103599383,0,0,0,0,0,0,0,83.6047029702969,22785.1467669151,19.94109901,21.3880710202964,21.7567518876243,-2.34891089108911,-2.33427068215925,-1.80416844613505,3.17372792288522,2.51792254173921,2.56325191079581
+42736,2874.25686019802,457.438949108911,225,83.9268415841584,86.4446468316832,18.5885709566337,-2.48188118811881,1818.33168316832,1818.5504950495,1939.32079207921,20,40,10.7128712871287,32,5306577.90185488,397166.538844684,0,0,0,0,0,0,0,83.9268415841583,22808.4360181802,18.5885709566337,19.9374004204546,20.624322757094,-2.48188118811881,-2.46724097918896,-1.90069443778189,3.79342030840651,3.0095643788346,2.89295655364458
+42737,2874.24911861386,457.424218613862,225,83.9862277227722,86.5058145544555,18.8103520348515,-1.16455445544554,1820.42574257426,1918.98118811881,2032.56732673267,20,40,11,32,5306563.88880799,397147.936068163,0,0,0,0,0,0,0,83.9862277227721,22831.7543479932,18.8103520348515,20.1752744438222,20.8165410583353,-1.16455445544554,-1.14991424651569,-0.885828632293237,3.61780319794185,2.87023602684654,2.88891038130404
+42738,2874.24137287129,457.409445346535,225,84.1472970297029,86.6717159405941,18.6324273929703,0.034158415841584,1823.44554455446,2048.32277227723,2026.19702970297,20,40,10.1485148514851,32,5306549.86906713,397129.279789736,0,0,0,0,0,0,0,84.1472970297028,22855.1108884498,18.6324273929703,19.9844391806851,20.6754222424722,0.034158415841584,0.0487986247714414,0.0390892904253602,3.76588833189712,2.98772149061102,2.87117508438275
+42739,2874.23359188119,457.394661287129,225,84.3077128712871,86.8369442574257,19.5807876789109,-3.12207920792079,1825.41089108911,2040.20495049505,1977.04356435644,20,40,10,32,5306535.78433466,397110.608814273,0,0,0,0,0,0,0,84.307712871287,22878.508386387,19.5807876789109,21.0016146702784,21.4892323218151,-3.12207920792079,-3.10743899899094,-2.39533885948576,3.05804615518527,2.42614475308267,2.52742210373368
+42740,2874.22577584158,457.37988,225,84.4562673267327,86.9899553465346,19.4785770077228,-2.2870297029703,1828.82673267327,1997.45841584158,1942.8396039604,20,40,10,32,5306521.63467619,397091.940042433,0,0,0,0,0,0,0,84.4562673267326,22901.9458328392,19.4785770077228,20.8919873576962,21.4110719580381,-2.2870297029703,-2.27238949404044,-1.76794612497207,3.39688305381723,2.69496586370352,2.7282439192787
+42741,2874.21792673267,457.365103960396,225,84.5565445544554,87.0932408910892,18.5751221120792,-1.95435643564356,1832.21782178218,1916.21782178218,1928.77920792079,20,40,10,32,5306507.42370469,397073.276622096,0,0,0,0,0,0,0,84.5565445544553,22925.4164902649,18.5751221120792,19.9229756968058,20.6507871487751,-1.95435643564356,-1.93971622671371,-1.48874612192717,3.8946735003066,3.08989505005247,3.054931498056
+42742,2874.21006772277,457.350315148515,225,84.6402574257425,87.1794651485149,20.2752458744554,-0.393663366336634,1832.15346534653,1879.40693069307,1909.46732673267,20,40,10,32,5306493.19473634,397054.596874093,0,0,0,0,0,0,0,84.6402574257424,22948.9151866896,20.2752458744554,21.7464643498014,22.1003692061702,-0.393663366336634,-0.379023157406775,-0.301297420298702,3.01098013471527,2.38880425107025,2.41896592638115
+42743,2874.2022029703,457.335515346535,225,84.6980396039604,87.2389807920792,20.1585093507921,-0.0495049504950496,1835.90594059406,1831.27128712871,1879.1198019802,20,40,10,32,5306478.95543448,397035.903155371,0,0,0,0,0,0,0,84.6980396039603,22972.4330485708,20.1585093507921,21.6212571554776,22.0076512130836,-0.0495049504950496,-0.0348647415651923,-0.0298217268947828,3.27810199764053,2.60072921010689,2.62155161197314
+42744,2874.19433326733,457.320702871287,225,84.7498118811881,87.2923062376237,21.201004400396,-3.51247524752475,1835.58910891089,1806.80891089109,1891.05445544554,20,40,10,32,5306464.70730388,397017.193395457,0,0,0,0,0,0,0,84.749811881188,22995.9693576742,21.201004400396,22.7393980437033,22.893428317797,-3.51247524752475,-3.4978350385949,-2.75716033648742,2.65965604683941,2.11007624986389,2.13289046841199
+42745,2874.18647970297,457.305864158416,225,84.7595940594059,87.3023818811881,19.1265357538614,-2.00138613861386,1838.17326732673,1762.76732673267,1920.11287128713,20,40,10,32,5306450.48971063,396998.451396471,0,0,0,0,0,0,0,84.7595940594058,23019.5141436753,19.1265357538614,20.5144011807314,21.130874240078,-2.00138613861386,-1.98674592968401,-1.52730368764281,3.56393937173381,2.82750238820802,2.76837244541534
+42746,2874.17864950495,457.290980792079,225,84.8097623762376,87.3540552475248,21.6694625962376,-4.15653465346535,1837.92079207921,1740.11881188119,1896.11287128713,20,40,10,32,5306436.31645286,396979.654459617,0,0,0,0,0,0,0,84.8097623762375,23043.0720503309,21.6694625962376,23.2418486437266,23.2943098326009,-4.15653465346535,-4.14189444453549,-3.29175954941319,3.18908668411686,2.53010763512403,2.53777537835998
+42747,2874.17083465347,457.276072871287,225,84.8789702970297,87.4253394059406,21.7038448846535,-3.88415841584158,1839.22772277228,1795.6603960396,1858.79306930693,20,40,10,32,5306422.17222856,396960.827353998,0,0,0,0,0,0,0,84.8789702970296,23066.6381409525,21.7038448846535,23.278725790072,23.3278700821862,-3.88415841584158,-3.86951820691173,-3.07340136494847,2.97120275633499,2.35724629773947,2.41426498304211
+42748,2874.16301940594,457.261158415842,225,84.882099009901,87.428561980198,19.4499504948515,-3.44534653465346,1838.67821782178,1815.74851485148,1830.28712871287,20,40,10,32,5306408.02747642,396941.992003513,0,0,0,0,0,0,0,84.8820990099009,23090.2123335267,19.4499504948515,20.8612836392076,21.4110564564048,-3.44534653465346,-3.43070632572361,-2.66285135430907,3.46506962434169,2.74906265685627,2.80230725574899
+42749,2874.15518861386,457.246250396039,225,84.9338217821782,87.4818364356435,20.1947882288119,-1.45445544554455,1839.18316831683,1841.95841584158,1815.69405940594,20,40,10,32,5306393.85384764,396923.164062082,0,0,0,0,0,0,0,84.9338217821781,23113.7967303364,20.1947882288119,21.6601685123309,22.0500918641747,-1.45445544554455,-1.4398152366147,-1.11802373637226,3.25020345170462,2.57859549877415,2.36730846643243
+42750,2874.14733425743,457.231351485149,225,84.976594059406,87.5258918811881,21.067300880198,-2.28039603960396,1841.80693069307,1785.77128712871,1799.61782178218,20,40,10,32,5306379.63642719,396904.34659378,0,0,0,0,0,0,0,84.9765940594058,23137.3981843518,21.067300880198,22.5959926885508,22.7934971316365,-2.28039603960396,-2.2657558306741,-1.77962455522546,2.71633394116001,2.15504246977804,2.20662815367206
+42751,2874.13945881188,457.216462673267,225,85.061603960396,87.6134520792079,21.1793366336634,-0.532277227722772,1841.75742574257,1762.83069306931,1778.61188118812,20,40,10,32,5306365.37977796,396885.540913451,0,0,0,0,0,0,0,85.0616039603959,23161.0129413375,21.1793366336634,22.7161580139788,22.8942749809641,-0.532277227722772,-0.517637018792915,-0.412292296446637,2.57130842589195,2.03998439835748,2.10084083269484
+42752,2874.13156435644,457.201585841584,225,85.0608910891089,87.6127178217822,22.2292277227723,-1.68554455445545,1843.39603960396,1722.28910891089,1734.12277227723,20,40,10,32,5306351.08770933,396866.749432821,0,0,0,0,0,0,0,85.0608910891088,23184.6409680427,22.2292277227723,23.8422316153474,23.7879156090844,-1.68554455445545,-1.67090434552559,-1.31441427548325,2.69634692808168,2.13918548644653,2.32948100358823
+42753,2874.12367366337,457.18671039604,225,85.0273960396039,87.5782179207921,26.3354356435644,-5.22386138613861,1840.01485148515,1602.82574257426,1729.65445544555,20,40,10,32,5306336.80263922,396847.959710113,0,0,0,0,0,0,0,85.0273960396039,23208.2664284113,26.3354356435644,28.2463954274805,27.2744474166723,-5.22386138613861,-5.20922117720876,-4.26446238012686,5.22157778535628,4.14261358523794,3.84603918643722
+42754,2874.11580663366,457.171823663366,225,84.9874158415841,87.5370383168316,25.3828316831683,-2.07069306930693,1841.9702970297,1669.47128712871,1756.05742574257,20,40,10,32,5306322.56171337,396829.156619026,0.198019801980198,0.198019801980198,525378.087520148,39288.9589969149,0.105719317585702,0,0,84.987415841584,23231.8774010735,25.3828316831683,27.2246683326524,26.4663030502738,-2.07069306930693,-2.05605286037708,-1.66919195371299,4.16127737169149,3.30140905307536,3.36858717701582
+42755,2874.10795821782,457.156922475248,225,85.0054158415841,87.5555783168317,22.9504845985149,-2.0860396039604,1841.68811881188,1694.13168316832,1789.35544554455,20,40,10,32,5306308.35564906,396810.336046212,2,2,5306310.57250999,396808.529899424,13.9097603880735,0,0,85.0054158415841,23255.4858410351,22.9504845985149,24.6158245489427,24.398352740666,-2.0860396039604,-2.07139939503054,-1.65348695472817,3.38108414402542,2.68243157214915,2.84884960826731
+42756,2874.10015564356,457.141980495049,225,85.0071584158416,87.5573731683168,23.961702970297,-4.39227722772277,1839.16336633663,1674.6396039604,1780.50198019802,20,40,10,32,5306294.23546839,396791.466089531,2,2,5306295.69876532,396790.273895186,37.4577957872576,0,0,85.0071584158414,23279.0974350395,23.961702970297,25.7004192516649,25.2553591708689,-4.39227722772277,-4.37763701879292,-3.52039036461711,3.21102006588052,2.54750879795247,2.40025186465674
+42757,2874.09232653465,457.127032574258,225,85.0233366336633,87.5740367326732,24.0744059405941,-3.15049504950495,1841.5495049505,1663.26138613861,1788.79702970297,20,40,10,32,5306280.06632942,396772.587761432,2,2,5306280.80138881,396771.988885272,61.0432449971989,0,0,85.0233366336633,23302.715129594,24.0744059405941,25.8213002087126,25.3543443809896,-3.15049504950495,-3.1358548405751,-2.52665142706111,3.07175805434658,2.43702328483687,2.38109694120177
+42758,2874.08453366337,457.112042673267,225,85.037603960396,87.5887320792079,22.3589801980198,-3.8609900990099,1842.77722772277,1620.47623762376,1738.22376237624,20,40,10,32,5306265.96531144,396753.658251497,2,2,5306265.906127,396753.706470932,84.6253462295661,0,0,85.0376039603959,23326.3390507986,22.3589801980198,23.98139922864,23.8941905428681,-3.8609900990099,-3.84634989008005,-3.05289020697331,2.50519122435402,1.98752936875376,2.07530198296929
+42759,2874.0767539604,457.097029306931,225,85.0386633663366,87.5898232673268,21.9023855884158,-2.24831683168317,1841.09900990099,1605.88217821782,1701.04752475248,20,40,10,32,5306251.88926985,396734.699857106,2,2,5306251.00668553,396735.418926493,108.214064670845,0,0,85.0386633663365,23349.9624043464,21.9023855884158,23.4916730639589,23.5085913498829,-2.24831683168317,-2.23367662275331,-1.75437053976427,2.98374893725,2.36719999021287,2.42033906409288
+42760,2874.06899514851,457.082003663366,225,85.0388712871287,87.5900374257426,24.2828910891089,-4.39712871287129,1841.35643564356,1655.94455445545,1710.05049504951,20,40,10,32,5306237.85226076,396715.726770268,2,2,5306236.11562187,396717.141664954,131.789519413698,0,0,85.0388712871286,23373.5816439504,24.2828910891089,26.0449135191363,25.531043046462,-4.39712871287129,-4.38248850394143,-3.53614518219882,3.25527357911615,2.58261795703434,2.43829089690831
+42761,2874.0612670297,457.066956732674,225,85.0601881188119,87.6119937623762,22.8885643564356,-4.60524752475248,1843.23762376238,1679.82871287129,1668.09207920792,20,40,9.88118811881188,32,5306223.87264185,396696.728093535,2,2,5306221.23492371,396698.877126017,155.348563542054,0,0,85.0601881188118,23397.2067619097,22.8885643564356,24.5494112316767,24.345187837657,-4.60524752475248,-4.59060731582262,-3.66535236982031,2.47651765575887,1.96478078208468,2.15828141926407
+42762,2874.05351881188,457.051954257426,225,85.0391683168317,87.5903433663367,23.9407722772277,-4.36544554455446,1841.25742574257,1669.33861386139,1630.15940594059,20,40,10,32,5306209.85486258,396677.784031581,2,2,5306206.36574506,396680.626726094,178.889370053029,0,0,85.0391683168316,23420.8285938954,23.9407722772277,25.6779697793642,25.2399221881889,-4.36544554455446,-4.3508053356246,-3.50183358960538,3.2047919016359,2.54256759457076,2.3774810283406
+42763,2874.04566465347,457.037025742574,225,85.0297425742574,87.5806348514851,21.6428542353465,-3.53178217821782,1839.21782178218,1734.90693069307,1628.60198019802,20,40,10,32,5306195.639256,396658.928488167,2,2,5306191.46098706,396662.33265616,202.486505592032,0,0,85.0297425742573,23444.4510583894,21.6428542353465,23.2133095189679,23.2854438957947,-3.53178217821782,-3.51714196928797,-2.76291293442967,2.67148412288137,2.11946022354251,2.19136944501699
+42764,2874.03773633663,457.022174257426,225,85.040702970297,87.5919240594059,22.5576435643564,-4.30554455445545,1839.18316831683,1726.44257425742,1641.7396039604,20,40,10,32,5306181.28462432,396640.166339862,2,2,5306176.54649754,396644.026641769,226.099048034908,0,0,85.0407029702969,23468.071259407,22.5576435643564,24.1944780657797,24.063732551848,-4.30554455445545,-4.29090434552559,-3.40761790927479,3.03169726243136,2.40524048131553,2.36906677787851
+42765,2874.02979673267,457.007348712871,225,85.0251683168316,87.5759233663367,23.8518316831683,-4.00039603960396,1842.5099009901,1640.43762376238,1680.36435643564,20,40,10,32,5306166.90856607,396621.436035425,1.56435643564356,2,5306161.63904681,396625.729095468,140.203588260413,0,0,85.0251683168315,23491.6890921353,23.8518316831683,25.5825754512293,25.1651926815935,-4.00039603960396,-3.98575583067411,-3.20841292652312,2.80823757833174,2.22795553773006,2.26157508147173
+42766,2874.02189336634,456.992506138614,225,85.0081287128713,87.5583725742574,21.6697920791089,-3.55990099009901,1838.88613861386,1660.5198019802,1710.29702970297,20,40,10,32,5306152.60007224,396602.685627952,1,2,5306146.74930098,396607.451980933,21.9297216364896,0,0,85.0081287128712,23515.3044081969,21.6697920791089,23.2422020346329,23.3068133498644,-3.55990099009901,-3.54526078116916,-2.81031832363376,2.88434317710994,2.28833500546401,2.24565970572428
+42767,2874.01394980198,456.977693465346,225,85.0147722772277,87.5652154455446,22.5966732673267,-3.20891089108911,1842.4504950495,1666.14158415842,1680.30693069307,20,40,10,32,5306138.21651018,396583.971038019,1,2,5306131.84739435,396589.159662364,45.5236984051738,0,0,85.0147722772276,23538.9193407327,22.5966732673267,24.236339853769,24.0964766932679,-3.20891089108911,-3.19427068215925,-2.54311163665075,2.53951529115459,2.01476085917174,2.01460140693693
+42768,2874.00599326733,456.962892871287,225,85.0190099009901,87.5695801980199,22.2818811881188,-3.3619801980198,1839.4900990099,1635.10891089109,1684.32871287129,20,40,10,32,5306123.80871261,396565.270970167,1,2,5306116.9429309,396570.864205254,69.1217233588694,0,0,85.01900990099,23562.5356010187,22.2818811881188,23.8987057372467,23.8279862266713,-3.3619801980198,-3.34733998908995,-2.65102733547193,2.22126572131355,1.76227300095827,1.77642019634163
+42769,2873.9980439604,456.948086435643,225,85.030801980198,87.581726039604,21.5582535757426,-1.74188118811881,1842.28217821782,1636.75544554455,1724.13366336634,20,40,10,32,5306109.41449328,396546.563772465,1,2,5306102.04039271,396552.571111434,92.7167000687204,0,0,85.0308019801979,23586.1541155402,21.5582535757426,23.1225700409148,23.2152295656023,-1.74188118811881,-1.72724097918895,-1.37475527880501,2.66274270539548,2.11252509467536,2.19129895363433
+42770,2873.9901060396,456.933262475248,225,85.0466138613861,87.5980122772277,23.3893366336634,-3.15138613861386,1843.51485148515,1591.3801980198,1682.43762376238,20,40,10,32,5306095.04181604,396527.835030256,1,2,5306087.13589819,396534.27561619,116.314774209131,0,0,85.046613861386,23609.7743360848,23.3893366336634,25.0865206971565,24.7727035542433,-3.15138613861386,-3.13674592968401,-2.51207063210332,2.52881437478016,2.00627113377274,1.95123143037637
+42771,2873.98219158416,456.918408118812,225,85.0109306930693,87.5612586138614,21.1012673267327,-1.64861386138614,1841.62871287129,1562.64752475248,1684.49801980198,20,40,10,32,5306080.71334351,396509.06911201,1,2,5306072.23083344,396515.979420977,139.913751188447,0,0,85.0109306930692,23633.3963494511,21.1012673267327,22.6324238185716,22.8242289956056,-1.64861386138614,-1.63397365245628,-1.29069150396197,2.6011540295054,2.06366283580898,2.09380890199314
+42772,2873.97430940594,456.903527623762,225,85.0102772277228,87.5605855445544,19.2978608360396,-1.8939603960396,1839.18316831683,1611.04059405941,1716.92475247525,20,40,10,32,5306066.44530354,396490.271613836,1,2,5306057.33441229,396497.693835915,163.499042879343,0,0,85.0102772277227,23657.010798736,19.2978608360396,20.6981580049339,21.2899643833666,-1.8939603960396,-1.87932018710975,-1.46056249447895,3.53341855054012,2.80328825721027,2.67306974869396
+42773,2873.96645683168,456.888611485149,225,85.036099009901,87.5871819801981,19.9231237623762,-2.72663366336634,1841.33168316832,1583.13267326733,1691.99603960396,20,40,10,32,5306052.23295706,396471.430607506,1,2,5306042.43890328,396479.409370526,187.082890384488,0,0,85.0360990099008,23680.6303348746,19.9231237623762,21.3687914473605,21.8232420884713,-2.72663366336634,-2.71199345443648,-2.10878521363938,3.14911272752663,2.49839372365252,2.74266685359001
+42774,2873.95863237624,456.873657029703,225,85.0248118811881,87.5755562376237,19.2378844884158,-3.28514851485148,1839.82673267327,1600.15247524752,1657.37425742574,20,40,10,32,5306038.07361325,396452.542713905,1,2,5306027.54157834,396461.122676047,210.669613034829,0,0,85.024811881188,23704.2465910078,19.2378844884158,20.6338296355762,21.2391085124374,-3.28514851485148,-3.27050830592163,-2.51509994482492,3.54009124190697,2.80858213255652,2.66391749071402
+42775,2873.95083138614,456.85868980198,225,85.0171188118812,87.5676323762376,19.4031633666337,-1.83178217821782,1841.90594059406,1618.56633663366,1721.87524752475,20,40,10,32,5306023.95808162,396433.639597881,1,2,5306012.65427673,396442.848285365,234.240465882263,0,0,85.017118811881,23727.8599323719,19.4031633666337,20.8111015293522,21.3807161190004,-1.83178217821782,-1.81714196928797,-1.40953148543854,3.31416608792133,2.62934117309544,2.6481200419645
+42776,2873.94305178218,456.843695643564,225,85.029198019802,87.580073960396,19.7621430145545,-2.14257425742574,1841.47524752475,1573.91683168317,1676.72079207921,20,40,10,32,5306009.88282756,396414.703554189,0.188118811881188,0.376237623762376,998159.144009643,74576.3293262674,46.6811636727511,0,0,85.0291980198018,23751.47613823,19.7621430145545,21.1961295662082,21.6865005300022,-2.14257425742574,-2.12793404849589,-1.64880887407386,3.32630198575884,2.63896936160806,2.65730405923805
+42777,2873.9352860396,456.828677623762,225,85.0065643564356,87.5567612871287,18.8140770079208,-2.72732673267327,1839.56435643564,1607.86435643564,1670.06732673267,20,40,10,32,5305995.83384428,396395.738156004,0,0,0,0,0,0,0,85.0065643564355,23775.0943027239,18.8140770079208,20.1792697095051,20.87792229344,-2.72732673267327,-2.71268652374341,-2.08576805430473,3.84490192543166,3.05040805766986,3.0341785801883
+42778,2873.92753188119,456.813648217822,225,85.0192277227723,87.5698045544554,19.3047772277228,-3.35980198019802,1837.33663366337,1617.29306930693,1693.49801980198,20,40,10,32,5305981.80663482,396376.758867416,0,0,0,0,0,0,0,85.0192277227722,23798.7093482135,19.3047772277228,20.7055762659059,21.2955899147456,-3.35980198019802,-3.34516177126817,-2.57838641479409,3.48781018528945,2.76710420686101,2.80233914082111
+42779,2873.91978920792,456.798600990099,225,85.0193168316832,87.5698963366337,21.6770198019802,-3.50425742574257,1840.72277227723,1587.21584158416,1643.15148514852,20,40,10,32,5305967.80115989,396357.757668639,0,0,0,0,0,0,0,85.019316831683,23822.3275759637,21.6770198019802,23.2499542177,23.3152839709177,-3.50425742574257,-3.48961721681272,-2.75523265987071,2.75735278996702,2.18758536146785,2.25042431844899
+42780,2873.91205811881,456.783538316831,225,84.9972277227723,87.5471445544554,24.6388118811881,-4.51584158415842,1841.22277227723,1603.68910891089,1661.61881188119,20,40,10,32,5305953.81754995,396338.737522977,0,0,0,0,0,0,0,84.9972277227721,23845.9393791816,24.6388118811881,26.4266607425352,25.8311527310506,-4.51584158415842,-4.50120137522856,-3.64427888632823,3.56254486672658,2.82639603767087,2.65860387843281
+42781,2873.90434118812,456.768462475247,225,84.9911584158416,87.5408931683168,24.4136732673267,-5.04287128712871,1837.96534653465,1633.24257425743,1679.93861386139,20,40,10,32,5305939.86052261,396319.701352856,0,0,0,0,0,0,0,84.9911584158415,23869.5513247811,24.4136732673267,26.1851855530151,25.6382251058911,-5.04287128712871,-5.02823107819886,-4.06497027645245,3.45784199207304,2.74332851119072,2.80478508573369
+42782,2873.89662326733,456.753378019802,225,84.9948811881188,87.5447276237623,24.6813465346535,-4.93465346534654,1841.18811881188,1659.62475247525,1630.92574257426,20,40,10,32,5305925.90191582,396300.654327423,0,0,0,0,0,0,0,84.9948811881187,23893.1618750287,24.6813465346535,26.4722818082891,25.8657759446116,-4.93465346534654,-4.92001325641668,-3.98463410018398,3.67940140205187,2.9191058450628,2.9203947544511
+42783,2873.88887881188,456.738332475247,225,84.9900693069307,87.5397713861386,24.1395742574257,-5.35465346534653,1840.10891089109,1713.00693069307,1654.78811881188,20,40,10,32,5305911.89334836,396281.654796199,0,0,0,0,0,0,0,84.9900693069306,23916.7711221134,24.1395742574257,25.8911972885059,25.4038099203853,-5.35465346534653,-5.34001325641668,-4.30784135273945,3.30357556534636,2.62093903019969,2.53870422124941
+42784,2873.88110613861,456.723341782178,225,84.9826237623763,87.5321024752475,20.2848729373267,-3.61118811881188,1837.68811881188,1765.10891089109,1634.13366336634,20,40,10,32,5305897.83134501,396262.722559712,0,0,0,0,0,0,0,84.9826237623761,23940.3767224984,20.2848729373267,21.7567899744976,22.1264811792804,-3.61118811881188,-3.59654790988203,-2.79617395765734,2.92675736869823,2.32198491235103,2.34635320290749
+42785,2873.87330108911,456.708404653465,225,85.0195544554455,87.5701410891089,20.1770913093069,-2.27732673267327,1840.30693069307,1733.76534653465,1673.36930693069,20,40,10,32,5305883.70823113,396243.855876136,0,0,0,0,0,0,0,85.0195544554454,23963.9868710957,20.1770913093069,21.6411874636423,22.0400322385435,-2.27732673267327,-2.26268652374341,-1.75419459611618,2.8195002587793,2.23689094670914,2.23302615855779
+42786,2873.86546871287,456.693489306931,225,85.0551485148515,87.606802970297,21.5714383938614,-2.79306930693069,1840.62871287129,1655.45940594059,1690.10891089109,20,40,10,32,5305869.53407144,396225.01532329,0,0,0,0,0,0,0,85.0551485148514,23987.6076712057,21.5714383938614,23.1367115797624,23.2265576000347,-2.79306930693069,-2.77842909800084,-2.18756541900921,2.4135536490531,1.91482738480085,2.01050703379571
+42787,2873.85760514851,456.678593168317,225,85.064603960396,87.6165420792079,20.4909350934654,-1.55970297029703,1840.75247524752,1580.42475247525,1592.48316831683,20,40,9.86138613861386,32,5305855.30177075,396206.197565564,0,0,0,0,0,0,0,85.0646039603959,24011.2357357272,20.4909350934654,21.9778044746452,22.3071644237273,-1.55970297029703,-1.54506276136717,-1.20883058359431,2.77709687053409,2.20324961080922,2.26058570280209
+42788,2873.84972821782,456.663726732673,225,84.905495049505,87.4526599009901,20.6262315732673,-1.51792079207921,1830.5198019802,815.654455445545,829.368316831683,20,40,9.98019801980198,32,5305841.0441057,396187.41626995,0,0,0,0,0,0,0,84.9054950495049,24034.8488713433,20.6262315732673,22.1229183782144,22.4160577528745,-1.51792079207921,-1.50328058314935,-1.18813304427399,3.02175477154885,2.39735246365227,2.34258574080548
+42789,2873.84186118812,456.648971881188,225,84.0389009900991,86.560068019802,19.7087106709901,-1.26415841584158,1811.30198019802,-74.829702970297,3.40099009900992,20,40,10,32,5305826.80233974,396168.774210248,0,0,0,0,0,0,0,84.0389009900989,24058.3241038515,19.7087106709901,21.1388200488961,21.5840858244733,-1.26415841584158,-1.24951820691173,-0.973730612972185,2.97546784985159,2.36063007081927,2.29430883643904
+42790,2873.83401990099,456.634428118811,225,82.8154455445545,85.2999089108911,20.5479884488119,-1.91792079207921,1780.67326732673,-1066.77128712871,-834.021782178218,20,40,10,32,5305812.60358504,396150.395867955,0,0,0,0,0,0,0,82.8154455445544,24081.5117179605,20.5479884488119,22.038997752683,22.2267645032616,-1.91792079207921,-1.90328058314935,-1.47260123604757,2.82221336816228,2.23904343092947,2.37235385947951
+42791,2873.82638772277,456.620123168317,225,80.5875049504951,83.0051300990099,18.2857447745545,-3.39435643564356,1723.97524752475,-3505.34455445545,-2687.95148514851,20,40,10,32,5305798.78687486,396132.321893021,0,0,0,0,0,0,0,80.5875049504949,24104.2395663653,18.2857447745545,19.6126004740791,20.1743472414484,-3.39435643564356,-3.37971622671371,-2.61657154770732,3.31886277021405,2.63306735331743,2.51331884694008
+42792,2873.81910148515,456.606219108911,225,77.7271089108911,80.0589221782178,21.1870445544554,-3.89544554455446,1665.16831683168,-3502.6900990099,-2706.3,20,40,10,32,5305785.60203104,396114.758755067,0,0,0,0,0,0,0,77.727108910891,24126.2226934005,21.1870445544554,22.7244252392324,22.4780983858997,-3.89544554455446,-3.8808053356246,-3.097131876819,3.17595309151209,2.51968791116624,2.42128023478779
+42793,2873.81212564356,456.592771287129,225,74.9163366336633,77.1638267326733,19.7979702970297,-1.70287128712871,1603.80693069307,-3490.61287128713,-2775.15742574257,20,40,10,32,5305772.98196701,396097.77422279,0,0,0,0,0,0,0,74.9163366336632,24147.4178128999,19.7979702970297,21.2345565587054,21.1371585389695,-1.70287128712871,-1.68823107819886,-1.34860656198883,2.16864362385032,1.72052450561914,1.81934514210607
+42794,2873.80539722772,456.579818613861,225,72.0710891089109,74.2332217821782,18.6570792079208,-3.17277227722772,1537.98514851485,-3524.01683168317,-2837.72079207921,20,40,10,32,5305760.80916233,396081.41467588,0,0,0,0,0,0,0,72.0710891089108,24167.829883527,18.6570792079208,20.0108797880296,20.0025850832924,-3.17277227722772,-3.15813206829787,-2.50939596061947,1.80224329808782,1.42983555497358,1.39537945317367
+42795,2873.79891653465,456.567374059406,225,69.2377227722772,71.3148544554456,18.4024158415842,-3.61851485148515,1476.65346534653,-3510.90396039604,-2831.12475247525,20,40,10,32,5305749.083871,396065.696289157,0,0,0,0,0,0,0,69.2377227722771,24187.4513675479,18.4024158415842,19.7377374620853,19.6230353769123,-3.61851485148515,-3.6038746425553,-2.87170608964428,1.80378254650257,1.43105673976793,1.4230238158474
+42796,2873.79265039604,456.55544980198,225,66.4035544554455,68.3956610891089,17.9009702970297,-4.18653465346535,1418.60396039604,-3582.91584158416,-2886.03663366337,20,40,10,32,5305737.74437551,396050.633134017,0,0,0,0,0,0,0,66.4035544554454,24206.2878705457,17.9009702970297,19.1999058754529,19.0333073260566,-4.18653465346535,-4.17189444453549,-3.33462127961746,1.89765006619594,1.50552788206996,1.50048559955536
+42797,2873.78669178218,456.544007425743,225,63.4414851485148,65.3447297029703,17.3504059405941,-4.4950495049505,1503.77227722772,-4110.30099009901,-3305.65247524752,20,40,10,32,5305726.96374578,396036.180464895,0,0,0,0,0,0,0,63.4414851485148,24224.323353549,17.3504059405941,18.609391302972,18.3953639817917,-4.4950495049505,-4.48040929602064,-3.59170200294803,1.93195160730734,1.53274150140953,1.59164569940736
+42798,2873.78099,456.533128415842,225,60.2321287128713,62.0390925742575,17.0065841584158,-4.5960396039604,1496.52475247525,-4331.7603960396,-3339.08217821782,20,40,10,32,5305716.64624746,396022.438104434,0,0,0,0,0,0,0,60.2321287128712,24241.499558857,17.0065841584158,18.2406210214612,17.9185877659037,-4.5960396039604,-4.58139939503054,-3.69034535408248,2.23463971838783,1.77288345324805,1.71332682794855
+42799,2873.77558831683,456.52281970297,225,57.0599306930693,58.7717286138614,15.5910594059406,-5.29326732673267,1426.75247524752,-4312.62871287128,-3283.04455445545,20,40,10,32,5305706.87186593,396009.416137597,0,0,0,0,0,0,0,57.0599306930692,24257.7833044291,15.5910594059406,16.7223825371257,16.5317110303049,-5.29326732673267,-5.27862711780282,-4.22780379260537,1.81967458320141,1.44366491488894,1.46162990319082
+42800,2873.77049871287,456.513058217822,225,53.8972871287129,55.5142057425743,13.7051089108911,-2.63752475247525,1347.29207920792,-4227.77524752475,-3292.65445544554,20,40,10,32,5305697.66330573,395997.086233914,0,0,0,0,0,0,0,53.8972871287128,24273.186893153,13.7051089108911,14.6995831363176,14.7481822387436,-2.63752475247525,-2.62288454354539,-2.06980081898418,1.49658451095389,1.18733677470463,1.22706712222319
+42801,2873.76571524752,456.503846138614,225,50.7979702970297,52.3219094059406,13.9609405940594,-3.45009900990099,1268.80198019802,-4194.99603960396,-3202.91584158416,20,40,10,32,5305689.00950956,395985.4509154,0,0,0,0,0,0,0,50.7979702970296,24287.7223217284,13.9609405940594,14.9739785548501,14.7883289320231,-3.45009900990099,-3.43545880097114,-2.7605299369888,1.53050581773308,1.21424872968624,1.20095294540832
+42802,2873.7611890099,456.495195940594,225,47.647603960396,49.0770320792079,13.0641188118812,-1.12,1232.52475247525,-4818.40693069307,-3662.97920792079,20,40,10,32,5305680.81959345,395974.52409611,0,0,0,0,0,0,0,47.6476039603959,24301.3964508538,13.0641188118812,14.0120813213948,13.8458239283842,-1.12,-1.10535979107014,-0.892014937701832,1.37471595606045,1.09065060974301,1.1398637157685
+42803,2873.75696257426,456.487141782178,225,43.8916732673267,45.2084234653465,12.9728613861386,-2.5370297029703,1499.42574257426,-6080.85643564356,-4688.93069306931,20,40,10,32,5305673.17164846,395964.349755212,0,0,0,0,0,0,0,43.8916732673267,24314.1244345997,12.9728613861386,13.9142020469409,13.5519714573868,-2.5370297029703,-2.52238949404044,-2.04411883047497,2.0764016122862,1.64734298349246,1.55708632742971
+42804,2873.75310069307,456.479797227723,225,39.7828415841584,40.9763268316832,11.1452475247525,-2.0239603960396,1374.24752475248,-6083.27128712872,-4660.70297029703,20,40,10,32,5305666.18306391,395955.071530536,0,0,0,0,0,0,0,39.7828415841584,24325.733322856,11.1452475247525,11.9539723201138,11.7622530302667,-2.0239603960396,-2.00932018710975,-1.60831030482729,1.40025015437846,1.11090853200111,1.13951413228374
+42805,2873.74960356436,456.473161485149,225,35.6047821782178,36.6729256435644,7.86087128712871,-2.77752475247525,1268.9900990099,-6583.2099009901,-5115.33861386139,20,40,10,32,5305659.85422016,395946.688448412,0,0,0,0,0,0,0,35.6047821782178,24336.2145950507,7.86087128712871,8.43127418835867,8.72783012410807,-2.77752475247525,-2.76288454354539,-2.07907360245679,1.94210483281909,1.5407967084117,1.32403999202786
+42806,2873.74654158416,456.467178019802,225,32.4732277227723,33.4474245544555,6.81279537954455,-2.38316831683168,1579.57920792079,-1269.90495049505,-861.79702970297,20,40,10,32,5305654.31678088,395939.132439325,0,0,0,0,0,0,0,32.4732277227722,24345.5925528615,6.81279537954455,7.30714748226137,7.65678899216157,-2.38316831683168,-2.36852810790183,-1.696711333298,2.11334845400105,1.67665528998511,1.62239035661157
+42807,2873.74366267327,456.461520594059,225,31.1050099009901,32.0381601980198,8.12188118811881,-2.37138613861386,1549.53465346535,-482.324752475248,-281.880198019802,20,40,10,32,5305649.11113434,395931.988686293,0,0,0,0,0,0,0,31.1050099009901,24354.43341257,8.12188118811881,8.71122356810837,8.69222228411145,-2.37138613861386,-2.35674592968401,-1.88176052746125,1.13336669253814,0.899172711882586,1.18646877260087
+42808,2873.74087396039,456.456117524752,225,29.9838811881188,30.8833976237624,7.4060297029703,-1.59574257425743,1508.78217821782,-195.608910891089,-32.739603960396,20,40,10,32,5305644.06685996,395925.164791826,0,0,0,0,0,0,0,29.9838811881188,24362.8921318219,7.4060297029703,7.94342825268151,8.01866080253895,-1.59574257425743,-1.58110236532757,-1.19691772028041,1.23310666308559,0.97830284724893,0.982029751190437
+42809,2873.73819069307,456.450815643564,225,29.6986930693069,30.5896538613861,6.50619801980198,-1.38722772277228,1494.5396039604,1898.1702970297,1912.69603960396,20,40,10,32,5305639.21564144,395918.47046077,0,0,0,0,0,0,0,29.6986930693069,24371.1491660628,6.50619801980198,6.97830271289729,7.23759853134823,-1.38722772277228,-1.37258751384242,-1.0348275743526,2.33009022548662,1.84861048129965,1.67300462749376
+42810,2873.73554168317,456.445444455446,225,30.1445148514851,31.0488502970297,6.73351485148515,0.466336633663366,1323.4504950495,2139.85742574257,2184.59108910891,20,40,10,32,5305634.42944423,395911.690925298,0,0,0,0,0,0,0,30.1445148514851,24379.4636036591,6.73351485148515,7.22211417673438,7.45666380890758,0.466336633663366,0.480976842593224,0.367503501202194,1.4759492266247,1.17096547608354,1.3262958679784
+42811,2873.73285732673,456.439964554456,225,30.7909603960396,31.7146892079208,10.0242574257426,-4.47207920792079,1046.29702970297,2055.59702970297,2189.18118811881,20,40,9.97029702970297,32,5305629.5802237,395904.774770759,0,0,0,0,0,0,0,30.7909603960396,24387.9257633951,10.0242574257426,10.7516406011524,10.292454157422,-4.47207920792079,-4.45743899899094,-3.65847427185305,2.4310755678798,1.9287286502717,1.87470900404641
+42812,2873.73014722772,456.434353168317,225,31.0990495049505,32.032020990099,10.8224356435644,-4.5839603960396,805.589108910891,1091.60198019802,1181.36633663366,20,40,10.0594059405941,32,5305624.68628187,395897.693949361,0,0,0,0,0,0,0,31.0990495049504,24396.5378184005,10.8224356435644,11.6077364663334,10.988917990429,-4.5839603960396,-4.56932018710975,-3.81323753499212,3.09897424423258,2.45861563921611,2.53008795744132
+42813,2873.72751742574,456.428691089109,225,30.6657821782178,31.5857556435643,11.2025148514851,-5.29851485148515,778.80198019802,478.430693069307,544.850495049505,20,40,11,32,5305619.94222535,395890.552649161,0,0,0,0,0,0,0,30.6657821782178,24405.1268073719,11.2025148514851,12.0153950957936,11.2868506877707,-5.29851485148515,-5.2838746425553,-4.43912356817436,3.62301014178452,2.87436703038357,2.88340318853568
+42814,2873.72511821782,456.422946237624,225,30.24,31.1472,11.0295544554455,-5.5,772.445544554455,12.5821782178217,111.635643564356,20,40,11,32,5305615.62717693,395883.315931011,0,0,0,0,0,0,0,30.24,24413.5853341046,11.0295544554455,11.8298842955946,11.1149754167949,-5.5,-5.48535979107015,-4.60620442196026,3.56267765405338,2.82650138640004,2.73708953627814
+42815,2873.72314405941,456.417064752475,225,28.6983762376238,29.5593275247525,9.16864356435644,-5.5,945.574257425743,-753.613861386139,-456.948514851485,20,40,11,32,5305612.10254551,395875.923198089,0,0,0,0,0,0,0,28.6983762376237,24421.7911905128,9.16864356435644,9.83394143000341,9.44345903447891,-5.5,-5.48535979107015,-4.51211163509298,2.06050021308844,1.63472738049873,1.76030847492259
+42816,2873.72154346535,456.411277128713,221.435643564356,26.9090099009901,27.7162801980198,8.74569306930693,-5.5,940.20297029703,-1895.06930693069,-1518.32376237624,20,40,11,32,5305609.26778273,395868.659867686,0,0,0,0,0,0,0,26.9090099009901,24429.5284866074,8.74569306930693,9.38030067421297,8.98119118482904,-5.5,-5.48535979107015,-4.51962483675861,2.13752779794619,1.6958383191052,1.71671760827639
+42817,2873.72012326733,456.405972772277,219.653465346535,23.7984158415842,24.5123683168317,8.81666336633664,-5.5,986.638613861386,-4442.43564356436,-3469.1099009901,20,40,11.5643564356436,32,5305606.75632091,395862.004582309,0,0,0,0,0,0,0,23.7984158415841,24436.5953313819,8.81666336633664,9.45642073923254,8.86351499086244,-5.5,-5.48535979107015,-4.61637599819658,2.94713439849354,2.33815132103569,2.24398103576128
+42818,2873.71870455445,456.401457227723,225,20.924198019802,21.551923960396,7.46022772277228,-5.5,1078.91584158416,-2529.2099009901,-2709.95940594059,20,40,12,32,5305604.22988521,395856.331991037,0,0,0,0,0,0,0,20.924198019802,24442.7669202158,7.46022772277228,8.00155900546013,7.5449262842102,-5.5,-5.48535979107015,-4.58874849673018,2.28942376991466,1.81634716583428,1.8514890084921
+42819,2873.71706841584,456.397723168317,225,19.2451485148515,19.822502970297,7.01654455445544,-5.5,1214.74752475248,-1412.69702970297,-2110.60495049505,20,40,12,32,5305601.28313959,395851.625650328,0,0,0,0,0,0,0,19.2451485148515,24448.3373880926,7.01654455445544,7.52568116594327,7.07132861325164,-5.5,-5.48535979107015,-4.60565129091472,2.26568868677263,1.79751659739065,1.77704409373418
+42820,2873.7151080198,456.39489990099,225,18.0188316831683,18.5593966336634,7.34740594059406,-5.5,1128.38118811881,-395.177227722772,-751.440594059406,20,40,12,32,5305597.71528581,395848.043071845,0,0,0,0,0,0,0,18.0188316831683,24453.4844360849,7.34740594059406,7.88055061526789,7.2826492311785,-5.5,-5.48535979107015,-4.67731290684424,2.93949348032745,2.33208928907912,2.31015085754848
+42821,2873.7127890099,456.393131287129,225,17.4263861386139,17.9491777227723,7.34480198019802,-5.5,1035.84158415842,-215.849504950495,-471.924752475248,20,40,12,32,5305593.45944763,395845.762321621,0,0,0,0,0,0,0,17.4263861386138,24458.4111104523,7.34480198019802,7.8777577055162,7.24652641516188,-5.5,-5.48535979107015,-4.69977921844373,3.09481995971824,2.45531977804666,2.47866623668979
+42822,2873.71034891089,456.392736930693,225,16.0486831683168,16.5301436633663,7.05166336633663,-5.5,907.143564356436,-696.976237623762,-899.272277227723,20,40,11.8316831683168,32,5305588.94841525,395845.189485135,0,0,0,0,0,0,0,16.0486831683168,24463.0842343247,7.05166336633663,7.56334827959065,6.9182705546225,-5.5,-5.48535979107015,-4.72569408895087,3.15548354656632,2.50344810426079,2.51269346141694
+42823,2873.70821861386,456.393523762376,225,14.4397326732673,14.8729246534654,6.79573267326733,-5.5,758.960396039604,53.6584158415842,-211.006930693069,20,40,11.9009900990099,32,5305584.98468656,395846.098456744,0,0,0,0,0,0,0,14.4397326732673,24467.2988787417,6.79573267326733,7.28884666677107,6.60844169703822,-5.5,-5.48535979107015,-4.76604758547432,3.31884445873169,2.63305282564041,2.60971408313727
+42824,2873.70655960396,456.395194851486,217.871287128713,13.2177623762376,13.6142952475248,5.93375247524752,-5.38158415841584,603.985148514852,562.638613861386,355.416831683168,20,40,11.8811881188119,32,5305581.87406348,395848.124739024,0,0,0,0,0,0,0,13.2177623762376,24471.1329037417,5.93375247524752,6.3643192029592,5.80519295891587,-5.38158415841584,-5.36694394948599,-4.63372926416657,2.73181059077102,2.16732109159851,2.18337448206056
+42825,2873.7053219802,456.397281485149,194.70297029703,11.8910396039604,12.2477707920792,5.15050495049505,-3.24683168316832,603.940594059406,842.841584158416,640.219801980198,20,40,11.990099009901,32,5305579.53465055,395850.682770233,0,0,0,0,0,0,0,11.8910396039604,24474.6237346823,5.15050495049505,5.52423743627841,5.063387883829,-3.24683168316832,-3.23219147423846,-2.77043398895125,2.24999635468046,1.78506686078203,1.76537148795785
+42826,2873.70441019802,456.39953940594,166.188118811881,11.8190693069307,12.1736413861386,4.24787128712871,2.80217821782178,1030.89108910891,4739.70198019802,4129.12475247525,20,40,12,32,5305577.7949583,395853.465074803,0,0,0,0,0,0,0,11.8190693069307,24477.8629182081,4.24787128712871,4.55610659816822,4.29133717873536,2.80217821782178,2.81681842675164,2.29910125727929,1.51232680111214,1.1998261462611,1.2209024134716
+42827,2873.70375752475,456.40219970297,135.891089108911,13.6948712871287,14.1057174257426,3.11886138613861,5.5,1063.70297029703,5890.77227722772,4984.44158415841,20,40,12,32,5305576.52618048,395856.757298567,0,0,0,0,0,0,0,13.6948712871287,24481.3873863324,3.11886138613861,3.34517314194875,3.43755371106038,5.5,5.51464020892985,4.18878589943478,1.09662443450978,0.870022714790242,0.844410123999808
+42828,2873.70346633664,456.405371782178,61.039603960396,15.1197722772277,15.5733654455446,3.97594059405941,5.5,844.153465346535,3562.41188118812,3047.71782178218,20,40,11.6930693069307,32,5305575.91549442,395860.699154331,0,0,0,0,0,0,0,15.1197722772277,24485.4273603698,3.97594059405941,4.26444398854735,4.24827620334883,5.5,5.51464020892985,4.31484638108999,1.17911553700081,0.935468213428409,0.97196416818088
+42829,2873.70371782178,456.408694059406,45,15.7418514851485,16.214107029703,4.96507920792079,5.5,798.509900990099,3110.76633663366,2685.54752475248,20,40,11.8712871287129,32,5305576.30665148,395864.846256654,0,0,0,0,0,0,0,15.7418514851485,24489.7155851223,4.96507920792079,5.32535677532885,5.12536547691632,5.5,5.51464020892985,4.52690829738145,1.07029602112771,0.849134690626316,0.78882466274386
+42830,2873.70448613861,456.411982079208,45,16.2273069306931,16.7141261386139,3.82240594059406,5.5,992.970297029703,3235.94554455446,2838.19306930693,20,40,11.8712871287129,32,5305577.65593063,395868.967956031,0,0,0,0,0,0,0,16.227306930693,24494.1540687031,3.82240594059406,4.09976850748451,4.18102610919397,5.5,5.51464020892985,4.29098293058137,0.683208168536993,0.542032994024193,0.581987200251796
+42831,2873.70574584159,456.415085841584,45,16.8729207920792,17.3791084158416,3.71726732673267,5.5,973.074257425743,3471.35445544554,3024.29108910891,20,40,12,32,5305579.91956938,395872.876539063,0,0,0,0,0,0,0,16.8729207920792,24498.7556361674,3.71726732673267,3.98700079397408,4.1285529336476,5.5,5.51464020892985,4.23513729012118,0.834115312854422,0.661757340161879,0.682526054281924
+42832,2873.70731247525,456.418093168317,45,17.4270198019802,17.9498303960396,3.41393069306931,5.5,828.410891089109,2949.07227722772,2590.53267326733,20,40,12,32,5305582.75391886,395876.675242824,0,0,0,0,0,0,0,17.4270198019802,24503.526022636,3.41393069306931,3.66165335647346,3.90224641270944,5.5,5.51464020892985,4.12763060619253,1.25378388345025,0.994707416424895,0.953019758889643
+42833,2873.70904257426,456.421031386139,45,17.9379603960396,18.4760992079208,3.63218811881188,5.5,881.09900990099,3022.94356435644,2660.44455445545,20,40,11.2772277227723,32,5305585.89261775,395880.393313969,0,0,0,0,0,0,0,17.9379603960396,24508.4283606723,3.63218811881188,3.89574804303754,4.11717353987667,5.5,5.51464020892985,4.15907707628038,1.17354775596434,0.931050934531213,1.0083204580325
+42834,2873.71091346535,456.424005544554,45,18.7560396039604,19.3187207920792,3.39551485148515,5.5,933.579207920792,2989.00792079208,2631.60198019802,20,40,11.3168316831683,32,5305589.29130641,395884.160858525,0,0,0,0,0,0,0,18.7560396039604,24513.5265048693,3.39551485148515,3.64190121906604,3.96270435010499,5.5,5.51464020892985,4.05421221796761,1.62541265973369,1.28954443323898,1.24146789116408
+42835,2873.7128629703,456.427202871287,45,19.6471188118812,20.2365323762376,3.76079207920792,5.5,983.084158415842,2799.73564356436,2446.67227722772,20,40,11.1980198019802,32,5305592.830602,395888.20903473,0,0,0,0,0,0,0,19.6471188118812,24518.854801569,3.76079207920792,4.03368380259936,4.32446632416387,5.5,5.51464020892985,4.1057328811091,1.49972723392095,1.18983009902022,1.20262184873165
+42836,2873.71482158416,456.430652673267,45,20.5631089108911,21.1800021782178,3.94450495049505,5.5,843.742574257426,2781.1297029703,2638.37425742574,20,40,11.960396039604,32,5305596.38109955,395892.572027986,0,0,0,0,0,0,0,20.5631089108911,24524.440281877,3.94450495049505,4.23072730238146,4.53320658137949,5.5,5.51464020892985,4.10862654167723,1.55999474116879,1.23764418980586,1.22788309624366
+42837,2873.71680128713,456.434311584158,45,21.5304851485149,22.1763997029703,4.07031683168317,5.5,761.361386138614,2376.87623762376,2695.72178217822,20,40,12,32,5305599.96596568,395897.196214974,0,0,0,0,0,0,0,21.5304851485148,24530.2899979386,4.07031683168317,4.36566838304603,4.69563748029602,5.5,5.51464020892985,4.09620130980107,1.6931514971391,1.34328601090365,1.30656769596464
+42838,2873.71879049505,456.43817950495,45,22.489198019802,23.163873960396,4.55615841584158,5.5,792.70297029703,2175.11287128713,2594.58316831683,20,40,11.0891089108911,32,5305603.56374542,395902.081084711,0,0,0,0,0,0,0,22.4891980198019,24536.4050811069,4.55615841584158,4.88676375002568,5.16383529169638,5.5,5.51464020892985,4.15938024256133,1.46963031882179,1.16595227999908,1.17718989310413
+42839,2873.7208239604,456.442213663366,45,23.1229504950495,23.816639009901,4.85706930693069,5.47227722772277,809.5,1143.84851485149,1291.28712871287,20,40,10.9306930693069,32,5305607.23977394,395907.174514862,0,0,0,0,0,0,0,23.1229504950495,24542.7569558869,4.85706930693069,5.20950942749145,5.45613910659205,5.47227722772277,5.48691743665263,4.17291660249634,1.34149320268883,1.06429286212078,1.10426472143529
+42840,2873.72286910891,456.446360792079,45,22.9157623762376,23.6032352475248,4.61807920792079,5.5,807.024752475248,299.390099009901,405.236633663366,20,40,11,32,5305610.9349099,395912.409059694,0,0,0,0,0,0,0,22.9157623762376,24549.1652091872,4.61807920792079,4.95317765720095,5.24094055497495,5.5,5.51464020892985,4.15461562048228,1.52087645425256,1.20660913613591,1.23470834244495
+42841,2873.72478633663,456.450581188119,45,22.4817227722772,23.1561744554456,4.51688118811881,5.5,795.316831683168,296.99702970297,393.573267326732,20,40,11,32,5305614.39145136,395917.730595876,0,0,0,0,0,0,0,22.4817227722772,24555.469846811,4.51688118811881,4.84463647631856,5.13000067259248,5.5,5.51464020892985,4.14750882250531,1.5250930811555,1.20995445753301,1.1819892291497
+42842,2873.7264839604,456.454911584158,45,22.1714653465347,22.8366093069307,4.91068316831683,5.4250495049505,783.29702970297,295.730693069307,412.146534653465,20,40,11,32,5305617.43874473,395923.181820227,0,0,0,0,0,0,0,22.1714653465346,24561.6677445008,4.91068316831683,5.26701363397596,5.44726074991791,5.4250495049505,5.43968971388035,4.18320908065801,1.07315651970458,0.851404108176378,0.836175547906522
+42843,2873.72803029703,456.459318910891,45,21.8119405940594,22.4662988118812,5.16380198019802,5.5,801.90099009901,-390.422772277228,-170.590099009901,20,40,11.5445544554455,32,5305620.20407941,395928.723820205,0,0,0,0,0,0,0,21.8119405940594,24567.7850011564,5.16380198019802,5.53849932904086,5.64197006140244,5.5,5.51464020892985,4.29734654977139,0.850554727097144,0.674799785103759,0.680650327935164
+42844,2873.72957029703,456.463507227723,45,21.1884158415842,21.8240683168317,5.07429702970297,5.5,960.831683168317,-528.846534653466,-401.149504950495,20,40,12,32,5305622.96260136,395933.992775767,0,0,0,0,0,0,0,21.1884158415841,24573.7583936482,5.07429702970297,5.44249969346931,5.53012021431285,5.5,5.51464020892985,4.30782892370031,0.763638694598625,0.605843704814556,0.586869346045622
+42845,2873.73119920792,456.467354752475,45,20.163099009901,20.767991980198,4.81450495049505,5.5,988.10396039604,-1385.91287128713,-1876.00198019802,20,40,12,32,5305625.89347637,395938.840160938,0,0,0,0,0,0,0,20.163099009901,24579.5166697208,4.81450495049505,5.1638565034514,5.25039950436453,5.5,5.51464020892985,4.30210487539237,0.769495101879302,0.610489969479933,0.638653985058145
+42846,2873.73286,456.470754356436,45,18.012099009901,18.552461980198,3.62610891089109,5.5,992.435643564356,-2277.16336633663,-3177.24653465347,20,40,12,32,5305628.89347108,395943.130617904,0,0,0,0,0,0,0,18.012099009901,24584.8411034392,3.62610891089109,3.88922771380734,4.11624874755426,5.5,5.51464020892985,4.15259776536057,1.19953017331135,0.951664457781009,0.93957321059653
+42847,2873.73438475248,456.473617029703,45,15.7490891089109,16.2215617821782,2.98337623762376,5.5,1043.33663366337,-1537.07623762376,-2129.79504950495,20,40,12,32,5305631.65353668,395946.747657044,0,0,0,0,0,0,0,15.7490891089109,24589.5145939782,2.98337623762376,3.19985687943092,3.43988526768855,5.5,5.51464020892985,4.09671379868885,1.23177939728558,0.977249841900664,0.984777913239528
+42848,2873.73571257426,456.47603950495,45,12.1052178217822,12.4683743564356,2.15158415841584,5.5,794.673267326733,-3532.96435643565,-4189.65346534653,20,40,12,32,5305634.05870816,395949.809748871,0,0,0,0,0,0,0,12.1052178217822,24593.4658361399,2.15158415841584,2.30770805376703,2.52361125888329,5.5,5.51464020892985,4.04298817962259,1.09735591330345,0.870603043976656,0.816245326275395
+42849,2873.73657386139,456.477623762376,45,6.9459900990099,7.1543698019802,1.84042574257426,5.5,565.821782178218,-1601.0702970297,-1618.6198019802,20,40,12,32,5305635.61852505,395951.812066618,0,0,0,0,0,0,0,6.94599009900989,24596.0661055844,1.84042574257426,1.97397126758261,1.96344482124153,5.5,5.51464020892985,4.39386993363447,0.356433142186816,0.2827813426802,0.357974451880235
+42850,2873.73706574257,456.478537524753,45,4.57744554455446,4.71476891089109,1.94585148514851,5.5,542.846534653465,651.7,630.79702970297,20,40,12,32,5305636.50913503,395952.966792563,0,0,0,0,0,0,0,4.57744554455445,24597.5637500838,1.94585148514851,2.08704694452574,1.91755607383254,5.5,5.51464020892985,4.72958631092959,0.830973196831223,0.659264497373899,0.660698637757356
+42851,2873.73743326733,456.479211980198,45,2.72839603960396,2.81024792079208,2.43038613861386,5.5,566.084158415842,-1604.17524752475,-1575.93267326733,20,40,12,32,5305637.1747691,395953.819254,0,0,0,0,0,0,0,2.72839603960396,24598.661966723,2.43038613861386,2.60674054691518,2.22407187147423,5.5,5.51464020892985,5.0801546067288,1.85473502666242,1.47148062028614,1.52349114450583
+42852,2873.73754841584,456.479408712871,46.7821782178218,0.313138613861386,0.322532772277228,3.48692079207921,5.5,544.094059405941,988.859405940593,688.517821782178,20,40,12,32,5305637.38364518,395954.068174727,0,0,0,0,0,0,0,0.313138613861386,24599.0141575646,3.48692079207921,3.73993978495061,2.98502686616225,5.5,5.51464020892985,5.47639942935794,3.65337635298871,2.89845849932989,2.79470478189991
+42853,2873.73755,456.47941,45,0.0407352941176471,0.0419573529411765,3.49841176470588,5.5,552.926470588235,1569.31470588235,1266.28235294118,20,40,12,32,5305637.38655067,395954.069831042,0,0,0,0,0,0,0,0.040735294117647,24599.0441821909,3.49841176470588,3.75226456898124,2.97924023646574,5.5,5.51464020892985,5.50969605511949,3.74100178051172,2.96797738833067,3.00331858919323
diff --git a/DemoData/Results/DataDemo_HS_1Hz.csv b/DemoData/Results/DataDemo_HS_1Hz.csv
index c33a1a32832ea1641f56e557b6f93ef125887e3b..f0aa3a7986812efaf0f44d39d5e8a342c0fae20f 100644
--- a/DemoData/Results/DataDemo_HS_1Hz.csv
+++ b/DemoData/Results/DataDemo_HS_1Hz.csv
@@ -1,7 +1,7 @@
-Resultfile Programm VECTO-CSE 2.01 Comp 12.05.2014
-Datafile: ,J:\TE-Em\Projekte\I_2012_08_HDV_CO2_LOT3\Arbeitsordner\CSE\Release_Packages\2.01\Test\WorkingDir\DemoData\DataDemo_HS.csdat
+Resultfile Programm VECTO_CSE 2.0.1-pre2 Comp 04/06/2014
+Datafile: ,d:\Work\vecto-cse.git\CSE\bin\Debug\DemoData\DataDemo_HS.csdat
 
-Time,Lat,Long,Heading,v_veh_GPS,v_veh_CAN,vair_ar,beta_ar,n_eng,tq_l,tq_r,t_amb_veh,t_tire,Satelites,Zone (UTM),Lat (UTM),Long (UTM),Sec_ID,Dir_ID,Lat (root),Long (root),dist (root),slope_deg,altitude,v_veh,dist,vair_ic,vair_uf,vair,beta_ic,beta_uf,beta,vwind_ha,vwind,vwind 1s,omega_wh,omega_p_wh,tq_sum,tq_sum_1s,tq_sum_float,t_float,F_trac,F_acc,F_grd,F_res,v_veh_1s,v_veh_ave,a_veh_ave,v_veh_float,t_amp_stat,p_amp_stat,rh_stat,vair_sq
+Time,Lat,Long,Heading,v_veh_GPS,v_veh_CAN,vair_ar,beta_ar,n_eng,tq_l,tq_r,t_amb_veh,t_tire,Satelites,Zone (UTM),Lat (UTM),Long (UTM),Sec_ID,Dir_ID,Lat (root),Long (root),dist (root),slope_deg,altitude,v_veh,dist,vair_ic,vair_uf,vair,beta_ic,beta_uf,beta,vwind_ha,vwind,vwind 1s,omega_wh,omega_p_wh,tq_sum,tq_sum_1s,tq_sum_float,t_float,F_trac,F_acc,F_grd,F_res,v_veh_1s,v_veh_avg,a_veh_avg,v_veh_float,t_amp_stat,p_amp_stat,rh_stat,vair_sq
 [s],[mm.mm],[mm.mm],[°],[km/h],[km/h],[m/s],[°],[rpm],[Nm],[Nm],[°C],[°C],[#],[-],[m],[m],[-],[-],[m],[m],[m],[°],[m],[km/h],[m],[m/s],[m/s],[m/s],[°],[°],[°],[m/s],[m/s],[m/s],[rad/s],[rad/s2],[Nm],[Nm],[Nm],[s],[N],[N],[N],[N],[km/h],[km/h],[m/s2],[km/h],[°C],[mbar],[%],[m/s]
 45054,2873.71717268657,456.325925074627,104.10447761194,24.5675074626866,25.3045326865672,5.03730845771642,3.30686567164179,841.417910447761,425.677611940298,329.15671641791,20,40,10,32,5305603.09106311,395762.187704792,0,0,0,0,0,0,0,24.5675074626865,2.32180509950248,5.03730845771642,5.40282714562273,5.69483134365934,3.30686567164179,3.32150588057165,2.50733031847341,1.48843034729198,1.18086755207678,1.12801365316887,24.4758548709404,-0.00835760898032111,754.834328358209,400.328815523677,-587.761800284163,3.66338429888574,2706.30418838264,-1679.12029945493,0,2706.30418838264,24.5257306033679,24.5257306033679,-0.067058094370029,24.167456338324,24.8,1015.1583,38.7081,32.803776031771
 45055,2873.71695485148,456.330449603961,82.4257425742574,24.1148811881188,24.8383276237624,5.00240594059406,2.46623762376238,831.826732673267,-537.932673267327,-638.478217821782,20,40,10,32,5305602.58575811,395767.816783677,0,0,0,0,0,0,0,24.1148811881188,7.93636171617161,5.00240594059406,5.36539202157938,5.63941008273663,2.46623762376238,2.48087783269223,1.91288869051428,1.40738819420366,1.11657159821737,1.12029608592828,24.1968588187587,-0.00374410565609344,-1176.41089108911,-989.300254876973,-772.237158537462,3.7323925546452,-4245.63771993959,-3994.16328114104,0,-4245.63771993959,24.1238480541123,24.1238480541123,-0.159717456894202,23.9371038443802,24.8,1015.15,38.65,32.1840544923462
@@ -9,16 +9,16 @@ Time,Lat,Long,Heading,v_veh_GPS,v_veh_CAN,vair_ar,beta_ar,n_eng,tq_l,tq_r,t_amb_
 45057,2873.71679138614,456.340962079208,50.3465346534653,23.1946534653465,23.8904930693069,4.2870297029703,2.49257425742574,811.628712871287,-570.946534653465,-674.372277227723,20,40,10,32,5305602.04645915,395780.9070795,0,0,0,0,0,0,0,23.1946534653465,21.0441193344334,4.2870297029703,4.59810643873077,4.97783901391069,2.49257425742574,2.5072144663556,1.89233496855055,1.92910195559996,1.53048068937887,1.49057477517941,23.6093222388794,-0.00604817067522787,-1245.31881188119,-1247.67268895206,-1606.35999177252,3.88022803010446,-4563.03120227525,-2160.25041140237,0,-4563.03120227525,23.1831729242231,23.1831729242231,-0.0863300438954807,23.1551759728288,24.8,1015.13,38.51,25.4205339318708
 45058,2873.71675584158,456.346074257426,53.9108910891089,22.7514158415841,23.4339583168317,4.1500297029703,1.86891089108911,798.613861386139,-733.942574257426,-847.317821782178,20,40,10,32,5305601.8656176,395787.274312976,0,0,0,0,0,0,0,22.7514158415841,27.4314228272827,4.1500297029703,4.45116540361976,4.83594423669657,1.86891089108911,1.88355110001896,1.4467242627458,1.90411064330832,1.51065347353185,1.44159098005828,23.2307355554229,-0.00288008127391803,-1581.2603960396,-1688.89587295363,-2458.05223987437,3.95593452362345,-5811.1659543536,-3890.85233274172,0,-5811.1659543536,22.7422549750024,22.7422549750024,-0.155596128919823,22.4833089381689,24.8,1015.12,38.44,23.7233094931432
 45059,2873.71666762376,456.351084455446,69.950495049505,21.9324356435644,22.5904087128713,4.6810297029703,3.44237623762376,774.485148514852,-2253.33168316832,-2191.86732673267,20,40,10,32,5305601.58950804,395793.512744524,0,0,0,0,0,0,0,21.9324356435643,33.6577095709571,4.6810297029703,5.02069598496244,5.24056940070498,3.44237623762376,3.45701644655361,2.63743919078072,1.13340286397674,0.899201409011908,0.900411053232725,22.528859748969,0.0111603149364324,-4445.19900990099,-4264.63517302225,-2870.97911572896,4.105002232078,-16456.1894968751,-9013.08732864404,0,-16456.1894968751,21.8927240466621,21.8927240466621,-0.360689039200947,21.6516716377112,24.8,1015.11,38.37,27.570150071135
-45060,2873.71646673267,456.355844851485,89.5544554455445,20.4256534653465,21.0384230693069,4.87749504950495,3.5,972.079207920792,-1783.38217821782,-1478.32277227723,20,40,10,32,5305601.11031435,395799.436220889,0,0,0,0,0,0,0,20.4256534653465,39.5305500550055,4.87749504950495,5.23141730892775,5.3212801605216,3.5,3.51464020892985,2.74410401957977,0.615690737526765,0.488467072296907,0.524918015334764,28.2766379473273,0.0589696640834717,-3261.70495049505,-3350.63980001961,-3510.19914399205,4.40724937279269,-15822.5919541738,-7577.22926594189,0,-15822.5919541738,20.4892543868248,20.4892543868248,-0.304075580825408,20.6613764468466,24.8,1015.10252475248,38.3138861386139,28.3738497969976
-45061,2873.71617633663,456.360327128713,103.811881188119,19.6787227722772,20.2690844554455,5.04258415841584,3.5,1001.18811881188,-2049.16435643564,-1716.37128712871,20,40,10,32,5305600.47158811,395805.010242172,0,0,0,0,0,0,0,19.6787227722772,45.1018294829482,5.04258415841584,5.40848566329944,5.41891567730644,3.5,3.51464020892985,2.78116054052043,0.485261399301926,0.384989087163922,0.384127932451167,29.1233818418592,0.00619217473892378,-3765.53564356436,-3734.09056955201,-3215.38319037106,4.57474560643035,-20139.5672597972,-6843.06039215941,0,-20139.5672597972,19.6388123713361,19.6388123713361,-0.27385659358015,19.564967458833,24.8,1015.11,38.34,29.4624729005354
+45060,2873.71646673267,456.355844851485,89.5544554455445,20.4256534653465,21.0384230693069,4.87749504950495,3.5,972.079207920792,-1783.38217821782,-1478.32277227723,20,40,10,32,5305601.11031435,395799.436220889,0,0,0,0,0,0,0,20.4256534653465,39.5305500550055,4.87749504950495,5.23141730892775,5.3212801605216,3.5,3.51464020892985,2.74410401957977,0.615690737526766,0.488467072296907,0.524918015334764,28.2766379473273,0.0589696640834717,-3261.70495049505,-3350.63980001961,-3510.19914399205,4.40724937279269,-15822.5919541738,-7577.22926594189,0,-15822.5919541738,20.4892543868248,20.4892543868248,-0.304075580825408,20.6613764468466,24.8,1015.10252475248,38.3138861386139,28.3738497969976
+45061,2873.71617633663,456.360327128713,103.811881188119,19.6787227722772,20.2690844554455,5.04258415841584,3.5,1001.18811881188,-2049.16435643564,-1716.37128712871,20,40,10,32,5305600.47158811,395805.010242172,0,0,0,0,0,0,0,19.6787227722772,45.1018294829482,5.04258415841584,5.40848566329944,5.41891567730644,3.5,3.51464020892985,2.78116054052043,0.485261399301925,0.384989087163922,0.384127932451167,29.1233818418592,0.00619217473892378,-3765.53564356436,-3734.09056955201,-3215.38319037106,4.57474560643035,-20139.5672597972,-6843.06039215941,0,-20139.5672597972,19.6388123713361,19.6388123713361,-0.27385659358015,19.564967458833,24.8,1015.11,38.34,29.4624729005354
 45062,2873.71584425743,456.364535742574,103.811881188119,18.4083366336634,18.9605867326733,4.95059405940594,3.5,1154.68811881188,-2086.22871287129,-1703.11188118812,20,40,9.96039603960396,32,5305599.76181041,395810.241958263,0,0,0,0,0,0,0,18.4083366336633,50.3967906765676,4.95059405940594,5.30982055112075,5.26779992428148,3.5,3.51464020892985,2.80679383141737,0.468980864726388,0.372072691683479,0.377582608387801,33.588515844878,0.0516974588668287,-3789.34059405941,-3760.1162042937,-740.140168275483,4.89158442024775,-24577.1999186422,-8998.08079385138,0,-24577.1999186422,18.407400745025,18.407400745025,-0.361097495888204,18.9444971818974,24.8,1015.12,38.38,27.8051071146608
 45063,2873.71553564357,456.368384455446,102.029702970297,17.4426534653465,17.9659330693069,4.86542574257426,3.5,1198.75742574257,2.81287128712892,206.476237623762,20,40,10,32,5305599.10359705,395815.026118494,0,0,0,0,0,0,0,17.4426534653465,55.3448563256325,4.86542574257426,5.21847222532579,5.13996129090995,3.5,3.51464020892985,2.82506973880837,0.527592313846085,0.418572925014231,0.406669522879616,34.8704400198989,0.00036001015923975,209.289108910892,517.53312420351,1925.00217451003,5.15990196772575,1642.82961694355,613.127778215396,0,1642.82961694355,17.5785755318106,17.5785755318106,0.0245142088466296,19.1178142073425,24.8,1015.13,38.42,26.4893440254439
-45064,2873.71516108911,456.372308019802,121.633663366337,18.7329900990099,19.2949798019802,4.79307920792079,3.5,1236.84158415842,3275.70396039604,3894.82475247525,20,40,10,32,5305598.32155993,395819.90132,0,0,0,0,0,0,0,18.7329900990099,60.3263470572056,4.79307920792079,5.14087605971502,5.15239294031828,3.5,3.51464020892985,2.78101547292153,0.417240689109286,0.331023881682964,0.34309999378106,35.9782632819115,-0.0216726115862332,7170.52871287129,6876.77500245074,4765.45015277531,4.80842693654775,49415.2949809112,12886.7929140589,0,49415.2949809112,18.750318596216,18.750318596216,0.515954318204097,19.7683536198328,24.8,1015.14,38.46,26.6232068282907
+45064,2873.71516108911,456.372308019802,121.633663366337,18.7329900990099,19.2949798019802,4.79307920792079,3.5,1236.84158415842,3275.70396039604,3894.82475247525,20,40,10,32,5305598.32155993,395819.90132,0,0,0,0,0,0,0,18.7329900990099,60.3263470572056,4.79307920792079,5.14087605971502,5.15239294031828,3.5,3.51464020892985,2.78101547292153,0.417240689109286,0.331023881682964,0.343099993781059,35.9782632819115,-0.0216726115862332,7170.52871287129,6876.77500245074,4765.45015277531,4.80842693654775,49415.2949809112,12886.7929140589,0,49415.2949809112,18.750318596216,18.750318596216,0.515954318204097,19.7683536198328,24.8,1015.14,38.46,26.6232068282907
 45065,2873.71476762376,456.376664455445,114.504950495049,20.8503267326733,21.4758365346535,5.35384158415841,3.5,1082.05940594059,4426.98712871287,4918.32574257426,20,40,10,32,5305597.49476372,395825.315133896,0,0,0,0,0,0,0,20.8503267326732,65.8143892464245,5.35384158415841,5.74232864377099,5.75093211010237,3.5,3.51464020892985,2.78214306893303,0.512481519527578,0.406584559734462,0.410665146359896,31.4758322263954,-0.00828023366251435,9345.31287128713,9391.37919811783,7922.04028741427,4.32124076370259,50763.8483737218,17061.6387427758,0,50763.8483737218,20.8837753161454,20.8837753161454,0.68266727662865,21.2784664276189,24.8,1015.15,38.5,33.2193764889344
 45066,2873.71439970297,456.381591683168,103.811881188119,23.6485742574258,24.3580314851485,6.33949504950495,3.5,1224.74257425743,5643.14356435644,4856.69900990099,20,40,10,32,5305596.70245546,395831.440859826,0,0,0,0,0,0,0,23.6485742574257,71.9851977447743,6.33949504950495,6.79950339164528,6.7500364560657,3.5,3.51464020892985,2.80533497852456,0.60667003602393,0.48131036945149,0.471653585570783,35.6263173502387,0.108795070122254,10499.8425742574,10180.2491716498,9999.68900924259,3.81078123260244,56656.5788263876,19493.9753933099,0,56656.5788263876,23.6166262131163,23.6166262131163,0.777559934211245,23.6775876603193,24.8,1015.16,38.54,45.6629584446284
 45067,2873.71417178218,456.38719019802,62.8217821782178,26.2680792079208,27.0561215841584,6.7060198019802,3.49831683168317,1750.9603960396,5831.39603960396,4760.7702970297,20,40,10,32,5305596.15438854,395838.407514716,0,0,0,0,0,0,0,26.2680792079207,78.92714370187,6.7060198019802,7.19262402319653,7.21210310491497,3.49831683168317,3.51295704061302,2.77892122203186,0.584549672957385,0.463760862326104,0.474862434426262,50.9333733048583,0.113043190001283,10592.1663366337,10675.5991863543,10540.5955845128,3.42934213818233,74364.1241313794,20010.8603297774,0,74364.1241313794,26.3218402117439,26.3218402117439,0.79767097996928,26.455728113852,24.8,1015.17,38.58,52.107466635745
-45068,2873.71424693069,456.393408217822,45,29.4496138613861,30.3331022772277,7.37959405940594,3.48425742574257,1949.73762376238,5691.66039603961,4608.91287128713,20,40,10,32,5305596.15379034,395846.156042225,0,0,0,0,0,0,0,29.4496138613861,86.6674224697468,7.37959405940594,7.91507437801602,7.96766625604702,3.48425742574257,3.49889763467243,2.75735459915671,0.702219859513567,0.557116191585431,0.571643957649777,56.7155684744398,-0.00302408533761395,10300.5732673267,10845.6230467601,11050.0758604503,3.05851204370077,71549.4778212934,20840.1393119087,0,71549.4778212934,29.4045261248896,29.4045261248896,0.83361925301441,29.3806209675731,24.8,1015.18,38.62,63.7187383630124
-45069,2873.71466633663,456.40024990099,45,32.3734752475247,33.3446795049505,7.67476787679208,2.84257425742574,1677.32178217822,6678.13564356435,5405.28910891089,20,40,10,32,5305596.77686495,395854.692997067,0,0,0,0,0,0,0,32.3734752475247,95.2442682343233,7.67476787679208,8.23166668651521,8.38669996296925,2.84257425742574,2.8572144663556,2.2429357070482,1.05612598149287,0.837892686560177,0.791821864520873,48.7913128573818,-0.044065243490946,12083.4247524752,11610.4314282913,11122.3540851226,2.78274922691005,65666.3740736627,22060.0203777875,0,65666.3740736627,32.4049632388981,32.4049632388981,0.88338697731159,32.437064069567,24.8,1015.19,38.66,70.8149968132524
+45068,2873.71424693069,456.393408217822,45,29.4496138613861,30.3331022772277,7.37959405940594,3.48425742574257,1949.73762376238,5691.66039603961,4608.91287128713,20,40,10,32,5305596.15379034,395846.156042225,0,0,0,0,0,0,0,29.4496138613861,86.6674224697468,7.37959405940594,7.91507437801602,7.96766625604702,3.48425742574257,3.49889763467243,2.75735459915671,0.702219859513567,0.557116191585431,0.571643957649778,56.7155684744398,-0.00302408533761395,10300.5732673267,10845.6230467601,11050.0758604503,3.05851204370077,71549.4778212934,20840.1393119087,0,71549.4778212934,29.4045261248896,29.4045261248896,0.83361925301441,29.3806209675731,24.8,1015.18,38.62,63.7187383630124
+45069,2873.71466633663,456.40024990099,45,32.3734752475247,33.3446795049505,7.67476787679208,2.84257425742574,1677.32178217822,6678.13564356435,5405.28910891089,20,40,10,32,5305596.77686495,395854.692997067,0,0,0,0,0,0,0,32.3734752475247,95.2442682343233,7.67476787679208,8.23166668651521,8.38669996296925,2.84257425742574,2.8572144663556,2.2429357070482,1.05612598149287,0.837892686560177,0.791821864520874,48.7913128573818,-0.044065243490946,12083.4247524752,11610.4314282913,11122.3540851226,2.78274922691005,65666.3740736627,22060.0203777875,0,65666.3740736627,32.4049632388981,32.4049632388981,0.88338697731159,32.437064069567,24.8,1015.19,38.66,70.8149968132524
 45070,2873.71566188119,456.407659405941,45,35.5237326732673,36.5894446534654,8.16377227722772,2.84386138613861,1771.67821782178,6046.54158415841,4861.73267326733,20,40,10,32,5305598.45439439,395863.956562635,0,0,0,0,0,0,0,35.5237326732673,104.693767409241,8.16377227722772,8.75615437099589,8.98344614661065,2.84386138613861,2.85850159506847,2.22764803891828,1.32871037660673,1.05415142381185,1.17454598021573,51.5360303114256,0.0346329773188644,10908.2742574257,10854.2809136359,10747.4408079219,2.53485700543542,56967.2423292508,19415.7642611732,0,56967.2423292508,35.4833648661895,35.4833648661895,0.775980568353869,35.3693915540162,24.8,1015.19873762376,38.7088366336634,81.01565428355
 45071,2873.7173209901,456.415469009901,45,38.1222475247525,39.2659149504951,7.5911001100297,2.48425742574257,1904.91089108911,5201.8702970297,4241.49405940594,20,40,10,32,5305601.35209418,395873.740716808,0,0,0,0,0,0,0,38.1222475247524,114.927274449945,7.5911001100297,8.14192779415396,8.64515263591309,2.48425742574257,2.49889763467243,1.899132481782,2.53096242362762,2.00797531911729,1.90600291687116,55.4116116776734,0.0458652942871447,9443.36435643564,9377.67778649152,9541.07893755559,2.36186389099669,49419.2157357051,17043.4932436644,0,49419.2157357051,38.0946113126164,38.0946113126164,0.680874151771607,38.0180639719237,24.8,1015.2,38.81,75.4561440200544
 45072,2873.71959752475,456.423514158416,45,40.3336237623762,41.5436324752475,7.92259515952476,1.75594059405941,1681.10891089109,4794.61683168317,3922.94851485148,20,40,10,32,5305605.38820058,395883.838919644,0,0,0,0,0,0,0,40.3336237623762,125.83476050605,7.92259515952476,8.49747688690564,9.05423997746881,1.75594059405941,1.77058080298926,1.35146731018566,2.78308406196629,2.20799963495595,2.28264990556206,48.9014759661091,-0.14335604540927,8717.56534653465,8845.12846779727,8966.11675011021,2.23206628352583,37614.7261002921,15869.3280202153,0,37614.7261002921,40.3681407705127,40.3681407705127,0.637097125554134,40.4033812338828,24.8,1015.2,38.92,82.4906015451637
@@ -34,11 +34,11 @@ Time,Lat,Long,Heading,v_veh_GPS,v_veh_CAN,vair_ar,beta_ar,n_eng,tq_l,tq_r,t_amb_
 45082,2873.76450821782,456.516229207921,45,60.813,62.63739,13.4387909791089,0.842673267326733,1551.31188118812,3208.43663366336,3055.0702970297,20,40,10,32,5305686.49566987,396000.836412777,0,0,0,0,0,0,0,60.8129999999999,268.594184433443,13.4387909791089,14.4139405628527,14.9228675066702,0.842673267326733,0.857313476256589,0.6681586465875,2.64344827854623,2.09721758455663,2.06950160684788,45.1258334200663,0.0035280995605496,6263.50693069307,6258.02070385256,6257.57317923886,1.48002677305373,16732.6604814688,11453.363100213,0,16732.6604814688,60.8271035192627,60.8271035192627,0.458100513021595,60.8290535300503,24.8,1015.2,39.4,223.445987387958
 45083,2873.77011237624,456.527128415842,45,62.4877425742574,64.3623748514852,14.0711188118812,1.53415841584158,1592.11386138614,3163.06237623762,2945.7702970297,20,40,10,32,5305696.6318318,396014.600785232,0,0,0,0,0,0,0,62.4877425742574,285.723206518151,14.0711188118812,15.0921515575757,15.5567349053313,1.53415841584158,1.54879862477144,1.19447024544574,2.4438073557148,1.93882959665567,1.86312982622064,46.3127149130479,0.0109443088408885,6108.83267326732,6107.42738947162,6104.72884117555,1.44035067311735,16299.149065971,11093.898611927,0,16299.149065971,62.4765724928928,62.4765724928928,0.443650676948897,62.4699733147398,24.8,1015.2,39.2,242.444350776969
 45084,2873.77585188119,456.538327524753,45,64.0672475247524,65.9892649504951,15.5013861386139,1.45485148514851,1631.29702970297,3074.25940594059,2855.92574257426,20,40,10,32,5305707.0120035,396028.743216338,0,0,0,0,0,0,0,64.0672475247524,303.30045360286,15.5013861386139,16.626202371266,16.8642463885576,1.45485148514851,1.46949169407837,1.14578453503527,1.58670760113095,1.25883722017499,1.32057137474716,47.4525070772009,0.0133203758918709,5930.18514851485,5935.87296343496,5939.00159388815,1.40484475854691,15812.613170019,10951.9117322387,0,15812.613170019,64.0586425840603,64.0586425840603,0.437948621594824,64.0547376917088,24.8,1015.2,39,284.842493070898
-45085,2873.78171336634,456.549838316832,45,65.5976633663366,67.5655932673267,15.9349702970297,-0.0363366336633663,1668.52475247525,3028.45841584158,2771.65643564356,20,40,10,32,5305717.61116424,396043.277933403,0,0,0,0,0,0,0,65.5976633663365,321.31203910891,15.9349702970297,17.0912483934949,17.3213128939172,-0.0363366336633663,-0.0216964247335088,-0.013853408535083,1.59362053538964,1.26432169566327,1.21171725851892,48.5354176361941,0.00122403454141516,5800.11485148515,5801.88830506813,5800.60997040049,1.37206511362855,15449.6571975277,10590.0780147676,0,15449.6571975277,65.5943659445151,65.5943659445151,0.423591369037888,65.5959503146344,24.8,1015.2,38.8,300.513682680986
+45085,2873.78171336634,456.549838316832,45,65.5976633663366,67.5655932673267,15.9349702970297,-0.0363366336633663,1668.52475247525,3028.45841584158,2771.65643564356,20,40,10,32,5305717.61116424,396043.277933403,0,0,0,0,0,0,0,65.5976633663365,321.31203910891,15.9349702970297,17.0912483934949,17.3213128939172,-0.0363366336633663,-0.0216964247335088,-0.0138534085350831,1.59362053538964,1.26432169566327,1.21171725851892,48.5354176361941,0.00122403454141516,5800.11485148515,5801.88830506813,5800.60997040049,1.37206511362855,15449.6571975277,10590.0780147676,0,15449.6571975277,65.5943659445151,65.5943659445151,0.423591369037888,65.5959503146344,24.8,1015.2,38.8,300.513682680986
 45086,2873.78773653465,456.561596039604,45,67.1118415841584,69.1251968316832,16.4311386138614,1.04445544554455,1706.85643564356,2976.68415841584,2694.16732673267,20,40,10,32,5305728.50431329,396058.125594556,0,0,0,0,0,0,0,67.1118415841583,339.747285643564,16.4311386138614,17.6234198246229,17.8297980289794,1.04445544554455,1.05909565447441,0.829374293328762,1.56845876179391,1.24435924189715,1.3178098314512,49.6504411013915,0.013176371828175,5670.85148514852,5673.30808744241,5675.09118014536,1.34110395542215,15103.378241341,10253.487851089,0,15103.378241341,67.1082676208214,67.1082676208214,0.410012907231317,67.1038655697846,24.8,1015.2,38.6,318.368859769657
 45087,2873.7939380198,456.573556732673,45,68.5492871287129,70.6057657425743,16.4831287128713,-0.248019801980198,1745.31683168317,2922.21089108911,2652.18118811881,20,40,10,32,5305739.72325046,396073.231988952,0,0,0,0,0,0,0,68.5492871287128,358.591680280527,16.4831287128713,17.6791824447984,17.9563991961908,-0.248019801980198,-0.233379593050341,-0.188057459667558,1.79439649918311,1.42361018458181,1.41558298761253,50.769208672245,0.0168484754524205,5574.39207920792,5571.49784334869,5571.88481047187,1.31297946484267,14862.8005869786,9980.28787712971,0,14862.8005869786,68.5528604058425,68.5528604058425,0.399049929745468,68.552214431489,24.8,1015.2,38.4,322.92633011474
 45088,2873.80028118812,456.585755049505,45,69.977702970297,72.0770340594059,16.6199405940594,1.24920792079208,1781.56435643564,2874.87722772277,2610.41584158416,20,40,10,32,5305751.19934238,396088.639058605,0,0,0,0,0,0,0,69.9777029702969,377.833639548954,16.6199405940594,17.8259217107638,18.1549053619489,1.24920792079208,1.26384812972194,0.980423398269721,2.00152593889231,1.58793929469264,1.5172175630686,51.8236064266263,0.0151924287199176,5485.29306930693,5488.09975492599,5487.73997230889,1.28617579565879,14623.8889806892,9701.90241497917,0,14623.8889806892,69.974965003431,69.974965003431,0.387930377196127,69.9736236928764,24.8,1015.2,38.2,330.052358797575
-45089,2873.80675316832,456.598201287129,45,71.3499405940594,73.4904388118812,16.8935742574258,0.355148514851485,1816.07920792079,2827.49405940594,2567.2396039604,20,40,10,32,5305762.90851841,396104.359197435,0,0,0,0,0,0,0,71.3499405940593,397.46623061056,16.8935742574258,18.1194108621234,18.467094417996,0.355148514851485,0.369788723781342,0.28814209465169,1.99764689003866,1.58486179567999,1.64265984379325,52.8276027587142,0.00439212394272501,5394.73366336634,5394.03542789923,5394.19243073144,1.26143204763256,14379.6065180053,9572.20269059845,0,14379.6065180053,71.3538167826683,71.3538167826683,0.382846452962122,71.3550119141756,24.8,1015.2,38,341.525674633782
+45089,2873.80675316832,456.598201287129,45,71.3499405940594,73.4904388118812,16.8935742574258,0.355148514851485,1816.07920792079,2827.49405940594,2567.2396039604,20,40,10,32,5305762.90851841,396104.359197435,0,0,0,0,0,0,0,71.3499405940593,397.46623061056,16.8935742574258,18.1194108621234,18.467094417996,0.355148514851485,0.369788723781342,0.28814209465169,1.99764689003866,1.58486179567999,1.64265984379325,52.8276027587142,0.00439212394272501,5394.73366336634,5394.03542789923,5394.19243073144,1.26143204763256,14379.6065180053,9572.20269059845,0,14379.6065180053,71.3538167826683,71.3538167826683,0.382846452962122,71.3550119141756,24.8,1015.2,38,341.525674633781
 45090,2873.81336247525,456.610872673267,45,72.7118415841584,74.8931968316832,17.5443465346535,1.17584158415842,1851.84653465347,2775.71188118812,2514.89504950495,20,40,10,32,5305774.86706414,396120.36431817,0,0,0,0,0,0,0,72.7118415841583,417.479103327831,17.5443465346535,18.8174046726154,19.0983483179539,1.17584158415842,1.19048179308827,0.932879354770352,1.82629480423766,1.44891716214626,1.5063081860967,53.8680321189171,0.0159844510702451,5290.60693069307,5293.07847269876,5293.43543594945,1.23779802794376,14110.4486578314,9163.24238225645,0,14110.4486578314,72.7117278698166,72.7117278698166,0.366376117809801,72.7101403210174,24.8,1015.2,37.8265099009901,365.182425302086
 45091,2873.8200890099,456.623789306931,45,74.010297029703,76.2306059405941,16.8854240923762,-0.0856435643564355,1884.28217821782,2723.27326732673,2477.78316831683,20,40,10,32,5305787.037301,396136.678784126,0,0,0,0,0,0,0,74.0102970297029,437.860126375136,16.8854240923762,18.1106693023519,18.6124674035039,-0.0856435643564355,-0.0710033554265784,-0.0585054243476849,2.6731603467759,2.12079007979723,2.06059060144313,54.8115467442526,0.00691219505740329,5201.05643564357,5196.82670326439,5196.16718862574,1.21607791378449,13867.3474936008,9016.90618311869,0,13867.3474936008,74.0120081364571,74.0120081364571,0.360610070908087,74.0126391197877,24.8,1015.2,37.81,346.852143476367
 45092,2873.82697792079,456.636879207921,45,75.2872574257426,77.5458751485148,17.2303300328713,-0.166831683168317,1914.70297029703,2685.30792079208,2401.56435643564,20,40,10,32,5305799.50447567,396153.214431346,0,0,0,0,0,0,0,75.2872574257425,458.600074092408,17.2303300328713,18.4806024112007,18.979049788317,-0.166831683168317,-0.15219147423846,-0.115655507686277,2.66773970243322,2.11648953390521,2.1554308293713,55.6964517156639,0.0188645323441631,5086.87227722772,5085.14411332222,5085.2705693946,1.19544652428607,13547.5823059039,8533.75290912298,0,13547.5823059039,75.2845498480541,75.2845498480541,0.341168894117135,75.2831127622311,24.8,1015.2,37.82,360.698871218773
@@ -49,9 +49,9 @@ Time,Lat,Long,Heading,v_veh_GPS,v_veh_CAN,vair_ar,beta_ar,n_eng,tq_l,tq_r,t_amb_
 45097,2873.86317811881,456.705334554456,45,81.0700495049505,83.502150990099,19.3656166116832,-0.688811881188119,1762.63861386139,2466.77227722772,2313.90495049505,20,40,10,32,5305865.0257763,396239.694378558,0,0,0,0,0,0,0,81.0700495049504,567.250622964795,19.3656166116832,20.7708302955019,21.1273514423663,-0.688811881188119,-0.674171672258261,-0.52436364465851,2.31812762567337,1.83911978125873,1.78088260683365,51.2730788911169,0.00576016254783607,4780.67722772277,4777.87788452113,4777.56719253721,1.11016841678971,10884.9575700386,7627.30571794117,0,10884.9575700386,81.0541454759336,81.0541454759336,0.305044984696486,81.0528065068951,24.8,1015.2,37.87,447.775922274577
 45098,2873.87070950495,456.719642772277,45,82.1257623762376,84.5895352475248,20.2323179316832,-0.381782178217822,1785.75247524752,2465.6099009901,2244.83168316832,20,40,10,32,5305878.65604258,396257.768600135,0,0,0,0,0,0,0,82.1257623762375,589.916369196918,20.2323179316832,21.7004214567638,21.9261180556509,-0.381782178217822,-0.367141969287964,-0.285305329459219,1.83848264902275,1.45858656351439,1.50672032163019,51.9454338645131,0.0153364327836135,4710.44158415842,4712.71105773944,4712.91623217368,1.09589989421609,10726.1168499874,7370.2761443452,0,10726.1168499874,82.125751592981,82.125751592981,0.294685161585481,82.1251866654554,24.8,1015.2,37.88,481.872789578936
 45099,2873.87835445545,456.73411990099,45,83.1757425742574,85.6710148514852,19.6478707370297,1.29336633663366,1805.87128712871,2133.78415841584,1928.87326732673,20,40,10,32,5305892.49294271,396276.056924731,0,0,0,0,0,0,0,83.1757425742573,612.877382535752,19.6478707370297,21.0735654293908,21.4881450578654,1.29336633663366,1.30800654556352,1.02313246482864,2.42429264098721,1.92334731799092,1.88833972632445,52.5306663793732,0.00864024382175411,4062.65742574258,3926.25160278404,3900.91300753929,1.08206409697068,9245.03179945751,5994.03688633017,0,9245.03179945751,83.1418115870992,83.1418115870992,0.239690553213727,83.1368122445271,24.8,1015.2,37.89,462.243211185818
-45100,2873.8860890099,456.748717722772,45,83.5747623762376,86.0820052475247,20.2942717272277,-0.0468316831683168,1811.0297029703,848.848514851485,810.448514851485,20,40,10,32,5305906.49317525,396294.498487917,0,0,0,0,0,0,0,83.5747623762375,636.062090841583,20.2942717272277,21.7668707622118,22.0615497433354,-0.0468316831683168,-0.0321914742384593,-0.0214987453321627,2.3691566158731,1.87960436211382,1.87691603713896,52.6807186137444,-0.0039601117516373,1659.29702970297,1822.67956082737,1851.3441366155,1.07688029551412,3765.39151960868,1013.73366086286,0,3765.39151960868,83.5866696402312,83.5866696402312,0.0405815334008705,83.5863766917975,24.8,1015.2,37.9126237623762,488.576499051192
+45100,2873.8860890099,456.748717722772,45,83.5747623762376,86.0820052475247,20.2942717272277,-0.0468316831683168,1811.0297029703,848.848514851485,810.448514851485,20,40,10,32,5305906.49317525,396294.498487917,0,0,0,0,0,0,0,83.5747623762375,636.062090841583,20.2942717272277,21.7668707622118,22.0615497433354,-0.0468316831683168,-0.0321914742384593,-0.0214987453321626,2.3691566158731,1.87960436211382,1.87691603713896,52.6807186137444,-0.0039601117516373,1659.29702970297,1822.67956082737,1851.3441366155,1.07688029551412,3765.39151960868,1013.73366086286,0,3765.39151960868,83.5866696402312,83.5866696402312,0.0405815334008705,83.5863766917975,24.8,1015.2,37.9126237623762,488.576499051192
 45101,2873.89385970297,456.763324851485,45,83.7124059405941,86.2237781188119,21.6155396039604,-0.247326732673267,1814.94059405941,999.127722772278,950.483168316832,20,40,10,32,5305920.56019847,396312.952757628,0,0,0,0,0,0,0,83.7124059405939,659.29733231573,21.6155396039604,23.1840128751025,23.1936083047952,-0.247326732673267,-0.23268652374341,-0.189184719781125,1.91840884738766,1.52199715869722,1.54707895983734,52.7944818240641,0.00662418693001148,1949.61089108911,1952.84355455347,1952.15209374148,1.07511028722165,4426.24982381864,1316.45030472102,0,4426.24982381864,83.7281985099499,83.7281985099499,0.0526037752290094,83.7303475550589,24.8,1015.2,38.01,539.731948884668
-45102,2873.90166485149,456.777947425742,45,83.9765742574258,86.4958714851485,20.1575693067327,-0.138019801980198,1821.73267326733,1081.04554455446,1068.79405940594,20,40,10,32,5305934.69075743,396331.427323774,0,0,0,0,0,0,0,83.9765742574257,682.589026127612,20.1575693067327,21.6202488996591,21.968296860477,-0.138019801980198,-0.123379593050341,-0.087108130517542,2.57864748959035,2.04580694974514,2.00810487275796,52.9920553994549,0.00244806908283033,2149.8396039604,2122.27402215469,2120.14460072176,1.07172796057451,4883.70875223673,1633.91840229431,0,4883.70875223673,83.9734569159886,83.9734569159886,0.0653367316929764,83.9729814009437,24.8,1015.2,38.12,484.725422062433
+45102,2873.90166485149,456.777947425742,45,83.9765742574258,86.4958714851485,20.1575693067327,-0.138019801980198,1821.73267326733,1081.04554455446,1068.79405940594,20,40,10,32,5305934.69075743,396331.427323774,0,0,0,0,0,0,0,83.9765742574257,682.589026127612,20.1575693067327,21.6202488996591,21.968296860477,-0.138019801980198,-0.123379593050341,-0.0871081305175419,2.57864748959035,2.04580694974514,2.00810487275796,52.9920553994549,0.00244806908283033,2149.8396039604,2122.27402215469,2120.14460072176,1.07172796057451,4883.70875223673,1633.91840229431,0,4883.70875223673,83.9734569159886,83.9734569159886,0.0653367316929764,83.9729814009437,24.8,1015.2,38.12,484.725422062433
 45103,2873.90946019802,456.792654059406,45,84.2268217821782,86.7536264356436,21.7852079207921,-0.862178217821782,1825.26732673267,985.087128712871,998.493069306931,20,40,10,32,5305948.80133707,396350.006182563,0,0,0,0,0,0,0,84.2268217821781,705.947188118811,21.7852079207921,23.3659927152543,23.3676119199233,-0.862178217821782,-0.847538008891925,-0.672873068967598,1.81594510765523,1.44070608200384,1.60523645906802,53.0948743009338,0.00280807924207008,1983.5801980198,1984.58789334379,1984.64067733876,1.0685443500078,4501.53712735143,1346.16742252723,0,4501.53712735143,84.2037971767473,84.2037971767473,0.0538236992015968,84.202513648561,24.8,1015.2,38.23,547.450623436309
 45104,2873.91729257426,456.80737019802,45,84.3782871287128,86.9096357425743,21.8718910891089,-0.558316831683168,1823.93069306931,885.820792079208,925.532673267327,20,40,10,32,5305962.9803546,396368.59802209,0,0,0,0,0,0,0,84.3782871287127,729.363904097909,21.8718910891089,23.4589658136424,23.4504746780329,-0.558316831683168,-0.543676622753311,-0.428694684297561,2.54089200634695,2.01585309590426,1.7941283177834,53.0559932037359,-0.00324009143315779,1811.35346534653,1810.77135574944,1811.13746901259,1.06662618580908,4100.53755171267,1235.42679016726,0,4100.53755171267,84.3729364768158,84.3729364768158,0.049443681991958,84.3726597654958,24.8,1015.2,38.34,553.932494103822
 45105,2873.9251129703,456.822145544554,45,84.5189306930693,87.0544986138614,21.0482211221782,-0.0934653465346535,1831.55445544554,832.211881188119,868.982178217822,20,40,10,32,5305977.13591529,396387.263124188,0,0,0,0,0,0,0,84.5189306930692,752.822054675466,21.0482211221782,22.5755284594041,22.757216677855,-0.0934653465346535,-0.0788251376047959,-0.0586159779258618,2.30178134444793,1.82615122473113,1.88397563486595,53.2777594618276,-0.000432012191087707,1701.19405940594,1700.72440937163,1700.73832604088,1.0648507082914,3860.78134643031,716.544206607571,0,3860.78134643031,84.5136641505734,84.5136641505734,0.028665490311404,84.51346638995,24.8,1015.2,38.45,520.401229024703
@@ -67,8 +67,8 @@ Time,Lat,Long,Heading,v_veh_GPS,v_veh_CAN,vair_ar,beta_ar,n_eng,tq_l,tq_r,t_amb_
 45115,2874.00291970297,456.971494158416,45,85.0067326732674,87.5569346534654,19.1522612762376,-1.11772277227723,1838.88118811881,693.919993603961,671.971969320792,20,40,10,32,5306117.92336901,396575.882864293,1,1,5306119.79155722,396574.360937685,186.144774153812,0,0,85.0067326732672,988.447353602861,19.1522612762376,20.541993406182,21.1713485570618,-1.11772277227723,-1.10308256334737,-0.848669117757535,3.36201154639675,2.6673000534224,2.76438813243206,53.4908854760975,-0.00345609752870165,1365.89196292475,1365.2251127539,1365.17198414596,1.05874007898651,3094.18812644574,-34.1001081523913,0,3094.18812644574,84.9749208901087,84.9749208901087,-0.00133565336733347,84.9744730787363,24.8,1015.2,39.5,448.935773895475
 45116,2874.01077019802,456.986391782178,45,84.973198019802,87.5223939603961,19.0042574255446,-1.34158415841584,1840.40594059406,682.674516212871,657.443322392079,20,40,10,32,5306132.13261294,396594.70026488,1,1,5306134.67426942,396592.629694797,209.708360654651,0,0,84.9731980198019,1012.05119163916,19.0042574255446,20.3832500556619,21.0438888425896,-1.34158415841584,-1.32694394948598,-1.02124278636099,3.43248766167243,2.72321328972323,2.67462849329217,53.5352387277158,-0.00619217473892377,1340.11783860495,1340.53250865155,1340.56554582138,1.05915906860194,3039.51869677179,480.610669289875,0,3039.51869677179,84.9858812861483,84.9858812861483,0.0192750710714627,84.9862122583686,24.8,1015.2,39.6,443.122421482105
 45117,2874.0186340594,457.001282475247,45,84.9766534653465,87.5259530693069,19.4388091307921,-1.14267326732673,1840.44059405941,664.373124007921,659.056203889109,20,40,10,32,5306146.36683092,396613.509383274,1,1,5306149.56288857,396610.905702794,233.281299562744,0,0,84.9766534653464,1035.66337931793,19.4388091307921,20.8493338321461,21.414060984984,-1.14267326732673,-1.12803305839687,-0.870901031428259,3.02777489111459,2.40212861180575,2.37530426813046,53.5362467561617,0.00151204266880697,1323.42932789703,1324.54427243298,1324.63310115916,1.05911510970453,3001.5908015967,-295.760893097577,0,3001.5908015967,84.9975637682579,84.9975637682579,-0.0118425208857408,84.9979018387551,24.8,1015.2,39.7,459.324419702889
-45118,2874.02650752475,457.01615970297,45,84.9789702970297,87.5283394059406,20.2104614962376,-0.113069306930693,1839.51485148515,655.842032586139,675.32773800198,20,40,10,32,5306160.61919948,396632.30195482,1.74257425742574,1,5306164.45077565,396629.180320446,70.3118776837793,0,0,84.9789702970296,1059.26935371287,20.2104614962376,21.6769790680908,22.0705800786329,-0.113069306930693,-0.0984290980008355,-0.0762726245921279,2.69979472375945,2.14192084457025,2.09032041370826,53.5093179962505,-7.20020318479538E-05,1331.16977058812,1331.95991475147,1332.02286631269,1.05908586290455,3017.55400255249,-355.748484286249,0,3017.55400255249,84.9697077737476,84.9697077737476,-0.0142292694616001,84.9693841584157,24.8,1015.2,39.8,489.105543053305
-45119,2874.03438465347,457.031023366337,45,84.9614059405941,87.5102481188119,21.7467524752475,-1.17,1838.79207920792,664.924688053465,691.297951312871,20,40,10,32,5306174.87871664,396651.07765905,2,1,5306179.33389323,396647.44788562,29.2073117082586,0,0,84.961405940594,1082.86753014302,21.7467524752475,23.3247468541304,23.3765633865564,-1.17,-1.15535979107014,-0.909391141301895,1.5198049637739,1.20575905380527,1.34757573090556,53.488293402951,-0.00129603657326312,1356.22263936634,1355.96152824971,1355.94072527095,1.0593048285056,3073.75022868139,124.654256128275,0,3073.75022868139,84.9521225370061,84.9521225370061,0.00499678680738791,84.951853842527,24.8,1015.2,39.9,547.005674144142
+45118,2874.02650752475,457.01615970297,45,84.9789702970297,87.5283394059406,20.2104614962376,-0.113069306930693,1839.51485148515,655.842032586139,675.32773800198,20,40,10,32,5306160.61919948,396632.30195482,1.74257425742574,1,5306164.45077565,396629.180320446,70.3118776837793,0,0,84.9789702970296,1059.26935371287,20.2104614962376,21.6769790680908,22.0705800786329,-0.113069306930693,-0.0984290980008355,-0.0762726245921278,2.69979472375945,2.14192084457025,2.09032041370826,53.5093179962505,-7.20020318479538E-05,1331.16977058812,1331.95991475147,1332.02286631269,1.05908586290455,3017.55400255249,-355.748484286249,0,3017.55400255249,84.9697077737476,84.9697077737476,-0.0142292694616001,84.9693841584157,24.8,1015.2,39.8,489.105543053305
+45119,2874.03438465347,457.031023366337,45,84.9614059405941,87.5102481188119,21.7467524752475,-1.17,1838.79207920792,664.924688053465,691.297951312871,20,40,10,32,5306174.87871664,396651.07765905,2,1,5306179.33389323,396647.44788562,29.2073117082586,0,0,84.961405940594,1082.86753014302,21.7467524752475,23.3247468541304,23.3765633865564,-1.17,-1.15535979107014,-0.909391141301894,1.5198049637739,1.20575905380527,1.34757573090556,53.488293402951,-0.00129603657326312,1356.22263936634,1355.96152824971,1355.94072527095,1.0593048285056,3073.75022868139,124.654256128275,0,3073.75022868139,84.9521225370061,84.9521225370061,0.00499678680738791,84.951853842527,24.8,1015.2,39.9,547.005674144142
 45120,2874.04226059406,457.045887425743,45,84.9460792079208,87.4944615841584,20.58490209,-1.65138613861386,1838.64851485149,683.270538857426,692.283903343564,20,40,10,32,5306189.1360842,396669.853724251,2,1,5306194.21639298,396665.714635835,52.7692081168112,0,0,84.9460792079207,1106.46568162816,20.58490209,22.07858993258,22.3868617766064,-1.65138613861386,-1.63674592968401,-1.26913072707652,2.23470845231865,1.77293798429733,1.72448133841334,53.4841172851038,-0.00475213410196476,1375.55444220099,1374.48214017171,1374.39670881571,1.05949612028309,3117.89293519937,42.4014224240461,0,3117.89293519937,84.9493474169198,84.9493474169198,0.0017345793985384,84.9496769448372,24.8,1015.2,39.9747524752475,502.676439815862
 45121,2874.05012821782,457.060762574258,45,84.9655841584158,87.5145516831683,20.7093465346535,-0.315445544554455,1838.97524752475,694.012494389109,677.379114350495,20,40,10,32,5306203.37785887,396688.643233325,2,1,5306209.09925503,396683.981830727,76.3316781049222,0,0,84.9655841584157,1130.06525726073,20.7093465346535,22.2120643523698,22.4943769218409,-0.315445544554455,-0.300805335624598,-0.233117780735328,2.12018253614941,1.68207720702134,1.63466382092197,53.4936215533077,0.00921626007653771,1371.3916087396,1370.49398532812,1370.42247078965,1.05925270252372,3108.29222774849,59.6044312348301,0,3108.29222774849,84.9637498284481,84.9637498284481,0.0023091418052672,84.9637680339461,24.8,1015.2,39.9,506.986740518125
 45122,2874.05798188119,457.075659504951,45,84.966603960396,87.5156020792079,20.3908063807921,-0.955643564356436,1839.85148514851,687.274450250495,660.28697859703,20,40,10,32,5306217.59334852,396707.459318466,2,1,5306223.98464426,396702.252127472,99.8981491073797,0,0,84.9666039603959,1153.66830871837,20.3908063807921,21.8704101922763,22.2229712710529,-0.955643564356436,-0.941003355426578,-0.730148637482032,2.51614612983513,1.99622060005138,2.03759403728019,53.5191102725819,0.00554415645229222,1347.56142884752,1347.66375488478,1347.67190730061,1.05924006893583,3055.71602685031,165.678700919968,0,3055.71602685031,84.9761613567296,84.9761613567296,0.00658159875392598,84.9762783592644,24.8,1015.2,39.8,495.629139024894
@@ -80,7 +80,7 @@ Time,Lat,Long,Heading,v_veh_GPS,v_veh_CAN,vair_ar,beta_ar,n_eng,tq_l,tq_r,t_amb_
 45128,2874.10474168317,457.165468019802,45,84.987801980198,87.537436039604,20.292096259604,-1.03633663366337,1840.49504950495,685.751332728713,651.971264453465,20,40,10,32,5306302.20716439,396820.873659076,1.76237623762376,0.881188118811881,4675859.42914747,349664.92328148,211.356968395224,0,0,84.9878019801979,1295.28152332234,20.292096259604,21.7645374376535,22.1402353646146,-1.03633663366337,-1.02169642473351,-0.793131797766629,2.32391831389011,1.84371390676268,1.85950740331565,53.5378308008623,0.00928826210838567,1337.72259718218,1323.25995739665,1322.36026618002,1.0589776471194,3033.57165013102,260.314438427085,0,3033.57165013102,84.9740050975394,84.9740050975394,0.0103366772320693,84.9739060820366,24.8,1015.2,39.2,490.884845317555
 45129,2874.11249534653,457.180491782178,45,84.9703663366337,87.5194773267327,18.9069383936634,-1.11435643564356,1842.14851485149,588,550.560396039604,20,40,10,32,5306316.23501886,396839.843761903,0,0,0,0,0,0,0,84.9703663366335,1318.88780904841,18.9069383936634,20.2788693309858,20.9607952261391,-1.11435643564356,-1.09971622671371,-0.846410210844932,3.54222185739342,2.81027248689421,2.80670903473497,53.5859281581368,-0.00338409549685369,1138.5603960396,1154.41084960696,1155.45035342511,1.05919419186962,2585.07670170022,109.251343153362,0,2585.07670170022,84.9882217429663,84.9882217429663,0.0043977169994335,84.9885621876472,24.8,1015.2,39.1,439.590858896755
 45130,2874.12026346535,457.195502871287,45,84.9749504950495,87.524199009901,18.7135467541584,-0.264257425742574,1836.25247524752,598.341584158415,538.716831683168,20,40,10,32,5306330.28999328,396858.798465399,0,0,0,0,0,0,0,84.9749504950494,1342.49724488449,18.7135467541584,20.0714447493021,20.7964378703373,-0.264257425742574,-0.249617216812717,-0.193746953385888,3.73157435984764,2.96049800900853,2.83430178161545,53.414419318275,-0.00770421740773075,1137.05841584158,1136.2060288207,1136.28412069778,1.05913684802112,2572.86988147884,66.0309129819513,0,2572.86988147884,84.9827960984215,84.9827960984215,0.00270398326960967,84.9839488920319,24.8,1015.2,39.010099009901,432.592054871979
-45131,2874.12807237624,457.210463366337,45,84.9561089108911,87.5047921782178,19.5113217819802,-0.205445544554455,1834.47524752475,605.885148514851,548.813861386139,20,40,10,32,5306344.42171625,396877.691408273,0,0,0,0,0,0,0,84.9561089108909,1366.10612956546,19.5113217819802,20.9271081680893,21.4744147906474,-0.205445544554455,-0.190805335624598,-0.150374867334175,2.96932679715602,2.35575797863371,2.3565787035703,53.3627218594081,0.00914425804468976,1154.69900990099,1152.10928340359,1151.94998585573,1.05937285252276,2610.94828128076,-244.162333940054,0,2610.94828128076,84.9864532888931,84.9864532888931,-0.00984108311820311,84.9867323903818,24.8,1015.2,38.98,461.820516016948
+45131,2874.12807237624,457.210463366337,45,84.9561089108911,87.5047921782178,19.5113217819802,-0.205445544554455,1834.47524752475,605.885148514851,548.813861386139,20,40,10,32,5306344.42171625,396877.691408273,0,0,0,0,0,0,0,84.9561089108909,1366.10612956546,19.5113217819802,20.9271081680893,21.4744147906474,-0.205445544554455,-0.190805335624598,-0.150374867334176,2.96932679715602,2.35575797863371,2.3565787035703,53.3627218594081,0.00914425804468976,1154.69900990099,1152.10928340359,1151.94998585573,1.05937285252276,2610.94828128076,-244.162333940054,0,2610.94828128076,84.9864532888931,84.9864532888931,-0.00984108311820311,84.9867323903818,24.8,1015.2,38.98,461.820516016948
 45132,2874.13593227723,457.225351386138,45,84.975099009901,87.524351980198,20.4765412539604,-0.254950495049505,1839.81683168317,615.937623762376,551.005940594059,20,40,10,32,5306358.64956445,396896.49567331,0,0,0,0,0,0,0,84.9750990099009,1389.70736152366,20.4765412539604,21.9623661850388,22.2963791518171,-0.254950495049505,-0.240310286119647,-0.181658161811637,2.33121987632335,1.84950670598405,1.92606173592596,53.518102244136,-0.000360010159239758,1166.94356435644,1175.77991373395,1176.23498349835,1.05913677782097,2645.67005112034,-199.097369889509,0,2645.67005112034,84.9700730320556,84.9700730320556,-0.00796082083456203,84.9698137670909,24.8,1015.2,38.96,498.437624172165
 45133,2874.14380643564,457.240221881188,45,84.9784059405941,87.5277581188119,20.6597645765346,-0.47039603960396,1843.17326732673,646.338613861386,621.859405940594,20,40,10,32,5306372.90427258,396915.278489093,0,0,0,0,0,0,0,84.9784059405939,1413.30907736524,20.6597645765346,22.1588846133274,22.4529483681083,-0.47039603960396,-0.455755830674103,-0.36342171947947,2.09489304241899,1.66201342465555,1.75529464226786,53.6157369993219,0.000648018286631559,1268.19801980198,1256.69959807862,1255.92138613861,1.05909344592871,2880.48698818586,159.668733914754,0,2880.48698818586,84.9636386628761,84.9636386628761,0.00638145497716674,84.9636494106553,24.8,1015.2,38.94,505.097592772904
 45134,2874.15167257426,457.255112871287,45,85.0029702970297,87.5530594059406,19.8844779977228,-0.326831683168317,1840.62376237624,615.70099009901,595.772277227723,20,40,10,32,5306387.14372936,396934.086474429,0,0,0,0,0,0,0,85.0029702970296,1436.915984901,19.8844779977228,21.3273414571355,21.7946197741781,-0.326831683168317,-0.31219147423846,-0.243179627633641,2.70743119771822,2.14797935065124,2.02600697064555,53.5415749065185,-0.00165604673250286,1211.47326732673,1211.65069110871,1211.80846770391,1.05878681929889,2746.88350155139,315.806511081273,0,2746.88350155139,84.999517106166,84.999517106166,0.012645819037356,84.9993514380008,24.8,1015.2,38.92,475.932086882115
@@ -88,14 +88,14 @@ Time,Lat,Long,Heading,v_veh_GPS,v_veh_CAN,vair_ar,beta_ar,n_eng,tq_l,tq_r,t_amb_
 45136,2874.1673560396,457.284985148515,45,85.0921584158416,87.6449231683169,22.5464257425743,1.90316831683168,1843.43069306931,549.830693069307,527.941584158416,20,40,10,32,5306415.53039889,396971.81302165,0,0,0,0,0,0,0,85.0921584158415,1484.16302863038,22.5464257425743,24.1824462530472,24.0641281107389,1.90316831683168,1.91780852576154,1.5327272418906,1.64580048914681,1.30571940995525,1.28342005577342,53.623225210634,0.00338409549685369,1077.77227722772,1071.98592294873,1071.68278170674,1.05767760165158,2445.12246335089,367.151003545965,0,2445.12246335089,85.0953772179197,85.0953772179197,0.0146581489832066,85.0953311645449,24.8,1015.2,38.88,579.613240187882
 45137,2874.17518881188,457.299950990099,45,85.1145148514851,87.6679502970298,21.4915148514852,2.22594059405941,1841.9900990099,487.122772277228,459.064356435644,20,40,10,32,5306429.7065663,396990.712856099,0,0,0,0,0,0,0,85.114514851485,1507.80415173269,21.4915148514852,23.0509886013208,23.1681126408306,2.22594059405941,2.24058080298926,1.7696639395975,1.58899186299808,1.26064947207126,1.30659737185156,53.5813200280985,-0.00216006095543853,946.187128712871,949.706450348005,950.046930693069,1.05739982347739,2143.96239079712,-3.5750522236798,0,2143.96239079712,85.1182651700812,85.1182651700812,-0.00012526005076103,85.1183542668552,24.8,1015.2,38.86,537.242375635227
 45138,2874.18304752475,457.314889009901,45,85.1129801980198,87.6663696039605,20.8719900990099,2.28594059405941,1842.00495049505,460.969306930693,424.734653465347,20,40,10,32,5306443.93146409,397009.578801805,0,0,0,0,0,0,0,85.1129801980197,1531.44882736525,20.8719900990099,22.3865097078492,22.6409411128702,2.28594059405941,2.30058080298926,1.80375522769469,1.87029339392694,1.48382407397841,1.50534816910566,53.5817520402896,0.000576016254783607,885.70396039604,889.687383589844,890.040075436115,1.05741850830263,2007.25292615572,-57.9173910113441,0,2007.25292615572,85.1124661307714,85.1124661307714,-0.00232139550586241,85.1126150872229,24.8,1015.2,38.84,513.070223467906
-45139,2874.1909339604,457.329784554456,45,85.1089405940594,87.6622088118813,19.444002200198,1.05643564356436,1841.4504950495,469.848514851485,448.708910891089,20,40,10,32,5306458.20871891,397028.39266592,0,0,0,0,0,0,0,85.1089405940592,1555.08988327834,19.444002200198,20.8549037226126,21.4258809910346,1.05643564356436,1.07107585249422,0.834599479433792,3.07562676758331,2.44009258393969,2.29894828242837,53.5656235851557,-0.00288008127391804,918.557425742574,918.035408293305,917.60342291372,1.05746891226373,2081.0344056925,-133.096995286994,0,2081.0344056925,85.1061253798646,85.1061253798646,-0.00530040627826275,85.105954832626,24.8,1015.2,38.82,459.673118969006
-45140,2874.19878980198,457.344721980198,45,85.1238514851485,87.677567029703,19.8127117713861,-0.00316831683168307,1841.91584158416,438.39603960396,431.30198019802,20,40,10,32,5306472.42843243,397047.25759041,0,0,0,0,0,0,0,85.1238514851484,1578.73049942246,19.8127117713861,21.2503677083477,21.7401937857677,-0.00316831683168307,0.0114718920981739,0.0182683226992833,2.80091773316262,2.22214823363809,2.27422650892419,53.5791599671431,0.00115203250956722,869.69801980198,871.672855602392,871.912927864215,1.0572830606034,1970.90543673279,-29.7213304412863,0,1970.90543673279,85.1073628075677,85.1073628075677,-0.00119813961592641,85.1067762376236,24.8,1015.2,38.8063118811881,473.612733628157
+45139,2874.1909339604,457.329784554456,45,85.1089405940594,87.6622088118813,19.444002200198,1.05643564356436,1841.4504950495,469.848514851485,448.708910891089,20,40,10,32,5306458.20871891,397028.39266592,0,0,0,0,0,0,0,85.1089405940592,1555.08988327834,19.444002200198,20.8549037226126,21.4258809910346,1.05643564356436,1.07107585249422,0.834599479433792,3.07562676758332,2.44009258393969,2.29894828242837,53.5656235851557,-0.00288008127391804,918.557425742574,918.035408293305,917.60342291372,1.05746891226373,2081.0344056925,-133.096995286994,0,2081.0344056925,85.1061253798646,85.1061253798646,-0.00530040627826275,85.105954832626,24.8,1015.2,38.82,459.673118969006
+45140,2874.19878980198,457.344721980198,45,85.1238514851485,87.677567029703,19.8127117713861,-0.00316831683168307,1841.91584158416,438.39603960396,431.30198019802,20,40,10,32,5306472.42843243,397047.25759041,0,0,0,0,0,0,0,85.1238514851484,1578.73049942246,19.8127117713861,21.2503677083477,21.7401937857677,-0.00316831683168307,0.0114718920981739,0.0182683226992835,2.80091773316262,2.22214823363809,2.27422650892419,53.5791599671431,0.00115203250956722,869.69801980198,871.672855602392,871.912927864215,1.0572830606034,1970.90543673279,-29.7213304412863,0,1970.90543673279,85.1073628075677,85.1073628075677,-0.00119813961592641,85.1067762376236,24.8,1015.2,38.8063118811881,473.612733628157
 45141,2874.20661881188,457.359693861386,45,85.1066237623762,87.6598224752475,19.4740836083168,-0.369207920792079,1842.33168316832,415.768316831683,428.357425742574,20,40,10,32,5306486.59773936,397066.164450678,0,0,0,0,0,0,0,85.1066237623761,1602.3712368262,19.4740836083168,20.8871679068941,21.4517649042095,-0.369207920792079,-0.354567711862222,-0.274406395642362,2.99787937447357,2.37841057513835,2.43679837054468,53.5912563084935,-0.00194405485989467,844.125742574258,844.920586217038,845.110834512023,1.05749784673285,1913.67709676159,2.26096785619845,0,1913.67709676159,85.0975244583863,85.0975244583863,0.000106198738678209,85.0971904761904,24.8,1015.2,38.83,460.592171711843
 45142,2874.21444366337,457.374662772277,45,85.0843168316832,87.6368463366336,19.2269554455446,0.596633663366337,1842.05445544554,432.464356435644,449.917821782178,20,40,10,32,5306500.75947037,397085.067380894,0,0,0,0,0,0,0,85.0843168316831,1626.00734606712,19.2269554455446,20.6221075562165,21.2401726400872,0.596633663366337,0.611273872296194,0.4728461797397,3.22154955220836,2.55586251686663,2.50151527491428,53.5831920809266,-0.0035280995605496,882.382178217822,883.205421037153,882.977199434229,1.05777563555989,2000.73862991176,72.6017628543271,0,2000.73862991176,85.0894872071365,85.0894872071365,0.00293271901447067,85.0896413955681,24.8,1015.2,38.86,451.369138679097
 45143,2874.22223108911,457.389683465347,45,85.0757227722773,87.6279944554455,19.8440583060396,0.722970297029703,1840.77722772277,437.658415841584,445.025742574258,20,40,9.9009900990099,32,5306514.8507866,397104.033478236,0,0,0,0,0,0,0,85.0757227722771,1649.64231647416,19.8440583060396,21.2839888196552,21.7646860421574,0.722970297029703,0.73761050595956,0.576741358478573,2.65435128736124,2.10586764289028,2.1795555294533,53.546039032493,0.00518414629305246,882.684158415842,883.23194784825,883.14411126827,1.05788161259659,2000.08076619976,-116.413420173711,0,2000.08076619976,85.0826581707674,85.0826581707674,-0.00469861342571252,85.0829860443186,24.8,1015.2,38.89,474.312081267839
 45144,2874.23001653465,457.40469990099,45,85.0697326732674,87.6218246534654,19.4474218921782,-0.483069306930693,1840.96534653465,441.878217821782,442.429702970297,20,40,9.75247524752475,32,5306528.93859064,397122.99411455,0,0,0,0,0,0,0,85.0697326732673,1673.27576130365,19.4474218921782,20.8585715553084,21.4267785396772,-0.483069306930693,-0.468429098000836,-0.360212788738086,3.0167948657712,2.39341745130531,2.37221812691269,53.5515111869135,-0.00352809956054959,884.307920792079,882.288608959906,882.591362564828,1.05795591507194,2004.02733593579,-51.024496325892,0,2004.02733593579,85.0764817174786,85.0764817174786,-0.0020123299458565,85.0765979255067,24.8,1015.2,38.92,459.5398514731
-45145,2874.23778594059,457.41973019802,45,85.0719405940595,87.6240988118812,19.4767541251485,-0.75019801980198,1839.29207920792,462.005940594059,467.847524752475,20,40,9.99009900990099,32,5306542.99643726,397141.971393119,0,0,0,0,0,0,0,85.0719405940593,1696.90641190871,19.4767541251485,20.8900322025695,21.4509003964097,-0.75019801980198,-0.735557810872122,-0.565153793112401,3.03429815786374,2.4073039389896,2.38665534785737,53.5028378133842,-0.00136803860511107,929.853465346534,929.699715714145,929.333776520509,1.05792841800103,2105.56884640247,202.725354737481,0,2105.56884640247,85.079649348103,85.079649348103,0.00812011894258324,85.0800110325317,24.8,1015.2,38.95,460.388557326054
-45146,2874.24557643564,457.434759900991,45,85.1191287128713,87.6727025742575,19.7369147415842,-0.129405940594059,1841.08415841584,458.394059405941,439.451485148515,20,40,9.96039603960396,32,5306557.09342277,397160.948535372,0,0,0,0,0,0,0,85.1191287128712,1720.54622766778,19.7369147415842,21.1690706717241,21.6759857366096,-0.129405940594059,-0.114765731664202,-0.0895728927785115,2.73727134557691,2.1716534597015,2.17739559758214,53.5549672844421,0.00244806908283033,897.845544554455,893.505911185178,893.132060348892,1.05734186324821,2033.38906233922,148.502146228798,0,2033.38906233922,85.1113811391039,85.1113811391039,0.00591989892059204,85.1115944365864,24.8,1015.2,38.98,470.101268262393
+45145,2874.23778594059,457.41973019802,45,85.0719405940595,87.6240988118812,19.4767541251485,-0.75019801980198,1839.29207920792,462.005940594059,467.847524752475,20,40,9.99009900990099,32,5306542.99643726,397141.971393119,0,0,0,0,0,0,0,85.0719405940593,1696.90641190871,19.4767541251485,20.8900322025695,21.4509003964097,-0.75019801980198,-0.735557810872122,-0.565153793112401,3.03429815786374,2.40730393898961,2.38665534785737,53.5028378133842,-0.00136803860511107,929.853465346534,929.699715714145,929.333776520509,1.05792841800103,2105.56884640247,202.725354737481,0,2105.56884640247,85.079649348103,85.079649348103,0.00812011894258324,85.0800110325317,24.8,1015.2,38.95,460.388557326054
+45146,2874.24557643564,457.434759900991,45,85.1191287128713,87.6727025742575,19.7369147415842,-0.129405940594059,1841.08415841584,458.394059405941,439.451485148515,20,40,9.96039603960396,32,5306557.09342277,397160.948535372,0,0,0,0,0,0,0,85.1191287128712,1720.54622766778,19.7369147415842,21.1690706717241,21.6759857366096,-0.129405940594059,-0.114765731664202,-0.0895728927785116,2.73727134557691,2.1716534597015,2.17739559758214,53.5549672844421,0.00244806908283033,897.845544554455,893.505911185178,893.132060348892,1.05734186324821,2033.38906233922,148.502146228798,0,2033.38906233922,85.1113811391039,85.1113811391039,0.00591989892059204,85.1115944365864,24.8,1015.2,38.98,470.101268262393
 45147,2874.25337712871,457.449772475248,45,85.1273366336634,87.6811567326733,19.0698173816832,0.163267326732673,1840.5297029703,404.121782178218,393.045544554455,20,40,9.3960396039604,32,5306571.20974013,397179.90458716,0,0,0,0,0,0,0,85.1273366336633,1744.19175888341,19.0698173816832,20.4535671930111,21.1082848297647,0.163267326732673,0.17790753566253,0.139413158962505,3.42198438160988,2.7148803619253,2.68897578154626,53.5388388293082,-0.00532815035674837,797.167326732673,801.225311243996,801.734153701084,1.05724071246226,1804.96683123144,-131.142321685799,0,1804.96683123144,85.1298178609939,85.1298178609939,-0.00520237667332121,85.1292257425741,24.8,1015.2,39.01,445.818290549703
 45148,2874.2611749505,457.464775346535,45,85.0974356435644,87.6503587128712,18.9350731575248,0.271980198019802,1843.50495049505,405.562376237624,396.669306930693,20,40,9.44554455445545,32,5306585.32101545,397198.848365977,0,0,0,0,0,0,0,85.0974356435643,1767.83232172719,18.9350731575248,20.3090456180252,20.9918179757123,0.271980198019802,0.286620406949659,0.216500013583323,3.56661175782999,2.82962256402501,2.81050485133972,53.6253852715895,-0.00223206298728648,802.231683168317,805.277306146456,805.35102310231,1.05761151179393,1819.80537621664,41.9964063253412,0,1819.80537621664,85.1029584354474,85.1029584354474,0.0016978182966863,85.1032470532766,24.8,1015.2,39.04,441.007118000703
 45149,2874.26897534654,457.479778019802,45,85.1087722772277,87.6620354455445,19.3611083609901,0.267623762376238,1840.53465346535,417.987128712871,414.270297029703,20,40,9.83168316831683,32,5306599.43712474,397217.791890242,0,0,0,0,0,0,0,85.1087722772276,1791.47409436195,19.3611083609901,20.7659949157692,21.3549856852996,0.267623762376238,0.282263971306095,0.221785816945945,3.15635413295463,2.50413879645146,2.49941711546242,53.5389828333719,0.00540015238859631,832.257425742575,830.683629055975,830.382564827912,1.05747061703355,1884.53005731204,-266.609030997171,0,1884.53005731204,85.0981358690323,85.0981358690323,-0.0107083728174704,85.0980052805279,24.8,1015.2,39.07,456.546585936915
@@ -116,7 +116,7 @@ Time,Lat,Long,Heading,v_veh_GPS,v_veh_CAN,vair_ar,beta_ar,n_eng,tq_l,tq_r,t_amb_
 45164,2874.3832649505,457.697378811881,45,70.9863465346535,73.1159369306931,17.757298679901,-0.389405940594059,1513.87128712871,-4449.70297029703,-3798.3603960396,20,40,9,32,5306806.31913061,397492.578775094,0,0,0,0,0,0,0,70.9863465346534,2135.48106641917,17.757298679901,19.0458091153291,19.1806801116006,-0.389405940594059,-0.374765731664202,-0.293204856980976,1.53410857538689,1.21710702911498,1.30123311778224,44.0367306863341,-0.0257767274015664,-8248.06336633663,-8245.60784236839,-8245.15697443631,1.26802117387998,-18419.3480471222,-18793.8566030293,0,-18419.3480471222,70.9867648269776,70.9867648269776,-0.751546689322389,70.9842845329479,24.8,1015.2,37.74,368.882476438642
 45165,2874.38967732673,457.709637029703,45,68.3389405940594,70.3891088118812,16.8680533553465,-1.22405940594059,1460.55445544554,-4413.54752475248,-3819.05841584159,20,40,9,32,5306817.92581907,397508.057045073,0,0,0,0,0,0,0,68.3389405940593,2154.82206113864,16.8680533553465,18.0920381046892,18.2720887671738,-1.22405940594059,-1.20941919701074,-0.947521875325144,1.60865252117346,1.27624753706235,1.20490080795375,42.4858069203293,-0.00748821131218689,-8232.60594059406,-8231.52080188217,-8230.77278211735,1.31711633363965,-18425.2024683429,-18286.7172316936,0,-18425.2024683429,68.3217008136456,68.3217008136456,-0.731408413118543,68.3181585671118,24.8,1015.2,37.8,334.597977322251
 45166,2874.39584732673,457.72143019802,45,65.6324455445545,67.6014189108911,16.6785544554456,-0.668118811881188,1411.72277227723,-4597.28415841584,-3977.11188118812,20,40,9,32,5306829.09387207,397522.948074492,0,0,0,0,0,0,0,65.6324455445544,2173.42816243126,16.6785544554456,17.8887887287487,17.9558124785043,-0.668118811881188,-0.653478602951331,-0.520369609371047,1.19999228739718,0.952031082615221,0.964517479559086,41.0653508360329,0.00583216457968403,-8574.39603960396,-8599.89601019508,-8635.21045085971,1.37145915533853,-19320.7895882906,-18980.6589909,0,-19320.7895882906,65.6307247328692,65.6307247328692,-0.75927877441209,65.6279438574741,24.8,1015.2,37.86,322.86394659056
-45167,2874.40175841584,457.732742178218,45,62.7664851485148,64.6494797029703,15.790900990099,-1.04960396039604,1541.4504950495,-5092.67920792079,-4377.32079207921,20,40,9,32,5306839.79301422,397537.231226148,0,0,0,0,0,0,0,62.7664851485148,2191.26763864139,15.790900990099,16.9367250862823,17.0358705075493,-1.04960396039604,-1.03496375146618,-0.820601612581548,1.23434020283245,0.979281493689398,0.979763815517441,44.838977325184,0.0158404470065492,-9470,-9444.90919517694,-9397.5857701219,1.43417673045519,-24370.0165945442,-21084.3084785372,0,-24370.0165945442,62.7560593079109,62.7560593079109,-0.84350935093509,62.7491881140847,24.8,1015.2,37.92,290.618746444648
+45167,2874.40175841584,457.732742178218,45,62.7664851485148,64.6494797029703,15.790900990099,-1.04960396039604,1541.4504950495,-5092.67920792079,-4377.32079207921,20,40,9,32,5306839.79301422,397537.231226148,0,0,0,0,0,0,0,62.7664851485148,2191.26763864139,15.790900990099,16.9367250862823,17.0358705075493,-1.04960396039604,-1.03496375146618,-0.820601612581547,1.23434020283245,0.979281493689398,0.979763815517441,44.838977325184,0.0158404470065492,-9470,-9444.90919517694,-9397.5857701219,1.43417673045519,-24370.0165945442,-21084.3084785372,0,-24370.0165945442,62.7560593079109,62.7560593079109,-0.84350935093509,62.7491881140847,24.8,1015.2,37.92,290.618746444648
 45168,2874.40741455446,457.743498712871,45,59.7415346534653,61.5337806930693,14.9815742574257,-0.330693069306931,1482.83663366337,-5125.1801980198,-4422.53465346534,20,40,9,32,5306850.03221951,397550.814152495,0,0,0,0,0,0,0,59.7415346534653,2208.27265602312,14.9815742574257,16.0686717443697,16.1740880203247,-0.330693069306931,-0.316052860377073,-0.249128293820254,1.15171645068037,0.913730755541163,0.921149306732137,43.1339692110246,-0.0156244409110053,-9547.71485148515,-9545.83835898442,-9546.68012152486,1.50677332926481,-24817.2786866948,-20875.6126584901,0,-24817.2786866948,59.7336993432016,59.7336993432016,-0.83487866113344,59.7269369541011,24.8,1015.2,37.98,261.907116695561
 45169,2874.4127609901,457.753765049505,45,56.6991089108911,58.4000821782178,13.7428514851485,-1.01851485148515,1417.82178217822,-5125.74752475247,-4363.08811881188,20,40,9,32,5306859.70861957,397563.776322734,0,0,0,0,0,0,0,56.699108910891,2224.4404517327,13.7428514851485,14.7400643985741,14.9452975752574,-1.01851485148515,-1.00387464255529,-0.790367418347613,1.42657226261517,1.13179155388757,1.09553625535213,41.2427638425063,-0.0196565546944906,-9488.83564356435,-9486.74860307813,-9482.1599727601,1.58765433988556,-24846.967128136,-20645.8574494984,0,-24846.967128136,56.7128878541319,56.7128878541319,-0.825648901523806,56.7222476950776,24.8,1015.2,38.04,223.910951940036
 45170,2874.41779772277,457.763545841584,45,53.7528613861386,55.3654472277228,13.8579504950495,-0.72049504950495,1343.87623762376,-5074.95346534653,-4331.70198019802,20,40,9,32,5306868.82210731,397576.123539425,0,0,0,0,0,0,0,53.7528613861385,2239.77952629265,13.8579504950495,14.8635152573705,14.8743156024295,-0.72049504950495,-0.705854840575094,-0.562855077194773,1.01098368284447,0.802078396830702,0.840606659525458,39.0917751430806,-0.0168484754524205,-9406.65544554456,-9405.12926183708,-9404.43575560411,1.6747477482203,-24626.8684134598,-20775.0795979404,0,-24626.8684134598,53.7501174394666,53.7501174394666,-0.830844470585678,53.7491466982815,24.8,1015.2,38.0873762376238,221.535527797337
@@ -128,7 +128,7 @@ Time,Lat,Long,Heading,v_veh_GPS,v_veh_CAN,vair_ar,beta_ar,n_eng,tq_l,tq_r,t_amb_
 45176,2874.44163990099,457.809924851485,45,31.1417920792079,32.0760458415842,7.24744554455445,-3.20831683168317,1473.62871287129,-8629.83663366337,-7364.39405940594,20,40,9,32,5306911.96083954,397634.670252108,0,0,0,0,0,0,0,31.1417920792079,2312.43131493401,7.24744554455445,7.77333686297471,7.95241639853102,-3.20831683168317,-3.19367662275332,-2.48279131785099,1.14147282279724,0.905603826521778,0.893922075249971,42.8661216525502,0.0168484754524205,-15994.2306930693,-15153.4866777767,-12699.9426522769,2.89587391613022,-79373.959845754,-33158.1217722004,0,-79373.959845754,31.1717126752279,31.1717126752279,-1.3265733751593,31.5020736324788,24.8,1015.2,37.86,63.5705215550732
 45177,2874.44422316832,457.815143366337,45,27.2160891089109,28.0325717821782,6.59312871287129,-3.38326732673267,1549.5,-4029.27821782178,-3389.72475247525,20,40,9,32,5306916.63062294,397641.254540532,0,0,0,0,0,0,0,27.2160891089109,2320.47444045656,6.59312871287129,7.0715412970033,7.17054725602371,-3.38326732673267,-3.36862711780282,-2.63600625077902,0.763316945987918,0.605588440942114,0.595982832142257,45.0731279327536,0.0809302837970968,-7419.00297029703,-7902.90266640525,-8109.6045695338,3.30898024591663,-43552.1301192686,-18276.7471828116,0,-43552.1301192686,27.3333301637094,27.3333301637094,-0.732855711313703,28.2479061051237,24.8,1015.2,37.82,51.5993856882709
 45178,2874.4465339604,457.819916633663,45,25.6937425742574,26.4645548514852,6.31614851485149,-2.73742574257426,1732.19801980198,-598.359405940594,-453.780198019802,20,40,9,32,5306920.80553367,397647.275331921,0,0,0,0,0,0,0,25.6937425742574,2327.77597959298,6.31614851485149,6.77446277873845,6.84771638458634,-2.73742574257426,-2.7227855336444,-2.13486811889724,0.682939953329912,0.541820201644898,0.520815953915938,50.3875979034508,0.0100802844587131,-1052.1396039604,-1352.97670816587,-3179.59594320281,3.50289973615024,-7304.17538317663,-4521.0286954165,0,-7304.17538317663,25.7636887560043,25.7636887560043,-0.181093356860434,26.4150676439111,24.8,1015.2,37.78,47.0604217283874
-45179,2874.44861118812,457.82473,45,25.5655544554455,26.3325210891089,6.24626732673267,-3.26811881188119,1733.5396039604,499.037623762376,584.19603960396,20,40,9,32,5306924.54692217,397653.338379858,0,0,0,0,0,0,0,25.5655544554455,2334.8845727448,6.24626732673267,6.69951085087739,6.78077693304773,-3.26811881188119,-3.25347860295134,-2.5490095433933,0.689688712266446,0.547174426287953,0.591731646701129,50.4266230047124,0.00252007111467828,1083.23366336634,1097.31051857661,-106.696498067036,3.52037462040078,7695.80167535211,636.892209845946,0,7695.80167535211,25.5868995196549,25.5868995196549,0.0254114520362858,25.7792540608459,24.8,1015.2,37.74,46.1272104212484
+45179,2874.44861118812,457.82473,45,25.5655544554455,26.3325210891089,6.24626732673267,-3.26811881188119,1733.5396039604,499.037623762376,584.19603960396,20,40,9,32,5306924.54692217,397653.338379858,0,0,0,0,0,0,0,25.5655544554455,2334.8845727448,6.24626732673267,6.69951085087739,6.78077693304773,-3.26811881188119,-3.25347860295134,-2.5490095433933,0.689688712266446,0.547174426287952,0.591731646701129,50.4266230047124,0.00252007111467828,1083.23366336634,1097.31051857661,-106.696498067036,3.52037462040078,7695.80167535211,636.892209845946,0,7695.80167535211,25.5868995196549,25.5868995196549,0.0254114520362858,25.7792540608459,24.8,1015.2,37.74,46.1272104212484
 45180,2874.4503819802,457.829818712871,45,25.8008217821782,26.5748464356436,5.11586138613861,-0.799108910891089,1552.06930693069,818.357425742574,956.924752475247,20,40,9,32,5306927.71460784,397659.73427844,0,0,0,0,0,0,0,25.8008217821782,2342.01424961498,5.11586138613861,5.48708005520929,5.83278692755876,-0.799108910891089,-0.784468701961231,-0.607839955400034,1.75120281494096,1.38934185602415,1.2771334256097,45.1478660418117,-0.11736331191216,1775.28217821782,1379.92192922262,255.190087624343,3.48830195742934,11026.486155518,1442.81213395944,0,11026.486155518,25.7902693853543,25.7902693853543,0.060309991395182,25.6602499597148,24.8012623762376,1015.2,37.710099009901,34.7359059750623
 45181,2874.45178465347,457.835206633663,45,25.7219603960396,26.4936192079208,5.26631683168317,-1.71475247524752,1283.69801980198,-925.046534653465,-791.016831683168,20,40,9.99009900990099,32,5306930.19380593,397666.490720078,0,0,0,0,0,0,0,25.7219603960396,2349.19211149617,5.26631683168317,5.64845289394217,5.95621195264147,-1.71475247524752,-1.70011226631767,-1.24204132873657,1.56310192686216,1.24010932011596,1.38625103753342,37.3412617447932,-0.0159844510702451,-1716.06336633663,-1313.84217233605,-580.26374929002,3.49916669991311,-8962.13910919178,-3219.27418194063,0,-8962.13910919178,25.6984892657582,25.6984892657582,-0.128467797274774,25.4629181748683,24.81,1015.2,37.74,36.0479755952468
 45182,2874.45274772277,457.840700594059,45,25.0728712871287,25.8250574257426,4.33275247524753,-2.24990099009901,1260.51485148515,-1016.42673267327,-863.5,20,40,10,32,5306931.85636978,397673.364777811,0,0,0,0,0,0,0,25.0728712871287,2356.25003490101,4.33275247524753,4.64714696053049,5.12460767405381,-2.24990099009901,-2.23526078116916,-1.60361480721046,2.34761953321057,1.86251760885805,1.87367569179205,36.6668907145053,-0.0105842986816488,-1879.92673267327,-1878.57382609548,-1548.11003080412,3.58988931180467,-9899.42176805577,-5046.63059064253,0,-9899.42176805577,25.0666687579649,25.0666687579649,-0.201664597152782,25.0406724119838,24.82,1015.2,37.78,27.0148381681835
@@ -151,28 +151,28 @@ Time,Lat,Long,Heading,v_veh_GPS,v_veh_CAN,vair_ar,beta_ar,n_eng,tq_l,tq_r,t_amb_
 45199,2874.47081871287,457.844205049505,225,24.5100792079208,25.2453815841584,7.15057425742574,-1.98475247524752,984.772277227723,3484.88316831683,2912.25643564356,20,40,10,32,5306965.25271214,397678.323112711,0,0,0,0,0,0,0,24.5100792079207,2457.86493325084,7.15057425742574,7.66943637244018,7.4899064949124,-1.98475247524752,-1.97011226631767,-1.59607575609676,1.00744199546936,0.799268548382995,0.773889843850871,28.6458643666436,0.122259450077821,6397.1396039604,6731.81096951279,8490.8082004494,3.67237171876595,26508.3069676447,7577.82214049884,0,26508.3069676447,24.5124107440447,24.5124107440447,0.301187792046527,24.8662151062821,24.9,1015.2,38.01,56.2859621532088
 45200,2874.46851930693,457.839791584158,225,26.1626633663366,26.9475432673268,5.69862376237624,0.875841584158416,1324.0198019802,5862.39900990099,4873.83366336633,20,40,9.81188118811881,32,5306961.09091205,397672.7508741,0,0,0,0,0,0,0,26.1626633663366,2464.85549235425,5.69862376237624,6.11212900986703,6.34931711044051,0.875841584158416,0.890481793088273,0.650538487560728,1.50764087705684,1.19610850124098,1.08349744729835,38.5141748435963,0.0470893288285599,10736.2326732673,10396.8401431232,9777.02220581832,3.44394000645596,56928.4367845015,19093.5153784425,0,56928.4367845015,26.2639279482403,26.2639279482403,0.762841878247227,26.8964021221318,24.9,1015.2,38.0025247524752,41.142813173012
 45201,2874.46598425743,457.834898118812,225,29.5485544554455,30.4350110891089,7.83582178217822,1.28178217821782,1497.23762376238,6791.43564356435,5420.78514851485,20,40,10,32,5306956.50322821,397666.573074404,0,0,0,0,0,0,0,29.5485544554455,2472.58980409793,7.83582178217822,8.40440703371309,8.36213141808531,1.28178217821782,1.29642238714768,1.05242483986824,0.956113900209533,0.758546668240927,0.867093092130163,43.5528770323159,0.0478813511788874,12212.2207920792,12177.3602293893,11315.4473391726,3.04922593681742,64800.3883334717,23845.0818237008,0,64800.3883334717,29.5412907558082,29.5412907558082,0.952888605692251,29.5841829739488,24.9,1015.2,38.01,70.9106444296427
-45202,2874.46313029703,457.829386534653,225,32.9182871287129,33.9058357425743,8.67528712871287,0.330891089108911,1666.69801980198,6418.93861386138,5111.90594059406,20,40,10,32,5306951.33847413,397659.614956082,0,0,0,0,0,0,0,32.9182871287128,2481.27310167768,8.67528712871287,9.30478591663008,9.26951045732557,0.330891089108911,0.345531298038768,0.275205414966776,0.877697556643588,0.696333938006017,0.821898042304541,48.4822801366903,0.0520574690260685,11530.8445544554,11514.8547397314,11444.3172917211,2.73633493320222,61140.5899592424,22849.2681183267,0,61140.5899592424,32.9093810410744,32.9093810410744,0.912978302780777,32.8488633621918,24.9,1015.2,38.02,86.2695406298593
+45202,2874.46313029703,457.829386534653,225,32.9182871287129,33.9058357425743,8.67528712871287,0.330891089108911,1666.69801980198,6418.93861386138,5111.90594059406,20,40,10,32,5306951.33847413,397659.614956082,0,0,0,0,0,0,0,32.9182871287128,2481.27310167768,8.67528712871287,9.30478591663008,9.26951045732557,0.330891089108911,0.345531298038768,0.275205414966776,0.877697556643587,0.696333938006017,0.821898042304541,48.4822801366903,0.0520574690260685,11530.8445544554,11514.8547397314,11444.3172917211,2.73633493320222,61140.5899592424,22849.2681183267,0,61140.5899592424,32.9093810410744,32.9093810410744,0.912978302780777,32.8488633621918,24.9,1015.2,38.02,86.2695406298593
 45203,2874.45996653465,457.823313069307,225,36.0686534653465,37.1507130693069,7.35616886689109,0.598712871287129,1819.0396039604,5802.74752475248,4778.56336633663,20,40,10,32,5306945.61228282,397651.946854865,0,0,0,0,0,0,0,36.0686534653465,2490.86647802532,7.35616886689109,7.88994939965247,8.32797824015839,0.598712871287129,0.613353080216986,0.438043882756526,2.28582672854948,1.81349340150507,1.60747658297196,52.9137171888043,0.042553200822139,10581.3108910891,10559.406460151,10317.273121847,2.49666078680037,55884.5092387569,20613.6504337394,0,55884.5092387569,36.0483794726007,36.0483794726007,0.823737324227467,35.958878246179,24.9,1015.2,38.03,70.8355137410679
-45204,2874.45652811881,457.816734950495,225,38.7888514851485,39.952517029703,8.63192079207921,1.42861386138614,1879.62871287129,4664.68910891089,4026.22376237624,20,40,10,32,5306939.38849969,397643.641195379,0,0,0,0,0,0,0,38.7888514851485,2501.27992134215,8.63192079207921,9.25827281886422,9.56938905852837,1.42861386138614,1.443254070316,1.07111658640907,1.92910279263058,1.53048135344912,1.57896822462415,54.6761829243785,-0.0851784036761259,8690.91287128713,8860.42848740319,9302.45898007537,2.32102340335087,44106.2726947467,17257.8526832297,0,44106.2726947467,38.7759193216351,38.7759193216351,0.691726845951919,38.7166993713177,24.9,1015.2,38.04,93.2205681292566
+45204,2874.45652811881,457.816734950495,225,38.7888514851485,39.952517029703,8.63192079207921,1.42861386138614,1879.62871287129,4664.68910891089,4026.22376237624,20,40,10,32,5306939.38849969,397643.641195379,0,0,0,0,0,0,0,38.7888514851485,2501.27992134215,8.63192079207921,9.25827281886422,9.56938905852837,1.42861386138614,1.443254070316,1.07111658640908,1.92910279263058,1.53048135344912,1.57896822462415,54.6761829243785,-0.0851784036761259,8690.91287128713,8860.42848740319,9302.45898007537,2.32102340335087,44106.2726947467,17257.8526832297,0,44106.2726947467,38.7759193216351,38.7759193216351,0.691726845951919,38.7166993713177,24.9,1015.2,38.04,93.2205681292566
 45205,2874.45286980198,457.809702673268,225,41.2134158415842,42.4498183168317,9.27516831683169,0.38990099009901,1485.24257425743,4705.32178217822,4292.95742574257,20,40,10,32,5306932.76743213,397634.762661771,0,0,0,0,0,0,0,41.2134158415841,2512.39178435095,9.27516831683169,9.94819586353376,10.2557506774424,0.38990099009901,0.404541199028867,0.313153703503689,1.67048101766316,1.32530006103918,1.32819117410494,43.2039551859808,-0.0272887700703734,8998.27920792079,8878.22796784629,8839.53963946915,2.18446338405739,34018.5408223107,17041.8426911593,0,34018.5408223107,41.2126435643564,41.2126435643564,0.682083183565881,41.22333764226,24.9,1015.2,38.05,105.541327241643
 45206,2874.44898336634,457.802232376237,225,43.6994059405941,45.0103881188119,10.5688415841584,0.344851485148515,1553.35643564356,4700.98514851485,4217.97425742574,20,40,10,32,5306925.73350379,397625.331079804,0,0,0,0,0,0,0,43.699405940594,2524.18775220024,10.5688415841584,11.3357410386902,11.4991937210205,0.344851485148515,0.359491694078372,0.287058708910794,1.310717154003,1.03987624273355,1.027244662362,45.1853070983726,0.0175684957709,8918.95940594059,8894.32089010881,8822.94555518944,2.0601364136278,33204.689450247,17278.8495739769,0,33204.689450247,43.6939368689344,43.6939368689344,0.690918101711158,43.6855908093599,24.9,1015.2,38.06,132.905373300513
 45207,2874.44486792079,457.79433,225,46.1109504950495,47.494279009901,11.5632871287129,0.476237623762376,1638.42079207921,4527.71881188119,3982.71089108911,20,40,10,32,5306918.28493541,397615.35381482,0,0,0,0,0,0,0,46.1109504950495,2536.6688808031,11.5632871287129,12.4023458392623,12.4835905157179,0.476237623762376,0.490877832692233,0.385963650900154,0.90420638604304,0.717365097803522,0.827086130415633,47.6597289248593,0.0317528960449463,8510.4297029703,8514.78450151946,8515.48062652568,1.95226516718839,31666.8274150085,16188.0106510781,0,31666.8274150085,46.108220076463,46.108220076463,0.647096145258087,46.0889262339167,24.9,1015.2,38.07,156.050678861192
 45208,2874.44051940594,457.786035445545,225,48.3670792079208,49.8180915841584,12.221801980198,0.415247524752475,1714.93564356436,4349.67524752475,3768.0801980198,20,40,10,32,5306910.41332827,397604.880423664,0,0,0,0,0,0,0,48.3670792079207,2549.79862070959,12.221801980198,13.1086440430083,13.173145717722,0.415247524752475,0.429887733682334,0.324792885227212,1.07467042167502,0.852605184005809,0.858439233270445,49.8854557333432,0.0165604673250287,8117.75544554456,8116.99350063719,8129.74556166834,1.86109713236741,30140.7493920717,15166.4264878952,0,30140.7493920717,48.3651001862562,48.3651001862562,0.606435643564358,48.3508960554145,24.9,1015.2,38.08,174.09418896741
-45209,2874.43596425743,457.777362475248,225,50.4887722772277,52.0034354455445,13.160504950495,0.0650495049504951,1791.98514851485,4139.37920792079,3678.26336633663,20,40,10,32,5306902.16734876,397593.928911616,0,0,0,0,0,0,0,50.4887722772276,2563.53484950497,13.160504950495,14.1154614599223,14.0936928509746,0.0650495049504951,0.0796897138803528,0.0708291954535415,1.01318425648087,0.803824253469483,0.799790085743544,52.1267349807062,0.0324009143315779,7817.64257425743,7827.11997843348,7825.26319784885,1.78282655473486,29056.1768507656,14330.6238311795,0,29056.1768507656,50.4818949122634,50.4818949122634,0.572791066235339,50.4739531004125,24.9,1015.2,38.09,198.953153856656
-45210,2874.43122089109,457.768328415841,225,52.487702970297,54.0623340594059,13.720495049505,-0.162574257425743,1859.72277227723,3964.02772277228,3577.89306930693,20,40,10,32,5306893.58072898,397582.521459705,0,0,0,0,0,0,0,52.4877029702969,2577.84310759078,13.720495049505,14.7160857285386,14.6850387574141,-0.162574257425743,-0.147934048495885,-0.121645056586826,1.09783206143204,0.870980802919863,0.934861983958128,54.0971425842572,0.0228246440958004,7541.92079207921,7534.04854426037,7532.63520631085,1.71488316960796,27982.8834276243,13371.8516345278,0,27982.8834276243,52.4836234682873,52.4836234682873,0.534569050964493,52.4696317086905,24.9,1015.2,38.1025247524753,216.231962679891
+45209,2874.43596425743,457.777362475248,225,50.4887722772277,52.0034354455445,13.160504950495,0.0650495049504951,1791.98514851485,4139.37920792079,3678.26336633663,20,40,10,32,5306902.16734876,397593.928911616,0,0,0,0,0,0,0,50.4887722772276,2563.53484950497,13.160504950495,14.1154614599223,14.0936928509746,0.0650495049504951,0.0796897138803528,0.0708291954535416,1.01318425648087,0.803824253469483,0.799790085743544,52.1267349807062,0.0324009143315779,7817.64257425743,7827.11997843348,7825.26319784885,1.78282655473486,29056.1768507656,14330.6238311795,0,29056.1768507656,50.4818949122634,50.4818949122634,0.572791066235339,50.4739531004125,24.9,1015.2,38.09,198.953153856656
+45210,2874.43122089109,457.768328415841,225,52.487702970297,54.0623340594059,13.720495049505,-0.162574257425743,1859.72277227723,3964.02772277228,3577.89306930693,20,40,10,32,5306893.58072898,397582.521459705,0,0,0,0,0,0,0,52.4877029702969,2577.84310759078,13.720495049505,14.7160857285386,14.6850387574141,-0.162574257425743,-0.147934048495885,-0.121645056586825,1.09783206143204,0.870980802919863,0.934861983958128,54.0971425842572,0.0228246440958004,7541.92079207921,7534.04854426037,7532.63520631085,1.71488316960796,27982.8834276243,13371.8516345278,0,27982.8834276243,52.4836234682873,52.4836234682873,0.534569050964493,52.4696317086905,24.9,1015.2,38.1025247524753,216.231962679891
 45211,2874.42630534653,457.758949603961,225,54.3367524752475,55.9668550495049,13.6940099009901,-0.246831683168317,1930.71782178218,3786.40495049505,3425.83861386139,20,40,10,32,5306884.68282124,397570.678937916,0,0,0,0,0,0,0,54.3367524752474,2592.68613102312,13.6940099009901,14.6876787567296,14.7685058897794,-0.246831683168317,-0.232191474238459,-0.198150727444659,1.65582373397578,1.31367149491951,1.21707851607184,56.1623048617202,0.0115923271275201,7212.24356435644,7143.20675423978,7075.85786655503,1.65648541174825,26838.2724579868,12527.1126877022,0,26838.2724579868,54.3379287324771,54.3379287324771,0.500928558202359,54.3292687422831,24.9,1015.2,38.13,219.980965396321
-45212,2874.42122752475,457.749253168317,225,56.0449108910891,57.7262582178218,13.7551881188119,-0.0832673267326732,1802.9900990099,3392.62871287129,3101.67227722772,20,40,10,32,5306875.49136826,397558.435455578,0,0,0,0,0,0,0,56.044910891089,2608.02631718923,13.7551881188119,14.7532962067513,14.9186075715967,-0.0832673267326732,-0.0686271178028157,-0.0570332256099655,1.43029941913038,1.13474854693621,1.12176105484604,52.4468560143022,-0.139971949912417,6494.30099009901,6525.13121262621,6628.9422295739,1.60594780049635,21738.7913533332,11010.0600835623,0,21738.7913533332,56.0392375257327,56.0392375257327,0.441993704320923,56.0321594282419,24.9,1015.2,38.16,223.186945851814
+45212,2874.42122752475,457.749253168317,225,56.0449108910891,57.7262582178218,13.7551881188119,-0.0832673267326732,1802.9900990099,3392.62871287129,3101.67227722772,20,40,10,32,5306875.49136826,397558.435455578,0,0,0,0,0,0,0,56.044910891089,2608.02631718923,13.7551881188119,14.7532962067513,14.9186075715967,-0.0832673267326732,-0.0686271178028157,-0.0570332256099654,1.43029941913038,1.13474854693621,1.12176105484604,52.4468560143022,-0.139971949912417,6494.30099009901,6525.13121262621,6628.9422295739,1.60594780049635,21738.7913533332,11010.0600835623,0,21738.7913533332,56.0392375257327,56.0392375257327,0.441993704320923,56.0321594282419,24.9,1015.2,38.16,223.186945851814
 45213,2874.41600227723,457.739265643564,225,57.652297029703,59.381865940594,13.9970693069307,-0.926930693069307,1469.97524752475,3418.13168316832,3095.45049504951,20,40,10,32,5306866.03329575,397545.824545242,0,0,0,0,0,0,0,57.6522970297029,2623.81637769529,13.9970693069307,15.0127288502262,15.2166962207056,-0.926930693069307,-0.912290484139449,-0.702415835337597,1.64610936718196,1.30596446277208,1.22586347358974,42.7598466535426,0.0138243901148066,6513.58217821782,6583.08433486913,6569.94299757541,1.56118527284735,17392.3902725288,11454.170461413,0,17392.3902725288,57.6512558572688,57.6512558572688,0.458033798429343,57.6513658024316,24.9,1015.2,38.19,232.795655788008
 45214,2874.41062623762,457.728988811881,225,59.2541782178218,61.0318035643564,14.0293635863366,-0.748316831683168,1516.28217821782,3457.95148514852,3083.00495049505,20,40,10,32,5306856.30233101,397532.848312214,0,0,0,0,0,0,0,59.2541782178217,2640.05909309683,14.0293635863366,15.0473664768253,15.335581253281,-0.748316831683168,-0.733676622753309,-0.585044688519887,1.95074717336239,1.54765323316622,1.56782404535954,44.1068606653541,0.00669618896185943,6540.95643564356,6528.55153416331,6519.1833263658,1.51895832103898,17529.031379261,11046.9048978016,0,17529.031379261,59.2627591412606,59.2627591412606,0.441811260333958,59.26554839745,24.9,1015.2,38.22,236.51361496597
-45215,2874.40508881188,457.718446831683,225,60.8792178217821,62.7055943564356,15.9201188118812,0.0167326732673266,1552.24257425743,3447.32673267327,3007.01386138614,20,40,10,32,5306846.2783181,397519.536492563,0,0,0,0,0,0,0,60.8792178217821,2656.74639947747,15.9201188118812,17.0753192504244,17.0377244556757,0.0167326732673266,0.0313728821971835,0.0219138901425549,1.11763680980004,0.88669318393075,1.04936706689387,45.1529061840411,0.0172804876435082,6454.34059405941,6449.96931673365,6447.44948371873,1.4784096826668,17232.5267587009,10956.2648364481,0,17232.5267587009,60.8682620331339,60.8682620331339,0.438084773823912,60.8617248170387,24.9,1015.2,38.25,290.644215286717
+45215,2874.40508881188,457.718446831683,225,60.8792178217821,62.7055943564356,15.9201188118812,0.0167326732673266,1552.24257425743,3447.32673267327,3007.01386138614,20,40,10,32,5306846.2783181,397519.536492563,0,0,0,0,0,0,0,60.8792178217821,2656.74639947747,15.9201188118812,17.0753192504244,17.0377244556757,0.0167326732673266,0.0313728821971835,0.0219138901425551,1.11763680980004,0.88669318393075,1.04936706689387,45.1529061840411,0.0172804876435082,6454.34059405941,6449.96931673365,6447.44948371873,1.4784096826668,17232.5267587009,10956.2648364481,0,17232.5267587009,60.8682620331339,60.8682620331339,0.438084773823912,60.8617248170387,24.9,1015.2,38.25,290.644215286717
 45216,2874.39938722772,457.707647722772,225,62.406603960396,64.2788020792079,17.3235940594059,0.55990099009901,1590.28217821782,3370.11584158416,2945.97425742574,20,40,10,32,5306835.95594662,397505.89897966,0,0,0,0,0,0,0,62.4066039603959,2673.87195770079,17.3235940594059,18.5806338900154,18.3195510979687,0.55990099009901,0.574541199028867,0.462939209698137,1.64910604762599,1.30834192215856,1.24980664141022,46.2594334094804,0.0116643291593681,6316.0900990099,6319.53065385747,6321.45566178425,1.44222024540143,16854.9168935499,10630.8816667473,0,16854.9168935499,62.4074794627977,62.4074794627977,0.425123081615104,62.4073032530861,24.9,1015.2,38.28,335.907076614014
 45217,2874.39351980198,457.696608712871,225,63.9138712871287,65.8312874257426,17.416297029703,0.430594059405941,1628.27722772277,3298.22079207921,2881.23564356436,20,40,10,32,5306825.33171977,397491.957170795,0,0,0,0,0,0,0,63.9138712871286,2691.42031966449,17.416297029703,18.6800636010615,18.4848164729124,0.430594059405941,0.445234268335798,0.356059462380754,1.42107034580406,1.12742652931771,1.1046412006085,47.3646645983465,0.00266407517837418,6179.45643564356,6180.64505440643,6178.80950351579,1.40819939590407,16486.0559300528,10028.0524925934,0,16486.0559300528,63.9068815802372,63.9068815802372,0.401096297748579,63.9020161308492,24.9,1015.2,38.31,342.03283539063
-45218,2874.38749851485,457.685334356436,225,65.3481881188118,67.3086337623762,17.832396039604,-0.0725742574257427,1666.39603960396,3181.63465346535,2858.71089108911,20,40,10,32,5306814.42773038,397477.717128922,0,0,0,0,0,0,0,65.3481881188118,2709.37395431795,17.832396039604,19.1263557121821,18.9217850509987,-0.0725742574257427,-0.0579340484958851,-0.0455390314893696,1.42286033854806,1.12884664571999,1.14510772237289,48.4734958888049,0.0210245932996017,6040.34554455446,6034.02049799039,6034.85478222033,1.37729270538438,16129.5820920676,9927.65949419265,0,16129.5820920676,65.3392094892656,65.3392094892656,0.396904170615086,65.3378044072221,24.9,1015.2,38.34,358.466396590664
+45218,2874.38749851485,457.685334356436,225,65.3481881188118,67.3086337623762,17.832396039604,-0.0725742574257427,1666.39603960396,3181.63465346535,2858.71089108911,20,40,10,32,5306814.42773038,397477.717128922,0,0,0,0,0,0,0,65.3481881188118,2709.37395431795,17.832396039604,19.1263557121821,18.9217850509987,-0.0725742574257427,-0.0579340484958851,-0.0455390314893695,1.42286033854806,1.12884664571999,1.14510772237289,48.4734958888049,0.0210245932996017,6040.34554455446,6034.02049799039,6034.85478222033,1.37729270538438,16129.5820920676,9927.65949419265,0,16129.5820920676,65.3392094892656,65.3392094892656,0.396904170615086,65.3378044072221,24.9,1015.2,38.34,358.466396590664
 45219,2874.38134386139,457.673815742574,225,66.7357623762376,68.7378352475247,17.9777326732673,0.420693069306931,1700.53465346535,3097.23168316832,2796.73564356436,20,40,10,32,5306803.28214184,397463.168426794,0,0,0,0,0,0,0,66.7357623762375,2727.72213787131,17.9777326732673,19.28223830627,19.1241663900985,0.420693069306931,0.435333278236788,0.346994453893502,1.36458948672868,1.08261663013977,1.12364569078828,49.4665479120518,0.00136803860511106,5893.96732673267,5900.79367709048,5901.94740842655,1.3486493303157,15728.3139460661,9577.60305331699,0,15728.3139460661,66.7352386040583,66.7352386040583,0.383090165452184,66.7353176724663,24.9,1015.2,38.37,365.977172288194
 45220,2874.3750529703,457.662069405941,225,68.0813168316832,70.1237563366337,18.8674653465347,0.539405940594059,1734.61386138614,3035.05643564356,2757.46138613861,20,40,10,32,5306791.88927174,397448.331559714,0,0,0,0,0,0,0,68.0813168316831,2746.45131652917,18.8674653465347,20.2365320287663,19.9589568527297,0.539405940594059,0.554046149523917,0.449537595380095,1.69640902063804,1.34587041386684,1.3494375433388,50.4578718865344,0.0111603149364324,5792.51782178218,5792.33252622292,5792.54453513423,1.32198539898413,15454.7391788151,9210.01060884935,0,15454.7391788151,68.0850785217134,68.0850785217134,0.368293141195313,68.0852241523239,24.9,1015.2,38.3949504950495,398.664510044889
-45221,2874.36863990099,457.650088910891,225,69.4014851485149,71.4835297029703,19.3718712871287,1.02405940594059,1767.9504950495,2961.98712871287,2732.10792079208,20,40,10,32,5306780.27530768,397433.198971652,0,0,0,0,0,0,0,69.4014851485147,2765.54914620464,19.3718712871287,20.7775388245841,20.4641262497157,1.02405940594059,1.03869961487045,0.83712031370356,1.82875755452096,1.45087102038606,1.40834492967633,51.4275952514626,0.0101522864905611,5694.09504950495,5693.81425350456,5693.25536041444,1.29683560083211,15189.7543339137,8977.11274552959,0,15189.7543339137,69.4052031173414,69.4052031173414,0.358987136337403,69.401521398243,24.9,1015.2,38.39,419.130429355509
+45221,2874.36863990099,457.650088910891,225,69.4014851485149,71.4835297029703,19.3718712871287,1.02405940594059,1767.9504950495,2961.98712871287,2732.10792079208,20,40,10,32,5306780.27530768,397433.198971652,0,0,0,0,0,0,0,69.4014851485147,2765.54914620464,19.3718712871287,20.7775388245841,20.4641262497157,1.02405940594059,1.03869961487045,0.837120313703561,1.82875755452096,1.45087102038606,1.40834492967633,51.4275952514626,0.0101522864905611,5694.09504950495,5693.81425350456,5693.25536041444,1.29683560083211,15189.7543339137,8977.11274552959,0,15189.7543339137,69.4052031173414,69.4052031173414,0.358987136337403,69.401521398243,24.9,1015.2,38.39,419.130429355509
 45222,2874.36211613862,457.637867227723,225,70.7019405940594,72.8229988118812,19.282198019802,1.40534653465347,1797.19801980198,2880.23366336634,2711.2504950495,20,40,10,32,5306768.4616821,397417.762282025,0,0,0,0,0,0,0,70.7019405940593,2785.00809854238,19.282198019802,20.6813586587244,20.4621925830527,1.40534653465347,1.41998674358332,1.1401656590532,1.49070116068547,1.18266913443371,1.20408559718059,52.278371259778,0.00640818083446762,5591.48415841584,5592.452357612,5592.25917318786,1.272983992151,14884.1048817908,8715.54483867583,0,14884.1048817908,70.6822437996274,70.6822437996274,0.348560598634117,70.6803041483691,24.9,1015.2,38.38,418.975684195444
-45223,2874.35549108911,457.625405445544,225,71.9169900990099,74.0744998019802,19.5907722772277,0.0901980198019802,1828.82673267327,2836.93267326733,2648.89504950495,20,40,10,32,5306756.46579635,397402.023153668,0,0,0,0,0,0,0,71.9169900990098,2804.81671969199,19.5907722772277,21.0123237740145,20.794410701994,0.0901980198019802,0.104838228731838,0.0852525221892094,1.55834306368398,1.23633380779716,1.22865364497374,53.1984132227311,0.0045361280064209,5485.82772277228,5487.09985295559,5487.19769504951,1.25147821081285,14608.7908218046,8562.53810219915,0,14608.7908218046,71.9194464268208,71.9194464268208,0.342458255726572,71.917902891089,24.9,1015.2,38.37,432.742795883776
+45223,2874.35549108911,457.625405445544,225,71.9169900990099,74.0744998019802,19.5907722772277,0.0901980198019802,1828.82673267327,2836.93267326733,2648.89504950495,20,40,10,32,5306756.46579635,397402.023153668,0,0,0,0,0,0,0,71.9169900990098,2804.81671969199,19.5907722772277,21.0123237740145,20.794410701994,0.0901980198019802,0.104838228731838,0.0852525221892093,1.55834306368398,1.23633380779716,1.22865364497374,53.1984132227311,0.0045361280064209,5485.82772277228,5487.09985295559,5487.19769504951,1.25147821081285,14608.7908218046,8562.53810219915,0,14608.7908218046,71.9194464268208,71.9194464268208,0.342458255726572,71.917902891089,24.9,1015.2,38.37,432.742795883776
 45224,2874.34876405941,457.612718118812,225,73.1207722772277,75.3143954455445,17.90509956,0.369405940594059,1862.21782178218,2761.93465346535,2617.23861386138,20,40,10,32,5306744.28604663,397385.999687683,0,0,0,0,0,0,0,73.1207722772276,2824.96396958199,17.90509956,19.204334767242,19.4292043766156,0.369405940594059,0.384046149523916,0.308151988541323,2.22424227387129,1.76463449159765,1.63387453324999,54.16972063236,0.0123123474459996,5379.17326732673,5380.77339476522,5380.13713668609,1.23087130479538,14346.2533887335,8158.37464372903,0,14346.2533887335,73.121218606019,73.121218606019,0.326216656319094,73.1208812451125,24.9,1015.2,38.36,379.743268665324
 45225,2874.34195039604,457.599798019802,225,74.2650594059406,76.4930111881188,20.1256930693069,-0.507920792079208,1889.26237623762,2676.8900990099,2567.69504950495,20,40,10,32,5306731.95102252,397369.683384402,0,0,0,0,0,0,0,74.2650594059405,2845.43901105613,20.1256930693069,21.5860596491278,21.3840009131496,-0.507920792079208,-0.493280583149351,-0.40341620967384,2.08009556106423,1.65027363070679,1.86657461827146,54.9564148323307,0.00842423772621026,5244.58514851485,5247.12604646603,5247.91197937976,1.21189967695574,13971.837581208,7939.5948911566,0,13971.837581208,74.2697043427114,74.2697043427114,0.317502913657705,74.2712499795433,24.9,1015.2,38.35,459.165893943243
 45226,2874.33504722772,457.58665980198,225,75.3736633663366,77.6348732673267,21.7880891089109,-1.39663366336634,1917.9504950495,2633.76435643564,2493.83366336634,20,40,10,32,5306719.45508313,397353.092396702,0,0,0,0,0,0,0,75.3736633663365,2866.22832717275,21.7880891089109,23.36908296901,22.8618950129087,-1.39663366336634,-1.38199345443648,-1.11688387721824,2.80711764986883,2.22706702643028,2.10943467251842,55.7909183814484,0.00950426820392952,5127.59801980198,5125.0371728262,5125.9588257433,1.19406633513942,13663.2918656227,7302.21826003959,0,13663.2918656227,75.3740869522595,75.3740869522595,0.291997516583321,75.3740252064402,24.9,1015.2,38.34,523.683387639738
@@ -180,13 +180,13 @@ Time,Lat,Long,Heading,v_veh_GPS,v_veh_CAN,vair_ar,beta_ar,n_eng,tq_l,tq_r,t_amb_
 45228,2874.32095069307,457.559821287129,225,77.4377623762376,79.7608952475248,18.4410698571287,-1.26722772277228,1969.02475247525,2547.4396039604,2322.89702970297,20,40,10,32,5306693.93825751,397319.200571183,0,0,0,0,0,0,0,77.4377623762376,2908.687859681,18.4410698571287,19.7791963019051,20.1322912479058,-1.26722772277228,-1.25258751384242,-0.993307035157425,2.62496018972227,2.0825497942688,2.03537299258552,57.2766083065991,0.0104402946179529,4870.33663366337,4915.33370257818,4923.78634171109,1.16223953550079,12967.6119727909,6885.10283336439,0,12967.6119727909,77.4344964219193,77.4344964219193,0.275303891775311,77.4335288990437,24.9,1015.2,38.32,407.28456289567
 45229,2874.31376386138,457.546139108911,225,78.4077722772277,80.7600054455446,19.7125335531683,-0.656633663366337,1775.76237623762,2551.16138613861,2458.33861386138,20,40,10,32,5306680.92907814,397301.922509556,0,0,0,0,0,0,0,78.4077722772276,2930.33411540157,19.7125335531683,21.1429203281981,21.2697356592354,-0.656633663366337,-0.641993454436478,-0.505325386778463,2.20120805616471,1.74635996479384,1.80463085256667,51.6548336639748,-0.0856104158672136,5009.5,4975.26125870013,4965.89525547073,1.14786129521824,11875.0619124342,6989.43963060959,0,11875.0619124342,78.4186899323595,78.4186899323595,0.280338801206845,78.419993489004,24.9,1015.2,38.31,454.941345790674
 45230,2874.30650366337,457.532259108911,225,79.4195841584158,81.8021716831683,18.6441408140594,0.309009900990099,1725.41089108911,2482.43861386139,2345.23069306931,20,40,10,32,5306667.78843642,397284.395563126,0,0,0,0,0,0,0,79.4195841584157,2952.25984966999,18.6441408140594,19.9970025545502,20.419006244612,0.309009900990099,0.323650109919957,0.244636220010385,2.64181078920777,2.09591845891721,2.10301867740356,50.1901683321237,0.019008536407859,4827.66930693069,4829.17069895108,4830.34709541751,1.13323242989972,10982.8267235873,6655.48719323365,0,10982.8267235873,79.4151863542789,79.4151863542789,0.266063239987374,79.4149530360114,24.9,1015.2,38.3050495049505,418.467700717231
-45231,2874.29916118812,457.518206336634,225,80.3659702970297,82.7769494059406,17.3774521451485,0.327128712871287,1747.9801980198,2476.11386138614,2311.90396039604,20,40,10,32,5306654.49927298,397266.650634303,0,0,0,0,0,0,0,80.3659702970296,2974.45267725525,17.3774521451485,18.6384000423374,19.3950139191267,0.327128712871287,0.341768921801145,0.261568408517867,3.85800444782338,3.06080313162873,3.03461555768585,50.8466828585134,0.00280807924207009,4788.01782178218,4785.11413586903,4785.12337550904,1.11988891916069,10905.5631464929,6478.01731866965,0,10905.5631464929,80.3630693069306,80.3630693069306,0.259097691947408,80.3623170700709,24.9,1015.2,38.33,376.208391462802
+45231,2874.29916118812,457.518206336634,225,80.3659702970297,82.7769494059406,17.3774521451485,0.327128712871287,1747.9801980198,2476.11386138614,2311.90396039604,20,40,10,32,5306654.49927298,397266.650634303,0,0,0,0,0,0,0,80.3659702970296,2974.45267725525,17.3774521451485,18.6384000423374,19.3950139191267,0.327128712871287,0.341768921801145,0.261568408517867,3.85800444782338,3.06080313162874,3.03461555768585,50.8466828585134,0.00280807924207009,4788.01782178218,4785.11413586903,4785.12337550904,1.11988891916069,10905.5631464929,6478.01731866965,0,10905.5631464929,80.3630693069306,80.3630693069306,0.259097691947408,80.3623170700709,24.9,1015.2,38.33,376.208391462802
 45232,2874.29173089109,457.503988316832,225,81.3209306930693,83.7605586138614,18.4286210120792,-0.0386138613861386,1766.48514851485,2475.52772277228,2267.21386138614,20,40,10,32,5306641.05115242,397248.696909404,0,0,0,0,0,0,0,81.3209306930692,2996.90857794282,18.4286210120792,19.7658441400255,20.3450243411714,-0.0386138613861386,-0.023973652456281,-0.0159795114730916,3.13553970367021,2.48762537061216,2.64888100831885,51.3849700486086,0.00489613816566067,4742.74158415842,4742.54845603372,4742.02214142565,1.10673987365381,10788.7579796076,6456.25043756118,0,10788.7579796076,81.3035976865012,81.3035976865012,0.25820997941377,81.3023366434832,24.9,1015.2,38.36,415.341483352931
 45233,2874.28419693069,457.48962940594,225,82.2030891089109,84.6691817821782,19.1479801980198,-1.63960396039604,1785.42079207921,2372.03267326733,2164.68316831683,20,40,10,32,5306627.41419217,397230.564198958,0,0,0,0,0,0,0,82.2030891089108,3019.62084315184,19.1479801980198,20.5374016830819,21.0072241143285,-1.63960396039604,-1.62496375146618,-1.25610806255466,2.7662687200488,2.19465894240451,2.1485772535885,51.9357855922454,-0.00734420724849099,4536.71584158416,4495.0412900696,4489.47917158689,1.09486502112214,10319.0017703518,6109.72252170245,0,10319.0017703518,82.2058460935201,82.2058460935201,0.244449073620246,82.2046454718865,24.9,1015.2,38.39,443.074869032444
 45234,2874.27656792079,457.475142475247,225,82.9563762376238,85.4450675247525,19.4611463145545,-0.972178217821782,1798.33663366337,1957.44752475248,1766.62871287129,20,40,10,32,5306613.60406413,397212.268815554,0,0,0,0,0,0,0,82.9563762376236,3042.5684658141,19.4611463145545,20.8732918533395,21.3171784757887,-0.972178217821782,-0.957538008891924,-0.733205153336042,2.54088211517812,2.01584524860368,1.97499972455533,52.3114921944281,0.00489613816566066,3724.07623762376,3742.13480050975,3744.04760650377,1.08491446736942,8453.71154628954,4141.35506085179,0,8453.71154628954,82.9461006764041,82.9461006764041,0.165614209935853,82.9448871832136,24.9,1015.2,38.42,455.36479896193
 45235,2874.26886207921,457.460572871287,225,83.452099009901,85.955661980198,19.972099559901,-1.09079207920792,1811.48514851485,1576.80495049505,1527.59504950495,20,40,10,32,5306599.65350909,397193.867837563,0,0,0,0,0,0,0,83.4520990099009,3065.68650855338,19.972099559901,21.421321041402,21.779871128291,-1.09079207920792,-1.07615187027806,-0.83518915330836,2.35512408161149,1.86847144990661,1.957820518928,52.6939669876044,0.00374410565609344,3104.4,3122.11740025488,3124.63750567717,1.07846611480012,7056.66121448671,3011.16095504933,0,7056.66121448671,83.452585334771,83.452585334771,0.120415754446725,83.45208147879,24.9,1015.2,38.45,475.75140079945
 45236,2874.26111059406,457.445931584158,225,83.8343663366337,86.3493973267327,18.547301429802,-0.808910891089109,1817.24257425743,1418.98811881188,1373.76435643564,20,40,10,32,5306585.62005529,397175.375980882,0,0,0,0,0,0,0,83.8343663366335,3088.92457931795,18.547301429802,19.8931362818327,20.5893063093665,-0.808910891089109,-0.794270682159251,-0.613991892713197,3.61149368113326,2.86523028124205,2.69086975252095,52.8614437136827,-0.00417611784718115,2792.75247524753,2794.49145181845,2794.95979041787,1.07354700747321,6339.26950470805,2225.53697399557,0,6339.26950470805,83.8339970591117,83.8339970591117,0.0890558115217573,83.8333618178159,24.9,1015.2,38.48,424.107227260486
-45237,2874.25331752475,457.431244752475,225,84.1421089108911,86.6663721782178,19.2156611662376,-1.12732673267327,1823.36633663366,1283.67425742574,1280.62178217822,20,40,10,32,5306571.51064267,397156.825934302,0,0,0,0,0,0,0,84.142108910891,3112.25536903193,19.2156611662376,20.6099937380253,21.1756790154436,-1.12732673267327,-1.11268652374341,-0.863670904516801,3.07040660900887,2.43595109630577,2.47191492380815,53.0395767404745,0.00280807924207008,2564.29603960396,2562.8015880796,2562.90715277135,1.0696205744447,5819.09989477355,1722.83052139759,0,5819.09989477355,84.1190102931084,84.1190102931084,0.0688903048720684,84.1185221615618,24.9,1015.2,38.51,449.06752864212
+45237,2874.25331752475,457.431244752475,225,84.1421089108911,86.6663721782178,19.2156611662376,-1.12732673267327,1823.36633663366,1283.67425742574,1280.62178217822,20,40,10,32,5306571.51064267,397156.825934302,0,0,0,0,0,0,0,84.142108910891,3112.25536903193,19.2156611662376,20.6099937380253,21.1756790154436,-1.12732673267327,-1.11268652374341,-0.8636709045168,3.07040660900887,2.43595109630577,2.47191492380815,53.0395767404745,0.00280807924207008,2564.29603960396,2562.8015880796,2562.90715277135,1.0696205744447,5819.09989477355,1722.83052139759,0,5819.09989477355,84.1190102931084,84.1190102931084,0.0688903048720684,84.1185221615618,24.9,1015.2,38.51,449.06752864212
 45238,2874.24549455445,457.416518811881,225,84.3529702970297,86.8835594059406,20.6758355335644,-0.857623762376238,1827,1178.93663366337,1175.97128712871,20,40,10,32,5306557.34677015,397138.226098265,0,0,0,0,0,0,0,84.3529702970296,3135.65712158968,20.6758355335644,22.1761217159636,22.4304102540326,-0.857623762376238,-0.84298355344638,-0.661987837738338,2.13650287609891,1.69502518266581,1.79679410463327,53.1452757232273,0.00194405485989468,2354.90792079208,2354.4532496814,2354.5911694801,1.06694800467432,5341.45705326931,1368.41840317736,0,5341.45705326931,84.3485007352219,84.3485007352219,0.0547209423912657,84.3477019242377,24.9,1015.2,38.54,504.734342596737
 45239,2874.23765376237,457.401759108911,225,84.5099207920792,87.0452184158416,21.1118718371287,-1.3970297029703,1831.27722772277,1059.66336633663,1130.09405940594,20,40,10,32,5306543.15069432,397119.58353014,0,0,0,0,0,0,0,84.5099207920791,3159.10962004953,21.1118718371287,22.6437978166332,22.8102095024258,-1.3970297029703,-1.38238949404044,-1.08386220958622,3.11040014314241,2.46768053990191,2.23906307646539,53.2696952342606,-0.00576016254783606,2189.75742574257,2190.32367414959,2190.27715660485,1.06496691476566,4969.21293977498,1026.36379595074,0,4969.21293977498,84.5079287324771,84.5079287324771,0.0411016349159662,84.5085532868907,24.9,1015.2,38.57,525.461137273136
 45240,2874.2298339604,457.386933465346,225,84.6193762376238,87.1579575247525,21.852597909802,-1.73207920792079,1835.29702970297,967.525742574258,1053.79801980198,20,40,10,32,5306528.99502347,397100.859432541,0,0,0,0,0,0,0,84.6193762376236,3182.60085211774,21.852597909802,23.4382726768691,23.4472037438821,-1.73207920792079,-1.71743899899094,-1.37127060828459,2.01287689695766,1.59694473998522,1.66366529617673,53.3866265339816,0.00374410565609344,2021.32376237624,2028.35851387119,2028.74244700305,1.06358813292196,4591.16768328975,818.421463152765,0,4591.16768328975,84.6288297225761,84.6288297225761,0.0327064884706236,84.6296351870699,24.9,1015.2,38.5886386138614,551.746934846135
@@ -198,14 +198,14 @@ Time,Lat,Long,Heading,v_veh_GPS,v_veh_CAN,vair_ar,beta_ar,n_eng,tq_l,tq_r,t_amb_
 45246,2874.18299425743,457.297458118812,225,84.9646633663366,87.5136032673267,20.5523074808911,-2.01128712871287,1835.99504950495,869.136633663366,823.933663366337,20,40,10,32,5306444.22038651,396987.86599485,0,0,0,0,0,0,0,84.9646633663365,3323.976434736,20.5523074808911,22.043630183664,22.3600812671132,-2.01128712871287,-1.99664691978302,-1.5608856800242,2.40657817448437,1.90929329206112,1.95990065387693,53.4069311069628,-0.0036721036242455,1693.0702970297,1691.50105871973,1691.42662894861,1.05926546722957,3831.04677490823,303.486335390941,0,3831.04677490823,84.9496915988627,84.9496915988627,0.0121692862355492,84.9489632248938,24.9,1015.2,38.24,501.627869232745
 45247,2874.1751490099,457.282557821782,225,84.9629801980198,87.5118696039604,21.4144158415841,-2.55633663366337,1838.10891089109,827.965346534653,822.578217821782,20,40,10,32,5306430.01966235,396969.047425374,0,0,0,0,0,0,0,84.9629801980197,3347.57563421344,21.4144158415841,22.9682951099275,23.0934712907191,-2.55633663366337,-2.54169642473351,-2.00791596011679,1.71620980803175,1.36157965238199,1.53504899364014,53.4684208421609,0.00626417677077173,1650.54356435644,1656.68422703657,1656.9639321075,1.05928695970927,3739.19760030842,264.119727553645,0,3739.19760030842,84.9699503970198,84.9699503970198,0.0105136751298813,84.9700225365392,24.9,1015.2,38.18,534.002800531991
 45248,2874.16728554455,457.26766990099,225,84.9662673267327,87.5152553465346,20.303401540198,-0.894455445544554,1842.10891089109,808.2,840.517821782178,20,40,10,32,5306415.78497751,396950.243575696,0,0,0,0,0,0,0,84.9662673267326,3371.1799878163,20.303401540198,21.7766630554105,22.1491034578289,-0.894455445544554,-0.879815236614696,-0.686872798947496,2.42978213063554,1.92770248329306,1.90728361177218,53.5847761256272,0.00295208330576599,1648.71782178218,1650.0337711989,1650.25273927393,1.0592443259345,3743.2100136823,18.9163019666514,0,3743.2100136823,84.9800822468384,84.9800822468384,0.000732498992471643,84.9805946251767,24.9,1015.2,38.12,492.195253414697
-45249,2874.15941029703,457.252788316832,225,85.0120693069307,87.5624313861386,18.7353525858416,-0.448514851485148,1841.02475247525,810.967326732673,843.714851485148,20,40,10,32,5306401.52838724,396931.447135869,0,0,0,0,0,0,0,85.0120693069306,3394.78995959848,18.7353525858416,20.0948328622873,20.8177947088954,-0.448514851485148,-0.43387464255529,-0.335215932582006,3.69275041378453,2.92969647487364,2.83550062531302,53.5532392356778,-0.0134643799555668,1654.68217821782,1653.10783256543,1652.78915605846,1.05867334864277,3752.72974743271,187.451011832646,0,3752.72974743271,85.0071327320849,85.0071327320849,0.00760818656123985,85.0072477133426,24.9,1015.2,38.06,433.485855571217
-45250,2874.15152386139,457.237910693069,225,85.0604554455445,87.6122691089109,20.2947728271287,0.00851485148514852,1841.53465346535,781.89702970297,836.436633663366,20,40,10,32,5306387.25104477,396912.65516566,0,0,0,0,0,0,0,85.0604554455444,3418.40939218924,20.2947728271287,21.7674082230742,22.1467466442667,0.00851485148514852,0.0231550604150058,0.00739440920549702,3.00202658557678,2.38170082451569,2.39899080776877,53.5680716542385,0.00511214426120452,1618.33366336634,1618.97835506323,1619.04827911363,1.05807126155636,3669.14522802159,313.169592342192,0,3669.14522802159,85.0530939123614,85.0530939123614,0.012485159407031,85.0527520980668,24.9,1015.2,38.0126237623762,493.430551215677
+45249,2874.15941029703,457.252788316832,225,85.0120693069307,87.5624313861386,18.7353525858416,-0.448514851485148,1841.02475247525,810.967326732673,843.714851485148,20,40,10,32,5306401.52838724,396931.447135869,0,0,0,0,0,0,0,85.0120693069306,3394.78995959848,18.7353525858416,20.0948328622873,20.8177947088954,-0.448514851485148,-0.43387464255529,-0.335215932582007,3.69275041378453,2.92969647487364,2.83550062531302,53.5532392356778,-0.0134643799555668,1654.68217821782,1653.10783256543,1652.78915605846,1.05867334864277,3752.72974743271,187.451011832646,0,3752.72974743271,85.0071327320849,85.0071327320849,0.00760818656123985,85.0072477133426,24.9,1015.2,38.06,433.485855571217
+45250,2874.15152386139,457.237910693069,225,85.0604554455445,87.6122691089109,20.2947728271287,0.00851485148514852,1841.53465346535,781.89702970297,836.436633663366,20,40,10,32,5306387.25104477,396912.65516566,0,0,0,0,0,0,0,85.0604554455444,3418.40939218924,20.2947728271287,21.7674082230742,22.1467466442667,0.00851485148514852,0.0231550604150058,0.007394409205497,3.00202658557678,2.38170082451569,2.39899080776877,53.5680716542385,0.00511214426120452,1618.33366336634,1618.97835506323,1619.04827911363,1.05807126155636,3669.14522802159,313.169592342192,0,3669.14522802159,85.0530939123614,85.0530939123614,0.012485159407031,85.0527520980668,24.9,1015.2,38.0126237623762,493.430551215677
 45251,2874.14362693069,457.223033861386,225,85.0980891089109,87.6510317821782,20.0115500549505,-0.938118811881188,1844.90099009901,751.475247524753,829.848514851485,20,40,10,32,5306372.95430438,396893.863741511,0,0,0,0,0,0,0,85.0980891089108,3442.04031732676,20.0115500549505,21.4636341551116,21.9077991990723,-0.938118811881188,-0.923478602951331,-0.728530050591011,2.83101685259394,2.24602780149774,2.20018712028622,53.6659944175517,0.00144004063695901,1581.32376237624,1577.88479560827,1577.63771805752,1.05760378206242,3590.3029566875,505.687218809619,0,3590.3029566875,85.1017353200665,85.1017353200665,0.0202158829744283,85.1017603017444,24.9,1015.2,38.04,481.629412659773
 45252,2874.13574079208,457.20812980198,225,85.129297029703,87.683175940594,19.6572530251485,-1.42930693069307,1844.73762376238,678.638613861386,803.007920792079,20,40,10,32,5306358.67822095,396875.038667413,0,0,0,0,0,0,0,85.1292970297028,3465.68648451598,19.6572530251485,21.0836285179155,21.6085747880816,-1.42930693069307,-1.41466672176321,-1.10244608476396,2.85151326879248,2.26228892709677,2.30545512799423,53.6612422834497,-0.00136803860511107,1481.64653465347,1482.40332320361,1482.61123055163,1.05721559982352,3362.17294335992,-24.0381754057314,0,3362.17294335992,85.1312688952062,85.1312688952062,-0.000950342559002116,85.1315697312587,24.9,1015.2,38.08,467.570195591872
-45253,2874.12787673267,457.193191188119,225,85.1483366336634,87.7027867326733,19.0693283824753,-0.560990099009901,1843.15841584158,635.428712871287,770.521782178217,20,40,10,32,5306344.44386563,396856.171191083,0,0,0,0,0,0,0,85.1483366336632,3489.33635847088,19.0693283824753,20.4530427108959,21.1094989641522,-0.560990099009901,-0.546349890080043,-0.422263209685568,3.41843622927621,2.71206538441004,2.59724635838475,53.6153049871307,-0.00208805892359058,1405.95049504951,1399.80534261347,1399.5028194248,1.05697907874913,3187.05641190529,96.9893400530725,0,3187.05641190529,85.1504338790313,85.1504338790313,0.00389667679638546,85.1501359735972,24.9,1015.2,38.12,446.037959294203
-45254,2874.12004643564,457.178213663366,225,85.1449504950495,87.699299009901,21.3493635862376,-1.10287128712871,1843.22772277228,590.077227722772,689.251485148515,20,40,10,32,5306330.27297709,396837.256273254,0,0,0,0,0,0,0,85.1449504950494,3512.98890671071,21.3493635862376,22.8985225133076,23.0489747844289,-1.10287128712871,-1.08823107819885,-0.844202952923657,2.18593402622662,1.73424209419536,1.92634818743919,53.6173210440225,0.00129603657326312,1279.32871287129,1281.66427366893,1282.12079560285,1.05702133225014,2900.38668978697,-142.732214777063,0,2900.38668978697,85.1406339574551,85.1406339574551,-0.00571975514382888,85.1406519566241,24.9,1015.2,38.16,533.496028198067
+45253,2874.12787673267,457.193191188119,225,85.1483366336634,87.7027867326733,19.0693283824753,-0.560990099009901,1843.15841584158,635.428712871287,770.521782178217,20,40,10,32,5306344.44386563,396856.171191083,0,0,0,0,0,0,0,85.1483366336632,3489.33635847088,19.0693283824753,20.4530427108959,21.1094989641522,-0.560990099009901,-0.546349890080043,-0.422263209685569,3.41843622927621,2.71206538441004,2.59724635838475,53.6153049871307,-0.00208805892359058,1405.95049504951,1399.80534261347,1399.5028194248,1.05697907874913,3187.05641190529,96.9893400530725,0,3187.05641190529,85.1504338790313,85.1504338790313,0.00389667679638546,85.1501359735972,24.9,1015.2,38.12,446.037959294203
+45254,2874.12004643564,457.178213663366,225,85.1449504950495,87.699299009901,21.3493635862376,-1.10287128712871,1843.22772277228,590.077227722772,689.251485148515,20,40,10,32,5306330.27297709,396837.256273254,0,0,0,0,0,0,0,85.1449504950494,3512.98890671071,21.3493635862376,22.8985225133076,23.0489747844289,-1.10287128712871,-1.08823107819885,-0.844202952923657,2.18593402622662,1.73424209419536,1.92634818743919,53.6173210440225,0.00129603657326312,1279.32871287129,1281.66427366893,1282.12079560285,1.05702133225014,2900.38668978697,-142.732214777063,0,2900.38668978697,85.1406339574551,85.1406339574551,-0.00571975514382888,85.1406519566241,24.9,1015.2,38.16,533.496028198066
 45255,2874.11223653465,457.163215148515,225,85.0999405940594,87.6529388118811,20.4619455444554,0.216336633663366,1842.9900990099,628.055923220792,646.276086223762,20,40,10,32,5306316.14039754,396818.315793153,1.24752475247525,1.24752475247525,3309879.50078701,247517.433831425,4.56439856249783,0,0,85.0999405940593,3536.63601421896,20.4619455444554,21.9467113772808,22.2911430751075,0.216336633663366,0.230976842593224,0.17349656592466,2.67632906271856,2.12330402601262,1.98338809754683,53.6104088489651,0.0135363819874148,1274.33200944455,1279.56437191983,1279.66518669436,1.0575802467129,2890.24083952041,-292.961575085209,0,2890.24083952041,85.10597764925,85.10597764925,-0.011828905662836,85.1061028760018,24.9,1015.2,38.2,499.395582359191
-45256,2874.10444237624,457.148210990099,225,85.0497821782178,87.6012756435643,20.6080082508911,-0.976039603960396,1839.63366336634,656.272124840594,670.950083988119,20,40,10,32,5306302.03716554,396799.368712115,2,2,5306302.68113899,396798.844046556,26.4331660487892,0,0,85.0497821782177,3560.26984290433,20.6080082508911,22.1033727296514,22.4131004133104,-0.976039603960396,-0.961399395030539,-0.750027978896996,2.83911598754369,2.25245336630799,2.36279971064007,53.5127740937793,-0.0121683433823037,1327.22220882871,1328.17799849464,1328.25414719597,1.05820424738115,3006.30766174122,-206.924649719347,0,3006.30766174122,85.0598138417801,85.0598138417801,-0.00817730287880044,85.0603173031588,24.9,1015.2,38.24,505.690907187187
+45256,2874.10444237624,457.148210990099,225,85.0497821782178,87.6012756435643,20.6080082508911,-0.976039603960396,1839.63366336634,656.272124840594,670.950083988119,20,40,10,32,5306302.03716554,396799.368712115,2,2,5306302.68113899,396798.844046556,26.4331660487856,0,0,85.0497821782177,3560.26984290433,20.6080082508911,22.1033727296514,22.4131004133104,-0.976039603960396,-0.961399395030539,-0.750027978896996,2.83911598754369,2.25245336630799,2.36279971064007,53.5127740937793,-0.0121683433823037,1327.22220882871,1328.17799849464,1328.25414719597,1.05820424738115,3006.30766174122,-206.924649719347,0,3006.30766174122,85.0598138417801,85.0598138417801,-0.00817730287880044,85.0603173031588,24.9,1015.2,38.24,505.690907187187
 45257,2874.09667,457.133187920792,225,85.0621881188119,87.6140537623762,18.6889653464356,0.68029702970297,1842.31188118812,661.473399051485,688.570784593069,20,40,10,32,5306287.9747642,396780.398704936,2,2,5306287.78145285,396780.556201811,50.0222718472765,0,0,85.0621881188118,3583.89525112765,18.6889653464356,20.0450796580957,20.7811170903274,0.68029702970297,0.694937238632828,0.533864090703644,3.75223364779183,2.97688835124166,2.85084088444163,53.5906802922388,-0.00352809956054959,1350.04418364455,1350.04232963598,1350.04218192516,1.05805016810036,3061.99032694959,-87.9599250682853,0,3061.99032694959,85.0597127732574,85.0597127732574,-0.003489581631438,85.0593771805751,24.9,1015.2,38.28,431.880909402541
 45258,2874.08889138614,457.118171980198,225,85.0886633663366,87.6413232673267,20.3312502749505,-0.116831683168317,1841.58415841584,679.11096779802,693.714568428713,20,40,10,32,5306273.90071106,396761.437277766,2,2,5306272.88131959,396762.267808269,73.6120855274624,0,0,85.0886633663365,3607.5241325908,20.3312502749505,21.806532558411,22.1793925755856,-0.116831683168317,-0.102191474238459,-0.0763025628730808,2.40836392548419,1.91071004321485,1.9804152929921,53.5695116948755,0.00972027429947336,1372.82553622673,1371.86774310733,1371.791434789,1.05772040206656,3111.45581679909,81.0423053342005,0,3111.45581679909,85.0663464366237,85.0663464366237,0.00316281628163349,85.0657762376236,24.9,1015.2,38.32,493.059660706568
 45259,2874.08110495049,457.103165346535,225,85.0523960396039,87.6039679207921,20.3655621562376,-1.87742574257426,1840.19801980198,692.968931708911,681.652264356435,20,40,10,32,5306259.81202309,396742.487091225,2,2,5306257.98085197,396743.979004321,97.2024285819123,0,0,85.0523960396038,3631.15264265681,20.3655621562376,21.8433341887244,22.2066425315615,-1.87742574257426,-1.8627855336444,-1.45586763927689,2.26553746856043,1.79739662625435,1.96898353153505,53.5291905570406,-0.0080642275669705,1374.62119606535,1373.58805441362,1373.5057430037,1.05817200143066,3114.51470300904,-9.23045641205611,0,3114.51470300904,85.0570408783451,85.0570408783451,-0.000303619470855305,85.056965299387,24.9,1015.2,38.36,493.746808566913
@@ -214,9 +214,9 @@ Time,Lat,Long,Heading,v_veh_GPS,v_veh_CAN,vair_ar,beta_ar,n_eng,tq_l,tq_r,t_amb_
 45262,2874.05767891089,457.058219603961,225,85.0577425742574,87.6094748514851,18.8052359733663,-1.65465346534653,1840.55940594059,658.149660038614,665.878532414852,20,40,10,32,5306217.42106043,396685.726133494,2,2,5306213.27349594,396689.105285603,167.982882727889,0,0,85.0577425742573,3702.04362417496,18.8052359733663,20.1697871491483,20.8792837073628,-1.65465346534653,-1.64001325641668,-1.26121120318096,3.65412486386439,2.89905234116272,2.91613426328364,53.5397028536904,-0.0110883129045844,1324.02819245347,1325.11800775054,1325.20483440555,1.05810529452328,3000.27709965667,-168.248304481306,0,3000.27709965667,85.0577185570041,85.0577185570041,-0.00663878269017055,85.05815087223,24.9,1015.2,38.52,436.097650280919
 45263,2874.04982415842,457.043298316832,225,85.042504950495,87.59378009901,18.8312365242574,-0.370594059405941,1839.82673267327,658.220272150495,684.250722189109,20,40,10,32,5306203.20416677,396666.87961743,2,2,5306198.372645,396670.81601119,191.573832625542,0,0,85.0425049504949,3725.66858803635,18.8312365242574,20.1976743598154,20.9003235219437,-0.370594059405941,-0.355953850476083,-0.274163087983331,3.70453979382473,2.93904974852458,2.73150299884378,53.5183902522634,-0.000648018286631553,1342.4709943396,1342.78692250583,1342.81209281311,1.058294371383,3041.39341742121,-224.072718870789,0,3041.39341742121,85.0429362807567,85.0429362807567,-0.00895745515143714,85.0427885902874,24.9,1015.2,38.58,437.331231044676
 45264,2874.04196405941,457.028388217822,225,85.0271584158415,87.5779731683168,23.0107524752475,-0.88970297029703,1841.78712871287,673.718088663366,694.117840652475,20,40,10,32,5306188.97718039,396648.046766942,2,2,5306183.47445928,396652.530008052,215.160562973695,0,0,85.0271584158414,3749.2879255226,23.0107524752475,24.680465601432,24.4557238782583,-0.88970297029703,-0.875062761367172,-0.697371005150693,1.81465374986508,1.43968156478993,1.58509490392789,53.575415861487,0.0128163616689353,1367.83592931584,1367.08750745095,1367.02787994593,1.05848543384025,3102.70896195117,113.652480261215,0,3102.70896195117,85.0295849426526,85.0295849426526,0.00444128571273021,85.0296640264025,24.9,1015.2,38.64,598.601278122555
-45265,2874.03410188119,457.013478910891,225,85.021405940594,87.5720481188119,21.7515572057426,0.454455445544554,1842.67326732673,690.394488549505,686.408104581188,20,40,10,32,5306174.74638534,396629.214741061,2,2,5306168.57515785,396634.242635489,238.749059714549,0,0,85.0214059405939,3772.90731108366,21.7515572057426,23.3299002269214,23.3843292017106,0.454455445544554,0.469095654474411,0.37616725889691,1.80126794906223,1.4290617478429,1.46751469392877,53.6011925888886,-0.0174964937390521,1376.80259313069,1375.67791684387,1375.58831277988,1.05855702443613,3124.7888395181,-110.254617747667,0,3124.7888395181,85.0275006371923,85.0275006371923,-0.00426701085950427,85.0276495992455,24.9,1015.2,38.7,548.225504013866
+45265,2874.03410188119,457.013478910891,225,85.021405940594,87.5720481188119,21.7515572057426,0.454455445544554,1842.67326732673,690.394488549505,686.408104581188,20,40,10,32,5306174.74638534,396629.214741061,2,2,5306168.57515785,396634.242635489,238.749059714559,0,0,85.0214059405939,3772.90731108366,21.7515572057426,23.3299002269214,23.3843292017106,0.454455445544554,0.469095654474411,0.37616725889691,1.80126794906223,1.4290617478429,1.46751469392877,53.6011925888886,-0.0174964937390521,1376.80259313069,1375.67791684387,1375.58831277988,1.05855702443613,3124.7888395181,-110.254617747667,0,3124.7888395181,85.0275006371923,85.0275006371923,-0.00426701085950427,85.0276495992455,24.9,1015.2,38.7,548.225504013866
 45266,2874.02624435644,456.998565049505,225,85.0281683168317,87.5790133663366,21.5450099009901,0.131188118811881,1841.21287128713,692.917266650495,668.209809767327,20,40,10,32,5306160.52437217,396610.377103502,1.02970297029703,2,5306153.67676472,396615.955547926,18.5569804062359,0,0,85.0281683168316,3796.52474502205,21.5450099009901,23.1083653746607,23.2092324330817,0.131188118811881,0.145828327741739,0.120656925150737,1.51129775120814,1.19900973476874,1.24214884059252,53.5587113900982,0.00360010159239755,1361.12707641782,1360.66016790469,1360.62296884489,1.058473240157,3086.52503947198,83.9194800391043,0,3086.52503947198,85.0266178805998,85.0266178805998,0.00332756047881118,85.0267965110796,24.9,1015.2,38.76,539.158629713889
-45267,2874.01837693069,456.983657029703,225,85.0536831683168,87.6052936633664,19.9920055005941,-1.10029702970297,1841.17821782178,678.966992430693,656.254384545545,20,40,10,32,5306146.28394901,396591.546320621,1,2,5306138.77505386,396597.663470499,34.6880001976568,0,0,85.0536831683167,3820.14697601765,19.9920055005941,21.442671402937,21.8887030261734,-1.10029702970297,-1.08565682077311,-0.833661875182499,2.75051460139805,2.18216018654397,2.078720647789,53.5577033616524,0.00360010159239755,1335.22137697624,1335.84150976373,1335.89091635194,1.05815585365598,3026.80484931189,113.670131999891,0,3026.80484931189,85.0503482991862,85.0503482991862,0.00451753096101265,85.050131918906,24.9,1015.2,38.82,480.674593726865
+45267,2874.01837693069,456.983657029703,225,85.0536831683168,87.6052936633664,19.9920055005941,-1.10029702970297,1841.17821782178,678.966992430693,656.254384545545,20,40,10,32,5306146.28394901,396591.546320621,1,2,5306138.77505386,396597.663470499,34.6880001976572,0,0,85.0536831683167,3820.14697601765,19.9920055005941,21.442671402937,21.8887030261734,-1.10029702970297,-1.08565682077311,-0.833661875182499,2.75051460139805,2.18216018654397,2.078720647789,53.5577033616524,0.00360010159239755,1335.22137697624,1335.84150976373,1335.89091635194,1.05815585365598,3026.80484931189,113.670131999891,0,3026.80484931189,85.0503482991862,85.0503482991862,0.00451753096101265,85.050131918906,24.9,1015.2,38.82,480.674593726865
 45268,2874.01050366337,456.968751188119,225,85.0494950495049,87.6009799009902,20.8729444444554,-0.976039603960396,1842.14851485149,661.369483657426,661.533591719802,20,40,10,32,5306132.03271699,396572.717963927,1,2,5306123.87022702,396579.367567312,58.2866005130337,0,0,85.0494950495048,3843.77449568213,20.8729444444554,22.3875333027953,22.6383438831417,-0.976039603960396,-0.961399395030538,-0.756400796477042,2.00019193386714,1.5868809426835,1.74432865591899,53.5859281581367,-0.00777621943957869,1322.90307537723,1324.040102246,1324.13069029309,1.05820786410239,3000.61418694741,-20.7506910809486,0,3000.61418694741,85.0497519850994,85.0497519850994,-0.000766537049733783,85.0498441301272,24.9,1015.2,38.88,513.688963591052
 45269,2874.00263554456,456.953844752475,225,85.0461584158416,87.5975431683168,20.4394147415842,0.523861386138614,1839.52475247525,656.303808750495,679.193752562376,20,40,10,32,5306117.79109544,396553.888945082,1,2,5306108.96890969,396561.075972128,81.879644238307,0,0,85.0461584158415,3867.3974253576,20.4394147415842,21.9225456875305,22.2695535923622,0.523861386138614,0.538501595068471,0.413523457651026,2.30795172083663,1.83104658128898,1.75706177946769,53.5096060043779,-0.00583216457968402,1335.49756131287,1336.1061050025,1336.15458827574,1.05824899999443,3024.99319147215,-83.966444422827,0,3024.99319147215,85.0454459366728,85.0454459366728,-0.00331122221133005,85.0453373880244,24.9,1015.2,38.94,497.18842861727
 45270,2873.99475425743,456.938953267327,225,85.0149207920792,87.5653684158415,21.3671782178218,-1.46425742574257,1841.5198019802,668.427325855446,692.998196647525,20,40,10,32,5306103.52480811,396535.07801849,1,2,5306094.06661213,396542.783173678,105.47423997263,0,0,85.0149207920791,3891.01880132019,21.3671782178218,22.9176298155346,23.0567539540273,-1.46425742574257,-1.44961721681272,-1.13526757913211,2.15998824880026,1.71365763975184,1.79367137913465,53.5676396420474,0.00914425804468976,1361.42552250297,1360.94609074773,1360.90789394921,1.05863798802067,3088.20725322398,-73.8117441350357,0,3088.20725322398,85.0243718262914,85.0243718262914,-0.00302666405254584,85.0246949552097,24.9,1015.2,39.0025247524752,533.759919867774
@@ -227,9 +227,9 @@ Time,Lat,Long,Heading,v_veh_GPS,v_veh_CAN,vair_ar,beta_ar,n_eng,tq_l,tq_r,t_amb_
 45275,2873.95555712871,456.864317227723,225,85.0130198019802,87.5634103960396,19.8607123218812,-0.775445544554456,1842.64356435644,655.876673228713,673.80271100495,20,40,10,32,5306032.58597693,396440.806457679,1,2,5306019.60551666,396451.381038816,223.367433143486,0,0,85.0130198019801,4009.06536793186,19.8607123218812,21.3018512891918,21.7746527820141,-0.775445544554456,-0.760805335624597,-0.588358559485897,2.82367124175758,2.24020005584433,2.34609690937328,53.6003285645063,0.00036001015923976,1329.67938423366,1330.53206720193,1330.60000129135,1.05866164683404,3018.08037146781,6.40204511225818,0,3018.08037146781,85.0148083521223,85.0148083521223,0.000253243146094437,85.0150638378122,24.9,1015.2,39.4,475.633408755799
 45276,2873.94778158416,456.849309306931,225,85.0172178217822,87.5677343564357,18.9451903192079,0.489009900990099,1836.61881188119,629.594998472277,675.118663171287,20,40,10,32,5306018.51852696,396421.853451403,0.653465346534653,1.30693069306931,3467291.91101455,259057.383099189,158.675433337284,0,0,85.0172178217821,4032.68200445552,18.9451903192079,20.3198969042304,20.9957970570456,0.489009900990099,0.503650109919956,0.386796978233977,3.52057024866266,2.79309487274053,2.75131654106389,53.4250756189885,0.00194405485989467,1304.71366164356,1304.06526020096,1303.80344576877,1.05860959016461,2951.80421859856,-63.9040703287874,0,2951.80421859856,85.0147676698362,85.0147676698362,-0.00257191560740988,85.0148790193304,24.9,1015.2,39.48,441.152496414868
 45277,2873.94002980198,456.834278118812,225,84.9938217821783,87.5436364356435,19.5283223320792,0.164653465346535,1835.63861386139,599.154455445545,673.817821782178,20,40,10,32,5306004.49567461,396402.872159861,0,0,0,0,0,0,0,84.9938217821781,4056.29470561063,19.5283223320792,20.9453423172061,21.4913415200443,0.164653465346535,0.179293674276392,0.14363010190669,2.98772747631154,2.37035642120811,2.37637155477135,53.3965628143767,0.00208805892359057,1272.97227722772,1276.81056862175,1277.25853763395,1.05890130066081,2879.29207105824,-170.819395078745,0,2879.29207105824,84.9980618566806,84.9980618566806,-0.00684981864523101,84.9981487034416,24.9,1015.2,39.56,462.854341533319
-45278,2873.93228277228,456.819242574257,225,85.0110990099009,87.561431980198,18.8890209019802,-0.122079207920792,1842.74257425743,666.435643564356,656.819801980198,20,40,10,32,5305990.48178429,396383.885507297,0,0,0,0,0,0,0,85.0110990099009,4079.90510445551,18.8890209019802,20.2596517048945,20.9477315719678,-0.122079207920792,-0.107438998990934,-0.0830513727331224,3.56710476280892,2.83001369659208,2.83459956847649,53.6032086457803,-0.00936026414023361,1323.25544554455,1312.7170473483,1312.3887223008,1.05868551803239,3003.70726035278,32.0973414329881,0,3003.70726035278,84.9985371042054,84.9985371042054,0.00136016076857472,84.9982169731258,24.9,1015.2,39.64,438.982864061743
+45278,2873.93228277228,456.819242574257,225,85.0110990099009,87.561431980198,18.8890209019802,-0.122079207920792,1842.74257425743,666.435643564356,656.819801980198,20,40,10,32,5305990.48178429,396383.885507297,0,0,0,0,0,0,0,85.0110990099009,4079.90510445551,18.8890209019802,20.2596517048945,20.9477315719678,-0.122079207920792,-0.107438998990934,-0.0830513727331223,3.56710476280892,2.83001369659208,2.83459956847649,53.6032086457803,-0.00936026414023361,1323.25544554455,1312.7170473483,1312.3887223008,1.05868551803239,3003.70726035278,32.0973414329881,0,3003.70726035278,84.9985371042054,84.9985371042054,0.00136016076857472,84.9982169731258,24.9,1015.2,39.64,438.982864061743
 45279,2873.92451792079,456.804231287128,225,84.9640891089109,87.5130117821782,19.8699878991089,-1.49128712871287,1840.70297029703,638.743564356436,671.668316831683,20,40,10,32,5305976.43440065,396364.928385742,0,0,0,0,0,0,0,84.9640891089108,4103.51404389446,19.8699878991089,21.3117999236378,21.7797513494767,-1.49128712871287,-1.47664691978301,-1.14629501593689,3.46312726474177,2.74752165802473,2.81103750446456,53.5438789715376,0.0113043190001283,1310.41188118812,1318.35484756396,1318.81177746346,1.05927171596977,2972.89729355128,-233.102414852565,0,2972.89729355128,84.9725340652876,84.9725340652876,-0.00941628816348246,84.9726071664308,24.9,1015.2,39.72,477.92654749103
-45280,2873.91675386139,456.789224950495,225,84.9462178217822,87.4946043564356,18.9561853686139,-1.36415841584158,1841.4702970297,690.015841584159,730.096039603961,20,40,10,32,5305962.38843468,396345.977364632,0,0,0,0,0,0,0,84.9462178217821,4127.11180217279,18.9561853686139,20.3316897797107,21.0008440405444,-1.36415841584158,-1.34951820691173,-1.03966838618219,3.73994401307926,2.96713819337546,2.79034819211301,53.5661996014105,0.00136803860511107,1420.11188118812,1416.47992353691,1416.11978312117,1.05949461720762,3223.7077361167,11.9948906358469,0,3223.7077361167,84.9508443289873,84.9508443289873,0.000468363668044721,84.9511583215464,24.9,1015.2,39.7899009900991,442.231935704907
+45280,2873.91675386139,456.789224950495,225,84.9462178217822,87.4946043564356,18.9561853686139,-1.36415841584158,1841.4702970297,690.015841584159,730.096039603961,20,40,10,32,5305962.38843468,396345.977364632,0,0,0,0,0,0,0,84.9462178217821,4127.11180217279,18.9561853686139,20.3316897797107,21.0008440405444,-1.36415841584158,-1.34951820691173,-1.03966838618219,3.73994401307926,2.96713819337546,2.79034819211301,53.5661996014105,0.00136803860511107,1420.11188118812,1416.47992353691,1416.11978312117,1.05949461720762,3223.7077361167,11.9948906358469,0,3223.7077361167,84.9508443289873,84.9508443289873,0.000468363668044721,84.9511583215464,24.9,1015.2,39.7899009900991,442.231935704906
 45281,2873.90899,456.774222772277,225,84.969603960396,87.5186920792079,22.7983366336634,-1.19990099009901,1839.4900990099,700.622772277228,740.891089108911,20,40,10,32,5305948.34280363,396327.031437605,0,0,0,0,0,0,0,84.9696039603959,4150.71136174375,22.7983366336634,24.452636377809,24.27139487949,-1.19990099009901,-1.18526078116915,-0.946461010938903,1.92316408760724,1.52576979668989,1.65756449571506,53.5085979759321,-0.0033840954968537,1441.51386138614,1442.40331340065,1442.47452145214,1.05920306974747,3268.11363831301,-93.3121828047904,0,3268.11363831301,84.9634525046563,84.9634525046563,-0.00370470215336483,84.963066949552,24.9,1015.2,39.8000000000001,590.232942654303
 45282,2873.90122158416,456.75921980198,225,84.9734158415841,87.5226183168317,21.4934158415842,-1.53425742574257,1839.61386138614,726.39801980198,729.238613861386,20,40,10,32,5305934.28881504,396308.084279868,0,0,0,0,0,0,0,84.973415841584,4174.31198366344,21.4934158415842,23.0530275316338,23.1617851324246,-1.53425742574257,-1.51961721681272,-1.20190699131354,1.64273429000404,1.3032867969126,1.34765628516024,53.5121980775245,0.00288008127391804,1455.63663366337,1450.84013332026,1450.5542951438,1.05915489313269,3300.02694696521,163.4305120188,0,3300.02694696521,84.9630631310655,84.9630631310655,0.00651352263939779,84.9629240924092,24.9,1015.2,39.8000000000001,537.188304173996
 45283,2873.89342742574,456.744245643564,225,84.986910891089,87.5365182178218,23.7304554455446,-1.52861386138614,1838.73267326733,721.379207920792,688.79603960396,20,40,10,32,5305920.18655848,396289.172062586,0,0,0,0,0,0,0,84.9869108910889,4197.9156222223,23.7304554455446,25.4523918746285,25.0658802881458,-1.52861386138614,-1.51397365245628,-1.21176759126702,2.46791086985972,1.95795246511676,1.82721616112245,53.4865653541867,-0.00201605689174263,1410.17524752475,1412.37169885305,1412.49976426214,1.0589869178955,3194.78323036221,-6.26930663331441,0,3194.78323036221,84.9798697186549,84.9798697186549,-0.000234181834040926,84.97947223008,24.9,1015.2,39.8000000000001,629.128602659796
@@ -238,15 +238,15 @@ Time,Lat,Long,Heading,v_veh_GPS,v_veh_CAN,vair_ar,beta_ar,n_eng,tq_l,tq_r,t_amb_
 45286,2873.86989405941,456.699504851485,225,84.9833762376237,87.5328775247525,22.0027722772277,-2.02217821782178,1840.62376237624,710.636633663366,702.384158415842,20,40,10,32,5305877.59658264,396232.656147103,0,0,0,0,0,0,0,84.9833762376237,4268.725639219,22.0027722772277,23.5993440418084,23.5956318713468,-2.02217821782178,-2.00753800889193,-1.58861644775144,1.87080984202156,1.48423380547735,1.55201495971255,53.5415749065184,0.000864024382175407,1413.02079207921,1416.02341927262,1416.20311173975,1.0590307699843,3204.67823505818,32.7486477579886,0,3204.67823505818,84.9899086364081,84.9899086364081,0.00130297683234578,84.9900324375294,24.9,1015.2,39.8000000000001,558.223443162557
 45287,2873.86200118812,456.684644554456,225,85.0023663366337,87.5524373267326,21.1512266227723,-2.27811881188119,1840.14356435644,689.064356435644,704.857425742574,20,40,10,32,5305863.30916805,396213.882105,0,0,0,0,0,0,0,85.0023663366336,4292.33445649073,21.1512266227723,22.6860082760422,22.8715658209221,-2.27811881188119,-2.26347860295133,-1.7803321563761,2.34811877741241,1.86291369140204,1.76376169726858,53.52760651234,0.0118083332230639,1393.92178217822,1395.33884913244,1395.36712871287,1.05879413413791,3160.04193607254,157.678904033004,0,3160.04193607254,85.005846387609,85.005846387609,0.00620990316853662,85.0059061763318,24.9,1015.2,39.8000000000001,525.351632212089
 45288,2873.85409594059,456.669791287129,225,85.001306930693,87.5513461386139,21.8924532451485,-1.64980198019802,1846.73762376238,661.630693069307,714.296039603961,20,40,10,32,5305848.99873092,396195.116314202,0,0,0,0,0,0,0,85.001306930693,4315.94901207378,21.8924532451485,23.4810200070189,23.5030032555233,-1.64980198019802,-1.63516177126816,-1.28395703080224,2.57768352889343,2.04504217770825,2.18086176281336,53.7194199251829,-0.0038161076879414,1375.92673267327,1370.57738457014,1370.25243752947,1.05880760426462,3130.47663827308,32.4423144293982,0,3130.47663827308,85.0116090579354,85.0116090579354,0.00132884575584586,85.0119879302215,24.9,1015.2,39.8000000000001,556.105019948572
-45289,2873.84619118812,456.654935544554,225,84.9968316831683,87.5467366336634,19.8136204620792,-2.50049504950495,1841.19801980198,620.09603960396,695.650495049505,20,40,10,32,5305834.68932625,396176.347363341,0,0,0,0,0,0,0,84.9968316831682,4339.56266138622,19.8136204620792,21.2513423357276,21.7331901922677,-2.50049504950495,-2.4858548405751,-1.93372762293612,2.8641052839315,2.27227898280881,2.13735780575962,53.5582793779072,-0.0128163616689353,1315.74653465346,1320.34217233604,1320.69592644979,1.05886490709778,2984.76082294827,-227.601678088841,0,2984.76082294827,84.9991219488284,84.9991219488284,-0.00899966234247697,84.9994965582271,24.9,1015.2,39.8000000000001,473.577611495356
+45289,2873.84619118812,456.654935544554,225,84.9968316831683,87.5467366336634,19.8136204620792,-2.50049504950495,1841.19801980198,620.09603960396,695.650495049505,20,40,10,32,5305834.68932625,396176.347363341,0,0,0,0,0,0,0,84.9968316831682,4339.56266138622,19.8136204620792,21.2513423357276,21.7331901922677,-2.50049504950495,-2.4858548405751,-1.93372762293612,2.8641052839315,2.27227898280881,2.13735780575961,53.5582793779072,-0.0128163616689353,1315.74653465346,1320.34217233604,1320.69592644979,1.05886490709778,2984.76082294827,-227.601678088841,0,2984.76082294827,84.9991219488284,84.9991219488284,-0.00899966234247697,84.9994965582271,24.9,1015.2,39.8000000000001,473.577611495356
 45290,2873.83829633663,456.640067128713,225,85.0158514851485,87.566327029703,21.7472574257426,-0.953960396039604,1840.97524752475,639.082178217821,704.673267326733,20,40,10,32,5305820.39860567,396157.562862373,0,0,0,0,0,0,0,85.0158514851484,4363.17496086367,21.7472574257426,23.3252884449948,23.3804860113984,-0.953960396039604,-0.939320187109745,-0.744913943351839,1.59357168297066,1.26428293789638,1.41525612256188,53.5517991950409,0.0169924795161164,1343.75544554455,1346.73199686305,1346.86674210278,1.0586268146815,3047.2392260533,16.2082163366955,0,3047.2392260533,85.0057557102244,85.0057557102244,0.000509209336780792,85.0052503536067,24.9,1015.2,39.7848514851485,547.422067973486
 45291,2873.83040594059,456.625195346535,225,85.0157821782178,87.5662556435644,21.8087865787129,-0.153069306930693,1840.58910891089,662.708910891089,693.159405940594,20,40,10,32,5305806.11627367,396138.774223369,0,0,0,0,0,0,0,85.0157821782177,4386.78659502208,21.8087865787129,23.3912822948266,23.4331469861184,-0.153069306930693,-0.138429098000836,-0.112348298442238,1.91251674452979,1.517322574434,1.60293360766739,53.5405668780726,-0.00799222553512255,1355.86831683168,1351.38460935202,1351.04064120698,1.05862706346842,3074.06258722703,-65.7961776377286,0,3074.06258722703,85.0028555043622,85.0028555043622,-0.00256646951824169,85.0023150400753,24.9,1015.2,39.68,550.921768085219
 45292,2873.82251465346,456.610326039604,225,85.0017425742574,87.5517948514851,18.6487546754455,-1.54910891089109,1837.63861386139,600.786138613861,634.805940594059,20,40,10,32,5305791.83229567,396119.988544927,0,0,0,0,0,0,0,85.0017425742573,4410.39684144672,18.6487546754455,20.0019512083308,20.7429636858625,-1.54910891089109,-1.53446870196123,-1.17863921091658,3.79496990323103,3.01079377210145,2.85807127780325,53.4547404561098,-0.0115203250956721,1235.59207920792,1064.86868934418,1053.52468646865,1.05880220429501,2797.94441427362,-533.295324519946,0,2797.94441427362,84.9796954220173,84.9796954220173,-0.0212383862148601,84.9783567185289,24.9,1015.2,39.56,430.286492406443
 45293,2873.81462673267,456.595483960396,225,84.6525346534653,87.1921106930693,18.514592959703,-0.329108910891089,1824.26732673267,-599.376237623762,-542.782178217822,20,40,10,32,5305777.55400271,396101.236803143,0,0,0,0,0,0,0,84.6525346534652,4433.97546493407,18.514592959703,19.8580544099112,20.6088348303759,-0.329108910891089,-0.314468701961232,-0.241359861312405,3.8350220501458,3.04256971698776,3.03324243927231,53.0657854800672,0.00108003047771926,-1142.15841584158,-1313.08545240663,-1334.40517935906,1.06317435652021,-2577.85171372502,-5302.03204050707,0,-2577.85171372502,84.6117958043328,84.6117958043328,-0.212089773333777,84.6076032950423,24.9,1015.2,39.44,424.726802464929
 45294,2873.80680475247,456.580802673267,225,83.1217623762376,85.6154152475248,19.4263283827723,-0.192475247524752,1777.5099009901,-3705.32277227723,-3320.33861386138,20,40,10,32,5305763.39430732,396082.687466694,0,0,0,0,0,0,0,83.1217623762375,4457.32161380646,19.4263283827723,20.8359474523432,21.2965432353658,-0.192475247524752,-0.177835038594896,-0.137316852170017,2.74676354407495,2.17918423144678,2.3257299861069,51.7056670984594,-0.0292328249302681,-7025.66138613861,-6684.59986275855,-6627.19749211138,1.08284029943368,-15726.1128221543,-16897.3862185982,0,-15726.1128221543,83.0585590628369,83.0585590628369,-0.675659521397679,83.0487105265614,24.9,1015.2,39.32,454.795469456321
 45295,2873.79917861386,456.566565346535,225,80.2097128712871,82.6160042574257,17.445395489604,0.17990099009901,1714.94554455446,-4391.69900990099,-3858.6198019802,20,40,10,32,5305749.58747577,396064.697615484,0,0,0,0,0,0,0,80.209712871287,4480.01105027511,17.445395489604,18.7112735121417,19.4449682890555,0.17990099009901,0.194541199028868,0.149118960068007,3.71467596488313,2.94709142513171,2.57508156637437,49.8857437414706,-0.0103682925861049,-8250.31881188119,-8259.35621017547,-8260.50577037826,1.12218694229331,-18472.1163361265,-20206.4682078984,0,-18472.1163361265,80.2323584942651,80.2323584942651,-0.808175124443139,80.2347741037213,24.9,1015.2,39.2,378.309279370546
-45296,2873.79180891089,456.55284990099,225,77.3570396039604,79.6777507920792,18.7742260725743,-0.854554455445544,1654.66336633663,-4392.61782178218,-3797.56930693069,20,40,10,32,5305736.2439955,396047.36634492,0,0,0,0,0,0,0,77.3570396039603,4501.89236636422,18.7742260725743,20.1365270986295,20.4113038531539,-0.854554455445544,-0.839914246515686,-0.658352499631104,2.0893129738627,1.65758639727838,1.69941228879683,48.1322062578456,-0.0210245932996017,-8190.18712871287,-8199.82977159102,-8200.98998182199,1.16358315687947,-18345.7014059043,-19968.4425429446,0,-18345.7014059043,77.3593611410645,77.3593611410645,-0.79856822315894,77.3602500688793,24.9,1015.2,39.08,418.778057832094
-45297,2873.78471475247,456.539612277228,225,74.5537227722772,76.7903344554456,19.3422178217822,-0.0103960396039603,1593.63861386139,-4435.43267326733,-3817.35445544555,20,40,10,32,5305723.40024573,396030.639416283,0,0,0,0,0,0,0,74.5537227722771,4522.98405412549,19.3422178217822,20.7457336355866,20.7337856144634,-0.0103960396039603,0.00424416932589738,0.00599563371119427,1.29131912383533,1.02448653743703,1.27250667804503,46.3570681646662,-0.0108003047771926,-8252.78712871287,-8246.03034016273,-8245.98341157184,1.20733200238188,-18472.9002315633,-19682.3588543243,0,-18472.9002315633,74.5296145475933,74.5296145475933,-0.787207681164172,74.5267420932625,24.9,1015.2,38.96,430.252251497822
+45296,2873.79180891089,456.55284990099,225,77.3570396039604,79.6777507920792,18.7742260725743,-0.854554455445544,1654.66336633663,-4392.61782178218,-3797.56930693069,20,40,10,32,5305736.2439955,396047.36634492,0,0,0,0,0,0,0,77.3570396039603,4501.89236636422,18.7742260725743,20.1365270986295,20.4113038531539,-0.854554455445544,-0.839914246515686,-0.658352499631104,2.0893129738627,1.65758639727837,1.69941228879683,48.1322062578456,-0.0210245932996017,-8190.18712871287,-8199.82977159102,-8200.98998182199,1.16358315687947,-18345.7014059043,-19968.4425429446,0,-18345.7014059043,77.3593611410645,77.3593611410645,-0.79856822315894,77.3602500688793,24.9,1015.2,39.08,418.778057832094
+45297,2873.78471475247,456.539612277228,225,74.5537227722772,76.7903344554456,19.3422178217822,-0.0103960396039603,1593.63861386139,-4435.43267326733,-3817.35445544555,20,40,10,32,5305723.40024573,396030.639416283,0,0,0,0,0,0,0,74.5537227722771,4522.98405412549,19.3422178217822,20.7457336355866,20.7337856144634,-0.0103960396039603,0.00424416932589738,0.00599563371119438,1.29131912383533,1.02448653743703,1.27250667804503,46.3570681646662,-0.0108003047771926,-8252.78712871287,-8246.03034016273,-8245.98341157184,1.20733200238188,-18472.9002315633,-19682.3588543243,0,-18472.9002315633,74.5296145475933,74.5296145475933,-0.787207681164172,74.5267420932625,24.9,1015.2,38.96,430.252251497822
 45298,2873.77787356436,456.526881980198,225,71.685900990099,73.836478019802,18.6473762376238,0.467920792079208,1535.82673267327,-4540.90495049505,-3760.1801980198,20,40,10,32,5305711.01374375,396014.552839153,0,0,0,0,0,0,0,71.6859009900989,4543.28771127621,18.6473762376238,20.0004727478902,19.9783619898034,0.467920792079208,0.482561001009065,0.38384946916251,1.62227934762263,1.2870585751609,1.27503496534793,44.6753887088255,-0.0163444612294849,-8301.08514851485,-8295.74249583374,-8293.94855573007,1.25562812043921,-18624.2823299711,-19685.5991189643,0,-18624.2823299711,71.683375159298,71.683375159298,-0.787292095546173,71.6819027181781,24.9,1015.2,38.84,400.344314550674
 45299,2873.77129732673,456.514645742574,225,68.8257425742574,70.8905148514852,19.339495049505,1.39435643564356,1474.64851485149,-4543.9198019802,-3724.99900990099,20,40,10,32,5305699.1069736,395999.090494119,0,0,0,0,0,0,0,68.8257425742573,4562.80026111119,19.339495049505,20.7428132926903,20.4030078290404,1.39435643564356,1.40899664457342,1.13761580820938,1.96623221687155,1.55993851440611,1.51382863739896,42.8957864896715,-0.0174244917072041,-8268.91881188119,-8274.82564454466,-8273.90762458928,1.30782708895714,-18552.0335181694,-19651.6832818033,0,-18552.0335181694,68.8325265170081,68.8325265170081,-0.785926488688481,68.8362547356433,24.9,1015.2,38.72,416.570026806607
 45300,2873.76498445545,456.502906732673,225,65.9821584158416,67.9616231683168,19.5675049504951,0.664059405940594,1411.06435643564,-4640.71881188119,-3837.60693069307,20,40,10,32,5305687.67692478,395984.256282838,0,0,0,0,0,0,0,65.9821584158415,4581.5239031904,19.5675049504951,20.9873681165374,20.4340003112487,0.664059405940594,0.678699614870451,0.556789223042893,2.88045413690267,2.28524957966774,2.28333677079208,41.0461982955614,-0.0138963921466545,-8478.32574257426,-8525.22164493677,-8565.09406055131,1.36423456722638,-18986.8416766312,-20250.4652551122,0,-18986.8416766312,65.9851949808841,65.9851949808841,-0.809906980797087,65.9770015195571,24.8987376237624,1015.2,38.6012623762376,418.012210671825
@@ -267,25 +267,25 @@ Time,Lat,Long,Heading,v_veh_GPS,v_veh_CAN,vair_ar,beta_ar,n_eng,tq_l,tq_r,t_amb_
 45315,2873.71845544554,456.386262079208,82.4257425742574,24.1883564356436,24.9140071287129,6.46555445544555,2.54990099009901,1201.10891089109,118.435643564356,248.149504950495,20,40,10,32,5305604.11006663,395837.39453642,0,0,0,0,0,0,0,24.1883564356435,4753.26207879546,6.46555445544555,6.93470995802769,6.8883851910962,2.54990099009901,2.56454119902886,2.02978916975035,0.828470064801597,0.657278601696801,0.605638386406833,34.9388419501545,-0.0777621943957869,366.585148514852,305.188432506617,292.927262952581,3.72096598321573,1937.62785939147,257.314826585532,0,1937.62785939147,24.1510686207234,24.1510686207234,0.0116886688668853,23.8242439544168,24.8,1015.15,37.45,47.8291297845379
 45316,2873.71846891089,456.380901287129,45,23.9373663366336,24.6554873267327,6.57549504950495,2.12267326732673,863.960396039604,-755.637623762377,-647.762376237623,20,40,10,32,5305604.25554482,395830.716860568,0,0,0,0,0,0,0,23.9373663366336,4759.94959276686,6.57549504950495,7.05262809446425,6.96773796476636,2.12267326732673,2.13731347625659,1.7152138637473,0.702367395489699,0.557233241366965,0.60067037487385,25.1315891962088,-0.0447852638094255,-1403.4,-1208.50336241545,-1469.44407597153,3.75995118609579,-5168.08510625451,-2650.29075853976,0,-5168.08510625451,23.9178436427801,23.9178436427801,-0.105355956387721,23.3698114016182,24.8,1015.14,37.44,48.7281951617139
 45317,2873.71876920792,456.375657623762,45,23.0697326732673,23.7618246534653,6.44570297029703,2.89722772277228,829.60396039604,-1988.1099009901,-1777.05346534653,20,40,10,32,5305604.9297073,395824.194686806,0,0,0,0,0,0,0,23.0697326732673,4766.51830088017,6.44570297029703,6.91341800345679,6.80747918770806,2.89722772277228,2.91186793170213,2.34113047421985,0.71710949806914,0.568929099770498,0.585934319911112,24.1322009941592,0.00396011175163729,-3765.16336633663,-3670.44134888736,-2547.94465322281,3.90511824284639,-14382.709238046,-16084.946003458,0,-14382.709238046,22.8822716400353,22.8822716400353,-0.643463603786117,22.0116821323601,24.8,1015.13,37.43,46.5405283612614
-45318,2873.71928633663,456.370962970297,45,19.5378712871287,20.1240074257426,5.47238613861386,3.49594059405941,888.128712871287,-1976.69603960396,-1735.11683168317,20,40,10,32,5305605.99317735,395818.363685518,0,0,0,0,0,0,0,19.5378712871287,4772.44338099568,5.47238613861386,5.86947506375973,5.77654387242554,3.49594059405941,3.51058080298926,2.82271385133635,0.657793814569398,0.521870151999421,0.498653058830285,25.8346170351722,0.00921626007653772,-3711.81287128713,-3886.64465248505,-2619.84143629824,4.61417119397495,-17348.9934761627,-17825.2180674977,0,-17348.9934761627,19.7457941378296,19.7457941378296,-0.713151760720627,20.6087622046119,24.8,1015.12,37.42,33.592017506212
+45318,2873.71928633663,456.370962970297,45,19.5378712871287,20.1240074257426,5.47238613861386,3.49594059405941,888.128712871287,-1976.69603960396,-1735.11683168317,20,40,10,32,5305605.99317735,395818.363685518,0,0,0,0,0,0,0,19.5378712871287,4772.44338099568,5.47238613861386,5.86947506375973,5.77654387242554,3.49594059405941,3.51058080298926,2.82271385133635,0.657793814569398,0.52187015199942,0.498653058830285,25.8346170351722,0.00921626007653772,-3711.81287128713,-3886.64465248505,-2619.84143629824,4.61417119397495,-17348.9934761627,-17825.2180674977,0,-17348.9934761627,19.7457941378296,19.7457941378296,-0.713151760720627,20.6087622046119,24.8,1015.12,37.42,33.592017506212
 45319,2873.71998643564,456.366886138614,45,18.557900990099,19.114638019802,4.73266336633663,3.3950495049505,925.891089108911,-1212.33762376238,-1022.03762376238,20,40,10,32,5305607.38168265,395813.308446655,0,0,0,0,0,0,0,18.557900990099,4777.68804405948,4.73266336633663,5.07607630570422,5.09096925380545,3.3950495049505,3.40968971388035,2.69558276395171,0.418452187851671,0.331985041576584,0.354832183935323,26.9330800330445,0.0142564023058943,-2234.37524752475,-2126.0892069405,-1617.22031855437,4.85067371870422,-11618.8745187737,-4183.54845774155,0,-11618.8745187737,18.5484611312616,18.5484611312616,-0.167602032480477,19.4438098044323,24.8,1015.11,37.41,25.9771123701166
 45320,2873.72080564356,456.363007128713,45,18.0344356435644,18.5754687128713,4.65713861386139,3.44722772277228,909.752475247525,-923.338613861386,-775.954455445545,20,40,10,32,5305608.98637382,395808.503626605,0,0,0,0,0,0,0,18.0344356435643,4782.75674163924,4.65713861386139,4.99507130347637,4.99668796456361,3.44722772277228,3.46186793170213,2.74116372186868,0.532860767380364,0.422752728146823,0.413625437451739,26.4636267853959,-0.00756021334403484,-1699.29306930693,-1397.74034898539,208.960313001055,4.99080400173465,-8975.48360449003,-1935.83220751374,0,-8975.48360449003,18.0303089893148,18.0303089893148,-0.0772881743619893,18.8381496690257,24.8,1015.10126237624,37.4063118811881,25.1156907541283
 45321,2873.72172772277,456.359243168317,45,18.157603960396,18.7023320792079,4.27826732673267,3.5,929.70297029703,1850.48910891089,2092.69207920792,20,40,10,32,5305610.77903426,395803.84557055,0,0,0,0,0,0,0,18.157603960396,4787.75692533011,4.27826732673267,4.58870824431918,4.68137195654009,3.5,3.51464020892985,2.73536296465377,0.633186422180991,0.502347524510967,0.515856635101655,27.0439631620904,0.011736331191216,3943.18118811881,3613.42896774826,1614.16404959491,4.95820734179013,21180.3225894665,6407.01122657173,0,21180.3225894665,18.2536028820704,18.2536028820704,0.256054689627379,18.9976347899826,24.8,1015.1,37.44,22.0233630056729
 45322,2873.72281920792,456.355375049505,45,19.7159603960396,20.3074392079208,4.65688118811881,3.5,991.910891089109,2129.40594059406,2618.20594059406,20,40,10,32,5305612.88783906,395799.063429459,0,0,0,0,0,0,0,19.7159603960396,4793.00591834442,4.65688118811881,4.99479519832982,5.09287583103591,3.5,3.51464020892985,2.73693057947806,0.649504403469683,0.515293628878074,0.501864596576096,28.853518226493,0.0218886176817771,4747.61188118812,4856.44711302813,2929.89040150656,4.56710919250206,25087.4848085867,9459.39282464665,0,25087.4848085867,19.6439182433095,19.6439182433095,0.377959949460291,19.5283488605491,24.8,1015.1,37.48,26.0601436224469
 45323,2873.7241890099,456.351337326733,45,20.5331584158416,21.1491531683168,4.82431683168317,3.5,859.930693069307,1359.16633663366,1693.23366336634,20,40,10,32,5305615.51600085,395794.079319276,0,0,0,0,0,0,0,20.5331584158416,4798.61631254134,4.82431683168317,5.17438035730664,5.28219839527624,3.5,3.51464020892985,2.7352170068569,0.670803166127554,0.532191307541925,0.522902361120747,25.0143698883603,-0.0887065032366756,3052.4,3074.12758553083,4037.97438122967,4.38358967825377,13593.7636689422,4492.8639849562,0,13593.7636689422,20.5448422703656,20.5448422703656,0.181169602108724,20.4340147671834,24.8,1015.1,37.52,27.961230509328
 45324,2873.7257129703,456.347251584159,45,21.3125049504951,21.9518800990099,5.10087128712871,3.26168316831683,757.594059405941,1686.13663366337,2101.89405940594,20,40,10,32,5305618.43080133,395789.040550049,0,0,0,0,0,0,0,21.312504950495,4804.42073721131,5.10087128712871,5.47100224013679,5.56228183975358,3.26168316831683,3.27632337724668,2.559739469329,0.624229922898467,0.495241757417347,0.502649546457568,22.0375178836386,0.0121683433823037,3788.03069306931,3694.92482109597,3712.27586768239,4.22373858585888,14105.6538988559,6699.52666078875,0,14105.6538988559,21.3279244191746,21.3279244191746,0.267818242220261,21.4453584222293,24.8,1015.1,37.56,31.0291332415913
-45325,2873.72737940594,456.343100891089,45,22.326198019802,22.995983960396,5.49941584158416,3.10980198019802,793.267326732673,1858.53564356436,2320.90396039604,20,40,10,32,5305621.61098031,395783.925640741,0,0,0,0,0,0,0,22.326198019802,4810.48492964805,5.49941584158416,5.89846610414804,5.95963083505722,3.10980198019802,3.12444218912787,2.45466128769307,0.613102445602986,0.486413613797049,0.488583245606544,23.0752111666313,0.00741620928033894,4179.4396039604,4126.74013332026,3368.31214423675,4.03175722240005,15551.7300536138,7067.52941782819,0,15551.7300536138,22.3368530536222,22.3368530536222,0.282601651254231,22.3153348156305,24.8,1015.1,37.6,35.6441024960265
+45325,2873.72737940594,456.343100891089,45,22.326198019802,22.995983960396,5.49941584158416,3.10980198019802,793.267326732673,1858.53564356436,2320.90396039604,20,40,10,32,5305621.61098031,395783.925640741,0,0,0,0,0,0,0,22.326198019802,4810.48492964805,5.49941584158416,5.89846610414804,5.95963083505722,3.10980198019802,3.12444218912787,2.45466128769307,0.613102445602986,0.486413613797048,0.488583245606544,23.0752111666313,0.00741620928033894,4179.4396039604,4126.74013332026,3368.31214423675,4.03175722240005,15551.7300536138,7067.52941782819,0,15551.7300536138,22.3368530536222,22.3368530536222,0.282601651254231,22.3153348156305,24.8,1015.1,37.6,35.6441024960265
 45326,2873.72926138614,456.338878712871,45,23.3756930693069,24.0769638613861,5.69608910891089,2.39643564356436,825.653465346535,1455.10792079208,1806.89504950495,20,40,10,32,5305625.19203438,395778.728896066,0,0,0,0,0,0,0,23.3756930693069,4816.83509488457,5.69608910891089,6.10941043611633,6.18731125251791,2.39643564356436,2.41107585249421,1.88559156529881,0.650458092616833,0.516050251833718,0.509743507640172,24.0172857513299,0.00676819099370738,3262.00297029703,3242.48303107539,2460.55855131768,3.85065275527034,12069.1159522055,5937.02764936498,0,12069.1159522055,23.3427295363199,23.3427295363199,0.237390942064504,23.0540870076284,24.8,1015.1,37.64,38.447487820882
 45327,2873.73136277228,456.334603861386,45,23.8690693069307,24.5851413861386,5.92208910891089,2.07594059405941,837,343.559405940594,521.980198019802,20,40,9.61386138613861,32,5305629.18069316,395773.473880962,0,0,0,0,0,0,0,23.8690693069307,4823.41499895498,5.92208910891089,6.3518095159345,6.4080366386461,2.07594059405941,2.09058080298926,1.64624186054451,0.586585038959704,0.4653756491202,0.47385859462964,24.3473430653209,-0.000288008127391801,865.539603960396,897.100843054603,946.176719553131,3.77059120433662,3204.3197444926,460.812686685219,0,3204.3197444926,23.8218373688854,23.8218373688854,0.0184363733402986,23.461005565017,24.8,1015.1,37.68,41.18095683259
 45328,2873.7334729703,456.33033,45,23.5723069306931,24.2794761386139,5.61509900990099,-0.338910891089109,823.965346534653,-632.780198019802,-568.133663366337,20,40,9.06930693069307,32,5305633.1856572,395768.220401257,0,0,0,0,0,0,0,23.572306930693,4830.01442959304,5.61509900990099,6.02254350923853,6.12961195000928,-0.338910891089109,-0.324270682159251,-0.257409883880696,0.722083234727737,0.572875085045119,0.669160239972939,23.9681803656096,-0.00964827226762542,-1200.91386138614,-1281.84500539163,-762.91497120022,3.81810873115643,-4393.29851090052,-2544.17820445837,0,-4393.29851090052,23.5866209195177,23.5866209195177,-0.101639000533708,23.399839639546,24.8,1015.1,37.72,37.6954382652928
 45329,2873.73529673267,456.325912475248,45,23.1065247524752,23.7997204950495,4.15935643564356,-2.80029702970297,852.861386138614,-1286.81089108911,-1464.03267326733,20,40,9.93069306930693,32,5305636.66328178,395762.77838008,0,0,0,0,0,0,0,23.1065247524752,4836.50974834992,4.15935643564356,4.46116890546804,4.86413374707566,-2.80029702970297,-2.78565682077312,-2.01460287609309,1.9912001942349,1.57974721715327,1.42515442168739,24.8087320854026,0.0383050809431099,-2750.84356435644,-2606.26835604352,-1856.44455495237,3.89551732373691,-10671.3843758065,-5200.03929058246,0,-10671.3843758065,23.0811171453779,23.0811171453779,-0.208553899944453,22.9215129785727,24.8,1015.1,37.76,24.075661985349
 45330,2873.73646633663,456.321257821782,45,22.2471881188119,22.9146037623762,5.16206930693069,-3.4629702970297,997.084158415842,-1102.8900990099,-1350.20198019802,20,40,10,32,5305638.93452208,395757.019080354,0,0,0,0,0,0,0,22.2471881188118,4842.80525935102,5.16206930693069,5.53664092901597,5.66791959303747,-3.4629702970297,-3.44833008809985,-2.67321832012061,0.839759552197392,0.666235278352533,0.724596406314717,29.0040024730553,0.0270007619429816,-2453.09207920792,-2422.88524654446,-2108.86366820699,4.04588771809144,-11500.0329725488,-5768.50935155443,0,-11500.0329725488,22.2418088422703,22.2418088422703,-0.231191931074295,22.2651098000506,24.8,1015.10126237624,37.8037871287129,32.3518726228641
 45331,2873.73689059406,456.316472574258,68.1683168316832,21.5115742574257,22.1569214851485,5.05611881188119,-3.49663366336634,1001.86633663366,-797.832673267327,-987.508910891089,20,40,10,32,5305639.82807003,395751.072160676,0,0,0,0,0,0,0,21.5115742574257,4848.87203536862,5.05611881188119,5.42300242235102,5.53556542103941,-3.49663366336634,-3.48199345443648,-2.70518317605184,0.772027437354871,0.61249903412949,0.606544141810031,29.1431103985855,-0.0200165648537304,-1785.34158415842,-1855.77409077541,-1508.13527896589,4.18390899080979,-8704.19509241715,-4328.74689491027,0,-8704.19509241715,21.5181211645917,21.5181211645917,-0.172798963064619,21.4923393424977,24.8,1015.11,37.87,30.8831004327395
-45332,2873.73633574258,456.311865247525,210.742574257426,20.6830891089109,21.3035817821782,4.7110297029703,-3.4819801980198,938.831683168317,-723.09801980198,-909.016831683168,20,40,10,32,5305638.9039754,395745.314120105,0,0,0,0,0,0,0,20.6830891089109,4854.75142882297,4.7110297029703,5.05287285396486,5.19444821596504,-3.4819801980198,-3.46733998908995,-2.67465050036415,0.886498542559451,0.703316326340974,0.72573758295432,27.3095066555456,-0.0151924287199176,-1632.11485148515,-1347.37114008431,96.2788000794039,4.35268186521311,-7758.88421494073,-7187.2161597124,0,-7758.88421494073,20.6812332124301,20.6812332124301,-0.28722810399852,20.9417681203093,24.8,1015.12,37.94,27.3013561864768
+45332,2873.73633574258,456.311865247525,210.742574257426,20.6830891089109,21.3035817821782,4.7110297029703,-3.4819801980198,938.831683168317,-723.09801980198,-909.016831683168,20,40,10,32,5305638.9039754,395745.314120105,0,0,0,0,0,0,0,20.6830891089109,4854.75142882297,4.7110297029703,5.05287285396486,5.19444821596504,-3.4819801980198,-3.46733998908995,-2.67465050036416,0.886498542559451,0.703316326340974,0.72573758295432,27.3095066555456,-0.0151924287199176,-1632.11485148515,-1347.37114008431,96.2788000794039,4.35268186521311,-7758.88421494073,-7187.2161597124,0,-7758.88421494073,20.6812332124301,20.6812332124301,-0.28722810399852,20.9417681203093,24.8,1015.12,37.94,27.3013561864768
 45333,2873.73489811881,456.307924752475,225,20.1273267326733,20.7311465346535,4.68118811881188,-3.5,906.688118811881,1559.40495049505,1299.58316831683,20,40,10,32,5305636.32968299,395740.357227424,0,0,0,0,0,0,0,20.1273267326732,4860.37745682077,4.68118811881188,5.02086589582187,5.13719212502389,-3.5,-3.48535979107015,-2.67431093487938,1.02836031203665,0.81586439468734,0.795860171377969,26.3744882699681,-0.00316808940130984,2858.98811881188,2540.67513969219,1441.72161975503,4.47200171608594,13435.7944338759,987.311845354071,0,13435.7944338759,20.1596839525536,20.1596839525536,0.0395481379821174,20.7043008233526,24.8,1015.13,38.01,27.2991743129462
 45334,2873.73273861386,456.304848118812,225,20.5110891089109,21.1264217821782,4.79966336633663,-3.5,909.777227722772,2111.04455445545,1768.30891089109,20,40,10,32,5305632.39878178,395736.452309506,0,0,0,0,0,0,0,20.5110891089109,4866.0209151541,4.79966336633663,5.14793797980961,5.2599962885724,-3.5,-3.48535979107015,-2.68898225635244,0.956607898736363,0.758938589053458,0.751187163372973,26.4643468057144,0.00187205282804672,3879.35346534653,3889.60793059504,2817.05558095796,4.38833539041226,18032.0878204616,3090.75336796827,0,18032.0878204616,20.5251996863052,20.5251996863052,0.123598993562722,20.7284002075612,24.8,1015.14,38.08,28.3534398870585
 45335,2873.72994376238,456.302996633663,225,21.0582673267327,21.6900153465347,5.16193069306931,-3.5,922.529702970297,2005.64950495049,1676.07920792079,20,40,10,32,5305627.26343015,395734.052328303,0,0,0,0,0,0,0,21.0582673267326,4871.79159238183,5.16193069306931,5.53649225701398,5.59960824372179,-3.5,-3.48535979107015,-2.7149918027221,0.957066169930708,0.759302165074627,0.732640236663768,26.835301273795,0.00302408533761393,3681.72871287129,3739.98335457308,3903.08106004025,4.27444983328939,16890.8445989537,4339.77725962396,0,16890.8445989537,21.0597532594843,21.0597532594843,0.173542354235425,21.1515270519166,24.8,1015.15,38.15,32.2080967527955
-45336,2873.72677693069,456.302633564356,225,21.6537425742574,22.3033548514852,5.80759405940594,-3.5,959.193069306931,2376.11386138614,2002.84257425743,20,40,10,32,5305621.40554567,395733.494060785,0,0,0,0,0,0,0,21.6537425742574,4877.72433127072,5.80759405940594,6.22900644228965,6.18310930271389,-3.5,-3.48535979107015,-2.77878242777363,0.687144273462904,0.545155759289652,0.589135784530329,27.9017953695268,0.0119523372867598,4378.95643564356,4328.5189589256,3809.92767303458,4.15697623504924,20312.2931817374,4836.82152029005,0,20312.2931817374,21.6896241544946,21.6896241544946,0.193273535274313,21.7769325992015,24.8,1015.16,38.22,38.5348567945733
+45336,2873.72677693069,456.302633564356,225,21.6537425742574,22.3033548514852,5.80759405940594,-3.5,959.193069306931,2376.11386138614,2002.84257425743,20,40,10,32,5305621.40554567,395733.494060785,0,0,0,0,0,0,0,21.6537425742574,4877.72433127072,5.80759405940594,6.22900644228965,6.18310930271389,-3.5,-3.48535979107015,-2.77878242777363,0.687144273462903,0.545155759289652,0.589135784530329,27.9017953695268,0.0119523372867598,4378.95643564356,4328.5189589256,3809.92767303458,4.15697623504924,20312.2931817374,4836.82152029005,0,20312.2931817374,21.6896241544946,21.6896241544946,0.193273535274313,21.7769325992015,24.8,1015.16,38.22,38.5348567945733
 45337,2873.72360306931,456.303876138614,225,22.5842475247525,23.261774950495,6.01332673267327,-3.5,1009.47524752475,2023.52673267327,1681.54158415842,20,40,10,32,5305615.49850277,395734.935760087,0,0,0,0,0,0,0,22.5842475247524,4883.86557579767,6.01332673267327,6.44966755153094,6.41151869795434,-3.5,-3.48535979107015,-2.77142005778317,0.842646241477567,0.668525474672494,0.672723994037667,29.3644446444861,0.0159844510702451,3705.06831683168,3793.03001666503,3737.59971569215,3.98578959681322,17368.5526826011,5582.35784527859,0,17368.5526826011,22.535159298108,22.535159298108,0.223025520373823,22.3952211144961,24.8,1015.17,38.29,41.5895125537056
 45338,2873.72080534653,456.306587227723,225,23.0968514851485,23.789757029703,6.46792079207921,-3.5,923.420792079208,1795.45544554455,1502.48415841584,20,40,9.82178217821782,32,5305610.25514795,395738.21942883,0,0,0,0,0,0,0,23.0968514851485,4890.21971894948,6.46792079207921,6.93724800149026,6.82770914615069,-3.5,-3.48535979107015,-2.79597916615986,0.959222901063226,0.761013238634487,0.73838753230319,26.8612220052603,-0.0696979668288164,3297.9396039604,3217.94987746299,3519.58604693469,3.89698926023783,13769.2163361085,2750.09883995068,0,13769.2163361085,23.1074206450348,23.1074206450348,0.11103486586282,22.9820444839322,24.8,1015.18,38.36,47.1851677377213
 45339,2873.71850079208,456.31032980198,225,23.3462871287129,24.0466757425743,6.6609306930693,-3.49841584158416,776.193069306931,1811.78118811881,1516.05742574257,20,40,9.9009900990099,32,5305605.90209845,395742.804563694,0,0,0,0,0,0,0,23.3462871287129,4896.67756009359,6.6609306930693,7.14426314483449,7.0062367460638,-3.49841584158416,-3.48377563265431,-2.80682069852926,0.986478535476292,0.782636886894692,0.768232169480173,22.5785411509441,-4.15646615036027E-18,3327.83861386139,3318.86784628958,3048.93884455383,3.8551412808347,11588.6631518487,2851.57464851717,0,11588.6631518487,23.401481129301,23.401481129301,0.114062891437661,23.4934187763034,24.8,1015.19,38.43,49.5432347078065
@@ -299,7 +299,7 @@ Time,Lat,Long,Heading,v_veh_GPS,v_veh_CAN,vair_ar,beta_ar,n_eng,tq_l,tq_r,t_amb_
 45347,2873.71576386138,456.35162029703,45,22.9640099009901,23.6529301980198,4.69732673267327,-2.03722772277228,809.767326732673,-668.378217821782,-604.59900990099,20,40,10,32,5305599.90337802,395794.150033928,0,0,0,0,0,0,0,22.9640099009901,4949.75505126521,4.69732673267327,5.03817556462515,5.313825076919,-2.03722772277228,-2.02258751384242,-1.51027070006512,1.46700878536411,1.1638724488518,1.2267214317134,23.5551767109297,0.000576016254783608,-1272.97722772277,-1355.71795902363,-1986.60096513022,3.91926290885224,-4700.41881336075,-2665.031188327,0,-4700.41881336075,22.9567476717969,22.9567476717969,-0.106608556895296,22.7014289423841,24.8,1015.2,38.57,28.8365392603866
 45348,2873.71573920792,456.356674752475,69.950495049505,22.2603861386139,22.9281977227723,4.8879603960396,-0.636633663366336,834.371287128713,-1748.96633663366,-1543.44554455446,20,40,10,32,5305599.74402344,395800.445726646,0,0,0,0,0,0,0,22.2603861386138,4956.06021166125,4.8879603960396,5.24264204507809,5.43571460638239,-0.636633663366336,-0.621993454436478,-0.413650615374959,1.31973713105661,1.04703237082678,1.01064001075145,24.2708769074984,0.0360010159239754,-3292.41188118812,-3154.55544554455,-2309.52261687383,4.04458661432922,-13113.3318470953,-9461.03460269006,0,-13113.3318470953,22.1915466130771,22.1915466130771,-0.378974283566964,21.8011385644174,24.8,1015.2,38.58,30.7483252136034
 45349,2873.71551376238,456.361471386139,96.6831683168317,20.5037227722772,21.1188344554455,4.23731683168317,0.459009900990099,962.975247524752,-1748.88118811881,-1487.85445544554,20,40,10,32,5305599.21853863,395806.413526618,0,0,0,0,0,0,0,20.5037227722772,4961.99678457104,4.23731683168317,4.54478628715945,4.78135076369076,0.459009900990099,0.473650109919956,0.360676019341507,1.26267824623477,1.00176388663713,1.01829951471384,28.0118144741905,0.0283688005480927,-3236.73564356436,-3119.1056072934,-2137.29865998109,4.39128789935851,-15879.8711051484,-9696.09067107209,0,-15879.8711051484,20.5653902558572,20.5653902558572,-0.388345641494847,20.8788236195408,24.8,1015.2,38.59,23.2452518848077
-45350,2873.71520623762,456.365925247525,100.247524752475,19.599900990099,20.187898019802,4.64510891089109,-2.01089108910891,987.054455445545,-928.213861386139,-781.703960396039,20,40,10,32,5305598.54872999,395811.951578837,0,0,0,0,0,0,0,19.599900990099,4967.55229103418,4.64510891089109,4.98216869758927,5.07642183355637,-2.01089108910891,-1.99625088017906,-1.5163450271512,0.979258302847512,0.776908611839506,0.736036861940415,28.7122502400074,-0.0173524896753562,-1709.91782178218,-1849.08181550828,-862.210395289247,4.5926483341086,-9017.07531836034,-4956.4500806141,0,-9017.07531836034,19.6160028428585,19.6160028428585,-0.197928579986709,20.1723083354253,24.8,1015.2,38.6,26.3738205144216
+45350,2873.71520623762,456.365925247525,100.247524752475,19.599900990099,20.187898019802,4.64510891089109,-2.01089108910891,987.054455445545,-928.213861386139,-781.703960396039,20,40,10,32,5305598.54872999,395811.951578837,0,0,0,0,0,0,0,19.599900990099,4967.55229103418,4.64510891089109,4.98216869758927,5.07642183355638,-2.01089108910891,-1.99625088017906,-1.5163450271512,0.979258302847512,0.776908611839506,0.736036861940415,28.7122502400074,-0.0173524896753562,-1709.91782178218,-1849.08181550828,-862.210395289247,4.5926483341086,-9017.07531836034,-4956.4500806141,0,-9017.07531836034,19.6160028428585,19.6160028428585,-0.197928579986709,20.1723083354253,24.8,1015.2,38.6,26.3738205144216
 45351,2873.71488336634,456.370157227723,103.811881188119,19.2081287128713,19.7843725742574,4.0419504950495,-2.95405940594059,971.60396039604,-189.405940594059,-102.050495049505,20,40,10,32,5305597.85548939,395817.212713535,0,0,0,0,0,0,0,19.2081287128713,4972.91835671075,4.0419504950495,4.33524371978137,4.54070171503017,-2.95405940594059,-2.93941919701074,-2.22558359455131,1.05900244680159,0.840174771545831,0.788780911818466,28.2628135572125,0.00856824178990616,-291.456435643564,208.894990687188,1271.91657001914,4.68563673394921,-1364.34615645333,331.100589210461,0,-1364.34615645333,19.2225454367219,19.2225454367219,0.0130855907372907,19.956634938781,24.8,1015.2,38.61,20.7715386055262
 45352,2873.71453891089,456.374416237624,110.940594059406,19.7316336633663,20.3235826732673,4.39898624862376,-2.30831683168317,1012.4702970297,2592.18415841584,2849.85742574257,20,40,10,32,5305597.12166456,395822.50679952,0,0,0,0,0,0,0,19.7316336633663,4978.30078971405,4.39898624862376,4.71818680884591,4.87461167162535,-2.30831683168317,-2.29367662275331,-1.74723758039633,0.860121679561145,0.682389863979505,0.685130722740381,29.4515671030221,0.0279367883570049,5442.04158415842,4656.51581217527,4447.0639002445,4.562982172274,29336.5254704645,7301.24966002698,0,29336.5254704645,19.7783327124791,19.7783327124791,0.291504645514053,20.5165412539401,24.8,1015.2,38.62,24.0834823007434
 45353,2873.71416574257,456.378911683168,112.722772277228,21.0499603960396,21.6814592079208,5.03384158415842,-2.65762376237624,1359.19306930693,3090.03564356436,3400.44059405941,20,40,10,32,5305596.32934207,395828.09446322,0,0,0,0,0,0,0,21.0499603960396,4983.96107178225,5.03384158415842,5.39910870774527,5.49052145536928,-2.65762376237624,-2.64298355344638,-2.06039921677486,0.617322220574404,0.489761432759406,0.550285436386425,39.5373237161557,0.116139277370745,6490.47623762377,7047.20525438683,7823.55169389553,4.27757390489766,44596.823902888,11952.8365039358,0,44596.823902888,21.1039199098127,21.1039199098127,0.475394569159886,22.0124284383927,24.8,1015.2,38.63,30.2676349177516
@@ -307,21 +307,21 @@ Time,Lat,Long,Heading,v_veh_GPS,v_veh_CAN,vair_ar,beta_ar,n_eng,tq_l,tq_r,t_amb_
 45355,2873.71353623762,456.389574257426,73.5148514851485,27.6251485148515,28.453902970297,7.0890198019802,-2.24376237623762,1860.87128712871,7113.04059405941,5667.87821782178,20,40,10,32,5305594.9235408,395841.356178029,0,0,0,0,0,0,0,27.6251485148514,4997.26843542362,7.0890198019802,7.60341538412732,7.61606348569716,-2.24376237623762,-2.22912216730777,-1.77061190723154,0.634707187483354,0.503554045463157,0.521708971043445,54.1305515270347,0.057097611255425,12780.9188118812,12563.092304676,11947.5414385534,3.26314584525844,90223.56143824,24941.7214105875,0,90223.56143824,27.5816066071953,27.5816066071953,0.996216329553748,27.370583784412,24.8,1015.2,38.65,58.124691737445
 45356,2873.71353722772,456.39611980198,46.7821782178218,30.7447722772277,31.6671154455446,7.88612871287129,-2.19742574257426,1724.40594059406,5972.41287128713,4858.53663366337,20,40,10,32,5305594.77821662,395849.510237706,0,0,0,0,0,0,0,30.7447722772277,5005.39962439502,7.88612871287129,8.45836435100724,8.47335928599674,-2.19742574257426,-2.1827855336444,-1.72445270523675,0.786526878690521,0.62400237375681,0.615676874153979,50.1609355071935,-0.0979947653450611,10830.9495049505,11124.7576708166,11599.276528766,2.92958480521248,63241.5673960778,20875.55934099,0,63241.5673960778,30.7626413096755,30.7626413096755,0.837202779683903,30.7379135642734,24.8,1015.2,38.66,72.2024433576228
 45357,2873.71405247525,456.403285049505,45,33.8802277227723,34.8966345544555,8.85190099009901,-3.04316831683168,1686.79207920792,6205.68811881189,5073.09900990099,20,40,10,32,5305595.57155409,395858.453473602,0,0,0,0,0,0,0,33.8802277227722,5014.37744741483,8.85190099009901,9.49421528602448,9.47474254206675,-3.04316831683168,-3.02852810790183,-2.40433175084933,0.772761376404994,0.613081315195627,0.614091365481137,49.066792631232,0.0501134141661738,11278.7871287129,11174.7602587982,11004.4289503872,2.65821190418497,58806.8496568112,20917.4618723318,0,58806.8496568112,33.8563758455053,33.8563758455053,0.835756843011039,33.7750492032627,24.8,1015.2,38.67,90.0803382134774
-45358,2873.71524455446,456.410908415842,45,36.663594059406,37.7635018811881,9.62118811881188,-3.13792079207921,1834.34158415842,5862.23465346535,4741.66237623762,20,40,10,32,5305597.60833194,395867.990023374,0,0,0,0,0,0,0,36.6635940594059,5024.18630695829,9.62118811881188,10.319323658219,10.2887880327126,-3.13792079207921,-3.12328058314936,-2.48422350068151,0.785672583287286,0.623324606252672,0.632249391023085,53.3588337496884,0.038089074847566,10603.897029703,10589.1594843643,10283.7549582672,2.45588281408863,55559.1250673422,18821.2414148887,0,55559.1250673422,36.6644321144985,36.6644321144985,0.752130782385167,36.6107701844388,24.8,1015.2,38.68,106.107672112902
+45358,2873.71524455446,456.410908415842,45,36.663594059406,37.7635018811881,9.62118811881188,-3.13792079207921,1834.34158415842,5862.23465346535,4741.66237623762,20,40,10,32,5305597.60833194,395867.990023374,0,0,0,0,0,0,0,36.6635940594059,5024.18630695829,9.62118811881188,10.319323658219,10.2887880327126,-3.13792079207921,-3.12328058314936,-2.4842235006815,0.785672583287286,0.623324606252672,0.632249391023085,53.3588337496884,0.038089074847566,10603.897029703,10589.1594843643,10283.7549582672,2.45588281408863,55559.1250673422,18821.2414148887,0,55559.1250673422,36.6644321144985,36.6644321144985,0.752130782385167,36.6107701844388,24.8,1015.2,38.68,106.107672112902
 45359,2873.71708287129,456.418902376238,45,39.1752277227723,40.3504845544555,10.5320693069307,-2.72188118811881,1886.50495049505,4826.14158415842,3893.26336633663,20,40,10,32,5305600.83384951,395878.009825105,0,0,0,0,0,0,0,39.1752277227722,5034.7414921068,10.5320693069307,11.2963004804477,11.2082900062315,-2.72188118811881,-2.70724097918896,-2.16223942215136,0.87635588701409,0.695269505173158,0.69372486088237,54.8762045688521,-0.0729380582619742,8719.40495049505,8906.54536810116,9334.32662316119,2.29785313494037,43991.3407326931,15281.9270746139,0,43991.3407326931,39.1582294873051,39.1582294873051,0.61250122537006,39.1011333574247,24.8,1015.2,38.69,125.850443947363
-45360,2873.71960257426,456.427022772277,45,41.3992772277228,42.6412555445545,10.9500891089109,-3.03079207920792,1484.82178217822,4983.73663366337,4047.87524752475,20,40,10,32,5305605.31870325,395888.209889791,0,0,0,0,0,0,0,41.3992772277227,5045.92221815191,10.9500891089109,11.7446527607387,11.6913520051862,-3.03079207920792,-3.01615187027807,-2.40387065226742,0.847636617897329,0.67248466134016,0.72550730223806,43.1917148405666,-0.0441372455227939,9031.61188118812,8890.41242035095,8856.89015924476,2.17463962349286,34012.6865926713,16316.4121916857,0,34012.6865926713,41.4008730516615,41.4008730516615,0.65331557908266,41.4142783519559,24.8,1015.2,38.7063118811881,136.98147530765
+45360,2873.71960257426,456.427022772277,45,41.3992772277228,42.6412555445545,10.9500891089109,-3.03079207920792,1484.82178217822,4983.73663366337,4047.87524752475,20,40,10,32,5305605.31870325,395888.209889791,0,0,0,0,0,0,0,41.3992772277227,5045.92221815191,10.9500891089109,11.7446527607387,11.6913520051862,-3.03079207920792,-3.01615187027807,-2.40387065226742,0.847636617897329,0.672484661340159,0.72550730223806,43.1917148405666,-0.0441372455227939,9031.61188118812,8890.41242035095,8856.89015924476,2.17463962349286,34012.6865926713,16316.4121916857,0,34012.6865926713,41.4008730516615,41.4008730516615,0.65331557908266,41.4142783519559,24.8,1015.2,38.7063118811881,136.98147530765
 45361,2873.7227339604,456.435266633663,45,43.753504950495,45.0661100990099,12.748504950495,-3.10940594059406,1540.41089108911,4944.45247524752,3997.18712871287,20,40,9.8019801980198,32,5305610.93384706,395898.584181274,0,0,0,0,0,0,0,43.753504950495,5057.75301064366,12.748504950495,13.6735657922892,13.356487145637,-3.10940594059406,-3.09476573166421,-2.50753779629744,1.71989739359316,1.3645052512472,1.33185397206473,44.8087364718079,0.0200165648537304,8941.6396039604,8919.78465836683,8852.89831129406,2.05753448720249,32966.7030400448,16341.8582240147,0,32966.7030400448,43.7496639545142,43.7496639545142,0.653408162598438,43.7505492488031,24.8,1015.2,38.76,178.856743785816
 45362,2873.72644643564,456.443616930693,45,46.0699603960396,47.4520592079208,13.6845148514852,-3.41237623762376,1629.76237623762,4750.07227722772,3810.3099009901,20,40,10,32,5305617.62299378,395909.110456517,0,0,0,0,0,0,0,46.0699603960395,5070.2351950771,13.6845148514852,14.6774947245932,14.2854461514691,-3.41237623762376,-3.39773602869391,-2.76230719413291,2.0686029088028,1.64115577029262,1.6015733036324,47.4078658174552,0.0318969001086422,8560.38217821782,8559.25802372316,8559.16079473431,1.95397132480067,31712.2521437892,16445.614701516,0,31712.2521437892,46.0905011273404,46.0905011273404,0.657400145955181,46.0987762812759,24.8,1015.2,38.82,204.33473328786
 45363,2873.73056376238,456.452195544554,45,48.3932178217822,49.8450143564356,13.7321089108911,-3.46772277227723,1712.44059405941,4542.2,3608.74554455446,20,40,10,32,5305625.05695357,395919.934652934,0,0,0,0,0,0,0,48.3932178217821,5083.36922354244,13.7321089108911,14.7285423184198,14.4590997180278,-3.46772277227723,-3.45308256334738,-2.7850264450113,1.57527977289985,1.24977078883451,1.2678682431066,49.8128776852405,0.0262807416245021,8150.94554455446,8155.56107244387,8165.4589114436,1.85999229912003,30202.0951980303,15022.754260225,0,30202.0951980303,48.3857552200764,48.3857552200764,0.600559313357082,48.3725757634953,24.8,1015.2,38.88,209.29809317578
 45364,2873.73500683168,456.461012178218,45,50.5725742574258,52.0897514851485,13.7304059405941,-3.21851485148515,1791.13861386139,4435.94752475247,3408.48217821782,20,40,10,32,5305633.08897327,395931.066210066,0,0,0,0,0,0,0,50.5725742574257,5097.11330030262,13.7304059405941,14.726715776681,14.5828059208424,-3.21851485148515,-3.2038746425553,-2.56484359279,1.21301017601709,0.962359011158038,0.952120792546406,52.1021102858142,0.029376828993964,7844.42970297029,7838.19826487599,7833.25793342106,1.7798640830346,29094.401212904,14934.9915398989,0,29094.401212904,50.5553950593078,50.5553950593078,0.597005740177978,50.541035100556,24.8,1015.2,38.94,212.891651120346
 45365,2873.73971287129,456.470138415842,45,52.662099009901,54.241961980198,13.8261287128713,-3.00633663366337,1866.32178217822,4088.73564356436,3417.1405940594,20,40,10,32,5305641.60117099,395942.592200993,0,0,0,0,0,0,0,52.6620990099009,5111.45238858645,13.8261287128713,14.8293844134848,14.784386799791,-3.00633663366337,-2.99169642473351,-2.38025452099884,1.01594010384103,0.806010644476639,0.832946355071652,54.2891000011639,0.024912703019391,7505.87623762376,7503.32951671405,7504.88583587742,1.70924593731839,27857.4808543347,14418.4925517135,0,27857.4808543347,52.656192039996,52.656192039996,0.576405907917523,52.646009614621,24.8,1015.2,39,218.857826713386
 45366,2873.74462475247,456.479614950495,45,54.6436831683168,56.2829936633663,15.0664257425743,-3.06415841584158,1934.4801980198,3860.3504950495,3302.15940594059,20,40,10,32,5305650.48681318,395954.561405646,0,0,0,0,0,0,0,54.6436831683167,5126.36393369097,15.0664257425743,16.1596802484459,15.9531240651147,-3.06415841584158,-3.04951820691173,-2.44520396556802,1.42687244748779,1.1320297098593,1.10990016960753,56.271747950129,0.00972027429947337,7162.50990099009,7004.34025095579,6974.90476816894,1.64720359408986,26554.1648280931,12988.0174815512,0,26554.1648280931,54.6356911087147,54.6356911087147,0.519390800466175,54.6190948034332,24.8,1015.2,39.06,254.933764073538
-45367,2873.74972247525,456.489403960396,45,56.3939108910891,58.0857282178218,15.5014455445545,-3.13554455445545,1729.68811881188,3384.8099009901,2998.99900990099,20,40,9.98019801980198,32,5305659.70970501,395966.926036385,0,0,0,0,0,0,0,56.3939108910891,5141.79447838294,15.5014455445545,16.6262660878383,16.4237597224394,-3.13554455445545,-3.12090434552559,-2.50209464686258,1.45401777159833,1.15356584185974,1.14441774902997,50.314587843157,-0.138531909275457,6383.80891089109,6497.81871385159,6521.52953799531,1.59603052382007,20291.4329453302,11843.5730086811,0,20291.4329453302,56.3983140868542,56.3983140868542,0.475318323911606,56.4024892169011,24.8,1015.2,39.12,270.061846343537
+45367,2873.74972247525,456.489403960396,45,56.3939108910891,58.0857282178218,15.5014455445545,-3.13554455445545,1729.68811881188,3384.8099009901,2998.99900990099,20,40,9.98019801980198,32,5305659.70970501,395966.926036385,0,0,0,0,0,0,0,56.3939108910891,5141.79447838294,15.5014455445545,16.6262660878383,16.4237597224394,-3.13554455445545,-3.12090434552559,-2.50209464686258,1.45401777159833,1.15356584185974,1.14441774902997,50.314587843157,-0.138531909275457,6383.80891089109,6497.81871385159,6521.52953799531,1.59603052382007,20291.4329453302,11843.5730086811,0,20291.4329453302,56.3983140868542,56.3983140868542,0.475318323911606,56.4024892169011,24.8,1015.2,39.12,270.061846343536
 45368,2873.75497574257,456.499495742574,45,58.136,59.88008,14.8046831683168,-3.03534653465346,1481.50495049505,3387.1099009901,3074.90198019802,20,40,9.95049504950495,32,5305669.21394638,395979.672990396,0,0,0,0,0,0,0,58.1359999999999,5157.70322824543,14.8046831683168,15.8789450309713,15.9307274122325,-3.03534653465346,-3.02070632572361,-2.39030198077228,1.08591326938413,0.861524858397544,0.88554772493395,43.0952321178904,0.0136083840192627,6462.01188118812,6515.07414959318,6542.45593162063,1.54820239866478,17245.4488624402,11871.3521169444,0,17245.4488624402,58.1267094402509,58.1267094402509,0.474723338670506,58.1222061029479,24.8,1015.2,39.18,253.979749186849
-45369,2873.76040940594,456.509861881188,45,59.8593366336634,61.6551167326733,15.0046732673267,-2.44772277227723,1522.92574257426,3425.78217821782,3088.18118811881,20,40,9.89108910891089,32,5305679.0462112,395992.767695416,0,0,0,0,0,0,0,59.8593366336633,5174.08926201881,15.0046732673267,16.0934468715587,16.2000177986806,-2.44772277227723,-2.43308256334737,-1.91887712661179,1.20756786903211,0.958041278898216,0.947120388997403,44.3001141188339,0.0166324693568767,6513.96336633664,6507.84768159985,6499.44233595495,1.50364971874868,17355.4908375366,11929.0228534417,0,17355.4908375366,59.8485982746789,59.8485982746789,0.477001165463076,59.8400869878303,24.8,1015.2,39.24,262.664936619416
+45369,2873.76040940594,456.509861881188,45,59.8593366336634,61.6551167326733,15.0046732673267,-2.44772277227723,1522.92574257426,3425.78217821782,3088.18118811881,20,40,9.89108910891089,32,5305679.0462112,395992.767695416,0,0,0,0,0,0,0,59.8593366336633,5174.08926201881,15.0046732673267,16.0934468715587,16.2000177986806,-2.44772277227723,-2.43308256334737,-1.91887712661179,1.20756786903211,0.958041278898217,0.947120388997403,44.3001141188339,0.0166324693568767,6513.96336633664,6507.84768159985,6499.44233595495,1.50364971874868,17355.4908375366,11929.0228534417,0,17355.4908375366,59.8485982746789,59.8485982746789,0.477001165463076,59.8400869878303,24.8,1015.2,39.24,262.664936619416
 45370,2873.76601663366,456.520516138614,45,61.5191584158416,63.3647331683168,15.5273861386139,-2.37742574257426,1568.41089108911,3343.87524752475,3035.58118811881,20,40,9.77227722772277,32,5305689.19353823,396006.227063431,0,0,0,0,0,0,0,61.5191584158415,5190.94993473608,15.5273861386139,16.6540889910681,16.7398548934044,-2.37742574257426,-2.3627855336444,-1.86633729619726,1.24200323862559,0.985361072982433,1.01844028450874,45.6232234560719,0.0120243393186078,6379.45643564356,6382.76704244682,6381.13803719828,1.46307255875948,17032.0776727752,11742.0355273044,0,17032.0776727752,61.5235801392019,61.5235801392019,0.469565892232785,61.5289309966549,24.8,1015.2,39.2785396039604,280.577087773617
 45371,2873.77179049505,456.531445742574,45,63.1775742574258,65.0729014851485,15.1790891089109,-2.37584158415842,1610.35643564356,3282.16534653465,2936.96435643564,20,40,9.88118811881188,32,5305699.64337864,396020.034948394,0,0,0,0,0,0,0,63.1775742574256,5208.27683415852,15.1790891089109,16.2805187277787,16.5386555602454,-2.37584158415842,-2.36120137522856,-1.8504784954592,1.64821666166348,1.30763631505621,1.29157477660184,46.8433698877673,0.0192245425034029,6219.12970297029,6223.85761199882,6225.4193420516,1.42463427027282,16600.3437609737,11304.7574415618,0,16600.3437609737,63.1860591118517,63.1860591118517,0.452004977725506,63.1868534336688,24.8,1015.2,39.19,273.730140348459
-45372,2873.77773336634,456.542648514852,45,64.8023267326733,66.7463965346535,15.0580297029703,-2.5880198019802,1669.69801980198,3184.99207920792,2896.83465346535,20,40,9.77227722772277,32,5305710.40018537,396034.188712112,0,0,0,0,0,0,0,64.8023267326732,5226.0563319583,15.0580297029703,16.1506749728967,16.5288774688224,-2.5880198019802,-2.57337959305034,-2.00045369184025,2.11416922817044,1.67730646293786,1.72778656324377,48.56954659929,0.0079202235032746,6081.82673267327,6075.27611018528,6074.13719637893,1.38890227871707,16405.2860761471,11001.2709720809,0,16405.2860761471,64.8027974708361,64.8027974708361,0.43997320524131,64.7996248662018,24.8,1015.2,39.08,273.446305873828
+45372,2873.77773336634,456.542648514852,45,64.8023267326733,66.7463965346535,15.0580297029703,-2.5880198019802,1669.69801980198,3184.99207920792,2896.83465346535,20,40,9.77227722772277,32,5305710.40018537,396034.188712112,0,0,0,0,0,0,0,64.8023267326732,5226.0563319583,15.0580297029703,16.1506749728967,16.5288774688224,-2.5880198019802,-2.57337959305034,-2.00045369184025,2.11416922817044,1.67730646293787,1.72778656324377,48.56954659929,0.0079202235032746,6081.82673267327,6075.27611018528,6074.13719637893,1.38890227871707,16405.2860761471,11001.2709720809,0,16405.2860761471,64.8027974708361,64.8027974708361,0.43997320524131,64.7996248662018,24.8,1015.2,39.08,273.446305873828
 45373,2873.78382405941,456.554122178218,45,66.3676435643564,68.3586728712871,14.5878712871287,-2.76168316831683,1690.74257425743,3088.15049504951,2826.51782178218,20,40,9.54455445544554,32,5305721.42476436,396048.684806686,0,0,0,0,0,0,0,66.3676435643563,5244.2769879264,14.5878712871287,15.6464007809995,16.2186602021496,-2.76168316831683,-2.74704295938698,-2.1115024244055,2.95700910799502,2.34598556336869,2.1841191763665,49.1817078740613,0.010296290554257,5914.66831683169,5919.43701597883,5920.68707528821,1.35613974862152,15779.5391459627,10823.4768510629,0,15779.5391459627,66.3708207038525,66.3708207038525,0.432840189959595,66.3692356748833,24.8,1015.2,38.97,263.292447835446
 45374,2873.7900639604,456.565858415842,45,67.8757128712871,69.9119842574257,15.9697612761386,-2.24940594059406,1727.90594059406,3015.7,2777.03861386139,20,40,9.79207920792079,32,5305732.71987234,396063.51291404,0,0,0,0,0,0,0,67.875712871287,5262.92849958757,15.9697612761386,17.12856388607,17.4810155892148,-2.24940594059406,-2.2347657316642,-1.74622449054401,2.10394199144044,1.66919253807478,1.83598965356706,50.2627463802265,0.00482413613381271,5792.73861386139,5792.93668267817,5793.99250188808,1.32599350933241,15442.518992581,10208.1066174866,0,15442.518992581,67.879088324674,67.879088324674,0.408278327832776,67.8797048552527,24.8,1015.2,38.86,306.317295329468
 45375,2873.79644336634,456.577852574257,45,69.3500198019802,71.4305203960396,16.1901727173267,-0.399603960396039,1766.12871287129,2977.95544554456,2708.65643564356,20,40,9.6039603960396,32,5305744.267643,396078.666909643,0,0,0,0,0,0,0,69.3500198019801,5281.9897069033,16.1901727173267,17.3649688883947,17.7533248461431,-0.399603960396039,-0.384963751466182,-0.303915895887284,2.40012015685308,1.90416973120024,1.81068907843664,51.3746017560225,0.0134643799555668,5686.61188118812,5689.14196647387,5689.10622891155,1.2978034725208,15165.095485202,10032.7173028716,0,15165.095485202,69.3448477600234,69.3448477600234,0.401179350608331,69.3435622601137,24.8,1015.2,38.75,316.932780765944
@@ -330,21 +330,21 @@ Time,Lat,Long,Heading,v_veh_GPS,v_veh_CAN,vair_ar,beta_ar,n_eng,tq_l,tq_r,t_amb_
 45378,2873.81633950495,456.615335445544,45,73.5114257425742,75.7167685148515,17.5741683168317,-1.06980198019802,1868.89603960396,2749.21683168317,2585.13168316832,20,40,9.7029702970297,32,5305780.28147634,396126.022840316,0,0,0,0,0,0,0,73.5114257425741,5341.53683765137,17.5741683168317,18.8493903919009,19.1697873535887,-1.06980198019802,-1.05516177126816,-0.819747123436773,2.03530016673874,1.61473456249463,1.71032471898335,54.3639821142858,0.00316808940130984,5334.34851485149,5336.20062738947,5336.57454169133,1.22433233928089,14201.6920266775,9123.02820568398,0,14201.6920266775,73.498465738653,73.498465738653,0.364890696990498,73.4959678922232,24.8,1015.2,38.42,368.237596090595
 45379,2873.82320079208,456.62832960396,45,74.7869504950495,77.030559009901,18.3837931794059,-1.53861386138614,1904.67326732673,2680.38415841584,2522.93069306931,20,40,9.94059405940594,32,5305792.69959872,396142.438343373,0,0,0,0,0,0,0,74.7869504950494,5362.13463058317,18.3837931794059,19.7177634967058,19.9316099982385,-1.53861386138614,-1.52397365245628,-1.19333753239268,2.02588564315512,1.60726541525615,1.54393618019427,55.404699482616,0.00374410565609345,5203.31485148515,5207.49227526713,5207.4022542132,1.20345181697719,13877.2208100774,8895.49961842469,0,13877.2208100774,74.7861977257131,74.7861977257131,0.355783474387045,74.7851785843213,24.8,1015.2,38.31,399.196083822268
 45380,2873.83016752475,456.641562475248,45,76.0211386138614,78.3017727722772,18.1016815183168,-0.868712871287128,1933.4900990099,2608.57425742574,2489.9099009901,20,40,9.97029702970297,32,5305805.30773752,396159.154652689,0,0,0,0,0,0,0,76.0211386138613,5383.08487458756,18.1016815183168,19.4151811646086,19.7623446373797,-0.868712871287128,-0.854072662357271,-0.658437599540746,2.26920253509319,1.80030435932537,1.66318541179821,56.2429471373899,0.00705619912109919,5098.48415841584,5097.46184687776,5097.71431323481,1.18390709056978,13578.9573432426,8331.92669104778,0,13578.9573432426,76.0219827467894,76.0219827467894,0.333209434804854,76.0218021807351,24.8,1015.2,38.2063118811881,391.883107446565
-45381,2873.83724831683,456.654997326733,45,77.2134653465347,79.5298693069307,18.9497623762376,-0.243960396039604,1962.33663366337,2533.72376237624,2357.79504950495,20,40,9.99009900990099,32,5305818.12267437,396176.126294237,0,0,0,0,0,0,0,77.2134653465346,5404.36989430703,18.9497623762376,20.3248007202343,20.5522354379082,-0.243960396039604,-0.229320187109747,-0.183744943131211,1.72509342110071,1.36862759415328,1.50673638233748,57.0820588165459,-0.00403211378348525,4891.51881188119,4942.44756396432,4950.42476093763,1.16562320544048,13018.6773004906,8016.00675729276,0,13018.6773004906,77.2091564552494,77.2091564552494,0.320677983639948,77.2075596175001,24.8,1015.2,38.14,422.816203030136
+45381,2873.83724831683,456.654997326733,45,77.2134653465347,79.5298693069307,18.9497623762376,-0.243960396039604,1962.33663366337,2533.72376237624,2357.79504950495,20,40,9.99009900990099,32,5305818.12267437,396176.126294237,0,0,0,0,0,0,0,77.2134653465346,5404.36989430703,18.9497623762376,20.3248007202343,20.5522354379082,-0.243960396039604,-0.229320187109747,-0.18374494313121,1.72509342110071,1.36862759415328,1.50673638233748,57.0820588165459,-0.00403211378348525,4891.51881188119,4942.44756396432,4950.42476093763,1.16562320544048,13018.6773004906,8016.00675729276,0,13018.6773004906,77.2091564552494,77.2091564552494,0.320677983639948,77.2075596175001,24.8,1015.2,38.14,422.816203030136
 45382,2873.84444376238,456.668628118812,45,78.3357128712871,80.6857842574257,20.6923663366337,-1.08851485148515,1769.86138613861,2602.02871287129,2406.03861386139,20,40,9.96039603960396,32,5305831.14564725,396193.345760856,0,0,0,0,0,0,0,78.335712871287,5425.97553490109,20.6923663366337,22.1938520321259,22.0994189282123,-1.08851485148515,-1.07387464255529,-0.852035263575591,1.61080520633452,1.27795540069276,1.30208725979047,51.4831808200492,-0.0676819099370738,5008.06732673267,4964.23053622194,4956.04267126455,1.14892361262624,11844.174413029,7917.63343693486,0,11844.174413029,78.3414256445446,78.3414256445446,0.317304131403248,78.3422900972548,24.8,1015.2,38.08,489.021663058247
 45383,2873.85172415842,456.682492376238,45,79.4882277227723,81.8728745544555,18.7105396040594,-1.18772277227723,1728.73762376238,2513.85940594059,2316.9504950495,20,40,9.91089108910891,32,5305844.32079752,396210.858803343,0,0,0,0,0,0,0,79.4882277227722,5447.89828440604,18.7105396040594,20.0682193934752,20.47918442491,-1.18772277227723,-1.17308256334737,-0.906760543409093,2.40974170575044,1.91180312493901,1.89402044297146,50.2869390629274,0.00367210362424549,4830.8099009901,4832.6241937065,4833.79900113905,1.13226297176291,11002.1439279868,7607.26920949712,0,11002.1439279868,79.4751483187922,79.4751483187922,0.304260747856957,79.4743164812055,24.8,1015.2,38.02,420.29713911947
 45384,2873.85909663366,456.696563465347,45,80.5564158415842,82.9731083168317,18.8061287128713,-0.74970297029703,1751.57425742574,2489.2099009901,2290.28910891089,20,40,10,32,5305857.66192921,396228.63247873,0,0,0,0,0,0,0,80.5564158415841,5470.1273399341,18.8061287128713,20.1707446678851,20.6221354149119,-0.74970297029703,-0.735062761367171,-0.572882250106124,2.52344189305675,2.0020087983851,1.92912348512938,50.9512298087566,0.00532815035674837,4779.49900990099,4780.71010685227,4780.53890142662,1.11724916203467,10882.8461983796,7738.89271490277,0,10882.8461983796,80.5636417017938,80.5636417017938,0.309512139332745,80.564532140131,24.8,1015.2,37.96,425.903215526069
-45385,2873.86659089109,456.710804059406,45,81.6369405940594,84.0860488118812,20.3759438944555,0.143960396039604,1775.5297029703,2473.41287128713,2251.6396039604,20,40,10,32,5305871.22490081,396246.62127587,0,0,0,0,0,0,0,81.6369405940593,5492.6600259627,20.3759438944555,21.8544692497461,22.0199309353456,0.143960396039604,0.158600604969461,0.120288596741723,1.99668683816549,1.58410012476445,1.50685914432832,51.6480654729811,-7.2002031847948E-05,4725.05247524752,4728.62331144005,4728.82668512822,1.10245522360219,10761.5383145481,7289.70937254481,0,10761.5383145481,81.6469036368983,81.6469036368983,0.291589059896088,81.6469529557715,24.8,1015.2,37.9,486.601178211569
-45386,2873.87418693069,456.725227920792,45,82.7151287128713,85.1965825742574,19.949698019703,-0.103861386138614,1795.61881188119,2491.39801980198,2194.81485148515,20,40,10,32,5305884.97235923,396264.841668644,0,0,0,0,0,0,0,82.7151287128712,5515.48919570968,19.949698019703,21.3972939939218,21.7193059004692,-0.103861386138614,-0.0892211772087562,-0.062455378270917,2.20988429279248,1.75324338149286,1.90576105864657,52.232433963459,0.0082082316306664,4686.21287128713,4683.96727771787,4683.689663003,1.08808308209221,10653.1404694909,7441.17449215434,0,10653.1404694909,82.716156063131,82.716156063131,0.297579757975794,82.7158666545553,24.8,1015.2,37.84,473.1425456718
+45385,2873.86659089109,456.710804059406,45,81.6369405940594,84.0860488118812,20.3759438944555,0.143960396039604,1775.5297029703,2473.41287128713,2251.6396039604,20,40,10,32,5305871.22490081,396246.62127587,0,0,0,0,0,0,0,81.6369405940593,5492.6600259627,20.3759438944555,21.8544692497461,22.0199309353456,0.143960396039604,0.158600604969461,0.120288596741723,1.99668683816549,1.58410012476445,1.50685914432832,51.6480654729811,-7.2002031847948E-05,4725.05247524752,4728.62331144005,4728.82668512822,1.10245522360219,10761.5383145481,7289.70937254481,0,10761.5383145481,81.6469036368983,81.6469036368983,0.291589059896088,81.6469529557715,24.8,1015.2,37.9,486.60117821157
+45386,2873.87418693069,456.725227920792,45,82.7151287128713,85.1965825742574,19.949698019703,-0.103861386138614,1795.61881188119,2491.39801980198,2194.81485148515,20,40,10,32,5305884.97235923,396264.841668644,0,0,0,0,0,0,0,82.7151287128712,5515.48919570968,19.949698019703,21.3972939939218,21.7193059004692,-0.103861386138614,-0.0892211772087562,-0.0624553782709169,2.20988429279248,1.75324338149286,1.90576105864657,52.232433963459,0.0082082316306664,4686.21287128713,4683.96727771787,4683.689663003,1.08808308209221,10653.1404694909,7441.17449215434,0,10653.1404694909,82.716156063131,82.716156063131,0.297579757975794,82.7158666545553,24.8,1015.2,37.84,473.1425456718
 45387,2873.8818839604,456.739836534654,45,83.7737128712871,86.2869242574258,19.6052618261386,0.136633663366337,1818.5297029703,2437.67821782178,2188.38316831683,20,40,10,32,5305898.90280622,396283.295477282,0,0,0,0,0,0,0,83.773712871287,5538.61425401551,19.6052618261386,21.0278647179215,21.4868617199537,0.136633663366337,0.151273872296194,0.118065336016248,2.53241946481064,2.00913128362594,1.96675675680069,52.8988847702437,0.00273607721022213,4626.06138613861,4480.09590236251,4457.02135729221,1.07433339225897,10515.9934088061,6808.37218633993,0,10515.9934088061,83.7594611312615,83.7594611312615,0.272312627302335,83.7578255870514,24.8,1015.2,37.78,462.115872355183
-45388,2873.88966871287,456.754610990099,45,84.4681188118812,87.0021623762376,21.1736534653465,-0.136831683168317,1823.26237623762,557.59801980198,492.171287128713,20,40,10,32,5305912.99209154,396301.958700066,0,0,0,0,0,0,0,84.4681188118811,5562.00312348745,21.1736534653465,22.7100624618972,22.860531087647,-0.136831683168317,-0.12219147423846,-0.0984549498129115,1.65310460936132,1.31151423842906,1.3908636486159,53.0365526551369,-0.00180005079619877,1049.76930693069,1252.73311440055,1274.9413984763,1.06549180280975,2384.4125054026,224.418488427669,0,2384.4125054026,84.381316831683,84.381316831683,0.00899149320875005,84.3745022458987,24.8,1015.2,37.72,523.08471650548
+45388,2873.88966871287,456.754610990099,45,84.4681188118812,87.0021623762376,21.1736534653465,-0.136831683168317,1823.26237623762,557.59801980198,492.171287128713,20,40,10,32,5305912.99209154,396301.958700066,0,0,0,0,0,0,0,84.4681188118811,5562.00312348745,21.1736534653465,22.7100624618972,22.860531087647,-0.136831683168317,-0.12219147423846,-0.0984549498129114,1.65310460936132,1.31151423842906,1.3908636486159,53.0365526551369,-0.00180005079619877,1049.76930693069,1252.73311440055,1274.9413984763,1.06549180280975,2384.4125054026,224.418488427669,0,2384.4125054026,84.381316831683,84.381316831683,0.00899149320875005,84.3745022458987,24.8,1015.2,37.72,523.08471650548
 45389,2873.89749069307,456.769353861386,45,84.071504950495,86.5936500990099,20.3297821782178,-0.00792079207920784,1819.59405940594,255.836633663366,233.215841584158,20,40,9.95049504950495,32,5305927.15110155,396320.583727403,0,0,0,0,0,0,0,84.0715049504949,5585.4114329484,20.3297821782178,21.8049579332026,22.1205422203041,-0.00792079207920784,0.00671941685064954,0.0128025839464855,2.09691034330895,1.66361387923381,1.5550248943251,52.9298456439383,0.00208805892359058,489.052475247525,477.468885403392,478.956528176182,1.07051804947383,1108.13319280921,-1751.75474925637,0,1108.13319280921,84.0966090579354,84.0966090579354,-0.0700870829657399,84.0989591005829,24.8,1015.2,37.66,490.112158694406
-45390,2873.90529960396,456.784036039604,45,84.0248118811881,86.5455562376237,20.3992568757426,0.589405940594059,1819.33663366337,767.29504950495,784.469306930693,20,40,9.87128712871287,32,5305941.28731991,396339.132625336,0,0,0,0,0,0,0,84.024811881188,5608.75036746435,20.3992568757426,21.8794738745772,22.1768229902139,0.589405940594059,0.604046149523918,0.479129948297826,2.15427501487186,1.70912496371783,1.73702432207298,52.9223574326261,0.000936026414023354,1551.76435643564,1501.73662386041,1496.35805496438,1.07111370406383,3518.13736297183,740.209581127319,0,3518.13736297183,84.0353296735613,84.0353296735613,0.0296008561252034,84.0370727306374,24.8,1015.2,37.6126237623762,493.011534625632
+45390,2873.90529960396,456.784036039604,45,84.0248118811881,86.5455562376237,20.3992568757426,0.589405940594059,1819.33663366337,767.29504950495,784.469306930693,20,40,9.87128712871287,32,5305941.28731991,396339.132625336,0,0,0,0,0,0,0,84.024811881188,5608.75036746435,20.3992568757426,21.8794738745772,22.1768229902139,0.589405940594059,0.604046149523918,0.479129948297826,2.15427501487187,1.70912496371783,1.73702432207298,52.9223574326261,0.000936026414023354,1551.76435643564,1501.73662386041,1496.35805496438,1.07111370406383,3518.13736297183,740.209581127319,0,3518.13736297183,84.0353296735613,84.0353296735613,0.0296008561252034,84.0370727306374,24.8,1015.2,37.6126237623762,493.011534625632
 45391,2873.91311455445,456.798734356436,45,84.1724257425743,86.6975985148515,20.8873861386139,1.08643564356436,1823.18316831683,857.068316831683,845.149504950495,20,40,9.99009900990099,32,5305955.43442327,396357.701736379,0,0,0,0,0,0,0,84.1724257425742,5632.11420288789,20.8873861386139,22.403022919499,22.6003860369962,1.08643564356436,1.10107585249421,0.870667400447359,1.754081530179,1.39162572602347,1.45241531712913,53.0342485901178,-0.0042481198790291,1702.21782178218,1701.00879325556,1700.14046451374,1.06923491101411,3861.01108739333,1057.16709168253,0,3861.01108739333,84.1877779629447,84.1877779629447,0.0423215588885888,84.1878522254094,24.8,1015.2,37.64,511.527166317789
-45392,2873.92091376238,456.813501584158,45,84.3472871287129,86.8777057425743,20.2437524752475,1.13485148514851,1826.08910891089,832.436633663367,848.821782178218,20,40,9.95049504950495,32,5305969.55088324,396376.356071763,0,0,0,0,0,0,0,84.3472871287127,5655.51950462057,20.2437524752475,21.7126857171096,22.0627729837458,1.13485148514851,1.14949169407837,0.899124533190204,2.11340999487066,1.67670411431618,1.6210824113584,53.1187789755073,0.00064801828663155,1681.25841584158,1679.95373982943,1679.85985935042,1.06701775949463,3811.52470940214,1094.42114397449,0,3811.52470940214,84.3424777962944,84.3424777962944,0.0437715801282981,84.3427348015174,24.8,1015.2,37.68,487.031093768854
-45393,2873.92870425742,456.828326831683,45,84.4679603960396,87.0019992079208,20.7905346534653,-0.045049504950495,1827.39108910891,797.39603960396,811.150495049505,20,40,10,32,5305983.64996563,396395.082298406,0,0,0,0,0,0,0,84.4679603960395,5678.96933520363,20.7905346534653,22.2991436678219,22.5352992575605,-0.045049504950495,-0.0304092960206375,-0.0234203788997618,1.72439995710992,1.36807742455567,1.45921434869793,53.1566520442593,0.00360010159239754,1608.54653465346,1611.78643270268,1611.8416528088,1.06549312287743,3644.21137382595,910.06175770157,0,3644.21137382595,84.481987060092,84.481987060092,0.0363730679998677,84.4823911468315,24.8,1015.2,37.72,508.259439927602
+45392,2873.92091376238,456.813501584158,45,84.3472871287129,86.8777057425743,20.2437524752475,1.13485148514851,1826.08910891089,832.436633663367,848.821782178218,20,40,9.95049504950495,32,5305969.55088324,396376.356071763,0,0,0,0,0,0,0,84.3472871287127,5655.51950462057,20.2437524752475,21.7126857171096,22.0627729837458,1.13485148514851,1.14949169407837,0.899124533190204,2.11340999487066,1.67670411431619,1.6210824113584,53.1187789755073,0.00064801828663155,1681.25841584158,1679.95373982943,1679.85985935042,1.06701775949463,3811.52470940214,1094.42114397449,0,3811.52470940214,84.3424777962944,84.3424777962944,0.0437715801282981,84.3427348015174,24.8,1015.2,37.68,487.031093768854
+45393,2873.92870425742,456.828326831683,45,84.4679603960396,87.0019992079208,20.7905346534653,-0.045049504950495,1827.39108910891,797.39603960396,811.150495049505,20,40,10,32,5305983.64996563,396395.082298406,0,0,0,0,0,0,0,84.4679603960395,5678.96933520363,20.7905346534653,22.2991436678219,22.5352992575605,-0.045049504950495,-0.0304092960206375,-0.0234203788997617,1.72439995710992,1.36807742455567,1.45921434869793,53.1566520442593,0.00360010159239754,1608.54653465346,1611.78643270268,1611.8416528088,1.06549312287743,3644.21137382595,910.06175770157,0,3644.21137382595,84.481987060092,84.481987060092,0.0363730679998677,84.4823911468315,24.8,1015.2,37.72,508.259439927602
 45394,2873.9364890099,456.843199108911,45,84.6106435643565,87.1489628712871,19.9759466446535,0.34009900990099,1831.38118811881,779.959405940594,756.093069306931,20,40,10,32,5305997.73741891,396413.866824894,0,0,0,0,0,0,0,84.6106435643563,5702.45498930154,19.9759466446535,21.4254472794727,21.8503246470312,0.34009900990099,0.354739218830847,0.278963985352822,2.42647494330802,1.92507867881957,1.89292020489137,53.2727193195982,-0.00597616864337993,1536.05247524752,1525.23307850439,1524.56041785388,1.06369634217911,3481.53424264303,783.875417816759,0,3481.53424264303,84.6137688461914,84.6137688461914,0.0314035116382895,84.6137240924092,24.8,1015.2,37.76,477.967419055891
-45395,2873.94427712871,456.858101881188,45,84.7333861386139,87.2753877227723,19.2652475247525,-1.86356435643564,1833.05940594059,670.706358756436,693.208131013861,20,40,10,32,5306011.83048612,396432.689357416,0.851485148514851,0.851485148514851,4517987.4058914,337560.818932693,8.50963773031377,0,0,84.7333861386138,5725.97493432354,19.2652475247525,20.6631781967666,21.2520082462332,-1.86356435643564,-1.84892414750579,-1.43154333771313,3.12759777205072,2.48132452531744,2.5245669148201,53.3215366971911,0.000360010159239759,1363.9144897703,1374.73499886567,1375.6943923525,1.06215539150212,3089.8809891371,652.448937302018,0,3089.8809891371,84.7228696206254,84.7228696206254,0.0260949362263116,84.7226260254596,24.8,1015.2,37.8,451.898079132704
+45395,2873.94427712871,456.858101881188,45,84.7333861386139,87.2753877227723,19.2652475247525,-1.86356435643564,1833.05940594059,670.706358756436,693.208131013861,20,40,10,32,5306011.83048612,396432.689357416,0.851485148514851,0.851485148514851,4517987.4058914,337560.818932693,8.50963773031734,0,0,84.7333861386138,5725.97493432354,19.2652475247525,20.6631781967666,21.2520082462332,-1.86356435643564,-1.84892414750579,-1.43154333771313,3.12759777205072,2.48132452531744,2.5245669148201,53.3215366971911,0.000360010159239759,1363.9144897703,1374.73499886567,1375.6943923525,1.06215539150212,3089.8809891371,652.448937302018,0,3089.8809891371,84.7228696206254,84.7228696206254,0.0260949362263116,84.7226260254596,24.8,1015.2,37.8,451.898079132704
 45396,2873.95207950495,456.873021386139,45,84.8096732673267,87.3539634653466,19.2127612764357,0.517524752475248,1833.88613861386,674.734739629703,694.158934328713,20,40,10,32,5306025.94964933,396451.533114647,1,1,5306022.21076005,396454.579014968,31.7572505853503,0,0,84.8096732673266,5749.52163083069,19.2127612764357,20.6068834255493,21.2122699132026,0.517524752475248,0.532164961405105,0.409752414219695,3.2375957572078,2.56859300361885,2.55671441695064,53.3455853758284,0.00252007111467829,1368.89367395842,1368.10086757051,1368.03770390716,1.06119983473442,3099.74748634836,288.640649139851,0,3099.74748634836,84.8005273992744,84.8005273992744,0.0115252861919709,84.7998652522394,24.8,1015.2,37.84,450.89293201416
 45397,2873.9599140594,456.887915940594,45,84.8584851485148,87.4042397029703,19.0393531350495,-0.174752475247525,1836.08415841584,690.978366552475,685.574825306931,20,40,10,32,5306040.12903574,396470.346769594,1,1,5306037.07972746,396472.83090014,55.2990751560944,0,0,84.8584851485147,5773.08322046215,19.0393531350495,20.4208923905715,21.0668443762263,-0.174752475247525,-0.160112266317668,-0.128710962707467,3.39495937204247,2.6934396831923,2.59773176825118,53.4095231801093,0.00324009143315779,1376.55319185941,1375.43898081584,1375.35021052804,1.0605906118091,3119.03973671136,255.975531318985,0,3119.03973671136,84.8307421821389,84.8307421821389,0.0102127787036335,84.8305132484676,24.8,1015.2,37.88,444.336598957836
 45398,2873.9677690099,456.902789603961,45,84.8479108910891,87.3933482178217,19.4773872387129,-1.39316831683168,1838.15346534653,692.531556953465,667.268270656436,20,40,9.95049504950495,32,5306054.34672976,396489.134986959,1,1,5306051.95152022,396491.086253482,78.8453730760923,0,0,84.847910891089,5796.65190585819,19.4773872387129,20.8907112563103,21.4389601121674,-1.39316831683168,-1.37852810790183,-1.06887945272081,2.99825256914623,2.37870665448149,2.48459271399262,53.4697168787342,0.00734420724849099,1359.7998276099,1359.38861241125,1359.35585049233,1.06072335094935,3084.92232533284,272.331658814017,0,3084.92232533284,84.8634848544259,84.8634848544259,0.0108336328682294,84.8633218293257,24.8,1015.2,37.92,460.290373944117
@@ -356,22 +356,22 @@ Time,Lat,Long,Heading,v_veh_GPS,v_veh_CAN,vair_ar,beta_ar,n_eng,tq_l,tq_r,t_amb_
 45404,2874.0146040594,456.992487524753,45,85.027495049505,87.5783199009901,19.8193212324752,-0.657326732673267,1840.07920792079,693.993645067327,672.474811941584,20,40,9.93069306930693,32,5306139.09817989,396602.42049088,1,1,5306141.23334991,396600.681066534,220.20402388975,0,0,85.0274950495049,5938.18790486809,19.8193212324752,21.2574567671358,21.7403565416791,-0.657326732673267,-0.64268652374341,-0.503501243527177,2.77695190932509,2.2031346037561,2.26000645014093,53.5257344595119,-0.0147604165288299,1366.46845700891,1365.77741629653,1365.72236040445,1.05848151694447,3096.73397534368,382.949520803705,0,3096.73397534368,85.0096800313694,85.0096800313694,0.0154396627781569,85.0090475247523,24.8,1015.2,38.28,473.70452095956
 45405,2874.0224339604,457.007447029703,45,85.0558910891089,87.6075678217822,20.136099009901,-0.733564356435644,1840.4504950495,683.137437748515,657.653033847525,20,40,10,32,5306153.26798058,396621.314153605,1.1980198019802,1,5306156.13766371,396618.976306668,194.072540016788,0,0,85.0558910891088,5961.80884037414,20.136099009901,21.5972206687059,22.0112769601729,-0.733564356435644,-0.718924147505786,-0.560415631737548,2.48220626160928,1.96929391907999,1.9075182656042,53.5365347642891,0.00417611784718115,1340.79047159604,1341.17691697291,1341.20770545559,1.0581283695505,3038.1541519361,282.444720739851,0,3038.1541519361,85.046661993922,85.046661993922,0.0112638739121378,85.0464507307872,24.8,1015.2,38.35,485.278351832708
 45406,2874.03027633663,457.02240029703,45,85.0255841584158,87.5763516831683,19.7290357542574,-2.2360396039604,1840.03465346535,664.799707691089,658.779976432673,20,40,9.9009900990099,32,5306167.46108974,396640.200367658,2,1,5306171.04809859,396637.277917975,16.2756612175371,0,0,85.0255841584157,5985.43492841045,19.7290357542574,21.1606199669546,21.6635411425096,-2.2360396039604,-2.22139939503054,-1.72861795316521,3.11340758841982,2.47006653972326,2.4958389751437,53.5244384229387,0.0128883637007832,1323.57968412376,1324.6883194906,1324.77664555907,1.05850522874362,2999.54124353187,-223.577822115596,0,2999.54124353187,85.03651857661,85.03651857661,-0.00904867714491845,85.0369099481376,24.8,1015.2,38.42,471.277704839173
-45407,2874.03812326733,457.037344752475,45,85.0283366336634,87.5791867326733,18.6824801979208,0.87039603960396,1840.55940594059,655.840079338614,674.819533883168,20,40,9.91089108910891,32,5306181.66289262,396659.075663564,2,1,5306185.95702193,396655.577100451,39.8793913171873,0,0,85.0283366336633,6009.05373231584,18.6824801979208,20.0381239322883,20.7740352314015,0.87039603960396,0.885036248533818,0.680420817833427,3.73594261752196,2.96396362885167,2.82445435935355,53.5397028536904,-0.0185045221849234,1330.65961322178,1331.47116433506,1331.53582140934,1.05847107404864,3016.36614064868,-203.597910231948,0,3016.36614064868,85.0218561905694,85.0218561905694,-0.00799213584725765,85.0215432343233,24.8,1015.2,38.49,431.586021972377
+45407,2874.03812326733,457.037344752475,45,85.0283366336634,87.5791867326733,18.6824801979208,0.87039603960396,1840.55940594059,655.840079338614,674.819533883168,20,40,9.91089108910891,32,5306181.66289262,396659.075663564,2,1,5306185.95702193,396655.577100451,39.8793913171873,0,0,85.0283366336633,6009.05373231584,18.6824801979208,20.0381239322883,20.7740352314015,0.87039603960396,0.885036248533818,0.680420817833428,3.73594261752196,2.96396362885167,2.82445435935355,53.5397028536904,-0.0185045221849234,1330.65961322178,1331.47116433506,1331.53582140934,1.05847107404864,3016.36614064868,-203.597910231948,0,3016.36614064868,85.0218561905694,85.0218561905694,-0.00799213584725765,85.0215432343233,24.8,1015.2,38.49,431.586021972377
 45408,2874.04604227723,457.052184653465,45,84.9935643564356,87.5433712871287,21.5257640263366,0.612178217821782,1837.4801980198,664.495993683168,691.025011049505,20,40,9.91089108910891,32,5306196.00060377,396677.823023689,2,1,5306200.85751927,396673.865940857,63.4697813969476,0,0,84.9935643564355,6032.6656778879,21.5257640263366,23.0877229750754,23.1908498752004,0.612178217821782,0.626818426751641,0.495255873630204,1.7120493597633,1.35827890110985,1.72335462457877,53.4501323260715,0.00288008127391804,1355.52100473267,1355.28933524305,1355.27087790719,1.05890419624894,3068.83614795962,-209.90865179169,0,3068.83614795962,84.9903019311831,84.9903019311831,-0.00841965384657022,84.9900812824139,24.8,1015.2,38.56,538.96258163173
 45409,2874.0539670297,457.067006633663,45,84.9359504950495,87.484029009901,18.8748487345545,-0.892475247524752,1839.51485148515,682.80924299604,692.497166961386,20,40,10,32,5306210.34941167,396696.548158834,2,1,5306215.75156054,396692.146857112,87.0499502818324,0,0,84.9359504950494,6056.26769609473,18.8748487345545,20.2444511724032,20.9319828737888,-0.892475247524752,-0.877835038594895,-0.674893942020692,3.56646581023458,2.82950677440809,2.45880525805332,53.5093179962506,0.0108723068090406,1375.30640995743,1374.24451572055,1374.1599135641,1.05962229860072,3119.17778772484,-251.917786732984,0,3119.17778772484,84.9471455739633,84.9471455739633,-0.0101651254234235,84.9473281471003,24.8,1015.2,38.63,438.516567384737
-45410,2874.06185237624,457.081869108911,45,84.9495544554455,87.4980410891088,20.2152398237624,-1.91722772277228,1839.09405940594,693.942710311881,677.882508261386,20,40,9.89108910891089,32,5306224.62438303,396715.322334723,2,1,5306230.64015837,396710.421092086,110.621501124329,0,0,84.9495544554454,6079.86109048416,20.2152398237624,21.6821041220513,22.0729078758899,-1.91722772277228,-1.90258751384242,-1.48210055083082,2.44070247393911,1.93636629419169,2.03702867507901,53.4970776508364,-0.010224288522409,1371.82521857327,1370.90940025645,1370.83643611174,1.05945253275718,3110.07553502158,75.8815684202301,0,3110.07553502158,84.9400628369767,84.9400628369767,0.00311924756832114,84.9400503536067,24.8,1015.2,38.6974752475248,488.355229925214
+45410,2874.06185237624,457.081869108911,45,84.9495544554455,87.4980410891088,20.2152398237624,-1.91722772277228,1839.09405940594,693.942710311881,677.882508261386,20,40,9.89108910891089,32,5306224.62438303,396715.322334723,2,1,5306230.64015837,396710.421092086,110.621501124338,0,0,84.9495544554454,6079.86109048416,20.2152398237624,21.6821041220513,22.0729078758899,-1.91722772277228,-1.90258751384242,-1.48210055083082,2.44070247393911,1.93636629419169,2.03702867507901,53.4970776508364,-0.010224288522409,1371.82521857327,1370.90940025645,1370.83643611174,1.05945253275718,3110.07553502158,75.8815684202301,0,3110.07553502158,84.9400628369767,84.9400628369767,0.00311924756832114,84.9400503536067,24.8,1015.2,38.6974752475248,488.355229925214
 45411,2874.06969752475,457.096778118812,45,84.9592673267327,87.5080453465347,19.5337409242574,-1.64960396039604,1840.12871287129,687.660337119802,660.617684762376,20,40,9.58415841584158,32,5306238.82391645,396734.153048302,2,1,5306245.526345,396728.692367559,134.189234567736,0,0,84.9592673267325,6103.45825563817,19.5337409242574,20.951154094896,21.4929269480967,-1.64960396039604,-1.63496375146618,-1.26413109537074,3.00669894619696,2.38540770879012,2.24279741192105,53.5271745001488,-0.00280807924207008,1348.27802188218,1348.3502786216,1348.35603538693,1.05933174221501,3058.04888087814,214.689119506181,0,3058.04888087814,84.9576531712576,84.9576531712576,0.00861026696728903,84.9578041489862,24.8,1015.2,38.75,462.709579019181
 45412,2874.07751792079,457.111723861386,45,84.9904950495049,87.5402099009901,19.7714493952475,-2.37207920792079,1838.32673267327,669.738108370297,656.575895569307,20,40,9.36633663366337,32,5306252.97684144,396753.028602535,2,1,5306260.41589443,396746.967770532,157.762291986201,0,0,84.9904950495048,6127.06333561618,19.7714493952475,21.2061112392897,21.697349241864,-2.37207920792079,-2.35743899899094,-1.82600423552337,2.79804622789021,2.21987008376834,2.30096513940935,53.4747570209636,0.0080642275669705,1326.3140039396,1327.30790322006,1327.38708815178,1.05894217975568,3004.19441861949,224.58562334342,0,3004.19441861949,84.9958484462307,84.9958484462307,0.00891797100500875,84.9957056105609,24.8,1015.2,38.8,471.691224536621
 45413,2874.08532079208,457.126694059406,45,85.0043366336633,87.5544667326732,19.3555929591089,-2.24188118811881,1840.30693069307,656.653638511881,669.473143024753,20,40,9.75247524752475,32,5306267.09682027,396771.933944656,2,1,5306275.30688628,396765.244943931,181.337633039793,0,0,85.0043366336633,6150.67460896602,19.3555929591089,20.7600793036417,21.3440584429419,-2.24188118811881,-2.22724097918896,-1.71605596452388,3.15075103894431,2.49969350150027,2.54196439766292,53.5323586464419,-0.000144004063695898,1326.12678153663,1327.12853694521,1327.20834778238,1.05877016340827,3006.51108042062,111.069712942382,0,3006.51108042062,85.0085159298107,85.0085159298107,0.00444400875730063,85.0088483734087,24.8,1015.2,38.85,456.123342843545
 45414,2874.09311138614,457.141684356436,45,85.0246732673267,87.5754134653465,19.9050577559406,-2.29059405940594,1838.75742574257,660.43672880099,687.451757292079,20,40,9.94059405940594,32,5306281.1936705,396790.863822309,2,1,5306290.20066539,396783.525538401,204.917386861719,0,0,85.0246732673267,6174.29152956557,19.9050577559406,21.3494145299447,21.8131306953062,-2.29059405940594,-2.27595385047609,-1.76837954704398,2.76324040465932,2.19225638498059,2.13379802552793,53.4872853745051,-0.00511214426120451,1347.88848609307,1347.97708832833,1347.98414735533,1.05851727424176,3052.56482185987,89.9034635284589,0,3052.56482185987,85.025593765317,85.025593765317,0.00363798756112869,85.0258479019329,24.8,1015.2,38.9,477.237947776391
 45415,2874.10090455445,457.156683663367,45,85.0238118811881,87.5745262376237,21.152605060396,-1.16158415841584,1842.32178217822,677.609223466336,693.982283339604,20,40,9.9009900990099,32,5306295.2951495,396809.804915114,2,1,5306305.10178308,396801.815140242,228.508759101461,0,0,85.023811881188,6197.91285987361,21.152605060396,22.6874867362705,22.8744181001143,-1.16158415841584,-1.14694394948598,-0.885480085691083,2.37306591908341,1.88270586385401,2.06941215103307,53.5909683003661,0.0038161076879414,1371.59150680594,1370.21210983614,1369.81894809674,1.05852785794772,3112.2788938073,106.05611765958,0,3112.2788938073,85.0348067836485,85.0348067836485,0.00421118844558302,85.0351867043846,24.8,1015.2,38.95,525.890403822982
-45416,2874.10870178218,457.171677425743,45,85.0529504950495,87.6045390099009,20.6210539054455,-1.07930693069307,1842.4900990099,629.239901631683,633.165980734654,20,40,10,32,5306309.40433255,396828.739143398,0.871287128712871,0.435643564356436,2311662.3073509,172869.851293678,106.893202677998,0,0,85.0529504950494,6221.53484370199,20.6210539054455,22.1173650069064,22.4241464857322,-1.07930693069307,-1.06466672176321,-0.831162937650037,2.1308357536271,1.69052908981687,1.62356216599907,53.5958644385318,0.00309608736946189,1262.40588236634,1263.3623298949,1263.7485233492,1.05816652705499,2863.75676394326,-200.157750651786,0,2863.75676394326,85.0467767865894,85.0467767865894,-0.00803161999368409,85.0463542668552,24.8,1015.2,39,503.871400458305
+45416,2874.10870178218,457.171677425743,45,85.0529504950495,87.6045390099009,20.6210539054455,-1.07930693069307,1842.4900990099,629.239901631683,633.165980734654,20,40,10,32,5306309.40433255,396828.739143398,0.871287128712871,0.435643564356436,2311662.3073509,172869.851293678,106.893202678001,0,0,85.0529504950494,6221.53484370199,20.6210539054455,22.1173650069064,22.4241464857322,-1.07930693069307,-1.06466672176321,-0.831162937650036,2.1308357536271,1.69052908981687,1.62356216599907,53.5958644385318,0.00309608736946189,1262.40588236634,1263.3623298949,1263.7485233492,1.05816652705499,2863.75676394326,-200.157750651786,0,2863.75676394326,85.0467767865894,85.0467767865894,-0.00803161999368409,85.0463542668552,24.8,1015.2,39,503.871400458305
 45417,2874.11648930693,457.186683366337,45,85.0652475247525,87.617204950495,19.7056243127723,-1.68861386138614,1842.46534653465,588.179207920792,607.165346534654,20,40,9.87128712871287,32,5306323.49533224,396847.688126476,0,0,0,0,0,0,0,85.0652475247524,6245.15786674929,19.7056243127723,21.1355097374271,21.6455221666521,-1.68861386138614,-1.67397365245628,-1.29835426788525,2.86409761344447,2.27227289731796,2.31529992402599,53.5951444182134,-0.00518414629305246,1195.34455445545,1193.51094990687,1193.25474776049,1.05801253703246,2711.15488117967,97.3085428888357,0,2711.15488117967,85.0489879423585,85.0489879423585,0.00393479942056087,85.0482567656764,24.8,1015.2,39.05,469.289285021055
 45418,2874.12426643565,457.201693762376,45,85.0606435643565,87.6124628712872,19.3078960395049,-2.24752475247525,1838.78712871287,567.107920792079,593.596039603961,20,40,9.86138613861386,32,5306337.56703685,396866.642222164,0,0,0,0,0,0,0,85.0606435643563,6268.78069240936,19.3078960395049,20.7089213858445,21.3068726643107,-2.24752475247525,-2.23288454354539,-1.72914516634642,3.1864775741813,2.5280376603561,2.5520566595742,53.4881493988873,-0.000360010159239747,1160.70396039604,1162.59689246152,1162.6041961339,1.0580695479826,2627.65648971076,50.3386030455609,0,2627.65648971076,85.0570270561709,85.0570270561709,0.00201641451271897,85.0563856671381,24.8,1015.2,39.1,454.428077265926
 45419,2874.13204009901,457.216712178217,45,85.050504950495,87.6020200990099,21.1940121010891,-2.1380198019802,1841.26237623762,572.220792079208,566.026732673267,20,40,9.9009900990099,32,5306351.63220514,396885.606099697,0,0,0,0,0,0,0,85.0505049504949,6292.40778921905,21.1940121010891,22.7318983670758,22.9114498201267,-2.1380198019802,-2.12337959305034,-1.66518610137288,2.15776845839198,1.71189653721162,1.62880119068217,53.5601514307352,0.00331209346500574,1138.24752475248,1142.04365258308,1142.32849599246,1.05819795403721,2580.63909458888,-45.5142102263773,0,2580.63909458888,85.0369869620624,85.0369869620624,-0.00184758574868858,85.0372940122582,24.8,1015.2,39.15,527.069177406069
 45420,2874.13981336634,457.231731188119,45,85.0404059405941,87.5916181188119,21.6250396039604,-2.15445544554456,1839.27722772277,618.687128712871,592.829702970297,20,40,10,32,5306365.69668789,396904.570611383,0,0,0,0,0,0,0,85.0404059405939,6316.03173206833,21.6250396039604,23.1942022169533,23.2775821620772,-2.15445544554456,-2.1398152366147,-1.68795976683162,1.62723886217389,1.29099327712279,1.4751160579308,53.5024058011932,-0.00828023366251435,1211.51683168317,1208.04066268013,1207.7646581801,1.05832231806213,2743.94090444547,156.728327731657,0,2743.94090444547,85.0452138025682,85.0452138025682,0.00633652474160924,85.0454214049975,24.8,1015.2,39.1962128712871,542.584053403395
 45421,2874.14758891089,457.246743168317,45,85.067495049505,87.6195199009901,19.0904037406931,-2.83376237623762,1841.78712871287,620.958415841584,579.030693069307,20,40,10,32,5306379.76560656,396923.526349797,0,0,0,0,0,0,0,85.0674950495048,6339.65799265689,19.0904037406931,20.4756473455811,21.1219841994904,-2.83376237623762,-2.81912216730777,-2.17138183187285,3.45204603523467,2.73873020575029,2.58806812699446,53.575415861487,0.00252007111467828,1199.98910891089,1201.23374179002,1201.07674681754,1.05798400603759,2720.66675374056,257.158749841656,0,2720.66675374056,85.0785721007743,85.0785721007743,0.0102658780729433,85.0785870815652,24.8,1015.2,39.22,446.691366671339
-45422,2874.15538643564,457.261735247525,45,85.0899405940593,87.6426388118812,18.6860297029703,-0.778019801980198,1840.43069306931,617.486138613862,525.582178217822,20,40,10,32,5306393.87574413,396942.457934904,0,0,0,0,0,0,0,85.0899405940593,6363.29304169429,18.6860297029703,20.0419309975883,20.7794727932755,-0.778019801980198,-0.763379593050341,-0.587159950174905,3.79070766832832,3.00741226694396,3.02069992032531,53.5359587480343,0.00252007111467828,1143.06831683168,1144.86013135967,1144.9887883074,1.05770481378656,2588.97751751903,68.5189277540019,0,2588.97751751903,85.0945975884716,85.0945975884716,0.00272032153709276,85.0949507779348,24.8,1015.2,39.24,431.820062419124
+45422,2874.15538643564,457.261735247525,45,85.0899405940593,87.6426388118812,18.6860297029703,-0.778019801980198,1840.43069306931,617.486138613862,525.582178217822,20,40,10,32,5306393.87574413,396942.457934904,0,0,0,0,0,0,0,85.0899405940593,6363.29304169429,18.6860297029703,20.0419309975883,20.7794727932755,-0.778019801980198,-0.763379593050341,-0.587159950174904,3.79070766832832,3.00741226694396,3.02069992032531,53.5359587480343,0.00252007111467828,1143.06831683168,1144.86013135967,1144.9887883074,1.05770481378656,2588.97751751903,68.5189277540019,0,2588.97751751903,85.0945975884716,85.0945975884716,0.00272032153709276,85.0949507779348,24.8,1015.2,39.24,431.820062419124
 45423,2874.16322366337,457.276695742574,45,85.1221683168317,87.6758333663366,19.5558465341584,-1.63227722772277,1841.35148514851,609.804950495049,513.525742574257,20,40,10,32,5306408.06018895,396961.351400691,0,0,0,0,0,0,0,85.1221683168315,6386.93478193082,19.5558465341584,20.9748637386961,21.5215578055005,-1.63227722772277,-1.61763701879292,-1.25703313414231,3.0033221481748,2.3827286776742,2.52228296152005,53.5627435038817,-0.00597616864337992,1123.33069306931,1119.76819919616,1119.64566713814,1.05730443007495,2544.86437782504,293.246448915184,0,2544.86437782504,85.1284504460346,85.1284504460346,0.0117785293381083,85.12850174446,24.8,1015.2,39.26,464.038502069011
 45424,2874.17108326732,457.291653564357,45,85.1754455445544,87.7307089108911,18.7871567654456,-1.92584158415842,1843.35643564356,559.218811881188,491.437623762376,20,40,10,32,5306422.28620259,396980.242183792,0,0,0,0,0,0,0,85.1754455445543,6410.58715704083,18.7871567654456,20.1503960723171,20.8703138651212,-1.92584158415842,-1.91120137522856,-1.4660695905116,3.72408522268373,2.95455639468576,2.61624320857556,53.6210651496786,0.00295208330576598,1050.65643564356,1046.66184687776,1046.2804620462,1.05664366777007,2381.55389893953,48.4589682275739,0,2381.55389893953,85.1608119792177,85.1608119792177,0.00191430034091886,85.1605791607731,24.8,1015.2,39.28,435.693847071359
 45425,2874.17895643564,457.306604653465,45,85.1747326732674,87.7299746534653,21.1714801980198,-1.58277227722772,1842.10396039604,461.948514851485,436.714851485149,20,40,10,32,5306436.53755257,396999.124936238,0,0,0,0,0,0,0,85.1747326732672,6434.24564980761,21.1714801980198,22.7077314972946,22.8997906263836,-1.58277227722772,-1.56813206829787,-1.2302036128844,2.02463018960847,1.60626938318848,1.90958094228075,53.5846321215635,-0.00266407517837418,898.663366336634,904.641770414665,905.136944837341,1.05665201112162,2034.81108709593,39.595886429082,0,2034.81108709593,85.1700140182334,85.1700140182334,0.00160523478089536,85.1696479962281,24.8,1015.2,39.3,525.94043816162
@@ -382,15 +382,15 @@ Time,Lat,Long,Heading,v_veh_GPS,v_veh_CAN,vair_ar,beta_ar,n_eng,tq_l,tq_r,t_amb_
 45430,2874.21843435643,457.381122376238,45,85.0804950495049,87.6329099009902,18.6334708475248,0.179405940594059,1841.9702970297,420.717821782178,480.50297029703,20,40,10,32,5306508.00810453,397093.244907699,0,0,0,0,0,0,0,85.0804950495049,6552.4859186195,18.6334708475248,19.9855583507021,20.7341722103948,0.179405940594059,0.194046149523918,0.148971915930581,3.8419498711374,3.04806600307899,3.01222440404007,53.5807440118437,0.0124563515096955,901.220792079208,899.862738947162,900.145780292315,1.05782324964359,2043.16911207523,-320.177060202697,0,2043.16911207523,85.0722875208312,85.0722875208312,-0.0129085928394831,85.0721030645921,24.8,1015.19873762376,39.3848514851485,429.906805949151
 45431,2874.2262830693,457.396063069307,45,85.065702970297,87.6176740594059,19.9001364136634,-0.68,1839.76732673267,460.014851485149,520.187128712871,20,40,10,32,5306522.21474906,397112.113343172,0,0,0,0,0,0,0,85.0657029702969,6576.11376927956,19.9001364136634,21.3441360837523,21.8114514976348,-0.68,-0.665359791070143,-0.506280173657189,2.76815746506354,2.19615740533636,2.31575035992648,53.516662203499,-0.00734420724849099,980.20198019802,976.52776198412,976.124837340877,1.05800602345468,2220.5570846299,104.534321608301,0,2220.5570846299,85.0592441917457,85.0592441917457,0.00424114193597097,85.0589589816123,24.8,1015.19,39.3,477.125473791344
 45432,2874.23409722773,457.411049207921,45,85.0597128712871,87.6115042574258,18.8786446644554,-0.335643564356436,1840.36633663366,474.208910891089,498.511881188119,20,40,10,32,5306536.35643819,397131.0371481,0,0,0,0,0,0,0,85.059712871287,6599.74155803094,18.8786446644554,20.2485225437087,20.9418404116081,-0.335643564356436,-0.321003355426578,-0.248966664262619,3.58544037489528,2.84456051727445,2.64680274803888,53.5340866952063,-0.0038161076879414,972.720792079208,973.67518870699,973.899226779821,1.05808050187404,2204.63623601253,-18.1334580368367,0,2204.63623601253,85.0578111949808,85.0578111949808,-0.000694376368313811,85.0577895332389,24.8,1015.18,39.2,438.670799090241
-45433,2874.24191544555,457.426024653465,45,85.0902079207921,87.6429141584159,19.7161419137624,-0.480990099009901,1840.79702970297,466.266336633664,515.611881188119,20,40,10,32,5306550.50594519,397149.947675606,0,0,0,0,0,0,0,85.0902079207919,6623.3713175469,19.7161419137624,21.1467905197364,21.6563495241288,-0.480990099009901,-0.466349890080044,-0.365813357620215,2.81220067225418,2.23109971510279,2.45090950901752,53.5466150487478,0.0126003555733914,981.878217821782,977.240064699538,977.100509193776,1.05770121884332,2224.38730741958,239.631787400412,0,2224.38730741958,85.0807040486226,85.0807040486226,0.0094816412334246,85.0804262140499,24.8,1015.17,39.1,469.736273140609
+45433,2874.24191544555,457.426024653465,45,85.0902079207921,87.6429141584159,19.7161419137624,-0.480990099009901,1840.79702970297,466.266336633664,515.611881188119,20,40,10,32,5306550.50594519,397149.947675606,0,0,0,0,0,0,0,85.0902079207919,6623.3713175469,19.7161419137624,21.1467905197364,21.6563495241288,-0.480990099009901,-0.466349890080044,-0.365813357620215,2.81220067225419,2.23109971510279,2.45090950901752,53.5466150487478,0.0126003555733914,981.878217821782,977.240064699538,977.100509193776,1.05770121884332,2224.38730741958,239.631787400412,0,2224.38730741958,85.0807040486226,85.0807040486226,0.0094816412334246,85.0804262140499,24.8,1015.17,39.1,469.736273140609
 45434,2874.24970712872,457.44105,45,85.0948514851485,87.647697029703,19.4722392734653,-0.517821782178218,1842.64851485149,467.209900990099,489.516831683169,20,40,10,32,5306564.60525398,397168.919386974,0,0,0,0,0,0,0,85.0948514851484,6647.00621606175,19.4722392734653,20.8851897428637,21.4497078955486,-0.517821782178218,-0.503181573248359,-0.37950682540332,3.10761145272189,2.46546809238203,2.51802013109743,53.6004725685701,-0.00705619912109919,956.726732673268,954.219017743359,953.922470532768,1.05764365960968,2169.47104809979,168.987329203669,0,2169.47104809979,85.1021784138808,85.1021784138808,0.006817142110257,85.1021518151814,24.8,1015.16,39,461.493646333754
 45435,2874.25751158416,457.456060297029,45,85.0948712871287,87.6477174257426,19.9261743675247,-0.411584158415841,1848.59900990099,441.232673267327,444.066336633663,20,40,10,32,5306578.72861681,397187.87268255,0,0,0,0,0,0,0,85.0948712871286,6670.64803421357,19.9261743675247,21.3720634114353,21.8351715974762,-0.411584158415841,-0.396943949485984,-0.308190743136141,2.74368345769463,2.17674060076515,2.0407101951536,53.7735654531325,-0.00813622959881844,885.29900990099,890.794157435546,891.06501650165,1.05764375040247,2013.60040958293,-188.524929607503,0,2013.60040958293,85.0943909420645,85.0943909420645,-0.00747475737672849,85.0947081565298,24.8,1015.15,38.9,478.019558131979
-45436,2874.26535188119,457.471016336634,45,85.1070792079209,87.6602915841584,19.7647502749505,-0.0252475247524753,1841.84158415842,428.411881188119,445.473267326733,20,40,10,32,5306592.91963593,397206.759489458,0,0,0,0,0,0,0,85.1070792079206,6694.28562725538,19.7647502749505,21.1989260154154,21.6984777225754,-0.0252475247524753,-0.0106073158226177,-0.00418306266154257,2.77945119352566,2.20511744670286,2.21034082625744,53.5769999061876,0.0079202235032746,873.885148514851,874.914135869032,874.948175388967,1.05749150706835,1980.20264048448,27.9963300201684,0,1980.20264048448,85.0983405548474,85.0983405548474,0.00105517977540391,85.0979992456388,24.8,1015.14,38.8,471.491788772583
-45437,2874.27319584158,457.485958514851,45,85.0655742574258,87.6175414851486,18.7348250822772,-0.873168316831683,1841.4504950495,429.723762376238,448.331683168317,20,40,10,32,5306607.11780924,397225.629059631,0,0,0,0,0,0,0,85.0655742574256,6717.92082901555,18.7348250822772,20.0942670818511,20.8205966792926,-0.873168316831683,-0.858528107901826,-0.658329704015307,3.69805338727696,2.93390366490986,2.93862555448557,53.5656235851557,-0.00432012191087705,878.055445544555,874.838407999216,874.618312116927,1.05800762095053,1990.68911075497,-21.5426367385737,0,1990.68911075497,85.0818499166747,85.0818499166747,-0.000826444030550724,85.082111551155,24.8,1015.13,38.7,433.57577921049
+45436,2874.26535188119,457.471016336634,45,85.1070792079209,87.6602915841584,19.7647502749505,-0.0252475247524753,1841.84158415842,428.411881188119,445.473267326733,20,40,10,32,5306592.91963593,397206.759489458,0,0,0,0,0,0,0,85.1070792079206,6694.28562725538,19.7647502749505,21.1989260154154,21.6984777225754,-0.0252475247524753,-0.0106073158226177,-0.00418306266154253,2.77945119352566,2.20511744670286,2.21034082625744,53.5769999061876,0.0079202235032746,873.885148514851,874.914135869032,874.948175388967,1.05749150706835,1980.20264048448,27.9963300201684,0,1980.20264048448,85.0983405548474,85.0983405548474,0.00105517977540391,85.0979992456388,24.8,1015.14,38.8,471.491788772583
+45437,2874.27319584158,457.485958514851,45,85.0655742574258,87.6175414851486,18.7348250822772,-0.873168316831683,1841.4504950495,429.723762376238,448.331683168317,20,40,10,32,5306607.11780924,397225.629059631,0,0,0,0,0,0,0,85.0655742574256,6717.92082901555,18.7348250822772,20.0942670818511,20.8205966792926,-0.873168316831683,-0.858528107901826,-0.658329704015307,3.69805338727695,2.93390366490986,2.93862555448557,53.5656235851557,-0.00432012191087705,878.055445544555,874.838407999216,874.618312116927,1.05800762095053,1990.68911075497,-21.5426367385737,0,1990.68911075497,85.0818499166747,85.0818499166747,-0.000826444030550724,85.082111551155,24.8,1015.13,38.7,433.57577921049
 45438,2874.28102376237,457.50092,45,85.063306930693,87.6152061386139,18.628696369703,-1.28247524752475,1840.80198019802,406.840594059406,430.627722772277,20,40,10,32,5306621.28590401,397244.522054581,0,0,0,0,0,0,0,85.063306930693,6741.55295118277,18.628696369703,19.9804374257879,20.729361278538,-1.28247524752475,-1.26783503859489,-0.973084593328115,3.83342635430545,3.04130374881916,3.03154031779649,53.5467590528115,-0.00194405485989467,837.468316831683,843.545397510048,843.850315888732,1.05803618658067,1897.89725361413,-283.627585357566,0,1897.89725361413,85.0671232232133,85.0671232232133,-0.0113292269821093,85.0671619047618,24.8,1015.12,38.6,429.706820637829
 45439,2874.28883623762,457.515897821782,45,85.0332574257425,87.5842551485148,18.785896589802,-2.30910891089109,1839.23267326733,410.755445544554,449.417821782178,20,40,10,32,5306635.42508676,397263.43479449,0,0,0,0,0,0,0,85.0332574257425,6765.17768105075,18.785896589802,20.1490444554304,20.8609571185681,-2.30910891089109,-2.29446870196123,-1.76465146636107,3.68553958682265,2.92397566193913,2.91947868861547,53.5011097646199,0.00612017270707582,860.173267326733,861.6127046368,861.568062234795,1.05841056988848,1947.93525738781,56.4612335634003,0,1947.93525738781,85.0419479462796,85.0419479462796,0.00220838915576109,85.0423711456859,24.8,1015.11,38.5,435.258318710384
 45440,2874.2966370297,457.530888118812,45,85.0194158415841,87.5699983168317,18.7755093506931,-1.78029702970297,1840.76732673267,420.548514851485,475.614851485149,20,40,10,32,5306649.54241256,397282.362594179,0,0,0,0,0,0,0,85.019415841584,6788.79970085273,18.7755093506931,20.1379034943602,20.8515973549069,-1.78029702970297,-1.76565682077312,-1.35891448086961,3.68517218203493,2.92368417608418,2.90693514420155,53.5457510243656,-0.00403211378348525,896.163366336634,893.691912557592,893.447194719472,1.05858597413009,2031.6641810001,-256.820947672474,0,2031.6641810001,85.0260571512596,85.0260571512596,-0.0102400091494276,85.0265373880244,24.8,1015.10252475248,38.4265099009901,434.901247118349
-45441,2874.30440653465,457.545918514851,45,85.0309306930693,87.5818586138614,19.1492260723762,0.110495049504951,1840.12376237624,438.460396039604,450.485148514851,20,40,10,32,5306663.60095577,397301.339212761,0,0,0,0,0,0,0,85.0309306930692,6812.41788767892,19.1492260723762,20.5387379609472,21.1700448166096,0.110495049504951,0.125135258434808,0.0962231017429863,3.34888471843116,2.65688569628808,2.76902883620626,53.5270304960852,-0.00684019302555534,888.945544554455,895.93353592785,896.23612446959,1.05844193661858,2014.70752253219,-136.451449527366,0,2014.70752253219,85.0197227722771,85.0197227722771,-0.00540252045008045,85.0193438943893,24.8,1015.11,38.51,448.599862625804
+45441,2874.30440653465,457.545918514851,45,85.0309306930693,87.5818586138614,19.1492260723762,0.110495049504951,1840.12376237624,438.460396039604,450.485148514851,20,40,10,32,5306663.60095577,397301.339212761,0,0,0,0,0,0,0,85.0309306930692,6812.41788767892,19.1492260723762,20.5387379609472,21.1700448166096,0.110495049504951,0.125135258434808,0.0962231017429862,3.34888471843116,2.65688569628808,2.76902883620626,53.5270304960852,-0.00684019302555534,888.945544554455,895.93353592785,896.23612446959,1.05844193661858,2014.70752253219,-136.451449527366,0,2014.70752253219,85.0197227722771,85.0197227722771,-0.00540252045008045,85.0193438943893,24.8,1015.11,38.51,448.599862625804
 45442,2874.31220405941,457.56090980198,45,85.050405940594,87.6019181188119,18.8452486252475,-0.896237623762376,1846.40099009901,493.241584158416,454.071287128713,20,40,10,32,5306677.71232964,397320.267952287,0,0,0,0,0,0,0,85.0504059405939,6836.0356204897,18.8452486252475,20.2127032110823,20.9127026495825,-0.896237623762376,-0.881597414832518,-0.676750068203323,3.6267775732036,2.87735597610453,2.79710489149336,53.7096276488516,0.0136803860511107,947.312871287129,943.97778649152,943.540254596888,1.05819669186946,2153.69211590614,108.51734554731,0,2153.69211590614,85.0234674051562,85.0234674051562,0.00422888823536207,85.0228879773691,24.8,1015.12,38.62,437.489040433058
 45443,2874.32003158416,457.575865148515,45,85.0204356435643,87.5710487128712,20.1316452144554,-1.5850495049505,1839.26237623762,486.433663366337,454.621782178218,20,40,10,32,5306691.88013154,397339.152824037,0,0,0,0,0,0,0,85.0204356435643,6859.65279304195,20.1316452144554,21.5924436956187,22.0057709765528,-1.5850495049505,-1.57040929602064,-1.21507444699268,2.51941479910074,1.99881384566832,2.07320920261844,53.5019737890021,-0.0039601117516373,941.055445544554,942.815233800608,942.892597831212,1.05857048078993,2131.72294233011,197.94789253115,0,2131.72294233011,85.0305744534848,85.0305744534848,0.00794992865623345,85.0304364922205,24.8,1015.13,38.73,485.461462029588
 45444,2874.32786712871,457.590819009901,45,85.0453267326733,87.5966865346534,18.9164081412871,-1.14168316831683,1838.84158415842,470.941584158416,453.960396039604,20,40,10,32,5306706.06288261,397358.036017419,0,0,0,0,0,0,0,85.0453267326732,6883.27341991214,18.9164081412871,20.2890262252784,20.9727307758032,-1.14168316831683,-1.12704295938697,-0.866732310434862,3.56425051853048,2.82774924097932,2.73944394779457,53.4897334435879,-0.00907225601284181,924.90198019802,925.994667189491,926.110900518623,1.05826047866034,2094.00052835476,19.7305654898565,0,2094.00052835476,85.0504738751102,85.0504738751102,0.000863205132393052,85.0501707685053,24.8,1015.14,38.84,440.102077771758
@@ -421,7 +421,7 @@ Time,Lat,Long,Heading,v_veh_GPS,v_veh_CAN,vair_ar,beta_ar,n_eng,tq_l,tq_r,t_amb_
 45469,2874.45395633663,457.843307722772,45,21.2648415841584,21.9027868316832,4.40913861386139,-0.697029702970297,1435.28217821782,-293.860396039604,-198.121782178218,20,40,10,32,5306934.03754774,397676.651517187,0,0,0,0,0,0,0,21.2648415841584,7276.40531281643,4.40913861386139,4.72907585305643,4.97122623437967,-0.697029702970297,-0.682389494040439,-0.512252124297471,1.21662434976719,0.965226367710413,0.966888434307004,41.7506661751617,-0.0002880081273918,-491.982178217822,-529.608803058524,-972.771882289226,4.23237448236263,-3381.63357215088,-1059.73176955534,0,-3381.63357215088,21.2651098911871,21.2651098911871,-0.0423828273916514,21.25420904554,24.9,1015.19,38.74,24.7888066993892
 45470,2874.45414178218,457.848017425743,45,20.9785247524753,21.6078804950495,4.66139603960396,0.572970297029703,1421.90594059406,-470.467326732673,-377.142574257426,20,40,10,32,5306934.2770179,397682.52327194,0,0,0,0,0,0,0,20.9785247524752,7282.28240981864,4.66139603960396,4.99963765782325,5.16946668547994,0.572970297029703,0.587610505959562,0.460389925065463,0.893106822860495,0.708559100244858,0.818514269227873,41.3615671950554,-0.00540015238859631,-847.609900990099,-1044.6917361043,-876.794826483585,4.29027993875176,-6025.94479837969,-3080.57894913473,0,-6025.94479837969,20.9717592392902,20.9717592392902,-0.123085699659071,20.8727156018183,24.9,1015.19747524752,38.6911633663366,26.8077588848837
 45471,2874.4542219802,457.852637425742,45,20.4998316831683,21.1148266336634,3.48705940594059,-1.52316831683168,1382.13366336634,-931.538613861386,-794.321782178218,20,40,9.93069306930693,32,5306934.3235204,397688.279848502,0,0,0,0,0,0,0,20.4998316831683,7288.04246353151,3.48705940594059,3.74008845695261,4.14278936954374,-1.52316831683168,-1.50852810790183,-1.07606258466215,1.97677817604928,1.56830530229186,1.39866948028308,40.2046385473225,-0.0212405993951455,-1725.8603960396,-1583.38104107441,-413.593366751751,4.39045273357458,-12165.9396961139,-3505.91631768137,0,-12165.9396961139,20.4947435545535,20.4947435545535,-0.139696271607357,20.5784784164695,24.9,1015.19,38.59,17.5743128898204
-45472,2874.45448059406,457.857117821782,45,20.0493663366337,20.6508473267327,4.52483168316832,-3.47584158415842,1338.48514851485,140.568316831683,156.357425742574,20,40,10,32,5306934.70360032,397693.868417197,0,0,0,0,0,0,0,20.0493663366336,7293.66666564922,4.52483168316832,4.85316387757563,4.99968935262399,-3.47584158415842,-3.46120137522856,-2.66197641259361,0.884906290564917,0.702053090396816,0.777877362022576,38.9349547177158,-0.00964827226762542,296.925742574257,214.205185766101,144.360066032429,4.48896513258403,2025.36403766666,-933.226462375578,0,2025.36403766666,20.0878168806979,20.0878168806979,-0.0370865056802707,20.3569953457342,24.9,1015.18,38.48,25.325821252661
+45472,2874.45448059406,457.857117821782,45,20.0493663366337,20.6508473267327,4.52483168316832,-3.47584158415842,1338.48514851485,140.568316831683,156.357425742574,20,40,10,32,5306934.70360032,397693.868417197,0,0,0,0,0,0,0,20.0493663366336,7293.66666564922,4.52483168316832,4.85316387757563,4.99968935262399,-3.47584158415842,-3.46120137522856,-2.66197641259361,0.884906290564917,0.702053090396817,0.777877362022576,38.9349547177158,-0.00964827226762542,296.925742574257,214.205185766101,144.360066032429,4.48896513258403,2025.36403766666,-933.226462375578,0,2025.36403766666,20.0878168806979,20.0878168806979,-0.0370865056802707,20.3569953457342,24.9,1015.18,38.48,25.325821252661
 45473,2874.45515722772,457.86148019802,45,20.1926336633663,20.7984126732673,4.89310891089109,-3.5,1300.39603960396,902.882178217821,746.543564356436,20,40,10,32,5306935.86061036,397699.323729617,0,0,0,0,0,0,0,20.1926336633663,7299.25080165032,4.89310891089109,5.2481641480092,5.32122923766244,-3.5,-3.48535979107015,-2.72793238449003,0.61635084382651,0.488990777092168,0.484037409633962,37.8269874516395,-0.00554415645229222,1649.42574257426,1609.71218507989,767.528512456465,4.45719053397328,11118.1930031654,825.576440146269,0,11118.1930031654,20.1862867365944,20.1862867365944,0.0331585138711857,20.2237206227826,24.9,1015.17,38.37,28.4266647291682
 45474,2874.45648376238,457.865532871287,45,20.2019108910891,20.8079682178218,5.01083168316832,-3.5,1265.00495049505,838.814851485148,674.777227722772,20,40,10,32,5306938.22830802,397704.414670305,0,0,0,0,0,0,0,20.2019108910891,7304.86426193635,5.01083168316832,5.3744291554147,5.4219255386924,-3.5,-3.48535979107015,-2.74059905867554,0.551508036161614,0.437546806135554,0.442475501379289,36.7975024002775,-0.0168484754524205,1513.59207920792,1541.35046564062,1325.33867626251,4.45506396509895,9928.88537810346,-72.5803117006,0,9928.88537810346,20.2078947162043,20.2078947162043,-0.002499754925986,20.2411802707417,24.9,1015.16,38.26,29.5012668311383
 45475,2874.45851405941,457.868852970297,45,20.3172475247525,20.9267649504951,5.42893069306931,-3.5,1251.91089108911,982.70198019802,788.180198019802,20,40,9.74257425742574,32,5306941.91580115,397708.616344845,0,0,0,0,0,0,0,20.3172475247524,7310.48425506066,5.42893069306931,5.82286639113544,5.78428141856861,-3.5,-3.48535979107015,-2.77926724912446,0.531451322667613,0.421634524980136,0.42108862804397,36.4166116518018,0.00288008127391803,1770.88217821782,1604.07162042937,926.841402455368,4.42987787035529,11428.7231352797,1388.5004811414,0,11428.7231352797,20.3142857562984,20.3142857562984,0.0554725026958148,20.3433526534829,24.9,1015.15,38.15,33.5801610529807
@@ -450,10 +450,10 @@ Time,Lat,Long,Heading,v_veh_GPS,v_veh_CAN,vair_ar,beta_ar,n_eng,tq_l,tq_r,t_amb_
 45498,2874.4223290099,457.751459009901,225,55.7488613861386,57.4213272277228,16.9231485148515,0.734455445544555,1887.04455445545,3363.40495049505,3179.74554455445,20,40,9,32,5306877.4829169,397561.218962812,0,0,0,0,0,0,0,55.7488613861385,7519.25298113324,16.9231485148515,18.1511310956912,17.5968772624893,0.734455445544555,0.749095654474411,0.613084118344258,2.82780377897162,2.24347866348135,2.16712396811756,54.8919010117949,-0.115779267211505,6543.15049504951,6534.76090579355,6663.39898546876,1.61448712754421,23099.4588300294,11134.7628765878,0,23099.4588300294,55.7426187628663,55.7426187628663,0.446730440370766,55.7268374146374,24.82,1015.2,37.7,310.104899210216
 45499,2874.41715356436,457.741517227723,225,57.3040891089109,59.0232117821782,16.8026138613861,0.0505940594059406,1467.9504950495,3346.88415841584,3174.9702970297,20,40,9,32,5306868.11607722,397548.666670134,0,0,0,0,0,0,0,57.3040891089108,7534.95701806943,16.8026138613861,18.021850170531,17.5836427699817,0.0505940594059406,0.0652342683357983,0.0589551464996914,2.30659435998749,1.82996969960209,1.84548555538135,42.700948991491,-0.0104402946179529,6521.85445544554,6553.99487305166,6528.62340969406,1.57066270364782,17505.2587419188,11067.8126058391,0,17505.2587419188,57.3113960396039,57.3113960396039,0.442821509873755,57.3181495955258,24.81,1015.2,37.75,309.583866296754
 45500,2874.41187138614,457.73124029703,225,58.9054455445544,60.6726089108911,17.3320594059406,-0.40039603960396,1513.81188118812,3413.22277227723,3151.42178217822,20,40,9,32,5306858.55897232,397535.693411392,0,0,0,0,0,0,0,58.9054455445543,7551.10218058318,17.3320594059406,18.5897135015656,18.1263178844799,-0.40039603960396,-0.385755830674103,-0.315125264456324,2.42264701862964,1.92204173990421,1.92298411992591,44.0350026375698,0.0084962397580582,6564.64455445545,6552.59187334575,6539.34175599412,1.52794740507901,17666.6477770322,10912.4085147721,0,17666.6477770322,58.9057154200568,58.9057154200568,0.436414185973044,58.9054432957828,24.8025247524752,1015.2,37.8050495049505,329.146316535316
-45501,2874.40643722772,457.72068990099,225,60.5000297029703,62.3150305940594,17.8737326732673,-0.0507920792079209,1541.59900990099,3428.46633663366,3062.9495049505,20,40,9,32,5306848.7264261,397522.374518282,0,0,0,0,0,0,0,60.5000297029702,7567.68649598472,17.8737326732673,19.1706918270616,18.6788312214156,-0.0507920792079209,-0.0361518702780632,-0.03216678608722,2.5404767934944,2.01552368083578,2.04391932620643,44.8432974470949,0.00756021334403484,6491.41584158415,6492.13660425449,6490.21501140635,1.48768266199685,17321.2571485216,10980.4020120325,0,17321.2571485216,60.4958092343887,60.4958092343887,0.439144038166197,60.4878012377269,24.81,1015.2,37.89,349.359336029897
+45501,2874.40643722772,457.72068990099,225,60.5000297029703,62.3150305940594,17.8737326732673,-0.0507920792079209,1541.59900990099,3428.46633663366,3062.9495049505,20,40,9,32,5306848.7264261,397522.374518282,0,0,0,0,0,0,0,60.5000297029702,7567.68649598472,17.8737326732673,19.1706918270616,18.6788312214156,-0.0507920792079209,-0.0361518702780632,-0.0321667860872199,2.5404767934944,2.01552368083578,2.04391932620643,44.8432974470949,0.00756021334403484,6491.41584158415,6492.13660425449,6490.21501140635,1.48768266199685,17321.2571485216,10980.4020120325,0,17321.2571485216,60.4958092343887,60.4958092343887,0.439144038166197,60.4878012377269,24.81,1015.2,37.89,349.359336029897
 45502,2874.40084306931,457.709882277228,225,62.011495049505,63.8718399009901,18.5122871287129,0.476930693069307,1580.9900990099,3375.89405940594,2988.01683168317,20,40,9,32,5306838.60322624,397508.729946582,0,0,0,0,0,0,0,62.0114950495049,7584.70673652377,18.5122871287129,19.8555812625209,19.3083604654204,0.476930693069307,0.491570901999163,0.398183043434462,2.81845899982616,2.23606484899264,2.1674071685364,45.9891377819232,0.0149764226243738,6363.91089108911,6364.06215076953,6362.19049091376,1.45140642051904,16990.0107985819,10390.2523965277,0,16990.0107985819,62.0119821586118,62.0119821586118,0.415465804006141,62.0157740975666,24.82,1015.2,37.98,373.191856050022
-45503,2874.39505495049,457.698885148515,225,63.5096831683168,65.4149736633663,18.372603960396,0.16970297029703,1619.9900990099,3318.51485148515,2905.9,20,40,9,32,5306828.12496981,397494.842921128,0,0,0,0,0,0,0,63.5096831683167,7602.14383426855,18.372603960396,19.7057623622285,19.2755757105998,0.16970297029703,0.184343179226887,0.15403165466224,2.30068161216102,1.82527873635709,1.92739159478742,47.1236017957195,0.0131043697963271,6224.41485148515,6224.86390549946,6226.3512635388,1.41716080826687,16625.8529087869,10123.2179188574,0,16625.8529087869,63.5085174002548,63.5085174002548,0.404802361424265,63.5026590613233,24.83,1015.2,38.07,371.883810419913
-45504,2874.38912247525,457.687642079208,225,64.9362079207921,66.8842941584158,19.1749900990099,-1.02019801980198,1654.05940594059,3216.78415841584,2890.92079207921,20,40,9,32,5306817.38479141,397480.644782168,0,0,0,0,0,0,0,64.936207920792,7619.98570121024,19.1749900990099,20.5663714846128,20.0398369993218,-1.02019801980198,-1.00555781087212,-0.816582819312286,2.74551216882286,2.17819143495257,2.09765280721672,48.1146377620747,0.00100802844587131,6107.70495049505,6105.48208999118,6104.35092278363,1.38602547375374,16292.8131260643,9841.27462000883,0,16292.8131260643,64.935256053328,64.935256053328,0.393641963206223,64.9352774714768,24.84,1015.2,38.16,401.939115558398
+45503,2874.39505495049,457.698885148515,225,63.5096831683168,65.4149736633663,18.372603960396,0.16970297029703,1619.9900990099,3318.51485148515,2905.9,20,40,9,32,5306828.12496981,397494.842921128,0,0,0,0,0,0,0,63.5096831683167,7602.14383426855,18.372603960396,19.7057623622285,19.2755757105998,0.16970297029703,0.184343179226887,0.15403165466224,2.30068161216101,1.82527873635709,1.92739159478742,47.1236017957195,0.0131043697963271,6224.41485148515,6224.86390549946,6226.3512635388,1.41716080826687,16625.8529087869,10123.2179188574,0,16625.8529087869,63.5085174002548,63.5085174002548,0.404802361424265,63.5026590613233,24.83,1015.2,38.07,371.883810419913
+45504,2874.38912247525,457.687642079208,225,64.9362079207921,66.8842941584158,19.1749900990099,-1.02019801980198,1654.05940594059,3216.78415841584,2890.92079207921,20,40,9,32,5306817.38479141,397480.644782168,0,0,0,0,0,0,0,64.936207920792,7619.98570121024,19.1749900990099,20.5663714846128,20.0398369993218,-1.02019801980198,-1.00555781087212,-0.816582819312286,2.74551216882286,2.17819143495257,2.09765280721671,48.1146377620747,0.00100802844587131,6107.70495049505,6105.48208999118,6104.35092278363,1.38602547375374,16292.8131260643,9841.27462000883,0,16292.8131260643,64.935256053328,64.935256053328,0.393641963206223,64.9352774714768,24.84,1015.2,38.16,401.939115558398
 45505,2874.38306059406,457.676146138614,225,66.3438712871287,68.3341874257426,19.0656831683168,-0.198811881188119,1689.55940594059,3138.70396039604,2818.12079207921,20,40,9,32,5306806.4105402,397466.127386258,0,0,0,0,0,0,0,66.3438712871286,7638.22215090771,19.0656831683168,20.4491329916139,20.0276529990606,-0.198811881188119,-0.184171672258261,-0.149385760440038,2.29001186811368,1.81681374197063,1.84606657589989,49.147290902838,0.00727220521664304,5956.82475247525,5961.49376531713,5962.92542632106,1.35661168874078,15885.4336785447,9517.11995651509,0,15885.4336785447,66.3327886481716,66.3327886481716,0.380614917927438,66.3322847822783,24.85,1015.2,38.25,401.376827430897
 45506,2874.37685742574,457.664427524753,225,67.7013861386139,69.7324277227723,19.0237722772277,-1.1570297029703,1723.93564356436,3102.36831683168,2738.43663366337,20,40,9,32,5306795.17954191,397451.327949395,0,0,0,0,0,0,0,67.7013861386137,7656.84042323994,19.0237722772277,20.4041809498689,20.0697436017751,-1.1570297029703,-1.14238949404044,-0.92354324993873,1.97521598871736,1.56706591857875,1.58658227618,50.1472551211424,0.0111603149364324,5840.80495049505,5842.19405940594,5842.52710489094,1.32941048379003,15575.0104122879,9299.43467584512,0,15575.0104122879,67.6931088128614,67.6931088128614,0.371869860253347,67.6903724410034,24.86,1015.2,38.34,403.270740268847
 45507,2874.37051891089,457.652481782178,225,69.0223960396039,71.0930679207921,17.9265049504951,-1.13910891089109,1757.92079207921,3017.22475247525,2733.10198019802,20,40,9,32,5306783.70290137,397436.24111446,0,0,0,0,0,0,0,69.0223960396039,7675.83080671079,17.9265049504951,19.2272933821055,19.2119822539258,-1.13910891089109,-1.12446870196123,-0.882056149121045,1.65022523004706,1.30922984157535,1.41682628619393,51.1358430184147,0.00208805892359058,5750.32673267327,5747.08956965004,5746.82079889142,1.30396895210392,15336.781377713,9123.24995862721,0,15336.781377713,69.0183129104989,69.0183129104989,0.364909758302564,69.0154091089177,24.87,1015.2,38.43,370.525148170524
@@ -466,15 +466,15 @@ Time,Lat,Long,Heading,v_veh_GPS,v_veh_CAN,vair_ar,beta_ar,n_eng,tq_l,tq_r,t_amb_
 45514,2874.32300534653,457.562642574257,225,77.314900990099,79.634348019802,18.7859207920792,-1.71910891089109,1965.16831683168,2565.41584158416,2366.41089108911,20,40,9,32,5306697.68164846,397322.782206447,0,0,0,0,0,0,0,77.3149009900989,7818.40072439506,18.7859207920792,20.1490704138805,20.4190171500781,-1.71910891089109,-1.70446870196123,-1.33112769507213,2.03840516709841,1.61719795903891,1.53119722991676,57.16442914098,0.00756021334403485,4931.82673267327,4955.32337025782,4963.18860963019,1.1640931054847,13127.7728922138,7390.34957445093,0,13127.7728922138,77.3098650132339,77.3098650132339,0.29554155910641,77.3089865448082,24.9,1015.2,38.62,417.986774566206
 45515,2874.31579247525,457.549023960396,225,78.3406138613861,80.6908322772277,19.3953069306931,-0.683861386138614,1780.33663366337,2617.80891089109,2381.78316831683,20,40,9,32,5306684.62281492,397305.582474624,0,0,0,0,0,0,0,78.340613861386,7840.02316413653,19.3953069306931,20.8026750123493,20.9959892849083,-0.683861386138614,-0.669221177208756,-0.529849469723415,1.64544589877773,1.30543809060303,1.3627995417522,51.7878934188297,-0.0722180379434948,4999.59207920792,4987.59087344378,4979.18157541862,1.14884784776893,11885.7543567702,7168.55844242543,0,11885.7543567702,78.3482339966669,78.3482339966669,0.287383317539661,78.3490018827063,24.9,1015.2,38.6,441.329561658256
 45516,2874.30846683168,457.535249207921,225,79.3789504950495,81.760319009901,19.5683366336634,-1.34178217821782,1725.28712871287,2517.04653465347,2333.96732673267,20,40,9,32,5306671.35860069,397288.184475182,0,0,0,0,0,0,0,79.3789504950494,7861.93156520914,19.5683366336634,20.9882601485493,21.2024129608527,-1.34178217821782,-1.32714196928796,-1.04789139249637,1.83066790908381,1.45238662756266,1.47768390191767,50.1865682305313,0.00295208330576598,4851.01386138614,4853.70956768944,4855.34621046175,1.13381783540039,11041.4503613849,6866.35606926865,0,11041.4503613849,79.3721653759434,79.3721653759434,0.274629938241364,79.3711881188118,24.9,1015.2,38.58,450.192601107598
-45517,2874.30105683168,457.521284950495,225,80.3518217821782,82.7623764356436,19.1369647965347,-0.848118811881188,1746.83168316832,2477.61881188119,2329.15940594059,20,40,9,32,5306657.94238348,397270.547584306,0,0,0,0,0,0,0,80.3518217821781,7884.11662791541,19.1369647965347,20.5255869787287,20.8917541697569,-0.848118811881188,-0.833478602951331,-0.647978651728669,2.3579394901351,1.87070509461657,1.84160750383888,50.8132739157359,0.00741620928033894,4806.77821782178,4806.31445936673,4806.23284858503,1.1200916178776,10943.1532020619,6722.8445428877,0,10943.1532020619,80.3494596608175,80.3494596608175,0.268852999161295,80.3484728328608,24.9,1015.2,38.56,437.58974518919
+45517,2874.30105683168,457.521284950495,225,80.3518217821782,82.7623764356436,19.1369647965347,-0.848118811881188,1746.83168316832,2477.61881188119,2329.15940594059,20,40,9,32,5306657.94238348,397270.547584306,0,0,0,0,0,0,0,80.3518217821781,7884.11662791541,19.1369647965347,20.5255869787287,20.8917541697569,-0.848118811881188,-0.833478602951331,-0.647978651728668,2.3579394901351,1.87070509461657,1.84160750383888,50.8132739157359,0.00741620928033894,4806.77821782178,4806.31445936673,4806.23284858503,1.1200916178776,10943.1532020619,6722.8445428877,0,10943.1532020619,80.3494596608175,80.3494596608175,0.268852999161295,80.3484728328608,24.9,1015.2,38.56,437.58974518919
 45518,2874.29356950495,457.507134851485,225,81.3199702970297,83.7595694059405,18.550591309604,-1.62881188118812,1765.57920792079,2461.76534653465,2294.2396039604,20,40,9,32,5306644.38710564,397252.676593566,0,0,0,0,0,0,0,81.3199702970296,7906.57032813543,18.550591309604,19.8966648828801,20.4478592885703,-1.62881188118812,-1.61417167225826,-1.24059875336843,3.01717779939569,2.39372125718549,2.44570096666202,51.3586173049523,0.00979227633132132,4756.00495049505,4752.9726301343,4753.00189353674,1.10675846824645,10813.6462263439,6556.98661262933,0,10813.6462263439,81.3098304087833,81.3098304087833,0.262199239725962,81.3095143081131,24.9,1015.2,38.54,418.991175117471
 45519,2874.28601564356,457.492784554455,225,82.2428217821782,84.7101064356436,18.4404378431683,0.271188118811881,1785.74752475248,2315.1504950495,2181.23861386139,20,40,9,32,5306630.7130785,397234.553975015,0,0,0,0,0,0,0,82.2428217821781,7929.28910726085,18.4404378431683,19.7785184275581,20.407302558849,0.271188118811881,0.285828327741739,0.218654097688971,3.30792435061769,2.6243892013328,2.64860626155762,51.9452898604494,0.00259207314652623,4496.38910891089,4454.64181942947,4447.88941774911,1.09433933399249,10224.664823171,6144.67275681039,0,10224.664823171,82.2273531026369,82.2273531026369,0.245765665675471,82.2263046598237,24.9,1015.2,38.52,416.905584408537
 45520,2874.27838762376,457.478282178218,225,82.9666138613861,85.4556122772277,19.5570693064357,-0.221980198019802,1798.69306930693,1802.89207920792,1776.42574257426,20,40,9,32,5306616.90511475,397216.239406687,0,0,0,0,0,0,0,82.966613861386,7952.24420761839,19.5570693064357,20.9761752381422,21.3991797609624,-0.221980198019802,-0.207339989089945,-0.178963684392712,3.39466342319739,2.69320488793375,2.69496586321232,52.3218604870142,-0.000504014222935661,3579.31782178218,3601.91458680521,3605.12818602962,1.08478242297201,8126.41043637502,4174.6697859525,0,8126.41043637502,82.9719415743554,82.9719415743554,0.166990708971884,82.9704706149513,24.9,1015.2,38.5037871287129,462.093936264237
-45521,2874.27066861386,457.463727425742,225,83.4678712871287,85.9719074257426,20.6925500546535,0.269405940594059,1805.29207920792,1505.15445544554,1523.05148514851,20,40,9,32,5306602.92982539,397197.856511929,0,0,0,0,0,0,0,83.4678712871286,7975.36767279991,20.6925500546535,22.1940490811477,22.3938734520795,0.269405940594059,0.284046149523918,0.245596082607133,2.55776718000878,2.02924125682773,1.92418588598942,52.5138179039208,0.00489613816566066,3028.20594059406,3039.56455249485,3041.23100470898,1.07826246525644,6858.88134608167,2894.57594169284,0,6858.88134608167,83.4684278992254,83.4684278992254,0.115743009944563,83.4680974232636,24.9,1015.2,38.51,504.62378762982
+45521,2874.27066861386,457.463727425742,225,83.4678712871287,85.9719074257426,20.6925500546535,0.269405940594059,1805.29207920792,1505.15445544554,1523.05148514851,20,40,9,32,5306602.92982539,397197.856511929,0,0,0,0,0,0,0,83.4678712871286,7975.36767279991,20.6925500546535,22.1940490811477,22.3938734520795,0.269405940594059,0.284046149523918,0.245596082607132,2.55776718000878,2.02924125682773,1.92418588598942,52.5138179039208,0.00489613816566066,3028.20594059406,3039.56455249485,3041.23100470898,1.07826246525644,6858.88134608167,2894.57594169284,0,6858.88134608167,83.4684278992254,83.4684278992254,0.115743009944563,83.4680974232636,24.9,1015.2,38.51,504.62378762982
 45522,2874.26293326733,457.449068811881,225,83.8376237623762,86.3527524752475,20.2041490648515,-1.55663366336634,1817.0099009901,1342.94257425743,1399.96237623762,20,40,9,32,5306588.92663795,397179.343627464,0,0,0,0,0,0,0,83.8376237623761,7998.60857896052,20.2041490648515,21.6702085921642,21.9993089888266,-1.55663366336634,-1.54199345443648,-1.20170037782217,2.37907454175269,1.88747289077988,1.85704226626802,52.854675522689,0.00338409549685369,2742.90495049505,2744.07023821194,2744.87128093157,1.07350532843884,6225.45511932522,2320.52217559214,0,6225.45511932522,83.8413193804528,83.8413193804528,0.0927931902101059,83.8412991409746,24.9,1015.2,38.52,485.40723127703
 45523,2874.25519247525,457.43432029703,225,84.13699009901,86.6610998019802,21.2206083608911,-0.901188118811881,1824.57425742574,1221.85445544554,1297.60396039604,20,40,9,32,5306574.91541779,397160.718499606,0,0,0,0,0,0,0,84.1369900990098,8021.94085734335,21.2206083608911,22.7604245126625,22.881885277932,-0.901188118811881,-0.886547909882023,-0.695436512712215,1.71805406958684,1.36304282372347,1.49957401208776,53.0747137320163,0.00360010159239754,2519.45841584158,2527.49783354573,2527.76417137041,1.06968515882315,5721.46568174488,1615.90830201388,0,5721.46568174488,84.1343697676697,84.1343697676697,0.064606955745083,84.1337827334134,24.9,1015.2,38.53,524.609824049178
 45524,2874.24744089109,457.419504455445,225,84.402900990099,86.934988019802,23.2614752475248,0.948415841584158,1829.08415841584,1179.37227722772,1160.53267326733,20,40,9,32,5306560.88576106,397142.00906765,0,0,0,0,0,0,0,84.4029009900989,8045.34745552817,23.2614752475248,24.9493813947482,24.633522261498,0.948415841584158,0.963056050514017,0.780355354980123,2.05799894920744,1.63274296694413,1.64523983918253,53.2059014340433,0.00403211378348525,2339.90495049505,2333.73913341829,2333.78831691981,1.06631679324362,5309.98694558478,1473.48266969079,0,5309.98694558478,84.3710360748945,84.3710360748945,0.0589062619133252,84.3703349169629,24.9,1015.2,38.54,607.325093346152
-45525,2874.23963009901,457.404694356436,225,84.5321485148515,87.068112970297,23.2678811881188,-0.0976237623762375,1831.68316831683,1049.53267326733,1102.73168316832,20,40,9,32,5306546.74636288,397123.304741429,0,0,0,0,0,0,0,84.5321485148513,8068.80815990111,23.2678811881188,24.956252165126,24.6465216501019,-0.0976237623762375,-0.0829835534463806,-0.0531309268515746,2.42082726258305,1.92059801035917,1.97501885553778,53.2815035674836,-0.0036721036242455,2152.26435643564,2151.38919713754,2151.32734312417,1.06468700519769,4884.00429847933,1055.21142303773,0,4884.00429847933,84.5319670620526,84.5319670620526,0.0422385060288051,84.5326222968357,24.9,1015.2,38.55,609.257823325812
+45525,2874.23963009901,457.404694356436,225,84.5321485148515,87.068112970297,23.2678811881188,-0.0976237623762375,1831.68316831683,1049.53267326733,1102.73168316832,20,40,9,32,5306546.74636288,397123.304741429,0,0,0,0,0,0,0,84.5321485148513,8068.80815990111,23.2678811881188,24.956252165126,24.6465216501019,-0.0976237623762375,-0.0829835534463806,-0.0531309268515745,2.42082726258305,1.92059801035917,1.97501885553778,53.2815035674836,-0.0036721036242455,2152.26435643564,2151.38919713754,2151.32734312417,1.06468700519769,4884.00429847933,1055.21142303773,0,4884.00429847933,84.5319670620526,84.5319670620526,0.0422385060288051,84.5326222968357,24.9,1015.2,38.55,609.257823325812
 45526,2874.23180108911,457.389833267327,225,84.6456732673267,87.1850434653466,22.1312673267327,1.61257425742574,1833.83168316832,979.547524752476,1009.79207920792,20,40,9,32,5306532.57441125,397104.536211879,0,0,0,0,0,0,0,84.6456732673266,8092.30847257989,22.1312673267327,23.7371629876544,23.6852394242795,1.61257425742574,1.6272144663556,1.29628239616811,2.28815467437322,1.8153403106945,1.76275136980108,53.3440013311277,1.37403839681331E-18,1989.3396039604,1993.49049112832,1993.78706658383,1.06325749874604,4513.74479350262,950.172493514026,0,4513.74479350262,84.6624414273109,84.6624414273109,0.0380068947488844,84.6631526858693,24.9,1015.2,38.56,563.549965230209
 45527,2874.2240119802,457.374957623763,225,84.7580792079208,87.3008215841584,23.0249207920792,1.76376237623762,1834.28712871287,915.810891089109,967.018811881188,20,40,9,32,5306518.47675344,397085.750780269,0,0,0,0,0,0,0,84.7580792079207,8115.84262926305,23.0249207920792,24.6956620039213,24.4527682464093,1.76376237623762,1.77840258516748,1.42870328539867,1.87525347963459,1.48775922907542,1.42965501396758,53.3572497049877,-0.000792022350327459,1882.8297029703,1879.65123027154,1879.33578500707,1.06184603773947,4267.10352119921,470.924977969128,0,4267.10352119921,84.7661371434172,84.7661371434172,0.0188434685052818,84.7665267326731,24.9,1015.2,38.57,598.666287040927
 45528,2874.21618475248,457.360101089109,225,84.8418613861386,87.3871172277228,23.0001782178218,0.196534653465347,1838.33168316832,843.99801980198,902.925742574257,20,40,9,32,5306504.30812192,397066.987797804,0,0,0,0,0,0,0,84.8418613861385,8139.40022090221,23.0001782178218,24.6691240515658,24.4366086539369,0.196534653465347,0.211174862395204,0.172569925791656,1.81433504412482,1.43942871502237,1.45491453215486,53.4749010250273,-0.00468013207011681,1746.92376237624,1754.42584060386,1754.95244695898,1.06079720353362,3963.84696769704,497.154535543627,0,3963.84696769704,84.8435777864914,84.8435777864914,0.0199245172041858,84.8436343234323,24.9,1015.2,38.58,597.693404732164
@@ -484,15 +484,15 @@ Time,Lat,Long,Heading,v_veh_GPS,v_veh_CAN,vair_ar,beta_ar,n_eng,tq_l,tq_r,t_amb_
 45532,2874.18484257426,457.300487227723,225,84.9691782178218,87.5182535643565,20.3052821782178,-0.771782178217822,1838.16831683168,790.361386138614,883.550495049505,20,40,9,32,5306447.57674751,396991.70002679,0,0,0,0,0,0,0,84.9691782178217,8233.74113998911,20.3052821782178,21.7786801568507,22.1509940140795,-0.771782178217822,-0.757141969287963,-0.585528759323995,2.62178562707865,2.0800312094894,1.95927532854549,53.4701488909253,0.00129603657326312,1673.91188118812,1674.13767277718,1674.07091937765,1.05920927941211,3792.19322211129,180.526268030437,0,3792.19322211129,84.9509130477403,84.9509130477403,0.00721062205229178,84.9502171617161,24.9,1015.2,38.52,492.945815855751
 45533,2874.17702069307,457.285546831683,225,84.9309801980198,87.4789096039604,22.368099559901,-1.37118811881188,1839.33663366337,781.568316831683,866.665346534653,20,40,9,32,5306433.42018547,396972.832305191,0,0,0,0,0,0,0,84.9309801980197,8257.33865695831,22.368099559901,23.9911803123946,23.9035475828426,-1.37118811881188,-1.35654790988202,-1.07794526677742,1.95204559756248,1.54868335661775,1.64435393863996,53.5041338499575,0.00158404470065493,1648.23366336634,1654.75724928929,1655.09374823197,1.05968606184329,3738.07908151031,122.0070894538,0,3738.07908151031,84.9411998823644,84.9411998823644,0.0048674421897644,84.9417487977368,24.9,1015.2,38.48,573.066402353739
 45534,2874.16923148515,457.270596831683,225,84.933198019802,87.4811939603961,21.0904851485148,0.171584158415842,1840.89603960396,820.316831683168,870.996039603961,20,40,9,32,5306419.32441992,396953.953609411,0,0,0,0,0,0,0,84.9331980198019,8280.93500030265,21.0904851485148,22.6208592607024,22.8164948397952,0.171584158415842,0.186224367345699,0.144069839368907,2.167225829781,1.71939967837073,1.63144909012006,53.5494951300217,-0.00453612800642091,1691.31287128713,1687.96140574453,1687.71614332862,1.05965671610526,3838.9201312514,79.8450386022076,0,3838.9201312514,84.9538268797176,84.9538268797176,0.00323089239617341,84.9544137670909,24.9,1015.2,38.44,522.278859445615
-45535,2874.16140970297,457.255612970297,225,84.9781485148515,87.527492970297,21.8685445544555,0.388019801980198,1841.0297029703,825.544554455445,842.155445544554,20,40,9,32,5306405.16912973,396935.03156704,0,0,0,0,0,0,0,84.9781485148514,8304.53605544566,21.8685445544555,23.4553764467372,23.4809712686118,0.388019801980198,0.402660010910055,0.314960563466963,1.61998644838894,1.28523947068606,1.37327816306155,53.5533832397415,0.00734420724849099,1667.7,1669.62436035683,1669.64815652994,1.05909597582889,3783.60406471278,132.548788686082,0,3783.60406471278,84.9814236839524,84.9814236839524,0.00524186081974959,84.9815671852899,24.9,1015.2,38.4,552.046994405192
+45535,2874.16140970297,457.255612970297,225,84.9781485148515,87.527492970297,21.8685445544555,0.388019801980198,1841.0297029703,825.544554455445,842.155445544554,20,40,9,32,5306405.16912973,396935.03156704,0,0,0,0,0,0,0,84.9781485148514,8304.53605544566,21.8685445544555,23.4553764467372,23.4809712686118,0.388019801980198,0.402660010910055,0.314960563466964,1.61998644838894,1.28523947068606,1.37327816306155,53.5533832397415,0.00734420724849099,1667.7,1669.62436035683,1669.64815652994,1.05909597582889,3783.60406471278,132.548788686082,0,3783.60406471278,84.9814236839524,84.9814236839524,0.00524186081974959,84.9815671852899,24.9,1015.2,38.4,552.046994405192
 45536,2874.15360683168,457.240677920792,225,85.0332277227723,87.5842245544555,22.6702178217822,-0.957326732673267,1840.88613861386,815.732673267327,821.873267326733,20,40,9,32,5306391.04784378,396916.170855706,0,0,0,0,0,0,0,85.0332277227721,8328.1477877339,22.6702178217822,24.3152209702541,24.1671094918297,-0.957326732673267,-0.942686523743409,-0.75043477764881,2.09309128624776,1.66058397556965,1.62218426006393,53.5492071218943,0.00216006095543853,1637.60594059406,1639.00547985492,1638.97723715229,1.05841009487979,3712.72547974723,417.068117308852,0,3712.72547974723,85.0274724046661,85.0274724046661,0.0166650328399067,85.0273693540781,24.9,1015.2,38.36,585.929079284581
 45537,2874.14577673267,457.225742673267,225,85.078801980198,87.631166039604,21.7429625962376,-0.995544554455446,1844.29702970297,791.925742574258,821.60099009901,20,40,9,32,5306376.87618771,396897.308903929,0,0,0,0,0,0,0,85.0788019801979,8351.7737517878,21.7429625962376,23.3206819727825,23.3799808605577,-0.995544554455446,-0.980904345525588,-0.757170910962914,2.50721075157295,1.98913158962201,2.0463157571218,53.6484259217808,0.00252007111467828,1613.52673267327,1607.93452602686,1607.37271098538,1.05784322985892,3662.8860658433,524.536280716027,0,3662.8860658433,85.0826299382412,85.0826299382412,0.0209606356675225,85.0829844413012,24.9,1015.2,38.32,550.129861287654
 45538,2874.13789485149,457.210816336633,225,85.1420099009901,87.6962701980199,19.3876815184158,-1.07831683168317,1843.37623762376,688.156435643564,772.733663366337,20,40,9,32,5306362.60847544,396878.456244157,0,0,0,0,0,0,0,85.1420099009899,8375.41893875149,19.3876815184158,20.7944962826182,21.3799285936614,-1.07831683168317,-1.06367662275331,-0.819276071376901,3.23014798651503,2.56268420797894,2.58556723212957,53.6216411659334,-0.00180005079619877,1460.8900990099,1459.94481913538,1459.81035360679,1.05705771782828,3312.20382397229,102.864387152417,0,3312.20382397229,85.1440866581706,85.1440866581706,0.00412949710812262,85.1438050919376,24.9,1015.2,38.28,458.241293595567
 45539,2874.13002861386,457.195878514852,225,85.1478811881188,87.7023176237624,19.0013047311881,-1.15207920792079,1843.18316831683,605.449504950495,659.840594059406,20,40,9,32,5306348.37005668,396859.58970344,0,0,0,0,0,0,0,85.1478811881187,8399.07030170529,19.0013047311881,20.3800831070116,21.0509504991679,-1.15207920792079,-1.13743899899094,-0.870157547161791,3.56807464587415,2.83078316722476,2.62191833027224,53.6160250074493,-0.000576016254783607,1265.2900990099,1274.47966865994,1275.18562942008,1.05698474405937,2868.51999417123,-72.0739524371527,0,2868.51999417123,85.1431055778844,85.1431055778844,-0.00287825812284733,85.1429195662422,24.9,1015.2,38.24,443.762410346227
 45540,2874.12218326733,457.180955742574,225,85.1201188118812,87.6737223762376,21.0581683168317,-0.625742574257426,1842.0495049505,585.651485148515,657.435643564357,20,40,9,32,5306334.17006095,396840.742506586,0,0,0,0,0,0,0,85.1201188118811,8422.71831553918,21.0581683168317,22.586197445381,22.799479633854,-0.625742574257426,-0.611102365327568,-0.467133744681936,2.41036189277116,1.91229515920203,2.01516415570223,53.5830480768629,-0.0133923779237189,1243.08712871287,1243.11642976179,1243.22322489392,1.0573295288763,2816.98811517164,-115.430695902791,0,2816.98811517164,85.1227163023232,85.1227163023232,-0.0045080003049644,85.1228935407825,24.9,1015.2,38.2113613861386,522.289917739781
 45541,2874.11432455446,457.166036138614,225,85.1085742574257,87.6618314851485,22.038504950495,1.6290099009901,1841.13366336634,656.632995871287,662.933979585148,20,40,9,32,5306319.94529609,396821.89872044,0.811881188118812,0.811881188118812,2154049.2265644,161083.587623236,1.91470053098197,0,0,85.1085742574256,8446.36207563269,22.038504950495,23.6376695600361,23.6332895575495,1.6290099009901,1.64365010991996,1.29516401865999,2.58500301060547,2.05084919344633,2.05414580217118,53.5564073250791,0.00799222553512255,1319.56697545644,1315.61478652216,1315.66885409862,1.05747304914427,2989.31435802775,-133.936831907783,0,2989.31435802775,85.1069967650229,85.1069967650229,-0.00542294328442405,85.1070355492691,24.9,1015.2,38.25,562.10747764284
-45542,2874.10645376238,457.151127425743,225,85.1084653465347,87.6617193069307,22.806099009901,1.2060396039604,1841.88613861386,694.069016336634,676.872897116832,20,40,9,32,5306305.69797423,396803.068006772,2,2,5306305.95315035,396802.860106711,21.2361359616099,0,0,85.1084653465345,8470.00156875701,22.806099009901,24.4609620099205,24.286136837445,1.2060396039604,1.22067981289025,0.980056544609547,1.83634430616009,1.45689007855201,1.4983860654713,53.5782959427609,0.00050401422293566,1370.94191345347,1369.75455742736,1369.54537109326,1.05747427601509,3106.97560443413,-32.2671077674917,0,3106.97560443413,85.1005969022643,85.1005969022643,-0.00129480769858763,85.1003659594529,24.9,1015.2,38.3,590.658691511061
-45543,2874.09858079208,457.136217920792,225,85.090702970297,87.6434240594059,22.9151089108911,1.14623762376238,1841.68316831683,686.879022080198,659.965906672277,20,40,9,32,5306291.44669562,396784.23614119,2,2,5306291.04575525,396784.562800002,44.8374465481009,0,0,85.0907029702969,8493.63953380102,22.9151089108911,24.577881920058,24.3783124345816,1.14623762376238,1.16087783269224,0.932241760440711,1.71242318728359,1.35857548253175,1.31462261780067,53.5723917761494,-0.0167044713887246,1346.84492875248,1346.97732018758,1346.98786794341,1.05769539243922,3052.65294917645,-51.5487497494267,0,3052.65294917645,85.095643662386,85.095643662386,-0.00192519251924939,85.0953891560584,24.9,1015.2,38.35,594.803936578538
+45542,2874.10645376238,457.151127425743,225,85.1084653465347,87.6617193069307,22.806099009901,1.2060396039604,1841.88613861386,694.069016336634,676.872897116832,20,40,9,32,5306305.69797423,396803.068006772,2,2,5306305.95315035,396802.860106711,21.2361359616099,0,0,85.1084653465345,8470.00156875701,22.806099009901,24.4609620099205,24.286136837445,1.2060396039604,1.22067981289025,0.980056544609547,1.83634430616009,1.456890078552,1.49838606547129,53.5782959427609,0.00050401422293566,1370.94191345347,1369.75455742736,1369.54537109326,1.05747427601509,3106.97560443413,-32.2671077674917,0,3106.97560443413,85.1005969022643,85.1005969022643,-0.00129480769858763,85.1003659594529,24.9,1015.2,38.3,590.658691511061
+45543,2874.09858079208,457.136217920792,225,85.090702970297,87.6434240594059,22.9151089108911,1.14623762376238,1841.68316831683,686.879022080198,659.965906672277,20,40,9,32,5306291.44669562,396784.23614119,2,2,5306291.04575525,396784.562800002,44.8374465481009,0,0,85.0907029702969,8493.63953380102,22.9151089108911,24.577881920058,24.3783124345816,1.14623762376238,1.16087783269224,0.932241760440712,1.71242318728359,1.35857548253175,1.31462261780067,53.5723917761494,-0.0167044713887246,1346.84492875248,1346.97732018758,1346.98786794341,1.05769539243922,3052.65294917645,-51.5487497494267,0,3052.65294917645,85.095643662386,85.095643662386,-0.00192519251924939,85.0953891560584,24.9,1015.2,38.35,594.803936578538
 45544,2874.09069613861,457.121320792079,225,85.0842772277228,87.6368055445544,22.3047227722772,1.11475247524753,1841.98514851485,668.767509703961,656.88119229901,20,40,9,32,5306277.17356035,396765.419210917,2,2,5306276.13695378,396766.263767111,68.4409837010707,0,0,85.0842772277227,8517.27370539068,22.3047227722772,23.9232047592891,23.8588685135262,1.11475247524753,1.12939268417738,0.901586214451272,1.44888412117457,1.14949298670723,1.20104452863633,53.5811760240348,0.00165604673250287,1325.64870200297,1326.6705183351,1326.75192744563,1.05777492959274,3005.34571111326,-119.20008045033,0,3005.34571111326,85.0775186746396,85.0775186746396,-0.00478166628543762,85.0775533239037,24.9,1015.2,38.4,569.724811135197
 45545,2874.08281237624,457.106423861386,225,85.0895445544554,87.6422308910891,21.7101089108911,0.138910891089109,1840.60396039604,656.386120163367,670.454826168317,20,40,9,32,5306262.90213159,396746.602463604,2,2,5306261.22892273,396747.965679836,92.0433011231524,0,0,85.0895445544553,8540.90737582523,21.7101089108911,23.2854443484611,23.3527097738945,0.138910891089109,0.153551100018967,0.130482906574602,1.76204719588732,1.3979454010978,1.37906473632318,53.5409988902637,0.0080642275669705,1326.84094633168,1327.81273433506,1327.89015763946,1.05771008682007,3005.60570155098,151.644665803275,0,3005.60570155098,85.0835618076658,85.0835618076658,0.00600022873573499,85.08343941537,24.9,1015.2,38.45,546.39678085609
 45546,2874.07491495049,457.09154029703,225,85.0880891089109,87.6407317821783,20.2678564355445,-0.586237623762376,1842.02475247525,661.118245907921,688.20727189703,20,40,9,32,5306248.60515588,396727.801819095,2,2,5306246.31858473,396729.664761009,115.649270904147,0,0,85.0880891089108,8564.54318971411,20.2678564355445,21.7385387162068,22.1254599250829,-0.586237623762376,-0.57159741483252,-0.448472453070093,2.41444115730238,1.91553150219249,1.87453105016622,53.5823280565444,-0.0180725099938357,1349.32551780495,1349.35382006984,1349.35607493913,1.05772792021883,3058.93645286445,-24.6995759824553,0,3058.93645286445,85.0874369179491,85.0874369179491,-0.00084005925345558,85.0874967468175,24.9,1015.2,38.5,490.644469413371
@@ -501,7 +501,7 @@ Time,Lat,Long,Heading,v_veh_GPS,v_veh_CAN,vair_ar,beta_ar,n_eng,tq_l,tq_r,t_amb_
 45549,2874.05119574257,457.046849207921,225,85.0770891089109,87.6294017821782,19.7614796478218,0.486435643564357,1839.47524752475,690.606642713861,663.883893175248,20,40,9,32,5306205.66560619,396671.348115104,2,2,5306201.54282096,396674.707078768,186.538027829791,0,0,85.0770891089108,8635.43615932359,19.7614796478218,21.1954180640596,21.6943811194066,0.486435643564357,0.501075852494214,0.375306761471354,2.77606203051334,2.20242860564474,2.01686456887962,53.508165963741,-0.0147604165288299,1354.49053588911,1354.30210639169,1354.28709402834,1.0578642001622,3066.80310386153,-13.4878194970392,0,3066.80310386153,85.0710724438779,85.0710724438779,-0.000417987343293624,85.0704915605845,24.9,1015.2,38.65,471.493785963644
 45550,2874.04331544554,457.031952178218,225,85.0364851485149,87.5875797029703,19.5333954892079,-0.356336633663366,1839.38613861386,674.078423686139,655.861404833663,20,40,9,32,5306191.40090016,396652.530892913,2,2,5306186.63723948,396656.411998094,210.136467101713,0,0,85.0364851485148,8659.06283292095,19.5333954892079,20.9507835942848,21.4977160534342,-0.356336633663366,-0.341696424733509,-0.263783008729871,2.96689042380994,2.35382504691516,2.27761005541511,53.5055738905945,0.00403211378348525,1329.9398285198,1330.78158286018,1330.84864625529,1.05836934060966,3012.51595735343,-185.336853630346,0,3012.51595735343,85.0386693461425,85.0386693461425,-0.00744616540861695,85.0388469589815,24.9,1015.2,38.6823267326733,462.897697865894
 45551,2874.03547782178,457.017044356436,225,85.0143267326732,87.5647565346534,21.9536397138614,-0.667920792079208,1840.62871287129,658.397497675247,665.434852630693,20,40,9,32,5306177.21554088,396633.701550866,2,2,5306171.75737941,396638.148487829,233.694184367031,0,0,85.0143267326731,8682.68198146329,21.9536397138614,23.5466463066354,23.5560302599427,-0.667920792079208,-0.653280583149351,-0.516953061043541,1.95315402457735,1.54956274307886,1.6534393800688,53.5417189105822,0.00813622959881845,1323.83235030594,1324.93038343007,1325.01786480712,1.05864522514095,3001.48190938775,5.67290264425681,0,3001.48190938775,85.0209283403587,85.0209283403587,0.000160659630319131,85.0212839226779,24.9,1015.2,38.61,556.821900147117
-45552,2874.02760871287,457.002167722772,225,85.0110198019802,87.5613503960396,21.3576688669307,-0.0169306930693069,1839.4603960396,657.980835726733,683.80245280594,20,40,9,32,5306162.97122458,396614.909919398,1.24752475247525,2,5306156.87253472,396619.878353435,68.1100441737758,0,0,85.0110198019801,8706.29879559969,21.3576688669307,22.9074304442705,23.04892092064,-0.0169306930693069,-0.00229048413944934,-0.00471600961978406,1.92033643569749,1.52352643851403,1.52081212180366,53.5077339515499,-0.0118083332230639,1341.78328853267,1342.1280738502,1342.15554323497,1.05868686588251,3040.37081329638,-69.0184838873596,0,3040.37081329638,85.0213823154592,85.0213823154592,-0.00266449912318323,85.0214509193775,24.9,1015.2,38.52,532.982403649535
+45552,2874.02760871287,457.002167722772,225,85.0110198019802,87.5613503960396,21.3576688669307,-0.0169306930693069,1839.4603960396,657.980835726733,683.80245280594,20,40,9,32,5306162.97122458,396614.909919398,1.24752475247525,2,5306156.87253472,396619.878353435,68.1100441737758,0,0,85.0110198019801,8706.29879559969,21.3576688669307,22.9074304442705,23.04892092064,-0.0169306930693069,-0.00229048413944934,-0.00471600961978399,1.92033643569749,1.52352643851403,1.52081212180366,53.5077339515499,-0.0118083332230639,1341.78328853267,1342.1280738502,1342.15554323497,1.05868686588251,3040.37081329638,-69.0184838873596,0,3040.37081329638,85.0213823154592,85.0213823154592,-0.00266449912318323,85.0214509193775,24.9,1015.2,38.52,532.982403649535
 45553,2874.01970950495,456.987318415842,225,85.0122376237624,87.5626047524753,20.8987040704951,-0.311287128712871,1840.70792079208,673.211514934653,694.077118468317,20,40,9,32,5306148.67060472,396596.151234478,1,2,5306141.98204195,396601.600097477,29.4654680414694,0,0,85.0122376237623,8729.91432417505,20.8987040704951,22.4151621065496,22.6583132115156,-0.311287128712871,-0.296646919783014,-0.228670750613364,2.30346369169973,1.82748593903912,1.86413134648895,53.5440229756013,0.00770421740773074,1367.28863340297,1366.56317687887,1366.50537904526,1.05867183200716,3100.22118274499,-146.328002018873,0,3100.22118274499,85.0117908048229,85.0117908048229,-0.00591581435371589,85.0117087223007,24.9,1015.2,38.43,515.496842921312
 45554,2874.01179524753,456.972487524753,225,85.0206831683169,87.5713036633663,20.6834405941584,0.0431683168316831,1841.26732673267,690.086519057426,686.812369384158,20,40,9,32,5306134.34175679,396577.414895922,1,2,5306127.09131189,396583.321498324,53.0417491003976,0,0,85.0206831683168,8753.52741303642,20.6834405941584,22.1842786172467,22.4753574834194,0.0431683168316831,0.0578085257615399,0.0352288951702854,3.05627192469358,2.4247371418892,2.36835817824397,53.5602954347989,0.00511214426120451,1376.89888844158,1375.77017146274,1375.68024547275,1.05856634241528,3122.65112815848,1.82416028138338,0,3122.65112815848,85.0033091853739,85.0033091853739,3.13150127073557E-05,85.0031765205091,24.9,1015.2,38.34,509.2155417442
 45555,2874.00391059406,456.957612475248,225,85.0026831683168,87.5527636633663,19.9347167217822,-1.22435643564356,1839.12376237624,693.091047133663,668.687382367327,20,40,9,32,5306120.06879144,396558.624442589,1,2,5306112.19637562,396565.037735967,76.6246898135129,0,0,85.0026831683167,8777.13971006612,19.9347167217822,21.3812256185657,21.837348555734,-1.22435643564356,-1.20971622671371,-0.935759990365918,2.72709682246756,2.16358135594498,2.24114924776774,53.4979416752186,-0.00957627023577746,1361.77842950099,1361.284189251,1361.24481264495,1.05879022744067,3085.42470130806,-17.0648600727906,0,3085.42470130806,85.0038624644641,85.0038624644641,-0.000604515897151917,85.0035818010372,24.9,1015.2,38.25,478.237970482323
@@ -545,12 +545,12 @@ Time,Lat,Long,Heading,v_veh_GPS,v_veh_CAN,vair_ar,beta_ar,n_eng,tq_l,tq_r,t_amb_
 45593,2873.72742712871,456.429098316832,225,43.0240495049505,44.314770990099,12.0982079207921,0.441980198019802,1493.74257425743,-7544.2900990099,-6224.13564356436,20,40,9,32,5305619.76581335,395891.056927794,0,0,0,0,0,0,0,43.0240495049504,9611.83224367436,12.0982079207921,12.9760817143756,12.7616889390748,0.441980198019802,0.45662040694966,0.369828886667183,1.3990010341726,1.10991752458015,1.14853574933866,43.4512101633466,-0.0490333836884546,-13768.4257425743,-13682.8848446231,-13366.2383607961,2.09458995794526,-50060.7510354765,-35884.8535632291,0,-50060.7510354765,43.0810366630722,43.0810366630722,-1.43475176725594,43.1915457757102,25,1015.17,38.17,163.898066443559
 45594,2873.72461742574,456.421062871287,225,38.4746138613862,39.6288522772277,10.8248712871287,-1.97623762376238,1336.47524752475,-7015.72079207921,-5646.56633663366,20,40,9,32,5305614.74186631,395880.953024682,0,0,0,0,0,0,0,38.4746138613861,9623.11544383938,10.8248712871287,11.6103488457969,11.4170176297897,-1.97623762376238,-1.96159741483252,-1.57489131852137,1.30702828787725,1.03694962791426,1.04144726543667,38.8764890678552,-0.0426252028539869,-12662.2871287129,-12902.4038133516,-13252.6235226306,2.34140063529996,-46059.995940288,-28556.807527811,0,-46059.995940288,38.4967259092245,38.4967259092245,-1.14171404764238,38.5763193666927,25,1015.16,38.16,130.884560270561
 45595,2873.72252742574,456.413544752475,225,34.3701881188119,35.4012937623762,10.084495049505,-2.92118811881188,1267.76732673267,-7444.53267326732,-6021.58415841584,20,40,9.5049504950495,32,5305611.03944517,395871.517608535,0,0,0,0,0,0,0,34.3701881188118,9633.2384070407,10.084495049505,10.8162492054463,10.5515559607757,-2.92118811881188,-2.90654790988203,-2.35828260712726,1.41839016447709,1.12530016904263,1.12141797967076,36.8778566678198,0.0643698164720681,-13466.1168316832,-12616.823066366,-10280.5433442548,2.62244781102735,-51403.2321966413,-27585.0962616204,0,-51403.2321966413,34.410786099402,34.410786099402,-1.10443012122994,34.7506649964548,25,1015.15,38.15,111.70465484995
-45596,2873.72103544554,456.406541584159,217.871287128713,31.6046930693069,32.5528338613861,8.63043564356436,-2.13574257425743,1571.89603960396,-1987.91584158416,-1572.41782178218,20,40,9.8019801980198,32,5305608.43320134,395862.74365974,0,0,0,0,0,0,0,31.6046930693069,9642.30926746423,8.63043564356436,9.25667990455717,9.1558685486977,-2.13574257425743,-2.12110236532757,-1.66749215722511,1.62905475985895,1.29243394558141,1.18371316288738,45.7246023169138,0.0326169204271217,-3560.33366336634,-4273.5158317812,-6339.32175692517,2.8477922615793,-18388.9191825254,-8553.99261909609,0,-18388.9191825254,31.7020689148122,31.7020689148122,-0.34274825997451,32.2717456301854,25,1015.14,38.14,85.4026409942118
+45596,2873.72103544554,456.406541584159,217.871287128713,31.6046930693069,32.5528338613861,8.63043564356436,-2.13574257425743,1571.89603960396,-1987.91584158416,-1572.41782178218,20,40,9.8019801980198,32,5305608.43320134,395862.74365974,0,0,0,0,0,0,0,31.6046930693069,9642.30926746423,8.63043564356436,9.25667990455717,9.1558685486977,-2.13574257425743,-2.12110236532757,-1.66749215722511,1.62905475985895,1.2924339455814,1.18371316288738,45.7246023169138,0.0326169204271217,-3560.33366336634,-4273.5158317812,-6339.32175692517,2.8477922615793,-18388.9191825254,-8553.99261909609,0,-18388.9191825254,31.7020689148122,31.7020689148122,-0.34274825997451,32.2717456301854,25,1015.14,38.14,85.4026409942118
 45597,2873.72002960396,456.399731881188,185.792079207921,30.8887425742574,31.8154048514852,8.68346534653466,-1.64158415841584,1544.41089108911,-1267.88118811881,-1053.26930693069,20,40,9.86138613861386,32,5305606.72311671,395854.22695926,0,0,0,0,0,0,0,30.8887425742574,9650.99190022001,8.68346534653466,9.31355756474758,9.1601225627615,-1.64158415841584,-1.62694394948598,-1.31862426197295,1.02618672705683,0.814139949886132,0.931091494953387,44.9250917552742,-0.0149764226243738,-2321.1504950495,-2367.57724732869,-3159.90708436346,2.91386974052793,-12153.534361077,-5797.70088280657,0,-12153.534361077,30.8795528869718,30.8795528869718,-0.231624895162786,30.7391955595439,25,1015.13,38.13,84.3156649105848
 45598,2873.71940554455,456.393005346535,121.633663366337,29.699,30.58997,8.18274257425742,-1.90455445544554,1484.82673267327,-1677.21089108911,-1470.29108910891,20,40,10,32,5305605.718366,395845.826621913,0,0,0,0,0,0,0,29.699,9659.43229103409,8.18274257425742,8.77650119641128,8.66581263220499,-1.90455445544554,-1.88991424651569,-1.50301341028839,1.43590456585715,1.13919547043943,1.14473556221514,43.1918588446303,-0.0256327233378705,-3147.50198019802,-3122.47145377904,-2815.4383904667,3.03162600497624,-16470.7414646995,-13071.64555315,0,-16470.7414646995,29.6260804823056,29.6260804823056,-0.522383426461456,29.3349702492317,25,1015.12,38.12,76.5961933357126
 45599,2873.71912316832,456.386647623762,69.950495049505,27.4102673267327,28.2325753465347,7.65734653465347,-2.50623762376238,1375.9504950495,-1620.73663366337,-1359.33168316832,20,40,10,32,5305605.33824925,395837.897146297,0,0,0,0,0,0,0,27.4102673267326,9667.36110627061,7.65734653465347,8.21298121172053,8.08728274820172,-2.50623762376238,-2.49159741483252,-1.96484330426311,1.75646503709124,1.39351671539892,1.33684222598366,40.0247774717663,-0.0311048777583148,-2980.06831683168,-2969.62628173709,-2989.13995664506,3.28496587703682,-15656.4404435172,-12679.7971714544,0,-15656.4404435172,27.4941340064699,27.4941340064699,-0.50660338311059,27.7688637889749,25,1015.11,38.11,67.1144381911732
 45600,2873.7191839604,456.380678415841,45,26.2876336633664,27.0762626732673,8.64730693069307,-3.21227722772277,1312.55940594059,-1611.76831683168,-1410.26138613861,20,40,10,32,5305605.58507263,395830.463129503,0,0,0,0,0,0,0,26.2876336633663,9674.79822406488,8.64730693069307,9.27477541108526,8.86520077028706,-3.21227722772277,-3.19763701879292,-2.63969546843401,2.05224242572133,1.62817594651896,1.59189098646531,38.1808054361403,-0.0317528960449463,-3022.0297029703,-2943.96771885109,-2798.97092365375,3.42447469352995,-15778.5744456938,-10312.3090099448,0,-15778.5744456938,26.1775371042054,26.1775371042054,-0.411895892559548,26.0659379591462,25.0012623762376,1015.10126237624,38.1037871287129,78.9965209859412
-45601,2873.71959861386,456.375051287129,45,24.2897128712871,25.0184042574257,7.99648514851485,-3.48207920792079,1218.84158415842,-1312.10495049505,-1109.27623762376,20,40,10,32,5305606.47968559,395823.467084984,0,0,0,0,0,0,0,24.2897128712871,9681.81454799227,7.99648514851485,8.57672850344977,8.19673047322872,-3.48207920792079,-3.46743899899094,-2.86567390615332,1.8909416268956,1.50020564558824,1.61398676539347,35.4546645063132,-0.014616412465134,-2421.38118811881,-2493.78542299774,-2436.52404236428,3.70596483986345,-12709.2058787124,-8991.4636134301,0,-12709.2058787124,24.4013810410744,24.4013810410744,-0.359383339324032,24.8274731835854,25.01,1015.1,38.12,67.3959671537494
+45601,2873.71959861386,456.375051287129,45,24.2897128712871,25.0184042574257,7.99648514851485,-3.48207920792079,1218.84158415842,-1312.10495049505,-1109.27623762376,20,40,10,32,5305606.47968559,395823.467084984,0,0,0,0,0,0,0,24.2897128712871,9681.81454799227,7.99648514851485,8.57672850344977,8.19673047322872,-3.48207920792079,-3.46743899899094,-2.86567390615332,1.8909416268956,1.50020564558824,1.61398676539346,35.4546645063132,-0.014616412465134,-2421.38118811881,-2493.78542299774,-2436.52404236428,3.70596483986345,-12709.2058787124,-8991.4636134301,0,-12709.2058787124,24.4013810410744,24.4013810410744,-0.359383339324032,24.8274731835854,25.01,1015.1,38.12,67.3959671537494
 45602,2873.72020930693,456.369778910891,45,23.7356138613861,24.4476822772277,8.6100396039604,-3.46910891089109,1189.61881188119,-1094.04356435644,-909.134653465347,20,40,9.97029702970297,32,5305607.72946171,395816.919525045,0,0,0,0,0,0,0,23.7356138613861,9688.47154367434,8.6100396039604,9.23480388140702,8.68703252480267,-3.46910891089109,-3.45446870196124,-2.89835677750345,2.68461351361744,2.12987661388753,2.07643694594246,34.6046085183163,-0.00619217473892378,-2003.17821782178,-2007.45776884619,-2257.25903883328,3.79187061340594,-10513.6904504414,-3803.4924613423,0,-10513.6904504414,23.7179797078717,23.7179797078717,-0.152022132906359,23.8313027812457,25.02,1015.1,38.14,75.6545803616269
 45603,2873.72099019802,456.364716534654,45,22.9885940594059,23.6782518811881,8.69817821782178,-3.5,1162.84653465347,-1076.43762376238,-884.030693069307,20,40,9.99009900990099,32,5305609.2897874,395810.639263472,0,0,0,0,0,0,0,22.9885940594059,9694.9700443069,8.69817821782178,9.32933803581608,8.71917313602389,-3.5,-3.48535979107015,-2.94155852905854,2.98221028417688,2.36597927774134,2.35652773087687,33.8258345418488,-0.0138963921466545,-1960.46831683168,-1964.11749828448,-1527.20786300153,3.91546798340621,-10384.4857935456,-4018.91747293799,0,-10384.4857935456,23.0538544260366,23.0538544260366,-0.160493524599983,23.1342224042242,25.03,1015.1,38.16,76.2873379754111
 45604,2873.72202584159,456.359875346535,45,22.6473465346534,23.3267669306931,8.28732673267327,-3.5,1136.22277227723,-913.160396039604,-763.543564356436,20,40,10,32,5305611.317034,395804.643066285,0,0,0,0,0,0,0,22.6473465346534,9701.30760176015,8.28732673267327,8.88867422191375,8.35001954130436,-3.5,-3.48535979107015,-2.92788687752629,2.63818154997212,2.09303914994592,2.0773203496218,33.0513806872923,-0.00907225601284181,-1676.70396039604,-1490.72030193118,-310.355804251305,3.97448308764015,-8802.33562461766,-3833.66500751752,0,-8802.33562461766,22.6059311832173,22.6059311832173,-0.153175342286708,22.7952141626958,25.04,1015.1,38.18,69.8870041847667
@@ -569,21 +569,21 @@ Time,Lat,Long,Heading,v_veh_GPS,v_veh_CAN,vair_ar,beta_ar,n_eng,tq_l,tq_r,t_amb_
 45617,2873.73317831683,456.304659306931,225,18.755297029703,19.3179559405941,6.0980198019802,-3.5,824.534653465347,1931.01881188119,1600.20297029703,20,40,10,32,5305633.21751149,395736.231815848,0,0,0,0,0,0,0,18.7552970297029,9780.69657794276,6.0980198019802,6.54050614474765,6.26402795465138,-3.5,-3.48535979107015,-2.874839261662,1.3811117859154,1.09572483304009,1.11377978723598,23.9847408329346,0.00273607721022213,3531.22178217822,3602.81490049995,2629.75616508693,4.79885671990823,16252.4530466726,2530.23530177562,0,16252.4530466726,18.788516616018,18.788516616018,0.101163829254217,19.1065979416611,25.1,1015.1,38.58,39.351263572751
 45618,2873.73059188119,456.303113861386,225,19.3710297029703,19.9521605940594,6.38989108910891,-3.29316831683168,838.707920792079,2122.56534653465,1758.99702970297,20,40,10,32,5305628.46132958,395734.220052303,0,0,0,0,0,0,0,19.3710297029703,9785.98467387235,6.38989108910891,6.85355628379785,6.54771409622942,-3.29316831683168,-3.27852810790183,-2.70973111660857,1.52067733185692,1.20645115952898,1.19786026263851,24.397024467296,0.00684019302555533,3881.56237623762,3893.03587883541,3818.97892441908,4.64677015039527,17601.0845902071,4569.82616960671,0,17601.0845902071,19.3536119988236,19.3536119988236,0.182680891851562,19.4912779317259,25.1,1015.1,38.62,42.9955726760601
 45619,2873.72770742574,456.302895049505,225,20.001405940594,20.6014481188119,6.55433663366336,-2.5309900990099,872.316831683168,2317.46138613861,1931.28217821782,20,40,10,32,5305623.12325579,395733.85094095,0,0,0,0,0,0,0,20.001405940594,9791.45201724419,6.55433663366336,7.02993437530314,6.7239833977572,-2.5309900990099,-2.51634989008005,-2.07759436964797,1.51848429793146,1.20471128462795,1.1951204612661,25.3746680557275,0.0133203758918709,4248.74356435643,4238.81983138908,4256.18398301528,4.50049827374584,19406.4108575035,5301.5907081697,0,19406.4108575035,20.0324396627781,20.0324396627781,0.211844699321415,20.1567769006638,25.1,1015.1,38.66,45.3126500660829
-45620,2873.72477742574,456.304151584158,225,20.8936732673267,21.5204834653465,6.40437623762376,-0.115841584158416,924.529702970297,2541.72277227723,2134.11782178218,20,40,10,32,5305617.66761348,395735.318191908,0,0,0,0,0,0,0,20.8936732673267,9797.12860726069,6.40437623762376,6.86909250800594,6.64765943456862,-0.115841584158416,-0.101201375228558,-0.0762171939213098,1.3826344502305,1.09693286060126,1.0778290493972,26.8934789155281,0.0154084348154615,4675.84059405941,4743.02622291932,4419.46587719289,4.30853292403433,21670.2132088053,6344.54556494203,0,21670.2132088053,20.8808221742966,20.8808221742966,0.253524981210989,20.9998945518038,25.1,1015.09873762376,38.6873762376238,44.9819536455214
+45620,2873.72477742574,456.304151584158,225,20.8936732673267,21.5204834653465,6.40437623762376,-0.115841584158416,924.529702970297,2541.72277227723,2134.11782178218,20,40,10,32,5305617.66761348,395735.318191908,0,0,0,0,0,0,0,20.8936732673267,9797.12860726069,6.40437623762376,6.86909250800594,6.64765943456862,-0.115841584158416,-0.101201375228558,-0.0762171939213097,1.3826344502305,1.09693286060126,1.0778290493972,26.8934789155281,0.0154084348154615,4675.84059405941,4743.02622291932,4419.46587719289,4.30853292403433,21670.2132088053,6344.54556494203,0,21670.2132088053,20.8808221742966,20.8808221742966,0.253524981210989,20.9998945518038,25.1,1015.09873762376,38.6873762376238,44.9819536455214
 45621,2873.72217861386,456.306747425742,225,21.8930198019802,22.5498103960396,5.351,2.89514851485148,984.39603960396,2498.42871287129,2078.84950495049,20,40,9.98019801980198,32,5305612.79530354,395738.464948354,0,0,0,0,0,0,0,21.8930198019802,9803.06449980744,5.351,5.73928086773017,5.80839953295049,2.89514851485148,2.90978872378134,2.3047640447745,0.97593251473871,0.774270050169548,0.786232582735933,28.6349200578027,0.00727220521664303,4577.27821782178,4581.4376923831,4553.76499585042,4.1123896224694,21569.2166390735,8010.04861385907,0,21569.2166390735,21.9109260856779,21.9109260856779,0.320273611519569,21.8727955664867,25.1,1015.09,38.64,34.4276140167694
 45622,2873.72012425743,456.310536138614,225,22.9433465346535,23.6316469306931,5.18481353135644,3.48514851485149,810,2474.70594059406,2068.03366336634,20,40,9.9009900990099,32,5305608.90466825,395743.115930062,0,0,0,0,0,0,0,22.9433465346535,9809.30920690315,5.18481353135644,5.56103552667959,5.72716140878593,3.48514851485149,3.49978872378134,2.68284718407821,1.11052315253633,0.881049461969162,0.892701762042814,23.5619449019235,-0.0588256600197759,4542.7396039604,4491.20020586217,4580.1165432752,3.92303145380792,16828.2011227882,5157.20051264579,0,16828.2011227882,22.9163863346731,22.9163863346731,0.207124301539067,22.7297906378573,25.1,1015.08,38.58,33.542978920913
 45623,2873.71866574257,456.315211287129,225,23.4797425742574,24.1841348514851,4.42627722772277,2.34435643564356,777.816831683168,2468.39504950495,2072.49504950495,20,40,10,32,5305606.09779162,395748.89111934,0,0,0,0,0,0,0,23.4797425742574,9815.76274856982,4.42627722772277,4.74745808415979,5.11265471199928,2.34435643564356,2.35899664457342,1.73490841254246,1.86390616577152,1.47875667496295,1.42881725840436,22.6257744838364,0.0112323169682803,4540.8900990099,4511.36319968631,4478.35630303831,3.83323274166727,15753.0598223958,4174.11634821363,0,15753.0598223958,23.507528771689,23.507528771689,0.166824603252399,23.5120886016884,25.1,1015.07,38.52,27.1984358253394
 45624,2873.71773633663,456.32037009901,166.188118811881,24.1816138613861,24.9070622772277,6.14521782178218,3.48455445544554,819.608910891089,2458.36237623762,2060.9099009901,20,40,10,32,5305604.26012828,395755.286534035,0,0,0,0,0,0,0,24.1816138613861,9822.38414042899,6.14521782178218,6.5911289614257,6.61532138692334,3.48455445544554,3.4991946643754,2.75497419133651,1.00504308481375,0.797365338226937,0.826324843064074,23.8414567895572,0.0139683941785025,4519.27227722772,4524.42246838545,4411.11812209614,3.72199852483196,16038.3204655356,4330.1027984806,0,16038.3204655356,24.1760978335457,24.1760978335457,0.173024975764904,24.1950783928274,25.1,1015.06,38.46,44.5447725875181
 45625,2873.71721623762,456.325770891089,119.851485148515,24.8543564356436,25.5999871287129,6.53412871287129,3.36772277227723,859.029702970297,2340.16138613861,1977.04950495049,20,40,10,32,5305603.17520393,395761.997090018,0,0,0,0,0,0,0,24.8543564356435,9829.18803110557,6.53412871287129,7.00826012129855,6.9847952952992,3.36772277227723,3.38236298120708,2.69804932103593,0.861146959772515,0.683203284732177,0.692883193128414,24.9881611487677,0.00936026414023362,4317.21089108911,4295.97671796883,4168.23545744927,3.62139714166998,15623.0762934154,5439.19726686476,0,15623.0762934154,24.8507396333692,24.8507396333692,0.217446002025946,24.9241774253999,25.1,1015.05,38.4,49.4175228107402
-45626,2873.71688118812,456.331372376238,94.9009900990099,25.6755643564356,26.4458312871287,6.70681188118812,3.5,898.460396039604,2116.12673267327,1758.30891089109,20,40,10,32,5305602.42854706,395768.963849528,0,0,0,0,0,0,0,25.6755643564356,9836.20437453241,6.70681188118812,7.19347357749362,7.17880003066361,3.5,3.51464020892985,2.79139779687811,0.618394651414796,0.490612261139498,0.50688396223859,26.1351535161055,0.0115923271275201,3874.43564356436,3848.1638466817,3287.34531055349,3.50564494331417,14195.9620490756,6341.33504768838,0,14195.9620490756,25.6892553671208,25.6892553671208,0.253500473809757,25.6837890217519,25.1,1015.04,38.34,51.674719734365
+45626,2873.71688118812,456.331372376238,94.9009900990099,25.6755643564356,26.4458312871287,6.70681188118812,3.5,898.460396039604,2116.12673267327,1758.30891089109,20,40,10,32,5305602.42854706,395768.963849528,0,0,0,0,0,0,0,25.6755643564356,9836.20437453241,6.70681188118812,7.19347357749362,7.17880003066361,3.5,3.51464020892985,2.79139779687812,0.618394651414796,0.490612261139498,0.50688396223859,26.1351535161055,0.0115923271275201,3874.43564356436,3848.1638466817,3287.34531055349,3.50564494331417,14195.9620490756,6341.33504768838,0,14195.9620490756,25.6892553671208,25.6892553671208,0.253500473809757,25.6837890217519,25.1,1015.04,38.34,51.674719734365
 45627,2873.71666435644,456.337177623762,75.2970297029703,26.5791188118812,27.3764923762376,7.27261386138614,3.5,931.480198019802,1313.6297029703,1077.27524752475,20,40,10,32,5305601.89629441,395776.18839927,0,0,0,0,0,0,0,26.5791188118812,9843.47107299226,7.27261386138614,7.80033145076485,7.71202823653376,3.5,3.51464020892985,2.81482286256951,0.764225183511029,0.606309004200294,0.581623113433021,27.0956606209572,0.00475213410196476,2390.90495049505,2246.35931771395,1725.87064919806,3.38625396551271,8776.28033172538,4366.53531150746,0,8776.28033172538,26.5438319772571,26.5438319772571,0.17459889553312,26.2698221009108,25.1,1015.03,38.28,59.6717645096311
 45628,2873.71649089109,456.343117326733,75.2970297029703,26.7872277227723,27.5908445544554,7.20796039603961,3.5,934.009900990099,-468.937623762376,-512.224752475248,20,40,10,32,5305601.44135543,395783.581896613,0,0,0,0,0,0,0,26.7872277227723,9850.90373022549,7.20796039603961,7.7309865812646,7.66894922062969,3.5,3.51464020892985,2.80735620055191,0.638229757727779,0.506348727061205,0.514926554204923,27.1692466975058,-0.0039601117516373,-981.162376237624,-790.546446426821,41.5148180589856,3.35988544548888,-3578.39652872832,-1740.41527138819,0,-3578.39652872832,26.7414721105774,26.7414721105774,-0.0695642584060425,26.5040143520733,25.1,1015.02,38.22,58.9047768351188
-45629,2873.7163090099,456.349012178218,80.6435643564356,26.3595544554456,27.1503410891089,7.23185148514851,3.5,925.247524752475,-637.708910891089,-661.941584158416,20,40,10,32,5305600.97184579,395790.919240226,0,0,0,0,0,0,0,26.3595544554455,9858.27976680414,7.23185148514851,7.75661126275068,7.6647545778813,3.5,3.51464020892985,2.81704104482048,0.710077106688417,0.563349851262089,0.562107437245123,26.914359504764,0.000792022350327462,-1299.6504950495,-1504.51343985884,-1903.20852015231,3.41433421193413,-4776.62187710964,-2424.06122323205,0,-4776.62187710964,26.3711661601803,26.3711661601803,-0.0969730636429943,26.1438328061434,25.1,1015.01,38.16,58.8614577214297
+45629,2873.7163090099,456.349012178218,80.6435643564356,26.3595544554456,27.1503410891089,7.23185148514851,3.5,925.247524752475,-637.708910891089,-661.941584158416,20,40,10,32,5305600.97184579,395790.919240226,0,0,0,0,0,0,0,26.3595544554455,9858.27976680414,7.23185148514851,7.75661126275068,7.6647545778813,3.5,3.51464020892985,2.81704104482049,0.710077106688417,0.563349851262089,0.562107437245123,26.914359504764,0.000792022350327462,-1299.6504950495,-1504.51343985884,-1903.20852015231,3.41433421193413,-4776.62187710964,-2424.06122323205,0,-4776.62187710964,26.3711661601803,26.3711661601803,-0.0969730636429943,26.1438328061434,25.1,1015.01,38.16,58.8614577214297
 45630,2873.7160990099,456.354811881188,85.990099009901,25.6155148514852,26.3839802970297,6.91309900990099,3.5,984.514851485148,-1899.5900990099,-1787.73861386139,20,40,10,32,5305600.45239995,395798.137114378,0,0,0,0,0,0,0,25.6155148514851,9865.53505426289,6.91309900990099,7.41472937474288,7.35087724678312,3.5,3.51464020892985,2.80873063081679,0.621262430973423,0.492887455160806,0.489032033420604,28.6383761553314,0.0504734243254135,-3687.32871287129,-3495.54260366631,-3454.59338828809,3.51489446457528,-15001.5295625937,-10752.7634450122,0,-15001.5295625937,25.5487722772277,25.5487722772277,-0.43086462111558,24.8518421292502,25.1,1015.00252475248,38.1164108910891,54.1625622548162
 45631,2873.71584712871,456.360262277228,93.1188118811881,23.2658514851485,23.963827029703,6.18532673267327,3.5,1106.61881188119,-2536.91386138614,-2322.80891089109,20,40,10,32,5305599.86324106,395804.918444695,0,0,0,0,0,0,0,23.2658514851485,9872.35784177665,6.18532673267327,6.63414826714476,6.59691529572558,3.5,3.51464020892985,2.80109903169977,0.562363324685334,0.44615900489206,0.444599874570566,32.1902363863908,-0.0123123474459996,-4859.72277227723,-5108.14396627782,-4263.63636781997,3.87520734058989,-24366.4099960208,-22132.1469708896,0,-24366.4099960208,23.1952570336241,23.1952570336241,-0.885049396028713,22.7657520965013,25.1,1015.01,38.17,43.6440135602518
 45632,2873.71558158416,456.365003861386,89.5544554455445,19.6861683168317,20.2767533663366,5.3170594059406,3.5,982.89603960396,-3115.42475247525,-2690.92475247525,20,40,10,32,5305599.26472179,395810.816326663,0,0,0,0,0,0,0,19.6861683168317,9878.31416600657,5.3170594059406,5.70287746609972,5.65288595515011,3.5,3.51464020892985,2.80194793968643,0.631681184500983,0.501153322620553,0.469906659033663,28.5912868265028,-0.033696950904841,-5806.34950495049,-5665.10870502892,-3130.39331998172,4.58194704218285,-30158.363114437,-19270.2226474133,0,-30158.363114437,19.8183717282619,19.8183717282619,-0.770181844917158,20.8608445195897,25.1,1015.02,38.24,32.285675792011
 45633,2873.71532287129,456.369156138614,91.3366336633663,18.2048712871287,18.7510174257426,4.88856435643564,3.5,999.148514851485,-1986.19108910891,-1644.97227722772,20,40,10,32,5305598.69211587,395815.980317132,0,0,0,0,0,0,0,18.2048712871287,9883.52717731019,4.88856435643564,5.24328983022963,5.20335504202761,3.5,3.51464020892985,2.80504860413758,0.497403887659645,0.394622504360225,0.420310765343541,29.0640521676165,0.0442812495864898,-3631.16336633663,-3175.19088324674,-25.5952071413991,4.94525052007548,-20895.1187387196,-6282.71254780428,0,-20895.1187387196,18.2086401333202,18.2086401333202,-0.252265573091963,19.8044124134331,25.1,1015.03,38.31,27.1770892551263
-45634,2873.71507009901,456.373118910891,91.3366336633663,17.8845346534653,18.4210706930693,4.73321782178218,3.5,1227.57425742574,2156.89900990099,2301.90099009901,20,40,10,32,5305598.13478011,395820.908433917,0,0,0,0,0,0,0,17.8845346534653,9888.49021798675,4.73321782178218,5.07667099371219,5.05280893211045,3.5,3.51464020892985,2.79739160124932,0.495805355811339,0.393354286204057,0.393578363222679,35.7086876746728,0.0566655990643374,4458.8,4358.29965689638,3442.277246692,5.03431350731291,32574.0344924374,6509.1472443355,0,32574.0344924374,18.0009931379276,18.0009931379276,0.258943839928545,19.7829539337681,25.1,1015.04,38.38,25.6368761717854
+45634,2873.71507009901,456.373118910891,91.3366336633663,17.8845346534653,18.4210706930693,4.73321782178218,3.5,1227.57425742574,2156.89900990099,2301.90099009901,20,40,10,32,5305598.13478011,395820.908433917,0,0,0,0,0,0,0,17.8845346534653,9888.49021798675,4.73321782178218,5.07667099371219,5.05280893211045,3.5,3.51464020892985,2.79739160124933,0.495805355811339,0.393354286204057,0.393578363222679,35.7086876746728,0.0566655990643374,4458.8,4358.29965689638,3442.277246692,5.03431350731291,32574.0344924374,6509.1472443355,0,32574.0344924374,18.0009931379276,18.0009931379276,0.258943839928545,19.7829539337681,25.1,1015.04,38.38,25.6368761717854
 45635,2873.71476990099,456.377282574257,107.376237623762,19.925297029703,20.5230559405941,4.65337623762376,3.5,1353.07920792079,4716.51287128713,4942.17722772277,20,40,10,32,5305597.4850826,395826.085223154,0,0,0,0,0,0,0,19.9252970297029,9893.70819881733,4.65337623762376,4.99103592056518,5.10189821278151,3.5,3.51464020892985,2.73165891224585,0.714161685486203,0.566590410402113,0.574261865545583,39.3594786974913,0.0358570118602795,9658.6900990099,9667.59908832468,7038.55765786167,4.52337074442318,68699.2042577233,17602.1040350862,0,68699.2042577233,19.9420160768552,19.9420160768552,0.703167717761875,20.8148557833379,25.1,1015.05,38.45,26.0913713186377
 45636,2873.71440267327,456.381996831683,114.504950495049,22.7774653465347,23.4607893069307,4.92768316831683,3.5,1274.61386138614,5992.76435643565,6146.26633663366,20,40,10,32,5305596.6988476,395831.945667471,0,0,0,0,0,0,0,22.7774653465346,9899.62307458741,4.92768316831683,5.28524719307733,5.49884668031869,3.5,3.51464020892985,2.68952399198017,1.10991088831818,0.880563713375129,0.893219349413313,37.0770142879112,-0.0486733735292148,12139.0306930693,11859.8931379277,10064.8418053077,3.95899300835154,71055.3559230899,22680.2855773084,0,71055.3559230899,22.8115615135771,22.8115615135771,0.90833823481358,22.9949575369533,25.1,1015.06,38.52,30.3366092332144
 45637,2873.71402752475,456.387425445545,107.376237623762,26.0470099009901,26.8284201980198,5.44068316831683,3.5,1254.93564356436,5269.21386138614,5068.09900990099,20,40,10,32,5305595.88188518,395838.695748431,0,0,0,0,0,0,0,26.0470099009901,9906.42639964243,5.44068316831683,5.83547165301857,6.12282165605006,3.5,3.51464020892985,2.66911961181195,1.46346738379241,1.16106282715032,1.10230968678709,36.50459813472,-0.0347049793507123,10337.3128712871,10442.8777080678,10531.3128995883,3.45842626297714,52421.9812528163,20190.8061215845,0,52421.9812528163,26.0202201744927,26.0202201744927,0.808188739666048,25.8424691900759,25.1,1015.07,38.59,37.5994733009308
@@ -598,9 +598,9 @@ Time,Lat,Long,Heading,v_veh_GPS,v_veh_CAN,vair_ar,beta_ar,n_eng,tq_l,tq_r,t_amb_
 45646,2873.73105841584,456.454245940594,45,47.1158613861386,48.5293372277228,9.55469636964357,2.60445544554455,1669.51485148515,4575.15544554455,3742.15346534654,20,40,10,32,5305625.927157,395922.50541734,0,0,0,0,0,0,0,47.1158613861385,9998.23930401536,9.55469636964357,10.2480071147947,10.8320438685437,2.60445544554455,2.61909565447441,1.97242048388381,2.92007542203399,2.31668369418192,2.41647822829049,48.5642184489333,0.0209525912677537,8317.30891089108,8327.41044995588,8329.78310499784,1.91056406682297,30862.3601446152,15831.9381477995,0,30862.3601446152,47.1359339280462,47.1359339280462,0.632997581936408,47.134353513139,25.1,1015.1,38.74,117.848386722655
 45647,2873.73534643564,456.462863663366,45,49.4118811881188,50.8942376237624,9.87448679868317,1.75613861386139,1753.80693069307,4290.65049504951,3689.02079207921,20,40,10,32,5305633.67644504,395933.384001256,0,0,0,0,0,0,0,49.4118811881188,10011.6534294004,9.87448679868317,10.5910022729091,11.2362032415533,1.75613861386139,1.77077882279124,1.33880624161156,3.20179582315762,2.54019061276243,2.56644515521353,51.0161756414834,0.0203765750129701,7979.67128712871,7974.57159102049,7976.38509907332,1.82169545020667,29659.0337950486,15609.008198446,0,29659.0337950486,49.4161748848151,49.4161748848151,0.624087780065139,49.4115655695047,25.1,1015.1,38.73,126.534771787587
 45648,2873.73984940594,456.471898118812,45,51.662,53.21186,10.1661325632871,-0.211188118811881,1828.65346534653,3991.20495049505,3648.2297029703,20,40,10,32,5305641.81455497,395944.788869803,0,0,0,0,0,0,0,51.6619999999999,10025.6953584983,10.1661325632871,10.9038105250014,11.6133497558058,-0.211188118811881,-0.196547909882024,-0.13331058199248,3.52394147595631,2.79576948423914,2.71404018772343,53.1933730805018,0.0167044713887246,7639.43465346534,7579.01920399961,7551.02080243256,1.74232534057892,28316.1477457407,14982.8049037393,0,28316.1477457407,51.645775904323,51.645775904323,0.599088869282965,51.622411603712,25.1,1015.1,38.72,135.640078789687
-45649,2873.74456980198,456.481304653465,45,53.6869306930693,55.2975386138613,12.5419603960396,-0.0648514851485149,1900.26237623762,3703.56831683168,3273.57623762376,20,40,10,32,5305650.34707767,395956.664475193,0,0,0,0,0,0,0,53.6869306930692,10040.3336017876,12.5419603960396,13.4520338898934,13.750894520188,-0.0648514851485149,-0.0502112762186573,-0.0345548871512945,1.68881493219466,1.33984553494207,1.42255199286354,55.276391861863,0.0199445628218824,6977.14455445544,7041.80103911381,7025.72167356051,1.67656281369346,25860.9989008867,13488.3087733241,0,25860.9989008867,53.6774256445446,53.6774256445446,0.539266302867905,53.6684680923667,25.1,1015.1,38.71,189.483053863818
+45649,2873.74456980198,456.481304653465,45,53.6869306930693,55.2975386138613,12.5419603960396,-0.0648514851485149,1900.26237623762,3703.56831683168,3273.57623762376,20,40,10,32,5305650.34707767,395956.664475193,0,0,0,0,0,0,0,53.6869306930692,10040.3336017876,12.5419603960396,13.4520338898934,13.750894520188,-0.0648514851485149,-0.0502112762186573,-0.0345548871512944,1.68881493219466,1.33984553494207,1.42255199286354,55.276391861863,0.0199445628218824,6977.14455445544,7041.80103911381,7025.72167356051,1.67656281369346,25860.9989008867,13488.3087733241,0,25860.9989008867,53.6774256445446,53.6774256445446,0.539266302867905,53.6684680923667,25.1,1015.1,38.71,189.483053863818
 45650,2873.74949792079,456.491028316832,45,55.5377128712871,57.2038442574257,12.1507062705941,-0.0678217821782177,1936.34158415842,3376.06435643564,2881.68910891089,20,40,10,32,5305659.25727673,395968.942035826,0,0,0,0,0,0,0,55.537712871287,10055.5120427942,12.1507062705941,13.0323894651896,13.5239598590904,-0.0678217821782177,-0.05318157324836,-0.0571883350492569,2.59716185504499,2.06049558697459,2.01160024877504,56.3258934780787,-0.0614177331663021,6257.75346534654,6421.88282521321,6545.20811902155,1.62064618715576,22833.1694099998,12313.5214331665,0,22833.1694099998,55.5375706303303,55.5375706303303,0.493287695106158,55.5273815331469,25.1,1015.1,38.6962128712871,183.756844008371
-45651,2873.75463237624,456.501006534653,45,57.3111485148515,59.030482970297,11.9325550055446,-0.176435643564356,1494.39108910891,3717.47425742574,3124.54752475248,20,40,9.81188118811881,32,5305668.54399206,395981.54355112,0,0,0,0,0,0,0,57.3111485148514,10071.1845811056,11.9325550055446,12.7984086425826,13.4403989228103,-0.176435643564356,-0.161795434634499,-0.125293923754958,3.21277403962976,2.54890033816893,2.50547222543922,43.4700746956908,-0.0759621435995882,6842.02178217822,6673.56441525341,6599.27025790087,1.57051144312911,18718.5783326646,12423.6079017555,0,18718.5783326646,57.3064549553965,57.3064549553965,0.497756211264683,57.3083357192956,25.1,1015.1,38.66,180.947253631918
+45651,2873.75463237624,456.501006534653,45,57.3111485148515,59.030482970297,11.9325550055446,-0.176435643564356,1494.39108910891,3717.47425742574,3124.54752475248,20,40,9.81188118811881,32,5305668.54399206,395981.54355112,0,0,0,0,0,0,0,57.3111485148514,10071.1845811056,11.9325550055446,12.7984086425826,13.4403989228103,-0.176435643564356,-0.161795434634499,-0.125293923754957,3.21277403962976,2.54890033816893,2.50547222543922,43.4700746956908,-0.0759621435995882,6842.02178217822,6673.56441525341,6599.27025790087,1.57051144312911,18718.5783326646,12423.6079017555,0,18718.5783326646,57.3064549553965,57.3064549553965,0.497756211264683,57.3083357192956,25.1,1015.1,38.66,180.947253631918
 45652,2873.7599829703,456.511237920792,45,59.1019108910891,60.8749682178218,13.1882931793069,-1.58514851485149,1495.23762376238,3555.80198019802,2984.33168316832,20,40,10,32,5305678.2254135,395994.467617533,0,0,0,0,0,0,0,59.101910891089,10087.3557282453,13.1882931793069,14.145266066532,14.6111806839569,-1.58514851485149,-1.57050830592163,-1.20967464817692,2.4464761689361,1.94094693788116,1.94444215953313,43.4946993905828,0.0163444612294849,6540.13366336634,6543.99419664739,6549.55074140445,1.52291748235622,17326.5873589294,12127.4997274072,0,17326.5873589294,59.0964355455347,59.0964355455347,0.484944286507862,59.0865093310912,25.1,1015.1,38.62,214.063358310461
 45653,2873.76553643564,456.521742970297,45,60.8017326732673,62.6257846534653,14.1401287128713,-0.493762376237624,1551.13366336634,3421.35940594059,3013.25445544555,20,40,10,32,5305688.27650746,396007.739319024,0,0,0,0,0,0,0,60.8017326732672,10104.0113133388,14.1401287128713,15.16616897571,15.5187516929047,-0.493762376237624,-0.479122167307767,-0.371362522679409,1.9476759416563,1.54521662746731,1.63066556180188,45.1206492737732,0.00676819099370738,6434.61386138614,6434.28372708558,6433.13822269849,1.48033345508826,17191.1995169039,11883.8225900924,0,17191.1995169039,60.8010394079011,60.8010394079011,0.4752870088989,60.8046854477484,25.1,1015.1,38.58,241.082462602647
 45654,2873.77124069307,456.532551584158,45,62.487900990099,64.362538019802,13.7065726072277,-0.895643564356436,1590.19306930693,3295.55544554455,3000.84653465347,20,40,10,32,5305698.60013665,396021.394161194,0,0,0,0,0,0,0,62.4879009900989,10121.1410943619,13.7065726072277,14.701153041827,15.2465640164816,-0.895643564356436,-0.881003355426577,-0.684109595726457,2.80761080796322,2.22745828047369,2.19282498188545,46.2568413363339,0.0175684957709,6296.40198019802,6293.01011665523,6291.27952179258,1.44036428242782,16779.474781443,11584.8659564995,0,16779.474781443,62.4930441133221,62.4930441133221,0.463226644446618,62.4937168029077,25.1,1015.1,38.54,232.803850258723
@@ -612,33 +612,33 @@ Time,Lat,Long,Heading,v_veh_GPS,v_veh_CAN,vair_ar,beta_ar,n_eng,tq_l,tq_r,t_amb_
 45660,2873.8082490099,456.603514059406,45,71.628306930693,73.7771561386139,16.343497249604,-0.623366336633663,1821.36138613861,2860.43366336634,2578.79108910891,20,40,10,32,5305765.56018511,396111.027197876,0,0,0,0,0,0,0,71.628306930693,10233.1668054455,16.343497249604,17.5294190013928,18.0149221424462,-0.623366336633663,-0.608726127703806,-0.477742748925853,2.57016501213192,2.03907725466058,2.00143317946625,52.9812550946777,0.0139683941785025,5439.22475247525,5436.17762964415,5435.86969049661,1.25652822905038,14483.5779908468,9716.50997902528,0,14483.5779908468,71.6223591804724,71.6223591804724,0.388526723959517,71.6203217138847,25.1,1015.1,38.3037871287129,325.129710534569
 45661,2873.81491376238,456.616221881188,45,72.9739900990099,75.1632098019802,17.1374257425743,0.502277227722772,1857.82673267327,2794.82871287129,2535.58118811881,20,40,10,32,5305777.62063627,396127.079533518,0,0,0,0,0,0,0,72.9739900990098,10253.2554999449,17.1374257425743,18.3809567719123,18.7672750815669,0.502277227722772,0.516917436652629,0.403052236306445,2.19182904927594,1.73891899523434,1.7729471323442,54.0419890278617,0.00993628039501722,5330.4099009901,5327.67417900206,5327.62764732278,1.23334830445061,14210.9370511989,9078.76604898253,0,14210.9370511989,72.9680922458582,72.9680922458582,0.36305536494244,72.9681747700658,25.1,1015.1,38.29,352.608786262718
 45662,2873.82168267327,456.629165049505,45,74.2665742574257,76.4945714851485,16.5642810780198,-0.798910891089109,1891.31188118812,2724.44851485149,2478.41188118812,20,40,10,32,5305789.86879232,396143.428443952,0,0,0,0,0,0,0,74.2665742574256,10273.7071884488,16.5642810780198,17.766223412219,18.3536960041059,-0.798910891089109,-0.784270682159251,-0.598219704905714,3.06872531009472,2.43461721371149,2.38054056077838,55.0160325147008,0.000216006095543854,5202.8603960396,5201.87184589746,5201.56763767286,1.21188068881904,13875.1589728791,8877.8934806689,0,13875.1589728791,74.2655727869816,74.2655727869816,0.355113605419941,74.2647235905408,25.1,1015.1,38.28,337.474023072405
-45663,2873.82856643564,456.642334851485,45,75.5206930693069,77.7863138613861,16.5839708471287,-1.46623762376238,1919.71782178218,2671.82673267327,2407.18118811881,20,40,10,32,5305802.32465825,396160.063428524,0,0,0,0,0,0,0,75.5206930693069,10294.5146056655,16.5839708471287,17.7873419162625,18.442312202884,-1.46623762376238,-1.45159741483252,-1.10979555926307,3.40186502754643,2.69891838397618,2.60425989411879,55.8423278321879,0.0105842986816488,5079.00792079208,5081.54561317518,5082.30181381598,1.19175097909104,13520.1876194246,8584.27678353704,0,13520.1876194246,75.5194911283207,75.5194911283207,0.34326972301191,75.5189081893145,25.1,1015.1,38.27,340.832436745707
+45663,2873.82856643564,456.642334851485,45,75.5206930693069,77.7863138613861,16.5839708471287,-1.46623762376238,1919.71782178218,2671.82673267327,2407.18118811881,20,40,10,32,5305802.32465825,396160.063428524,0,0,0,0,0,0,0,75.5206930693069,10294.5146056655,16.5839708471287,17.7873419162625,18.442312202884,-1.46623762376238,-1.45159741483252,-1.10979555926307,3.40186502754643,2.69891838397618,2.60425989411879,55.8423278321879,0.0105842986816488,5079.00792079208,5081.54561317518,5082.30181381598,1.19175097909104,13520.1876194246,8584.27678353704,0,13520.1876194246,75.5194911283207,75.5194911283207,0.34326972301191,75.5189081893145,25.1,1015.1,38.27,340.832436745706
 45664,2873.8355849505,456.655697821782,45,76.7408514851485,79.043077029703,17.4838498349505,-0.811782178217822,1950.86138613861,2645.12376237624,2334.81584158416,20,40,10,32,5305815.02584997,396176.943459393,0,0,0,0,0,0,0,76.7408514851484,10315.6642479372,17.4838498349505,18.7525181932347,19.2783946147446,-0.811782178217822,-0.797141969287964,-0.615102220872563,2.79438899094995,2.21696856241676,2.33557514563182,56.7482573968988,0.00993628039501722,4979.9396039604,4978.26323889814,4972.63334179572,1.17280104364054,13257.3549717162,8165.25000270747,0,13257.3549717162,76.7353418292324,76.7353418292324,0.326514829700793,76.7331170347803,25.1,1015.1,38.26,372.336585868574
 45665,2873.84274752475,456.669235247525,45,77.8789702970297,80.2153394059406,16.912804730099,0.00227722772277237,1910.02475247525,2596.95445544554,2335.7297029703,20,40,9.78217821782178,32,5305827.99002853,396194.045532592,0,0,0,0,0,0,0,77.8789702970296,10337.1404226622,16.912804730099,18.1400367421255,18.8575030831712,0.00227722772277237,0.0169174366526294,0.0172472390776144,3.65457014591551,2.89940561206092,2.83704748534709,55.5603678754713,-0.0740180887396935,4932.68415841584,4899.26018037447,4907.74395406765,1.15566182286841,12638.6637619633,8016.85666223927,0,12638.6637619633,77.8826938535437,77.8826938535437,0.321334237384123,77.8837446434944,25.1,1015.1,38.25,355.850940647303
-45666,2873.85002564356,456.682960990099,45,79.0592673267327,81.4310453465346,18.3670462044555,-0.584059405940594,1720.74257425743,2561.69405940594,2316.84455445545,20,40,10,32,5305841.16406605,396211.385961203,0,0,0,0,0,0,0,79.0592673267326,10358.939220572,18.3670462044555,19.6998013227335,20.1629350244171,-0.584059405940594,-0.569419197010737,-0.437914048406331,2.54065197111747,2.01566266051414,2.19750944228309,50.0543725000585,-0.00288008127391804,4878.53861386139,4910.83315361239,4908.53087387,1.13840757886609,11119.7265884498,7934.45736792507,0,11119.7265884498,79.0502357611998,79.0502357611998,0.317402161008185,79.0488697031226,25.1,1015.1,38.24,407.252812280582
+45666,2873.85002564356,456.682960990099,45,79.0592673267327,81.4310453465346,18.3670462044555,-0.584059405940594,1720.74257425743,2561.69405940594,2316.84455445545,20,40,10,32,5305841.16406605,396211.385961203,0,0,0,0,0,0,0,79.0592673267326,10358.939220572,18.3670462044555,19.6998013227335,20.1629350244171,-0.584059405940594,-0.569419197010737,-0.437914048406331,2.54065197111747,2.01566266051415,2.19750944228309,50.0543725000585,-0.00288008127391804,4878.53861386139,4910.83315361239,4908.53087387,1.13840757886609,11119.7265884498,7934.45736792507,0,11119.7265884498,79.0502357611998,79.0502357611998,0.317402161008185,79.0488697031226,25.1,1015.1,38.24,407.252812280582
 45667,2873.85739019802,456.696913366337,45,80.1469702970297,82.5513794059406,17.5079405942574,-1.10623762376238,1741.44059405941,2488.89405940594,2324.99306930693,20,40,10,32,5305854.49318661,396229.011502623,0,0,0,0,0,0,0,80.1469702970296,10381.0543263476,17.5079405942574,18.7783570334476,19.4938894952704,-1.10623762376238,-1.09159741483252,-0.833356138698818,3.65401034366801,2.89896148492332,2.80358901646492,50.6564534903711,0.00482413613381272,4813.88712871287,4812.29264777963,4811.84774514285,1.12295459572486,10953.6328782634,7762.7186470725,0,10953.6328782634,80.1566538574648,80.1566538574648,0.310469289503196,80.1581008617484,25.1,1015.1,38.23,380.257816358718
 45668,2873.86483980198,456.711074356436,45,81.2477128712871,83.6851442574257,18.8135423545545,-2.22316831683168,1766.03465346535,2466.69108910891,2281.12574257426,20,40,10,32,5305867.97522875,396246.899660401,0,0,0,0,0,0,0,81.247712871287,10403.4763677942,18.8135423545545,20.1786962604608,20.6676062041953,-2.22316831683168,-2.20852810790183,-1.70532046316867,2.83392288854024,2.2483333467726,2.27414918717493,51.3718656788123,0.00669618896185943,4747.81683168317,4751.99156945398,4752.16136273434,1.10773455008077,10806.9393551196,7353.62579553185,0,10806.9393551196,81.2530657778648,81.2530657778648,0.294090176344375,81.2530529067535,25.1,1015.1,38.22,428.681516532899
 45669,2873.87238891089,456.725422079208,45,82.3339405940594,84.8039588118812,19.1272579759406,-1.22930693069307,1789.39603960396,2469.96138613861,2230.01782178218,20,40,10,32,5305881.6374613,396265.023655758,0,0,0,0,0,0,0,82.3339405940593,10426.1968428217,19.1272579759406,20.5151758089058,20.9970511062347,-1.22930693069307,-1.21466672176321,-0.948523137236298,2.71447913453022,2.15357093235039,2.07025610542526,52.0514208553933,0.00345609752870164,4699.97920792079,4699.57798255073,4699.59371423381,1.09312103514044,10696.8551625911,7554.32940606798,0,10696.8551625911,82.3334909322614,82.3334909322614,0.302144942216999,82.3330719411389,25.1,1015.1,38.21,441.725187300603
 45670,2873.88004851485,456.73995940594,45,83.3966435643564,85.8985428712872,18.5620330032673,-2.4550495049505,1810.64356435644,2430.70693069307,2217.27920792079,20,40,10,32,5305895.50017962,396283.387427908,0,0,0,0,0,0,0,83.3966435643563,10449.2170500549,18.5620330032673,19.9089368121525,20.5773475862657,-2.4550495049505,-2.44040929602064,-1.88035732497134,3.46258972627869,2.74709519417965,2.78168331247169,52.6694862967761,0.00590416661153197,4647.98613861386,4644.6448877561,4644.55315022628,1.07919114954948,10567.404224886,6969.27518443008,0,10567.404224886,83.387069699049,83.387069699049,0.278722674247623,83.3860325290351,25.1,1015.1,38.2050495049505,423.678299272065
 45671,2873.8878080198,456.754666732673,45,84.3831881188119,86.9146837623763,19.3260242022772,-1.53693069306931,1827.30693069307,1637.08514851485,1522.85445544554,20,40,10,32,5305909.54420092,396301.966200545,0,0,0,0,0,0,0,84.3831881188118,10472.5215487073,19.3260242022772,20.7283649698038,21.2842996762076,-1.53693069306931,-1.52229048413945,-1.17667734106378,3.06620738202089,2.43261957938063,2.57808494999899,53.1542039751765,0.00590416661153198,3159.9396039604,2971.1610920498,2944.27093383036,1.06657406885512,7180.76481203759,4069.43884582919,0,7180.76481203759,84.3008679541221,84.3008679541221,0.162729144201538,84.2950017211066,25.1,1015.1,38.23,454.399189986976
-45672,2873.89561643565,456.769462673267,45,84.2579108910892,86.7856482178218,18.4049752471287,0.618118811881188,1820.69306930693,-110.567326732673,-132.608910891089,20,40,10,32,5305923.67689749,396320.656893648,0,0,0,0,0,0,0,84.2579108910891,10495.9714415291,18.4049752471287,19.740482583983,20.4926535327805,0.618118811881188,0.632759020811046,0.485384640184602,3.8508668598871,3.05514042392503,2.91254074307184,52.9618145460787,-0.00842423772621026,-243.176237623762,3.75131849818648,36.3397748372969,1.06815108458222,-548.212771780165,-2700.38077093739,0,-548.212771780165,84.2645480835211,84.2645480835211,-0.107946933307188,84.2648967203796,25.1,1015.1,38.26,419.95007116519
+45672,2873.89561643565,456.769462673267,45,84.2579108910892,86.7856482178218,18.4049752471287,0.618118811881188,1820.69306930693,-110.567326732673,-132.608910891089,20,40,10,32,5305923.67689749,396320.656893648,0,0,0,0,0,0,0,84.2579108910891,10495.9714415291,18.4049752471287,19.740482583983,20.4926535327805,0.618118811881188,0.632759020811046,0.485384640184602,3.8508668598871,3.05514042392503,2.91254074307185,52.9618145460787,-0.00842423772621026,-243.176237623762,3.75131849818648,36.3397748372969,1.06815108458222,-548.212771780165,-2700.38077093739,0,-548.212771780165,84.2645480835211,84.2645480835211,-0.107946933307188,84.2648967203796,25.1,1015.1,38.26,419.95007116519
 45673,2873.90340316832,456.784187722772,45,84.0010099009901,86.5210401980198,18.4681138611881,-1.07841584158416,1818.25742574257,568.388118811881,560.99900990099,20,40,10,32,5305937.77107517,396339.258467264,0,0,0,0,0,0,0,84.00100990099,10519.3292301705,18.4681138611881,19.8082026811025,20.5321709454081,-1.07841584158416,-1.0637756326543,-0.818133582007474,3.69876223903894,2.93446604261633,2.92836300435149,52.8909645467404,0.000576016254783605,1129.38712871287,1100.61840015685,1094.21456463403,1.07141639781053,2560.81110586578,-224.329071370612,0,2560.81110586578,84.0203745711204,84.0203745711204,-0.00897787798581789,84.0227181456462,25.1,1015.1,38.29,421.706067558946
 45674,2873.91119782179,456.798894257426,45,84.0944059405941,86.6172381188119,19.0050104511881,-1.46178217821782,1817.75742574257,804.379207920792,823.663366336634,20,40,10,32,5305951.88039807,396357.837150186,0,0,0,0,0,0,0,84.094405940594,10542.6756113036,19.0050104511881,20.3840577225782,20.9941186684892,-1.46178217821782,-1.44714196928796,-1.11553062758472,3.21493686712497,2.55061624836552,2.56641852830151,52.8764201363071,0.00784822147142665,1628.04257425743,1604.81949808842,1602.55514944018,1.07022706201355,3685.49672516194,954.95209705948,0,3685.49672516194,84.1032403685912,84.1032403685912,0.0381335163219238,84.1035662070879,25.1,1015.1,38.32,441.253046900405
 45675,2873.91899633663,456.81362980198,45,84.243702970297,86.771014059406,18.8635847086139,-1.26831683168317,1824.5198019802,823.906930693069,833.538613861386,20,40,10,32,5305965.99628345,396376.452006905,0,0,0,0,0,0,0,84.2437029702969,10566.0546416391,18.8635847086139,20.2323698028322,20.8824910480392,-1.26831683168317,-1.25367662275331,-0.965299184730827,3.38525349879905,2.68573938952484,2.70266676345192,53.0731296873157,-0.00446412597457295,1657.44554455446,1661.64792667385,1661.56743777181,1.06833032044276,3759.16029470581,1021.84117704999,0,3759.16029470581,84.2494837761003,84.2494837761003,0.0409096602729358,84.2495927639492,25.1,1015.1,38.35,436.392240441369
 45676,2873.92680633664,456.828398217822,45,84.3897821782178,86.9214756435644,19.5031380638614,-0.505742574257426,1827.17821782178,806.221782178218,819.919801980198,20,40,10,32,5305980.13276714,396395.108100572,0,0,0,0,0,0,0,84.3897821782177,10589.4794350109,19.5031380638614,20.9183306205606,21.4349748887613,-0.505742574257426,-0.491102365327569,-0.375827822872013,2.83029944331018,2.24545863455869,2.27575503132672,53.1504598695204,0.00439212394272501,1626.14158415842,1622.3893049701,1622.17783843805,1.06648006919894,3687.27830187765,892.590636206236,0,3687.27830187765,84.3882880109792,84.3882880109792,0.035667799453239,84.3884918108632,25.1,1015.1,38.38,460.059738223061
-45677,2873.93462792079,456.843188811881,45,84.5002772277228,87.0352855445545,19.4073652365347,-0.895049504950495,1829.99504950495,766.309900990099,801.943564356436,20,40,10,32,5305994.29027203,396413.792114161,0,0,0,0,0,0,0,84.5002772277227,10612.9381649614,19.4073652365347,20.8156082965978,21.3592870508659,-0.895049504950495,-0.880409296020637,-0.681205754178727,3.0074696301072,2.38601914191776,2.32408852589076,53.2323981817633,-0.0036721036242455,1568.25346534653,1562.46778809611,1561.46133512834,1.06508559638739,3556.57967039973,810.007442778473,0,3556.57967039973,84.5103198706008,84.5103198706008,0.0324300994455858,84.5104768884364,25.1,1015.1,38.41,457.127270739443
+45677,2873.93462792079,456.843188811881,45,84.5002772277228,87.0352855445545,19.4073652365347,-0.895049504950495,1829.99504950495,766.309900990099,801.943564356436,20,40,10,32,5305994.29027203,396413.792114161,0,0,0,0,0,0,0,84.5002772277227,10612.9381649614,19.4073652365347,20.8156082965978,21.3592870508659,-0.895049504950495,-0.880409296020637,-0.681205754178727,3.00746963010721,2.38601914191776,2.32408852589076,53.2323981817633,-0.0036721036242455,1568.25346534653,1562.46778809611,1561.46133512834,1.06508559638739,3556.57967039973,810.007442778473,0,3556.57967039973,84.5103198706008,84.5103198706008,0.0324300994455858,84.5104768884364,25.1,1015.1,38.41,457.127270739443
 45678,2873.94245178218,456.858007227723,45,84.6076930693069,87.1459238613862,20.3208630362376,-0.897524752475247,1831.82673267327,679.035422724752,713.03118379802,20,40,10,32,5306008.45143257,396432.510767733,0.752475247524752,0.752475247524752,3992639.50925092,298308.917868144,6.61862907707485,0,0,84.6076930693068,10636.4269866611,20.3208630362376,21.7953915977656,22.1427124192654,-0.897524752475247,-0.88288454354539,-0.680363115627022,2.28444232929296,1.8123950685101,1.77715846677226,53.2856796853308,0.0038161076879414,1392.06660652277,1404.70472650076,1405.68561788263,1.06373344370638,3156.34963433767,441.980749450336,0,3156.34963433767,84.6032748750121,84.6032748750121,0.0176480519339141,84.6032542205888,25.1,1015.1,38.44,491.308872149893
 45679,2873.95027079208,456.872855346535,45,84.7051881188118,87.2463437623762,20.4232513752475,0.885049504950495,1832.14851485149,679.606972536634,693.598680917822,20,40,10,32,5306022.60300224,396451.266167314,1,1,5306020.74501166,396452.779786381,29.3407455380143,0,0,84.7051881188118,10659.940470682,20.4232513752475,21.9052094701555,22.2357225234085,0.885049504950495,0.899689713880354,0.708838628714657,2.27918702524748,1.80822569771294,1.92877154039775,53.2950399494711,-0.00129603657326312,1373.20565345446,1372.23191005484,1372.15433096199,1.06250889590041,3110.38289755345,410.442254819129,0,3110.38289755345,84.691224291736,84.691224291736,0.0164281279613071,84.6901278642149,25.1,1015.1,38.47,495.824982112854
 45680,2873.95807782178,456.887735445545,45,84.7579504950496,87.300689009901,19.3399691967327,0.181584158415842,1833.85643564356,693.139408231683,681.172276459406,20,40,10,32,5306036.73172566,396470.060912404,1,1,5306035.5845091,396470.995496716,52.8359107282499,0,0,84.7579504950494,10683.4716273377,19.3399691967327,20.7433218451315,21.3171194516265,0.181584158415842,0.196224367345699,0.159258499241045,3.14155252229063,2.49239572645603,2.47276475195934,53.3447213514462,0.00439212394272501,1374.31168469109,1373.29153059383,1373.21025391513,1.06185040935588,3113.8922362442,213.906720684554,0,3113.8922362442,84.7226723850602,84.7226723850602,0.00852040649609391,84.7222582743988,25.1,1015.1,38.5012623762376,455.361553797328
 45681,2873.96586247525,456.90264980198,45,84.76,87.3028,19.964597359802,-0.255049504950495,1835.91584158416,689.994555652475,663.07110949604,20,40,10,32,5306050.81829528,396488.897494072,1,1,5306050.42767707,396489.215712678,76.3368874092074,0,0,84.7599999999999,10707.0118247249,19.964597359802,21.4132744644081,21.8490640837059,-0.255049504950495,-0.240409296020637,-0.16956191201437,2.88487664840908,2.28875824256627,2.21866298076643,53.4046270419437,0.0137523880829586,1353.06566514851,1352.93702532256,1352.92366299506,1.06182712816281,3069.11571781164,696.940273964883,0,3069.11571781164,84.7742926183707,84.7742926183707,0.0277655240771706,84.77480575641,25.1,1015.1,38.54,479.728872692599
-45682,2873.9736409901,456.917582079207,45,84.7848811881188,87.3284276237624,19.7764504949505,-0.812772277227723,1835.31188118812,673.063777758416,655.937309448515,20,40,10,32,5306064.89315414,396507.75610238,1,1,5306065.27695933,396507.443434028,99.8475447638734,0,0,84.7848811881187,10730.5667740373,19.7764504949505,21.2114752302901,21.6909391108629,-0.812772277227723,-0.798132068297865,-0.620500504617799,2.72165036995658,2.15926033477268,2.19230863063258,53.3870585461727,-0.00252007111467827,1329.00108720693,1329.88223251811,1329.95243423012,1.06151090927776,3012.63993508745,82.8720261828997,0,3012.63993508745,84.8086930693068,84.8086930693068,0.00333572961254784,84.8095212635548,25.1,1015.1,38.58,471.685562022968
+45682,2873.9736409901,456.917582079207,45,84.7848811881188,87.3284276237624,19.7764504949505,-0.812772277227723,1835.31188118812,673.063777758416,655.937309448515,20,40,10,32,5306064.89315414,396507.75610238,1,1,5306065.27695933,396507.443434028,99.8475447638828,0,0,84.7848811881187,10730.5667740373,19.7764504949505,21.2114752302901,21.6909391108629,-0.812772277227723,-0.798132068297865,-0.620500504617799,2.72165036995658,2.15926033477268,2.19230863063258,53.3870585461727,-0.00252007111467827,1329.00108720693,1329.88223251811,1329.95243423012,1.06151090927776,3012.63993508745,82.8720261828997,0,3012.63993508745,84.8086930693068,84.8086930693068,0.00333572961254784,84.8095212635548,25.1,1015.1,38.58,471.685562022967
 45683,2873.98142653465,456.932513267327,45,84.8258910891089,87.3706678217821,18.8769917493069,-1.05019801980198,1835.90594059406,657.913153664357,666.329659175247,20,40,10,32,5306078.98111935,396526.61349536,1,1,5306080.13087481,396525.676842724,123.365537826218,0,0,84.8258910891088,10754.1283729372,18.8769917493069,20.2467496892352,20.9275452057093,-1.05019801980198,-1.03555781087212,-0.794261981066094,3.51942936548075,2.79218973671406,2.77317176090387,53.4043390338163,0.000576016254783607,1324.2428128396,1325.32362235088,1325.40973150602,1.06099724899528,3001.36513532576,76.024519770973,0,3001.36513532576,84.8311950789137,84.8311950789137,0.00303619470858432,84.8316593116453,25.1,1015.1,38.62,438.282940903103
 45684,2873.98921722772,456.947450792079,45,84.8483762376238,87.3938275247525,20.5235940593069,-1.24584158415842,1835.25742574257,658.472097291089,684.693480274257,20,40,10,32,5306093.07854045,396545.478860145,1,1,5306094.99246598,396543.919673458,146.895683712409,0,0,84.8483762376236,10777.6952943894,20.5235940593069,22.0128332501665,22.3296234388163,-1.24584158415842,-1.23120137522856,-0.950803709498213,2.7638172599494,2.19271404139396,2.16413919652191,53.3854745014721,-0.00547215442044427,1343.16557756535,1343.45235999638,1343.47520823428,1.06071600547038,3042.38382363924,158.483952455398,0,3042.38382363924,84.8556593471227,84.8556593471227,0.00638417802177038,84.8557670909947,25.1,1015.1,38.66,501.555998348092
 45685,2873.99700564357,456.962398712871,45,84.8868316831683,87.4334366336633,22.9631408140594,-0.243069306930693,1836.28712871287,674.226718445545,694.145160310891,20,40,10,32,5306107.17157185,396564.357006507,1,1,5306109.85856486,396562.168037467,170.432966582116,0,0,84.8868316831682,10801.2702312156,22.9631408140594,24.6293991285974,24.4074013517684,-0.243069306930693,-0.228429098000836,-0.16750875359563,2.30253608564981,1.82675000948256,1.88649016436983,53.4154273467208,0.00151204266880697,1368.37187875644,1367.60096766363,1367.53954841994,1.06023587150341,3099.79862360766,117.09269203552,0,3099.79862360766,84.8756728752082,84.8756728752082,0.00467138297988131,84.8758645921734,25.1,1015.1,38.7,597.764782004738
 45686,2874.00478673267,456.977353366337,45,84.8818415841584,87.4282968316832,19.5714202417822,-0.513366336633663,1836.57920792079,690.69229110198,685.994868250495,20,40,10,32,5306121.250942,396583.243203578,1,1,5306124.72315629,396580.414551057,193.967862727194,0,0,84.8818415841583,10824.8503621562,19.5714202417822,20.9915675103658,21.5214833302643,-0.513366336633663,-0.498726127703807,-0.378065244481347,2.96282075153901,2.3505963140819,2.29800833141813,53.4239235864789,0.00244806908283032,1376.68715935248,1375.56732683927,1375.47810868322,1.06029829542249,3119.31273086337,-2.12125548181718,0,3119.31273086337,84.8918676600332,84.8918676600332,-0.000104837216386159,84.891567939651,25.1,1015.1,38.74,464.322060494168
-45687,2874.01258029703,456.992297920792,45,84.9139405940594,87.4613588118812,19.9240511552475,-0.887821782178218,1837.46534653465,692.730443677228,667.735945029703,20,40,10,32,5306135.35370682,396602.117142865,1,1,5306139.59107788,396598.665152473,217.508031470882,0,0,84.9139405940593,10848.4302212045,19.9240511552475,21.3697861339917,21.8232530886421,-0.887821782178218,-0.873181573248359,-0.673753798249282,2.86867366139225,2.27590337055315,2.43543674059024,53.4497003138804,0.00460813003826886,1360.46638870693,1360.02720362073,1359.99221331372,1.05989707028961,3082.87853098863,172.534231492169,0,3082.87853098863,84.9083388883442,84.9083388883442,0.00686343386813586,84.9079580386609,25.1,1015.1,38.78,478.215301121824
+45687,2874.01258029703,456.992297920792,45,84.9139405940594,87.4613588118812,19.9240511552475,-0.887821782178218,1837.46534653465,692.730443677228,667.735945029703,20,40,10,32,5306135.35370682,396602.117142865,1,1,5306139.59107788,396598.665152473,217.508031470882,0,0,84.9139405940593,10848.4302212045,19.9240511552475,21.3697861339917,21.8232530886421,-0.887821782178218,-0.873181573248359,-0.673753798249282,2.86867366139225,2.27590337055315,2.43543674059025,53.4497003138804,0.00460813003826886,1360.46638870693,1360.02720362073,1359.99221331372,1.05989707028961,3082.87853098863,172.534231492169,0,3082.87853098863,84.9083388883442,84.9083388883442,0.00686343386813586,84.9079580386609,25.1,1015.1,38.78,478.215301121824
 45688,2874.02036960396,457.007254653466,45,84.9389405940594,87.4871088118812,18.6579603961386,-1.06168316831683,1838.5396039604,678.467308113861,656.155560441584,20,40,10,32,5306149.44837431,396621.006017792,1.07920792079208,1,5306154.46306959,396616.920744113,221.158850869824,0,0,84.9389405940593,10872.0187421891,18.6579603961386,20.0118249172913,20.7473101050125,-1.06168316831683,-1.04704295938697,-0.804116992798953,3.76434229990499,2.98649492396832,2.83319753904647,53.4809491957025,-0.00259207314652623,1334.62286855545,1335.26811564003,1335.31952310879,1.05958507717103,3025.19671335064,285.217218480252,0,3025.19671335064,84.9291830212723,84.9291830212723,0.0114299796316212,84.9293386138613,25.1,1015.1,38.82,430.47816545882
-45689,2874.02816445545,457.022213366337,45,84.9502376237624,87.4987447524753,20.507100109901,-0.489009900990099,1837.77227722772,661.016345455445,661.900666684159,20,40,10,32,5306163.55332884,396639.897450764,2,1,5306169.34071756,396635.182281935,13.4250954574755,0,0,84.9502376237623,10895.6169091033,20.507100109901,21.9951424618542,22.3213647027973,-0.489009900990099,-0.474369692060242,-0.368196839058159,2.36400412293035,1.87551655797876,1.90402016097766,53.4586285658296,-0.00921626007653772,1322.9170121396,1324.05345420073,1324.14399565569,1.05944392190083,2997.01292091526,103.528624467765,0,2997.01292091526,84.9591905695519,84.9591905695519,0.00421663453472972,84.9592449787835,25.1,1015.1,38.86,499.885491051916
+45689,2874.02816445545,457.022213366337,45,84.9502376237624,87.4987447524753,20.507100109901,-0.489009900990099,1837.77227722772,661.016345455445,661.900666684159,20,40,10,32,5306163.55332884,396639.897450764,2,1,5306169.34071756,396635.182281935,13.4250954574755,0,0,84.9502376237623,10895.6169091033,20.507100109901,21.9951424618542,22.3213647027973,-0.489009900990099,-0.474369692060242,-0.368196839058159,2.36400412293035,1.87551655797876,1.90402016097767,53.4586285658296,-0.00921626007653772,1322.9170121396,1324.05345420073,1324.14399565569,1.05944392190083,2997.01292091526,103.528624467765,0,2997.01292091526,84.9591905695519,84.9591905695519,0.00421663453472972,84.9592449787835,25.1,1015.1,38.86,499.885491051916
 45690,2874.03598049505,457.037147623762,45,84.9795841584158,87.5289716831684,20.2622651265347,-0.270792079207921,1838.64356435644,656.4218903,679.689239564357,20,40,10,32,5306177.69813741,396658.75903219,2,1,5306184.22018658,396653.445312237,36.982193628533,0,0,84.9795841584157,10919.2184927942,20.2622651265347,21.7325416889547,22.1145509499843,-0.270792079207921,-0.256151870278063,-0.192072770951175,2.37836691431613,1.88691148440953,1.89896144789915,53.4839732810401,0.00388810971978935,1336.11112986436,1336.69392731057,1336.74035935557,1.05907807453379,3027.27974459065,72.0015981012448,0,3027.27974459065,84.9749090285265,84.9749090285265,0.00284830463246134,84.974852522395,25.1,1015.1,38.8873762376238,490.01437371597
 45691,2874.04382990099,457.052052079208,45,84.9775445544555,87.5268708910891,18.8270522550495,-0.272970297029703,1838.77227722772,668.908063521782,693.166547218812,20,40,10,32,5306191.90547728,396677.584506181,2,1,5306199.10692193,396671.717261215,60.5507958115043,0,0,84.9775445544553,10942.8239237898,18.8270522550495,20.1931864704096,20.8935797247868,-0.272970297029703,-0.258330088099845,-0.197565920885175,3.59995894001135,2.85607902902709,2.84475472443321,53.4877173866962,0.00532815035674837,1362.07461074059,1361.56794228974,1361.52757551667,1.05910371535492,3086.41094433535,-49.9428044573278,0,3086.41094433535,84.976700225468,84.976700225468,-0.00204092191397195,84.9765782178217,25.1,1015.1,38.84,436.662176041981
 45692,2874.05168465346,457.066949603961,45,84.9632079207921,87.5121041584159,19.2961551153465,-0.758613861386139,1839.31683168317,686.995135051485,689.941615135643,20,40,10,32,5306206.12293571,396696.401431745,2,1,5306213.99350817,396689.989027167,84.1191619142913,0,0,84.9632079207919,10966.4262229922,19.2961551153465,20.6963285132241,21.2914106443418,-0.758613861386139,-0.743973652456281,-0.579445721709959,3.18429650425943,2.52630727726882,2.52730539865665,53.5035578337027,-0.0100802844587131,1376.93675018713,1375.80644447481,1375.71639190874,1.05928267878726,3121.53422891972,165.812094190817,0,3121.53422891972,84.9796502303695,84.9796502303695,0.00671502793843931,84.9796871287128,25.1,1015.1,38.78,454.077146137735
@@ -650,21 +650,21 @@ Time,Lat,Long,Heading,v_veh_GPS,v_veh_CAN,vair_ar,beta_ar,n_eng,tq_l,tq_r,t_amb_
 45698,2874.09864148515,457.156542079208,45,85.0328811881188,87.5838676237624,18.9536512644555,-0.943069306930693,1840.5198019802,682.342453419802,692.698121526733,20,40,10,32,5306291.10631797,396809.553589968,2,1,5306303.30752931,396799.612876776,225.52065687081,0,0,85.0328811881187,11108.0652320956,18.9536512644555,20.3289717951259,21.0039363189499,-0.943069306930693,-0.928429098000835,-0.715683750096484,3.51476923814745,2.78849255789312,2.64845763928977,53.5385508211809,0.00496814019750861,1375.04057494653,1373.98983553914,1373.9061220988,1.05841473181243,3116.72511327522,59.6966810750287,0,3116.72511327522,85.0212480149004,85.0212480149004,0.00234726442940939,85.021215841584,25.1,1015.1,38.42,441.368247831735
 45699,2874.10644663366,457.171516039604,45,85.0348019801981,87.585846039604,19.9860830586139,-1.52524752475248,1840.38118811881,662.866051115842,649.342116276238,20,40,10,32,5306305.23061339,396828.463429508,1.10891089108911,0.554455445544555,2942115.16464142,220015.561583399,135.173715037981,0,0,85.0348019801979,11131.6856653464,19.9860830586139,21.4363192149446,21.8825619132618,-1.52524752475248,-1.51060731582262,-1.16695303549702,2.77260894750297,2.1996890527399,2.17680340859812,53.5345187073974,0.00496814019750861,1312.20816739208,1309.23095369841,1308.80320935886,1.05839081733528,2974.16950768172,-38.6020013137009,0,2974.16950768172,85.0317810998921,85.0317810998921,-0.0015848119465498,85.031245355964,25.1,1015.1,38.36,480.261271751392
 45700,2874.11424277227,457.186487722772,45,85.0346336633663,87.5856726732673,21.211394939505,-2.18277227722772,1838.77227722772,608.112871287128,564.021782178218,20,40,10,32,5306319.33833097,396847.370041439,0,0,0,0,0,0,0,85.0346336633662,11155.3026472496,21.211394939505,22.750542544229,22.9252938889651,-2.18277227722772,-2.16813206829787,-1.71648733915116,2.61755463749603,2.07667449325448,2.1380301683157,53.4877173866962,-0.00849623975805821,1172.13465346535,1171.16958562634,1171.7390830231,1.05839369616699,2654.45010167097,79.6554644529117,0,2654.45010167097,85.0300614645622,85.0300614645622,0.00325539979742053,85.0297313531352,25.1,1015.1,38.3050495049505,528.915041565979
-45701,2874.12203504951,457.201445841584,45,84.9840495049505,87.5335709900991,20.252397139604,-0.325346534653465,1837.33663366337,603.943564356436,568.964356435643,20,40,10,32,5306333.43925885,396866.259537477,0,0,0,0,0,0,0,84.9840495049504,11178.9177965896,20.252397139604,21.7219576581952,22.1067417700332,-0.325346534653465,-0.310706325723608,-0.244405515945798,2.46260807754093,1.95374541881725,1.93610860726469,53.4459562082244,0.0042481198790291,1172.90792079208,1177.91607685521,1178.3982272513,1.05902266092107,2655.49932907041,-175.284601334363,0,2655.49932907041,85.0077284579942,85.0077284579942,-0.00704587785511215,85.0079894389437,25.1,1015.1,38.28,489.926229787598
+45701,2874.12203504951,457.201445841584,45,84.9840495049505,87.5335709900991,20.252397139604,-0.325346534653465,1837.33663366337,603.943564356436,568.964356435643,20,40,10,32,5306333.43925885,396866.259537477,0,0,0,0,0,0,0,84.9840495049504,11178.9177965896,20.252397139604,21.7219576581952,22.1067417700332,-0.325346534653465,-0.310706325723608,-0.244405515945797,2.46260807754093,1.95374541881725,1.93610860726469,53.4459562082244,0.0042481198790291,1172.90792079208,1177.91607685521,1178.3982272513,1.05902266092107,2655.49932907041,-175.284601334363,0,2655.49932907041,85.0077284579942,85.0077284579942,-0.00704587785511215,85.0079894389437,25.1,1015.1,38.28,489.926229787598
 45702,2874.12985910891,457.216393465347,45,84.9822277227723,87.5316945544554,20.1243575359406,-0.260495049504951,1840.77722772277,654.712871287129,616.268316831683,20,40,10,32,5306347.59935271,396885.136920754,0,0,0,0,0,0,0,84.9822277227721,11202.5277891638,20.1243575359406,21.5846272063886,21.9975080263072,-0.260495049504951,-0.245854840575093,-0.190996641646581,2.64954723669473,2.10205628042986,2.08359712635185,53.546039032493,0.0100802844587131,1270.98118811881,1262.33310459759,1261.86670438472,1.05904781465654,2883.47378715,-247.238081660389,0,2883.47378715,84.9730016665031,84.9730016665031,-0.00997178925814016,84.9736037718056,25.1,1015.1,38.26,485.491396325765
 45703,2874.13769019802,457.231337722773,45,85.0152673267327,87.5657253465347,20.2380055006931,-1.61475247524752,1837.78217821782,666.446534653465,608.062376237624,20,40,10,32,5306361.77260366,396904.01025088,0,0,0,0,0,0,0,85.0152673267326,11226.1356642738,20.2380055006931,21.7065217288629,22.0960247728117,-1.61475247524752,-1.60011226631767,-1.24944999468715,2.58983298821837,2.05468112542132,2.20523641393235,53.458916573957,-0.0187205282804672,1274.50891089109,1276.44519164788,1276.55765205092,1.05863468728491,2885.43892871353,169.251752896799,0,2885.43892871353,84.9964599549063,84.9964599549063,0.00692334084894108,84.995861103253,25.1,1015.1,38.24,490.005290853402
 45704,2874.14553009901,457.246271881188,45,85.028801980198,87.579666039604,18.8791551157426,-1.15811881188119,1840.04455445545,685.976237623762,616.673267326733,20,40,10,32,5306375.96246266,396922.871200733,0,0,0,0,0,0,0,85.0288019801979,11249.7481021726,18.8791551157426,20.2490700345153,20.9405552192487,-1.15811881188119,-1.14347860295133,-0.881279530651672,3.57491655668259,2.83621129524069,2.66196559132796,53.524726431066,0.00201605689174262,1302.6495049505,1297.91592000784,1297.64265912306,1.05846603522897,2952.05385601569,507.508846240556,0,2952.05385601569,85.0303224193705,85.0303224193705,0.0202839590889682,85.0302239509664,25.1,1015.1,38.22,438.65513458808
 45705,2874.15340217822,457.261182079208,45,85.0543564356435,87.6059871287129,18.8546474140594,-2.25049504950495,1839.60891089109,658.409900990099,581.414851485149,20,40,10,32,5306390.21252051,396941.703278163,0,0,0,0,0,0,0,85.0543564356435,11273.3730754675,18.8546474140594,20.2227839976284,20.9206692085921,-2.25049504950495,-2.23585484057509,-1.7164874077775,3.62741365105185,2.87786061758336,2.91978637421252,53.5120540734608,0.00986427836316927,1239.82475247525,1237.64111361631,1237.5130504479,1.05814711514135,2808.25771669575,187.315555731015,0,2808.25771669575,85.0679959807861,85.0679959807861,0.00741212735137435,85.0683891560583,25.1,1015.1,38.2,437.81284212538
 45706,2874.16129316832,457.276073168317,45,85.0877722772277,87.6404054455446,19.6213795378218,-1.62346534653465,1841.28712871287,582.431683168317,544.926732673267,20,40,10,32,5306404.49809336,396960.512086741,0,0,0,0,0,0,0,85.0877722772276,11297.007375715,19.6213795378218,21.0451519678364,21.57553894201,-1.62346534653465,-1.6088251376048,-1.24692003119359,2.96556173351232,2.3527709114213,2.44075116400283,53.5608714510537,-0.0110883129045844,1127.35841584158,1133.27461033232,1133.52023573786,1.05773145280548,2554.66593486809,203.844284493182,0,2554.66593486809,85.1011160670521,85.1011160670521,0.0082440174710405,85.101344365865,25.1,1015.1,38.18,466.462625109776
 45707,2874.1691990099,457.290954950495,45,85.1350792079208,87.6891315841584,19.4196727176238,-0.186831683168317,1840.55940594059,567.830693069307,536.339603960396,20,40,10,32,5306418.81144354,396979.309700959,0,0,0,0,0,0,0,85.1350792079206,11320.6502220021,19.4196727176238,20.828808836823,21.4067037036835,-0.186831683168317,-0.17219147423846,-0.126149887257417,3.26691193391485,2.59185141264504,2.43048626702176,53.5397028536904,0.00129603657326312,1104.1702970297,1102.45537692383,1102.3168505422,1.05714548748741,2499.93411512466,10.0338514311748,0,2499.93411512466,85.124259778453,85.124259778453,0.000390756897464366,85.124241395568,25.1,1015.1,38.16,459.683737997159
-45708,2874.17711564357,457.305832277228,45,85.1633069306931,87.7182061386139,20.2177508248515,-0.225445544554456,1843.08910891089,515.313861386139,525.647524752475,20,40,10,32,5306433.14494366,396998.102029182,0,0,0,0,0,0,0,85.163306930693,11344.3007302805,20.2177508248515,21.6847973271549,22.0869259655124,-0.225445544554456,-0.210805335624598,-0.177203105044773,2.57257987465957,2.04099312046297,2.25589136582459,53.613288930239,0.0111603149364324,1040.96138613861,1037.97529653956,1037.78191419142,1.05679431974685,2358.89614221417,116.70840664231,0,2358.89614221417,85.1482567395353,85.1482567395353,0.00457743794183154,85.1476405469117,25.1,1015.1,38.14,489.292438553586
+45708,2874.17711564357,457.305832277228,45,85.1633069306931,87.7182061386139,20.2177508248515,-0.225445544554456,1843.08910891089,515.313861386139,525.647524752475,20,40,10,32,5306433.14494366,396998.102029182,0,0,0,0,0,0,0,85.163306930693,11344.3007302805,20.2177508248515,21.6847973271549,22.0869259655124,-0.225445544554456,-0.210805335624598,-0.177203105044772,2.57257987465957,2.04099312046297,2.25589136582459,53.613288930239,0.0111603149364324,1040.96138613861,1037.97529653956,1037.78191419142,1.05679431974685,2358.89614221417,116.70840664231,0,2358.89614221417,85.1482567395353,85.1482567395353,0.00457743794183154,85.1476405469117,25.1,1015.1,38.14,489.292438553586
 45709,2874.18501237624,457.320733663366,45,85.1343069306931,87.6883361386138,18.8788663360396,-2.20217821782178,1841.72772277228,441.655445544555,492.571287128713,20,40,10,32,5306447.44110555,397016.923573121,0,0,0,0,0,0,0,85.134306930693,11367.9520083608,18.8788663360396,20.2487603002929,20.9462470716176,-2.20217821782178,-2.18753800889193,-1.68473864981977,3.60964066016143,2.86376016049174,2.76525431317578,53.5736878127226,-0.00892825194914591,934.226732673267,942.677306146456,942.949486091466,1.05715377557548,2116.41445699853,26.6985724214716,0,2116.41445699853,85.1395597490441,85.1395597490441,0.00114095567972483,85.1396914662894,25.1,1015.1,38.12,438.902562023046
 45710,2874.19288247525,457.335666930693,45,85.1365841584159,87.6906816831684,18.8006897691089,-1.91792079207921,1842.36138613861,441.917821782178,469.322772277228,20,40,10,32,5306461.68728437,397035.783852709,0,0,0,0,0,0,0,85.1365841584157,11391.6028318756,18.8006897691089,20.1649110618533,20.880099803675,-1.91792079207921,-1.90328058314935,-1.46102154948456,3.67496421986622,2.91558554297059,2.81950273843804,53.5921203328757,0.000720020318479515,911.240594059406,913.134516223899,913.2600660066,1.05712517874818,2065.21526033064,38.0957338829604,0,2065.21526033064,85.1425268110968,85.1425268110968,0.00151809735426871,85.142668269684,25.1,1015.1,38.1164108910891,436.069945451981
 45711,2874.20073376238,457.350621386139,45,85.1249405940594,87.6786888118812,20.4910682072277,-1.30792079207921,1843.03465346535,445.013861386139,479.808910891089,20,40,10,32,5306475.8982068,397054.669807975,0,0,0,0,0,0,0,85.1249405940593,11415.2523374312,20.4910682072277,21.9779472474483,22.3175676910965,-1.30792079207921,-1.29328058314935,-1.01380050452376,2.52431202447941,2.00269912962225,2.09167685793868,53.6117048855384,0.00504014222935656,924.822772277228,923.11131261641,922.888854314003,1.05726987064098,2096.50619094615,73.5913590635255,0,2096.50619094615,85.136097245368,85.136097245368,0.0029027655241003,85.1367813295614,25.1,1015.1,38.21,499.943136299212
 45712,2874.2085680198,457.365593267327,45,85.1150198019802,87.6684703960396,19.5343102312871,-2.27841584158416,1840.64356435644,440.191089108911,460.90594059406,20,40,10,32,5306490.07725789,397073.576811744,0,0,0,0,0,0,0,85.11501980198,11438.9008700494,19.5343102312871,20.9517647121532,21.5025011837181,-2.27841584158416,-2.2637756326543,-1.75240728911262,3.05924505942277,2.4270959209453,2.44921460332681,53.5421509227732,-0.00626417677077173,901.09702970297,903.462915400451,903.460311173974,1.05739595922665,2040.5369645798,-378.587359408234,0,2040.5369645798,85.1283804528967,85.1283804528967,-0.0150924745940107,85.1284581801036,25.1,1015.1,38.32,463.35554743424
 45713,2874.21639346535,457.380562673267,45,85.1066435643564,87.6598428712871,18.9762090213861,-0.804158415841584,1840.23267326733,434.740594059406,438.874257425742,20,40,9.9009900990099,32,5306504.24010223,397092.480348259,0,0,0,0,0,0,0,85.1066435643563,11462.54247533,18.9762090213861,20.3531663947842,21.0277776893707,-0.804158415841584,-0.789518206911727,-0.609740398264394,3.49667307602744,2.77413570827398,2.73509163253214,53.5301985854865,0.00792022350327459,873.614851485149,880.504381923341,880.756548797737,1.05749872580522,1978.26723234658,-172.761083979476,0,1978.26723234658,85.0999678462894,85.0999678462894,-0.0069750786959979,85.0996549740687,25.1,1015.1,38.43,442.50100782265
 45714,2874.22421871287,457.395522673267,45,85.0909801980198,87.6437096039604,18.825890539505,-2.64623762376238,1841.55445544554,467.779207920792,461.523762376238,20,40,10,32,5306518.40284958,397111.372069834,0,0,0,0,0,0,0,85.0909801980197,11486.1776147689,18.825890539505,20.1919404581131,20.8983339217626,-2.64623762376238,-2.63159741483252,-2.02249818759984,3.65980649270584,2.90355994284795,2.8534182717076,53.5686476704933,0.000504014222935655,929.30297029703,929.906332712479,929.806506364922,1.05769224107066,2106.41869621909,-0.573097264097505,0,2106.41869621909,85.083220566611,85.083220566611,-2.72304458175321E-05,85.0831123998113,25.1,1015.1,38.54,436.856899360779
-45715,2874.23203712871,457.410496138614,45,85.1091584158416,87.6624331683168,19.4183052809901,-1.17851485148515,1840.31683168317,490.718811881188,480.245544554455,20,40,10,32,5306532.55270408,397130.280244339,0,0,0,0,0,0,0,85.1091584158415,11509.8143219746,19.4183052809901,20.8273421758419,21.4041844946314,-1.17851485148515,-1.16387464255529,-0.900869031409584,3.05808779089446,2.42617778536939,2.52501921929537,53.5326466545693,-0.00223206298728648,970.964356435643,964.015821978238,963.718887317303,1.05746598926733,2198.95875946491,152.444659078929,0,2198.95875946491,85.0988251151847,85.0988251151847,0.00611595813046731,85.0985767090994,25.1,1015.1,38.65,458.522072786176
+45715,2874.23203712871,457.410496138614,45,85.1091584158416,87.6624331683168,19.4183052809901,-1.17851485148515,1840.31683168317,490.718811881188,480.245544554455,20,40,10,32,5306532.55270408,397130.280244339,0,0,0,0,0,0,0,85.1091584158415,11509.8143219746,19.4183052809901,20.8273421758419,21.4041844946314,-1.17851485148515,-1.16387464255529,-0.900869031409584,3.05808779089446,2.42617778536938,2.52501921929537,53.5326466545693,-0.00223206298728648,970.964356435643,964.015821978238,963.718887317303,1.05746598926733,2198.95875946491,152.444659078929,0,2198.95875946491,85.0988251151847,85.0988251151847,0.00611595813046731,85.0985767090994,25.1,1015.1,38.65,458.522072786176
 45716,2874.23988207921,457.425447821782,45,85.1242673267327,87.6779953465347,18.7662293734653,-2.04118811881188,1839.67326732673,486.971287128713,437.606930693069,20,40,10,32,5306546.75225449,397149.162071823,0,0,0,0,0,0,0,85.1242673267326,11533.456820847,18.7662293734653,20.1279501406402,20.8498377477038,-2.04118811881188,-2.02654790988203,-1.55574741622627,3.71408539829956,2.9466228906671,2.8895937579994,53.5139261262888,0.0042481198790291,924.578217821782,928.005254386825,928.176388495993,1.05727812788874,2092.74989419312,78.4342844156198,0,2092.74989419312,85.1140273502596,85.1140273502596,0.00310290930085369,85.1137919849127,25.1,1015.1,38.76,434.812631094618
 45717,2874.24774386139,457.440362475248,45,85.1065148514852,87.6597102970297,19.8850594053465,-2.10178217821782,1841.62376237624,486.39504950495,430.550495049505,20,40,10,32,5306560.98386579,397167.998240536,0,0,0,0,0,0,0,85.1065148514851,11557.0982625962,19.8850594053465,21.3279650530337,21.800928900786,-2.10178217821782,-2.08714196928797,-1.62507801661736,2.97887611296689,2.36333406521788,2.33602575893446,53.570663727385,0.00439212394272501,916.945544554455,920.229497108127,920.345431400283,1.05749851199665,2078.1972344168,56.3750021322336,0,2078.1972344168,85.1163480050974,85.1163480050974,0.00221928133404277,85.1163361621876,25.1,1015.1,38.87,477.473771020521
 45718,2874.25561772277,457.455244257426,45,85.1111287128713,87.6644625742575,19.290306380099,-1.91009900990099,1842.22772277228,504.20495049505,432.151485148515,20,40,10,32,5306575.23864205,397186.793773,0,0,0,0,0,0,0,85.1111287128712,11580.7417721397,19.290306380099,20.6900553802944,21.294909607661,-1.91009900990099,-1.89545880097113,-1.46592017500084,3.26126538288617,2.58737164044538,2.58348983289116,53.5882322231559,-0.00626417677077173,936.356435643564,928.372365454367,928.117369165488,1.05744129565638,2122.63129730224,-271.333746360245,0,2122.63129730224,85.1029011861581,85.1029011861581,-0.0108023178555377,85.1028919377651,25.1,1015.1,38.98,454.397569006128
@@ -674,12 +674,12 @@ Time,Lat,Long,Heading,v_veh_GPS,v_veh_CAN,vair_ar,beta_ar,n_eng,tq_l,tq_r,t_amb_
 45722,2874.28728712871,457.514666039604,45,85.0718118811881,87.6239662376238,18.8676622662376,-0.531386138613862,1841.23762376238,485.046534653465,438.264356435643,20,40,10,32,5306632.58292047,397261.849501032,0,0,0,0,0,0,0,85.071811881188,11675.2769719197,18.8676622662376,20.2367432374158,20.9331354518722,-0.531386138613862,-0.516745929684003,-0.400827628337987,3.60278547317474,2.85832149962949,2.82083605904483,53.5594314104167,0.00201605689174263,923.310891089109,921.905048524654,922.193003300331,1.05793099373808,2092.61964990437,21.7893029943392,0,2092.61964990437,85.0783417312027,85.0783417312027,0.000855035998660298,85.078869589816,25.1,1015.1,39.12,438.379935287935
 45723,2874.29522693069,457.52950049505,45,85.0540198019802,87.6056403960396,19.5705616062376,-1.66247524752475,1841.24257425743,480.010891089109,462.964356435643,20,40,10,32,5306646.96119161,397280.58779679,0,0,0,0,0,0,0,85.0540198019801,11698.9103818757,19.5705616062376,20.9906465702512,21.5300629936558,-1.66247524752475,-1.6478350385949,-1.27891043092049,3.10331786934009,2.46206171645928,2.52723649501101,53.5595754144805,0.00367210362424549,942.975247524752,943.454778943241,943.388279113625,1.0581544675158,2137.85202450908,-177.745501694167,0,2137.85202450908,85.0704926967943,85.0704926967943,-0.00713982289319709,85.0708781706741,25.1,1015.1,39.08,464.773198585523
 45724,2874.3031609901,457.544338811881,45,85.0730000000001,87.62519,19.8885121012871,-1.65891089108911,1842.33168316832,465.518811881188,474.290099009901,20,40,10,32,5306661.32879972,397299.330619063,0,0,0,0,0,0,0,85.0729999999999,11722.5400077008,19.8885121012871,21.3316682845332,21.8017873719409,-1.65891089108911,-1.64427068215925,-1.27212478490133,2.74931724534642,2.18121024695678,2.12446089448434,53.5912563084935,-0.00518414629305246,939.808910891089,939.658964807372,939.639566242339,1.05791866602207,2131.29751285338,-313.828861737488,0,2131.29751285338,85.0611584158415,85.0611584158415,-0.0125110283305565,85.0604933521922,25.1,1015.1,39.04,476.409214483782
-45725,2874.31108356436,457.559187524753,45,85.0728613861386,87.6250472277228,20.5199724970297,-1.17425742574257,1839.20792079208,450.623762376238,487.776237623762,20,40,10,32,5306675.67496274,397318.0859175,0,0,0,0,0,0,0,85.0728613861385,11746.1639109461,20.5199724970297,22.0089488990005,22.3390691027683,-1.17425742574257,-1.15961721681272,-0.902491512670981,2.21257915223704,1.75538138686294,1.7255718024623,53.5003897443014,5.49615358725325E-19,938.4,938.560788158024,938.819217350306,1.05791724691855,2124.54924508622,-53.2017642728115,0,2124.54924508622,85.0385057347318,85.0385057347318,-0.00212805934058297,85.0378381895331,25.1,1015.1,39,499.931233396096
+45725,2874.31108356436,457.559187524753,45,85.0728613861386,87.6250472277228,20.5199724970297,-1.17425742574257,1839.20792079208,450.623762376238,487.776237623762,20,40,10,32,5306675.67496274,397318.0859175,0,0,0,0,0,0,0,85.0728613861385,11746.1639109461,20.5199724970297,22.0089488990005,22.3390691027683,-1.17425742574257,-1.15961721681272,-0.902491512670981,2.21257915223704,1.75538138686294,1.72557180246231,53.5003897443014,5.49615358725325E-19,938.4,938.560788158024,938.819217350306,1.05791724691855,2124.54924508622,-53.2017642728115,0,2124.54924508622,85.0385057347318,85.0385057347318,-0.00212805934058297,85.0378381895331,25.1,1015.1,39,499.931233396096
 45726,2874.31898287129,457.574063960396,45,85.0512079207921,87.6027441584159,21.0529900990099,-1.6219801980198,1843.94554455446,473.516831683169,521.923762376238,20,40,10,32,5306689.9774721,397336.874884201,0,0,0,0,0,0,0,85.051207920792,11769.786809516,21.0529900990099,22.5806434841637,22.7912524483482,-1.6219801980198,-1.60733998908994,-1.26443256304977,1.87520379252898,1.48771980909794,1.57439286706183,53.6382016332584,0.010224288522409,995.440594059406,988.062395843545,987.518340405469,1.05818729973236,2259.81778838324,376.704478777108,0,2259.81778838324,85.0482402705616,85.0482402705616,0.0149849143330131,85.0479379537953,25.1,1015.1,38.96,520.394927250697
 45727,2874.32687326733,457.588956138614,45,85.0686633663366,87.6207232673268,19.6319130916832,-2.17445544554455,1840.33168316832,453.352475247525,481.728712871287,20,40,10,32,5306704.26318669,397355.683071203,0,0,0,0,0,0,0,85.0686633663365,11793.413909736,19.6319130916832,21.056449860594,21.5829263223755,-2.17445544554455,-2.1598152366147,-1.67691379309181,2.933951913827,2.32769280785985,2.26356341042744,53.5330786667604,-0.0104402946179529,935.081188118812,940.146750318596,940.418340405469,1.0579703001107,2118.53509821969,81.3927066896219,0,2118.53509821969,85.0767057151259,85.0767057151259,0.00334117570173754,85.0765485148514,25.1,1015.1,38.92,466.530812725389
 45728,2874.33475980198,457.603854752475,45,85.0733168316832,87.6255163366337,19.3726738174257,-0.423762376237624,1838.25742574257,345.132673267327,362.085148514851,20,40,10,32,5306718.54166634,397374.499053226,0,0,0,0,0,0,0,85.073316831683,11817.0454613311,19.3726738174257,20.7783995883253,21.3631030516049,-0.423762376237624,-0.409122167307766,-0.312832022370581,3.24385889069522,2.57356195035061,2.59174762540757,53.4727409640718,-0.00972027429947336,707.217821782178,531.11110675424,520.008165959453,1.0579115253387,1602.73583395785,-697.016260437975,0,1602.73583395785,85.0549838251151,85.0549838251151,-0.0278022851790207,85.0540618576142,25.1,1015.1,38.88,457.652546614165
 45729,2874.34263267327,457.618736831683,45,84.6869504950495,87.227559009901,19.0929752477228,-0.652673267326733,1820.58910891089,-1393.57425742574,-1313.9198019802,20,40,10,32,5306732.79526327,397393.293898183,0,0,0,0,0,0,0,84.6869504950494,11840.6434971397,19.0929752477228,20.4784054470755,21.1027770717331,-0.652673267326733,-0.638033058396876,-0.490283772180968,3.29272746611653,2.61233253517255,2.6313174978791,52.9587904607411,-0.0041041158153332,-2707.49405940594,-2890.28076659151,-2904.88995959409,1.06274544561928,-6075.72346401707,-7547.14005784194,0,-6075.72346401707,84.5983889814723,84.5983889814723,-0.301852214924464,84.590296869313,25.1,1015.1,38.84,445.718716202005
-45730,2874.35040871287,457.633408613862,45,82.5999702970297,85.0779694059406,18.365799229703,-1.69435643564356,1767.33168316832,-4392.0801980198,-3980.39504950495,20,40,10,32,5306746.87421199,397411.823539314,0,0,0,0,0,0,0,82.5999702970296,11863.9221302531,18.365799229703,19.6984638646249,20.3644946380007,-1.69435643564356,-1.67971622671371,-1.29165880771764,3.4571167773121,2.74275315166447,2.66103429525306,51.4095947435006,-0.0115923271275201,-8372.47524752475,-7980.44567199294,-7925.88400836983,1.08969851970855,-18759.0081751043,-18676.9028009123,0,-18759.0081751043,82.5885857268894,82.5885857268894,-0.746982866603482,82.5859983914053,25.1,1015.1,38.8126237623762,415.282246055938
+45730,2874.35040871287,457.633408613862,45,82.5999702970297,85.0779694059406,18.365799229703,-1.69435643564356,1767.33168316832,-4392.0801980198,-3980.39504950495,20,40,10,32,5306746.87421199,397411.823539314,0,0,0,0,0,0,0,82.5999702970296,11863.9221302531,18.365799229703,19.6984638646249,20.3644946380007,-1.69435643564356,-1.67971622671371,-1.29165880771764,3.4571167773121,2.74275315166447,2.66103429525306,51.4095947435006,-0.0115923271275201,-8372.47524752475,-7980.44567199294,-7925.88400836983,1.08969851970855,-18759.0081751043,-18676.9028009123,0,-18759.0081751043,82.5885857268894,82.5885857268894,-0.746982866603482,82.5859983914053,25.1,1015.1,38.8126237623762,415.282246055939
 45731,2874.35793178218,457.647633564356,45,79.8103267326732,82.2046365346535,18.688799229901,-2.16574257425743,1707.10891089109,-4381.94653465347,-3897.98514851486,20,40,10,32,5306760.49452493,397429.788238721,0,0,0,0,0,0,0,79.8103267326731,11886.4741519252,18.688799229901,20.0449014877632,20.4793385101766,-2.16574257425743,-2.15110236532757,-1.67648203600685,2.45320905011451,1.9462885656772,2.01722382050253,49.65778530864,-0.0221766258091689,-8279.93168316832,-8281.83775120086,-8283.40953917937,1.12779056071529,-18546.3965916798,-19028.2451278764,0,-18546.3965916798,79.823641897853,79.823641897853,-0.760950723785253,79.8250346165676,25.1,1015.1,38.86,419.758863659132
 45732,2874.36518405941,457.661401782178,45,77.1061683168317,79.4193533663366,18.6638910891089,-1.96346534653465,1648.88118811881,-4377.39504950495,-3860.13069306931,20,40,10,32,5306773.62340403,397447.175086324,0,0,0,0,0,0,0,77.1061683168316,11908.2649411992,18.6638910891089,20.0181859549846,20.3027098236247,-1.96346534653465,-1.9488251376048,-1.52043904173271,1.96464067406652,1.5586758411076,1.61237005560339,47.9640095114488,-0.00921626007653772,-8237.52574257426,-8251.13845701402,-8253.06396670526,1.16735421669828,-18446.4943463341,-18708.7136400383,0,-18446.4943463341,77.1123830016664,77.1123830016664,-0.74827495125749,77.1134811112616,25.1,1015.1,38.92,412.867682361322
 45733,2874.37217108911,457.674714554456,45,74.4043564356436,76.6364871287129,16.968397139703,-2.02425742574257,1590.11386138614,-4424.51584158416,-3883.21881188119,20,40,10,32,5306786.27108608,397463.985876141,0,0,0,0,0,0,0,74.4043564356435,11929.3070254126,16.968397139703,18.1996630648373,18.7051940866176,-2.02425742574257,-2.00961721681272,-1.56324676781166,2.75035955822436,2.18203718081964,2.15134819423318,46.2545372713147,-0.0198725607900344,-8307.73465346535,-8299.97212038035,-8298.6117226668,1.20976650763591,-18592.3865267382,-18751.6895078046,0,-18592.3865267382,74.4174910302911,74.4174910302911,-0.749907416484233,74.4179827799134,25.1,1015.1,38.98,350.736990928781
@@ -694,9 +694,9 @@ Time,Lat,Long,Heading,v_veh_GPS,v_veh_CAN,vair_ar,beta_ar,n_eng,tq_l,tq_r,t_amb_
 45742,2874.42324544554,457.772657821782,45,48.6377128712871,50.0968442574257,12.3493861386139,1.16,1215.30198019802,-5057.24257425742,-4266.80099009901,20,40,10,32,5306878.71170497,397587.65125744,0,0,0,0,0,0,0,48.6377128712871,12083.7387182619,12.3493861386139,13.2454860014126,13.2974624044186,1.16,1.17464020892986,0.921466085262767,1.00201496760926,0.794962938035913,0.827834076864433,35.3517016007706,-0.0289448168028763,-9324.04356435644,-9520.77750220567,-9838.81579959094,1.85089043408247,-24393.4341559716,-20289.0311432216,0,-24393.4341559716,48.624978139398,48.624978139398,-0.811288925922303,48.5853263903818,25.1,1015.12,39.26,177.189533368792
 45743,2874.42752267327,457.78100990099,45,45.3394950495049,46.6996799009901,10.9482475247525,0.503465346534653,1416.54455445545,-6570.71188118812,-5532.67227722772,20,40,10,32,5306886.44996129,397598.194028855,0,0,0,0,0,0,0,45.3394950495049,12096.8132308581,10.9482475247525,11.742677546998,11.9159515936912,0.503465346534653,0.518105555464511,0.416007583095097,1.21608657960896,0.964799720046664,0.925454027282925,41.2056107940727,0.102746899447026,-12103.3841584158,-11925.2526909126,-11636.1256983297,1.98623149315763,-39924.5500190521,-25784.7268776898,0,-39924.5500190521,45.3207269875502,45.3207269875502,-1.03252812905052,45.2508600575524,25.1,1015.13,39.19,142.465311312024
 45744,2874.4314560396,457.78872049505,45,41.446801980198,42.690206039604,10.1645643564356,1.96980198019802,1432.5396039604,-6918.37920792079,-5873.43069306931,20,40,10,32,5306893.56546619,397607.926528309,0,0,0,0,0,0,0,41.446801980198,12108.8664210671,10.1645643564356,10.9021285254538,11.0260098921373,1.96980198019802,1.98444218912788,1.55823329462897,0.931963439664589,0.73938655418042,0.768650311358341,41.6708879238742,-0.0450012699049693,-12791.8099009901,-12770.126046466,-12711.1485436733,2.17322285714365,-46297.6617136725,-27544.4040304939,0,-46297.6617136725,41.4466130771492,41.4466130771492,-1.10118969817774,41.435890299025,25.1,1015.14,39.12,121.745000569184
-45745,2874.4350229703,457.79574069307,45,37.5012376237624,38.6262747524753,8.76109900990099,2.46623762376238,1291.75742574257,-7223.61584158416,-6107.59207920792,20,40,10,32,5306900.01748142,397616.787103759,0,0,0,0,0,0,0,37.5012376237623,12119.8237870187,8.76109900990099,9.39682450529144,9.60548608221616,2.46623762376238,2.48087783269223,1.92819343274825,1.25117881409814,0.992640647311778,0.944104091155829,37.5757003604901,-0.0462973064782324,-13331.2079207921,-13323.83076169,-13794.3787664962,2.40220089900873,-48069.5844216729,-28539.3365903071,0,-48069.5844216729,37.4586000392118,37.4586000392118,-1.14097337951617,37.3528073149242,25.1,1015.15,39.05,92.8230248844215
+45745,2874.4350229703,457.79574069307,45,37.5012376237624,38.6262747524753,8.76109900990099,2.46623762376238,1291.75742574257,-7223.61584158416,-6107.59207920792,20,40,10,32,5306900.01748142,397616.787103759,0,0,0,0,0,0,0,37.5012376237623,12119.8237870187,8.76109900990099,9.39682450529144,9.60548608221616,2.46623762376238,2.48087783269223,1.92819343274825,1.25117881409814,0.992640647311779,0.944104091155829,37.5757003604901,-0.0462973064782324,-13331.2079207921,-13323.83076169,-13794.3787664962,2.40220089900873,-48069.5844216729,-28539.3365903071,0,-48069.5844216729,37.4586000392118,37.4586000392118,-1.14097337951617,37.3528073149242,25.1,1015.15,39.05,92.8230248844215
 45746,2874.4382049505,457.802031485149,45,32.9993762376238,33.9893575247525,7.90961386138614,2.57584158415842,1398.72772277228,-8649.46930693069,-7195.5504950495,20,40,10,32,5306905.77256928,397624.726567773,0,0,0,0,0,0,0,32.9993762376237,12129.6274855886,7.90961386138614,8.48355363591605,8.62271921024795,2.57584158415842,2.59048179308827,2.02475424510262,0.919902796190005,0.729818069795366,0.781394382337285,40.6873401688312,0.0824423264659037,-15845.0198019802,-15695.0577100284,-14766.223826931,2.73215997933624,-71104.7997513828,-33693.3518749415,0,-71104.7997513828,32.9751115576904,32.9751115576904,-1.34897313988824,32.8404357850324,25.1,1015.16,38.98,74.706788438611
-45747,2874.44093316832,457.807479306931,45,27.9368118811881,28.7749162376238,6.25778217821782,2.56019801980198,1459.51485148515,-8521.83267326732,-7048.04752475247,20,40,10,32,5306910.70577234,397631.601225719,0,0,0,0,0,0,0,27.9368118811881,12138.0872464247,6.25778217821782,6.71186124647138,6.92680074156871,2.56019801980198,2.57483822873184,1.98459621631332,1.14097046211191,0.905205271470928,0.906736761348972,42.4555660669532,0.00698419708925123,-15569.8801980198,-14812.960788158,-11917.4112143229,3.2299515674153,-85227.178239666,-32648.6151635061,0,-85227.178239666,28.0044559356925,28.0044559356925,-1.30612875644,28.6303467237115,25.1,1015.17,38.91,48.3445684646703
+45747,2874.44093316832,457.807479306931,45,27.9368118811881,28.7749162376238,6.25778217821782,2.56019801980198,1459.51485148515,-8521.83267326732,-7048.04752475247,20,40,10,32,5306910.70577234,397631.601225719,0,0,0,0,0,0,0,27.9368118811881,12138.0872464247,6.25778217821782,6.71186124647138,6.92680074156871,2.56019801980198,2.57483822873184,1.98459621631332,1.14097046211191,0.905205271470928,0.906736761348973,42.4555660669532,0.00698419708925123,-15569.8801980198,-14812.960788158,-11917.4112143229,3.2299515674153,-85227.178239666,-32648.6151635061,0,-85227.178239666,28.0044559356925,28.0044559356925,-1.30612875644,28.6303467237115,25.1,1015.17,38.91,48.3445684646703
 45748,2874.44322445545,457.812155643564,45,24.506900990099,25.242108019802,5.22555445544555,2.48435643564356,1553.37128712871,-2874.41782178218,-2265.32277227723,20,40,10,32,5306914.84668527,397637.500667354,0,0,0,0,0,0,0,24.506900990099,12145.286314109,5.22555445544555,5.60473270592801,5.85167485582846,2.48435643564356,2.49899664457342,1.91092901152887,1.28171322851846,1.01686556269073,1.01467098397716,45.1857391105638,0.0167764734205726,-5139.74059405941,-5914.18352122341,-7223.53053315982,3.67349937419942,-33837.3666261469,-13356.8816859974,0,-33837.3666261469,24.6187748259974,24.6187748259974,-0.534668442091733,25.7685884305207,25.1,1015.18,38.84,34.4082783485718
 45749,2874.44529861386,457.816517227723,45,23.5076732673267,24.2129034653465,4.57943564356436,2.30267326732673,1588.55940594059,-240.838613861386,-116.29702970297,20,40,10,32,5306918.59236177,397643.000957077,0,0,0,0,0,0,0,23.5076732673267,12151.9271647415,4.57943564356436,4.91173002693151,5.24470079433724,2.30267326732673,2.31731347625659,1.73363385979069,1.65270712173567,1.31119888592343,1.31169370657199,46.2093199953142,0.00165604673250286,-357.135643564356,-510.716919909813,-3056.32908938183,3.82866380137033,-2453.33764245775,-2573.59171987545,0,-2453.33764245775,23.5674262327223,23.5674262327223,-0.102980099990196,24.114038448734,25.1,1015.19,38.77,27.6067554391788
 45750,2874.44724861386,457.820898316832,45,23.5105643564356,24.2158812871287,4.44131683168317,2.99594059405941,1580.94554455446,2.55049504950493,52.1544554455445,20,40,10,32,5306922.1076279,397648.521451462,0,0,0,0,0,0,0,23.5105643564356,12158.4542520628,4.44131683168317,4.76358899637585,5.12726925585199,2.99594059405941,3.01058080298926,2.2349383347096,1.79830747140489,1.42671301045618,1.38532624400165,45.9878417453499,0.00799222553512255,54.7049504950496,180.200274482894,-90.5116637748355,3.82810329546566,389.073188075415,-1035.60528062113,0,389.073188075415,23.4772960494069,23.4772960494069,-0.0416271825202345,23.5055151120316,25.1,1015.19747524752,38.7025247524753,26.3686142540453
@@ -704,9 +704,9 @@ Time,Lat,Long,Heading,v_veh_GPS,v_veh_CAN,vair_ar,beta_ar,n_eng,tq_l,tq_r,t_amb_
 45752,2874.45055732673,457.830086831683,45,23.5843762376238,24.2919075247525,4.77966336633663,3.38207920792079,1328.20792079208,1095.20099009901,1317.91584158416,20,40,10,32,5306928.03348656,397660.073967439,0,0,0,0,0,0,0,23.5843762376237,12171.4265372938,4.77966336633663,5.126486733808,5.41921795959322,3.38207920792079,3.39671941685064,2.56426458230626,1.47129522137426,1.1672731543048,1.15372085712302,38.636002281483,-0.0921626007653771,2413.11683168317,2126.16412116459,1264.22127800627,3.8162851220537,14380.6134447242,3633.90643737637,0,14380.6134447242,23.5936332712479,23.5936332712479,0.147363003627093,23.6754252540325,25.1,1015.18,38.6,29.4430149534053
 45753,2874.45182059406,457.835058811881,45,24.0217524752475,24.7424050495049,4.99561386138614,3.38207920792079,1109.60891089109,731.226732673267,903.880198019802,20,40,10,32,5306930.26364623,397666.307797504,0,0,0,0,0,0,0,24.0217524752475,12178.0489983224,4.99561386138614,5.3581070934818,5.62807339925211,3.38207920792079,3.39671941685064,2.57798296967395,1.36828305269405,1.08554697364419,1.08311595812099,32.2772148408631,-0.103178911638114,1635.10693069307,1497.35445544555,1136.67989358997,3.74664233455958,7520.67483219269,2362.46114307962,0,7520.67483219269,24.0304079011861,24.0304079011861,0.096152065701621,23.9138668403052,25.1,1015.17,38.55,31.7513692069337
 45754,2874.45277752475,457.840258811881,45,24.3328811881188,25.0628676237624,5.36953465346535,3.46594059405941,858.094059405941,132.240594059406,215.052475247525,20,40,10,32,5306931.92133318,397672.815542718,0,0,0,0,0,0,0,24.3328811881188,12184.7730838009,5.36953465346535,5.75916043828215,5.96401549540859,3.46594059405941,3.48058080298926,2.67431935290448,1.08934384331181,0.864246553398971,0.879638607467989,24.9609443807291,-0.00115203250956721,347.29306930693,519.933967258112,299.212613989064,3.69876010281855,1282.2465639255,-124.410202555253,0,1282.2465639255,24.2854506420939,24.2854506420939,-0.00496138722783225,24.0327332303128,25.1,1015.16,38.5,35.6724320358298
-45755,2874.45336534653,457.84557009901,45,24.0131188118812,24.7335123762376,5.39555445544554,3.5,851.10396039604,-662.752475247525,-561.529702970297,20,40,10,32,5306932.89285089,397679.449758523,0,0,0,0,0,0,0,24.0131188118812,12191.4904260177,5.39555445544554,5.78706829694168,5.96778884376282,3.5,3.51464020892985,2.70994712292682,0.996245185114864,0.790385398386462,0.810569522748756,24.7576106427905,-0.00360010159239755,-1224.28217821782,-1162.80996961082,-447.478488461866,3.74801404340386,-4543.44722129107,-2890.73691084603,0,-4543.44722129107,23.9977728654053,23.9977728654053,-0.115580988791948,23.8632752772234,25.1,1015.15,38.45,35.7280382254934
-45756,2874.45365891089,457.850862772277,45,23.4422772277228,24.1455455445545,5.35110891089109,3.48970297029703,834.381188118812,-645.686138613861,-537.646534653465,20,40,10,32,5306933.31972024,397686.051122078,0,0,0,0,0,0,0,23.4422772277227,12198.0899636414,5.35110891089109,5.73939768144602,5.89724749744366,3.48970297029703,3.50434317922688,2.71040238248457,0.905297331366483,0.718230614914138,0.704784013147006,24.2711649156258,-0.00583216457968402,-1183.33267326733,-1192.57747279678,-1124.3283593931,3.83953345421189,-4410.53725728444,-3882.67332094676,0,-4410.53725728444,23.4647524752475,23.4647524752475,-0.155228517901298,23.4835453276191,25.1,1015.14,38.4,34.8877835233482
-45757,2874.45387633663,457.856029108911,45,23.0578415841584,23.7495768316832,5.42194059405941,3.47108910891089,808.658415841584,-645.864356435644,-534.316831683169,20,40,10,32,5306933.6083524,397692.49263817,0,0,0,0,0,0,0,23.0578415841584,12204.5416325083,5.42194059405941,5.81536907446359,5.93547628007455,3.47108910891089,3.48572931784074,2.71235529511555,0.759843008687244,0.602832342987125,0.614529957292957,23.5229198006619,-0.00374410565609344,-1180.18118811881,-1216.34817174787,-1666.19390471065,3.90336993534478,-4334.39847583407,-3226.87747786375,0,-4334.39847583407,23.0290099009901,23.0290099009901,-0.129026021414021,22.8803570890158,25.1,1015.13,38.35,35.3406057373664
+45755,2874.45336534653,457.84557009901,45,24.0131188118812,24.7335123762376,5.39555445544554,3.5,851.10396039604,-662.752475247525,-561.529702970297,20,40,10,32,5306932.89285089,397679.449758523,0,0,0,0,0,0,0,24.0131188118812,12191.4904260177,5.39555445544554,5.78706829694168,5.96778884376282,3.5,3.51464020892985,2.70994712292682,0.996245185114864,0.790385398386462,0.810569522748757,24.7576106427905,-0.00360010159239755,-1224.28217821782,-1162.80996961082,-447.478488461866,3.74801404340386,-4543.44722129107,-2890.73691084603,0,-4543.44722129107,23.9977728654053,23.9977728654053,-0.115580988791948,23.8632752772234,25.1,1015.15,38.45,35.7280382254934
+45756,2874.45365891089,457.850862772277,45,23.4422772277228,24.1455455445545,5.35110891089109,3.48970297029703,834.381188118812,-645.686138613861,-537.646534653465,20,40,10,32,5306933.31972024,397686.051122078,0,0,0,0,0,0,0,23.4422772277227,12198.0899636414,5.35110891089109,5.73939768144602,5.89724749744366,3.48970297029703,3.50434317922688,2.71040238248457,0.905297331366483,0.718230614914139,0.704784013147006,24.2711649156258,-0.00583216457968402,-1183.33267326733,-1192.57747279678,-1124.3283593931,3.83953345421189,-4410.53725728444,-3882.67332094676,0,-4410.53725728444,23.4647524752475,23.4647524752475,-0.155228517901298,23.4835453276191,25.1,1015.14,38.4,34.8877835233482
+45757,2874.45387633663,457.856029108911,45,23.0578415841584,23.7495768316832,5.42194059405941,3.47108910891089,808.658415841584,-645.864356435644,-534.316831683169,20,40,10,32,5306933.6083524,397692.49263817,0,0,0,0,0,0,0,23.0578415841584,12204.5416325083,5.42194059405941,5.81536907446359,5.93547628007455,3.47108910891089,3.48572931784074,2.71235529511555,0.759843008687244,0.602832342987126,0.614529957292957,23.5229198006619,-0.00374410565609344,-1180.18118811881,-1216.34817174787,-1666.19390471065,3.90336993534478,-4334.39847583407,-3226.87747786375,0,-4334.39847583407,23.0290099009901,23.0290099009901,-0.129026021414021,22.8803570890158,25.1,1015.13,38.35,35.3406057373664
 45758,2874.45439623762,457.861010693069,45,22.358297029703,23.0290459405941,4.63125742574258,3.48742574257426,764.742574257426,-808.619801980198,-881.839603960396,20,40,10,32,5306934.46136162,397698.713990866,0,0,0,0,0,0,0,22.3582970297029,12210.8578905116,4.63125742574258,4.96731211681884,5.22261170227531,3.48742574257426,3.50206595150411,2.6510536367729,1.30401905384725,1.0345622089604,1.05380143398682,22.2454597516155,-0.0171364835798123,-1690.45940594059,-1909.05249485345,-2261.29862848253,4.02588641617694,-6047.10653613041,-6364.34324503186,0,-6047.10653613041,22.3391517498284,22.3391517498284,-0.254352786763823,21.9466056829227,25.1,1015.12,38.3,27.5061199299783
 45759,2874.45541930693,457.865596633663,45,20.9413465346535,21.5695869306931,3.31030693069307,2.52069306930693,689.29702970297,-1793.71683168317,-2202.73267326733,20,40,10,32,5306936.25515807,397704.459118211,0,0,0,0,0,0,0,20.9413465346534,12216.8993427668,3.31030693069307,3.55051041555622,4.01761930042357,2.52069306930693,2.53533327823678,1.82853156592546,2.28214762347193,1.8105745307533,1.75004005232298,20.05083782089,-0.0166324693568767,-3996.4495049505,-3721.22661503774,-2637.02130839193,4.30163842533956,-13717.9657365746,-12532.6946750178,0,-13717.9657365746,20.9431820409763,20.9431820409763,-0.501102833055581,20.8474238825544,25.1,1015.11,38.25,16.2740971480623
 45760,2874.45693485149,457.869425346535,45,19.3403465346535,19.9205569306931,2.96175247524753,-3.47079207920792,709.183168316832,-1423.55643564356,-1729.92277227723,20,40,9.85148514851485,32,5306938.97791826,397709.277335079,0,0,0,0,0,0,0,19.3403465346534,12222.4732022553,2.96175247524753,3.17666404712027,3.62912419977912,-3.47079207920792,-3.45615187027807,-2.43087670229023,2.21120184368831,1.75428867938264,1.71473208102667,20.6293021447564,0.024984705051239,-3153.47920792079,-3145.7197529654,-3084.40212771577,4.65539667598035,-12112.753283652,-8503.37863161037,0,-12112.753283652,19.3687095382805,19.3687095382805,-0.340503109716915,19.6846323372614,25.1,1015.10126237624,38.2050495049505,13.3191217621395
@@ -727,44 +727,44 @@ Time,Lat,Long,Heading,v_veh_GPS,v_veh_CAN,vair_ar,beta_ar,n_eng,tq_l,tq_r,t_amb_
 45775,2874.47003445544,457.875220000001,45,0.115970297029703,0.119449405940594,1.13806930693069,-3.5,593.207920792079,29.1990099009901,-101.263366336634,20,40,10,32,5306963.11497767,397716.924469454,0,0,0,0,0,0,0,0.115970297029703,12249.5146557206,1.13806930693069,1.22065023349248,0.975064757989248,-3.5,-3.48535979107015,-3.45773818984204,1.1884976028731,0.942911609876341,0.932636144768043,17.2557189445525,0.0080642275669705,-72.0643564356436,160.41487109107,364.455754146844,10,-43001.8293477179,751.503212104842,0,-43001.8293477179,0.105145868052152,0.105145868052152,0.00407231317191123,0.147659291203846,25.1,1015.1,38.4,0.963377047108057
 45776,2874.47003999999,457.875220000001,45,0.0716534653465346,0.0738030693069307,1.15989108910891,-3.5,573.321782178218,-27.5445544554455,-172.69801980198,20,40,10,32,5306963.12524812,397716.924651556,0,0,0,0,0,0,0,0.0716534653465346,12249.5421896316,1.15989108910891,1.2440554543774,0.991094515514581,-3.5,-3.48535979107015,-3.46806003103803,1.22418934404622,0.971228164362849,0.971598700195816,16.6772546206861,-0.010224288522409,-200.242574257426,-196.341162631115,356.096179068456,10,-228442.255630493,-2453.14818002191,0,-228442.255630493,0.0715411234192725,0.0715411234192725,-0.0144688973847879,0.144623495316565,25.1,1015.1,38.46,1.00592494898359
 45777,2874.4700390099,457.875220000001,46.7821782178218,0.0382376237623763,0.0393847524752475,1.11833663366337,-3.5,557.039603960396,-9.41287128712871,-146.645544554455,20,40,10,32,5306963.12341411,397716.924619037,0,0,0,0,0,0,0,0.0382376237623762,12249.5553225248,1.11833663366337,1.19948571206614,0.95381993789081,-3.5,-3.48535979107015,-3.47603382164218,1.18888401756864,0.943218177514147,0.958574403253602,16.2036252551903,0.00079202235032746,-156.058415841584,-156.908116851289,131.405033580281,10,-372843.257041401,649.164717472477,0,-372843.257041401,0.0373199686305264,0.0373199686305264,-0.00344737444041434,0.0997705166121012,25.1,1015.1,38.52,0.926715171430275
-45778,2874.47002910891,457.875220000001,46.7821782178218,0.0315544554455446,0.0325010891089109,1.15851485148515,-3.5,556.445544554455,9.05940594059406,-151.650495049505,20,40,10,32,5306963.10507402,397716.924293856,0,0,0,0,0,0,0,0.0315544554455445,12249.5650305281,1.15851485148515,1.2425793537862,0.98762599326807,-3.5,-3.48535979107015,-3.47796632163465,1.2338305862903,0.978877182100531,0.95616219591925,16.1863447675468,0.00518414629305246,-142.591089108911,-140.6063523184,70.0077002205713,10,-unendlich,+unendlich,0,-unendlich,0.0341107734535829,0.0341107734535829,0.000309065560021351,0.0548302093945656,25.1,1015.1,38.58,0.991301487617221
+45778,2874.47002910891,457.875220000001,46.7821782178218,0.0315544554455446,0.0325010891089109,1.15851485148515,-3.5,556.445544554455,9.05940594059406,-151.650495049505,20,40,10,32,5306963.10507402,397716.924293856,0,0,0,0,0,0,0,0.0315544554455445,12249.5650305281,1.15851485148515,1.2425793537862,0.98762599326807,-3.5,-3.48535979107015,-3.47796632163465,1.2338305862903,0.978877182100531,0.95616219591925,16.1863447675468,0.00518414629305246,-142.591089108911,-140.6063523184,70.0077002205713,10,-Infinity,Infinity,0,-Infinity,0.0341107734535829,0.0341107734535829,0.000309065560021351,0.0548302093945656,25.1,1015.1,38.58,0.991301487617221
 45779,2874.47002,457.875220000001,45,0.0400990099009901,0.0413019801980198,1.04539603960396,-3.5,559.836633663366,13.2237623762376,-152.554455445545,20,40,10,32,5306963.08820115,397716.923994687,0,0,0,0,0,0,0,0.0400990099009901,12249.5748576184,1.04539603960396,1.12125238073255,0.891859052255155,-3.5,-3.48535979107015,-3.47461667802226,1.1101346540869,0.880741241155331,0.915440068781343,16.2849875511784,-0.00388810971978935,-139.330693069307,-139.55318106068,-15.0465109148277,10,-283070.432572269,-2152.73976694184,0,-283070.432572269,0.0376129791196941,0.0376129791196941,0.000491509546994306,0.0455875807360953,25.1,1015.1,38.64,0.813384593189595
 45780,2874.47000960396,457.875227920792,48.5643564356436,0.0311188118811881,0.0320523762376238,1.3700297029703,-3.5,557.153465346535,16.7881188118812,-149.887128712871,20,40,10,32,5306963.06876914,397716.933518081,0,0,0,0,0,0,0,0.0311188118811881,12249.5849953521,1.3700297029703,1.46944220939628,1.1675859305517,-3.5,-3.48535979107015,-3.47919609874534,1.46081420752858,1.15895789172919,1.14664279009131,16.2069373486553,-0.00122403454141517,-133.09900990099,-125.773943731007,-104.609809002878,10,-660651.372554345,-4282.66921964575,0,-660651.372554345,0.0326307224781884,0.0326307224781884,-0.00139011425895065,0.0404307870347472,25.1,1015.1,38.6848514851485,1.39272060213021
-45781,2874.46999861386,457.87523,46.7821782178218,0.0331287128712871,0.0341225742574257,1.60836633663366,-3.5,550.628712871287,61.2138613861386,-95.3198019801981,20,40,10,32,5306963.04836575,397716.935746649,0,0,0,0,0,0,0,0.0331287128712871,12249.5937424368,1.60836633663366,1.72507309739167,1.37050951211547,-3.5,-3.48535979107015,-3.47970534366501,1.71588781892992,1.36132419771247,1.34720151339569,16.0171399927041,0.00367210362424549,-34.1059405940594,-43.2909910793059,-90.8197673613516,10,-unendlich,n. def.,0,-unendlich,0.032601607685521,0.032601607685521,-0.000117090917012488,0.0334481656956902,25.1,1015.1,38.64,1.91567426220619
-45782,2874.46999000001,457.875236336634,45,0.0302673267326733,0.0311753465346535,1.47207920792079,-3.5,559.569306930693,58.1128712871287,-97.6871287128713,20,40,10,32,5306963.03226996,397716.943355608,0,0,0,0,0,0,0,0.0302673267326733,12249.6026770628,1.47207920792079,1.57889666114804,1.25437440367344,-3.5,-3.48535979107015,-3.47979164125793,1.57050473062257,1.24598244059551,1.24473193206316,16.2772113317389,0.00108003047771926,-39.5742574257426,-39.0010685226939,-78.6270264389077,10,-unendlich,+unendlich,0,-unendlich,0.0300239192236055,0.0300239192236055,-0.000510570859066108,0.0317812286723175,25.1,1015.1,38.58,1.60562998330148
+45781,2874.46999861386,457.87523,46.7821782178218,0.0331287128712871,0.0341225742574257,1.60836633663366,-3.5,550.628712871287,61.2138613861386,-95.3198019801981,20,40,10,32,5306963.04836575,397716.935746649,0,0,0,0,0,0,0,0.0331287128712871,12249.5937424368,1.60836633663366,1.72507309739167,1.37050951211547,-3.5,-3.48535979107015,-3.47970534366501,1.71588781892992,1.36132419771247,1.34720151339569,16.0171399927041,0.00367210362424549,-34.1059405940594,-43.2909910793059,-90.8197673613516,10,-Infinity,NaN,0,-Infinity,0.032601607685521,0.032601607685521,-0.000117090917012488,0.0334481656956902,25.1,1015.1,38.64,1.91567426220619
+45782,2874.46999000001,457.875236336634,45,0.0302673267326733,0.0311753465346535,1.47207920792079,-3.5,559.569306930693,58.1128712871287,-97.6871287128713,20,40,10,32,5306963.03226996,397716.943355608,0,0,0,0,0,0,0,0.0302673267326733,12249.6026770628,1.47207920792079,1.57889666114804,1.25437440367344,-3.5,-3.48535979107015,-3.47979164125793,1.57050473062257,1.24598244059551,1.24473193206316,16.2772113317389,0.00108003047771926,-39.5742574257426,-39.0010685226939,-78.6270264389077,10,-Infinity,Infinity,0,-Infinity,0.0300239192236055,0.0300239192236055,-0.000510570859066108,0.0317812286723175,25.1,1015.1,38.58,1.60562998330148
 45783,2874.46998118811,457.875240000001,46.7821782178218,0.0280495049504951,0.0288909900990099,1.36621782178218,-3.5,558.60396039604,56.1653465346534,-98.7148514851486,20,40,10,32,5306963.01586638,397716.947628682,0,0,0,0,0,0,0,0.028049504950495,12249.6105869638,1.36621782178218,1.46535372934151,1.16416642539465,-3.5,-3.48535979107015,-3.47966987859944,1.45757671107917,1.15638937751284,1.17306982950783,16.2491305393182,-0.00432012191087705,-42.549504950495,-43.7824232918341,-69.9846411014728,10,-173412.140562155,7297.58540750803,0,-173412.140562155,0.0283044799529458,0.0283044799529458,-0.000578646973608249,0.0311718182807289,25.1,1015.1,38.52,1.38908189290193
-45784,2874.46997207921,457.875245841584,46.7821782178218,0.0287623762376238,0.0296252475247525,1.47689108910891,-3.5,558.623762376238,53.4633663366337,-102.340594059406,20,40,10,32,5306962.99886451,397716.954604831,0,0,0,0,0,0,0,0.0287623762376237,12249.6184068483,1.47689108910891,1.58405770350289,1.25838276728897,-3.5,-3.48535979107015,-3.48002798009506,1.5760830333366,1.25040806701642,1.27070344272986,16.2497065555729,0.00403211378348525,-48.8772277227723,-47.4233800607784,-61.7636650478234,10,-unendlich,n. def.,0,-unendlich,0.028973433977061,0.028973433977061,0.00123490071779455,0.0305101037576283,25.1,1015.1,38.46,1.62814531122126
-45785,2874.46996148514,457.875249999999,46.7821782178218,0.0296435643564356,0.0305328712871287,1.53070297029703,-3.5,560.321782178218,53.6673267326733,-103.741584158416,20,40,10,32,5306962.97914881,397716.959435924,0,0,0,0,0,0,0,0.0296435643564356,12249.6267536304,1.53070297029703,1.64177429856167,1.30422354047475,-3.5,-3.48535979107015,-3.48003302229839,1.63355530177525,1.29600451502417,1.29739221217729,16.2990999494206,0.00172804876435082,-50.0742574257426,-50.6066562101755,-53.9985074331609,10,-unendlich,-unendlich,0,-unendlich,0.0298427605136751,0.0298427605136751,-0.00114912481347145,0.0296407058288244,25.1,1015.1,38.4,1.78450192415484
+45784,2874.46997207921,457.875245841584,46.7821782178218,0.0287623762376238,0.0296252475247525,1.47689108910891,-3.5,558.623762376238,53.4633663366337,-102.340594059406,20,40,10,32,5306962.99886451,397716.954604831,0,0,0,0,0,0,0,0.0287623762376237,12249.6184068483,1.47689108910891,1.58405770350289,1.25838276728897,-3.5,-3.48535979107015,-3.48002798009506,1.5760830333366,1.25040806701642,1.27070344272986,16.2497065555729,0.00403211378348525,-48.8772277227723,-47.4233800607784,-61.7636650478234,10,-Infinity,NaN,0,-Infinity,0.028973433977061,0.028973433977061,0.00123490071779455,0.0305101037576283,25.1,1015.1,38.46,1.62814531122126
+45785,2874.46996148514,457.875249999999,46.7821782178218,0.0296435643564356,0.0305328712871287,1.53070297029703,-3.5,560.321782178218,53.6673267326733,-103.741584158416,20,40,10,32,5306962.97914881,397716.959435924,0,0,0,0,0,0,0,0.0296435643564356,12249.6267536304,1.53070297029703,1.64177429856167,1.30422354047475,-3.5,-3.48535979107015,-3.48003302229839,1.63355530177525,1.29600451502417,1.29739221217729,16.2990999494206,0.00172804876435082,-50.0742574257426,-50.6066562101755,-53.9985074331609,10,-Infinity,-Infinity,0,-Infinity,0.0298427605136751,0.0298427605136751,-0.00114912481347145,0.0296407058288244,25.1,1015.1,38.4,1.78450192415484
 45786,2874.46994940594,457.875257326733,48.5643564356436,0.0315841584158416,0.0325316831683168,1.65212871287129,-3.5,560.727722772277,52.2178217821782,-106.607920792079,20,40,10,32,5306962.95661211,397716.968164176,0,0,0,0,0,0,0,0.0315841584158416,12249.6349950771,1.65212871287129,1.77201097230608,1.40765985545282,-3.5,-3.48535979107015,-3.47992882446943,1.76325393241138,1.39890278281724,1.3505626796258,16.3109082826437,-0.00518414629305246,-54.390099009901,-54.26031761592,-51.7682930930455,10,-265725.783727689,19487.3165771951,0,-265725.783727689,0.0306616018037447,0.0306616018037447,0.00134382250106198,0.029226872137763,25.1,1015.1,38.34,2.04442172603111
 45787,2874.46993762377,457.875260000001,46.7821782178218,0.0282178217821782,0.0290643564356435,1.41492079207921,-3.5,559.232673267327,50.8821782178218,-106.882178217822,20,40,10,32,5306962.9347284,397716.97110659,0,0,0,0,0,0,0,0.0282178217821782,12249.6435857811,1.41492079207921,1.51759069918404,1.20561901726664,-3.5,-3.48535979107015,-3.4798611307885,1.50976700979793,1.19779529912839,1.22003040086864,16.2674190554075,0.0036721036242455,-56,-56.1001372414469,-62.8895737925441,10,-233887.024452467,2025.07183287787,0,-233887.024452467,0.0289687285560239,0.0289687285560239,-0.00115593242492566,0.0296572734196495,25.1,1015.1,38.28,1.48400553596287
-45788,2874.46992673267,457.875260000001,46.7821782178218,0.0308118811881188,0.0317362376237624,1.57688118811881,-3.5,559.574257425743,50.7891089108911,-108.323762376238,20,40,10,32,5306962.9145543,397716.97074889,0,0,0,0,0,0,0,0.0308118811881188,12249.6516178493,1.57688118811881,1.69130331408221,1.34358503183384,-3.5,-3.48535979107015,-3.48001096498337,1.68276039592076,1.33504208179981,1.33813208831133,16.2773553358026,0.000864024382175412,-57.5346534653465,-58.2307322811489,-78.2466721397415,10,-unendlich,+unendlich,0,-unendlich,0.0300211743946671,0.0300211743946671,1.36152229084041E-06,0.0297169563110156,25.1,1015.1,38.22,1.83333172563053
-45789,2874.46991742574,457.875266138613,46.7821782178218,0.0275445544554455,0.0283708910891089,1.718,-3.5,560.628712871287,49.2247524752475,-110.066336633663,20,40,10,32,5306962.89717907,397716.978088466,0,0,0,0,0,0,0,0.0275445544554455,12249.6595812707,1.718,1.84266203153811,1.46348044337147,-3.5,-3.48535979107015,-3.48090410969599,1.83502499361283,1.45584338303082,1.46029810525659,16.3080282013698,-0.0036721036242455,-60.8415841584158,-59.5314184883835,-92.8274052679994,10,-unendlich,-unendlich,0,-unendlich,0.0278235467111067,0.0278235467111067,-0.000182443986972946,0.0298213766431587,25.1,1015.1,38.16,2.18822106854012
-45790,2874.46990881188,457.875269999999,46.7821782178218,0.0273960396039604,0.0282179207920792,1.50712871287129,-3.5,559.277227722772,50.1940594059406,-109.661386138614,20,40,10,32,5306962.88113794,397716.982614666,0,0,0,0,0,0,0,0.0273960396039604,12249.6673265402,1.50712871287129,1.61648943879443,1.28403466750437,-3.5,-3.48535979107015,-3.48018499598109,1.60889359513254,1.27643879654349,1.29517235306832,16.2687150919808,0.00172804876435082,-59.4673267326733,-60.9576512106656,-106.033502141423,10,-unendlich,n. def.,0,-unendlich,0.0270549946083717,0.0270549946083717,-0.000351272751037488,0.0294562763968703,25.1,1015.1,38.1189356435644,1.74261671421158
+45788,2874.46992673267,457.875260000001,46.7821782178218,0.0308118811881188,0.0317362376237624,1.57688118811881,-3.5,559.574257425743,50.7891089108911,-108.323762376238,20,40,10,32,5306962.9145543,397716.97074889,0,0,0,0,0,0,0,0.0308118811881188,12249.6516178493,1.57688118811881,1.69130331408221,1.34358503183384,-3.5,-3.48535979107015,-3.48001096498337,1.68276039592076,1.33504208179981,1.33813208831133,16.2773553358026,0.000864024382175412,-57.5346534653465,-58.2307322811489,-78.2466721397415,10,-Infinity,Infinity,0,-Infinity,0.0300211743946671,0.0300211743946671,1.36152229084041E-06,0.0297169563110156,25.1,1015.1,38.22,1.83333172563053
+45789,2874.46991742574,457.875266138613,46.7821782178218,0.0275445544554455,0.0283708910891089,1.718,-3.5,560.628712871287,49.2247524752475,-110.066336633663,20,40,10,32,5306962.89717907,397716.978088466,0,0,0,0,0,0,0,0.0275445544554455,12249.6595812707,1.718,1.84266203153811,1.46348044337147,-3.5,-3.48535979107015,-3.48090410969599,1.83502499361283,1.45584338303082,1.46029810525659,16.3080282013698,-0.0036721036242455,-60.8415841584158,-59.5314184883835,-92.8274052679994,10,-Infinity,-Infinity,0,-Infinity,0.0278235467111067,0.0278235467111067,-0.000182443986972946,0.0298213766431587,25.1,1015.1,38.16,2.18822106854012
+45790,2874.46990881188,457.875269999999,46.7821782178218,0.0273960396039604,0.0282179207920792,1.50712871287129,-3.5,559.277227722772,50.1940594059406,-109.661386138614,20,40,10,32,5306962.88113794,397716.982614666,0,0,0,0,0,0,0,0.0273960396039604,12249.6673265402,1.50712871287129,1.61648943879443,1.28403466750437,-3.5,-3.48535979107015,-3.48018499598109,1.60889359513254,1.27643879654349,1.29517235306832,16.2687150919808,0.00172804876435082,-59.4673267326733,-60.9576512106656,-106.033502141423,10,-Infinity,NaN,0,-Infinity,0.0270549946083717,0.0270549946083717,-0.000351272751037488,0.0294562763968703,25.1,1015.1,38.1189356435644,1.74261671421158
 45791,2874.4699,457.875269999999,45,0.0326039603960396,0.0335820792079208,1.64654455445545,-3.5,560.965346534653,41.960396039604,-116.320792079208,20,40,10,32,5306962.86481525,397716.982325253,0,0,0,0,0,0,0,0.0326039603960396,12249.6749173543,1.64654455445545,1.76602161451157,1.40296654052652,-3.5,-3.48535979107015,-3.47996792538422,1.7569818290157,1.39392671968019,1.34420248000123,16.3178204777011,0.00237606705098238,-74.360396039604,-89.7333398686403,-120.367204083046,10,-342227.477292756,1840.86918936991,0,-342227.477292756,0.0325153416331732,0.0325153416331732,0.00326629197573222,0.0295455930208404,25.1,1015.1,38.19,2.00301177543656
-45792,2874.46989425743,457.875269999999,46.7821782178218,0.0319603960396039,0.0329192079207921,1.54143564356436,-3.5,559.707920792079,-13.8861386138614,-188.252475247525,20,40,10,32,5306962.85417802,397716.982136647,0,0,0,0,0,0,0,0.0319603960396039,12249.6850566832,1.54143564356436,1.65328575928728,1.3134890620111,-3.5,-3.48535979107015,-3.4797351846667,1.64442440813969,1.30462767636268,1.33093810055756,16.2812434455224,-0.00460813003826886,-202.138613861386,-185.217733555534,-134.009193776521,10,-unendlich,-unendlich,0,-unendlich,0.0323847661993922,0.0323847661993922,-0.00274074437146685,0.029224478491805,25.1,1015.1,38.28,1.74692881307254
+45792,2874.46989425743,457.875269999999,46.7821782178218,0.0319603960396039,0.0329192079207921,1.54143564356436,-3.5,559.707920792079,-13.8861386138614,-188.252475247525,20,40,10,32,5306962.85417802,397716.982136647,0,0,0,0,0,0,0,0.0319603960396039,12249.6850566832,1.54143564356436,1.65328575928728,1.3134890620111,-3.5,-3.48535979107015,-3.4797351846667,1.64442440813969,1.30462767636268,1.33093810055756,16.2812434455224,-0.00460813003826886,-202.138613861386,-185.217733555534,-134.009193776521,10,-Infinity,-Infinity,0,-Infinity,0.0323847661993922,0.0323847661993922,-0.00274074437146685,0.029224478491805,25.1,1015.1,38.28,1.74692881307254
 45793,2874.46988891089,457.875269999999,46.7821782178218,0.0296138613861386,0.0305022772277228,1.65316831683168,-3.5,559.084158415842,-12.2336633663366,-185.059405940594,20,40,10,32,5306962.84427438,397716.981961048,0,0,0,0,0,0,0,0.0296138613861386,12249.6931386964,1.65316831683168,1.77312601232102,1.40843160347983,-3.5,-3.48535979107015,-3.48047178279821,1.76491524875095,1.40022081194955,1.39187616266465,16.2630989334967,0.00194405485989467,-197.293069306931,-196.801803744731,-148.090381895332,10,-1107335.35725773,-16104.1574502984,0,-1107335.35725773,0.0295572983040878,0.0295572983040878,0.000560947183827289,0.02919109603268,25.1,1015.1,38.37,2.00739700347611
-45794,2874.46987999999,457.875269999999,45,0.0276831683168317,0.0285136633663366,1.62358415841584,-3.5,560.688118811881,-2.93168316831683,-175.249504950495,20,40,10,32,5306962.82776831,397716.981668383,0,0,0,0,0,0,0,0.0276831683168316,12249.7012469472,1.62358415841584,1.74139515932458,1.38314686116294,-3.5,-3.48535979107015,-3.48067267599692,1.73371969899129,1.37547137537202,1.357524137265,16.3097562501341,0.00208805892359058,-178.181188118812,-179.735731791001,-161.817324259899,10,-unendlich,n. def.,0,-unendlich,0.0277282619351044,0.0277282619351044,-0.00136288381313379,0.0288323656541476,25.1,1015.1,38.46,1.94239190252173
-45795,2874.4698719802,457.875269999999,46.7821782178218,0.0267425742574257,0.0275448514851485,1.55146534653465,-3.5,560.995049504951,-10.4594059405941,-184.758415841584,20,40,10,32,5306962.81291284,397716.981404984,0,0,0,0,0,0,0,0.0267425742574257,12249.7085761001,1.55146534653465,1.66404324057423,1.32172471835708,-3.5,-3.48535979107015,-3.48060617188002,1.65662857152935,1.31431002432966,1.33009838600581,16.3186845020833,-0.00360010159239754,-195.217821782178,-193.122478188413,-175.521285645048,10,-unendlich,-unendlich,0,-unendlich,0.027996568963827,0.027996568963827,0.00166922632857345,0.0286630696036634,25.1,1015.1,38.55,1.80635133657454
+45794,2874.46987999999,457.875269999999,45,0.0276831683168317,0.0285136633663366,1.62358415841584,-3.5,560.688118811881,-2.93168316831683,-175.249504950495,20,40,10,32,5306962.82776831,397716.981668383,0,0,0,0,0,0,0,0.0276831683168316,12249.7012469472,1.62358415841584,1.74139515932458,1.38314686116294,-3.5,-3.48535979107015,-3.48067267599692,1.73371969899129,1.37547137537202,1.357524137265,16.3097562501341,0.00208805892359058,-178.181188118812,-179.735731791001,-161.817324259899,10,-Infinity,NaN,0,-Infinity,0.0277282619351044,0.0277282619351044,-0.00136288381313379,0.0288323656541476,25.1,1015.1,38.46,1.94239190252173
+45795,2874.4698719802,457.875269999999,46.7821782178218,0.0267425742574257,0.0275448514851485,1.55146534653465,-3.5,560.995049504951,-10.4594059405941,-184.758415841584,20,40,10,32,5306962.81291284,397716.981404984,0,0,0,0,0,0,0,0.0267425742574257,12249.7085761001,1.55146534653465,1.66404324057423,1.32172471835708,-3.5,-3.48535979107015,-3.48060617188002,1.65662857152935,1.31431002432966,1.33009838600581,16.3186845020833,-0.00360010159239754,-195.217821782178,-193.122478188413,-175.521285645048,10,-Infinity,-Infinity,0,-Infinity,0.027996568963827,0.027996568963827,0.00166922632857345,0.0286630696036634,25.1,1015.1,38.55,1.80635133657454
 45796,2874.46986811881,457.875269999999,46.7821782178218,0.030059405940594,0.0309611881188119,1.56606930693069,-3.5,643.534653465347,-12.0851485148515,-178.760396039604,20,40,10,32,5306962.80576021,397716.981278162,0,0,0,0,0,0,0,0.030059405940594,12249.717060506,1.56606930693069,1.67970689792689,1.33434173717995,-3.5,-3.48535979107015,-3.48009327012914,1.67137260987505,1.3260074185011,1.33292849579121,18.7196642560851,0.0888505073003714,-190.845544554455,-191.890510734242,-188.441702851604,10,-1408938.40128578,57274.6521690111,0,-1408938.40128578,0.0297852171355749,0.0297852171355749,-0.000684845712294004,0.0286558293191954,25.1,1015.1,38.64,1.82893079738072
-45797,2874.46986000001,457.875269999999,45,0.029,0.02987,1.55256435643564,-3.5,1143.83663366337,-14.5871287128713,-180.851485148515,20,40,10,32,5306962.79072135,397716.981011513,0,0,0,0,0,0,0,0.029,12249.7247676842,1.55256435643564,1.66522199716145,1.32278923663761,-3.5,-3.48535979107015,-3.4801608060482,1.6571814361163,1.3147486473748,1.29056566760417,33.2728589372566,0.103034907574418,-195.438613861386,-195.200882266445,-194.361319868251,10,-unendlich,n. def.,0,-unendlich,0.0283269287324772,0.0283269287324772,0.000206951388208125,0.0277381826094695,25.1,1015.1,38.73,1.78827154788676
-45798,2874.46985217821,457.875269999999,46.7821782178218,0.0256039603960396,0.0263720792079208,1.53471287128713,-3.5,1096.12871287129,-14.4851485148515,-183.680198019802,20,40,10,32,5306962.77623267,397716.980754619,0,0,0,0,0,0,0,0.0256039603960396,12249.7326997249,1.53471287128713,1.6460751671907,1.30740425499849,-3.5,-3.48535979107015,-3.48075665006993,1.63897618822969,1.30030525299903,1.32074947990833,31.8850917754192,-0.0973467470584296,-198.165346534654,-197.922066464072,-198.658761040939,10,-unendlich,n. def.,0,-unendlich,0.0265941574355455,0.0265941574355455,-0.00149222843076387,0.0273149622654572,25.1,1015.1,38.82,1.7514162408371
-45799,2874.46984544554,457.875269999999,46.7821782178218,0.0248019801980198,0.0255460396039604,1.70805940594059,-3.5,699.826732673267,-10.4762376237624,-183.89702970297,20,40,10,32,5306962.76376143,397716.980533495,0,0,0,0,0,0,0,0.0248019801980198,12249.7396747524,1.70805940594059,1.83200012510959,1.45486453693351,-3.5,-3.48535979107015,-3.48138448377326,1.82512349497491,1.44798788715242,1.43722580855464,20.3571344643712,-0.082154318338512,-194.373267326733,-196.525713165376,-200.250228978942,10,-unendlich,-unendlich,0,-unendlich,0.025203215371042,0.025203215371042,0.000963957781916808,0.0268565098268067,25.1,1015.1,38.91,2.15671152483323
-45800,2874.46984,457.875269999999,45,0.0272178217821782,0.0280343564356436,1.68164356435644,-3.5,555.554455445545,-12.2207920792079,-183.925742574257,20,40,10,32,5306962.75367439,397716.980354644,0,0,0,0,0,0,0,0.0272178217821782,12249.7469496974,1.68164356435644,1.80366748930153,1.43252484516038,-3.5,-3.48535979107015,-3.48094473114396,1.79612104498757,1.42497837771646,1.41394966976279,16.1604240360815,-0.0200885668855783,-196.146534653465,-195.358053132046,-32.4939773098189,10,-unendlich,+unendlich,0,-unendlich,0.026746985589648,0.026746985589648,-0.000125260050757555,0.0324273251500972,25.1,1015.1,38.9861138613861,2.09476572711574
-45801,2874.46983346534,457.875269999999,46.7821782178218,0.0286930693069307,0.0295538613861386,1.56186138613861,-3.5,554.772277227723,-11.9207920792079,-184.307920792079,20,40,10,32,5306962.74156995,397716.980140023,0,0,0,0,0,0,0,0.0286930693069306,12249.754505913,1.56186138613861,1.67519364072358,1.33068279825264,-3.5,-3.48535979107015,-3.48024753089259,1.6672381818617,1.32272731077134,1.34846517746734,16.1376713940175,0.00892825194914591,-196.228712871287,-195.964895598471,1085.88277267287,10,-unendlich,n. def.,0,-unendlich,0.0274662288010979,0.0274662288010979,-6.67145922513026E-05,0.228245665225863,25.1,1015.1,38.98,1.81251727303333
-45802,2874.46982950495,457.875269999999,46.7821782178218,0.0265247524752475,0.027320495049505,1.77916831683168,-3.5,561.975247524752,-27.6940594059406,-192.329702970297,20,40,10,32,5306962.73423391,397716.980009949,0,0,0,0,0,0,0,0.0265247524752475,12249.762095462,1.77916831683168,1.90826886213115,1.51547213547706,-3.5,-3.48535979107015,-3.48128921689089,1.90091457577371,1.50811782753892,1.47277995285059,16.3471973066951,0.00108003047771927,-220.023762376238,-219.356994412312,1822.74784423497,10,-unendlich,n. def.,0,-unendlich,0.0268506028820703,0.0268506028820703,-0.000114367872430805,0.740302667629399,25.1,1015.1,38.96,2.3408025523974
-45803,2874.46982,457.875269999999,45,0.0230693069306931,0.0237613861386139,1.7929900990099,-3.5,559.772277227723,-38.2118811881188,-196.564356435644,20,40,10,32,5306962.71662742,397716.979697774,0,0,0,0,0,0,0,0.023069306930693,12249.7690072056,1.7929900990099,1.92309358461543,1.52703556880979,-3.5,-3.48535979107015,-3.48180552736358,1.91669735580647,1.52063932231774,1.5367135512358,16.2831154983504,-0.00532815035674837,-234.776237623762,-232.51210665621,2590.43791851713,10,-unendlich,n. def.,0,-unendlich,0.0234124105479855,0.0234124105479855,-0.000302257948567138,1.45933199473793,25.1,1015.1,38.94,2.3949360527764
-45804,2874.46981188119,457.875269999999,46.7821782178218,0.0255544554455445,0.0263210891089109,1.85618811881188,-3.5,561.158415841584,-9.79108910891089,-181.095049504951,20,40,10,32,5306962.70158857,397716.979431125,0,0,0,0,0,0,0,0.0255544554455445,12249.775846067,1.85618811881188,1.99087739809476,1.58095520941543,-3.5,-3.48535979107015,-3.48157641639755,1.98379212518658,1.57386991938209,1.58088483550315,16.3234366361852,0.0126003555733914,-190.886138613861,-163.600254876973,3602.87187663821,10,-unendlich,n. def.,0,-unendlich,0.0254831879227526,0.0254831879227526,0.000846866864904309,2.47431715808943,25.1,1015.1,38.92,2.54356057859288
-45805,2874.46981118812,457.875270495049,46.7821782178218,0.393970297029703,0.405789405940594,1.68143564356436,-3.5,769.851485148515,3507.1495049505,3041.6702970297,20,40,10,32,5306962.70029382,397716.980024914,0,0,0,0,0,0,0,0.393970297029702,12249.7986677941,1.68143564356436,1.80344448129854,1.45336370539618,-3.5,-3.48535979107015,-3.41303645071126,1.6942776375607,1.34417945054991,1.26209167970596,22.3940719453497,0.0829463406888394,6548.8198019802,6523.85998431526,4265.31013738736,10,-unendlich,+unendlich,0,-unendlich,0.59753514361337,0.59753514361337,0.518701870187018,3.75327264814393,25.1,1015.1,38.9,2.19504393387942
+45797,2874.46986000001,457.875269999999,45,0.029,0.02987,1.55256435643564,-3.5,1143.83663366337,-14.5871287128713,-180.851485148515,20,40,10,32,5306962.79072135,397716.981011513,0,0,0,0,0,0,0,0.029,12249.7247676842,1.55256435643564,1.66522199716145,1.32278923663761,-3.5,-3.48535979107015,-3.4801608060482,1.6571814361163,1.3147486473748,1.29056566760417,33.2728589372566,0.103034907574418,-195.438613861386,-195.200882266445,-194.361319868251,10,-Infinity,NaN,0,-Infinity,0.0283269287324772,0.0283269287324772,0.000206951388208125,0.0277381826094695,25.1,1015.1,38.73,1.78827154788676
+45798,2874.46985217821,457.875269999999,46.7821782178218,0.0256039603960396,0.0263720792079208,1.53471287128713,-3.5,1096.12871287129,-14.4851485148515,-183.680198019802,20,40,10,32,5306962.77623267,397716.980754619,0,0,0,0,0,0,0,0.0256039603960396,12249.7326997249,1.53471287128713,1.6460751671907,1.30740425499849,-3.5,-3.48535979107015,-3.48075665006993,1.63897618822969,1.30030525299903,1.32074947990833,31.8850917754192,-0.0973467470584296,-198.165346534654,-197.922066464072,-198.658761040939,10,-Infinity,NaN,0,-Infinity,0.0265941574355455,0.0265941574355455,-0.00149222843076387,0.0273149622654572,25.1,1015.1,38.82,1.7514162408371
+45799,2874.46984544554,457.875269999999,46.7821782178218,0.0248019801980198,0.0255460396039604,1.70805940594059,-3.5,699.826732673267,-10.4762376237624,-183.89702970297,20,40,10,32,5306962.76376143,397716.980533495,0,0,0,0,0,0,0,0.0248019801980198,12249.7396747524,1.70805940594059,1.83200012510959,1.45486453693351,-3.5,-3.48535979107015,-3.48138448377326,1.82512349497491,1.44798788715242,1.43722580855464,20.3571344643712,-0.082154318338512,-194.373267326733,-196.525713165376,-200.250228978942,10,-Infinity,-Infinity,0,-Infinity,0.025203215371042,0.025203215371042,0.000963957781916808,0.0268565098268067,25.1,1015.1,38.91,2.15671152483323
+45800,2874.46984,457.875269999999,45,0.0272178217821782,0.0280343564356436,1.68164356435644,-3.5,555.554455445545,-12.2207920792079,-183.925742574257,20,40,10,32,5306962.75367439,397716.980354644,0,0,0,0,0,0,0,0.0272178217821782,12249.7469496974,1.68164356435644,1.80366748930153,1.43252484516038,-3.5,-3.48535979107015,-3.48094473114396,1.79612104498757,1.42497837771646,1.41394966976279,16.1604240360815,-0.0200885668855783,-196.146534653465,-195.358053132046,-32.4939773098189,10,-Infinity,Infinity,0,-Infinity,0.026746985589648,0.026746985589648,-0.000125260050757555,0.0324273251500972,25.1,1015.1,38.9861138613861,2.09476572711574
+45801,2874.46983346534,457.875269999999,46.7821782178218,0.0286930693069307,0.0295538613861386,1.56186138613861,-3.5,554.772277227723,-11.9207920792079,-184.307920792079,20,40,10,32,5306962.74156995,397716.980140023,0,0,0,0,0,0,0,0.0286930693069306,12249.754505913,1.56186138613861,1.67519364072358,1.33068279825264,-3.5,-3.48535979107015,-3.48024753089259,1.6672381818617,1.32272731077134,1.34846517746734,16.1376713940175,0.00892825194914591,-196.228712871287,-195.964895598471,1085.88277267287,10,-Infinity,NaN,0,-Infinity,0.0274662288010979,0.0274662288010979,-6.67145922513026E-05,0.228245665225863,25.1,1015.1,38.98,1.81251727303333
+45802,2874.46982950495,457.875269999999,46.7821782178218,0.0265247524752475,0.027320495049505,1.77916831683168,-3.5,561.975247524752,-27.6940594059406,-192.329702970297,20,40,10,32,5306962.73423391,397716.980009949,0,0,0,0,0,0,0,0.0265247524752475,12249.762095462,1.77916831683168,1.90826886213115,1.51547213547706,-3.5,-3.48535979107015,-3.48128921689089,1.90091457577371,1.50811782753892,1.47277995285059,16.3471973066951,0.00108003047771927,-220.023762376238,-219.356994412312,1822.74784423497,10,-Infinity,NaN,0,-Infinity,0.0268506028820703,0.0268506028820703,-0.000114367872430805,0.740302667629399,25.1,1015.1,38.96,2.3408025523974
+45803,2874.46982,457.875269999999,45,0.0230693069306931,0.0237613861386139,1.7929900990099,-3.5,559.772277227723,-38.2118811881188,-196.564356435644,20,40,10,32,5306962.71662742,397716.979697774,0,0,0,0,0,0,0,0.023069306930693,12249.7690072056,1.7929900990099,1.92309358461543,1.52703556880979,-3.5,-3.48535979107015,-3.48180552736358,1.91669735580647,1.52063932231774,1.5367135512358,16.2831154983504,-0.00532815035674837,-234.776237623762,-232.51210665621,2590.43791851713,10,-Infinity,NaN,0,-Infinity,0.0234124105479855,0.0234124105479855,-0.000302257948567138,1.45933199473793,25.1,1015.1,38.94,2.3949360527764
+45804,2874.46981188119,457.875269999999,46.7821782178218,0.0255544554455445,0.0263210891089109,1.85618811881188,-3.5,561.158415841584,-9.79108910891089,-181.095049504951,20,40,10,32,5306962.70158857,397716.979431125,0,0,0,0,0,0,0,0.0255544554455445,12249.775846067,1.85618811881188,1.99087739809476,1.58095520941543,-3.5,-3.48535979107015,-3.48157641639755,1.98379212518658,1.57386991938209,1.58088483550315,16.3234366361852,0.0126003555733914,-190.886138613861,-163.600254876973,3602.87187663821,10,-Infinity,NaN,0,-Infinity,0.0254831879227526,0.0254831879227526,0.000846866864904309,2.47431715808943,25.1,1015.1,38.92,2.54356057859288
+45805,2874.46981118812,457.875270495049,46.7821782178218,0.393970297029703,0.405789405940594,1.68143564356436,-3.5,769.851485148515,3507.1495049505,3041.6702970297,20,40,10,32,5306962.70029382,397716.980024914,0,0,0,0,0,0,0,0.393970297029702,12249.7986677941,1.68143564356436,1.80344448129854,1.45336370539618,-3.5,-3.48535979107015,-3.41303645071126,1.6942776375607,1.34417945054991,1.26209167970596,22.3940719453497,0.0829463406888394,6548.8198019802,6523.85998431526,4265.31013738736,10,-Infinity,Infinity,0,-Infinity,0.59753514361337,0.59753514361337,0.518701870187018,3.75327264814393,25.1,1015.1,38.9,2.19504393387942
 45806,2874.47008069307,457.875118118812,45,3.84471287128713,3.96005425742574,1.20777227722772,-3.5,850.613861386139,5765.03564356436,4724.13366336634,20,40,10,32,5306963.20287562,397716.799101606,0,0,0,0,0,0,0,3.84471287128712,12250.35162676,1.20777227722772,1.2954110116367,1.24811228437921,-3.5,-3.48535979107015,-2.85320221066994,0.345459543385146,0.274075280768752,0.371211543770729,24.7433542404846,-0.00691219505740328,10489.1693069307,10228.1480541123,4919.68859754107,10,289482.738295718,23084.1140726513,0,289482.738295718,3.73929653955494,3.73929653955494,0.923771089980283,5.19686968477067,25.1,1015.1,38.88,1.62943543513878
 45807,2874.47078722772,457.874695643564,45,6.14155445544555,6.32580108910892,1.22770297029703,-3.5,902.920792079208,3083.62277227723,2477.70891089109,20,40,10,32,5306964.52095301,397716.296141112,0,0,0,0,0,0,0,6.14155445544553,12251.7831398238,1.22770297029703,1.31678792163731,1.39678177054814,-3.5,-3.48535979107015,-2.58438875736914,0.45558636553409,0.36144597374449,0.339917642240712,26.2649011774955,0.0475933430514955,5561.33168316832,6077.31102833056,5680.77481231639,10,86010.8891910669,13270.3632690128,0,86010.8891910669,6.14973012449759,6.14973012449759,0.528199849687939,6.79821067051759,25.1,1015.1,38.86,2.07463182263854
 45808,2874.47175564356,457.873935940594,45,8.5839108910891,8.84142821782178,1.99071287128713,-3.5,1075.72772277228,5379.45445544555,4348.5297029703,20,40,10,32,5306966.33157247,397715.381786884,0,0,0,0,0,0,0,8.5839108910891,12253.7903822881,1.99071287128713,2.13516357602736,2.18603670482267,-3.5,-3.48535979107015,-2.70260956322467,0.382846078620381,0.30373642441863,0.396427829794266,31.2916510289284,0.0266407517837418,9727.98415841584,9391.90923438879,6641.88860124443,9.75164545330555,128043.54602534,21323.144953071,0,128043.54602534,8.60791843936868,8.60791843936868,0.851555947673973,8.57051862083762,25.1,1015.1,38.84,4.83413850356787
 45809,2874.47297485149,457.872601980198,45,11.6987326732673,12.0496946534654,2.12205940594059,-3.5,930.009900990099,4948.5801980198,3914.60792079208,20,40,10,32,5306968.61942769,397713.760470383,0,0,0,0,0,0,0,11.6987326732673,12256.6195821781,2.12205940594059,2.27604091734287,2.47644003105183,-3.5,-3.48535979107015,-2.49376501452181,1.10028918280818,0.872930195385477,0.784518655213164,27.0528914140395,-0.0984987795679968,8863.18811881188,8612.95008332517,7834.10580163282,7.73687463450108,77356.7004786692,18478.6775382442,0,77356.7004786692,11.6392953631997,11.6392953631997,0.742112701369145,10.7537416342007,25.1,1015.1,38.82,6.79780726662815
-45810,2874.47418504951,457.870471782178,45,13.7067524752475,14.117955049505,4.07746534653465,-3.5,746.767326732673,2938.00792079208,2388.0099009901,20,40,10,32,5306970.90817777,397711.147197865,0,0,0,0,0,0,0,13.7067524752475,12260.1830572056,4.07746534653465,4.3733356105773,4.25532093618635,-3.5,-3.48535979107015,-2.82984853648652,0.68054140975361,0.539917282716477,0.55806442649163,21.7225809963357,-0.0216006095543853,5326.01782178218,5772.22116459171,7741.88135317999,6.57399425010113,30139.4948266181,11297.9810092192,0,30139.4948266181,13.6878319772571,13.6878319772571,0.452342635253625,13.0510422031348,25.1,1015.1,38.8012623762376,18.3013053563522
+45810,2874.47418504951,457.870471782178,45,13.7067524752475,14.117955049505,4.07746534653465,-3.5,746.767326732673,2938.00792079208,2388.0099009901,20,40,10,32,5306970.90817777,397711.147197865,0,0,0,0,0,0,0,13.7067524752475,12260.1830572056,4.07746534653465,4.3733356105773,4.25532093618635,-3.5,-3.48535979107015,-2.82984853648652,0.68054140975361,0.539917282716477,0.558064426491629,21.7225809963357,-0.0216006095543853,5326.01782178218,5772.22116459171,7741.88135317999,6.57399425010113,30139.4948266181,11297.9810092192,0,30139.4948266181,13.6878319772571,13.6878319772571,0.452342635253625,13.0510422031348,25.1,1015.1,38.8012623762376,18.3013053563522
 45811,2874.4751450495,457.867664851485,45,15.2447623762376,15.7021052475247,5.13512871287129,-3.5,679.153465346535,3758.29306930693,3109.63861386139,20,40,10,32,5306972.74842053,397707.682883737,0,0,0,0,0,0,0,15.2447623762376,12264.2046110835,5.13512871287129,5.50774546348608,5.24344510264386,-3.5,-3.48535979107015,-2.88970827222509,1.30998846919437,1.03929813019521,1.0039882429149,19.7557734943771,0.00921626007653771,6867.93168316832,6840.46489559847,8091.15172744223,5.90957617013393,32087.4318505745,10718.3278291387,0,32087.4318505745,15.2555934712283,15.2555934712283,0.428586794322997,15.2127691721774,25.1,1015.1,38.79,27.6891690200056
 45812,2874.47576306931,457.864291188119,45,16.8942475247525,17.401074950495,5.6440198019802,-3.5,755.10396039604,4490.50495049505,3670.8099009901,20,40,10,32,5306973.96771556,397703.501510729,0,0,0,0,0,0,0,16.8942475247525,12268.6648242298,5.6440198019802,6.05356286051115,5.77102400088717,-3.5,-3.48535979107015,-2.88718619304452,1.40125950763715,1.11170931687756,1.09975680819886,21.9650838395996,0.024984705051239,8161.31485148514,8127.08559945104,8218.23188594533,5.33296209559837,38202.2503452458,12632.3910746139,0,38202.2503452458,16.9068646211156,16.9068646211156,0.504874249801214,17.1559463011011,25.1,1015.1,38.78,33.4398004843255
 45813,2874.47573316832,457.860392079208,116.287128712871,18.8644851485148,19.4304197029703,6.00293069306931,-3.5,852.871287128713,5136.03267326733,4235.32277227723,20,40,9.87128712871287,32,5306973.99844407,397698.644448227,0,0,0,0,0,0,0,18.8644851485148,12273.6298531627,6.00293069306931,6.43851715138159,6.18937885945898,-3.5,-3.48535979107015,-2.86535635648479,1.25211130612156,0.99338045322546,1.03296383016091,24.80902009353,0.0344169712233205,9371.35544554456,9354.48522693854,9326.57618237691,4.77593286105191,44369.3165631405,14405.3921420134,0,44369.3165631405,18.8791528281541,18.8791528281541,0.575628478689456,19.0497304663568,25.1,1015.1,38.77,38.4345181990112
 45814,2874.47494643564,457.856141782178,221.435643564356,20.9524356435644,21.5810087128713,7.02684158415842,-3.5,973.673267326733,5801.40198019802,4721.04158415841,20,40,9.75247524752475,32,5306972.63501789,397693.325141428,0,0,0,0,0,0,0,20.9524356435643,12279.1612048404,7.02684158415842,7.53672537180549,7.18031746105932,-3.5,-3.48535979107015,-2.88879877526983,1.76590710520233,1.40100771548311,1.36337617011108,28.3230072558373,0.0387370931341976,10522.4435643564,10541.1443093814,10323.9194360915,4.29935536613403,51212.1296837631,14951.7443203354,0,51212.1296837631,20.9637048328595,20.9637048328595,0.597391050986285,21.1724735817136,25.1,1015.1,38.76,51.8054872603448
-45815,2874.47350811881,457.851683564356,225,23.3474455445544,24.0478689108911,7.60347524752475,-3.5,1120.89108910891,6465.99603960396,5315.23663366337,20,40,10,32,5306970.06922871,397687.725473932,0,0,0,0,0,0,0,23.3474455445544,12285.3044799229,7.60347524752475,8.15520090008947,7.80828309022913,-3.5,-3.48535979107015,-2.87594095371597,1.73314568765428,1.37501597524957,1.36236487123301,32.6054001020261,0.0441372455227939,11781.2326732673,11711.4575139692,10680.4485044169,3.85925376617591,59221.6905825857,18491.8685449053,0,59221.6905825857,23.3642110577394,23.3642110577394,0.738876362883815,23.4526386377709,25.1,1015.1,38.75,61.1359257859406
+45815,2874.47350811881,457.851683564356,225,23.3474455445544,24.0478689108911,7.60347524752475,-3.5,1120.89108910891,6465.99603960396,5315.23663366337,20,40,10,32,5306970.06922871,397687.725473932,0,0,0,0,0,0,0,23.3474455445544,12285.3044799229,7.60347524752475,8.15520090008947,7.80828309022912,-3.5,-3.48535979107015,-2.87594095371597,1.73314568765428,1.37501597524957,1.36236487123301,32.6054001020261,0.0441372455227939,11781.2326732673,11711.4575139692,10680.4485044169,3.85925376617591,59221.6905825857,18491.8685449053,0,59221.6905825857,23.3642110577394,23.3642110577394,0.738876362883815,23.4526386377709,25.1,1015.1,38.75,61.1359257859406
 45816,2874.47154366337,457.846909108911,225,26.0212079207921,26.8018441584158,8.03954455445545,-3.48782178217822,1263.27227722772,5900.23960396039,4785.48118811881,20,40,10,32,5306966.53583881,397681.714661808,0,0,0,0,0,0,0,26.021207920792,12292.1737684542,8.03954455445545,8.62291239892551,8.33264197638443,-3.48782178217822,-3.47318157324837,-2.84087705251033,1.48623764200593,1.17912793790654,1.16902822022562,36.7471009779839,0.00669618896185942,10685.7207920792,10755.7866483678,10543.1844396617,3.46117977458368,54393.528099077,16452.9277988458,0,54393.528099077,25.9843157533575,25.9843157533575,0.657977431406503,25.8320782619347,25.1,1015.1,38.74,69.7582735710914
 45817,2874.46914623762,457.842142475248,225,28.1660792079208,29.0110615841584,8.4010198019802,-2.75544554455445,1057.84158415842,5243.46336633663,4231.16435643564,20,40,10,32,5306962.20027067,397675.699357805,0,0,0,0,0,0,0,28.1660792079207,12299.7019177392,8.4010198019802,9.01061712183279,8.76364773439782,-2.75544554455445,-2.7408053356246,-2.23018272023269,1.28198699675942,1.01708276064906,1.05511117308009,30.7713643467951,-0.0541455279496591,9474.62772277227,9398.53120282325,9755.1637343849,3.19728216756032,37349.3603673706,15742.3771092845,0,37349.3603673706,28.1920944025095,28.1920944025095,0.630544118768309,28.2542961852456,25.1,1015.1,38.73,77.012512550969
 45818,2874.46651514852,457.836995742574,225,30.5945346534653,31.5123706930693,8.98048514851485,-3.03643564356436,1084.18316831683,4962.08415841584,4038.60099009901,20,40,10,32,5306957.44028031,397669.20297749,0,0,0,0,0,0,0,30.5945346534653,12307.8648074531,8.98048514851485,9.63212980672887,9.39578136773951,-3.03643564356436,-3.0217954346345,-2.4499889563543,1.27231891368179,1.00941244835132,0.999317583589284,31.537609969721,0.0224646339365607,9000.68514851485,9004.35199490246,9099.15381135355,2.94331305577832,33400.0772144482,16962.4671064453,0,33400.0772144482,30.5905037741397,30.5905037741397,0.678198760470105,30.6098250029289,25.1,1015.1,38.72,88.5603994203933
@@ -772,18 +772,18 @@ Time,Lat,Long,Heading,v_veh_GPS,v_veh_CAN,vair_ar,beta_ar,n_eng,tq_l,tq_r,t_amb_
 45820,2874.46056049505,457.825301683168,225,35.5544653465347,36.6210993069307,10.1465445544554,-2.38752475247525,1262.17821782178,4817.12079207921,4135.88118811881,20,40,10,32,5306946.66856328,397654.443072906,0,0,0,0,0,0,0,35.5544653465346,12326.2354176567,10.1465445544554,10.8828011651949,10.6727107501035,-2.38752475247525,-2.37288454354539,-1.91523376797958,1.18154267655557,0.937393819386246,0.953987819148544,36.7152760799071,0.0216726115862332,8953.00198019802,8933.59073620233,8916.5545550414,2.53247630165506,33284.1741572624,17382.8994406171,0,33284.1741572624,35.5494256445446,35.5494256445446,0.695025814462638,35.541504564212,25.1,1015.1,38.7025247524753,114.112734366234
 45821,2874.45721772277,457.818806633663,225,38.027198019802,39.168013960396,10.4074851485149,-2.48772277227723,1349.27722772277,4775.0099009901,4116.76831683168,20,40,10,32,5306940.62010611,397646.244019015,0,0,0,0,0,0,0,38.0271980198019,12336.4586027227,10.4074851485149,11.1626762089436,11.0363304806405,-2.48772277227723,-2.47308256334737,-1.98412641692338,0.956198523059757,0.758613804992187,0.754120475317716,39.2488835765728,0.0264967477200459,8891.77821782178,8898.79452014508,8894.90284605241,2.3676620175762,33039.4023336993,17417.1033179442,0,33039.4023336993,38.031842662484,38.031842662484,0.696330152817258,38.0356618847711,25.1,1015.1,38.71,122.008590329887
 45822,2874.45363544554,457.811874950495,225,40.5096435643564,41.7249328712871,10.1274851485149,-2.01584158415842,1434.83168316832,4775.54653465347,4056.44158415842,20,40,10,32,5306934.13766332,397637.493273746,0,0,0,0,0,0,0,40.5096435643564,12347.3740584982,10.1274851485149,10.8623587649211,10.9403882042148,-2.01584158415842,-2.00120137522856,-1.56740312818747,1.30907266391765,1.03857156295122,1.00910818854411,41.7375618053654,0.0262807416245021,8831.98811881189,8832.12476227821,8819.2744019356,2.2223628959493,32761.0607922262,16958.736758482,0,32761.0607922262,40.517513381041,40.517513381041,0.677998616693348,40.5063363272835,25.1,1015.1,38.72,120.84768590217
-45823,2874.44982643564,457.804500891089,225,42.950495049505,44.2390099009901,10.6548712871287,-1.40415841584158,1522.61386138614,4707.78118811881,3976.69207920792,20,40,10,32,5306927.24502296,397628.184101054,0,0,0,0,0,0,0,42.9504950495049,12358.9702229922,10.6548712871287,11.4280132547833,11.5291830536706,-1.40415841584158,-1.38951820691173,-1.0762521993825,1.40195806405032,1.11226352662147,1.00689845574527,44.2910418628211,0.0360010159239754,8684.47326732673,8679.71372414469,8658.64550396967,2.09597506690132,32238.2726666672,16662.4272846601,0,32238.2726666672,42.9430859719635,42.9430859719635,0.666014497489352,42.9362736416003,25.1,1015.1,38.73,134.121009048415
-45824,2874.44574683168,457.796784554455,225,45.3139900990099,46.6734098019802,11.6528415841584,-1.24009900990099,1606.18811881188,4505.24653465346,3890.99108910891,20,40,10,32,5306919.85872865,397618.439722858,0,0,0,0,0,0,0,45.3139900990098,12371.2347625687,11.6528415841584,12.4983985719774,12.5140053122415,-1.24009900990099,-1.22545880097113,-0.977490193184944,0.972938620603546,0.771894801341143,0.968915150440881,46.7221184661353,0.0177124998345959,8396.23762376238,8388.97640427409,8373.51838741598,1.98655900693393,31167.8307519201,15969.5059927864,0,31167.8307519201,45.3023369277521,45.3023369277521,0.638544423749303,45.2849660863638,25.1,1015.1,38.74,156.949676043611
+45823,2874.44982643564,457.804500891089,225,42.950495049505,44.2390099009901,10.6548712871287,-1.40415841584158,1522.61386138614,4707.78118811881,3976.69207920792,20,40,10,32,5306927.24502296,397628.184101054,0,0,0,0,0,0,0,42.9504950495049,12358.9702229922,10.6548712871287,11.4280132547833,11.5291830536706,-1.40415841584158,-1.38951820691173,-1.0762521993825,1.40195806405032,1.11226352662148,1.00689845574527,44.2910418628211,0.0360010159239754,8684.47326732673,8679.71372414469,8658.64550396967,2.09597506690132,32238.2726666672,16662.4272846601,0,32238.2726666672,42.9430859719635,42.9430859719635,0.666014497489352,42.9362736416003,25.1,1015.1,38.73,134.121009048415
+45824,2874.44574683168,457.796784554455,225,45.3139900990099,46.6734098019802,11.6528415841584,-1.24009900990099,1606.18811881188,4505.24653465346,3890.99108910891,20,40,10,32,5306919.85872865,397618.439722858,0,0,0,0,0,0,0,45.3139900990098,12371.2347625687,11.6528415841584,12.4983985719774,12.5140053122415,-1.24009900990099,-1.22545880097113,-0.977490193184943,0.972938620603546,0.771894801341143,0.968915150440881,46.7221184661353,0.0177124998345959,8396.23762376238,8388.97640427409,8373.51838741598,1.98655900693393,31167.8307519201,15969.5059927864,0,31167.8307519201,45.3023369277521,45.3023369277521,0.638544423749303,45.2849660863638,25.1,1015.1,38.74,156.949676043611
 45825,2874.44145465346,457.788668811881,225,47.5322475247525,48.9582149504951,11.5195148514852,-0.868910891089109,1685.61386138614,4291.41089108911,3715.60297029703,20,40,10,32,5306912.08751823,397608.190891793,0,0,0,0,0,0,0,47.5322475247524,12384.1346870736,11.5195148514852,12.3553973449191,12.5277635810671,-0.868910891089109,-0.854270682159251,-0.67184967488615,1.45217474219347,1.15210364806231,1.07045366286291,49.0325196640724,0.0270727639748295,8007.01386138614,8006.38373688854,8023.65555539515,1.89379151036112,29736.6057719597,15097.1071475467,0,29736.6057719597,47.5294595627879,47.5294595627879,0.603521985861958,47.5168313302805,25.1,1015.1,38.75,157.99540120244
 45826,2874.43692742574,457.780219207921,225,49.6451089108911,51.1344621782178,11.7755462046139,-1.02663366336634,1757.9900990099,4152.52871287129,3587.06732673267,20,40,10,32,5306903.88831334,397597.518497137,0,0,0,0,0,0,0,49.645108910891,12397.6379407865,11.7755462046139,12.6300069219236,12.8669184294961,-1.02663366336634,-1.01199345443648,-0.801923015966343,1.56655270343709,1.24284704317718,1.31564872413902,51.1378590753065,0.0156244409110053,7739.59603960396,7743.39800019606,7756.82553078584,1.8131272914569,28700.8751977421,14225.9583487955,0,28700.8751977421,49.6409517694343,49.6409517694343,0.568829036368981,49.6297215075803,25.1,1015.1,38.76,166.217091226866
 45827,2874.43220326733,457.771417425743,225,51.6529900990099,53.2025798019802,12.7948118811683,0.161782178217822,1830.59405940594,4076.47821782178,3521.73465346535,20,40,10,32,5306895.33213054,397586.400975541,0,0,0,0,0,0,0,51.6529900990098,12411.7108845433,12.7948118811683,13.7232328603618,13.8494448321164,0.161782178217822,0.176422387147679,0.115429676742099,1.6998196594619,1.34857629306789,1.33294158204108,53.2498226734705,0.0210245932996017,7598.21287128713,7589.31283207529,7572.26646518208,1.74261893396312,28200.0437039766,13672.757290775,0,28200.0437039766,51.6456546417017,51.6456546417017,0.54662941541679,51.6372902345755,25.1,1015.1,38.77,194.521181655472
 45828,2874.42729653465,457.762268712871,225,53.5436039603961,55.1499120792079,13.2520297029703,-0.417029702970297,1898.93564356436,3833.98712871287,3473.20792079208,20,40,10,32,5306886.44544945,397574.845330668,0,0,0,0,0,0,0,53.5436039603959,12426.3281674091,13.2520297029703,14.2136274589515,14.3468703129216,-0.417029702970297,-0.40238949404044,-0.30859736344437,1.37292707098992,1.08923137212935,1.03011905229906,55.2377987727925,0.0254167172423267,7307.19504950495,7305.98823644741,7286.28010020854,1.68104044793291,27138.711812622,12651.623787238,0,27138.711812622,53.5396897363003,53.5396897363003,0.505725201232995,53.5334949840675,25.1,1015.1,38.78,206.765437199585
 45829,2874.42226415842,457.752729108911,225,55.3293564356435,56.9892371287129,14.4514158415842,0.418811881188119,1951.09900990099,3227.93663366336,3128.22871287129,20,40,10,32,5306877.33470032,397562.798680391,0,0,0,0,0,0,0,55.3293564356435,12441.4542425741,14.4514158415842,15.5000438144677,15.4697449453946,0.418811881188119,0.433452090117976,0.337972990853133,0.999829798977005,0.793229303177995,0.835988019697076,56.7551695919562,-0.0275767781977652,6356.16534653465,6594.83845701402,6662.1779111642,1.62676221115447,23498.2581894679,11554.248063978,0,23498.2581894679,55.3087719831388,55.3087719831388,0.462522737422257,55.2869074681609,25.1,1015.1,38.79,239.578557490127
 45830,2874.41712,457.742844950495,225,56.8740594059406,58.5802811881188,15.3966435643564,-0.811980198019802,1524.25247524752,3427.98712871287,3326.7603960396,20,40,10,32,5306868.02453732,397550.319187199,0,0,0,0,0,0,0,56.8740594059405,12457.0407839933,15.3966435643564,16.5138594349041,16.3627941481308,-0.811980198019802,-0.797339989089944,-0.635237252763,1.29778636228059,1.02961741376286,1.02048655683977,44.3387072079045,-0.111603149364324,6754.74752475248,6533.29473581021,6502.21234057338,1.58256791197009,19024.1558936965,11166.1421777862,0,19024.1558936965,56.8924251543966,56.8924251543966,0.447885011273398,56.9024798587648,25.1,1015.1,38.7936881188119,268.249243446411
-45831,2874.41182356436,457.732695742574,225,58.5212871287128,60.2769257425743,15.6536237623762,0.00405940594059404,1501.82178217822,3351.88613861386,3151.69801980198,20,40,10,32,5306858.43819368,397537.504535492,0,0,0,0,0,0,0,58.5212871287128,12473.074125715,15.6536237623762,16.7894867071673,16.6759299297216,0.00405940594059404,0.0186996148704515,0.0225370319377389,1.23067726609351,0.97637545032083,0.979140373983891,43.6862247952983,0.014688414496982,6503.58415841584,6501.77285560239,6503.43356823692,1.53799665986904,17478.0283358727,10970.1003065882,0,17478.0283358727,58.515903440839,58.515903440839,0.438662059275236,58.5116863294973,25.1,1015.1,38.76,278.523823615585
+45831,2874.41182356436,457.732695742574,225,58.5212871287128,60.2769257425743,15.6536237623762,0.00405940594059404,1501.82178217822,3351.88613861386,3151.69801980198,20,40,10,32,5306858.43819368,397537.504535492,0,0,0,0,0,0,0,58.5212871287128,12473.074125715,15.6536237623762,16.7894867071673,16.6759299297216,0.00405940594059404,0.0186996148704515,0.022537031937739,1.23067726609351,0.97637545032083,0.979140373983891,43.6862247952983,0.014688414496982,6503.58415841584,6501.77285560239,6503.43356823692,1.53799665986904,17478.0283358727,10970.1003065882,0,17478.0283358727,58.515903440839,58.515903440839,0.438662059275236,58.5116863294973,25.1,1015.1,38.76,278.523823615585
 45832,2874.40640267327,457.72223039604,225,60.1124059405941,61.9157781188119,16.9340891089109,-0.171485148514852,1532.84158415842,3410.06138613861,3063.95940594059,20,40,10,32,5306848.62833743,397524.292007724,0,0,0,0,0,0,0,60.1124059405939,12489.5497886138,16.9340891089109,18.1628655644198,17.8565387161931,-0.171485148514852,-0.156844939584994,-0.129015335481841,1.78431883682209,1.41561492668845,1.34671162952584,44.5885542584168,0.014616412465134,6474.02079207921,6469.10786197432,6466.57964456538,1.49730123426562,17288.4422740983,11287.0630318005,0,17288.4422740983,60.1128023723164,60.1128023723164,0.451341916369863,60.1099801042689,25.1,1015.1,38.72,319.227254896861
 45833,2874.40080306931,457.711523960396,225,61.6520792079208,63.5016415841584,17.3323168316832,-0.536435643564356,1571.59405940594,3393.4603960396,2973.66435643564,20,40,10,32,5306838.49280707,397510.773286177,0,0,0,0,0,0,0,61.6520792079207,12506.4699954619,17.3323168316832,18.5899896067122,18.2835371100687,-0.536435643564356,-0.521795434634499,-0.421781720069896,1.79798097958225,1.42645398348856,1.43859625015729,45.7158180690284,0.00331209346500574,6367.12475247525,6368.20003921184,6366.2261543691,1.45987500810078,16996.0805178104,10364.7596216237,0,16996.0805178104,61.660874914224,61.660874914224,0.41455903016043,61.6627138716629,25.1,1015.1,38.68,334.68985474512
-45834,2874.39500831683,457.700632574257,225,63.1676534653465,65.0626830693069,17.4961188118812,0.51019801980198,1608.4801980198,3302.61782178218,2933.88415841584,20,40,10,32,5306827.9999179,397497.01774473,0,0,0,0,0,0,0,63.1676534653465,12523.8098605059,17.4961188118812,18.7656774353511,18.5105700496122,0.51019801980198,0.524838228731837,0.422228731998649,1.57201831358357,1.24718326333423,1.27917529090284,46.7887923476265,0.0141123982421984,6236.50198019802,6235.88959905892,6236.74099626453,1.42484029625996,16629.3924653544,10261.2989180644,0,16629.3924653544,63.1633537888441,63.1633537888441,0.410316526702178,63.1586910914489,25.1,1015.1,38.64,342.943276352704
+45834,2874.39500831683,457.700632574257,225,63.1676534653465,65.0626830693069,17.4961188118812,0.51019801980198,1608.4801980198,3302.61782178218,2933.88415841584,20,40,10,32,5306827.9999179,397497.01774473,0,0,0,0,0,0,0,63.1676534653465,12523.8098605059,17.4961188118812,18.7656774353511,18.5105700496122,0.51019801980198,0.524838228731837,0.42222873199865,1.57201831358357,1.24718326333423,1.27917529090284,46.7887923476265,0.0141123982421984,6236.50198019802,6235.88959905892,6236.74099626453,1.42484029625996,16629.3924653544,10261.2989180644,0,16629.3924653544,63.1633537888441,63.1633537888441,0.410316526702178,63.1586910914489,25.1,1015.1,38.64,342.943276352704
 45835,2874.38911128713,457.689429009901,225,64.6010198019802,66.5390503960396,18.0573465346535,1.03792079207921,1645.05445544554,3229.55544554455,2871.81188118812,20,40,10,32,5306817.32451733,397482.869978608,0,0,0,0,0,0,0,64.6010198019801,12541.5578623486,18.0573465346535,19.3676291325566,19.0693985676034,1.03792079207921,1.05256100100907,0.84786384553264,1.83531845699171,1.45607620640913,1.41298143735544,47.8526943702119,0.00878424788545001,6101.36732673267,6099.12823252623,6098.53269429749,1.39322319879627,16270.0857517331,9926.09892626449,0,16270.0857517331,64.6057942358591,64.6057942358591,0.396959993029015,64.6053806684654,25.1,1015.1,38.6,364.19858429654
 45836,2874.38307594059,457.677985247525,225,66.0169702970297,67.9974794059406,18.2450693069307,1.20059405940594,1681.39108910891,3119.18811881188,2838.67920792079,20,40,10,32,5306806.39825697,397468.418446941,0,0,0,0,0,0,0,66.0169702970296,12559.7038479647,18.2450693069307,19.5689735009677,19.310687339626,1.20059405940594,1.2152342683358,0.977927056873778,1.6745876600721,1.32855812466138,1.34499017828567,48.9096841977398,0.0170644815479644,5957.86732673267,5958.81099892168,5959.11308675879,1.36333013152478,15889.2954296917,9448.61183349858,0,15889.2954296917,66.0115033820213,66.0115033820213,0.377780228517891,66.0092005481812,25.1,1015.1,38.56,373.347067486174
 45837,2874.37687247525,457.666357821782,225,67.3963861386138,69.4182777227723,18.2662178217822,1.30247524752475,1716.4900990099,3042.23663366337,2791.47920792079,20,40,10,32,5306795.16468387,397453.732577232,0,0,0,0,0,0,0,67.3963861386138,12578.2323976346,18.2662178217822,19.5916566007001,19.4078017952748,1.30247524752475,1.31711545645461,1.05277194410828,1.41947313702964,1.12615936084117,1.16502435006348,49.9306730093437,0.016128455133941,5833.71584158416,5836.02927164003,5836.57865582548,1.33543275384866,15558.660181606,9462.98768423017,0,15558.660181606,67.3780849916674,67.3780849916674,0.378364321580668,67.3752755965821,25.1,1015.1,38.52,376.958881655513
@@ -802,7 +802,7 @@ Time,Lat,Long,Heading,v_veh_GPS,v_veh_CAN,vair_ar,beta_ar,n_eng,tq_l,tq_r,t_amb_
 45850,2874.2866639604,457.494921485149,225,81.9906831683168,84.4504036633664,23.5029504950495,0.63980198019802,1785.32178217822,2423.3801980198,2228.21386138614,20,40,10,32,5306631.86657748,397237.236931851,0,0,0,0,0,0,0,81.9906831683167,12849.6744854509,23.5029504950495,25.2083786416458,24.7004950125244,0.63980198019802,0.654442189127877,0.526193482538842,2.83986299576022,2.25304601598463,2.13657404831019,51.9329055109715,-0.00446412597457296,4651.59405940594,4616.85745515146,4611.33608865474,1.09770161937881,10606.9692967777,6225.01290157737,0,10606.9692967777,81.9816523870207,81.9816523870207,0.249037403740379,81.9814339177036,25.1,1015.09873762376,39.0924257425743,610.805140469683
 45851,2874.27911514851,457.480398415842,225,82.818,85.3025400000001,22.8897623762376,-0.157623762376238,1797.15841584158,2031.39306930693,1871.16237623762,20,40,10,32,5306618.20578504,397218.899214109,0,0,0,0,0,0,0,82.8179999999999,12872.5715639988,22.8897623762376,24.550696182551,24.2268121665555,-0.157623762376238,-0.14298355344638,-0.112946617359615,2.09395689899107,1.66127072184777,1.77547501148788,52.2772192272684,0.000288008127391804,3902.55544554455,3905.72724242721,3906.5947497502,1.08672858647945,8868.02001344099,4962.3664816772,0,8868.02001344099,82.8061245956278,82.8061245956278,0.198492250215115,82.804230992824,25.1,1015.09,39.11,587.528343684258
 45852,2874.27147415842,457.465767029703,225,83.3881287128713,85.8897725742574,23.414504950495,0.576732673267327,1808.82673267327,1635.94653465347,1527.84356435644,20,40,10,32,5306604.37670774,397200.423456757,0,0,0,0,0,0,0,83.3881287128712,12895.6621037127,23.414504950495,25.1135152849467,24.7060431744295,0.576732673267327,0.591372882197185,0.482597834771453,2.397653501293,1.90221277465312,1.88378061412959,52.6166368053997,0.004392123942725,3163.7900990099,3177.01936084698,3179.61900263421,1.07929368497067,7186.58845701328,3230.86905539546,0,7186.58845701328,83.3843440839132,83.3843440839132,0.129198934744948,83.3832396221273,25.1,1015.08,39.12,610.972428399107
-45853,2874.2637770297,457.451068019802,225,83.7975643564356,86.3114912871287,20.6932574257426,0.0635643564356435,1817.64851485149,1417.93663366337,1358.92376237624,20,40,10,32,5306590.44520149,397181.861530876,0,0,0,0,0,0,0,83.7975643564356,12918.8849464245,20.6932574257426,22.1948077807101,22.4133988303703,0.0635643564356435,0.0782045653655004,0.0682184555350381,1.78979267635299,1.41995767574558,1.42956195757241,52.8732520469057,0.00403211378348525,2776.8603960396,2784.5845897461,2785.4586055759,1.07401917211395,6307.5470052604,2559.94202961254,0,6307.5470052604,83.794279874522,83.794279874522,0.102364691914753,83.7939888103445,25.1,1015.07,39.13,503.014065208748
+45853,2874.2637770297,457.451068019802,225,83.7975643564356,86.3114912871287,20.6932574257426,0.0635643564356435,1817.64851485149,1417.93663366337,1358.92376237624,20,40,10,32,5306590.44520149,397181.861530876,0,0,0,0,0,0,0,83.7975643564356,12918.8849464245,20.6932574257426,22.1948077807101,22.4133988303703,0.0635643564356435,0.0782045653655004,0.068218455535038,1.78979267635299,1.41995767574558,1.42956195757241,52.8732520469057,0.00403211378348525,2776.8603960396,2784.5845897461,2785.4586055759,1.07401917211395,6307.5470052604,2559.94202961254,0,6307.5470052604,83.794279874522,83.794279874522,0.102364691914753,83.7939888103445,25.1,1015.07,39.13,503.014065208748
 45854,2874.25603861386,457.436317722772,225,84.1075940594059,86.6308218811881,22.3479702970297,2.05128712871287,1822.38613861386,1293.93267326733,1249.33663366337,20,40,10,32,5306576.4384145,397163.234272813,0,0,0,0,0,0,0,84.1075940594058,12942.2091537677,22.3479702970297,23.9695904239104,23.8393679718036,2.05128712871287,2.06592733764273,1.64696700814289,1.95721993385521,1.55278849048763,1.48620230302496,53.0110639358627,7.20020318479523E-05,2543.26930693069,2545.62587001275,2545.28526880726,1.07005900933075,5770.52009761396,1970.23770667491,0,5770.52009761396,84.120069208901,84.120069208901,0.0788089947608362,84.1195884149162,25.1,1015.06,39.14,569.842239357178
 45855,2874.24826336634,457.421530495049,225,84.384099009901,86.915621980198,23.705396039604,1.64811881188119,1827.71287128713,1148.83465346535,1156.55346534653,20,40,10,32,5306562.36428163,397144.559709797,0,0,0,0,0,0,0,84.3840990099009,12965.6119412815,23.705396039604,25.4255141005542,25.010611489357,1.64811881188119,1.66275902081104,1.34396456010561,2.38411205679098,1.89146947554627,1.89284328640969,53.1660123083996,7.20020318479517E-05,2305.38811881188,2304.45190667582,2305.0749749501,1.06655330819243,5229.01692219566,1410.62220501852,0,5229.01692219566,84.3686462111557,84.3686462111557,0.0564242067771261,84.3684271834392,25.1,1015.05,39.15,626.169006779913
 45856,2874.2404539604,457.406728415842,225,84.5427722772277,87.0790554455445,22.3590594059406,0.65990099009901,1830.0099009901,1010.6603960396,1097.67128712871,20,40,10,32,5306548.2272648,397125.865429381,0,0,0,0,0,0,0,84.5427722772276,12989.075196562,22.3590594059406,23.9814841840697,23.8738784742688,0.65990099009901,0.674541199028867,0.548587188064242,1.78360375660701,1.41504760754943,1.44330290832275,53.2328301939544,0.000648018286631557,2108.33168316832,2114.252357612,2114.59794172208,1.06455216997685,4778.81377827035,1101.36558703444,0,4778.81377827035,84.5400550926378,84.5400550926378,0.0440493306756397,84.5408524201684,25.1,1015.04,39.16,571.149232814034
@@ -810,21 +810,21 @@ Time,Lat,Long,Heading,v_veh_GPS,v_veh_CAN,vair_ar,beta_ar,n_eng,tq_l,tq_r,t_amb_
 45858,2874.22484356436,457.376987029703,225,84.7665148514851,87.3095102970297,20.6331133112871,-0.536930693069307,1835.55445544554,882.860396039604,970.180198019802,20,40,10,32,5306519.9720476,397088.305949654,0,0,0,0,0,0,0,84.766514851485,13036.1149817105,20.6331133112871,22.1302994709735,22.4177757966907,-0.536930693069307,-0.52229048413945,-0.409405905982058,2.34264309433587,1.85856947974154,1.74975484235472,53.3941147452938,0.00136803860511107,1853.04059405941,1846.40041172434,1846.14556341348,1.06174022868922,4201.97538224722,436.337604957317,0,4201.97538224722,84.7703638858934,84.7703638858934,0.0174424620679847,84.7701461574728,25.1,1015.02,39.18,504.361776796298
 45859,2874.21703861386,457.362094752475,225,84.8431089108911,87.3884021782178,21.9747722772277,0.351089108910891,1837.93564356436,833.216831683169,906.619801980198,20,40,10,32,5306505.84546728,397069.499195928,0,0,0,0,0,0,0,84.843108910891,13059.6709585257,21.9747722772277,23.5693122974062,23.5644744484861,0.351089108910891,0.365729317840748,0.292772563239286,1.36208794812873,1.08063199863294,1.21282476824364,53.4633806999316,0.00676819099370739,1739.83663366337,1744.44400548966,1745.0697689769,1.06078173453599,3947.10320715293,453.170419915517,0,3947.10320715293,84.8349955886676,84.8349955886676,0.0180714853663681,84.8347711456858,25.1,1015.01,39.19,555.69028725392
 45860,2874.20923792079,457.347159306931,225,84.8866633663366,87.4332632673267,21.2713888889109,0.385346534653466,1838.35148514851,844.524752475247,893.356435643565,20,40,10,32,5306491.72779284,397050.638722793,0,0,0,0,0,0,0,84.8866633663365,13083.2440997248,21.2713888889109,22.8148897925947,22.9676080314379,0.385346534653466,0.399986743583323,0.308237709389608,2.25587093546689,1.78972754365871,1.7269391864434,53.475477041282,-0.00813622959881845,1737.88118811881,1729.14744632879,1728.59239981141,1.06023812948549,3941.45576060053,261.682223027734,0,3941.45576060053,84.8865362219389,84.8865362219389,0.0105340979642444,84.8862596888259,25.1,1015.00252475248,39.1962128712871,529.839103811276
-45861,2874.20143168317,457.332214059406,225,84.9304356435644,87.4783487128713,22.2760198019802,0.0744554455445544,1837.70792079208,804.248514851485,852.49207920792,20,40,10,32,5306477.60012645,397031.765765109,0,0,0,0,0,0,0,84.9304356435643,13106.8274989272,22.2760198019802,23.8924190354482,23.8257400815981,0.0744554455445544,0.0890956544744124,0.0766074549913805,1.50697482177608,1.19558007673635,1.18913694196899,53.4567565130016,-0.00576016254783607,1656.74059405941,1666.7686599353,1667.35239981141,1.0596914295273,3753.96495234195,247.23345959978,0,3753.96495234195,84.9231594941671,84.9231594941671,0.00993638967855861,84.9229175860442,25.1,1015.01,39.18,568.325553463868
+45861,2874.20143168317,457.332214059406,225,84.9304356435644,87.4783487128713,22.2760198019802,0.0744554455445544,1837.70792079208,804.248514851485,852.49207920792,20,40,10,32,5306477.60012645,397031.765765109,0,0,0,0,0,0,0,84.9304356435643,13106.8274989272,22.2760198019802,23.8924190354482,23.8257400815981,0.0744554455445544,0.0890956544744124,0.0766074549913806,1.50697482177608,1.19558007673635,1.18913694196899,53.4567565130016,-0.00576016254783607,1656.74059405941,1666.7686599353,1667.35239981141,1.0596914295273,3753.96495234195,247.23345959978,0,3753.96495234195,84.9231594941671,84.9231594941671,0.00993638967855861,84.9229175860442,25.1,1015.01,39.18,568.325553463868
 45862,2874.19362158416,457.317264158416,225,84.952603960396,87.5011820792079,20.9000154017822,-0.161287128712871,1838.34158415842,801.710891089109,876.879207920792,20,40,10,32,5306463.46547161,397012.886791042,0,0,0,0,0,0,0,84.9526039603959,13130.4219731847,20.9000154017822,22.4165685910511,22.6559512838162,-0.161287128712871,-0.146646919783014,-0.105640276175124,2.26614157434813,1.79787590224063,1.79001894628403,53.4751890331547,0.0086402438217541,1678.5900990099,1674.984119204,1674.51364450731,1.05941460456825,3804.04680992596,86.4052488997605,0,3804.04680992596,84.9501349867659,84.9501349867659,0.00338610593733802,84.9497615275812,25.1,1015.02,39.16,515.390869229076
 45863,2874.18581910891,457.30229970297,225,84.9764554455446,87.5257491089109,20.0479504951485,-0.337425742574257,1839.69306930693,757.147524752475,871.371287128713,20,40,10,32,5306449.34532298,396993.989848132,0,0,0,0,0,0,0,84.9764554455444,13154.0202274476,20.0479504951485,21.5026758949743,21.9319617316279,-0.337425742574257,-0.3227855336444,-0.243132463503615,2.77089362970501,2.19832818077649,2.29824631968289,53.5145021425437,-0.00525614832490042,1628.51881188119,1632.83326144496,1633.22066006601,1.05911834103677,3691.90078847882,276.478602714432,0,3691.90078847882,84.9711628271737,84.9711628271737,0.0111018527595384,84.9710797736915,25.1,1015.03,39.14,482.700295875621
 45864,2874.17800980198,457.287340990099,225,84.984099009901,87.533621980198,19.2353905388119,-0.53950495049505,1838.60891089109,751.707920792079,866.661386138614,20,40,10,32,5306435.21245283,396975.099739238,0,0,0,0,0,0,0,84.9840990099009,13177.6281589933,19.2353905388119,20.6311547192526,21.2414891231131,-0.53950495049505,-0.524864741565192,-0.402109688817535,3.2698330904864,2.59416895408469,2.56083105333821,53.4829652525942,-0.00280807924207008,1618.36930693069,1619.16336633663,1619.27771805752,1.05902419071933,3666.56107974474,147.054976211326,0,3666.56107974474,84.98730516616,84.98730516616,0.00590492217537558,84.9878082036774,25.1,1015.04,39.12,452.220272534476
 45865,2874.17019237624,457.272387227723,225,85.0080891089109,87.5583317821782,21.8488250826733,-0.161683168316832,1840.9603960396,786.066336633663,841.970297029703,20,40,10,32,5306421.06449455,396956.215435146,0,0,0,0,0,0,0,85.0080891089108,13201.2413899064,21.8488250826733,23.4342260847262,23.4658513671407,-0.161683168316832,-0.147042959386974,-0.101895764236979,2.19516319654371,1.74156418876289,1.63044057705311,53.5513671828498,0.00712820115294714,1628.03663366337,1625.37457112048,1624.96486562942,1.05872343856803,3692.37237806009,143.247559727408,0,3692.37237806009,85.0140769532398,85.0140769532398,0.00567210186365407,85.0143038189532,25.1,1015.05,39.1,553.180327616816
 45866,2874.16239049505,457.257406336634,225,85.0251782178218,87.5759335643564,21.6670891089109,-0.471089108910891,1841.63861386139,762.163366336633,820.578217821782,20,40,10,32,5306406.94599448,396937.297762203,0,0,0,0,0,0,0,85.0251782178217,13224.8575931517,21.6670891089109,23.2393029307003,23.3133858788583,-0.471089108910891,-0.456448899981034,-0.358498792344312,1.68409685687905,1.33610238225871,1.50087720011959,53.5710957395761,0.00244806908283033,1582.74158415842,1584.99988236447,1585.12115040075,1.05851013234418,3590.02500119611,41.7543767239589,0,3590.02500119611,85.031665228899,85.031665228899,0.00165016501651735,85.0316156529938,25.1,1015.06,39.08,544.674124226734
 45867,2874.1546019802,457.242397128713,225,85.0554356435643,87.6070987128713,18.9357541253465,-1.1660396039604,1841.4603960396,762.573267326733,807.524752475248,20,40,10,32,5306392.85294461,396918.345168483,0,0,0,0,0,0,0,85.0554356435643,13248.478606683,18.9357541253465,20.3097759984384,20.9902987938169,-1.1660396039604,-1.15139939503054,-0.885304942393607,3.53009978334629,2.80065526568384,2.58792706663414,53.5659115932831,-0.00993628039501722,1570.09801980198,1572.32835996471,1572.45738802452,1.05813354675237,3560.15375501613,312.548513142362,0,3560.15375501613,85.054982354671,85.054982354671,0.0125831890119569,85.0550845827439,25.1,1015.07,39.06,440.860939928963
-45868,2874.14678257426,457.227418910891,225,85.1025742574257,87.6556514851485,19.7770104507921,-0.0873267326732674,1842.42079207921,744.770297029703,812.289108910891,20,40,10,32,5306378.7020452,396899.430059631,0,0,0,0,0,0,0,85.1025742574256,13272.1119596258,19.7770104507921,21.2120758178155,21.7087371945903,-0.0873267326732674,-0.0726865237434098,-0.0492168508239237,2.98283339112988,2.36647362857449,2.39544399192709,53.5938483816401,0.00748821131218689,1557.05940594059,1545.57907067934,1544.63709570957,1.05754754170946,3530.19859519434,427.169420062009,0,3530.19859519434,85.1048323693754,85.1048323693754,0.017025836246987,85.1050766619518,25.1,1015.08,39.04,472.750342990223
+45868,2874.14678257426,457.227418910891,225,85.1025742574257,87.6556514851485,19.7770104507921,-0.0873267326732674,1842.42079207921,744.770297029703,812.289108910891,20,40,10,32,5306378.7020452,396899.430059631,0,0,0,0,0,0,0,85.1025742574256,13272.1119596258,19.7770104507921,21.2120758178155,21.7087371945903,-0.0873267326732674,-0.0726865237434098,-0.0492168508239236,2.98283339112988,2.36647362857449,2.39544399192709,53.5938483816401,0.00748821131218689,1557.05940594059,1545.57907067934,1544.63709570957,1.05754754170946,3530.19859519434,427.169420062009,0,3530.19859519434,85.1048323693754,85.1048323693754,0.017025836246987,85.1050766619518,25.1,1015.08,39.04,472.750342990223
 45869,2874.13894287129,457.212456336634,225,85.1642376237624,87.7191647524753,19.6540863585148,-1.01881188118812,1843.88118811881,627.190099009901,702.341584158416,20,40,10,32,5306364.51326143,396880.533670988,0,0,0,0,0,0,0,85.1642376237623,13295.7623849284,19.6540863585148,21.0802320706673,21.6073475571466,-1.01881188118812,-1.00417167225826,-0.769423062830372,2.95876899799027,2.34738179732374,2.37620005521536,53.6363295804303,-0.00309608736946189,1329.53168316832,1338.16474855406,1338.34683639792,1.05678183321192,3014.34705449575,41.5728024449898,0,3014.34705449575,85.1580653857464,85.1580653857464,0.00168828764065564,85.1574825082508,25.1,1015.09,39.02,467.782767353572
 45870,2874.13111732673,457.197472673267,225,85.1347425742575,87.6887848514852,19.4982167216832,-1.32891089108911,1841.09900990099,578.286138613861,585.768316831683,20,40,10,32,5306350.35123431,396861.611390075,0,0,0,0,0,0,0,85.1347425742572,13319.4139277502,19.4982167216832,20.9130521744744,21.473136192517,-1.32891089108911,-1.31427068215925,-1.0253463314448,3.22536141551587,2.55888671326318,2.57231526581663,53.5553992966333,-0.00993628039501722,1164.05445544554,1170.73763356534,1171.44986327204,1.05714787418264,2636.20242328103,-248.393809152777,0,2636.20242328103,85.1302402705616,85.1302402705616,-0.00985469834113533,85.1302087694482,25.0987376237624,1015.09873762376,38.9974752475247,462.511009117234
 45871,2874.12326079208,457.182515049505,225,85.0839108910891,87.6364282178218,18.6626215623762,-0.894158415841585,1840.5,607.086138613861,591.050495049505,20,40,10,32,5306336.13128394,396842.720423984,0,0,0,0,0,0,0,85.083910891089,13343.0562239548,18.6626215623762,20.0168243084722,20.7595896016234,-0.894158415841585,-0.879518206911725,-0.675765380478222,3.79847990168897,3.01357847969248,3.0047317884911,53.5379748049261,0.0183605181212275,1198.13663366337,1199.79004019214,1200.16481848185,1.05777954975734,2714.15259911359,-326.354161665798,0,2714.15259911359,85.0877982550729,85.0877982550729,-0.0132040431765704,85.0878037718056,25.09,1015.1,38.96,430.973778459408
 45872,2874.11538623762,457.16759980198,225,85.050405940594,87.6019181188119,20.9481710674257,-0.360594059405941,1840.73762376238,655.70499499505,655.583547648515,20,40,10,32,5306321.87707162,396823.881550659,0.574257425742574,0.574257425742574,1523596.0385714,113937.471429966,0.948816033365553,0,0,85.0504059405939,13366.685286166,20.9481710674257,22.4682185425556,22.7021040628718,-0.360594059405941,-0.345953850476083,-0.276679680458291,3.20128807872721,2.53978778644025,2.4572398066079,53.5448869999835,-0.00972027429947337,1311.28854264356,1308.87729382524,1308.48506521006,1.05819613204599,2971.60257331026,-225.796618167101,0,2971.60257331026,85.0487613959415,85.0487613959415,-0.00895200906229826,85.0487604903347,25.08,1015.1,38.92,520.482537259265
-45873,2874.10752336634,457.152696534654,225,85.0390891089109,87.5902617821782,22.8442574257426,-1.45108910891089,1839.69801980198,665.215765076238,691.47433989307,20,40,10,32,5306307.64429414,396805.057893427,2,2,5306307.70407499,396805.00918808,18.3982145568023,0,0,85.0390891089108,13390.3069175467,22.8442574257426,24.501889288183,24.3148967374648,-1.45108910891089,-1.43644889998103,-1.14905411134784,1.9398905954872,1.53904001148424,1.68603554344078,53.5146461466073,-0.00820823163066639,1356.69010496931,1356.49483828197,1356.50481428117,1.05833693578121,3073.52924556188,-92.8650673097746,0,3073.52924556188,85.0320492108616,85.0320492108616,-0.00364751821717108,85.031785667138,25.07,1015.1,38.88,592.364746243214
-45874,2874.0996480198,457.137806930693,225,85.0257821782179,87.5765556435644,20.0461413639604,-0.386138613861386,1842.05940594059,683.576234311881,692.134273623762,20,40,10,32,5306293.38816412,396786.250748668,2,2,5306292.80684978,396786.724363869,41.9834242315943,0,0,85.0257821782177,13413.9253964245,20.0461413639604,21.500735489066,21.9332162988366,-0.386138613861386,-0.371498404931529,-0.301820170930959,2.70019593181282,2.14223914873056,2.23086846025541,53.5833360849903,0.0121683433823037,1375.71050793564,1374.63165715562,1374.54570405448,1.05850293295976,3121.10801907117,84.8906891104054,0,3121.10801907117,85.0239208901087,85.0239208901087,0.003296245466139,85.023940405469,25.06,1015.1,38.84,482.684859287511
-45875,2874.09174990099,457.12294029703,225,85.005801980198,87.5559760396039,19.6921556655446,-1.46742574257426,1842.07920792079,694.051753282178,677.041035204951,20,40,10,32,5306279.08940034,396767.471367632,2,2,5306277.9062108,396768.435349612,65.5740385601157,0,0,85.0058019801979,13437.5419089933,19.6921556655446,21.1210637741776,21.6302384965347,-1.46742574257426,-1.4527855336444,-1.11788822139001,3.03904542950714,2.41107025499813,2.40649003481663,53.583912101245,-0.00518414629305246,1371.09278848713,1370.20770401599,1370.13718846694,1.05875138223081,3111.40222523112,-78.5277577253685,0,3111.40222523112,85.0186267032643,85.0186267032643,-0.00309882473395604,85.0188936350777,25.05,1015.1,38.8,469.364698474127
+45873,2874.10752336634,457.152696534654,225,85.0390891089109,87.5902617821782,22.8442574257426,-1.45108910891089,1839.69801980198,665.215765076238,691.47433989307,20,40,10,32,5306307.64429414,396805.057893427,2,2,5306307.70407499,396805.00918808,18.3982145567893,0,0,85.0390891089108,13390.3069175467,22.8442574257426,24.501889288183,24.3148967374648,-1.45108910891089,-1.43644889998103,-1.14905411134784,1.9398905954872,1.53904001148424,1.68603554344077,53.5146461466073,-0.00820823163066639,1356.69010496931,1356.49483828197,1356.50481428117,1.05833693578121,3073.52924556188,-92.8650673097746,0,3073.52924556188,85.0320492108616,85.0320492108616,-0.00364751821717108,85.031785667138,25.07,1015.1,38.88,592.364746243214
+45874,2874.0996480198,457.137806930693,225,85.0257821782179,87.5765556435644,20.0461413639604,-0.386138613861386,1842.05940594059,683.576234311881,692.134273623762,20,40,10,32,5306293.38816412,396786.250748668,2,2,5306292.80684978,396786.724363869,41.9834242315907,0,0,85.0257821782177,13413.9253964245,20.0461413639604,21.500735489066,21.9332162988366,-0.386138613861386,-0.371498404931529,-0.301820170930959,2.70019593181282,2.14223914873056,2.23086846025541,53.5833360849903,0.0121683433823037,1375.71050793564,1374.63165715562,1374.54570405448,1.05850293295976,3121.10801907117,84.8906891104054,0,3121.10801907117,85.0239208901087,85.0239208901087,0.003296245466139,85.023940405469,25.06,1015.1,38.84,482.684859287511
+45875,2874.09174990099,457.12294029703,225,85.005801980198,87.5559760396039,19.6921556655446,-1.46742574257426,1842.07920792079,694.051753282178,677.041035204951,20,40,10,32,5306279.08940034,396767.471367632,2,2,5306277.9062108,396768.435349612,65.5740385601157,0,0,85.0058019801979,13437.5419089933,19.6921556655446,21.1210637741776,21.6302384965347,-1.46742574257426,-1.4527855336444,-1.11788822139001,3.03904542950714,2.41107025499813,2.40649003481664,53.583912101245,-0.00518414629305246,1371.09278848713,1370.20770401599,1370.13718846694,1.05875138223081,3111.40222523112,-78.5277577253685,0,3111.40222523112,85.0186267032643,85.0186267032643,-0.00309882473395604,85.0188936350777,25.05,1015.1,38.8,469.364698474127
 45876,2874.08386693069,457.108058415842,225,85.0218316831683,87.5724866336634,20.5519339933663,-1.5339603960396,1838.9603960396,687.011178138614,660.071278436634,20,40,10,32,5306264.81909678,396748.673403372,2,2,5306263.00782644,396750.149102663,89.1610833940492,0,0,85.0218316831682,13461.1580047028,20.5519339933663,22.0432295950254,22.3636666070607,-1.5339603960396,-1.51932018710975,-1.17585615941592,2.54716378859853,2.02082890425704,1.99193951109735,53.4931895411166,-0.00885624991729796,1347.08245657525,1347.20488099424,1347.21463466791,1.05855242864091,3051.15374343298,-52.3808018283312,0,3051.15374343298,85.0157341437113,85.0157341437113,-0.0020232221241968,85.0157997171144,25.04,1015.1,38.76,502.47475946179
 45877,2874.07599623762,457.093158514851,225,85.0087326732673,87.5589946534653,20.449298129802,-1.77168316831683,1837.80198019802,668.927581208911,656.826919421782,20,40,10,32,5306250.57199679,396729.853307694,2,2,5306248.10786199,396731.860916325,112.750629806425,0,0,85.0087326732672,13484.7734658965,20.449298129802,21.93314623713,22.2752424195899,-1.77168316831683,-1.75704295938698,-1.37433483550089,2.69883692882188,2.14116096422693,1.93081447369109,53.4594925902118,0.0104402946179529,1325.75450063069,1326.77187749501,1326.85293290887,1.05871548356119,3001.4197510513,-19.6663555736068,0,3001.4197510513,85.0108879521614,85.0108879521614,-0.000871374266145349,85.010950212164,25.03,1015.1,38.72,498.595078126021
 45878,2874.06813564356,457.078245643565,225,85.0262277227722,87.5770145544555,20.2092150714852,-1.19465346534653,1840.65841584158,656.426938111881,670.290806882178,20,40,10,32,5306236.34395319,396711.017298053,2,2,5306233.2077075,396713.572496715,136.340477111471,0,0,85.0262277227722,13508.3891275301,20.2092150714852,21.6756421998914,22.0725972665306,-1.19465346534653,-1.18001325641668,-0.921294259553063,2.38246815794749,1.89016526483415,1.82274546200123,53.5425829349644,0.00100802844587132,1326.71774499406,1327.69470270773,1327.77253788807,1.05849739255658,3007.655511515,246.507642508908,0,3007.655511515,85.0249368689343,85.0249368689343,0.00985197529653169,85.0250285714285,25.02,1015.1,38.68,488.277663614797
@@ -834,44 +834,44 @@ Time,Lat,Long,Heading,v_veh_GPS,v_veh_CAN,vair_ar,beta_ar,n_eng,tq_l,tq_r,t_amb_
 45882,2874.0369319802,457.018332277228,225,84.9788613861386,87.5282272277228,25.0578118811881,-3.31108910891089,1840.02475247525,690.704092528713,664.021994456436,20,40,10,32,5306179.88040521,396635.354048806,2,2,5306173.62976165,396640.446646017,230.663971912254,0,0,84.9788613861385,13602.8374043453,25.0578118811881,26.8760643462689,26.1938497189786,-3.31108910891089,-3.29644889998104,-2.67640026392698,3.60960022746601,2.86372808263324,2.85839117546883,53.5241504148113,-0.0083522356943623,1354.72608698515,1354.5277734155,1354.5119735786,1.0590871189496,3071.79628581999,-210.121044844511,0,3071.79628581999,84.9763136947357,84.9763136947357,-0.00833660098684707,84.9762839226779,25,1015.1,38.62,686.438087125681
 45883,2874.02918821782,457.003296831683,225,84.9490594059406,87.4975311881188,25.2960396039604,-3.47990099009901,1838.18811881188,674.247284274257,655.854020090099,20,40,10,32,5306165.87181294,396616.368772126,1.36633663366337,2,5306158.74406296,396622.175616162,95.070886172407,0,0,84.9490594059405,13626.4377570405,25.2960396039604,27.1315784205484,26.3945668832245,-3.47990099009901,-3.46526078116916,-2.81856196806891,3.85585078018138,3.05909448853299,3.08222796376508,53.4707249071801,0.00403211378348525,1330.10130436436,1330.93628294019,1331.00280650333,1.05945883174911,3014.01635121722,-13.2418603058773,0,3014.01635121722,84.9544922066463,84.9544922066463,-0.000562308706110123,84.9546447901932,25,1015.1,38.63,696.82541970463
 45884,2874.02141504951,456.988308316832,225,84.9410693069307,87.4893013861386,24.1696732673267,-3.1119801980198,1839.06930693069,658.482519385149,665.288771352475,20,40,10,32,5306151.80776457,396597.440884443,1,2,5306143.86501487,396603.911475578,26.614018919151,0,0,84.9410693069306,13650.0346294552,24.1696732673267,25.9234803517955,25.4362521063836,-3.1119801980198,-3.09733998908995,-2.49883663235454,3.72223372538665,2.95308748276465,2.91143120299528,53.4963576305179,0.000288008127391805,1323.77129073762,1324.8718860102,1324.95957151643,1.05955881122531,3001.39396862885,0.875438856387115,0,3001.39396862885,84.9480861680226,84.9480861680226,3.26765349818178E-05,84.9484562942008,25,1015.1,38.64,651.618965821899
-45885,2874.01357940594,456.973382970297,225,84.9813861386139,87.5308277227723,22.3037057205941,-0.0819801980198018,1838.80198019802,657.90385000198,683.651981448515,20,40,10,32,5306137.62664129,396578.589513635,1,2,5306128.97688607,396585.636069496,50.186181459251,0,0,84.9813861386137,13673.6333551978,22.3037057205941,23.9221139079965,23.8517298241532,-0.0819801980198018,-0.0673399890899449,-0.0370415461065062,2.40449946861271,1.90764412096042,1.89260318143906,53.4885814110784,0.00158404470065492,1341.5558314505,1341.91016120228,1341.93839100136,1.05905616683625,3039.83267631458,89.505551510462,0,3039.83267631458,84.9754882854621,84.9754882854621,0.00356718840202617,84.9750671381423,25,1015.1,38.65,572.277404784258
+45885,2874.01357940594,456.973382970297,225,84.9813861386139,87.5308277227723,22.3037057205941,-0.0819801980198018,1838.80198019802,657.90385000198,683.651981448515,20,40,10,32,5306137.62664129,396578.589513635,1,2,5306128.97688607,396585.636069496,50.186181459251,0,0,84.9813861386137,13673.6333551978,22.3037057205941,23.9221139079965,23.8517298241532,-0.0819801980198018,-0.0673399890899449,-0.037041546106506,2.40449946861271,1.90764412096042,1.89260318143906,53.4885814110784,0.00158404470065492,1341.5558314505,1341.91016120228,1341.93839100136,1.05905616683625,3039.83267631458,89.505551510462,0,3039.83267631458,84.9754882854621,84.9754882854621,0.00356718840202617,84.9750671381423,25,1015.1,38.65,572.277404784258
 45886,2874.00569683168,456.958492673267,225,85.0120792079208,87.5624415841585,24.0594455445545,-0.825940594059406,1838.31188118812,673.043302089109,694.0605997,20,40,10,32,5306123.35786409,396559.780150006,1,2,5306114.0743606,396567.342991294,73.7811380246875,0,0,85.0120792079207,13697.241797167,24.0594455445545,25.8052542519262,25.347931948414,-0.825940594059406,-0.811300385129549,-0.656735950746502,2.65649132279027,2.10756547067446,2.19073573964497,53.4743250087724,-0.00475213410196476,1367.10390178911,1366.38619687537,1366.32901662037,1.05867330525689,3095.77083912286,414.055577723005,0,3095.77083912286,85.0057407116949,85.0057407116949,0.0166010412922351,85.0055700141441,25,1015.1,38.66,643.404287919811
-45887,2873.99775960396,456.94366019802,225,85.0433267326733,87.5946265346534,20.1859856985149,0.0991089108910891,1841.25247524752,689.981733209901,686.944990492079,20,40,10,32,5306108.98661874,396541.040902252,1,2,5306099.16529298,396549.041882495,97.386452695552,0,0,85.0433267326731,13720.8605730196,20.1859856985149,21.650727250189,22.0534945796204,0.0991089108910891,0.113749119820947,0.0898196925037277,2.74958140415038,2.18141982113052,2.00251872819133,53.5598634226078,-0.00244806908283033,1376.92672370198,1375.79683871696,1375.70681967047,1.05828424786571,3121.85928582856,103.624487209843,0,3121.85928582856,85.0387148318791,85.0387148318791,0.00416489668768462,85.0387064592172,25,1015.1,38.67,488.338538429269
+45887,2873.99775960396,456.94366019802,225,85.0433267326733,87.5946265346534,20.1859856985149,0.0991089108910891,1841.25247524752,689.981733209901,686.944990492079,20,40,10,32,5306108.98661874,396541.040902252,1,2,5306099.16529298,396549.041882495,97.386452695552,0,0,85.0433267326731,13720.8605730196,20.1859856985149,21.650727250189,22.0534945796204,0.0991089108910891,0.113749119820947,0.0898196925037278,2.74958140415038,2.18141982113052,2.00251872819133,53.5598634226078,-0.00244806908283033,1376.92672370198,1375.79683871696,1375.70681967047,1.05828424786571,3121.85928582856,103.624487209843,0,3121.85928582856,85.0387148318791,85.0387148318791,0.00416489668768462,85.0387064592172,25,1015.1,38.67,488.338538429269
 45888,2873.9898039604,456.928874554456,225,85.0836831683168,87.6361936633663,21.2134279427723,-0.854455445544554,1842.18316831683,693.146027908911,668.847212112871,20,40,10,32,5306094.58027462,396522.359284154,1,2,5306084.27044372,396530.758226957,120.969255628556,0,0,85.0836831683167,13744.4870750548,21.2134279427723,22.7527230668895,22.9299894658988,-0.854455445544554,-0.839815236614697,-0.659464953851004,1.79705643273886,1.42572048099735,1.67427803706236,53.5869361865827,0.00698419708925124,1361.99324002178,1361.4899860062,1361.44989126453,1.05778306026093,3088.10108598022,330.743121886622,0,3088.10108598022,85.0780910695029,85.0780910695029,0.0131727281638885,85.0776958981611,25,1015.1,38.68,526.58464449886
 45889,2873.98183970297,456.914077920792,225,85.0481683168317,87.5996133663366,20.3988492851485,-1.43148514851485,1842.00495049505,679.626948238614,656.406278535643,20,40,10,32,5306080.15827964,396503.66359688,1,2,5306069.36246176,396512.458450818,144.572851393428,0,0,85.0481683168316,13768.1197116059,20.3988492851485,21.8790367082721,22.2349413717886,-1.43148514851485,-1.41684493958499,-1.10658710183867,2.58069536138714,2.04743165819054,1.8601041289944,53.5817520402896,-0.00360010159239754,1336.03322677426,1336.61929314816,1336.66598563192,1.05822396803285,3030.2170450441,-300.778392868359,0,3030.2170450441,85.063101460641,85.063101460641,-0.0120018189937659,85.0634130127298,25,1015.1,38.69,496.324334227031
-45890,2873.97383504951,456.899315940594,225,85.0478217821782,87.5992564356436,20.7818685369307,-1.31257425742574,1838.9504950495,661.853873691089,661.060326726733,20,40,10,32,5306065.66074244,396485.009639288,1,2,5306054.4447788,396494.146766562,168.191806602561,0,0,85.0478217821781,13791.7442029151,20.7818685369307,22.2898487179387,22.5609318702992,-1.31257425742574,-1.29793404849588,-1.01840632169706,2.49701859898569,1.98104549926649,2.05889261012463,53.4929015329893,0.00223206298728647,1322.91420041782,1324.05076046487,1324.14131131965,1.05822875117802,2995.4841846647,-206.838175846298,0,2995.4841846647,85.0401986079795,85.0401986079795,-0.00829167075123095,85.0400565770861,25,1015.1,38.7050495049505,511.597749157313
-45891,2873.96586752475,456.884557722772,225,85.0306336633663,87.5815526732673,19.8499603959406,-0.203366336633663,1841.57425742574,656.167287049505,678.530446234653,20,40,10,32,5306051.23195557,396466.361508458,1,2,5306039.55737466,396475.872250028,191.762821776482,0,0,85.0306336633662,13815.3654385586,19.8499603959406,21.2903191787747,21.767381810454,-0.203366336633663,-0.188726127703806,-0.136001345496891,2.66880066633713,2.11733126482687,2.21945497489773,53.569223686748,0.00540015238859631,1334.69773328416,1335.33983893333,1335.39099612107,1.05844359549911,3027.08662397263,131.063127798454,0,3027.08662397263,85.0206896382707,85.0206896382707,0.00519829210643138,85.0211504950494,25,1015.1,38.75,474.742023176089
+45890,2873.97383504951,456.899315940594,225,85.0478217821782,87.5992564356436,20.7818685369307,-1.31257425742574,1838.9504950495,661.853873691089,661.060326726733,20,40,10,32,5306065.66074244,396485.009639288,1,2,5306054.4447788,396494.146766562,168.191806602558,0,0,85.0478217821781,13791.7442029151,20.7818685369307,22.2898487179387,22.5609318702992,-1.31257425742574,-1.29793404849588,-1.01840632169706,2.49701859898569,1.98104549926649,2.05889261012463,53.4929015329893,0.00223206298728647,1322.91420041782,1324.05076046487,1324.14131131965,1.05822875117802,2995.4841846647,-206.838175846298,0,2995.4841846647,85.0401986079795,85.0401986079795,-0.00829167075123095,85.0400565770861,25,1015.1,38.7050495049505,511.597749157313
+45891,2873.96586752475,456.884557722772,225,85.0306336633663,87.5815526732673,19.8499603959406,-0.203366336633663,1841.57425742574,656.167287049505,678.530446234653,20,40,10,32,5306051.23195557,396466.361508458,1,2,5306039.55737466,396475.872250028,191.762821776482,0,0,85.0306336633662,13815.3654385586,19.8499603959406,21.2903191787747,21.767381810454,-0.203366336633663,-0.188726127703806,-0.136001345496891,2.66880066633714,2.11733126482687,2.21945497489773,53.569223686748,0.00540015238859631,1334.69773328416,1335.33983893333,1335.39099612107,1.05844359549911,3027.08662397263,131.063127798454,0,3027.08662397263,85.0206896382707,85.0206896382707,0.00519829210643138,85.0211504950494,25,1015.1,38.75,474.742023176089
 45892,2873.95792861386,456.869753960396,225,85.0254356435643,87.5761987128713,18.8975258524752,0.373564356435644,1841.21287128713,667.795409837624,692.754689760396,20,40,10,32,5306036.85724875,396447.65750335,1,2,5306024.66418366,396457.590630022,215.342999220862,0,0,85.0254356435643,13838.9845644112,18.8975258524752,20.2687737941595,20.9558573353403,0.373564356435644,0.388204565365501,0.299511691334899,3.56568105640566,2.82888417870879,2.49640488233625,53.5587113900983,-0.00208805892359058,1360.55009959802,1360.1074018792,1360.07213171721,1.05850756440063,3085.30950844653,-165.915773238551,0,3085.30950844653,85.0349136359179,85.0349136359179,-0.00661972137807795,85.0345507779348,25,1015.1,38.8,439.355081102695
-45893,2873.95001277228,456.854909405941,225,85.0132079207921,87.5636041584158,20.7988514851485,-0.481089108910891,1841.81683168317,684.968647561386,690.645331274258,20,40,10,32,5306022.52624578,396428.903359604,0.99009900990099,1.98019801980198,5253475.0875652,392514.249310595,236.451868224773,0,0,85.013207920792,13862.6007692517,20.7988514851485,22.3080639879413,22.5736765284722,-0.481089108910891,-0.466448899981034,-0.365168424137023,1.83752440385908,1.45782632597773,1.71413107942432,53.5762798858692,-0.000864024382175412,1375.61397883564,1378.19474008218,1378.16985158955,1.05865952257878,3120.94048958674,-71.6558747756451,0,3120.94048958674,85.012193020292,85.012193020292,-0.00285919681077037,85.0120708156529,25,1015.1,38.85,510.036765237475
+45893,2873.95001277228,456.854909405941,225,85.0132079207921,87.5636041584158,20.7988514851485,-0.481089108910891,1841.81683168317,684.968647561386,690.645331274258,20,40,10,32,5306022.52624578,396428.903359604,0.99009900990099,1.98019801980198,5253475.0875652,392514.249310595,236.451868224773,0,0,85.013207920792,13862.6007692517,20.7988514851485,22.3080639879413,22.5736765284722,-0.481089108910891,-0.466448899981034,-0.365168424137024,1.83752440385908,1.45782632597773,1.71413107942432,53.5762798858692,-0.000864024382175412,1375.61397883564,1378.19474008218,1378.16985158955,1.05865952257878,3120.94048958674,-71.6558747756451,0,3120.94048958674,85.012193020292,85.012193020292,-0.00285919681077037,85.0120708156529,25,1015.1,38.85,510.036765237475
 45894,2873.9421419802,456.839975643564,225,85.0159603960396,87.5664392079208,21.5097354234654,-0.705346534653465,1840.62376237624,628.784158415842,753.90198019802,20,40,10,32,5306008.28074478,396410.03949915,0,0,0,0,0,0,0,85.0159603960395,13886.2146240647,21.5097354234654,23.0705312999126,23.1781098112609,-0.705346534653465,-0.690706325723607,-0.534628166504948,2.66027629874544,2.1105683356046,2.11712542966555,53.5415749065185,0.00691219505740329,1382.68613861386,1379.17740492925,1379.05639858522,1.05862546336017,3134.82638900164,97.373777452846,0,3134.82638900164,85.012149103029,85.012149103029,0.00383813133789184,85.0121291843469,25,1015.1,38.9,540.999684868798
 45895,2873.93433069307,456.824987524752,225,84.9966633663366,87.5465632673268,19.7591820687129,-1.4509900990099,1841.4900990099,626.353465346535,745.3,20,40,10,32,5305994.14674368,396391.109815449,0,0,0,0,0,0,0,84.9966633663365,13909.8283237071,19.7591820687129,21.1929537673259,21.6878221172707,-1.4509900990099,-1.43634989008004,-1.11498031702087,3.10257913520451,2.46147563114336,2.44679465326441,53.5667756176652,-0.0041041158153332,1371.65346534653,1373.19616704245,1373.47388024517,1.05886539772731,3111.74545693852,-133.346250007339,0,3111.74545693852,85.0054740711694,85.0054740711694,-0.00530040627825103,85.0056068835454,25,1015.1,38.95,472.441136574486
-45896,2873.92655891089,456.809976039604,225,85.0214158415841,87.5720583168317,20.3912222221782,-0.99,1839.5198019802,683.022772277228,736.346534653465,20,40,10,32,5305980.08650309,396372.152246608,0,0,0,0,0,0,0,85.021415841584,13933.4411237071,20.3912222221782,21.8708562080698,22.2268943554928,-0.99,-0.975359791070142,-0.77118535955218,2.22956175671875,1.76885477956734,1.71571639395308,53.5094620003143,-0.00331209346500574,1419.36930693069,1424.59195176943,1424.47306930693,1.05855729091757,3216.00583704657,-59.0803469116058,0,3216.00583704657,85.0062214488774,85.0062214488774,-0.00233637225108473,85.005823008015,25,1015.1,39,494.912039037825
+45896,2873.92655891089,456.809976039604,225,85.0214158415841,87.5720583168317,20.3912222221782,-0.99,1839.5198019802,683.022772277228,736.346534653465,20,40,10,32,5305980.08650309,396372.152246608,0,0,0,0,0,0,0,85.021415841584,13933.4411237071,20.3912222221782,21.8708562080698,22.2268943554928,-0.99,-0.975359791070142,-0.771185359552179,2.22956175671875,1.76885477956734,1.71571639395308,53.5094620003143,-0.00331209346500574,1419.36930693069,1424.59195176943,1424.47306930693,1.05855729091757,3216.00583704657,-59.0803469116058,0,3216.00583704657,85.0062214488774,85.0062214488774,-0.00233637225108473,85.005823008015,25,1015.1,39,494.912039037825
 45897,2873.9188009901,456.794949405941,225,84.9991188118812,87.5490923762376,20.1725170519802,-1.61138613861386,1846.23762376238,694.60594059406,753.885148514851,20,40,10,32,5305966.05233869,396353.176176516,0,0,0,0,0,0,0,84.999118811881,13957.0532591857,20.1725170519802,21.6362812876828,22.0390415800092,-1.61138613861386,-1.596745929684,-1.2341922945983,2.74097402451844,2.17459103311618,2.08989676735238,53.7048755147496,0.00403211378348525,1448.49108910891,1447.37284579943,1447.21388967468,1.05883594033512,3293.62849613987,82.6221413823426,0,3293.62849613987,84.9985264189784,84.9985264189784,0.00327173806490166,84.9984658180103,25,1015.1,39.05,487.714701726599
 45898,2873.91105316832,456.779915148515,225,84.994396039604,87.5442279207921,20.6468927393069,-2.24762376237624,1840.33663366337,694.116831683168,742.447524752475,20,40,10,32,5305952.03711308,396334.190853354,0,0,0,0,0,0,0,84.9943960396038,13980.6636293452,20.6468927393069,22.1450787659842,22.4422793911458,-2.24762376237624,-2.23298355344638,-1.73609627890785,2.60808292616284,2.06915997529511,2.05970363384883,53.5332226708241,-0.00151204266880697,1436.56435643564,1437.93425154397,1438.29937765205,1.05889424567849,3257.35183003463,82.6437843660849,0,3257.35183003463,85.0015189687284,85.0015189687284,0.00331802982278052,85.0017892503535,25,1015.1,39.1,505.991865271066
 45899,2873.90331594059,456.764868712871,225,84.9976435643564,87.5475728712871,23.9348712871287,-1.2690099009901,1839.29207920792,716.390099009901,769.543564356436,20,40,10,32,5305938.0418453,396315.190620398,0,0,0,0,0,0,0,84.9976435643564,14004.27572742,23.9348712871287,25.6716405998509,25.2406321386879,-1.2690099009901,-1.25436969206024,-1.0110516832739,2.64849606736502,2.10122232017405,2.0155884511031,53.5028378133843,-0.00900025398099386,1485.93366336634,1475.17504166258,1474.34796793965,1.05885336990831,3367.30720430841,45.515968567321,0,3367.30720430841,85.0089115772963,85.0089115772963,0.0018938775065479,85.0092711928335,25,1015.1,39.15,638.338309352356
-45900,2873.89557485148,456.74981910891,225,85.0443267326733,87.5956565346534,22.3997332233663,-1.94029702970297,1840.02475247525,684.617821782178,687.768316831683,20,40,10,32,5305924.03955733,396296.186219826,0,0,0,0,0,0,0,85.0443267326732,14027.8933536026,22.3997332233663,24.025109387241,23.9369856736144,-1.94029702970297,-1.92565682077311,-1.52551983762688,2.43428238082904,1.93127282129335,1.97914352577289,53.5241504148112,0.00828023366251435,1372.38613861386,1380.54758357024,1381.13155115512,1.05827262685112,3109.56832918418,50.2965546360572,0,3109.56832918418,85.0329082442896,85.0329082442896,0.00194425383132635,85.0326331918905,25,1015.1,39.1962128712871,576.51065910922
-45901,2873.88782277228,456.734770990099,225,85.0218613861386,87.5725172277228,21.5873465346535,-1.20722772277228,1838.88613861386,692.277227722772,670.60198019802,20,40,10,32,5305910.01694019,396277.183210873,0,0,0,0,0,0,0,85.0218613861385,14051.5140270625,21.5873465346535,23.1537740518404,23.2446429577323,-1.20722772277228,-1.19258751384242,-0.940926888788692,2.09276875100411,1.66032808761069,1.91990690798545,53.4910294801612,-0.00302408533761394,1362.87920792079,1363.94983825115,1364.18418670438,1.05855194687952,3087.2780787456,-109.673915133797,0,3087.2780787456,85.0207208116851,85.0207208116851,-0.00436231741985585,85.0207345591701,25,1015.1,39.22,542.295570611809
+45900,2873.89557485148,456.74981910891,225,85.0443267326733,87.5956565346534,22.3997332233663,-1.94029702970297,1840.02475247525,684.617821782178,687.768316831683,20,40,10,32,5305924.03955733,396296.186219826,0,0,0,0,0,0,0,85.0443267326732,14027.8933536026,22.3997332233663,24.025109387241,23.9369856736144,-1.94029702970297,-1.92565682077311,-1.52551983762688,2.43428238082903,1.93127282129335,1.97914352577289,53.5241504148112,0.00828023366251435,1372.38613861386,1380.54758357024,1381.13155115512,1.05827262685112,3109.56832918418,50.2965546360572,0,3109.56832918418,85.0329082442896,85.0329082442896,0.00194425383132635,85.0326331918905,25,1015.1,39.1962128712871,576.51065910922
+45901,2873.88782277228,456.734770990099,225,85.0218613861386,87.5725172277228,21.5873465346535,-1.20722772277228,1838.88613861386,692.277227722772,670.60198019802,20,40,10,32,5305910.01694019,396277.183210873,0,0,0,0,0,0,0,85.0218613861385,14051.5140270625,21.5873465346535,23.1537740518404,23.2446429577322,-1.20722772277228,-1.19258751384242,-0.940926888788692,2.09276875100411,1.66032808761069,1.91990690798545,53.4910294801612,-0.00302408533761394,1362.87920792079,1363.94983825115,1364.18418670438,1.05855194687952,3087.2780787456,-109.673915133797,0,3087.2780787456,85.0207208116851,85.0207208116851,-0.00436231741985585,85.0207345591701,25,1015.1,39.22,542.295570611808
 45902,2873.88002613861,456.719788811881,225,84.9955247524752,87.5453904950495,20.7629279428713,1.79871287128713,1839.35148514851,821.836633663366,788.277227722772,20,40,10,32,5305895.91037773,396258.260765902,0,0,0,0,0,0,0,84.9955247524752,14075.1269431791,20.7629279428713,22.2695337508094,22.5410876330067,1.79871287128713,1.81335308021698,1.41229455048065,3.18138220903816,2.52399517937978,2.30856330979082,53.5045658621486,-0.0103682925861049,1610.11386138614,1659.3900499951,1663.80609146629,1.05887950693841,3648.56596696413,471.56239263878,0,3648.56596696413,85.0218815802372,85.0218815802372,0.0189469441993642,85.0228746817538,25,1015.1,39.24,512.676314089708
 45903,2873.87218930693,456.704828415842,225,85.2099702970297,87.7662694059406,20.9422447746535,0.175841584158416,1846.20297029703,1101.4702970297,1034.86633663366,20,40,10,32,5305881.72892786,396239.364022837,0,0,0,0,0,0,0,85.2099702970296,14098.7630725245,20.9422447746535,22.4618622243489,22.7062028576744,0.175841584158416,0.190481793088273,0.135297776879982,2.5148433657008,1.99518703345081,2.19699970570009,53.7038674863038,0.0171364835798123,2136.33663366337,2066.87481619449,2057.4689203206,1.05621532852049,4848.21735099535,1355.57355028581,0,4848.21735099535,85.1910959709831,85.1910959709831,0.0540823884368653,85.1906098066948,25,1015.1,39.26,518.24237496725
-45904,2873.86429277228,456.689895445545,225,85.173396039604,87.7285979207921,22.7089455444554,-0.822079207920792,1837.28217821782,-8.44356435643553,-20.5445544554457,20,40,10,32,5305867.436334,396220.499361503,0,0,0,0,0,0,0,85.1733960396039,14122.4435297577,22.7089455444554,24.3567588655615,24.207842897025,-0.822079207920792,-0.807438998990933,-0.641760188562103,2.88806076828353,2.29128440971176,2.44242324311344,53.4443721635237,-0.00273607721022214,-28.9881188118815,-9.8991373394767,-5.25099481376712,1.05667186616046,-57.5847119347597,-2990.86473203309,0,-57.5847119347597,85.1371975296539,85.1371975296539,-0.119612456295133,85.1339807637906,25,1015.1,39.28,590.761897797641
+45904,2873.86429277228,456.689895445545,225,85.173396039604,87.7285979207921,22.7089455444554,-0.822079207920792,1837.28217821782,-8.44356435643553,-20.5445544554457,20,40,10,32,5305867.436334,396220.499361503,0,0,0,0,0,0,0,85.1733960396039,14122.4435297577,22.7089455444554,24.3567588655615,24.207842897025,-0.822079207920792,-0.807438998990933,-0.641760188562103,2.88806076828353,2.29128440971176,2.44242324311344,53.4443721635237,-0.00273607721022214,-28.9881188118815,-9.8991373394767,-5.25099481376712,1.05667186616046,-57.5847119347597,-2990.86473203309,0,-57.5847119347597,85.1371975296539,85.1371975296539,-0.119612456295133,85.1339807637906,25,1015.1,39.28,590.761897797642
 45905,2873.85641217822,456.675068118812,225,84.3905940594059,86.9223118811881,22.6195869088119,-1.88613861386139,1819.61386138614,-722.426732673267,-642.417821782178,20,40,10,32,5305853.17096112,396201.766735859,0,0,0,0,0,0,0,84.3905940594058,14146.0031508523,22.6195869088119,24.2609161617836,24.0866636120272,-1.88613861386139,-1.87149840493153,-1.49030113767018,2.98884108938429,2.37123992210257,2.0932088893655,52.930421660193,-0.0100082824268652,-1364.84455445545,-1471.81338104107,-1484.18761569882,1.06648035758853,-3081.29798130243,-6271.99142205054,0,-3081.29798130243,84.3938355063228,84.3938355063228,-0.250797852062421,84.393745022406,25,1015.1,39.3,585.275467425747
 45906,2873.8486270297,456.660382079208,225,83.3414653465347,85.8417093069307,20.2120368536634,-0.713069306930693,1789.31683168317,-2187.3099009901,-1884.78613861386,20,40,10,32,5305839.07927964,396183.213197128,0,0,0,0,0,0,0,83.3414653465345,14169.3131197192,20.2120368536634,21.6786687370748,21.9785825362558,-0.713069306930693,-0.698429098000836,-0.542945954031883,2.10777289564409,1.67223184083923,1.73278967372198,52.0491167903741,-0.0111603149364324,-4072.09603960396,-4096.26160180375,-4098.33147433323,1.07993035563022,-9139.82431467598,-11309.2181965626,0,-9139.82431467598,83.2626072934025,83.2626072934025,-0.452278643705957,83.2514683432331,25,1015.1,39.32,484.561346478448
 45907,2873.84103376238,456.645930495049,225,81.0590693069307,83.4908413861386,21.4884851485149,0.562079207920792,1738.33663366337,-3711.81188118812,-3156.19603960396,20,40,10,32,5305825.33783144,396164.958021043,0,0,0,0,0,0,0,81.0590693069306,14192.1633322605,21.4884851485149,23.0477390561344,22.9331729330641,0.562079207920792,0.576719416850649,0.460183722495036,1.99094203531767,1.57954240307568,1.75830750488797,50.5661629424337,-0.00921626007653772,-6868.00792079208,-6739.13385942555,-6719.2824039527,1.11038491055824,-15423.4095934471,-17195.7129017248,0,-15423.4095934471,81.0708925595529,81.0708925595529,-0.68775392390724,81.0711522928479,25,1015.1,39.34,527.759123625052
 45908,2873.83366128713,456.631921683168,225,78.6321386138614,80.9911027722773,22.4103069306931,-0.208514851485149,1687.9504950495,-3590.19900990099,-3048.09702970297,20,40,10,32,5305811.99549668,396147.261674664,0,0,0,0,0,0,0,78.6321386138613,14214.3382213969,22.4103069306931,24.0364503470917,23.5782469588642,-0.208514851485149,-0.193874642555291,-0.153171627085068,2.6273632834374,2.08445632311508,2.0183890931552,49.1004895821369,-0.0147604165288299,-6638.29603960396,-6634.40114694637,-6634.50432020791,1.1446569989739,-14922.7094521001,-16620.6044622941,0,-14922.7094521001,78.6351104793647,78.6351104793647,-0.664704713045569,78.6359313219687,25,1015.1,39.36,557.180493800572
 45909,2873.82652792079,456.61831039604,225,76.224504950495,78.5112400990099,20.2519581958416,0.342772277227723,1633.17821782178,-3602.54653465347,-3036.4198019802,20,40,10,32,5305799.08721393,396130.06841177,0,0,0,0,0,0,0,76.2245049504949,14235.8450535751,20.2519581958416,21.7214868636638,21.6038621800961,0.342772277227723,0.357412486157579,0.285714145077214,2.50138054181587,1.98450610913751,1.8942668800962,47.5072286214054,-0.00691219505740329,-6638.96633663367,-6637.97957063033,-6637.41057549547,1.18082570893601,-14895.7304412736,-16594.2243594579,0,-14895.7304412736,76.2372492892853,76.2372492892853,-0.663713524817829,76.2393917908979,25,1015.1,39.38,470.102096920412
 45910,2873.81960029703,456.605136435644,225,73.8427227722772,76.0580044554456,21.0025742574257,-0.873960396039604,1582.41089108911,-3754.22079207921,-3042.01584158416,20,40,10,32,5305786.55028026,396113.426708085,0,0,0,0,0,0,0,73.8427227722771,14256.6883558853,21.0025742574257,22.5265693531538,22.1057578021995,-0.873960396039604,-0.859320187109746,-0.689481785516415,2.57903845792732,2.04611713007964,2.04635477713439,46.0304669482039,-0.0202325709492742,-6796.23663366337,-6801.55393588864,-6806.26102638148,1.21893653677174,-15251.4070936072,-17037.1330345816,0,-15251.4070936072,73.8373283011468,73.8373283011468,-0.681322092605303,73.8359879011137,24.9987376237624,1015.1,39.4025247524752,489.906221009802
-45911,2873.81288148515,456.592417029703,225,71.3583465346535,73.4990969306931,21.1317425742574,-0.713861386138614,1526.86138613861,-3866.15445544554,-3167.46435643564,20,40,10,32,5305774.38999006,396097.358133367,0,0,0,0,0,0,0,71.3583465346534,14276.8520245047,21.1317425742574,22.6651104201523,22.073736406545,-0.713861386138614,-0.699221177208757,-0.564558490158021,3.04925940638054,2.41917365996391,2.41825804463902,44.4145973494722,-0.0158404470065492,-7033.61881188119,-6958.02528183511,-6928.43051726621,1.26138566115737,-15759.987373298,-17320.7660594906,0,-15759.987373298,71.3558493284971,71.3558493284971,-0.692703057434453,71.3573133595787,24.99,1015.1,39.44,487.543950622926
+45911,2873.81288148515,456.592417029703,225,71.3583465346535,73.4990969306931,21.1317425742574,-0.713861386138614,1526.86138613861,-3866.15445544554,-3167.46435643564,20,40,10,32,5305774.38999006,396097.358133367,0,0,0,0,0,0,0,71.3583465346534,14276.8520245047,21.1317425742574,22.6651104201523,22.073736406545,-0.713861386138614,-0.699221177208757,-0.564558490158022,3.04925940638054,2.41917365996391,2.41825804463902,44.4145973494722,-0.0158404470065492,-7033.61881188119,-6958.02528183511,-6928.43051726621,1.26138566115737,-15759.987373298,-17320.7660594906,0,-15759.987373298,71.3558493284971,71.3558493284971,-0.692703057434453,71.3573133595787,24.99,1015.1,39.44,487.543950622926
 45912,2873.80638405941,456.580139405941,225,68.9494554455446,71.0179391089109,21.1294851485148,0.72,1476.69306930693,-3441.41386138614,-2873.30198019802,20,40,10,32,5305762.6299169,396081.847203391,0,0,0,0,0,0,0,68.9494554455445,14296.328532508,21.1294851485148,22.6626891904055,21.9331406654996,0.72,0.734640208929858,0.602402010148285,3.68981386790399,2.92736672410511,2.95935742472109,42.9552601679779,-0.0118803352549119,-6314.71584158416,-6377.33516321929,-6389.75628454553,1.30542825212739,-14163.2620975313,-15895.9343768002,0,-14163.2620975313,68.9558868738358,68.9558868738358,-0.635741049352458,68.9592548868342,24.98,1015.1,39.48,481.480082131571
 45913,2873.80007534653,456.568310891089,225,66.7265742574258,68.7283714851485,20.7328613861386,0.58049504950495,1430.46534653465,-3253.5,-2668.32574257426,20,40,10,32,5305751.20936994,396066.901961724,0,0,0,0,0,0,0,66.7265742574257,14315.1656475795,20.7328613861386,22.2372854955647,21.4679085241107,0.58049504950495,0.595135258434808,0.488812953796532,3.87538081423203,3.07458892100229,2.95578823637723,41.6105502211856,-0.0191525404715549,-5921.82574257426,-5940.50774433879,-5961.93378126485,1.34890349061601,-13292.9437053422,-15024.2868533238,0,-13292.9437053422,66.7267812959513,66.7267812959513,-0.600816641070047,66.731623494315,24.97,1015.1,39.52,461.310618343009
-45914,2873.79396663366,456.556822178218,225,64.561198019802,66.498033960396,19.8302277227723,0.861287128712871,1384.19801980198,-3564.05742574257,-2925.39603960396,20,40,10,32,5305740.15170511,396052.386626856,0,0,0,0,0,0,0,64.5611980198019,14333.4000592682,19.8302277227723,21.2691546574546,20.5757073950253,0.861287128712871,0.875927337642729,0.7219604895688,3.517408939379,2.79058680270424,2.78714733537221,40.2646882418837,-0.0196565546944906,-6489.45346534653,-6503.36329771591,-6540.54831249991,1.39417202152806,-14567.5659957189,-16017.4805179671,0,-14567.5659957189,64.5434296637584,64.5434296637584,-0.640540415427686,64.5256222843792,24.96,1015.1,39.56,423.872540821301
+45914,2873.79396663366,456.556822178218,225,64.561198019802,66.498033960396,19.8302277227723,0.861287128712871,1384.19801980198,-3564.05742574257,-2925.39603960396,20,40,10,32,5305740.15170511,396052.386626856,0,0,0,0,0,0,0,64.5611980198019,14333.4000592682,19.8302277227723,21.2691546574546,20.5757073950253,0.861287128712871,0.875927337642729,0.7219604895688,3.517408939379,2.79058680270423,2.78714733537221,40.2646882418837,-0.0196565546944906,-6489.45346534653,-6503.36329771591,-6540.54831249991,1.39417202152806,-14567.5659957189,-16017.4805179671,0,-14567.5659957189,64.5434296637584,64.5434296637584,-0.640540415427686,64.5256222843792,24.96,1015.1,39.56,423.872540821301
 45915,2873.78811178218,456.545704059406,225,62.0276930693069,63.8885238613861,19.1928514851485,2.30693069306931,1327.9801980198,-4118.46138613861,-3450.56831683168,20,40,10,32,5305729.55599792,396038.341359238,0,0,0,0,0,0,0,62.0276930693069,14350.9878827005,19.1928514851485,20.5855289340122,19.887786961146,2.30693069306931,2.32157090199916,1.90134840560749,3.53343254439378,2.80329935943466,2.77630822708418,38.629378094553,-0.016128455133941,-7569.0297029703,-7252.21299872562,-6949.73526599876,1.45118747502794,-16968.6213995206,-17707.2319882238,0,-16968.6213995206,62.0458974610331,62.0458974610331,-0.708159058480095,62.0632673773882,24.95,1015.1,39.6,395.965694881813
-45916,2873.78247623762,456.535042673267,225,59.9028712871287,61.6999574257426,17.5838415841584,1.02227722772277,1389.63861386139,-1728.90297029703,-1477.00495049505,20,40,10,32,5305719.35630507,396024.872315237,0,0,0,0,0,0,0,59.9028712871286,14367.8896255498,17.5838415841584,18.8597655737542,18.3972993774105,1.02227722772277,1.03691743665263,0.845784777622105,2.43897224596416,1.93499359302565,1.99483695735766,40.4229487078855,0.0552975604592263,-3205.90792079208,-3429.06182727183,-3633.35474019198,1.50249183702689,-7592.58273804364,-9722.57353445838,0,-7592.58273804364,59.9730142142927,59.9730142142927,-0.3893940136588,60.0473867276576,24.94,1015.1,39.64,338.931545750141
+45916,2873.78247623762,456.535042673267,225,59.9028712871287,61.6999574257426,17.5838415841584,1.02227722772277,1389.63861386139,-1728.90297029703,-1477.00495049505,20,40,10,32,5305719.35630507,396024.872315237,0,0,0,0,0,0,0,59.9028712871286,14367.8896255498,17.5838415841584,18.8597655737542,18.3972993774105,1.02227722772277,1.03691743665263,0.845784777622106,2.43897224596416,1.93499359302565,1.99483695735766,40.4229487078855,0.0552975604592263,-3205.90792079208,-3429.06182727183,-3633.35474019198,1.50249183702689,-7592.58273804364,-9722.57353445838,0,-7592.58273804364,59.9730142142927,59.9730142142927,-0.3893940136588,60.0473867276576,24.94,1015.1,39.64,338.931545750141
 45917,2873.77700326733,456.524587029703,225,59.0622178217822,60.8340843564357,17.5505544554455,0.836633663366337,1505.67326732673,-692.59900990099,-612.908910891089,20,40,10,32,5305709.45316818,396011.664945755,0,0,0,0,0,0,0,59.0622178217821,14384.3961520625,17.5505544554455,18.8240630544188,18.3205413204519,0.836633663366337,0.851273872296196,0.683456039413012,2.67275896097242,2.12047163461633,2.1508999819039,43.7982599568537,-0.00784822147142665,-1305.50792079208,-1371.81482207627,-1446.22465540672,1.52383348141307,-3485.07513722512,-5004.829769403,0,-3485.07513722512,59.0510100970492,59.0510100970492,-0.200117907830369,59.0494128648158,24.93,1015.1,39.68,336.415567760511
 45918,2873.77162227723,456.514240891089,225,58.3130297029703,60.0624205940594,17.8628118811881,0.453069306930693,1469.92574257426,-712.942574257426,-604.59702970297,20,40,10,32,5305699.71798151,395998.597013149,0,0,0,0,0,0,0,58.3130297029702,14400.6967032451,17.8628118811881,19.1589785971905,18.5435169517856,0.453069306930693,0.46770951586055,0.38157543604918,3.11358938397201,2.47021076983056,2.46474691708884,42.7584066129056,-0.00914425804468976,-1317.5396039604,-1431.36843446721,-1639.17600806842,1.54340938332675,-3478.09365988939,-5272.39771183328,0,-3478.09365988939,58.3095603372218,58.3095603372218,-0.210808580858099,58.3018680926599,24.92,1015.1,39.72,344.315605479234
 45919,2873.76632405941,456.504038217822,225,57.2667128712871,58.9847142574257,17.5787425742574,1.09227722772277,1434.83663366337,-2748.90099009901,-2395.21584158416,20,40,10,32,5305690.1329254,395985.71051686,0,0,0,0,0,0,0,57.266712871287,14416.7734930691,17.5787425742574,18.8542965679666,18.2417992362725,1.09227722772277,1.10691743665263,0.901487244065337,3.09931717798817,2.45888771062692,2.36775463896918,41.7377058094291,-0.0203045729811222,-5144.11683168317,-5161.82090971473,-5186.32614650371,1.57172668779738,-13479.7010453496,-13229.8573652659,0,-13479.7010453496,57.1604791687089,57.1604791687089,-0.529003147839534,57.032252222926,24.91,1015.1,39.76,333.101530072192
 45920,2873.76119970297,456.49418009901,225,54.4059504950495,56.038129009901,16.1564653465347,0.152772277227723,1359.31683168317,-5027.64059405941,-4282.46930693069,20,40,10,32,5305680.86221141,395973.259000657,0,0,0,0,0,0,0,54.4059504950494,14432.3123478545,16.1564653465347,17.3288156332483,16.8677656131715,0.152772277227723,0.16741248615758,0.136094294236926,2.38610187361166,1.89304812524418,1.92718959729634,39.5409238177481,-0.019080538439707,-9310.1099009901,-9179.81293990785,-8876.56326723666,1.65468704477245,-24359.8867953235,-21791.1007702919,0,-24359.8867953235,54.4296704244681,54.4296704244681,-0.871464126610684,54.4269754884428,24.9012623762377,1015.10126237624,39.8037871287129,284.957564035232
 45921,2873.75636821782,456.484843762376,225,51.2887326732673,52.8273946534654,14.3599504950495,1.31405940594059,1280.05445544554,-5052.69405940594,-4263.36831683168,20,40,10,32,5305672.12230385,395961.467218825,0,0,0,0,0,0,0,51.2887326732672,14446.9920103408,14.3599504950495,15.4019415320108,15.1599187587445,1.31405940594059,1.32869961487045,1.07113130264704,1.46209390696324,1.15997315961966,1.22554017234668,37.235274753913,-0.0311768797901627,-9316.06237623762,-9316.7090579355,-9379.29097371046,1.7553799909878,-24348.359320735,-21698.1577923595,0,-24348.359320735,51.3020669542201,51.3020669542201,-0.867632802884249,51.3073727935138,24.9,1015.11,39.87,230.191235573481
-45922,2873.75179247525,456.476094455446,225,48.2123861386139,49.6587577227723,13.4110396039604,2.1609900990099,1217.87128712871,-5437.32079207921,-4575.31782178218,20,40,10,32,5305663.84295823,395950.415217882,0,0,0,0,0,0,0,48.2123861386138,14460.8080193617,13.4110396039604,14.384175484093,14.1764160195543,2.1609900990099,2.17563030793976,1.74910756747271,1.30715356339747,1.037049017044,1.00849468354584,35.4264397098288,0.0252007111467828,-10012.6386138614,-10154.0456327811,-10355.3570516326,1.86748881607532,-26536.5843186189,-22724.9764566657,0,-26536.5843186189,48.1782786981668,48.1782786981668,-0.909259985404478,48.1119188843564,24.9,1015.12,39.94,201.335293639988
+45922,2873.75179247525,456.476094455446,225,48.2123861386139,49.6587577227723,13.4110396039604,2.1609900990099,1217.87128712871,-5437.32079207921,-4575.31782178218,20,40,10,32,5305663.84295823,395950.415217882,0,0,0,0,0,0,0,48.2123861386138,14460.8080193617,13.4110396039604,14.384175484093,14.1764160195543,2.1609900990099,2.17563030793976,1.74910756747271,1.30715356339746,1.037049017044,1.00849468354584,35.4264397098288,0.0252007111467828,-10012.6386138614,-10154.0456327811,-10355.3570516326,1.86748881607532,-26536.5843186189,-22724.9764566657,0,-26536.5843186189,48.1782786981668,48.1782786981668,-0.909259985404478,48.1119188843564,24.9,1015.12,39.94,201.335293639988
 45923,2873.74754118812,456.467894455446,225,44.5672970297029,45.904315940594,12.1011881188119,1.22891089108911,1468.0297029703,-6756.79702970297,-5655.04257425743,20,40,10,32,5305656.15229746,395940.058306601,0,0,0,0,0,0,0,44.5672970297029,14473.7060635311,12.1011881188119,12.9792781624184,12.8526579145247,1.22891089108911,1.24355110001897,1.00183720216705,1.18416397748144,0.939473466051084,1.00481149918967,42.7032530565101,0.0491053857203026,-12411.8396039604,-12269.2780217626,-11963.3855569063,2.0208103297416,-42922.0730906475,-27409.4833149045,0,-42922.0730906475,44.5475507303205,44.5475507303205,-1.09692541036282,44.4960366469348,24.9,1015.13,40.01,166.104567244187
 45924,2873.74363435643,456.460406831683,225,40.5201287128713,41.7357325742574,11.4407425742574,1.87613861386139,1398.5495049505,-6875.62673267327,-5711.43069306931,20,40,10,32,5305649.0837015,395930.600298475,0,0,0,0,0,0,0,40.5201287128712,14485.5170752473,11.4407425742574,12.2709091700732,12.0585831938588,1.87613861386139,1.89077882279124,1.52436569515863,1.25050541219135,0.992106394256075,0.951318320936255,40.6821560225381,-0.0320409041723382,-12587.0574257426,-11955.191069503,-10450.3597552638,2.22290177645969,-45494.5682281718,-27103.5822912257,0,-45494.5682281718,40.5293988824624,40.5293988824624,-1.08372681327538,40.7134426816474,24.9,1015.14,40.08,145.742657834184
 45925,2873.74006752475,456.453591881188,225,37.5322475247525,38.658214950495,10.5387128712871,0.541485148514851,1319.81188118812,-2039.79504950495,-1688.0495049505,20,40,10,32,5305642.62980501,395921.991591953,0,0,0,0,0,0,0,37.5322475247524,14496.2830571505,10.5387128712871,11.3034261171145,11.1199170894351,0.541485148514851,0.556125357444709,0.445827485687667,1.08703613359651,0.862415698816247,0.882024677041973,38.3917713894548,-0.00648018286631558,-3727.84455445545,-4323.64241741006,-5678.64479561034,2.39808508160991,-13708.4202663303,-10132.826957183,0,-13708.4202663303,37.6665995490638,37.6665995490638,-0.405227156379003,38.1178841595365,24.9,1015.15,40.15,123.874623977531
@@ -881,8 +881,8 @@ Time,Lat,Long,Heading,v_veh_GPS,v_veh_CAN,vair_ar,beta_ar,n_eng,tq_l,tq_r,t_amb_
 45929,2873.72710227723,456.427398811881,225,35.8116831683168,36.8860336633663,9.88735643564357,2.15594059405941,1261.65841584158,-529.444554455446,-461.612871287128,20,40,10,32,5305619.20226933,395888.928946056,0,0,0,0,0,0,0,35.8116831683168,14536.8446054178,9.88735643564357,10.6048057603285,10.4668125399722,2.15594059405941,2.17058080298926,1.7477794902941,0.938974608127981,0.744948965183143,0.736900434681396,36.700155653219,0.00266407517837418,-991.057425742574,-936.088648171748,-747.581377458013,2.51317356431304,-3655.41691674214,-2971.01849246467,0,-3655.41691674214,35.8119058915792,35.8119058915792,-0.118875872735791,35.7983938056543,24.9,1015.19,40.43,109.755562381351
 45930,2873.72445039604,456.420506633663,225,35.3322178217822,36.3921843564356,9.56565346534653,2.7470297029703,1245.0297029703,-591.49504950495,-508.469306930693,20,40,10,32,5305614.44497125,395880.2545195,0,0,0,0,0,0,0,35.3322178217821,14546.7301452143,9.56565346534653,10.259759282564,10.1653863884538,2.7470297029703,2.76166991190015,2.21142910222516,0.891203434706898,0.707049019968895,0.738217309021751,36.2164460032645,-0.00792022350327459,-1099.96435643564,-1102.58631506715,-1138.45988393905,2.54731816760917,-4058.38483426779,-4263.60611222814,0,-4058.38483426779,35.3157358102146,35.3157358102146,-0.170439444934586,35.2822361911179,24.9,1015.19873762376,40.4810643564357,103.616500508515
 45931,2873.72223574257,456.413419009901,225,34.6859405940594,35.7265188118812,9.37642574257426,0.332871287128713,1225.05445544554,-758.431683168317,-648.442574257426,20,40,10,32,5305610.50197438,395871.351218241,0,0,0,0,0,0,0,34.6859405940594,14556.4511171064,9.37642574257426,10.0568007609884,9.96783305283966,0.332871287128713,0.347511496058571,0.289735231303312,1.0728440468189,0.851156203333355,0.85021401644615,35.6353896062516,-0.00640818083446763,-1406.87425742574,-1398.63290853838,-1358.13549894788,2.5947632603076,-5203.17768906607,-4060.52984808878,0,-5203.17768906607,34.6923897657092,34.6923897657092,-0.1623356642595,34.7012139700056,24.9,1015.2,40.42,100.005284048603
-45932,2873.72061217822,456.40604990099,225,34.0876930693069,35.1103238613861,9.1599900990099,-0.0892079207920793,1207.78712871287,-829.242574257426,-708.457425742574,20,40,9.59405940594059,32,5305607.66021782,395862.117005736,0,0,0,0,0,0,0,34.0876930693069,14566.0029491746,9.1599900990099,9.82466004930767,9.74904717495964,-0.0892079207920793,-0.0745677118622222,-0.0669034328955046,0.98323982815278,0.780067412014012,0.816325380718483,35.1331034320802,-0.00525614832490042,-1537.7,-1533.65057347319,-1712.83622452997,2.64030098956043,-5705.5044505414,-3677.08544622423,0,-5705.5044505414,34.1098080580335,34.1098080580335,-0.14701309239835,34.1193142494913,24.9,1015.2,40.34,95.5231781523356
-45933,2873.71957475248,456.398707623762,189.356435643564,33.5742277227723,34.5814545544554,9.75420792079208,0.127524752475248,1182.14356435644,-1097.99405940594,-1066.83861386139,20,40,10,32,5305605.90360198,395852.935802037,0,0,0,0,0,0,0,33.5742277227722,14575.4080037951,9.75420792079208,10.4619956829871,10.2252391649132,0.127524752475248,0.142164961405105,0.110031363367549,1.37727057082875,1.09267734998882,0.956239394124679,34.3871623821355,-0.0125283535415435,-2164.83267326733,-2635.54034898539,-4263.10257808802,2.68078572791034,-7975.75325011119,-6637.56787178253,0,-7975.75325011119,33.5159900009802,33.5159900009802,-0.265336187084053,33.1011386734741,24.9,1015.2,40.26,104.951417135401
+45932,2873.72061217822,456.40604990099,225,34.0876930693069,35.1103238613861,9.1599900990099,-0.0892079207920793,1207.78712871287,-829.242574257426,-708.457425742574,20,40,9.59405940594059,32,5305607.66021782,395862.117005736,0,0,0,0,0,0,0,34.0876930693069,14566.0029491746,9.1599900990099,9.82466004930767,9.74904717495964,-0.0892079207920793,-0.0745677118622222,-0.0669034328955046,0.98323982815278,0.780067412014012,0.816325380718484,35.1331034320802,-0.00525614832490042,-1537.7,-1533.65057347319,-1712.83622452997,2.64030098956043,-5705.5044505414,-3677.08544622423,0,-5705.5044505414,34.1098080580335,34.1098080580335,-0.14701309239835,34.1193142494913,24.9,1015.2,40.34,95.5231781523356
+45933,2873.71957475248,456.398707623762,189.356435643564,33.5742277227723,34.5814545544554,9.75420792079208,0.127524752475248,1182.14356435644,-1097.99405940594,-1066.83861386139,20,40,10,32,5305605.90360198,395852.935802037,0,0,0,0,0,0,0,33.5742277227722,14575.4080037951,9.75420792079208,10.4619956829871,10.2252391649132,0.127524752475248,0.142164961405105,0.110031363367549,1.37727057082875,1.09267734998882,0.956239394124678,34.3871623821355,-0.0125283535415435,-2164.83267326733,-2635.54034898539,-4263.10257808802,2.68078572791034,-7975.75325011119,-6637.56787178253,0,-7975.75325011119,33.5159900009802,33.5159900009802,-0.265336187084053,33.1011386734741,24.9,1015.2,40.26,104.951417135401
 45934,2873.71901980198,456.391502772277,94.9009900990099,31.4401287128713,32.3833325742574,6.83485148514852,-2.56178217821782,1090.63861386139,-5543.9702970297,-4678.48910891089,20,40,10,32,5305605.03762021,395843.941917688,0,0,0,0,0,0,0,31.4401287128712,14584.5100300327,6.83485148514852,7.33080402961876,7.61863007835723,-2.56178217821782,-2.54714196928797,-1.9508933182179,1.78335150541356,1.41484748044918,1.55364092304817,31.7253912687804,-0.0329769305863615,-10222.4594059406,-9248.083374179,-6345.02878169693,2.86689679103311,-37088.4308996997,-24122.5696687244,0,-37088.4308996997,31.342227036565,31.342227036565,-0.964473798865036,31.034920861343,24.9,1015.2,40.18,60.0584767629991
 45935,2873.71893772277,456.384959306931,45,27.9843465346535,28.8238769306931,5.73840594059406,-1.25019801980198,1240.22772277228,-3279.61683168317,-2653.26930693069,20,40,9.71287128712871,32,5305605.03270093,395835.787751464,0,0,0,0,0,0,0,27.9843465346534,14592.7096792627,5.73840594059406,6.15479787443854,6.48766599362296,-1.25019801980198,-1.23555781087213,-0.984676570931782,2.23980848301058,1.77698416675367,1.62098162493293,36.0767620614795,0.0988587897272366,-5932.88613861386,-6696.4471228311,-7910.26353282852,3.21746847436916,-26027.5009966269,-14778.9224966084,0,-26027.5009966269,28.136734241741,28.136734241741,-0.592746898452222,28.5514790696981,24.9,1015.2,40.1,44.3511831089732
 45936,2873.71907544555,456.378911683168,45,26.3000891089109,27.0890917821782,7.28447524752475,-1.62960396039604,1296.25742574257,-4521.0702970297,-3793.45247524753,20,40,9.72277227722772,32,5305605.42379223,395828.258621124,0,0,0,0,0,0,0,26.3000891089109,14600.2777202143,7.28447524752475,7.81305352636382,7.70657560082838,-1.62960396039604,-1.61496375146618,-1.29679102549006,0.798539092489201,0.633532435764265,0.800732945273427,37.7066000543897,-0.0398891256437648,-8314.52277227723,-7873.3004215273,-8271.0225368792,3.42726793666183,-42812.6255179719,-19685.3632160824,0,-42812.6255179719,26.1481311636114,26.1481311636114,-0.786678048993014,25.6667776491454,24.9,1015.2,40.02,59.8261998150818
@@ -892,14 +892,14 @@ Time,Lat,Long,Heading,v_veh_GPS,v_veh_CAN,vair_ar,beta_ar,n_eng,tq_l,tq_r,t_amb_
 45940,2873.72140118812,456.360714950495,45,18.2745940594059,18.8228318811881,5.83477227722772,-3.36009900990099,1243.16831683168,-428.933663366337,-266.517821782179,20,40,10,32,5305610.14107844,395805.668098887,0,0,0,0,0,0,0,18.2745940594059,14623.5142519524,5.83477227722772,6.25815677410867,6.01253322682176,-3.36009900990099,-3.34545880097114,-2.75078035877176,1.27845651338213,1.01428180105362,1.01333303724012,36.1623004753149,-0.00885624991729796,-695.451485148515,-438.808910891089,208.56201116336,4.9251106312824,-4761.07122835331,-805.345634815063,0,-4761.07122835331,18.3319540241153,18.3319540241153,-0.0319876047010655,19.2978242600765,24.9,1015.2,39.7037871287129,36.41461786512
 45941,2873.72233980198,456.356857722772,45,18.8389504950495,19.404119009901,5.87356435643565,-3.5,1246.62871287129,2339.13069306931,2814.02277227723,20,40,10,32,5305611.9664668,395800.894411353,0,0,0,0,0,0,0,18.8389504950495,14628.633713201,5.87356435643565,6.29976369580881,6.07784179147103,-3.5,-3.48535979107015,-2.85368324026924,1.13607731389867,0.901323222194639,0.887445838475131,36.2629593158383,-0.0189365343760111,5153.15346534653,4933.7817370846,2657.80104306512,4.77941120021045,35586.2060907106,8927.21845156546,0,35586.2060907106,18.9004068228605,18.9004068228605,0.35750716160725,19.6231808577647,24.9,1015.2,39.65,37.1899933580849
 45942,2873.72352772277,456.352845841584,45,20.4719207920792,21.0860784158416,5.93734653465346,-3.5,1068.24257425743,2682.36237623762,3336.04455445545,20,40,9.87128712871287,32,5305614.25713954,395795.936408118,0,0,0,0,0,0,0,20.4719207920792,14634.0921985146,5.93734653465346,6.36817405558226,6.22574454175868,-3.5,-3.48535979107015,-2.81821135293525,0.875797554685855,0.694826544217082,0.753931919402843,31.0739168846202,-0.0215286075225373,6018.40693069307,5989.87782570336,4260.33734969268,4.39833320581668,32996.2665491413,10655.2851281906,0,32996.2665491413,20.4453410449956,20.4453410449956,0.426675217026653,20.4791033624251,24.9,1015.2,39.6,39.0616434748211
-45943,2873.72495574257,456.348637623763,45,21.912405940594,22.5697781188119,6.46873267326733,-3.5,973.856435643564,2390.71287128713,2972.73069306931,20,40,10,32,5305616.99697853,395790.741856542,0,0,0,0,0,0,0,21.912405940594,14639.9806583331,6.46873267326733,6.93811879464478,6.76047918328949,-3.5,-3.48535979107015,-2.82893660303,0.97712658578033,0.775217383546947,0.750901433564841,28.3283354061941,-0.0730100602938222,5363.44356435644,5180.9075188707,4290.16957832373,4.10889779843148,25138.4479724938,9663.22895281087,0,25138.4479724938,21.9022841878247,21.9022841878247,0.387723425807929,21.636029991424,24.9,1015.2,39.55,45.8609354519328
+45943,2873.72495574257,456.348637623763,45,21.912405940594,22.5697781188119,6.46873267326733,-3.5,973.856435643564,2390.71287128713,2972.73069306931,20,40,10,32,5305616.99697853,395790.741856542,0,0,0,0,0,0,0,21.912405940594,14639.9806583331,6.46873267326733,6.93811879464478,6.76047918328949,-3.5,-3.48535979107015,-2.82893660303,0.97712658578033,0.775217383546947,0.75090143356484,28.3283354061941,-0.0730100602938222,5363.44356435644,5180.9075188707,4290.16957832373,4.10889779843148,25138.4479724938,9663.22895281087,0,25138.4479724938,21.9022841878247,21.9022841878247,0.387723425807929,21.636029991424,24.9,1015.2,39.55,45.8609354519328
 45944,2873.72664643564,456.344293762376,45,23.030495049505,23.7214099009901,6.56292079207921,-3.49861386138614,815.727722772277,1285.04059405941,1615.44851485149,20,40,9.92079207920792,32,5305620.22643438,395785.387120556,0,0,0,0,0,0,0,23.0304950495049,14646.2439778875,6.56292079207921,7.03914141999789,6.90473323763491,-3.49861386138614,-3.48397365245629,-2.80969467046929,0.860232841015704,0.682478055512934,0.660698609445264,23.7285576036196,-0.00187205282804673,2900.48910891089,2986.9666993432,2641.69462631954,3.90813964454002,10768.2844534849,4634.81327242242,0,10768.2844534849,22.9840731300853,22.9840731300853,0.185420274700736,22.5420611995737,24.9,1015.2,39.5,47.9088457613757
 45945,2873.72857683168,456.339960990099,45,23.3046435643564,24.0037828712871,6.59570297029703,-3.4519801980198,819.816831683168,-76.4811881188117,23.1514851485147,20,40,10,32,5305623.89965776,395780.054222848,0,0,0,0,0,0,0,23.3046435643564,14652.6945938666,6.59570297029703,7.07430234846885,6.94837298030066,-3.4519801980198,-3.43733998908995,-2.76982140505064,0.830773502884869,0.659106067319027,0.666488202251883,23.8475049602324,-0.00280807924207008,-53.3297029702971,67.0773159494169,792.529649513048,3.8619437066853,-168.298858010619,-525.049979501913,0,-168.298858010619,23.2756363101656,23.2756363101656,-0.0209647202343996,22.8863888287118,24.9,1015.2,39.45,48.5148538533311
 45946,2873.73072574257,456.335754059406,45,22.8489801980198,23.5344496039604,6.44830693069307,-3.5,804.653465346535,-626.954455445544,-523.358415841584,20,40,10,32,5305627.97481933,395774.885406435,0,0,0,0,0,0,0,22.8489801980198,14659.1201456268,6.44830693069307,6.91621091320848,6.79680243113852,-3.5,-3.48535979107015,-2.80632021226563,0.801139927963979,0.635595845870115,0.626939488565159,23.4064205131319,-0.00590416661153197,-1150.31287128713,-1205.16806195471,-943.840127926918,3.93920595457267,-4240.97915312626,-4295.59658535789,0,-4240.97915312626,22.8540174492696,22.8540174492696,-0.171745144811511,22.6678934989127,24.9,1015.2,39.4,46.4024166416231
-45947,2873.73286504951,456.331740990099,45,22.1972178217822,22.8631343564356,5.88588118811881,-3.40108910891089,820.178217821782,-1383.78514851485,-1134.20198019802,20,40,10,32,5305632.02783422,395769.957774765,0,0,0,0,0,0,0,22.1972178217822,14665.380632618,5.88588118811881,6.31297426512862,6.28090599237025,-3.40108910891089,-3.38644889998104,-2.6942058614715,0.602996946729023,0.478396271407112,0.510265485971012,23.8580172568822,0.0321129062041861,-2517.98712871287,-2436.81498872659,-2092.75275958648,4.05516048093731,-9836.23449688173,-5682.53735049895,0,-9836.23449688173,22.178294284874,22.178294284874,-0.227769064035116,22.0580541334225,24.9,1015.2,39.35,39.6202115150345
+45947,2873.73286504951,456.331740990099,45,22.1972178217822,22.8631343564356,5.88588118811881,-3.40108910891089,820.178217821782,-1383.78514851485,-1134.20198019802,20,40,10,32,5305632.02783422,395769.957774765,0,0,0,0,0,0,0,22.1972178217822,14665.380632618,5.88588118811881,6.31297426512862,6.28090599237025,-3.40108910891089,-3.38644889998104,-2.6942058614715,0.602996946729023,0.478396271407112,0.510265485971012,23.8580172568822,0.0321129062041861,-2517.98712871287,-2436.81498872659,-2092.75275958648,4.05516048093731,-9836.23449688173,-5682.53735049895,0,-9836.23449688173,22.178294284874,22.178294284874,-0.227769064035116,22.0580541334225,24.9,1015.2,39.35,39.6202115150344
 45948,2873.73481613861,456.327822178218,45,21.3074455445544,21.9466689108911,5.8350198019802,-3.47089108910891,967.064356435644,-1451.52376237624,-1278.8198019802,20,40,10,32,5305635.73008887,395765.141272135,0,0,0,0,0,0,0,21.3074455445544,14671.4187500547,5.8350198019802,6.25842225982651,6.1866021200543,-3.47089108910891,-3.45625088017906,-2.76784944178513,0.609167893554313,0.483292080529007,0.48148424418024,28.1307618308033,0.0295208330576599,-2730.34356435644,-2850.67705126948,-2313.3101717317,4.22433664667238,-13022.4711126932,-6159.31917307193,0,-13022.4711126932,21.2995851387119,21.2995851387119,-0.24686986025335,21.2553445911376,24.9,1015.2,39.3,38.4371986783201
 45949,2873.73643039604,456.323848118812,45,20.2885148514851,20.8971702970297,5.40581188118812,-3.5,991.173267326733,-1250.47425742574,-1505.10891089109,20,40,10,32,5305638.80966323,395760.244682705,0,0,0,0,0,0,0,20.2885148514851,14677.2024330855,5.40581188118812,5.79807002508903,5.76296316692099,-3.5,-3.48535979107015,-2.77760939535529,0.5556975392408,0.440870608458275,0.451326166416388,28.8320616210024,-0.00684019302555533,-2755.58316831683,-2700.24340750907,-2322.67141448525,4.43713524919132,-14074.3107253403,-6677.67755243622,0,-14074.3107253403,20.3157738457014,20.3157738457014,-0.266979544489102,20.4755486981479,24.9,1015.2,39.25,33.3450525514939
-45950,2873.73751188119,456.31979970297,45,19.6431287128713,20.2324225742574,5.42215841584158,-3.5,943.470297029703,-752.328712871287,-937.020792079208,20,40,9.7029702970297,32,5305640.90403839,395755.237644426,0,0,0,0,0,0,0,19.6431287128713,14682.7324504673,5.42215841584158,5.8156027018953,5.73986452899904,-3.5,-3.48535979107015,-2.79554993969742,0.603244773474014,0.478592888307748,0.481151740467146,27.4444384632287,-0.0166324693568767,-1689.34950495049,-1683.50287226742,-1616.79527514118,4.58196982679726,-8500.08282200303,-3613.25756063884,0,-8500.08282200303,19.6330762670326,19.6330762670326,-0.144227417791285,19.7613565541437,24.9,1015.19873762376,39.2025247524753,33.0747224275197
+45950,2873.73751188119,456.31979970297,45,19.6431287128713,20.2324225742574,5.42215841584158,-3.5,943.470297029703,-752.328712871287,-937.020792079208,20,40,9.7029702970297,32,5305640.90403839,395755.237644426,0,0,0,0,0,0,0,19.6431287128713,14682.7324504673,5.42215841584158,5.8156027018953,5.73986452899904,-3.5,-3.48535979107015,-2.79554993969742,0.603244773474014,0.478592888307747,0.481151740467146,27.4444384632287,-0.0166324693568767,-1689.34950495049,-1683.50287226742,-1616.79527514118,4.58196982679726,-8500.08282200303,-3613.25756063884,0,-8500.08282200303,19.6330762670326,19.6330762670326,-0.144227417791285,19.7613565541437,24.9,1015.19873762376,39.2025247524753,33.0747224275197
 45951,2873.73791613862,456.315623564356,53.9108910891089,19.0318118811881,19.6027662376238,5.57280198019802,-3.5,892.079207920792,-713.670297029703,-884.991089108911,20,40,9.81188118811881,32,5305641.74683459,395750.048841335,0,0,0,0,0,0,0,19.0318118811881,14688.1058798402,5.57280198019802,5.97717730977374,5.83298936383709,-3.5,-3.48535979107015,-2.82457260748454,0.814210407923276,0.645965498505917,0.625667595758465,25.9495322780015,-0.014616412465134,-1598.66138613861,-1382.70482305656,-519.874016888376,4.72939867636361,-7849.19749671113,-4005.85266185135,0,-7849.19749671113,19.0493102636996,19.0493102636996,-0.159976146129465,19.2242053701139,24.9,1015.19,39.17,34.1640789408396
 45952,2873.7376319802,456.311355940594,164.405940594059,18.6382376237624,19.1973847524753,5.41816831683168,-3.5,857.207920792079,706.938613861386,530.070297029703,20,40,9.86138613861386,32,5305641.31651252,395744.72303788,0,0,0,0,0,0,0,18.6382376237623,14693.33142808,5.41816831683168,5.81132307212369,5.67884961368341,-3.5,-3.48535979107015,-2.82042761975789,0.786497302889098,0.623978909370794,0.612731585485181,24.9351676533276,-0.00136803860511106,1237.00891089109,1037.94943632977,549.001653453283,4.82899691321038,5963.65271681273,-1531.61211415971,0,5963.65271681273,18.6478212920302,18.6478212920302,-0.0612399111198234,18.9132290523803,24.9,1015.18,39.14,32.4130292208502
 45953,2873.73658277228,456.307512376238,225,18.5992871287129,19.1572657425743,4.97782178217822,-3.5,837.019801980198,1184.00396039604,959.336633663366,20,40,10,32,5305639.45951826,395739.899894177,0,0,0,0,0,0,0,18.5992871287128,14698.49337841,4.97782178217822,5.33902398008334,5.3019408657163,-3.5,-3.48535979107015,-2.77944794471125,0.503020222227845,0.399078303897812,0.432296809845245,24.3479190815757,-0.00597616864337992,2143.34059405941,2152.22778159004,1559.55093364437,4.8389337184308,10099.8620095052,564.167789212935,0,10099.8620095052,18.6095204391726,18.6095204391726,0.0226693461425335,18.7580486583768,24.9,1015.17,39.11,28.2363954573066
@@ -913,26 +913,26 @@ Time,Lat,Long,Heading,v_veh_GPS,v_veh_CAN,vair_ar,beta_ar,n_eng,tq_l,tq_r,t_amb_
 45961,2873.71792277228,456.313390594059,225,23.0386930693069,23.7298538613861,5.05144554455446,3.5,772.351485148515,2098.23960396039,1758.0297029703,20,40,11,32,5305604.76252807,395746.598157613,0,0,0,0,0,0,0,23.0386930693069,14743.8102127885,5.05144554455446,5.41799005199817,5.61913065036152,3.5,3.51464020892985,2.6944230570323,1.09120960156532,0.865726779454298,0.864757873733821,22.4667939975161,0.0123123474459996,3856.26930693069,3818.4309675522,3612.9641260137,3.90690016670656,13539.947171319,5169.59573195526,0,13539.947171319,23.0485928830507,23.0485928830507,0.206627345902905,23.0744447315689,24.9,1015.1,38.96,31.7357059371841
 45962,2873.71678,456.31836940594,194.70297029703,23.727801980198,24.439636039604,4.94189108910891,3.18643564356436,803.60396039604,1890.0504950495,1607.75742574257,20,40,11,32,5305602.53368515,395752.76220162,0,0,0,0,0,0,0,23.727801980198,14750.3117655113,4.94189108910891,5.30048607328144,5.56554389923208,3.18643564356436,3.20107585249421,2.43056501011663,1.3544887121909,1.07460303586967,1.03352979177813,23.3758916516283,0.00446412597457295,3497.80792079208,3502.21095970983,3426.0960346523,3.79322546403442,12405.0813312174,3770.10259061928,0,12405.0813312174,23.7176438584452,23.7176438584452,0.150747748042128,23.6513833754657,24.9,1015.1,39.02,31.1022761622043
 45963,2873.71615643564,456.323602178218,119.851485148515,24.2183465346535,24.9448969306931,5.57705940594059,3.06910891089109,829.881188118812,1711.10495049505,1415.28118811881,20,40,10.7821782178218,32,5305601.26088525,395759.259989244,0,0,0,0,0,0,0,24.2183465346534,14756.9711070404,5.57705940594059,5.98174366412062,6.13419881278912,3.06910891089109,3.08374911982094,2.38766934907356,0.972050718668099,0.771190371612938,0.819514101678726,24.1402652217262,0.00748821131218689,3126.38613861386,3118.74547593373,3026.55733356161,3.71640140707644,11218.6194791742,3852.57626561145,0,11218.6194791742,24.2210012743848,24.2210012743848,0.154005870884121,24.2008433821555,24.9,1015.1,39.08,37.8777760742732
-45964,2873.71593504951,456.329070792079,55.6930693069307,24.7417128712871,25.4839642574257,5.4249702970297,3.36168316831683,851.440594059406,1367.34653465347,1127.80693069307,20,40,10,32,5305600.72775808,395766.065030888,0,0,0,0,0,0,0,24.7417128712871,14763.7805172714,5.4249702970297,5.81861861964998,6.03469689555981,3.36168316831683,3.37632337724668,2.59096083671219,1.13250312568213,0.89848758873849,0.919178147835859,24.7674029191218,0.00576016254783607,2495.15346534653,2499.50229389276,2495.11461606451,3.63762399652745,8988.71457818862,2466.02186956935,0,8988.71457818862,24.7346372904617,24.7346372904617,0.0985660447232793,24.6414307657579,24.9,1015.1,39.14,36.4997099979184
+45964,2873.71593504951,456.329070792079,55.6930693069307,24.7417128712871,25.4839642574257,5.4249702970297,3.36168316831683,851.440594059406,1367.34653465347,1127.80693069307,20,40,10,32,5305600.72775808,395766.065030888,0,0,0,0,0,0,0,24.7417128712871,14763.7805172714,5.4249702970297,5.81861861964998,6.03469689555981,3.36168316831683,3.37632337724668,2.5909608367122,1.13250312568213,0.89848758873849,0.919178147835859,24.7674029191218,0.00576016254783607,2495.15346534653,2499.50229389276,2495.11461606451,3.63762399652745,8988.71457818862,2466.02186956935,0,8988.71457818862,24.7346372904617,24.7346372904617,0.0985660447232793,24.6414307657579,24.9,1015.1,39.14,36.4997099979184
 45965,2873.71596920792,456.334655742574,45,25.0139603960396,25.7643792079208,5.35415841584158,3.35673267326733,871.663366336634,1122.80495049505,910.703960396039,20,40,10,32,5305600.66537754,395773.023547062,0,0,0,0,0,0,0,25.0139603960396,14770.6897971119,5.35415841584158,5.74266846548983,5.99003712973543,3.35673267326733,3.37137288219718,2.57514942288343,1.27419017273906,1.01089703854816,0.974391346388931,25.3556595193196,0.0129603657326312,2033.50891089109,1980.737966866,1501.10207095379,3.5980331212329,7419.57343037644,2044.17084903109,0,7419.57343037644,25.0139834329967,25.0139834329967,0.0815960308902223,24.9799704264307,24.9,1015.1,39.2,35.9739310393414
 45966,2873.71610990099,456.340288217822,45,25.3382475247525,26.098394950495,5.65577227722772,3.44841584158416,883.683168316832,221.365346534654,126.776237623762,20,40,10,32,5305600.7992749,395780.044830097,0,0,0,0,0,0,0,25.3382475247524,14777.6842963143,5.65577227722772,6.06616812239428,6.26522196436521,3.44841584158416,3.46305605051401,2.66557655932309,1.07578148937349,0.853486665491102,0.860267677126499,25.7053013859732,-0.00324009143315779,348.141584158416,364.754014312323,382.676893395384,3.5519819110431,1283.74018326445,676.851647663772,0,1283.74018326445,25.2910212724242,25.2910212724242,0.0271174394667112,25.07933484142,24.9,1015.1,39.26,39.3856153307708
 45967,2873.71621663367,456.345878712871,45,25.0388316831683,25.7899966336634,5.74658415841584,3.47336633663366,879.886138613861,-617.567326732673,-651.411881188119,20,40,10,32,5305600.87121883,395787.012680372,0,0,0,0,0,0,0,25.0388316831683,14784.6943871284,5.74658415841584,6.16356952255603,6.32529641207611,3.47336633663366,3.48800654556352,2.70125020198112,0.950384433273566,0.754001113517665,0.770710776809757,25.5948502691185,-0.00273607721022213,-1268.97920792079,-1212.17133614351,-1202.41325392065,3.59448838496841,-4669.43946905064,-2611.08542860937,0,-4669.43946905064,25.0568340358788,25.0568340358788,-0.104406975350997,24.8628584988622,24.9,1015.1,39.32,40.1615863421824
-45968,2873.71624940594,456.35140980198,55.6930693069307,24.6764455445545,25.4167389108911,5.5209603960396,3.42574257425743,874.485148514852,-1300.64158415842,-1160.97623762376,20,40,10,32,5305600.80750746,395793.904052407,0,0,0,0,0,0,0,24.6764455445544,14791.6070968919,5.5209603960396,5.92157398102898,6.1125835597558,3.42574257425743,3.44038278318728,2.65013451251786,1.03708940325102,0.822789744330282,0.796003478526332,25.4377418356263,0.016128455133941,-2461.61782178218,-2600.33001666503,-2830.20402300633,3.64753426321454,-9210.53337941545,-7076.41783792745,0,-9210.53337941545,24.5775650426428,24.5775650426428,-0.283281050877364,23.7940367362567,24.9,1015.1,39.38,37.4801040488107
-45969,2873.71610217822,456.356700693069,84.2079207920792,22.4242772277228,23.0970055445545,5.33903960396039,3.5,1003.92574257426,-2588.17821782178,-2226.66732673267,20,40,10.8316831683168,32,5305600.41578517,395800.490181076,0,0,0,0,0,0,0,22.4242772277227,14798.2042113033,5.33903960396039,5.72645259784406,5.82859243854871,3.5,3.51464020892985,2.74193864788985,0.710982431539565,0.564068103710217,0.598310040049389,29.203016089083,0.0324729163634258,-4814.84554455445,-4737.40160768552,-3922.44778047589,4.02064826301912,-22501.7408345814,-21427.3074073196,0,-22501.7408345814,22.391833251642,22.391833251642,-0.85760791425677,21.8463603649904,24.9,1015.1,39.44,34.1291142814896
+45968,2873.71624940594,456.35140980198,55.6930693069307,24.6764455445545,25.4167389108911,5.5209603960396,3.42574257425743,874.485148514852,-1300.64158415842,-1160.97623762376,20,40,10,32,5305600.80750746,395793.904052407,0,0,0,0,0,0,0,24.6764455445544,14791.6070968919,5.5209603960396,5.92157398102898,6.1125835597558,3.42574257425743,3.44038278318728,2.65013451251786,1.03708940325102,0.822789744330283,0.796003478526332,25.4377418356263,0.016128455133941,-2461.61782178218,-2600.33001666503,-2830.20402300633,3.64753426321454,-9210.53337941545,-7076.41783792745,0,-9210.53337941545,24.5775650426428,24.5775650426428,-0.283281050877364,23.7940367362567,24.9,1015.1,39.38,37.4801040488107
+45969,2873.71610217822,456.356700693069,84.2079207920792,22.4242772277228,23.0970055445545,5.33903960396039,3.5,1003.92574257426,-2588.17821782178,-2226.66732673267,20,40,10.8316831683168,32,5305600.41578517,395800.490181076,0,0,0,0,0,0,0,22.4242772277227,14798.2042113033,5.33903960396039,5.72645259784406,5.82859243854871,3.5,3.51464020892985,2.74193864788985,0.710982431539566,0.564068103710217,0.598310040049389,29.203016089083,0.0324729163634258,-4814.84554455445,-4737.40160768552,-3922.44778047589,4.02064826301912,-22501.7408345814,-21427.3074073196,0,-22501.7408345814,22.391833251642,22.391833251642,-0.85760791425677,21.8463603649904,24.9,1015.1,39.44,34.1291142814896
 45970,2873.71584079208,456.361268613861,100.247524752475,19.1985544554455,19.7745110891089,4.58093069306931,3.48594059405941,956.292079207921,-3089.6396039604,-2647.41089108911,20,40,11,32,5305599.82886998,395806.171862542,0,0,0,0,0,0,0,19.1985544554455,14803.9780796751,4.58093069306931,4.91333356066727,4.99859317416838,3.48594059405941,3.50058080298926,2.73257047386829,0.589124537660856,0.467390396817456,0.478099241812618,27.817408988201,-0.0397451215800689,-5737.0504950495,-5366.11718458975,-3170.5809373082,4.69854484389264,-29895.5578250654,-20612.9819107493,0,-29895.5578250654,19.2264557396334,19.2264557396334,-0.823774085329322,19.8880896644846,24.9,1015.1,39.4924257425743,25.0677185398368
 45971,2873.71549376238,456.36519039604,114.504950495049,16.898495049505,17.4054499009901,3.9230099009901,3.5,932.262376237624,-2266.29504950495,-1884.87128712871,20,40,11,32,5305599.09785064,395811.045762789,0,0,0,0,0,0,0,16.8984950495049,14808.9448402637,3.9230099009901,4.20767252264409,4.30690051128913,3.5,3.51464020892985,2.72759267880599,0.604976207123803,0.479966546013215,0.463259697826265,27.1184132630211,0.0346329773188644,-4151.16633663367,-4263.49175571023,-341.218229646756,5.32849798258355,-23973.0509445265,-10497.4585045912,0,-23973.0509445265,16.9606827761984,16.9606827761984,-0.420639588711348,18.8752348227743,24.9,1015.1,39.5,18.6267225468492
-45972,2873.71511851485,456.368821782178,103.811881188119,16.2498415841584,16.7373368316832,3.54788118811881,3.5,1117.35643564356,1336.00594059406,1665.10099009901,20,40,10.8118811881188,32,5305598.32109699,395815.556963654,0,0,0,0,0,0,0,16.2498415841584,14813.4974450492,3.54788118811881,3.80532360754066,3.95052993789659,3.5,3.51464020892985,2.69207218457137,0.790590479730206,0.627226289891737,0.626217017834421,32.5025812005472,0.0350649895099521,3001.10693069307,2876.60139202039,2737.64235140247,5.54084925245745,22017.0442054838,5843.03699019187,0,22017.0442054838,16.4200984217233,16.4200984217233,0.23283120391247,18.7423062870592,24.9,1015.1,39.5,15.6895668799822
+45972,2873.71511851485,456.368821782178,103.811881188119,16.2498415841584,16.7373368316832,3.54788118811881,3.5,1117.35643564356,1336.00594059406,1665.10099009901,20,40,10.8118811881188,32,5305598.32109699,395815.556963654,0,0,0,0,0,0,0,16.2498415841584,14813.4974450492,3.54788118811881,3.80532360754066,3.95052993789659,3.5,3.51464020892985,2.69207218457138,0.790590479730206,0.627226289891737,0.626217017834421,32.5025812005472,0.0350649895099521,3001.10693069307,2876.60139202039,2737.64235140247,5.54084925245745,22017.0442054838,5843.03699019187,0,22017.0442054838,16.4200984217233,16.4200984217233,0.23283120391247,18.7423062870592,24.9,1015.1,39.5,15.6895668799822
 45973,2873.71482009901,456.372593366337,100.247524752475,18.3800792079208,18.9314815841584,4.08330693069307,3.5,1247.64356435644,3994.44653465347,4721.27623762376,20,40,10.1089108910891,32,5305597.68351279,395820.245384511,0,0,0,0,0,0,0,18.3800792079208,14818.2763045926,4.08330693069307,4.37960107351836,4.52825226716991,3.5,3.51464020892985,2.69675785950813,0.87337454458083,0.692904214417383,0.710857195520778,36.2924801488959,0.0520574690260685,8715.72277227723,8798.81589059895,6142.44174635777,4.90374050994721,61997.1669794332,16688.6193493373,0,61997.1669794332,18.3541038133516,18.3541038133516,0.666214641266107,19.3329553186988,24.9,1015.1,39.5,20.8252652260372
-45974,2873.71447336634,456.376914653465,112.722772277228,20.8882772277228,21.5149255445545,4.45733663366337,3.31435643564356,1183.29207920792,5484.13168316832,5709.51386138614,20,40,10.7623762376238,32,5305596.9440722,395825.616975839,0,0,0,0,0,0,0,20.8882772277228,14823.7173919414,4.45733663366337,4.78077123203457,4.99035749607597,3.31435643564356,3.32899664457342,2.54768577156394,1.16185737285084,0.921776201511158,0.898676807508464,34.4205713249129,-0.0551535563955304,11193.6455445545,11099.1856680718,9330.64777295277,4.31676006388095,66092.7986578343,20461.5065999127,0,66092.7986578343,20.9366117047348,20.9366117047348,0.819727641080937,21.2914630564353,24.9,1015.1,39.5,25.1667912477389
+45974,2873.71447336634,456.376914653465,112.722772277228,20.8882772277228,21.5149255445545,4.45733663366337,3.31435643564356,1183.29207920792,5484.13168316832,5709.51386138614,20,40,10.7623762376238,32,5305596.9440722,395825.616975839,0,0,0,0,0,0,0,20.8882772277228,14823.7173919414,4.45733663366337,4.78077123203457,4.99035749607597,3.31435643564356,3.32899664457342,2.54768577156395,1.16185737285084,0.921776201511158,0.898676807508464,34.4205713249129,-0.0551535563955304,11193.6455445545,11099.1856680718,9330.64777295277,4.31676006388095,66092.7986578343,20461.5065999127,0,66092.7986578343,20.9366117047348,20.9366117047348,0.819727641080937,21.2914630564353,24.9,1015.1,39.5,25.1667912477389
 45975,2873.71411940594,456.381915841584,103.811881188119,24.1716930693069,24.8968438613861,5.17519801980198,3.06970297029703,1222.59405940594,6474.14752475248,5496.95346534653,20,40,11,32,5305596.1759607,395831.835304323,0,0,0,0,0,0,0,24.1716930693069,14829.9734931515,5.17519801980198,5.5507222914903,5.78955175039187,3.06970297029703,3.08434317922688,2.35764494545625,1.2684127081253,1.00631340417919,0.99249608152128,35.5638195865947,0.0652338408542435,11971.100990099,11529.1441819429,10629.2408545388,3.72956874881445,63379.7442031547,22677.4052881262,0,63379.7442031547,24.1560190177433,24.1560190177433,0.905848010543625,24.0255107767622,24.9,1015.1,39.5,33.9188030892298
 45976,2873.71385792079,456.387667227723,75.2970297029703,27.0036336633663,27.8137426732673,5.95871287128713,3.18623762376238,1708.90099009901,5046.50198019802,3942.67920792079,20,40,11,32,5305595.5622845,395838.991275162,0,0,0,0,0,0,0,27.0036336633663,14837.1140344056,5.95871287128713,6.39109078274635,6.61853125788305,3.18623762376238,3.20087783269223,2.46176289032506,1.24447365692577,0.987321014753339,1.00238751693436,49.7099147796979,0.160060516797995,8989.18118811882,9549.71611606705,10630.5801645514,3.33464640005776,59748.3090673399,17691.1256291073,0,59748.3090673399,27.0092278208018,27.0092278208018,0.703972377435761,26.9758594528783,24.9,1015.1,39.5,43.9995355967461
 45977,2873.7138549505,456.394011881188,45,29.8359405940594,30.7310188118812,6.37028712871287,3.17960396039604,1977.85148514851,6146.70495049505,4861.39801980198,20,40,11,32,5305595.41413734,395846.894944173,0,0,0,0,0,0,0,29.8359405940594,14844.9895649887,6.37028712871287,6.83252981494478,7.13124168629899,3.17960396039604,3.19424416932589,2.4358744930708,1.53878257528205,1.22081521393172,1.21406197206495,57.5333675521687,0.0201605689174263,11008.102970297,10708.5070385256,10440.2072465008,3.01928909669729,76572.4754616627,20518.4337945812,0,76572.4754616627,29.8079592196843,29.8079592196843,0.820227319761686,29.8360391941027,24.9,1015.1,39.5,51.0456486336958
-45978,2873.71425336634,456.400935247525,45,32.6684851485149,33.6485397029703,6.31944554455446,-0.301980198019802,1801.76732673267,6024.9702970297,4823.47425742574,20,40,11,32,5305595.99649597,395855.532954085,0,0,0,0,0,0,0,32.6684851485148,14853.6735058302,6.31944554455446,6.7779990485001,7.250501365509,-0.301980198019802,-0.287339989089943,-0.166737350751981,2.35193733893738,1.86594320192542,1.79737486604612,52.4112870105693,-0.0881304869818919,10848.4445544554,10932.1829624547,10834.1362361872,2.75713700207155,61969.557220615,20823.2415512123,0,61969.557220615,32.694020096069,32.694020096069,0.834843261553877,32.7320563485104,24.9,1015.1,39.5,52.9102045439998
+45978,2873.71425336634,456.400935247525,45,32.6684851485149,33.6485397029703,6.31944554455446,-0.301980198019802,1801.76732673267,6024.9702970297,4823.47425742574,20,40,11,32,5305595.99649597,395855.532954085,0,0,0,0,0,0,0,32.6684851485148,14853.6735058302,6.31944554455446,6.7779990485001,7.250501365509,-0.301980198019802,-0.287339989089943,-0.16673735075198,2.35193733893738,1.86594320192542,1.79737486604612,52.4112870105693,-0.0881304869818919,10848.4445544554,10932.1829624547,10834.1362361872,2.75713700207155,61969.557220615,20823.2415512123,0,61969.557220615,32.694020096069,32.694020096069,0.834843261553877,32.7320563485104,24.9,1015.1,39.5,52.9102045439998
 45979,2873.71523980198,456.408401287129,45,35.6947326732673,36.7655746534653,6.8666303630297,-1.75990099009901,1781.85643564356,6038.97821782178,4823.90297029703,20,40,11,32,5305597.65588316,395864.866643402,0,0,0,0,0,0,0,35.6947326732673,14863.1839367983,6.8666303630297,7.36488885597299,7.88993550860994,-1.75990099009901,-1.74526078116915,-1.27482551317564,2.60535823372126,2.06699830148921,2.18329471083449,51.8321026663844,0.0460092983508406,10862.8811881188,10803.9650622488,10475.3907874219,2.52256061253313,56783.4723387302,19330.6454536138,0,56783.4723387302,35.6784564258406,35.6784564258406,0.772360280582507,35.5911671689708,24.9,1015.1,39.5,62.9388605831267
 45980,2873.71688158416,456.416274059406,45,38.3363069306931,39.4863961386139,6.83382123211881,-0.917326732673267,1913.16831683168,5059.16732673267,4091.53366336634,20,40,11,32,5305600.52006971,395874.728910369,0,0,0,0,0,0,0,38.336306930693,14873.471838256,6.83382123211881,7.32969901905956,8.0133616323594,-0.917326732673267,-0.90268652374341,-0.630007120507863,3.36993365214565,2.6735851695785,2.42613128232364,55.6518104559182,0.0311768797901627,9150.70099009901,9217.62279188315,9508.25978836298,2.34853535054552,47832.990521937,16620.6553706157,0,47832.990521937,38.2862737966865,38.2862737966865,0.664237710899799,38.2096338373451,24.9,1015.1,39.4911633663366,65.0778499733709
 45981,2873.71920405941,456.424346534653,45,40.5483762376237,41.7648275247525,9.20388118811882,0.118613861386139,1618.93069306931,4973.04752475248,4020.48316831683,20,40,11,32,5305604.64066139,395884.862690915,0,0,0,0,0,0,0,40.5483762376237,14884.428983498,9.20388118811882,9.87173597679536,10.1569693854426,0.118613861386139,0.133254070315996,0.112318534597337,1.57421096947504,1.24892283831656,1.46364409588262,47.0927849260886,-0.137667884893282,8993.53069306931,9023.71720419567,8984.72148903766,2.22038447593302,37216.246545036,16259.4396031336,0,37216.246545036,40.5686523870208,40.5686523870208,0.652598056835396,40.5874160986657,24.9,1015.1,39.43,103.608368072651
 45982,2873.72217623762,456.432437821782,45,42.8853267326733,44.1718865346535,9.51479207920792,-0.156534653465347,1517.5198019802,4950.68613861386,3992.43762376238,20,40,11,32,5305609.96432025,395895.041600408,0,0,0,0,0,0,0,42.8853267326732,14896.0264885035,9.51479207920792,10.2052072772619,10.5553978638088,-0.156534653465347,-0.141894444535489,-0.108333293362894,1.83235464116406,1.45372482063715,1.63043668340844,44.142861681278,0.0294488310258119,8943.12376237624,8990.46322909519,8988.45237508124,2.09916850270915,33143.5180629999,16485.8589016864,0,33143.5180629999,42.9154777962944,42.9154777962944,0.65904214183794,42.9295942747621,24.9,1015.1,39.36,111.652766262403
-45983,2873.72564821782,456.440795742574,45,45.3010396039604,46.6600707920792,7.8376001099703,0.0797029702970297,1604.91584158416,4829.10891089109,3810.98217821782,20,40,11,32,5305616.20781016,395905.569343716,0,0,0,0,0,0,0,45.3010396039604,14908.2854077554,7.8376001099703,8.40631440106007,9.2668718219146,0.0797029702970297,0.0943431792268868,0.0705615922949965,4.21920149198572,3.34736398422985,3.11777928020031,46.6851094217655,0.0301688513442914,8640.09108910891,8633.8991079306,8624.34981676514,1.98705495841936,32051.9773092273,16523.8413677165,0,32051.9773092273,45.313484364278,45.313484364278,0.660550708536191,45.3202243564883,24.9,1015.1,39.29,86.1379642904056
+45983,2873.72564821782,456.440795742574,45,45.3010396039604,46.6600707920792,7.8376001099703,0.0797029702970297,1604.91584158416,4829.10891089109,3810.98217821782,20,40,11,32,5305616.20781016,395905.569343716,0,0,0,0,0,0,0,45.3010396039604,14908.2854077554,7.8376001099703,8.40631440106007,9.2668718219146,0.0797029702970297,0.0943431792268868,0.0705615922949966,4.21920149198572,3.34736398422985,3.11777928020031,46.6851094217655,0.0301688513442914,8640.09108910891,8633.8991079306,8624.34981676514,1.98705495841936,32051.9773092273,16523.8413677165,0,32051.9773092273,45.313484364278,45.313484364278,0.660550708536191,45.3202243564883,24.9,1015.1,39.29,86.1379642904056
 45984,2873.72962762376,456.449347722772,45,47.7407128712871,49.1729342574258,8.44519801981188,-2.00960396039604,1688.0495049505,4579.97524752475,3676.54158415841,20,40,10.5940594059406,32,5305623.38688523,395916.355761495,0,0,0,0,0,0,0,47.7407128712871,14921.2106386135,8.44519801981188,9.05800101276379,9.92371805736061,-2.00960396039604,-1.99496375146618,-1.45791796619147,4.24963165508633,3.3715061903299,3.36439557689764,49.1033696634108,0.0139683941785025,8256.51683168317,8251.91671404764,8259.38106560332,1.88549618294788,30571.0160809075,15831.5620266761,0,30571.0160809075,47.7060506813057,47.7060506813057,0.633076550229286,47.6697230268354,24.9,1015.1,39.22,98.570681443577
 45985,2873.73402366337,456.458099504951,45,49.9333267326732,51.4313265346535,9.38265566555446,-0.691881188118812,1768.73762376238,4470.76237623763,3450.12079207921,20,40,11,32,5305631.33323987,395927.4049686,0,0,0,0,0,0,0,49.9333267326732,14934.773193619,9.38265566555446,10.0634827415094,10.8477926139492,-0.691881188118812,-0.677240979188955,-0.498701079459039,3.85774154948559,3.06059455746391,3.01991462891571,51.4504918975903,0.0227526420639525,7920.88316831683,7919.10134300558,7911.19831999628,1.80274938229198,29381.4202467931,15277.9932452073,0,29381.4202467931,49.9150298009998,49.9150298009998,0.610815660774005,49.905583087956,24.9,1015.1,39.15,118.237309253691
 45986,2873.73866920792,456.467150891089,45,52.0380891089109,53.5992317821782,10.3626798680099,-1.23435643564356,1842.71287128713,4071.21881188119,3364.07128712871,20,40,11,32,5305639.73505417,395938.835703479,0,0,0,0,0,0,0,52.0380891089108,14948.9411713693,10.3626798680099,11.1146197542295,11.8019225645634,-1.23435643564356,-1.21971622671371,-0.916120464539,3.44432686646561,2.73260609255616,2.74685145373768,53.6023446213981,0.0254887192741746,7435.2900990099,7442.35284776002,7435.58465628405,1.72978245881751,27573.2651572864,14416.2801612478,0,27573.2651572864,52.0369999019703,52.0369999019703,0.576310601357159,52.0296822720747,24.9,1015.1,39.08,140.527779972836
@@ -942,7 +942,7 @@ Time,Lat,Long,Heading,v_veh_GPS,v_veh_CAN,vair_ar,beta_ar,n_eng,tq_l,tq_r,t_amb_
 45990,2873.75900752475,456.506552970297,45,59.3500396039604,61.1305407920792,14.9062376237624,-2.50128712871287,1507.34158415842,3395.97524752475,3090.24752475248,20,40,11,32,5305676.52373569,395988.598923186,0,0,0,0,0,0,0,59.3500396039603,15010.9387077279,14.9062376237624,15.9878685112874,16.0868922780816,-2.50128712871287,-2.48664691978302,-1.96197907712855,1.20518440112506,0.956150320468098,0.959772224057011,43.8467893263193,0.0229686481594963,6486.22277227723,6488.1885599451,6489.31267425802,1.51655703695653,17249.6983020153,12171.9532720017,0,17249.6983020153,59.3493969218703,59.3493969218703,0.486658443072029,59.3485917818583,24.9,1015.1,38.820198019802,259.162741592979
 45991,2873.76454920792,456.517146930693,45,61.0202574257426,62.8508651485149,15.6197326732673,-1.96574257425743,1554.82178217822,3334.8900990099,3014.21881188119,20,40,11,32,5305686.55099578,396001.98100358,0,0,0,0,0,0,0,61.0202574257425,15027.6659513748,15.6197326732673,16.7531364026804,16.7900104912896,-1.96574257425743,-1.95110236532757,-1.54332931601175,1.13517153748954,0.90060461149651,0.909392979464471,45.2279323012267,0.0167764734205726,6349.10891089109,6351.0250857759,6349.20120480619,1.47500519885085,16941.385414683,11508.2799220888,0,16941.385414683,61.0388221742966,61.0388221742966,0.460170026903688,61.0436552066065,24.9,1015.1,38.89,282.183286319567
 45992,2873.77022425743,456.528040990099,45,62.7078712871287,64.5891074257426,15.6712475247525,-2.67336633663366,1596.89108910891,3242.47821782178,2937.3396039604,20,40,11,32,5305696.81859056,396015.7413263,0,0,0,0,0,0,0,62.7078712871286,15044.8561137785,15.6712475247525,16.8083892902776,16.9303140214045,-2.67336633663366,-2.65872612770381,-2.09580435895938,1.31180672738083,1.04074067139145,1.04394990965942,46.4516788345144,0.0134643799555668,6179.81782178218,6177.74167238506,6179.6354473235,1.43529079356115,16479.8513007291,11191.5418253587,0,16479.8513007291,62.6982544848543,62.6982544848543,0.447532377000071,62.6943010435825,24.9,1015.1,38.98,286.937817640822
-45993,2873.77606158416,456.539206237624,45,64.3072772277228,66.2364955445544,16.0036930693069,-3.06188118811881,1634.9900990099,3154.21188118812,2872.23366336634,20,40,11,32,5305707.38072441,396029.844837773,0,0,0,0,0,0,0,64.3072772277227,15062.4975377884,16.0036930693069,17.1649578481965,17.304809519338,-3.06188118811881,-3.04724097918896,-2.39738744076324,1.40121751215554,1.11167599916023,1.11626824101223,47.5599341087181,0.00489613816566066,6026.44554455446,6028.54063327125,6027.31703581541,1.39959687385463,16044.9154633343,11014.8261657053,0,16044.9154633343,64.2995705323006,64.2995705323006,0.44054640612576,64.2945070216893,24.9,1015.1,39.07,299.878803547056
+45993,2873.77606158416,456.539206237624,45,64.3072772277228,66.2364955445544,16.0036930693069,-3.06188118811881,1634.9900990099,3154.21188118812,2872.23366336634,20,40,11,32,5305707.38072441,396029.844837773,0,0,0,0,0,0,0,64.3072772277227,15062.4975377884,16.0036930693069,17.1649578481965,17.304809519338,-3.06188118811881,-3.04724097918896,-2.39738744076324,1.40121751215553,1.11167599916023,1.11626824101223,47.5599341087181,0.00489613816566066,6026.44554455446,6028.54063327125,6027.31703581541,1.39959687385463,16044.9154633343,11014.8261657053,0,16044.9154633343,64.2995705323006,64.2995705323006,0.44054640612576,64.2945070216893,24.9,1015.1,39.07,299.878803547056
 45994,2873.78204623762,456.550642673268,45,65.8468514851485,67.822257029703,16.1979906491089,-2.55237623762376,1677.70297029703,3086.05445544554,2775.30495049505,20,40,11,32,5305718.20970635,396044.291035084,0,0,0,0,0,0,0,65.8468514851484,15080.5771180415,16.1979906491089,17.3733541072889,17.5588185960473,-2.55237623762376,-2.53773602869391,-1.98729992230727,1.59666373024738,1.26673605792663,1.22767209144866,48.8024011702863,0.0180725099938357,5861.35940594059,5865.43227134595,5867.1041498505,1.36686847269571,15639.6843878022,10727.9851448376,0,15639.6843878022,65.8484608371727,65.8484608371727,0.428946236207782,65.8494485242197,24.9,1015.1,39.16,309.073994525398
 45995,2873.78819693069,456.562341287129,45,67.3670693069307,69.3880813861386,16.8014257425743,-3.03861386138614,1714.38118811881,3021.89108910891,2711.82475247525,20,40,11,32,5305729.34040374,396059.069314925,0,0,0,0,0,0,0,67.3670693069306,15099.0839136685,16.8014257425743,18.0205758390853,18.1589206040171,-3.03861386138614,-3.02397365245629,-2.38309228703917,1.51559485945037,1.20241890719004,1.20910338330982,49.8693272782093,0.0113763210319762,5733.71584158416,5730.50599941182,5731.12292077829,1.33601371810103,15280.4276404102,10227.8951881225,0,15280.4276404102,67.3646191549847,67.3646191549847,0.409006742258386,67.3624641129776,24.9,1015.1,39.25,330.411878561474
 45996,2873.79449356436,456.574288910891,45,68.8122871287128,70.8766557425742,17.4472079207921,-1.50752475247525,1752.99504950495,2948.06732673267,2677.48712871287,20,40,11,32,5305740.7358842,396074.162598766,0,0,0,0,0,0,0,68.8122871287128,15118.0009094881,17.4472079207921,18.7132174575056,18.7919205046117,-1.50752475247525,-1.49288454354539,-1.17778837124131,1.26227439272822,1.00144348366863,1.01591921670952,50.9925589750373,0.0169924795161164,5625.55445544554,5629.42474267229,5630.16739955509,1.30795117534501,15007.3324679921,10034.789799923,0,15007.3324679921,68.8193693755513,68.8193693755513,0.4012283654108,68.8180858077174,24.9,1015.1,39.34,353.412815744702
@@ -952,8 +952,8 @@ Time,Lat,Long,Heading,v_veh_GPS,v_veh_CAN,vair_ar,beta_ar,n_eng,tq_l,tq_r,t_amb_
 46000,2873.82089534654,456.624616237624,45,74.2885544554456,76.5172110891089,16.7719449945545,-1.79277227722772,1889.36633663366,2710.64653465347,2503.63564356436,20,40,11,32,5305788.51237344,396137.735768832,0,0,0,0,0,0,0,74.2885544554454,15197.5678107807,16.7719449945545,17.9889559001811,18.5309152637737,-1.79277227722772,-1.77813206829787,-1.3870037755163,2.94166266418644,2.33381024218803,2.32975232355947,54.9594389176683,0.00194405485989467,5214.28217821782,5215.01922360553,5214.8406595205,1.21152446033733,13887.3615692929,9002.5677459603,0,13887.3615692929,74.2877549259876,74.2877549259876,0.360084523303831,74.2877756321085,24.9,1015.1,39.7050495049505,344.429324153111
 46001,2873.82778267327,456.637798514851,45,75.5520693069307,77.8186313861386,17.1992293730693,-2.48970297029703,1921.90594059406,2651.40297029703,2445.21782178218,20,40,11,32,5305800.97454593,396154.386429095,0,0,0,0,0,0,0,75.5520693069306,15218.3838154287,17.1992293730693,18.4472450159894,18.9673603341269,-2.48970297029703,-2.47506276136717,-1.91531662575672,2.80307159367141,2.22385702974746,2.12078605391491,55.9059776283415,0.00842423772621026,5096.62079207921,5091.1618860896,5091.68801610725,1.1912561152347,13576.7444763702,8467.96586710725,0,13576.7444763702,75.5495849426526,75.5495849426526,0.33863782417845,75.5487947801302,24.9,1015.1,39.83,360.394743260879
 46002,2873.83480178218,456.651175148515,45,76.7760099009901,79.0792901980198,17.7647326732673,-2.19673267326733,1951.57425742574,2611.00198019802,2364.08712871287,20,40,11,32,5305813.67651544,396171.28351689,0,0,0,0,0,0,0,76.77600990099,15239.540798432,17.7647326732673,19.0537825363529,19.5187277619737,-2.19673267326733,-2.18209246433747,-1.69066063211026,2.56380597789171,2.0340322236919,2.07899764232315,56.768993982071,0.00612017270707583,4975.08910891089,4960.97638466817,4958.85562325463,1.17226704577202,13243.3584313579,8502.29845563672,0,13243.3584313579,76.773469463778,76.773469463778,0.340033384526561,76.7725980367266,24.9,1015.1,39.96,381.388607871686
-46003,2873.84194178218,456.664767029703,45,77.9435346534654,80.2818406930693,17.9366331132673,-1.78415841584158,1856.65841584158,2611.4,2341.76930693069,20,40,11,32,5305826.59764191,396188.452689333,0,0,0,0,0,0,0,77.9435346534653,15261.0348868258,17.9366331132673,19.2381564676641,19.7318100023576,-1.78415841584158,-1.76951820691173,-1.36845546145878,2.70352584903029,2.14488098628806,2.11041597402782,54.0080040688295,-0.0711380074657755,4953.16930693069,4952.00475443584,4950.08585074561,1.1547007755689,12326.5446307637,8145.72674665783,0,12326.5446307637,77.9544294676992,77.9544294676992,0.326465814898326,77.9560711296547,24.9,1015.1,40.09,389.727170609636
-46004,2873.84918891089,456.678567029703,45,79.1434851485148,81.5177897029703,17.7946430143564,-1.20336633663366,1721.18316831683,2551.19405940594,2323.42673267327,20,40,11,32,5305839.71259478,396205.884603983,0,0,0,0,0,0,0,79.1434851485147,15282.8557437015,17.7946430143564,19.0858632405876,19.6803563931409,-1.20336633663366,-1.18872612770381,-0.91615800250322,3.12433849070481,2.47873872774116,2.50596148664834,50.0671888617274,7.20020318479482E-05,4874.62079207921,4897.55363199687,4902.75033466794,1.13719107065123,11101.7707712813,8039.35462348984,0,11101.7707712813,79.1432042936966,79.1432042936966,0.321573865307316,79.1418404412968,24.9,1015.1,40.22,387.718633437634
+46003,2873.84194178218,456.664767029703,45,77.9435346534654,80.2818406930693,17.9366331132673,-1.78415841584158,1856.65841584158,2611.4,2341.76930693069,20,40,11,32,5305826.59764191,396188.452689333,0,0,0,0,0,0,0,77.9435346534653,15261.0348868258,17.9366331132673,19.2381564676641,19.7318100023575,-1.78415841584158,-1.76951820691173,-1.36845546145878,2.70352584903029,2.14488098628806,2.11041597402782,54.0080040688295,-0.0711380074657755,4953.16930693069,4952.00475443584,4950.08585074561,1.1547007755689,12326.5446307637,8145.72674665783,0,12326.5446307637,77.9544294676992,77.9544294676992,0.326465814898326,77.9560711296547,24.9,1015.1,40.09,389.727170609636
+46004,2873.84918891089,456.678567029703,45,79.1434851485148,81.5177897029703,17.7946430143564,-1.20336633663366,1721.18316831683,2551.19405940594,2323.42673267327,20,40,11,32,5305839.71259478,396205.884603983,0,0,0,0,0,0,0,79.1434851485147,15282.8557437015,17.7946430143564,19.0858632405876,19.6803563931409,-1.20336633663366,-1.18872612770381,-0.916158002503219,3.12433849070481,2.47873872774116,2.50596148664834,50.0671888617274,7.20020318479482E-05,4874.62079207921,4897.55363199687,4902.75033466794,1.13719107065123,11101.7707712813,8039.35462348984,0,11101.7707712813,79.1432042936966,79.1432042936966,0.321573865307316,79.1418404412968,24.9,1015.1,40.22,387.718633437634
 46005,2873.85656069307,456.692547227723,45,80.278495049505,82.6868499009901,17.8032222221782,-0.912079207920792,1743,2533.02574257426,2286.69207920792,20,40,11,32,5305853.05446372,396223.545060699,0,0,0,0,0,0,0,80.2784950495049,15304.9995094881,17.8032222221782,19.0950649754618,19.7525847339147,-0.912079207920792,-0.897438998990934,-0.693077266631554,3.41156346692097,2.70661277987721,2.72910704912249,50.7018147704353,0.00230406501913443,4819.71782178218,4821.51754729928,4821.71054179563,1.1211120862809,10958.5149653709,7873.78168971778,0,10958.5149653709,80.2754052543867,80.2754052543867,0.314932359572603,80.2760469939841,24.9,1015.1,40.35,390.523462358745
 46006,2873.86407277228,456.706681881188,45,81.4126732673268,83.8550534653466,17.6239801982178,-0.774158415841584,1771.00495049505,2496.82673267327,2274.17227722772,20,40,11,32,5305866.65280461,396241.402509902,0,0,0,0,0,0,0,81.4126732673266,15327.459433223,17.6239801982178,18.9028167379718,19.6651000055844,-0.774158415841584,-0.759518206911726,-0.581672397666411,3.87736316446518,3.07616164697595,3.02729768935684,51.516445758763,0.00633617880261968,4770.99900990099,4768.02512498775,4767.7168865932,1.10549198325561,10868.2210578623,7657.65092815344,0,10868.2210578623,81.4070054896578,81.4070054896578,0.306254016490758,81.4057379711439,24.9,1015.1,40.48,386.723644734398
 46007,2873.87168960396,456.720999603961,45,82.5092079207921,84.9844841584158,18.2772909792079,-1.19613861386139,1794.05445544554,2414.05049504951,2200.16732673267,20,40,11,32,5305880.44113777,396259.491407771,0,0,0,0,0,0,0,82.509207920792,15350.2247545101,18.2772909792079,19.6035332518978,20.2837631643641,-1.19613861386139,-1.18149840493153,-0.908470643989334,3.52791936132742,2.7989253966197,2.84260360439414,52.1869286793311,0.0167764734205726,4614.21782178218,4411.7344672091,4391.16004178399,1.09080438061665,10506.4855434407,7109.36302645731,0,10506.4855434407,82.4916340554847,82.4916340554847,0.284236839525534,82.4889914615313,24.9,1015.1,40.61,411.756054359427
@@ -970,30 +970,30 @@ Time,Lat,Long,Heading,v_veh_GPS,v_veh_CAN,vair_ar,beta_ar,n_eng,tq_l,tq_r,t_amb_
 46018,2873.95758326733,456.883342376238,45,84.8920891089109,87.4388517821782,22.8365049504951,1.95673267326733,1837.36633663366,674.057865889109,694.137594180198,20,40,11,32,5306035.91382293,396464.572294569,1,1,5306032.57059346,396467.29586912,48.0356216785564,0,0,84.8920891089107,15607.7337062428,22.8365049504951,24.4935742755002,24.2996576125269,1.95673267326733,1.97137288219718,1.57688457185227,1.69539478900386,1.34506575866125,1.37541303579147,53.4468202326065,0.00446412597457296,1368.19546006931,1367.43195176603,1367.37112230974,1.06016981045161,3101.01830522436,-62.1326144341113,0,3101.01830522436,84.9004576021957,84.9004576021957,-0.00252153928263534,84.900309570957,24.9,1015.1,39.48,590.816895896854
 46019,2873.96538287129,456.898292574257,45,84.9108415841584,87.4581668316832,22.5030594059406,1.84653465346535,1837.5099009901,690.594692996039,686.132864780198,20,40,11,32,5306050.0272674,396483.454035173,1,1,5306047.44659546,396485.55638935,71.5885840044321,0,0,84.9108415841583,15631.3177754122,22.5030594059406,24.1359331552813,24.0171744209141,1.84653465346535,1.8611748623952,1.49094458099063,1.65962690477776,1.31668879499219,1.27233286393099,53.4509963504537,0.000864024382175412,1376.72755777624,1375.60603008419,1375.51667687169,1.05993799849457,3119.92890039845,107.394513950571,0,3119.92890039845,84.8960686207233,84.8960686207233,0.00428879521615751,84.8963480433756,24.9,1015.1,39.29,577.496300436553
 46020,2873.97315772277,456.913261386139,45,84.9090891089109,87.4563617821782,22.2537524752475,2.01584158415842,1838.12376237624,692.793831277228,667.892630835644,20,40,11,32,5306064.09450661,396502.358046885,1,1,5306062.31507105,396503.807670809,95.1296298879522,0,0,84.9090891089107,15654.9043704067,22.2537524752475,23.8685359402712,23.8052460843099,2.01584158415842,2.03048179308827,1.6185367872072,1.47396013475441,1.1693874015354,1.19325558249149,53.468852854352,0.00864024382175411,1360.68646211287,1360.23804242615,1360.20231638905,1.0599576426478,3084.65052551585,140.843743221538,0,3084.65052551585,84.9156055288696,84.9156055288696,0.0055631800803859,84.9157077793492,24.9,1015.1,39.1252475247525,567.162846054024
-46021,2873.98098455446,456.928192277228,45,84.915594059406,87.4630618811882,21.5141386138614,1.78207920792079,1838.5297029703,678.633403145545,656.186879327722,20,40,11,32,5306078.258939,396521.216457597,1,1,5306077.19998886,396522.079135345,118.696708504953,0,0,84.9155940594058,15678.4922862208,21.5141386138614,23.0752539959315,23.1763621070788,1.78207920792079,1.79671941685065,1.42468185436154,1.59405958929163,1.26467002537007,1.27346569932042,53.4806611875751,-0.00576016254783607,1334.82028247327,1335.45724577681,1335.50799326889,1.05987621205985,3026.44821326491,113.22235203165,0,3026.44821326491,84.9274861288108,84.9274861288108,0.00457607641951214,84.9277972654407,24.9,1015.1,39.11,537.77909570313
+46021,2873.98098455446,456.928192277228,45,84.915594059406,87.4630618811882,21.5141386138614,1.78207920792079,1838.5297029703,678.633403145545,656.186879327722,20,40,11,32,5306078.258939,396521.216457597,1,1,5306077.19998886,396522.079135345,118.696708504953,0,0,84.9155940594058,15678.4922862208,21.5141386138614,23.0752539959315,23.1763621070788,1.78207920792079,1.79671941685065,1.42468185436155,1.59405958929163,1.26467002537007,1.27346569932042,53.4806611875751,-0.00576016254783607,1334.82028247327,1335.45724577681,1335.50799326889,1.05987621205985,3026.44821326491,113.22235203165,0,3026.44821326491,84.9274861288108,84.9274861288108,0.00457607641951214,84.9277972654407,24.9,1015.1,39.11,537.77909570313
 46022,2873.98881534654,456.943126138614,45,84.9594356435644,87.5082187128712,21.023801980198,2.50039603960396,1836.40099009901,661.132440918812,661.77782419703,20,40,11,32,5306092.43070166,396540.078606993,1,1,5306092.08966157,396540.356436593,142.27131548711,0,0,84.9594356435642,15702.0872957642,21.023801980198,22.5493374083159,22.7606995372468,2.50039603960396,2.51503624853381,1.98082277544166,1.90824722420494,1.51393528928241,1.46128521199787,53.4187394401859,-0.00907225601284181,1322.91026511584,1324.04699029221,1324.13755430324,1.05932947197835,2994.4369302072,157.005942638065,0,2994.4369302072,84.9580228408979,84.9580228408979,0.00635422453135898,84.9579020273455,24.9,1015.1,39.12,518.720887453439
 46023,2873.99666693069,456.958035544554,45,84.9695544554455,87.5186410891089,21.3204950495049,1.25851485148515,1838.4504950495,656.381248559406,679.525176526733,20,40,11,32,5306106.64158509,396558.910891691,1,1,5306106.98031617,396558.634943133,165.847477090612,0,0,84.9695544554454,15725.6881569303,21.3204950495049,22.8675592091496,23.0141863521324,1.25851485148515,1.27315506041501,1.00337264708908,1.57745729060366,1.25149835371867,1.28162379496234,53.4783571225559,0.0114483230638242,1335.90642508614,1336.4978122448,1336.54492864062,1.05920348190562,3026.86636454248,16.3173827175149,0,3026.86636454248,84.9687293402606,84.9687293402606,0.000559585661549474,84.9687130598773,24.9,1015.1,39.13,529.953629141642
 46024,2874.00449326733,456.972987524752,45,85.0157821782178,87.5662556435643,20.9021782178218,0.825742574257426,1839.90594059406,668.748050407921,693.112102420792,20,40,11,32,5306120.80481134,396577.795276647,1,1,5306121.87747178,396576.921429755,189.433931640305,0,0,85.0157821782178,15749.2958775023,20.9021782178218,22.4188883459972,22.6610877672327,0.825742574257426,0.840382783187283,0.667536814128941,1.88356802163065,1.49435569015362,1.52006569836216,53.5206943172825,-0.00554415645229222,1361.86015282871,1361.3624833476,1361.32283353132,1.05862735209614,3086.4530697065,313.453477500384,0,3086.4530697065,85.0007453190863,85.0007453190863,0.0125831890119647,85.0004033946251,24.9,1015.1,39.14,514.111077403136
 46025,2874.01231138614,456.987948712871,45,85.0306435643564,87.5815628712871,20.6207403739604,1.21623762376238,1839.10891089109,686.862865883168,690.046844875248,20,40,11,32,5306134.95267055,396596.690765486,1,1,5306136.77393454,396595.20706588,213.019289195059,0,0,85.0306435643563,15772.9101509072,20.6207403739604,22.1170287248555,22.4224128867486,1.21623762376238,1.23087783269223,0.97268070919109,2.14025002727646,1.69799803876643,1.72030316464454,53.4975096630275,-0.00482413613381271,1376.90971075842,1375.78053966164,1375.69057749142,1.05844297435544,3118.64815703441,332.765937184302,0,3118.64815703441,85.0389691206743,85.0389691206743,0.0133497260617337,85.0388606317773,24.9,1015.1,39.15,503.721118010728
 46026,2874.02015059406,457.002885346535,45,85.0337722772277,87.5847854455446,20.135105610495,0.0783168316831685,1840.95544554455,694.071017173267,673.147587546535,20,40,11,32,5306149.14020288,396615.55627601,1,1,5306151.67154388,396613.494109471,236.6064621406,0,0,85.0337722772276,15796.5343609457,20.135105610495,21.5961551859542,22.0097548178681,0.0783168316831685,0.0929570406130247,0.0766847012652032,2.39962733038861,1.90377874026018,1.99819702592056,53.5512231787861,0.00799222553512254,1367.2186047198,1366.49608670203,1366.43852298224,1.05840334571779,3099.67565747625,-136.299187102311,0,3099.67565747625,85.0411494951474,85.0411494951474,-0.00551688832251681,85.0415900047146,24.9,1015.1,39.16,484.93767167379
-46027,2874.02795039604,457.017874554456,45,85.0542475247524,87.6058749504951,19.0930869087129,0.480990099009901,1840.47524752475,683.745363217822,657.951429681188,20,40,11,32,5306163.25362935,396634.485873116,1.89108910891089,1,5306166.57119897,396631.782969161,36.550622008033,0,0,85.0542475247523,15820.158343729,19.0930869087129,20.4785252104439,21.1240519316494,0.480990099009901,0.495630307939758,0.386310302999764,3.38891297852589,2.6886426902233,2.5031737177075,53.5372547846076,-0.00590416661153197,1341.69679289901,1342.04520769943,1342.0729662487,1.05814840492385,3040.29782250964,-127.893522994201,0,3040.29782250964,85.0413651602783,85.0413651602783,-0.00506758596649629,85.0410738330975,24.9,1015.1,39.17,446.659647305994
-46028,2874.03573930693,457.032868910892,45,85.043495049505,87.5947999009901,19.7223470847525,-0.769009900990099,1841.26237623762,665.379262660396,658.429648742574,20,40,11,32,5306177.34682795,396653.421429126,2,1,5306181.46628405,396650.065177816,32.7979760960627,0,0,85.0434950495049,15843.7791598456,19.7223470847525,21.1534459522059,21.6589519286919,-0.769009900990099,-0.754369692060241,-0.598098548282862,2.83405402091868,2.24843738252477,2.39178761437418,53.5601514307352,-0.00403211378348525,1323.80891140297,1324.90792805827,1324.99548779432,1.05828226992622,3001.43884543289,-42.648771451394,0,3001.43884543289,85.0347373786883,85.0347373786883,-0.00167331089544896,85.034192173503,24.9,1015.1,39.18,469.934954933409
+46027,2874.02795039604,457.017874554456,45,85.0542475247524,87.6058749504951,19.0930869087129,0.480990099009901,1840.47524752475,683.745363217822,657.951429681188,20,40,11,32,5306163.25362935,396634.485873116,1.89108910891089,1,5306166.57119897,396631.782969161,36.550622008033,0,0,85.0542475247523,15820.158343729,19.0930869087129,20.4785252104439,21.1240519316494,0.480990099009901,0.495630307939758,0.386310302999764,3.38891297852589,2.6886426902233,2.50317371770751,53.5372547846076,-0.00590416661153197,1341.69679289901,1342.04520769943,1342.0729662487,1.05814840492385,3040.29782250964,-127.893522994201,0,3040.29782250964,85.0413651602783,85.0413651602783,-0.00506758596649629,85.0410738330975,24.9,1015.1,39.17,446.659647305994
+46028,2874.03573930693,457.032868910892,45,85.043495049505,87.5947999009901,19.7223470847525,-0.769009900990099,1841.26237623762,665.379262660396,658.429648742574,20,40,11,32,5306177.34682795,396653.421429126,2,1,5306181.46628405,396650.065177816,32.7979760960627,0,0,85.0434950495049,15843.7791598456,19.7223470847525,21.1534459522059,21.6589519286919,-0.769009900990099,-0.754369692060241,-0.598098548282861,2.83405402091868,2.24843738252476,2.39178761437418,53.5601514307352,-0.00403211378348525,1323.80891140297,1324.90792805827,1324.99548779432,1.05828226992622,3001.43884543289,-42.648771451394,0,3001.43884543289,85.0347373786883,85.0347373786883,-0.00167331089544896,85.034192173503,24.9,1015.1,39.18,469.934954933409
 46029,2874.04350247525,457.047893564356,45,85.0205841584158,87.5712016831684,18.6885154009901,0.139306930693069,1840.0099009901,655.858423645544,674.142572334654,20,40,11,32,5306191.39172771,396672.393776685,2,1,5306196.36013377,396668.345858958,56.3778417144105,0,0,85.0205841584158,15867.3968859732,18.6885154009901,20.0445970635737,20.777553430918,0.139306930693069,0.153947139622926,0.118048582002635,3.77322328176754,2.99354077823429,2.8972684627044,53.5237184026201,0.00604817067522787,1330.0009959802,1330.84018364449,1330.90704254975,1.05856766649509,3014.22714509916,91.0938260638785,0,3014.22714509916,85.0203418292324,85.0203418292324,0.00359441884781243,85.0205221122111,24.9,1015.1,39.19,431.758449788114
 46030,2874.05126455446,457.062928613862,45,85.0284851485148,87.5793397029703,18.6884504953465,-2.08970297029703,1839.32673267327,663.936261650495,690.643810964357,20,40,11,32,5306205.43443957,396691.378944854,2,1,5306211.25938867,396686.633174399,79.9662647756447,0,0,85.0284851485148,15891.0161380084,18.6884504953465,20.0445274482274,20.7780370436731,-2.08970297029703,-2.07506276136717,-1.59239532950778,3.76983569968005,2.99085319142555,3.01050132945151,53.5038458418301,0.00619217473892378,1354.58007261485,1354.38788602114,1354.37257432667,1.0584690771234,3068.50034217148,131.224975662129,0,3068.50034217148,85.033831487109,85.033831487109,0.00519829210644115,85.0340909005185,24.9,1015.1,39.2113613861386,431.766832439924
 46031,2874.05900574258,457.07799980198,45,85.0097821782178,87.5600756435644,18.6239180427723,-2.36940594059406,1840.41089108911,682.186049677228,692.762201939604,20,40,11,32,5306219.43770954,396710.408341915,2,1,5306226.16456597,396704.927758993,103.564064163233,0,0,85.0097821782177,15914.636164466,18.6239180427723,19.9753123724645,20.7217551955219,-2.36940594059406,-2.3547657316642,-1.8075976719001,3.84190306487704,3.04802886866138,3.01549091619937,53.5353827317795,-0.00324009143315779,1374.94825161683,1373.90138623175,1373.81798143858,1.05870200640171,3117.17555185267,-3.35215609512861,0,3117.17555185267,85.0320237231643,85.0320237231643,-0.000107560260985888,85.0326835454973,24.9,1015.1,39.3,429.398636961296
 46032,2874.06673584158,457.093086138614,45,85.0529009900991,87.604488019802,19.2042893289109,-2.05158415841584,1839.90594059406,693.829016766337,678.550106370297,20,40,11,32,5306233.42016263,396729.456147672,2,1,5306241.0704526,396723.223214211,127.162986550928,0,0,85.052900990099,15938.2588216992,19.2042893289109,20.597796734026,21.2180595695116,-2.05158415841584,-2.03694394948599,-1.5726358730012,3.29283063843259,2.61241438840843,2.69604843965168,53.5206943172825,-0.00165604673250287,1372.37912313663,1371.44006216741,1371.36524625785,1.05816577495315,3108.91501593643,105.077818054,0,3108.91501593643,85.0533007548279,85.0533007548279,0.00421663453475708,85.0534661008957,24.9,1015.1,39.4,450.601362267959
 46033,2874.07444970297,457.108164554456,45,85.0889405940593,87.6416088118812,18.7259092412871,-0.580891089108911,1839.74752475248,688.160672682178,661.074059372277,20,40,11,32,5306247.37277642,396748.493456506,2,1,5306255.9592943,396741.497748523,150.734923501226,0,0,85.0889405940593,15961.8895144385,18.7259092412871,20.0847042869316,20.8132232690459,-0.580891089108911,-0.566250880179053,-0.43408268593783,3.75333884958177,2.97776517892433,2.90571434078369,53.5160861872443,7.20020318479471E-05,1349.23473205446,1349.26684382446,1349.2694022007,1.0577172936455,3054.93179061662,122.723268519793,0,3054.93179061662,85.0806009214782,85.0806009214782,0.00490828785848875,85.0803351249409,24.9,1015.1,39.5,433.229455637387
 46034,2874.08220544555,457.123217227723,45,85.0693564356435,87.6214371287129,18.6303767887129,-2.10019801980198,1840.32178217822,670.392466816832,656.401457967327,20,40,11,32,5306261.40360405,396767.49999631,2,1,5306270.86427321,396759.792089606,174.332408788935,0,0,85.0693564356435,15985.5223636959,18.6303767887129,19.9822397798662,20.7312486059289,-2.10019801980198,-2.08555781087212,-1.60073297037662,3.82914632215433,3.03790812395952,3.04112543294424,53.532790658633,0.000864024382175408,1326.79392478416,1327.76768588349,1327.84526638629,1.05796117143304,3005.74616235928,-114.054655665169,0,3005.74616235928,85.0736613077148,85.0736613077148,-0.00456926880808902,85.0736628005657,24.9,1015.1,39.6,429.785226977056
-46035,2874.08997712871,457.138233366336,45,85.0639207920792,87.6158384158416,18.6288668876238,-0.567722772277228,1839.13366336634,656.860405716832,668.828270334654,20,40,11,32,5306275.46483476,396786.46146456,2,1,5306285.75931093,396778.074228887,197.91415523022,0,0,85.0639207920791,16009.1521158961,18.6288668876238,19.9806203168812,20.7293774205103,-0.567722772277228,-0.553082563347369,-0.424530889306939,3.8396156387665,3.04621410636725,3.04805186686483,53.498229683346,-0.000216006095543854,1325.68867605149,1326.7088150118,1326.79009048462,1.05802867766445,3001.510746644,-90.6526915057549,0,3001.510746644,85.0637810018624,85.0637810018624,-0.00362437233820038,85.0636272512964,24.9,1015.1,39.7,429.707572621239
+46035,2874.08997712871,457.138233366336,45,85.0639207920792,87.6158384158416,18.6288668876238,-0.567722772277228,1839.13366336634,656.860405716832,668.828270334654,20,40,11,32,5306275.46483476,396786.46146456,2,1,5306285.75931093,396778.074228887,197.91415523022,0,0,85.0639207920791,16009.1521158961,18.6288668876238,19.9806203168812,20.7293774205103,-0.567722772277228,-0.553082563347369,-0.424530889306939,3.8396156387665,3.04621410636725,3.04805186686482,53.498229683346,-0.000216006095543854,1325.68867605149,1326.7088150118,1326.79009048462,1.05802867766445,3001.510746644,-90.6526915057549,0,3001.510746644,85.0637810018624,85.0637810018624,-0.00362437233820038,85.0636272512964,24.9,1015.1,39.7,429.707572621239
 46036,2874.09775574257,457.153234356436,45,85.0565643564356,87.6082612871287,18.6413388343564,-1.00574257425743,1839.72277227723,660.005803944554,686.92934249901,20,40,11,32,5306289.53930224,396805.404201018,2,1,5306300.65045694,396796.351591495,221.489740340769,0,0,85.0565643564355,16032.7788376508,18.6413388343564,19.9939972567552,20.7394206819506,-1.00574257425743,-0.991102365327568,-0.760882610768972,3.83093323387271,3.03932579598596,3.02684830288898,53.5153661669258,-0.000288008127391801,1346.93514644356,1347.06375221233,1347.07399836012,1.05811971408396,3050.84291540232,-265.692522280365,0,3050.84291540232,85.0449722576217,85.0449722576217,-0.0106253199577335,85.0445670909947,24.9,1015.1,39.8,430.128256289613
-46037,2874.1055719802,457.168194554455,45,85.0414950495049,87.5927399009901,18.7892414743564,-0.224257425742574,1840.99504950495,657.812843467327,647.469744890099,20,40,11,32,5306303.68443161,396824.297281234,1.46534653465347,0.732673267326733,3887794.0742564,290733.665122572,177.223812096864,0,0,85.0414950495048,16056.3999324803,18.7892414743564,20.1526320525016,20.86521084528,-0.224257425742574,-0.209617216812717,-0.157959100387223,3.65060051826906,2.89625625106458,2.91125485070497,53.5523752112956,0.00712820115294714,1305.28258835743,1302.54278622134,1301.62446871583,1.05830725699261,2959.09386668892,-48.782621771141,0,2959.09386668892,85.0260947946279,85.0260947946279,-0.00200960690129194,85.0255261669023,24.9,1015.1,39.9,435.459231873122
+46037,2874.1055719802,457.168194554455,45,85.0414950495049,87.5927399009901,18.7892414743564,-0.224257425742574,1840.99504950495,657.812843467327,647.469744890099,20,40,11,32,5306303.68443161,396824.297281234,1.46534653465347,0.732673267326733,3887794.0742564,290733.665122572,177.223812096874,0,0,85.0414950495048,16056.3999324803,18.7892414743564,20.1526320525016,20.86521084528,-0.224257425742574,-0.209617216812717,-0.157959100387223,3.65060051826906,2.89625625106458,2.91125485070497,53.5523752112956,0.00712820115294714,1305.28258835743,1302.54278622134,1301.62446871583,1.05830725699261,2959.09386668892,-48.782621771141,0,2959.09386668892,85.0260947946279,85.0260947946279,-0.00200960690129194,85.0255261669023,24.9,1015.1,39.9,435.459231873122
 46038,2874.11343841584,457.183087029703,45,85.015396039604,87.5658579207922,19.8742937293069,0.48009900990099,1838.08415841584,622.344554455445,524.936633663366,20,40,11,32,5306317.92411398,396843.107577081,0,0,0,0,0,0,0,85.0153960396038,16080.0150758521,19.8742937293069,21.3164181947787,21.7870210037755,0.48009900990099,0.494739218830847,0.388768739970695,2.68536016261658,2.13046897857391,2.28164399820625,53.4677008218425,-0.00763221537588279,1147.28118811881,1149.3163034696,1150.22413382127,1.05863278106023,2597.40149956163,-32.0598458735619,0,2597.40149956163,85.0112509557885,85.0112509557885,-0.00121992397261287,85.0110342291371,24.9,1015.1,40,475.715140082682
 46039,2874.12133386139,457.197921683168,45,84.9686633663366,87.5177232673268,18.770693619703,0.0156435643564358,1837.78712871287,601.919801980198,553.161386138614,20,40,11,32,5306332.21888041,396861.846719179,0,0,0,0,0,0,0,84.9686633663365,16103.6263612757,18.770693619703,20.1327383228529,20.8444689064356,0.0156435643564358,0.0302837732862931,0.0254741180984509,3.68264248548292,2.92167720506246,2.77233594805979,53.4590605780207,-0.00475213410196476,1155.08118811881,1160.84574061367,1161.24652522395,1.05921476804095,2616.0767673268,210.679835114831,0,2616.0767673268,84.9914789726496,84.9914789726496,0.00846594560446276,84.9925350306458,24.9,1015.1,40.1,434.671123719502
-46040,2874.12925831683,457.212739405941,45,84.9598811881188,87.5086776237624,19.0061160618812,-0.0300990099009901,1840.57425742574,619.524752475247,620.025742574257,20,40,11,32,5306346.56781989,396880.56564028,0,0,0,0,0,0,0,84.9598811881187,16127.2352523648,19.0061160618812,20.3852435589261,21.044130519289,-0.0300990099009901,-0.0154588009711326,-0.0110277652977646,3.45635288225368,2.74214710456974,2.64753741242604,53.5401348658815,0.00993628039501722,1239.5504950495,1230.60178413881,1229.8318717586,1.05932583040294,2812.02588017676,-363.169829621166,0,2812.02588017676,84.9870906773844,84.9870906773844,-0.014607772658434,84.9878966525223,24.9,1015.1,40.1835891089109,443.091269201879
+46040,2874.12925831683,457.212739405941,45,84.9598811881188,87.5086776237624,19.0061160618812,-0.0300990099009901,1840.57425742574,619.524752475247,620.025742574257,20,40,11,32,5306346.56781989,396880.56564028,0,0,0,0,0,0,0,84.9598811881187,16127.2352523648,19.0061160618812,20.3852435589261,21.044130519289,-0.0300990099009901,-0.0154588009711326,-0.0110277652977647,3.45635288225368,2.74214710456974,2.64753741242604,53.5401348658815,0.00993628039501722,1239.5504950495,1230.60178413881,1229.8318717586,1.05932583040294,2812.02588017676,-363.169829621166,0,2812.02588017676,84.9870906773844,84.9870906773844,-0.014607772658434,84.9878966525223,24.9,1015.1,40.1835891089109,443.091269201879
 46041,2874.13719960396,457.227539306931,45,85.0195148514852,87.5701002970297,19.865201870198,1.25722772277228,1840.86138613861,593.624752475248,597.933663366337,20,40,11,32,5306360.94839385,396899.262827083,0,0,0,0,0,0,0,85.019514851485,16150.8435596805,19.865201870198,21.3066666094609,21.7788754474825,1.25722772277228,1.27186793170214,0.993040096696567,2.75317523715361,2.18427104005979,2.24751267316195,53.5484871015759,-0.00266407517837418,1191.55841584158,1199.23913341829,1199.72559170203,1.05858308000619,2701.66973007844,29.0377717555619,0,2701.66973007844,84.9989047152239,84.9989047152239,0.00118316287073145,84.9983806694954,24.9,1015.1,40.17,475.517753330826
 46042,2874.14508930693,457.242422574257,45,85.0270099009901,87.5778201980198,20.6288058305941,0.297227722772277,1840.71287128713,610.848514851485,630.752475247525,20,40,11,32,5306375.23162052,396918.062051679,0,0,0,0,0,0,0,85.02700990099,16174.4567277223,20.6288058305941,22.1256794295737,22.4290858618862,0.297227722772277,0.311867931702134,0.261713820138581,2.28412959575044,1.81214695687124,2.0108407797313,53.544166979665,-0.00964827226762542,1241.60099009901,1234.51425350456,1233.99730315889,1.05848809400593,2814.71821996004,383.894474479233,0,2814.71821996004,85.017152828154,85.017152828154,0.0154342166890004,85.0170843941536,24.9,1015.1,40.14,504.790997692708
 46043,2874.15293742574,457.257366633664,45,85.0621980198019,87.6140639603961,19.5756776679208,0.869108910891089,1840.0297029703,581.379207920792,598.880198019802,20,40,11,32,5306389.43652656,396936.935527444,0,0,0,0,0,0,0,85.0621980198018,16198.0797126233,19.5756776679208,20.9961338651375,21.5353859938308,0.869108910891089,0.883749119820947,0.688725096894215,3.00850905997354,2.38684378850203,2.2294951208889,53.5242944188749,0.0139683941785025,1180.25940594059,1180.38635427899,1180.51070249882,1.05804937348091,2673.36050544211,369.215306417224,0,2673.36050544211,85.0682427213017,85.0682427213017,0.0146540644163461,85.0682055634134,24.9,1015.1,40.11,464.917045067548
-46044,2874.16078336634,457.272316633663,45,85.1078613861387,87.6610972277228,21.3674554455446,0.490693069306931,1842.13861386139,552.779207920792,541.447524752475,20,40,11,32,5306403.63732634,396955.816237408,0,0,0,0,0,0,0,85.1078613861385,16221.7153824253,21.3674554455446,22.9179271595385,23.0622451855948,0.490693069306931,0.505333278236788,0.402131443531533,1.79596200103513,1.42485219791695,1.52562034152566,53.5856401500094,-0.0045361280064209,1094.22673267327,1096.59765709244,1096.67964167845,1.05748187293481,2480.15475124023,279.112229756261,0,2480.15475124023,85.1102459562787,85.1102459562787,0.0112012438867427,85.1103987741631,24.9,1015.1,40.08,532.771396929759
+46044,2874.16078336634,457.272316633663,45,85.1078613861387,87.6610972277228,21.3674554455446,0.490693069306931,1842.13861386139,552.779207920792,541.447524752475,20,40,11,32,5306403.63732634,396955.816237408,0,0,0,0,0,0,0,85.1078613861385,16221.7153824253,21.3674554455446,22.9179271595385,23.0622451855948,0.490693069306931,0.505333278236788,0.402131443531534,1.79596200103513,1.42485219791695,1.52562034152566,53.5856401500094,-0.0045361280064209,1094.22673267327,1096.59765709244,1096.67964167845,1.05748187293481,2480.15475124023,279.112229756261,0,2480.15475124023,85.1102459562787,85.1102459562787,0.0112012438867427,85.1103987741631,24.9,1015.1,40.08,532.771396929759
 46045,2874.16864772277,457.28724009901,45,85.1356831683168,87.6897536633664,20.3118696369307,-0.146732673267327,1842.84158415842,549.350495049505,507.062376237624,20,40,11,32,5306417.87288949,396974.66441299,0,0,0,0,0,0,0,85.1356831683167,16245.3620006046,20.3118696369307,21.7857456167194,22.1660988849352,-0.146732673267327,-0.132092464337469,-0.0983260753453196,2.41585912477781,1.91665646701512,1.73748450250291,53.6060887270542,-0.00799222553512255,1056.41287128713,1054.62582099794,1054.4440641207,1.05713677745744,2394.58147581696,72.542971156009,0,2394.58147581696,85.1431025389666,85.1431025389666,0.00296675707175235,85.1429365393681,24.9,1015.1,40.05,492.609158829941
 46046,2874.17652940594,457.302166633663,45,85.1589108910892,87.7136782178218,19.5361892192079,-1.49277227722772,1842.39108910891,508.866336633663,468.544554455445,20,40,11,32,5306432.14054005,396993.516891406,0,0,0,0,0,0,0,85.158910891089,16269.0136186739,19.5361892192079,20.9537800437594,21.5071916916568,-1.49277227722772,-1.47813206829787,-1.14296822251081,3.07111916691039,2.43651641433118,2.49215805489239,53.5929843572579,0.00547215442044427,977.410891089109,973.709391236154,973.701452145215,1.05684847156615,2214.19522353575,6.33067215758722,0,2214.19522353575,85.148151063621,85.148151063621,0.000208312910511538,85.1481059877415,24.9,1015.1,40.02,463.538928935509
 46047,2874.18441930693,457.317083267327,45,85.1367920792079,87.6908958415842,19.8203245322772,-1.10881188118812,1842.22772277228,457.454455445545,431.349504950495,20,40,11,32,5306446.4236935,397012.357215981,0,0,0,0,0,0,0,85.1367920792078,16292.6663605331,19.8203245322772,21.2585328686791,21.7477062648485,-1.10881188118812,-1.09417167225826,-0.845995204862935,2.73794080280569,2.17218458319035,2.24531207965506,53.5882322231559,-0.000360010159239759,888.803960396039,895.407254190766,895.94402640264,1.05712279572685,2013.95395804151,-189.425641550108,0,2013.95395804151,85.1363193804528,85.1363193804528,-0.00757414850395426,85.1361765205091,24.9,1015.1,39.99,473.675849844267
@@ -1001,9 +1001,9 @@ Time,Lat,Long,Heading,v_veh_GPS,v_veh_CAN,vair_ar,beta_ar,n_eng,tq_l,tq_r,t_amb_
 46049,2874.20017435644,457.346905049505,45,85.128504950495,87.6823600990099,19.0462442243564,-1.21950495049505,1841.71287128713,474.942574257426,490.973267326733,20,40,11,32,5306474.94458698,397050.022461514,0,0,0,0,0,0,0,85.1285049504949,16339.9542789875,19.0462442243564,20.4282835131686,21.0887218793785,-1.21950495049505,-1.20486474156519,-0.928179357356715,3.43005081941548,2.72127998598752,2.78984692803594,53.5732558005316,0.010224288522409,965.915841584158,957.891451818449,957.562329090052,1.05722531981053,2188.34876343987,75.6465471291045,0,2188.34876343987,85.1181723360454,85.1181723360454,0.00294224967049156,85.1178410183874,24.9,1015.1,39.93,445.050839707074
 46050,2874.20801693069,457.361853861386,45,85.1002574257426,87.6532651485148,18.7548575357426,-1.85257425742574,1840.82673267327,451.049504950495,464.725742574258,20,40,11,32,5306489.13954131,397068.901021291,0,0,0,0,0,0,0,85.1002574257425,16363.5974642736,18.7548575357426,20.1157531362161,20.8387204363131,-1.85257425742574,-1.83793404849589,-1.41234263749321,3.72179514604616,2.95273952955801,2.94045781005973,53.54747907313,-0.000144004063695899,915.775247524753,921.078276639545,921.425535124941,1.0575775516418,2074.37049364191,-140.196988234913,0,2074.37049364191,85.1056464072149,85.1056464072149,-0.00560674879366112,85.1055451202262,24.9,1015.1,39.8974752475248,434.306062982481
 46051,2874.21584524753,457.376822574258,45,85.0722376237623,87.6244047524752,19.8787211218812,-0.854554455445545,1838.82178217822,464.365346534654,470.372277227723,20,40,11,32,5306503.30770455,397087.803804353,0,0,0,0,0,0,0,85.0722376237622,16387.2328858632,19.8787211218812,21.3211668491415,21.7937986453046,-0.854554455445545,-0.839914246515687,-0.651217265316513,2.74131749601877,2.17486353115449,2.24289346937942,53.4891574273331,-0.00460813003826886,934.737623762377,938.505901382218,938.65194719472,1.05792611490894,2115.778748305,-155.644915125738,0,2115.778748305,85.0805225958238,85.0805225958238,-0.00618811881188729,85.0805983026873,24.9,1015.1,39.85,476.262371403744
-46052,2874.22365732673,457.391821584158,45,85.0556831683168,87.6073536633663,19.7570429047525,-0.838316831683168,1840.57425742574,503.718811881188,510.10198019802,20,40,11,32,5306517.445178,397106.743693959,0,0,0,0,0,0,0,85.0556831683167,16410.8622578654,19.7570429047525,21.1906593807083,21.6885511391217,-0.838316831683168,-0.82367662275331,-0.645801311449138,3.05428970904877,2.42316452269312,2.38053612056669,53.5401348658815,0.00691219505740328,1013.82079207921,1007.75504362317,1007.23821782178,1.05813079328607,2297.11637558164,-25.2403364870434,0,2297.11637558164,85.0608059994117,85.0608059994117,-0.00106607195373444,85.061165959453,24.9,1015.1,39.8,472.2247866275
+46052,2874.22365732673,457.391821584158,45,85.0556831683168,87.6073536633663,19.7570429047525,-0.838316831683168,1840.57425742574,503.718811881188,510.10198019802,20,40,11,32,5306517.445178,397106.743693959,0,0,0,0,0,0,0,85.0556831683167,16410.8622578654,19.7570429047525,21.1906593807083,21.6885511391217,-0.838316831683168,-0.82367662275331,-0.645801311449137,3.05428970904877,2.42316452269312,2.38053612056669,53.5401348658815,0.00691219505740328,1013.82079207921,1007.75504362317,1007.23821782178,1.05813079328607,2297.11637558164,-25.2403364870434,0,2297.11637558164,85.0608059994117,85.0608059994117,-0.00106607195373444,85.061165959453,24.9,1015.1,39.8,472.2247866275
 46053,2874.23145752475,457.406818217822,45,85.0722772277228,87.6244455445545,18.7001512650495,-1.79079207920792,1839.73762376238,493.2,500.283168316832,20,40,11,32,5306531.56075724,397125.680138466,0,0,0,0,0,0,0,85.0722772277227,16434.4920946916,18.7001512650495,20.0570772526927,20.7907940662398,-1.79079207920792,-1.77615187027806,-1.36390204847723,3.76005889616781,2.98309662421255,2.98995754093311,53.5157981791169,-0.0002880081273918,993.483168316832,997.108028624645,997.403922677982,1.05792417233711,2249.65432196599,59.9182079827918,0,2249.65432196599,85.071388295265,85.071388295265,0.00239900227647013,85.0714324375294,24.9,1015.1,39.75,432.287017322286
-46054,2874.23926366337,457.421802178218,45,85.0971485148515,87.6500629702971,18.6380968090099,-0.797722772277228,1842,511.113861386139,488.353465346535,20,40,11,32,5306545.68768306,397144.60090137,0,0,0,0,0,0,0,85.0971485148514,16458.1250994771,18.6380968090099,19.9905199825927,20.7392637493452,-0.797722772277228,-0.78308256334737,-0.601066071964038,3.83426103594565,3.04196595546325,3.03257732441934,53.5816080362259,-0.0079202235032746,999.467326732673,1003.15821978237,1003.08134842056,1.057614939073,2265.65041990848,99.0342692929239,0,2265.65041990848,85.0904421135182,85.0904421135182,0.00402602141401678,85.0902027345591,24.9,1015.1,39.7,430.117170753657
+46054,2874.23926366337,457.421802178218,45,85.0971485148515,87.6500629702971,18.6380968090099,-0.797722772277228,1842,511.113861386139,488.353465346535,20,40,11,32,5306545.68768306,397144.60090137,0,0,0,0,0,0,0,85.0971485148514,16458.1250994771,18.6380968090099,19.9905199825927,20.7392637493452,-0.797722772277228,-0.78308256334737,-0.601066071964037,3.83426103594566,3.04196595546325,3.03257732441934,53.5816080362259,-0.0079202235032746,999.467326732673,1003.15821978237,1003.08134842056,1.057614939073,2265.65041990848,99.0342692929239,0,2265.65041990848,85.0904421135182,85.0904421135182,0.00402602141401678,85.0902027345591,24.9,1015.1,39.7,430.117170753657
 46055,2874.24707217822,457.436801881188,45,85.1010792079208,87.6541115841585,18.917801980198,-1.33069306930693,1840.21287128713,508.210891089109,491.00099009901,20,40,11,32,5306559.81872199,397163.54125765,0,0,0,0,0,0,0,85.1010792079207,16481.7641848457,18.917801980198,20.2905212043466,20.9776724237472,-1.33069306930693,-1.31605286037707,-1.01129603105381,3.55471434201485,2.82018357864339,2.84256513829438,53.5296225692317,0.00381610768794139,999.211881188119,991.856759141261,991.28008486563,1.05756611116966,2262.56939906937,282.314142616859,0,2262.56939906937,85.1039050093127,85.1039050093127,0.0112611508675576,85.1042535596416,24.9,1015.1,39.65,440.310253407085
 46056,2874.25486564356,457.451827722772,45,85.1073861386138,87.6606077227723,21.334400990198,-1.92792079207921,1841.90099009901,456.8,437.441584158416,20,40,11,32,5306573.921365,397182.51358034,0,0,0,0,0,0,0,85.1073861386137,16505.4077042901,21.334400990198,22.8824741968842,23.0338094387501,-1.92792079207921,-1.91328058314935,-1.50418787760318,2.25873033565316,1.79199608978484,1.77155627311441,53.578727954952,0.00079202235032746,894.241584158416,899.532585040682,900.071230551627,1.05748835963351,2026.41893309984,-295.185855273303,0,2026.41893309984,85.1137831585138,85.1137831585138,-0.0118139289176312,85.1136286657236,24.9,1015.1,39.6,533.057164813704
 46057,2874.26266524753,457.466838316832,45,85.1068514851485,87.660057029703,21.972099009901,-2.25237623762376,1841.54455445545,463.793069306931,428.554455445545,20,40,11,32,5306588.03577851,397201.467021635,0,0,0,0,0,0,0,85.1068514851484,16529.0451727995,21.972099009901,23.5664450516535,23.5764451202569,-2.25237623762376,-2.23773602869391,-1.77529615667916,1.60041574704798,1.26971277423904,1.34445771574729,53.5683596623659,-0.0100082824268652,892.347524752475,894.54225075973,893.435106082037,1.0574943881523,2021.70542802857,-24.1231306093322,0,2021.70542802857,85.0981593961375,85.0981593961375,-0.000883627966775745,85.0977392739273,24.9,1015.1,39.55,556.492068491118
@@ -1015,12 +1015,12 @@ Time,Lat,Long,Heading,v_veh_GPS,v_veh_CAN,vair_ar,beta_ar,n_eng,tq_l,tq_r,t_amb_
 46063,2874.30823574257,457.554006237624,45,76.4704356435644,78.7645487128713,19.9731782178218,-2.89792079207921,1634.82178217822,-4294.05148514852,-3933.32475247525,20,40,11,32,5306670.51466968,397311.538736294,0,0,0,0,0,0,0,76.4704356435643,16666.6496856157,19.9731782178218,21.4224779692225,21.3799748022417,-2.89792079207921,-2.88328058314935,-2.29039313848054,1.74301687481704,1.38284742308466,1.32942064516964,47.5550379705524,-0.0149764226243738,-8227.37623762376,-8227.46415057347,-8228.69345937767,1.17704961554329,-18418.891282462,-18682.456857825,0,-18418.891282462,76.4786156259189,76.4786156259189,-0.747177564291081,76.4786475154361,24.9,1015.1,39.4000000000001,458.184410654041
 46064,2874.31515960396,457.567206534653,45,73.7538712871287,75.9664874257426,19.4652772277228,-2.18792079207921,1578.19801980198,-4296.19405940594,-3962.97326732673,20,40,11,32,5306683.04744663,397328.207954881,0,0,0,0,0,0,0,73.7538712871286,16687.5136707918,19.4652772277228,20.8777225150688,20.7926749872817,-2.18792079207921,-2.17328058314935,-1.72571627299923,1.48438684772881,1.1776595837364,1.19477347388706,45.9079194899987,-0.0150484246562217,-8259.16732673267,-8261.09517694343,-8260.86271373106,1.22042581006064,-18507.9036679178,-18951.6453568387,0,-18507.9036679178,73.7637808058032,73.7637808058032,-0.757944482567069,73.7651848193918,24.9,1015.1,39.4000000000001,433.006933173071
 46065,2874.32182287129,457.579922970297,45,71.0554257425743,73.1870885148515,18.5917425742574,-2.18465346534653,1520.61386138614,-4342.2,-3953.76930693069,20,40,11,32,5306695.10828371,397344.265864902,0,0,0,0,0,0,0,71.0554257425742,16707.6234258798,18.5917425742574,19.9408021779481,19.8942615392466,-2.18465346534653,-2.17001325641668,-1.72615644016722,1.56702580020204,1.24322238127731,1.2635841083578,44.232864221088,-0.011736331191216,-8295.96930693069,-8288.49838251153,-8286.58229464036,1.26679203278721,-18593.0735348899,-18788.6496870117,0,-18593.0735348899,71.051433486913,71.051433486913,-0.751451382762041,71.053769356586,24.9,1015.1,39.4000000000001,396.959016523907
-46066,2874.32823148515,457.592198019802,45,68.3709900990099,70.4221198019802,18.2789108910891,-2.54217821782178,1461.33168316832,-4192.88811881188,-3803.8198019802,20,40,11,32,5306706.70723875,397359.765572513,0,0,0,0,0,0,0,68.3709900990098,16726.9836290426,18.2789108910891,19.605270708311,19.4740018067515,-2.54217821782178,-2.52753800889193,-2.01675727497845,1.39618193528899,1.10768095207018,1.08414835361834,42.5084155583295,-0.0259927334971103,-7996.70792079208,-7731.04626017057,-7531.56412028986,1.31654020463578,-17896.8940900312,-17881.9062949165,0,-17896.8940900312,68.3865727869816,68.3865727869816,-0.715066061061545,68.4008815785035,24.9,1015.1,39.4000000000001,379.615238819657
+46066,2874.32823148515,457.592198019802,45,68.3709900990099,70.4221198019802,18.2789108910891,-2.54217821782178,1461.33168316832,-4192.88811881188,-3803.8198019802,20,40,11,32,5306706.70723875,397359.765572513,0,0,0,0,0,0,0,68.3709900990098,16726.9836290426,18.2789108910891,19.605270708311,19.4740018067515,-2.54217821782178,-2.52753800889193,-2.01675727497845,1.39618193528898,1.10768095207018,1.08414835361834,42.5084155583295,-0.0259927334971103,-7996.70792079208,-7731.04626017057,-7531.56412028986,1.31654020463578,-17896.8940900312,-17881.9062949165,0,-17896.8940900312,68.3865727869816,68.3865727869816,-0.715066061061545,68.4008815785035,24.9,1015.1,39.4000000000001,379.615238819657
 46067,2874.33443683168,457.603998217822,45,66.3612178217822,68.3520543564357,17.7352475247525,-2.53079207920792,1454.15841584158,-1489.35346534653,-1397.08811881188,20,40,11,32,5306717.94023373,397374.667097239,0,0,0,0,0,0,0,66.3612178217821,16745.6511367708,17.7352475247525,19.0221578776436,18.8960314510377,-2.53079207920792,-2.51615187027807,-2.00995889636639,1.37736832381785,1.09275490372397,1.09217047636981,42.2997536700342,0.00165604673250288,-2886.44158415842,-3061.83139888246,-3209.35029259972,1.35624832852614,-6560.7299699194,-7852.53448594711,0,-6560.7299699194,66.42350122537,66.42350122537,-0.314114084675804,66.4830844795454,24.9,1015.1,39.4000000000001,357.38578117468
 46068,2874.34052178218,457.615601485149,45,65.8898910891089,67.8665878217822,17.4350198019802,-2.40544554455446,1428.14851485149,172.945544554455,146.619801980198,20,40,11,32,5306728.95461391,397389.319322475,0,0,0,0,0,0,0,65.8898910891088,16763.9961266223,17.4350198019802,18.700144940759,18.6137401927643,-2.40544554455446,-2.3908053356246,-1.90680033764944,1.2602185968891,0.999812488570647,1.02724361565647,41.5431563193759,0.00252007111467828,319.565346534654,238.073100676404,164.804444605044,1.36591790040138,725.531472112729,-607.002687986739,0,725.531472112729,65.9120838153121,65.9120838153121,-0.024300449846968,65.9302277227722,24.9,1015.1,39.4000000000001,346.787370193812
 46069,2874.34663277228,457.627138712871,45,65.9429702970297,67.9212594059406,17.6708811881188,-3.24544554455446,1425.87128712871,512.325742574258,486.825742574258,20,40,11,32,5306740.01872779,397403.890098078,0,0,0,0,0,0,0,65.9429702970296,16782.303883553,17.6708811881188,18.953120971576,18.817171683978,-3.24544554455446,-3.2308053356246,-2.57936057403065,1.35796359006669,1.07735988004341,1.04654239268239,41.4769144500758,-0.0101522864905611,999.151485148515,991.435761199882,979.316130664161,1.36481594209228,2262.35601880217,560.06575036519,0,2262.35601880217,65.9478501127339,65.9478501127339,0.0224855406332886,65.9478686854086,24.9,1015.1,39.4000000000001,354.346878625733
 46070,2874.35274940594,457.638695643565,45,66.031099009901,68.012031980198,17.5698613861386,-2.8560396039604,1428.9900990099,498.264356435643,486.629702970297,20,40,11,32,5306751.09289538,397418.485543321,0,0,0,0,0,0,0,66.0310990099009,16800.6338399337,17.5698613861386,18.8447709404105,18.7364725950303,-2.8560396039604,-2.84139939503054,-2.26511708718998,1.275073047098,1.01159747957647,1.01990979912455,41.5676370102042,0.0080642275669705,984.894059405941,991.903881972356,994.813153140131,1.36299451675039,2232.12105823996,655.958686221222,0,2232.12105823996,66.0364874031956,66.0364874031956,0.0261725429968587,66.0362890800028,24.9,1015.1,39.4075742574258,351.30992463607
-46071,2874.35885287129,457.650291683168,45,66.1172772277228,68.1007955445545,17.2856831683168,-3.36207920792079,1431.66336633663,535.779207920792,498.545544554455,20,40,11,32,5306762.14184095,397433.129208132,0,0,0,0,0,0,0,66.1172772277227,16818.9898611933,17.2856831683168,18.5399720974708,18.4992273984833,-3.36207920792079,-3.34743899899094,-2.65999463423741,1.27189939310582,1.00907961568872,1.01699863545101,41.6453992046,-0.00187205282804672,1034.32475247525,1029.07058131556,1025.89166726892,1.36121854210974,2345.37342060119,551.001042745683,0,2345.37342060119,66.1205808254092,66.1205808254092,0.0220552995893743,66.1225218616751,24.9,1015.1,39.46,342.499009713125
+46071,2874.35885287129,457.650291683168,45,66.1172772277228,68.1007955445545,17.2856831683168,-3.36207920792079,1431.66336633663,535.779207920792,498.545544554455,20,40,11,32,5306762.14184095,397433.129208132,0,0,0,0,0,0,0,66.1172772277227,16818.9898611933,17.2856831683168,18.5399720974708,18.4992273984833,-3.36207920792079,-3.34743899899094,-2.65999463423742,1.27189939310582,1.00907961568872,1.01699863545101,41.6453992046,-0.00187205282804672,1034.32475247525,1029.07058131556,1025.89166726892,1.36121854210974,2345.37342060119,551.001042745683,0,2345.37342060119,66.1205808254092,66.1205808254092,0.0220552995893743,66.1225218616751,24.9,1015.1,39.46,342.499009713125
 46072,2874.36500277228,457.661854257426,45,66.2072277227723,68.1934445544555,16.9132079207921,-3.36930693069307,1431.17821782178,513.153465346535,494.40396039604,20,40,11,32,5306773.27757891,397447.732665451,0,0,0,0,0,0,0,66.2072277227722,16837.3692297302,16.9132079207921,18.1404691892626,18.1873801377164,-3.36930693069307,-3.35466672176322,-2.65469903004299,1.30880136169682,1.03835632144532,1.03553378773164,41.6312868063578,-0.000648018286631562,1007.55742574257,990.155494559357,980.420712582207,1.35936899604065,2280.82270306817,595.603302314355,0,2280.82270306817,66.2064206450347,66.2064206450347,0.0238293631343274,66.2069552648695,24.9,1015.1,39.52,331.098954611639
 46073,2874.37115821782,457.673433465346,45,66.259,68.24677,16.7393267326733,-2.79623762376238,1431.92079207921,326.334653465347,314.195049504951,20,40,11,32,5306784.42325546,397462.356965695,0,0,0,0,0,0,0,66.2589999999999,16855.7706290976,16.7393267326733,17.9539707821932,18.0431654379735,-2.79623762376238,-2.78159741483252,-2.19641832769945,1.40818008106024,1.11719985300642,1.13020518466643,41.6528874159122,0.00352809956054959,640.529702970297,516.103146750319,453.468569776686,1.35830805073387,1450.27392288445,-330.413601433585,0,1450.27392288445,66.25025556318,66.25025556318,-0.0132448888453241,66.2394949772348,24.9,1015.1,39.58,326.137643950238
 46074,2874.37729841584,457.685008118812,45,65.9976237623763,67.9775524752475,16.0964752475247,-3.10831683168317,1423.99504950495,-497.609900990099,-489.549504950495,20,40,11,32,5306795.54082552,397476.975034998,0,0,0,0,0,0,0,65.9976237623762,16874.1525969744,16.0964752475247,17.2644725146722,17.4807805317902,-3.10831683168317,-3.09367662275332,-2.42682240134336,1.64077298652818,1.30173076868552,1.291075935863,41.4223369099351,-0.0155524388791574,-987.159405940594,-848.772659543182,-778.097759629978,1.36370531486351,-2231.26343426056,-3259.34671675594,0,-2231.26343426056,65.9877619841191,65.9877619841191,-0.130247306908921,65.9782399364023,24.9,1015.1,39.64,305.957862909078
@@ -1032,15 +1032,15 @@ Time,Lat,Long,Heading,v_veh_GPS,v_veh_CAN,vair_ar,beta_ar,n_eng,tq_l,tq_r,t_amb_
 46080,2874.4124950495,457.752201386138,45,59.9594554455445,61.7582391089109,15.0306237623762,-3.45366336633663,1282.4801980198,-4202.39108910891,-3711.98910891089,20,40,11,32,5306859.2505864,397561.820097431,0,0,0,0,0,0,0,59.9594554455444,16980.2742831955,15.0306237623762,16.1212803942172,16.2272128740585,-3.45366336633663,-3.43902315740678,-2.7112442761644,1.28890261966885,1.02256936921694,1.00215488378517,37.305836745124,-0.0036721036242455,-7914.3801980198,-6963.72430153907,-6201.88506989567,1.5013252266444,-17724.2354363412,-17354.4174993498,0,-17724.2354363412,59.9543229095186,59.9543229095186,-0.694147632585038,59.9480631617328,24.9,1015.1,39.9924257425743,263.632411324363
 46081,2874.41787594059,457.762593861386,45,57.9341683168317,59.6721933663366,14.3458514851485,-3.20257425742574,1411.31188118812,-1945.49504950495,-1737.01485148515,20,40,11,32,5306868.98804495,397574.940461741,0,0,0,0,0,0,0,57.9341683168316,16996.5986724694,14.3458514851485,15.3868194655226,15.5287327337408,-3.20257425742574,-3.18793404849589,-2.50788341516792,1.26316729582948,1.00215188114342,0.980833220656855,41.0533984987462,0.0466573166374722,-3682.5099009901,-4520.49007940398,-5343.07906151158,1.55352492433804,-9320.59811575156,-10270.5099246677,0,-9320.59811575156,57.9365179884324,57.9365179884324,-0.411227385114742,57.9411101173383,24.9,1015.1,40,241.398829098942
 46082,2874.42310940594,457.772693465346,45,55.9695940594059,57.6486818811881,14.4173069306931,-2.69653465346535,1398.4504950495,-4449.95445544555,-4027.87128712871,20,40,11,32,5306878.45892452,397587.691175907,0,0,0,0,0,0,0,55.9695940594059,17012.4625742846,14.4173069306931,15.4634598825491,15.4771114609191,-2.69653465346535,-2.68189444453549,-2.12603660086525,1.08640807125358,0.861917416553462,0.875725831241575,40.6792759412642,-0.0193685465670988,-8477.82574257426,-8096.36608175669,-7647.81292514013,1.60840223782876,-22183.2064521502,-19040.0091502223,0,-22183.2064521502,55.9257227722771,55.9257227722771,-0.761417725931009,55.8587681831964,24.9,1015.1,40,239.837611694215
-46083,2874.42809207921,457.782306336634,45,52.9543069306931,54.5429361386138,13.7276633663366,-2.70613861386139,1325.14851485149,-4587.35049504951,-4029.2504950495,20,40,11,32,5306887.47603807,397599.827399769,0,0,0,0,0,0,0,52.954306930693,17027.5880753022,13.7276633663366,14.7237741949273,14.7175260806667,-2.70613861386139,-2.69149840493153,-2.13517863000173,0.971778052837541,0.77097404826771,0.784060458080669,38.547007770119,-0.0150484246562217,-8616.60099009901,-8506.61939025586,-8357.46923547608,1.70005571800069,-22580.7804445179,-20227.4638544529,0,-22580.7804445179,52.9758552102735,52.9758552102735,-0.808956638238073,53.0072872816654,24.9,1015.1,40,216.893867136748
-46084,2874.43278019802,457.791416336634,45,50.3093465346535,51.8186269306931,13.3120198019802,-2.70663366336634,1260.82673267327,-3990.1099009901,-3417.88415841584,20,40,11,32,5306895.95867548,397611.327600368,0,0,0,0,0,0,0,50.3093465346534,17041.9123696642,13.3120198019802,14.2779705775276,14.212161072529,-2.70663366336634,-2.69199345443648,-2.14242408067904,0.997534865840917,0.791408585077533,0.799533439962227,36.6759629705181,-0.019080538439707,-7407.99405940594,-7649.73877070875,-8095.79202479581,1.78928930259972,-19435.4494467866,-17703.7554519612,0,-19435.4494467866,50.2987829624546,50.2987829624546,-0.707969806881684,50.275876588116,24.9,1015.1,40,202.26050619162
+46083,2874.42809207921,457.782306336634,45,52.9543069306931,54.5429361386138,13.7276633663366,-2.70613861386139,1325.14851485149,-4587.35049504951,-4029.2504950495,20,40,11,32,5306887.47603807,397599.827399769,0,0,0,0,0,0,0,52.954306930693,17027.5880753022,13.7276633663366,14.7237741949273,14.7175260806667,-2.70613861386139,-2.69149840493153,-2.13517863000173,0.971778052837542,0.77097404826771,0.784060458080669,38.547007770119,-0.0150484246562217,-8616.60099009901,-8506.61939025586,-8357.46923547608,1.70005571800069,-22580.7804445179,-20227.4638544529,0,-22580.7804445179,52.9758552102735,52.9758552102735,-0.808956638238073,53.0072872816654,24.9,1015.1,40,216.893867136748
+46084,2874.43278019802,457.791416336634,45,50.3093465346535,51.8186269306931,13.3120198019802,-2.70663366336634,1260.82673267327,-3990.1099009901,-3417.88415841584,20,40,11,32,5306895.95867548,397611.327600368,0,0,0,0,0,0,0,50.3093465346534,17041.9123696642,13.3120198019802,14.2779705775276,14.212161072529,-2.70663366336634,-2.69199345443648,-2.14242408067904,0.997534865840917,0.791408585077532,0.799533439962227,36.6759629705181,-0.019080538439707,-7407.99405940594,-7649.73877070875,-8095.79202479581,1.78928930259972,-19435.4494467866,-17703.7554519612,0,-19435.4494467866,50.2987829624546,50.2987829624546,-0.707969806881684,50.275876588116,24.9,1015.1,40,202.26050619162
 46085,2874.43723415841,457.800108019802,45,47.4211881188119,48.8438237623762,12.4731683168317,-2.82574257425743,1183.59900990099,-5077.15247524752,-4469.72277227723,20,40,11,32,5306904.01683854,397622.299077401,0,0,0,0,0,0,0,47.4211881188118,17055.5079553077,12.4731683168317,13.3782500991908,13.3326043415135,-2.82574257425743,-2.81110236532757,-2.23714439710116,0.909561586202593,0.721613722614751,0.713677004865315,34.4294995768621,-0.029304826962116,-9546.87524752475,-9514.78797176748,-9476.38067073991,1.89879686682363,-24951.0287347825,-24039.6344606426,0,-24951.0287347825,47.3739997059111,47.3739997059111,-0.961309621061117,47.2411667651128,24.9,1015.1,40,178.157942777101
-46086,2874.44136178218,457.808198811881,45,43.3163168316832,44.6158063366337,11.3294158415842,-2.70732673267327,1176.87128712871,-6514.43762376238,-5626.77425742574,20,40,11,32,5306911.48381314,397632.511419112,0,0,0,0,0,0,0,43.3163168316831,17068.1372403737,11.3294158415842,12.1515043136167,12.1242659894729,-2.70732673267327,-2.69268652374341,-2.14112209657874,0.84592771451889,0.67112887834843,0.67850833921223,34.2337980542993,0.0658098571090271,-12141.2118811881,-12033.6928242329,-11464.4794362432,2.08008118336618,-35040.1970761461,-33562.625242255,0,-35040.1970761461,43.2511375355357,43.2511375355357,-1.34324249256608,43.0981384321402,24.9,1015.1,40,147.411674149405
+46086,2874.44136178218,457.808198811881,45,43.3163168316832,44.6158063366337,11.3294158415842,-2.70732673267327,1176.87128712871,-6514.43762376238,-5626.77425742574,20,40,11,32,5306911.48381314,397632.511419112,0,0,0,0,0,0,0,43.3163168316831,17068.1372403737,11.3294158415842,12.1515043136167,12.1242659894729,-2.70732673267327,-2.69268652374341,-2.14112209657874,0.84592771451889,0.671128878348429,0.67850833921223,34.2337980542993,0.0658098571090271,-12141.2118811881,-12033.6928242329,-11464.4794362432,2.08008118336618,-35040.1970761461,-33562.625242255,0,-35040.1970761461,43.2511375355357,43.2511375355357,-1.34324249256608,43.0981384321402,24.9,1015.1,40,147.411674149405
 46087,2874.44499039604,457.815505445545,45,38.1782673267327,39.3236153465347,10.0733861386139,-2.47613861386139,1328.50495049505,-6054.51485148515,-5033.29405940594,20,40,11,32,5306918.04379433,397641.730706817,0,0,0,0,0,0,0,38.1782673267326,17079.4416510173,10.0733861386139,10.8043342064296,10.760685405577,-2.47613861386139,-2.46149840493153,-1.95651697143025,0.843147442807469,0.668923109932092,0.657044238271324,38.6446425253048,-0.0268567578792857,-11087.8089108911,-11090.5889030487,-11023.4058626554,2.36041012234358,-40338.7740100356,-30462.4620176375,0,-40338.7740100356,38.2982933045779,38.2982933045779,-1.21814310143886,38.6449923489876,24.9,1015.1,40,116.320095617573
-46088,2874.44804554455,457.822230495049,45,34.8277524752475,35.872585049505,8.84380198019802,-2.59792079207921,1215.48514851485,-5106.59405940594,-4098.20396039604,20,40,11,32,5306923.55438391,397650.206796144,0,0,0,0,0,0,0,34.8277524752475,17089.5438028325,8.84380198019802,9.4855285933367,9.52225549521019,-2.59792079207921,-2.58328058314935,-2.03948271102753,0.808758934450283,0.64164049388143,0.763610712417656,35.3570297511274,-0.0369370423379988,-9204.79801980198,-9368.29228507009,-10116.2127758612,2.58608784793663,-33641.1373368598,-21880.2816139777,0,-33641.1373368598,34.7939826487599,34.7939826487599,-0.874724972497248,34.7855906870174,24.9,1015.1,40,91.1081650313237
+46088,2874.44804554455,457.822230495049,45,34.8277524752475,35.872585049505,8.84380198019802,-2.59792079207921,1215.48514851485,-5106.59405940594,-4098.20396039604,20,40,11,32,5306923.55438391,397650.206796144,0,0,0,0,0,0,0,34.8277524752475,17089.5438028325,8.84380198019802,9.4855285933367,9.52225549521019,-2.59792079207921,-2.58328058314935,-2.03948271102753,0.808758934450284,0.64164049388143,0.763610712417656,35.3570297511274,-0.0369370423379988,-9204.79801980198,-9368.29228507009,-10116.2127758612,2.58608784793663,-33641.1373368598,-21880.2816139777,0,-33641.1373368598,34.7939826487599,34.7939826487599,-0.874724972497248,34.7855906870174,24.9,1015.1,40,91.1081650313237
 46089,2874.45048980198,457.828663861386,45,31.4071386138614,32.3493527722772,6.14347524752475,-3.0860396039604,1150.69801980198,-6100.67920792079,-4978.26732673267,20,40,11,32,5306927.93984772,397658.2995193,0,0,0,0,0,0,0,31.4071386138614,17098.749757673,6.14347524752475,6.58925994197209,7.02844865840064,-3.0860396039604,-3.07139939503054,-2.27704559792722,2.20785338871774,1.75163213463297,1.57408928148133,33.4724485695391,0.0485293694655189,-11078.9465346535,-10301.5858935399,-8118.72743163131,2.8691045191905,-42394.7833940883,-24292.0562305014,0,-42394.7833940883,31.4050182335065,31.4050182335065,-0.972445511877918,31.6466126994796,24.9,1015.1,40,50.7051040871013
 46090,2874.45218108911,457.834774653465,45,28.6896831683168,29.5503736633663,5.06338613861386,-1.94267326732673,1424.90099009901,-2074.61485148515,-1639.09207920792,20,40,11,32,5306930.9376866,397665.965740039,0,0,0,0,0,0,0,28.6896831683168,17107.0261869084,5.06338613861386,5.43079708302685,5.95363311654063,-1.94267326732673,-1.92803305839688,-1.45350656291112,2.58200763519204,2.04847276942457,1.9854844958326,41.4486896535914,0.0270007619429816,-3713.70693069307,-4344.1703460445,-6046.92290425472,3.13729457922723,-19146.3431198299,-9731.65695039226,0,-19146.3431198299,28.7957328693265,28.7957328693265,-0.389737117276084,29.3476104211442,24.9,1015.1,39.9949504950495,36.5357385404148
-46091,2874.45318,457.840876039604,45,27.738297029703,28.5704459405941,4.93832673267327,-1.92960396039604,1393.14356435644,-1703.22178217822,-1420.96336633663,20,40,10.8811881188119,32,5306932.65322175,397673.597488511,0,0,0,0,0,0,0,27.7382970297029,17114.869113311,4.93832673267327,5.29666307894452,5.79264872157038,-1.92960396039604,-1.91496375146619,-1.35870573432248,2.4423427543125,1.93766763413869,2.17744350216161,40.5249035849822,-0.0162724591976369,-3124.18514851485,-3294.03533967258,-4648.3836752795,3.24509541391814,-16430.5193729577,-7745.05094609671,0,-16430.5193729577,27.7298101166552,27.7298101166552,-0.309494439542966,27.623044326854,24.9,1015.1,39.96,34.133081463738
+46091,2874.45318,457.840876039604,45,27.738297029703,28.5704459405941,4.93832673267327,-1.92960396039604,1393.14356435644,-1703.22178217822,-1420.96336633663,20,40,10.8811881188119,32,5306932.65322175,397673.597488511,0,0,0,0,0,0,0,27.7382970297029,17114.869113311,4.93832673267327,5.29666307894452,5.79264872157038,-1.92960396039604,-1.91496375146619,-1.35870573432248,2.44234275431251,1.93766763413869,2.17744350216161,40.5249035849822,-0.0162724591976369,-3124.18514851485,-3294.03533967258,-4648.3836752795,3.24509541391814,-16430.5193729577,-7745.05094609671,0,-16430.5193729577,27.7298101166552,27.7298101166552,-0.309494439542966,27.623044326854,24.9,1015.1,39.96,34.133081463738
 46092,2874.4536040594,457.846895544554,45,26.4434851485148,27.2367897029703,4.16775247524753,-0.376831683168317,1321.58910891089,-3127.5099009901,-2665.18316831683,20,40,10.7128712871287,32,5306933.30575075,397681.108367301,0,0,0,0,0,0,0,26.4434851485148,17122.4063492571,4.16775247524753,4.47017418101722,5.0628946566425,-0.376831683168317,-0.36219147423846,-0.336201699316308,2.89981925162363,2.30061317102277,2.07534533946317,38.4434688483216,-0.0273607721022213,-5792.69306930693,-5641.64217233604,-5303.14227368906,3.40479858282087,-30316.7033395358,-12332.1836953808,0,-30316.7033395358,26.379835212234,26.379835212234,-0.492771678157913,26.0611992977747,24.9,1015.1,39.92,26.5485380982038
 46093,2874.45383960396,457.85253029703,45,24.2141881188119,24.9406137623762,4.70963366336634,-3.24960396039604,1213.03465346535,-4130.59900990099,-3487.83069306931,20,40,10.8415841584158,32,5306933.61759299,397688.133863878,0,0,0,0,0,0,0,24.2141881188118,17129.4491620184,4.70963366336634,5.05137551451623,5.39585038262476,-3.24960396039604,-3.23496375146619,-2.40761728773592,1.72946960755769,1.37209950440981,1.38626717590069,35.2857477395979,-0.0100082824268652,-7618.4297029703,-7250.90035290658,-5390.46500562055,3.71942534361506,-39941.1316124913,-15458.5717519692,0,-39941.1316124913,24.2337464954416,24.2337464954416,-0.618167881144554,24.2579379452742,24.9,1015.1,39.88,29.5334194952931
 46094,2874.45439683168,457.857594851485,45,22.1133069306931,22.7767061386139,5.56316831683168,-3.34683168316832,1335.86138613861,-2225.95346534654,-2339.50198019802,20,40,10.5049504950495,32,5306934.53790699,397694.459778247,0,0,0,0,0,0,0,22.1133069306931,17135.8771102307,5.56316831683168,5.96684460563534,6.00153356965316,-3.34683168316832,-3.33219147423846,-2.63005947759661,0.6957400098933,0.551975310003145,0.653238399333135,38.8586325639569,0.0446412597457296,-4565.45544554456,-4862.64466228801,-4371.30830873734,4.07289709458741,-28441.6336928195,-12736.3605444547,0,-28441.6336928195,22.1632995784727,22.1632995784727,-0.510427899225563,22.5325752523388,24.9,1015.1,39.84,36.2032910603671
@@ -1051,8 +1051,8 @@ Time,Lat,Long,Heading,v_veh_GPS,v_veh_CAN,vair_ar,beta_ar,n_eng,tq_l,tq_r,t_amb_
 46099,2874.46475069307,457.872522079208,45,21.2782574257426,21.9166051485148,6.32061386138614,-3.5,970.940594059406,-174.340594059406,-357.891089108911,20,40,10.8217821782178,32,5306953.38718897,397713.390839954,0,0,0,0,0,0,0,21.2782574257425,17164.4822213968,6.32061386138614,6.77925214108832,6.59808797599473,-3.5,-3.48535979107015,-2.83187669236484,0.975094653986464,0.773605321331356,0.744739470546316,28.2435170126772,-0.0112323169682803,-532.231683168317,-377.754612292912,65.1184211760581,4.22995329591597,-2454.3681221792,59.2956913256659,0,-2454.3681221792,21.2212971277325,21.2212971277325,0.00256919256281798,20.7373806264902,24.9,1015.1,39.64,43.6887123429946
 46100,2874.46780821782,457.872453465346,45,20.8373267326733,21.4624465346535,6.15005940594059,-3.5,948.440594059406,-772.359405940594,-980.628712871287,20,40,10.8316831683168,32,5306959.05230392,397713.405808865,0,0,0,0,0,0,0,20.8373267326732,17170.3406398786,6.15005940594059,6.59632186206668,6.42768559863156,-3.5,-3.48535979107015,-2.82925068096176,0.912332977622674,0.723812445724658,0.730354974863585,27.5890185431793,-0.0118083332230639,-1752.98811881188,-1782.93919223605,-550.088952873561,4.31951332517954,-8356.04331054743,-3995.17608687328,0,-8356.04331054743,20.8240186256249,20.8240186256249,-0.159604450544061,20.648579212069,24.9,1015.1,39.6012623762376,41.423280543327
 46101,2874.4706870297,457.871084455446,45,20.2696336633663,20.8777226732673,5.8249900990099,-3.5,920.371287128713,-764.290099009901,-969.216831683168,20,40,11,32,5306964.41509772,397711.795349011,0,0,0,0,0,0,0,20.2696336633663,17176.0416115233,5.8249900990099,6.24766477853956,6.11854413007145,-3.5,-3.48535979107015,-2.81511808723309,0.782941034763759,0.621157493075878,0.62725480397805,26.7725155020236,-0.00540015238859631,-1733.50693069307,-1640.58056072934,-510.972198975797,4.44021917518948,-8246.31311025179,-3399.0906718918,0,-8246.31311025179,20.2706450348005,20.2706450348005,-0.13587175549238,20.449689738427,24.9,1015.1,39.57,37.6104875228805
-46102,2874.47317376238,457.868594554456,45,19.8415643564356,20.4368112871287,5.54319801980198,-3.5,901.995049504951,218.7,69.7633663366335,20,40,11,32,5306969.07637884,397708.776017932,0,0,0,0,0,0,0,19.8415643564356,17181.6097771724,5.54319801980198,5.94542521791988,5.85423094749567,-3.5,-3.48535979107015,-2.80187189004117,0.609950349884877,0.483912853475057,0.52486594576451,26.2379724175844,-0.004392123942725,288.463366336634,234.576178805999,795.024193842194,4.5361288634047,1368.22874015458,-162.851061932499,0,1368.22874015458,19.9271627291442,19.9271627291442,-0.00644000043568722,20.2894439629096,24.9,1015.1,39.54,34.3922200508521
-46103,2874.47504564356,457.865104950495,45,20.166603960396,20.7716020792079,5.97704950495049,-3.5,898.89603960396,1372.50495049505,1120.0900990099,20,40,10.8910891089109,32,5306972.62082126,397704.491431964,0,0,0,0,0,0,0,20.166603960396,17187.1693746696,5.97704950495049,6.41075796472406,6.24201850861045,-3.5,-3.48535979107015,-2.83096672260913,0.912002312239788,0.72355010760319,0.689112146857998,26.1478258737108,0.00576016254783606,2492.59504950495,2547.10987158122,2719.09955227119,4.46291556524207,11677.4591881073,1539.54415699108,0,11677.4591881073,20.1383392804627,20.1383392804627,0.0614877081767555,20.4820454873613,24.9,1015.1,39.51,39.0853264182192
+46102,2874.47317376238,457.868594554456,45,19.8415643564356,20.4368112871287,5.54319801980198,-3.5,901.995049504951,218.7,69.7633663366335,20,40,11,32,5306969.07637884,397708.776017932,0,0,0,0,0,0,0,19.8415643564356,17181.6097771724,5.54319801980198,5.94542521791988,5.85423094749567,-3.5,-3.48535979107015,-2.80187189004117,0.609950349884877,0.483912853475057,0.524865945764509,26.2379724175844,-0.004392123942725,288.463366336634,234.576178805999,795.024193842194,4.5361288634047,1368.22874015458,-162.851061932499,0,1368.22874015458,19.9271627291442,19.9271627291442,-0.00644000043568722,20.2894439629096,24.9,1015.1,39.54,34.3922200508521
+46103,2874.47504564356,457.865104950495,45,20.166603960396,20.7716020792079,5.97704950495049,-3.5,898.89603960396,1372.50495049505,1120.0900990099,20,40,10.8910891089109,32,5306972.62082126,397704.491431964,0,0,0,0,0,0,0,20.166603960396,17187.1693746696,5.97704950495049,6.41075796472406,6.24201850861045,-3.5,-3.48535979107015,-2.83096672260913,0.912002312239788,0.723550107603189,0.689112146857998,26.1478258737108,0.00576016254783606,2492.59504950495,2547.10987158122,2719.09955227119,4.46291556524207,11677.4591881073,1539.54415699108,0,11677.4591881073,20.1383392804627,20.1383392804627,0.0614877081767555,20.4820454873613,24.9,1015.1,39.51,39.0853264182192
 46104,2874.47611821782,457.86088960396,45,20.5989504950495,21.216919009901,6.16137623762376,-3.5,924.292079207921,2900.6594059406,2440.17722772277,20,40,11,32,5306974.70070124,397699.276730879,0,0,0,0,0,0,0,20.5989504950495,17192.803198322,6.16137623762376,6.60845986908641,6.42364659178649,-3.5,-3.48535979107015,-2.83557693150549,0.976482997493958,0.774706783554375,0.776971260419488,26.8865667204707,0.0172804876435082,5340.83663366337,5305.10277423782,4618.18822213466,4.3702514091608,25094.341369253,6918.25098199277,0,25094.341369253,20.6424430938143,20.6424430938143,0.27643803984359,21.0786346683559,24.9,1015.1,39.48,41.3950391258045
 46105,2874.47616148515,457.856278712871,132.326732673267,21.9542277227723,22.6128545544554,6.77267326732673,-3.46762376237624,984.346534653465,4037.86633663366,3358.07326732673,20,40,11,32,5306974.88268797,397693.535595345,0,0,0,0,0,0,0,21.9542277227722,17198.7082603407,6.77267326732673,7.26411401729693,7.02151839537888,-3.46762376237624,-3.45298355344639,-2.82432109652855,1.23787160948715,0.982083185780201,0.982445122456952,28.6334800171657,0.0187925303123152,7395.9396039604,7119.26418978531,6214.45224245231,4.10090079625172,34730.5535680285,9662.35153932831,0,34730.5535680285,21.9611815508283,21.9611815508283,0.386176736485528,21.9373371037427,24.9,1015.1,39.45,49.4116016771432
 46106,2874.47519306931,457.851507524753,223.217821782178,23.1130396039604,23.8064307920792,7.12577227722772,-1.99722772277228,962.688118811881,3785.9297029703,3145.78316831683,20,40,10.8514851485149,32,5306973.19423186,397687.561583923,0,0,0,0,0,0,0,23.1130396039604,17204.9857986795,7.12577227722772,7.64283470351245,7.38865038328281,-1.99722772277228,-1.98258751384242,-1.62371119214598,1.28922099351505,1.02282195567159,1.01478258643667,28.0034622384961,-0.061561737229998,6931.71287128713,7105.69225566121,7358.96711933477,3.8942458915534,29979.2913843224,6424.21386689073,0,29979.2913843224,23.0957047348299,23.0957047348299,0.257872321885653,23.0822969389015,24.9,1015.1,39.42,54.7042123539566
@@ -1064,7 +1064,7 @@ Time,Lat,Long,Heading,v_veh_GPS,v_veh_CAN,vair_ar,beta_ar,n_eng,tq_l,tq_r,t_amb_
 46112,2874.45984564356,457.82178019802,225,35.7036831683168,36.7747936633663,10.5393168316832,3.49049504950495,1804.86633663366,5323.09702970297,5339.07425742574,20,40,11,32,5306945.4222218,397650.033783198,0,0,0,0,0,0,0,35.7036831683168,17251.893298817,10.5393168316832,11.3040739022661,11.0147564383433,3.49049504950495,3.5051352584348,2.84616949714454,1.54382926591707,1.2248190782893,1.19485197431314,52.5014335544429,0.0484573674336709,10662.1712871287,10648.6957259092,10401.6628601517,2.52221784973519,56444.7725809321,21085.3734806692,0,56444.7725809321,35.689855308303,35.689855308303,0.842492293783835,35.6091388852224,24.9,1015.1,39.42,121.52820124184
 46113,2874.45640227723,457.815275148515,225,38.5261089108911,39.6818921782178,11.432495049505,2.92930693069307,1906.77227722772,4352.04851485148,4295.74851485149,20,40,11,32,5306939.18765663,397641.818962097,0,0,0,0,0,0,0,38.526108910891,17262.2190775574,11.432495049505,12.2620631859547,11.9369724010877,2.92930693069307,2.94394713962292,2.39149191464892,1.70801849966069,1.35508096046668,1.2826860566906,55.4657572056231,-0.042481198790291,8647.79702970297,8944.01098911871,9322.21115415526,2.33688949497218,44922.4313234496,17436.0133587426,0,44922.4313234496,38.4934222135084,38.4934222135084,0.698155954209283,38.4040593202948,24.9,1015.1,39.48,142.842235163756
 46114,2874.45272970297,457.808318712871,225,40.8771881188119,42.1035037623762,11.4537821782178,3.2350495049505,1500.18316831683,4583.67920792079,4347.55148514851,20,40,11,32,5306932.53850599,397633.034413704,0,0,0,0,0,0,0,40.8771881188118,17273.2492822879,11.4537821782178,12.2848949576891,12.0897964993833,3.2350495049505,3.24968971388035,2.6146068528869,1.21209785759065,0.961635210256705,1.08681809322926,43.638559450215,-0.0714980176250152,8931.2306930693,8721.1655327909,8746.20592897661,2.20242561292457,34465.1022533397,16588.7510903274,0,34465.1022533397,40.8821950789138,40.8821950789138,0.664650252153923,40.897702499811,24.9,1015.1,39.54,146.411728510603
-46115,2874.44885821782,457.800914158416,225,43.3272178217822,44.6270343564357,12.8344752475248,2.49118811881188,1535.86633663366,4543.93663366337,4415.04653465347,20,40,11,32,5306925.53082088,397623.685199351,0,0,0,0,0,0,0,43.3272178217821,17284.9455815453,12.8344752475248,13.76577429181,13.4055358594203,2.49118811881188,2.50582832774174,2.03389174430893,1.89022051247239,1.49963353912371,1.49536040449822,44.6765407413351,0.0218166156499291,8958.98316831684,8894.65401431232,8821.55973085575,2.07785694036526,33255.9086965508,17272.6512845581,0,33255.9086965508,43.3302014508381,43.3302014508381,0.690614482240298,43.3255321757275,24.9,1015.1,39.6,180.214106595856
+46115,2874.44885821782,457.800914158416,225,43.3272178217822,44.6270343564357,12.8344752475248,2.49118811881188,1535.86633663366,4543.93663366337,4415.04653465347,20,40,11,32,5306925.53082088,397623.685199351,0,0,0,0,0,0,0,43.3272178217821,17284.9455815453,12.8344752475248,13.76577429181,13.4055358594203,2.49118811881188,2.50582832774174,2.03389174430893,1.89022051247239,1.4996335391237,1.49536040449822,44.6765407413351,0.0218166156499291,8958.98316831684,8894.65401431232,8821.55973085575,2.07785694036526,33255.9086965508,17272.6512845581,0,33255.9086965508,43.3302014508381,43.3302014508381,0.690614482240298,43.3255321757275,24.9,1015.1,39.6,180.214106595856
 46116,2874.44478019802,457.793053465346,225,45.7529801980198,47.1255696039604,14.3250396039604,2.57881188118812,1624.36633663366,4445.07722772277,4149.19702970297,20,40,11,32,5306918.15065942,397613.761076353,0,0,0,0,0,0,0,45.7529801980197,17297.3261019248,14.3250396039604,15.3644974263665,14.8130896564044,2.57881188118812,2.59345209011797,2.12912020425922,2.75740413413899,2.18762609610268,2.08566891691037,47.2509013880267,0.0311048777583148,8594.27425742574,8586.22071365552,8580.78609775792,1.96754512948901,31952.6206817261,16200.8110302764,0,31952.6206817261,45.747751102833,45.747751102833,0.647616246773197,45.7308612429714,24.9,1015.1,39.66,219.969097041854
 46117,2874.44048544554,457.784785346535,225,48.0283960396039,49.4692479207921,14.5210495049505,3.19693069306931,1705.58910891089,4309.53465346535,3862.56534653465,20,40,11,32,5306910.37805734,397603.322374578,0,0,0,0,0,0,0,48.0283960396039,17310.3578704067,14.5210495049505,15.5747302566109,15.1097416594128,3.19693069306931,3.21157090199916,2.61869467959104,2.39911456256515,1.90337192855711,1.89939826484191,49.6135760610854,0.0163444612294849,8172.1,8178.08921674346,8193.17552612163,1.87424188656008,30391.4478365958,15318.1087292115,0,30391.4478365958,48.0234985785706,48.0234985785706,0.612503948414642,48.0059436889793,24.9,1015.1,39.72,228.615341973473
 46118,2874.43599762376,457.776119009901,225,50.1504059405941,51.6549181188119,13.9535445544554,3.25148514851485,1773.44059405941,4216.09207920792,3667.34257425742,20,40,11,32,5306902.25664662,397592.381335934,0,0,0,0,0,0,0,50.150405940594,17324.0005203792,13.9535445544554,14.9660458416009,14.748451974564,3.25148514851485,3.2661253574447,2.62561914957798,1.38096774667329,1.09561055744262,1.12864698246355,51.5872957581014,0.027864786325157,7883.43465346535,7882.32288991276,7879.04144354138,1.79486547107255,29194.0703958268,14335.4320863082,0,29194.0703958268,50.1454708361925,50.1454708361925,0.573045670903723,50.1383876906066,24.9,1015.1,39.78,217.735037768081
@@ -1073,8 +1073,8 @@ Time,Lat,Long,Heading,v_veh_GPS,v_veh_CAN,vair_ar,beta_ar,n_eng,tq_l,tq_r,t_amb_
 46121,2874.42130920792,457.748211980198,225,55.7357623762376,57.4078352475247,15.6289306930693,2.21653465346535,1917.72772277228,3387.4297029703,3094.08118811881,20,40,11,32,5306875.66570138,397557.141389475,0,0,0,0,0,0,0,55.7357623762375,17368.2151196641,15.6289306930693,16.7630018519554,16.4950057011002,2.21653465346535,2.2311748623952,1.79693120680189,1.59191408563121,1.26296785928614,1.26528835855762,55.7844381985821,-0.0986427836316927,6481.51089108911,6541.95275953338,6664.74114480556,1.61485598805101,23299.4069815353,11080.1946614704,0,23299.4069815353,55.7292149789236,55.7292149789236,0.444396791164272,55.7127671178022,24.9,1015.1,39.89,272.44711484438
 46122,2874.41609742574,457.738298316832,225,57.3167623762376,59.0362652475247,15.5860495049505,1.95138613861386,1478.04455445545,3496.02079207921,3148.39108910891,20,40,11,32,5306866.2309404,397544.622911465,0,0,0,0,0,0,0,57.3167623762375,17383.9147344055,15.5860495049505,16.7170091061965,16.549177724305,1.95138613861386,1.96602634754372,1.57445111932516,1.29306370711533,1.02587062759012,1.02183917392543,42.9945732773669,-0.045505284127905,6644.41188118812,6588.58495245564,6544.36918275054,1.57033112141015,17974.4967164367,11327.1336408855,0,17974.4967164367,57.3186191549847,57.3186191549847,0.453563920748503,57.3202854037559,24.9,1015.1,39.88,274.207726882693
 46123,2874.4107290099,457.728105841584,225,58.9120396039604,60.6794007920792,15.6400891089109,3.01574257425743,1514.90594059406,3471.5504950495,3051.18613861386,20,40,11,32,5306856.51223404,397531.751990089,0,0,0,0,0,0,0,58.9120396039603,17400.0641335254,15.6400891089109,16.7749699481157,16.6861855723656,3.01574257425743,3.03038278318728,2.41509133953862,1.22392816067444,0.971020950790882,1.02122788506932,44.0668275356466,0.0149044205925258,6522.73663366337,6519.01761592001,6515.4033875102,1.52778182008825,17564.3569566755,10893.2003188911,0,17564.3569566755,58.9177382609547,58.9177382609547,0.435583657375648,58.920292747122,24.9,1015.1,39.87,278.855630823447
-46124,2874.40520316832,457.717647722772,225,60.5086237623763,62.3238824752475,16.5423366336634,2.71445544554455,1539.17821782178,3442.22178217822,3025.53465346535,20,40,11,32,5306846.5078261,397518.544996233,0,0,0,0,0,0,0,60.5086237623762,17416.6526275023,16.5423366336634,17.7426866285061,17.5454238939827,2.71445544554455,2.72909565447441,2.18498008942736,1.60319054613583,1.27191420087103,1.22890748560265,44.7728794599476,0.00619217473892378,6467.75643564357,6461.71564552495,6460.68374631607,1.48746437808398,17228.5761261842,10835.5588854953,0,17228.5761261842,60.49996029801,60.49996029801,0.433363014519267,60.4946410819548,24.9,1015.1,39.86,308.414209290735
-46125,2874.39952336634,457.706928316832,225,62.0262178217822,63.8870043564356,15.7425445544554,2.60138613861386,1579.52475247525,3362.88118811881,2985.7099009901,20,40,11,32,5306836.22404144,397505.00746602,0,0,0,0,0,0,0,62.0262178217821,17433.6737936189,15.7425445544554,16.8848597964448,16.9520956779305,2.60138613861386,2.61602634754372,2.06556043500534,1.22324717979213,0.970480684846314,0.971972898621727,45.9465125790692,0.0144004063695902,6348.59108910891,6351.59234388785,6350.34300213662,1.45106533074973,16930.119697489,10583.6357721662,0,16930.119697489,62.0284550534261,62.0284550534261,0.423207419751878,62.0285680562003,24.9,1015.1,39.85,287.740572572704
+46124,2874.40520316832,457.717647722772,225,60.5086237623763,62.3238824752475,16.5423366336634,2.71445544554455,1539.17821782178,3442.22178217822,3025.53465346535,20,40,11,32,5306846.5078261,397518.544996233,0,0,0,0,0,0,0,60.5086237623762,17416.6526275023,16.5423366336634,17.7426866285061,17.5454238939827,2.71445544554455,2.72909565447441,2.18498008942736,1.60319054613584,1.27191420087103,1.22890748560265,44.7728794599476,0.00619217473892378,6467.75643564357,6461.71564552495,6460.68374631607,1.48746437808398,17228.5761261842,10835.5588854953,0,17228.5761261842,60.49996029801,60.49996029801,0.433363014519267,60.4946410819548,24.9,1015.1,39.86,308.414209290735
+46125,2874.39952336634,457.706928316832,225,62.0262178217822,63.8870043564356,15.7425445544554,2.60138613861386,1579.52475247525,3362.88118811881,2985.7099009901,20,40,11,32,5306836.22404144,397505.00746602,0,0,0,0,0,0,0,62.0262178217821,17433.6737936189,15.7425445544554,16.8848597964448,16.9520956779305,2.60138613861386,2.61602634754372,2.06556043500534,1.22324717979213,0.970480684846315,0.971972898621727,45.9465125790692,0.0144004063695902,6348.59108910891,6351.59234388785,6350.34300213662,1.45106533074973,16930.119697489,10583.6357721662,0,16930.119697489,62.0284550534261,62.0284550534261,0.423207419751878,62.0285680562003,24.9,1015.1,39.85,287.740572572704
 46126,2874.39369009901,457.695954356436,225,63.5338217821782,65.4398364356436,17.2240891089109,3.08792079207921,1616.84158415842,3292.28910891089,2920.93762376238,20,40,11,32,5306825.66165038,397491.147797325,0,0,0,0,0,0,0,63.5338217821781,17451.1166343505,17.2240891089109,18.4739086314431,18.2988902809818,3.08792079207921,3.10256100100906,2.47816416028531,1.62014371348284,1.28536423920264,1.38489120242841,47.0320152112089,0.0181445120256836,6213.22673267327,6212.3492794824,6211.4641604586,1.41662268564158,16557.6403623444,9999.83641100071,0,16557.6403623444,63.5247197333594,63.5247197333594,0.399819189839782,63.5198513569851,24.9,1015.1,39.84,335.814035485959
 46127,2874.38772693069,457.68472019802,225,64.9580198019802,66.9067603960396,19.0258316831683,2.71217821782178,1654.09900990099,3186.65940594059,2887.11584158416,20,40,11,32,5306814.86442948,397476.959733223,0,0,0,0,0,0,0,64.9580198019801,17468.9631396035,19.0258316831683,20.4063897910414,19.9139324117314,2.71217821782178,2.72681842675164,2.21321983487402,2.61444540013075,2.07420773522107,1.93229797257707,48.1157897945843,0.0104402946179529,6073.77524752476,6073.65048524654,6074.90258389129,1.3855657610916,16197.1400075924,9812.65536593502,0,16197.1400075924,64.9470012743848,64.9470012743848,0.392405700966125,64.9449811641088,24.9,1015.1,39.83,397.008674131416
 46128,2874.38162811881,457.673244356436,225,66.3234752475247,68.3131795049505,18.2271683168317,3.29336633663366,1687.37128712871,3133.69207920792,2805.95148514851,20,40,11,32,5306803.82133397,397462.466140749,0,0,0,0,0,0,0,66.3234752475246,17487.1997102306,18.2271683168317,19.5497735738534,19.3121061810426,3.29336633663366,3.30800654556352,2.65308103112272,1.66707235264674,1.32259574778655,1.35972930187751,49.0836411066844,0.00100802844587131,5939.64356435643,5945.73023233016,5946.02037097997,1.35703335193091,15824.4814704556,9538.79772914394,0,15824.4814704556,66.3278102146847,66.3278102146847,0.381542114607494,66.32846656282,24.9,1015.1,39.82,373.292745978659
@@ -1092,18 +1092,18 @@ Time,Lat,Long,Heading,v_veh_GPS,v_veh_CAN,vair_ar,beta_ar,n_eng,tq_l,tq_r,t_amb_
 46140,2874.30028336634,457.517887524752,225,80.1631386138614,82.5680327722772,20.4349801980198,1.58851485148515,1743.31188118812,2537.41485148515,2259.45445544554,20,40,11,32,5306656.58500688,397266.290567936,0,0,0,0,0,0,0,80.1631386138613,17732.7068975793,20.4349801980198,21.9177893632854,21.9858199986973,1.58851485148515,1.60315506041501,1.26891275135539,1.40897574502886,1.11783110442145,1.11725960367845,50.7108870264481,-0.00086402438217541,4796.86930693069,4800.15154396628,4800.16595987032,1.12272335264904,10924.1488057138,6770.03054020075,0,10924.1488057138,80.1614958337417,80.1614958337417,0.270808145170959,80.1604768246735,24.8987376237624,1015.09873762376,40.7734900990099,483.929989527105
 46141,2874.29284217822,457.503726237624,225,81.1502376237624,83.5847447524752,21.324099009901,1.38782178217822,1762.61881188119,2502.66336633663,2255.71683168317,20,40,11,32,5306643.11545493,397248.407149995,0,0,0,0,0,0,0,81.1502376237623,17755.1103899886,21.324099009901,22.8714246812014,22.7985836962984,1.38782178217822,1.40246199110807,1.11433403472353,1.40500763861653,1.11468295031801,1.11254463969417,51.2725028748621,0.0173524896753562,4758.3801980198,4753.29104989707,4753.03607816489,1.10906924463066,10823.2861026787,6741.49179016227,0,10823.2861026787,81.1362288010978,81.1362288010978,0.269517422039232,81.1353957000688,24.89,1015.09,40.69,520.202224184128
 46142,2874.28529455445,457.489415247525,225,82.0889306930693,84.5515986138614,22.0395445544555,0.821584158415841,1783.31188118812,2425.22772277228,2169.31485148515,20,40,11,32,5306629.45212315,397230.333680011,0,0,0,0,0,0,0,82.0889306930692,17777.7836725518,22.0395445544555,23.638784600051,23.4613791808296,0.821584158415841,0.836224367345699,0.669280677597259,1.56832094240876,1.24424990091235,1.22179285151697,51.874439861111,-0.0127443596370873,4594.54257425743,4553.36177825703,4546.66297574712,1.09638742034487,10452.8125955918,6461.08447105729,0,10452.8125955918,82.0850927360062,82.0850927360062,0.258547636941921,82.0843707875374,24.88,1015.08,40.58,550.913870906623
-46143,2874.27765178218,457.474961287128,225,82.8952079207921,85.3820641584159,21.995297029703,1.3360396039604,1805.69801980198,1970.10792079208,1790.50396039604,20,40,11,32,5306615.61577158,397212.078912966,0,0,0,0,0,0,0,82.895207920792,17800.7062026674,21.995297029703,23.5913263731296,23.4697104339705,1.3360396039604,1.35067981289025,1.08055443287316,1.55300205439191,1.23209644151406,1.22585129548286,52.5256262371439,0.00540015238859632,3760.61188118812,3774.33711400843,3776.19098919066,1.08571622217247,8574.9343261419,4519.42171575962,0,8574.9343261419,82.8891921380256,82.8891921380256,0.180732553453356,82.8873458079752,24.87,1015.07,40.47,551.411466369173
-46144,2874.26993405941,457.460401881188,225,83.4385346534653,85.9416906930693,20.6422656767327,-1.37792079207921,1811.17821782178,1562.41188118812,1483.52277227723,20,40,11,32,5306601.64298278,397193.690250278,0,0,0,0,0,0,0,83.4385346534653,17823.8150814078,20.6422656767327,22.1401159531069,22.3494380040544,-1.37792079207921,-1.36328058314935,-1.05915239006137,2.42503550950929,1.92393668338163,1.97551193733057,52.6850387356552,0.00028800812739181,3045.93465346535,3071.31399862758,3074.5487873558,1.07864143079731,6923.45764441151,3159.54054804898,0,6923.45764441151,83.4317820801881,83.4317820801881,0.126379222080631,83.4308322281768,24.86,1015.06,40.36,502.380457050767
+46143,2874.27765178218,457.474961287128,225,82.8952079207921,85.3820641584159,21.995297029703,1.3360396039604,1805.69801980198,1970.10792079208,1790.50396039604,20,40,11,32,5306615.61577158,397212.078912966,0,0,0,0,0,0,0,82.895207920792,17800.7062026674,21.995297029703,23.5913263731296,23.4697104339705,1.3360396039604,1.35067981289025,1.08055443287316,1.55300205439191,1.23209644151406,1.22585129548285,52.5256262371439,0.00540015238859632,3760.61188118812,3774.33711400843,3776.19098919066,1.08571622217247,8574.9343261419,4519.42171575962,0,8574.9343261419,82.8891921380256,82.8891921380256,0.180732553453356,82.8873458079752,24.87,1015.07,40.47,551.411466369173
+46144,2874.26993405941,457.460401881188,225,83.4385346534653,85.9416906930693,20.6422656767327,-1.37792079207921,1811.17821782178,1562.41188118812,1483.52277227723,20,40,11,32,5306601.64298278,397193.690250278,0,0,0,0,0,0,0,83.4385346534653,17823.8150814078,20.6422656767327,22.1401159531069,22.3494380040544,-1.37792079207921,-1.36328058314935,-1.05915239006137,2.42503550950929,1.92393668338164,1.97551193733057,52.6850387356552,0.00028800812739181,3045.93465346535,3071.31399862758,3074.5487873558,1.07864143079731,6923.45764441151,3159.54054804898,0,6923.45764441151,83.4317820801881,83.4317820801881,0.126379222080631,83.4308322281768,24.86,1015.06,40.36,502.380457050767
 46145,2874.26217316832,457.445763564356,225,83.8148514851486,86.329297029703,18.7876221125743,-0.418019801980198,1814.36138613861,1366.49603960396,1366.57227722772,20,40,11,32,5306587.5920406,397175.201788312,0,0,0,0,0,0,0,83.8148514851484,17847.0481195816,18.7876221125743,20.1508951861038,20.7930823185148,-0.418019801980198,-0.403379593050341,-0.308689507273427,3.35812693166549,2.66421813864096,2.59628489785607,52.7776333486117,0.0038161076879414,2733.06831683168,2733.30690128419,2733.79651907573,1.07379711380468,6196.00859631611,2418.33237957791,0,6196.00859631611,83.8226397412017,83.8226397412017,0.0967021207071061,83.8225867985666,24.85,1015.05,40.25,432.797484376385
 46146,2874.25438415841,457.43106039604,225,84.1628613861387,86.6877472277227,19.4879081406931,-0.625841584158416,1823.9603960396,1280.15940594059,1232.77425742574,20,40,11,32,5306573.49051072,397156.631533787,0,0,0,0,0,0,0,84.1628613861385,17870.3801462868,19.4879081406931,20.9019955791371,21.4087676912016,-0.625841584158416,-0.611201375228558,-0.473240336682854,2.89407734688466,2.2960577485902,2.3020400544747,53.0568572281181,-0.00280807924207008,2512.93366336634,2511.48457014018,2511.69413343203,1.06935669589599,5702.89763193936,1918.10116759231,0,5702.89763193936,84.1447460052935,84.1447460052935,0.0767476500125265,84.1441917275838,24.84,1015.04,40.14,459.370247395067
-46147,2874.24655504951,457.416317524753,225,84.4215247524753,86.9541704950496,19.1576358634654,-0.951980198019802,1835.90099009901,1172.10297029703,1139.00396039604,20,40,11,32,5306559.315644,397138.010413063,0,0,0,0,0,0,0,84.4215247524752,17893.7939069303,19.1576358634654,20.547757985821,21.1429314864307,-0.951980198019802,-0.937339989089944,-0.715401503012828,3.15634645653055,2.50413270625038,2.50536060277819,53.4041950297525,0.00244806908283034,2311.10693069307,2307.07798255073,2306.83385151599,1.06608089405899,5262.90789527514,1615.57993074226,0,5262.90789527514,84.4078980492108,84.4078980492108,0.0646028711782068,84.4072243554662,24.83,1015.03,40.03,447.750553766337
+46147,2874.24655504951,457.416317524753,225,84.4215247524753,86.9541704950496,19.1576358634654,-0.951980198019802,1835.90099009901,1172.10297029703,1139.00396039604,20,40,11,32,5306559.315644,397138.010413063,0,0,0,0,0,0,0,84.4215247524752,17893.7939069303,19.1576358634654,20.547757985821,21.1429314864307,-0.951980198019802,-0.937339989089944,-0.715401503012827,3.15634645653055,2.50413270625038,2.50536060277819,53.4041950297525,0.00244806908283034,2311.10693069307,2307.07798255073,2306.83385151599,1.06608089405899,5262.90789527514,1615.57993074226,0,5262.90789527514,84.4078980492108,84.4078980492108,0.0646028711782068,84.4072243554662,24.83,1015.03,40.03,447.750553766337
 46148,2874.23870475247,457.401536237624,225,84.5992673267327,87.1372453465346,19.1077513751485,-0.605742574257426,1831.83663366337,1033.23366336634,1067.04653465347,20,40,11,32,5306545.10244184,397119.340652866,0,0,0,0,0,0,0,84.5992673267326,17917.2679870733,19.1077513751485,20.4942537642935,21.1103914946893,-0.605742574257426,-0.591102365327569,-0.454450192912596,3.26751687026226,2.59233134756777,2.62677314372958,53.2859676934582,0.00525614832490041,2100.2801980198,2102.04519164788,2102.45620008196,1.06384168653647,4762.63348837814,1178.79198538465,0,4762.63348837814,84.5977114988725,84.5977114988725,0.0471086712631653,84.5980429377783,24.82,1015.02,39.92,446.210466914654
-46149,2874.23084544555,457.386717623762,225,84.7290198019802,87.2708903960395,19.1653261822772,-0.121881188118812,1835.12871287129,960.157425742574,979.191089108911,20,40,11,32,5306530.87343879,397100.624011318,0,0,0,0,0,0,0,84.7290198019801,17940.7874880909,19.1653261822772,20.5560063318542,21.1669814696847,-0.121881188118812,-0.107240979188955,-0.0762707710140561,3.26079634505369,2.58699952255752,2.67664911929596,53.381730395816,0.00468013207011681,1939.34851485148,1939.41867463974,1939.40614804338,1.06221152078594,4398.80779203149,943.7448675076,0,4398.80779203149,84.7368331536123,84.7368331536123,0.0377114444117618,84.7370467703912,24.81,1015.01,39.81,448.69464604176
-46150,2874.22298455446,457.371867227723,225,84.832495049505,87.3774699009901,18.8734526953465,-0.494950495049505,1843.71782178218,883.670297029703,908.460396039604,20,40,11,32,5306516.64226715,397081.867639195,0,0,0,0,0,0,0,84.8324950495048,17964.3427240645,18.8734526953465,20.2429538333793,20.9256381734583,-0.494950495049505,-0.480310286119648,-0.371245235775094,3.48716082537002,2.76658902786061,2.68379174517437,53.6315774463284,-0.0032400914331578,1792.13069306931,1795.02415449466,1795.41316360208,1.06091459077917,4078.19932523085,501.130915552636,0,4078.19932523085,84.8376199392215,84.8376199392215,0.0200715616116176,84.8379931164543,24.8012623762376,1015.00126237624,39.7164108910891,438.160936812631
+46149,2874.23084544555,457.386717623762,225,84.7290198019802,87.2708903960395,19.1653261822772,-0.121881188118812,1835.12871287129,960.157425742574,979.191089108911,20,40,11,32,5306530.87343879,397100.624011318,0,0,0,0,0,0,0,84.7290198019801,17940.7874880909,19.1653261822772,20.5560063318542,21.1669814696847,-0.121881188118812,-0.107240979188955,-0.0762707710140562,3.26079634505369,2.58699952255752,2.67664911929596,53.381730395816,0.00468013207011681,1939.34851485148,1939.41867463974,1939.40614804338,1.06221152078594,4398.80779203149,943.7448675076,0,4398.80779203149,84.7368331536123,84.7368331536123,0.0377114444117618,84.7370467703912,24.81,1015.01,39.81,448.69464604176
+46150,2874.22298455446,457.371867227723,225,84.832495049505,87.3774699009901,18.8734526953465,-0.494950495049505,1843.71782178218,883.670297029703,908.460396039604,20,40,11,32,5306516.64226715,397081.867639195,0,0,0,0,0,0,0,84.8324950495048,17964.3427240645,18.8734526953465,20.2429538333793,20.9256381734583,-0.494950495049505,-0.480310286119648,-0.371245235775094,3.48716082537002,2.76658902786061,2.68379174517437,53.6315774463284,-0.0032400914331578,1792.13069306931,1795.02415449466,1795.41316360208,1.06091459077917,4078.19932523085,501.130915552636,0,4078.19932523085,84.8376199392215,84.8376199392215,0.0200715616116176,84.8379931164543,24.8012623762376,1015.00126237624,39.7164108910891,438.16093681263
 46151,2874.21512346535,457.356994455446,225,84.9036336633664,87.4507426732673,18.9087827287129,-2.10792079207921,1839.30693069307,824.760396039604,888.490099009901,20,40,11,32,5306502.4112859,397063.083297435,0,0,0,0,0,0,0,84.9036336633662,17987.9195181514,18.9087827287129,20.2808474952286,20.9584110169031,-2.10792079207921,-2.09328058314935,-1.6105533757931,3.54751921380676,2.81447522054021,2.82770001135495,53.5032698255753,-0.00734420724849098,1713.25049504951,1714.19636310166,1714.26663837812,1.06002540771847,3886.32213800607,441.539134998228,0,3886.32213800607,84.913514361337,84.913514361337,0.0177215741376261,84.9135350306458,24.8,1015,39.72,439.757508939563
 46152,2874.20727920792,457.342086237624,225,84.9496732673268,87.4981634653466,18.8632051708911,-1.85029702970297,1839.15346534653,778.433663366336,881.318811881188,20,40,11,32,5306488.21233069,397044.255270386,0,0,0,0,0,0,0,84.9496732673266,18011.512664191,18.8632051708911,20.2319627249793,20.9222423855521,-1.85029702970297,-1.83565682077311,-1.41360622701957,3.58446426832577,2.84378610913542,2.73647385511423,53.4988056996008,0.00187205282804673,1659.75247524753,1661.9750612685,1662.27649222065,1.05945130317832,3762.93038623994,135.614041369793,0,3762.93038623994,84.9507753161454,84.9507753161454,0.00540932806151138,84.9510117868929,24.8,1015,39.74,437.947737356457
 46153,2874.19945069307,457.327147920792,225,84.9964851485148,87.5463797029703,19.4249097905941,-0.93009900990099,1839.16831683168,792.611881188118,865.19900990099,20,40,11,32,5306474.04326567,397025.390181336,0,0,0,0,0,0,0,84.9964851485148,18035.1166730744,19.4249097905941,20.8344259238537,21.4028211212763,-0.93009900990099,-0.915458800971131,-0.707052307539034,3.1459554828857,2.49588887835879,2.59281667803834,53.4992377117918,0.000936026414023361,1657.81089108911,1656.31441035193,1656.12861857614,1.05886751260721,3756.32108190601,242.334613981458,0,3756.32108190601,84.9913885893539,84.9913885893539,0.00968586957706194,84.9911100424327,24.8,1015,39.76,459.228827427674
-46154,2874.19162950495,457.312196435644,225,85.0230297029703,87.5737205940594,18.7145583054456,-0.651881188118812,1840.08910891089,786.551485148515,850.357425742575,20,40,11,32,5306459.88812573,397006.508839976,0,0,0,0,0,0,0,85.0230297029701,18058.7293590204,18.7145583054456,20.0725297010773,20.8004247345193,-0.651881188118812,-0.637240979188955,-0.48897723146636,3.72505059399417,2.95532228585311,2.97969915161589,53.5260224676393,0.00129603657326312,1636.90891089109,1632.76465052446,1632.57575671853,1.05853695162631,3709.87458977308,15.5105714288626,0,3709.87458977308,85.0109378492303,85.0109378492303,0.000609961986302527,85.0106095238094,24.8,1015,39.78,432.704252525008
+46154,2874.19162950495,457.312196435644,225,85.0230297029703,87.5737205940594,18.7145583054456,-0.651881188118812,1840.08910891089,786.551485148515,850.357425742575,20,40,11,32,5306459.88812573,397006.508839976,0,0,0,0,0,0,0,85.0230297029701,18058.7293590204,18.7145583054456,20.0725297010773,20.8004247345193,-0.651881188118812,-0.637240979188955,-0.488977231466359,3.72505059399417,2.95532228585311,2.97969915161589,53.5260224676393,0.00129603657326312,1636.90891089109,1632.76465052446,1632.57575671853,1.05853695162631,3709.87458977308,15.5105714288626,0,3709.87458977308,85.0109378492303,85.0109378492303,0.000609961986302527,85.0106095238094,24.8,1015,39.78,432.704252525008
 46155,2874.18380643564,457.297243069307,225,85.0311287128714,87.5820625742574,18.9792733774257,-0.668613861386138,1839.60396039604,772.229702970297,839.2,20,40,11,32,5306445.72960375,396987.625000464,0,0,0,0,0,0,0,85.0311287128712,18082.344239246,18.9792733774257,20.3564531075463,21.0256160299191,-0.668613861386138,-0.65397365245628,-0.498683505579838,3.50884102268738,2.78378932317928,2.76393637262638,53.5119100693971,-0.00208805892359058,1611.4297029703,1612.79165768062,1612.98081093824,1.05843701563222,3650.68107475634,64.7597225962867,0,3650.68107475634,85.0202540927359,85.0202540927359,0.00260731518694844,85.0197185289957,24.8,1015,39.8,442.470418080934
 46156,2874.17599316832,457.282279207921,225,85.0116435643564,87.5619928712871,19.2400291527723,-1.43990099009901,1841.17821782178,772.574257425743,853.288118811881,20,40,11,32,5306431.58953262,396968.728320192,0,0,0,0,0,0,0,85.0116435643563,18105.9592811326,19.2400291527723,20.6361299217112,21.2464293613089,-1.43990099009901,-1.42526078116915,-1.10265114296777,3.22921452486997,2.56194363280202,2.63427495775269,53.5577033616524,0.00309608736946188,1625.86237623762,1624.78358984413,1624.73976426214,1.05868003203337,3687.23784988244,118.437552654332,0,3687.23784988244,85.0171360650916,85.0171360650916,0.00471222864861933,85.0172692126354,24.8,1015,39.82,451.864023797792
 46157,2874.16818851485,457.267305445545,225,85.0041386138614,87.5542627722773,19.3832755777228,-1.26742574257426,1840.95544554455,756.782178217822,854.19702970297,20,40,11,32,5306417.46569845,396949.819499858,0,0,0,0,0,0,0,85.0041386138613,18129.5755394385,19.3832755777228,20.7897706367344,21.3681209113227,-1.26742574257426,-1.2527855336444,-0.962037645719281,3.08198840811618,2.44513968264801,2.4233322336667,53.5512231787861,0.00338409549685369,1610.97920792079,1615.31528281541,1615.40363979255,1.05877235012024,3653.65171270855,-20.4816661673332,0,3653.65171270855,85.0178180570531,85.0178180570531,-0.000846866864904099,85.018223668081,24.8,1015,39.84,457.018261244032
@@ -1114,7 +1114,7 @@ Time,Lat,Long,Heading,v_veh_GPS,v_veh_CAN,vair_ar,beta_ar,n_eng,tq_l,tq_r,t_amb_
 46162,2874.12878653465,457.192744257426,225,85.0875643564356,87.6401912871287,23.7292178217822,-1.82366336633663,1841.10396039604,706.154455445545,760.225742574257,20,40,11,32,5306346.13908463,396855.644633492,0,0,0,0,0,0,0,85.0875643564355,18247.7599233219,23.7292178217822,25.4510644460393,25.0704363666819,-1.82366336633663,-1.80902315740678,-1.45400563917026,2.40300520686229,1.90645862698108,1.89256470433504,53.555543300697,-7.20020318479622E-05,1466.3801980198,1464.68626605235,1464.64400754361,1.05773400888492,3322.61043355721,-67.6482456239895,0,3322.61043355721,85.0896118027643,85.0896118027643,-0.00270534479191344,85.0896543140026,24.8,1015,39.92,629.324405449653
 46163,2874.12088118812,457.17786059406,225,85.0954158415842,87.6482783168317,21.8809092408911,-1.55069306930693,1840.21782178218,685.595049504951,789.749504950495,20,40,11,32,5306331.82708989,396836.844145425,0,0,0,0,0,0,0,85.095415841584,18271.3947882834,21.8809092408911,23.4686383432604,23.4978241832909,-1.55069306930693,-1.53605286037708,-1.22002785973327,2.82173809689973,2.23866636766049,2.31761080291643,53.5297665732954,-0.00763221537588279,1475.34455445545,1465.41442903387,1464.81240260641,1.05763646712589,3341.1716278619,159.125483057917,0,3341.1716278619,85.095199980394,85.095199980394,0.00642774673506905,85.0952644978782,24.8,1015,39.93,556.483505402568
 46164,2874.11298108911,457.162965346535,225,85.1027524752475,87.6558350495049,19.3779752473267,-1.77534653465347,1841.42079207921,692.79647699901,679.820355931683,20,40,11,32,5306317.52513363,396818.029308823,1.18811881188119,1.18811881188119,3152266.30099902,235731.024098786,4.14125200388451,0,0,85.1027524752474,18295.035434378,19.3779752473267,20.7840857021736,21.3687330006193,-1.77534653465347,-1.76070632572361,-1.35775008313731,3.16742264755772,2.51292016117455,2.39440777265175,53.5647595607735,0.0079202235032746,1372.61683293069,1378.60417359917,1378.98863284452,1.0575452562286,3110.3811945627,-123.615503516132,0,3110.3811945627,85.1008832467404,85.1008832467404,-0.00500904050800658,85.1008521452144,24.8,1015,39.94,457.370879165053
-46165,2874.10509980198,457.148056831683,225,85.0743861386139,87.6266177227723,19.6362662268317,-0.562673267326733,1840.63366336634,687.40287819703,660.395078221782,20,40,11,32,5306303.25837934,396799.198476556,2,2,5306303.08499483,396799.339738404,25.7399139918141,0,0,85.0743861386138,18318.6714223043,19.6362662268317,21.0611188692415,21.5878083232916,-0.562673267326733,-0.548033058396875,-0.427712544282966,2.8559291305377,2.26579231431195,2.14080623717099,53.5418629146458,-0.00504014222935657,1347.79795641881,1347.89035741267,1347.89771909047,1.05789798963085,3053.64884513016,-229.726636593046,0,3053.64884513016,85.0744504460346,85.0744504460346,-0.00914806827217744,85.074455162659,24.8,1015,39.95,466.76003894956
+46165,2874.10509980198,457.148056831683,225,85.0743861386139,87.6266177227723,19.6362662268317,-0.562673267326733,1840.63366336634,687.40287819703,660.395078221782,20,40,11,32,5306303.25837934,396799.198476556,2,2,5306303.08499483,396799.339738404,25.7399139918141,0,0,85.0743861386138,18318.6714223043,19.6362662268317,21.0611188692415,21.5878083232916,-0.562673267326733,-0.548033058396875,-0.427712544282967,2.8559291305377,2.26579231431195,2.14080623717099,53.5418629146458,-0.00504014222935657,1347.79795641881,1347.89035741267,1347.89771909047,1.05789798963085,3053.64884513016,-229.726636593046,0,3053.64884513016,85.0744504460346,85.0744504460346,-0.00914806827217744,85.074455162659,24.8,1015,39.95,466.76003894956
 46166,2874.09724940594,457.133119306931,225,85.0492079207921,87.6006841584159,22.0736435642574,-0.582574257425743,1840.79207920792,669.411685780198,656.672264953466,20,40,11,32,5306289.04955284,396780.332440397,2,2,5306288.17780369,396781.042682028,49.3409016790829,0,0,85.049207920792,18342.2985387234,22.0736435642574,23.6753579124347,23.6598348333023,-0.582574257425743,-0.567934048495885,-0.442666432182221,1.81413121070552,1.43926700085731,1.56566453871694,53.5464710446841,-0.00338409549685369,1326.08395073366,1327.08750338501,1327.16745741032,1.05821121675456,3005.61304148262,-217.203022571571,0,3005.61304148262,85.0479290265659,85.0479290265659,-0.00866064329206162,85.0476694012257,24.8,1015,39.96,561.256625344218
 46167,2874.08943039604,457.118155445545,225,85.0426336633664,87.5939126732673,22.0282178217822,-2.07217821782178,1840.55940594059,656.558363684159,669.799886757426,20,40,11,32,5306274.89951188,396761.434546815,2,2,5306273.27846563,396762.755264517,72.9294563971638,0,0,85.0426336633662,18365.9199464792,22.0282178217822,23.6266359736025,23.6204628515582,-2.07217821782178,-2.05753800889193,-1.63100888795497,1.47798866555374,1.17258349419243,1.22676310996736,53.5397028536904,0.00784822147142664,1326.35825044158,1327.35029307651,1327.42933008732,1.05829288399155,3006.0896371971,-68.2131237627141,0,3006.0896371971,85.0298606019016,85.0298606019016,-0.00279248221851664,85.0295737859499,24.8,1015,39.97,558.314252161916
 46168,2874.08162009901,457.103186138614,225,85.0109801980198,87.5613096039604,23.2043465346535,-2.11792079207921,1838.89603960396,660.660196968317,687.70846870396,20,40,11,32,5306260.76579238,396742.530066259,2,2,5306258.38241367,396744.471880355,96.5128085838965,0,0,85.0109801980197,18389.537364686,23.2043465346535,24.8881072910704,24.6194065723264,-2.11792079207921,-2.10328058314935,-1.69187617324742,2.24479549546419,1.78094068457057,1.66797850047966,53.4913174882886,-0.00561615848414017,1348.36866567228,1348.43711886054,1348.44257259345,1.05868733898216,3054.3456815,-78.8144691366102,0,3054.3456815,85.0119799039309,85.0119799039309,-0.00310699386770247,85.0119289014615,24.8,1015,39.98,607.423166235519
@@ -1126,14 +1126,14 @@ Time,Lat,Long,Heading,v_veh_GPS,v_veh_CAN,vair_ar,beta_ar,n_eng,tq_l,tq_r,t_amb_
 46174,2874.03486217822,457.01322970297,225,85.0131980198019,87.563593960396,25.0699207920792,-2.63584158415842,1839.07920792079,657.680404094059,683.195530825743,20,40,11,32,5306176.16027853,396628.929555446,2,2,5306168.9995961,396634.763590144,238.023221694012,0,0,85.0131980198018,18531.2520283273,25.0699207920792,26.8890519075857,26.2068465513792,-2.63584158415842,-2.62120137522856,-2.12876905525256,3.57425467774996,2.83568618410172,2.80585369014997,53.4966456386454,-0.00244806908283033,1340.8759349198,1341.25879413059,1341.28929689982,1.05865928730957,3037.61101071837,-191.654487141662,0,3037.61101071837,85.0192964415252,85.0192964415252,-0.00764630918536446,85.0194843941536,24.8,1015,40.36,687.122599805946
 46175,2874.02705217822,456.998262475247,225,85.0071485148515,87.557362970297,24.9256138613861,-2.7450495049505,1839.85148514851,672.53848379505,694.002001624753,20,40,11,32,5306162.02748962,396610.027025207,1.05940594059406,2,5306154.10496831,396616.481172181,25.3035947355593,0,0,85.0071485148514,18554.8656035749,24.9256138613861,26.734273734084,26.0834199105196,-2.7450495049505,-2.73040929602064,-2.22219974866073,3.86811271510572,3.06882267037514,3.01166496704125,53.5191102725819,-0.0038161076879414,1366.5404854198,1365.84642228764,1365.79112559647,1.05873483666946,3097.27226035171,9.19871814922001,0,3097.27226035171,85.0090098029604,85.0090098029604,0.000398926031210801,85.0091260726071,24.8,1015,40.45,682.717930162745
 46176,2874.01922574257,456.983314851485,225,85.0072574257426,87.5574751485148,21.1873058306931,-2.25257425742574,1839.53465346535,689.659670136634,687.338119764356,20,40,11,32,5306147.86387948,396591.148275561,1,2,5306139.21040042,396598.197865062,33.9616552689224,0,0,85.0072574257425,18578.4798684539,21.1873058306931,22.7247054742748,22.9032238175549,-2.25257425742574,-2.23793404849589,-1.75106403978625,2.6846970995063,2.12994292795062,2.29395014522642,53.5098940125054,0.00266407517837418,1376.99778990099,1375.86492287411,1375.7746662455,1.0587339856817,3120.43274712331,-57.0141482990356,0,3120.43274712331,85.005648857955,85.005648857955,-0.00230233419380109,85.0057628477133,24.8,1015,40.54,528.049149419012
-46177,2874.01136752475,456.968405544554,225,85.0170693069307,87.5675813861386,24.5858910891089,-2.6180198019802,1838.78217821782,693.302823367327,669.330627494059,20,40,11,32,5306133.64060302,396572.31610597,1,2,5306124.31485841,396579.913359151,57.5455550396999,0,0,85.0170693069306,18602.0937477718,24.5858910891089,26.3698998960606,25.7951724754456,-2.6180198019802,-2.60337959305034,-2.10399321995857,3.12075151755112,2.47589295117186,2.42638659385744,53.4880053948236,-2.4045671944233E-19,1362.63345086139,1362.10333265451,1362.06109761641,1.05861145901615,3086.25979315744,75.4290385541594,0,3086.25979315744,85.0092898735417,85.0092898735417,0.00301713339651518,85.0093338048089,24.8,1015,40.63,665.871921886145
+46177,2874.01136752475,456.968405544554,225,85.0170693069307,87.5675813861386,24.5858910891089,-2.6180198019802,1838.78217821782,693.302823367327,669.330627494059,20,40,11,32,5306133.64060302,396572.31610597,1,2,5306124.31485841,396579.913359151,57.5455550396999,0,0,85.0170693069306,18602.0937477718,24.5858910891089,26.3698998960606,25.7951724754456,-2.6180198019802,-2.60337959305034,-2.10399321995857,3.12075151755112,2.47589295117186,2.42638659385744,53.4880053948236,-2.4045671944233E-19,1362.63345086139,1362.10333265451,1362.06109761641,1.05861145901615,3086.25979315744,75.4290385541594,0,3086.25979315744,85.0092898735417,85.0092898735417,0.00301713339651518,85.0093338048089,24.8,1015,40.63,665.871921886144
 46178,2874.00350128713,456.953502277228,225,85.0216930693069,87.5723438613861,24.9009504950495,-2.82574257425743,1838.92079207921,680.11844519802,656.535530160396,20,40,11,32,5306119.40239667,396553.491100123,1,2,5306109.41686853,396561.625848456,81.1333304704591,0,0,85.0216930693068,18625.7088168862,24.9009504950495,26.7078207371582,26.0632588030957,-2.82574257425743,-2.81110236532757,-2.27980109009902,3.41017635518422,2.70551229489717,2.65321983728479,53.4920375086071,0.00187205282804672,1336.65397535842,1337.21399420911,1337.25861146095,1.05855358954575,3027.4869362802,31.2864068844568,0,3027.4869362802,85.0247554161355,85.0247554161355,0.00123626224007642,85.0244533710513,24.8,1015,40.72,679.391198448836
 46179,2873.99563920792,456.938590990099,225,84.9976633663366,87.5475932673267,23.5057227722772,-3.27782178217822,1839.63861386139,662.228192125742,660.716581243564,20,40,11,32,5306105.17213262,396534.656149695,1,2,5306094.51717735,396543.336249382,104.723799553651,0,0,84.9976633663365,18649.3247404561,23.5057227722772,25.2113520816857,24.8744349233878,-3.27782178217822,-3.26318157324836,-2.61972097972432,2.30124898750164,1.82572887171667,1.9084702141047,53.512918097843,-0.00108003047771927,1322.94477336931,1324.08005052917,1324.17049917526,1.05885296017006,2998.44383343078,48.1501301557522,0,2998.44383343078,85.0086320948925,85.0086320948925,0.00193472317529178,85.0091772748702,24.8,1015,40.81,619.457683190052
 46180,2873.98778861386,456.923667029703,225,85.0259108910891,87.5766882178218,23.5967227722772,-2.35267326732673,1839.76237623762,656.08028030693,678.029741665346,20,40,11,32,5306090.96348657,396515.805701576,1,2,5306079.61852109,396525.047920692,128.31263005862,0,0,85.025910891089,18672.9403114407,23.5967227722772,25.308955250993,24.9539304902486,-2.35267326732673,-2.33803305839688,-1.87694805081927,2.23811301405831,1.77563904215652,1.76996464621973,53.5165181994353,-0.000648018286631559,1334.11002197228,1334.77678885342,1334.8299108256,1.05850177251637,3022.95025179448,-141.425005272562,0,3022.95025179448,85.0236278796195,85.0236278796195,-0.00565167902929092,85.0232826025459,24.8,1015,40.8873762376238,623.076561618887
 46181,2873.97995386139,456.908722871287,225,85.0273861386139,87.5782077227723,23.975504950495,-2.84019801980198,1839.85148514851,667.327071518812,692.557371563366,20,40,11,32,5306076.7846964,396496.930527543,1,2,5306064.71966715,396506.75934934,151.901773555853,0,0,85.0273861386138,18696.5559107531,23.975504950495,25.7152227352918,25.276273152621,-2.84019801980198,-2.82555781087213,-2.27487182700535,2.59225825852355,2.05660524838321,1.98071256856746,53.5191102725819,0.0106563007134967,1359.88444308218,1359.46967729406,1359.43663249637,1.05848263703591,3081.4682733854,-48.5951757051592,0,3081.4682733854,85.0109443191843,85.0109443191843,-0.00203139125793932,85.0106160301743,24.8,1015,40.89,639.512755618061
 46182,2873.97213168317,456.893764455445,225,85.0279900990099,87.5788298019802,22.5073663366337,-2.07792079207921,1840.88118811881,685.62831779604,690.942835020792,20,40,11,32,5306062.62957738,396478.037918906,1,2,5306049.8217187,396488.471889505,175.489483384408,0,0,85.0279900990098,18720.1713129808,22.5073663366337,24.1405526067718,24.0276118411519,-2.07792079207921,-2.06328058314935,-1.63868049834232,1.69304545439703,1.34320188037416,1.5246926300556,53.5490631178306,-0.00237606705098238,1376.57115281683,1375.45618810975,1375.36735777652,1.05847571023472,3120.98211213036,251.156156124374,0,3120.98211213036,85.0197902166453,85.0197902166453,0.0100657342962056,85.0196549740688,24.8,1015,40.88,578.039617090542
 46183,2873.96430683168,456.878808415842,225,85.0028118811882,87.5528962376237,21.9883784378218,-2.49435643564356,1838.43069306931,694.15793769703,674.670529481188,20,40,11,32,5306048.46951424,396459.148088474,1,2,5306034.92315839,396470.18367859,199.078161979601,0,0,85.002811881188,18743.788569499,21.9883784378218,23.5839057523082,23.5844032087168,-2.49435643564356,-2.47971622671371,-1.97298346188388,2.44508005112628,1.93983930780395,1.80321778900311,53.4777811063012,-0.00720020318479509,1368.82846717822,1368.03839696323,1367.9754512933,1.0587895955368,3100.23172855693,45.9106972346604,0,3100.23172855693,85.0295728850112,85.0295728850112,0.00189523902885753,85.0298193305043,24.8,1015,40.87,559.496857197508
-46184,2873.95648594059,456.863843069307,225,85.0321287128713,87.5830925742574,22.5497722772277,-2.81940594059406,1839.39108910891,685.073838031683,658.701137612871,20,40,11,32,5306034.31705595,396440.246703729,1,2,5306020.02197391,396451.892246473,222.670995376744,0,0,85.0321287128712,18767.4080619357,22.5497722772277,24.1860356199524,24.0630117004294,-2.81940594059406,-2.80476573166421,-2.23373548280357,1.73190668654863,1.37403299596182,1.42773750230963,53.5057178946582,0.00986427836316927,1343.77497564455,1344.03618683459,1344.05699778668,1.05842378351108,3043.99865179338,-124.642109422755,0,3043.99865179338,85.0286539554944,85.0286539554944,-0.00506622444422769,85.02883611504,24.8,1015,40.86,579.555192435335
+46184,2873.95648594059,456.863843069307,225,85.0321287128713,87.5830925742574,22.5497722772277,-2.81940594059406,1839.39108910891,685.073838031683,658.701137612871,20,40,11,32,5306034.31705595,396440.246703729,1,2,5306020.02197391,396451.892246473,222.670995376744,0,0,85.0321287128712,18767.4080619357,22.5497722772277,24.1860356199524,24.0630117004294,-2.81940594059406,-2.80476573166421,-2.23373548280357,1.73190668654863,1.37403299596182,1.42773750230962,53.5057178946582,0.00986427836316927,1343.77497564455,1344.03618683459,1344.05699778668,1.05842378351108,3043.99865179338,-124.642109422755,0,3043.99865179338,85.0286539554944,85.0286539554944,-0.00506622444422769,85.02883611504,24.8,1015,40.86,579.555192435335
 46185,2873.94866326732,456.848882871287,225,85.0266138613861,87.5774122772277,23.9533069306931,-2.28920792079208,1839.82673267327,665.510255080198,677.290204539604,20,40,11,32,5306020.16124221,396421.351580039,0.683168316831683,1.36633663366337,3624896.21706545,270832.876157226,165.659530118501,0,0,85.0266138613861,18791.0270998895,23.9533069306931,25.6914139761157,25.2576351023439,-2.28920792079208,-2.27456771186223,-1.83642648095898,2.60266034525619,2.06485789300229,2.01045664616206,53.5183902522634,-0.00547215442044427,1342.8004596198,1342.20231681883,1342.24121056517,1.05849240754174,3042.63905583338,120.671254119183,0,3042.63905583338,85.024124301539,85.024124301539,0.00487152675664837,85.0244695898161,24.8,1015,40.85,638.573895028484
 46186,2873.94085009901,456.83390980198,225,85.0353861386138,87.5864477227722,23.6601584158416,-3.41584158415842,1838.56930693069,645.344554455446,706.317821782178,20,40,11,32,5306006.02338357,396402.44064648,0,0,0,0,0,0,0,85.0353861386138,18814.6473677113,23.6601584158416,25.3769939307615,25.0077395172345,-3.41584158415842,-3.40120137522856,-2.73332543962614,2.39203694017838,1.89775679538169,1.91907123908684,53.4818132200847,-0.00741620928033894,1351.66237623762,1354.28597579342,1354.44782709219,1.05838343708677,3060.4863550219,-21.2517226232393,0,3060.4863550219,85.0417953141847,85.0417953141847,-0.000789682928694711,85.0416510136727,24.8,1015,40.84,625.967008165366
 46187,2873.93302673267,456.818943465346,225,85.0650693069307,87.6170213861386,22.6604059405941,-2.66504950495049,1840.65346534653,722.691089108911,656.687128712872,20,40,11,32,5305991.866545,396383.537667411,0,0,0,0,0,0,0,85.0650693069306,18838.2708624858,22.6604059405941,24.3046971163989,24.1594199718009,-2.66504950495049,-2.65040929602064,-2.11121605659676,1.92044287791611,1.52361088597398,1.56304966206964,53.5424389309006,0.0165604673250287,1379.37821782178,1380.47596314087,1380.37197548326,1.05801372809607,3125.56022803216,152.328865814212,0,3125.56022803216,85.0534603470247,85.0534603470247,0.00595666002244414,85.053294483734,24.8,1015,40.83,584.816326406607
@@ -1146,7 +1146,7 @@ Time,Lat,Long,Heading,v_veh_GPS,v_veh_CAN,vair_ar,beta_ar,n_eng,tq_l,tq_r,t_amb_
 46194,2873.87780009901,456.714693663366,225,85.0371089108911,87.5882221782178,24.0058712871287,-3.1149504950495,1840.28217821782,659.665346534653,703.810891089109,20,40,11,32,5305891.90109226,396251.839756242,0,0,0,0,0,0,0,85.037108910891,19003.6382152636,24.0058712871287,25.7477925231566,25.3026123039687,-3.1149504950495,-3.10031028611965,-2.49627966849303,2.73765228877159,2.17195568644567,2.16834100535399,53.5316386261234,-0.00331209346500574,1363.47623762376,1363.56958141359,1363.68785478548,1.05836184533042,3090.22430416847,-25.7990311415541,0,3090.22430416847,85.0294119203998,85.0294119203998,-0.00100480345064304,85.0294658180103,24.8,1015.04,40.28,641.247420172878
 46195,2873.86991871287,456.699794653466,225,85.0008514851485,87.550877029703,25.0188712871287,-3.32079207920792,1839.9702970297,635.434653465347,727.3,20,40,11,32,5305877.63575793,396233.017967254,0,0,0,0,0,0,0,85.0008514851484,19027.2564209017,25.0188712871287,26.834298133138,26.1620038473196,-3.32079207920792,-3.30615187027807,-2.68320264047045,3.57879058817357,2.83928481365675,2.79425891534633,53.5225663701106,-0.00993628039501722,1362.73465346535,1363.37193412411,1363.60390381895,1.05881316259558,3089.19604905416,-124.896372487848,0,3089.19604905416,85.0134780903832,85.0134780903832,-0.00491509546994508,85.0136691183403,24.8,1015.05,40.15,684.907130375418
 46196,2873.86206673268,456.684867425743,225,84.9966732673267,87.5465734653466,24.5571386138614,-3.27574257425743,1839.5396039604,672.255445544554,746.509900990099,20,40,11,32,5305863.425586,396214.161914398,0,0,0,0,0,0,0,84.9966732673266,19050.8677336355,24.5571386138614,26.3390610750761,25.7690050746153,-3.27574257425743,-3.26110236532757,-2.63851304628073,3.10433965636229,2.46287236584025,2.51988867173018,53.5100380165691,0.00871224585360206,1418.76534653465,1414.84252524262,1414.37821782178,1.0588651168114,3215.56599109962,-59.32569621763,0,3215.56599109962,85.0014507401234,85.0014507401234,-0.00244393251204912,85.0016048090522,24.8,1015.06,40.02,664.192673847394
-46197,2873.85424009901,456.669916039604,225,84.9717623762376,87.5209152475247,24.1570297029703,-3.15722772277228,1840.39108910891,666.179207920792,743.337623762376,20,40,11,32,5305849.26296644,396195.276519393,0,0,0,0,0,0,0,84.9717623762375,19074.4773617433,24.1570297029703,25.9099193413281,25.4272197659319,-3.15722772277228,-3.14258751384242,-2.5360013034086,2.73346703127073,2.16863525241337,2.13323542184371,53.5348067155247,0.00597616864337992,1409.51683168317,1411.70021566513,1412.30115983027,1.05917596741171,3196.95396627355,-93.1969812823226,0,3196.95396627355,84.9809732379177,84.9809732379177,-0.0037768628348063,84.9815413484205,24.8,1015.07,39.89,646.770362067119
+46197,2873.85424009901,456.669916039604,225,84.9717623762376,87.5209152475247,24.1570297029703,-3.15722772277228,1840.39108910891,666.179207920792,743.337623762376,20,40,11,32,5305849.26296644,396195.276519393,0,0,0,0,0,0,0,84.9717623762375,19074.4773617433,24.1570297029703,25.9099193413281,25.4272197659319,-3.15722772277228,-3.14258751384242,-2.5360013034086,2.73346703127072,2.16863525241336,2.13323542184371,53.5348067155247,0.00597616864337992,1409.51683168317,1411.70021566513,1412.30115983027,1.05917596741171,3196.95396627355,-93.1969812823226,0,3196.95396627355,84.9809732379177,84.9809732379177,-0.0037768628348063,84.9815413484205,24.8,1015.07,39.89,646.770362067119
 46198,2873.84643693069,456.654944752475,225,84.9765445544554,87.5258408910891,23.3815742574258,-2.54128712871287,1839.73267326733,720.121782178218,779.315841584158,20,40,11,32,5305835.14431952,396176.367023172,0,0,0,0,0,0,0,84.9765445544553,19098.0822911162,23.3815742574258,25.078195065045,24.7681126951145,-2.54128712871287,-2.52664691978302,-2.02501565037468,2.10936934001737,1.67349840286716,1.69990347742438,53.5156541750532,-0.0118083332230639,1499.43762376238,1491.57539456916,1491.13116454503,1.05911726204948,3399.7505332485,0.108662180616004,0,3399.7505332485,84.9814645622977,84.9814645622977,0.000100752649515872,84.981743705799,24.8,1015.08,39.76,614.013159444829
 46199,2873.83863722772,456.639964752475,225,85.0229306930693,87.5736186138614,23.5683465346535,-3.1639603960396,1838.42574257426,721.774257425743,762.014851485148,20,40,11,32,5305821.03234781,396157.446696218,0,0,0,0,0,0,0,85.0229306930692,19121.6930244771,23.5683465346535,25.2785199682996,24.9292279146376,-3.1639603960396,-3.14932018710975,-2.53042693214383,2.24100266084576,1.77793158485727,1.76280616740964,53.4776371022375,0.00950426820392952,1483.78910891089,1446.53601607685,1441.73681282414,1.05853862123072,3359.74546354516,36.386796183194,0,3359.74546354516,85.0093413390842,85.0093413390842,0.00137786055834204,85.0086231023101,24.8,1015.09,39.63,621.847555797465
 46200,2873.83083851485,456.624986831683,225,84.8970891089109,87.4440017821782,22.4041485148515,-3.08069306930693,1829.68811881188,-109.349504950495,-80.3673267326732,20,40,11,32,5305806.92222446,396138.528899601,0,0,0,0,0,0,0,84.8970891089108,19145.2997902637,22.4041485148515,24.0298450624318,23.9316210262348,-3.08069306930693,-3.06605286037708,-2.44017351465965,1.74696377137686,1.38597875004758,1.39279175855228,53.2234699298142,-0.00741620928033894,-189.716831683169,-326.567316929713,-343.901037246582,1.06011035342959,-423.630565092671,-3379.19642279207,0,-423.630565092671,84.8445427899224,84.8445427899224,-0.135107941487223,84.8406812824138,24.8,1015.09873762376,39.5113613861386,573.514421929728
@@ -1166,10 +1166,10 @@ Time,Lat,Long,Heading,v_veh_GPS,v_veh_CAN,vair_ar,beta_ar,n_eng,tq_l,tq_r,t_amb_
 46214,2873.74542772277,456.463330891089,225,43.735801980198,45.047876039604,12.6843069306931,-1.88584158415842,1493.37623762376,-6960.08415841584,-5793.7297029703,20,40,11,32,5305652.33994527,395934.302773935,0,0,0,0,0,0,0,43.735801980198,19401.3906616608,12.6843069306931,13.6047094165098,13.3010405595858,-1.88584158415842,-1.87120137522856,-1.5116310544148,1.74239498782885,1.38235404012808,1.36986987930493,43.4405538626331,0.0145444104332861,-12753.8138613861,-12592.3212234095,-12088.7625011277,2.05941458848464,-45660.1918770406,-28094.3515006751,0,-45660.1918770406,43.7273759435349,43.7273759435349,-1.12392167434565,43.6969856573499,24.8,1015.1,39.0999999999999,177.820328074803
 46215,2873.74149465347,456.456098316832,225,39.7289603960396,40.9208292079208,11.579801980198,-2.64445544554455,1373.32178217822,-6340.13465346535,-5290.6603960396,20,40,11,32,5305645.2170278,395925.161597736,0,0,0,0,0,0,0,39.7289603960395,19412.9682735695,11.579801980198,12.4200590463566,12.1313472866785,-2.64445544554455,-2.6298152366147,-2.13159320165055,1.56537481106512,1.24191254537927,1.25685039065361,39.9483113139438,-0.0299528452487476,-11630.795049505,-11411.6304283894,-10522.5279688708,2.26711406625269,-42095.9054945332,-25535.9393313478,0,-42095.9054945332,39.7668563866287,39.7668563866287,-1.02104641157185,39.9454224831059,24.8,1015.1,39.0999999999999,147.432371858892
 46216,2873.73790584158,456.449484752475,225,36.7343069306931,37.8363361386138,10.9342772277228,-2.5060396039604,1292.9801980198,-2714.97128712871,-2278.21287128713,20,40,11,32,5305638.71789991,395916.803017224,0,0,0,0,0,0,0,36.734306930693,19423.5419918038,10.9342772277228,11.727693533083,11.4105609963967,-2.5060396039604,-2.49139939503054,-2.02693782947439,1.64177460186279,1.30252541456899,1.27939286190201,37.611269364223,-0.0118803352549119,-4993.18415841584,-5135.18432506617,-5548.3159986015,2.45067724529163,-18275.6944331573,-12415.5377768893,0,-18275.6944331573,36.8692561513577,36.8692561513577,-0.496464126610677,37.3497490858358,24.8,1015.1,39.0999999999999,130.387682561641
-46217,2873.73451277228,456.443144752475,225,36.0935544554456,37.1763610891089,10.2548514851485,-2.89514851485149,1266.13861386139,-348.490099009901,-304.145544554455,20,40,11,32,5305632.57521962,395908.791744473,0,0,0,0,0,0,0,36.0935544554455,19433.6198853681,10.2548514851485,10.9989670958937,10.7953998392664,-2.89514851485149,-2.88050830592163,-2.32137860857496,1.24490016872427,0.987659394002554,0.992516555216024,36.8304793308638,-0.0127443596370873,-652.635643564357,-789.826909126556,-1940.83688858014,2.49355993507979,-2392.7738193629,-2665.64396669592,0,-2392.7738193629,36.0681757670816,36.0681757670816,-0.106457427921009,36.0832073499543,24.8,1015.1,39.0999999999999,116.845686821201
+46217,2873.73451277228,456.443144752475,225,36.0935544554456,37.1763610891089,10.2548514851485,-2.89514851485149,1266.13861386139,-348.490099009901,-304.145544554455,20,40,11,32,5305632.57521962,395908.791744473,0,0,0,0,0,0,0,36.0935544554455,19433.6198853681,10.2548514851485,10.9989670958937,10.7953998392664,-2.89514851485149,-2.88050830592163,-2.32137860857496,1.24490016872427,0.987659394002554,0.992516555216023,36.8304793308638,-0.0127443596370873,-652.635643564357,-789.826909126556,-1940.83688858014,2.49355993507979,-2392.7738193629,-2665.64396669592,0,-2392.7738193629,36.0681757670816,36.0681757670816,-0.106457427921009,36.0832073499543,24.8,1015.1,39.0999999999999,116.845686821201
 46218,2873.73124277228,456.436798712871,225,35.5033960396039,36.5684979207921,9.6089405940594,-2.9009900990099,1246.37128712871,-818.895049504951,-719.994059405941,20,40,11,32,5305626.66065246,395900.777042985,0,0,0,0,0,0,0,35.5033960396039,19443.5705600381,9.6089405940594,10.3061874249002,10.2119502200787,-2.9009900990099,-2.88634989008005,-2.30854961550212,0.849373014161984,0.673862256207268,0.707509899571955,36.2554711045261,0.00180005079619877,-1538.88910891089,-1534.18763846682,-1422.90781999765,2.53506353949613,-5657.65921170398,-5189.75796099106,0,-5657.65921170398,35.485033232036,35.485033232036,-0.207614449563768,35.4357682483101,24.8,1015.1,39.0999999999999,104.514789420881
 46219,2873.72822653465,456.430387227723,225,34.6756930693069,35.7159638613862,8.48966336633663,-3.09435643564356,1223.9702970297,-1015.19504950495,-849.902970297029,20,40,11,32,5305621.21762175,395892.689276942,0,0,0,0,0,0,0,34.6756930693069,19453.3172226894,8.48966336633663,9.10569286710625,9.21201921251823,-3.09435643564356,-3.07971622671371,-2.40785862232124,1.08339831474377,0.859529583082752,0.784296013880247,35.6038527163021,-0.0077762194395787,-1865.09801980198,-2061.33759435349,-2926.79142052463,2.59558981368603,-6892.28752174449,-5911.62571755183,0,-6892.28752174449,34.6756174884815,34.6756174884815,-0.236361631212631,34.5746913811595,24.8,1015.1,39.0999999999999,85.5138347321178
-46220,2873.72561267327,456.423823267327,225,33.4637722772277,34.4676854455446,7.55360396038614,-0.645643564356436,1168.93564356436,-3227.69900990099,-2765.58217821782,20,40,11,32,5305616.52336743,395884.424998654,0,0,0,0,0,0,0,33.4637722772277,19462.8101252471,7.55360396038614,8.1017108376481,8.34658684089553,-0.645643564356436,-0.631003355426577,-0.481078270835013,1.48282530446353,1.17642071100279,1.26352920545583,34.0029595401948,-0.0273607721022213,-5993.28118811881,-5614.67159102049,-3947.67654625538,2.69040454779425,-21904.3687001139,-13376.6161729328,0,-21904.3687001139,33.3959900990099,33.3959900990099,-0.534703841671291,33.2046478532336,24.8,1015.1,39.0987376237623,71.3910168567757
+46220,2873.72561267327,456.423823267327,225,33.4637722772277,34.4676854455446,7.55360396038614,-0.645643564356436,1168.93564356436,-3227.69900990099,-2765.58217821782,20,40,11,32,5305616.52336743,395884.424998654,0,0,0,0,0,0,0,33.4637722772277,19462.8101252471,7.55360396038614,8.1017108376481,8.34658684089553,-0.645643564356436,-0.631003355426577,-0.481078270835012,1.48282530446353,1.17642071100279,1.26352920545583,34.0029595401948,-0.0273607721022213,-5993.28118811881,-5614.67159102049,-3947.67654625538,2.69040454779425,-21904.3687001139,-13376.6161729328,0,-21904.3687001139,33.3959900990099,33.3959900990099,-0.534703841671291,33.2046478532336,24.8,1015.1,39.0987376237623,71.3910168567757
 46221,2873.72344851485,456.41733920792,225,31.3828514851485,32.324337029703,8.04488888888119,-2.51108910891089,1109.03465346535,-1821.29603960396,-1478.43960396039,20,40,10.6633663366337,32,5305612.66033272,395876.275271175,0,0,0,0,0,0,0,31.3828514851485,19471.7939371833,8.04488888888119,8.62864453054958,8.64491801149575,-2.51108910891089,-2.49644889998104,-1.99519772998166,2.11306699428732,1.67643198988661,1.61657286961878,32.2605103694744,-0.00964827226762542,-3299.73564356436,-3448.42289971571,-3578.60491905543,2.86824244621338,-12174.0045449017,-9287.30438779406,0,-12174.0045449017,31.4747535535731,31.4747535535731,-0.371363373961163,31.8402577337236,24.8,1015.1,39.09,78.1280172787648
 46222,2873.72175069307,456.410882475247,225,30.7118613861386,31.6332172277227,8.22205940594059,-3.40514851485148,1085.32178217822,-804.292079207921,-665.934653465347,20,40,10.5544554455446,32,5305609.66051026,395868.175160621,0,0,0,0,0,0,0,30.7118613861386,19480.4038789325,8.22205940594059,8.81867094783325,8.75697505883098,-3.40514851485148,-3.39050830592163,-2.68945303224162,1.7296390914004,1.37223396684591,1.38973882366999,31.570730904371,-0.00928826210838567,-1470.22673267327,-1503.86646407215,-2093.57541335488,2.93058807992813,-5440.34472748081,-3762.93481208914,0,-5440.34472748081,30.7115476914027,30.7115476914027,-0.150392390724221,30.792871098143,24.8,1015.1,39.08,78.629229853099
 46223,2873.72058970297,456.404364851485,208.960396039604,30.214297029703,31.120725940594,9.4929801980198,-3.28227722772277,1068.43564356436,-790.10198019802,-656.783168316832,20,40,10.8118811881188,32,5305607.65646385,395860.017130953,0,0,0,0,0,0,0,30.2142970297029,19488.8592800326,9.4929801980198,10.1818126758057,9.80983417745184,-3.28227722772277,-3.26763701879292,-2.68218071874943,1.87910455553056,1.49081453534111,1.50407215941221,31.0795330431043,-0.00950426820392951,-1446.88514851485,-1448.65899421625,-1463.3063959814,2.97877375823165,-5358.02029644023,-2801.11002751244,0,-5358.02029644023,30.2228553083031,30.2228553083031,-0.111917132307285,30.248727083025,24.8,1015.1,39.07,96.4497324985767
@@ -1184,9 +1184,9 @@ Time,Lat,Long,Heading,v_veh_GPS,v_veh_CAN,vair_ar,beta_ar,n_eng,tq_l,tq_r,t_amb_
 46232,2873.72279465347,456.354616039604,45,20.791396039604,21.4151379207921,5.99649504950495,-3.5,1053.36633663366,1766.12772277228,2066.07524752475,20,40,9.76237623762376,32,5305612.85942778,395798.117084393,0,0,0,0,0,0,0,20.7913960396039,19552.0331687565,5.99649504950495,6.43161452271771,6.29438916657184,-3.5,-3.48535979107015,-2.81764122496251,0.795277902645743,0.630945124054108,0.62430532881844,30.641184673214,0.0110163108727365,3832.20297029703,3425.71156749338,1879.52423586128,4.32978584599038,20341.6588828572,5698.89900556876,0,20341.6588828572,20.8234969120674,20.8234969120674,0.227747279678459,21.3156763853422,24.8,1015.1,39.06,39.7575783117202
 46233,2873.72395207921,456.350271188119,45,21.798297029703,22.4522459405941,5.96137623762376,-3.5,1089.15346534653,1853.27722772277,2287.36732673267,20,40,9.78217821782178,32,5305615.10110535,395792.743270985,0,0,0,0,0,0,0,21.7982970297029,19557.9545243396,5.96137623762376,6.39394740907032,6.32224348629369,-3.5,-3.48535979107015,-2.79153471002385,0.611660395574819,0.485269542735992,0.517048080865848,31.6821900496717,-0.0151204266880697,4140.64455445545,4074.95285756299,3305.29710010232,4.12933979981063,21670.1304775461,6652.78091855976,0,21670.1304775461,21.8020480345064,21.8020480345064,0.266384559248004,21.8959528696398,24.8,1015.1,39.09,40.0763405077384
 46234,2873.72535574257,456.345801089109,45,22.8320099009901,23.5169701980198,6.16938613861386,-3.5,898.970297029703,1878.36831683168,2350.35742574257,20,40,10,32,5305617.80172176,395787.221673104,0,0,0,0,0,0,0,22.8320099009901,19564.148248762,6.16938613861386,6.61705098691577,6.55850705371639,-3.5,-3.48535979107015,-2.78260606679219,0.768850567001784,0.609978618495704,0.615636252420452,26.1499859346662,-0.0627857717714132,4228.72574257426,4194.18816782668,3798.82143397958,3.94270471588906,17513.7816421877,7554.35583597245,0,17513.7816421877,22.8298232526223,22.8298232526223,0.303161999368258,22.7676324124258,24.8,1015.1,39.12,43.3647232802499
-46235,2873.72707643564,456.341344752475,45,23.7590396039604,24.4718107920792,7.13136633663366,-3.5,843.930693069307,1550.72178217822,1957.08712871287,20,40,9.2970297029703,32,5305621.08928143,395781.72782931,0,0,0,0,0,0,0,23.7590396039604,19570.6321780525,7.13136633663366,7.64883468073567,7.43017694369555,-3.5,-3.48535979107015,-2.8377753527661,1.14437896882215,0.90790945912908,0.877151193835907,24.5489487544952,0.00590416661153197,3507.80891089109,3490.3134986766,2806.72976281842,3.78828544747646,13045.3699785637,5173.88947363342,0,13045.3699785637,23.7511580237231,23.7511580237231,0.206876504482129,23.5853902445438,24.8,1015.1,39.15,55.3193584984117
-46236,2873.72912366337,456.336933762376,45,24.4775940594059,25.2119218811881,7.11808910891089,-3.5,861.752475247525,814.438613861386,1062.74257425743,20,40,9.97029702970297,32,5305624.98068017,395776.30140461,0,0,0,0,0,0,0,24.4775940594059,19577.3333852032,7.11808910891089,7.63459402683064,7.4600812222775,-3.5,-3.48535979107015,-2.8220736787051,0.976010318729819,0.774331777081184,0.80152572952343,25.0673633838004,-0.0120243393186078,1877.18118811881,1676.08138417802,1321.02385226395,3.67705511586668,6963.96811786819,2903.7807797641,0,6963.96811786819,24.4219812763454,24.4219812763454,0.116308041695258,24.0403030213259,24.8,1015.1,39.18,55.7936173371046
-46237,2873.73140069307,456.332633366337,45,24.2682673267327,24.9963153465347,7.00324752475248,-3.5,853.945544554455,-680.642574257425,-586.517821782178,20,40,10,32,5305629.29526786,395771.020445261,0,0,0,0,0,0,0,24.2682673267326,19584.1323066003,7.00324752475248,7.51141927318081,7.3503633934861,-3.5,-3.48535979107015,-2.81840441305342,0.918810158181818,0.728951209769043,0.701875171791456,24.840268975352,0.00540015238859632,-1267.1603960396,-1044.52630134301,-462.088948475068,3.70877808414539,-4662.85304747395,-3629.27100654688,0,-4662.85304747395,24.2709329477502,24.2709329477502,-0.14523902885338,24.008277810419,24.8,1015.1,39.21,54.1638484535472
+46235,2873.72707643564,456.341344752475,45,23.7590396039604,24.4718107920792,7.13136633663366,-3.5,843.930693069307,1550.72178217822,1957.08712871287,20,40,9.2970297029703,32,5305621.08928143,395781.72782931,0,0,0,0,0,0,0,23.7590396039604,19570.6321780525,7.13136633663366,7.64883468073567,7.43017694369555,-3.5,-3.48535979107015,-2.8377753527661,1.14437896882215,0.90790945912908,0.877151193835906,24.5489487544952,0.00590416661153197,3507.80891089109,3490.3134986766,2806.72976281842,3.78828544747646,13045.3699785637,5173.88947363342,0,13045.3699785637,23.7511580237231,23.7511580237231,0.206876504482129,23.5853902445438,24.8,1015.1,39.15,55.3193584984117
+46236,2873.72912366337,456.336933762376,45,24.4775940594059,25.2119218811881,7.11808910891089,-3.5,861.752475247525,814.438613861386,1062.74257425743,20,40,9.97029702970297,32,5305624.98068017,395776.30140461,0,0,0,0,0,0,0,24.4775940594059,19577.3333852032,7.11808910891089,7.63459402683064,7.4600812222775,-3.5,-3.48535979107015,-2.8220736787051,0.976010318729819,0.774331777081184,0.801525729523429,25.0673633838004,-0.0120243393186078,1877.18118811881,1676.08138417802,1321.02385226395,3.67705511586668,6963.96811786819,2903.7807797641,0,6963.96811786819,24.4219812763454,24.4219812763454,0.116308041695258,24.0403030213259,24.8,1015.1,39.18,55.7936173371046
+46237,2873.73140069307,456.332633366337,45,24.2682673267327,24.9963153465347,7.00324752475248,-3.5,853.945544554455,-680.642574257425,-586.517821782178,20,40,10,32,5305629.29526786,395771.020445261,0,0,0,0,0,0,0,24.2682673267326,19584.1323066003,7.00324752475248,7.51141927318081,7.3503633934861,-3.5,-3.48535979107015,-2.81840441305342,0.918810158181817,0.728951209769043,0.701875171791456,24.840268975352,0.00540015238859632,-1267.1603960396,-1044.52630134301,-462.088948475068,3.70877808414539,-4662.85304747395,-3629.27100654688,0,-4662.85304747395,24.2709329477502,24.2709329477502,-0.14523902885338,24.008277810419,24.8,1015.1,39.21,54.1638484535472
 46238,2873.73365693069,456.328452178218,45,23.7283663366337,24.4402173267327,6.64950495049505,-3.5,863.470297029703,-1360.53465346535,-1214.35940594059,20,40,10.7821782178218,32,5305633.56866438,395765.887298905,0,0,0,0,0,0,0,23.7283663366336,19590.7998327004,6.64950495049505,7.13200832409891,7.0184192155831,-3.5,-3.48535979107015,-2.80270560244389,0.827222387826553,0.6562887392837,0.677965671025747,25.1173327939029,0.0329049285545136,-2574.89405940594,-2488.91156749338,-2062.80866473862,3.79326759368801,-9905.40651428966,-5446.60525824589,0,-9905.40651428966,23.6893195765121,23.6893195765121,-0.218337799126447,23.4726691119335,24.8,1015.1,39.24,49.4693495381988
 46239,2873.73546613861,456.324161881188,45,22.6658712871287,23.3458474257426,7.04940594059406,-3.5,1007.42079207921,-1216.08712871287,-1524.71287128713,20,40,10.8811881188119,32,5305637.01646864,395760.60328362,0,0,0,0,0,0,0,22.6658712871287,19597.2467301152,7.04940594059406,7.56092704984394,7.29776000189791,-3.5,-3.48535979107015,-2.85389254193801,1.34663235641261,1.06837008339525,1.09946391426456,29.3046829580523,0.0164164632613328,-2740.8,-2967.89720615626,-2638.39362966262,3.97131378402887,-12771.7888326449,-7656.366282423,0,-12771.7888326449,22.6723656504264,22.6723656504264,-0.306523597904345,22.5609708727717,24.8,1015.1,39.27,53.4209632240164
 46240,2873.73672049505,456.319625247525,45,21.4217425742574,22.0643948514852,7.65180198019802,-3.5,1017.74752475248,-1635.99405940594,-2054.52376237624,20,40,10.7623762376238,32,5305639.44204605,395754.993841324,0,0,0,0,0,0,0,21.4217425742574,19603.3823698567,7.65180198019802,8.20703433164088,7.73899309763616,-3.5,-3.48535979107015,-2.91701687057125,2.29814635057848,1.82326735023863,1.76087976582099,29.605075434922,-0.00799222553512255,-3690.51782178218,-3490.47624742672,-2539.94123149529,4.20328799827113,-18350.6989760022,-8740.69943109916,0,-18350.6989760022,21.4439104989707,21.4439104989707,-0.349480987702727,21.6130016814495,24.8,1015.1,39.2974752475247,60.0690829333188
@@ -1203,22 +1203,22 @@ Time,Lat,Long,Heading,v_veh_GPS,v_veh_CAN,vair_ar,beta_ar,n_eng,tq_l,tq_r,t_amb_
 46251,2873.71695465347,456.321981386139,155.49504950495,26.0130396039604,26.7934307920792,5.66901980198019,2.66356435643564,888.975247524752,2598.77227722772,2154.45247524752,20,40,10.9009900990099,32,5305602.77592732,395757.267617432,0,0,0,0,0,0,0,26.0130396039603,19670.5148558303,5.66901980198019,6.08037691801316,6.31526673563415,2.66356435643564,2.6782045653655,2.06818379137171,1.40416947192572,1.11401797875908,1.14865817153717,25.8592417300642,0.0133923779237189,4753.22475247525,4717.11599843153,4333.60066453127,3.46005229746289,17007.3312818264,5311.55684078425,0,17007.3312818264,26.0057325752377,26.0057325752377,0.21228991711052,25.916989187809,24.8,1015.1,39.44,40.8202487777099
 46252,2873.71651108911,456.327827227723,103.811881188119,26.7072673267327,27.5084853465346,6.06282178217822,2.61475247524752,926.371287128713,1944.93168316832,1610.52079207921,20,40,11,32,5305601.82276017,395764.535150044,0,0,0,0,0,0,0,26.7072673267327,19677.8413410338,6.06282178217822,6.50275407567056,6.69031250784169,2.61475247524752,2.62939268417738,2.04285739091834,1.14754366403893,0.91042021544395,0.924832936044591,26.947048427223,0.0140403962103504,3555.45247524753,3531.80036270954,3067.72965199552,3.37001073871501,12907.7976195358,4144.56359111898,0,12907.7976195358,26.6931647877659,26.6931647877659,0.165599233190641,26.6063279691372,24.8,1015.1,39.48,45.0959220620374
 46253,2873.71627257426,456.333845247525,80.6435643564356,27.2429405940594,28.0602288118812,6.02582398239604,2.52811881188119,946.430693069307,765.890099009901,591.654455445544,20,40,11,32,5305601.24555035,395772.024032971,0,0,0,0,0,0,0,27.2429405940594,19685.3357814903,6.02582398239604,6.46307163043827,6.6893651793397,2.52811881188119,2.54275902081104,1.99291390626469,1.24266707928608,0.98588774048632,0.919163592310624,27.5305528933188,-0.000792022350327461,1357.54455445545,1289.09255955298,1253.51576597099,3.30374584079205,4967.67728837745,2035.6646343188,0,4967.67728837745,27.2004195667091,27.2004195667091,0.0814367327821948,26.9503130994894,24.8,1015.1,39.52,45.2195533750253
-46254,2873.71609960396,456.339934554455,68.1683168316832,27.0670495049505,27.879060990099,6.598,3.49059405940594,946.19801980198,-598.539603960396,-706.054455445545,20,40,11,32,5305600.78815747,395779.603914561,0,0,0,0,0,0,0,27.0670495049505,19692.8986044001,6.598,7.07676605593042,7.16601961103408,3.49059405940594,3.50523426833579,2.74603126729486,0.825903147962823,0.655242101427036,0.689334667399339,27.5237847023251,0.000432012191087702,-1304.59405940594,-1140.35618076659,-354.979460784546,3.32513184722016,-4773.276836826,-2749.80909272457,0,-4773.276836826,27.0712377217919,27.0712377217919,-0.109997385877203,26.9334717010078,24.8,1015.1,39.56,51.5907138088488
+46254,2873.71609960396,456.339934554455,68.1683168316832,27.0670495049505,27.879060990099,6.598,3.49059405940594,946.19801980198,-598.539603960396,-706.054455445545,20,40,11,32,5305600.78815747,395779.603914561,0,0,0,0,0,0,0,27.0670495049505,19692.8986044001,6.598,7.07676605593042,7.16601961103408,3.49059405940594,3.50523426833579,2.74603126729486,0.825903147962823,0.655242101427035,0.689334667399339,27.5237847023251,0.000432012191087702,-1304.59405940594,-1140.35618076659,-354.979460784546,3.32513184722016,-4773.276836826,-2749.80909272457,0,-4773.276836826,27.0712377217919,27.0712377217919,-0.109997385877203,26.9334717010078,24.8,1015.1,39.56,51.5907138088488
 46255,2873.71598039604,456.34590960396,68.1683168316832,26.6033267326733,27.4014265346534,6.71909900990099,3.44524752475248,934.148514851485,-597.408910891089,-698.957425742574,20,40,11,32,5305600.43293108,395787.043260738,0,0,0,0,0,0,0,26.6033267326732,19700.3569125684,6.71909900990099,7.20665228852728,7.24250374827016,3.44524752475248,3.45988773368233,2.73093193802964,0.621641182730884,0.493187943296842,0.50058131660797,27.1732788112893,-0.00302408533761394,-1296.36633663366,-1399.78063915302,-2042.70499208933,3.38318574330337,-4766.8871827691,-3137.15719465352,0,-4766.8871827691,26.618930006862,26.618930006862,-0.125446579311399,26.4336707342255,24.8,1015.1,39.6,52.5621017527186
 46256,2873.71582772277,456.351763267327,73.5148514851485,25.9000495049505,26.677050990099,6.74407920792079,3.5,970.19801980198,-1970.04356435644,-1749.92772277228,20,40,11,32,5305600.01845537,395794.330273146,0,0,0,0,0,0,0,25.9000495049505,19707.6784708193,6.74407920792079,7.23344510717187,7.22338144303965,3.5,3.51464020892985,2.78970149630298,0.619384633895929,0.491397677931907,0.493685866562322,28.2219164031228,0.038161076879414,-3719.97128712871,-3560.21723360455,-2978.5086720438,3.4765195774139,-14825.8878723611,-11079.9084969659,0,-14825.8878723611,25.8007603176159,25.8007603176159,-0.443755514165271,25.2856635700878,24.8,1015.1,39.64,52.3409591590562
 46257,2873.71562643564,456.357246435644,93.1188118811881,23.701099009901,24.412131980198,6.37849504950495,3.47009900990099,1114.11386138614,-2262.57920792079,-1837.28811881188,20,40,11,32,5305599.52227241,395801.154121428,0,0,0,0,0,0,0,23.701099009901,19714.5698959568,6.37849504950495,6.84133332134842,6.78624973305487,3.47009900990099,3.48473921883084,2.78368155920837,0.652992905523182,0.518061281988497,0.514515913028025,32.4082585388264,0.0173524896753562,-4099.86732673268,-4161.08330555828,-3213.95819868353,3.79977763336008,-20240.369648833,-14971.6178744268,0,-20240.369648833,23.7080172532104,23.7080172532104,-0.599163753008969,23.8569280081173,24.8,1015.1,39.68,46.2036597126911
 46258,2873.71532376238,456.362326534653,102.029702970297,21.933504950495,22.5915100990099,6.18234653465346,3.5,1098.68811881188,-1731.97623762376,-1435.01386138614,20,40,11,32,5305598.84736091,395807.472462039,0,0,0,0,0,0,0,21.933504950495,19720.8764400437,6.18234653465346,6.63095181910195,6.51798298946338,3.5,3.51464020892985,2.83045740542574,0.713087422613665,0.565738128553057,0.545867623976622,31.95954187635,-0.0193685465670988,-3166.9900990099,-3145.39345162239,-2272.76439051073,4.10384218106999,-16600.8292637072,-8016.92537752061,0,-16600.8292637072,21.9905302421331,21.9905302421331,-0.320311734143707,22.5608217404624,24.8,1015.1,39.72,42.582303857448
-46259,2873.71497613861,456.367116930693,109.158415841584,21.1170693069307,21.7505813861386,5.47584158415841,3.5,1064.06930693069,-922.063366336634,-772.482178217822,20,40,11,32,5305598.09570782,395813.428407236,0,0,0,0,0,0,0,21.1170693069307,19726.8510338006,5.47584158415841,5.8731812443808,5.87003183606491,3.5,3.51464020892985,2.78740417308585,0.509481369733794,0.404204347889617,0.446581982257038,30.9525214589245,-0.000576016254783603,-1694.54554455445,-1293.39076561121,349.516218789495,4.26237795932196,-8938.66835633579,-3635.40359749176,0,-8938.66835633579,21.1541436133712,21.1541436133712,-0.145406496095155,21.9478816740408,24.8,1015.1,39.76,34.5654495046894
-46260,2873.71464029703,456.371738712871,102.029702970297,21.3602178217822,22.0010243564356,4.98485148514852,3.45306930693069,1084.44059405941,2244.76633663366,2459.48514851485,20,40,10.960396039604,32,5305597.36967731,395819.174699314,0,0,0,0,0,0,0,21.3602178217822,19732.7032037401,4.98485148514852,5.34656377447004,5.46623778320506,3.45306930693069,3.46770951586055,2.6963679445139,0.803445892556339,0.637425315934542,0.60328617356838,31.5450981810332,0.0159124490383971,4704.25148514852,4336.02797764925,3109.7167393471,4.21500200283937,24938.9833253654,7835.85462489553,0,24938.9833253654,21.4321045975884,21.4321045975884,0.313132427104095,22.2083929898607,24.8,1015.1,39.7886386138614,30.1361913458783
+46259,2873.71497613861,456.367116930693,109.158415841584,21.1170693069307,21.7505813861386,5.47584158415841,3.5,1064.06930693069,-922.063366336634,-772.482178217822,20,40,11,32,5305598.09570782,395813.428407236,0,0,0,0,0,0,0,21.1170693069307,19726.8510338006,5.47584158415841,5.8731812443808,5.87003183606491,3.5,3.51464020892985,2.78740417308585,0.509481369733794,0.404204347889617,0.446581982257038,30.9525214589245,-0.000576016254783603,-1694.54554455445,-1293.39076561121,349.516218789495,4.26237795932196,-8938.66835633579,-3635.40359749176,0,-8938.66835633579,21.1541436133712,21.1541436133712,-0.145406496095155,21.9478816740408,24.8,1015.1,39.76,34.5654495046893
+46260,2873.71464029703,456.371738712871,102.029702970297,21.3602178217822,22.0010243564356,4.98485148514852,3.45306930693069,1084.44059405941,2244.76633663366,2459.48514851485,20,40,10.960396039604,32,5305597.36967731,395819.174699314,0,0,0,0,0,0,0,21.3602178217822,19732.7032037401,4.98485148514852,5.34656377447004,5.46623778320506,3.45306930693069,3.46770951586055,2.6963679445139,0.803445892556339,0.637425315934543,0.60328617356838,31.5450981810332,0.0159124490383971,4704.25148514852,4336.02797764925,3109.7167393471,4.21500200283937,24938.9833253654,7835.85462489553,0,24938.9833253654,21.4321045975884,21.4321045975884,0.313132427104095,22.2083929898607,24.8,1015.1,39.7886386138614,30.1361913458783
 46261,2873.7143019802,456.376613762376,110.940594059406,22.903297029703,23.5903959405941,5.17340594059406,3.40683168316832,1104.41584158416,3332.70792079208,3531.11584158416,20,40,11,32,5305596.63337247,395825.236414295,0,0,0,0,0,0,0,22.9032970297029,19738.8477546477,5.17340594059406,5.54880017489312,5.71516755058441,3.40683168316832,3.42147189209817,2.64238032552988,0.911807102255231,0.723395234963685,0.709006428567673,32.1261545780461,-0.054217529981507,6863.82376237624,6897.23946671895,5541.29496328793,3.93126995198416,34595.3233985121,11967.5297479494,0,34595.3233985121,22.9334603470248,22.9334603470248,0.479598949994006,23.2222925274584,24.8,1015.1,39.75,32.7270143012148
-46262,2873.71397168317,456.381910990099,93.1188118811881,24.8767821782178,25.6230856435644,6.12991089108911,3.46940594059406,886.613861386139,4238.9801980198,3800.94554455445,20,40,11,32,5305595.90243668,395831.82432165,0,0,0,0,0,0,0,24.8767821782178,19745.4778957643,6.12991089108911,6.57471132463437,6.64216734720554,3.46940594059406,3.48404614952391,2.73579689099355,0.664964686427315,0.527559265979473,0.562223413883218,25.7905517916812,-0.0102242885224091,8039.92574257426,7713.9385354377,7466.78056266146,3.61983349693069,30041.8156741911,14294.138839113,0,30041.8156741911,24.8717883540829,24.8717883540829,0.571926499580647,24.8984896567982,24.8,1015.1,39.7,44.2932891368513
+46262,2873.71397168317,456.381910990099,93.1188118811881,24.8767821782178,25.6230856435644,6.12991089108911,3.46940594059406,886.613861386139,4238.9801980198,3800.94554455445,20,40,11,32,5305595.90243668,395831.82432165,0,0,0,0,0,0,0,24.8767821782178,19745.4778957643,6.12991089108911,6.57471132463437,6.64216734720554,3.46940594059406,3.48404614952391,2.73579689099355,0.664964686427314,0.527559265979473,0.562223413883218,25.7905517916812,-0.0102242885224091,8039.92574257426,7713.9385354377,7466.78056266146,3.61983349693069,30041.8156741911,14294.138839113,0,30041.8156741911,24.8717883540829,24.8717883540829,0.571926499580647,24.8984896567982,24.8,1015.1,39.7,44.2932891368513
 46263,2873.71378415842,456.387684059406,61.039603960396,26.7826732673267,27.5861534653465,6.54863366336634,3.48415841584158,1194.38613861386,3652.6504950495,2985.57920792079,20,40,11,32,5305595.42527289,395839.009776975,0,0,0,0,0,0,0,26.7826732673267,19752.6680169964,6.54863366336634,7.02381758436407,7.1077136012531,3.48415841584158,3.49879862477144,2.74468516995989,0.6928525083231,0.549684469241248,0.556352365196612,34.7432844316554,0.136803860511107,6638.2297029703,7283.72755612195,8919.05277780906,3.36122925863408,31193.539864329,13299.6411443844,0,31193.539864329,26.8064155474953,26.8064155474953,0.529758792710961,27.0455243105173,24.8,1015.1,39.65,50.6149002533326
 46264,2873.71384851485,456.393911980198,45,29.291495049505,30.1702399009901,7.25008910891089,3.47148514851485,1468.94554455446,6601.07524752475,5328.20693069307,20,40,11,32,5305595.40446227,395846.770278679,0,0,0,0,0,0,0,29.2914950495049,19760.4178192516,7.25008910891089,7.77617225044126,7.84842161340145,3.47148514851485,3.4861253574447,2.74000959696821,0.778919113079987,0.617966643855421,0.61307086214875,42.7298938082938,0.0434892272361624,11929.2821782178,11493.4043329085,10184.2302361118,3.07579186937768,62645.3121943436,21813.4925202186,0,62645.3121943436,29.3149774531908,29.3149774531908,0.871717369756776,29.5938808481798,24.8,1015.1,39.6,61.9588859640563
 46265,2873.71432148515,456.400772475247,45,32.6388712871287,33.6180374257426,7.99081188118811,3.45306930693069,1633.01485148515,6546.3099009901,5211.00099009901,20,40,11,32,5305596.12633445,395855.332459661,0,0,0,0,0,0,0,32.6388712871287,19769.0196728269,7.99081188118811,8.57064357079684,8.67061248235362,3.45306930693069,3.46770951586055,2.71984469054391,0.898184800306253,0.712587786442222,0.686393860963698,47.5024764873034,0.0563775909369456,11757.3108910891,11744.3282619351,11457.5767001597,2.76005594914422,61606.3527167452,22769.2965935431,0,61606.3527167452,32.6171591020488,32.6171591020488,0.909707926238169,32.5260228451185,24.8,1015.1,39.55,75.3609403933088
 46266,2873.71535138614,456.408207920792,45,35.6022673267327,36.6703353465346,8.76579207920792,3.1,1781.71782178218,6054.22079207921,4828.00792079208,20,40,10.6633663366337,32,5305597.86692169,395864.629489489,0,0,0,0,0,0,0,35.6022673267326,19778.52052808,8.76579207920792,9.40185811450172,9.50016341606724,3.1,3.11464020892985,2.45100716043671,0.938829898719432,0.744834157899519,0.78122753490775,51.8280705526009,0.0403931398667004,10882.2287128713,10891.5472796785,10777.9963021629,2.52909031053326,57028.3188924488,19394.7851065896,0,57028.3188924488,35.6095707283599,35.6095707283599,0.775028864272562,35.5671856618795,24.8,1015.1,39.5,90.5144898654028
-46267,2873.71701277228,456.416043861386,45,38.4031485148515,39.555242970297,9.34408910891089,3.21960396039604,1917.20297029703,5278.50198019802,4208.96831683168,20,40,11,32,5305600.76824892,395874.446528869,0,0,0,0,0,0,0,38.4031485148514,19788.8027257147,9.34408910891089,10.0221177068096,10.152877116936,3.21960396039604,3.23424416932589,2.53485951994473,0.978366374176868,0.776200987443212,0.771337369950178,55.7691737678304,0.0240486786372156,9487.4702970297,9471.04135869032,9584.47192040919,2.34451418431864,49631.7936362864,17190.9001159176,0,49631.7936362864,38.3433551612587,38.3433551612587,0.687182084545089,38.2254516052068,24.8,1015.1,39.45,103.323181815584
-46268,2873.71930891089,456.424140495049,45,40.597801980198,41.815736039604,9.63988118811881,3.26554455445545,1622.5198019802,4758.12871287129,3815.17524752475,20,40,11,32,5305604.83951273,395884.609524091,0,0,0,0,0,0,0,40.597801980198,19799.7775825629,9.63988118811881,10.3393731396304,10.5303628352044,3.26554455445545,3.2801847633853,2.55770769362538,1.16160666898043,0.921577302001825,0.931835946068409,47.1971878722681,-0.13737987676589,8573.30396039604,8719.89377512009,8830.05623963765,2.21768913038018,35619.7429377938,16094.0922747373,0,35619.7429377938,40.6133376139594,40.6133376139594,0.645993312202502,40.6384891603776,24.8,1015.1,39.4,111.00563483342
-46269,2873.72229049505,456.432318415842,45,42.9,44.187,10.0485643564356,3.31168316831683,1521.23267326733,4954.56930693069,3991.67821782178,20,40,11,32,5305610.17864736,395894.896670218,0,0,0,0,0,0,0,42.8999999999999,19811.3870509622,10.0485643564356,10.7777112986444,11.0100325866366,3.31168316831683,3.32632337724668,2.58895736190919,1.35809309653757,1.0774626258585,1.05494937662428,44.25086472905,0.0167044713887246,8946.24752475247,8882.49696108225,8859.58557286645,2.09839206600262,33221.7835689799,16024.063065936,0,33221.7835689799,42.9300134300558,42.9300134300558,0.640739197682147,42.9391221455326,24.8,1015.1,39.35,121.424453284611
+46267,2873.71701277228,456.416043861386,45,38.4031485148515,39.555242970297,9.34408910891089,3.21960396039604,1917.20297029703,5278.50198019802,4208.96831683168,20,40,11,32,5305600.76824892,395874.446528869,0,0,0,0,0,0,0,38.4031485148514,19788.8027257147,9.34408910891089,10.0221177068096,10.152877116936,3.21960396039604,3.23424416932589,2.53485951994473,0.978366374176869,0.776200987443211,0.771337369950178,55.7691737678304,0.0240486786372156,9487.4702970297,9471.04135869032,9584.47192040919,2.34451418431864,49631.7936362864,17190.9001159176,0,49631.7936362864,38.3433551612587,38.3433551612587,0.687182084545089,38.2254516052068,24.8,1015.1,39.45,103.323181815584
+46268,2873.71930891089,456.424140495049,45,40.597801980198,41.815736039604,9.63988118811881,3.26554455445545,1622.5198019802,4758.12871287129,3815.17524752475,20,40,11,32,5305604.83951273,395884.609524091,0,0,0,0,0,0,0,40.597801980198,19799.7775825629,9.63988118811881,10.3393731396304,10.5303628352044,3.26554455445545,3.2801847633853,2.55770769362538,1.16160666898043,0.921577302001826,0.931835946068409,47.1971878722681,-0.13737987676589,8573.30396039604,8719.89377512009,8830.05623963765,2.21768913038018,35619.7429377938,16094.0922747373,0,35619.7429377938,40.6133376139594,40.6133376139594,0.645993312202502,40.6384891603776,24.8,1015.1,39.4,111.00563483342
+46269,2873.72229049505,456.432318415842,45,42.9,44.187,10.0485643564356,3.31168316831683,1521.23267326733,4954.56930693069,3991.67821782178,20,40,11,32,5305610.17864736,395894.896670218,0,0,0,0,0,0,0,42.8999999999999,19811.3870509622,10.0485643564356,10.7777112986444,11.0100325866365,3.31168316831683,3.32632337724668,2.58895736190919,1.35809309653757,1.0774626258585,1.05494937662428,44.25086472905,0.0167044713887246,8946.24752475247,8882.49696108225,8859.58557286645,2.09839206600262,33221.7835689799,16024.063065936,0,33221.7835689799,42.9300134300558,42.9300134300558,0.640739197682147,42.9391221455326,24.8,1015.1,39.35,121.424453284611
 46270,2873.72587425743,456.440545148515,45,45.2557821782178,46.6134556435644,10.660099009901,3.24386138613861,1624.25247524752,4828.4603960396,3890.09306930693,20,40,10.6336633663366,32,5305616.63214353,395905.264722804,0,0,0,0,0,0,0,45.2557821782178,19823.6394751371,10.660099009901,11.4336203131441,11.6654885610389,3.24386138613861,3.25850159506847,2.5369643894689,1.38108238156324,1.09570150467581,1.11238445126636,47.2475892945616,0.0290168188347242,8718.55346534653,8697.94109401039,8675.61514875041,1.98902902785578,32775.7784127217,16205.4569095853,0,32775.7784127217,45.2679868640329,45.2679868640329,0.647825921205983,45.2717106231927,24.7987376237624,1015.1,39.3126237623762,136.266420159933
 46271,2873.72989584158,456.448946930693,45,47.6204554455446,49.0490691089109,10.993702970297,3.25663366336634,1687.35148514851,4617.81584158416,3648.78910891089,20,40,10.9009900990099,32,5305623.89272106,395915.865443072,0,0,0,0,0,0,0,47.6204554455445,19836.5438938665,10.993702970297,11.7914313442224,12.085024948676,3.25663366336634,3.27127387229619,2.53587934641985,1.63449958922568,1.29675367900895,1.28594301434824,49.0830650904296,0.0201605689174263,8266.60495049505,8276.40771492991,8288.77722713349,1.89022064843881,30672.0103668309,15315.6919524391,0,30672.0103668309,47.5904947554161,47.5904947554161,0.612358265529529,47.5638235365544,24.79,1015.1,39.35,146.275130932273
 46272,2873.73426069307,456.457634950495,45,49.8196930693069,51.3142838613861,11.5058316831683,3.18594059405941,1764.86138613861,4334.80396039604,3614.65247524752,20,40,10.3168316831683,32,5305631.78273611,395926.834177497,0,0,0,0,0,0,0,49.8196930693069,19850.0692641085,11.5058316831683,12.3407212944368,12.6469774605672,3.18594059405941,3.20058080298926,2.48256673350522,1.73712338928203,1.37817174185471,1.37435819718089,51.3377367157164,0.0254887192741746,7949.45643564356,7945.7789824527,7943.20696674051,1.80688400312459,29489.9045109698,15579.0999952639,0,29489.9045109698,49.7990247034604,49.7990247034604,0.622822925856936,49.7880145626827,24.78,1015.1,39.4,160.43021906795
@@ -1243,7 +1243,7 @@ Time,Lat,Long,Heading,v_veh_GPS,v_veh_CAN,vair_ar,beta_ar,n_eng,tq_l,tq_r,t_amb_
 46291,2873.84964821782,456.678351188119,45,79.1174752475247,81.4909995049505,21.2212574257426,1.26762376237624,1718.79207920792,2543.36138613861,2326.72277227723,20,40,10,32,5305840.56822486,396205.63103646,0,0,0,0,0,0,0,79.1174752475246,20198.5140320953,21.2212574257426,22.7611206751525,22.5949316859355,1.26762376237624,1.2822639713061,1.02369355851125,1.53058909693375,1.21431480043387,1.19573106396834,49.9976348989623,-0.00180005079619877,4870.08415841584,4899.63771198902,4904.4311865569,1.13756476786104,11079.3597282502,7765.5196299145,0,11079.3597282502,79.1147666895401,79.1147666895401,0.310635395222687,79.1132777473437,24.7,1015.1,39.76,511.020285860053
 46292,2873.85696485149,456.692378910892,45,80.2077128712871,82.6139442574257,20.9836633663366,1.44861386138614,1743.17326732673,2500.51881188119,2314.7801980198,20,40,10,32,5305853.80687441,396223.348854838,0,0,0,0,0,0,0,80.207712871287,20220.6446423264,20.9836633663366,22.5062862443106,22.4550461777272,1.44861386138614,1.463254070316,1.16122708735826,1.56800962188884,1.24400291031522,1.24013438963517,50.7068549126646,0.0100082824268652,4815.29900990099,4811.71691010685,4811.89712332152,1.12210083059981,10959.1447989358,7549.57725920945,0,10959.1447989358,80.2031105773943,80.2031105773943,0.301901229726921,80.2036859524028,24.7,1015.1,39.72,505.128347422317
 46293,2873.8643670297,456.706615148515,45,81.2888217821782,83.7274864356436,21.3042673267327,0.812871287128713,1766.47524752475,2449.80297029703,2310.78217821782,20,40,10,32,5305867.1993651,396241.329183007,0,0,0,0,0,0,0,81.2888217821781,20243.0771830029,21.3042673267327,22.8501539654879,22.7897273140761,0.812871287128713,0.82751149605857,0.656622507230623,1.39866567277255,1.10965146080615,1.14263125826366,51.3846820404812,0.00316808940130984,4760.58514851485,4760.13196745417,4760.15564235323,1.10717585928918,10833.6215169334,7432.89190299349,0,10833.6215169334,81.2872688952063,81.2872688952063,0.297289753727869,81.2866325267041,24.7,1015.1,39.68,519.766564804809
-46294,2873.87185069307,456.721056138614,45,82.362495049505,84.8333699009901,21.1412871287129,0.745742574257426,1790.99504950495,2463.47920792079,2245.9,20,40,10,32,5305880.73826415,396259.567195812,0,0,0,0,0,0,0,82.3624950495049,20265.8057703792,21.1412871287129,22.6753475494322,22.7124083394592,0.745742574257426,0.760382783187283,0.606817539787389,1.53482002882523,1.21767147089869,1.18795471843243,52.097934167967,0.0157684449747012,4709.37920792079,4710.79642191942,4710.45965119448,1.0927456545183,10723.9984426703,7430.05227441743,0,10723.9984426703,82.3582387020879,82.3582387020879,0.297073271683585,82.3579038059768,24.7,1015.1,39.64,516.463452580433
+46294,2873.87185069307,456.721056138614,45,82.362495049505,84.8333699009901,21.1412871287129,0.745742574257426,1790.99504950495,2463.47920792079,2245.9,20,40,10,32,5305880.73826415,396259.567195812,0,0,0,0,0,0,0,82.3624950495049,20265.8057703792,21.1412871287129,22.6753475494322,22.7124083394592,0.745742574257426,0.760382783187283,0.60681753978739,1.53482002882523,1.21767147089869,1.18795471843243,52.097934167967,0.0157684449747012,4709.37920792079,4710.79642191942,4710.45965119448,1.0927456545183,10723.9984426703,7430.05227441743,0,10723.9984426703,82.3582387020879,82.3582387020879,0.297073271683585,82.3579038059768,24.7,1015.1,39.64,516.463452580433
 46295,2873.87945712871,456.735667821782,45,83.4188910891089,85.9214578217822,21.5314653465347,0.689504950495049,1813.97524752475,2454.61584158416,2194.60693069307,20,40,10,32,5305894.50081449,396278.021837813,0,0,0,0,0,0,0,83.4188910891088,20288.8330002471,21.5314653465347,23.0938379961804,23.105419075222,0.689504950495049,0.704145159424907,0.561468695424972,1.27613410366229,1.01243928401157,1.02737141802377,52.7664010316434,0.000360010159239751,4649.22277227723,4647.09950004901,4647.21129882687,1.07890640815903,10587.1989106743,7164.80848140601,0,10587.1989106743,83.415366238604,83.415366238604,0.286589550044117,83.414339396059,24.7,1015.1,39.6,534.085958220828
 46296,2873.88716594059,456.750455346535,45,84.4342475247524,86.9672749504951,21.3814653465347,0.591188118811881,1834.15841584158,2403.6297029703,2185.4198019802,20,40,10,32,5305908.44912247,396296.698839758,0,0,0,0,0,0,0,84.4342475247523,20312.1454681789,21.3814653465347,22.9329536511684,23.0359738646356,0.591188118811881,0.605828327741738,0.480780207135096,1.59919228151549,1.26874212032096,1.22257571515964,53.3535055993316,0.010224288522409,4589.0495049505,4593.25405352417,4593.33130122892,1.06593372023594,10439.233622081,7114.34423825024,0,10439.233622081,84.4348336437603,84.4348336437603,0.284490082671629,84.435010681789,24.7,1015.1,39.56,531.415628084921
 46297,2873.89498980198,456.765395940594,45,85.4299504950495,87.992849009901,22.5316732673267,1.25029702970297,1855.66336633663,1958.55841584158,1771.10693069307,20,40,10,32,5305922.6071751,396315.570253386,0,0,0,0,0,0,0,85.4299504950494,20335.7419006322,22.5316732673267,24.1666233042638,24.0719505692974,1.25029702970297,1.26493723863283,1.0114176246453,1.45985550069556,1.15819728792054,1.19118252479557,53.9790592520266,-0.0038161076879414,3729.66534653465,3442.37861974316,3418.93340876945,1.05350714025587,8496.05022947898,4943.43433336517,0,8496.05022947898,85.3815400450935,85.3815400450935,0.19776792035639,85.3782892032059,24.7,1015.1,39.52,580.147134049554
@@ -1254,7 +1254,7 @@ Time,Lat,Long,Heading,v_veh_GPS,v_veh_CAN,vair_ar,beta_ar,n_eng,tq_l,tq_r,t_amb_
 46302,2873.93421940594,456.839856435643,45,84.425198019802,86.9579539603961,21.4011782178218,2.44950495049505,1827.30198019802,643.79801980198,562.576237623763,20,40,10,32,5305993.60807804,396409.627559024,0,0,0,0,0,0,0,84.4251980198019,20453.6134862757,21.4011782178218,22.9540969337373,23.051439751625,2.44950495049505,2.4641451594249,1.94810047207769,1.51787626123798,1.20422889000122,1.20578264407425,53.1540599711128,-0.00331209346500574,1206.37425742574,1203.90276825549,1203.63463132015,1.06603282566493,2734.31619896289,10.931949855172,0,2734.31619896289,84.428845113224,84.428845113224,0.000464279101174437,84.4291041749835,24.7,1015.08,39.56,531.725901941346
 46303,2873.94208227723,456.854604059406,45,84.4336930693069,86.9667038613861,21.0323762376238,2.05712871287129,1826.15346534653,682.341693178218,664.598237243564,20,40,10,32,5306007.84306774,396428.259340485,0.603960396039604,0.603960396039604,3204617.81903028,239431.256217118,4.24994647712483,0,0,84.4336930693068,20477.0660319027,21.0323762376238,22.5585338335819,22.7382802692915,2.05712871287129,2.07176892180114,1.63286073154859,1.67923981401946,1.33224897768229,1.31289199220799,53.1206510283354,-0.00187205282804672,1346.93993042178,1342.74203767799,1341.83610919459,1.06592578575347,3050.73140853365,201.426068133098,0,3050.73140853365,84.443384079992,84.443384079992,0.00807246566241624,84.4437775392492,24.7,1015.07,39.64,517.424241712959
 46304,2873.94993059406,456.869376732673,45,84.5112574257426,87.0465951485148,20.693396039604,0.905148514851485,1829.30693069307,673.738625433663,655.880793375248,20,40,10,32,5306022.05059677,396446.921748836,1,1,5306018.3972934,396449.897926264,25.7899818635187,0,0,84.5112574257424,20500.5289218641,20.693396039604,22.1949564527121,22.4545333082045,0.905148514851485,0.919788723781343,0.729830432386134,1.9290130535141,1.53041015763468,1.5078125796914,53.2123816169096,-0.00223206298728648,1329.61941880891,1330.474618014,1330.55195777545,1.06494715569222,3013.8915681302,565.361308303279,0,3013.8915681302,84.5058258994215,84.5058258994215,0.0226325850406794,84.5059417141446,24.7,1015.06,39.72,504.863344624599
-46305,2873.95776633664,456.884185049505,45,84.5702772277228,87.1073855445544,20.9690891089109,1.03168316831683,1832.10396039604,658.230218782178,665.731258673267,20,40,10,32,5306036.23409663,396465.628046301,1,1,5306033.21533141,396468.087294822,49.2511706454154,0,0,84.5702772277227,20524.0121088828,20.9690891089109,22.4906544452441,22.692830212777,1.03168316831683,1.04632337724669,0.826640404478624,1.71780412662365,1.36284452789079,1.43762121029553,53.2937439128978,0.00122403454141516,1323.96147745545,1325.05409221423,1325.14783445443,1.06420441896167,3003.55827580196,301.216327188863,0,3003.55827580196,84.5731893931966,84.5731893931966,0.01203858009562,84.5730455207602,24.7,1015.05,39.8,515.455576178829
+46305,2873.95776633664,456.884185049505,45,84.5702772277228,87.1073855445544,20.9690891089109,1.03168316831683,1832.10396039604,658.230218782178,665.731258673267,20,40,10,32,5306036.23409663,396465.628046301,1,1,5306033.21533141,396468.087294822,49.2511706454154,0,0,84.5702772277227,20524.0121088828,20.9690891089109,22.4906544452441,22.6928302127769,1.03168316831683,1.04632337724669,0.826640404478624,1.71780412662365,1.36284452789079,1.43762121029553,53.2937439128978,0.00122403454141516,1323.96147745545,1325.05409221423,1325.14783445443,1.06420441896167,3003.55827580196,301.216327188863,0,3003.55827580196,84.5731893931966,84.5731893931966,0.01203858009562,84.5730455207602,24.7,1015.05,39.8,515.455576178829
 46306,2873.96558752475,456.899028514851,45,84.6501881188119,87.1896937623762,20.4204389440594,1.04871287128713,1830.9900990099,658.139871640594,684.10336200396,20,40,10,32,5306050.38991081,396484.377550308,1,1,5306048.04348235,396486.289077149,72.7283710756624,0,0,84.6501881188118,20547.514825742,20.4204389440594,21.9021929624915,22.2303906988837,1.04871287128713,1.06335308021699,0.837497201498224,2.26542712064355,1.79730908015269,1.66560233779115,53.2613429985662,0.00122403454141517,1342.24323364455,1342.56871898572,1342.59910571211,1.06320249117904,3040.32371656655,647.788191127407,0,3040.32371656655,84.6345023036956,84.6345023036956,0.0259016000610087,84.6350163694606,24.7,1015.04,39.88,495.475826768973
 46307,2873.97339554455,456.91389960396,45,84.684396039604,87.2249279207921,20.371303630396,0.39990099009901,1832.30198019802,673.550648759406,694.105876287128,20,40,10,32,5306064.52077546,396503.160933744,1,1,5306062.87827044,396504.499006685,96.2160800187251,0,0,84.6843960396039,20571.034895874,20.371303630396,21.8494922774536,22.1911469672268,0.39990099009901,0.414541199028867,0.317059185349719,2.16210854166186,1.71533980448713,1.83136802717353,53.2995040754456,0.000144004063695904,1367.65652504653,1366.91563124827,1366.85660351187,1.06277006721645,3098.84473422378,502.057152934139,0,3098.84473422378,84.7025573963336,84.7025573963336,0.0200810922676444,84.7031218293257,24.7,1015.03,39.96,493.365086449471
 46308,2873.98119247525,456.928806435644,45,84.761099009901,87.303931980198,20.9133514853465,-0.85990099009901,1833.71287128713,690.293952711882,686.542536030693,20,40,10,32,5306078.63036096,396521.988378712,1,1,5306077.72614578,396522.725001027,119.724509825842,0,0,84.7610990099009,20594.5724861105,20.9133514853465,22.4308723715129,22.6570104433783,-0.85990099009901,-0.845260781169151,-0.652354566290915,2.20067347763093,1.74593584925111,1.73726954512013,53.340545233599,-0.00554415645229222,1376.83648874257,1375.71039014922,1375.6206727684,1.06180825308887,3119.22465630847,238.261547386426,0,3119.22465630847,84.7670642093912,84.7670642093912,0.00957558627148805,84.7671872701554,24.7,1015.02,40.04,515.593679413299
@@ -1262,7 +1262,7 @@ Time,Lat,Long,Heading,v_veh_GPS,v_veh_CAN,vair_ar,beta_ar,n_eng,tq_l,tq_r,t_amb_
 46310,2873.99678534654,456.958679405941,45,84.8365148514851,87.3816102970297,22.6216534653465,0.99029702970297,1834.87128712871,679.131068263366,656.28985829307,20,40,10,32,5306106.84655477,396559.716833144,1,1,5306107.45673156,396559.219750313,166.79652333876,0,0,84.836514851485,20641.6850485968,22.6216534653465,24.2631326724136,24.1141339776698,0.99029702970297,1.00493723863283,0.800445895685318,1.88425084420549,1.49489741723136,1.49276534175395,53.3742421845038,0.00187205282804672,1335.42092655644,1336.03268595417,1336.08142542593,1.06086463509874,3024.59830468344,96.5708461106883,0,3024.59830468344,84.8301812567394,84.8301812567394,0.00384766199391469,84.8301218293256,24.7012623762376,1015.00126237624,40.2050495049505,582.753766048278
 46311,2874.00458346535,456.973611980198,45,84.8566336633663,87.4023326732673,22.9413861386139,1.47772277227723,1835.38118811881,661.487984340594,661.414693211881,20,40,10,32,5306120.95794773,396578.576106107,1,1,5306122.32091332,396577.465761028,190.330770859513,0,0,84.8566336633662,20665.254425797,22.9413861386139,24.6060658838641,24.3873398028066,1.47772277227723,1.49236298120708,1.20219272724653,1.80073828665467,1.42864153257936,1.45746060433897,53.3890746030645,0.00950426820392952,1322.90267755247,1324.03972111289,1324.13031048991,1.06061306776715,2996.38410770854,22.7769748580787,0,2996.38410770854,84.8478170767571,84.8478170767571,0.000833251641995333,84.8473591702026,24.71,1015,40.32,595.441968220198
 46312,2874.01238732673,456.988538712871,45,84.8562376237624,87.4019247524752,22.4573861386139,0.122871287128713,1836.52475247525,656.267785292079,679.029796536634,20,40,9.97029702970297,32,5306135.08016891,396597.428200876,1,1,5306137.18589964,396595.712759356,213.866292233135,0,0,84.8562376237622,20688.8209092953,22.4573861386139,24.0869457306252,23.9754881953877,0.122871287128713,0.13751149605857,0.116588800783659,1.68338178915906,1.33553507303284,1.32904404211895,53.4223395417783,-0.00885624991729797,1335.29758182871,1335.91451695161,1335.96366877868,1.06061839233541,3026.35674777561,352.117033647468,0,3026.35674777561,84.8635001470443,84.8635001470443,0.0141571087801996,84.8634416784534,24.72,1015,40.44,575.704491556238
-46313,2874.02018445544,457.003492970297,45,84.874801980198,87.4210460396039,21.084198019802,0.922475247524752,1835.81188118812,668.269898067327,692.939923511881,20,40,10,32,5306149.18936511,396616.314264992,1,1,5306152.06232405,396613.97379811,237.419923366331,0,0,84.8748019801979,20712.3976459015,21.084198019802,22.6141159234692,22.8079131921992,0.922475247524752,0.93711545645461,0.739424600441426,1.8142680064819,1.43937552974741,1.48967798826894,53.401602956606,-0.00352809956054959,1361.20982157921,1360.73944095347,1360.70196526716,1.06038572203211,3083.2162340141,38.5965335162238,0,3083.2162340141,84.881383589844,84.881383589844,0.00157255824593308,84.8818082036774,24.73,1015,40.56,520.954361333798
+46313,2874.02018445544,457.003492970297,45,84.874801980198,87.4210460396039,21.084198019802,0.922475247524752,1835.81188118812,668.269898067327,692.939923511881,20,40,10,32,5306149.18936511,396616.314264992,1,1,5306152.06232405,396613.97379811,237.419923366331,0,0,84.8748019801979,20712.3976459015,21.084198019802,22.6141159234692,22.8079131921992,0.922475247524752,0.93711545645461,0.739424600441427,1.8142680064819,1.43937552974741,1.48967798826894,53.401602956606,-0.00352809956054959,1361.20982157921,1360.73944095347,1360.70196526716,1.06038572203211,3083.2162340141,38.5965335162238,0,3083.2162340141,84.881383589844,84.881383589844,0.00157255824593308,84.8818082036774,24.73,1015,40.56,520.954361333798
 46314,2874.02800405941,457.018430990099,45,84.9114554455446,87.4587991089109,20.8750099009901,1.57495049504951,1837.36138613861,686.459635512871,690.356167543565,20,40,10,32,5306163.3406163,396635.18075656,1.91089108910891,1,5306166.94617399,396632.24321723,32.0601729218734,0,0,84.9114554455444,20735.9806127057,20.8750099009901,22.3897486336069,22.6322514226663,1.57495049504951,1.58959070397936,1.24660989152011,2.06188056657754,1.63582250372612,1.58412619556154,53.4466762285429,0.00547215442044426,1376.81580305644,1375.69057246463,1375.60092423838,1.0599279391507,3119.84875734303,10.539203666988,0,3119.84875734303,84.8988210959708,84.8988210959708,0.000377141674539969,84.8987546440357,24.74,1015,40.68,513.413453276102
 46315,2874.03582653465,457.033362475248,45,84.9299405940594,87.4778388118812,21.766801980198,0.433366336633663,1836.79702970297,694.113436923762,673.654021955446,20,40,10,32,5306177.49739252,396654.039111049,2,1,5306181.82882305,396650.510157457,33.2275161736058,0,0,84.9299405940593,20759.5656353954,21.766801980198,23.3462511972756,23.3920185991101,0.433366336633663,0.44800654556352,0.352915296184776,1.55221470510654,1.23147178667218,1.23863677076307,53.4302597652815,0,1367.76745887921,1367.0219101352,1366.96251153461,1.05969726482455,3097.72822824577,127.777326951502,0,3097.72822824577,84.9213374179001,84.9213374179001,0.00511115467981841,84.9206871287127,24.75,1015,40.8,547.794398962189
 46316,2874.04365940594,457.048281584158,45,84.926801980198,87.4746060396039,21.739696919703,0.705445544554455,1838.0297029703,684.194432575248,658.189362372277,20,40,10,32,5306191.67376243,396672.882301764,2,1,5306196.71187819,396668.777589345,56.7902918582232,0,0,84.9268019801979,20783.1547571501,21.739696919703,23.3171793312472,23.3688139328237,0.705445544554455,0.720085753484313,0.571882868213316,1.72158638952543,1.36584524038114,1.38500946733579,53.4661167771418,0.00648018286631558,1342.38379494753,1342.70338212782,1342.72884395235,1.05973654009132,3042.37512599765,156.909415155408,0,3042.37512599765,84.9255846485637,84.9255846485637,0.00622351839142976,84.9255900047146,24.76,1015,40.92,547.230983317128
@@ -1271,10 +1271,10 @@ Time,Lat,Long,Heading,v_veh_GPS,v_veh_CAN,vair_ar,beta_ar,n_eng,tq_l,tq_r,t_amb_
 46319,2874.06727554455,457.09292980198,45,84.9526831683168,87.5012636633662,20.9586281629703,0.662277227722772,1838.37128712871,663.525263421782,690.344886719802,20,40,10,32,5306234.42336388,396729.27930802,2,1,5306241.38409585,396723.608179302,127.515115122995,0,0,84.9526831683167,20853.9404823427,20.9586281629703,22.4794344290051,22.7057080684302,0.662277227722772,0.676917436652631,0.527182568823198,1.95559973009787,1.55150307861177,1.76366047439112,53.4760530575368,0.0106563007134967,1353.87015014158,1353.70775294233,1353.69481459791,1.05941404775309,3068.05573544628,-129.797033779546,0,3068.05573544628,84.9572894814233,84.9572894814233,-0.0052786219215802,84.9573376709098,24.79,1015,41.28,516.772393006765
 46320,2874.07516247525,457.107801980198,45,84.9644554455445,87.5133891089108,19.4201551150495,0.413069306930693,1839.46534653465,681.712450312871,692.946535564356,20,40,10,32,5306248.70115805,396748.065462738,2,1,5306256.27968572,396741.8909963,151.097735735761,0,0,84.9644554455444,20877.5389494769,19.4201551150495,20.8293262381155,21.3967410913134,0.413069306930693,0.42770951586055,0.322723000844747,3.14932231896442,2.4985600060241,2.36753221366231,53.5078779556136,-0.00453612800642091,1374.65898587723,1373.62425850679,1373.54182076127,1.0592669696277,3116.57802826496,108.478357258149,0,3116.57802826496,84.9559190275462,84.9559190275462,0.00437593264276462,84.9559939651107,24.7987376237624,1015,41.3621287128713,458.791222256324
 46321,2874.08303415841,457.12269009901,45,84.9560396039604,87.5047207920791,20.0211232124752,-0.162475247524752,1837.31188118812,693.728241335644,679.048222372277,20,40,10,32,5306262.95041342,396766.870874472,2,1,5306271.17331957,396760.17141248,174.677259586122,0,0,84.9560396039602,20901.1390727442,20.0211232124752,21.4739019629654,21.9082200813523,-0.162475247524752,-0.147835038594895,-0.106427949924993,2.75791361032837,2.18803029634066,2.3004733505712,53.4452361879059,-0.00345609752870164,1372.77646370792,1371.82072974376,1371.74458548035,1.05937217436878,3108.97224846737,76.5977470428082,0,3108.97224846737,84.9654415253405,84.9654415253405,0.0030920171225212,84.9656062234794,24.8,1015,41.22,481.848264457737
-46322,2874.0908840594,457.137608811881,45,84.9881386138614,87.5377827722772,20.5689636964356,0.254059405940594,1839.63861386139,688.525373639604,661.42799220396,20,40,10,32,5306277.15869924,396785.71357898,2,1,5306286.06886985,396778.454180879,198.259817512543,0,0,84.9881386138612,20924.7431525572,20.5689636964356,22.0614950125191,22.3761683850305,0.254059405940594,0.268699614870452,0.205019769427149,2.14405011937764,1.70101289630771,1.64417885153404,53.5129180978429,0.00374410565609345,1349.95336584356,1349.9553226812,1349.95547858442,1.05897228667755,3059.99188202286,96.749143959323,0,3059.99188202286,84.9863248701107,84.9863248701107,0.00383949286016239,84.9861811409711,24.8,1015,41.04,501.899687555038
+46322,2874.0908840594,457.137608811881,45,84.9881386138614,87.5377827722772,20.5689636964356,0.254059405940594,1839.63861386139,688.525373639604,661.42799220396,20,40,10,32,5306277.15869924,396785.71357898,2,1,5306286.06886985,396778.454180879,198.259817512543,0,0,84.9881386138612,20924.7431525572,20.5689636964356,22.0614950125191,22.3761683850305,0.254059405940594,0.268699614870452,0.205019769427148,2.14405011937764,1.70101289630771,1.64417885153404,53.5129180978429,0.00374410565609345,1349.95336584356,1349.9553226812,1349.95547858442,1.05897228667755,3059.99188202286,96.749143959323,0,3059.99188202286,84.9863248701107,84.9863248701107,0.00383949286016239,84.9861811409711,24.8,1015,41.04,501.899687555038
 46323,2874.09871425743,457.152557920792,45,85.0313663366336,87.5823073267326,20.9776435643564,-0.0646534653465346,1839.85148514851,670.88733979604,656.285803406931,20,40,10,32,5306291.32987171,396804.593398593,2,1,5306300.96778802,396796.741083024,221.84770747063,0,0,85.0313663366336,20948.3542312976,20.9776435643564,22.4998296316527,22.7266333465235,-0.0646534653465346,-0.0500132564166771,-0.0371716967118492,1.73325210929601,1.37510040638455,1.34076863599456,53.5191102725819,0.00604817067522788,1327.17314320297,1328.13099173885,1328.20730447202,1.05843335832347,3007.18501656766,81.1276945084981,0,3007.18501656766,85.0096294480932,85.0096294480932,0.00319549281660164,85.009078736445,24.8,1015,40.86,516.944361719993
 46324,2874.10653455446,457.167521188119,45,85.0392574257426,87.5904351485148,20.8053388338614,0.292673267326733,1839.50495049505,641.813271741584,633.238527567327,20,40,10,32,5306305.48244948,396823.49043278,1.42574257425743,0.712871287128713,3782718.68084777,282876.148377443,172.52434629061,0,0,85.0392574257425,20971.9705172712,20.8053388338614,22.3150220735982,22.580684117113,0.292673267326733,0.30731347625659,0.240626355511335,1.80592865943372,1.43275938922554,1.43801405617532,53.5090299881232,7.20020318479557E-05,1275.05179930891,1268.69477892991,1267.99255705488,1.05833667856349,2888.33297378551,225.619971656744,0,2888.33297378551,85.0324152534064,85.0324152534064,0.00902416974370846,85.0317310702497,24.8,1015,40.68,510.350356832032
-46325,2874.11436762376,457.182477920793,45,85.0473267326733,87.5987465346534,20.6992475247525,0.582475247524753,1839.33663366337,568.005940594059,561.49801980198,20,40,10,32,5306319.65889228,396842.379657653,0,0,0,0,0,0,0,85.0473267326731,20995.5909429312,20.6992475247525,22.2012325350819,22.4902932951279,0.582475247524753,0.59711545645461,0.470098953977175,1.99371141147933,1.58173952735143,1.5543531456986,53.5041338499575,-0.00626417677077172,1129.50396039604,1136.5413954938,1137.13741095319,1.05823585001996,2558.08837836919,69.9621382979601,0,2558.08837836919,85.043800705813,85.043800705813,0.00284966615474753,85.0435726544082,24.8,1015,40.5,506.254646256896
+46325,2874.11436762376,457.182477920793,45,85.0473267326733,87.5987465346534,20.6992475247525,0.582475247524753,1839.33663366337,568.005940594059,561.49801980198,20,40,10,32,5306319.65889228,396842.379657653,0,0,0,0,0,0,0,85.0473267326731,20995.5909429312,20.6992475247525,22.2012325350819,22.4902932951278,0.582475247524753,0.59711545645461,0.470098953977175,1.99371141147933,1.58173952735143,1.5543531456986,53.5041338499575,-0.00626417677077172,1129.50396039604,1136.5413954938,1137.13741095319,1.05823585001996,2558.08837836919,69.9621382979601,0,2558.08837836919,85.043800705813,85.043800705813,0.00284966615474753,85.0435726544082,24.8,1015,40.5,506.254646256896
 46326,2874.12218584159,457.197441485149,45,85.0139108910892,87.5643282178218,20.9846039603961,2.06217821782178,1840.60891089109,556.772277227723,543.571287128713,20,40,10,32,5306333.80773369,396861.276807175,0,0,0,0,0,0,0,85.013910891089,21019.2135911436,20.9846039603961,22.5072950900385,22.7308830390874,2.06217821782178,2.07681842675164,1.6345730464755,1.83644615686168,1.4569708832661,1.54966961493848,53.5411428943273,0.000792022350327456,1100.34356435644,1100.60014704441,1100.85432343234,1.05865107922423,2494.94498773498,163.063752728478,0,2494.94498773498,85.0334720125477,85.0334720125477,0.00651624568397407,85.0343227722771,24.8,1015,40.32,517.195944286502
 46327,2874.13000485148,457.212396633663,45,84.9843465346534,87.5338769306931,20.1442277227723,1.86267326732673,1839.85643564356,553.861386138614,560.316831683168,20,40,9.99009900990099,32,5306347.95829048,396880.163407478,0,0,0,0,0,0,0,84.9843465346533,21042.8325739543,20.1442277227723,21.6059392196798,22.0144022746825,1.86267326732673,1.87731347625659,1.46596200006769,2.40301135050052,1.90646350112453,1.85603111980773,53.5192542766456,0.00648018286631558,1114.17821782178,1110.95384766199,1111.10789250354,1.05902045992881,2525.97009981133,-496.379545901862,0,2525.97009981133,85.0097603176158,85.0097603176158,-0.0199081789367086,85.0106278170673,24.8,1015,40.14,485.025162181658
 46328,2874.13787891089,457.227322178218,45,85.0200792079208,87.5706815841585,20.0982172717822,2.0529702970297,1839.49504950495,580.905940594059,567.040594059406,20,40,9.98019801980198,32,5306362.21153764,396899.014863355,0,0,0,0,0,0,0,85.0200792079206,21066.4448960115,20.0982172717822,21.5565901445381,21.9777463451817,2.0529702970297,2.06761050595956,1.61330873594887,2.3973740140476,1.90199103944065,1.93685381161959,53.5087419799958,-0.00597616864337992,1147.94653465346,1143.5933241839,1143.55288071664,1.05857619598956,2600.96171594766,-100.779208487512,0,2600.96171594766,85.0001105773943,85.0001105773943,-0.00398245270072006,84.9997489863271,24.8,1015,39.96,483.385503642654
@@ -1291,28 +1291,28 @@ Time,Lat,Long,Heading,v_veh_GPS,v_veh_CAN,vair_ar,beta_ar,n_eng,tq_l,tq_r,t_amb_
 46339,2874.22415207921,457.391942475247,45,85.0571485148515,87.6088629702971,19.7363580860396,1.16435643564356,1840.14356435644,474.49702970297,498.125742574257,20,40,9.82178217821782,32,5306518.35894547,397106.910611876,0,0,0,0,0,0,0,85.0571485148513,21326.4443646034,19.7363580860396,21.1684736239728,21.6714503503118,1.16435643564356,1.17899664457342,0.917552819632478,2.79767572152679,2.21957613723386,2.20009411332813,53.52760651234,0.0180725099938357,972.622772277228,973.514145671993,973.359783121169,1.05811260122659,2203.28724561488,-29.12380612518,0,2203.28724561488,85.0571714537789,85.0571714537789,-0.00131386901067241,85.0573777463459,24.8,1015,39.5999999999999,470.319914491468
 46340,2874.23197069307,457.406925049505,45,85.0657821782178,87.6177556435644,18.8821930694059,0.696336633663366,1841.25247524752,492.840594059406,499.39900990099,20,40,9.48514851485148,32,5306532.50895001,397125.830149906,0,0,0,0,0,0,0,85.0657821782177,21350.0728671887,18.8821930694059,20.252328429084,20.9453997703828,0.696336633663366,0.710976842593225,0.546964490823553,3.57672137237695,2.83764317164312,2.7047298626256,53.5598634226078,-0.00950426820392952,992.239603960396,990.77500245074,990.550768505422,1.05800490425766,2248.9868396247,78.762954291997,0,2248.9868396247,85.0655585726888,85.0655585726888,0.00322816935160886,85.0655369165487,24.8,1015.00126237624,39.5987376237623,438.955575331049
 46341,2874.23978643564,457.421900693069,45,85.0826930693069,87.6351738613862,22.6420407040594,2.37445544554455,1837.90594059406,485.736633663366,482.113861386138,20,40,9.96039603960396,32,5306546.65385081,397144.740867747,0,0,0,0,0,0,0,85.0826930693068,21373.7037098729,22.6420407040594,24.2849992560598,24.1450119809993,2.37445544554455,2.38909565447441,1.91301179085286,2.64445801832589,2.09801867608504,2.15349463988676,53.4625166755494,-0.00324009143315779,967.850495049505,971.638976570924,971.730381895332,1.05779453224065,2189.32683444554,-153.490714027391,0,2189.32683444554,85.073272424272,85.073272424272,-0.00611323508589494,85.0727735030644,24.8,1015.01,39.59,586.497487037131
-46342,2874.24760495049,457.436870891089,45,85.0249702970297,87.5757194059406,24.2816435643564,0.907227722772277,1841.24752475248,483.79504950495,495.526732673267,20,40,9.99009900990099,32,5306560.80406866,397163.644801659,0,0,0,0,0,0,0,85.0249702970296,21397.3305963966,24.2816435643564,26.0435754711184,25.537377863603,0.907227722772277,0.921867931702135,0.750338288842402,2.89667026828545,2.29811487995202,2.38843731066909,53.5597194185441,0.00712820115294713,979.321782178218,978.921899813744,979.118170674211,1.0585128285023,2220.57909653683,-47.8656673792036,0,2220.57909653683,85.0331295951377,85.0331295951377,-0.00197284579944766,85.0336812824139,24.8,1015.02,39.58,653.321153680925
+46342,2874.24760495049,457.436870891089,45,85.0249702970297,87.5757194059406,24.2816435643564,0.907227722772277,1841.24752475248,483.79504950495,495.526732673267,20,40,9.99009900990099,32,5306560.80406866,397163.644801659,0,0,0,0,0,0,0,85.0249702970296,21397.3305963966,24.2816435643564,26.0435754711184,25.537377863603,0.907227722772277,0.921867931702135,0.750338288842402,2.89667026828545,2.29811487995201,2.38843731066909,53.5597194185441,0.00712820115294713,979.321782178218,978.921899813744,979.118170674211,1.0585128285023,2220.57909653683,-47.8656673792036,0,2220.57909653683,85.0331295951377,85.0331295951377,-0.00197284579944766,85.0336812824139,24.8,1015.02,39.58,653.321153680925
 46343,2874.25541871287,457.451847623763,45,84.9900693069307,87.5397713861386,24.9035247524752,0.645742574257426,1838.82178217822,507.773267326733,517.407920792079,20,40,9.93069306930693,32,5306574.94539914,397182.556624819,0,0,0,0,0,0,0,84.9900693069305,21420.9484232118,24.9035247524752,26.7105817886238,26.0646593522386,0.645742574257426,0.660382783187283,0.542625607572431,3.41909550552097,2.71258843066928,2.5757033825134,53.4891574273331,-0.00252007111467829,1025.18118811881,1028.14343691795,1028.27181518152,1.0589483887594,2322.82052848761,-624.192544890307,0,2322.82052848761,84.9957262033133,84.9957262033133,-0.0249471729351031,84.9957935879301,24.8,1015.03,39.57,680.045412182856
 46344,2874.26321861386,457.466833366336,45,84.9849207920793,87.5344684158415,24.3258415841584,1.62673267326733,1840.05940594059,529.994059405941,569.311881188119,20,40,9.9009900990099,32,5306589.06091452,397201.479119584,0,0,0,0,0,0,0,84.9849207920792,21444.5499722767,24.3258415841584,26.0909806008962,25.5726456728444,1.62673267326733,1.64137288219718,1.32974827459839,2.82319186324189,2.23981973402721,2.30342667179548,53.5251584432571,-0.00964827226762542,1099.30594059406,1100.85073032056,1100.68316831683,1.05901151393003,2492.24911005256,94.4329109021388,0,2492.24911005256,84.9733449661797,84.9733449661797,0.00385583112766894,84.9728366808108,24.8,1015.04,39.56,654.431489139893
-46345,2874.27099871287,457.481842277228,45,84.9776534653465,87.526983069307,22.7906589658416,0.556138613861386,1838.4702970297,552.807920792079,593.749504950495,20,40,10,32,5306603.13929673,397220.429724604,0,0,0,0,0,0,0,84.9776534653464,21468.1552101205,22.7906589658416,24.4444016007508,24.2658963252505,0.556138613861386,0.570778822791244,0.478981266873498,2.27832469167955,1.80754155301561,1.77344230185679,53.4789331388107,0.00684019302555533,1146.55742574257,1138.95467111068,1138.69444601603,1.05910230592472,2597.72144065462,220.189921528129,0,2597.72144065462,84.972357808058,84.972357808058,0.00875186528552729,84.9728356435643,24.8,1015.05,39.55,591.171997500384
+46345,2874.27099871287,457.481842277228,45,84.9776534653465,87.526983069307,22.7906589658416,0.556138613861386,1838.4702970297,552.807920792079,593.749504950495,20,40,10,32,5306603.13929673,397220.429724604,0,0,0,0,0,0,0,84.9776534653464,21468.1552101205,22.7906589658416,24.4444016007508,24.2658963252505,0.556138613861386,0.570778822791244,0.478981266873498,2.27832469167954,1.80754155301561,1.77344230185679,53.4789331388107,0.00684019302555533,1146.55742574257,1138.95467111068,1138.69444601603,1.05910230592472,2597.72144065462,220.189921528129,0,2597.72144065462,84.972357808058,84.972357808058,0.00875186528552729,84.9728356435643,24.8,1015.05,39.55,591.171997500384
 46346,2874.27874891089,457.496884554456,45,85.0145148514851,87.5649502970297,22.243801980198,1.23425742574257,1841.16336633663,546.972277227723,576.052475247525,20,40,10,32,5306617.16161294,397239.420808556,0,0,0,0,0,0,0,85.014514851485,21491.7648771172,22.243801980198,23.8578634144139,23.802513402766,1.23425742574257,1.24889763467243,0.99554668096425,1.92632155705976,1.5282748203411,1.52387894993795,53.5572713494613,0.0103682925861049,1123.02475247525,1125.4741691991,1125.64776049033,1.05864350590652,2546.98803219265,404.044233490789,0,2546.98803219265,85.0249796098421,85.0249796098421,0.0160768552102691,85.0250211221121,24.8,1015.06,39.54,568.011484774743
 46347,2874.28649118812,457.511945544555,45,85.0439702970297,87.5952894059406,21.8311826182178,-0.577425742574257,1839.44059405941,569.654455445545,555.362376237624,20,40,9.99009900990099,32,5306631.16890349,397258.434845713,0,0,0,0,0,0,0,85.0439702970296,21515.3873457091,21.8311826182178,23.4153034424708,23.4539124159851,-0.577425742574257,-0.5627855336444,-0.447034071043551,2.02224096988298,1.60437386147076,1.5958937919225,53.5071579352951,-0.010224288522409,1125.01683168317,1105.49442211548,1102.69652993871,1.05827716970279,2548.06491758966,261.600761548925,0,2548.06491758966,85.0580911675325,85.0580911675325,0.0105477131871571,85.0587159830267,24.8,1015.07,39.53,552.14160138259
 46348,2874.29423623762,457.527011188119,45,85.0114257425742,87.5617685148515,20.0986749176238,-0.323465346534654,1833.9603960396,-62.2752475247524,-52.8415841584158,20,40,9.89108910891089,32,5306645.18128768,397277.454677648,0,0,0,0,0,0,0,85.0114257425741,21539.0185314627,20.0986749176238,21.5570809982146,21.9780888489993,-0.323465346534654,-0.308825137604796,-0.243743953679398,2.49559631142235,1.97991710704019,2.03643662609518,53.3477454367838,-0.00201605689174262,-115.116831683168,-236.853602587982,-251.991683168317,1.05869015869156,-260.973655008529,-2432.90540264982,0,-260.973655008529,84.9845625919027,84.9845625919027,-0.097299828992792,84.9817735973596,24.8,1015.08,39.52,484.228973027157
-46349,2874.30193891089,457.542028019802,45,84.0662673267327,86.5882553465346,18.9074548953465,-0.113465346534653,1799.13366336634,-2935.92376237624,-2745.60594059406,20,40,9.92079207920792,32,5306659.11632027,397296.412224356,0,0,0,0,0,0,0,84.0662673267326,21562.5371154561,18.9074548953465,20.2794233112191,20.9095945314003,-0.113465346534653,-0.0988251376047957,-0.0768621888272291,3.31579743886065,2.63063542874791,2.53504507653029,52.3346768486831,-0.0184325201530754,-5681.5297029703,-5565.60590138222,-5524.6137596997,1.07065746195233,-12698.788582129,-13230.0093266947,0,-12698.788582129,83.9716416037642,83.9716416037642,-0.529052162642009,83.9626397894136,24.8,1015.09,39.51,437.592009008235
-46350,2874.30947881188,457.556689207921,45,81.430198019802,83.873103960396,19.1204092406931,0.0751485148514851,1741.61386138614,-4277.72079207921,-4007.05940594059,20,40,9.84158415841584,32,5306672.75778732,397314.92135897,0,0,0,0,0,0,0,81.4301980198019,21585.5348495045,19.1204092406931,20.5078301136761,20.9393961197692,0.0751485148514851,0.0897887237813425,0.0809910387838962,2.65297057094335,2.10477223172814,2.16575681905178,50.6614936326004,-0.0154084348154615,-8284.7801980198,-8268.44984805411,-8265.53541646729,1.10535516260269,-18555.1297932542,-19502.2846883177,0,-18555.1297932542,81.4311328301146,81.4311328301146,-0.779967105621443,81.4315990890509,24.8,1015.09747524752,39.5,440.19312405413
+46349,2874.30193891089,457.542028019802,45,84.0662673267327,86.5882553465346,18.9074548953465,-0.113465346534653,1799.13366336634,-2935.92376237624,-2745.60594059406,20,40,9.92079207920792,32,5306659.11632027,397296.412224356,0,0,0,0,0,0,0,84.0662673267326,21562.5371154561,18.9074548953465,20.2794233112191,20.9095945314003,-0.113465346534653,-0.0988251376047957,-0.0768621888272292,3.31579743886065,2.63063542874791,2.53504507653029,52.3346768486831,-0.0184325201530754,-5681.5297029703,-5565.60590138222,-5524.6137596997,1.07065746195233,-12698.788582129,-13230.0093266947,0,-12698.788582129,83.9716416037642,83.9716416037642,-0.529052162642009,83.9626397894136,24.8,1015.09,39.51,437.592009008235
+46350,2874.30947881188,457.556689207921,45,81.430198019802,83.873103960396,19.1204092406931,0.0751485148514851,1741.61386138614,-4277.72079207921,-4007.05940594059,20,40,9.84158415841584,32,5306672.75778732,397314.92135897,0,0,0,0,0,0,0,81.4301980198019,21585.5348495045,19.1204092406931,20.5078301136761,20.9393961197692,0.0751485148514851,0.0897887237813425,0.0809910387838963,2.65297057094335,2.10477223172814,2.16575681905178,50.6614936326004,-0.0154084348154615,-8284.7801980198,-8268.44984805411,-8265.53541646729,1.10535516260269,-18555.1297932542,-19502.2846883177,0,-18555.1297932542,81.4311328301146,81.4311328301146,-0.779967105621443,81.4315990890509,24.8,1015.09747524752,39.5,440.19312405413
 46351,2874.31681881188,457.570818910891,45,78.7128811881189,81.0742676237624,18.0477502749505,0.562475247524753,1681.02475247525,-4202.37425742574,-3979.8801980198,20,40,9.88118811881188,32,5306686.04080689,397332.761853369,0,0,0,0,0,0,0,78.7128811881187,21607.7678873758,18.0477502749505,19.3573365461774,19.8709017743471,0.562475247524753,0.57711545645461,0.455842262866141,2.78535995039184,2.20980524366231,2.23201551130879,48.8990278970263,-0.0173524896753562,-8182.25445544554,-8182.5777178708,-8182.79203036183,1.14350187208112,-18299.346539113,-18793.2470118192,0,-18299.346539113,78.6897315949416,78.6897315949416,-0.751590258035709,78.6885268577042,24.8,1015.09,39.49,395.556942209039
-46352,2874.32395257426,457.584425544554,45,76.0018712871288,78.2819274257426,18.2540154014852,-1.26,1626.78712871287,-4052.28910891089,-3786.54653465347,20,40,9.78217821782178,32,5306698.95344876,397349.943988593,0,0,0,0,0,0,0,76.0018712871286,21629.2487066827,18.2540154014852,19.5785687447198,19.8909921603371,-1.26,-1.24535979107014,-0.97550877100712,2.22858860066342,1.76808271226103,1.77878231621346,47.321319375174,-0.0169204774842685,-7838.83564356436,-7662.04079992158,-7593.21472095438,1.18428691968409,-17572.3828612822,-17670.0827129293,0,-17572.3828612822,76.0184034898538,76.0184034898538,-0.706666830049348,76.0257854013525,24.8,1015.08,39.48,397.346428186076
+46352,2874.32395257426,457.584425544554,45,76.0018712871288,78.2819274257426,18.2540154014852,-1.26,1626.78712871287,-4052.28910891089,-3786.54653465347,20,40,9.78217821782178,32,5306698.95344876,397349.943988593,0,0,0,0,0,0,0,76.0018712871286,21629.2487066827,18.2540154014852,19.5785687447198,19.8909921603371,-1.26,-1.24535979107014,-0.975508771007121,2.22858860066342,1.76808271226103,1.77878231621346,47.321319375174,-0.0169204774842685,-7838.83564356436,-7662.04079992158,-7593.21472095438,1.18428691968409,-17572.3828612822,-17670.0827129293,0,-17572.3828612822,76.0184034898538,76.0184034898538,-0.706666830049348,76.0257854013525,24.8,1015.08,39.48,397.346428186077
 46353,2874.33087306931,457.597564653465,45,73.8242871287129,76.0390157425742,16.3205781075247,-0.526336633663366,1590.22277227723,-2075.64356435644,-1945.0198019802,20,40,9.52475247524752,32,5306711.48145498,397366.536720982,0,0,0,0,0,0,0,73.8242871287128,21650.0306754121,16.3205781075247,17.5048367936484,18.1209147037192,-0.526336633663366,-0.511696424733509,-0.399518199305819,3.18337339987718,2.52557491917483,2.33396004900774,46.2577053607161,-0.00756021334403484,-4020.66336633663,-4105.48665817077,-4137.30521260552,1.21915021888377,-9064.66161015821,-10377.0913590108,0,-9064.66161015821,73.9003284972061,73.9003284972061,-0.415021947739308,73.9299317767696,24.8,1015.07,39.47,328.829722363229
 46354,2874.33765950495,457.610432673267,45,72.9370396039604,75.1251507920792,18.0553074807921,-2.08821782178218,1574.40594059406,-676.682178217822,-636.953465346535,20,40,9.38613861386139,32,5306723.76718933,397382.787325745,0,0,0,0,0,0,0,72.9370396039603,21670.3935485419,18.0553074807921,19.365442120257,19.5460187186554,-2.08821782178218,-2.07357761285232,-1.63363952220232,1.67518445696921,1.32903160203456,1.62884057588474,45.7976123772076,-0.0010080284458713,-1313.63564356436,-1405.8213900598,-1460.0451067214,1.23394799285798,-2969.49006792239,-4324.94339267868,0,-2969.49006792239,72.9567192432113,72.9567192432113,-0.17298957618536,72.9605581801496,24.8,1015.06,39.46,382.997982619203
 46355,2874.34438,457.623185841584,45,72.3798613861386,74.5512572277228,17.8344174917822,-2.07168316831683,1560.53465346535,-602.143564356436,-588.410891089109,20,40,9.78217821782178,32,5306735.93336784,397398.892642996,0,0,0,0,0,0,0,72.3798613861385,21690.5767738994,17.8344174917822,19.1285238455798,19.3256490756628,-2.07168316831683,-2.05704295938698,-1.61511131788803,1.880685671578,1.49206893642202,1.4056861812483,45.3941129907317,-0.00864024382175411,-1190.55445544554,-1195.38428585433,-1202.12356435644,1.24344735421221,-2688.06249372152,-4117.37088591897,0,-2688.06249372152,72.3717418880501,72.3717418880501,-0.164624383230397,72.3713739405939,24.8,1015.05,39.45,375.046017081885
 46356,2874.35105841584,457.635821782178,45,71.7573861386139,73.9101077227723,18.3092376237624,-1.64188118811881,1547.34158415842,-808.626732673267,-772.406930693069,20,40,10,32,5306748.02424149,397414.850501058,0,0,0,0,0,0,0,71.7573861386138,21710.5963627883,18.3092376237624,19.637798018461,19.694230118724,-1.64188118811881,-1.62724097918895,-1.28863120443166,1.52055514116134,1.20635421778909,1.13123344088076,45.0103421609821,-0.0156244409110054,-1581.03366336634,-1659.76177825703,-1710.39611089109,1.2542358885629,-3569.79248118739,-4735.78875138312,0,-3569.79248118739,71.750060778355,71.750060778355,-0.189304697796507,71.7446594851484,24.8,1015.04,39.44,388.704167110506
-46357,2874.35767445544,457.648328316832,45,70.7850594059406,72.9086111881188,17.9264356435644,-1.82742574257426,1526.74257425743,-2299.29306930693,-2115.74455445545,20,40,10,32,5306760.00248159,397430.645065347,0,0,0,0,0,0,0,70.7850594059405,21730.4137760447,17.9264356435644,19.2272190461045,19.3126028009918,-1.82742574257426,-1.8127855336444,-1.43028729060756,1.32690623275665,1.05272008042671,1.04501834052621,44.4111412519435,-0.0101522864905611,-4415.03762376238,-4484.20502891873,-4504.38171729183,1.27151172206671,-9974.58358115004,-10713.3622031427,0,-9974.58358115004,70.7314276051367,70.7314276051367,-0.428452003616194,70.6977700105168,24.8,1015.03,39.43,373.398142625004
+46357,2874.35767445544,457.648328316832,45,70.7850594059406,72.9086111881188,17.9264356435644,-1.82742574257426,1526.74257425743,-2299.29306930693,-2115.74455445545,20,40,10,32,5306760.00248159,397430.645065347,0,0,0,0,0,0,0,70.7850594059405,21730.4137760447,17.9264356435644,19.2272190461045,19.3126028009918,-1.82742574257426,-1.8127855336444,-1.43028729060756,1.32690623275664,1.05272008042671,1.04501834052621,44.4111412519435,-0.0101522864905611,-4415.03762376238,-4484.20502891873,-4504.38171729183,1.27151172206671,-9974.58358115004,-10713.3622031427,0,-9974.58358115004,70.7314276051367,70.7314276051367,-0.428452003616194,70.6977700105168,24.8,1015.03,39.43,373.398142625004
 46358,2874.36414722772,457.660551881188,45,68.6039504950495,70.662069009901,17.3347920792079,-1.82415841584158,1471.29207920792,-4194.25643564356,-3722.97722772277,20,40,10,32,5306771.72164837,397446.082413277,0,0,0,0,0,0,0,68.6039504950494,21749.7981526123,17.3347920792079,18.5926444638906,18.6841797327604,-1.82415841584158,-1.80951820691173,-1.43217664433531,1.338848413372,1.06219458060427,1.08867160306587,42.7981517344857,-0.0167764734205726,-7917.23366336634,-7766.24653465347,-7663.86847165785,1.31206134174335,-17776.7889069026,-17885.0083445587,0,-17776.7889069026,68.588981374375,68.588981374375,-0.715264843316013,68.5794438893785,24.8,1015.02,39.42,349.603676130963
-46359,2874.37036920792,457.672354554455,45,65.9491683168317,67.9276433663367,16.2645841584158,-1.66336633663366,1411.15346534653,-4345.85346534653,-3793.75247524752,20,40,10,32,5306782.98561906,397460.987231981,0,0,0,0,0,0,0,65.9491683168316,21768.4826023648,16.2645841584158,17.4447797948016,17.6211157076384,-1.66336633663366,-1.64872612770381,-1.2953969421987,1.6245804342601,1.28888417522989,1.23336633679409,41.0487903687079,-0.0170644815479644,-8139.60594059406,-8134.18880501912,-8112.60226410644,1.36489421402061,-18238.8681779448,-18428.5168634912,0,-18238.8681779448,65.9458165866091,65.9458165866091,-0.737002908211607,65.9477922636085,24.8,1015.01,39.41,311.478816049761
+46359,2874.37036920792,457.672354554455,45,65.9491683168317,67.9276433663367,16.2645841584158,-1.66336633663366,1411.15346534653,-4345.85346534653,-3793.75247524752,20,40,10,32,5306782.98561906,397460.987231981,0,0,0,0,0,0,0,65.9491683168316,21768.4826023648,16.2645841584158,17.4447797948016,17.6211157076384,-1.66336633663366,-1.64872612770381,-1.29539694219871,1.6245804342601,1.28888417522989,1.23336633679409,41.0487903687079,-0.0170644815479644,-8139.60594059406,-8134.18880501912,-8112.60226410644,1.36489421402061,-18238.8681779448,-18428.5168634912,0,-18238.8681779448,65.9458165866091,65.9458165866091,-0.737002908211607,65.9477922636085,24.8,1015.01,39.41,311.478816049761
 46360,2874.37632633663,457.683714851485,45,63.3801188118812,65.2815223762376,16.6783861386139,-2.28821782178218,1359.58415841584,-3548.00891089109,-3145.8,20,40,10,32,5306793.76882227,397475.332306065,0,0,0,0,0,0,0,63.3801188118811,21786.4330226619,16.6783861386139,17.8886081984606,17.8260692249315,-2.28821782178218,-2.27357761285232,-1.81101555595991,1.16766556689256,0.926384215512289,0.993483228118134,39.5487000371877,-0.0170644815479644,-6693.80891089109,-6336.50615625919,-6092.89096745647,1.42017803976112,-15028.3163953442,-14855.9616186222,0,-15028.3163953442,63.4371805705322,63.4371805705322,-0.594100251609331,63.4948111029422,24.8,1015.00126237624,39.4025247524753,318.074611610391
-46361,2874.38209128713,457.694716633663,45,62.1019108910891,63.9649682178218,16.4594554455446,-2.55673267326733,1340.74257425743,-672.259405940594,-644.526732673267,20,40,10,32,5306804.20401413,397489.224481093,0,0,0,0,0,0,0,62.101910891089,21803.811459048,16.4594554455446,17.653791390744,17.5662014923987,-2.55673267326733,-2.54209246433747,-2.02641794184516,1.24665711765845,0.989053294624642,0.993939321275263,39.0006205707611,-0.00158404470065492,-1316.78613861386,-1690.46406234683,-1984.97786958006,1.44924052671126,-2977.91687655478,-4419.58380897371,0,-2977.91687655478,62.1212671306733,62.1212671306733,-0.176770523587011,62.1468351655854,24.8,1015,39.41,308.902385764212
+46361,2874.38209128713,457.694716633663,45,62.1019108910891,63.9649682178218,16.4594554455446,-2.55673267326733,1340.74257425743,-672.259405940594,-644.526732673267,20,40,10,32,5306804.20401413,397489.224481093,0,0,0,0,0,0,0,62.101910891089,21803.811459048,16.4594554455446,17.653791390744,17.5662014923987,-2.55673267326733,-2.54209246433747,-2.02641794184516,1.24665711765845,0.989053294624641,0.993939321275263,39.0006205707611,-0.00158404470065492,-1316.78613861386,-1690.46406234683,-1984.97786958006,1.44924052671126,-2977.91687655478,-4419.58380897371,0,-2977.91687655478,62.1212671306733,62.1212671306733,-0.176770523587011,62.1468351655854,24.8,1015,39.41,308.902385764212
 46362,2874.38779039604,457.705591980198,45,61.5910693069307,63.4388013861386,16.1830693069307,-1.94633663366337,1328.4504950495,-549.967326732673,-541.761386138614,20,40,10,32,5306814.52007522,397502.956967246,0,0,0,0,0,0,0,61.5910693069306,21820.9897596531,16.1830693069307,17.357350038202,17.3018813521873,-1.94633663366337,-1.93169642473351,-1.53736227836167,1.32754055193868,1.05322332664249,1.02536889706243,38.6430584806041,-0.00640818083446763,-1091.72871287129,-1091.02435055387,-1095.52409784399,1.4612541522755,-2465.07453309092,-3205.78695897243,0,-2465.07453309092,61.5999334378982,61.5999334378982,-0.128179154549113,61.604684126597,24.8,1015,39.42,299.92293385658
-46363,2874.39344326733,457.716383366337,45,61.0965742574257,62.9294714851485,15.658297029703,-2.38495049504951,1318.28217821782,-545.122772277227,-532.539603960396,20,40,10,32,5306824.75237797,397516.583312852,0,0,0,0,0,0,0,61.0965742574257,21838.0351780249,15.658297029703,16.7944990775202,16.8269367500868,-2.38495049504951,-2.37031028611965,-1.88003240729117,1.23789112155662,0.982098665960217,1.08172145013989,38.3472741337728,-0.00180005079619877,-1077.66237623762,-1079.45493579061,-1079.47125946398,1.47308717243534,-2434.34971847147,-3691.11387414326,0,-2434.34971847147,61.1086307224781,61.1086307224781,-0.147629861996104,61.1109148215601,24.8,1015,39.43,283.611977265641
+46363,2874.39344326733,457.716383366337,45,61.0965742574257,62.9294714851485,15.658297029703,-2.38495049504951,1318.28217821782,-545.122772277227,-532.539603960396,20,40,10,32,5306824.75237797,397516.583312852,0,0,0,0,0,0,0,61.0965742574257,21838.0351780249,15.658297029703,16.7944990775202,16.8269367500868,-2.38495049504951,-2.37031028611965,-1.88003240729117,1.23789112155662,0.982098665960218,1.08172145013989,38.3472741337728,-0.00180005079619877,-1077.66237623762,-1079.45493579061,-1079.47125946398,1.47308717243534,-2434.34971847147,-3691.11387414326,0,-2434.34971847147,61.1086307224781,61.1086307224781,-0.147629861996104,61.1109148215601,24.8,1015,39.43,283.611977265641
 46364,2874.3990470297,457.727088316832,45,60.6325346534653,62.4515106930693,13.225797029802,-1.58752475247525,1308.87128712871,-532.90099009901,-539.142574257426,20,40,10,32,5306834.89565776,397530.100341769,0,0,0,0,0,0,0,60.6325346534653,21854.9396145486,13.225797029802,14.1854912826808,14.7307999873059,-1.58752475247525,-1.57288454354539,-1.19627955087885,2.87595593944978,2.28168087023863,2.06093182578333,38.0735224086868,-0.00180005079619877,-1072.04356435644,-1073.52322321341,-1073.32590869825,1.48435902518218,-2423.76259913064,-3261.93034614213,0,-2423.76259913064,60.6237417900205,60.6237417900205,-0.13046242743086,60.6217508804571,24.8,1015,39.44,217.996951147506
 46365,2874.40460475248,457.737708019802,45,60.1059702970297,61.9091494059406,15.3607227722772,-0.862178217821782,1296.07920792079,-530.222772277228,-538.986138613862,20,40,10,32,5306844.95557297,397543.509635936,0,0,0,0,0,0,0,60.1059702970296,21871.7101971668,15.3607227722772,16.4753321475309,16.5171816949158,-0.862178217821782,-0.847538008891925,-0.657620679596473,1.53117812793241,1.21478211662018,1.32733609995977,37.7014159080966,-0.000360010159239758,-1069.20891089109,-1064.76019017743,-1064.6987773274,1.49736643510476,-2414.25991809643,-3377.93517101625,0,-2414.25991809643,60.1202987942358,60.1202987942358,-0.13511474909866,60.1282820120937,24.8,1015,39.45,274.002928231863
 46366,2874.41012188119,457.748239306931,45,59.6401683168317,61.4293733663366,16.2180693069307,-2.85594059405941,1286.81188118812,-544.862376237624,-509.429702970297,20,40,10,32,5306854.94228,397556.807429602,0,0,0,0,0,0,0,59.6401683168316,21888.3449453242,16.2180693069307,17.3948897187048,17.2197127386211,-2.85594059405941,-2.84130038512955,-2.27476947011234,1.43400607494773,1.13768927546234,1.16167927005598,37.4318403008579,-0.00230406501913443,-1054.29207920792,-1055.82577198314,-1056.29821373282,1.50906908885591,-2382.19995607656,-3737.19925781282,0,-2382.19995607656,59.6351343985883,59.6351343985883,-0.149469278611043,59.6318268167527,24.8,1015,39.46,296.990231518852
@@ -1320,7 +1320,7 @@ Time,Lat,Long,Heading,v_veh_GPS,v_veh_CAN,vair_ar,beta_ar,n_eng,tq_l,tq_r,t_amb_
 46368,2874.42095970297,457.769099306931,45,58.5818811881188,60.3393376237624,16.1672871287129,-3.49445544554455,1278.64356435644,-779.89801980198,-721.324752475248,20,40,10,32,5306874.55639652,397583.14412155,0,0,0,0,0,0,0,58.5818811881187,21921.187168509,16.1672871287129,17.3404226688324,17.1152834319915,-3.49445544554455,-3.4798152366147,-2.79207091991406,1.63593404579747,1.29789172569254,1.33948182825589,37.1942335957597,0.0376570626564783,-1501.22277227723,-1490.18297225762,-1547.53136632828,1.53632845218084,-3457.1104942505,-4550.07592777324,0,-3457.1104942505,58.5726521909616,58.5726521909616,-0.182322811489073,58.5512627926929,24.8,1015,39.48,293.469432271849
 46369,2874.4262760396,457.77937990099,45,57.5998811881188,59.3278776237624,15.2317128712871,-3.30118811881188,1430.89603960396,-1341.61485148515,-1266.05346534653,20,40,10,32,5306884.17679902,397596.122949376,0,0,0,0,0,0,0,57.5998811881187,21937.3453945541,15.2317128712871,16.3369609913918,16.2631272722161,-3.30118811881188,-3.28654790988203,-2.61754107147221,1.18096151472273,0.936932746315439,0.942411039324264,41.6230785747272,0.0179285059301398,-2607.66831683168,-3059.12904617194,-3501.79036607651,1.56261537061761,-6800.67984969283,-11391.176547701,0,-6800.67984969283,57.5304328007057,57.5304328007057,-0.455807709483814,57.4314103824052,24.8,1015,39.49,264.805755431495
 46370,2874.43143514851,457.789354653465,45,54.9178613861386,56.5653972277228,14.4658514851485,-3.31712871287129,1367.26732673267,-4927.09603960396,-4408.59603960396,20,40,10,32,5306893.51275057,397608.715653972,0,0,0,0,0,0,0,54.9178613861385,21953.0269135585,14.4658514851485,15.5155269415322,15.4577523536806,-3.31712871287129,-3.30248850394143,-2.62903887533161,1.10808973793311,0.879118877611669,0.891999216659847,39.7721943440437,-0.0298088411850517,-9335.69207920792,-8815.63369277522,-8161.11960942211,1.6396168202196,-24326.5676656702,-26009.5497470665,0,-24326.5676656702,54.8443534947553,54.8443534947553,-1.04010227755448,54.741430377111,24.8012623762376,1015,39.5,239.210505602186
-46371,2874.43626138614,457.798697128713,45,50.9433465346535,52.4716469306931,14.0725445544554,-3.17653465346535,1273.04455445545,-5166.20792079208,-4600.52376237624,20,40,10,32,5306902.24611098,397620.509906034,0,0,0,0,0,0,0,50.9433465346534,21967.7067805827,14.0725445544554,15.0936807553105,14.8951545635047,-3.17653465346535,-3.16189444453549,-2.53720374133064,1.50543237912761,1.19435635775089,1.14907408797123,37.0313649997196,-0.0217446136180812,-9766.73168316832,-9902.43944711303,-10099.4610614239,1.76731006221761,-25557.9841262039,-24664.3694259587,0,-25557.9841262039,50.9862984021174,50.9862984021174,-0.986369800346373,51.0378618695044,24.81,1015,39.51,222.397405192489
+46371,2874.43626138614,457.798697128713,45,50.9433465346535,52.4716469306931,14.0725445544554,-3.17653465346535,1273.04455445545,-5166.20792079208,-4600.52376237624,20,40,10,32,5306902.24611098,397620.509906034,0,0,0,0,0,0,0,50.9433465346534,21967.7067805827,14.0725445544554,15.0936807553105,14.8951545635047,-3.17653465346535,-3.16189444453549,-2.53720374133064,1.5054323791276,1.19435635775089,1.14907408797123,37.0313649997196,-0.0217446136180812,-9766.73168316832,-9902.43944711303,-10099.4610614239,1.76731006221761,-25557.9841262039,-24664.3694259587,0,-25557.9841262039,50.9862984021174,50.9862984021174,-0.986369800346373,51.0378618695044,24.81,1015,39.51,222.397405192489
 46372,2874.44074287129,457.807425643564,45,47.4045445544554,48.8266808910891,13.4598415841584,-3.41663366336634,1254.63366336634,-5949.85346534654,-5211.97821782178,20,40,10,32,5306910.3544626,397631.528134894,0,0,0,0,0,0,0,47.4045445544554,21981.379988586,13.4598415841584,14.4365186482226,14.1708065985042,-3.41663366336634,-3.40199345443648,-2.74391455345461,1.55123246952732,1.23069251599545,1.2751517985255,36.4958138868346,0.0595456803382554,-11161.8316831683,-11257.6545730811,-11299.3129770983,1.89978709445009,-31198.6433203017,-27287.1908288015,0,-31198.6433203017,47.3766669934319,47.3766669934319,-1.09213693646592,47.2890460721203,24.82,1015,39.52,200.968200271508
 46373,2874.44482584158,457.815495049505,45,43.0702871287129,44.3623957425743,12.3890099009901,-3.5,1470.71782178218,-7139.65148514852,-5982.04554455446,20,40,10,32,5306917.73921212,397641.712350454,0,0,0,0,0,0,0,43.0702871287128,21993.9611713418,12.3890099009901,13.2879849551247,13.0110292349088,-3.5,-3.48535979107015,-2.81701852616138,1.56180526328829,1.23908059348248,1.24268451426605,42.781447263097,-0.00316808940130984,-13121.697029703,-12982.7585922949,-12767.0749859805,2.09207246557121,-46934.0665748175,-32355.2329206829,0,-46934.0665748175,43.0527909028526,43.0527909028526,-1.29414599875829,43.0011278119859,24.83,1015,39.53,169.910493069349
 46374,2874.44831554455,457.82292009901,45,38.3609306930693,39.5117586138614,10.7338118811881,-3.5,1328.88613861386,-7334.13366336633,-5988.8801980198,20,40,10,32,5306924.03927996,397651.074532723,0,0,0,0,0,0,0,38.3609306930692,22005.2607577279,10.7338118811881,11.5126819599174,11.3326459158149,-3.5,-3.48535979107015,-2.8020417315468,1.28210010276124,1.01717249491694,1.00257952264034,38.6557308382094,-0.0519854669942205,-13323.0138613861,-13649.4315753357,-13939.1698072325,2.34941350790064,-48331.1960857038,-34605.4640965697,0,-48331.1960857038,38.2968457014018,38.2968457014018,-1.38353946780816,38.1724498914717,24.84,1015,39.54,129.118960613798
@@ -1340,24 +1340,24 @@ Time,Lat,Long,Heading,v_veh_GPS,v_veh_CAN,vair_ar,beta_ar,n_eng,tq_l,tq_r,t_amb_
 46388,2874.47081910891,457.867573960396,45,18.7341782178218,19.2962035643564,6.93624752475248,-3.5,1116.32673267327,1966.98118811881,1652.94356435644,20,40,10,32,5306964.73728043,397707.427592712,0,0,0,0,0,0,0,18.7341782178218,22089.1970459293,6.93624752475248,7.43955759907543,6.97605020029209,-3.5,-3.48535979107015,-2.93278694017356,2.26836418155986,1.79963923953224,1.79696526598198,32.4726283552984,-0.0101522864905611,3619.92475247525,3285.56593471228,2361.65739415812,4.80478063690624,22599.4369863349,5208.60344088494,0,22599.4369863349,18.7431230271542,18.7431230271542,0.208571599734232,19.1854528400559,24.9,1015,39.28,48.7797426955261
 46389,2874.47280970297,457.864483267327,45,19.7811188118812,20.3745523762376,6.57305940594059,-3.3639603960396,963.034653465347,2415.37326732673,1994.92376237624,20,40,10,32,5306968.49281121,397703.643721086,0,0,0,0,0,0,0,19.7811188118812,22094.5292878435,6.57305940594059,7.05001571500069,6.72709538068556,-3.3639603960396,-3.34932018710975,-2.77234541194781,1.60277454881269,1.27158416343156,1.26710862078465,28.0135425229549,-0.0604097047204308,4410.29702970297,4275.47696304284,3613.67604027992,4.55233338214778,22699.3381275526,8165.61997953509,0,22699.3381275526,19.7551936084697,19.7551936084697,0.327805552832512,19.7457813470484,24.9,1015,39.24,45.3565342797228
 46390,2874.47410534653,457.860456336634,45,20.5818811881188,21.1993376237624,6.12196039603961,-2.91534653465346,915.044554455446,2325.32673267327,1926.39504950495,20,40,10,32,5306970.98173247,397698.671003713,0,0,0,0,0,0,0,20.5818811881188,22100.1588600932,6.12196039603961,6.56618392337729,6.38935973778661,-2.91534653465346,-2.90070632572361,-2.35864165579748,0.931600283393789,0.739098438947281,0.760535930597487,26.6175671294868,0.00158404470065492,4251.72178217822,4352.85560239192,4877.17472072269,4.37318544827264,19797.8675636716,4118.1961791894,0,19797.8675636716,20.5915149495147,20.5915149495147,0.164700628478686,20.5688364985692,24.9,1015,39.2088366336634,40.93241937432
-46391,2874.47447504951,457.855888712871,80.6435643564356,21.3830693069307,22.0245613861386,5.92233663366337,-0.872475247524752,957.950495049505,3194.97722772277,2656.99207920792,20,40,9.89108910891089,32,5306971.76743647,397692.994474921,0,0,0,0,0,0,0,21.3830693069306,22105.9761376234,5.92233663366337,6.35207500165234,6.26562698104546,-0.872475247524752,-0.857835038594893,-0.690344171395199,0.682205237057755,0.541237303958519,0.558757764588175,27.8656503495392,0.0149044205925258,5851.96930693069,5815.76229781394,5508.37355335496,4.20990175260956,27457.4729884059,6804.50135821046,0,27457.4729884059,21.3943431036173,21.3943431036173,0.271928678016317,21.4696298193607,24.9,1015,39.23,39.4158829206631
-46392,2874.47382831683,457.851144653465,200.049504950495,22.3708811881188,23.0420076237624,5.66826732673267,1.45376237623762,1008.93069306931,3417.51089108911,2850.34455445545,20,40,9.98019801980198,32,5306970.67425082,397687.064815462,0,0,0,0,0,0,0,22.3708811881188,22112.0565501647,5.66826732673267,6.07956984143092,6.10596652926682,1.45376237623762,1.46840258516748,1.15651707016764,0.741437923463937,0.588230404795691,0.605693001107027,29.3486041974796,-0.000720020318479508,6267.85544554455,6334.19115772964,6262.35058663927,4.02383816093091,29593.8892172089,6347.40029226544,0,29593.8892172089,22.3627939417704,22.3627939417704,0.253900761363265,22.3409596568069,24.9,1015,39.26,37.6676299279599
+46391,2874.47447504951,457.855888712871,80.6435643564356,21.3830693069307,22.0245613861386,5.92233663366337,-0.872475247524752,957.950495049505,3194.97722772277,2656.99207920792,20,40,9.89108910891089,32,5306971.76743647,397692.994474921,0,0,0,0,0,0,0,21.3830693069306,22105.9761376234,5.92233663366337,6.35207500165234,6.26562698104546,-0.872475247524752,-0.857835038594893,-0.690344171395199,0.682205237057755,0.541237303958519,0.558757764588176,27.8656503495392,0.0149044205925258,5851.96930693069,5815.76229781394,5508.37355335496,4.20990175260956,27457.4729884059,6804.50135821046,0,27457.4729884059,21.3943431036173,21.3943431036173,0.271928678016317,21.4696298193607,24.9,1015,39.23,39.4158829206631
+46392,2874.47382831683,457.851144653465,200.049504950495,22.3708811881188,23.0420076237624,5.66826732673267,1.45376237623762,1008.93069306931,3417.51089108911,2850.34455445545,20,40,9.98019801980198,32,5306970.67425082,397687.064815462,0,0,0,0,0,0,0,22.3708811881188,22112.0565501647,5.66826732673267,6.07956984143092,6.10596652926682,1.45376237623762,1.46840258516748,1.15651707016764,0.741437923463937,0.588230404795692,0.605693001107027,29.3486041974796,-0.000720020318479508,6267.85544554455,6334.19115772964,6262.35058663927,4.02383816093091,29593.8892172089,6347.40029226544,0,29593.8892172089,22.3627939417704,22.3627939417704,0.253900761363265,22.3409596568069,24.9,1015,39.26,37.6676299279599
 46393,2874.47234059406,457.846501287129,225,23.2103861386139,23.9066977227723,4.41369471947525,1.17544554455446,825.772277227723,3806.64257425743,3160.07722772277,20,40,10,32,5306968.02104058,397681.232929527,0,0,0,0,0,0,0,23.2103861386138,22118.3898604232,4.41369471947525,4.73396256017305,5.08668476902372,1.17544554455446,1.19008575348431,0.869836640931106,1.80646244907612,1.43318287888999,1.21859888326317,24.0207418488586,-0.0493213918158464,6966.7198019802,6900.92239976473,7063.01858377277,3.87814879451179,25971.428559666,6384.84674488243,0,25971.428559666,23.2293405548475,23.2293405548475,0.256122765741919,23.4179564924656,24.9,1015,39.29,27.0792576905543
 46394,2874.47040415842,457.842112574257,225,24.3835742574257,25.1150814851485,5.50335643564356,3.32148514851485,839.628712871287,4219.94059405941,3503.44653465347,20,40,10,32,5306964.53103815,397675.703449312,0,0,0,0,0,0,0,24.3835742574257,22124.9867203242,5.50335643564356,5.90269263677608,6.08082857479073,3.32148514851485,3.3361253574447,2.57201946118637,1.03505746875497,0.821177679970874,1.01766616209043,24.4238092231434,0.0228246440958004,7723.38712871287,7709.28183511421,7416.67477535097,3.69238365847892,27853.1023559078,10826.1051471119,0,27853.1023559078,24.4254217233604,24.4254217233604,0.432747606443812,24.745540540335,24.9,1015,39.32,37.2882983621408
 46395,2874.46810564356,457.83768029703,225,26.3070594059406,27.0962711881188,6.42357425742574,3.48257425742574,923.391089108911,4751.16732673267,3891.87326732673,20,40,10,32,5306960.37130676,397670.107808314,0,0,0,0,0,0,0,26.3070594059406,22132.0181439766,6.42357425742574,6.88968358028174,6.97403475258841,3.48257425742574,3.49721446635559,2.742476775404,0.702838494459925,0.557606994488008,0.567737024034169,26.8603579808781,0.0230406501913443,8643.04059405941,8235.70582295854,7764.28468828706,3.42300827115322,31769.2764965542,14117.7843126672,0,31769.2764965542,26.3077000294089,26.3077000294089,0.564406811968327,26.3117484616449,24.9,1015,39.35,48.786055490697
 46396,2874.46556574258,457.832954158416,225,28.1208217821782,28.9644464356436,7.05326732673267,3.35118811881188,1261.97524752475,3508,2848.3,20,40,10,32,5306955.77094214,397664.138241284,0,0,0,0,0,0,0,28.1208217821782,22139.5980786576,7.05326732673267,7.56506862704227,7.61385287262076,3.35118811881188,3.36582832774173,2.65191839928698,0.686408368945616,0.544571918891965,0.540902037065527,36.7093719132956,0.142492021027095,6356.3,7080.47997255171,8912.29708125604,3.20109407183496,30184.4399306892,12169.4099165833,0,30184.4399306892,28.1396134692677,28.1396134692677,0.484459584572312,28.3649053687704,24.9,1015,39.38,58.1516319338724
-46397,2874.46284207921,457.827894653465,225,30.522297029703,31.4379659405941,7.72599009900989,3.46613861386139,1548.62376237624,6357.44851485148,5255.73168316832,20,40,10.3861386138614,32,5306950.83755755,397657.7474386,0,0,0,0,0,0,0,30.5222970297029,22147.6988172439,7.72599009900989,8.28660571099238,8.32392452610894,3.46613861386139,3.48077882279124,2.74835594177431,0.699473641837475,0.554937440426174,0.566836366915664,45.0476392134794,0.0466573166374722,11613.1801980198,11205.8847858053,9889.3288429581,2.95173557873374,61712.9338558905,22133.1357642876,0,61712.9338558905,30.5651614547593,30.5651614547593,0.884432626430961,30.8494607892973,24.9,1015,39.41,69.5357804516526
-46398,2874.45983475248,457.822279504951,225,33.8807326732673,34.8971546534653,8.90308910891089,3.42970297029703,1716.24257425743,5799.34158415841,5406.5702970297,20,40,11,32,5306945.39101458,397650.655281988,0,0,0,0,0,0,0,33.8807326732673,22156.6554158138,8.90308910891089,9.54911773247414,9.51806503076805,3.42970297029703,3.44434317922688,2.73900397274097,0.807301588599728,0.640484287660424,0.627460537452118,49.9234728061589,0.0532095015356357,11205.9118811881,11218.276923831,10996.03289593,2.65823160346209,59439.9783966315,22106.9814175003,0,59439.9783966315,33.8635214194686,33.8635214194686,0.883264440305406,33.7990066237993,24.9,1015,39.44,90.8938962616075
+46397,2874.46284207921,457.827894653465,225,30.522297029703,31.4379659405941,7.72599009900989,3.46613861386139,1548.62376237624,6357.44851485148,5255.73168316832,20,40,10.3861386138614,32,5306950.83755755,397657.7474386,0,0,0,0,0,0,0,30.5222970297029,22147.6988172439,7.72599009900989,8.28660571099238,8.32392452610894,3.46613861386139,3.48077882279124,2.74835594177431,0.699473641837476,0.554937440426174,0.566836366915665,45.0476392134794,0.0466573166374722,11613.1801980198,11205.8847858053,9889.3288429581,2.95173557873374,61712.9338558905,22133.1357642876,0,61712.9338558905,30.5651614547593,30.5651614547593,0.884432626430961,30.8494607892973,24.9,1015,39.41,69.5357804516526
+46398,2874.45983475248,457.822279504951,225,33.8807326732673,34.8971546534653,8.90308910891089,3.42970297029703,1716.24257425743,5799.34158415841,5406.5702970297,20,40,11,32,5306945.39101458,397650.655281988,0,0,0,0,0,0,0,33.8807326732673,22156.6554158138,8.90308910891089,9.54911773247414,9.51806503076805,3.42970297029703,3.44434317922688,2.73900397274097,0.807301588599728,0.640484287660423,0.627460537452118,49.9234728061589,0.0532095015356357,11205.9118811881,11218.276923831,10996.03289593,2.65823160346209,59439.9783966315,22106.9814175003,0,59439.9783966315,33.8635214194686,33.8635214194686,0.883264440305406,33.7990066237993,24.9,1015,39.44,90.8938962616075
 46399,2874.45656574257,457.816052772277,225,36.9468118811881,38.0552162376238,9.62146534653466,3.16029702970297,1871.30198019802,5093.6495049505,5170.62079207921,20,40,11,32,5306939.47326694,397642.792819325,0,0,0,0,0,0,0,36.9468118811881,22166.4985735971,9.62146534653466,10.319621002223,10.305378470184,3.16029702970297,3.17493723863282,2.51912083225018,0.78064312194827,0.61933441100405,0.61982784334474,54.4339680892419,0.0471613308604078,10264.2702970297,10022.3157925694,9898.30151148633,2.43729857826815,54448.2652871229,20084.1831239073,0,54448.2652871229,36.9218648171747,36.9218648171747,0.802466261477639,36.8143130667325,24.9,1015,39.47,106.421575555326
 46400,2874.45306267327,457.809291782178,225,39.5065841584158,40.6917816831683,10.0212079207921,2.7960396039604,1733.94059405941,4161.89702970297,4268.44653465347,20,40,11,32,5306933.13377756,397634.25726027,0,0,0,0,0,0,0,39.5065841584158,22177.1359606158,10.0212079207921,10.7483698171086,10.7924901949347,2.7960396039604,2.81067981289025,2.22180394877337,0.80950290562284,0.642230734075707,0.645271191811729,50.4382873338718,-0.139755943816873,8430.34356435643,8635.67094402509,8990.67676028601,2.27877435592729,38365.8175855992,16400.8155847829,0,38365.8175855992,39.4989204979903,39.4989204979903,0.658301473711728,39.4821321268216,24.9012623762376,1015,39.5113613861386,116.68997288189
-46401,2874.4493619802,457.80208,225,41.9390297029703,43.1972005940594,10.3149900990099,3.01237623762376,1498.26237623762,4561.68316831683,4272.42673267327,20,40,11,32,5306926.43819614,397625.153749832,0,0,0,0,0,0,0,41.9390297029702,22188.4455704892,10.3149900990099,11.0634695059005,11.1818432509837,3.01237623762376,3.02701644655362,2.3770236690854,0.983476342569249,0.780255054116657,0.769002572844817,43.582685873501,0.0215286075225373,8834.10990099009,8896.26681697872,8829.14139431347,2.14665203686868,33051.5579866524,17438.3150296191,0,33051.5579866524,41.9371977257131,41.9371977257131,0.697242372752122,41.9452726242264,24.91,1015,39.62,125.21496832083
+46401,2874.4493619802,457.80208,225,41.9390297029703,43.1972005940594,10.3149900990099,3.01237623762376,1498.26237623762,4561.68316831683,4272.42673267327,20,40,11,32,5306926.43819614,397625.153749832,0,0,0,0,0,0,0,41.9390297029702,22188.4455704892,10.3149900990099,11.0634695059005,11.1818432509837,3.01237623762376,3.02701644655362,2.3770236690854,0.98347634256925,0.780255054116657,0.769002572844817,43.582685873501,0.0215286075225373,8834.10990099009,8896.26681697872,8829.14139431347,2.14665203686868,33051.5579866524,17438.3150296191,0,33051.5579866524,41.9371977257131,41.9371977257131,0.697242372752122,41.9452726242264,24.91,1015,39.62,125.21496832083
 46402,2874.44544831683,457.794412277228,225,44.4183762376238,45.7509275247525,11.4084554455446,3.31584158415842,1573.29207920792,4705.12475247525,4153.61188118812,20,40,11,32,5306919.35821198,397615.475367584,0,0,0,0,0,0,0,44.4183762376237,22200.4447553352,11.4084554455446,12.2362792130379,12.2541801748695,3.31584158415842,3.33048179308827,2.63809069986645,1.01067108396933,0.80183039203213,0.806490848418615,45.7652114628761,0.0271447660066775,8858.73663366337,8838.27157141457,8779.91658446696,2.0267280967289,32859.1457192525,16908.4776258418,0,32859.1457192525,44.41822331144,44.41822331144,0.675976756091459,44.401624701264,24.92,1015,39.74,150.570592828996
 46403,2874.44127049505,457.786367227723,225,46.7962871287129,48.2001757425742,12.185396039604,3.3209900990099,1660.10891089109,4530.49405940594,3867.80891089109,20,40,11,32,5306911.79727189,397605.318335878,0,0,0,0,0,0,0,46.7962871287128,22213.1201597082,12.185396039604,13.0695964036281,13.0514906358399,3.3209900990099,3.33563030793975,2.64729480461445,0.979703312234619,0.7772616664158,0.786036450104116,48.2906107279111,0.0261367375608062,8398.30297029703,8409.63122242917,8418.4056960156,1.92363704969167,31200.2341684665,16036.6187668798,0,31200.2341684665,46.7888589353984,46.7888589353984,0.641114977834414,46.7712185277334,24.93,1015,39.86,170.63915837326
 46404,2874.43686455445,457.777934653465,225,49.003801980198,50.473916039604,12.3095148514852,2.73722772277228,1736.44554455446,4377.90693069307,3668.38910891089,20,40,11,32,5306903.82236166,397594.67113425,0,0,0,0,0,0,0,49.0038019801979,22226.4339411713,12.3095148514852,13.2027215619826,13.2842040767283,2.73722772277228,2.75186793170213,2.16919361698673,1.08137015336536,0.857920512180305,0.841477819729204,50.5111533901019,0.0164164632613328,8046.29603960396,8050.42107636506,8060.17465494404,1.83688310533324,29857.2418169388,14776.2194377978,0,29857.2418169388,49.0028671698852,49.0028671698852,0.590829875066704,48.9925073578383,24.94,1015,39.98,176.820374912649
 46405,2874.43221970297,457.76916950495,225,51.0980594059406,52.6310011881188,12.9997623762376,1.87237623762376,1812.18811881188,4229.5,3541.69306930693,20,40,11,32,5306895.41227829,397583.601841606,0,0,0,0,0,0,0,51.0980594059405,22240.3424389986,12.9997623762376,13.9430550347559,13.992056558129,1.87237623762376,1.88701644655362,1.48652420791407,0.972433374561383,0.771493957151094,0.790472564876768,52.7144155646492,0.0202325709492742,7771.19306930693,7769.67742378198,7763.02211718461,1.76154840406251,28862.0224305204,14080.6498788512,0,28862.0224305204,51.0902216449367,51.0902216449367,0.562955429206292,51.0745533104711,24.95,1015,40.1,196.084262485872
 46406,2874.42735504951,457.760086831683,225,53.0303762376238,54.6212875247525,13.735495049505,1.52128712871287,1876.98514851485,4039.26930693069,3400.5099009901,20,40,11,32,5306886.60208769,397572.129825541,0,0,0,0,0,0,0,53.0303762376237,22254.8109742021,13.735495049505,14.7321741630398,14.7290514882023,1.52128712871287,1.53592733764273,1.21863632131777,0.968383652779943,0.768281052324649,0.780378810049334,54.5992847543648,0.017640497802748,7439.77920792079,7436.63614351534,7438.57776022444,1.69731433609765,27575.0153961814,13021.7932421113,0,27575.0153961814,53.0263284972061,53.0263284972061,0.520636593362308,53.0224525537191,24.96,1015,40.22,217.334776022494
 46407,2874.42229376238,457.75069980198,225,54.8854455445545,56.5320089108911,13.8427425742574,2.92673267326733,1941.5396039604,3766.03465346535,3273.24356435644,20,40,11,32,5306877.43441678,397560.272244451,0,0,0,0,0,0,0,54.8854455445544,22269.8027641911,13.8427425742574,14.8472038148663,14.9258801571433,2.92673267326733,2.94137288219718,2.32375397415553,1.10336674800418,0.875371825849385,0.86222398714007,56.4770977449594,0.0162004571657889,7039.27821782178,6925.04353494755,6925.05054350774,1.63992919271444,26078.2772581243,12152.8376105427,0,26078.2772581243,54.8685016174884,54.8685016174884,0.485897352111451,54.846216474773,24.97,1015,40.34,223.065252993164
-46408,2874.41707425742,457.741000792079,225,56.4939405940594,58.1887588118812,14.4257227722772,3.02277227722772,1663.81188118812,3382.09108910891,3078.66732673267,20,40,11,32,5306867.98059599,397548.02086301,0,0,0,0,0,0,0,56.4939405940593,22285.278638421,14.4257227722772,15.4724863969557,15.5141372944408,3.02277227722772,3.03741248615758,2.40256286424944,1.07515395737478,0.852988803984498,0.861157058316102,48.3983257675556,-0.133275760950557,6460.75841584158,6590.76044505441,6574.48116217795,1.59320206067755,19742.1171297017,11213.8637133162,0,19742.1171297017,56.5028254092735,56.5028254092735,0.450094761951445,56.5124504559078,24.98,1015,40.46,240.948852969622
+46408,2874.41707425742,457.741000792079,225,56.4939405940594,58.1887588118812,14.4257227722772,3.02277227722772,1663.81188118812,3382.09108910891,3078.66732673267,20,40,11,32,5306867.98059599,397548.02086301,0,0,0,0,0,0,0,56.4939405940593,22285.278638421,14.4257227722772,15.4724863969557,15.5141372944408,3.02277227722772,3.03741248615758,2.40256286424944,1.07515395737478,0.852988803984499,0.861157058316102,48.3983257675556,-0.133275760950557,6460.75841584158,6590.76044505441,6574.48116217795,1.59320206067755,19742.1171297017,11213.8637133162,0,19742.1171297017,56.5028254092735,56.5028254092735,0.450094761951445,56.5124504559078,24.98,1015,40.46,240.948852969622
 46409,2874.4117170297,457.731004356436,225,58.1285049504951,59.8723600990099,14.685900990099,1.34267326732673,1474.36138613861,3401.82376237624,3131.60594059406,20,40,11,32,5306858.2782698,397535.394478703,0,0,0,0,0,0,0,58.1285049504949,22301.203938366,14.685900990099,15.7515437446935,15.8300503750948,1.34267326732673,1.35731347625659,1.07038506057052,1.09197306318561,0.866332482674665,0.854871680627081,42.8874342539772,0.00216006095543853,6533.42970297029,6531.77737476718,6568.77711165803,1.54837875780196,17354.2540004288,11061.668885473,0,17354.2540004288,58.1295538672678,58.1295538672678,0.442447091243778,58.1252773317305,24.99,1015,40.58,250.99845555346
 46410,2874.40622673267,457.720710792079,225,59.730405940594,61.5223181188119,16.0517722772277,0.187029702970297,1518.40099009901,3365.89405940594,3139.87722772277,20,40,11,32,5306848.33605389,397522.393611062,0,0,0,0,0,0,0,59.730405940594,22317.5734906213,16.0517722772277,17.21652579403,17.0842995697253,0.187029702970297,0.201669911900155,0.162364043619699,1.28066618054896,1.01603487217512,0.951429493641193,44.1684944046159,0.0181445120256836,6505.77128712871,6511.65157337516,6506.85101457215,1.50686064162282,17317.6585151058,11141.5696205412,0,17317.6585151058,59.7297521811586,59.7297521811586,0.445488732041514,59.7246879654295,24.9987376237624,1015,40.6734900990099,292.530137965956
 46411,2874.40061613861,457.710102178218,225,61.2876336633663,63.1262626732673,15.9842673267327,0.581782178217822,1561.78712871287,3270.00594059406,3150.78415841584,20,40,11,32,5306838.17800597,397508.996357151,0,0,0,0,0,0,0,61.2876336633663,22334.3859946367,15.9842673267327,17.1441225290602,17.1159244722405,0.581782178217822,0.59642238714768,0.471890196702547,1.04594705953247,0.829817092912124,0.894755562018276,45.4305460188468,0.00972027429947337,6420.7900990099,6423.02843838839,6420.03419023044,1.46855904972643,17134.0720281595,10699.9824031165,0,17134.0720281595,61.2892320360748,61.2892320360748,0.427906033177566,61.2921728721534,25,1015,40.61,293.259599176859
@@ -1365,7 +1365,7 @@ Time,Lat,Long,Heading,v_veh_GPS,v_veh_CAN,vair_ar,beta_ar,n_eng,tq_l,tq_r,t_amb_
 46413,2874.3890239604,457.688017425743,225,64.3037128712871,66.2328242574258,16.4382772277228,0.233069306930693,1639.33663366337,3192.44455445544,2950.77128712871,20,40,11,32,5306817.19400013,397481.109021363,0,0,0,0,0,0,0,64.303712871287,22369.2896501097,16.4382772277228,17.6310764327254,17.6749347168136,0.233069306930693,0.24770951586055,0.196321488072873,1.30918844886541,1.03866342259927,1.02674187300704,47.6863696766431,0.0228966461276484,6143.21584158416,6148.22522301735,6147.67957776922,1.39966180395125,16400.228760167,10095.6485321314,0,16400.228760167,64.3066022938927,64.3066022938927,0.403605583330606,64.3060955212647,25,1015,40.43,313.080432122033
 46414,2874.38304356436,457.676566039604,225,65.7486336633663,67.7210926732674,17.7024752475247,1.15524752475248,1674.0396039604,3146.99405940594,2871.89504950495,20,40,11,32,5306806.36970031,397466.649799835,0,0,0,0,0,0,0,65.7486336633662,22387.3563166114,17.7024752475247,18.9870075686013,18.8337660289387,1.15524752475248,1.16988773368233,0.933390502834489,1.3743323841221,1.09034629744737,1.08986734452931,48.6958381631514,0.0154084348154615,6018.88910891089,6010.74917164984,6010.62806104941,1.36889401730738,16048.5787251214,9677.29732070978,0,16048.5787251214,65.739513381041,65.739513381041,0.386943273535279,65.7372080631907,25,1015,40.34,355.094388155385
 46415,2874.37693148515,457.664872772277,225,67.140702970297,69.1549240594059,17.8841683168317,-0.235643564356436,1708.55940594059,3074.59108910891,2803.9297029703,20,40,11,32,5306795.30686819,397451.884931622,0,0,0,0,0,0,0,67.140702970297,22405.8131542626,17.8841683168317,19.1818847049258,19.0682831923514,-0.235643564356436,-0.221003355426579,-0.179858877580595,1.2768973689222,1.01304483144662,1.01757122896536,49.6999784993029,0.00561615848414017,5878.52079207921,5879.24514263308,5880.4003010276,1.34051520880261,15665.7677230325,9539.79761246565,0,15665.7677230325,67.1268387412998,67.1268387412998,0.381538030040628,67.1237709923874,25,1015,40.25,363.905437019796
-46416,2874.37068069307,457.652951683168,225,68.5045940594059,70.5597318811881,18.0982673267327,0.887722772277227,1741.43069306931,3021.63564356436,2758.73465346535,20,40,11,32,5306783.99217336,397436.831692288,0,0,0,0,0,0,0,68.5045940594059,22424.6514330855,18.0982673267327,19.4115192314302,19.3285646411486,0.887722772277227,0.902362981207086,0.718256430614505,1.22111272542386,0.968787284876698,0.939631565372178,50.6561654822437,0.00633617880261967,5780.3702970297,5780.80633271248,5780.66390825684,1.31383493723508,15387.8023918471,9448.9160381333,0,15387.8023918471,68.4908694245662,68.4908694245662,0.377895957912623,68.4882272286008,25,1015,40.16,373.907968479676
+46416,2874.37068069307,457.652951683168,225,68.5045940594059,70.5597318811881,18.0982673267327,0.887722772277227,1741.43069306931,3021.63564356436,2758.73465346535,20,40,11,32,5306783.99217336,397436.831692288,0,0,0,0,0,0,0,68.5045940594059,22424.6514330855,18.0982673267327,19.4115192314302,19.3285646411486,0.887722772277227,0.902362981207086,0.718256430614506,1.22111272542386,0.968787284876698,0.939631565372178,50.6561654822437,0.00633617880261967,5780.3702970297,5780.80633271248,5780.66390825684,1.31383493723508,15387.8023918471,9448.9160381333,0,15387.8023918471,68.4908694245662,68.4908694245662,0.377895957912623,68.4882272286008,25,1015,40.16,373.907968479676
 46417,2874.36432178218,457.640777821782,225,69.7898712871287,71.8835674257426,16.8639625962376,0.327722772277228,1780.58910891089,2954.89108910891,2731.07326732673,20,40,11,32,5306772.48284138,397421.460010538,0,0,0,0,0,0,0,69.7898712871286,22443.8621060778,16.8639625962376,18.0876505106903,18.3519059848272,0.327722772277228,0.342362981207085,0.279900650595868,2.01913293282631,1.60190805571938,1.71241463957437,51.7952376260783,0.00561615848414017,5685.96435643564,5686.19940201941,5686.74849182592,1.28963325531264,15191.8785469822,9018.77507709421,0,15191.8785469822,69.8047959023624,69.8047959023624,0.360697208334683,69.8046236856243,25,1015,40.07,338.536339654955
 46418,2874.3578519802,457.628366237624,225,71.082801980198,73.2152860396039,16.1501771176238,0.0822772277227724,1806.58415841584,2911.20792079208,2681.89207920792,20,40,11,32,5306760.7734062,397405.788535424,0,0,0,0,0,0,0,71.0828019801979,22463.4332959018,16.1501771176238,17.3220711159842,17.8188470775296,0.0822772277227724,0.09691743665263,0.0785087327969438,2.65785296620844,2.10864574999888,2.15201842625914,52.5514029645454,0.000288008127391803,5593.1,5592.31539064797,5591.39483492657,1.26616441086196,14885.8015348203,8857.98242359612,0,14885.8015348203,71.0868005097538,71.0868005097538,0.354315753357516,71.0892515268048,25,1015,39.98,318.385498364162
 46419,2874.35126762376,457.615729405941,225,72.3296138613861,74.4995022772277,16.0069779981188,-0.491683168316832,1839.51485148515,2843.62475247525,2627.04257425743,20,40,11,32,5306748.85680805,397389.832680486,0,0,0,0,0,0,0,72.329613861386,22483.3583615508,16.0069779981188,17.1684811389985,17.7685047893001,-0.491683168316832,-0.477042959386974,-0.372748308976539,3.12237781485275,2.47718319744843,2.39844752670024,53.5093179962505,0.0227526420639525,5470.66732673267,5470.09659837271,5470.58458865008,1.24432701257769,14569.8160193703,8532.87384746712,0,14569.8160193703,72.342157533575,72.342157533575,0.34109673343571,72.342875203091,25,1015,39.89,316.508973186539
@@ -1382,7 +1382,7 @@ Time,Lat,Long,Heading,v_veh_GPS,v_veh_CAN,vair_ar,beta_ar,n_eng,tq_l,tq_r,t_amb_
 46430,2874.2713709901,457.464817920793,225,83.3586930693069,85.8594538613861,21.0693129812871,-2.14554455445545,1807.4900990099,1530.93069306931,1622.96930693069,20,40,11,32,5306604.20666781,397199.237922463,0,0,0,0,0,0,0,83.3586930693068,22722.6845770899,21.0693129812871,22.598150792323,22.7081688361286,-2.14554455445545,-2.13090434552559,-1.68103677557701,1.70565074485287,1.35320246824908,1.56406148883556,52.5777557082018,0.000288008127391799,3153.9,3169.0293304578,3172.12204559906,1.07967480114884,7161.73739012024,3080.47065860669,0,7161.73739012024,83.3556790510733,83.3556790510733,0.123216405799005,83.3551387046961,25.0012623762376,1015,42.1646534653465,516.503724082919
 46431,2874.2635950495,457.450197821782,225,83.7700891089109,86.2831917821783,19.5410484043564,-1.71247524752475,1817.24257425743,1222.80495049505,1551.04554455446,20,40,11,32,5306590.12742688,397180.771676291,0,0,0,0,0,0,0,83.7700891089108,22745.8991156213,19.5410484043564,20.9589918225588,21.431512975479,-1.71247524752475,-1.6978350385949,-1.31065369731934,2.76292726817805,2.19200795366448,1.9879533093317,52.8614437136827,0.00417611784718115,2773.8504950495,2780.70125477894,2781.44071188993,1.07437158279532,6301.27270053926,2767.94373826354,0,6301.27270053926,83.7722232134104,83.7722232134104,0.110683593111782,83.7720228861177,25.01,1015,42.16,460.543569005549
 46432,2874.25588,457.435395940594,225,84.1184455445544,86.6419989108911,20.6236435643564,-1.06306930693069,1825.06930693069,1168.76138613861,1371.15643564356,20,40,11,32,5306576.16507116,397162.080936847,0,0,0,0,0,0,0,84.1184455445543,22769.2207291526,20.6236435643564,22.1201425774243,22.372541339644,-1.06306930693069,-1.04842909800083,-0.820319021407592,2.1276266581475,1.68798310791704,1.79369435172247,53.0891141383859,-0.00417611784718115,2539.91782178218,2539.78701107734,2539.77769963912,1.06992113530684,5771.00295216707,2056.17403176858,0,5771.00295216707,84.1254759337318,84.1254759337318,0.082280876602503,84.1249095030997,25.02,1015,42.12,501.764792031172
-46433,2874.24816435644,457.420513168317,225,84.4057722772277,86.9379454455446,19.8810214518812,-1.50722772277228,1827.17326732673,1150.79306930693,1172.70495049505,20,40,11,32,5306562.20347073,397143.289335343,0,0,0,0,0,0,0,84.4057722772276,22792.6277996697,19.8810214518812,21.3236340963773,21.7567973012902,-1.50722772277228,-1.49258751384242,-1.16133693192335,2.72607737259927,2.16277256077857,2.08728519176116,53.1503158654567,-0.00151204266880697,2323.49801980198,2324.27190471522,2324.43863765549,1.06627966432188,5267.19443169265,1465.8870767498,0,5267.19443169265,84.3857576708164,84.3857576708164,0.0586475726780645,84.3853584264166,25.03,1015,42.08,475.008667472497
+46433,2874.24816435644,457.420513168317,225,84.4057722772277,86.9379454455446,19.8810214518812,-1.50722772277228,1827.17326732673,1150.79306930693,1172.70495049505,20,40,11,32,5306562.20347073,397143.289335343,0,0,0,0,0,0,0,84.4057722772276,22792.6277996697,19.8810214518812,21.3236340963773,21.7567973012902,-1.50722772277228,-1.49258751384242,-1.16133693192335,2.72607737259928,2.16277256077857,2.08728519176116,53.1503158654567,-0.00151204266880697,2323.49801980198,2324.27190471522,2324.43863765549,1.06627966432188,5267.19443169265,1465.8870767498,0,5267.19443169265,84.3857576708164,84.3857576708164,0.0586475726780645,84.3853584264166,25.03,1015,42.08,475.008667472497
 46434,2874.24043386139,457.40558960396,225,84.5594356435643,87.0962187128713,22.0328910891089,-0.91,1831.62871287129,1041.32871287129,1100.27623762376,20,40,11,32,5306548.21532634,397124.446344518,0,0,0,0,0,0,0,84.5594356435643,22816.095762981,22.0328910891089,23.6316483439554,23.5966701239933,-0.91,-0.895359791070141,-0.705231676076725,2.01736926703333,1.60050882618108,1.60816547731661,53.279919522783,-0.00129603657326311,2141.60495049505,2145.7682874228,2146.11428315862,1.06434236857307,4857.87985239891,1117.51913499796,0,4857.87985239891,84.5587202235074,84.5587202235074,0.0447110305089931,84.5595072276786,25.04,1015,42.04,558.667105086764
 46435,2874.23268940594,457.390643168317,225,84.6869108910891,87.2275182178217,21.1993349833663,-2.90435643564356,1833.02475247525,995.073267326732,1005.62871287129,20,40,11,32,5306534.20189101,397105.574314046,0,0,0,0,0,0,0,84.686910891089,22839.6051827005,21.1993349833663,22.7376074899341,22.8943927536628,-2.90435643564356,-2.88971622671371,-2.27849758438017,2.46784798333472,1.95790257319071,1.99318063978472,53.3205286687452,-0.00446412597457295,2000.70198019802,2004.84590726399,2004.92160336995,1.06273933356444,4534.80128464789,764.916592242035,0,4534.80128464789,84.6892057641407,84.6892057641407,0.0306328900216893,84.6894317096061,25.05,1015,42,527.053612132697
 46436,2874.22494831683,457.375661089109,225,84.784,87.32752,23.666900990099,-2.0539603960396,1835.15841584158,976.705940594059,937.274257425743,20,40,11,32,5306520.1955439,397086.657907671,0,0,0,0,0,0,0,84.7839999999999,22863.1453149062,23.666900990099,25.3842257617155,25.0000510279053,-2.0539603960396,-2.03932018710975,-1.6345851317928,2.52604074902822,2.00407063802362,1.93033921012057,53.3825944201982,0.00432012191087705,1913.9801980198,1913.25249485345,1913.13253182461,1.06152133396471,4338.35243819415,451.814957747788,0,4338.35243819415,84.7869975492598,84.7869975492598,0.0180374473090629,84.7868044318717,25.06,1015,41.96,626.185739438096
@@ -1404,14 +1404,14 @@ Time,Lat,Long,Heading,v_veh_GPS,v_veh_CAN,vair_ar,beta_ar,n_eng,tq_l,tq_r,t_amb_
 46452,2874.09933871287,457.13672970297,225,85.2240297029703,87.7807505940593,22.4197227722772,-2.64039603960396,1843.84653465347,682.655652722772,692.56491130297,20,40,11,32,5306292.8392232,396784.898722861,2,2,5306291.92577675,396785.642936608,43.2831759318907,0,0,85.2240297029702,23241.0450570404,22.4197227722772,24.0465494237984,23.9642411185009,-2.64039603960396,-2.62575583067411,-2.09018784564823,1.75015831791685,1.38851318933762,1.60586095850117,53.6353215519845,0.00756021334403485,1375.22056402574,1374.16227201285,1374.07795684901,1.05604073177638,3115.75517573535,178.19081807777,0,3115.75517573535,85.2204193706498,85.2204193706498,0.00706630068948897,85.2204019801979,25.12,1015,39.98,575.312143378772
 46453,2874.09148188119,457.121680495049,225,85.1961782178218,87.7520635643564,19.6859845980198,-2.36059405940594,1842.00495049505,693.916730038614,678.048352442574,20,40,11,32,5306278.62101051,396765.893292931,2,2,5306276.94658185,396767.257502973,66.9981595835001,0,0,85.1961782178217,23264.7169124034,19.6859845980198,21.1144449197993,21.6367060565305,-2.36059405940594,-2.34595385047609,-1.81825819918151,2.83769224882569,2.25132382278733,2.04289818049424,53.5817520402896,-0.00936026414023362,1371.96508248119,1371.0433952653,1370.9699635399,1.05638548468965,3106.29472558463,-398.412381967072,0,3106.29472558463,85.2030959709832,85.2030959709832,-0.0158603731660229,85.2030876001885,25.13,1015,39.82,468.548267813131
 46454,2874.08361039604,457.10677970297,225,85.1320495049506,87.686010990099,21.2852288227723,-1.79960396039604,1839.51485148515,687.785852988119,660.7291524,20,40,11,32,5306264.37240798,396747.072148645,2,2,5306262.04550447,396748.967950612,90.5894680001334,0,0,85.1320495049504,23288.3759738996,21.2852288227723,22.82973398389,22.9935161953276,-1.79960396039604,-1.78496375146618,-1.41802982001449,2.31440555638019,1.83616682423061,1.93735169577684,53.5093179962506,0.000936026414023362,1348.51500538812,1348.57731794894,1348.58228245184,1.05718164089449,3051.35627526096,-609.466757115369,0,3051.35627526096,85.1287350259777,85.1287350259777,-0.0243862257513065,85.1288892975011,25.14,1015,39.66,531.253101461656
-46455,2874.07573029703,457.091897920792,225,85.0599900990099,87.6117898019802,25.048099009901,-2.34336633663366,1841.07920792079,669.899721666337,656.530503831683,20,40,11,32,5306250.10748615,396728.274304261,2,2,5306247.14932591,396730.684411066,114.17302061356,0,0,85.0599900990098,23312.0120746696,25.048099009901,26.8656466867008,26.1911418494078,-2.34336633663366,-2.32872612770381,-1.89123517178168,3.54329865150231,2.81112677693591,2.70780245920415,53.5548232803785,0.00806422756697049,1326.43022549802,1327.41924795077,1327.49804434091,1.05807704731713,3006.49116584474,-375.876114322615,0,3006.49116584474,85.0608598176648,85.0608598176648,-0.0151006437277415,85.0608601603016,25.15,1015,39.5,686.44138686344
+46455,2874.07573029703,457.091897920792,225,85.0599900990099,87.6117898019802,25.048099009901,-2.34336633663366,1841.07920792079,669.899721666337,656.530503831683,20,40,11,32,5306250.10748615,396728.274304261,2,2,5306247.14932591,396730.684411066,114.17302061356,0,0,85.0599900990098,23312.0120746696,25.048099009901,26.8656466867008,26.1911418494079,-2.34336633663366,-2.32872612770381,-1.89123517178168,3.54329865150231,2.81112677693591,2.70780245920415,53.5548232803785,0.00806422756697049,1326.43022549802,1327.41924795077,1327.49804434091,1.05807704731713,3006.49116584474,-375.876114322615,0,3006.49116584474,85.0608598176648,85.0608598176648,-0.0151006437277415,85.0608601603016,25.15,1015,39.5,686.44138686344
 46456,2874.06787861386,457.076981386139,225,85.0258613861386,87.5766372277228,25.1117227722772,-3.03207920792079,1840.95544554455,656.702762727723,669.312624853466,20,40,11,32,5306235.89603538,396709.434021518,2,2,5306232.25369884,396712.401548413,137.755700116706,0,0,85.0258613861385,23335.6345077279,25.1117227722772,26.9338871356148,26.2425906141795,-3.03207920792079,-3.01743899899094,-2.45031051990866,3.65261157520516,2.89785175191253,2.89998008028767,53.5512231787861,-0.00993628039501722,1326.01538758119,1327.02181724786,1327.10200048755,1.05850176005372,3006.55803015257,148.623561441546,0,3006.55803015257,85.0336102342907,85.0336102342907,0.00602609765929369,85.0340300801508,25.16,1015,39.34,689.339870331134
 46457,2874.06003564356,457.06204980198,225,85.0177326732673,87.5682646534653,25.4983366336634,-2.64069306930693,1839.24257425743,660.328199353465,687.323692363366,20,40,11,32,5306221.70111993,396690.575189122,2,2,5306217.35558525,396694.115633807,161.342316269077,0,0,85.0177326732672,23359.2552125959,25.4983366336634,27.3485545880261,26.5712266547636,-2.64069306930693,-2.62605286037708,-2.13724647892,4.02530697004056,3.19353498584436,3.18912274998941,53.5013977727473,0.00273607721022213,1347.65189171683,1347.75042179769,1347.75827178607,1.05860334895029,3053.0656369489,-438.572522921563,0,3053.0656369489,85.0216578766786,85.0216578766786,-0.017564999074185,85.0216825082507,25.17,1015,39.18,706.455362255305
 46458,2874.05217584158,457.047095940594,225,85.0277524752474,87.578585049505,25.5118217821782,-2.28445544554455,1840.82673267327,677.442821832674,694.004413944554,20,40,11,32,5306207.47558393,396671.68795684,2,2,5306202.43134824,396675.797655366,184.970290888398,0,0,85.0277524752474,23382.8687271449,25.5118217821782,27.3630182499341,26.5837084172692,-2.28445544554455,-2.2698152366147,-1.84408744348739,4.01648394135119,3.18653510955907,3.08449550537341,53.54747907313,0.0144724084014381,1371.44723577723,1370.54727817468,1370.47557766868,1.05847800102087,3109.26743213237,332.790664883678,0,3109.26743213237,85.0223061464561,85.0223061464561,0.0131931509982673,85.0220569542668,25.18,1015,39.02,707.244508971909
 46459,2874.04430811881,457.032161584158,225,85.0438811881188,87.5951976237624,24.9980891089109,-2.83693069306931,1840.91584158416,692.311525182178,683.212564990099,20,40,11,32,5306193.23500143,396652.824664057,2,2,5306187.51283106,396657.486697432,208.589209901777,0,0,85.0438811881188,23406.4896570129,24.9980891089109,26.812007952268,26.1469417093028,-2.83693069306931,-2.82229048413945,-2.28737420191266,3.57662737169489,2.83756859485454,2.91768262459591,53.5500711462765,-0.0163444612294849,1375.52409017228,1374.45306175444,1374.36773186865,1.05827736514521,3118.08004123372,62.505642759935,0,3118.08004123372,85.041260268601,85.041260268601,0.00263454563278747,85.0413978312117,25.19,1015,38.86,684.748647180957
 46460,2874.03646722772,457.017258019802,225,85.0469801980197,87.5983896039605,25.0805346534653,-3.16663366336634,1840.10396039604,691.264092121782,664.870121655445,20,40,11,32,5306179.04349405,396634.000523172,2,2,5306172.63306506,396639.22330263,232.146778233836,0,0,85.0469801980197,23430.1148621834,25.0805346534653,26.9004359351667,26.2173724618115,-3.16663366336634,-3.15199345443648,-2.55720196360189,3.66075703559276,2.90431406967295,3.04900040192307,53.5264544798304,0.00100802844587131,1356.13421377723,1355.87681313333,1355.85630577118,1.05823875596808,3072.66401874902,-28.6978362451481,0,3072.66401874902,85.0463172238015,85.0463172238015,-0.00115593242491588,85.0463323903818,25.1987376237624,1015,38.7164108910891,688.322608701294
 46461,2874.02865128713,457.002306930693,225,85.0359108910891,87.5869882178218,25.9708613861386,-3.12594059405941,1843.10396039604,675.263527771287,655.841041761386,20,40,11,32,5306164.8993246,396615.117920239,1.2970297029703,2,5306157.74357359,396620.947539121,79.2687500250948,0,0,85.035910891089,23453.7375729645,25.9708613861386,27.8553668233858,26.9743612697764,-3.12594059405941,-3.11130038512955,-2.54042957468033,4.49482631332806,3.56603488721317,3.48484011668132,53.6137209424301,0.0156244409110053,1331.10456953267,1331.89744962493,1331.96061916057,1.05837686308269,3021.27662513643,27.0250724202644,0,3021.27662513643,85.0444134888736,85.0444134888736,0.000953065603578399,85.0444573314474,25.2,1015,38.67,728.054565692452
-46462,2874.02084188119,456.987302871287,225,85.0225445544555,87.5732208910891,26.0925346534654,-2.7939603960396,1841.5297029703,659.0206772,664.426619715841,20,40,11,32,5306150.76850274,396596.169460861,1,2,5306142.8278519,396602.638342147,28.3276387352008,0,0,85.0225445544553,23477.3591660063,26.0925346534654,27.9858689828481,27.077098899909,-2.7939603960396,-2.77932018710975,-2.26895912974136,4.63295680672788,3.67562269419721,3.64561922983136,53.5679276501748,-0.0157684449747012,1323.44729691584,1324.56148744647,1324.6502561002,1.05854348549824,3001.78854121975,-229.456916943696,0,3001.78854121975,85.026293010489,85.026293010489,-0.00904867714495752,85.02647223008,25.2,1015,38.64,733.70514410782
+46462,2874.02084188119,456.987302871287,225,85.0225445544555,87.5732208910891,26.0925346534654,-2.7939603960396,1841.5297029703,659.0206772,664.426619715841,20,40,11,32,5306150.76850274,396596.169460861,1,2,5306142.8278519,396602.638342147,28.3276387352008,0,0,85.0225445544553,23477.3591660063,26.0925346534654,27.9858689828481,27.077098899909,-2.7939603960396,-2.77932018710975,-2.26895912974135,4.63295680672788,3.67562269419721,3.64561922983136,53.5679276501748,-0.0157684449747012,1323.44729691584,1324.56148744647,1324.6502561002,1.05854348549824,3001.78854121975,-229.456916943696,0,3001.78854121975,85.026293010489,85.026293010489,-0.00904867714495752,85.02647223008,25.2,1015,38.64,733.70514410782
 46463,2874.01304445545,456.972284950495,225,85.0071584158416,87.5573731683168,25.5665148514851,-2.84069306930693,1839.21782178218,657.469142326733,682.733314742574,20,40,11,32,5306136.66024287,396577.204040338,1,2,5306127.91294213,396584.330062026,51.942203189509,0,0,85.0071584158415,23500.9734479645,25.5665148514851,27.4216799741484,26.6287212663281,-2.84069306930693,-2.82605286037708,-2.29824454848405,4.10320814660324,3.25533900095252,3.26961841261608,53.5006777524288,-0.00374410565609344,1340.20245706931,1340.61357640177,1340.64633068263,1.05873508326034,3036.53249952561,-251.520853979759,0,3036.53249952561,85.0006820899911,85.0006820899911,-0.0100303347166162,85.0005665252239,25.2,1015,38.61,709.703395510158
 46464,2874.00526306931,456.957301980198,225,85.0244257425742,87.5751585148515,24.7668613861386,-3.16316831683168,1847.52475247525,672.035397148515,693.930035861386,20,40,11,32,5306122.58097481,396558.282594439,1,2,5306113.03113095,396566.062410926,75.5043631237943,0,0,85.0244257425741,23524.5849616884,24.7668613861386,26.564001814089,25.9489031600976,-3.16316831683168,-3.14852810790183,-2.54895141586522,3.35929245882046,2.66514282631671,2.72052830396853,53.7423165713106,0.0180725099938357,1365.9654330099,1365.29549992428,1365.24212569762,1.05851952855078,3108.27816158521,400.827152642729,0,3108.27816158521,85.0170961670423,85.0170961670423,0.0158848805672504,85.0167790664779,25.2,1015,38.58,674.103932986889
 46465,2873.99741475247,456.942348118812,225,85.0272376237624,87.5780547524753,25.0015940594059,-2.66079207920792,1840.5099009901,689.327294153465,687.722569314852,20,40,11,32,5306108.37713881,396539.395091895,1,2,5306098.11624886,396547.754164774,99.1188837638587,0,0,85.0272376237623,23548.2052664464,25.0015940594059,26.8157672300327,26.1493189822538,-2.66079207920792,-2.64615187027807,-2.14400878550926,3.53586287544388,2.80522749741109,2.80146781753711,53.5382628130534,-0.0084962397580582,1377.04986346832,1375.91481135577,1375.82438063938,1.05848451311857,3121.46002423357,-222.655007921431,0,3121.46002423357,85.0216817959023,85.0216817959023,-0.00883627966756007,85.0216389438943,25.2,1015,38.55,684.37693555831
@@ -1428,7 +1428,7 @@ Time,Lat,Long,Heading,v_veh_GPS,v_veh_CAN,vair_ar,beta_ar,n_eng,tq_l,tq_r,t_amb_
 46476,2873.90998148515,456.779326138614,225,84.9777821782179,87.5271156435644,23.3357227722772,-3.34108910891089,1838,694.048514851485,779.666336633663,20,40,11,32,5305950.06516836,396333.421485898,0,0,0,0,0,0,0,84.9777821782177,23808.001482013,23.3357227722772,25.029016490672,24.7285797757202,-3.34108910891089,-3.32644889998104,-2.66632882272007,2.15266399249906,1.707846836025,1.6923837959135,53.4652527527596,0.00216006095543853,1473.71485148515,1473.52112537986,1473.64866572372,1.05910122381728,3338.0734256956,124.305641490804,0,3338.0734256956,84.9775004411331,84.9775004411331,0.0049545796163637,84.9776057520037,25.2,1015,38.46,612.034398924142
 46477,2873.9022460396,456.764165445545,225,84.9744653465347,87.5236993069307,23.4427920792079,-3.30207920792079,1841.75742574257,703.071287128713,790.19603960396,20,40,11,32,5305936.07576154,396314.278977976,0,0,0,0,0,0,0,84.9744653465346,23831.607346782,23.4427920792079,25.1438549927816,24.8195113407247,-3.30207920792079,-3.28743899899094,-2.63735242877351,2.23245149289474,1.77114739318576,1.7558634861723,53.5745518371048,0.000504014222935656,1493.26732673267,1491.66578766788,1491.40773220179,1.0591422382918,3389.46799667962,25.936365484758,0,3389.46799667962,84.9836847367904,84.9836847367904,0.00103339541874481,84.9840026402639,25.2,1015,38.47,616.491632991723
 46478,2873.89453207921,456.749090891089,225,85.0178514851485,87.5683870297029,22.6783465346535,-2.92366336633663,1839.4702970297,708.790099009901,754.949504950496,20,40,11,32,5305922.12428667,396295.244392054,0,0,0,0,0,0,0,85.0178514851484,23855.217706848,22.6783465346535,24.3239395212281,24.1716379702695,-2.92366336633663,-2.90902315740678,-2.31863134774016,1.88335622322284,1.49418765685074,1.60101390203199,53.5080219596773,0.000936026414023365,1463.7396039604,1463.77144397608,1463.67058934465,1.05860211434193,3316.38996100347,104.21359507041,0,3316.38996100347,85.0083839819625,85.0083839819625,0.0041608121208202,85.0081228665722,25.2,1015,38.48,585.108511676322
-46479,2873.88680257426,456.734013366337,225,85.0085445544554,87.5588008910891,21.6822623762376,-1.55653465346535,1839.4900990099,701.374257425743,720.020792079208,20,40,11,32,5305908.14414629,396276.205496172,0,0,0,0,0,0,0,85.0085445544553,23878.8328504949,21.6822623762376,23.2555772052039,23.3242307200523,-1.55653465346535,-1.54189444453549,-1.218323431698,2.14807146396596,1.70420328768121,1.60991495151242,53.5085979759321,-0.00187205282804672,1421.39504950495,1426.40223507499,1426.68629891561,1.05871790740318,3221.04930999415,69.296458662637,0,3221.04930999415,85.0091164591706,85.0091164591706,0.0027870361293543,85.0092746817538,25.2,1015,38.49,546.100760675281
+46479,2873.88680257426,456.734013366337,225,85.0085445544554,87.5588008910891,21.6822623762376,-1.55653465346535,1839.4900990099,701.374257425743,720.020792079208,20,40,11,32,5305908.14414629,396276.205496172,0,0,0,0,0,0,0,85.0085445544553,23878.8328504949,21.6822623762376,23.2555772052039,23.3242307200523,-1.55653465346535,-1.54189444453549,-1.21832343169801,2.14807146396596,1.70420328768121,1.60991495151242,53.5085979759321,-0.00187205282804672,1421.39504950495,1426.40223507499,1426.68629891561,1.05871790740318,3221.04930999415,69.296458662637,0,3221.04930999415,85.0091164591706,85.0091164591706,0.0027870361293543,85.0092746817538,25.2,1015,38.49,546.100760675281
 46480,2873.8790709901,456.718967326733,225,84.9993465346535,87.549326930693,23.0672299229703,-2.33623762376238,1840.35643564356,725.989108910891,731.773267326732,20,40,11,32,5305894.15951106,396257.205658793,0,0,0,0,0,0,0,84.9993465346534,23902.445286496,23.0672299229703,24.7410411826642,24.501861626305,-2.33623762376238,-2.32159741483252,-1.85194181902747,2.13431175590111,1.69328682604806,1.87011487154123,53.5337986870789,0.00208805892359057,1457.76237623762,1456.80227428683,1456.58628005658,1.05883188870746,3305.19929569526,-52.1960819761202,0,3305.19929569526,85.0119369669639,85.0119369669639,-0.00210491346164158,85.0119907590758,25.2,1015,38.4987376237624,601.727311764293
 46481,2873.87134544555,456.70403990099,225,85.0060495049505,87.556230990099,23.5729125410891,-2.33851485148515,1839.78217821782,705.828712871287,738.314851485149,20,40,11,32,5305880.18346808,396238.353684382,0,0,0,0,0,0,0,85.0060495049504,23926.0594021726,23.5729125410891,25.2834172946644,24.9324859893019,-2.33851485148515,-2.32387464255529,-1.89027329707849,3.79847813449832,3.01357707766645,2.67940178273162,53.5170942156902,0.00684019302555534,1444.14356435644,1445.47675718067,1445.55840641207,1.05874845940188,3272.89997332329,-111.396983688032,0,3272.89997332329,84.9995841584157,84.9995841584157,-0.00451208487185618,84.9997346534652,25.2,1015,38.5,628.104953269082
 46482,2873.86360712871,456.689066039603,225,84.9967326732673,87.5466346534654,22.253,-2.75178217821782,1839.58415841584,717.591089108911,730.984158415842,20,40,11,32,5305866.18486726,396219.443349133,0,0,0,0,0,0,0,84.9967326732672,23949.6698499174,22.253,23.8677288636889,23.808769839478,-2.75178217821782,-2.73714196928797,-2.17474352192981,1.9521361308614,1.54875518250821,1.74397403919201,53.5113340531423,-0.00496814019750861,1448.57524752475,1452.82057641408,1452.81729372937,1.05886440394956,3283.24710137979,263.463387459592,0,3283.24710137979,85.0051982158611,85.0051982158611,0.0105790281998351,85.0054868458273,25.2,1015,38.5,568.269697666201
@@ -1455,10 +1455,10 @@ Time,Lat,Long,Heading,v_veh_GPS,v_veh_CAN,vair_ar,beta_ar,n_eng,tq_l,tq_r,t_amb_
 46503,2873.73566316832,456.445734851485,225,33.3785148514852,34.3798702970297,9.92931683168317,-2.93069306930693,1324.90594059406,-2844.0603960396,-2289.2,20,40,11,32,5305634.64795177,395912.056738388,0,0,0,0,0,0,0,33.3785148514851,24334.5991126787,9.92931683168317,10.649810899217,10.3625924439213,-2.93069306930693,-2.91605286037708,-2.37460348533655,1.51102309901221,1.19879183551207,1.16925939656542,38.5399515709979,0.143572051504814,-5133.2603960396,-4738.41444956377,-4496.79203110214,2.69699131287145,-19771.6183818558,-11850.0377963605,0,-19771.6183818558,33.5147734535829,33.5147734535829,-0.476396649565945,34.2998566133948,25.3,1015,38.05,107.644808904556
 46504,2873.73265247525,456.439867227723,225,33.3417524752475,34.342005049505,9.70310891089109,-1.77693069306931,1715.00495049505,2183.18613861386,2221.85445544554,20,40,11,32,5305629.20295556,395904.646683572,0,0,0,0,0,0,0,33.3417524752475,24343.7882097084,9.70310891089109,10.4071888113959,10.1683386194814,-1.77693069306931,-1.76229048413945,-1.42984749887669,1.32738043746059,1.05309629752612,1.09598137350903,49.887471790235,0.00100802844587131,4405.04059405941,3595.10615625919,910.026431204444,2.69986400046575,23732.6445996082,7167.54578007864,0,23732.6445996082,33.3779032447799,33.3779032447799,0.286682133559891,33.6475214751257,25.3,1015,38,103.79343578986
 46505,2873.72961148515,456.433794455445,225,34.2977128712871,35.3266442574258,9.54447524752475,-2.5350495049505,1717.71287128713,1106.4603960396,1323.54554455446,20,40,11,32,5305623.70645817,395896.980042599,0,0,0,0,0,0,0,34.2977128712871,24353.2103885038,9.54447524752475,10.2370443245455,10.0880438178552,-2.5350495049505,-2.52040929602064,-2.02620934479354,1.35544330293824,1.07536037412274,1.12387556143602,49.9662420130766,-0.000504014222935659,2430.00594059406,2511.42121360651,2764.79493912051,2.62412524570854,12757.1563342686,3298.58047282461,0,12757.1563342686,34.2694541711596,34.2694541711596,0.13195057129475,34.1232359496262,25.3,1015,37.95,102.56464150952
-46506,2873.72657386139,456.427532970297,225,34.6339702970297,35.6729894059406,10.3878811881188,-2.24435643564356,1438.59900990099,846.659405940594,961.927722772277,20,40,10.8118811881188,32,5305618.22044732,395889.07841386,0,0,0,0,0,0,0,34.6339702970297,24362.782435561,10.3878811881188,11.1416497400905,10.824941980828,-2.24435643564356,-2.22971622671371,-1.81587696227397,1.644403338568,1.30461096051595,1.27164597473486,41.847148897838,-0.148900201861562,1808.58712871287,1574.63703558475,966.250807034129,2.59866935260993,7948.50422571308,1912.18700528043,0,7948.50422571308,34.6162800705813,34.6162800705813,0.0788539249964699,34.5027630903798,25.3,1015,37.9,117.380890410071
+46506,2873.72657386139,456.427532970297,225,34.6339702970297,35.6729894059406,10.3878811881188,-2.24435643564356,1438.59900990099,846.659405940594,961.927722772277,20,40,10.8118811881188,32,5305618.22044732,395889.07841386,0,0,0,0,0,0,0,34.6339702970297,24362.782435561,10.3878811881188,11.1416497400905,10.824941980828,-2.24435643564356,-2.22971622671371,-1.81587696227397,1.644403338568,1.30461096051595,1.27164597473485,41.847148897838,-0.148900201861562,1808.58712871287,1574.63703558475,966.250807034129,2.59866935260993,7948.50422571308,1912.18700528043,0,7948.50422571308,34.6162800705813,34.6162800705813,0.0788539249964699,34.5027630903798,25.3,1015,37.9,117.380890410071
 46507,2873.72372356436,456.421019405941,225,34.4897524752475,35.5244450495049,9.60917821782179,-2.28752475247525,1212.89108910891,-803.319801980198,-692.086138613861,20,40,10.990099009901,32,5305613.08710573,395880.869006916,0,0,0,0,0,0,0,34.4897524752475,24372.4121546479,9.60917821782179,10.3064422911893,10.1541092470547,-2.28752475247525,-2.27288454354539,-1.82137750791985,1.16997099244402,0.928213257920896,0.932601256058592,35.2815716217507,-0.00460813003826886,-1495.40594059406,-1211.51390059798,-487.976925639389,2.60956903602935,-5508.47457264484,-4238.00611953884,0,-5508.47457264484,34.469279384374,34.469279384374,-0.169459148885188,34.3354613446827,25.3,1015,37.85,103.684421418883
 46508,2873.72140207921,456.414239306931,225,33.7869900990099,34.8005998019802,9.26473267326732,-2.74178217821782,1191.93069306931,-830.810891089109,-700.714851485149,20,40,11,32,5305608.93930699,395872.345227589,0,0,0,0,0,0,0,33.7869900990099,24381.8915275302,9.26473267326732,9.93700298566955,9.82071853812739,-2.74178217821782,-2.72714196928797,-2.18357330027004,1.15370171260331,0.915305791545658,0.87874042803033,34.6718584160623,-0.0159844510702451,-1531.52574257426,-1535.04966179786,-1657.5825568573,2.66382292207676,-5658.00339903245,-4707.5064959905,0,-5658.00339903245,33.7860011763552,33.7860011763552,-0.188087496868501,33.7771307535507,25.3,1015,37.8,97.0566363136563
-46509,2873.71974128713,456.407237128713,225,33.0582772277228,34.0500255445544,9.22534653465347,-2.40108910891089,1167.66336633663,-1124.23465346535,-951.906930693069,20,40,10.7029702970297,32,5305606.0203423,395863.566867083,0,0,0,0,0,0,0,33.0582772277227,24391.1784726072,9.22534653465347,9.89475889824658,9.74543365458349,-2.40108910891089,-2.38644889998104,-1.92179160244859,1.08703639780452,0.862415908429456,0.990996649922599,33.9659504958249,-0.0141123982421984,-2076.14158415842,-2235.23305558279,-2594.58494385477,2.72259809981943,-7675.74841757076,-5720.73475154386,0,-7675.74841757076,33.0524003529065,33.0524003529065,-0.228641799823545,32.9782777418504,25.3,1015,37.75,95.3796280148859
+46509,2873.71974128713,456.407237128713,225,33.0582772277228,34.0500255445544,9.22534653465347,-2.40108910891089,1167.66336633663,-1124.23465346535,-951.906930693069,20,40,10.7029702970297,32,5305606.0203423,395863.566867083,0,0,0,0,0,0,0,33.0582772277227,24391.1784726072,9.22534653465347,9.89475889824658,9.74543365458348,-2.40108910891089,-2.38644889998104,-1.92179160244859,1.08703639780452,0.862415908429456,0.990996649922599,33.9659504958249,-0.0141123982421984,-2076.14158415842,-2235.23305558279,-2594.58494385477,2.72259809981943,-7675.74841757076,-5720.73475154386,0,-7675.74841757076,33.0524003529065,33.0524003529065,-0.228641799823545,32.9782777418504,25.3,1015,37.75,95.3796280148859
 46510,2873.71864386139,456.400195148515,196.485148514851,32.0650891089109,33.0270417821782,8.3950099009901,-3.2709900990099,1127.21287128713,-2318.46633663366,-1945.5297029703,20,40,11,32,5305604.14583286,395854.757746164,0,0,0,0,0,0,0,32.0650891089108,24400.2315545654,8.3950099009901,9.00417112860359,8.98184390565891,-3.2709900990099,-3.25634989008005,-2.56266197765031,1.83788051962572,1.45810885552597,1.4011755063831,32.7892932913657,-0.0118083332230639,-4263.99603960396,-4203.78272718361,-4556.41077724904,2.80712184978209,-15694.1627665867,-8626.46700806412,0,-15694.1627665867,32.0418272718361,32.0418272718361,-0.344902188238626,31.8358812182693,25.3,1015,37.7037871287129,83.0105243405556
 46511,2873.71804267327,456.393141089109,112.722772277228,30.3707623762376,31.2818852475248,10.0335247524753,-3.42514851485149,1092.79702970297,-4183.40396039604,-3466.86831683168,20,40,10.9306930693069,32,5305603.19081022,395845.950160718,0,0,0,0,0,0,0,30.3707623762376,24408.9305635313,10.0335247524753,10.7615803864284,10.2787239502673,-3.42514851485149,-3.41050830592163,-2.82064349479373,2.39707428367889,1.90175324405612,1.81507335249195,31.7881770405518,0.0351369915418,-7650.27227722772,-7314.28712871287,-5696.92821551525,2.9650803188027,-29097.854625818,-16153.5129031185,0,-29097.854625818,30.3096968924615,30.3096968924615,-0.646665904214183,30.1588582069717,25.3,1015,37.68,105.860207944788
 46512,2873.71788,456.386552673267,50.3465346534653,28.0633861386139,28.9052877227723,9.19470297029704,-3.4509900990099,1365.34158415842,-2856.81584158416,-2297.49504950495,20,40,10.6831683168317,32,5305603.03761098,395837.737301154,0,0,0,0,0,0,0,28.0633861386138,24417.0154573706,9.19470297029704,9.86189176637778,9.4326355618059,-3.4509900990099,-3.43634989008005,-2.83862542537764,2.13636381935852,1.69491486000751,1.74458917291882,39.716176763266,0.0434172252043143,-5154.31089108911,-5467.27499264778,-5930.58703848671,3.20764759434468,-25769.1597199647,-11723.3385063855,0,-25769.1597199647,28.108774924027,28.108774924027,-0.469663921837729,28.385853381968,25.3,1015,37.66,89.1436348476843
@@ -1468,7 +1468,7 @@ Time,Lat,Long,Heading,v_veh_GPS,v_veh_CAN,vair_ar,beta_ar,n_eng,tq_l,tq_r,t_amb_
 46516,2873.72010118812,456.364834554455,45,21.4885346534653,22.1331906930693,7.3039801980198,-3.5,1449.95544554455,-1794.19306930693,-1458.33564356436,20,40,11,32,5305607.64038257,395810.756555294,0,0,0,0,0,0,0,21.4885346534653,24444.5660221671,7.3039801980198,7.83397380092975,7.44686928314583,-3.5,-3.48535979107015,-2.89186406947024,1.98910613688057,1.57808586673374,1.53973761787033,42.1774942199564,0.00324009143315779,-3252.52871287129,-3445.43833937849,-3552.01253648905,4.18941931505917,-22938.6010733024,-7860.99513382577,0,-22938.6010733024,21.49314390746,21.49314390746,-0.314511649184721,21.9317083114345,25.3,1015,37.58,55.8698589066295
 46517,2873.72106663366,456.360365148514,45,20.7631881188119,21.3860837623762,6.75647524752476,-3.5,1399.28217821782,-1512.33861386139,-1252.51584158416,20,40,11,32,5305609.52923651,395805.221150335,0,0,0,0,0,0,0,20.7631881188119,24450.4125065731,6.75647524752476,7.24674063192137,6.9394195199912,-3.5,-3.48535979107015,-2.87307240541707,1.59805208895643,1.26783753221002,1.30448330450393,40.7034686239651,-0.0200885668855783,-2764.85445544554,-2314.98110969513,-887.125241789177,4.33491988915145,-19507.7062492109,-3309.9512687668,0,-19507.7062492109,20.7629266738555,20.7629266738555,-0.131883856702499,21.2555787817294,25.3,1015,37.56,48.4609642233985
 46518,2873.72215316832,456.356093069307,45,20.4616534653465,21.0755030693069,6.20189108910891,-3.5,1395.0396039604,992.30594059406,1193.5297029703,20,40,10.970297029703,32,5305611.63795599,395799.935615137,0,0,0,0,0,0,0,20.4616534653465,24456.1185537403,6.20189108910891,6.65191457138273,6.45024870317215,-3.5,-3.48535979107015,-2.8400594313019,1.08925588346011,0.864176769189759,0.89558674799019,40.5800571413777,0.0186485262486193,2185.83564356436,2056.35383785903,1369.7704973454,4.39880862036746,15586.3061085412,2448.40852209551,0,15586.3061085412,20.5462752671306,20.5462752671306,0.0974577655785358,21.2915561208456,25.3,1015,37.54,41.8556475281492
-46519,2873.7233680198,456.351860792079,45,21.5429306930693,22.1892186138614,6.45916831683168,-3.5,1242.82673267327,2677.09702970297,3279.22376237624,20,40,11,32,5305613.98347181,395794.703958069,0,0,0,0,0,0,0,21.5429306930693,24461.9276618261,6.45916831683168,6.92786042650738,6.73115530269143,-3.5,-3.48535979107015,-2.83722735881649,1.03289813243762,0.819464539550285,0.770903377478048,36.1523641949198,-0.0870504565041726,5956.32079207921,5534.23425154396,3100.31911605981,4.17994371810998,35776.8332875181,9925.63240730689,0,35776.8332875181,21.5533830996961,21.5533830996961,0.398984576675491,21.7975777816305,25.3,1015,37.52,45.407468394693
+46519,2873.7233680198,456.351860792079,45,21.5429306930693,22.1892186138614,6.45916831683168,-3.5,1242.82673267327,2677.09702970297,3279.22376237624,20,40,11,32,5305613.98347181,395794.703958069,0,0,0,0,0,0,0,21.5429306930693,24461.9276618261,6.45916831683168,6.92786042650738,6.73115530269142,-3.5,-3.48535979107015,-2.83722735881649,1.03289813243762,0.819464539550285,0.770903377478048,36.1523641949198,-0.0870504565041726,5956.32079207921,5534.23425154396,3100.31911605981,4.17994371810998,35776.8332875181,9925.63240730689,0,35776.8332875181,21.5533830996961,21.5533830996961,0.398984576675491,21.7975777816305,25.3,1015,37.52,45.407468394693
 46520,2873.72484366337,456.347446336634,45,22.8728415841584,23.5590268316832,6.86847524752475,-3.5,1124.67326732673,1771.45544554455,2194.34356435643,20,40,11,32,5305616.81616661,395789.254082836,0,0,0,0,0,0,0,22.8728415841584,24468.1142231848,6.86847524752475,7.36686760953038,7.15567756837421,-3.5,-3.48535979107015,-2.83767910438879,1.10811386889427,0.879138022255615,0.87382421391804,32.7154192066898,-0.0252007111467828,3965.79900990099,4078.11939025586,4135.98910097284,3.93549826886629,20426.9493182101,7390.34483411421,0,20426.9493182101,22.8676543476129,22.8676543476129,0.296049406920889,22.6925970020154,25.3012623762376,1015,37.5088366336634,51.3503311282339
 46521,2873.72659059406,456.342931485149,45,23.8210693069307,24.5357013861386,7.0009801980198,-3.5,903.881188118812,1712.58910891089,2133.89108910891,20,40,11,32,5305620.15364169,395783.688220812,0,0,0,0,0,0,0,23.8210693069307,24474.6063873212,7.0009801980198,7.50898742400538,7.32279223771472,-3.5,-3.48535979107015,-2.82742038688306,1.00869416521504,0.800261975200078,0.80555773974502,26.2928379658525,-0.0551535563955304,3846.4801980198,3807.42739927458,3095.18106207651,3.77851245165044,15356.4344859278,5867.40242417558,0,15356.4344859278,23.8077458092343,23.8077458092343,0.235532464137504,23.652397404198,25.31,1015,37.55,53.7436789290788
 46522,2873.7285509901,456.33840039604,45,24.5931386138614,25.3309327722772,7.39733663366336,-3.5,865.79702970297,879.074257425743,1141.69603960396,20,40,11,32,5305623.88689842,395778.109278211,0,0,0,0,0,0,0,24.5931386138614,24481.3336296479,7.39733663366336,7.93410439427091,7.70430939762509,-3.5,-3.48535979107015,-2.83855636273646,1.20186571359419,0.953517392143432,0.930846640667995,25.18501470384,-0.00468013207011681,2020.7702970297,1850.0559062837,1428.52698654585,3.65983352008491,7496.43609681672,3217.59735297638,0,7496.43609681672,24.5448275659249,24.5448275659249,0.128764609134183,24.1458689613475,25.32,1015,37.6,59.505292739555
@@ -1478,9 +1478,9 @@ Time,Lat,Long,Heading,v_veh_GPS,v_veh_CAN,vair_ar,beta_ar,n_eng,tq_l,tq_r,t_amb_
 46526,2873.7359129703,456.320622277228,45,21.3397227722772,21.9799144554455,7.82640594059406,-3.5,1015.41584158416,-1838.54059405941,-2312.04257425742,20,40,11,32,5305637.92379894,395756.208849865,0,0,0,0,0,0,0,21.3397227722772,24507.4649509901,7.82640594059406,8.3943079570064,7.8828596709305,-3.5,-3.48535979107015,-2.92738617214319,2.50700379297807,1.98896739605409,1.9088179886246,29.5372495209212,-0.00568816051598812,-4150.58316831683,-3847.39675522008,-2730.25855772382,4.21952958525498,-20686.4553619004,-9949.44050895605,0,-20686.4553619004,21.3608422703656,21.3608422703656,-0.39787085144158,21.5168764781033,25.36,1015,37.8,62.418837914201
 46527,2873.7364,456.316119405941,64.6039603960396,20.3411584158416,20.9513931683168,8.06321782178218,-3.5,952.643564356436,-792.094059405941,-994.169306930693,20,40,10.6633663366337,32,5305638.92726918,395750.615793576,0,0,0,0,0,0,0,20.3411584158416,24513.2256469472,8.06321782178218,8.64830345297989,8.0271091683388,-3.5,-3.48535979107015,-2.96092138137233,3.02884543989677,2.40297794702798,2.44444559320743,27.7112779932572,-0.0163444612294849,-1786.26336633663,-1924.69098127635,-2198.30818963979,4.42474871600618,-8765.40029247931,-4778.19180289034,0,-8765.40029247931,20.3406778747181,20.3406778747181,-0.19083913341829,20.4543162565142,25.37,1015,37.85,64.646108868333
 46528,2873.73599584158,456.311776633663,184.009900990099,19.4700198019802,20.0541203960396,7.96787128712872,-3.5,891.737623762376,-698.59702970297,-890.445544554455,20,40,10.6138613861386,32,5305638.27635659,395745.192357494,0,0,0,0,0,0,0,19.4700198019802,24518.7690496425,7.96787128712872,8.54603835446728,7.89603593112788,-3.5,-3.48535979107015,-2.97416347045503,3.16524368361964,2.51119144889969,2.49057885736874,25.9395959976065,-0.0203045729811221,-1589.04257425743,-1570.75778845211,-1013.4904432063,4.6237512420468,-7621.47917971942,-7583.55032677945,0,-7621.47917971942,19.4644718164886,19.4644718164886,-0.302991809081899,19.5883902802596,25.38,1015,37.9,62.5651843947146
-46529,2873.73486306931,456.307951089109,225,18.4967425742574,19.0516448514852,7.56036633663366,-3.5,838.70297029703,195.816831683169,25.9623762376237,20,40,10.7029702970297,32,5305636.2641666,395740.38886286,0,0,0,0,0,0,0,18.4967425742574,24524.0283177943,7.56036633663366,8.10896390747016,7.49349457944048,-3.5,-3.48535979107015,-2.97313173785098,2.99811147746418,2.37859471737305,2.37885782735282,24.3968804632323,-0.0108723068090406,221.779207920792,252.475972943829,266.127453252935,4.86614239422887,1034.96041557663,-3355.91173491353,0,1034.96041557663,18.5613588863837,18.5613588863837,-0.134051400189522,19.0250958670256,25.39,1015,37.95,56.370744461011
+46529,2873.73486306931,456.307951089109,225,18.4967425742574,19.0516448514852,7.56036633663366,-3.5,838.70297029703,195.816831683169,25.9623762376237,20,40,10.7029702970297,32,5305636.2641666,395740.38886286,0,0,0,0,0,0,0,18.4967425742574,24524.0283177943,7.56036633663366,8.10896390747016,7.49349457944047,-3.5,-3.48535979107015,-2.97313173785098,2.99811147746418,2.37859471737305,2.37885782735282,24.3968804632323,-0.0108723068090406,221.779207920792,252.475972943829,266.127453252935,4.86614239422887,1034.96041557663,-3355.91173491353,0,1034.96041557663,18.5613588863837,18.5613588863837,-0.134051400189522,19.0250958670256,25.39,1015,37.95,56.370744461011
 46530,2873.73310227723,456.30484039604,225,18.4724455445545,19.0266189108911,7.23564356435643,-3.4890099009901,813.069306930693,1214.91881188119,965.511881188119,20,40,10.990099009901,32,5305633.07258459,395736.45485911,0,0,0,0,0,0,0,18.4724455445544,24529.1491809956,7.23564356435643,7.76067850394801,7.21580646235973,-3.4890099009901,-3.47436969206025,-2.94641565996829,2.65838900212964,2.10907102178082,2.05597052307695,23.6512274214149,-0.00194405485989467,2180.43069306931,2123.94440741104,1275.30574930199,4.87216577813688,10052.0466729796,64.6851580081892,0,10052.0466729796,18.4546505244584,18.4546505244584,0.00261956888757786,18.6998952544418,25.3987376237624,1014.99873762376,37.9936881188119,52.2901872259732
-46531,2873.73078277228,456.302678811881,225,18.3303762376237,18.8802875247525,6.47960396039604,-2.84762376237624,803.108910891089,1320.81287128713,1052.72574257426,20,40,11,32,5305628.8247166,395733.684486382,0,0,0,0,0,0,0,18.3303762376237,24534.2667978823,6.47960396039604,6.94977892737238,6.5645644800259,-2.84762376237624,-2.83298355344638,-2.37015111634989,1.91209536220061,1.5169882647228,1.56413590018333,23.3614912452588,-0.00604817067522788,2373.53861386139,2394.92861484168,2352.95240790623,4.9100817512208,10892.5282982464,67.3636015169241,0,10892.5282982464,18.3701669444172,18.3701669444172,0.00279384374081405,18.6924486137612,25.4,1014.99,38,43.3371168931493
+46531,2873.73078277228,456.302678811881,225,18.3303762376237,18.8802875247525,6.47960396039604,-2.84762376237624,803.108910891089,1320.81287128713,1052.72574257426,20,40,11,32,5305628.8247166,395733.684486382,0,0,0,0,0,0,0,18.3303762376237,24534.2667978823,6.47960396039604,6.94977892737238,6.56456448002589,-2.84762376237624,-2.83298355344638,-2.37015111634989,1.91209536220061,1.5169882647228,1.56413590018333,23.3614912452588,-0.00604817067522788,2373.53861386139,2394.92861484168,2352.95240790623,4.9100817512208,10892.5282982464,67.3636015169241,0,10892.5282982464,18.3701669444172,18.3701669444172,0.00279384374081405,18.6924486137612,25.4,1014.99,38,43.3371168931493
 46532,2873.72813693069,456.301691287129,225,18.7731584158416,19.3363531683168,6.13935643564356,-0.361188118811881,815.118811881188,1730.85445544555,1409.47128712871,20,40,11,32,5305623.94593844,395732.365750502,0,0,0,0,0,0,0,18.7731584158416,24539.4023321232,6.13935643564356,6.58484225962721,6.30073015033646,-0.361188118811881,-0.346547909882024,-0.286801411993315,1.40746967719177,1.11663624391401,1.07827586945966,23.710845103785,0.00957627023577746,3140.32574257426,3132.83527105186,3111.9051085805,4.79447661051056,14278.4507209121,3848.05874883716,0,14278.4507209121,18.7488395255367,18.7488395255367,0.153764881438637,19.0445672479776,25.4,1014.98,38,39.9015283011036
 46533,2873.72537425742,456.301978910891,225,19.347,19.92741,5.20604950495049,2.17415841584158,848.20297029703,2075.57128712871,1699.79900990099,20,40,11,32,5305618.82204885,395732.631596109,0,0,0,0,0,0,0,19.347,24544.6880370187,5.20604950495049,5.58381243136208,5.53912386123259,2.17415841584158,2.18879862477144,1.75260060379883,0.803962518761909,0.63783518874036,0.73347470047901,24.6732242614647,0.0120963413504557,3775.3702970297,3771.42039015783,3552.71020476399,4.65296376535319,17334.2278341599,6344.98009577713,0,17334.2278341599,19.3927547299284,19.3927547299284,0.253599864936989,19.6376864775647,25.4,1014.97,38,31.1576020137937
 46534,2873.7227159406,456.303657227723,225,20.3708415841584,20.9819668316832,3.71682178217822,3.23613861386139,897.747524752475,2267.66831683168,1874.12376237624,20,40,11,32,5305613.86016373,395734.633367331,0,0,0,0,0,0,0,20.3708415841584,24550.2132104511,3.71682178217822,3.98652291968197,4.33063738381642,3.23613861386139,3.25077882279124,2.3668759961868,1.83173938390742,1.45323669747313,1.3457012514493,26.1144169309333,0.0128163616689353,4141.79207920792,4138.10522497794,3788.44424862364,4.41854520239751,19115.2334247723,6727.78693637597,0,19115.2334247723,20.3781271443976,20.3781271443976,0.268897929396901,20.3684709893496,25.4,1014.96,38,19.5390045584501
@@ -1488,20 +1488,20 @@ Time,Lat,Long,Heading,v_veh_GPS,v_veh_CAN,vair_ar,beta_ar,n_eng,tq_l,tq_r,t_amb_
 46536,2873.71878554456,456.310727722772,225,21.7434257425743,22.3957285148515,4.40909900990099,3.5,920.064356435644,1936.99603960396,1600.14356435644,20,40,10.970297029703,32,5305606.42060254,395743.309796011,0,0,0,0,0,0,0,21.7434257425742,24562.0535916117,4.40909900990099,4.72903337534158,4.99833574794738,3.5,3.51464020892985,2.62927219513526,1.47158525907084,1.16750325986895,1.09164942933883,26.7635872500744,-0.0532095015356357,3537.1396039604,3685.87563964317,4104.09559591711,4.13928346423084,15431.3064545389,280.724052170685,0,15431.3064545389,21.7558448191353,21.7558448191353,0.0120344955287619,21.7345265071186,25.4,1014.94,38,25.6688571242613
 46537,2873.71754277228,456.315325247525,221.435643564356,22.0909306930693,22.7536586138614,5.98755445544555,3.5,750.247524752475,2415.93069306931,2004.59405940594,20,40,10.4653465346535,32,5305604.01510196,395748.995508215,0,0,0,0,0,0,0,22.0909306930693,24568.1239570682,5.98755445544555,6.42202517858926,6.3612764035415,3.5,3.51464020892985,2.80010370709546,0.969424618808736,0.769106917645423,0.824955740132607,21.8238158531139,-0.00648018286631558,4420.52475247525,4409.63058523674,4097.54440859282,4.07450128291197,15726.6617329306,4505.13490992149,0,15726.6617329306,22.1065597490442,22.1065597490442,0.180292781753421,22.3445385519066,25.4,1014.93,38,41.2091854478426
 46538,2873.71662227723,456.320241386139,176.881188118812,22.890900990099,23.577628019802,6.54057425742574,3.5,784.29702970297,2312.25148514852,1930.32178217822,20,40,10.3465346534653,32,5305602.19940533,395755.088916712,0,0,0,0,0,0,0,22.890900990099,24574.3703941694,6.54057425742574,7.01517336939115,6.8776966438762,3.5,3.51464020892985,2.81839688358412,1.36869406839448,1.08587305884187,1.01960680546923,22.8142758032143,0.0153364327836135,4242.57326732673,4281.31256739535,4217.20215102397,3.93210160454276,15223.4586118483,5862.4159377531,0,15223.4586118483,22.8861262621311,22.8861262621311,0.234298924941998,22.9725243255991,25.4,1014.92,38,48.6036871107905
-46539,2873.71607673267,456.325402475248,110.940594059406,23.7776633663367,24.4909932673267,6.44376237623762,3.5,820.915841584158,2305.96534653465,1903.0198019802,20,40,10.5445544554455,32,5305601.07274034,395761.500017149,0,0,0,0,0,0,0,23.7776633663366,24580.8476874312,6.44376237623762,6.91133659542891,6.84615748479681,3.5,3.51464020892985,2.80792791787429,0.790757340979155,0.62735867165548,0.74142545732661,23.8794738623729,0.0105122966498008,4208.98514851485,4194.71377315949,3990.11603072039,3.78567194134702,15216.5208152334,6636.88622820741,0,15216.5208152334,23.7871943927066,23.7871943927066,0.265338910128638,23.7976923951326,25.4,1014.91,38,47.1822225592861
+46539,2873.71607673267,456.325402475248,110.940594059406,23.7776633663367,24.4909932673267,6.44376237623762,3.5,820.915841584158,2305.96534653465,1903.0198019802,20,40,10.5445544554455,32,5305601.07274034,395761.500017149,0,0,0,0,0,0,0,23.7776633663366,24580.8476874312,6.44376237623762,6.91133659542891,6.84615748479681,3.5,3.51464020892985,2.80792791787429,0.790757340979155,0.62735867165548,0.74142545732661,23.8794738623729,0.0105122966498008,4208.98514851485,4194.71377315949,3990.11603072039,3.78567194134702,15216.5208152334,6636.88622820741,0,15216.5208152334,23.7871943927066,23.7871943927066,0.265338910128638,23.7976923951326,25.4,1014.91,38,47.182222559286
 46540,2873.71582940594,456.330846534654,64.6039603960396,24.7070099009901,25.4482201980198,5.8409603960396,3.5,857.618811881188,2054.1099009901,1685.07524752475,20,40,10.8217821782178,32,5305600.4921174,395768.273602959,0,0,0,0,0,0,0,24.7070099009901,24587.5864300055,5.8409603960396,6.26479391705471,6.38656091323761,3.5,3.51464020892985,2.72483209706129,1.08455534583462,0.860447530284254,0.838745155942752,24.9471199906143,0.0128163616689353,3739.18514851485,3721.27137535536,3337.90507331826,3.6430855739332,13591.2703420891,6151.94753234899,0,13591.2703420891,24.7056294480933,24.7056294480933,0.245909987038307,24.6306016046255,25.4012623762376,1014.90252475248,37.9936881188119,41.572790343267
 46541,2873.71586782178,456.336448811881,45,25.5175346534653,26.2830606930693,5.79914851485149,3.5,890.039603960396,1452.14455445545,1171.49207920792,20,40,11,32,5305600.43723595,395775.253846281,0,0,0,0,0,0,0,25.5175346534653,24594.5708446919,5.79914851485149,6.21994806959689,6.39745327875032,3.5,3.51464020892985,2.71682045109198,0.989293596846901,0.784870256185841,0.744682006162445,25.8902026037588,0.0107283027453447,2623.63663366337,2559.59007940398,1945.17100546529,3.52713801865802,9580.56094381234,4224.07590466963,0,9580.56094381234,25.495020096069,25.495020096069,0.168821956453077,25.2493277652327,25.41,1014.91,37.95,41.0238532503675
 46542,2873.7159970297,456.342163366337,45,25.8001485148515,26.574152970297,6.38388118811881,3.5,901.945544554455,-65.6495049504952,-168.339603960396,20,40,11,32,5305600.54801515,395782.376994315,0,0,0,0,0,0,0,25.8001485148515,24601.7161264301,6.38388118811881,6.84711029056865,6.91117744547543,3.5,3.51464020892985,2.76245404395076,0.699176484332126,0.554701686259671,0.590195923672868,26.2365323769474,-0.00072002031847951,-233.989108910891,-158.438427605137,449.146435759615,3.48843911465783,-845.41819818984,-1063.69476910743,0,-845.41819818984,25.7588294284874,25.7588294284874,-0.0425380409328107,25.5010568868617,25.42,1014.92,37.9,47.924554735821
 46543,2873.71599366336,456.347848118812,59.2574257425743,25.405396039604,26.1675579207921,6.29913861386139,3.5,894.306930693069,-674.036633663367,-603.136633663366,20,40,11,32,5305600.41390061,395789.458582079,0,0,0,0,0,0,0,25.4053960396039,24608.8281872662,6.29913861386139,6.75621860020837,6.81643781585544,3.5,3.51464020892985,2.76384429431984,0.672607752027472,0.533623001633642,0.533482381845201,26.0143341066647,-0.00244806908283033,-1277.17326732673,-1279.10013724145,-1435.31941710334,3.5425841592486,-4707.90057110775,-2189.66320618865,0,-4707.90057110775,25.4253366336633,25.4253366336633,-0.0875540524349448,25.2300285561123,25.43,1014.93,37.85,46.5968875610584
 46544,2873.7158470297,456.35346019802,80.6435643564356,24.9439108910891,25.6922282178218,6.37083168316832,3.5,888.678217821782,-1586.34554455445,-1370.8495049505,20,40,11,32,5305600.01604928,395796.444846522,0,0,0,0,0,0,0,24.9439108910891,24615.8428402089,6.37083168316832,6.83311388352404,6.85097638067521,3.5,3.51464020892985,2.77871819813431,0.676454401957911,0.53667479649614,0.542797729486339,25.8506014862424,0.0111603149364324,-2957.19504950495,-2915.04776002353,-2811.47477018124,3.60890861382321,-11167.9523812245,-9275.29910877201,0,-11167.9523812245,24.8221170473483,24.8221170473483,-0.371165953228984,24.0982931226518,25.44,1014.94,37.8,47.1307993058801
 46545,2873.71560574257,456.358750792079,93.1188118811881,22.5192277227723,23.1948045544555,6.23946534653466,3.5,1012.18811881188,-2371.02871287129,-1980.89801980198,20,40,11,32,5305599.45010638,395803.02746046,0,0,0,0,0,0,0,22.5192277227722,24622.4709044829,6.23946534653466,6.6922153033511,6.60016830643927,3.5,3.51464020892985,2.82147798225731,0.653425058714362,0.518404136917462,0.529675382264601,29.4433588713915,0.0259927334971103,-4351.92673267327,-4416.94180962651,-3049.61928557913,4.00213773634386,-20439.4149709986,-19113.0552889254,0,-20439.4149709986,22.547430251936,22.547430251936,-0.764916838218478,22.5417563415349,25.45,1014.95,37.75,43.772434987205
-46546,2873.71532376238,456.363436435644,98.4653465346535,20.2507722772277,20.8582954455445,5.65368316831683,3.5,1013.72772277228,-1870.26336633664,-1537.86435643564,20,40,11,32,5305598.82239889,395808.855105871,0,0,0,0,0,0,0,20.2507722772277,24628.3734600659,5.65368316831683,6.06392742293569,5.97167673791239,3.5,3.51464020892985,2.82453797030048,0.669074898523077,0.53082016166389,0.5072950244634,29.4881441352009,-0.00136803860511107,-3408.12772277228,-3280.31487109107,-2030.11369469247,4.44611714346383,-17800.7431791397,-10498.5480690554,0,-17800.7431791397,20.3107784530928,20.3107784530928,-0.419915258852616,21.1892519163413,25.46,1014.96,37.7,35.829826883556
-46547,2873.71499277228,456.367815544554,109.158415841584,19.3559108910891,19.9365882178218,4.88277227722772,3.5,976.316831683168,-896.487128712871,-760.058415841585,20,40,11,32,5305598.11080787,395814.299252136,0,0,0,0,0,0,0,19.3559108910891,24633.8524889988,4.88277227722772,5.23707746443213,5.26442841942459,3.5,3.51464020892985,2.77299313292278,0.47556469722496,0.377296069572823,0.390339790633487,28.399905425851,-0.016128455133941,-1656.54554455446,-1340.81842956573,362.430484957661,4.6500075819277,-8747.29616941015,-2981.1402042566,0,-8747.29616941015,19.3972016468973,19.3972016468973,-0.118937141238877,20.4424865652951,25.47,1014.97,37.65,27.7970007541398
-46548,2873.71462881188,456.372118415842,112.722772277228,19.5577326732673,20.1444646534653,5.42217821782178,3.5,990.757425742574,2186.45544554456,2413.38811881188,20,40,11,32,5305597.33986416,395819.64732512,0,0,0,0,0,0,0,19.5577326732673,24639.2190023927,5.42217821782178,5.81562394075272,5.73495989094847,3.5,3.51464020892985,2.81990899826051,0.654554678329565,0.519300336831828,0.526386612881718,28.8199652796519,0.0207365851722098,4599.84356435644,4307.96997353201,3282.19100376523,4.60325034573605,24367.8877697418,7104.04025380754,0,24367.8877697418,19.6327187530634,19.6327187530634,0.2837657528129,20.5617550385134,25.48,1014.98,37.6,33.1164036047656
+46546,2873.71532376238,456.363436435644,98.4653465346535,20.2507722772277,20.8582954455445,5.65368316831683,3.5,1013.72772277228,-1870.26336633664,-1537.86435643564,20,40,11,32,5305598.82239889,395808.855105871,0,0,0,0,0,0,0,20.2507722772277,24628.3734600659,5.65368316831683,6.06392742293569,5.97167673791239,3.5,3.51464020892985,2.82453797030048,0.669074898523077,0.530820161663889,0.5072950244634,29.4881441352009,-0.00136803860511107,-3408.12772277228,-3280.31487109107,-2030.11369469247,4.44611714346383,-17800.7431791397,-10498.5480690554,0,-17800.7431791397,20.3107784530928,20.3107784530928,-0.419915258852616,21.1892519163413,25.46,1014.96,37.7,35.829826883556
+46547,2873.71499277228,456.367815544554,109.158415841584,19.3559108910891,19.9365882178218,4.88277227722772,3.5,976.316831683168,-896.487128712871,-760.058415841585,20,40,11,32,5305598.11080787,395814.299252136,0,0,0,0,0,0,0,19.3559108910891,24633.8524889988,4.88277227722772,5.23707746443213,5.26442841942459,3.5,3.51464020892985,2.77299313292278,0.475564697224961,0.377296069572823,0.390339790633487,28.399905425851,-0.016128455133941,-1656.54554455446,-1340.81842956573,362.430484957661,4.6500075819277,-8747.29616941015,-2981.1402042566,0,-8747.29616941015,19.3972016468973,19.3972016468973,-0.118937141238877,20.4424865652951,25.47,1014.97,37.65,27.7970007541398
+46548,2873.71462881188,456.372118415842,112.722772277228,19.5577326732673,20.1444646534653,5.42217821782178,3.5,990.757425742574,2186.45544554456,2413.38811881188,20,40,11,32,5305597.33986416,395819.64732512,0,0,0,0,0,0,0,19.5577326732673,24639.2190023927,5.42217821782178,5.81562394075272,5.73495989094847,3.5,3.51464020892985,2.81990899826051,0.654554678329565,0.519300336831828,0.526386612881717,28.8199652796519,0.0207365851722098,4599.84356435644,4307.96997353201,3282.19100376523,4.60325034573605,24367.8877697418,7104.04025380754,0,24367.8877697418,19.6327187530634,19.6327187530634,0.2837657528129,20.5617550385134,25.48,1014.98,37.6,33.1164036047656
 46549,2873.71424336634,456.376631980198,114.504950495049,21.1658910891089,21.8008678217822,5.88139603960396,3.48881188118812,1133.68811881188,3228.05841584158,3532.85247524752,20,40,11,32,5305596.52438984,395825.257149071,0,0,0,0,0,0,0,21.1658910891089,24644.8630511826,5.88139603960396,6.30816366392132,6.21791071515124,3.48881188118812,3.50345209011797,2.81307203824185,0.728899551897146,0.578282907980645,0.571980556692596,32.97765060668,0.101378860841915,6760.91089108911,6842.35223997648,6937.19583229013,4.25474922335825,37526.4495409108,11853.6069263513,0,37526.4495409108,21.1490067640427,21.1490067640427,0.471994847999656,21.7093749064044,25.49,1014.99,37.55,38.8567310014108
 46550,2873.71386574257,456.381518316832,107.376237623762,23.0564653465346,23.7481593069307,5.84177227722772,3.5,1568.92079207921,5485.42574257426,4913.20099009901,20,40,11,32,5305595.71502773,395831.331612084,0,0,0,0,0,0,0,23.0564653465346,24650.9842019251,5.84177227722772,6.26566471020923,6.29259410047702,3.5,3.51464020892985,2.77414975814065,0.600358079225251,0.476302688045887,0.476363602011582,45.6380558746326,0.0941786576571197,10398.6267326733,10317.0090187237,9749.76574656862,3.90853708380806,74366.6306103792,19335.9608277293,0,74366.6306103792,23.1667100284286,23.1667100284286,0.771053219183304,23.8945384246922,25.4987376237624,1014.99747524752,37.510099009901,39.8760238257526
 46551,2873.71357960396,456.387007128713,80.6435643564356,26.7193663366337,27.5209473267327,6.71910891089109,3.5,1809.72277227723,7440.0396039604,6115.14059405941,20,40,11,32,5305595.06158793,395838.159660804,0,0,0,0,0,0,0,26.7193663366336,24657.8779777777,6.71910891089109,7.206662907956,7.24911640229364,3.5,3.51464020892985,2.77215554509331,0.660409363222826,0.523945235016459,0.529951818441532,52.6427015409286,0.0609857209752144,13555.1801980198,13151.6433486913,11315.8435450391,3.37432063693655,96167.8495504394,26418.7434188415,0,96167.8495504394,26.7008956965003,26.7008956965003,1.0551920291039,26.6903689456865,25.5,1014.99,37.53,52.6613836554995
-46552,2873.71351217822,456.393345148515,46.7821782178218,30.1190396039604,31.0226107920792,6.96389108910891,3.5,1801.15841584158,6194.20891089109,4891.09405940594,20,40,11,32,5305594.79419527,395846.052912013,0,0,0,0,0,0,0,30.1190396039604,24665.7998413915,6.96389108910891,7.46920704404399,7.65233670398243,3.5,3.51464020892985,2.72666965397405,1.05368943845969,0.835959620217934,0.82731863993252,52.3935745107347,-0.100586838491587,11085.302970297,11189.9610136261,11851.3334629346,2.99044654214195,68988.5477159056,21100.7760064843,0,68988.5477159056,30.1059677482599,30.1059677482599,0.846171127013685,29.9881010818416,25.5,1014.98,37.56,58.6958775804071
+46552,2873.71351217822,456.393345148515,46.7821782178218,30.1190396039604,31.0226107920792,6.96389108910891,3.5,1801.15841584158,6194.20891089109,4891.09405940594,20,40,11,32,5305594.79419527,395846.052912013,0,0,0,0,0,0,0,30.1190396039604,24665.7998413915,6.96389108910891,7.46920704404399,7.65233670398243,3.5,3.51464020892985,2.72666965397405,1.05368943845969,0.835959620217935,0.82731863993252,52.3935745107347,-0.100586838491587,11085.302970297,11189.9610136261,11851.3334629346,2.99044654214195,68988.5477159056,21100.7760064843,0,68988.5477159056,30.1059677482599,30.1059677482599,0.846171127013685,29.9881010818416,25.5,1014.98,37.56,58.6958775804071
 46553,2873.71383237624,456.400391980198,45,33.1646435643564,34.1595828712871,7.31729702970297,3.5,1657.43069306931,6154.37722772277,4910.61188118812,20,40,10.7326732673267,32,5305595.22889097,395854.842113726,0,0,0,0,0,0,0,33.1646435643564,24674.588466144,7.31729702970297,7.84825693254963,8.12767928179012,3.5,3.51464020892985,2.7005936679326,1.48014494846057,1.17429421214602,1.12576732082584,48.2127045294516,0.0540015238859632,11064.9891089109,11265.2020782276,11114.3581104134,2.71571655953197,57924.6619846548,21508.7346862058,0,57924.6619846548,33.1581648857955,33.1581648857955,0.859334324521569,33.1299997958546,25.5,1014.97,37.59,66.1997358557365
 46554,2873.71473950495,456.40796029703,45,36.1134158415842,37.1968183168317,8.25522772277228,3.46049504950495,1802.92574257426,6051.16237623762,4786.25544554455,20,40,10.039603960396,32,5305596.73907446,395864.30056424,0,0,0,0,0,0,0,36.1134158415841,24684.2249245048,8.25522772277228,8.85424603402404,9.09485104666682,3.46049504950495,3.4751352584348,2.68904554305976,1.35284110138446,1.07329588021854,1.10443579282964,52.4449839614742,0.0404651418985484,10837.4178217822,10797.9385256347,10515.7573488491,2.49325967777542,56658.7856634617,19201.3613280935,0,56658.7856634617,36.0947594353494,36.0947594353494,0.767292694615989,36.0382403461135,25.5,1014.96,37.62,82.8964305481221
 46555,2873.71632346535,456.415918811881,45,38.7737227722772,39.9369344554455,8.46770297029703,3.5,1920.94554455446,5011.17425742574,4017.01287128713,20,40,10.5445544554455,32,5305599.4942272,395874.267713203,0,0,0,0,0,0,0,38.7737227722772,24694.633006353,8.46770297029703,9.08213897421934,9.42814425966864,3.5,3.51464020892985,2.69458664210339,1.81370466858085,1.43892859754839,1.46884017993789,55.8780408399845,-0.00684019302555533,9028.18712871287,9278.09564748554,9507.14763442051,2.32197358498375,46914.6316929562,16787.1047372418,0,46914.6316929562,38.7332290951867,38.7332290951867,0.671587208225772,38.6485096563436,25.5,1014.95,37.65,89.1060998735818
@@ -1516,7 +1516,7 @@ Time,Lat,Long,Heading,v_veh_GPS,v_veh_CAN,vair_ar,beta_ar,n_eng,tq_l,tq_r,t_amb_
 46564,2873.75329821782,456.496421287129,45,58.018198019802,59.7587439603961,12.6514587458416,0.591881188118812,1478.30198019802,3375.49108910891,3140.85742574257,20,40,9.52475247524752,32,5305666.17562937,395975.787067923,0,0,0,0,0,0,0,58.0181980198019,24816.7926072331,12.6514587458416,13.569477691812,14.0928493994853,0.591881188118812,0.606521397048669,0.468071401947952,2.66442475873307,2.11385957580231,2.02983328721066,43.0020614886791,0.0125283535415435,6516.34851485149,6552.54544652485,6554.1031784727,1.55137278225175,17387.5844000363,12383.3666266859,0,17387.5844000363,58.0103104597588,58.0103104597588,0.495214249147694,58.0013543336395,25.54,1014.9,37.64,199.025527796416
 46565,2873.75868772277,456.50683029703,45,59.7658118811881,61.5587862376238,13.0020297029703,1.20920792079208,1523.14356435644,3438.31485148515,3082.96732673267,20,40,9.52475247524752,32,5305675.92512648,395988.933717829,0,0,0,0,0,0,0,59.765811881188,24833.1524533827,13.0020297029703,13.9454868839314,14.4912244002399,1.20920792079208,1.22384812972194,0.939868705952559,2.77987744229699,2.2054556172757,2.33129781555257,44.3064502976366,0.0138243901148066,6521.28217821782,6507.58397215959,6497.42299813856,1.5060096810168,17403.1887110115,12307.5387017288,0,17403.1887110115,59.7672799725516,59.7672799725516,0.492168523783064,59.7667929674747,25.55,1014.9,37.6,210.283615645893
 46566,2873.76427277228,456.517531386139,45,61.4614851485148,63.3053297029703,14.1389130909901,0.736039603960396,1565.40099009901,3399.64851485149,2981.52871287129,20,40,9,32,5305686.03031177,396002.450698563,0,0,0,0,0,0,0,61.4614851485148,24849.9983756874,14.1389130909901,15.1648651455091,15.5557814787335,0.736039603960396,0.750679812890253,0.58582132149526,2.18613211766855,1.73439925288038,1.63145134920861,45.5356689853448,0.00633617880261968,6381.17722772277,6388.59772571317,6388.4165732477,1.46442004677495,17019.2867415867,11638.9479981248,0,17019.2867415867,61.4771461621409,61.4771461621409,0.465496302105459,61.4813729237138,25.56,1014.9,37.56,243.319232983017
-46567,2873.77001336634,456.528508415842,45,63.1523069306931,65.0468761386139,16.1496138613861,1.36930693069307,1607.11881188119,3273.70693069307,2976.38514851485,20,40,9,32,5305696.41745632,396016.316566525,0,0,0,0,0,0,0,63.152306930693,24867.3123874586,16.1496138613861,17.3214669885785,17.3634940100638,1.36930693069307,1.38394713962293,1.0935109471809,1.12042510063826,0.888905314436282,0.938924410669992,46.7491912301102,0.0183605181212275,6250.09207920792,6240.8586609156,6240.90726955071,1.42519021404702,16655.3640761653,11212.8586766372,0,16655.3640761653,63.1444956376825,63.1444956376825,0.448338398196258,63.1418473291327,25.57,1014.9,37.52,301.795694164369
+46567,2873.77001336634,456.528508415842,45,63.1523069306931,65.0468761386139,16.1496138613861,1.36930693069307,1607.11881188119,3273.70693069307,2976.38514851485,20,40,9,32,5305696.41745632,396016.316566525,0,0,0,0,0,0,0,63.152306930693,24867.3123874586,16.1496138613861,17.3214669885785,17.3634940100638,1.36930693069307,1.38394713962293,1.0935109471809,1.12042510063826,0.888905314436281,0.938924410669992,46.7491912301102,0.0183605181212275,6250.09207920792,6240.8586609156,6240.90726955071,1.42519021404702,16655.3640761653,11212.8586766372,0,16655.3640761653,63.1444956376825,63.1444956376825,0.448338398196258,63.1418473291327,25.57,1014.9,37.52,301.795694164369
 46568,2873.77588386139,456.539778415842,45,64.7645841584158,66.7075216831683,16.5061485148515,0.923366336633664,1648.34158415842,3133.00693069307,2958.75445544554,20,40,9,32,5305707.03867974,396030.551676153,0,0,0,0,0,0,0,64.7645841584158,24885.0789796203,16.5061485148515,17.7038726165576,17.7589569179827,0.923366336633664,0.938006545563522,0.746559453147206,1.25482269088792,0.995531569196467,0.968770473786369,47.9483130685059,0.011664329159368,6091.76138613861,6088.28732477209,6087.11741843489,1.38971450879471,16236.11900762,11146.9276414614,0,16236.11900762,64.7593144789725,64.7593144789725,0.445765121066557,64.7545541632717,25.58,1014.9,37.48,315.776235939975
 46569,2873.7818880198,456.55134980198,45,66.3285544554455,68.3184110891089,17.2413564356436,-0.496336633663366,1689.82673267327,3026.98613861386,2890.82574257426,20,40,9,32,5305717.90076509,396045.166632881,0,0,0,0,0,0,0,66.3285544554455,24903.2891245048,17.2413564356436,18.4924289151197,18.4749827083245,-0.496336633663366,-0.481696424733509,-0.387496647205478,1.17477026443157,0.932020829147859,0.936799661040391,49.1550671222776,0.00662418693001148,5917.81188118812,5930.98023723164,5933.04742595288,1.35694165583242,15788.2249773637,10899.1785057022,0,15788.2249773637,66.3300799921575,66.3300799921575,0.435903615113984,66.3308894146667,25.59,1014.9,37.44,341.760735892322
 46570,2873.78802752475,456.563211188119,45,67.8574257425743,69.8931485148515,17.4170891089109,-0.404257425742574,1726.18316831683,3010.99306930693,2801.11782178218,20,40,9,32,5305729.00708846,396060.147305072,0,0,0,0,0,0,0,67.8574257425742,24921.9319449943,17.4170891089109,18.6809131553586,18.7119656760374,-0.404257425742574,-0.389617216812717,-0.311971982828939,1.11893736545787,0.887724998404838,0.903616737844617,50.2126329660603,0.0082082316306664,5812.11089108911,5806.12787961965,5806.38157323624,1.32635707178959,15482.9014296089,10383.3715484658,0,15482.9014296089,67.8642049799038,67.8642049799038,0.415256129573359,67.8629762133017,25.5987376237623,1014.9,37.4037871287129,350.458206955591
@@ -1533,14 +1533,14 @@ Time,Lat,Long,Heading,v_veh_GPS,v_veh_CAN,vair_ar,beta_ar,n_eng,tq_l,tq_r,t_amb_
 46581,2873.86438188119,456.708390594059,45,81.4677821782178,83.9118156435644,20.1790891089109,1.79168316831683,1771.25247524752,2421.79900990099,2298.93663366337,20,40,9,32,5305867.18710981,396243.541309091,0,0,0,0,0,0,0,81.4677821782177,25151.4339340208,20.1790891089109,21.6433302281806,21.8425367597827,1.79168316831683,1.80632337724669,1.42354074408331,1.66545069006443,1.321309178531,1.34272845261571,51.5236459619478,0.00928826210838567,4720.73564356436,4681.30648955985,4674.96379792455,1.10474277520753,10748.4378257417,7225.97750396692,0,10748.4378257417,81.4691611606704,81.4691611606704,0.288962683397029,81.4681963217644,25.61,1014.9,37.36,477.543403751904
 46582,2873.87195940594,456.722772277228,45,82.4600792079208,84.9338815841584,20.3929306930693,0.651881188118811,1790.17821782178,2008.22673267327,1933.49306930693,20,40,9,32,5305880.90120738,396261.708564936,0,0,0,0,0,0,0,82.4600792079206,25174.2061576731,20.3929306930693,21.8726886495384,22.0812135411898,0.651881188118811,0.66652139704867,0.52166293127944,1.7988725451465,1.42716131980919,1.42567752917579,52.0741734974572,0.00288008127391804,3941.7198019802,3950.38474659347,3950.35523662458,1.09144603111126,8960.89293812318,5931.24145196318,0,8960.89293812318,82.4407963925104,82.4407963925104,0.237226197867328,82.4383763284584,25.62,1014.9,37.42,488.341622679922
 46583,2873.87960851485,456.737318910891,45,83.1590891089108,85.6538617821782,21.220201870297,1.92712871287129,1802.55445544554,1559.4297029703,1525.3702970297,20,40,9,32,5305894.74426645,396280.083591631,0,0,0,0,0,0,0,83.1590891089107,25197.2155567655,21.220201870297,22.759988526176,22.8252366222577,1.92712871287129,1.94176892180114,1.54099184188922,1.99781409608062,1.58499445099021,1.52937752531297,52.434183656697,0.0144724084014381,3084.8,3102.92383099696,3106.27576528295,1.08226753352649,7002.75818716228,3927.9782467226,0,7002.75818716228,83.148428487403,83.148428487403,0.15700121992397,83.1461738577526,25.63,1014.9,37.48,522.914011151196
-46584,2873.88728613861,456.751978415842,45,83.6529504950495,86.162539009901,22.7819405940594,0.887722772277228,1816.26732673267,1342.03861386139,1298.12178217822,20,40,9,32,5305908.63767565,396298.600079351,0,0,0,0,0,0,0,83.6529504950494,25220.3843649339,22.7819405940594,24.4350506038592,24.1820070742133,0.887722772277228,0.902362981207085,0.731752287644239,1.91178409995573,1.516741320359,1.56628347042769,52.8330749131347,0.0173524896753562,2640.1603960396,2647.97983531026,2649.13528200801,1.07587760090543,6002.83665333214,3009.86886946644,0,6002.83665333214,83.6394621115575,83.6394621115575,0.12025237177181,83.6384638863868,25.64,1014.9,37.54,585.409055266408
+46584,2873.88728613861,456.751978415842,45,83.6529504950495,86.162539009901,22.7819405940594,0.887722772277228,1816.26732673267,1342.03861386139,1298.12178217822,20,40,9,32,5305908.63767565,396298.600079351,0,0,0,0,0,0,0,83.6529504950494,25220.3843649339,22.7819405940594,24.4350506038592,24.1820070742133,0.887722772277228,0.902362981207085,0.73175228764424,1.91178409995573,1.516741320359,1.56628347042769,52.8330749131347,0.0173524896753562,2640.1603960396,2647.97983531026,2649.13528200801,1.07587760090543,6002.83665333214,3009.86886946644,0,6002.83665333214,83.6394621115575,83.6394621115575,0.12025237177181,83.6384638863868,25.64,1014.9,37.54,585.409055266408
 46585,2873.89501356436,456.766715148515,45,84.0185643564356,86.5391212871287,24.0782178217822,0.921980198019802,1818.87623762376,1223.95940594059,1161.51089108911,20,40,9,32,5305922.62166515,396317.214335098,0,0,0,0,0,0,0,84.0185643564355,25243.6742592408,24.0782178217822,25.8253886887673,25.306685191555,0.921980198019802,0.93662040694966,0.762282950230078,2.81796420038232,2.23567229276112,2.19285863530828,52.9089650547024,-0.00525614832490041,2385.4702970297,2381.01264581904,2381.07814379569,1.07119556871367,5408.28853741449,2412.02225651886,0,5408.28853741449,84.013267718851,84.013267718851,0.096523761287049,84.0132245766631,25.65,1014.9,37.6,640.866033440065
 46586,2873.90279336633,456.781522277228,45,84.2955247524752,86.8243904950495,24.1640099009901,1.98544554455446,1825.85643564356,1087.84158415842,1061.24752475248,20,40,9,32,5305936.70115718,396335.917932975,0,0,0,0,0,0,0,84.2955247524751,25267.0566684817,24.1640099009901,25.9174060385713,25.3956482587673,1.98544554455446,2.00008575348431,1.61856222427735,2.8153988600978,2.23363704327326,2.25937221673444,53.1120107845136,0.000864024382175413,2149.08910891089,2145.86078815802,2145.79707596928,1.06767352609919,4874.5414366837,1553.67518280816,0,4874.5414366837,84.298962258602,84.298962258602,0.0621398773540886,84.298808735079,25.66,1014.9,37.66,645.305171238057
-46587,2873.91057564357,456.796362178218,45,84.5405643564356,87.0767812871288,24.2371188118812,1.6829702970297,1829.43564356436,990.871287128714,935.356435643565,20,40,9,32,5305950.78456056,396354.662344875,0,0,0,0,0,0,0,84.5405643564355,25290.5060835532,24.2371188118812,25.995819900193,25.4713489700061,1.6829702970297,1.69761050595956,1.37155668907635,2.85805354001075,2.26747774501995,2.24823513262943,53.2161257225657,-0.00597616864337992,1926.22772277228,1923.83172238016,1923.98394841086,1.0645791008887,4364.89463611625,1379.99085270981,0,4364.89463611625,84.5225649446132,84.5225649446132,0.0552478515177845,84.5219869643572,25.67,1014.9,37.72,648.956605587733
+46587,2873.91057564357,456.796362178218,45,84.5405643564356,87.0767812871288,24.2371188118812,1.6829702970297,1829.43564356436,990.871287128714,935.356435643565,20,40,9,32,5305950.78456056,396354.662344875,0,0,0,0,0,0,0,84.5405643564355,25290.5060835532,24.2371188118812,25.995819900193,25.4713489700061,1.6829702970297,1.69761050595956,1.37155668907635,2.85805354001074,2.26747774501995,2.24823513262943,53.2161257225657,-0.00597616864337992,1926.22772277228,1923.83172238016,1923.98394841086,1.0645791008887,4364.89463611625,1379.99085270981,0,4364.89463611625,84.5225649446132,84.5225649446132,0.0552478515177845,84.5219869643572,25.67,1014.9,37.72,648.956605587733
 46588,2873.91839316832,456.811234653465,45,84.6606435643564,87.2004628712871,24.2287227722772,3.22831683168317,1832.27227722772,882.856435643564,838.425742574257,20,40,9,32,5305964.93258566,396373.448413869,0,0,0,0,0,0,0,84.6606435643563,25314.0063035202,24.2287227722772,25.9868146246438,25.4701518081738,3.22831683168317,3.24295704061302,2.62011283089487,2.88685453379467,2.29032742628913,2.29224699971337,53.2986400510635,0.00100802844587132,1721.28217821782,1738.45835702382,1739.08171194156,1.06306893482393,3901.18657074593,965.763218197658,0,3901.18657074593,84.6749542201744,84.6749542201744,0.0386223028243394,84.6749960589916,25.68,1014.9,37.78,648.976046249057
 46589,2873.92621366337,456.826116435643,45,84.7883267326733,87.3319765346535,23.7406039603961,1.62465346534653,1834.89108910891,828.863366336633,814.929702970297,20,40,9,32,5305979.08596472,396392.246082613,0,0,0,0,0,0,0,84.7883267326732,25337.5452201044,23.7406039603961,25.46327678906,25.0633797772319,1.62465346534653,1.63929367427639,1.32227543362767,2.32569104740897,1.84512033031129,1.89852912333151,53.3748182007586,0.00907225601284179,1643.79306930693,1641.34105479855,1641.31098538425,1.06146707837939,3725.50978850817,576.400215820935,0,3725.50978850817,84.7843765317125,84.7843765317125,0.0229824962694311,84.7845190947665,25.69,1014.9,37.84,628.524423960996
 46590,2873.93403465347,456.841011485149,45,84.869693069307,87.4157838613861,23.4629306930693,0.495544554455445,1837.32178217822,789.296039603961,791.464356435644,20,40,9,32,5305993.24002431,396411.060201856,0,0,0,0,0,0,0,84.8696930693068,25361.1088189493,23.4629306930693,25.1654549107852,24.8328193103065,0.495544554455445,0.510184763385303,0.412149558556453,1.99329534199478,1.58140943266167,1.53243113233208,53.4455241960333,0.00417611784718115,1580.7603960396,1578.36544967157,1577.86116157706,1.0604497350217,3583.71901112883,717.796997247963,0,3583.71901112883,84.8775915106361,84.8775915106361,0.0286777440120168,84.8776868458273,25.6987376237624,1014.9,37.8810643564356,617.135389115972
-46591,2873.94186930693,456.855938811881,45,84.9546930693069,87.503333861386,23.0936138613861,-0.0364356435643564,1839.30198019802,720.406146869307,710.021434348515,20,40,9,32,5306007.4187318,396429.914888891,0.643564356435644,0.643564356435644,3414756.92654092,255131.953860997,4.87391840597405,0,0,84.9546930693068,25384.6979431792,23.0936138613861,24.7693396003367,24.5224127481471,-0.0364356435643564,-0.021795434634499,-0.0159719948175303,1.90520341944439,1.51152044314391,1.5612432649645,53.5031258215116,0.00460813003826886,1430.42758121782,1434.3741101083,1435.03090332833,1.05938860344695,3243.06589569041,314.191008849566,0,3243.06589569041,84.9566874816194,84.9566874816194,0.0125300896426413,84.9565766148042,25.7,1014.9,37.81,602.04296260822
+46591,2873.94186930693,456.855938811881,45,84.9546930693069,87.503333861386,23.0936138613861,-0.0364356435643564,1839.30198019802,720.406146869307,710.021434348515,20,40,9,32,5306007.4187318,396429.914888891,0.643564356435644,0.643564356435644,3414756.92654092,255131.953860997,4.87391840596465,0,0,84.9546930693068,25384.6979431792,23.0936138613861,24.7693396003367,24.5224127481471,-0.0364356435643564,-0.021795434634499,-0.0159719948175302,1.90520341944439,1.51152044314391,1.5612432649645,53.5031258215116,0.00460813003826886,1430.42758121782,1434.3741101083,1435.03090332833,1.05938860344695,3243.06589569041,314.191008849566,0,3243.06589569041,84.9566874816194,84.9566874816194,0.0125300896426413,84.9565766148042,25.7,1014.9,37.81,602.04296260822
 46592,2873.94971623763,456.870870990099,45,85.0196336633662,87.5702226732674,23.4420297029703,1.64851485148515,1839.69801980198,690.703430652475,664.0210477,20,40,9,32,5306021.62013304,396448.775934459,1,1,5306019.13352368,396450.801660201,26.9161610415736,0,0,85.0196336633662,25408.3044540703,23.4420297029703,25.1430372967707,24.8229473863173,1.64851485148515,1.66315506041501,1.33632189130472,2.00920305418752,1.59403004416047,1.52477338405245,53.5146461466073,-0.0129603657326312,1354.72447835248,1354.52623228109,1354.51043782198,1.05857909501412,3069.77712205611,220.882845100796,0,3069.77712205611,85.0083979021663,85.0083979021663,0.00894111688397554,85.0078176331917,25.7,1014.9,37.72,616.576913726853
 46593,2873.95754782178,456.885811485149,45,85.0451683168316,87.5965233663366,23.7664257425742,1.93257425742574,1840.07920792079,674.246129983168,655.85406550495,20,40,9,32,5306035.79298195,396467.646736755,1,1,5306034.02786682,396469.08469448,50.4981626570994,0,0,85.0451683168315,25431.920090539,23.7664257425742,25.4909722591453,25.0998795294963,1.93257425742574,1.9472144663556,1.57015138923259,2.33573518338642,1.85308898956766,1.86818752343232,53.5257344595119,0.00338409549685369,1330.10019548812,1330.93522059575,1331.00174786605,1.05826326760506,3013.70406798311,-49.41719299981,0,3013.70406798311,85.0218653073227,85.0218653073227,-0.00200416081212766,85.0213245638848,25.7,1014.9,37.63,630.475241969229
 46594,2873.96538089109,456.900773465347,45,85.0239405940594,87.5746588118812,23.5243861386139,1.66970297029703,1839.5495049505,658.481933933663,665.289767188119,20,40,9,32,5306049.96816243,396486.544258205,1,1,5306048.93622378,396487.384930935,74.1023521507351,0,0,85.0239405940593,25455.5400073432,23.5243861386139,25.2313697048109,24.892782141599,1.66970297029703,1.68434317922689,1.35553288057198,2.07881487588853,1.64925758076454,1.69109487893393,53.5103260246964,0.013176371828175,1323.77170112178,1324.8722791744,1324.95996330863,1.05852944339716,2999.25567423096,320.344601003848,0,2999.25567423096,85.0254493677089,85.0254493677089,0.0127057260181417,85.0254748703441,25.7,1014.9,37.54,619.808343316609
@@ -1550,7 +1550,7 @@ Time,Lat,Long,Heading,v_veh_GPS,v_veh_CAN,vair_ar,beta_ar,n_eng,tq_l,tq_r,t_amb_
 46598,2873.99669386139,456.960675247525,45,85.0771683168317,87.6294833663366,20.9803410340594,0.733069306930693,1841.59900990099,693.145656930693,668.846118116832,20,40,9,32,5306106.63252692,396562.199863803,1,1,5306108.5872315,396560.607456306,168.546944074659,0,0,85.0771683168316,25550.0283378163,20.9803410340594,22.5027228359617,22.730970001564,0.733069306930693,0.747709515860552,0.585712420880571,2.01082264845297,1.5953149724872,1.56074760885752,53.5699437070665,-0.00770421740773075,1361.99177504753,1361.48858250377,1361.44849265967,1.05786389182539,3087.34253842144,223.482030967419,0,3087.34253842144,85.069038917753,85.069038917753,0.00900238538705717,85.0692298915605,25.7,1014.9,37.18,517.910685783091
 46599,2874.00448722772,456.975676534654,45,85.0991584158416,87.6521331683169,22.9305940594059,0.167326732673267,1841.30693069307,679.625827233664,656.405999620792,20,40,9,32,5306120.73359067,396581.144563534,1,1,5306123.48912417,396578.899757731,192.140898731975,0,0,85.0991584158415,25573.6663269252,22.9305940594059,24.5944907065662,24.3921664528162,0.167326732673267,0.181966941603125,0.155853101136619,1.82040237325988,1.4442423175644,1.5025507274745,53.5614474673085,-0.00374410565609345,1336.03182685446,1336.61795197084,1336.66464913459,1.05759059583789,3027.23105685688,61.8281333844963,0,3027.23105685688,85.1004556416036,85.1004556416036,0.00250383949287974,85.1001123055161,25.7,1014.9,37.09,595.84061010121
 46600,2874.01228168317,456.990679405941,45,85.0979108910891,87.6508482178218,21.0565110010891,0.495247524752476,1842.00495049505,661.853033309901,661.061119314852,20,40,9,32,5306134.83669762,396600.091179872,1,1,5306138.39277041,396597.194211701,215.737629803849,0,0,85.097910891089,25597.3026600385,21.0565110010891,22.5844198709962,22.7974623463507,0.495247524752476,0.509887733682333,0.408980352684283,2.14167012078255,1.69912469030597,1.83512018816479,53.5817520402896,0.00784822147142663,1322.91415262475,1324.05071467561,1324.14126569028,1.05760646886804,2998.69842929304,-78.7660779784949,0,2998.69842929304,85.0991841976276,85.0991841976276,-0.00321455412869423,85.098831588873,25.7,1014.9,37.0113613861386,521.373449637571
-46601,2874.02007039604,457.005693366337,45,85.0851881188119,87.6377437623762,19.7667656764356,0.374554455445545,1841.00495049505,656.167499926733,678.531581631683,20,40,9,32,5306148.92898102,396619.051325572,1.00990099009901,1,5306153.29872216,396615.491495707,236.85146253337,0,0,85.0851881188118,25620.9380403741,19.7667656764356,21.2010876590679,21.6988699053648,0.374554455445545,0.389194664375403,0.291926258321807,2.95129581972007,2.34145284421807,2.12747793852094,53.5526632194231,-0.00921626007653772,1334.69908155842,1335.34113063262,1335.39228331281,1.05776363878766,3024.21775054675,-39.8330509375396,0,3024.21775054675,85.0795035780805,85.0795035780805,-0.00151809735426676,85.0796865629419,25.7,1014.9,37,472.351606729801
+46601,2874.02007039604,457.005693366337,45,85.0851881188119,87.6377437623762,19.7667656764356,0.374554455445545,1841.00495049505,656.167499926733,678.531581631683,20,40,9,32,5306148.92898102,396619.051325572,1.00990099009901,1,5306153.29872216,396615.491495707,236.85146253336,0,0,85.0851881188118,25620.9380403741,19.7667656764356,21.2010876590679,21.6988699053648,0.374554455445545,0.389194664375403,0.291926258321807,2.95129581972008,2.34145284421807,2.12747793852094,53.5526632194231,-0.00921626007653772,1334.69908155842,1335.34113063262,1335.39228331281,1.05776363878766,3024.21775054675,-39.8330509375396,0,3024.21775054675,85.0795035780805,85.0795035780805,-0.00151809735426676,85.0796865629419,25.7,1014.9,37,472.351606729801
 46602,2874.02786039604,457.020711683168,45,85.0824851485149,87.6349597029703,21.3395,0.15039603960396,1839.14851485149,667.796480263367,692.755124077228,20,40,9,32,5306163.02361266,396638.01684758,2,1,5306168.20847812,396633.792573531,11.8023264616065,0,0,85.0824851485148,25644.5735177944,21.3395,22.8879432025655,23.0377029126235,0.15039603960396,0.165036248533818,0.129634024308297,2.31669575742841,1.83798378806133,1.81876315855346,53.4986616955371,0.000720020318479512,1360.55160434059,1360.10884348039,1360.07356828801,1.05779712612731,3079.7886044491,-33.8250739856783,0,3079.7886044491,85.0801769434368,85.0801769434368,-0.00135879924626117,85.0800935407825,25.7,1014.9,37,533.323212177185
 46603,2874.03567128713,457.03569990099,45,85.060108910891,87.6119121782179,20.9481292631683,0.859108910891089,1839.13366336634,686.048343421782,690.654687329703,20,40,9,32,5306177.15767456,396656.945478211,2,1,5306183.11649261,396652.09064048,35.4046176662006,0,0,85.0601089108909,25668.2042474149,20.9481292631683,22.4681737048851,22.7025782895746,0.859108910891089,0.873749119820946,0.684973495194491,2.28901126272095,1.81601989733903,1.80224149288761,53.498229683346,0.00720020318479509,1376.70303075148,1375.58253225099,1375.49326103502,1.0580754817597,3117.13820513431,-277.71413972174,0,3117.13820513431,85.0582464464267,85.0582464464267,-0.0111672058294805,85.0581465346533,25.7,1014.9,37,517.26922466069
 46604,2874.04349029703,457.050671980198,45,85.0388514851485,87.590017029703,22.5317904291089,0.667128712871287,1840.82673267327,694.142410592079,674.161403243564,20,40,9,32,5306191.30719631,396675.854182869,2,1,5306198.02091754,396670.384301615,59.0012259037423,0,0,85.0388514851484,25691.8272113313,22.5317904291089,24.1667489675744,24.0492225930872,0.667128712871287,0.681768921801144,0.549744426715091,2.01900679782865,1.60180798471089,1.79295571367034,53.54747907313,-0.00604817067522788,1368.30381383564,1367.53575884627,1367.47456715116,1.05834003290101,3101.73608971259,-18.1256111041211,0,3101.73608971259,85.0360507793353,85.0360507793353,-0.000675315056258346,85.0359925506835,25.7,1014.9,37,580.132829652667
@@ -1558,9 +1558,9 @@ Time,Lat,Long,Heading,v_veh_GPS,v_veh_CAN,vair_ar,beta_ar,n_eng,tq_l,tq_r,t_amb_
 46606,2874.05912059406,457.080625841584,45,85.0364554455446,87.5875491089109,20.1020137516832,0.466435643564357,1840.22277227723,666.271412513861,657.942834693069,20,40,9,32,5306219.59190097,396713.683143364,2,1,5306227.8297032,396706.971545069,106.194340716084,0,0,85.0364554455444,25739.072704043,20.1020137516832,21.5606621057529,21.9816735066797,0.466435643564357,0.481075852494213,0.373796614010025,2.57529661362463,2.04314848426427,2.04602408095385,53.5299105773591,0.00972027429947337,1324.21424720693,1325.29625537222,1325.38246002537,1.0583705910121,3000.90280434317,-89.4184854940158,0,3000.90280434317,85.0504914224095,85.0504914224095,-0.00365568735090969,85.0509969825553,25.7,1014.9,37,484.595033518843
 46607,2874.06696247525,457.095577722772,45,85.0584851485148,87.6102397029703,20.0958118810891,-0.652574257425742,1840.56930693069,655.930814363366,673.128827359406,20,40,9,32,5306233.78442127,396732.567168916,2,1,5306242.73919792,396725.271428856,129.798975421671,0,0,85.0584851485147,25762.7002951597,20.0958118810891,21.5540102131638,21.9777096488018,-0.652574257425742,-0.637934048495886,-0.492127967820429,2.52191799060452,2.00079978853009,2.00075884079865,53.5399908618178,-0.00410411581533321,1329.05964172277,1329.93832999855,1330.0083359564,1.0580969007338,3011.69478437191,-52.8847307785508,0,3011.69478437191,85.0539688265855,85.0539688265855,-0.00208176758270215,85.054026308345,25.7,1014.9,37,483.814623402792
 46608,2874.07481871287,457.11051039604,45,85.0417227722772,87.5929744554456,20.5352101211881,-0.608019801980198,1841.17326732673,663.122337547525,690.035167519802,20,40,9,32,5306248.00402353,396751.42765201,2,1,5306257.64796893,396743.57042435,153.402464336675,0,0,85.0417227722771,25786.3263285755,20.5352101211881,22.0252922002156,22.3502985801309,-0.608019801980198,-0.593379593050341,-0.45979667954787,2.46368444855481,1.95459937319045,1.85386264349678,53.5575593575887,-0.00950426820392952,1353.15750506733,1353.02501150613,1353.01445561384,1.05830492348565,3067.8980031622,-82.408924190103,0,3067.8980031622,85.0474840701891,85.0474840701891,-0.00321863869556647,85.047341725601,25.7,1014.9,37,501.50769904431
-46609,2874.08268524752,457.125442772277,45,85.0365643564356,87.5876612871287,20.030595709703,-0.068910891089109,1839.16831683168,681.234128811881,693.118244005941,20,40,9,32,5306262.24276665,396770.288013239,2,1,5306272.56431673,396761.878719593,177.017948800607,0,0,85.0365643564356,25809.9470346811,20.030595709703,21.4840618063794,21.921062582064,-0.068910891089109,-0.0542706821592513,-0.0416639791542513,2.64240702889771,2.09639149422208,2.04626882312702,53.4992377117918,0.0122403454141517,1374.35237281782,1373.33051138356,1373.24909867981,1.05836916701326,3112.74801795822,-42.8068407305393,0,3112.74801795822,85.0335217135574,85.0335217135574,-0.00181218616910313,85.0335813295614,25.7,1014.9,37,481.865931587081
+46609,2874.08268524752,457.125442772277,45,85.0365643564356,87.5876612871287,20.030595709703,-0.068910891089109,1839.16831683168,681.234128811881,693.118244005941,20,40,9,32,5306262.24276665,396770.288013239,2,1,5306272.56431673,396761.878719593,177.017948800607,0,0,85.0365643564356,25809.9470346811,20.030595709703,21.4840618063794,21.921062582064,-0.068910891089109,-0.0542706821592513,-0.0416639791542512,2.64240702889771,2.09639149422208,2.04626882312702,53.4992377117918,0.0122403454141517,1374.35237281782,1373.33051138356,1373.24909867981,1.05836916701326,3112.74801795822,-42.8068407305393,0,3112.74801795822,85.0335217135574,85.0335217135574,-0.00181218616910313,85.0335813295614,25.7,1014.9,37,481.865931587081
 46610,2874.09054673267,457.140371782178,45,85.048801980198,87.6002660396039,20.1854504953465,-0.31980198019802,1840.75742574257,693.61429079505,679.54349050198,20,40,9,32,5306276.47229195,396789.14392089,2,1,5306287.47480613,396780.179824234,200.62415826052,0,0,85.048801980198,25833.5687591861,20.1854504953465,21.6501532114477,22.0535891970263,-0.31980198019802,-0.305161771268163,-0.235656435540596,2.52552987417166,2.00366532813298,2.0870728074619,53.5454630162383,-0.00446412597457296,1373.15778129703,1372.18604668622,1372.10862763549,1.05821651783614,3112.26639971133,126.823365082847,0,3112.26639971133,85.0448783452602,85.0448783452602,0.00510979315753808,85.0447454974068,25.7,1014.9,37.0164108910891,487.754799543576
-46611,2874.09841514851,457.155306435644,45,85.0604158415841,87.6122283168317,21.9192574257426,0.687128712871287,1839.63861386139,688.880559668317,661.791472788119,20,40,9,32,5306290.71459014,396808.006994496,2,1,5306302.39390047,396798.491490578,224.243991038836,0,0,85.060415841584,25857.1946123764,21.9192574257426,23.5097691606086,23.5289361823441,0.687128712871287,0.701768921801144,0.564653026728963,1.96305079899735,1.55741449093126,1.57068894931615,53.5129180978429,-0.0101522864905611,1350.67203245644,1350.64383298668,1350.64158630706,1.05807181586302,3059.01966406707,-138.094322340445,0,3059.01966406707,85.0476236643465,85.0476236643465,-0.00544064307420506,85.0473517208862,25.7,1014.9,37.13,555.269329122362
+46611,2874.09841514851,457.155306435644,45,85.0604158415841,87.6122283168317,21.9192574257426,0.687128712871287,1839.63861386139,688.880559668317,661.791472788119,20,40,9,32,5306290.71459014,396808.006994496,2,1,5306302.39390047,396798.491490578,224.243991038836,0,0,85.060415841584,25857.1946123764,21.9192574257426,23.5097691606086,23.5289361823441,0.687128712871287,0.701768921801144,0.564653026728964,1.96305079899735,1.55741449093126,1.57068894931615,53.5129180978429,-0.0101522864905611,1350.67203245644,1350.64383298668,1350.64158630706,1.05807181586302,3059.01966406707,-138.094322340445,0,3059.01966406707,85.0476236643465,85.0476236643465,-0.00544064307420506,85.0473517208862,25.7,1014.9,37.13,555.269329122362
 46612,2874.10627376238,457.170240990099,45,85.0439801980198,87.5952996039604,21.665504950495,0.577722772277228,1839.05940594059,656.418285328713,635.879969071287,20,40,9,32,5306304.9387945,396826.869526852,1.22772277227723,0.613861386138614,3257341.51316516,243588.318387259,149.323466271704,0,0,85.0439801980197,25880.8176299232,21.665504950495,23.2376038221061,23.3128958301579,0.577722772277228,0.592362981207085,0.470774289663847,1.4688777195824,1.1653551946043,1.1812696755555,53.4960696223906,0.00554415645229222,1292.2982544,1289.20324253246,1288.78552911945,1.0582762937707,2926.51955017881,20.9039595646232,0,2926.51955017881,85.0403404568179,85.0403404568179,0.000791044450992625,85.039971239981,25.7,1014.9,37.26,544.045326375238
 46613,2874.11410445545,457.185181980198,45,85.071198019802,87.623333960396,20.8687656765347,0.793366336633663,1839.9702970297,574.282178217822,585.261386138614,20,40,9,32,5306319.11119721,396845.739057492,0,0,0,0,0,0,0,85.0711980198019,25904.4406094611,20.8687656765347,22.3830513138627,22.6357326168381,0.793366336633663,0.808006545563522,0.645271912589031,2.03597804329741,1.61527236557954,1.5565519433142,53.5225663701106,-0.0045361280064209,1159.54356435644,1161.92395303166,1162.16518325935,1.05793846334295,2626.37040704177,166.988426149396,0,2626.37040704177,85.057512890893,85.057512890893,0.00671638946071767,85.0570124469588,25.7,1014.9,37.39,513.363770401627
 46614,2874.12193891089,457.200128514851,45,85.0263564356436,87.5771471287129,21.3747722772277,1.3890099009901,1840.5198019802,541.010891089109,562.547524752475,20,40,9,32,5306333.29050636,396864.615526004,0,0,0,0,0,0,0,85.0263564356435,25928.0658990651,21.3747722772277,22.9257749173579,23.0637308871391,1.3890099009901,1.40365010991996,1.11139577669389,1.742164572908,1.38217123714772,1.47204318191096,53.5385508211808,-0.00302408533761394,1103.55841584158,1110.19310851877,1110.61270155587,1.05849598676387,2501.74786786786,63.6521887302345,0,2501.74786786786,85.0515690618566,85.0515690618566,0.00257055408511978,85.0519137199433,25.7,1014.9,37.52,532.720393371186
@@ -1581,10 +1581,10 @@ Time,Lat,Long,Heading,v_veh_GPS,v_veh_CAN,vair_ar,beta_ar,n_eng,tq_l,tq_r,t_amb_
 46629,2874.23996178218,457.424117821782,45,85.0385148514851,87.5896702970297,20.8111716171287,1.97237623762376,1837.96534653465,523.19702970297,517.189108910891,20,40,9,32,5306546.92942323,397147.50815245,0,0,0,0,0,0,0,85.0385148514851,26282.6363188122,20.8111716171287,22.3212780970353,22.5853421776006,1.97237623762376,1.98701644655362,1.56046532556911,1.8770895091928,1.48921586944417,1.46231485634766,53.4642447243138,-0.000576016254783609,1040.38613861386,1038.47632585041,1038.42273455917,1.05834421344659,2354.82321761006,176.950917352716,0,2354.82321761006,85.0273731987059,85.0273731987059,0.0070826389569662,85.0271651107967,25.7,1014.9,38.3000000000001,510.532442333588
 46630,2874.24782118812,457.439057722772,45,85.0392178217822,87.5903943564356,22.4150297029703,2.6580198019802,1840.15841584158,512.073267326733,508.987128712871,20,40,9,32,5306561.1560671,397166.375692803,0,0,0,0,0,0,0,85.039217821782,26306.2581609739,22.4150297029703,24.0415158145881,23.9492188628017,2.6580198019802,2.67266001091005,2.12941518561466,1.6163374703141,1.28234450162375,1.30252086041882,53.528038524531,-0.000432012191087705,1021.0603960396,1016.52465444564,1016.33382366808,1.05833540266564,2313.74408944784,310.167409734574,0,2313.74408944784,85.0532372316438,85.0532372316438,0.0124102756810309,85.0533186232908,25.7,1014.9,38.2936881188119,574.123383443886
 46631,2874.25564029703,457.453996831683,45,85.0358613861386,87.5869372277228,20.5855726072277,1.47841584158416,1838.05940594059,479.829702970297,489.825742574257,20,40,9,32,5306575.30814515,397185.240823198,0,0,0,0,0,0,0,85.0358613861385,26329.8849561609,20.5855726072277,22.0793091040801,22.3930143429375,1.47841584158416,1.49305605051402,1.16827212086623,2.11357152736336,1.67683226843477,1.74073111557434,53.466980801524,0.00129603657326312,969.655445544555,974.934761297913,975.208920320604,1.05837793041936,2194.94618786717,-386.779573152988,0,2194.94618786717,85.0400627389471,85.0400627389471,-0.0154818699691616,85.0404683639791,25.7,1014.9,38.25,502.408548902679
-46632,2874.26343920792,457.468962277228,45,85.0669603960396,87.6189692079208,20.0850704069307,-0.863861386138614,1846.96534653465,492.949504950495,498.032673267327,20,40,9,32,5306589.42228567,397204.137996972,0,0,0,0,0,0,0,85.0669603960395,26353.5062147143,20.0850704069307,21.5424893129342,21.9684887369566,-0.863861386138614,-0.849221177208754,-0.64962213092307,3.07527167785679,2.43981086841508,2.31676126737322,53.7260441121129,0.00460813003826886,990.982178217822,990.724791687089,990.542753418199,1.05799019138372,2252.86650283999,142.437308100753,0,2252.86650283999,85.0500092147827,85.0500092147827,0.00565984816301977,85.0493690711927,25.7,1014.9,38.2,485.402605229377
-46633,2874.27123792079,457.483967722772,45,85.0572871287128,87.6090057425742,19.9640781078218,0.0838613861386139,1840.4702970297,493.777227722772,479.321782178218,20,40,9,32,5306603.53523272,397223.084892136,0,0,0,0,0,0,0,85.0572871287128,26377.1332092963,19.9640781078218,21.4127175343099,21.865091658822,0.0838613861386139,0.0985015950684714,0.0800048210904405,2.70943899309939,2.14957226389783,2.06315652084978,53.5371107805439,-0.00122403454141517,973.09900990099,973.712459562788,973.588599717115,1.058110835056,2204.89528267853,277.672042079851,0,2204.89528267853,85.05847887462,85.05847887462,0.0111168295047411,85.0586401697311,25.7,1014.9,38.15,479.126037556616
+46632,2874.26343920792,457.468962277228,45,85.0669603960396,87.6189692079208,20.0850704069307,-0.863861386138614,1846.96534653465,492.949504950495,498.032673267327,20,40,9,32,5306589.42228567,397204.137996972,0,0,0,0,0,0,0,85.0669603960395,26353.5062147143,20.0850704069307,21.5424893129342,21.9684887369566,-0.863861386138614,-0.849221177208754,-0.649622130923069,3.07527167785679,2.43981086841508,2.31676126737322,53.7260441121129,0.00460813003826886,990.982178217822,990.724791687089,990.542753418199,1.05799019138372,2252.86650283999,142.437308100753,0,2252.86650283999,85.0500092147827,85.0500092147827,0.00565984816301977,85.0493690711927,25.7,1014.9,38.2,485.402605229377
+46633,2874.27123792079,457.483967722772,45,85.0572871287128,87.6090057425742,19.9640781078218,0.0838613861386139,1840.4702970297,493.777227722772,479.321782178218,20,40,9,32,5306603.53523272,397223.084892136,0,0,0,0,0,0,0,85.0572871287128,26377.1332092963,19.9640781078218,21.4127175343099,21.865091658822,0.0838613861386139,0.0985015950684714,0.0800048210904406,2.70943899309939,2.14957226389783,2.06315652084978,53.5371107805439,-0.00122403454141517,973.09900990099,973.712459562788,973.588599717115,1.058110835056,2204.89528267853,277.672042079851,0,2204.89528267853,85.05847887462,85.05847887462,0.0111168295047411,85.0586401697311,25.7,1014.9,38.15,479.126037556616
 46634,2874.27905376238,457.498984554455,45,85.0546633663367,87.6063032673267,21.7858921893069,-1.02039603960396,1839.21287128713,479.390099009901,465.933663366337,20,40,9,32,5306617.67971665,397242.046441124,0,0,0,0,0,0,0,85.0546633663365,26400.762321865,21.7858921893069,23.3667266358665,23.4155965309283,-1.02039603960396,-1.0057558306741,-0.790604973143894,1.82143992360974,1.44506547300734,1.63284855270763,53.5005337483651,-0.00403211378348525,945.323762376237,948.101323399667,948.419858557284,1.05814359116727,2140.68466508733,-73.5281493068681,0,2140.68466508733,85.0691107734534,85.0691107734534,-0.00290821161325483,85.0694015087222,25.7,1014.9,38.1,549.742359207232
-46635,2874.28683693069,457.513981584158,45,85.0536930693069,87.6053038613861,19.6528091307921,-0.177326732673267,1838.38613861386,502.040594059406,467.234653465347,20,40,9,32,5306631.76417884,397260.98215563,0,0,0,0,0,0,0,85.0536930693068,26424.3904272006,19.6528091307921,21.0788621643633,21.6007495315454,-0.177326732673267,-0.16268652374341,-0.12049251653468,2.84315435431848,2.25565726247713,2.19920159752623,53.4764850697279,0.00979227633132131,969.275247524753,966.149965689638,965.877963224893,1.05815598074237,2193.87260855281,103.574579860241,0,2193.87260855281,85.0637053230074,85.0637053230074,0.0040627825158806,85.0643900990098,25.7,1014.9,38.05,467.142572262733
+46635,2874.28683693069,457.513981584158,45,85.0536930693069,87.6053038613861,19.6528091307921,-0.177326732673267,1838.38613861386,502.040594059406,467.234653465347,20,40,9,32,5306631.76417884,397260.98215563,0,0,0,0,0,0,0,85.0536930693068,26424.3904272006,19.6528091307921,21.0788621643633,21.6007495315454,-0.177326732673267,-0.16268652374341,-0.12049251653468,2.84315435431848,2.25565726247713,2.19920159752624,53.4764850697279,0.00979227633132131,969.275247524753,966.149965689638,965.877963224893,1.05815598074237,2193.87260855281,103.574579860241,0,2193.87260855281,85.0637053230074,85.0637053230074,0.0040627825158806,85.0643900990098,25.7,1014.9,38.05,467.142572262733
 46636,2874.29466128713,457.528976237624,45,85.063702970297,87.615614059406,19.6555720567327,0.316534653465347,1840.25742574257,493.758415841584,449.934653465346,20,40,9,32,5306645.92504952,397279.916176224,0,0,0,0,0,0,0,85.0637029702969,26448.0230322611,19.6555720567327,21.0818255745651,21.6035298448587,0.316534653465347,0.331174862395204,0.270385761057095,3.2211049646228,2.55550979693264,2.42599594760607,53.5309186058049,-0.00482413613381271,943.693069306931,947.282678168807,947.295756718529,1.05803323135465,2137.74325882134,-125.221827469282,0,2137.74325882134,85.0739320654836,85.0739320654836,-0.00496955636157819,85.0740664780762,25.7,1014.9,38,468.94561789905
 46637,2874.3024980198,457.543959009901,45,85.0807227722772,87.6331444554456,19.869202420099,-0.211584158415842,1839.76237623762,495.047524752475,457.670297029703,20,40,9,32,5306660.10916979,397298.835713766,0,0,0,0,0,0,0,85.0807227722771,26471.6536050883,19.869202420099,21.3109574484643,21.7862537181252,-0.211584158415842,-0.196943949485984,-0.15590028772936,2.64981576690312,2.10226932271996,2.10046058442004,53.5165181994354,-0.00612017270707583,952.717821782178,955.17698264876,955.324526166903,1.05782137026804,2157.5593396394,-118.06091432837,0,2157.5593396394,85.0728295265169,85.0728295265169,-0.00467274450217141,85.0723467232437,25.7,1014.9,37.95,475.281734766091
 46638,2874.31033861386,457.558919108911,45,85.0937128712871,87.6465242574258,20.1740280528713,-0.490594059405941,1839.38118811881,501.039603960396,467.125742574257,20,40,9,32,5306674.3010063,397317.727045866,0,0,0,0,0,0,0,85.093712871287,26495.2831322061,20.1740280528713,21.6379019302739,22.0465722140696,-0.490594059405941,-0.475953850476083,-0.365063044627121,2.43631635939529,1.93288650734516,1.9605173622331,53.5054298865308,0.00979227633132132,968.165346534654,967.267728654054,967.169891560585,1.05765786829942,2191.60449298044,-94.9725517624821,0,2191.60449298044,85.0662935986667,85.0662935986667,-0.00387897700661423,85.0655013672795,25.7,1014.9,37.9,487.008120431483
@@ -1595,11 +1595,11 @@ Time,Lat,Long,Heading,v_veh_GPS,v_veh_CAN,vair_ar,beta_ar,n_eng,tq_l,tq_r,t_amb_
 46643,2874.34945217822,457.633528811881,45,83.7428712871287,86.2551574257426,20.4268712871287,1.09386138613861,1793.13366336634,-3492.43663366337,-3086.98811881188,20,40,9,32,5306745.09971581,397411.941736422,0,0,0,0,0,0,0,83.7428712871286,26613.2570718651,20.4268712871287,21.9090920511689,22.1840236766841,1.09386138613861,1.10850159506847,0.865295275435035,2.14435446128613,1.70125435032342,1.75321600450558,52.1601439234837,-0.0257767274015664,-6579.42475247525,-6347.04420154887,-6295.35891056082,1.07479496204476,-14728.6591585532,-15215.1037785973,0,-14728.6591585532,83.6612450740122,83.6612450740122,-0.60839623566316,83.6516936680482,25.7,1014.9,37.62,493.619442347681
 46644,2874.35704217822,457.647999603961,45,80.967207920792,83.3962241584158,19.2303872388119,-0.326435643564357,1731.58415841584,-4503.59603960396,-3836.12079207921,20,40,9,32,5306758.83856417,397430.214836046,0,0,0,0,0,0,0,80.967207920792,26636.1411485427,19.2303872388119,20.6257883682967,21.0064493246767,-0.326435643564357,-0.311795434634499,-0.236714009985367,2.47983831661087,1.96741527597196,1.84267400210369,50.3697413995525,-0.00986427836316927,-8339.71683168316,-8341.74482893834,-8341.67375744127,1.11168146318548,-18676.4783495996,-19549.6370785181,0,-18676.4783495996,80.9868053132045,80.9868053132045,-0.781905913363617,80.9888754173407,25.7,1014.9,37.56,442.41676198908
 46645,2874.36435891089,457.662005445544,45,78.2264851485149,80.5732797029703,19.633900990099,-0.483267326732673,1674.07920792079,-4465.53762376238,-3803.09306930693,20,40,9,32,5306772.08157744,397447.899764929,0,0,0,0,0,0,0,78.2264851485148,26658.2465048684,19.633900990099,21.0585820054913,21.1925199576129,-0.483267326732673,-0.468627117802816,-0.365642031123309,1.6279125804865,1.29152778120358,1.28835391095375,48.6969901956609,-0.0147604165288299,-8268.63069306931,-8267.08277619841,-8268.08761043844,1.15063417250568,-18530.5733558653,-18934.8719793233,0,-18530.5733558653,78.2282572296833,78.2282572296833,-0.757275975122266,78.2294870656502,25.7,1014.9,37.5,450.093422491107
-46646,2874.37141653465,457.675556633663,45,75.4934356435643,77.7582387128713,17.5592161715842,-0.115049504950495,1613.35643564356,-4450.28712871287,-3837.67227722772,20,40,9,32,5306784.85474868,397465.009822489,0,0,0,0,0,0,0,75.4934356435642,26679.5946739828,17.5592161715842,18.8333532846031,19.2706028855008,-0.115049504950495,-0.100409296020637,-0.0806219519507325,2.5974791280346,2.06074730004887,2.120727400688,46.930636350367,-0.0180725099938357,-8287.95940594059,-8286.95420056857,-8287.09574987645,1.19230841129515,-18548.1690421981,-19022.1653804288,0,-18548.1690421981,75.5009338300165,75.5009338300165,-0.760741049352453,75.5012925750057,25.7,1014.9,37.44,373.192553918777
+46646,2874.37141653465,457.675556633663,45,75.4934356435643,77.7582387128713,17.5592161715842,-0.115049504950495,1613.35643564356,-4450.28712871287,-3837.67227722772,20,40,9,32,5306784.85474868,397465.009822489,0,0,0,0,0,0,0,75.4934356435642,26679.5946739828,17.5592161715842,18.8333532846031,19.2706028855008,-0.115049504950495,-0.100409296020637,-0.0806219519507324,2.5974791280346,2.06074730004887,2.120727400688,46.930636350367,-0.0180725099938357,-8287.95940594059,-8286.95420056857,-8287.09574987645,1.19230841129515,-18548.1690421981,-19022.1653804288,0,-18548.1690421981,75.5009338300165,75.5009338300165,-0.760741049352453,75.5012925750057,25.7,1014.9,37.44,373.192553918777
 46647,2874.37821029703,457.688644554455,45,72.7596534653465,74.9424430693069,17.6083663366337,-0.933069306930693,1557.35148514851,-4492.9198019802,-3841.47722772277,20,40,9,32,5306797.14946026,397481.534132012,0,0,0,0,0,0,0,72.7596534653465,26700.1817413645,17.6083663366337,18.8860698986779,19.1555221494325,-0.933069306930693,-0.918429098000835,-0.723784152093083,2.0514074250306,1.62751348675157,1.63786427125167,45.3015183777753,-0.016200457165789,-8334.39702970297,-8337.26189589256,-8335.81077952212,1.23712052261754,-18681.0540736047,-18910.0804227803,0,-18681.0540736047,72.7641615527889,72.7641615527889,-0.756272533193908,72.7665269713082,25.7,1014.9,37.38,368.248001015809
-46648,2874.38473891089,457.701268415842,45,70.051,72.15253,16.6988058307921,-1.37247524752475,1485.5297029703,-4495.18811881188,-3840.29108910891,20,40,9,32,5306808.96334057,397497.471672412,0,0,0,0,0,0,0,70.0509999999999,26720.0148885317,16.6988058307921,17.9105095904702,18.2267202794275,-1.37247524752475,-1.35783503859489,-1.05893617992089,2.20618279515462,1.75030674528239,1.66045722282127,43.2123074216751,-0.014688414496982,-8335.47920792079,-8333.18834427998,-8331.0406724461,1.28498308794156,-18510.9689736006,-18954.0976380916,0,-18510.9689736006,70.0437236545436,70.0437236545436,-0.758046596738893,70.0465039268527,25.7,1014.9,37.32,334.232369297117
+46648,2874.38473891089,457.701268415842,45,70.051,72.15253,16.6988058307921,-1.37247524752475,1485.5297029703,-4495.18811881188,-3840.29108910891,20,40,9,32,5306808.96334057,397497.471672412,0,0,0,0,0,0,0,70.0509999999999,26720.0148885317,16.6988058307921,17.9105095904702,18.2267202794275,-1.37247524752475,-1.35783503859489,-1.05893617992089,2.20618279515462,1.75030674528239,1.66045722282127,43.2123074216751,-0.014688414496982,-8335.47920792079,-8333.18834427998,-8331.0406724461,1.28498308794156,-18510.9689736006,-18954.0976380916,0,-18510.9689736006,70.0437236545436,70.0437236545436,-0.758046596738893,70.0465039268527,25.7,1014.9,37.32,334.232369297116
 46649,2874.39101178218,457.713448019802,45,67.3823762376238,69.4038475247525,17.7778118811881,-1.27356435643564,1440.9900990099,-4450.06336633663,-3827.27920792079,20,40,9,32,5306820.31336976,397512.847423567,0,0,0,0,0,0,0,67.3823762376237,26739.0939788783,17.7778118811881,19.0678108016836,18.9913794084662,-1.27356435643564,-1.25892414750579,-0.998294159640069,1.5300783711751,1.2139096088322,1.24982484753969,41.9167028606031,-0.0142564023058943,-8277.34257425742,-8320.01735124008,-8352.59774824314,1.33585763735725,-18535.916454297,-18532.9186192715,0,-18535.916454297,67.3668839329476,67.3668839329476,-0.74120184295657,67.3609242577147,25.7,1014.9,37.26,361.518273796133
-46650,2874.39701356436,457.725167128713,45,64.6169603960396,66.5554692079208,17.0472376237624,-0.367227722772278,1442.68811881188,-4833.0801980198,-4165.98910891089,20,40,9,32,5306831.17147551,397527.64066418,0,0,0,0,0,0,0,64.6169603960395,26757.424950853,17.0472376237624,18.2842243957596,18.2110273391759,-0.367227722772278,-0.35258751384242,-0.277391158001344,1.45352684793259,1.15317636053233,1.17353213712778,41.9660962544508,0.0429852130132267,-8999.06930693069,-9029.62560533282,-9023.98667407819,1.39305732114928,-21081.0656859336,-19813.1558047349,0,-21081.0656859336,64.6121229291245,64.6121229291245,-0.79290020586217,64.5991958735941,25.7,1014.9,37.2050495049505,332.704534996055
+46650,2874.39701356436,457.725167128713,45,64.6169603960396,66.5554692079208,17.0472376237624,-0.367227722772278,1442.68811881188,-4833.0801980198,-4165.98910891089,20,40,9,32,5306831.17147551,397527.64066418,0,0,0,0,0,0,0,64.6169603960395,26757.424950853,17.0472376237624,18.2842243957596,18.2110273391759,-0.367227722772278,-0.35258751384242,-0.277391158001343,1.45352684793259,1.15317636053233,1.17353213712778,41.9660962544508,0.0429852130132267,-8999.06930693069,-9029.62560533282,-9023.98667407819,1.39305732114928,-21081.0656859336,-19813.1558047349,0,-21081.0656859336,64.6121229291245,64.6121229291245,-0.79290020586217,64.5991958735941,25.7,1014.9,37.2050495049505,332.704534996055
 46651,2874.40271346535,457.736385346535,45,61.6160594059406,63.4645411881188,15.7920198019802,-0.817425742574257,1530.23762376238,-5196.26534653465,-4531.78415841584,20,40,9,32,5306841.48150933,397541.800076576,0,0,0,0,0,0,0,61.6160594059405,26774.9616118266,15.7920198019802,16.937925081727,16.9707041131751,-0.817425742574257,-0.8027855336444,-0.635491092146027,1.26947545863189,1.00715655252769,1.01794927180813,44.5128081209128,-0.0175684957709,-9728.04950495049,-9663.73239878444,-9626.4005888571,1.46099817320145,-25300.1027284065,-21304.5934294409,0,-25300.1027284065,61.6170302911479,61.6170302911479,-0.85201886525285,61.6213130475143,25.7,1014.9,37.18,288.780291877815
 46652,2874.40812485149,457.747054653465,45,58.5873861386139,60.3450077227723,15.9175841584158,0.998712871287129,1460.27227722772,-5132.43069306931,-4486.37425742574,20,40,9,32,5306851.26928783,397555.266301043,0,0,0,0,0,0,0,58.5873861386138,26791.6502627342,15.9175841584158,17.0726006766737,16.9039828962898,0.998712871287129,1.01335308021699,0.810173600857699,1.38215015789496,1.09654864033472,1.11862478498953,42.4775986886986,-0.0204485770448181,-9618.80495049505,-9620.72069404961,-9621.12840585603,1.53654149344108,-25106.6625996663,-21139.9206830245,0,-25106.6625996663,58.5799662778158,58.5799662778158,-0.845404589963956,58.5751807322587,25.7,1014.9,37.16,286.407961275278
 46653,2874.41328059406,457.757179702971,45,55.5493465346535,57.2158269306931,15.6100891089109,0.684158415841584,1387.4900990099,-5059.7801980198,-4497.67128712871,20,40,9,32,5306860.59559236,397568.04622166,0,0,0,0,0,0,0,55.5493465346534,26807.4948427122,15.6100891089109,16.7427930791133,16.4684058524713,0.684158415841584,0.698798624771442,0.564210243734199,1.6105873999422,1.27778260086924,1.21006737289861,40.3604509442415,-0.023400660350584,-9557.45148514851,-9542.33953533967,-9534.40398296612,1.62057570876841,-24998.5166653922,-20902.9019374638,0,-24998.5166653922,55.545652092932,55.545652092932,-0.835895718284687,55.547658421322,25.7,1014.9,37.14,271.560518526759
@@ -1622,7 +1622,7 @@ Time,Lat,Long,Heading,v_veh_GPS,v_veh_CAN,vair_ar,beta_ar,n_eng,tq_l,tq_r,t_amb_
 46670,2874.45585970297,457.864938019802,45,19.5242475247525,20.1099749504951,5.876,-3.5,1241.08415841584,-1082.3603960396,-1406.60891089109,20,40,8,32,5306937.08547032,397703.653319114,0,0,0,0,0,0,0,19.5242475247524,26966.5415296759,5.876,6.30237607527237,6.11920671835315,-3.5,-3.48535979107015,-2.83821359769909,0.969207941163988,0.768935013329975,0.766831038370466,36.1016747644989,-0.0324729163634258,-2488.96930693069,-2512.36693461425,-3342.20746888861,4.61107410345525,-16569.3332598629,-8205.12584594109,0,-16569.3332598629,19.5507890402901,19.5507890402901,-0.327427049635653,19.6774963507338,25.7,1014.89873762376,37.1315594059406,37.5856804937749
 46671,2874.45744722772,457.868395049505,45,18.2912277227723,18.8399645544555,5.50667326732673,-3.5,1121.93564356436,-1420.26435643564,-1646.28217821782,20,40,8.22772277227723,32,5306939.94977056,397708.010990634,0,0,0,0,0,0,0,18.2912277227722,26971.8096168046,5.50667326732673,5.90625014539516,5.73425789606395,-3.5,-3.48535979107015,-2.8386178728061,0.904649399295789,0.717716568718006,0.729870863746651,32.6357849594659,-0.0388090951660455,-3066.54653465346,-3029.27550240173,-3108.7553830383,4.92505989115889,-19690.9478150422,-10596.7072705641,0,-19690.9478150422,18.270630526419,18.270630526419,-0.422971876395561,18.0415316970846,25.7,1014.89,37.36,33.005671269276
 46672,2874.45949425743,457.870898217822,45,16.5702475247525,17.0673549504951,5.0159603960396,-3.49247524752475,992.282178217822,-1487.26435643564,-1677.41485148515,20,40,8.86138613861386,32,5306943.68630174,397711.195773205,0,0,0,0,0,0,0,16.5702475247525,26976.6508128442,5.0159603960396,5.37993001948838,5.21805196530818,-3.49247524752475,-3.4778350385949,-2.83447456932102,0.848419610762885,0.673105859953937,0.666681909340124,28.8643185312703,-0.0389530992297414,-3164.67920792079,-3157.27093422214,-2876.64562702596,5.43818356977592,-19844.9582331032,-12262.6360142238,0,-19844.9582331032,16.5620073522203,16.5620073522203,-0.489627923188357,16.4936112817412,25.7,1014.88,37.62,27.3793571140282
-46673,2874.46167128713,457.872300990099,45,14.839801980198,15.284996039604,4.62296039603961,-3.5,875.30198019802,-1440.81683168317,-1595.8396039604,20,40,8.9009900990099,32,5306947.68794008,397713.014345376,0,0,0,0,0,0,0,14.839801980198,26981.0105304184,4.62296039603961,4.95841303555679,4.78443308635218,-3.5,-3.48535979107015,-2.85564700123535,0.88397424630763,0.701313639724816,0.696141766709371,25.4615025061361,-0.027936788357005,-3036.65643564356,-3056.58154102539,-2707.52676436991,6.07402895832877,-18757.7899058181,-11720.5705724418,0,-18757.7899058181,14.8505747475738,14.8505747475738,-0.468200285375071,15.1403478338255,25.7,1014.87,37.88,22.9455088327281
+46673,2874.46167128713,457.872300990099,45,14.839801980198,15.284996039604,4.62296039603961,-3.5,875.30198019802,-1440.81683168317,-1595.8396039604,20,40,8.9009900990099,32,5306947.68794008,397713.014345376,0,0,0,0,0,0,0,14.839801980198,26981.0105304184,4.62296039603961,4.95841303555679,4.78443308635218,-3.5,-3.48535979107015,-2.85564700123535,0.883974246307629,0.701313639724816,0.696141766709371,25.4615025061361,-0.027936788357005,-3036.65643564356,-3056.58154102539,-2707.52676436991,6.07402895832877,-18757.7899058181,-11720.5705724418,0,-18757.7899058181,14.8505747475738,14.8505747475738,-0.468200285375071,15.1403478338255,25.7,1014.87,37.88,22.9455088327281
 46674,2874.46377435644,457.872843168317,45,13.2255148514851,13.6222802970297,4.00418811881188,-3.45306930693069,771.341584158416,-1388.47326732673,-1509.65148514852,20,40,9,32,5306951.57158313,397713.758669315,0,0,0,0,0,0,0,13.2255148514851,26984.9039795108,4.00418811881188,4.29474121866744,4.1653985737167,-3.45306930693069,-3.43842909800084,-2.79977465374188,0.694697801968281,0.551148459406198,0.550431423390053,22.4374171685221,-0.0257767274015664,-2898.12475247525,-2825.59217723752,-1978.87113485888,6.81695858854548,-17693.9692475689,-9972.36638249904,0,-17693.9692475689,13.2483078129595,13.2483078129595,-0.398329684453594,14.0722074513126,25.7,1014.86,38.14,17.5453674189909
 46675,2874.46563227723,457.87266029703,45,12.2639801980198,12.6318996039604,3.39032673267327,-3.08712871287129,716.777227722772,-878.362376237624,-1153.37821782178,20,40,9,32,5306955.01713729,397713.591936896,0,0,0,0,0,0,0,12.2639801980198,26988.411480776,3.39032673267327,3.63633663842008,3.58802400998939,-3.08712871287129,-3.07248850394143,-2.46216776130906,0.351558158835345,0.278913704757376,0.296493409909274,20.8502043784659,-0.00756021334403484,-2031.74059405941,-2107.87787471817,-106.804741515978,7.33991313898783,-12436.7111372763,-4004.39558393659,0,-12436.7111372763,12.2627614939712,12.2627614939712,-0.160010184186736,13.5382504234832,25.7,1014.85,38.4,12.916377382522
 46676,2874.46732376238,457.871945346535,45,11.7616138613861,12.1144622772277,3.32389108910891,-3.27772277227723,665.495049504951,-649.131683168317,-895.89900990099,20,40,9,32,5306958.16614481,397712.757067281,0,0,0,0,0,0,0,11.7616138613861,26991.74577159,3.32389108910891,3.56508027175137,3.50266937805614,-3.27772277227723,-3.26308256334737,-2.62822703005408,0.390024248732338,0.309431328573144,0.306140937984536,19.3584662826401,-0.024912703019391,-1545.03069306931,-1516.66416037643,1037.58041524139,7.65320171385248,-9255.21521126498,-2789.92401385403,0,-9255.21521126498,11.7774810312714,11.7774810312714,-0.111072988486967,13.5809367458873,25.7,1014.84,38.66,12.3074902762409
@@ -1637,10 +1637,10 @@ Time,Lat,Long,Heading,v_veh_GPS,v_veh_CAN,vair_ar,beta_ar,n_eng,tq_l,tq_r,t_amb_
 46685,2874.4689890099,457.840998019802,225,27.3456336633663,28.1660026732673,5.59660396039604,2.18287128712871,952.722772277228,5060.01881188119,4113.16435643564,20,40,10,32,5306961.93431301,397674.268845808,0,0,0,0,0,0,0,27.3456336633663,27037.3154115241,5.59660396039604,6.0027064164014,6.33010117304456,2.18287128712871,2.19751149605857,1.70514385201747,1.6736603458192,1.32782242660617,1.40095863633561,27.7135820582763,0.032256910267882,9173.18316831684,9202.73830996961,9275.58838162948,3.29268707599915,33461.0034347402,14079.8347468715,0,33461.0034347402,27.3692776198412,27.3692776198412,0.562770262174734,27.4603930070282,25.7,1014.85,39.3,40.6026461353255
 46686,2874.46641376238,457.83595990099,225,29.5528316831683,30.4394166336633,6.70785148514851,3.07742574257426,1042.5297029703,4985.26336633663,3989.92772277228,20,40,10,32,5306957.27536264,397667.909570609,0,0,0,0,0,0,0,29.5528316831683,27045.2152638893,6.70785148514851,7.19458861750856,7.40214070371909,3.07742574257426,3.09206595150411,2.39519701681157,1.15304428507277,0.914784211990346,0.907642854806431,30.3259597777837,0.0200165648537304,8975.19108910892,8920.02066464072,8284.28802759747,3.04689902113922,33155.6311855754,15642.9214296824,0,33155.6311855754,29.5494045681796,29.5494045681796,0.62545066387826,29.5066715910459,25.7,1014.86,39.22,55.0261948952304
 46687,2874.46358960396,457.83057,225,31.6247722772277,32.5735154455446,7.17964356435643,1.67504950495049,1286.31683168317,3505.76336633663,2870.70891089109,20,40,10,32,5306952.16312206,397661.103982671,0,0,0,0,0,0,0,31.6247722772277,27053.7286008805,7.17964356435643,7.70061501514351,7.92270503605081,1.67504950495049,1.68968971388035,1.31071969464325,1.25077057900876,0.992316768151732,0.952253445550331,37.4174398944883,0.161716563530498,6376.47227722772,6811.07064993628,8302.98680014377,2.84659653536383,26503.6958562441,12448.43959453,0,26503.6958562441,31.6013862366434,31.6013862366434,0.495327255497825,31.593671887979,25.7,1014.87,39.14,63.0736891016546
-46688,2874.4606090099,457.824831683168,225,33.5975841584158,34.6055116831683,8.05908910891089,2.49861386138614,1700.33168316832,5367.7702970297,4442.05940594059,20,40,10,32,5306946.76881473,397653.859310838,0,0,0,0,0,0,0,33.5975841584158,27062.7609800334,8.05908910891089,8.64387515120629,8.78405179844646,2.49861386138614,2.51325407031599,1.95680054674668,1.09198211749532,0.866339666041065,1.04469118474688,49.4606437454403,0.0371530484335426,9809.82970297029,9410.56691500833,8881.52842618274,2.68050528796267,51989.1683802888,18366.0025626578,0,51989.1683802888,33.6594840701892,33.6594840701892,0.733932675445766,33.909309840156,25.7,1014.88,39.06,77.5340074070701
+46688,2874.4606090099,457.824831683168,225,33.5975841584158,34.6055116831683,8.05908910891089,2.49861386138614,1700.33168316832,5367.7702970297,4442.05940594059,20,40,10,32,5306946.76881473,397653.859310838,0,0,0,0,0,0,0,33.5975841584158,27062.7609800334,8.05908910891089,8.64387515120629,8.78405179844646,2.49861386138614,2.51325407031599,1.95680054674668,1.09198211749532,0.866339666041066,1.04469118474688,49.4606437454403,0.0371530484335426,9809.82970297029,9410.56691500833,8881.52842618274,2.68050528796267,51989.1683802888,18366.0025626578,0,51989.1683802888,33.6594840701892,33.6594840701892,0.733932675445766,33.909309840156,25.7,1014.88,39.06,77.5340074070701
 46689,2874.45736376238,457.818665940594,225,36.621198019802,37.719833960396,6.39313586359406,-2.5,1850.44554455446,5698.4801980198,4709.37623762376,20,40,10,32,5306940.89373121,397646.073593925,0,0,0,0,0,0,0,36.6211980198019,27072.5150939773,6.39313586359406,6.85703650658288,7.5398879662366,-2.5,-2.48535979107015,-1.77786427554281,3.356862168078,2.66321472031894,2.46415132485444,53.8272789688911,0.0490333836884546,10407.8564356436,10265.214880894,9677.4134988363,2.45904569528586,55075.9213704953,20531.1094117807,0,55075.9213704953,36.6050524458386,36.6050524458386,0.820310372621425,36.5220090169761,25.7,1014.89,38.98,57.4201874510279
 46690,2874.45384485149,457.811998514851,225,39.2205940594059,40.3972118811881,6.89500715070297,1.00534653465347,1814.70792079208,4665.35544554455,3955.79900990099,20,40,10,32,5306934.5228252,397637.654048939,0,0,0,0,0,0,0,39.2205940594059,27083.0739633118,6.89500715070297,7.39532472862872,8.11606385103959,1.00534653465347,1.01998674358332,0.725714405032351,3.54197022055798,2.8100728472037,2.78849561833815,52.7877136330704,-0.142852031186335,8621.15445544555,8610.60302911479,9100.28627260685,2.29528156040878,41391.9776320189,16281.9576324168,0,41391.9776320189,39.228254582884,39.228254582884,0.653557930050426,39.1920403401649,25.7,1014.89873762376,38.8949504950495,66.3738528863211
-46691,2874.4501239604,457.804883861386,225,41.642,42.89126,7.77632673269307,0.111188118811881,1482.88613861386,4569.89108910891,4214.29702970297,20,40,10,32,5306927.78767804,397628.670849107,0,0,0,0,0,0,0,41.642,27094.3026016781,7.77632673269307,8.34059488659391,9.00506952447262,0.111188118811881,0.125828327741739,0.0980794903831039,3.29019450039138,2.61032297050546,2.67000258964035,43.1354092516615,0.0288728147710283,8784.18811881188,8931.1468483482,8830.96552159785,2.16186768120574,32761.3943088607,17227.956684693,0,32761.3943088607,41.6374790706793,41.6374790706793,0.688730135389774,41.6531527647498,25.7,1014.9,38.78,82.0882005802028
+46691,2874.4501239604,457.804883861386,225,41.642,42.89126,7.77632673269307,0.111188118811881,1482.88613861386,4569.89108910891,4214.29702970297,20,40,10,32,5306927.78767804,397628.670849107,0,0,0,0,0,0,0,41.642,27094.3026016781,7.77632673269307,8.34059488659391,9.00506952447262,0.111188118811881,0.125828327741739,0.098079490383104,3.29019450039138,2.61032297050546,2.67000258964035,43.1354092516615,0.0288728147710283,8784.18811881188,8931.1468483482,8830.96552159785,2.16186768120574,32761.3943088607,17227.956684693,0,32761.3943088607,41.6374790706793,41.6374790706793,0.688730135389774,41.6531527647498,25.7,1014.9,38.78,82.0882005802028
 46692,2874.44620168317,457.797299702971,225,44.1407326732673,45.4649546534653,8.95278712871287,0.725940594059406,1567.17326732673,4558.39801980198,4308.60792079208,20,40,10,32,5306920.68988515,397619.096265193,0,0,0,0,0,0,0,44.1407326732673,27106.2195692523,8.95278712871287,9.60242195490239,10.149478094248,0.725940594059406,0.740580802989265,0.559284402178496,2.78527804405278,2.20974026209411,2.30403257455064,45.5872224401479,0.0164164632613328,8867.00594059406,8862.15285756299,8789.51219590051,2.03943540710608,32966.8236044922,17083.7716332084,0,32966.8236044922,44.1259370649936,44.1259370649936,0.683131555729831,44.1117756627466,25.7,1014.9,38.66,104.18648951627
 46693,2874.44207425743,457.789266930693,225,46.5180693069307,47.9136113861386,10.1148404840495,-1.54019801980198,1649.93069306931,4402.33465346535,4066.09801980198,20,40,10,32,5306913.22201836,397608.956188228,0,0,0,0,0,0,0,46.5180693069306,27118.8159875417,10.1148404840495,10.8487965745184,11.2742967416814,-1.54019801980198,-1.52555781087212,-1.16531035741881,2.28914892025467,1.81612910991667,1.90768496957142,47.9945383729523,0.0200885668855783,8468.43267326733,8452.44537790413,8459.86926046091,1.93513811601552,31452.7520089705,16129.6366888637,0,31452.7520089705,46.5139299088324,46.5139299088324,0.644916348070445,46.4980358911302,25.7,1014.9,38.54,128.843822017362
 46694,2874.43773089109,457.780828217822,225,48.7661089108911,50.2290921782178,10.7815346534653,-1.41980198019802,1730.34653465347,4267.55445544555,3807.00099009901,20,40,10,32,5306905.36314652,397598.303406548,0,0,0,0,0,0,0,48.766108910891,27132.0573112765,10.7815346534653,11.5638676063172,11.9707411212243,-1.41980198019802,-1.40516177126816,-1.0726195882114,2.33619310560417,1.85345228872324,1.70484419878689,50.3337403836286,0.0235446644142799,8074.55544554455,8085.24994608372,8095.09718462359,1.84584203920346,30000.8634069288,15059.5358429359,0,30000.8634069288,48.7581076365062,48.7581076365062,0.602066518533044,48.7429226138768,25.7,1014.9,38.42,144.781318642702
@@ -1656,8 +1656,8 @@ Time,Lat,Long,Heading,v_veh_GPS,v_veh_CAN,vair_ar,beta_ar,n_eng,tq_l,tq_r,t_amb_
 46704,2874.38455811881,457.679066633663,225,65.7284752475247,67.7003295049505,16.3085346534653,-0.222475247524753,1672.28217821782,3168.98118811881,2846.1405940594,20,40,10,32,5306809.11982874,397469.814076311,0,0,0,0,0,0,0,65.7284752475246,27292.6629033832,16.3085346534653,17.4919194388616,17.6463165312898,-0.222475247524753,-0.207835038594896,-0.164664765371618,1.3887425227178,1.10177878746583,1.15307053432972,48.6447167205393,0.0120243393186078,6015.12178217822,6014.75294578963,6014.11727783344,1.36932407966673,16027.5923421999,9848.59824825681,0,16027.5923421999,65.7281250857758,65.7281250857758,0.393828491760072,65.7259367491912,25.74,1014.9,37.74,311.764629538445
 46705,2874.37840326733,457.66741970297,225,67.1388316831683,69.1529966336634,15.7944867987129,-0.402079207920792,1708.90099009901,3095.79900990099,2772.59801980198,20,40,10,32,5306797.97673374,397455.105523865,0,0,0,0,0,0,0,67.1388316831682,27311.1184470576,15.7944867987129,16.9405710894168,17.2901663557316,-0.402079207920792,-0.387438998990935,-0.297223499664771,2.04098194358373,1.6192422816006,1.50272611348328,49.7099147796979,0.0154804368473094,5868.39702970297,5877.33823154592,5879.69130677504,1.34055731314039,15641.9945681162,9496.89266658411,0,15641.9945681162,67.1301830212723,67.1301830212723,0.379727205393813,67.1268881065575,25.75,1014.9,37.75,299.614678900335
 46706,2874.37211782178,457.655534752475,225,68.4995148514851,70.5545002970297,17.0368157315842,-0.853564356435644,1743.60891089109,3032.88415841584,2752.52376237624,20,40,10,32,5306786.59704023,397440.096166381,0,0,0,0,0,0,0,68.499514851485,27329.9566471401,17.0368157315842,18.2730462671137,18.4249229531137,-0.853564356435644,-0.838924147505786,-0.662129606582746,1.52452169300364,1.20950113855211,1.34796333318913,50.7195272702699,0.00316808940130984,5785.40792079208,5779.93713361435,5778.92954146849,1.31393321275699,15421.2094948941,9448.97148688723,0,15421.2094948941,68.4911500833251,68.4911500833251,0.377928634447607,68.4904269396046,25.76,1014.9,37.76,340.42800626239
-46707,2874.36570861386,457.643410693069,225,69.8217920792079,71.9164458415841,16.4568712871287,-1.34217821782178,1777.81683168317,2976.0099009901,2699.56534653465,20,40,10,32,5306774.99342927,397424.784868768,0,0,0,0,0,0,0,69.8217920792078,27349.1719950774,16.4568712871287,17.6510197198497,18.0073256362109,-1.34217821782178,-1.32753800889192,-1.0353881196055,2.19877219408961,1.74442743869946,1.70056993943004,51.7145953504086,0.00504014222935656,5675.57524752475,5678.5139692187,5679.82001688541,1.28904207241322,15133.5946363808,9222.22863602575,0,15133.5946363808,69.8249427507106,69.8249427507106,0.368840473156221,69.8254359505717,25.77,1014.9,37.77,325.279165288605
-46708,2874.35917306931,457.631067227723,225,71.0983762376238,73.2313275247525,16.0834515952475,-0.914455445544555,1809.9504950495,2913.1297029703,2669.55148514851,20,40,10,32,5306763.16069842,397409.196082272,0,0,0,0,0,0,0,71.0983762376237,27368.7500796483,16.0834515952475,17.2505038362303,17.7627478337358,-0.914455445544555,-0.899815236614696,-0.694841766730467,2.75856803796017,2.18854949588331,2.18856712561404,52.6493257278586,0.0137523880829586,5582.68118811881,5584.21705715126,5583.67295573932,1.26588456769685,14882.8225616407,8685.31414542655,0,14882.8225616407,71.1076119988236,71.1076119988236,0.347280767680728,71.1090214421251,25.78,1014.9,37.78,316.527253086881
+46707,2874.36570861386,457.643410693069,225,69.8217920792079,71.9164458415841,16.4568712871287,-1.34217821782178,1777.81683168317,2976.0099009901,2699.56534653465,20,40,10,32,5306774.99342927,397424.784868768,0,0,0,0,0,0,0,69.8217920792078,27349.1719950774,16.4568712871287,17.6510197198497,18.0073256362109,-1.34217821782178,-1.32753800889192,-1.0353881196055,2.19877219408961,1.74442743869946,1.70056993943005,51.7145953504086,0.00504014222935656,5675.57524752475,5678.5139692187,5679.82001688541,1.28904207241322,15133.5946363808,9222.22863602575,0,15133.5946363808,69.8249427507106,69.8249427507106,0.368840473156221,69.8254359505717,25.77,1014.9,37.77,325.279165288605
+46708,2874.35917306931,457.631067227723,225,71.0983762376238,73.2313275247525,16.0834515952475,-0.914455445544555,1809.9504950495,2913.1297029703,2669.55148514851,20,40,10,32,5306763.16069842,397409.196082272,0,0,0,0,0,0,0,71.0983762376237,27368.7500796483,16.0834515952475,17.2505038362303,17.7627478337358,-0.914455445544555,-0.899815236614696,-0.694841766730467,2.75856803796017,2.18854949588331,2.18856712561405,52.6493257278586,0.0137523880829586,5582.68118811881,5584.21705715126,5583.67295573932,1.26588456769685,14882.8225616407,8685.31414542655,0,14882.8225616407,71.1076119988236,71.1076119988236,0.347280767680728,71.1090214421251,25.78,1014.9,37.78,316.527253086881
 46709,2874.3525260396,457.618494356436,225,72.3631881188119,74.5340837623762,17.5975544554456,-2.45277227722772,1841.27227722772,2842.76534653465,2625.47821782178,20,40,10,32,5306751.12658153,397393.317837785,0,0,0,0,0,0,0,72.3631881188118,27388.6791669696,17.5975544554456,18.8744734825226,19.12327912271,-2.45277227722772,-2.43813206829787,-1.90897362592408,1.86326658382674,1.47824925345891,1.43341780069305,53.5604394388626,0.0083522356943623,5468.24356435644,5465.10898931477,5464.71436000966,1.24375322011544,14570.4310979243,8470.84636567091,0,14570.4310979243,72.3565279874521,72.3565279874521,0.338753553573182,72.3555044024792,25.79,1014.9,37.79,366.600125985353
 46710,2874.34577811881,457.605692178218,225,73.556396039604,75.7630879207921,18.5439405940594,-1.77673267326733,1872.19306930693,2733.63366336634,2608.74752475247,20,40,10,32,5306738.91070262,397377.150604223,0,0,0,0,0,0,0,73.5563960396039,27408.9480652644,18.5439405940594,19.8895315761185,19.9969641032104,-1.77673267326733,-1.76209246433747,-1.39615853798806,1.57791330732977,1.25186014112514,1.25691108720954,54.4598888207072,0.00144004063695902,5342.38118811881,5342.02663464366,5341.15451804604,1.22357737382567,14239.1063270425,8153.44743728202,0,14239.1063270425,73.5569018723654,73.5569018723654,0.326124072803325,73.5542342934958,25.7987376237624,1014.9,37.7962128712871,400.644423080194
 46711,2874.33895534653,457.592645445545,225,74.7269900990099,76.9687998019802,19.3487524752475,-1.58306930693069,1903.85148514851,2638.98910891089,2566.82475247525,20,40,10,32,5306726.56163631,397360.676245742,0,0,0,0,0,0,0,74.7269900990098,27429.5425481027,19.3487524752475,20.7527424585376,20.7490995859575,-1.58306930693069,-1.56842909800084,-1.23966101286365,1.52818956951726,1.21241110096173,1.22826125221098,55.3807948080425,0.0206645831403619,5205.81386138614,5205.78505048524,5206.86766222077,1.20441324734365,13889.0379143732,7941.41358685521,0,13889.0379143732,74.7168615821978,74.7168615821978,0.317457983422091,74.7146820227477,25.8,1014.9,37.78,431.424437896754
@@ -1673,10 +1673,10 @@ Time,Lat,Long,Heading,v_veh_GPS,v_veh_CAN,vair_ar,beta_ar,n_eng,tq_l,tq_r,t_amb_
 46721,2874.26532435643,457.452600099011,225,83.734801980198,86.246846039604,22.3391782178218,-1.34277227722772,1813.90594059406,1480.82871287129,1448.4900990099,20,40,11,32,5306593.27737954,397183.820841176,0,0,0,0,0,0,0,83.7348019801979,27651.0337922446,22.3391782178218,23.9601603712127,23.8105541313727,-1.34277227722772,-1.32813206829787,-1.05467391038849,2.1398372953883,1.69767059200662,1.78739286964742,52.7643849747517,0.00619217473892378,2929.31881188119,2934.94893637879,2936.44229725382,1.07482407421591,6645.15751705075,2678.25531095786,0,6645.15751705075,83.7290836192529,83.7290836192529,0.107079643607927,83.7287540499998,25.8,1014.9,37.57,568.92912869125
 46722,2874.2575269307,457.437924653466,225,84.0765742574257,86.5988714851485,23.5157623762376,-1.27118811881188,1821,1325.37920792079,1322.47227722772,20,40,11,32,5306579.15961786,397165.284877589,0,0,0,0,0,0,0,84.0765742574256,27674.3440845988,23.5157623762376,25.2221201824013,24.8310306235525,-1.27118811881188,-1.25654790988202,-1.00074990451437,2.52618543244487,2.0041854246862,1.98545777438596,52.9707427980279,-0.000864024382175409,2647.85148514851,2660.4705715126,2661.15578791524,1.07045394234104,6005.59555940246,2178.875551295,0,6005.59555940246,84.0781296931672,84.0781296931672,0.0871619340151703,84.0777827334134,25.8,1014.9,37.54,617.888840524942
 46723,2874.24968564357,457.423208514852,225,84.3328415841584,86.8628268316832,23.0908217821782,-1.91712871287129,1826.22277227723,1208.02574257426,1262.18217821782,20,40,11,32,5306564.96157181,397146.696690619,0,0,0,0,0,0,0,84.3328415841583,27697.7369838837,23.0908217821782,24.7663449214395,24.4839924352859,-1.91712871287129,-1.90248850394143,-1.52070894732054,2.16134347048255,1.71473282430005,1.67734365738887,53.1226670852271,0.00345609752870164,2470.20792079208,2469.03823154593,2469.33140557046,1.06720082632715,5601.74149707006,1578.87923503106,0,5601.74149707006,84.3430673463385,84.3430673463385,0.063126981014937,84.3429999074673,25.8,1014.9,37.51,600.708792915748
-46724,2874.24184831683,457.408421584159,225,84.5409207920792,87.0771484158416,23.4641188118812,-1.22,1830.09900990099,1106.58514851485,1194.86831683168,20,40,11,32,5306550.77249281,397128.020369447,0,0,0,0,0,0,0,84.5409207920791,27721.1959881192,23.4641188118812,25.1667292422308,24.8136830742922,-1.22,-1.20535979107014,-0.959968404434757,2.27557516651495,1.80536017781294,1.96259576303458,53.235422267101,0.00302408533761394,2301.45346534653,2301.27775708264,2301.56402922268,1.06457383280229,5217.18426884774,1251.17534970093,0,5217.18426884774,84.5424340750905,84.5424340750905,0.050022328965563,84.5432537685009,25.8,1014.9,37.48,616.625282509314
-46725,2874.23401722773,457.39358,225,84.7107821782178,87.2521056435644,24.3973564356436,-0.73,1834.5099009901,1068.39801980198,1082.94653465347,20,40,11,32,5306536.59624147,397109.276089837,0,0,0,0,0,0,0,84.7107821782177,27744.7058528881,24.3973564356436,26.167684734495,25.6173733432909,-0.73,-0.715359791070143,-0.567796706311503,3.58836471321257,2.84688058299769,2.80234661358601,53.363729887854,0.00187205282804673,2151.34455445545,2147.46603274189,2147.21357850071,1.06243923242291,4879.10622490931,864.948652430179,0,4879.10622490931,84.7052045877854,84.7052045877854,0.03458266618741,84.7049917963224,25.8,1014.9,37.45,659.185342394807
+46724,2874.24184831683,457.408421584159,225,84.5409207920792,87.0771484158416,23.4641188118812,-1.22,1830.09900990099,1106.58514851485,1194.86831683168,20,40,11,32,5306550.77249281,397128.020369447,0,0,0,0,0,0,0,84.5409207920791,27721.1959881192,23.4641188118812,25.1667292422308,24.8136830742922,-1.22,-1.20535979107014,-0.959968404434757,2.27557516651495,1.80536017781294,1.96259576303457,53.235422267101,0.00302408533761394,2301.45346534653,2301.27775708264,2301.56402922268,1.06457383280229,5217.18426884774,1251.17534970093,0,5217.18426884774,84.5424340750905,84.5424340750905,0.050022328965563,84.5432537685009,25.8,1014.9,37.48,616.625282509314
+46725,2874.23401722773,457.39358,225,84.7107821782178,87.2521056435644,24.3973564356436,-0.73,1834.5099009901,1068.39801980198,1082.94653465347,20,40,11,32,5306536.59624147,397109.276089837,0,0,0,0,0,0,0,84.7107821782177,27744.7058528881,24.3973564356436,26.167684734495,25.6173733432909,-0.73,-0.715359791070143,-0.567796706311502,3.58836471321257,2.84688058299769,2.80234661358601,53.363729887854,0.00187205282804673,2151.34455445545,2147.46603274189,2147.21357850071,1.06243923242291,4879.10622490931,864.948652430179,0,4879.10622490931,84.7052045877854,84.7052045877854,0.03458266618741,84.7049917963224,25.8,1014.9,37.45,659.185342394807
 46726,2874.22617128713,457.378717227723,225,84.8344851485148,87.3795197029703,21.6985341032673,-2.48673267326733,1836.85643564356,1002.14257425743,997.443564356436,20,40,11,32,5306522.3930106,397090.50483677,0,0,0,0,0,0,0,84.8344851485148,27768.2525598738,21.6985341032673,23.2730296461732,23.3275645070323,-2.48673267326733,-2.47209246433747,-1.95241872057468,3.25603477488844,2.58322186261172,2.50739023677953,53.4319878140459,0.00453612800642091,1999.58613861386,2002.15682776198,2002.47801980198,1.06088952569985,4533.76502939086,685.461614560793,0,4533.76502939086,84.8239882364473,84.8239882364473,0.0273815747911332,84.8234802451673,25.8,1014.9,37.42,550.218569777626
-46727,2874.2182870297,457.363861584158,225,84.9154950495049,87.4629599009901,22.0750291528713,-0.856732673267326,1838.31683168317,916.174257425743,974.932673267327,20,40,11,32,5306508.11870534,397071.741104008,0,0,0,0,0,0,0,84.9154950495048,27791.8266595988,22.0750291528713,23.6768440425453,23.6529074669068,-0.856732673267326,-0.842092464337468,-0.688865756793311,2.24142351281077,1.77826547379646,1.91015350873566,53.4744690128362,-0.00165604673250288,1891.10693069307,1889.51856680718,1889.44252710985,1.0598774228482,4287.12631755639,536.680029342133,0,4287.12631755639,84.9083517302224,84.9083517302224,0.0214807371826631,84.9079811409711,25.8,1014.9,37.39,562.02921593122
+46727,2874.2182870297,457.363861584158,225,84.9154950495049,87.4629599009901,22.0750291528713,-0.856732673267326,1838.31683168317,916.174257425743,974.932673267327,20,40,11,32,5306508.11870534,397071.741104008,0,0,0,0,0,0,0,84.9154950495048,27791.8266595988,22.0750291528713,23.6768440425453,23.6529074669068,-0.856732673267326,-0.842092464337468,-0.688865756793312,2.24142351281077,1.77826547379646,1.91015350873566,53.4744690128362,-0.00165604673250288,1891.10693069307,1889.51856680718,1889.44252710985,1.0598774228482,4287.12631755639,536.680029342133,0,4287.12631755639,84.9083517302224,84.9083517302224,0.0214807371826631,84.9079811409711,25.8,1014.9,37.39,562.02921593122
 46728,2874.21041247525,457.348974257426,225,84.9805742574257,87.5299914851485,20.0046221122772,-1.9490099009901,1837.65841584158,853.234653465346,935.840594059406,20,40,11,32,5306493.86313746,397052.938136359,0,0,0,0,0,0,0,84.9805742574255,27815.4229729651,20.0046221122772,21.4562035049831,21.8955871786215,-1.9490099009901,-1.93436969206024,-1.50479062470094,2.73163198781,2.16717939437918,2.14078589563043,53.4553164723646,-0.00554415645229222,1789.07524752475,1789.7040192138,1789.76398868458,1.0590658386332,4051.2393487073,292.988450455539,0,4051.2393487073,84.9676481717478,84.9676481717478,0.0117649141151487,84.9673146628947,25.8,1014.9,37.36,480.860359835617
 46729,2874.20254633663,457.334068217822,225,84.9943861386138,87.5442177227723,21.0893586358416,-2.10168316831683,1840.40099009901,840.261386138614,911.833663366336,20,40,11,32,5306479.62363481,397034.112046196,0,0,0,0,0,0,0,84.9943861386138,27839.0285503303,21.0893586358416,22.6196510056785,22.8189380141956,-2.10168316831683,-2.08704295938698,-1.63943260549825,2.36154793605575,1.87356790691334,1.8459016010826,53.5350947236521,-4.3969228698026E-18,1752.09504950495,1754.53622193903,1754.67079679396,1.05889418388908,3972.7386559714,333.709280680205,0,3972.7386559714,85.0032198804037,85.0032198804037,0.0133483645394123,85.0032188590286,25.8,1014.9,37.33,523.346158017191
 46730,2874.19468465346,457.319146534653,225,85.0324653465346,87.5834393069307,22.3347409237624,-2.15811881188119,1839.32673267327,830.770297029703,897.227722772278,20,40,11,32,5306465.39279337,397015.266525507,0,0,0,0,0,0,0,85.0324653465345,27862.6456196097,22.3347409237624,23.9554010968902,23.8807412461579,-2.15811881188119,-2.14347860295133,-1.69797898276175,2.46510260784485,1.95572449019196,2.03849851167288,53.5038458418302,0.00129603657326311,1727.99801980198,1728.49601999804,1728.7076756247,1.05841939800612,3914.29876434657,60.5802473563112,0,3914.29876434657,85.0339368689343,85.0339368689343,0.00241261749939453,85.0338939179631,25.8,1014.9,37.3126237623762,573.61784468519
@@ -1694,20 +1694,20 @@ Time,Lat,Long,Heading,v_veh_GPS,v_veh_CAN,vair_ar,beta_ar,n_eng,tq_l,tq_r,t_amb_
 46742,2874.10054277228,457.139566237624,225,85.1341287128713,87.6881525742574,18.7471342135644,-1.56891089108911,1841.83168316832,693.829230766337,678.548971182178,20,40,11,32,5306295.00635529,396788.471758948,2,2,5306294.54004133,396788.851679695,39.2272393686642,0,0,85.1341287128712,28146.3701998903,18.7471342135644,20.1074693920164,20.8339104664647,-1.56891089108911,-1.55427068215925,-1.19473402390693,3.74549578244713,2.97154276918584,2.92643764854177,53.5767118980602,-0.00367210362424549,1372.37820194851,1371.43917963688,1371.36436680704,1.05715580599034,3109.20103843962,-43.7689406221801,0,3109.20103843962,85.1309244191745,85.1309244191745,-0.00172096417560423,85.1310759075907,25.8,1014.9,38.06,434.091906725179
 46743,2874.09270465347,457.124588217822,225,85.0964356435644,87.6493287128713,19.4609625957426,-0.538118811881188,1841.55940594059,688.159833079208,661.073265962376,20,40,11,32,5306280.82120735,396769.555636127,2,2,5306279.61777035,396770.536114353,62.8521013808551,0,0,85.0964356435643,28170.0165529981,19.4609625957426,20.8730948034681,21.4389953067208,-0.538118811881188,-0.523478602951331,-0.401346674057763,3.07836856191869,2.44226782577818,2.4161411318702,53.568791674557,0.00316808940130984,1349.23309904158,1349.26527933437,1349.26784316996,1.05762370225436,3057.66787794317,-188.6059940853,0,3057.66787794317,85.1104161356729,85.1104161356729,-0.00757006393710547,85.1106746817538,25.8,1014.9,38.09,460.281682030404
 46744,2874.08486980198,457.109619009901,225,85.0804158415841,87.6328283168317,19.99990429,-0.972277227722772,1840.4801980198,670.391345546535,656.401735786139,20,40,11,32,5306266.64197616,396750.650504402,2,2,5306264.7032421,396752.230052426,86.4647051389533,0,0,85.080415841584,28193.6539062434,19.99990429,21.4511433466701,21.8973313647943,-0.972277227722772,-0.957637018792915,-0.746200971083317,2.64842137721149,2.10116306367009,2.25391482076508,53.5373987886713,0.0038161076879414,1326.79308133267,1327.76687781793,1327.84446114039,1.05782305883297,3005.61287588764,-145.37911026746,0,3005.61287588764,85.0870431330261,85.0870431330261,-0.00584637671687415,85.0873060820366,25.8,1014.9,38.12,480.782415251999
-46745,2874.07704465346,457.094642277228,225,85.0987326732673,87.6516946534654,18.7744427941584,-0.663762376237624,1840.42574257426,656.860033663366,668.829363960396,20,40,11,32,5306252.48094687,396731.736228483,2,2,5306249.79149793,396733.927407683,110.07290114303,0,0,85.0987326732672,28217.2891665844,18.7744427941584,20.1367595460303,20.8557105688915,-0.663762376237624,-0.649122167307767,-0.497658245784153,3.68636626836246,2.92463152158888,2.82916775306515,53.5358147439706,0.000936026414023364,1325.68939762376,1326.70950630876,1326.79077936927,1.05759531729707,3002.3734820401,192.711208450362,0,3002.3734820401,85.097744142731,85.097744142731,0.00770077007700929,85.0977001414426,25.8,1014.9,38.15,435.027243798026
-46746,2874.06921207921,457.079666138614,225,85.1229900990099,87.6766798019802,18.7075555554455,-0.0912871287128713,1843.38613861386,660.006523177228,686.930246457426,20,40,11,32,5306238.30621024,396712.822353272,2,2,5306234.87448129,396715.618291505,133.689444515228,0,0,85.1229900990098,28240.9312792907,18.7075555554455,20.0650188154304,20.7998164701365,-0.0912871287128713,-0.0766469197830136,-0.0590737075526299,3.77129788638605,2.99201323820861,3.00151065950999,53.6219291740608,0.000432012191087708,1346.93676963465,1347.06530729388,1347.07554801529,1.05729395215109,3054.56386347298,81.6084752541202,0,3054.56386347298,85.1170638172727,85.1170638172727,0.00326084588655941,85.1170665723714,25.8,1014.9,38.18,432.663236420564
+46745,2874.07704465346,457.094642277228,225,85.0987326732673,87.6516946534654,18.7744427941584,-0.663762376237624,1840.42574257426,656.860033663366,668.829363960396,20,40,11,32,5306252.48094687,396731.736228483,2,2,5306249.79149793,396733.927407683,110.07290114303,0,0,85.0987326732672,28217.2891665844,18.7744427941584,20.1367595460303,20.8557105688915,-0.663762376237624,-0.649122167307767,-0.497658245784152,3.68636626836246,2.92463152158888,2.82916775306515,53.5358147439706,0.000936026414023364,1325.68939762376,1326.70950630876,1326.79077936927,1.05759531729707,3002.3734820401,192.711208450362,0,3002.3734820401,85.097744142731,85.097744142731,0.00770077007700929,85.0977001414426,25.8,1014.9,38.15,435.027243798026
+46746,2874.06921207921,457.079666138614,225,85.1229900990099,87.6766798019802,18.7075555554455,-0.0912871287128713,1843.38613861386,660.006523177228,686.930246457426,20,40,11,32,5306238.30621024,396712.822353272,2,2,5306234.87448129,396715.618291505,133.689444515228,0,0,85.1229900990098,28240.9312792907,18.7075555554455,20.0650188154304,20.7998164701365,-0.0912871287128713,-0.0766469197830136,-0.0590737075526297,3.77129788638605,2.99201323820861,3.00151065950998,53.6219291740608,0.000432012191087708,1346.93676963465,1347.06530729388,1347.07554801529,1.05729395215109,3054.56386347298,81.6084752541202,0,3054.56386347298,85.1170638172727,85.1170638172727,0.00326084588655941,85.1170665723714,25.8,1014.9,38.18,432.663236420564
 46747,2874.06136811881,457.06470039604,225,85.112603960396,87.6659820792079,18.832095710396,-1.6070297029703,1840.96534653465,676.937946131683,694.062515379208,20,40,11,32,5306224.11021166,396693.920956631,2,2,5306219.9550925,396697.306263769,157.309743444353,0,0,85.1126039603959,28264.5760305833,18.832095710396,20.1985958904764,20.9049836788409,-1.6070297029703,-1.59238949404044,-1.22758796335511,3.66717572886756,2.90940643199191,2.88782371860119,53.5515111869135,-0.00655218489816352,1371.00046151089,1370.11925121471,1370.04904432512,1.05742308751658,3105.40185175508,-154.376592308125,0,3105.40185175508,85.1154020194097,85.1154020194097,-0.00612140421961792,85.1152042432813,25.8,1014.9,38.21,437.219517628331
 46748,2874.05351841584,457.049745247525,225,85.1059405940594,87.6591188118812,19.5052205725743,-0.958118811881188,1841.07425742574,692.087630353465,683.668795579208,20,40,11,32,5306209.90340042,396675.032472312,2,2,5306205.03771285,396678.996702034,180.926861531774,0,0,85.1059405940593,28288.2148690322,19.5052205725743,20.9205642408956,21.4777448375311,-0.958118811881188,-0.94347860295133,-0.73606680601114,3.05561533374206,2.42421622604585,2.5366480796827,53.5546792763148,0.00180005079619877,1375.75642593267,1374.67564836352,1374.58954175331,1.05750566763599,3116.60214634015,73.3463138607473,0,3116.60214634015,85.1031592981079,85.1031592981079,0.00291910379156777,85.1032325318245,25.8,1014.9,38.24,462.270903217873
 46749,2874.04566871287,457.034789108911,225,85.1102673267327,87.6635753465347,18.9060379536634,-0.83980198019802,1841.47524752475,691.527026031683,665.3050251,20,40,11,32,5306195.69667205,396656.142661541,2,2,5306190.11971671,396660.686383631,204.544955628008,0,0,85.1102673267326,28311.8567333886,18.9060379536634,20.2779035529884,20.9683430922367,-0.83980198019802,-0.825161771268161,-0.6337371302134,3.55855835983947,2.823233285287,2.72606980605971,53.5663436054741,-0.00460813003826886,1356.83205113168,1356.54536820342,1356.52252789306,1.05745193794314,3074.23790640152,29.4940140969421,0,3074.23790640152,85.1112426232721,85.1112426232721,0.00121720092801118,85.1113418198961,25.8,1014.9,38.27,439.791227971613
 46750,2874.03780712871,457.019843366337,225,85.1343168316832,87.6883463366337,19.1657288233663,0.319207920792079,1839.22277227723,675.77155019802,655.854769834653,20,40,11,32,5306181.46776444,396637.265312726,2,2,5306175.19897433,396642.3726945,228.167397555293,0,0,85.134316831683,28335.501212019,19.1657288233663,20.5564381895069,21.1913364501329,0.319207920792079,0.333848129721937,0.257796016689825,3.28644556118677,2.60734869584794,2.62641027160288,53.5008217564925,-0.000360010159239754,1331.62632003267,1332.39730670745,1332.45873197279,1.05715312254776,3012.59237332629,21.6778539931965,0,3012.59237332629,85.1248634447602,85.1248634447602,0.0008700127438533,85.1245231494576,25.8,1014.9,38.2949504950495,449.433124387147
-46751,2874.02994287129,457.004905148515,225,85.1142277227723,87.6676545544554,18.7257744775248,-1.85762376237624,1842.25247524752,659.306714668317,664.006550890099,20,40,11,32,5306167.23379779,396618.397154856,1.46534653465347,2,5306160.28069111,396624.061774853,117.545630180014,0,0,85.1142277227721,28359.1463857813,18.7257744775248,20.0845597444006,20.8143154847901,-1.85762376237624,-1.84298355344638,-1.41699883583948,3.7723780138627,2.99287017282541,2.97402783084593,53.5889522434744,0.010224288522409,1323.31326555842,1324.43308024193,1324.52229697745,1.05740271918161,2999.42726450551,-33.0361505343114,0,2999.42726450551,85.1140560729339,85.1140560729339,-0.00140509100414589,85.1141158887316,25.8,1014.9,38.29,433.270992416297
+46751,2874.02994287129,457.004905148515,225,85.1142277227723,87.6676545544554,18.7257744775248,-1.85762376237624,1842.25247524752,659.306714668317,664.006550890099,20,40,11,32,5306167.23379779,396618.397154856,1.46534653465347,2,5306160.28069111,396624.061774853,117.545630180023,0,0,85.1142277227721,28359.1463857813,18.7257744775248,20.0845597444006,20.8143154847901,-1.85762376237624,-1.84298355344638,-1.41699883583948,3.7723780138627,2.99287017282541,2.97402783084593,53.5889522434744,0.010224288522409,1323.31326555842,1324.43308024193,1324.52229697745,1.05740271918161,2999.42726450551,-33.0361505343114,0,2999.42726450551,85.1140560729339,85.1140560729339,-0.00140509100414589,85.1141158887316,25.8,1014.9,38.29,433.270992416297
 46752,2874.02205227723,456.989997524753,225,85.0987722772278,87.6517354455446,19.2211144117822,-1.66673267326733,1841.69306930693,657.27021330099,682.265658357426,20,40,11,32,5306152.95042436,396599.566137906,1,2,5306145.36152444,396605.74846398,24.3278221311834,0,0,85.0987722772276,28382.7875479101,19.2211144117822,20.6158426836095,21.2354199274753,-1.66673267326733,-1.65209246433747,-1.2733860175139,3.33736355674359,2.64774521751201,2.65007781587875,53.5726797842768,-0.00720020318479509,1339.53587165842,1339.97496189491,1340.00994464535,1.0575952382146,3035.82591280442,-162.434382738017,0,3035.82591280442,85.1016246446426,85.1016246446426,-0.00643863891339372,85.1015449316359,25.8,1014.9,38.28,451.820797515267
 46753,2874.01415168317,456.975103762376,225,85.0628217821782,87.6147064356436,19.0307640265347,-2.04059405940594,1839.39108910891,671.534396056436,693.844753041584,20,40,11,32,5306138.64827844,396580.751961596,1,2,5306130.44333101,396587.436153111,47.9475855639989,0,0,85.0628217821781,28406.4218495052,19.0307640265347,20.4116800365872,21.0713524223773,-2.04059405940594,-2.02595385047608,-1.55796320173566,3.44423344837531,2.73253197797511,2.68055820223143,53.5057178946582,-0.00187205282804672,1365.37914909802,1364.73381735032,1364.68240313627,1.05804230175249,3091.83516472266,-420.71960675328,0,3091.83516472266,85.0645338692284,85.0645338692284,-0.0168134387696169,85.0642725129655,25.8,1014.9,38.27,444.326334647419
 46754,2874.00627247525,456.96020029703,225,85.016910891089,87.5674182178218,23.179296479802,-2.62316831683168,1839.19801980198,688.98483909703,688.098068682178,20,40,11,32,5306124.38602397,396561.926315817,1,2,5306115.53543459,396569.136481988,71.5510458759705,0,0,85.016910891089,28430.0421835537,23.179296479802,24.8612395466217,24.598086333152,-2.62316831683168,-2.60852810790183,-2.08455172981095,2.70306247678057,2.14451336327149,2.19835586319322,53.500101736174,0.00684019302555534,1377.08290777921,1375.94646907925,1375.85592789197,1.05861299055108,3119.69325968713,-208.625537098527,0,3119.69325968713,85.0110842074305,85.0110842074305,-0.00840059253449131,85.0112155586986,25.8,1014.9,38.26,607.773555971526
 46755,2873.99841336634,456.945286237624,225,84.9779306930693,87.5272686138613,23.5929504950495,-2.29940594059406,1838.90099009901,693.577685563366,670.309080383168,20,40,11,32,5306110.16129675,396543.08804814,1,2,5306100.63632776,396550.847600217,95.1405897601235,0,0,84.9779306930692,28453.6528836912,23.5929504950495,25.3049092486531,24.9477755207081,-2.29940594059406,-2.28476573166421,-1.83319013361694,2.27262399156032,1.80301882085877,1.77950171115401,53.4914614923523,-0.00309608736946189,1363.88676594653,1363.30405679259,1363.25763178217,1.05909860938631,3090.724453631,-382.026173633657,0,3090.724453631,84.9749792177236,84.9749792177236,-0.01525585726891,84.9748653465345,25.8,1014.9,38.25,622.757057651727
 46756,2873.99056990099,456.930364653465,225,84.9720792079208,87.5212415841584,23.3227524752475,-2.66851485148515,1839.50495049505,681.090293595049,656.832901949505,20,40,11,32,5306095.96577534,396524.240834031,1,2,5306085.74449075,396532.56764225,118.718623457004,0,0,84.9720792079207,28477.252916667,23.3227524752475,25.0151050390571,24.7176820003807,-2.66851485148515,-2.65387464255529,-2.12871754762733,2.16096371668025,1.71443154117737,1.8339007978077,53.5090299881232,-0.000216006095543852,1337.92319554455,1338.4299560468,1338.47033015366,1.05917239093593,3033.10220726607,268.78836949315,0,3033.10220726607,84.9659915694539,84.9659915694539,0.0107533030530787,84.965956812824,25.8,1014.9,38.24,611.858508354982
 46757,2873.9827180198,456.915447524753,225,84.9681584158415,87.5172031683168,20.3884856985149,-2.15405940594059,1839.32673267327,663.003513778218,660.059469679208,20,40,11,32,5306081.75462585,396505.398797259,1,2,5306070.84895466,396514.283143616,142.302513842062,0,0,84.9681584158415,28500.8576555284,20.3884856985149,21.8679211159552,22.2212236616616,-2.15405940594059,-2.13941919701074,-1.6711898773268,2.30292133828509,1.8270556551832,1.7720705080644,53.5038458418301,-0.00079202235032746,1323.06298345743,1324.1933003475,1324.28335380418,1.05922071535932,2999.24281285585,199.539014054747,0,2999.24281285585,84.9851834133907,84.9851834133907,0.00798805128038151,84.9856447901932,25.8,1014.9,38.23,494.922452628832
-46758,2873.9748880198,456.900503564357,225,85.0059603960396,87.5561392079208,19.7018575361386,-0.782376237623763,1837.85643564356,655.946248076237,677.022292087129,20,40,11,32,5306067.58466791,396486.523972202,1,2,5306055.95379492,396495.999106956,165.885808358711,0,0,85.0059603960395,28524.4675911995,19.7018575361386,21.131469634817,21.6393620102952,-0.782376237623763,-0.767736028693904,-0.600524119381237,2.84325575264655,2.25573770829421,2.22708715064823,53.4610766349124,0.00331209346500574,1332.96854016337,1333.68320530311,1333.74014337653,1.0587495913622,3017.9416726741,129.847715799197,0,3017.9416726741,85.0149265758258,85.0149265758258,0.0051669770937377,85.0151556812823,25.8,1014.9,38.22,469.310580986415
+46758,2873.9748880198,456.900503564357,225,85.0059603960396,87.5561392079208,19.7018575361386,-0.782376237623763,1837.85643564356,655.946248076237,677.022292087129,20,40,11,32,5306067.58466791,396486.523972202,1,2,5306055.95379492,396495.999106956,165.885808358708,0,0,85.0059603960395,28524.4675911995,19.7018575361386,21.131469634817,21.6393620102952,-0.782376237623763,-0.767736028693904,-0.600524119381237,2.84325575264655,2.25573770829421,2.22708715064823,53.4610766349124,0.00331209346500574,1332.96854016337,1333.68320530311,1333.74014337653,1.0587495913622,3017.9416726741,129.847715799197,0,3017.9416726741,85.0149265758258,85.0149265758258,0.0051669770937377,85.0151556812823,25.8,1014.9,38.22,469.310580986415
 46759,2873.96708574257,456.885523168317,225,85.0560198019802,87.6077003960396,19.4006919693069,-0.47039603960396,1840.56435643564,666.406914016832,692.125828478218,20,40,11,32,5306053.46693708,396467.604590072,1,2,5306041.0576509,396477.713862075,189.47066127386,0,0,85.0560198019801,28548.0876330862,19.4006919693069,20.808450801751,21.3858179368535,-0.47039603960396,-0.455755830674103,-0.356752645941538,3.09481282428743,2.45531411705033,2.45026499086684,53.5398468577541,0.0041041158153332,1358.53274249505,1358.17469605021,1358.14617013854,1.05812726053195,3078.53456584929,61.4253395522577,0,3078.53456584929,85.0388326634642,85.0388326634642,0.00242350967771333,85.0387346534652,25.8,1014.9,38.21,457.990360508481
 46760,2873.9592809901,456.870530693069,225,85.0574455445545,87.6091689108911,18.9342123210891,-0.250396039603961,1839.80693069307,684.768023580198,691.483957146535,20,40,11,32,5306039.34495222,396448.669986562,1,2,5306026.15235635,396459.417384776,213.070002097067,0,0,85.0574455445543,28571.7138084162,18.9342123210891,20.3081223173178,20.989162494527,-0.250396039603961,-0.235755830674103,-0.18714809538388,3.52608084002652,2.79746677939117,2.67423541355448,53.5178142360086,-0.00388810971978935,1376.25198072673,1375.15040895043,1375.06264564519,1.05810890323963,3117.35818203803,113.573843266508,0,3117.35818203803,85.0567438486422,85.0567438486422,0.00457471489723572,85.0563367279584,25.8,1014.9,38.189900990099,440.811876531734
 46761,2873.95147287129,456.855546831683,225,85.0416237623762,87.5928724752475,20.5343707370297,-1.68267326732673,1839.83663366337,694.148457317822,675.686811631683,20,40,11,32,5306025.21660023,396429.74590804,1,2,5306011.24967567,396441.124116051,236.66520440557,0,0,85.0416237623761,28595.3383547859,20.5343707370297,22.0243919084121,22.3495294932503,-1.68267326732673,-1.66803305839688,-1.29835416929061,2.23274292694777,1.77137860656932,1.90076493441573,53.5186782603908,-0.000504014222935657,1369.8352689495,1362.85416211281,1362.42484927331,1.0583055073002,3103.46067380206,-195.686510073674,0,3103.46067380206,85.0432187040485,85.0432187040485,-0.00782330708316278,85.0431169259782,25.8,1014.9,38.11,500.728262763011
@@ -1725,10 +1725,10 @@ Time,Lat,Long,Heading,v_veh_GPS,v_veh_CAN,vair_ar,beta_ar,n_eng,tq_l,tq_r,t_amb_
 46773,2873.86551485148,456.69083009901,225,59.7046237623763,61.4957624752475,15.7456435643564,-1.24465346534653,1496.67326732673,-5635.72178217822,-4728.24455445544,20,40,11,32,5305869.67910493,396221.704349614,0,0,0,0,0,0,0,59.7046237623761,28855.129850523,15.7456435643564,16.8881836776321,16.8213874093655,-1.24465346534653,-1.23001325641668,-0.974644278710778,1.23120809125959,0.976796588075501,0.963386028799747,43.5364605690546,-0.0314648879175545,-10363.9663366337,-10337.6610234291,-10279.4528778028,1.50798081078204,-27203.7233648502,-27317.4520521996,0,-27203.7233648502,59.6921732183119,59.6921732183119,-1.09240107179034,59.672131077329,25.8,1014.9,37.87,283.447367525914
 46774,2873.8602090099,456.680671980198,225,55.6835742574257,57.3540814851485,14.2136237623762,-1.52128712871287,1389.5297029703,-5546.48811881188,-4598.8099009901,20,40,11,32,5305860.07843903,396208.873851469,0,0,0,0,0,0,0,55.6835742574257,28871.1503974427,14.2136237623762,15.2449969950515,15.2875547822355,-1.52128712871287,-1.50664691978301,-1.19312769916569,1.37651768502622,1.09208003724507,1.04206446044489,40.4197806184842,-0.0289448168028762,-10145.298019802,-10118.546652289,-10072.6325923043,1.616962056303,-26510.3127639234,-26445.1499325761,0,-26510.3127639234,55.7220932261542,55.7220932261542,-1.05753384744416,55.7733198013709,25.8,1014.9,38.06,235.130071503764
 46775,2873.85527851485,456.671141485148,225,52.3178217821783,53.8873564356436,13.5264059405941,-1.27128712871287,1306.54455445545,-5230.04752475247,-4165.67128712871,20,40,11,32,5305851.1590085,396196.837635709,0,0,0,0,0,0,0,52.3178217821782,28886.1248509905,13.5264059405941,14.5079130674646,14.5101530385693,-1.27128712871287,-1.25664691978301,-0.997587852640008,1.01135178161406,0.802370433266111,0.852050004973436,38.0058404987498,-0.0167764734205726,-9395.71881188119,-9415.31078325654,-9472.13491024775,1.72074417612426,-24571.9004455806,-21338.426279597,0,-24571.9004455806,52.3264616214096,52.3264616214096,-0.853379026021412,52.3549697963598,25.8,1014.9,38.25,210.910393071536
-46776,2873.85064435644,456.66213990099,225,49.342504950495,50.8227800990099,12.9597128712871,-2.32386138613861,1230.40099009901,-5267.0396039604,-4194.73366336634,20,40,11,32,5305842.77666712,396185.470112551,0,0,0,0,0,0,0,49.342504950495,28900.2381802809,12.9597128712871,13.9000994456092,13.8568390501741,-2.32386138613861,-2.30922117720876,-1.83897164490916,0.970733404673177,0.770145261671898,0.798781267534029,35.7909139950431,-0.0225366359684086,-9461.77326732674,-9564.01507695324,-9839.61020326478,1.82453585366314,-24703.4506658293,-21397.1971045783,0,-24703.4506658293,49.3172900696009,49.3172900696009,-0.855675914126066,49.2756343285654,25.8,1014.9,38.44,192.353156313282
+46776,2873.85064435644,456.66213990099,225,49.342504950495,50.8227800990099,12.9597128712871,-2.32386138613861,1230.40099009901,-5267.0396039604,-4194.73366336634,20,40,11,32,5305842.77666712,396185.470112551,0,0,0,0,0,0,0,49.342504950495,28900.2381802809,12.9597128712871,13.9000994456092,13.8568390501741,-2.32386138613861,-2.30922117720876,-1.83897164490916,0.970733404673177,0.770145261671898,0.79878126753403,35.7909139950431,-0.0225366359684086,-9461.77326732674,-9564.01507695324,-9839.61020326478,1.82453585366314,-24703.4506658293,-21397.1971045783,0,-24703.4506658293,49.3172900696009,49.3172900696009,-0.855675914126066,49.2756343285654,25.8,1014.9,38.44,192.353156313282
 46777,2873.84630584158,456.653678118812,225,45.9621782178218,47.3410435643564,10.2742277227723,-0.512772277227723,1358.22772277228,-6549.59207920792,-5243.90297029703,20,40,11,32,5305834.92988309,396174.784831895,0,0,0,0,0,0,0,45.9621782178217,28913.4859323437,10.2742277227723,11.0197493178864,11.378311082603,-0.512772277227723,-0.498132068297866,-0.412824726948521,2.04224580952047,1.62024498775852,1.52654496263744,39.509242923735,0.092234602797225,-11793.495049505,-11701.9753651603,-11478.7194788099,1.95916861900494,-36903.9901644595,-25642.0892605586,0,-36903.9901644595,45.9387462993824,45.9387462993824,-1.02670217516801,45.8670103759951,25.8,1014.9,38.63,131.170919962666
 46778,2873.84231287129,456.645865841584,225,41.9752277227723,43.2344845544554,10.4128712871287,-2.06158415841584,1447.47524752475,-7194.55544554455,-5683.67227722772,20,40,11,32,5305827.70862755,396164.920118116,0,0,0,0,0,0,0,41.9752277227722,28925.7069215351,10.4128712871287,11.1684531781638,11.2673419124628,-2.06158415841584,-2.04694394948599,-1.60220910780893,1.10115293208099,0.873615463252556,0.958700349381838,42.1053481840447,-0.0405371439303964,-12878.2277227723,-13043.4225075973,-13381.8054153165,2.14594278895329,-46506.396326888,-30611.3841969276,0,-46506.396326888,41.9324191745907,41.9324191745907,-1.22392820965265,41.7188777319583,25.8,1014.9,38.82,127.56260096175
-46779,2873.83876336634,456.638821980198,225,36.5583861386139,37.6551377227723,9.36460396039604,-2.85267326732673,1253.4900990099,-8818.78316831683,-7167.21782178218,20,40,11,32,5305821.29161378,396156.027367252,0,0,0,0,0,0,0,36.5583861386138,28936.6750586913,9.36460396039604,10.0441211631043,10.0646743404483,-2.85267326732673,-2.83803305839688,-2.24974065299711,0.964305395344978,0.765045508328433,0.771915762924094,36.4625489481208,-0.0636497961535886,-15986.000990099,-15802.4064013332,-15329.2683715813,2.46993567747032,-57404.2775902901,-46800.1269295715,0,-57404.2775902901,36.454553083031,36.454553083031,-1.87118365301877,36.0681209207672,25.8,1014.9,39.01,101.605103272087
+46779,2873.83876336634,456.638821980198,225,36.5583861386139,37.6551377227723,9.36460396039604,-2.85267326732673,1253.4900990099,-8818.78316831683,-7167.21782178218,20,40,11,32,5305821.29161378,396156.027367252,0,0,0,0,0,0,0,36.5583861386138,28936.6750586913,9.36460396039604,10.0441211631043,10.0646743404483,-2.85267326732673,-2.83803305839688,-2.24974065299711,0.964305395344977,0.765045508328433,0.771915762924094,36.4625489481208,-0.0636497961535886,-15986.000990099,-15802.4064013332,-15329.2683715813,2.46993567747032,-57404.2775902901,-46800.1269295715,0,-57404.2775902901,36.454553083031,36.454553083031,-1.87118365301877,36.0681209207672,25.8,1014.9,39.01,101.605103272087
 46780,2873.83581346535,456.632954653465,225,29.2036633663366,30.0797732673267,7.761,-2.77178217821782,1315.23267326733,-9169.45247524752,-7573.47722772277,20,40,11,32,5305815.95891063,396148.620179941,0,0,0,0,0,0,0,29.2036633663366,28945.8012353415,7.761,8.32415601092391,8.27854040652363,-2.77178217821782,-2.75714196928797,-2.19805401717274,0.704473612214582,0.558904238597423,0.606414165431156,38.2585676305361,0.0236166664461279,-16742.9297029703,-16697.0725517106,-15888.7638093078,3.09819890532502,-79197.7737534873,-47854.5790252832,0,-79197.7737534873,29.2929410842074,29.2929410842074,-1.91442287793135,29.683469676568,25.8,1014.9,39.1747524752475,69.1039154691109
 46781,2873.83346485149,456.628303960396,225,23.1956138613861,23.8914822772277,5.71607920792079,-2.51257425742574,1303.65346534653,-8668.08217821782,-7141.50099009901,20,40,11,32,5305811.7127314,396142.7485714,0,0,0,0,0,0,0,23.1956138613861,28953.0356674922,5.71607920792079,6.13085106268922,6.19382176006087,-2.51257425742574,-2.49793404849589,-1.95428496958237,0.945823988002252,0.750383018889512,0.679985058577202,37.9217421255514,0.0300248472805955,-15809.5831683168,-15449.4407999216,-14905.6136716524,3.90143176865605,-93937.2383265863,-39017.7899231588,0,-93937.2383265863,23.1876420939123,23.1876420939123,-1.56135564051455,23.8489073655077,25.8,1014.9,39.19,38.9092744431412
 46782,2873.83162178218,456.624656435644,225,18.067396039604,18.6094179207921,5.02687128712871,-3.21811881188119,1196.9702970297,-6755.04851485149,-5575.23663366337,20,40,11,32,5305808.38050919,396138.143444906,0,0,0,0,0,0,0,18.0673960396039,28958.7116642744,5.02687128712871,5.39163262993084,5.31330590312486,-3.21811881188119,-3.20347860295134,-2.57331960321323,0.545523273217671,0.432798708664798,0.473395155156206,34.8184545529047,-0.0853944097716697,-12330.2851485148,-12774.428526615,-12691.9597055755,4.9987161896234,-85505.8507318922,-29681.5971107334,0,-85505.8507318922,18.1335705323007,18.1335705323007,-1.18512618588591,19.2207389212531,25.8,1014.9,39.18,28.3264704520792
diff --git a/DemoData/Results/DataDemo_LS1_1Hz.csv b/DemoData/Results/DataDemo_LS1_1Hz.csv
index 6d8bbf3f25391c2f1335e76545cd78391dc7d1d6..f2a45ff1eec6f650fdba3f3d4fc928e9315c4593 100644
--- a/DemoData/Results/DataDemo_LS1_1Hz.csv
+++ b/DemoData/Results/DataDemo_LS1_1Hz.csv
@@ -1,7 +1,7 @@
-Resultfile Programm VECTO-CSE 2.01 Comp 12.05.2014
-Datafile: ,J:\TE-Em\Projekte\I_2012_08_HDV_CO2_LOT3\Arbeitsordner\CSE\Release_Packages\2.01\Test\WorkingDir\DemoData\DataDemo_LS1.csdat
+Resultfile Programm VECTO_CSE 2.0.1-pre2 Comp 04/06/2014
+Datafile: ,d:\Work\vecto-cse.git\CSE\bin\Debug\DemoData\DataDemo_LS1.csdat
 
-Time,Lat,Long,Heading,v_veh_GPS,v_veh_CAN,vair_ar,beta_ar,n_eng,tq_l,tq_r,t_amb_veh,t_tire,Satelites,Zone (UTM),Lat (UTM),Long (UTM),Sec_ID,Dir_ID,Lat (root),Long (root),dist (root),slope_deg,altitude,v_veh,dist,vair_ic,vair_uf,vair,beta_ic,beta_uf,beta,vwind_ha,vwind,vwind 1s,omega_wh,omega_p_wh,tq_sum,tq_sum_1s,tq_sum_float,t_float,F_trac,F_acc,F_grd,F_res,v_veh_1s,v_veh_ave,a_veh_ave,v_veh_float,t_amp_stat,p_amp_stat,rh_stat,vair_sq
+Time,Lat,Long,Heading,v_veh_GPS,v_veh_CAN,vair_ar,beta_ar,n_eng,tq_l,tq_r,t_amb_veh,t_tire,Satelites,Zone (UTM),Lat (UTM),Long (UTM),Sec_ID,Dir_ID,Lat (root),Long (root),dist (root),slope_deg,altitude,v_veh,dist,vair_ic,vair_uf,vair,beta_ic,beta_uf,beta,vwind_ha,vwind,vwind 1s,omega_wh,omega_p_wh,tq_sum,tq_sum_1s,tq_sum_float,t_float,F_trac,F_acc,F_grd,F_res,v_veh_1s,v_veh_avg,a_veh_avg,v_veh_float,t_amp_stat,p_amp_stat,rh_stat,vair_sq
 [s],[mm.mm],[mm.mm],[°],[km/h],[km/h],[m/s],[°],[rpm],[Nm],[Nm],[°C],[°C],[#],[-],[m],[m],[-],[-],[m],[m],[m],[°],[m],[km/h],[m],[m/s],[m/s],[m/s],[°],[°],[°],[m/s],[m/s],[m/s],[rad/s],[rad/s2],[Nm],[Nm],[Nm],[s],[N],[N],[N],[N],[km/h],[km/h],[m/s2],[km/h],[°C],[mbar],[%],[m/s]
 44423,2873.92178058823,456.822735490196,45,15.0562941176471,15.5079829411765,1.9021568627451,-3.5,752.926557941177,339.313516362745,331.75458527451,20,40,9,32,5305970.95000047,396387.887161366,0,0,0,0,0,0,0,15.056294117647,1.08722685185185,1.9021568627451,2.04018173981958,2.48190878373254,-3.5,-3.48535979107014,-2.33022221186959,2.14957411039651,1.70539543376672,1.72659738107475,8.76069830785426,0.0031345449228112,671.068101637255,669.633402849319,648.116569538203,5.97757665617755,1405.69371958671,22.0457752379285,0,1405.69371958671,15.0567679820409,15.0567679820409,0.000858128022905129,15.0669273534539,24.6,1015.3,39.7,6.1788333643662
 44424,2873.92283366337,456.824722871287,45,15.0496831683168,15.5011736633663,1.74856435643564,-3.5,749.6029801,339.602242950495,320.337277328713,20,40,9,32,5305972.85620792,396390.397774657,0,0,0,0,0,0,0,15.0496831683168,4.22390811331133,1.74856435643564,1.8754442079772,2.35086321154642,-3.5,-3.48535979107015,-2.2701186838253,2.31144273232823,1.83381622529809,1.82937432681592,8.72202672367102,0.000812696201569359,659.939520279208,659.52244336714,645.156296911983,5.98020259067953,1376.87638151715,45.0154139686345,0,1376.87638151715,15.0556467993334,15.0556467993334,0.00179443191844138,15.0689661136626,24.6,1015.3,39.6999999999999,5.55702560977462
@@ -19,8 +19,8 @@ Time,Lat,Long,Heading,v_veh_GPS,v_veh_CAN,vair_ar,beta_ar,n_eng,tq_l,tq_r,t_amb_
 44436,2873.9396039604,456.856578415842,45,15.0589603960396,15.5107292079208,1.35487128712871,-0.315841584158416,750.470542108911,339.824051232673,328.900511119802,20,40,9,32,5306003.20822853,396430.636298399,0.801980198019802,0.801980198019802,4255309.47391257,317929.978398499,1.35236077922952,0,0,15.0589603960396,54.3903974147414,1.35487128712871,1.45318386403565,2.01648259229373,-0.315841584158416,-0.301201375228561,-0.222062948098999,2.73401985034051,2.16907383934682,2.09979503608364,8.73212126601816,0.00113349733179721,668.724562352475,667.93885213634,650.964712388841,5.97652548319661,1395.95775854536,48.0352171350032,0,1395.95775854536,15.0596318988334,15.0596318988334,0.00191293881863536,15.0705600531078,24.6,1015.3,39.6999999999999,4.08641498915798
 44437,2873.94101128713,456.859223168317,45,15.0788613861386,15.5312272277228,2.0350495049505,3.5,751.742476231683,336.29163599604,314.633446169307,20,40,9,32,5306005.75595347,396433.977513141,1,1,5306005.55862662,396434.138266204,5.46629531972303,0,0,15.0788613861386,58.5750955445544,2.0350495049505,2.18271737780716,2.59624970509359,3.5,3.51464020892985,2.38788673318625,2.01478137851233,1.5984556877266,1.65258220712168,8.74692089155872,0.00066298900669501,650.925082165347,650.886264358151,650.042588734503,5.96864294576723,1359.37293319046,164.796079067839,0,1359.37293319046,15.0793793745711,15.0793793745711,0.00658704484310004,15.0778022035542,24.6,1015.3,39.6999999999999,6.80307138883882
 44438,2873.94242465347,456.86187039604,45,15.1000297029703,15.5530305940594,2.2639702970297,3.48465346534653,753.014410350495,322.37774270495,309.897343003961,20,40,9,32,5306008.31481239,396437.322008993,1,1,5306008.2171136,396437.401599682,9.67543993840603,0,0,15.1000297029703,62.7674445819582,2.2639702970297,2.42824918909586,2.79222640175692,3.48465346534653,3.49929367427639,2.45458645181919,1.7771675326836,1.40994133703909,1.38180078897524,8.7617205170532,-0.000149707200634521,632.275085708911,633.01884921593,649.051431972844,5.9602681378562,1320.74405794183,74.5146550223258,0,1320.74405794183,15.0980969512793,15.0980969512793,0.00298173381694584,15.0853898311429,24.6,1015.3,39.6999999999999,7.81719725209909
-44439,2873.94384267327,456.864513762376,45,15.0922178217822,15.5449843564356,2.38583168316832,3.22683168316832,751.525585724752,310.874740675248,319.046553025742,20,40,9,32,5306010.88237936,396440.661846655,1,1,5306010.87679336,396440.666397312,13.8864730631897,0,0,15.0922178217822,66.9616748899889,2.38583168316832,2.55895311770368,2.89551486413399,3.22683168316832,3.24147189209817,2.30249283857984,1.64504598586309,1.3051208139596,1.3288337792019,8.74439725591722,-0.000598828779497406,629.92129370099,630.763825793207,648.944327247901,5.96334935004307,1313.92195307871,-61.7596734079283,0,1313.92195307871,15.0947678658955,15.0947678658955,-0.00246571686871873,15.0931761989673,24.6,1015.3,39.6999999999999,8.40497332938591
-44440,2873.94526108911,456.867151287129,45,15.0949801980198,15.5478296039604,2.2269702970297,3.5,752.760758750495,312.358436927723,333.669334749505,20,40,9,32,5306013.45081242,396443.994417968,1,1,5306013.53326046,396443.927251356,18.0924196347273,0,0,15.0949801980198,71.1535138888888,2.2269702970297,2.38856438399289,2.7604512264113,3.5,3.51464020892985,2.45418690298517,1.81512439507664,1.44005495791503,1.41140085512515,8.75876914667123,-0.000149707200634509,646.027771677228,646.194452227899,649.790180038223,5.96225837774707,1349.44220650356,76.2829757628442,0,1349.44220650356,15.0952517400255,15.0952517400255,0.00305253297607181,15.0994404094819,24.5987376237624,1015.3,39.710099009901,7.64289403901416
+44439,2873.94384267327,456.864513762376,45,15.0922178217822,15.5449843564356,2.38583168316832,3.22683168316832,751.525585724752,310.874740675248,319.046553025742,20,40,9,32,5306010.88237936,396440.661846655,1,1,5306010.87679336,396440.666397312,13.8864730631861,0,0,15.0922178217822,66.9616748899889,2.38583168316832,2.55895311770368,2.89551486413399,3.22683168316832,3.24147189209817,2.30249283857984,1.64504598586309,1.3051208139596,1.3288337792019,8.74439725591722,-0.000598828779497406,629.92129370099,630.763825793207,648.944327247901,5.96334935004307,1313.92195307871,-61.7596734079283,0,1313.92195307871,15.0947678658955,15.0947678658955,-0.00246571686871873,15.0931761989673,24.6,1015.3,39.6999999999999,8.40497332938591
+44440,2873.94526108911,456.867151287129,45,15.0949801980198,15.5478296039604,2.2269702970297,3.5,752.760758750495,312.358436927723,333.669334749505,20,40,9,32,5306013.45081242,396443.994417968,1,1,5306013.53326046,396443.927251356,18.0924196347362,0,0,15.0949801980198,71.1535138888888,2.2269702970297,2.38856438399289,2.7604512264113,3.5,3.51464020892985,2.45418690298517,1.81512439507664,1.44005495791503,1.41140085512515,8.75876914667123,-0.000149707200634509,646.027771677228,646.194452227899,649.790180038223,5.96225837774707,1349.44220650356,76.2829757628442,0,1349.44220650356,15.0952517400255,15.0952517400255,0.00305253297607181,15.0994404094819,24.5987376237624,1015.3,39.710099009901,7.64289403901416
 44441,2873.94668445545,456.869785049505,45,15.110801980198,15.564126039604,2.32475247524753,3.26316831683168,753.962846778218,325.464727975248,340.321570077228,20,40,9,32,5306016.02850149,396447.322464291,1,1,5306016.19120416,396447.189917942,22.3007040771539,0,0,15.110801980198,75.3489792629261,2.32475247524753,2.49344186196907,2.8445917008791,3.26316831683168,3.27780852576154,2.31616569876147,1.71535986886912,1.36090534096378,1.39257180667481,8.77275607599295,0.00145429846778522,665.786298052475,665.123881735026,650.852195513522,5.956012645886,1391.52248926223,37.5127052679681,0,1391.52248926223,15.10859552985,15.10859552985,0.00148950538618063,15.1004372135271,24.59,1015.3,39.78,8.11779762899388
 44442,2873.94811227723,456.872412772277,45,15.1047524752475,15.557895049505,2.20051485148515,3.06930693069307,751.782913441584,338.143750261386,332.887224542574,20,40,9,32,5306018.61458046,396450.643132544,1,1,5306018.84888187,396450.45225802,26.5085673786129,0,0,15.1047524752475,79.5456565731569,2.20051485148515,2.36018927046997,2.73860496386192,3.06930693069307,3.08394713962292,2.14893580706521,1.8448326296377,1.46362441165969,1.45792994400013,8.74739139986078,0.000106933708155899,671.03097480396,670.148484124047,651.128322980312,5.95840236731468,1398.96995812631,-43.077565673544,0,1398.96995812631,15.1047513969219,15.1047513969219,-0.00172368722020934,15.1012330357779,24.58,1015.3,39.86,7.516510422148
 44443,2873.9495390099,456.875037029703,45,15.0995643564357,15.5525512871287,2.15454455445544,3.13455445544554,752.819576510891,338.738469171287,318.201401131683,20,40,9,32,5306021.19872137,396453.959445035,1,1,5306021.50365353,396453.711030894,30.711829594174,0,0,15.0995643564356,83.74076680418,2.15454455445544,2.31088326295241,2.69918899084336,3.13455445544554,3.1491946643754,2.18691952424973,1.8923987499632,1.5013616750612,1.50118581044008,8.75945352238961,-0.000898243169246117,656.939870302971,656.648663125272,650.368916806897,5.96044748735038,1371.98244611903,-14.091306073923,0,1371.98244611903,15.0999206940496,15.0999206940496,-0.000556862616953162,15.1038509100246,24.57,1015.3,39.94,7.30257991933222
@@ -30,7 +30,7 @@ Time,Lat,Long,Heading,v_veh_GPS,v_veh_CAN,vair_ar,beta_ar,n_eng,tq_l,tq_r,t_amb_
 44447,2873.95523990099,456.885542772277,45,15.1088811881188,15.5621476237624,2.17459405940594,3.41534653465347,754.433388885148,321.165133852475,339.841168529703,20,40,9,32,5306031.52392158,396467.235317665,1,1,5306032.12340881,396466.746943114,47.5259370536683,0,0,15.1088811881188,100.523409845984,2.17459405940594,2.33238760609759,2.71672497607741,3.41534653465347,3.42998674358332,2.38041810997837,1.8741893070548,1.48691495250476,1.47568474949032,8.77823108201643,0.00064160226621587,661.006302382178,660.544461724772,650.588967539427,5.95677657794965,1382.54733506774,-25.1340069346756,0,1382.54733506774,15.1081449857857,15.1081449857857,-0.00101024953980733,15.1107863361821,24.53,1015.3,40.26,7.39908685279192
 44448,2873.95665891089,456.888177524753,45,15.1347227722772,15.5887644554455,2.21787128712871,3.31851485148515,754.389275562376,335.416425680198,336.245646171287,20,40,9,32,5306034.09353207,396470.564431697,1,1,5306034.77865267,396470.006295606,51.7299468766084,0,0,15.1347227722772,104.721765869086,2.21787128712871,2.37880512900503,2.75503328206909,3.31851485148515,3.333155060415,2.3212785894095,1.83538465787778,1.45612872783107,1.47950351799837,8.77771780019884,-0.000278027643509395,671.662071851485,670.753099411077,651.221018710647,5.94661488185197,1402.36686498055,317.76247094097,0,1402.36686498055,15.1329680922753,15.1329680922753,0.0127125996700392,15.1094190593651,24.52,1015.3,40.34,7.62049293524345
 44449,2873.95808108911,456.890814356436,45,15.1208118811881,15.5743650988119,1.95463366336634,3.5,753.091608662376,340.090903774257,322.310928584158,20,40,9,32,5306036.6689668,396473.896237999,1,1,5306037.43753824,396473.27011836,55.9397225789458,0,0,15.1207428143805,108.927631317984,1.95463366336634,2.09646637779476,2.53023463963893,3.5,3.51464020892985,2.36576843473726,2.11168854392641,1.67533837653325,1.64134069376868,8.7626187601994,-0.00034218787646716,662.401832358416,661.881433206107,650.701172352068,5.95213120405272,1381.90229784723,-517.342442971804,0,1381.90229784723,15.1194178967206,15.1194178967206,-0.0206911202943795,15.1107915133631,24.51,1015.3,40.42,6.41949404361016
-44450,2873.95949960396,456.893441782178,45,15.0762871287129,15.5285757425743,2.16318811881188,2.89990099009901,752.41888050396,330.890874534653,310.848530854456,20,40,9,32,5306039.2378278,396477.216203178,1,1,5306040.08800314,396476.523604612,60.1361659523205,0,0,15.0762871287129,113.119181310491,2.16318811881188,2.32015402421944,2.70527509061999,2.89990099009901,2.91454119902886,2.02488060066319,1.87613544835967,1.48845895160613,1.48969685413085,8.75479121264259,-0.00115488407803653,641.739405389109,642.086032104294,649.569468242731,5.96965508868496,1341.59806932703,128.007311358873,0,1341.59806932703,15.0815183805509,15.0815183805509,0.0051288544696065,15.1114230465122,24.5012623762376,1015.3,40.489900990099,7.34585187910192
+44450,2873.95949960396,456.893441782178,45,15.0762871287129,15.5285757425743,2.16318811881188,2.89990099009901,752.41888050396,330.890874534653,310.848530854456,20,40,9,32,5306039.2378278,396477.216203178,1,1,5306040.08800314,396476.523604612,60.1361659523205,0,0,15.0762871287129,113.119181310491,2.16318811881188,2.32015402421944,2.70527509061999,2.89990099009901,2.91454119902886,2.02488060066319,1.87613544835967,1.48845895160613,1.48969685413085,8.75479121264259,-0.00115488407803653,641.739405389109,642.086032104294,649.569468242731,5.96965508868496,1341.59806932703,128.007311358873,0,1341.59806932703,15.0815183805509,15.0815183805509,0.0051288544696065,15.1114230465122,24.5012623762376,1015.3,40.489900990099,7.34585187910191
 44451,2873.96091673267,456.896073366337,45,15.1177920792079,15.5713258415842,2.34136633663366,3.25534653465346,754.495882755445,316.274802417822,312.396928593069,20,40,9,32,5306041.80403015,396480.541299218,1,1,5306042.73991992,396479.778873065,64.3349080621638,0,0,15.1177920792079,117.312877625122,2.34136633663366,2.5112612633506,2.85916451115011,3.25534653465346,3.26998674358332,2.31191391353988,1.69946369057517,1.34829388004893,1.35608477239731,8.77895823121576,0.000577442039018259,628.671731010891,629.566696590776,648.82602942879,5.95326652122925,1314.2551798229,128.465120159617,0,1314.2551798229,15.1138201156749,15.1138201156749,0.00513430055876834,15.1099016443248,24.5,1015.3,40.5,8.21524653596342
 44452,2873.96233425743,456.898710990099,45,15.1079504950495,15.561189009901,2.25733663366337,3.5,754.2606117,309.680636716832,325.532532062376,20,40,9,32,5306044.37083302,396483.873928619,1,1,5306045.39576516,396483.038963763,68.5398700473135,0,0,15.1079504950495,121.511145584418,2.25733663366337,2.42113417185771,2.78703027486571,3.5,3.51464020892985,2.46223254145502,1.7864888595308,1.41733654531081,1.42025132758281,8.77622072818098,0.00113349733179721,635.213168779208,635.833645997481,649.206356217741,5.95713923192065,1328.40772955535,-12.1436186312451,0,1328.40772955535,15.1099294186844,15.1099294186844,-0.000494232591574112,15.1041390891979,24.5,1015.3,40.5,7.79185828440378
 44453,2873.96375158416,456.901348316832,45,15.1112475247525,15.5645849504951,2.27839603960396,3.5,752.753406532674,317.171022972277,338.178528008911,20,40,9,32,5306046.93727761,396487.206178482,1,1,5306048.05128163,396486.298650889,72.7443114931191,0,0,15.1112475247525,125.709104137773,2.27839603960396,2.44372169673168,2.80513586892018,3.5,3.51464020892985,2.46904144388107,1.76498857694053,1.40027898791988,1.43362204908634,8.75868359973236,0.000513281811820656,655.349550981188,655.125075942908,650.281023046808,5.95583908744256,1367.47859101439,-66.8554684395654,0,1367.47859101439,15.1106311145966,15.1106311145966,-0.00267811434608809,15.1059384886155,24.5,1015.3,40.5,7.88578324209048
@@ -39,7 +39,7 @@ Time,Lat,Long,Heading,v_veh_GPS,v_veh_CAN,vair_ar,beta_ar,n_eng,tq_l,tq_r,t_amb_
 44456,2873.96799158416,456.909273366337,45,15.0985742574258,15.5515314851485,1.49767326732673,3.5,751.915253407921,334.610382491089,313.058181460396,20,40,9,32,5306054.6141393,396497.218791816,1,1,5306056.01663464,396496.076243673,85.3557415934032,0,0,15.0985742574257,138.295581475507,1.49767326732673,1.60634788437287,2.14021732459089,3.5,3.51464020892985,2.1753755620337,2.59264699723742,2.05691365981428,2.03014576938587,8.74893124529049,0.000705762493413466,647.668563951485,647.766394440408,649.879550810596,5.96084128973754,1351.04577786105,-28.5244026919274,0,1351.04577786105,15.0973839819625,15.0973839819625,-0.00114640176889181,15.1048053720784,24.5,1015.3,40.5,4.60101953838396
 44457,2873.96940069307,456.911921188119,45,15.0971782178218,15.5500935643564,1.47141584158416,3.5,753.058523677228,320.143818010891,310.460949890099,20,40,9,32,5306057.16513475,396500.563829786,1,1,5306058.67225022,396499.336052462,89.5603399621944,0,0,15.0971782178218,142.489557823142,1.47141584158416,1.57818515942423,2.11780021099244,3.5,3.51464020892985,2.16312212445904,2.62030227371067,2.07885436983163,2.07736513769313,8.76223379891686,0.0011121105855579,630.60476790099,631.418620407715,648.970532880113,5.96139252485622,1317.60035415406,16.4811674626775,0,1317.60035415406,15.0978316831683,15.0978316831683,0.000650807655024425,15.1070581060967,24.5,1015.3,40.5,4.50894410630128
 44458,2873.97081039604,456.914571584158,45,15.1114851485149,15.5648297029703,1.57307920792079,3.5,754.411332221782,310.142004856436,321.230853937624,20,40,9,32,5306059.717175,396503.912091115,1,1,5306061.32986098,396502.59831037,93.76809727925,0,0,15.1114851485148,146.684163378698,1.57307920792079,1.68722545345616,2.20510489936349,3.5,3.51464020892985,2.21233081129531,2.51577401891631,1.99592538051987,2.01015931999247,8.77797444108459,0.000513281806060495,631.37285879406,632.154481074483,648.989379393721,5.95575359020266,1320.30480869947,131.042626548308,0,1320.30480869947,15.1107075776884,15.1107075776884,0.00523777625287222,15.1070533237528,24.5,1015.3,40.5,4.88222559166959
-44459,2873.97222138614,456.917226534654,45,15.1207128712871,15.5743342574258,1.44183168316832,3.45891089108911,753.893000680198,313.800563911881,335.46609350198,20,40,9,32,5306062.27149961,396507.266065425,1,1,5306063.99118052,396505.865120857,97.9817266476503,0,0,15.1207128712871,150.883910353395,1.44183168316832,1.54645430642779,2.0939903558935,3.45891089108911,3.47355110001896,2.1247598125047,2.65834013913519,2.10903225562374,2.09839647439354,8.77194337973953,-0.000363574616946301,649.266657413861,649.297429549887,649.956614923879,5.95212053150238,1356.0009599447,16.0999075150622,0,1356.0009599447,15.1221512596804,15.1221512596804,0.000646723088149499,15.1091291744614,24.5,1015.3,40.5,4.39840165672273
+44459,2873.97222138614,456.917226534654,45,15.1207128712871,15.5743342574258,1.44183168316832,3.45891089108911,753.893000680198,313.800563911881,335.46609350198,20,40,9,32,5306062.27149961,396507.266065425,1,1,5306063.99118052,396505.865120857,97.9817266476539,0,0,15.1207128712871,150.883910353395,1.44183168316832,1.54645430642779,2.0939903558935,3.45891089108911,3.47355110001896,2.1247598125047,2.65834013913519,2.10903225562374,2.09839647439354,8.77194337973953,-0.000363574616946301,649.266657413861,649.297429549887,649.956614923879,5.95212053150238,1356.0009599447,16.0999075150622,0,1356.0009599447,15.1221512596804,15.1221512596804,0.000646723088149499,15.1091291744614,24.5,1015.3,40.5,4.39840165672273
 44460,2873.97363089109,456.91988039604,45,15.1137623762376,15.5671752475248,1.37873267326733,3.35237623762376,752.955592589109,327.755832865346,340.078854965347,20,40,9,32,5306064.82309947,396510.618630794,1,1,5306066.65072319,396509.129750204,102.192542716723,0,0,15.1137623762376,155.083519016762,1.37873267326733,1.47877668723559,2.03994285940695,3.35237623762376,3.36701644655361,2.02905797999499,2.72360507439639,2.16081112755991,2.15836666467342,8.76103614132331,-0.00139013824058763,667.834687830693,667.086318059122,650.966944646908,5.95485206907478,1393.65584526706,-127.935427014166,0,1393.65584526706,15.1114360356828,15.1114360356828,-0.00510707011294886,15.1104658463322,24.5,1015.30126237624,40.4936881188119,4.16971938877946
 44461,2873.9750390099,456.922532871287,45,15.1072376237624,15.5604547524753,1.34785148514852,2.84069306930693,753.639349082178,339.177401782178,330.828186709901,20,40,9,32,5306067.3721646,396513.969420525,1,1,5306069.30838523,396512.39207105,106.400381213541,0,0,15.1072376237624,159.27964679454,1.34785148514852,1.44565468907766,2.01336785940765,2.84069306930693,2.85533327823678,1.71178962686211,2.75444267673368,2.18527658141887,2.20162961184145,8.76899200938061,-0.000791309461090217,670.005588492079,669.166124535065,651.069150099543,5.95742114190487,1400.07362418083,41.9924055810131,0,1400.07362418083,15.1076844427017,15.1076844427017,0.00168556459606299,15.1099252826382,24.5,1015.31,40.45,4.06177615412047
 44462,2873.97644663366,456.925187722772,45,15.1075247524753,15.5607504950495,1.15022772277228,-1.90019801980198,754.058425643565,337.564332890099,316.219110482178,20,40,9,32,5306069.92026155,396517.323150765,1,1,5306071.96710094,396515.655685301,110.609887980285,0,0,15.1075247524752,163.477388736234,1.15022772277228,1.23369089195286,1.84528999531909,-1.90019801980198,-1.88555781087212,-1.06058303582585,2.96562859494975,2.35282395690112,2.3422939927537,8.77386818659002,0.000791309455330058,653.783443372277,653.624684512842,650.212845759798,5.95731861788728,1366.87437891729,18.5625242637078,0,1366.87437891729,15.1087561023429,15.1087561023429,0.000736583559344614,15.1083260461667,24.5,1015.32,40.4,3.41311405521186
@@ -71,17 +71,17 @@ Time,Lat,Long,Heading,v_veh_GPS,v_veh_CAN,vair_ar,beta_ar,n_eng,tq_l,tq_r,t_amb_
 44488,2874.01316782178,456.993887524752,45,15.1583168316832,15.6123750972277,1.92182178217822,-3.5,756.039849027723,326.432168208911,309.738434679208,20,40,9,32,5306136.40652204,396604.116686891,1,1,5306140.99019019,396600.382584261,219.89316326699,0,0,15.1576457254638,272.630414821341,1.92182178217822,2.06127359103767,2.50445365578869,-3.5,-3.48535979107015,-2.32978730396845,2.15684527799313,1.71116411880878,1.74181822475981,8.79692309454308,0.000106933713916054,636.170602888119,636.750904759768,649.19449620138,5.93761248896673,1329.16293523526,-14.6409085597317,0,1329.16293523526,15.1515103921431,15.1515103921431,-0.000586353824268269,15.1473076097271,24.5,1015.3,40.4,6.30962957809649
 44489,2874.01458613861,456.996537821782,45,15.1263663366337,15.5801573267327,1.88539603960396,-3.5,754.988481522772,312.931639390099,315.549013073267,20,40,9,32,5306138.97457939,396607.465018907,1,1,5306143.65422505,396603.652727837,224.111091752212,0,0,15.1263663366336,276.836698177178,1.88539603960396,2.02220471280008,2.47166965004294,-3.5,-3.48535979107015,-2.31962017644653,2.18691997690895,1.7350243123024,1.72200145127645,8.7846898781365,-0.000919629903965096,628.480652463366,629.383635979983,648.805301555929,5.94989985016327,1313.97735507177,33.8190896886005,0,1313.97735507177,15.1346282380615,15.1346282380615,0.00135969848546474,15.1415532736386,24.5,1015.3,40.35,6.13730149092441
 44490,2874.01599940594,456.999191386139,45,15.1511683168317,15.6056934156436,1.92815841584158,-3.5,754.352514459406,310.526705647525,330.048785256436,20,40,9,32,5306141.5332123,396610.817250187,1,1,5306146.31640972,396606.920600286,228.326090871965,0,0,15.1511586559646,281.042444504327,1.92815841584158,2.06807002541441,2.50947128079193,-3.5,-3.48535979107015,-2.33492549099912,2.14821104800597,1.70431402868023,1.69679341971768,8.77729006534318,0.000235254162551099,640.57549090396,640.970957188845,649.451960922705,5.94015112810497,1335.96106290845,-77.8015221385446,0,1335.96106290845,15.1445535958458,15.1445535958458,-0.00311386751959681,15.1377783624811,24.4987376237624,1015.3,40.3012623762376,6.31914324073394
-44491,2874.01737821782,457.001869009901,45,15.1179900990099,15.5715298019802,1.93042574257426,-3.5,754.15032839901,321.428451994059,339.906727561386,20,40,9,32,5306144.02748681,396614.19830373,1,1,5306148.96703436,396610.17428261,232.52278714483,0,0,15.1179900990099,285.246201709892,1.93042574257426,2.07050187458984,2.50949738125356,-3.5,-3.48535979107015,-2.33778280796499,2.13657821415335,1.69508495319125,1.71427834925139,8.77493752370614,0.000342187876467161,661.335179555445,660.859538725262,650.623554545283,5.95318464119147,1381.8742111433,-33.3637747659839,0,1381.8742111433,15.1257217919812,15.1257217919812,-0.00133701488960768,15.1353801667869,24.49,1015.3,40.26,6.31526927020929
+44491,2874.01737821782,457.001869009901,45,15.1179900990099,15.5715298019802,1.93042574257426,-3.5,754.15032839901,321.428451994059,339.906727561386,20,40,9,32,5306144.02748681,396614.19830373,1,1,5306148.96703436,396610.17428261,232.522787144833,0,0,15.1179900990099,285.246201709892,1.93042574257426,2.07050187458984,2.50949738125356,-3.5,-3.48535979107015,-2.33778280796499,2.13657821415335,1.69508495319125,1.71427834925139,8.77493752370614,0.000342187876467161,661.335179555445,660.859538725262,650.623554545283,5.95318464119147,1381.8742111433,-33.3637747659839,0,1381.8742111433,15.1257217919812,15.1257217919812,-0.00133701488960768,15.1353801667869,24.49,1015.3,40.26,6.31526927020929
 44492,2874.01877029703,457.004535742574,45,15.137198019802,15.591313960396,2.00237623762376,-2.83465346534653,754.543672186139,335.61386309802,336.059493288119,20,40,9,32,5306146.54658199,396617.566228545,1,1,5306151.62113153,396613.432227536,236.724981449057,0,0,15.137198019802,289.44910619284,2.00237623762376,2.14767326305206,2.57194045778234,-2.83465346534653,-2.82001325641668,-1.90927323551906,2.06418241917256,1.63764871147852,1.66372717601824,8.77951428649125,0.00145429846202507,671.673356386139,670.763910429977,651.230731997016,5.94562966349799,1402.44070780141,4.76484418997981,0,1402.44070780141,15.1324094696598,15.1324094696598,0.000179720942390232,15.1322947405948,24.48,1015.3,40.22,6.66651112047027
-44493,2874.02018425743,457.007185148515,45,15.1299801980198,15.5838796039604,1.63586138613861,-2.02920792079208,754.878198212872,340.040937418812,322.044211889109,20,40,9,32,5306149.10659728,396620.913294148,1,1,5306154.28133815,396616.697671892,240.936848740896,0,0,15.1299801980198,293.651903717593,1.63586138613861,1.75456325092953,2.25969585022255,-2.02920792079208,-2.01456771186222,-1.31066211430372,2.4533867653919,1.94642955864,1.93500409168868,8.78340667355799,0.00136875149434831,662.085149307921,661.578038643525,650.675027920328,5.94846756228483,1383.71790898075,45.7313731024477,0,1383.71790898075,15.1329617132187,15.1329617132187,0.00181905982100723,15.1259808603714,24.47,1015.3,40.18,5.1712740153297
-44494,2874.02157079208,457.009853564356,45,15.1336534653465,15.5876429205941,1.11686138613861,1.47089108910891,754.797323791089,330.639443233663,310.746468452475,20,40,9,32,5306151.61538832,396624.283125637,1,1,5306156.9322585,396619.951717208,245.134013212136,0,0,15.1336339034894,297.856143724445,1.11686138613861,1.19790341718781,1.81840228498165,1.47089108910891,1.48553129803877,0.728728003327397,3.00863395003981,2.38694287182636,2.36290996855782,8.78246565693082,0.000620215525736722,641.385911686139,641.747371518361,649.51824120266,5.94703112133913,1339.9530589618,-118.476223973038,0,1339.9530589618,15.1313874166458,15.1313874166458,-0.00474360970173611,15.1211186594462,24.46,1015.3,40.14,3.35985505136034
-44495,2874.02296287129,457.012515940594,45,15.117702970297,15.5712340594059,1.40433663366337,3.5,752.793843742574,316.053070953465,312.553356182178,20,40,9,32,5306154.1345865,396627.64561517,1.06930693069307,1,5306159.58372102,396623.206427351,231.923044569563,0,0,15.117702970297,302.057015803662,1.40433663366337,1.50623852988913,2.0619365386051,3.5,3.51464020892985,2.07456940704195,2.69814011974271,2.14060814075549,2.13174275966312,8.75915410803442,-0.000192480681592811,628.606427135643,629.504132962504,648.830697905696,5.95329862484444,1311.16814452303,-104.90920442081,0,1311.16814452303,15.1136251347907,15.1136251347907,-0.00419485017808796,15.1168199097694,24.45,1015.3,40.1,4.44499961201346
+44493,2874.02018425743,457.007185148515,45,15.1299801980198,15.5838796039604,1.63586138613861,-2.02920792079208,754.878198212872,340.040937418812,322.044211889109,20,40,9,32,5306149.10659728,396620.913294148,1,1,5306154.28133815,396616.697671892,240.936848740896,0,0,15.1299801980198,293.651903717593,1.63586138613861,1.75456325092953,2.25969585022255,-2.02920792079208,-2.01456771186222,-1.31066211430373,2.4533867653919,1.94642955864,1.93500409168868,8.78340667355799,0.00136875149434831,662.085149307921,661.578038643525,650.675027920328,5.94846756228483,1383.71790898075,45.7313731024477,0,1383.71790898075,15.1329617132187,15.1329617132187,0.00181905982100723,15.1259808603714,24.47,1015.3,40.18,5.1712740153297
+44494,2874.02157079208,457.009853564356,45,15.1336534653465,15.5876429205941,1.11686138613861,1.47089108910891,754.797323791089,330.639443233663,310.746468452475,20,40,9,32,5306151.61538832,396624.283125637,1,1,5306156.9322585,396619.951717208,245.134013212132,0,0,15.1336339034894,297.856143724445,1.11686138613861,1.19790341718781,1.81840228498165,1.47089108910891,1.48553129803877,0.728728003327397,3.00863395003981,2.38694287182636,2.36290996855782,8.78246565693082,0.000620215525736722,641.385911686139,641.747371518361,649.51824120266,5.94703112133913,1339.9530589618,-118.476223973038,0,1339.9530589618,15.1313874166458,15.1313874166458,-0.00474360970173611,15.1211186594462,24.46,1015.3,40.14,3.35985505136034
+44495,2874.02296287129,457.012515940594,45,15.117702970297,15.5712340594059,1.40433663366337,3.5,752.793843742574,316.053070953465,312.553356182178,20,40,9,32,5306154.1345865,396627.64561517,1.06930693069307,1,5306159.58372102,396623.206427351,231.923044569563,0,0,15.117702970297,302.057015803662,1.40433663366337,1.50623852988913,2.0619365386051,3.5,3.51464020892985,2.07456940704196,2.69814011974271,2.14060814075549,2.13174275966312,8.75915410803442,-0.000192480681592811,628.606427135643,629.504132962504,648.830697905696,5.95329862484444,1311.16814452303,-104.90920442081,0,1311.16814452303,15.1136251347907,15.1136251347907,-0.00419485017808796,15.1168199097694,24.45,1015.3,40.1,4.44499961201346
 44496,2874.02435712871,457.015171782178,45,15.0928316831683,15.5456166336634,1.83287128712871,2.24772277227723,752.621066561386,309.692463971287,325.803630834653,20,40,9,32,5306156.65796723,396631.000034393,2,1,5306162.23280166,396626.45804028,2.33928219136252,0,0,15.0928316831683,306.252269131496,1.83287128712871,1.96586864347408,2.42516433985684,2.24772277227723,2.26236298120708,1.52276207048194,2.23293468679045,1.77153074198932,1.82626920835166,8.75714375424506,-0.00228838140407356,635.496094805941,636.104700032703,649.237798539976,5.96310942202559,1327.3961919042,-2.51044350153273,0,1327.3961919042,15.0974366238604,15.0974366238604,-8.30528597380457E-05,15.109492075908,24.44,1015.3,40.06,5.92394582866921
 44497,2874.02576792079,457.017813861386,45,15.1132277227723,15.5666245544554,1.31320792079208,-1.07811881188119,753.657729636633,317.405535020792,338.315051013861,20,40,9,32,5306159.21228485,396634.337856746,2,1,5306164.88635786,396629.715009815,6.54037860338179,0,0,15.1132277227723,310.447976034687,1.31320792079208,1.40849730800854,1.98426845589677,-1.07811881188119,-1.06347860295133,-0.637583189479236,2.79310936284118,2.21595335111371,2.17411804204589,8.769205876843,-0.000641602260455702,655.720586034653,655.480541817371,650.312624880214,5.95505869492364,1369.7082667208,33.302994897752,0,1369.7082667208,15.1106731692971,15.1106731692971,0.00133701488960329,15.1008601206259,24.43,1015.3,40.02,3.9738615093966
 44498,2874.02717376238,457.020459405941,45,15.0870495049505,15.539660990099,1.43357425742574,-0.809405940594059,751.426330755446,332.100922150495,338.584674688119,20,40,9,32,5306161.75735702,396637.679828359,2,1,5306167.53825731,396632.969945859,10.7388520588218,0,0,15.0870495049505,314.643676694753,1.43357425742574,1.53759770288059,2.0851175807947,-0.809405940594059,-0.794765731664204,-0.464455038249975,2.6573971805076,2.10828414587961,2.11999037631076,8.7432423719083,0.00139013823482746,670.685596838614,669.817598726243,651.091703217739,5.96539603495241,1399.24422484989,-143.275606220448,0,1399.24422484989,15.0928254092736,15.0928254092736,-0.0057415395004831,15.094646447287,24.42,1015.3,39.98,4.3806066780898
 44499,2874.02856831683,457.023108217822,45,15.0899801980198,15.5426796039604,1.16359405940594,-0.396039603960396,752.554896578218,340.26775420198,326.36461110099,20,40,9,32,5306164.28145054,396641.025492324,2,1,5306170.18359517,396636.216828219,14.9269372354954,0,0,15.0899801980198,318.834341023687,1.16359405940594,1.24802712071631,1.85563246716511,-0.396039603960396,-0.381399395030537,-0.0883066316062279,2.94666289796419,2.33777724933196,2.28260254817822,8.75637383153021,0.000470508325102206,666.63236530297,665.934446757573,650.884475779513,5.96424337447138,1392.61484005367,-50.2869880865192,0,1392.61484005367,15.0852616410156,15.0852616410156,-0.00201505299044768,15.093493902016,24.41,1015.3,39.94,3.48704134839673
 44500,2874.02997178218,457.025750495049,45,15.0808910891089,15.5333178217822,1.66286138613861,-3.5,752.687236546535,334.397483442574,312.889930365346,20,40,9,32,5306166.8221978,396644.363309379,2,1,5306172.83173473,396639.467149374,19.1194580426888,0,0,15.0808910891089,323.024237915876,1.66286138613861,1.7835224330317,2.27974696351396,-3.5,-3.48535979107015,-2.22544098249932,2.41155285638579,1.91324002725768,1.89177392388626,8.75791367698295,-0.000342187876467158,647.287413807921,647.401237923017,649.856771203531,5.96783711621636,1353.22178385463,31.895738690089,0,1353.22178385463,15.0837053230075,15.0837053230075,0.00127846943110307,15.0907187560393,24.4012623762377,1015.3,39.9113613861386,5.25465613812704
-44501,2874.0313760396,457.028391485149,45,15.095297029703,15.5481559405941,2.71810891089109,-3.49316831683168,750.966816983168,319.887209753465,310.54919179703,20,40,9,32,5306169.36444288,396647.699546511,2,1,5306175.47969819,396642.717254393,23.3117000603694,0,0,15.0952970297029,327.21483274536,2.71810891089109,2.91534114533435,3.17835152626846,-3.49316831683168,-3.47852810790183,-2.54736142150045,1.29918759258255,1.03072909990899,1.10257335789109,8.73789568638531,-0.0003635746169463,630.436401550495,631.257318955348,648.966248106284,5.96213343705219,1313.7423348717,66.4720315857131,0,1313.7423348717,15.0917584550534,15.0917584550534,0.00266177607859791,15.0880668415024,24.4,1015.3,39.95,10.2108449627316
+44501,2874.0313760396,457.028391485149,45,15.095297029703,15.5481559405941,2.71810891089109,-3.49316831683168,750.966816983168,319.887209753465,310.54919179703,20,40,9,32,5306169.36444288,396647.699546511,2,1,5306175.47969819,396642.717254393,23.3117000603659,0,0,15.0952970297029,327.21483274536,2.71810891089109,2.91534114533435,3.17835152626846,-3.49316831683168,-3.47852810790183,-2.54736142150045,1.29918759258255,1.03072909990899,1.10257335789109,8.73789568638531,-0.0003635746169463,630.436401550495,631.257318955348,648.966248106284,5.96213343705219,1313.7423348717,66.4720315857131,0,1313.7423348717,15.0917584550534,15.0917584550534,0.00266177607859791,15.0880668415024,24.4,1015.3,39.95,10.2108449627316
 44502,2874.03278247525,457.031034653465,45,15.0937722772277,15.5465854455446,2.62078217821782,-3.5,752.786491516832,310.077611825743,321.494459651485,20,40,9,32,5306171.91067607,396651.038566176,2,1,5306178.13061532,396645.970984738,27.508618310137,0,0,15.0937722772277,331.408090941179,2.62078217821782,2.810952161079,3.09545339718475,-3.5,-3.48535979107015,-2.53123361732373,1.40011769018903,1.1108034396376,1.09256713632835,8.75906856100338,0.00113349733179721,631.572071477227,632.345334500715,649.025945879751,5.96273481910345,1319.41302598146,-43.084512149814,0,1319.41302598146,15.094624056465,15.094624056465,-0.00173185635395455,15.0895449004459,24.4,1015.3,40,9.67631854010899
 44503,2874.03418861386,457.033675148515,45,15.0788910891089,15.5312578217822,2.5610297029703,-3.5,752.837957066337,313.987588778218,335.662705130693,20,40,9,32,5306174.4564206,396654.374243191,2,1,5306180.77970065,396649.222466732,31.7026364577515,0,0,15.0788910891089,335.599170699156,2.5610297029703,2.74686390879202,3.04376012657022,-3.5,-3.48535979107015,-2.52201278557992,1.45716559536549,1.15606321296821,1.16177377645068,8.75966738986352,0.00141152498682694,649.650293908911,649.664968091363,649.980413145919,5.96862865706923,1358.66330154223,-9.37148225698791,0,1358.66330154223,15.082108420743,15.082108420743,-0.000385310808306921,15.0915659119319,24.4,1015.3,40.05,9.30442682826045
 44504,2874.03560712871,457.036305346535,45,15.101,15.55403,2.51226732673267,-3.5,751.463091851485,328.022325804951,340.027708696039,20,40,9,32,5306177.02532179,396657.697501771,2,1,5306183.43194348,396652.47782424,35.9016535504924,0,0,15.101,339.790517206306,2.51226732673267,2.69456322237721,3.00354035716107,-3.5,-3.48535979107015,-2.51069904615982,1.51440430430807,1.20147436320177,1.20371109335769,8.74367010668333,-0.00230976815607305,668.05003450099,667.29262846863,650.957306053628,5.95988092589081,1392.51329804326,52.0852561471125,0,1392.51329804326,15.0972135084795,15.0972135084795,0.00210082889476885,15.0925150573589,24.4,1015.3,40.1,9.0433430513853
@@ -101,9 +101,9 @@ Time,Lat,Long,Heading,v_veh_GPS,v_veh_CAN,vair_ar,beta_ar,n_eng,tq_l,tq_r,t_amb_
 44518,2874.05526445545,457.073215445545,45,15.0616930693069,15.5135438613861,2.22789108910891,-3.5,751.327075775248,340.299823193069,324.060908909901,20,40,9,32,5306212.61423514,396704.324890743,2,1,5306220.46328652,396697.930020076,94.5294837467306,0,0,15.0616930693069,398.442818938983,2.22789108910891,2.38955199086326,2.75934231701593,-3.5,-3.48535979107015,-2.43415501190317,1.80485349791386,1.43190639442174,1.45462012868886,8.74208748777266,0.00124043103995311,664.36073210297,663.758134628821,650.734108981708,5.97545561689619,1388.21304830394,366.277589885431,0,1388.21304830394,15.0625095578865,15.0625095578865,0.0146418107157292,15.0635385354161,24.4,1015.3,40.48,7.64654756326102
 44519,2874.05666881188,457.075856039604,45,15.0981485148515,15.551092970297,1.982,-3.5,750.470542106931,332.476311840594,311.618249628713,20,40,9,32,5306215.15670653,396707.660584891,2,1,5306223.11107438,396701.17990956,98.721447749673,0,0,15.0981485148515,402.634821359224,1.982,2.12581847875933,2.55223634340864,-3.5,-3.48535979107015,-2.35635361845731,2.0761825553019,1.64716919149387,1.62486332701193,8.73212126599512,0.00104795036988063,644.094561469307,644.342362365347,649.68940063988,5.9610118740743,1341.0360720027,-265.745551904866,0,1341.0360720027,15.0906442505636,15.0906442505636,-0.0106375736583576,15.0629251506607,24.4,1015.3,40.49,6.53274353302964
 44520,2874.05807039604,457.078489009901,45,15.0269702970297,15.4777794059406,2.0889801980198,-3.5,751.749828450495,317.779113859406,311.478709926733,20,40,9,32,5306217.69421459,396710.986688017,2,1,5306225.75218548,396704.421604005,102.902841144953,0,0,15.0269702970297,406.817985798169,2.0889801980198,2.24056140601051,2.6391693930124,-3.5,-3.48535979107015,-2.39236785302996,1.94283876038553,1.54137898036709,1.54908535324541,8.74700643850912,-0.00177509959801307,629.257823786139,630.12819605324,648.983438546533,5.98924620161625,1318.6260279204,-135.435768918626,0,1318.6260279204,15.03552357612,15.03552357612,-0.00540388197235711,15.063180463782,24.4,1015.3,40.4962128712871,7.00342340534474
-44521,2874.05946792079,457.081118316832,45,15.0557920792079,15.5074658415842,1.9169504950495,-3.5,750.411724344555,309.72076529703,323.770581957426,20,40,9,32,5306220.22428679,396714.308090526,2,1,5306228.38802814,396707.656831974,107.075893568909,0,0,15.0557920792079,410.994946386728,1.9169504950495,2.05604883211054,2.49446561373464,-3.5,-3.48535979107015,-2.33568663587372,2.13367977893875,1.69278543806583,1.6826999469132,8.7314368902537,0.000534668546539637,633.491347254456,634.18407463982,649.150466530881,5.97778030363114,1322.59737252703,290.038813776673,0,1322.59737252703,15.0560886187628,15.0560886187628,0.0115974468734035,15.0622908505527,24.4,1015.3,40.48,6.2401645686338
+44521,2874.05946792079,457.081118316832,45,15.0557920792079,15.5074658415842,1.9169504950495,-3.5,750.411724344555,309.72076529703,323.770581957426,20,40,9,32,5306220.22428679,396714.308090526,2,1,5306228.38802814,396707.656831974,107.075893568909,0,0,15.0557920792079,410.994946386728,1.9169504950495,2.05604883211054,2.49446561373464,-3.5,-3.48535979107015,-2.33568663587371,2.13367977893875,1.69278543806583,1.6826999469132,8.7314368902537,0.000534668546539637,633.491347254456,634.18407463982,649.150466530881,5.97778030363114,1322.59737252703,290.038813776673,0,1322.59737252703,15.0560886187628,15.0560886187628,0.0115974468734035,15.0622908505527,24.4,1015.3,40.48,6.2401645686338
 44522,2874.06086821782,457.083755148515,45,15.0850198019802,15.5375703960396,1.86743564356436,-3.5,751.654249580198,315.710074655446,337.192775273267,20,40,9,32,5306222.75932831,396717.638954858,2,1,5306231.03048668,396710.900180263,111.259420222115,0,0,15.0850198019802,415.183099219512,1.86743564356436,2.00294106911349,2.45401761336344,-3.5,-3.48535979107015,-2.3162145087907,2.19452421878238,1.74105724659645,1.75198777251013,8.74589432785444,0.000320801130227845,652.902849928713,652.781042068611,650.149652898761,5.96619979973169,1362.68789624036,-84.219633778647,0,1362.68789624036,15.0817629644152,15.0817629644152,-0.00337112919213062,15.0558523455964,24.4,1015.3,40.46,6.04158450773841
-44523,2874.06226891089,457.08639,45,15.0501089108911,15.5016121782178,1.75757425742574,-3.5,750.911675331683,330.240498528713,339.404987225743,20,40,9,32,5306225.29514948,396720.967362862,2,1,5306233.67205344,396714.142433982,115.441535012866,0,0,15.0501089108911,419.368482112801,1.75757425742574,1.88510788810664,2.35855177307162,-3.5,-3.48535979107015,-2.27568702114392,2.30190589970584,1.82625004243044,1.79758604879512,8.73725408413637,0.000128320460155375,669.645485754456,668.821132238977,651.003584908035,5.98003689786279,1399.54289524476,-177.042643752973,0,1399.54289524476,15.050150377414,15.050150377414,-0.00708263895696278,15.0565782812014,24.4,1015.3,40.44,5.58239850658001
+44523,2874.06226891089,457.08639,45,15.0501089108911,15.5016121782178,1.75757425742574,-3.5,750.911675331683,330.240498528713,339.404987225743,20,40,9,32,5306225.29514948,396720.967362862,2,1,5306233.67205344,396714.142433982,115.44153501287,0,0,15.0501089108911,419.368482112801,1.75757425742574,1.88510788810664,2.35855177307162,-3.5,-3.48535979107015,-2.27568702114392,2.30190589970584,1.82625004243044,1.79758604879512,8.73725408413637,0.000128320460155375,669.645485754456,668.821132238977,651.003584908035,5.98003689786279,1399.54289524476,-177.042643752973,0,1399.54289524476,15.050150377414,15.050150377414,-0.00708263895696278,15.0565782812014,24.4,1015.3,40.44,5.58239850658001
 44524,2874.06366435644,457.089022574258,45,15.04,15.4912,1.91088118811881,-3.5,749.404470151486,339.952832229703,328.373320354455,20,40,9,32,5306227.82130307,396724.292757447,2,1,5306236.30828758,396717.378142459,119.615207234516,0,0,15.04,423.54654239883,1.91088118811881,2.04953912230906,2.48839686897294,-3.5,-3.48535979107015,-2.3329447949095,2.13581675878939,1.69448084166309,1.73089363242659,8.71971695553799,-0.000641602266215868,668.326152584159,667.557160227605,650.928214532169,5.98405315530276,1394.9281428941,77.3850648111533,0,1394.9281428941,15.044376433683,15.044376433683,0.00310018625625078,15.0614302608,24.4,1015.3,40.42,6.21851567003041
 44525,2874.06506059406,457.091658316832,45,15.0648415841584,15.5167868316832,1.6949504950495,-3.5,750.985197529703,335.917600935644,314.24023830396,20,40,9,32,5306230.34885512,396727.622121823,2,1,5306238.9470236,396720.616921733,123.792840412679,0,0,15.0648415841584,427.728103757466,1.6949504950495,1.81794000149269,2.30612221681492,-3.5,-3.48535979107015,-2.24695125050466,2.37280518124329,1.88249900375098,1.86526990142482,8.73810955375554,0.00139013823482747,650.157839239604,650.15121607362,650.009543021975,5.97418828445996,1357.58581056065,62.447341781219,0,1357.58581056065,15.0605847465935,15.0605847465935,0.00248750122536757,15.0613118660436,24.4,1015.3,40.4,5.34966086136335
 44526,2874.06645663366,457.094298118812,45,15.0603465346535,15.5121569306931,1.64321782178218,-3.5,750.863885891089,321.844777691089,309.999631536634,20,40,9,32,5306232.87595176,396730.956533094,2,1,5306241.58804932,396723.858511378,127.974098628037,0,0,15.0603465346534,431.912239373528,1.64321782178218,1.76245348646378,2.26185564239509,-3.5,-3.48535979107015,-2.22212426193756,2.42681145584519,1.92534565586471,1.92682335125324,8.73669802874566,-0.000791309461090217,631.844409227723,632.6062445597,649.060275030239,5.97597141265565,1319.56479879607,30.0397387598025,0,1319.56479879607,15.0624139790217,15.0624139790217,0.00120767027197759,15.0619206689293,24.4,1015.3,40.38,5.16455839385192
@@ -149,13 +149,13 @@ Time,Lat,Long,Heading,v_veh_GPS,v_veh_CAN,vair_ar,beta_ar,n_eng,tq_l,tq_r,t_amb_
 44566,2874.11296465347,457.205788712871,45,15.844099009901,15.65396498,2.97342574257426,3.5,772.119154984159,315.92736589505,337.355314332673,20,40,9,32,5306316.54106287,396871.368605585,0,0,0,0,0,0,0,15.1980242524272,599.330106456218,2.97342574257426,3.18918435357369,3.40144648312857,3.5,3.51464020892985,2.62969524128203,1.05880957133808,0.840021751032064,0.802710951363949,8.9840143147933,-0.000834082947808667,653.282680227723,653.144934132595,650.194499610532,5.92182237014307,1390.23344335754,-0.159592395860755,0,1390.23344335754,15.1980242524272,15.1980242524272,0,15.1833911955718,24.4,1015.26,41.4,11.6134172262696
 44567,2874.11337346535,457.20928,45,15.9896534653465,15.65396498,3.26543564356436,3.4990099009901,764.579452994059,330.494673391089,339.309963176238,20,40,9,32,5306317.22059869,396875.730810009,0,0,0,0,0,0,0,15.1980242524272,603.551779859664,3.26543564356436,3.50238316462588,3.64989679426126,3.4990099009901,3.51365010991995,2.6842875515773,0.76338013410053,0.605638572137031,0.622938927225751,8.89628589856237,-0.00320801131955899,669.804636567327,668.97360484777,651.173429571528,5.92182237014307,1411.44192570073,-0.609438730990881,0,1411.44192570073,15.1980242524272,15.1980242524272,0,15.1959703456305,24.4,1015.27,41.25,13.3566341353249
 44568,2874.11426980198,457.212545742574,45,15.9596534653465,15.65396498,3.08679207920792,1.45514851485149,745.658513874258,340.010203514852,328.108097869307,20,40,8.8019801980198,32,5306318.80822286,396879.828219813,0,0,0,0,0,0,0,15.1980242524272,607.773453263111,3.08679207920792,3.31077681234518,3.49810068151935,1.45514851485149,1.46978872378134,1.10874975980664,0.937014787785066,0.743394113620852,0.794611168483785,8.67613077508908,-0.00237392837175032,668.118301384158,667.358030771238,651.073513796389,5.92182237014307,1373.1275998233,-0.439225751207401,0,1373.1275998233,15.1980242524272,15.1980242524272,0,15.1980242524271,24.4,1015.28,41.1,12.3033054652645
-44569,2874.11564910891,457.215407326733,45,15.9366633663366,15.65396498,2.33980198019802,0.0280198019801979,727.292667386139,335.725421742574,314.048661716832,20,40,8.96039603960396,32,5306321.29947438,396883.43820529,0,0,0,0,0,0,0,15.1980242524272,611.995126666558,2.33980198019802,2.50958339361384,2.86255067689256,0.0280198019801979,0.0426600109100553,0.00860164472085475,1.72183729324339,1.36604429844239,1.34738870169469,8.46243444766673,-0.00297275716276805,649.774083459406,649.783563250809,649.986614389844,5.92182237014307,1302.59867254726,-0.539396453801781,0,1302.59867254726,15.1980242524272,15.1980242524272,0,15.1980242524271,24.4,1015.29,40.95,8.26713122766963
+44569,2874.11564910891,457.215407326733,45,15.9366633663366,15.65396498,2.33980198019802,0.0280198019801979,727.292667386139,335.725421742574,314.048661716832,20,40,8.96039603960396,32,5306321.29947438,396883.43820529,0,0,0,0,0,0,0,15.1980242524272,611.995126666558,2.33980198019802,2.50958339361384,2.86255067689256,0.0280198019801979,0.0426600109100553,0.00860164472085477,1.72183729324339,1.36604429844239,1.34738870169469,8.46243444766673,-0.00297275716276805,649.774083459406,649.783563250809,649.986614389844,5.92182237014307,1302.59867254726,-0.539396453801781,0,1302.59867254726,15.1980242524272,15.1980242524272,0,15.1980242524271,24.4,1015.29,40.95,8.26713122766963
 44570,2874.1174180198,457.217697920792,45,15.773900990099,15.65396498,2.38286138613862,-3.46841584158416,706.346191551485,321.579736683168,310.057835478218,20,40,9.36633663366337,32,5306324.52511929,396886.349873179,0,0,0,0,0,0,0,15.1980242524272,616.216800070005,2.38286138613862,2.55576728908958,2.89901927094599,-3.46841584158416,-3.45377563265431,-2.44631231485095,1.67857838118147,1.33172422045889,1.29847412337538,8.21871113433065,-0.000941016655964566,631.637572161386,632.4080866791,648.912021653215,5.92182237014307,1229.72638371025,-0.16444571859344,0,1229.72638371025,15.1980242524272,15.1980242524272,0,15.1980242524271,24.4,1015.29873762376,40.8075742574257,8.46836964958011
 44571,2874.11945217822,457.219264455446,45,15.621900990099,15.65396498,2.68388118811881,-3.5,696.957406140594,310.578625947525,319.804766391089,20,40,10,32,5306328.2582127,396888.368447737,0,0,0,0,0,0,0,15.1980242524272,620.438473473452,2.68388118811881,2.8786297802712,3.15511611071507,-3.5,-3.48535979107015,-2.54479498211082,1.36117306055214,1.07990615945951,1.07577710428566,8.10946765554181,-0.00042773484414391,630.383392338614,631.206534090295,648.837711190782,5.92182237014307,1210.92003136863,-0.0748719655887347,0,1210.92003136863,15.1980242524272,15.1980242524272,0,15.1980242524271,24.4,1015.3,40.71,10.0135761980061
 44572,2874.12174643564,457.220036534654,45,15.9357524752475,15.65396498,2.96028712871287,-3.5,705.508038428713,312.83646000594,334.328171126733,20,40,10,32,5306332.49078384,396889.406076306,0,0,0,0,0,0,0,15.1980242524272,624.660146876899,2.96028712871287,3.17509237167065,3.39028572486662,-3.5,-3.48535979107015,-2.60550519121906,1.07201473052276,0.850498253361891,0.846937698342914,8.20895877991181,0.00134736475386917,647.164631132673,647.283607386227,649.832003699793,5.92182237014307,1258.45504864768,0.236889052129901,0,1258.45504864768,15.1980242524272,15.1980242524272,0,15.1980242524271,24.4,1015.3,40.62,11.5336051473339
 44573,2874.12417564356,457.219914158416,45,16.1873267326733,15.65396498,3.39837623762376,-3.5,711.970640129703,326.277396637624,340.275298343565,20,40,10,32,5306336.99323988,396889.334060754,0,0,0,0,0,0,0,15.1980242524272,628.881820280346,3.39837623762376,3.64497023396429,3.76302627840357,-3.5,-3.48535979107015,-2.683773872656,0.655572439463663,0.520107792216763,0.527569237453519,8.28415456519666,0.000513281811820655,666.552694981188,665.858119521645,650.980751232195,5.92182237014307,1307.99093450083,0.0908343564344771,0,1307.99093450083,15.1980242524272,15.1980242524272,0,15.1980242524271,24.4,1015.3,40.53,14.2227618580409
 44574,2874.12642168317,457.218822277228,45,16.3676138613861,15.65396498,3.92027722772277,-3.5,716.216547396039,338.54390069901,332.178386715842,20,40,10,32,5306341.17798554,396888.048393426,0,0,0,0,0,0,0,15.1980242524272,633.103493683793,3.92027722772277,4.20474156031911,4.20708477850322,-3.5,-3.48535979107015,-2.76121097071935,0.38229042539593,0.303295588967945,0.366795297075546,8.33355793955127,0.000684375752934325,670.722287414851,669.85274970845,651.227800604838,5.92182237014307,1323.99520382372,0.121979140800623,0,1323.99520382372,15.1980242524272,15.1980242524272,0,15.1980242524271,24.4,1015.3,40.44,17.7593666276858
-44575,2874.12855752475,457.21680029703,45,16.5334158415842,15.65396498,4.97388118811881,-3.5,716.790020582178,338.358204909901,317.481699434653,20,40,10,32,5306345.17931068,396885.600575158,0,0,0,0,0,0,0,15.1980242524272,637.325167087239,4.97388118811881,5.3347974474553,5.10356383586159,-3.5,-3.48535979107015,-2.87572108366216,1.16120629396806,0.921259658746545,0.892314133316323,8.34023060306462,0.000534668546539643,655.839904344554,655.594853359092,650.346015763647,5.92182237014307,1295.65391608131,0.0954513151968915,0,1295.65391608131,15.1980242524272,15.1980242524272,0,15.1980242524271,24.4,1015.3,40.35,26.232123004851
+44575,2874.12855752475,457.21680029703,45,16.5334158415842,15.65396498,4.97388118811881,-3.5,716.790020582178,338.358204909901,317.481699434653,20,40,10,32,5306345.17931068,396885.600575158,0,0,0,0,0,0,0,15.1980242524272,637.325167087239,4.97388118811881,5.3347974474553,5.10356383586159,-3.5,-3.48535979107015,-2.87572108366216,1.16120629396805,0.921259658746545,0.892314133316323,8.34023060306462,0.000534668546539643,655.839904344554,655.594853359092,650.346015763647,5.92182237014307,1295.65391608131,0.0954513151968915,0,1295.65391608131,15.1980242524272,15.1980242524272,0,15.1980242524271,24.4,1015.3,40.35,26.232123004851
 44576,2874.13014485149,457.213967722772,45,16.4416237623762,15.65396498,5.46215841584159,-3.5,714.477747281188,325.891037140594,309.697303024752,20,40,10,32,5306348.18264235,396882.124949409,0,0,0,0,0,0,0,15.1980242524272,641.546840490686,5.46215841584159,5.85850519389851,5.51902916019465,-3.5,-3.48535979107015,-2.91898518792279,1.66611140305762,1.3218333646552,1.30669491825248,8.3133260815258,0.00109072385083891,635.588340165346,636.19307463982,649.14610562574,5.92182237014307,1251.6032905548,0.194814443220963,0,1251.6032905548,15.1980242524272,15.1980242524272,0,15.1980242524271,24.4,1015.3,40.26,30.5964464501134
 44577,2874.13099851485,457.210635742574,45,16.5638316831683,15.65396498,5.70545544554455,-3.5,714.154249585149,312.604653931683,315.982135644555,20,40,10,32,5306349.83809579,396878.002993079,0,0,0,0,0,0,0,15.1980242524272,645.768513894133,5.70545544554455,6.11945641567946,5.72604706387807,-3.5,-3.48535979107015,-2.93813319260512,1.92375114896132,1.52623555023044,1.54254010484313,8.30956201491346,0.00124043103995311,628.586789576238,629.485319422723,648.731262037771,5.92182237014307,1237.25182990698,0.221629840898179,0,1237.25182990698,15.1980242524272,15.1980242524272,0,15.1980242524271,24.4,1015.3,40.17,32.9038922915233
 44578,2874.13121554455,457.20705009901,68.1683168316832,16.4345445544554,15.65396498,6.16726732673267,-3.5,713.782962454456,310.714494733663,330.557951162376,20,40,10,32,5306350.31993397,396873.544005915,0,0,0,0,0,0,0,15.1980242524272,649.99018729758,6.16726732673267,6.61477842917104,6.11899806941026,-3.5,-3.48535979107015,-2.97092721594965,2.41493943472612,1.91592681772922,1.87094218308329,8.30524189297954,0.00111211059131807,641.27244589604,641.638666921978,649.482890282364,5.92182237014307,1261.56359680168,0.198584435072667,0,1261.56359680168,15.1980242524272,15.1980242524272,0,15.1980242524271,24.4,1015.3,40.08,37.5337390724071
@@ -171,16 +171,16 @@ Time,Lat,Long,Heading,v_veh_GPS,v_veh_CAN,vair_ar,beta_ar,n_eng,tq_l,tq_r,t_amb_
 44588,2874.11901514851,457.176458118812,225,15.5714455445545,15.65396498,5.03861386138614,3.45693069306931,776.737623762376,333.962917979208,312.564864978218,20,40,10,32,5306328.40177186,396835.035458443,0,0,0,0,0,0,0,15.1980242524272,692.206921332048,5.03861386138614,5.40422727238525,5.15864508397162,3.45693069306931,3.47157090199916,2.87293380991953,1.21929885541459,0.967348225103744,0.97501839816739,9.03775263918028,-0.000230406501913443,646.527782957426,646.673482298785,649.794270286773,5.92182237014307,1384.10322383497,-0.0452972916252516,0,1384.10322383497,15.1980242524272,15.1980242524272,0,15.1980242524271,24.4,1015.3,39.9000000000001,26.6740266645092
 44589,2874.11761237624,457.17367009901,225,15.487396039604,15.65396498,4.95795049504951,3.5,774.247524752475,319.378879939604,310.739232451485,20,40,10,32,5306325.86544599,396831.516308165,0,0,0,0,0,0,0,15.1980242524272,696.428594735495,4.95795049504951,5.31771078665501,5.08998677447917,3.5,3.51464020892985,2.90088876244032,1.13631220261428,0.901509574524199,0.906371530376183,9.00877902156466,0.000345609752870164,630.118112391089,630.952385678855,648.82199328688,5.92182237014307,1344.63885752828,0.0665689083454144,0,1344.63885752828,15.1980242524272,15.1980242524272,0,15.1980242524271,24.4,1015.3,39.9000000000001,25.9654842407369
 44590,2874.11621,457.170896435644,225,15.4646534653465,15.65396498,4.95288118811881,3.48485148514852,772.490099009901,309.962873757426,322.024883839604,20,40,10,32,5306323.32953609,396828.015049939,0,0,0,0,0,0,0,15.1980242524272,700.650268138942,4.95288118811881,5.31227363915361,5.08568182067443,3.48485148514852,3.49949169407837,2.88780030842666,1.13098148656866,0.897280374535729,0.896525510494737,8.98833044451984,5.76016254783612E-05,631.98775759703,632.743577817733,648.932770223027,5.92182237014307,1345.55322232344,0.0110948180575691,0,1345.55322232344,15.1980242524272,15.1980242524272,0,15.1980242524271,24.4,1015.3,39.8987376237624,25.9341250084879
-44591,2874.11480158416,457.168134356436,225,15.4527227722772,15.65396498,4.84427722772277,3.4709900990099,771.381188118812,314.371932094059,336.045843308911,20,40,10,32,5306320.78218282,396824.528017534,0,0,0,0,0,0,0,15.1980242524272,704.871941542389,4.84427722772277,5.19578912559339,4.99327954578951,3.4709900990099,3.48563030793975,2.86574258210446,1.01974284442302,0.809027603228123,0.827756330708602,8.97542768041269,-0.000144004063695901,650.41777540297,650.400244931379,650.024753294917,5.92182237014307,1382.78946648089,-0.0273548347343413,0,1382.78946648089,15.1980242524272,15.1980242524272,0,15.1980242524271,24.4,1015.3,39.89,25.0050168840736
+44591,2874.11480158416,457.168134356436,225,15.4527227722772,15.65396498,4.84427722772277,3.4709900990099,771.381188118812,314.371932094059,336.045843308911,20,40,10,32,5306320.78218282,396824.528017534,0,0,0,0,0,0,0,15.1980242524272,704.871941542389,4.84427722772277,5.19578912559339,4.99327954578951,3.4709900990099,3.48563030793975,2.86574258210446,1.01974284442302,0.809027603228123,0.827756330708601,8.97542768041269,-0.000144004063695901,650.41777540297,650.400244931379,650.024753294917,5.92182237014307,1382.78946648089,-0.0273548347343413,0,1382.78946648089,15.1980242524272,15.1980242524272,0,15.1980242524271,24.4,1015.3,39.89,25.0050168840736
 44592,2874.11338118812,457.165384554456,225,15.3897524752475,15.65396498,5.29443564356436,3.3139603960396,769.430693069307,328.552387048515,339.911305380198,20,40,10,32,5306318.2123667,396821.055877448,0.732673267326733,0.732673267326733,1943898.99701437,145369.238121625,0.282728821533679,0,0,15.1980242524272,709.093614945836,5.29443564356436,5.67861207148899,5.37638351208307,3.3139603960396,3.32860060496946,2.77490901515057,1.48872086088541,1.18109803520052,1.1681382960074,8.95273263997421,-0.00106563007134967,668.463692428713,667.688928697902,651.093978299903,5.92182237014307,1417.57679172603,-0.201982127194218,0,1417.57679172603,15.1980242524272,15.1980242524272,0,15.1980119200191,24.4,1015.3,39.88,29.1320053851364
-44593,2874.11196465347,457.162654257426,225,15.3668910891089,15.65396498,5.15556435643564,3.5,767.475247524752,339.466793733663,330.067382048515,20,40,10,32,5306315.6492708,396817.608157114,2,2,5306317.04342895,396816.472292325,3.6853472217389,0,0,15.1980242524272,713.315288349283,5.15556435643564,5.5296639643511,5.25813256856071,3.5,3.51464020892985,2.91801795075255,1.34360929998414,1.06597169824342,1.04027241943371,8.92997999791026,0.00138243901148066,669.534175782178,668.714492996216,651.157404702161,5.92182237014307,1416.2469779847,0.26058891401667,0,1416.2469779847,15.1980242524272,15.1980242524272,0,15.1980056617822,24.4,1015.3,39.87,27.753790991581
+44593,2874.11196465347,457.162654257426,225,15.3668910891089,15.65396498,5.15556435643564,3.5,767.475247524752,339.466793733663,330.067382048515,20,40,10,32,5306315.6492708,396817.608157114,2,2,5306317.04342895,396816.472292325,3.68534722173846,0,0,15.1980242524272,713.315288349283,5.15556435643564,5.5296639643511,5.25813256856071,3.5,3.51464020892985,2.91801795075255,1.34360929998414,1.06597169824342,1.04027241943371,8.92997999791026,0.00138243901148066,669.534175782178,668.714492996216,651.157404702161,5.92182237014307,1416.2469779847,0.26058891401667,0,1416.2469779847,15.1980242524272,15.1980242524272,0,15.1980056617822,24.4,1015.3,39.87,27.753790991581
 44594,2874.11054326733,457.15992990099,225,15.3149900990099,15.65396498,4.61213861386139,3.5,765.495049504951,337.080496978218,315.564531038614,20,40,10,32,5306313.07705797,396814.167672475,2,2,5306314.33246108,396813.144855812,7.97733750385623,0,0,15.1980242524272,717.53696175273,4.61213861386139,4.94680599997275,4.79574495301064,3.5,3.51464020892985,2.86587067810456,0.790534109441313,0.627181567714999,0.664694761020239,8.90693934771892,-0.00109443088408885,652.645028016832,652.534038745927,650.156718559984,5.92182237014307,1376.97030422927,-0.961229089053979,0,1376.97030422927,15.1980015576618,15.1980015576618,-3.00195308391405E-05,15.1973643947528,24.4,1015.3,39.86,23.0883181603686
 44595,2874.10913128713,457.157217425743,225,15.265,15.6538525544554,4.98308910891089,3.47663366336634,763.019801980198,323.587447008911,309.736606677228,20,40,10,32,5306310.52200553,396810.742295322,2,2,5306311.63573745,396809.834902666,12.2467763611017,0,0,15.197915101413,721.758613629171,4.98308910891089,5.34467351615901,5.11138189637295,3.47663366336634,3.49127387229619,2.88319998966501,1.16264259698657,0.922399170335111,0.920657896661238,8.87813853497974,-0.000460813003826886,633.324053686139,634.023800954985,649.01194609723,5.92186493107789,1331.88815707696,0.663157454242145,0,1331.88815707696,15.1979367154752,15.1979367154752,3.00195308391405E-05,15.1951345186887,24.4,1015.3,39.85,26.1996093898538
 44596,2874.10772871287,457.154521683168,225,15.2656633663366,15.65396498,5.42955445544554,3.45584158415842,762.450495049505,311.393091751485,317.941775747525,20,40,10,32,5306307.98400539,396807.338068616,2,2,5306308.95617409,396806.546011997,16.4890471704664,0,0,15.1980242524272,725.9802779367,5.42955445544554,5.82353541514441,5.49129021794517,3.45584158415842,3.47048179308827,2.90358568189418,1.63162955080649,1.29447669288823,1.27758038562285,8.87151434804972,-0.000691219505740329,629.33486749901,630.202006895579,648.775585839203,5.92182237014307,1322.49803798155,-34.5431749201419,0,1322.49803798155,15.1970269943933,15.1970269943933,-0.00137652436299869,15.1939058027978,24.4,1015.3,39.84,30.281044674609
 44597,2874.10632722772,457.151821683168,225,15.2017524752475,15.6463272154455,5.69021782178218,3.5,760.480198019802,311.708865183168,332.636243645544,20,40,10,32,5306305.44811948,396803.928572023,2,2,5306306.27487364,396803.254989231,20.7340681289611,0,0,15.1906089470345,730.200812638564,5.69021782178218,6.10311311488912,5.71263539254052,3.5,3.51464020892985,2.96151938047194,1.91022018424038,1.51550056540812,1.47196958619489,8.84858890110934,0.00126723576052394,644.345108828713,644.58239639156,649.665248220215,5.92471747096174,1351.20070449884,-68.0353622194748,0,1351.20070449884,15.1886808834066,15.1886808834066,-0.00273093416714975,15.1881529052142,24.4,1015.3,39.83,32.7761029235259
 44598,2874.10493782178,457.149123861386,225,15.2030693069307,15.6402171176237,5.46169306930693,3.3819801980198,759.836633663366,324.244446669307,340.309984356436,20,40,10,32,5306302.93456188,396800.522185768,2,2,5306303.60400443,396799.976769734,24.9625744185649,0,0,15.1846768132269,734.418747028011,5.46169306930693,5.85800608074897,5.51790835351685,3.3819801980198,3.39662040694965,2.84445423017488,1.66853243440538,1.32375412457946,1.37468309875952,8.84110068979715,-0.00126723576052394,664.554431025743,663.943705663092,650.861516334037,5.92703623963394,1392.93983217635,69.2148480323967,0,1392.93983217635,15.1868873228134,15.1868873228134,0.00277819120468801,15.1806745820618,24.4,1015.3,39.82,30.5935481236585
-44599,2874.10354514851,457.146424752475,225,15.200900990099,15.6442450881188,5.48268316831683,3.41217821782178,760.311881188119,337.474680407921,333.907796054456,20,40,10,32,5306300.41498273,396797.114085059,2,2,5306300.92989329,396796.694571118,29.1962132921507,0,0,15.188587464193,738.638445612087,5.48268316831683,5.88051926962194,5.53597638532476,3.41217821782178,3.42681842675163,2.872216643715,1.68976488805761,1.34059919604318,1.33592916426459,8.84663044584308,-0.00106563007134967,671.382476462376,670.485236256573,651.266916968577,5.92550569102312,1407.77532326095,-255.19119166853,0,1407.77532326095,15.1827875358764,15.1827875358764,-0.0101996764177035,15.1740911189686,24.4,1015.3,39.81,30.7877097072947
-44600,2874.10216009901,457.143727425743,225,15.1533069306931,15.6051772738614,5.59231683168317,3.48138613861386,758.391089108911,339.235750508911,319.315821136634,20,40,10,32,5306297.90948768,396793.708453815,2,2,5306298.26261044,396793.42075352,33.4190416657236,0,0,15.1506575474382,742.850217389499,5.59231683168317,5.99810820376838,5.62705436900438,3.48138613861386,3.49602634754371,2.93968400520072,1.81680075363389,1.44138492100635,1.44575310288782,8.82428101515747,0.00115203250956721,658.551571645545,658.192735103539,650.481330370944,5.94036559260536,1380.85119570799,-21.9834172489419,0,1380.85119570799,15.1506513311564,15.1506513311564,-0.000888207836933962,15.1664040608755,24.3987376237624,1015.3,39.7987376237624,31.8048095062747
+44599,2874.10354514851,457.146424752475,225,15.200900990099,15.6442450881188,5.48268316831683,3.41217821782178,760.311881188119,337.474680407921,333.907796054456,20,40,10,32,5306300.41498273,396797.114085059,2,2,5306300.92989329,396796.694571118,29.1962132921413,0,0,15.188587464193,738.638445612087,5.48268316831683,5.88051926962194,5.53597638532476,3.41217821782178,3.42681842675163,2.872216643715,1.68976488805761,1.34059919604318,1.33592916426459,8.84663044584308,-0.00106563007134967,671.382476462376,670.485236256573,651.266916968577,5.92550569102312,1407.77532326095,-255.19119166853,0,1407.77532326095,15.1827875358764,15.1827875358764,-0.0101996764177035,15.1740911189686,24.4,1015.3,39.81,30.7877097072947
+44600,2874.10216009901,457.143727425743,225,15.1533069306931,15.6051772738614,5.59231683168317,3.48138613861386,758.391089108911,339.235750508911,319.315821136634,20,40,10,32,5306297.90948768,396793.708453815,2,2,5306298.26261044,396793.42075352,33.4190416657236,0,0,15.1506575474382,742.850217389499,5.59231683168317,5.99810820376838,5.62705436900438,3.48138613861386,3.49602634754371,2.93968400520073,1.81680075363389,1.44138492100635,1.44575310288782,8.82428101515747,0.00115203250956721,658.551571645545,658.192735103539,650.481330370944,5.94036559260536,1380.85119570799,-21.9834172489419,0,1380.85119570799,15.1506513311564,15.1506513311564,-0.000888207836933962,15.1664040608755,24.3987376237624,1015.3,39.7987376237624,31.8048095062747
 44601,2874.10078039604,457.141025940594,225,15.159396039604,15.6120400465346,5.607,3.49663366336634,757.995049504951,327.908537238614,309.949854054455,20,40,10,32,5306295.41399089,396790.297817105,2,2,5306295.59686541,396790.14882344,37.6394353692608,0,0,15.1573204335288,747.059624775254,5.607,6.01385681655075,5.63992008273184,3.49663366336634,3.51127387229619,2.95364365796273,1.83066389162589,1.45238344025483,1.47208781750222,8.8196728851192,-0.000662418693001148,637.858391293069,638.367871079031,649.292969090937,5.93775449714435,1336.17111821127,82.4179112209989,0,1336.17111821127,15.1597924043216,15.1597924043216,0.00330169155529254,15.1571856191073,24.39,1015.3,39.78,31.9274337955319
 44602,2874.09939811881,457.138325049505,225,15.1478316831683,15.602022870495,5.48103960396039,3.3960396039604,757.579207920792,313.907228251485,314.420921750495,20,40,10,32,5306292.91371443,396786.887832088,2,2,5306292.9295326,396786.874944523,41.8623428375007,0,0,15.1475950198981,751.270343944722,5.48103960396039,5.87875644445547,5.53222830630757,3.3960396039604,3.41067981289025,2.85990568350562,1.69884848009329,1.34780579399433,1.30359745022019,8.81483434857902,0.00115203250956721,628.32815000198,629.237532747182,648.74732669131,5.94155037443588,1316.31648379794,-108.899155659161,0,1316.31648379794,15.1522802352729,15.1522802352729,-0.00436460350831826,15.1493555079845,24.38,1015.3,39.76,30.7236389015877
 44603,2874.09801148515,457.135619207921,225,15.1399702970297,15.5937119790099,5.59859405940594,3.43633663366337,756.90099009901,310.104562449505,328.618345193069,20,40,10,32,5306290.40548064,396783.471533496,2,2,5306290.25593346,396783.593374319,46.0951711349358,0,0,15.1395261932135,755.478060860539,5.59859405940594,6.00484092157285,5.63177586950984,3.43633663366337,3.45097684259322,2.90292650029242,1.82617114445798,1.44881905488744,1.42782361262851,8.80694292588848,-0.000691219505740327,638.722907642574,639.196111048446,649.354854524291,5.9447284646735,1337.62331441384,-159.776619458226,0,1337.62331441384,15.1383166330162,15.1383166330162,-0.006385671624935,15.1469993864839,24.37,1015.3,39.74,31.8671947978498
@@ -190,12 +190,12 @@ Time,Lat,Long,Heading,v_veh_GPS,v_veh_CAN,vair_ar,beta_ar,n_eng,tq_l,tq_r,t_amb_
 44607,2874.09250930693,457.124826732673,225,15.1336831683168,15.5876936633663,4.14204950495049,3.5,756.90099009901,331.997935066337,311.361987443564,20,40,10,32,5306280.45404038,396769.846256843,2,2,5306279.61359732,396770.530992401,62.94406247987,0,0,15.1336831683168,772.298465343623,4.14204950495049,4.44260614407655,4.39207242861934,3.5,3.51464020892985,2.81548690857077,0.422833816372868,0.335461269372765,0.37364493672209,8.80694292588848,8.6402438217542E-05,643.359922509901,643.638549940839,649.623743085584,5.9470145237788,1347.84438215261,-77.557510793294,0,1347.84438215261,15.1298280560729,15.1298280560729,-0.0031029093008295,15.1345263373339,24.33,1015.3,39.66,19.3371600701398
 44608,2874.09112643564,457.122138217822,225,15.1217722772277,15.5754254455446,4.18474257425743,3.47831683168317,756.361386138614,317.305008591089,311.742791056436,20,40,10,32,5306277.95239959,396766.451650059,2,2,5306276.95325069,396767.265688297,67.1559094760816,0,0,15.1217722772277,776.500223896978,4.18474257425743,4.48839712068988,4.4277255212175,3.47831683168317,3.49295704061302,2.80348387579461,0.461578132059713,0.366199627607166,0.373463577442383,8.80066434871134,0.000403211378348525,629.047799647525,629.926984834418,648.84504422427,5.95169805542135,1317.95662624862,52.0909296835494,0,1317.95662624862,15.124964513283,15.124964513283,0.00208040606040815,15.128390822331,24.32,1015.3,39.64,19.6638398970314
 44609,2874.08974633663,457.119455148515,225,15.1327920792079,15.5867758415842,4.50844554455445,3.5,755.940594059406,309.686821730693,324.312211433663,20,40,10,32,5306275.45577462,396763.063915106,2,2,5306274.29827021,396764.006970597,71.3592608107062,0,0,15.1327920792079,780.702710530642,4.50844554455445,4.83558872305451,4.70377592559319,3.5,3.51464020892985,2.85595288325404,0.739338711633115,0.586564964998348,0.560880443572718,8.79576821054568,-0.000288008127391804,633.999033164357,634.67045730003,649.098922671458,5.94735921091414,1326.61983921335,0.490588611785699,0,1326.61983921335,15.1324802470346,15.1324802470346,2.17843566537313E-05,15.1208627040813,24.31,1015.3,39.62,22.2462085400954
-44610,2874.08837108911,457.116781584158,225,15.1144554455446,15.5678891089109,4.66248514851485,3.48960396039604,755.579207920792,316.147500350495,337.513981449505,20,40,10,32,5306272.96792639,396759.688177256,2,2,5306271.65266611,396760.759761452,75.5477675006446,0,0,15.1144554455445,784.904703902479,4.66248514851485,5.00080579498175,4.83379761471757,3.48960396039604,3.50424416932589,2.86580300767488,0.856729440040568,0.679698582129461,0.701128245211134,8.79156329188576,0.00152644307517656,653.6614818,653.507840633222,650.192867056185,5.95458197354795,1368.77565935196,-182.76833411393,0,1368.77565935196,15.1167526713067,15.1167526713067,-0.00732226688015261,15.1177924968039,24.3025247524752,1015.3,39.6088366336634,23.4296785701944
+44610,2874.08837108911,457.116781584158,225,15.1144554455446,15.5678891089109,4.66248514851485,3.48960396039604,755.579207920792,316.147500350495,337.513981449505,20,40,10,32,5306272.96792639,396759.688177256,2,2,5306271.65266611,396760.759761452,75.5477675006446,0,0,15.1144554455445,784.904703902479,4.66248514851485,5.00080579498175,4.83379761471757,3.48960396039604,3.50424416932589,2.86580300767488,0.856729440040568,0.679698582129461,0.701128245211133,8.79156329188576,0.00152644307517656,653.6614818,653.507840633222,650.192867056185,5.95458197354795,1368.77565935196,-182.76833411393,0,1368.77565935196,15.1167526713067,15.1167526713067,-0.00732226688015261,15.1177924968039,24.3025247524752,1015.3,39.6088366336634,23.4296785701944
 44611,2874.08699118812,457.114110990099,225,15.1084455445545,15.5616989108911,4.76861386138614,3.5,754.331683168317,330.747126331683,339.210454634654,20,40,10,32,5306270.47139408,396756.315982017,2,2,5306269.00533215,396757.510429088,79.7390128864577,0,0,15.1084455445544,789.101690316119,4.76861386138614,5.11463545136355,4.92374919215058,3.5,3.51464020892985,2.88478088689252,0.967498356877777,0.767578690130303,0.74284494175598,8.77704768226521,-0.00149764226243738,669.957580966336,669.120131470885,651.075087815771,5.95695119154647,1401.13289603732,-34.321504690575,0,1401.13289603732,15.1038176649348,15.1038176649348,-0.00136152229084551,15.1155417202111,24.31,1015.3,39.65,24.3283342621803
-44612,2874.08560940594,457.111438217822,225,15.1044059405941,15.5575381188119,4.49177227722772,3.5,755.217821782178,340.062870861386,327.841901350495,20,40,10,32,5306267.97142764,396752.941008336,2,2,5306266.35526755,396754.257745137,83.9345814149438,0,0,15.104405940594,793.296461658253,4.49177227722772,4.8177056051007,4.68796099591153,3.5,3.51464020892985,2.85611511260543,0.705112692336164,0.559411261972838,0.578521387106712,8.78735837322584,0.000403211378348525,667.904772211881,667.15346160097,650.965360080884,5.95855131329909,1398.8610426842,124.757375710994,0,1398.8610426842,15.1061505734732,15.1061505734732,0.0049872561513592,15.1119782340961,24.32,1015.3,39.7,22.0567782458415
-44613,2874.08421920792,457.108766534653,225,15.1131089108911,15.5665021782178,4.37925742574258,3.5,754.905940594059,335.529881389109,313.860517088119,20,40,10,32,5306265.45584984,396749.567109348,2,2,5306263.69950087,396750.998062461,88.1391774491252,0,0,15.1131089108911,797.494827362323,4.37925742574258,4.69702641719859,4.59272478749842,3.5,3.51464020892985,2.84332699013724,0.600272252568508,0.476234596237469,0.456548996128414,8.7837294708207,0.000316808940130984,649.390398477228,649.415978253671,649.968423413878,5.95510959247842,1358.73375851307,-18.4912803874281,0,1358.73375851307,15.1153984903441,15.1153984903441,-0.000742029648509391,15.1078752645888,24.33,1015.3,39.75,21.1730170981524
-44614,2874.08282554455,457.106095643564,225,15.1109108910891,15.5642382178218,4.30278217821782,3.5,755.024752475248,321.315767534654,310.120722027723,20,40,10,32,5306262.93383729,396746.19407915,2,2,5306261.0415924,396747.735750971,92.3471643378118,0,0,15.1109108910891,801.692786850772,4.30278217821782,4.61500194981422,4.5275288190033,3.5,3.51464020892985,2.83420037243876,0.559066941926006,0.443543772377621,0.463367266918303,8.78511190983218,-0.00135363819874148,631.436489562376,632.215441802617,648.996024833092,5.95597646679686,1321.57436063768,-76.7357735502602,0,1321.57436063768,15.1107526713067,15.1107526713067,-0.00305934058752473,15.1094732893267,24.34,1015.3,39.8,20.5932803943875
-44615,2874.08142346535,457.10342,225,15.1059207920792,15.5590984158416,4.53925742574257,3.5,754.589108910891,310.488920013861,320.060866524752,20,40,10,32,5306260.39634358,396742.814847382,2,2,5306258.37447074,396744.462131206,96.5697375304204,0,0,15.1059207920792,805.889393506437,4.53925742574257,4.86863638521145,4.72845188288173,3.5,3.51464020892985,2.86049590423264,0.750171996029127,0.595159706464716,0.605872600151333,8.78004296679009,0.00118083332230639,630.549786538614,631.365946145868,648.94870486595,5.95795156981715,1319.39380078855,-8.97063625682986,0,1319.39380078855,15.1030487207136,15.1030487207136,-0.000367611018525916,15.1145157377682,24.35,1015.3,39.85,22.4699955066772
+44612,2874.08560940594,457.111438217822,225,15.1044059405941,15.5575381188119,4.49177227722772,3.5,755.217821782178,340.062870861386,327.841901350495,20,40,10,32,5306267.97142764,396752.941008336,2,2,5306266.35526755,396754.257745137,83.9345814149438,0,0,15.104405940594,793.296461658253,4.49177227722772,4.8177056051007,4.68796099591153,3.5,3.51464020892985,2.85611511260543,0.705112692336163,0.559411261972838,0.578521387106712,8.78735837322584,0.000403211378348525,667.904772211881,667.15346160097,650.965360080884,5.95855131329909,1398.8610426842,124.757375710994,0,1398.8610426842,15.1061505734732,15.1061505734732,0.0049872561513592,15.1119782340961,24.32,1015.3,39.7,22.0567782458415
+44613,2874.08421920792,457.108766534653,225,15.1131089108911,15.5665021782178,4.37925742574258,3.5,754.905940594059,335.529881389109,313.860517088119,20,40,10,32,5306265.45584984,396749.567109348,2,2,5306263.69950087,396750.998062461,88.1391774491216,0,0,15.1131089108911,797.494827362323,4.37925742574258,4.69702641719859,4.59272478749842,3.5,3.51464020892985,2.84332699013724,0.600272252568508,0.476234596237469,0.456548996128414,8.7837294708207,0.000316808940130984,649.390398477228,649.415978253671,649.968423413878,5.95510959247842,1358.73375851307,-18.4912803874281,0,1358.73375851307,15.1153984903441,15.1153984903441,-0.000742029648509391,15.1078752645888,24.33,1015.3,39.75,21.1730170981524
+44614,2874.08282554455,457.106095643564,225,15.1109108910891,15.5642382178218,4.30278217821782,3.5,755.024752475248,321.315767534654,310.120722027723,20,40,10,32,5306262.93383729,396746.19407915,2,2,5306261.0415924,396747.735750971,92.3471643378118,0,0,15.1109108910891,801.692786850772,4.30278217821782,4.61500194981422,4.5275288190033,3.5,3.51464020892985,2.83420037243876,0.559066941926006,0.44354377237762,0.463367266918303,8.78511190983218,-0.00135363819874148,631.436489562376,632.215441802617,648.996024833092,5.95597646679686,1321.57436063768,-76.7357735502602,0,1321.57436063768,15.1107526713067,15.1107526713067,-0.00305934058752473,15.1094732893267,24.34,1015.3,39.8,20.5932803943875
+44615,2874.08142346535,457.10342,225,15.1059207920792,15.5590984158416,4.53925742574257,3.5,754.589108910891,310.488920013861,320.060866524752,20,40,10,32,5306260.39634358,396742.814847382,2,2,5306258.37447074,396744.462131206,96.5697375304204,0,0,15.1059207920792,805.889393506437,4.53925742574257,4.86863638521145,4.72845188288173,3.5,3.51464020892985,2.86049590423264,0.750171996029127,0.595159706464715,0.605872600151333,8.78004296679009,0.00118083332230639,630.549786538614,631.365946145868,648.94870486595,5.95795156981715,1319.39380078855,-8.97063625682986,0,1319.39380078855,15.1030487207136,15.1030487207136,-0.000367611018525916,15.1145157377682,24.35,1015.3,39.85,22.4699955066772
 44616,2874.08001673267,457.100748019802,225,15.105801980198,15.558976039604,4.93482178217822,3.49316831683168,754.683168316832,313.003492517822,334.542027565346,20,40,10,32,5306257.85015033,396739.440021433,2,2,5306255.70603574,396741.186899473,100.794389966395,0,0,15.105801980198,810.084504727559,4.93482178217822,5.29290380117988,5.06502370799086,3.49316831683168,3.50780852576154,2.89609582980683,1.1359698481862,0.901237962731172,0.906992766880726,8.78113739767418,-0.000518414629305247,647.545520083169,647.648513670621,649.872293862406,5.95799597824094,1355.12161423468,120.669248193886,0,1355.12161423468,15.1092313498676,15.1092313498676,0.00483068108791059,15.1180125170133,24.36,1015.3,39.9,25.7056192991251
 44617,2874.07861881188,457.098083663366,225,15.133099009901,15.587091980198,5.05295049504951,3.4190099009901,755.816831683168,326.547598663366,340.250292457426,20,40,10,32,5306255.32011172,396736.074980718,2,2,5306253.04883751,396737.925459721,105.001252417996,0,0,15.133099009901,814.284295349121,5.05295049504951,5.41960420516264,5.16712320695064,3.4190099009901,3.43365010991995,2.84513251901758,1.25170055382134,0.993054577000106,0.971520939436435,8.79432816990872,0.00218886176817771,666.797891120792,666.093026870523,650.952356352631,5.94724089555482,1394.99467130264,81.8319040028297,0,1394.99467130264,15.1288461915498,15.1288461915498,0.00325676131969572,15.1245926950313,24.37,1015.3,39.95,26.7685394764669
 44618,2874.07722207921,457.095420792079,225,15.1274554455446,15.5812791089109,4.84660396039604,3.49465346534653,756.084158415842,338.668849747525,331.937508806931,20,40,10,32,5306252.79224273,396732.711826322,2,2,5306250.39342859,396734.666216152,109.205282058001,0,0,15.1274554455445,818.487378352421,4.84660396039604,5.19828469134111,4.99120197609214,3.49465346534653,3.50929367427639,2.88817691036266,1.03922116341175,0.82448100681173,0.839343910536115,8.79743865768455,-0.00129603657326312,670.606358554456,669.741685397167,651.14314357892,5.94946016606633,1403.98040832234,22.1531977839737,0,1403.98040832234,15.1299575193427,15.1299575193427,0.000895947707815072,15.1335510616075,24.38,1015.3,40,24.9651744244673
@@ -209,22 +209,22 @@ Time,Lat,Long,Heading,v_veh_GPS,v_veh_CAN,vair_ar,beta_ar,n_eng,tq_l,tq_r,t_amb_
 44626,2874.06597851485,457.074104059406,225,15.0693762376238,15.5214575247525,5.45305940594059,3.5,754.054455445545,329.874863449505,310.467203017822,20,40,10,32,5306232.44055313,396705.787031134,2,2,5306229.0892175,396708.517470383,142.933998539363,0,0,15.0693762376238,852.11871188481,5.45305940594059,5.84874593891065,5.50388969348129,3.5,3.51464020892985,2.94735017141868,1.69115487513924,1.34170196221929,1.33481979541641,8.77382199123842,-0.000633617880261967,640.342066467327,640.747327582737,649.495670096643,5.97239579663823,1342.17990334828,50.0859246423161,0,1342.17990334828,15.075239192236,15.075239192236,0.00200824537899452,15.0963821403114,24.4,1015.3,39.5,30.3743772885708
 44627,2874.06459524752,457.071436039604,225,15.088297029703,15.5409459405941,5.51274257425742,3.5,753.450495049505,315.404972974258,313.045840131683,20,40,10,32,5306229.93775877,396702.417883642,2,2,5306226.44087766,396705.266903401,147.126836433643,0,0,15.088297029703,856.308570465668,5.51274257425742,5.91275985519663,5.55575821955158,3.5,3.51464020892985,2.95110016773742,1.74955488814747,1.38803444968016,1.41680263809328,8.76679459293006,0.00204485770448181,628.45081310594,629.355048727752,648.866047488207,5.96491526950487,1314.54770828134,-60.2365840335093,0,1314.54770828134,15.0838877561023,15.0838877561023,-0.00242487119999292,15.0861107966064,24.4,1015.3,39.4,30.9792678656377
 44628,2874.06321138614,457.068768019802,225,15.0675346534654,15.5195606930693,5.75653465346535,3.5,753.039603960396,309.75670609901,326.61507669604,20,40,10,32,5306227.43386594,396699.048713522,2,2,5306223.79208849,396702.015784914,151.320385702362,0,0,15.0675346534653,860.496155009124,5.75653465346535,6.17424204841327,5.76200737655477,3.5,3.51464020892985,2.97019394958629,2.01388597420803,1.59774530588652,1.573111288286,8.76201365801536,-0.000576016254783608,636.371782795049,636.94364286318,649.2905489943,5.97313813689648,1332.22651933575,46.6944634639083,0,1332.22651933575,15.0747912949711,15.0747912949711,0.00187209314991004,15.0847054609734,24.4,1015.3,39.3,33.3296741534552
-44629,2874.06182138614,457.066095346535,225,15.0943663366337,15.5471973267327,5.90630693069307,3.46247524752475,754.287128712871,318.123053340594,338.69941920396,20,40,10,32,5306224.91870799,396695.673540542,2,2,5306221.13586546,396698.75554212,155.525704222365,0,0,15.0943663366336,864.686640790202,5.90630693069307,6.33488214656491,5.89100881911612,3.46247524752475,3.4771154564546,2.94751102104606,2.16582105900574,1.71828518333936,1.68099862134128,8.77652926763591,-0.000172804876435082,656.822472544554,656.536191546594,650.356421684507,5.96252801260138,1374.89499310518,-36.9629968507721,0,1374.89499310518,15.0877368885403,15.0877368885403,-0.00147725168556391,15.093728507984,24.4,1015.3,39.2,34.8794302403471
+44629,2874.06182138614,457.066095346535,225,15.0943663366337,15.5471973267327,5.90630693069307,3.46247524752475,754.287128712871,318.123053340594,338.69941920396,20,40,10,32,5306224.91870799,396695.673540542,2,2,5306221.13586546,396698.75554212,155.525704222356,0,0,15.0943663366336,864.686640790202,5.90630693069307,6.33488214656491,5.89100881911612,3.46247524752475,3.4771154564546,2.94751102104606,2.16582105900574,1.71828518333936,1.68099862134128,8.77652926763591,-0.000172804876435082,656.822472544554,656.536191546594,650.356421684507,5.96252801260138,1374.89499310518,-36.9629968507721,0,1374.89499310518,15.0877368885403,15.0877368885403,-0.00147725168556391,15.093728507984,24.4,1015.3,39.2,34.8794302403471
 44630,2874.06043613861,457.063424851485,225,15.0823762376238,15.5348475247525,5.54742574257426,3.46108910891089,754.232673267327,332.812033627723,338.188578861386,20,40,10,32,5306222.41230662,396692.301235417,2,2,5306218.48454032,396695.501310983,159.723268432061,0,0,15.0823762376237,868.875905476672,5.54742574257426,5.94995971398062,5.58495411362009,3.46108910891089,3.47572931784074,2.92204442563972,1.78694038589101,1.41769477022113,1.44243378351709,8.77589564975565,-0.000432012191087705,671.000612489109,670.11939585918,651.103550736767,5.96725892445699,1405.56158018285,163.47499408854,0,1405.56158018285,15.0875561219488,15.0875561219488,0.00654211460749759,15.0992552845388,24.3987376237624,1015.3,39.1151485148515,31.2604985770225
 44631,2874.05904782178,457.060754653465,225,15.1289801980198,15.5828496039604,4.99931683168317,3.36089108910891,755.69801980198,340.318666225743,325.552219942574,20,40,10,32,5306219.90021516,396688.929195537,2,2,5306215.83107493,396692.244452913,163.924221067435,0,0,15.1289801980198,873.071808199446,4.99931683168317,5.36207875982071,5.1212400377715,3.36089108910891,3.37553129803876,2.78932111328776,1.20407782597746,0.955272403212439,0.942478801165813,8.79294573089724,-0.000374410565609344,665.870886168317,665.204920408881,650.886689944013,5.9488638057917,1393.21608342758,212.122399821829,0,1393.21608342758,15.1221984261851,15.1221984261851,0.00848779600155571,15.103865005487,24.39,1015.3,39.12,26.4052812770792
-44632,2874.05765069307,457.058077128713,225,15.1257326732673,15.5794539106931,4.48584158415842,3.5,756.39603960396,333.741387744555,312.408152552475,20,40,10,32,5306217.3719664,396685.547734274,2,2,5306213.16654989,396688.974020248,168.142683288056,0,0,15.1256834084399,877.275066185093,4.48584158415842,4.81134456730121,4.68413460940683,3.5,3.51464020892985,2.8550813783471,0.686305957810211,0.544490669549669,0.581052878861457,8.80106756008969,0.000547215442044428,646.14954029703,646.311111258131,649.793006074425,5.95017187571213,1353.48807879654,-133.258432023195,0,1353.48807879654,15.1274266570173,15.1274266570173,-0.00533451037596509,15.1068971522223,24.38,1015.3,39.14,22.0095767196703
+44632,2874.05765069307,457.058077128713,225,15.1257326732673,15.5794539106931,4.48584158415842,3.5,756.39603960396,333.741387744555,312.408152552475,20,40,10,32,5306217.3719664,396685.547734274,2,2,5306213.16654989,396688.974020248,168.142683288056,0,0,15.1256834084399,877.275066185093,4.48584158415842,4.81134456730121,4.68413460940683,3.5,3.51464020892985,2.8550813783471,0.68630595781021,0.544490669549669,0.581052878861457,8.80106756008969,0.000547215442044428,646.14954029703,646.311111258131,649.793006074425,5.95017187571213,1353.48807879654,-133.258432023195,0,1353.48807879654,15.1274266570173,15.1274266570173,-0.00533451037596509,15.1068971522223,24.38,1015.3,39.14,22.0095767196703
 44633,2874.05625306931,457.055392376238,225,15.1130693069307,15.5664613861386,4.97958415841584,3.5,755.970297029703,319.127317688119,310.840971634653,20,40,10,32,5306214.84296378,396682.157250771,2,2,5306210.49730604,396685.697795721,172.368616308816,0,0,15.1130693069307,881.474036374625,4.97958415841584,5.34091423839437,5.10352377291729,3.5,3.51464020892985,2.90494534040293,1.18203954650348,0.937788018281852,0.934804914382617,8.79611382029855,-0.000576016254783608,629.968289322772,630.808849405372,648.910049907451,5.9551269899043,1319.96144830241,-84.791099191997,0,1319.96144830241,15.1088845211254,15.1088845211254,-0.0033874674596164,15.1088791474052,24.37,1015.3,39.16,26.1340744875893
 44634,2874.05486653465,457.052716534653,225,15.0955049504951,15.5483700990099,5.0199900990099,3.5,755.420792079208,309.912564661386,322.29153609802,20,40,10,32,5306212.33430522,396678.778231518,2,2,5306207.84179256,396682.438423826,176.572811474654,0,0,15.095504950495,885.669004141402,5.0199900990099,5.38425212697485,5.13689716904364,3.5,3.51464020892985,2.90932618072495,1.22862013411923,0.97474339518087,0.980841438366636,8.78972003987045,0.000547215442044427,632.204100759406,632.950842902372,649.061216886133,5.9620531715803,1325.21860386296,33.4956073964808,0,1325.21860386296,15.0997074796588,15.0997074796588,0.00133565336731759,15.1039870896079,24.36,1015.3,39.18,26.4693983656688
-44635,2874.05348841584,457.050048118812,225,15.1057920792079,15.5589658415842,5.0079603960396,3.5,755.108910891089,314.569130109901,336.232249781188,20,40,10,32,5306209.84107203,396675.408737988,2,2,5306205.19709781,396679.192330817,180.759878484603,0,0,15.1057920792079,889.864766765165,5.0079603960396,5.37134952108774,5.12725129965884,3.5,3.51464020892985,2.90767278777413,1.21373448217966,0.962933649834754,0.968744581503431,8.78609113746532,-0.000316808940130984,650.801379891089,650.767752811764,650.039778325443,5.9579976596005,1362.70580354054,-105.542880092576,0,1362.70580354054,15.1037359082443,15.1037359082443,-0.00421935757932212,15.0964112791856,24.35,1015.3,39.2,26.3830873271252
-44636,2874.05210970297,457.047376534653,225,15.0822475247525,15.5347149504951,5.01033663366337,3.5,754.653465346535,328.815789237624,339.846084812871,20,40,10,32,5306207.34681103,396672.035275371,2,2,5306202.55004941,396675.943348939,184.95067178625,0,0,15.0822475247525,894.057025951084,5.01033663366337,5.37389818397902,5.12792339285046,3.5,3.51464020892985,2.90837510787954,1.22327813691085,0.970505245120209,0.923637250389279,8.78079178792131,-0.00115203250956721,668.661874050495,667.878794327321,650.97963448945,5.96729810239873,1401.45446184302,-107.942051766728,0,1401.45446184302,15.0804766199392,15.0804766199392,-0.00430921805051822,15.0915828269399,24.34,1015.3,39.22,26.3994165336104
+44635,2874.05348841584,457.050048118812,225,15.1057920792079,15.5589658415842,5.0079603960396,3.5,755.108910891089,314.569130109901,336.232249781188,20,40,10,32,5306209.84107203,396675.408737988,2,2,5306205.19709781,396679.192330817,180.759878484603,0,0,15.1057920792079,889.864766765165,5.0079603960396,5.37134952108774,5.12725129965884,3.5,3.51464020892985,2.90767278777413,1.21373448217966,0.962933649834754,0.96874458150343,8.78609113746532,-0.000316808940130984,650.801379891089,650.767752811764,650.039778325443,5.9579976596005,1362.70580354054,-105.542880092576,0,1362.70580354054,15.1037359082443,15.1037359082443,-0.00421935757932212,15.0964112791856,24.35,1015.3,39.2,26.3830873271252
+44636,2874.05210970297,457.047376534653,225,15.0822475247525,15.5347149504951,5.01033663366337,3.5,754.653465346535,328.815789237624,339.846084812871,20,40,10,32,5306207.34681103,396672.035275371,2,2,5306202.55004941,396675.943348939,184.95067178625,0,0,15.0822475247525,894.057025951084,5.01033663366337,5.37389818397902,5.12792339285046,3.5,3.51464020892985,2.90837510787954,1.22327813691085,0.970505245120209,0.923637250389279,8.78079178792131,-0.00115203250956721,668.661874050495,667.878794327321,650.97963448945,5.96729810239873,1401.45446184302,-107.942051766728,0,1401.45446184302,15.0804766199392,15.0804766199392,-0.00430921805051822,15.0915828269399,24.34,1015.3,39.22,26.3994165336103
 44637,2874.05073059406,457.044705346535,225,15.0787227722772,15.5310844554455,4.90808910891089,3.5,753.574257425743,339.554229324753,329.810497937624,20,40,10,32,5306204.85180954,396668.66229,2,2,5306199.90293927,396672.694291294,189.141562817726,0,0,15.0787227722772,898.245050181006,4.90808910891089,5.26423134365298,5.04072098338151,3.5,3.51464020892985,2.89934677808068,1.11693809132527,0.886138845612939,0.874437687953186,8.76823463356702,-0.000316808940130984,669.364727262376,668.552154785707,651.014621191245,5.96869102795785,1401.24792792014,99.4357058876274,0,1401.24792792014,15.0818686403294,15.0818686403294,0.00397972965613352,15.089439623984,24.33,1015.3,39.24,25.4923696538959
 44638,2874.04935148515,457.042030693069,225,15.0889801980198,15.5416496039604,4.64647524752475,3.5,754.544554455446,336.91157810297,315.352161440594,20,40,10,32,5306202.35688729,396665.284985259,2,2,5306197.25374562,396669.442676345,193.335752461772,0,0,15.0889801980198,902.435831836673,4.64647524752475,4.98363417875175,4.81870872106836,3.5,3.51464020892985,2.87295117826491,0.850579122159841,0.674819139276443,0.695385173077933,8.77952455216078,-0.000432012191087705,652.263739543565,652.168749698344,650.116645352947,5.96463681384293,1366.27497034535,-45.1139757627362,0,1366.27497034535,15.0868770708754,15.0868770708754,-0.00180129399078358,15.0876565778435,24.32,1015.3,39.26,23.3071357611035
 44639,2874.04797633663,457.039354257426,225,15.0875346534653,15.5401606930693,4.85574257425743,3.21376237623762,754.153465346535,323.31747690099,309.764003218812,20,40,10,32,5306199.86934275,396661.905589086,2,2,5306194.60647126,396666.193417123,197.526903503953,0,0,15.0875346534653,906.626715445035,4.85574257425743,5.20808642404382,4.99680195916382,3.21376237623762,3.22840258516748,2.65427178177621,1.05865691297432,0.839900637330872,0.835003625867416,8.77497402374799,0.00221766258091689,633.081480119802,633.791406134673,649.106720509407,5.96520701096997,1325.53116194884,49.9123444423979,0,1325.53116194884,15.0883060484266,15.0883060484266,0.00197965341088372,15.08845617238,24.31,1015.3,39.28,25.0684474946034
 44640,2874.04661861386,457.036662574257,225,15.0887623762376,15.5414252475248,4.9039900990099,2.78425742574257,754.331683168317,311.270279678218,318.183750183168,20,40,10,32,5306197.4144188,396658.507775711,2,2,5306191.96319263,396662.949062263,201.711728512319,0,0,15.0887623762376,910.818084751965,4.9039900990099,5.25983490016552,5.0380086264285,2.78425742574257,2.79889763467243,2.31000779869582,1.10474756464054,0.876467316521293,0.89184107229459,8.77704768226521,-0.000950426820392953,629.454029861386,630.316169028105,648.921914310249,5.96471494073965,1318.14217477476,28.004533374589,0,1318.14217477476,15.0907095382806,15.0907095382806,0.001127340456819,15.0917321458846,24.3012623762376,1015.3,39.3063118811881,25.4789911282791
 44641,2874.0452319802,457.033996039604,225,15.0949108910891,15.5477582178218,4.62765346534653,3.28227722772277,755.128712871287,311.846124,332.870325785149,20,40,10,32,5306194.90538283,396655.140325389,2,2,5306189.31319371,396659.696458924,205.907193061148,0,0,15.0949108910891,915.010945450535,4.62765346534653,4.96344664476707,4.80312976104601,3.28227722772277,3.29691743665262,2.69343817769121,0.828671442857056,0.657438367863774,0.641807752523965,8.78632154396723,0.0013248373860023,644.716449785148,644.938155332918,649.718832697089,5.96228772058886,1350.99325266393,26.4244636982081,0,1350.99325266393,15.0963152632095,15.0963152632095,0.00104701064165772,15.090527370273,24.3,1015.3,39.37,23.167489410568
 44642,2874.04384772277,457.031324554455,225,15.1003564356436,15.5533671287129,4.42939603960396,3.33564356435644,754.371287128713,324.515581251485,340.320960156436,20,40,10,32,5306192.40086085,396651.766784608,2,2,5306186.66201329,396656.442405417,210.104528149632,0,0,15.1003564356436,919.204497073197,4.42939603960396,4.7508032042046,4.63472387600638,3.33564356435644,3.35028377328629,2.71678671622307,0.638518088488334,0.506577478403197,0.512085572465058,8.77750849526904,-0.00123843494778476,664.836541407921,664.213978279237,650.787589499736,5.96013717485159,1391.24540770314,-8.70996170503966,0,1391.24540770314,15.0987814920106,15.0987814920106,-0.000339019050418535,15.089428235931,24.3,1015.3,39.44,21.5549026894519
-44643,2874.04246287129,457.028649108911,225,15.0874356435644,15.5400587128713,4.24161386138614,3.5,754.40099009901,337.630410871287,333.685574421782,20,40,10,32,5306189.89532876,396648.388288088,2,2,5306184.00800312,396653.184878689,214.306343272821,0,0,15.0874356435643,923.397882414232,4.24161386138614,4.54939511922118,4.47413668437942,3.5,3.51464020892985,2.82808224323748,0.512685373669602,0.406746290340204,0.406164642447631,8.77785410502191,-0.0013248373860023,671.315985293069,670.421535155132,651.127862339141,5.96525060323135,1406.05874435792,-131.023872661104,0,1406.05874435792,15.0863095774924,15.0863095774924,-0.00523096864142004,15.0883459899648,24.3,1015.3,39.51,20.1009726367665
-44644,2874.04108138614,457.025969306931,225,15.0808118811881,15.5332362376238,4.09120792079208,3.48792079207921,753.707920792079,339.132898979208,319.064711616832,20,40,10,32,5306187.39613144,396645.004473917,2,2,5306181.35391632,396649.927257885,218.508279743025,0,0,15.0808118811881,927.586644707961,4.09120792079208,4.38807537763186,4.3457897393635,3.48792079207921,3.50256100100906,2.79890198821837,0.480018975965044,0.38082993546157,0.391821873191153,8.76978987745494,-0.000576016254783607,658.19761059604,657.853626780208,650.428279774953,5.96786149636721,1377.91662834804,17.0756922465365,0,1377.91662834804,15.0793294775022,15.0793294775022,0.000687568756873841,15.0857908985204,24.3,1015.3,39.58,19.0092202426588
+44643,2874.04246287129,457.028649108911,225,15.0874356435644,15.5400587128713,4.24161386138614,3.5,754.40099009901,337.630410871287,333.685574421782,20,40,10,32,5306189.89532876,396648.388288088,2,2,5306184.00800312,396653.184878689,214.306343272821,0,0,15.0874356435643,923.397882414232,4.24161386138614,4.54939511922118,4.47413668437942,3.5,3.51464020892985,2.82808224323749,0.512685373669601,0.406746290340204,0.406164642447631,8.77785410502191,-0.0013248373860023,671.315985293069,670.421535155132,651.127862339141,5.96525060323135,1406.05874435792,-131.023872661104,0,1406.05874435792,15.0863095774924,15.0863095774924,-0.00523096864142004,15.0883459899648,24.3,1015.3,39.51,20.1009726367665
+44644,2874.04108138614,457.025969306931,225,15.0808118811881,15.5332362376238,4.09120792079208,3.48792079207921,753.707920792079,339.132898979208,319.064711616832,20,40,10,32,5306187.39613144,396645.004473917,2,2,5306181.35391632,396649.927257885,218.508279743025,0,0,15.0808118811881,927.586644707961,4.09120792079208,4.38807537763186,4.3457897393635,3.48792079207921,3.50256100100906,2.79890198821837,0.480018975965044,0.38082993546157,0.391821873191152,8.76978987745494,-0.000576016254783607,658.19761059604,657.853626780208,650.428279774953,5.96786149636721,1377.91662834804,17.0756922465365,0,1377.91662834804,15.0793294775022,15.0793294775022,0.000687568756873841,15.0857908985204,24.3,1015.3,39.58,19.0092202426588
 44645,2874.03970306931,457.023293267327,225,15.080297029703,15.5327059405941,4.37430693069307,3.49841584158416,754.272277227723,327.641664944554,309.900725574257,20,40,10,32,5306184.90272093,396641.625448376,2,2,5306178.70448314,396646.675348949,222.702848595648,0,0,15.0802970297029,931.775700511041,4.37430693069307,4.69171670284175,4.58663205170699,3.49841584158416,3.51305605051401,2.84294560758895,0.595995719698424,0.472841747582602,0.469509074311536,8.77635646275947,-0.000979227633132132,637.542390518812,638.065130160317,649.346276093116,5.96807367356463,1335.73177424529,-13.2932405359167,0,1335.73177424529,15.0814554455445,15.0814554455445,-0.000524186081973297,15.0823163427817,24.3,1015.3,39.65,21.1029874571935
 44646,2874.03832742574,457.020625445545,225,15.0836930693069,15.5362038613861,4.1510297029703,3.31643564356436,753.29702970297,313.721696335644,314.618942810891,20,40,10,32,5306182.41408082,396638.25674479,2,2,5306176.06200768,396643.431979892,226.886402036914,0,0,15.0836930693069,935.965298530843,4.1510297029703,4.45223796591984,4.39688940149299,3.31643564356436,3.33107585249421,2.67090244425727,0.442194977568257,0.350821724141616,0.371131512151501,8.76500894254024,0.00207365851722098,628.340639146534,629.249497830193,648.854152613303,5.9667318006157,1314.4492592882,12.1675481282756,0,1314.4492592882,15.0824491716498,15.0824491716498,0.000471086712630531,15.0793470196066,24.3,1015.3,39.72,19.4043053433855
 44647,2874.03694910891,457.017955445545,225,15.0762574257426,15.5285451485148,4.44222772277228,3.19683168316832,753.193069306931,310.170948112871,328.881456150495,20,40,10,32,5306179.92053944,396634.885236379,2,2,5306173.41620332,396640.184524949,231.07522577801,0,0,15.0762574257426,940.153901033593,4.44222772277228,4.76456598381751,4.64433377717128,3.19683168316832,3.21147189209817,2.60413206509491,0.656966242981183,0.521213586217002,0.500948736655261,8.76379930840519,-0.00086402438217541,639.052404263366,639.511781502706,649.430109257012,5.96966406023869,1337.32875167209,-35.9715694604038,0,1337.32875167209,15.0761129301049,15.0761129301049,-0.00143232144996684,15.078957753244,24.3,1015.3,39.79,21.6646009904375
@@ -234,15 +234,15 @@ Time,Lat,Long,Heading,v_veh_GPS,v_veh_CAN,vair_ar,beta_ar,n_eng,tq_l,tq_r,t_amb_
 44651,2874.03143782178,457.007272376238,225,15.086702970297,15.5393040594059,4.97081188118812,1.56366336633663,753.331683168317,331.755419478218,311.240247474257,20,40,10,32,5306169.95012976,396621.395416081,2,2,5306162.83263005,396627.194268443,247.831084072282,0,0,15.086702970297,956.908522100699,4.97081188118812,5.33150542455406,5.09482518590376,1.56366336633663,1.57830357526649,1.30341266141634,1.17130741563154,0.929273528413806,0.907752055447538,8.76541215391859,-0.00106563007134967,642.995666952475,643.289579084913,649.6302008713,5.96553803536139,1344.89811211908,3.29972772493312,0,1344.89811211908,15.0869474561317,15.0869474561317,0.000140236795956716,15.0798360727548,24.3,1015.3,40.12,26.0409475817766
 44652,2874.03003683168,457.004616435644,225,15.0835742574257,15.5360814851485,5.21138613861386,2.1119801980198,753.782178217822,317.071536214852,311.88108450396,20,40,10,32,5306167.41428559,396618.040653136,1.28712871287129,2,5306160.17799023,396623.935889375,72.9982940223946,0,0,15.0835742574257,961.098348008289,5.21138613861386,5.58953630343875,5.29926316048518,2.1119801980198,2.12662040694966,1.7648491721647,1.42796864776275,1.13289939606103,1.11902304996813,8.77065390183712,-0.000489613816566065,628.952620718812,629.835799752652,648.893377930474,5.96677035204821,1316.58637044569,-36.6494208187211,0,1316.58637044569,15.0806434663268,15.0806434663268,-0.00146227494036432,15.0776704593804,24.3,1015.3,40.24,28.1955392027149
 44653,2874.02864108911,457.001954851485,225,15.0756237623762,15.5278924752475,5.1339900990099,3.42930693069307,753.504950495049,309.677045989109,324.583391938614,20,40,10,32,5306164.88828951,396614.679031709,1,2,5306157.52414156,396620.678262737,5.08849784671214,0,0,15.0756237623762,965.287282331722,5.1339900990099,5.50652422918401,5.23279323746005,3.42930693069307,3.44394713962292,2.86040999615552,1.35325827699343,1.07362685246796,1.09751115836021,8.76742821081033,-0.000374410565609344,634.260437927723,634.920893137094,649.180287786603,5.9699245681776,1327.91456962209,-4.11684596839503,0,1327.91456962209,15.0794060386237,15.0794060386237,-0.000162021152609715,15.0759676692727,24.3,1015.3,40.36,27.5335852155283
-44654,2874.02725039604,456.999301683168,225,15.0701386138614,15.5222427722772,5.97444554455446,3.41940594059406,753.371287128713,316.370409027723,337.668726904951,20,40,10,32,5306162.37146095,396611.328057801,1,2,5306154.87924902,396617.431616639,9.27611858666372,0,0,15.0701386138614,969.474705351524,5.97444554455446,6.40796505497237,5.94762242316263,3.41940594059406,3.43404614952391,2.91746565138549,2.24428283634985,1.78053395911345,1.80308779823275,8.76587296692241,-0.000691219505740328,654.039135932673,653.869647838085,650.208766778464,5.97208891157902,1369.57009495654,-130.051801244277,0,1369.57009495654,15.0679703950593,15.0679703950593,-0.00519693058414935,15.0705645467476,24.3,1015.3,40.48,35.5381047843999
+44654,2874.02725039604,456.999301683168,225,15.0701386138614,15.5222427722772,5.97444554455446,3.41940594059406,753.371287128713,316.370409027723,337.668726904951,20,40,10,32,5306162.37146095,396611.328057801,1,2,5306154.87924902,396617.431616639,9.27611858666372,0,0,15.0701386138614,969.474705351524,5.97444554455446,6.40796505497237,5.94762242316263,3.41940594059406,3.43404614952391,2.91746565138549,2.24428283634985,1.78053395911345,1.80308779823275,8.76587296692241,-0.000691219505740328,654.039135932673,653.869647838085,650.208766778464,5.97208891157902,1369.57009495654,-130.051801244277,0,1369.57009495654,15.0679703950593,15.0679703950593,-0.00519693058414935,15.0705645467476,24.3,1015.3,40.48,35.5381047843998
 44655,2874.02585693069,456.996646930693,225,15.0672772277228,15.5192955445545,6.71138613861386,3.02029702970297,752.495049504951,330.99777820198,339.106492774257,20,40,10,32,5306159.84953445,396607.975015701,1,2,5306152.23131008,396614.181231046,13.4685626374293,0,0,15.0672772277228,973.659540527542,6.71138613861386,7.19837975355933,6.57467847059601,3.02029702970297,3.03493723863282,2.61726968197822,3.0290738840002,2.40315918643209,2.33995152634074,8.75567747921274,0.00181445120256836,670.104270976238,669.260666157093,651.042991909582,5.97322922286085,1401.84664338518,74.3049586757918,0,1401.84664338518,15.0671912557592,15.0671912557592,0.0029585879380025,15.0634002336549,24.3,1015.3,40.6,43.3185146950128
 44656,2874.02446534653,456.993999405941,225,15.0571287128713,15.5088425742574,6.25222772277228,2.7160396039604,752.227722772277,340.110817766337,327.574814243564,20,40,10,32,5306157.33093314,396604.631036051,1,2,5306149.58913527,396610.937921018,17.651880415776,0,0,15.0571287128713,977.84476671016,6.25222772277228,6.70590374696301,6.18343394190921,2.7160396039604,2.73067981289025,2.3377316757527,2.54034923111948,2.01542247739708,2.04622782005665,8.75256699143691,-0.00100802844587131,667.685632009901,666.943516839683,650.909974531609,5.97725466300104,1397.23715279108,-139.267756596382,0,1397.23715279108,15.0598370747966,15.0598370747966,-0.0055631800803837,15.0593643551133,24.3,1015.3,40.72,38.3563081509935
 44657,2874.02307039604,456.991353762376,225,15.0491485148515,15.500622970297,6.16389108910892,2.90742574257426,751.346534653465,335.331041158416,313.675863369307,20,40,10,32,5306154.80605614,396601.289284971,1,2,5306146.94554827,396607.69287749,21.8374341118839,0,0,15.0491485148515,982.02605172116,6.16389108910892,6.61115720397968,6.10776045543389,2.90742574257426,2.92206595150411,2.49679514345485,2.44905846678667,1.94299564089711,1.94728080167362,8.74231390210176,0.00216006095543853,649.006904527723,649.048576277375,649.951660154277,5.9804232844905,1357.2714267549,-63.5513465250742,0,1357.2714267549,15.0462007646309,15.0462007646309,-0.00255830038449477,15.0590558589994,24.3,1015.3,40.84,37.3982139013922
-44658,2874.0216739604,456.98871019802,225,15.0410495049505,15.492280990099,6.31322772277228,3.3580198019802,751.935643564356,321.052952955446,310.188271488119,20,40,10,32,5306152.27838362,396597.950071554,1,2,5306144.30208872,396604.447990417,26.0227860090794,0,0,15.0410495049505,986.203962034692,6.31322772277228,6.77133004726792,6.23423916987467,3.3580198019802,3.37266001091005,2.88836036192631,2.61293119255945,2.07300641693882,2.05847828105236,8.74916849553369,-0.00100802844587131,631.241224443565,632.028370296863,649.055607945845,5.9836457436205,1321.87176491455,115.168033266896,0,1321.87176491455,15.0454528967748,15.0454528967748,0.00461419904366728,15.0599969183026,24.3,1015.3,40.96,38.9839316402297
+44658,2874.0216739604,456.98871019802,225,15.0410495049505,15.492280990099,6.31322772277228,3.3580198019802,751.935643564356,321.052952955446,310.188271488119,20,40,10,32,5306152.27838362,396597.950071554,1,2,5306144.30208872,396604.447990417,26.0227860090825,0,0,15.0410495049505,986.203962034692,6.31322772277228,6.77133004726792,6.23423916987467,3.3580198019802,3.37266001091005,2.88836036192631,2.61293119255945,2.07300641693882,2.05847828105236,8.74916849553369,-0.00100802844587131,631.241224443565,632.028370296863,649.055607945845,5.9836457436205,1321.87176491455,115.168033266896,0,1321.87176491455,15.0454528967748,15.0454528967748,0.00461419904366728,15.0599969183026,24.3,1015.3,40.96,38.9839316402297
 44659,2874.02027346535,456.986066732673,225,15.0687425742574,15.5208048514852,5.9820198019802,3.2109900990099,753.193069306931,310.403761604951,320.318514495049,20,40,10,32,5306149.74319138,396594.610843783,1,2,5306141.6556224,396601.199412489,30.2128984807062,0,0,15.0687425742574,990.386281919181,5.9820198019802,6.41608891793832,5.95407118710427,3.2109900990099,3.22563030793975,2.74266038911916,2.25079792208699,1.78570279577415,1.80923323163372,8.76379930840519,0.00192965445352508,630.7222761,631.531197788021,649.003265439864,5.97265059712719,1320.55591598962,90.6634751716454,0,1320.55591598962,15.0656681697873,15.0656681697873,0.00361211863760418,15.0628680790781,24.3,1015.3,41.08,35.5813557450117
 44660,2874.01887059406,456.983422178218,225,15.0739207920792,15.5261384158416,5.90339603960396,3.42544554455446,753.490099009901,313.174284524752,334.752893682178,20,40,10,32,5306147.20362373,396591.270177581,1,2,5306139.0067063,396597.947827417,34.4068896556665,0,0,15.0739207920792,994.573215692558,5.90339603960396,6.33176003452309,5.88737653420743,3.42544554455446,3.44008575348431,2.91745654863389,2.16762366175125,1.71971530406709,1.68939942320876,8.76725540593389,-0.00118083332230639,647.927178206931,648.014156862053,649.89151389588,5.97059272498141,1356.6472510715,14.7525157371815,0,1356.6472510715,15.0741254778943,15.0741254778943,0.000599069807968089,15.0674597844445,24.3,1015.3,41.1722277227723,34.7910526741371
-44661,2874.01746821782,456.980778613861,225,15.0721584158416,15.5243231683168,5.8980198019802,3.2660396039604,753.59900990099,326.817315712871,340.22050739901,20,40,10,32,5306144.66495288,396587.930758151,1,2,5306136.35875847,396594.697430901,38.5993477952074,0,0,15.0721584158416,998.759600978586,5.8980198019802,6.32599368473157,5.88277961050758,3.2660396039604,3.28067981289025,2.78191361916884,2.16091004968207,1.71438896369507,1.70492067123339,8.76852264169441,0.000432012191087705,667.037823111881,666.322890957798,650.889834317753,5.97129385699367,1397.0240637563,64.480712993042,0,1397.0240637563,15.0738926575826,15.0738926575826,0.00257600017427748,15.0704828037721,24.3,1015.3,41.1,34.730415924743
-44662,2874.01606267327,456.978134653465,225,15.0909603960396,15.5436892079208,5.65853465346535,2.07762376237624,753.292079207921,338.789515213861,331.69445680495,20,40,10,32,5306142.12042396,396584.590737282,1,2,5306133.70817924,396591.443804316,42.7959721750501,0,0,15.0909603960396,1002.94966558255,5.65853465346535,6.06913094300539,5.68033265130779,2.07762376237624,2.09226397130609,1.7640509562326,1.89591166759562,1.50414869862115,1.52798375942548,8.76495134091476,-0.00106563007134967,670.483972018812,669.624434383345,651.07460822819,5.96385056392905,1401.91952560938,16.9177125254802,0,1401.91952560938,15.0885150475443,15.0885150475443,0.000684845712293651,15.0765412937413,24.3,1015.3,41,32.4057961767494
+44661,2874.01746821782,456.980778613861,225,15.0721584158416,15.5243231683168,5.8980198019802,3.2660396039604,753.59900990099,326.817315712871,340.22050739901,20,40,10,32,5306144.66495288,396587.930758151,1,2,5306136.35875847,396594.697430901,38.5993477952038,0,0,15.0721584158416,998.759600978586,5.8980198019802,6.32599368473157,5.88277961050758,3.2660396039604,3.28067981289025,2.78191361916884,2.16091004968207,1.71438896369507,1.70492067123339,8.76852264169441,0.000432012191087705,667.037823111881,666.322890957798,650.889834317753,5.97129385699367,1397.0240637563,64.480712993042,0,1397.0240637563,15.0738926575826,15.0738926575826,0.00257600017427748,15.0704828037721,24.3,1015.3,41.1,34.730415924743
+44662,2874.01606267327,456.978134653465,225,15.0909603960396,15.5436892079208,5.65853465346535,2.07762376237624,753.292079207921,338.789515213861,331.69445680495,20,40,10,32,5306142.12042396,396584.590737282,1,2,5306133.70817924,396591.443804316,42.7959721750501,0,0,15.0909603960396,1002.94966558255,5.65853465346535,6.06913094300539,5.68033265130779,2.07762376237624,2.09226397130609,1.7640509562326,1.89591166759562,1.50414869862115,1.52798375942548,8.76495134091476,-0.00106563007134967,670.483972018812,669.624434383345,651.07460822819,5.96385056392905,1401.91952560938,16.9177125254802,0,1401.91952560938,15.0885150475443,15.0885150475443,0.000684845712293651,15.0765412937413,24.3,1015.3,41,32.4057961767493
 44663,2874.01465158416,456.975483168317,225,15.058495049505,15.5102499009901,5.55547524752475,2.12514851485149,753.79702970297,338.083698027723,317.01355349703,20,40,10,32,5306139.56579451,396581.241156428,1,2,5306131.04888947,396588.179485393,47.0063878508117,0,0,15.0584950495049,1007.13837245823,5.55547524752475,5.95859330952483,5.59073991788848,2.12514851485149,2.13978872378134,1.79515470358712,1.79614156211501,1.42499465527362,1.39615671144391,8.77082670671355,0.000115203250956721,655.097251524753,654.883363343545,650.266031432737,5.9767117813288,1373.6123128963,-219.253258662529,0,1373.6123128963,15.0632919321635,15.0632919321635,-0.00877092659761011,15.0786402526256,24.3,1015.3,40.9,31.4076718060167
 44664,2874.01324930693,456.972838019802,225,15.0806435643564,15.5330628712871,5.66746534653465,2.89613861386139,753.707920792079,325.348789208911,309.675352279208,20,40,10,32,5306137.02734814,396577.899758186,1,2,5306128.4000622,396584.928009364,51.2002383792383,0,0,15.0806435643564,1011.32142135812,5.66746534653465,6.07870966770512,5.68711024654948,2.89613861386139,2.91077882279124,2.455484724217,1.91292241460953,1.51764441860688,1.45661076626337,8.76978987745494,-0.000662418693001148,635.024141488119,635.652550566748,649.204002211742,5.96794269219993,1329.43710347232,276.70559261576,0,1329.43710347232,15.0767753161455,15.0767753161455,0.0110732607914249,15.0793455811377,24.3,1015.3,40.8,32.5060544602433
 44665,2874.0118460396,456.970194554455,225,15.0894851485149,15.5421697029703,4.70259405940594,-0.494257425742574,753.945544554455,312.29320519802,316.426561493069,20,40,10,32,5306134.48703208,396574.560420714,1,2,5306125.75149819,396581.676856492,55.3936720889648,0,0,15.0894851485148,1015.51390064855,4.70259405940594,5.04382510070082,4.86680585032399,-0.494257425742574,-0.479617216812716,-0.330068980433086,1.20651944154605,0.957209493923365,1.11255098542085,8.7725547554779,-0.00120963413504558,628.719766691089,629.612716628194,648.871186036699,5.96444067250642,1315.86825092368,-24.3251443751554,0,1315.86825092368,15.0906528771689,15.0906528771689,-0.0009639577819187,15.0777823916919,24.3,1015.3,40.7,24.5398181731727
@@ -252,31 +252,31 @@ Time,Lat,Long,Heading,v_veh_GPS,v_veh_CAN,vair_ar,beta_ar,n_eng,tq_l,tq_r,t_amb_
 44669,2874.00625158416,456.95961019802,225,15.079495049505,15.5318799009901,6.59540594059406,0.145247524752475,752.945544554455,339.794115012871,320.987439378218,20,40,10,32,5306124.36050049,396561.190586614,1,2,5306115.16498437,396568.681748661,72.1551488328213,0,0,15.0794950495049,1032.26785301379,6.59540594059406,7.07398376560743,6.47674317705009,0.145247524752475,0.159887733682333,0.138920279160712,2.90080601969295,2.30139603761549,2.29012822623801,8.76091922713128,-0.00172804876435082,660.781554391089,660.329144488207,650.567404509721,5.96838752059986,1382.05730227891,-202.541166359065,0,1382.05730227891,15.0719370649936,15.0719370649936,-0.00808880392989836,15.0636938623208,24.3,1015.3,40.3,42.0850976816426
 44670,2874.00485207921,456.956965643564,225,15.0378217821782,15.4889564356436,6.01366336633664,0.515841584158416,752.316831683168,329.616841109901,310.383185706931,20,40,10,32,5306121.82718747,396557.850002751,1,2,5306112.51860366,396565.433275822,76.3451257573823,0,0,15.0378217821782,1036.44983849234,6.01366336633664,6.45002861210721,5.97948048372432,0.515841584158416,0.530481793088273,0.452566021379124,2.28869771564624,1.81577114027274,1.80010366265182,8.75360382069552,0.00112323169682803,640.000026816832,640.419640422518,649.494075461782,5.98492089570643,1341.18081965812,-27.325285540208,0,1341.18081965812,15.0431991961572,15.0431991961572,-0.00110147153329181,15.0599583866243,24.3,1015.3,40.2075742574257,35.8742548698902
 44671,2874.00345148515,456.954320792079,225,15.0526831683168,15.5042636633663,5.22463366336634,1.10237623762376,752.242574257426,315.194864785149,313.217563689109,20,40,10,32,5306119.29186558,396554.509009799,1,2,5306109.87122126,396562.18357339,80.5366886470283,0,0,15.0526831683168,1040.62901118211,5.22463366336634,5.60374509905764,5.30882716429076,1.10237623762376,1.11701644655362,0.937682749491257,1.44915577713646,1.14970850885867,1.21504536850179,8.75273979631334,-0.00158404470065492,628.412428474257,629.318274772209,648.894694272875,5.97901996947558,1315.46596897627,45.7898930267725,0,1315.46596897627,15.0515901382217,15.0515901382217,0.00184350118180095,15.0564678704936,24.3,1015.3,40.16,28.3367940187981
-44672,2874.0020539604,456.951682871287,225,15.0523564356436,15.5039271287129,5.14669306930693,0.593861386138614,752.59900990099,309.787684556436,326.884659281188,20,40,10,32,5306116.76207624,396551.176748858,1,2,5306107.23032173,396558.941828781,84.7179873002905,0,0,15.0523564356435,1044.81041318981,5.14669306930693,5.52014895622365,5.24255940136125,0.593861386138614,0.608501595068472,0.512519164091271,1.36556476886112,1.08339038419982,1.03773769553165,8.75688711334779,0.00172804876435082,636.672343837624,637.23159191893,649.316411123446,5.97914835598323,1333.4103685468,5.5638027314993,0,1333.4103685468,15.0526267032644,15.0526267032644,0.000209674432787951,15.0543666771257,24.3,1015.3,40.12,27.6737940519097
+44672,2874.0020539604,456.951682871287,225,15.0523564356436,15.5039271287129,5.14669306930693,0.593861386138614,752.59900990099,309.787684556436,326.884659281188,20,40,10,32,5306116.76207624,396551.176748858,1,2,5306107.23032173,396558.941828781,84.7179873002905,0,0,15.0523564356435,1044.81041318981,5.14669306930693,5.52014895622365,5.24255940136125,0.593861386138614,0.608501595068472,0.512519164091272,1.36556476886112,1.08339038419982,1.03773769553165,8.75688711334779,0.00172804876435082,636.672343837624,637.23159191893,649.316411123446,5.97914835598323,1333.4103685468,5.5638027314993,0,1333.4103685468,15.0526267032644,15.0526267032644,0.000209674432787951,15.0543666771257,24.3,1015.3,40.12,27.6737940519097
 44673,2874.00065524753,456.949043762376,225,15.0502871287129,15.5017957425743,4.59106930693069,-1.77673267326733,752.688118811881,318.366636985148,338.819007816832,20,40,10,32,5306114.23011451,396547.842965586,1,2,5306104.58781016,396555.698105362,88.9018382814266,0,0,15.0502871287129,1048.99168997749,4.59106930693069,4.92420785567007,4.7696140396626,-1.77673267326733,-1.76209246433747,-1.42750545260156,1.0003757062316,0.793662406523788,0.766460734570206,8.7579239426064,-0.00141123982421984,657.18564480198,656.88412456168,650.364940334267,5.97998055628043,1376.73179540876,-29.2723358731718,0,1376.73179540876,15.0513775120086,15.0513775120086,-0.00116001699179788,15.0569550413701,24.3,1015.3,40.08,23.3172346539183
-44674,2873.99925257426,456.946404851485,225,15.0600297029703,15.5118305940594,4.23756435643564,-1.20376237623762,752.762376237624,333.044272781188,338.048224289109,20,40,10,32,5306111.69081424,396544.509294514,1,2,5306101.94242606,396552.450855879,93.0902372853636,0,0,15.0600297029703,1053.17350598409,4.23756435643564,4.5450517728773,4.46939637491091,-1.20376237623762,-1.18912216730777,-0.942871124238234,0.695105676038541,0.55147205214655,0.625801648043635,8.75878796698857,-0.000316808940130984,671.092497070297,670.207424826831,651.090951311319,5.97609614728068,1405.08951485591,127.618438781048,0,1405.08951485591,15.0602060582296,15.0602060582296,0.00510707011295154,15.0606361696342,24.3,1015.3,40.04,20.2466439798184
+44674,2873.99925257426,456.946404851485,225,15.0600297029703,15.5118305940594,4.23756435643564,-1.20376237623762,752.762376237624,333.044272781188,338.048224289109,20,40,10,32,5306111.69081424,396544.509294514,1,2,5306101.94242606,396552.450855879,93.0902372853636,0,0,15.0600297029703,1053.17350598409,4.23756435643564,4.5450517728773,4.4693963749109,-1.20376237623762,-1.18912216730777,-0.942871124238234,0.695105676038541,0.55147205214655,0.625801648043635,8.75878796698857,-0.000316808940130984,671.092497070297,670.207424826831,651.090951311319,5.97609614728068,1405.08951485591,127.618438781048,0,1405.08951485591,15.0602060582296,15.0602060582296,0.00510707011295154,15.0606361696342,24.3,1015.3,40.04,20.2466439798184
 44675,2873.99784950495,456.943763267327,225,15.0704356435644,15.5225487128713,3.28314851485148,-1.41247524752475,752.70297029703,340.326041271287,325.280963533663,20,40,10,32,5306109.15084197,396541.172277466,1,2,5306099.29513545,396549.201266118,97.2816548488516,0,0,15.0704356435643,1057.35859036253,3.28314851485148,3.52138132259463,3.65774348111217,-1.41247524752475,-1.3978350385949,-1.04293381968657,1.15282829337067,0.914612851877327,0.878838932040595,8.75809674748283,0.00100802844587131,665.60700480495,664.952111897245,650.81201030355,5.97197597103643,1392.52536796873,-1.81630327434666,0,1392.52536796873,15.0707634545633,15.0707634545633,-8.032981515981E-05,15.0597792521021,24.3,1015.3,40,14.0489240033248
 44676,2873.99644564356,456.941121782178,225,15.0738316831683,15.5260466336634,4.24568316831683,1.32237623762376,753.133663366337,333.51711810396,312.25538620198,20,40,10,32,5306106.60940217,396537.835354497,1,2,5306096.64730549,396545.9510143,101.473926353769,0,0,15.0738316831683,1061.54481030202,4.24568316831683,4.5537597044225,4.47700577907887,1.32237623762376,1.33701644655362,1.06375571444564,0.688922235497317,0.546566330956027,0.581689663671036,8.76310808889945,-0.00149764226243738,645.77250430594,645.94989625077,649.779109471972,5.97062655602082,1351.50837713938,10.9516537279461,0,1351.50837713938,15.0701244975983,15.0701244975983,0.000449302355978508,15.0576271375651,24.3,1015.3,39.96,20.301414769346
 44677,2873.99504247525,456.938477425742,225,15.0524455445545,15.5040189108911,4.5229801980198,-1.40118811881188,752.836633663366,318.877595823762,310.947148016832,20,40,10,32,5306104.06931221,396534.494875061,1,2,5306093.99827249,396542.699285723,105.668102624896,0,0,15.0524455445544,1065.73001277727,4.5229801980198,4.85117804440618,4.71176598811569,-1.40118811881188,-1.38654790988202,-1.1466630702236,0.940266479447164,0.745973889812674,0.720507100234649,8.75965199137075,0.00167044713887246,629.824743840594,630.67132730397,648.969571354121,5.97911287561291,1319.479082923,-157.182593911599,0,1319.479082923,15.0559301048917,15.0559301048917,-0.00629976363973052,15.0553856283661,24.3,1015.3,39.92,22.5500835033062
 44678,2873.99366920792,456.935813267327,225,15.0468514851485,15.498257029703,4.05558415841584,-1.37643564356436,753.272277227723,309.866983706931,322.559037139604,20,40,10,32,5306101.58505337,396531.130719994,1,2,5306091.35991804,396539.460665233,109.845371697802,0,0,15.0468514851485,1069.90995249124,4.05558415841584,4.34986667312009,4.3137434154996,-1.37643564356436,-1.3617954346345,-1.08687712297826,0.952128357855757,0.755384681083406,0.737116124387755,8.76472093441284,-0.00118083332230639,632.426020846535,633.163450898412,649.105950021472,5.9813350556592,1326.19216522724,-65.7132969351223,0,1326.19216522724,15.043909420645,15.043909420645,-0.00261956888758079,15.0482522793563,24.3,1015.3,39.88,19.2910572648247
-44679,2873.99227881188,456.933166930693,225,15.0367425742574,15.4878448514852,4.62778217821782,-0.135940594059406,752.113861386139,314.769596983168,336.415136265347,20,40,10,32,5306099.0686701,396527.788192345,1,2,5306088.71933905,396536.219314096,114.02616283878,0,0,15.0367425742574,1074.08760570907,4.62778217821782,4.96358469734035,4.80007535820312,-0.135940594059406,-0.121300385129549,-0.0859658313424457,0.87880493125487,0.697212489527649,0.774744552260185,8.7512421540509,0.0016128455133941,651.184733248515,651.135020096354,650.062254715103,5.98534950450253,1364.33986098143,42.7158754757737,0,1364.33986098143,15.0395660229389,15.0395660229389,0.00169645677439132,15.0377362981862,24.3,1015.3,39.84,23.2163680537662
+44679,2873.99227881188,456.933166930693,225,15.0367425742574,15.4878448514852,4.62778217821782,-0.135940594059406,752.113861386139,314.769596983168,336.415136265347,20,40,10,32,5306099.0686701,396527.788192345,1,2,5306088.71933905,396536.219314096,114.02616283878,0,0,15.0367425742574,1074.08760570907,4.62778217821782,4.96358469734035,4.80007535820312,-0.135940594059406,-0.121300385129549,-0.0859658313424459,0.87880493125487,0.697212489527649,0.774744552260185,8.7512421540509,0.0016128455133941,651.184733248515,651.135020096354,650.062254715103,5.98534950450253,1364.33986098143,42.7158754757737,0,1364.33986098143,15.0395660229389,15.0395660229389,0.00169645677439132,15.0377362981862,24.3,1015.3,39.84,23.2163680537662
 44680,2873.99088069307,456.930527029703,225,15.0396732673267,15.4908634653465,3.78348514851485,1.01732673267327,751.643564356436,329.077995609901,339.776211747525,20,40,10,32,5306096.53783975,396524.453421656,1,2,5306086.07679529,396532.975551163,118.210064785633,0,0,15.0396732673267,1078.26575282128,3.78348514851485,4.05802353321109,4.08179672547653,1.01732673267327,1.03196694160313,0.739303461477307,1.02865560673771,0.816098670971359,0.790935204238813,8.74576999963046,-0.000950426820392952,668.854207357426,668.063057047985,650.947736400814,5.98418778443649,1400.21600544156,-150.835272540407,0,1400.21600544156,15.0371599843152,15.0371599843152,-0.00602609765927562,15.0299495376021,24.3012623762376,1015.3,39.8176732673267,17.4323479485167
 44681,2873.98948237624,456.927884356436,225,15.0076138613861,15.4578422772277,4.04947524752475,-0.577029702970297,750.366336633663,339.637103885149,329.552106295049,20,40,10,32,5306094.00670643,396521.115188237,1,2,5306083.43243505,396529.729558477,122.396842734714,0,0,15.0076138613861,1082.43887490599,4.04947524752475,4.34331448560376,4.30623370828312,-0.577029702970297,-0.562389494040439,-0.480808943379211,1.01589484456995,0.805974737385148,0.847196669005378,8.73090878025704,0.00077762194395787,669.189210180198,668.384002656789,650.908973452872,5.99697866278581,1401.52416031135,-90.2910176081263,0,1401.52416031135,15.0098140378394,15.0098140378394,-0.00361756472676627,15.030730629072,24.31,1015.3,39.9,19.2691030500195
 44682,2873.98810059406,456.925241089109,225,15.0072079207921,15.4574241584158,5.15747524752475,0.770792079207921,750.777227722772,336.738926347525,315.142815307921,20,40,10,32,5306091.50621613,396517.776761177,1,2,5306080.80020398,396526.49845454,126.56441673288,0,0,15.0072079207921,1086.60762454846,5.15747524752475,5.53171351409283,5.24904269157761,0.770792079207921,0.78543228813778,0.654787087284463,1.39078627827179,1.103400230231,1.04161701131199,8.73568971517175,-0.00106563007134967,651.881741655446,651.802781005254,650.094074379515,5.99713327493528,1366.05305596637,83.1262044710742,0,1366.05305596637,15.0116756200372,15.0116756200372,0.00333300656798207,15.0349625087318,24.32,1015.3,40,27.6999304465491
 44683,2873.98672168317,456.92259019802,225,15.038801980198,15.489966039604,4.96029702970297,0.910792079207921,752.10396039604,323.048034064357,309.796174475248,20,40,10,32,5306089.01121667,396514.42893023,1,2,5306078.16555844,396523.264386796,130.735813537731,0,0,15.038801980198,1090.78000480148,4.96029702970297,5.32022759126015,5.08304716793649,0.910792079207921,0.925432288137779,0.762685730070229,1.17593369661577,0.932943854748524,0.956681784046152,8.75112695079995,0.00149764226243738,632.844208539604,633.564090817479,649.139779360279,5.98453922919682,1325.71125103714,219.077838683626,0,1325.71125103714,15.0357399274581,15.0357399274581,0.00875186528553803,15.0392150921616,24.33,1015.3,40.1,25.9344859416886
 44684,2873.98535594059,456.919915544555,225,15.0578910891089,15.5096278217822,5.61554455445545,1.00445544554455,752.440594059406,311.151770262376,318.42786070495,20,40,10,32,5306086.54114222,396511.051934755,1,2,5306075.52657474,396520.02499389,134.914078894731,0,0,15.0578910891089,1094.961194928,5.61554455445545,6.02302138353065,5.64185100028911,1.00445544554455,1.01909565447441,0.86012877851342,1.8594949144186,1.4752569454686,1.36929316789186,8.75504386133248,-0.00115203250956721,629.579630967327,630.436499727301,648.951626452848,5.97695254539923,1317.80283629752,82.5954239745219,0,1317.80283629752,15.0612187040486,15.0612187040486,0.00331258373362161,15.0472263331919,24.34,1015.3,40.2,31.9837840911996
 44685,2873.98400148515,456.917225445545,225,15.074396039604,15.5266279207921,5.10188118811881,0.12059405940594,753.524752475248,311.987505014852,333.10194149901,20,40,10,32,5306084.09232243,396507.656071941,1,2,5306072.88683098,396516.784668006,139.093547633592,0,0,15.074396039604,1099.1459519687,5.10188118811881,5.47208542186559,5.20563323295153,0.12059405940594,0.135234268335798,0.105014466917079,1.31424993578339,1.04267902580003,1.11104056865281,8.76765861731224,0.00164164632613328,645.089446513861,645.295500572081,649.741258636162,5.97040654596912,1350.73862878489,2.93424345975039,0,1350.73862878489,15.0670779335359,15.0670779335359,0.000104837216394465,15.0594350699669,24.35,1015.3,40.3,27.2457785183675
-44686,2873.98263990099,456.914541386139,225,15.064396039604,15.5163279207921,5.01250495049505,1.23376237623762,753.60396039604,324.786867647525,340.327134643564,20,40,10,32,5306081.63016484,396504.267492508,1,2,5306070.24533306,396513.542188857,143.275793718598,0,0,15.0643960396039,1103.33122443845,5.01250495049505,5.37622383886732,5.12911374628338,1.23376237623762,1.24840258516748,1.04212003728237,1.2182896920907,0.966547590914786,0.975883169623662,8.76858024331989,-0.00103682925861049,665.114002291089,664.479796492471,650.783416002343,5.97436399576348,1393.72217142994,58.0089637615247,0,1393.72217142994,15.0674555435741,15.0674555435741,0.00232820311734147,15.070980286538,24.36,1015.3,40.4,26.4112619006393
+44686,2873.98263990099,456.914541386139,225,15.064396039604,15.5163279207921,5.01250495049505,1.23376237623762,753.60396039604,324.786867647525,340.327134643564,20,40,10,32,5306081.63016484,396504.267492508,1,2,5306070.24533306,396513.542188857,143.275793718598,0,0,15.0643960396039,1103.33122443845,5.01250495049505,5.37622383886732,5.12911374628338,1.23376237623762,1.24840258516748,1.04212003728237,1.2182896920907,0.966547590914785,0.975883169623661,8.76858024331989,-0.00103682925861049,665.114002291089,664.479796492471,650.783416002343,5.97436399576348,1393.72217142994,58.0089637615247,0,1393.72217142994,15.0674555435741,15.0674555435741,0.00232820311734147,15.070980286538,24.36,1015.3,40.4,26.4112619006393
 44687,2873.98125227723,456.911883861386,225,15.0768118811881,15.5291162376238,4.76530693069307,0.401287128712871,754.524752475248,337.782183176238,333.460630878218,20,40,10,32,5306079.11918205,396500.911097385,1,2,5306067.60011785,396510.295146683,147.463925328832,0,0,15.0768118811881,1107.5176609621,4.76530693069307,5.11108856217318,4.91929091065967,0.401287128712871,0.415927337642729,0.342570154121051,0.965690704045675,0.766144562843977,0.786414224642473,8.77929414565887,-0.000489613816566066,671.242814054455,670.351434291315,651.114798472578,5.96944751815504,1407.12358814746,32.3501659267632,0,1407.12358814746,15.0763549651995,15.0763549651995,0.00129753074317319,15.0739845335656,24.37,1015.3,40.5,24.2767988904899
-44688,2873.97986504951,456.909225544554,225,15.0894158415842,15.5420983168317,4.76966336633663,1.00990099009901,753.539603960396,339.025618445545,318.81546210495,20,40,10,32,5306076.60895248,396497.553725858,1,2,5306064.95472499,396507.047886442,151.65233820824,0,0,15.0894158415841,1111.70670867937,4.76966336633663,5.1157611108072,4.92382973178134,1.00990099009901,1.02454119902887,0.839201678853074,0.96220123835968,0.7633761452219,0.730158920548057,8.76783142218868,0.000259207314652623,657.841080550495,657.512057258415,650.412712308945,5.964460680495,1376.08545668776,104.853992186118,0,1376.08545668776,15.0869380452897,15.0869380452897,0.00419212713350533,15.0779413262701,24.38,1015.3,40.6,24.3058019999888
-44689,2873.9784880198,456.906557029703,225,15.0803663366337,15.5327773267327,3.4689801980198,-1.35811881188119,753.747524752475,327.373964787129,309.856328941584,20,40,10,32,5306074.11784294,396494.183987276,1,2,5306062.31090357,396503.802555167,155.838263049844,0,0,15.0803663366336,1115.89827837134,3.4689801980198,3.72069738012145,3.81649438144704,-1.35811881188119,-1.34347860295133,-1.01712580670132,0.768799382104821,0.609938010223985,0.670108071694849,8.77025069045877,-0.00112323169682803,637.230293728713,637.766129413214,649.330687744512,5.96804105554408,1334.13305759649,-183.164102269531,0,1334.13305759649,15.0800664640721,15.0800664640721,-0.00731818231328037,15.078523769443,24.39,1015.3,40.7,14.8170632704595
-44690,2873.97711831683,456.903887425742,225,15.0811584158416,15.5335931683168,3.70587128712871,0.054059405940594,753.678217821782,313.539698856436,314.820217119802,20,40,10,32,5306071.6403313,396490.813132598,1,2,5306059.67196004,396500.563211583,160.016464790092,0,0,15.0811584158416,1120.08448862986,3.70587128712871,3.97477783152465,4.01820850758027,0.054059405940594,0.0686996148704514,0.0420764249826935,0.745903503235195,0.591773236519516,0.549267721023184,8.76944426770207,0.00103682925861049,628.359915976238,629.267965775679,648.86038319032,5.96774137757576,1315.37692270244,194.858359246209,0,1315.37692270244,15.0786127830605,15.0786127830605,0.00778654598132875,15.0803858739192,24.3987376237624,1015.3,40.7861138613861,16.542504685043
+44688,2873.97986504951,456.909225544554,225,15.0894158415842,15.5420983168317,4.76966336633663,1.00990099009901,753.539603960396,339.025618445545,318.81546210495,20,40,10,32,5306076.60895248,396497.553725858,1,2,5306064.95472499,396507.047886442,151.652338208231,0,0,15.0894158415841,1111.70670867937,4.76966336633663,5.1157611108072,4.92382973178134,1.00990099009901,1.02454119902887,0.839201678853074,0.96220123835968,0.7633761452219,0.730158920548057,8.76783142218868,0.000259207314652623,657.841080550495,657.512057258415,650.412712308945,5.964460680495,1376.08545668776,104.853992186118,0,1376.08545668776,15.0869380452897,15.0869380452897,0.00419212713350533,15.0779413262701,24.38,1015.3,40.6,24.3058019999888
+44689,2873.9784880198,456.906557029703,225,15.0803663366337,15.5327773267327,3.4689801980198,-1.35811881188119,753.747524752475,327.373964787129,309.856328941584,20,40,10,32,5306074.11784294,396494.183987276,1,2,5306062.31090357,396503.802555167,155.838263049848,0,0,15.0803663366336,1115.89827837134,3.4689801980198,3.72069738012145,3.81649438144704,-1.35811881188119,-1.34347860295133,-1.01712580670132,0.768799382104821,0.609938010223985,0.670108071694849,8.77025069045877,-0.00112323169682803,637.230293728713,637.766129413214,649.330687744512,5.96804105554408,1334.13305759649,-183.164102269531,0,1334.13305759649,15.0800664640721,15.0800664640721,-0.00731818231328037,15.078523769443,24.39,1015.3,40.7,14.8170632704595
+44690,2873.97711831683,456.903887425742,225,15.0811584158416,15.5335931683168,3.70587128712871,0.054059405940594,753.678217821782,313.539698856436,314.820217119802,20,40,10,32,5306071.6403313,396490.813132598,1,2,5306059.67196004,396500.563211583,160.016464790092,0,0,15.0811584158416,1120.08448862986,3.70587128712871,3.97477783152465,4.01820850758027,0.054059405940594,0.0686996148704514,0.0420764249826936,0.745903503235195,0.591773236519516,0.549267721023184,8.76944426770207,0.00103682925861049,628.359915976238,629.267965775679,648.86038319032,5.96774137757576,1315.37692270244,194.858359246209,0,1315.37692270244,15.0786127830605,15.0786127830605,0.00778654598132875,15.0803858739192,24.3987376237624,1015.3,40.7861138613861,16.542504685043
 44691,2873.97574564356,456.901212277228,225,15.0763366336634,15.5286267326733,3.3730297029703,-0.219207920792079,754.20297029703,310.241980939604,329.143350727723,20,40,10,32,5306069.15744347,396487.435269841,1,2,5306057.02744019,396497.317022968,164.203495453265,0,0,15.0763366336633,1124.2758320292,3.3730297029703,3.6177844964573,3.73465984570814,-0.219207920792079,-0.204567711862222,-0.172704799883866,0.647534079348814,0.513730443992976,0.541114996745594,8.77555004000278,-0.00083522356943623,639.385331667327,639.830738783355,649.443616242227,5.96963475197367,1339.81746689916,-172.391071741708,0,1339.81746689916,15.0803319282423,15.0803319282423,-0.00688930279166086,15.079956719839,24.4,1015.3,40.79,14.076519452068
-44692,2873.97437633663,456.898534554455,225,15.0747821782178,15.5270256435644,3.72022772277228,-0.0309900990099009,753.79702970297,320.512717687129,339.657106780198,20,40,10,32,5306066.68085072,396484.054309453,1,2,5306054.38391471,396494.072054965,168.388951736756,0,0,15.0747821782178,1128.46203260676,3.72022772277228,3.99017600315947,4.03002072625077,-0.0309900990099009,-0.0163498900800442,-0.0502468564745538,0.604361640864362,0.479478971061726,0.475721298133447,8.77082670671355,0.00169924795161164,660.169824467327,659.743083653329,650.532587838088,5.97024532346232,1382.76125041337,109.68430101036,0,1382.76125041337,15.0741285168121,15.0741285168121,0.00437457112047428,15.0768014073473,24.4,1015.3,40.78,16.5420742376879
-44693,2873.97300405941,456.895853960396,225,15.0831089108911,15.5356021782178,3.00972277227723,-2.07277227722772,753.123762376238,334.909041094059,336.695186456436,20,40,10,32,5306064.19882208,396480.669670875,1,2,5306051.73641965,396490.822214233,172.580693009843,0,0,15.0831089108911,1132.65161775527,3.00972277227723,3.22811517923799,3.42592932591817,-2.07277227722772,-2.05813206829787,-1.57476507440577,1.02604236294074,0.814025416545226,0.806840057705226,8.7629928856485,-0.00126723576052394,671.604227550495,670.697682342653,651.132308636149,5.9669600725011,1404.68403468905,-42.1713311619396,0,1404.68403468905,15.0842067444368,15.0842067444368,-0.00167739546231778,15.0783531652839,24.4,1015.3,40.77,12.0382467018296
+44692,2873.97437633663,456.898534554455,225,15.0747821782178,15.5270256435644,3.72022772277228,-0.0309900990099009,753.79702970297,320.512717687129,339.657106780198,20,40,10,32,5306066.68085072,396484.054309453,1,2,5306054.38391471,396494.072054965,168.388951736756,0,0,15.0747821782178,1128.46203260676,3.72022772277228,3.99017600315947,4.03002072625077,-0.0309900990099009,-0.0163498900800442,-0.0502468564745539,0.604361640864362,0.479478971061726,0.475721298133447,8.77082670671355,0.00169924795161164,660.169824467327,659.743083653329,650.532587838088,5.97024532346232,1382.76125041337,109.68430101036,0,1382.76125041337,15.0741285168121,15.0741285168121,0.00437457112047428,15.0768014073473,24.4,1015.3,40.78,16.5420742376879
+44693,2873.97300405941,456.895853960396,225,15.0831089108911,15.5356021782178,3.00972277227723,-2.07277227722772,753.123762376238,334.909041094059,336.695186456436,20,40,10,32,5306064.19882208,396480.669670875,1,2,5306051.73641965,396490.822214233,172.580693009824,0,0,15.0831089108911,1132.65161775527,3.00972277227723,3.22811517923799,3.42592932591817,-2.07277227722772,-2.05813206829787,-1.57476507440577,1.02604236294074,0.814025416545226,0.806840057705226,8.7629928856485,-0.00126723576052394,671.604227550495,670.697682342653,651.132308636149,5.9669600725011,1404.68403468905,-42.1713311619396,0,1404.68403468905,15.0842067444368,15.0842067444368,-0.00167739546231778,15.0783531652839,24.4,1015.3,40.77,12.0382467018296
 44694,2873.97166287129,456.893153069307,225,15.0717425742574,15.5238948514851,2.83987128712871,0.186138613861386,753.089108910891,340.195037819802,322.980765637624,20,40,10,32,5306061.7748367,396477.260779862,1,2,5306049.10020314,396487.586218109,176.754577096469,0,0,15.0717425742574,1136.83995034603,2.83987128712871,3.04593887965503,3.2807471101639,0.186138613861386,0.200778822791243,0.128853386433411,1.27861616379445,1.01440846199676,1.00304993730041,8.76258967427015,0.0016128455133941,663.175803457426,662.622927338839,650.688368598817,5.97145630392624,1388.02442646921,-67.1248413729346,0,1388.02442646921,15.0712748750122,15.0712748750122,-0.00269717565815992,15.0783083515333,24.4,1015.3,40.76,11.1978997838752
 44695,2873.97029663366,456.890486336634,225,15.0761188118812,15.5284023762376,2.86319801980198,-0.290495049504951,753.232673267327,331.510786846534,311.122819579208,20,40,10,32,5306059.30368962,396473.8936024,1,2,5306046.46559919,396484.352201411,180.925908060248,0,0,15.0761188118812,1141.02628469696,2.86319801980198,3.07095825370443,3.3008674461579,-0.290495049504951,-0.275854840575093,-0.136516536645783,1.17168581459461,0.929573736655356,0.955877877215107,8.76426012140901,-0.00103682925861049,642.633606425743,642.94271114825,649.614382874238,5.96971411780557,1344.91062771447,84.8286012244142,0,1344.91062771447,15.0747939417704,15.0747939417704,0.00340108268252663,15.0836874948034,24.4,1015.3,40.75,11.0978589889877
-44696,2873.96891653465,456.887824257426,225,15.0843465346535,15.5368769306931,2.84969306930693,0.223168316831683,754.10396039604,316.840548471287,312.02348919802,20,40,10,32,5306056.80676442,396470.531757904,1,2,5306043.82332335,396481.108767362,185.109385802987,0,0,15.0843465346534,1145.21511170466,2.84969306930693,3.05647335293899,3.28976149039382,0.223168316831683,0.237808525761541,0.144348258444788,1.15927014919396,0.919723590536157,0.851292790203835,8.77439800749321,-0.000489613816566065,628.864037669307,629.750933782482,648.891941245677,5.96646596664039,1316.89046511853,47.1901131319303,0,1316.89046511853,15.0864331928242,15.0864331928242,0.00189115446197968,15.0886714436517,24.4,1015.3,40.74,10.8921689915208
+44696,2873.96891653465,456.887824257426,225,15.0843465346535,15.5368769306931,2.84969306930693,0.223168316831683,754.10396039604,316.840548471287,312.02348919802,20,40,10,32,5306056.80676442,396470.531757904,1,2,5306043.82332335,396481.108767362,185.109385802987,0,0,15.0843465346534,1145.21511170466,2.84969306930693,3.05647335293899,3.28976149039382,0.223168316831683,0.237808525761541,0.144348258444789,1.15927014919396,0.919723590536157,0.851292790203835,8.77439800749321,-0.000489613816566065,628.864037669307,629.750933782482,648.891941245677,5.96646596664039,1316.89046511853,47.1901131319303,0,1316.89046511853,15.0864331928242,15.0864331928242,0.00189115446197968,15.0886714436517,24.4,1015.3,40.74,10.8921689915208
 44697,2873.96754851485,456.885153861386,225,15.0934356435644,15.5462387128713,3.76266336633664,-1.30534653465347,753.990099009901,309.67207220396,324.854703006931,20,40,10,32,5306054.33240187,396467.159952198,1,2,5306041.18517035,396477.870394162,189.286335912379,0,0,15.0934356435643,1149.40642988397,3.76266336633664,4.03569087462625,4.06727999319712,-1.30534653465347,-1.29070632572361,-1.01499284891774,0.443517627980204,0.351871067805597,0.479185877006791,8.77307317010721,-0.000288008127391803,634.526775210891,635.176054509734,649.175819877294,5.96288321025407,1327.75640101549,111.151146105426,0,1327.75640101549,15.089369963729,15.089369963729,0.00444809332418484,15.0875088284867,24.4,1015.3,40.73,16.6498364035399
 44698,2873.96617663366,456.882478514852,225,15.1089702970297,15.5620971283168,3.44489108910891,-2.99168316831683,754.653465346535,316.596022059406,337.81950219604,20,40,10,32,5306051.85099929,396463.78184874,1,2,5306038.54112512,396474.624788155,193.472615112152,0,0,15.1088321634144,1153.60163472348,3.44489108910891,3.6948603100611,3.79755051301304,-2.99168316831683,-2.97704295938698,-2.29748811467207,0.846600506422896,0.671662647449676,0.616369387382614,8.7807917879213,-0.000374410565609344,654.415524255446,654.230242355054,650.2406867559,5.95682190864912,1369.19756757677,93.0975268572249,0,1369.19756757677,15.1144096058905,15.1144096058905,0.00372661859091801,15.0908856601054,24.4,1015.3,40.72,15.0055753118221
 44699,2873.96478178218,456.879823267327,225,15.0967227722772,15.5496244554455,3.68009900990099,-3.15920792079208,755.044554455446,331.246550478218,338.998110185149,20,40,10,32,5306049.32660052,396460.428014966,1,2,5306035.8918123,396471.372716093,197.667234420793,0,0,15.0967227722772,1157.79945413862,3.68009900990099,3.94713545858297,3.99701098289533,-3.15920792079208,-3.14456771186223,-2.46402550205621,0.621620112365256,0.493171226820236,0.47334905929465,8.7853423163341,0.00152644307517656,670.244660663366,669.395164884649,651.083744172081,5.96162891070874,1404.16651658882,-330.835924878729,0,1404.16651658882,15.0956959668469,15.0956959668469,-0.0132450209262001,15.0965196122435,24.4,1015.3,40.71,16.192769426365
diff --git a/DemoData/Results/DataDemo_LS2_1Hz.csv b/DemoData/Results/DataDemo_LS2_1Hz.csv
index db793964d21cd3d591d80d38eff70ddf8c2889a5..2d1f6f372b6604028885175d24a8bc52809111b1 100644
--- a/DemoData/Results/DataDemo_LS2_1Hz.csv
+++ b/DemoData/Results/DataDemo_LS2_1Hz.csv
@@ -1,14 +1,14 @@
-Resultfile Programm VECTO-CSE 2.01 Comp 12.05.2014
-Datafile: ,J:\TE-Em\Projekte\I_2012_08_HDV_CO2_LOT3\Arbeitsordner\CSE\Release_Packages\2.01\Test\WorkingDir\DemoData\DataDemo_LS2.csdat
+Resultfile Programm VECTO_CSE 2.0.1-pre2 Comp 04/06/2014
+Datafile: ,d:\Work\vecto-cse.git\CSE\bin\Debug\DemoData\DataDemo_LS2.csdat
 
-Time,Lat,Long,Heading,v_veh_GPS,v_veh_CAN,vair_ar,beta_ar,n_eng,tq_l,tq_r,t_amb_veh,t_tire,Satelites,Zone (UTM),Lat (UTM),Long (UTM),Sec_ID,Dir_ID,Lat (root),Long (root),dist (root),slope_deg,altitude,v_veh,dist,vair_ic,vair_uf,vair,beta_ic,beta_uf,beta,vwind_ha,vwind,vwind 1s,omega_wh,omega_p_wh,tq_sum,tq_sum_1s,tq_sum_float,t_float,F_trac,F_acc,F_grd,F_res,v_veh_1s,v_veh_ave,a_veh_ave,v_veh_float,t_amp_stat,p_amp_stat,rh_stat,vair_sq
+Time,Lat,Long,Heading,v_veh_GPS,v_veh_CAN,vair_ar,beta_ar,n_eng,tq_l,tq_r,t_amb_veh,t_tire,Satelites,Zone (UTM),Lat (UTM),Long (UTM),Sec_ID,Dir_ID,Lat (root),Long (root),dist (root),slope_deg,altitude,v_veh,dist,vair_ic,vair_uf,vair,beta_ic,beta_uf,beta,vwind_ha,vwind,vwind 1s,omega_wh,omega_p_wh,tq_sum,tq_sum_1s,tq_sum_float,t_float,F_trac,F_acc,F_grd,F_res,v_veh_1s,v_veh_avg,a_veh_avg,v_veh_float,t_amp_stat,p_amp_stat,rh_stat,vair_sq
 [s],[mm.mm],[mm.mm],[°],[km/h],[km/h],[m/s],[°],[rpm],[Nm],[Nm],[°C],[°C],[#],[-],[m],[m],[-],[-],[m],[m],[m],[°],[m],[km/h],[m],[m/s],[m/s],[m/s],[°],[°],[°],[m/s],[m/s],[m/s],[rad/s],[rad/s2],[Nm],[Nm],[Nm],[s],[N],[N],[N],[N],[km/h],[km/h],[m/s2],[km/h],[°C],[mbar],[%],[m/s]
-47190,2873.92223156863,456.823372745098,45,14.8783137254902,15.3246631372549,4.43619607843137,-2.89392156862745,718.686274509804,309.030272307843,300.34177622549,20,40,10.6470588235294,32,5305971.77111824,396388.69595986,0,0,0,0,0,0,0,14.8783137254902,1.06922788671024,4.43619607843137,4.75809666948996,4.62787647486917,-2.89392156862745,-2.87928135969759,-2.34779894200485,0.68030570257138,0.539730281044687,0.56231590392197,8.36229451939191,0.000684442843919345,609.372048533333,608.815350492582,622.388812184593,6.04954523580346,1232.97112952847,2456.75862037574,0,1232.97112952847,14.9861166954688,14.9861166954688,0.0982656308554643,15.1895291346566,25.5,1014.9,36.9,21.4703358659417
+47190,2873.92223156863,456.823372745098,45,14.8783137254902,15.3246631372549,4.43619607843137,-2.89392156862745,718.686274509804,309.030272307843,300.34177622549,20,40,10.6470588235294,32,5305971.77111824,396388.69595986,0,0,0,0,0,0,0,14.8783137254902,1.06922788671024,4.43619607843137,4.75809666948996,4.62787647486917,-2.89392156862745,-2.87928135969759,-2.34779894200485,0.680305702571379,0.539730281044687,0.56231590392197,8.36229451939191,0.000684442843919345,609.372048533333,608.815350492582,622.388812184593,6.04954523580346,1232.97112952847,2456.75862037574,0,1232.97112952847,14.9861166954688,14.9861166954688,0.0982656308554643,15.1895291346566,25.5,1014.9,36.9,21.4703358659417
 47191,2873.92318594059,456.825484455446,45,15.7684653465347,15.7012962302971,4.69487128712871,-0.866039603960396,748.306930693069,301.092780144555,308.553627551485,20,40,10.3663366336634,32,5305973.49171316,396391.358160956,0,0,0,0,0,0,0,15.2439769226185,4.22472872074428,4.69487128712871,5.03554194630416,4.86908514663516,-0.866039603960396,-0.851399395030538,-0.705596314970647,0.871096637173699,0.691097003923045,0.700091086189399,8.70694650405804,0.00210245932996017,609.64640769604,610.500474409313,627.237339352363,5.90397867923842,1253.57003774106,1310.90430116002,0,1253.57003774106,15.2079553758693,15.2079553758693,0.0524207518486063,15.1941203902502,25.5,1014.9,36.9000000000001,23.885715973827
 47192,2873.92457415842,456.828329702971,45,15.9029306930693,15.70545829,4.4500297029703,1.47643564356436,750,302.061461674257,323.219532091089,20,40,10,32,5305975.99953543,396394.948522018,0,0,0,0,0,0,0,15.2480177572816,8.4602682140237,4.4500297029703,4.77293409364388,4.6609040624556,1.47643564356436,1.49107585249421,1.20239263658311,0.704617373060244,0.559018293325084,0.553649444003031,8.72664625997164,0,625.280993765347,625.479010218087,631.198811179064,5.90240655753575,1288.28429223495,0,0,1288.28429223495,15.2480177572816,15.2480177572816,0,15.163896946104,25.5,1014.9,36.9000000000001,21.9402929317955
 47193,2873.9259819802,456.831095247525,45,15.5442277227723,15.70545829,4.5650396039604,1.41633663366337,749.613861386139,314.925775668317,330.328436730693,20,40,10,32,5305978.54545565,396398.440249715,0,0,0,0,0,0,0,15.2480177572816,12.6958287021574,4.5650396039604,4.89628937758184,4.75885568230538,1.41633663366337,1.43097684259322,1.16641404719434,0.715343940906883,0.567528369687268,0.548347803825994,8.72215333318433,-1.03052879760998E-19,645.25421239901,644.614123177963,631.296494844708,5.90240655753575,1328.74787053117,-95.3422213377722,0,1328.74787053117,15.2466362461114,15.2466362461114,-0.00381368885351089,15.1310289842775,25.5,1014.9,36.9000000000001,22.714776602888
 47194,2873.92738148515,456.833786435644,45,15.1516534653465,15.598293389901,4.53929702970297,1.08287128712871,748.688118811881,327.858331173267,323.344447325743,20,40,9.96039603960396,32,5305981.07763518,396401.839075515,0,0,0,0,0,0,0,15.1439741649524,16.9236473535463,4.53929702970297,4.8686788629263,4.73096087608874,1.08287128712871,1.09751149605857,0.900711319718383,0.71272955702269,0.565454210756597,0.551995604504617,8.71138182921988,-5.76016254783606E-05,651.20277849901,650.313078685413,631.226022420489,5.94315950261482,1348.56913189823,-1458.59431107551,0,1348.56913189823,15.1384711045157,15.1384711045157,-0.0583433742958579,15.0911201882136,25.5,1014.9,36.9000000000001,22.4420100515529
-47195,2873.92881910891,456.83637009901,45,14.9504356435644,15.3989487128713,3.96039603960396,0.0106930693069308,745.405940594059,328.96899629604,308.688611536634,20,40,10,32,5305983.68283035,396405.105227601,0,0,0,0,0,0,0,14.9504356435643,21.0985419677642,3.96039603960396,4.24777148546689,4.22723916040919,0.0106930693069308,0.0253332782367882,0.0301688221089921,0.471351503057007,0.373953471585226,0.397684885104431,8.67319195152773,-0.000460813003826886,637.657607832673,637.336283331095,630.34092177866,6.01992915126335,1331.73354904263,-779.152367080045,0,1331.73354904263,14.956603470248,14.956603470248,-0.0311625221928142,15.0279935342206,25.5,1014.9,36.9000000000001,18.007481287552
+47195,2873.92881910891,456.83637009901,45,14.9504356435644,15.3989487128713,3.96039603960396,0.0106930693069308,745.405940594059,328.96899629604,308.688611536634,20,40,10,32,5305983.68283035,396405.105227601,0,0,0,0,0,0,0,14.9504356435643,21.0985419677642,3.96039603960396,4.24777148546689,4.22723916040919,0.0106930693069308,0.0253332782367882,0.0301688221089921,0.471351503057007,0.373953471585227,0.397684885104431,8.67319195152773,-0.000460813003826886,637.657607832673,637.336283331095,630.34092177866,6.01992915126335,1331.73354904263,-779.152367080045,0,1331.73354904263,14.956603470248,14.956603470248,-0.0311625221928142,15.0279935342206,25.5,1014.9,36.9000000000001,18.007481287552
 47196,2873.93018633663,456.838965445544,45,14.899,15.34597,4.40620792079208,2.96990099009901,741.554455445545,317.236630641584,299.83543719505,20,40,10.5940594059406,32,5305986.15736842,396408.383588984,0,0,0,0,0,0,0,14.899,25.242773045872,4.40620792079208,4.72593250215719,4.60350146799438,2.96990099009901,2.98454119902886,2.42525467252209,0.659219224357001,0.523001021287093,0.493564109904068,8.62837788690556,-0.00169924795161164,617.072067836634,617.614542909235,629.492705718255,6.0406910921979,1286.49911158172,-255.944116526466,0,1286.49911158172,14.8946405254387,14.8946405254387,-0.0102250324042263,14.9681537185426,25.5,1014.9,36.9000000000001,21.2883123709639
 47197,2873.93150158416,456.841614257426,45,14.8647821782178,15.3107256435644,4.26432673267327,2.92405940594059,741.356435643564,303.447917094059,304.924491955446,20,40,11,32,5305988.53442756,396411.726818208,0,0,0,0,0,0,0,14.8647821782178,29.3752328368511,4.26432673267327,4.57375608869034,4.48087181655723,2.92405940594059,2.93869961487045,2.376305792479,0.54854087240799,0.435192764238513,0.454825878864079,8.62607382188643,0.00187205282804672,608.372409049505,609.279934620547,629.175584281591,6.05459665406687,1270.95308342527,3.07519930168469,0,1270.95308342527,14.8710117635526,14.8710117635526,0.000108921783267436,14.9162646591487,25.5,1014.9,36.9000000000001,20.1686708826145
 47198,2873.9328729703,456.844193762376,45,14.8709405940594,15.3170688118812,3.23481188118812,1.44693069306931,742.232673267327,300.280135288119,319.276922348515,20,40,11,32,5305991.01702636,396414.985579189,0,0,0,0,0,0,0,14.8709405940594,33.5061634199094,3.23481188118812,3.4695372716145,3.6053275317909,1.44693069306931,1.46157090199916,1.08170642341575,1.08431392723983,0.860255997381435,0.79824557250266,8.6362693095961,-0.000172804876435082,619.557057636634,619.995258880522,629.600543339147,6.05208909346002,1295.30618634136,51.7062810278324,0,1295.30618634136,14.8743939809822,14.8743939809822,0.00206951388207786,14.9004292683402,25.5,1014.9,36.9000000000001,13.8528045779765
@@ -18,16 +18,16 @@ Time,Lat,Long,Heading,v_veh_GPS,v_veh_CAN,vair_ar,beta_ar,n_eng,tq_l,tq_r,t_amb_
 47202,2873.93838712871,456.854494455446,45,14.9564158415841,15.4051083168317,3.83822772277228,1.36861386138614,745.069306930693,321.384760165347,301.064386651485,20,40,11,32,5306001.00082976,396427.999963367,0,0,0,0,0,0,0,14.9564158415841,50.0855559116585,3.83822772277228,4.11673835456895,4.12359628955563,1.36861386138614,1.383254070316,1.077984870713,0.457041271921343,0.362600244582318,0.418247367804442,8.6692750409952,0.00181445120256836,622.449146816832,622.765991734007,629.673851560589,6.01750500611247,1298.85178994487,-19.470675760469,0,1298.85178994487,14.9566746397412,14.9566746397412,-0.000792405973271236,14.955657060115,25.5,1014.9,37.02,17.2122610038016
 47203,2873.93979425743,456.857042673267,45,14.9653465346535,15.4143069306931,3.83647524752475,0.616930693069307,745.455445544554,306.723286346535,302.097965552475,20,40,11,32,5306003.55034462,396431.220925879,0.97029702970297,0.97029702970297,5148399.30752813,384656.257632475,1.94111452533453,0,0,14.9653465346534,54.2397501085782,3.83647524752475,4.11485871568664,4.12268186663296,0.616930693069307,0.631570901999164,0.487008064495368,0.889342963231702,0.705572988254935,0.648264283914241,8.67376796778251,-0.000720020318479509,608.82125189901,609.70994336467,629.055096427493,6.01392340128442,1270.32739979813,141.703694380427,0,1270.32739979813,14.9616502303695,14.9616502303695,0.00567346338594221,14.971840635188,25.5,1014.9,37.08,17.5516822635468
 47204,2873.94120217822,456.859594950495,45,14.9892475247525,15.438924950495,4.67934653465347,2.58346534653465,746.420792079208,299.671384894059,314.993615426733,20,40,11,32,5306006.10123771,396434.446968462,1,1,5306005.92624673,396434.589525521,6.05103117161141,0,0,14.9892475247524,58.4004287664439,4.67934653465347,5.01889068208112,4.84120372272496,2.58346534653465,2.59810555546451,2.12905394495165,0.896273494326387,0.71107142444529,0.719967373531082,8.68500028475079,0.000748821131218688,614.665000320792,615.308479494696,629.296387399037,6.00432459995128,1282.13340159559,228.910815206063,0,1282.13340159559,14.9921498872659,14.9921498872659,0.00915079131675812,14.9825572800915,25.5,1014.9,37.14,23.5179164124958
-47205,2873.94261336634,456.862155346535,45,15.0066237623762,15.4568224752475,4.68379207920792,2.8590099009901,747.118811881188,306.712541479208,327.895135249505,20,40,11,32,5306008.65800327,396437.683229977,1,1,5306008.53089895,396437.786775995,10.1749399659988,0,0,15.0066237623762,62.5672939204593,4.68379207920792,5.02365880557356,4.84592775352353,2.8590099009901,2.87365010991995,2.35615628772597,0.896598268131984,0.711329088399463,0.716600039753733,8.69312211394323,-0.00112323169682803,634.607676728713,634.414331825615,630.212833434829,5.99737246664263,1323.43282035226,-26.6245334849506,0,1323.43282035226,15.0062014508381,15.0062014508381,-0.00105654129769425,14.9953899919761,25.5,1014.9,37.2,23.5457800123887
-47206,2873.94402376238,456.864724059406,45,15.0010693069307,15.4511013861386,4.63250495049505,2.35574257425743,746.905940594059,321.373149209901,328.940927193069,20,40,11,32,5306011.21311749,396440.929822116,1,1,5306011.13995107,396440.989427422,14.3058150688536,0,0,15.0010693069307,66.7352022262899,4.63250495049505,4.96865016483676,4.8021161743489,2.35574257425743,2.37038278318728,1.94014736658284,0.838595368324311,0.665311656388716,0.667071012885275,8.69064524404767,0.00112323169682803,650.31407640297,649.461667837791,630.951481592493,5.99959460156472,1356.30731665258,-12.620266972381,0,1356.30731665258,14.9995080874424,14.9995080874424,-0.000513293903646921,15.0088650780221,25.5,1014.9,37.26,23.1057958069247
-47207,2873.94542584158,456.867297029703,45,15.018702970297,15.4692640594059,4.68385148514852,2.38485148514851,747.391089108911,330.174312951485,317.169494970297,20,40,11,32,5306013.7527327,396444.181438148,1,1,5306013.74528046,396444.187509146,18.4307960344039,0,0,15.018702970297,70.9029651525825,4.68385148514852,5.02372252214584,4.84667890918012,2.38485148514851,2.39949169407837,1.96466257127688,0.894653503922113,0.709786181836146,0.678863238871698,8.69629020334455,-0.00123843494778476,647.343807921782,646.616036196216,630.834413272057,5.9925473782947,1349.40491388603,212.370350067835,0,1349.40491388603,15.0186313106558,15.0186313106558,0.00850406822860764,15.0181938124895,25.5,1014.9,37.32,23.5383149508155
+47205,2873.94261336634,456.862155346535,45,15.0066237623762,15.4568224752475,4.68379207920792,2.8590099009901,747.118811881188,306.712541479208,327.895135249505,20,40,11,32,5306008.65800327,396437.683229977,1,1,5306008.53089895,396437.786775995,10.1749399659988,0,0,15.0066237623762,62.5672939204593,4.68379207920792,5.02365880557356,4.84592775352353,2.8590099009901,2.87365010991995,2.35615628772597,0.896598268131984,0.711329088399462,0.716600039753733,8.69312211394323,-0.00112323169682803,634.607676728713,634.414331825615,630.212833434829,5.99737246664263,1323.43282035226,-26.6245334849506,0,1323.43282035226,15.0062014508381,15.0062014508381,-0.00105654129769425,14.9953899919761,25.5,1014.9,37.2,23.5457800123887
+47206,2873.94402376238,456.864724059406,45,15.0010693069307,15.4511013861386,4.63250495049505,2.35574257425743,746.905940594059,321.373149209901,328.940927193069,20,40,11,32,5306011.21311749,396440.929822116,1,1,5306011.13995107,396440.989427422,14.30581506885,0,0,15.0010693069307,66.7352022262899,4.63250495049505,4.96865016483676,4.8021161743489,2.35574257425743,2.37038278318728,1.94014736658284,0.838595368324311,0.665311656388716,0.667071012885275,8.69064524404767,0.00112323169682803,650.31407640297,649.461667837791,630.951481592493,5.99959460156472,1356.30731665258,-12.620266972381,0,1356.30731665258,14.9995080874424,14.9995080874424,-0.000513293903646921,15.0088650780221,25.5,1014.9,37.26,23.1057958069247
+47207,2873.94542584158,456.867297029703,45,15.018702970297,15.4692640594059,4.68385148514852,2.38485148514851,747.391089108911,330.174312951485,317.169494970297,20,40,11,32,5306013.7527327,396444.181438148,1,1,5306013.74528046,396444.187509146,18.4307960344074,0,0,15.018702970297,70.9029651525825,4.68385148514852,5.02372252214584,4.84667890918012,2.38485148514851,2.39949169407837,1.96466257127688,0.894653503922113,0.709786181836146,0.678863238871698,8.69629020334455,-0.00123843494778476,647.343807921782,646.616036196216,630.834413272057,5.9925473782947,1349.40491388603,212.370350067835,0,1349.40491388603,15.0186313106558,15.0186313106558,0.00850406822860764,15.0181938124895,25.5,1014.9,37.32,23.5383149508155
 47208,2873.94683178218,456.869885742574,45,15.0345049504951,15.4855400990099,4.26457425742574,2.33683168316832,747.188118811881,325.024283345545,303.403439076238,20,40,11,32,5306016.29915042,396447.452789319,1,1,5306016.36298729,396447.400784371,22.5753740289219,0,0,15.034504950495,75.0780202130886,4.26457425742574,4.57402157440818,4.49089037029891,2.33683168316832,2.35147189209817,1.9020281667478,0.492733031531852,0.390916813696389,0.423423162014333,8.69392853669993,0.00103682925861049,628.427722421782,628.493697503931,629.922963381032,5.98623685209175,1308.23232361964,35.5956375634449,0,1308.23232361964,15.0337296343496,15.0337296343496,0.00141598318247764,15.0263178076075,25.5,1014.9,37.38,20.2395396745767
 47209,2873.9482339604,456.872478217822,45,15.033099009901,15.484091980198,4.34718811881188,2.72009900990099,747.40099009901,310.657973860396,300.299207814852,20,40,11,32,5306018.83851666,396450.72869912,1,1,5306018.98011343,396450.613346773,26.7190326028419,0,0,15.033099009901,79.2546292339907,4.34718811881188,4.66263008759502,4.56100693338006,2.72009900990099,2.73473921883084,2.21538714746656,0.576770434336306,0.457589091853803,0.455400500114169,8.6964054065955,-0.00083522356943623,610.957181675247,611.756246379914,629.0497783642,5.98680653184687,1272.34672081915,-38.4506251510467,0,1272.34672081915,15.0355239682384,15.0355239682384,-0.00153171257719922,15.0367901344142,25.5,1014.9,37.44,20.8847488261593
 47210,2873.94963326733,456.875078910891,45,15.0419504950495,15.493209009901,4.42388118811881,3.49306930693069,747.331683168317,300.283703189109,310.710817094059,20,40,11,32,5306021.37238241,396454.014747069,1,1,5306021.60000974,396453.829309609,30.8670771578963,0,0,15.0419504950495,83.4308265387211,4.42388118811881,4.74488818241108,4.62661803932498,3.49306930693069,3.50770951586055,2.84510229018174,0.650821611612579,0.516338654839892,0.481773271075955,8.6955989838388,0.000604817067522787,610.994520283168,611.792018203862,629.036912532206,5.98327718367948,1271.55530507427,110.771020065367,0,1271.55530507427,15.0390864621116,15.0390864621116,0.0044263089675316,15.0457592973476,25.5,1014.9,37.5025247524752,21.4853788572527
 47211,2873.95103267327,456.877686831683,45,15.0613465346535,15.5131869306931,4.06125742574257,3.4319801980198,747.638613861386,303.439527934653,325.065881354455,20,40,11,32,5306023.90627186,396457.309798577,1,1,5306024.22432432,396457.05069594,35.022117099663,0,0,15.0613465346535,87.6112650150688,4.06125742574257,4.35595160577302,4.31921840888781,3.4319801980198,3.44662040694965,2.75405002901987,0.379400001566789,0.301002429790029,0.326001478873299,8.69917028461846,-0.000921626007653771,628.505409289109,628.568124517636,629.924974002207,5.9755775591789,1306.84077128709,172.877320950953,0,1306.84077128709,15.061122831095,15.061122831095,0.00692197932664634,15.0493731893591,25.5,1014.9,37.58,18.7061602806508
 47212,2873.95243564357,456.88029970297,45,15.0636534653465,15.5155630693069,4.17563366336634,3.35861386138614,748.381188118812,317.223997390099,330.166420719802,20,40,11,32,5306026.44665493,396460.611132202,1,1,5306026.8543055,396460.279038117,39.1861288961071,0,0,15.0636534653465,91.7965905101184,4.17563366336634,4.47862724627331,4.41669438296087,3.35861386138614,3.37325407031599,2.70847096494988,0.48473423496515,0.384570853780652,0.384300387244121,8.70781052844022,0.000662418693001148,647.390418109901,646.660690549662,630.901945390652,5.97466059969836,1347.2611751815,-127.449899507353,0,1347.2611751815,15.064031271444,15.064031271444,-0.0051029855460815,15.0534863090402,25.5,1014.9,37.66,19.6015047719887
 47213,2873.95383158416,456.882911287129,45,15.0555742574258,15.5072414851485,3.88305940594059,3.5,748.876237623762,328.963733893069,321.323022814852,20,40,11,32,5306028.97404719,396463.910625979,1,1,5306029.47820352,396463.499913111,43.3405092997197,0,0,15.0555742574257,95.9792415827256,3.88305940594059,4.16482312778444,4.1672305049484,3.5,3.51464020892985,2.783419582528,0.409644616516821,0.324997428605074,0.322536204595619,8.71357069098805,-0.000144004063695902,650.286756707921,649.435494521145,631.042378823392,5.9778687224668,1354.90240567479,4.05773878962601,0,1354.90240567479,15.0539204979904,15.0539204979904,0.000163382674900543,15.0597372942262,25.5,1014.9,37.74,17.4573109504908
-47214,2873.95525415842,456.885506633663,45,15.0446534653465,15.4959930693069,3.84913861386139,3.5,748.049504950495,327.865277861386,306.66626689604,20,40,11,32,5306031.5511389,396467.19077578,1,1,5306032.11245517,396466.733497354,47.5112824699983,0,0,15.0446534653465,100.16024152772,3.84913861386139,4.12844096501141,4.13774196103218,3.5,3.51464020892985,2.78045685617312,0.365756690662614,0.290178313512806,0.306899445407963,8.70395121953317,0.000403211378348525,634.531544757426,634.341394461788,630.235173747844,5.98220108877817,1321.57063786926,18.0809615503553,0,1321.57063786926,15.0492668365846,15.0492668365846,0.000720245291858835,15.0545830819645,25.5,1014.9,37.82,17.1696494075678
+47214,2873.95525415842,456.885506633663,45,15.0446534653465,15.4959930693069,3.84913861386139,3.5,748.049504950495,327.865277861386,306.66626689604,20,40,11,32,5306031.5511389,396467.19077578,1,1,5306032.11245517,396466.733497354,47.5112824699983,0,0,15.0446534653465,100.16024152772,3.84913861386139,4.12844096501141,4.13774196103217,3.5,3.51464020892985,2.78045685617312,0.365756690662614,0.290178313512806,0.306899445407963,8.70395121953317,0.000403211378348525,634.531544757426,634.341394461788,630.235173747844,5.98220108877817,1321.57063786926,18.0809615503553,0,1321.57063786926,15.0492668365846,15.0492668365846,0.000720245291858835,15.0545830819645,25.5,1014.9,37.82,17.1696494075678
 47215,2873.9567170297,456.888068514852,45,15.0873465346535,15.5399669306931,4.09562376237624,3.5,747.638613861386,314.938544687129,299.671506759406,20,40,11,32,5306034.20362433,396470.430576103,1,1,5306034.75702443,396469.979746612,51.6983913533332,0,0,15.0873465346535,104.34390142871,4.09562376237624,4.39281164283816,4.34991411203596,3.5,3.51464020892985,2.81043385860924,0.446580201814021,0.354300804657425,0.335432095446212,8.69917028461846,-8.6402438217541E-05,614.610051446535,615.25583635725,629.180321873051,5.96528699487375,1275.76662836152,102.299622563596,0,1275.76662836152,15.0796482697775,15.0796482697775,0.00409273600626807,15.0525558240342,25.5,1014.9,37.9,18.9957487953658
 47216,2873.95814118812,456.890667326733,45,15.0336930693069,15.4847038613861,3.88643564356436,3.35910891089109,747.465346534653,302.068313250495,306.769692614852,20,40,11,32,5306036.78357666,396473.715089248,1,1,5306037.39455385,396473.217354362,55.8743541624037,0,0,15.0336930693069,108.530255746642,3.88643564356436,4.1684443529758,4.16887095206021,3.35910891089109,3.37374911982094,2.67464456892656,0.373476494983779,0.296302930931304,0.303864472735921,8.69715422772672,0.000403211378348525,608.838005865346,609.725994308774,628.94765637729,5.98660082402195,1268.00184448555,-366.718783662197,0,1268.00184448555,15.0380583276149,15.0380583276149,-0.0146717642061247,15.0538439799037,25.5,1014.9,37.98,17.4368606431853
 47217,2873.9595590099,456.893248613861,45,15.0327128712871,15.4836942574258,3.58688118811881,3.49950495049505,747.079207920792,301.087414968317,321.434785125743,20,40,11,32,5306039.35218482,396476.977559359,1,1,5306040.01676397,396476.436157437,60.0260621422679,0,0,15.0327128712871,112.702136494717,3.58688118811881,3.8471535372438,3.91391620145233,3.49950495049505,3.5141451594249,2.74183119568062,0.495485405003451,0.393100448644253,0.376862822715147,8.69266130093941,4.12211519043994E-19,622.522200094059,622.835979590746,629.644104915764,5.9869759001815,1295.89051386576,259.19961649204,0,1295.89051386576,15.0314756396432,15.0314756396432,0.0103679922447725,15.0561739207719,25.5,1014.9,38.06,15.3858382410301
@@ -35,16 +35,16 @@ Time,Lat,Long,Heading,v_veh_GPS,v_veh_CAN,vair_ar,beta_ar,n_eng,tq_l,tq_r,t_amb_
 47219,2873.9623,456.898534059406,45,15.0645544554456,15.5164910891089,3.42829702970297,3.45386138613861,748.737623762376,326.64081180099,324.972862295049,20,40,11,32,5306044.31133014,396483.652398685,1,1,5306045.26355075,396482.876668552,68.3332250126431,0,0,15.0645544554455,121.069031874255,3.42829702970297,3.67706214753699,3.78082837606038,3.45386138613861,3.46850159506847,2.68195885123473,0.596014793151597,0.472856879780087,0.471295088031231,8.71195784547466,2.06105759521997E-19,651.61367409604,650.706732497098,631.123300042419,5.97430315365589,1356.60522328691,39.9602516842342,0,1356.60522328691,15.0654279972552,15.0654279972552,0.00159842716944953,15.0559473177922,25.5,1014.9,38.22,14.3454582777192
 47220,2873.96370623762,456.901146138614,45,15.0627227722772,15.5146044554455,3.23548514851485,3.41039603960396,747.816831683168,329.681431716832,310.592955122772,20,40,11,32,5306046.85779792,396486.952830948,1,1,5306047.89551786,396486.107448472,72.5003810842391,0,0,15.0627227722772,125.253882204288,3.23548514851485,3.47025939276703,3.61669023172742,3.41039603960396,3.42503624853381,2.61678580488323,0.75757453838692,0.60103261955675,0.626522937187487,8.70124394313568,-0.00123843494778476,640.274386839604,639.843258432899,630.533783016247,5.97502518562454,1331.5286984935,-20.9933094067336,0,1331.5286984935,15.0638807960004,15.0638807960004,-0.000830528597415389,15.0648908349966,25.5,1014.9,38.2924257425743,13.1165232210808
 47221,2873.96507346535,456.903792871287,45,15.0622178217822,15.5140843564356,2.77327722772277,3.4650495049505,747.455445544554,319.224011010891,300.264864686138,20,40,10.970297029703,32,5306049.33123349,396490.295129721,1,1,5306050.51885225,396489.327631605,76.6538691038874,0,0,15.0622178217822,129.438408111878,2.77327722772277,2.97451260212691,3.22338590343725,3.4650495049505,3.47968971388035,2.56688846223602,1.23013468989047,0.975944989712534,0.926035107955234,8.69703902447577,0.00086402438217541,619.48887569703,619.929937956269,629.456532540619,5.97523110920104,1287.71307964645,-6.27196421923428,0,1287.71307964645,15.0651911577296,15.0651911577296,-0.000257327712968142,15.0673234427784,25.5,1014.9,38.32,10.4378733241873
-47222,2873.96645524753,456.906412178218,45,15.0751881188119,15.5274437623762,2.89117821782178,3.09178217821782,747.519801980198,304.883054069307,303.48418969901,20,40,10.5049504950495,32,5306051.83224361,396493.60374671,1,1,5306053.13669342,396492.541071731,80.7986597926914,0,0,15.0751881188119,133.623550108578,2.89117821782178,3.10096875924926,3.32452386189709,3.09178217821782,3.10642238714768,2.32002324684367,1.11130458244394,0.881669420587846,0.889930376729714,8.69778784560698,-0.00080642275669705,608.367243768317,609.274986082306,628.870797147532,5.97009096880309,1263.61757847796,56.7267328764036,0,1263.61757847796,15.0704021174395,15.0704021174395,0.00227510374799821,15.0692123185999,25.5,1014.9,38.34,11.1061595344325
+47222,2873.96645524753,456.906412178218,45,15.0751881188119,15.5274437623762,2.89117821782178,3.09178217821782,747.519801980198,304.883054069307,303.48418969901,20,40,10.5049504950495,32,5306051.83224361,396493.60374671,1,1,5306053.13669342,396492.541071731,80.7986597926914,0,0,15.0751881188119,133.623550108578,2.89117821782178,3.10096875924926,3.32452386189709,3.09178217821782,3.10642238714768,2.32002324684367,1.11130458244394,0.881669420587847,0.889930376729714,8.69778784560698,-0.00080642275669705,608.367243768317,609.274986082306,628.870797147532,5.97009096880309,1263.61757847796,56.7267328764036,0,1263.61757847796,15.0704021174395,15.0704021174395,0.00227510374799821,15.0692123185999,25.5,1014.9,38.34,11.1061595344325
 47223,2873.96786752475,456.909020990099,45,15.0660297029703,15.5180105940594,2.79014851485149,1.31049504950495,748.064356435644,299.843570551485,317.29109760099,20,40,10.9207920792079,32,5306054.38997742,396496.900301042,1,1,5306055.77125579,396495.775037383,84.9699249159426,0,0,15.0660297029703,137.810213804948,2.79014851485149,2.99260810865499,3.2382251739549,1.31049504950495,1.32513525843481,0.986355621702364,1.20788756981761,0.958294918099178,0.949024983648863,8.7041240244096,0.000547215442044427,617.134668152475,617.674516425429,629.330748407662,5.97371505152319,1283.54722940643,2.1456690792101,0,1283.54722940643,15.07056327811,15.07056327811,8.1691337450638E-05,15.0737414218797,25.5,1014.9,38.36,10.5275541252486
 47224,2873.96921029703,456.911695742574,45,15.0726534653465,15.5248330693069,2.9869801980198,2.63168316831683,749.064356435644,308.738838371287,328.991580932673,20,40,11,32,5306056.81749272,396500.276681096,1,1,5306058.39296062,396498.993220204,89.1208328739515,0,0,15.0726534653465,141.9965563242,2.9869801980198,3.2037223514827,3.40601034242696,2.63168316831683,2.64632337724669,1.98442803696527,1.00660931563827,0.798607929902864,0.811985062539409,8.71575955275623,1.37403839681331E-19,637.73041930396,637.406039524272,630.401966293983,5.97109497303617,1327.56618513838,-9.12201216752104,0,1327.56618513838,15.0720300950887,15.0720300950887,-0.000364887973947681,15.0775349670526,25.5,1014.9,38.38,11.6605501810001
 47225,2873.97059762376,456.914336336634,45,15.0848514851485,15.537397029703,3.0090297029703,1.56079207920792,748.321782178218,323.390589321782,327.828269276238,20,40,11,32,5306059.32830331,396503.611989649,1,1,5306061.02778156,396502.227503251,93.2925073828079,0,0,15.0848514851485,146.184470268094,3.0090297029703,3.22737181922804,3.42546739465393,1.56079207920792,1.57543228813778,1.19971012309511,0.999589648599336,0.793038776433412,0.75299612507211,8.70711930893447,0.000345609752870164,651.21885859802,650.328484039526,631.113955138088,5.96626747562991,1353.2065742404,178.355599570809,0,1353.2065742404,15.0851585138712,15.0851585138712,0.00713165375943795,15.0774401781332,25.5,1014.9,38.4,11.8429749826403
-47226,2873.97196534653,456.91700990099,45,15.0948712871287,15.5477174257426,3.19291089108911,3.2660396039604,747.975247524752,330.328071139604,314.870706009901,20,40,11,32,5306061.80206592,396506.987712931,1,1,5306063.66761357,396505.467937469,97.4721158543719,0,0,15.0948712871287,150.376873045872,3.19291089108911,3.42459584929827,3.58231496191212,3.2660396039604,3.28067981289025,2.4982114769263,0.811902390565266,0.644134399850436,0.685199677072183,8.70308719515099,-2.06105759521997E-19,645.198777149505,644.561014073375,630.808347630387,5.96231167116811,1339.18762831525,-113.313656034613,0,1339.18762831525,15.0930407803156,15.0930407803156,-0.00453250770622006,15.0774396477017,25.5,1014.9,38.42,12.897509288675
-47227,2873.97331772277,456.919693861386,45,15.077099009901,15.529411980198,3.34215841584158,0.577029702970297,747.663366336634,323.172995039604,302.032015041584,20,40,10.8514851485149,32,5306064.24717115,396510.375873125,1,1,5306066.30210375,396508.701814502,101.64326667329,0,0,15.077099009901,154.567590180086,3.34215841584158,3.58467311772808,3.70838878075532,0.577029702970297,0.591669911900154,0.473839761233246,0.66478425972134,0.527416121865943,0.531236923925948,8.69945829274586,0.000316808940130984,625.205010081188,625.406214918684,629.751343262544,5.96933989649516,1298.66858936583,-140.961168643843,0,1298.66858936583,15.0742886971865,15.0742886971865,-0.00564078685096234,15.076679981647,25.5,1014.9,38.44,13.8258110392735
+47226,2873.97196534653,456.91700990099,45,15.0948712871287,15.5477174257426,3.19291089108911,3.2660396039604,747.975247524752,330.328071139604,314.870706009901,20,40,11,32,5306061.80206592,396506.987712931,1,1,5306063.66761357,396505.467937469,97.4721158543719,0,0,15.0948712871287,150.376873045872,3.19291089108911,3.42459584929827,3.58231496191212,3.2660396039604,3.28067981289025,2.4982114769263,0.811902390565267,0.644134399850436,0.685199677072183,8.70308719515099,-2.06105759521997E-19,645.198777149505,644.561014073375,630.808347630387,5.96231167116811,1339.18762831525,-113.313656034613,0,1339.18762831525,15.0930407803156,15.0930407803156,-0.00453250770622006,15.0774396477017,25.5,1014.9,38.42,12.897509288675
+47227,2873.97331772277,456.919693861386,45,15.077099009901,15.529411980198,3.34215841584158,0.577029702970297,747.663366336634,323.172995039604,302.032015041584,20,40,10.8514851485149,32,5306064.24717115,396510.375873125,1,1,5306066.30210375,396508.701814502,101.6432666733,0,0,15.077099009901,154.567590180086,3.34215841584158,3.58467311772808,3.70838878075532,0.577029702970297,0.591669911900154,0.473839761233246,0.66478425972134,0.527416121865943,0.531236923925948,8.69945829274586,0.000316808940130984,625.205010081188,625.406214918684,629.751343262544,5.96933989649516,1298.66858936583,-140.961168643843,0,1298.66858936583,15.0742886971865,15.0742886971865,-0.00564078685096234,15.076679981647,25.5,1014.9,38.44,13.8258110392735
 47228,2873.97470534653,456.922340990099,45,15.0658415841584,15.5178168316832,3.2709702970297,1.71990099009901,748.920792079208,308.503704988119,301.116029635644,20,40,10.3762376237624,32,5306066.7583917,396513.719322619,1,1,5306068.94107464,396511.941191686,105.821511751914,0,0,15.0658415841584,158.752552968865,3.2709702970297,3.50831942527682,3.64735010132526,1.71990099009901,1.73454119902887,1.33124987197956,0.711161107368365,0.564209858740241,0.561993111005436,8.71408910561736,0,609.619734623762,610.474920578786,628.947091239002,5.97380399874582,1269.38405721596,117.293871359328,0,1269.38405721596,15.0677465934712,15.0677465934712,0.00469180581424568,15.0731312603469,25.5,1014.9,38.46,13.3426491927523
-47229,2873.97608217822,456.924998415842,45,15.0755247524753,15.5277904950495,3.12385148514852,3.09207920792079,748.925742574257,299.807078613861,312.964902557426,20,40,10.4356435643564,32,5306069.24939348,396517.075237005,1,1,5306071.57808371,396515.178160687,109.99665068393,0,0,15.0755247524752,162.939240592627,3.12385148514852,3.35052533402044,3.52254010259861,3.09207920792079,3.10671941685065,2.35802692378434,0.869533996694469,0.689857260699023,0.672381997863484,8.71414670724284,-0.000489613816566066,612.771981171287,613.494894213234,629.101594599553,5.96995632518486,1275.12387561889,-105.507359608859,0,1275.12387561889,15.074456327811,15.074456327811,-0.00421663453473998,15.0678825252043,25.5,1014.9,38.48,12.4543039307647
+47229,2873.97608217822,456.924998415842,45,15.0755247524753,15.5277904950495,3.12385148514852,3.09207920792079,748.925742574257,299.807078613861,312.964902557426,20,40,10.4356435643564,32,5306069.24939348,396517.075237005,1,1,5306071.57808371,396515.178160687,109.99665068393,0,0,15.0755247524752,162.939240592627,3.12385148514852,3.35052533402044,3.52254010259861,3.09207920792079,3.10671941685065,2.35802692378434,0.869533996694469,0.689857260699023,0.672381997863485,8.71414670724284,-0.000489613816566066,612.771981171287,613.494894213234,629.101594599553,5.96995632518486,1275.12387561889,-105.507359608859,0,1275.12387561889,15.074456327811,15.074456327811,-0.00421663453473998,15.0678825252043,25.5,1014.9,38.48,12.4543039307647
 47230,2873.97743722772,456.927674356435,45,15.053603960396,15.5052120792079,3.23938613861386,3.43029702970297,748.123762376238,305.078754094059,326.684834678218,20,40,10.7326732673267,32,5306071.6996355,396520.453487613,1,1,5306074.20977055,396518.408596585,114.163363025322,0,0,15.053603960396,167.124228408909,3.23938613861386,3.47444344768022,3.61947578905044,3.43029702970297,3.44493723863282,2.63251425408815,0.754031991123281,0.598222088904147,0.61795542995583,8.70481524391534,0.000230406501913443,631.763588772277,631.689585988717,630.093486168896,5.97866148598699,1315.15643511568,-51.0485144695384,0,1315.15643511568,15.054631016567,15.054631016567,-0.0020436449585536,15.0603041096214,25.5012623762376,1014.9,38.4835891089109,13.1478433733593
-47231,2873.97872683168,456.930401386139,45,15.0605148514852,15.5123302970297,3.2500099009901,3.40534653465347,747.816831683168,319.47197730099,329.661783688119,20,40,10.9108910891089,32,5306074.02751059,396523.893199621,1,1,5306076.82273941,396521.616055875,118.300439453852,0,0,15.0605148514851,171.306329784046,3.2500099009901,3.48583809468998,3.62891703671955,3.40534653465347,3.41998674358332,2.61419055593969,0.742893236693988,0.589384998408084,0.587185769858298,8.70124394313569,-0.00115203250956721,649.133760989109,648.33088019554,630.991737667714,5.97591634794337,1350.14350868387,50.3659864438541,0,1350.14350868387,15.0613813351632,15.0613813351632,0.00202322212419216,15.0546932756745,25.51,1014.9,38.39,13.2119736495648
+47231,2873.97872683168,456.930401386139,45,15.0605148514852,15.5123302970297,3.2500099009901,3.40534653465347,747.816831683168,319.47197730099,329.661783688119,20,40,10.9108910891089,32,5306074.02751059,396523.893199621,1,1,5306076.82273941,396521.616055875,118.300439453848,0,0,15.0605148514851,171.306329784046,3.2500099009901,3.48583809468998,3.62891703671955,3.40534653465347,3.41998674358332,2.61419055593969,0.742893236693988,0.589384998408085,0.587185769858298,8.70124394313569,-0.00115203250956721,649.133760989109,648.33088019554,630.991737667714,5.97591634794337,1350.14350868387,50.3659864438541,0,1350.14350868387,15.0613813351632,15.0613813351632,0.00202322212419216,15.0546932756745,25.51,1014.9,38.39,13.2119736495648
 47232,2873.98006722772,456.933084257426,45,15.0521188118812,15.5036823762376,3.33706930693069,3.18871287128713,747.381188118812,329.753685204951,319.158756385149,20,40,10.990099009901,32,5306076.45045847,396527.279590861,1,1,5306079.44752445,396524.838019702,122.456224265748,0,0,15.0521188118812,175.490003408909,3.33706930693069,3.57921473136926,3.70256593172948,3.18871287128713,3.20335308021698,2.46330809726686,0.653474800977054,0.518443600654605,0.534617164896277,8.69617500009359,0.000230406501913443,648.912441590099,648.118847686129,630.964424521598,5.97924524613704,1349.64549148662,-165.175931283741,0,1349.64549148662,15.0515909224586,15.0515909224586,-0.00660882919975231,15.0506806143333,25.52,1014.9,38.28,13.7461242823823
 47233,2873.98145059406,456.935725643564,45,15.0344851485148,15.4855197029703,3.04334653465347,3.39485148514851,747.044554455446,326.470922973267,304.832187649505,20,40,10.9405940594059,32,5306078.95393069,396530.615731356,1,1,5306082.07982538,396528.069209402,126.623908882649,0,0,15.0344851485148,179.668027226291,3.04334653465347,3.26417875914961,3.45159007151905,3.39485148514851,3.40949169407837,2.56859044569056,0.946829427619255,0.751180698822235,0.721875730078686,8.69225808956106,-0.000720020318479508,631.303110622772,631.248430180757,630.068354855462,5.98625582612581,1313.97068547342,-35.6386343331658,0,1313.97068547342,15.0355668071758,15.0355668071758,-0.00142006774935061,15.0498533852672,25.53,1014.9,38.17,11.9740737218734
 47234,2873.98283039604,456.938365742574,45,15.0308316831683,15.4817566336634,2.88036633663366,3.29792079207921,747.079207920792,312.641847050495,299.853858694059,20,40,10.970297029703,32,5306081.45083114,396533.950147273,1,1,5306084.70866024,396531.296144446,130.786105718922,0,0,15.0308316831683,183.843620873155,2.88036633663366,3.08937234309393,3.31275534769534,3.29792079207921,3.31256100100906,2.46653385447152,1.12753165889698,0.894543404300504,0.935982070393592,8.69266130093941,0.000374410565609345,612.495705744554,613.230211716665,629.138264628063,5.98770764517513,1275.18823397265,86.4248583768988,0,1275.18823397265,15.0349649054014,15.0349649054014,0.0034541820518694,15.0514755338874,25.54,1014.9,38.06,11.0623936420224
@@ -52,10 +52,10 @@ Time,Lat,Long,Heading,v_veh_GPS,v_veh_CAN,vair_ar,beta_ar,n_eng,tq_l,tq_r,t_amb_
 47236,2873.98562881188,456.943614653465,45,15.0536930693069,15.5053038613861,2.22612871287129,-2.15831683168317,748.841584158416,302.208990566337,323.447281190099,20,40,11,32,5306086.51722944,396540.581287312,1,1,5306089.97683349,396537.762907768,139.127129467199,0,0,15.0536930693069,192.207347440812,2.22612871287129,2.38766173255223,2.75755642244403,-2.15831683168317,-2.14367662275331,-1.49336785995753,1.80257849566992,1.43010148878026,1.39414371962824,8.7131674796097,0.000259207314652623,625.656271756435,625.838540993745,629.778406141875,5.97861813057246,1303.68166662904,29.4914196118552,0,1303.68166662904,15.0573478090383,15.0573478090383,0.0011777167815784,15.0646028576981,25.56,1014.9,37.84,7.63525070512308
 47237,2873.98701257426,456.946253465347,45,15.0795544554456,15.5319410891089,2.44620792079208,1.06158415841584,748.816831683168,315.197130136634,330.327348806931,20,40,11,32,5306089.02150031,396543.914222777,1,1,5306092.60788358,396540.992562054,143.292833661219,0,0,15.0795544554455,196.39222662123,2.44620792079208,2.62371039399962,2.94626751469118,1.06158415841584,1.0762243673457,0.796389486999624,1.57639372449799,1.25065455830294,1.27297814100438,8.71287947148231,0,645.524478943565,644.873048941388,630.815220016131,5.96836708147296,1342.72888298469,160.591497541369,0,1342.72888298469,15.0786143515341,15.0786143515341,0.00642366216819681,15.0742629208173,25.57,1014.9,37.73,8.71456980979078
 47238,2873.98842910891,456.94886950495,45,15.0970099009901,15.5499201980198,2.54631683168317,0.928514851485149,748.435643564356,328.004029163366,323.115522615842,20,40,11,32,5306091.58698717,396547.219877935,1,1,5306095.24999522,396544.235794548,147.476051433492,0,0,15.0970099009901,200.583580334102,2.54631683168317,2.73108343772351,3.03232055530547,0.928514851485149,0.943155060415002,0.70414306458157,1.47701432803665,1.17181048955651,1.20137967419254,8.70844414632048,0.000201605689174262,651.119551779208,650.233344279267,631.126432637599,5.96146461257303,1352.1167060847,33.9403519216169,0,1352.1167060847,15.0953747671797,15.0953747671797,0.00135607620167927,15.0826935717861,25.58,1014.9,37.62,9.22891320262108
-47239,2873.98976237624,456.951553564356,45,15.0805247524752,15.5329404950495,2.78026732673267,2.19851485148515,748.10396039604,328.855083750495,308.442322351485,20,40,11,32,5306093.99671715,396550.607492244,1,1,5306097.87010634,396547.452021064,151.624436090024,0,0,15.0805247524752,204.775731049173,2.78026732673267,2.98200991879875,3.2303986676726,2.19851485148515,2.213155060415,1.68247158163997,1.29025753865324,1.02364431361543,0.981072025308208,8.70458483741343,-1.37403839681331E-19,637.29740610198,636.991196193893,630.38605844497,5.96798731827388,1324.26925517091,-33.4591161443542,0,1324.26925517091,15.084293794726,15.084293794726,-0.00133837641189704,15.0857079501034,25.59,1014.9,37.51,10.8266142719863
-47240,2873.99110386139,456.954231287129,45,15.104702970297,15.5578440594059,3.63224752475247,3.5,748.618811881188,316.967838230693,299.798220680198,20,40,11,32,5306096.42181282,396553.987483523,1,1,5306100.49261427,396550.671189698,155.776615579804,0,0,15.104702970297,208.967436632232,3.63224752475247,3.89581175960982,3.95664322286576,3.5,3.51464020892985,2.74766079296957,0.438795372527064,0.348124598750209,0.354016231883404,8.71057540646318,0.000518414629305246,616.766058910891,617.321374571806,629.284380892255,5.95843058489891,1280.44205002357,99.8624589286082,0,1280.44205002357,15.1002477208117,15.1002477208117,0.00399062183445843,15.0867550010116,25.5987376237623,1014.9,37.410099009901,15.6930971137435
+47239,2873.98976237624,456.951553564356,45,15.0805247524752,15.5329404950495,2.78026732673267,2.19851485148515,748.10396039604,328.855083750495,308.442322351485,20,40,11,32,5306093.99671715,396550.607492244,1,1,5306097.87010634,396547.452021064,151.624436090024,0,0,15.0805247524752,204.775731049173,2.78026732673267,2.98200991879875,3.2303986676726,2.19851485148515,2.213155060415,1.68247158163997,1.29025753865324,1.02364431361543,0.981072025308207,8.70458483741343,-1.37403839681331E-19,637.29740610198,636.991196193893,630.38605844497,5.96798731827388,1324.26925517091,-33.4591161443542,0,1324.26925517091,15.084293794726,15.084293794726,-0.00133837641189704,15.0857079501034,25.59,1014.9,37.51,10.8266142719863
+47240,2873.99110386139,456.954231287129,45,15.104702970297,15.5578440594059,3.63224752475247,3.5,748.618811881188,316.967838230693,299.798220680198,20,40,11,32,5306096.42181282,396553.987483523,1,1,5306100.49261427,396550.671189698,155.776615579804,0,0,15.104702970297,208.967436632232,3.63224752475247,3.89581175960982,3.95664322286576,3.5,3.51464020892985,2.74766079296958,0.438795372527064,0.348124598750209,0.354016231883404,8.71057540646318,0.000518414629305246,616.766058910891,617.321374571806,629.284380892255,5.95843058489891,1280.44205002357,99.8624589286082,0,1280.44205002357,15.1002477208117,15.1002477208117,0.00399062183445843,15.0867550010116,25.5987376237623,1014.9,37.410099009901,15.6930971137435
 47241,2873.99246227723,456.956894059406,45,15.0911188118812,15.5438523762376,3.79210891089109,3.5,749.326732673267,303.271371323762,305.130564804951,20,40,11,32,5306098.87860575,396557.34941144,1,1,5306103.11892155,396553.895022106,159.934810542988,0,0,15.0911188118812,213.16167681375,3.79210891089109,4.06727305562069,4.09188250150319,3.5,3.51464020892985,2.77087352936871,0.380609204010952,0.301961767882538,0.305189250333432,8.71881243890658,1.03052879760998E-19,608.401936128713,609.308222699941,628.850198006919,5.96379575256635,1265.40662166437,-169.06702395408,0,1265.40662166437,15.0892948730517,15.0892948730517,-0.00676268121861632,15.0859710501151,25.5999999999999,1014.9,37.37,16.7919708116103
-47242,2873.99383742574,456.959542871287,45,15.0665148514852,15.5185102970297,3.68771287128713,3.5,748.232673267327,300.358151532673,319.536822129703,20,40,11,32,5306101.36670701,396560.694502683,1,1,5306105.74947372,396557.124065174,164.099726371073,0,0,15.0665148514851,217.350004976566,3.68771287128713,3.95530179926378,4.00164614422466,3.5,3.51464020892985,2.75693498166791,0.414256100449165,0.328656015486574,0.320101761087993,8.70608247967587,-0.000547215442044427,619.894973662376,620.31899544976,629.476549384113,5.97352979886961,1289.53212469673,-14.6013944464415,0,1289.53212469673,15.0709991177335,15.0709991177335,-0.000580008495899431,15.0827777300628,25.5999999999999,1014.9,37.34,16.0581203587544
+47242,2873.99383742574,456.959542871287,45,15.0665148514852,15.5185102970297,3.68771287128713,3.5,748.232673267327,300.358151532673,319.536822129703,20,40,11,32,5306101.36670701,396560.694502683,1,1,5306105.74947372,396557.124065174,164.099726371073,0,0,15.0665148514851,217.350004976566,3.68771287128713,3.95530179926378,4.00164614422466,3.5,3.51464020892985,2.75693498166791,0.414256100449165,0.328656015486574,0.320101761087994,8.70608247967587,-0.000547215442044427,619.894973662376,620.31899544976,629.476549384113,5.97352979886961,1289.53212469673,-14.6013944464415,0,1289.53212469673,15.0709991177335,15.0709991177335,-0.000580008495899431,15.0827777300628,25.5999999999999,1014.9,37.34,16.0581203587544
 47243,2873.99527524752,456.962134455445,45,15.0823762376238,15.5348475247525,3.7350198019802,3.5,748.257425742574,310.906579695049,329.771946109901,20,40,11,32,5306103.97218047,396563.970387802,1,1,5306108.392959,396560.368983826,168.285118998574,0,0,15.0823762376238,221.536744580526,3.7350198019802,4.00604142965769,4.04280658379437,3.5,3.51464020892985,2.76358178027101,0.376254024053152,0.298506523433257,0.304068043286001,8.70637048780326,2.88008127391806E-05,640.678525804951,640.23043913434,630.562626742354,5.96725722669662,1331.40571755856,35.8816352460404,0,1331.40571755856,15.0795243603568,15.0795243603568,0.00143504449454678,15.0792787235967,25.5999999999999,1014.9,37.31,16.379650625659
 47244,2873.99664594059,456.964791485149,45,15.0856633663366,15.5382332673267,3.80453465346535,3.5,748.128712871287,325.218479612871,326.425810959406,20,40,11,32,5306106.451849,396567.325561611,1,1,5306111.0250844,396563.599958065,172.452525708052,0,0,15.0856633663366,225.726921890758,3.80453465346535,4.08060043865634,4.10214211206007,3.5,3.51464020892985,2.77286843544516,0.377475663668931,0.29947572873415,0.304502147630784,8.70487284554082,-0.000576016254783607,651.644290572277,650.736064261357,631.137122616896,5.96594968706258,1353.66993910515,-26.6907282162227,0,1353.66993910515,15.0824360356828,15.0824360356828,-0.00106334890914717,15.075443422027,25.5999999999999,1014.9,37.28,16.8749554122079
 47245,2873.9980419802,456.967427821782,45,15.0593861386139,15.5111677227723,3.45984158415842,3.5,748.915841584158,330.135556506931,312.57483790396,20,40,11,32,5306108.97893198,396570.655798319,1,1,5306113.6639131,396566.839160697,176.630545644057,0,0,15.0593861386138,229.913562732342,3.45984158415842,3.71089564741873,3.80735430808687,3.5,3.51464020892985,2.72183503075998,0.568686554767016,0.451175630118332,0.455549507342707,8.71403150399188,0.000115203250956722,642.710394410891,642.17704753833,630.65093793675,5.97636234898718,1338.85192124699,-48.5838133516097,0,1338.85192124699,15.0649054994608,15.0649054994608,-0.00194425383132269,15.0744496277073,25.5999999999999,1014.9,37.25,14.5505182285425
@@ -82,36 +82,36 @@ Time,Lat,Long,Heading,v_veh_GPS,v_veh_CAN,vair_ar,beta_ar,n_eng,tq_l,tq_r,t_amb_
 47266,2874.02732366337,457.022765643564,45,15.0942871287129,15.5471157425743,2.94912871287129,1.12247524752475,749.059405940594,304.680787293069,303.665083553465,20,40,11,32,5306161.983567,396640.557479519,2,1,5306169.03764869,396634.81029582,13.1049706041264,0,0,15.0942871287129,317.924534432013,2.94912871287129,3.16312427551035,3.37505496691735,1.12247524752475,1.13711545645461,0.907742733765987,1.05953596721319,0.840598047612171,0.941989498792302,8.71570195113075,-6.87019198406656E-20,608.345870846534,609.254509998431,628.839088716481,5.96256547726003,1264.57989159769,-57.89874274945,0,1264.57989159769,15.0973388883443,15.0973388883443,-0.00231594941672109,15.1005984230426,25.5999999999999,1014.9,38.04,11.6160937582177
 47267,2874.02873069307,457.025388712871,45,15.0965148514851,15.5494102970297,3.06867326732673,0.428415841584158,748.628712871287,299.886502272277,317.559036582178,20,40,11,32,5306164.53134498,396643.871490726,2,1,5306171.67693587,396638.049751587,17.2834763757012,0,0,15.0965148514851,322.117465510121,3.06867326732673,3.29134325779917,3.47704444735901,0.428415841584158,0.443056050514016,0.342371945915825,1.23261511810009,0.977912872988579,0.929994801442562,8.71069060971413,-0.000345609752870164,617.445538854455,617.972342538535,629.321871633281,5.96167359398756,1282.56626532115,43.7090656124576,0,1282.56626532115,15.096139692187,15.096139692187,0.00175091766602516,15.0994402249201,25.5999999999999,1014.9,38.08,12.6887787754227
 47268,2874.0301390099,457.028014950495,45,15.1075544554455,15.5607810891089,3.65563366336634,0.637128712871287,748.430693069307,308.987497368317,329.100223184158,20,40,11,32,5306167.08143835,396647.189488197,2,1,5306174.31909882,396641.292737062,21.466535043111,0,0,15.1075544554455,326.312000521122,3.65563366336634,3.9208948502315,3.97701276797347,0.637128712871287,0.651768921801144,0.474794425988651,0.726733473362787,0.576564418525543,0.615528791505516,8.708386544695,2.23281239482163E-19,638.087720552475,637.748347883913,630.441862856093,5.95732418975454,1324.12881442759,-35.4671841052911,0,1324.12881442759,15.1027298304088,15.1027298304088,-0.00141870622706076,15.0985827205399,25.5999999999999,1014.9,38.12,16.1792709038486
-47269,2874.03155079208,457.030642178218,45,15.0949504950495,15.547799009901,3.55919801980198,1.44019801980198,749.405940594059,323.616359651485,327.677729611881,20,40,11,32,5306169.63793053,396650.508830982,2,1,5306176.96447342,396644.539664518,25.6546783892,0,0,15.0949504950495,330.50678049912,3.55919801980198,3.81746161456038,3.89409898292683,1.44019801980198,1.45483822873184,1.1064443867925,0.710097633797277,0.563366136738151,0.586214854009645,8.71973406491424,-0.000115203250956721,651.294089263366,650.400557914763,631.143365764312,5.9622871893584,1354.41842463934,-7.37422695979368,0,1354.41842463934,15.0966819919615,15.0966819919615,-0.000294088814820733,15.0984725617948,25.5999999999999,1014.9,38.16,15.4696844218964
+47269,2874.03155079208,457.030642178218,45,15.0949504950495,15.547799009901,3.55919801980198,1.44019801980198,749.405940594059,323.616359651485,327.677729611881,20,40,11,32,5306169.63793053,396650.508830982,2,1,5306176.96447342,396644.539664518,25.6546783891964,0,0,15.0949504950495,330.50678049912,3.55919801980198,3.81746161456038,3.89409898292683,1.44019801980198,1.45483822873184,1.1064443867925,0.710097633797277,0.563366136738151,0.586214854009645,8.71973406491424,-0.000115203250956721,651.294089263366,650.400557914763,631.143365764312,5.9622871893584,1354.41842463934,-7.37422695979368,0,1354.41842463934,15.0966819919615,15.0966819919615,-0.000294088814820733,15.0984725617948,25.5999999999999,1014.9,38.16,15.4696844218964
 47270,2874.03297821782,457.033245445544,45,15.0919702970297,15.5447294059406,3.40032673267327,-0.92019801980198,748.737623762376,330.323380612871,314.599389904951,20,40,11,32,5306172.22393639,396653.798844519,2,1,5306179.60726077,396647.783416385,29.8387256089856,0,0,15.0919702970297,334.699080114081,3.40032673267327,3.64706226142088,3.75873747095151,-0.92019801980198,-0.905557810872124,-0.631817739484614,0.847899302862261,0.672693066222572,0.608254062579116,8.71195784547466,0.000115203250956722,644.922770517822,644.296589086707,630.796327600792,5.96346740494033,1340.24432624834,48.9342551405211,0,1340.24432624834,15.0946628761886,15.0946628761886,0.00195650753194331,15.0982925713527,25.5999999999999,1014.90126237624,38.2025247524753,14.4625919235547
-47271,2874.03438792079,457.035874455446,45,15.1059900990099,15.5591698019802,4.36088118811881,1.65069306930693,748.163366336634,322.942156107921,301.889369270297,20,40,11,32,5306174.77654114,396657.120332334,2,1,5306182.25213482,396651.029729471,34.0260764918393,0,0,15.1059900990099,338.894165675138,4.36088118811881,4.67731675750602,4.57692731384435,1.65069306930693,1.66533327823679,1.36169593660967,0.584023349696656,0.463343296222572,0.503446661531038,8.70527605691917,-0.000489613816566066,624.831525378218,625.048402186639,629.720066014798,5.95793739894085,1296.28874852393,-31.3722581804179,0,1296.28874852393,15.1046915988628,15.1046915988628,-0.00125123898528725,15.0961820003555,25.5999999999999,1014.91,38.26,21.0625420392445
+47271,2874.03438792079,457.035874455446,45,15.1059900990099,15.5591698019802,4.36088118811881,1.65069306930693,748.163366336634,322.942156107921,301.889369270297,20,40,11,32,5306174.77654114,396657.120332334,2,1,5306182.25213482,396651.029729471,34.0260764918393,0,0,15.1059900990099,338.894165675138,4.36088118811881,4.67731675750602,4.57692731384435,1.65069306930693,1.66533327823679,1.36169593660967,0.584023349696655,0.463343296222572,0.503446661531038,8.70527605691917,-0.000489613816566066,624.831525378218,625.048402186639,629.720066014798,5.95793739894085,1296.28874852393,-31.3722581804179,0,1296.28874852393,15.1046915988628,15.1046915988628,-0.00125123898528725,15.0961820003555,25.5999999999999,1014.91,38.26,21.0625420392445
 47272,2874.03578891089,457.038515445545,45,15.0962772277228,15.5491655445545,4.93848514851485,2.03178217821782,749.10396039604,308.258949907921,301.233202056436,20,40,11,32,5306177.31274126,396660.4564508,2,1,5306184.89762847,396654.276803042,38.2144083092983,0,0,15.0962772277228,343.08860299637,4.93848514851485,5.29683298980394,5.06790868974139,2.03178217821782,2.04642238714768,1.68457463562238,1.13381500714109,0.899528388699248,0.862456031308907,8.71622036576006,0.000921626007653771,609.492151964356,610.35269147465,628.90367491319,5.96176750910083,1266.86170317689,-22.4295774545694,0,1266.86170317689,15.0952687971767,15.0952687971767,-0.000904050801116663,15.0976965083796,25.5999999999999,1014.92,38.32,25.7582663913341
 47273,2874.03719405941,457.041147425743,45,15.0919801980198,15.5447396039604,4.8979900990099,1.84871287128713,749.10396039604,299.773434071287,313.23416539604,20,40,11,32,5306179.85684709,396663.781481473,2,1,5306187.54084666,396657.52108373,42.3991376447945,0,0,15.0919801980198,347.281232479318,4.8979900990099,5.25339952636504,5.03314512202951,1.84871287128713,1.86335308021698,1.53751863139372,1.0941233553891,0.868038447817884,0.877929798364618,8.71622036576006,-5.76016254783607E-05,613.007599467327,613.720625622704,629.093084263246,5.96345259485072,1274.53302871643,-60.3946764016675,0,1274.53302871643,15.0898367807078,15.0898367807078,-0.0024153405439603,15.0983049588407,25.5999999999999,1014.93,38.38,25.4065312269591
 47274,2874.0385980198,457.043775643564,45,15.094297029703,15.5471259405941,4.69187128712871,1.42811881188119,748.727722772277,305.287152738614,326.858628918812,20,40,11,32,5306182.39883792,396667.101783354,2,1,5306190.18090544,396660.761486551,46.5788650017203,0,0,15.094297029703,351.472355884158,4.69187128712871,5.03232425940391,4.8580674673522,1.42811881188119,1.44275902081105,1.18307447557278,0.871427983741034,0.69135988247196,0.689686882787861,8.7118426422237,-0.000230406501913443,632.145781657426,632.055741495667,630.119514793638,5.96253956643029,1313.45424648105,202.654277279623,0,1313.45424648105,15.0979440250956,15.0979440250956,0.00810786524197044,15.0951010514652,25.5999999999999,1014.94,38.44,23.6567024323354
 47275,2874.04001217822,457.046402376238,45,15.1096732673267,15.5629634653465,4.70340594059406,1.66564356435644,748.40099009901,319.730818381188,329.5803237,20,40,11,32,5306184.959754,396670.420570675,2,1,5306192.82777301,396664.010246474,50.7693720071578,0,0,15.1096732673267,355.669647138284,4.70340594059406,5.04469589385534,4.86862540978885,1.66564356435644,1.68028377328629,1.37215498880559,0.892935803472989,0.708423419562286,0.694009657001028,8.70804093494213,-1.37403839681331E-19,649.311142081188,648.500818117263,631.048782488911,5.95647725985797,1347.17729540985,-162.294054710882,0,1347.17729540985,15.1077236545437,15.1077236545437,-0.0064917382827382,15.0935727394677,25.5999999999999,1014.95,38.5,23.8226444885048
-47276,2874.04142445544,457.049028811881,45,15.0884752475247,15.5411295049505,4.47837623762376,1.03623762376238,749.20297029703,329.824991425742,318.896936117822,20,40,11,32,5306187.51719398,396673.738922669,2,1,5306195.47304057,396667.257042553,54.9573458928432,0,0,15.0884752475247,359.862810422112,4.47837623762376,4.80333751805111,4.675985218417,1.03623762376238,1.05087783269223,0.850584678165694,0.666564843088099,0.528828773203911,0.575299565398247,8.71737239826962,-0.000201605689174262,648.721927543564,647.936327888883,630.991029854999,5.96484545990137,1349.28533092476,-70.9732857899526,0,1349.28533092476,15.0874775022056,15.0874775022056,-0.00283741245411713,15.0923809698968,25.5999999999999,1014.96,38.56,21.9196792089461
+47276,2874.04142445544,457.049028811881,45,15.0884752475247,15.5411295049505,4.47837623762376,1.03623762376238,749.20297029703,329.824991425742,318.896936117822,20,40,11,32,5306187.51719398,396673.738922669,2,1,5306195.47304057,396667.257042553,54.9573458928432,0,0,15.0884752475247,359.862810422112,4.47837623762376,4.80333751805111,4.675985218417,1.03623762376238,1.05087783269223,0.850584678165695,0.666564843088099,0.528828773203911,0.575299565398247,8.71737239826962,-0.000201605689174262,648.721927543564,647.936327888883,630.991029854999,5.96484545990137,1349.28533092476,-70.9732857899526,0,1349.28533092476,15.0874775022056,15.0874775022056,-0.00283741245411713,15.0923809698968,25.5999999999999,1014.96,38.56,21.9196792089461
 47277,2874.04281732673,457.051672772277,45,15.0815841584158,15.5340316831683,4.87042574257426,0.164356435643564,748.70297029703,326.289135720792,304.630723436634,20,40,11,32,5306190.03829845,396677.078456972,2,1,5306198.11418431,396670.498777064,59.1387909680976,0,0,15.0815841584158,364.052632424313,4.87042574257426,5.22383503682619,5.00914380372602,0.164356435643564,0.178996644573421,0.14785511097605,1.06692916801518,0.846463549447002,0.817036183959239,8.71155463409631,0.000172804876435082,630.919859157425,630.881260511891,630.046063929025,5.96757538013899,1311.98926525438,88.2934575213635,0,1311.98926525438,15.0845722968336,15.0845722968336,0.00353042730015502,15.0919472687901,25.5999999999999,1014.97,38.62,25.1668770931915
-47278,2874.04421415842,457.054318514852,45,15.0939603960396,15.5467792079208,3.13952475247525,1.05910891089109,748.376237623762,312.37410070099,299.897975806931,20,40,11,32,5306192.5667011,396680.420339601,2,1,5306200.75938969,396673.745496811,63.3266663953129,0,0,15.0939603960396,368.244566142684,3.13952475247525,3.36733588967417,3.53700444948187,1.05910891089109,1.07374911982095,0.755577350531549,1.23547185434319,0.980179305637215,0.947690621694204,8.70775292681474,-0.00112323169682803,612.272076507921,613.015966289462,629.050531615737,5.96269399762602,1271.60341497861,-58.5507715920383,0,1271.60341497861,15.0913298696206,15.0913298696206,-0.00233364920650356,15.088440508669,25.5999999999999,1014.98,38.68,13.1572862842214
+47278,2874.04421415842,457.054318514852,45,15.0939603960396,15.5467792079208,3.13952475247525,1.05910891089109,748.376237623762,312.37410070099,299.897975806931,20,40,11,32,5306192.5667011,396680.420339601,2,1,5306200.75938969,396673.745496811,63.3266663953129,0,0,15.0939603960396,368.244566142684,3.13952475247525,3.36733588967417,3.53700444948187,1.05910891089109,1.07374911982095,0.755577350531549,1.23547185434319,0.980179305637215,0.947690621694203,8.70775292681474,-0.00112323169682803,612.272076507921,613.015966289462,629.050531615737,5.96269399762602,1271.60341497861,-58.5507715920383,0,1271.60341497861,15.0913298696206,15.0913298696206,-0.00233364920650356,15.088440508669,25.5999999999999,1014.98,38.68,13.1572862842214
 47279,2874.04560871287,457.056961386139,45,15.0796534653465,15.5320430693069,3.97974257425743,-2.73564356435644,748.613861386139,300.873305382178,309.049959577228,20,40,11,32,5306195.09095147,396683.75856728,2,1,5306203.40114869,396676.98798649,67.5090855463114,0,0,15.0796534653465,372.435108249395,3.97974257425743,4.2685218491734,4.25104917200727,-2.73564356435644,-2.72100335542658,-2.15997437784336,0.530434998848215,0.420828209909422,0.530819764005305,8.7105178048377,0.00123843494778476,609.923264959406,610.765714333555,628.951027131503,5.9683246905312,1268.33179521099,2.30716172705437,0,1268.33179521099,15.083504950495,15.083504950495,8.30528597421983E-05,15.0866437629995,25.5999999999999,1014.99,38.74,18.2555990000062
 47280,2874.04701772277,457.059583663366,45,15.0848118811881,15.5373562376238,2.99830693069307,-1.57594059405941,749.079207920792,302.360527948515,323.672383074258,20,40,11,32,5306197.64243951,396687.071619417,2,1,5306206.0414464,396680.228682578,71.689191181369,0,0,15.0848118811881,376.625568755446,2.99830693069307,3.21587097793113,3.41638847339848,-1.57594059405941,-1.56130038512955,-1.20078584771328,1.10311902580556,0.87517529189211,0.845602852205231,8.71593235763267,1.37403839681331E-19,626.032911022772,626.199375917204,629.786035361358,5.96628795756217,1302.20352266399,27.0942416531303,0,1302.20352266399,15.0873081070483,15.0873081070483,0.00108377174351129,15.0867572530367,25.5999999999999,1014.99747524752,38.7962128712871,12.1554104701775
 47281,2874.04843247525,457.062199504951,45,15.095702970297,15.5485740594059,3.24283168316832,-2.07168316831683,748.757425742574,315.468422825743,330.321457560396,20,40,11,32,5306200.20471018,396690.376842814,2,1,5306208.68221235,396683.469953382,75.8700381316208,0,0,15.095702970297,380.817217022773,3.24283168316832,3.47813900887257,3.62497771375584,-2.07168316831683,-2.05704295938698,-1.59335786371002,1.00292474909808,0.79568472622142,0.770395478813946,8.71218825197657,-2.88008127391803E-05,645.789880386139,645.127313749623,630.839287791092,5.96198518994327,1341.74986157092,-36.1873131093727,0,1341.74986157092,15.0902518380551,15.0902518380551,-0.00144729819516741,15.083654532976,25.5999999999999,1014.99,38.83,13.7299405379162
-47282,2874.0498319802,457.064834554455,45,15.0783267326733,15.5306765346535,4.15511881188119,-0.775643564356436,748.069306930693,328.145651913861,322.884054629703,20,40,11,32,5306202.73831067,396693.705483049,2,1,5306211.32300687,396686.711259254,80.0509303140034,0,0,15.0783267326732,385.007179233995,4.15511881188119,4.45662378997859,4.40035420596198,-0.775643564356436,-0.761003355426578,-0.626021718306896,0.560232300243891,0.444468326104059,0.564648643539363,8.70418162603508,-1.37403839681331E-19,651.029706543564,650.147269084178,631.101397523034,5.96884923477989,1352.93955997421,-9.02049766615302,0,1352.93955997421,15.0814735810214,15.0814735810214,-0.000360803407073977,15.0829203346416,25.5999999999999,1014.98,38.86,19.5676853880836
-47283,2874.05122811881,457.067477128713,45,15.0838712871287,15.5363874257426,3.28859405940594,0.0268316831683168,748.658415841584,328.736829259406,308.198088233663,20,40,11,32,5306205.26550964,396697.04338157,2,1,5306213.96578106,396689.954994975,84.2349567079139,0,0,15.0838712871287,389.197201043676,3.28859405940594,3.52722200838714,3.66332691350819,0.0268316831683168,0.0414718920981738,-0.0249930570539935,1.18027049991265,0.936384519810443,0.828065093874499,8.711036219467,-2.88008127391803E-05,636.934917493069,636.643918138633,630.368893696998,5.96666273007546,1324.1897195385,-91.1251934850461,0,1324.1897195385,15.0799049112832,15.0799049112832,-0.00364479517258772,15.091076993755,25.5999999999999,1014.97,38.89,14.4589613475529
+47282,2874.0498319802,457.064834554455,45,15.0783267326733,15.5306765346535,4.15511881188119,-0.775643564356436,748.069306930693,328.145651913861,322.884054629703,20,40,11,32,5306202.73831067,396693.705483049,2,1,5306211.32300687,396686.711259254,80.0509303140034,0,0,15.0783267326732,385.007179233995,4.15511881188119,4.45662378997859,4.40035420596198,-0.775643564356436,-0.761003355426578,-0.626021718306895,0.560232300243891,0.444468326104059,0.564648643539363,8.70418162603508,-1.37403839681331E-19,651.029706543564,650.147269084178,631.101397523034,5.96884923477989,1352.93955997421,-9.02049766615302,0,1352.93955997421,15.0814735810214,15.0814735810214,-0.000360803407073977,15.0829203346416,25.5999999999999,1014.98,38.86,19.5676853880836
+47283,2874.05122811881,457.067477128713,45,15.0838712871287,15.5363874257426,3.28859405940594,0.0268316831683168,748.658415841584,328.736829259406,308.198088233663,20,40,11,32,5306205.26550964,396697.04338157,2,1,5306213.96578106,396689.954994975,84.2349567079139,0,0,15.0838712871287,389.197201043676,3.28859405940594,3.52722200838714,3.66332691350819,0.0268316831683168,0.0414718920981738,-0.0249930570539933,1.18027049991265,0.936384519810443,0.828065093874499,8.711036219467,-2.88008127391803E-05,636.934917493069,636.643918138633,630.368893696998,5.96666273007546,1324.1897195385,-91.1251934850461,0,1324.1897195385,15.0799049112832,15.0799049112832,-0.00364479517258772,15.091076993755,25.5999999999999,1014.97,38.89,14.4589613475529
 47284,2874.0526219802,457.070116732673,45,15.0724059405941,15.5245781188119,4.08306930693069,-2.79920792079208,749.222772277228,316.698429130693,299.765768143564,20,40,11,32,5306207.78855852,396700.377501838,2,1,5306216.60504938,396693.19442759,88.4134326171402,0,0,15.072405940594,393.383975933666,4.08306930693069,4.37934620722923,4.33856234410716,-2.79920792079208,-2.78456771186223,-2.22359236004471,0.495589302933734,0.393182877556578,0.441476938136057,8.71760280477154,1.03052879760998E-19,616.464197274257,617.032179491295,629.294762517579,5.97119687497221,1283.59771157497,20.7970735199194,0,1283.59771157497,15.071817370846,15.071817370846,0.000831890119708903,15.0882730401052,25.5999999999999,1014.96,38.92,18.9708705898323
-47285,2874.05401405941,457.072761089109,45,15.110297029703,15.5636059405941,3.09266336633663,-0.755544554455446,748.693069306931,303.098501089109,305.339730565347,20,40,11,32,5306210.30820212,396703.717479776,2,1,5306219.24582753,396696.435713372,92.5942988859503,0,0,15.1102970297029,397.573441637737,3.09266336633663,3.31707413357238,3.49810438011082,-0.755544554455446,-0.740904345525588,-0.552483674680691,0.919144658981608,0.729216590773491,0.676388963308747,8.71143943084535,-0.000864024382175411,608.438231654456,609.342995212734,628.814342375648,5.95625639144529,1262.81173463551,520.928722128317,0,1262.81173463551,15.1109155965101,15.1109155965101,0.0208435447505108,15.0893185106728,25.5999999999999,1014.95,38.95,12.3444904762146
+47285,2874.05401405941,457.072761089109,45,15.110297029703,15.5636059405941,3.09266336633663,-0.755544554455446,748.693069306931,303.098501089109,305.339730565347,20,40,11,32,5306210.30820212,396703.717479776,2,1,5306219.24582753,396696.435713372,92.5942988859503,0,0,15.1102970297029,397.573441637737,3.09266336633663,3.31707413357238,3.49810438011082,-0.755544554455446,-0.740904345525588,-0.55248367468069,0.919144658981608,0.729216590773491,0.676388963308747,8.71143943084535,-0.000864024382175411,608.438231654456,609.342995212734,628.814342375648,5.95625639144529,1262.81173463551,520.928722128317,0,1262.81173463551,15.1109155965101,15.1109155965101,0.0208435447505108,15.0893185106728,25.5999999999999,1014.95,38.95,12.3444904762146
 47286,2874.05541653465,457.075407425743,45,15.1156732673267,15.5691434653465,3.11556435643564,2.68178217821782,748.059405940594,300.440756259406,319.795300157426,20,40,10.990099009901,32,5306212.84706051,396707.060266059,2,1,5306221.89564685,396699.68809627,96.7894790917406,0,0,15.1156732673267,401.77752417349,3.11556435643564,3.34163687218709,3.51777197786594,2.68178217821782,2.69642238714768,2.04175667488643,0.930530920534418,0.738250044593911,0.727521764345337,8.70406642278412,0.000691219505740329,620.236056416832,620.645765870611,629.445149452263,5.95414521391857,1285.78679752351,-586.311801052405,0,1285.78679752351,15.1123867267915,15.1123867267915,-0.0234576675489339,15.0966870514951,25.5999999999999,1014.94,38.98,12.4725170426002
 47287,2874.05682514851,457.078043168317,45,15.0648811881188,15.5168276237624,4.52933663366337,2.23881188118812,748.732673267327,311.168712985148,329.84209289505,20,40,11,32,5306215.39752785,396710.390056982,2,1,5306224.54373407,396702.93835319,100.981917042648,0,0,15.0648811881188,405.964231351709,4.52933663366337,4.85799571764036,4.71781639712637,2.23881188118812,2.25345209011797,1.83629294999286,0.73140080151759,0.580267310221436,0.586317702372827,8.71190024384918,-0.000144004063695902,641.010805880198,640.54877624726,630.57515948036,5.97419285735587,1334.48598625055,164.478557972868,0,1334.48598625055,15.0688313890795,15.0688313890795,0.00658023723164346,15.1008683261728,25.5999999999999,1014.93,39.01,22.3325321601078
 47288,2874.05822920792,457.080691287129,45,15.1175544554455,15.5710810891089,4.56178217821782,3.11415841584158,749.084158415842,325.419137318812,326.243133873267,20,40,11,32,5306217.93928472,396713.735109781,2,1,5306227.19581966,396706.193517688,105.180685176524,0,0,15.1175544554455,410.156232891864,4.56178217821782,4.89279558553504,4.74838887514729,3.11415841584158,3.12879862477144,2.54967452242231,0.751127688974049,0.595917919162046,0.588178496816257,8.71598995925814,0.000316808940130984,651.662271192079,650.753290386668,631.188462628468,5.95339262321388,1352.58557636727,329.173891786282,0,1352.58557636727,15.1144974022154,15.1144974022154,0.013164559030165,15.1026936025824,25.5999999999999,1014.92,39.04,22.6003620897159
 47289,2874.0596340594,457.083343663366,45,15.1157821782178,15.5692556435644,4.41977227722772,2.16485148514851,748.282178217822,330.090254855445,312.307289418812,20,40,11,32,5306220.48241576,396717.085488938,2,1,5306229.85106172,396709.45255645,109.384450640089,0,0,15.1157821782178,414.358534046979,4.41977227722772,4.74048111949491,4.62763269958238,2.16485148514851,2.17949169407837,1.76428350417357,0.628041198103084,0.498265487234033,0.50271982119944,8.70665849593065,1.03052879760998E-19,642.397544274257,641.877325056053,630.687039301258,5.95407289522731,1332.06221156015,-270.772071514621,0,1332.06221156015,15.1165620037251,15.1165620037251,-0.0108309098236573,15.0982886309315,25.5999999999999,1014.91,39.07,21.5269858010096
-47290,2874.06102712871,457.085991188119,45,15.0909504950495,15.543679009901,4.3590198019802,2.44178217821782,748.282178217822,320.887461668317,300.847110651485,20,40,11,32,5306223.00383223,396720.42943149,2,1,5306232.49448859,396712.697093264,113.569510347114,0,0,15.0909504950495,418.551998403416,4.3590198019802,4.67532030490785,4.57436598789523,2.44178217821782,2.45642238714768,1.98481962785665,0.582457610930658,0.462101094928329,0.4694710402504,8.70665849593065,5.76016254783607E-05,621.734572319802,622.081401839359,629.562140565484,5.96386296191169,1291.34426596859,-21.7725739851337,0,1291.34426596859,15.0900473482992,15.0900473482992,-0.000871374266138509,15.1049918368575,25.5999999999999,1014.90126237624,39.0760148514852,21.0167402537382
+47290,2874.06102712871,457.085991188119,45,15.0909504950495,15.543679009901,4.3590198019802,2.44178217821782,748.282178217822,320.887461668317,300.847110651485,20,40,11,32,5306223.00383223,396720.42943149,2,1,5306232.49448859,396712.697093264,113.569510347114,0,0,15.0909504950495,418.551998403416,4.3590198019802,4.67532030490785,4.57436598789523,2.44178217821782,2.45642238714768,1.98481962785665,0.582457610930657,0.462101094928329,0.4694710402504,8.70665849593065,5.76016254783607E-05,621.734572319802,622.081401839359,629.562140565484,5.96386296191169,1291.34426596859,-21.7725739851337,0,1291.34426596859,15.0900473482992,15.0900473482992,-0.000871374266138509,15.1049918368575,25.5999999999999,1014.90126237624,39.0760148514852,21.0167402537382
 47291,2874.06241158416,457.088643861386,45,15.0987623762376,15.5517252475248,4.39736633663366,2.55594059405941,749.054455445545,306.271763373267,302.399033084158,20,40,11,32,5306225.50917998,396723.779498504,2,1,5306235.13450371,396715.937442504,117.749168591482,0,0,15.0987623762376,422.7446922428,4.39736633663366,4.71644935231588,4.60752290772251,2.55594059405941,2.57058080298926,2.08180917051116,0.59529612955901,0.472286717717153,0.462514839934186,8.71564434950527,-1.37403839681331E-19,608.670796457426,609.56580125424,628.861453283913,5.96076954032891,1264.86754342095,104.156727664405,0,1264.86754342095,15.1015458288403,15.1015458288403,0.00416625820997936,15.1079388009245,25.5999999999999,1014.9,38.94,21.2868606921964
 47292,2874.0637980198,457.091295445545,45,15.1127128712871,15.5660942574258,4.35348514851485,3.24673267326733,748.455445544554,299.680765585148,315.536226384158,20,40,11,32,5306228.01822193,396727.128271662,2,1,5306237.7753591,396719.178823083,121.930157137094,0,0,15.1127128712871,426.941589712548,4.35348514851485,4.66938404425691,4.57087024347573,3.24673267326733,3.26137288219718,2.63604245566205,0.567048665631635,0.449876187294292,0.459454672992273,8.70867455282239,-0.00115203250956721,615.216991969307,615.837308761553,629.193994921582,5.95526726847529,1276.26348017424,15.5102877569378,0,1276.26348017424,15.1112278208019,15.1112278208019,0.000629023298368739,15.1051857513383,25.5999999999999,1014.9,38.78,20.9564708760856
-47293,2874.06518059406,457.093951188119,45,15.1129207920792,15.5663084158416,4.40716831683168,2.21475247524752,748.108910891089,307.174201266337,328.180415622772,20,40,11,32,5306230.52002046,396730.482093598,2,1,5306240.41579694,396722.41969118,126.11048464356,0,0,15.1129207920792,431.139150603637,4.40716831683168,4.72696258674241,4.61667232940733,2.21475247524752,2.22939268417738,1.80798847747574,0.603316623381305,0.478649891461637,0.479614092582389,8.7046424390389,0.000864024382175411,635.354616889109,635.129929277404,630.290373394069,5.95518187683444,1317.42552146524,28.718298663872,0,1317.42552146524,15.1103754533869,15.1103754533869,0.0011423172020159,15.107584580089,25.5999999999999,1014.9,38.62,21.3910993773487
+47293,2874.06518059406,457.093951188119,45,15.1129207920792,15.5663084158416,4.40716831683168,2.21475247524752,748.108910891089,307.174201266337,328.180415622772,20,40,11,32,5306230.52002046,396730.482093598,2,1,5306240.41579694,396722.41969118,126.11048464356,0,0,15.1129207920792,431.139150603637,4.40716831683168,4.72696258674241,4.61667232940733,2.21475247524752,2.22939268417738,1.80798847747574,0.603316623381304,0.478649891461636,0.479614092582389,8.7046424390389,0.000864024382175411,635.354616889109,635.129929277404,630.290373394069,5.95518187683444,1317.42552146524,28.718298663872,0,1317.42552146524,15.1103754533869,15.1103754533869,0.0011423172020159,15.107584580089,25.5999999999999,1014.9,38.62,21.3910993773487
 47294,2874.06656069307,457.09661029703,45,15.1029405940594,15.5560288118812,4.22340594059406,2.76574257425743,749.262376237624,321.862640211881,328.706591513861,20,40,11,32,5306233.01716086,396733.840023657,2,1,5306243.05638806,396725.660747397,130.291054801464,0,0,15.1029405940594,435.336142352813,4.22340594059406,4.52986598981675,4.45969521905925,2.76574257425743,2.78038278318728,2.23334228326255,0.497349765812961,0.394579566017344,0.387526455650345,8.71806361777537,0,650.569231725743,649.706116466121,631.104129829424,5.95912972908828,1351.93566756941,-16.8489266513445,0,1351.93566756941,15.1095929810803,15.1095929810803,-0.000673953533965808,15.110377049197,25.5999999999999,1014.9,38.46,19.9779195712145
 47295,2874.06796722772,457.09925039604,45,15.119,15.57257,3.1750099009901,-0.516732673267327,748.089108910891,330.24159939703,316.630990383168,20,40,11,32,5306235.56369487,396737.175148499,2,1,5306245.70551797,396728.912284109,134.485143530251,0,0,15.119,439.533988639942,3.1750099009901,3.40539592218395,3.56860859407965,-0.516732673267327,-0.502092464337469,-0.302834323128486,0.895803708557646,0.710698713171469,0.709299462106093,8.70441203253699,0.000115203250956721,646.872589780198,646.164591060034,630.927324019931,5.95278408288628,1340.71828649172,-61.1100914497524,0,1340.71828649172,15.1133730026468,15.1133730026468,-0.00244529403435485,15.1104033172629,25.5999999999999,1014.9,38.3,13.0256495876018
 47296,2874.0693529703,457.10191009901,45,15.1109504950495,15.564279009901,2.55179207920792,0.651287128712871,748.178217821782,324.607502388119,303.055864212871,20,40,11,32,5306238.07127968,396740.533999758,2,1,5306248.35072711,396732.159008476,138.673024916015,0,0,15.1109504950495,443.731273898468,2.55179207920792,2.73695598180217,3.03789145971336,0.651287128712871,0.665927337642728,0.503059329169478,1.48304682468159,1.17659645724319,1.13611684862414,8.7054488617956,-8.5877399800832E-20,627.66336660099,627.761415180982,629.868170411925,5.95595756838751,1301.75441936819,63.1409136988738,0,1301.75441936819,15.1080601901774,15.1080601901774,0.00252562384951563,15.1088343575003,25.5999999999999,1014.9,38.14,9.57994627150309
 47297,2874.07071138614,457.104592970297,45,15.1044356435644,15.5575687128713,3.29087128712871,2.57792079207921,749.316831683168,310.140311991089,300.4621214,20,40,11,32,5306240.52773145,396743.920800585,2,1,5306250.9892226,396735.397492521,142.850277284377,0,0,15.1044356435643,447.928588557434,3.29087128712871,3.52966447699129,3.66637990361411,2.57792079207921,2.59256100100906,1.99341917460582,0.763343537567206,0.605609537752721,0.712190730238916,8.71869723565563,-0.000259207314652623,610.602433391089,611.41638385671,628.953894179598,5.95853968738032,1268.85336639324,-5.08642069222201,0,1268.85336639324,15.11044417214,15.11044417214,-0.000201505299045673,15.1064256532712,25.5999999999999,1014.9,37.98,13.5662330887817
-47298,2874.07207831683,457.107268712871,45,15.1138811881188,15.5672976237624,2.31309900990099,1.02930693069307,748.306930693069,300.141096336634,311.234437130693,20,40,11,32,5306243.00011652,396747.299001279,2,1,5306253.6298635,396738.638609851,147.030926270803,0,0,15.1138811881188,452.125615482628,2.31309900990099,2.48094279437308,2.83489895610069,1.02930693069307,1.04394713962292,0.790447697335309,1.73193950047923,1.37405902936404,1.21689505487161,8.70694650405804,0.000172804876435082,611.375533467327,612.157043513793,628.991782030179,5.95480042223499,1267.94887928618,-91.5976268634541,0,1267.94887928618,15.1091819429468,15.1091819429468,-0.00366521800695062,15.1061254493094,25.5999999999999,1014.9,37.82,8.20793912417968
+47298,2874.07207831683,457.107268712871,45,15.1138811881188,15.5672976237624,2.31309900990099,1.02930693069307,748.306930693069,300.141096336634,311.234437130693,20,40,11,32,5306243.00011652,396747.299001279,2,1,5306253.6298635,396738.638609851,147.030926270803,0,0,15.1138811881188,452.125615482628,2.31309900990099,2.48094279437308,2.83489895610069,1.02930693069307,1.04394713962292,0.79044769733531,1.73193950047923,1.37405902936404,1.21689505487161,8.70694650405804,0.000172804876435082,611.375533467327,612.157043513793,628.991782030179,5.95480042223499,1267.94887928618,-91.5976268634541,0,1267.94887928618,15.1091819429468,15.1091819429468,-0.00366521800695062,15.1061254493094,25.5999999999999,1014.9,37.82,8.20793912417968
 47299,2874.07347940594,457.109921683168,45,15.0949405940594,15.5477888118812,3.54856435643565,0.908712871287129,748.569306930693,303.803088187129,325.468793994059,20,40,10.970297029703,32,5306245.53628425,396750.649966282,2,1,5306256.28261436,396741.894590903,151.230747659045,0,0,15.0949405940594,456.320475768656,3.54856435643565,3.8060563481219,3.88501444287773,0.908712871287129,0.923353080216986,0.700066321794348,0.601360088889721,0.477097646776601,0.577869458452487,8.70999939020839,-0.000460813003826886,629.271882181188,629.302435078316,629.965126027034,5.96227770465923,1307.15122987668,-35.0769437783773,0,1307.15122987668,15.0939946083717,15.0939946083717,-0.00139964491498453,15.1061161995012,25.5999999999999,1014.9,37.66,15.2173726788242
 47300,2874.07487039604,457.112579009901,45,15.0982772277228,15.5512255445545,3.84187128712871,2.0290099009901,749.420792079208,317.759469119802,330.078189941584,20,40,11,32,5306248.05364997,396754.006019961,2,1,5306258.93035577,396745.144423375,155.422638123996,0,0,15.0982772277227,460.513457671847,3.84187128712871,4.12064630433558,4.13486590012333,2.0290099009901,2.04365010991995,1.61234575882611,0.348681021438572,0.276631086561036,0.311744730601478,8.71990686979067,0.000316808940130984,647.837659061386,647.089164615391,630.954251818303,5.96096530206429,1346.9541771816,133.11380999566,0,1346.9541771816,15.1006335653367,15.1006335653367,0.00532219063490378,15.1029824302302,25.5999999999999,1014.9,37.5252475247525,17.1503153362037
 47301,2874.07622188119,457.11527019802,45,15.1199801980198,15.5735796039604,3.79863366336634,0.572673267326733,748.737623762376,329.178806869307,320.824767593069,20,40,11,32,5306250.49708612,396757.402938831,2,1,5306261.56861317,396748.3826152,159.59951356327,0,0,15.1199801980198,464.711021505731,3.79863366336634,4.074271259143,4.09925474806176,0.572673267326733,0.587313476256589,0.525889473950544,0.609503889726253,0.483558647908386,0.427351344047413,8.71195784547466,0,650.003574462376,649.164195014067,631.098432525606,5.95240202647741,1348.29517907182,-28.7290262730679,0,1348.29517907182,15.1171857661014,15.1171857661014,-0.00114912481347078,15.101985326595,25.5999999999999,1014.9,37.54,17.0753809400942
@@ -119,11 +119,11 @@ Time,Lat,Long,Heading,v_veh_GPS,v_veh_CAN,vair_ar,beta_ar,n_eng,tq_l,tq_r,t_amb_
 47303,2874.07894950495,457.120635445544,45,15.0843267326733,15.5368565346535,3.32012871287129,-3.47188118811881,749.252475247525,314.395980566337,299.683288791089,20,40,11,32,5306255.43001277,396764.176249597,2,1,5306266.85345016,396754.869213472,167.966440068856,0,0,15.0843267326733,473.100131681749,3.32012871287129,3.56104488884017,3.68997669073744,-3.47188118811881,-3.45724097918896,-2.59044292567831,1.21082898105872,0.960628528871266,0.917269318448812,8.71794841452441,1.03052879760998E-19,614.079269357426,614.747326664533,629.15998049494,5.96647842611546,1277.66613375192,109.228394801576,0,1277.66613375192,15.0909417704146,15.0909417704146,0.00436912503131757,15.1096841406942,25.5999999999999,1014.9,37.62,14.6642468984808
 47304,2874.0803260396,457.123315544555,45,15.1244752475247,15.5782095049505,4.5079801980198,-3.03366336633663,749.108910891089,301.785078839604,307.232610455446,20,40,10.7128712871287,32,5306257.92010226,396767.560177458,2,1,5306269.50395896,396758.122442638,172.16271185732,0,0,15.1244752475247,477.295831021683,4.5079801980198,4.83508960990497,4.70305851491172,-3.03366336633663,-3.01902315740678,-2.45485662007512,0.703660502255745,0.558259146155975,0.570806351178777,8.71627796738554,-0.000489613816566066,609.01768929505,609.89813795424,628.840118689576,5.95063877490221,1263.5223743771,128.879454960259,0,1263.5223743771,15.1192329183413,15.1192329183413,0.00515880796000568,15.1090406465464,25.5999999999999,1014.9,37.66,22.1898522698717
 47305,2874.08170653465,457.12598980198,45,15.1211881188119,15.5748237623762,4.83938613861386,-3.47980198019802,748.30198019802,301.323914687129,321.923234233663,20,40,10.2079207920792,32,5306260.41765989,396770.936957417,2,1,5306272.15394706,396761.375032679,176.358159252605,0,0,15.1211881188119,481.4970801966,4.83938613861386,5.19054312780885,4.98473141611855,-3.47980198019802,-3.46516177126817,-2.85057144720225,1.03433492488639,0.820604439435365,0.812585804976866,8.70688890243256,0.000201605689174263,623.247148920792,623.530508498863,629.632500660982,5.95192825689136,1291.92647365549,-44.7558526601977,0,1291.92647365549,15.1229193216351,15.1229193216351,-0.00179176333474877,15.1092184371478,25.5999999999999,1014.9,37.7,24.9407740333694
-47306,2874.08309326733,457.128651188119,45,15.1069801980198,15.5601896039604,4.79491089108911,-1.96128712871287,748.960396039604,313.43648029802,330.24866839901,20,40,10.8811881188119,32,5306262.92706053,396774.297908811,2,1,5306274.80090904,396764.623908484,180.548815732972,0,0,15.1069801980198,485.696224118493,4.79491089108911,5.14284065402705,4.9461488720212,-1.96128712871287,-1.94664691978302,-1.60021866613525,0.98987928474202,0.785334920073035,0.815948035305269,8.71454991862118,-0.000230406501913443,643.68514869703,643.1108997005,630.733277174983,5.95752064665953,1336.73991127702,-71.1485865815443,0,1336.73991127702,15.1096910106852,15.1096910106852,-0.00284422006557444,15.1145769434484,25.5999999999999,1014.9,37.74,24.547171583371
-47307,2874.08447316832,457.131317920792,45,15.1064851485148,15.5596797029703,4.5119801980198,3.4660396039604,749.034653465347,326.986538719802,324.554547155445,20,40,10.990099009901,32,5306265.42368931,396777.665290473,2,1,5306277.44592435,396767.870394946,184.736390250224,0,0,15.1064851485148,489.892792847865,4.5119801980198,4.8393798591053,4.70529044566337,3.4660396039604,3.48067981289025,2.82667339391775,0.765688164810983,0.607469681385865,0.574387347277451,8.71541394300336,0.000403211378348525,651.541085875248,650.637190184845,631.160290413444,5.9577215781321,1353.22541191311,20.0550942189164,0,1353.22541191311,15.1082757572787,15.1082757572787,0.000799213584726108,15.1170663374612,25.5999999999999,1014.9,37.78,22.368086489139
-47308,2874.08584346535,457.133986831683,45,15.1199603960396,15.5735592079208,4.51775247524753,3.46534653465347,748.569306930693,329.516228710891,310.076019324753,20,40,10.7425742574257,32,5306267.90248164,396781.035064136,2,1,5306280.08499492,396771.109584851,188.914553091384,0,0,15.1199603960396,494.090210202101,4.51775247524753,4.84557098604536,4.71097483054808,3.46534653465347,3.47998674358332,2.82980999637658,0.731133526927613,0.580055264094203,0.562836228480583,8.70999939020839,-3.43509599203328E-20,639.592248035644,639.189743179267,630.525112843515,5.9524128507314,1326.4058011706,94.2520686637893,0,1326.4058011706,15.1169547103225,15.1169547103225,0.00377005522334337,15.1149194455137,25.5999999999999,1014.9,37.82,22.3101017311919
-47309,2874.08721326733,457.136657326733,45,15.1245445544554,15.5782808910891,4.76819801980198,0.714851485148515,749.074257425743,318.699764972277,300.124576608911,20,40,10.7128712871287,32,5306270.38032361,396784.406791699,2,1,5306282.72464313,396774.349483745,193.09363044386,0,0,15.1245445544554,498.291049421023,4.76819801980198,5.11418943535758,4.92454339167444,0.714851485148515,0.729491694078373,0.598292035350462,0.952602422646709,0.755760787180837,0.778024727091532,8.71587475600719,0.000115203250956721,618.824341581188,619.293288670925,629.379580988176,5.95060521466418,1283.79753272029,-19.5170388269782,0,1283.79753272029,15.1244752475247,15.1244752475247,-0.000781513794943881,15.1158906868291,25.5999999999999,1014.9,37.86,24.3203683731973
-47310,2874.08858564356,457.139330693069,45,15.114702970297,15.568144059406,4.22420792079208,1.67544554455446,749.173267326733,304.481754383168,303.849529564356,20,40,11,32,5306272.86287195,396787.782178096,2,1,5306285.36796068,396777.593886379,197.278517074585,0,0,15.114702970297,502.490959046986,4.22420792079208,4.53072616354256,4.46111163845065,1.67544554455446,1.69008575348431,1.37372150284506,0.769720633298644,0.61066889806437,0.622828939577556,8.71702678851675,1.37403839681331E-19,608.331283947525,609.240535187521,628.820603124698,5.95448181303013,1263.02777714199,-70.3225446204576,0,1263.02777714199,15.1137918831487,15.1137918831487,-0.0028129050528793,15.1170012764207,25.5999999999999,1014.9,37.8911633663366,20.2915107494497
+47306,2874.08309326733,457.128651188119,45,15.1069801980198,15.5601896039604,4.79491089108911,-1.96128712871287,748.960396039604,313.43648029802,330.24866839901,20,40,10.8811881188119,32,5306262.92706053,396774.297908811,2,1,5306274.80090904,396764.623908484,180.548815732976,0,0,15.1069801980198,485.696224118493,4.79491089108911,5.14284065402705,4.9461488720212,-1.96128712871287,-1.94664691978302,-1.60021866613525,0.989879284742019,0.785334920073035,0.815948035305269,8.71454991862118,-0.000230406501913443,643.68514869703,643.1108997005,630.733277174983,5.95752064665953,1336.73991127702,-71.1485865815443,0,1336.73991127702,15.1096910106852,15.1096910106852,-0.00284422006557444,15.1145769434484,25.5999999999999,1014.9,37.74,24.547171583371
+47307,2874.08447316832,457.131317920792,45,15.1064851485148,15.5596797029703,4.5119801980198,3.4660396039604,749.034653465347,326.986538719802,324.554547155445,20,40,10.990099009901,32,5306265.42368931,396777.665290473,2,1,5306277.44592435,396767.870394946,184.736390250224,0,0,15.1064851485148,489.892792847865,4.5119801980198,4.8393798591053,4.70529044566337,3.4660396039604,3.48067981289025,2.82667339391775,0.765688164810983,0.607469681385864,0.574387347277451,8.71541394300336,0.000403211378348525,651.541085875248,650.637190184845,631.160290413444,5.9577215781321,1353.22541191311,20.0550942189164,0,1353.22541191311,15.1082757572787,15.1082757572787,0.000799213584726108,15.1170663374612,25.5999999999999,1014.9,37.78,22.368086489139
+47308,2874.08584346535,457.133986831683,45,15.1199603960396,15.5735592079208,4.51775247524753,3.46534653465347,748.569306930693,329.516228710891,310.076019324753,20,40,10.7425742574257,32,5306267.90248164,396781.035064136,2,1,5306280.08499492,396771.109584851,188.914553091384,0,0,15.1199603960396,494.090210202101,4.51775247524753,4.84557098604536,4.71097483054808,3.46534653465347,3.47998674358332,2.82980999637658,0.731133526927613,0.580055264094203,0.562836228480582,8.70999939020839,-3.43509599203328E-20,639.592248035644,639.189743179267,630.525112843515,5.9524128507314,1326.4058011706,94.2520686637893,0,1326.4058011706,15.1169547103225,15.1169547103225,0.00377005522334337,15.1149194455137,25.5999999999999,1014.9,37.82,22.3101017311919
+47309,2874.08721326733,457.136657326733,45,15.1245445544554,15.5782808910891,4.76819801980198,0.714851485148515,749.074257425743,318.699764972277,300.124576608911,20,40,10.7128712871287,32,5306270.38032361,396784.406791699,2,1,5306282.72464313,396774.349483745,193.09363044386,0,0,15.1245445544554,498.291049421023,4.76819801980198,5.11418943535758,4.92454339167444,0.714851485148515,0.729491694078373,0.598292035350462,0.952602422646708,0.755760787180837,0.778024727091532,8.71587475600719,0.000115203250956721,618.824341581188,619.293288670925,629.379580988176,5.95060521466418,1283.79753272029,-19.5170388269782,0,1283.79753272029,15.1244752475247,15.1244752475247,-0.000781513794943881,15.1158906868291,25.5999999999999,1014.9,37.86,24.3203683731973
+47310,2874.08858564356,457.139330693069,45,15.114702970297,15.568144059406,4.22420792079208,1.67544554455446,749.173267326733,304.481754383168,303.849529564356,20,40,11,32,5306272.86287195,396787.782178096,2,1,5306285.36796068,396777.593886379,197.278517074585,0,0,15.114702970297,502.490959046986,4.22420792079208,4.53072616354256,4.46111163845065,1.67544554455446,1.69008575348431,1.37372150284506,0.769720633298644,0.61066889806437,0.622828939577555,8.71702678851675,1.37403839681331E-19,608.331283947525,609.240535187521,628.820603124698,5.95448181303013,1263.02777714199,-70.3225446204576,0,1263.02777714199,15.1137918831487,15.1137918831487,-0.0028129050528793,15.1170012764207,25.5999999999999,1014.9,37.8911633663366,20.2915107494497
 47311,2874.0899619802,457.142002673267,45,15.1129306930693,15.5663186138614,4.51404950495049,2.21257425742574,748.589108910891,299.93417029802,317.826173606931,20,40,10.960396039604,32,5306275.35278914,396791.155966245,2,1,5306288.01343548,396780.840936817,201.46681905241,0,0,15.1129306930693,506.688633634444,4.51404950495049,4.84159931970645,4.70761415443824,2.21257425742574,2.2272144663556,1.81384234853645,0.745257168494156,0.591260457587763,0.563460954077936,8.71022979671031,-0.000432012191087706,617.760343904951,618.273937901402,629.338614284754,5.95517845218031,1281.74389709353,104.891960668622,0,1281.74389709353,15.1164683854524,15.1164683854524,0.00419893474495898,15.1185983953057,25.5999999999999,1014.9,37.87,22.2668642818255
 47312,2874.09134029703,457.144674059406,45,15.1214653465346,15.5751093069307,3.40262376237624,-2.18287128712871,749.455445544554,309.238040559406,329.204446671287,20,40,11,32,5306277.84638951,396794.529077132,2,1,5306290.66004808,396784.089383794,205.656922396979,0,0,15.1214653465346,510.889371065687,3.40262376237624,3.64952596888245,3.76238906342005,-2.18287128712871,-2.16823107819886,-1.63805444684313,0.800055254270496,0.634735304447028,0.695859664752929,8.72031008116902,5.76016254783607E-05,638.442487230693,638.088228033448,630.460022730946,5.9518236469272,1325.46596659599,-99.1758888204279,0,1325.46596659599,15.1206621899814,15.1206621899814,-0.00396747595551607,15.1183958615435,25.5999999999999,1014.9,37.84,14.4143814419874
 47313,2874.09271841584,457.147344059406,45,15.113396039604,15.5667979207921,2.68938613861386,-2.5349504950495,748.935643564356,323.839429763366,327.523216966337,20,40,11,32,5306280.3396559,396797.90045198,2,1,5306293.30567733,396787.336623801,209.845468894923,0,0,15.1133960396039,515.087726208702,2.68938613861386,2.884534182636,3.15508933124185,-2.5349504950495,-2.52031028611965,-1.77629174942267,1.37483002488764,1.0907411078822,1.09864658770446,8.71426191049379,-8.64024382175411E-05,651.362646729703,650.46623860943,631.164806956294,5.95500419440977,1352.05823702908,59.6524211655957,0,1352.05823702908,15.1144495637682,15.1144495637682,0.00238674857584926,15.1156985807962,25.5999999999999,1014.9,37.81,10.4292744764222
@@ -133,8 +133,8 @@ Time,Lat,Long,Heading,v_veh_GPS,v_veh_CAN,vair_ar,beta_ar,n_eng,tq_l,tq_r,t_amb_
 47317,2874.09830009901,457.157945940594,45,15.128504950495,15.5823600990099,3.44618811881188,-0.82029702970297,748.60396039604,299.744561272277,313.503981613861,20,40,11,32,5306290.44267796,396811.290911305,2,1,5306303.8935023,396800.33209884,226.608058466613,0,0,15.128504950495,531.882323430929,3.44618811881188,3.69625145522259,3.79984008810604,-0.82029702970297,-0.805656820773115,-0.622975928262906,0.690024616079502,0.547440920393088,0.585103906846094,8.71040260158674,0.000172804876435082,613.248542886139,613.951458699128,629.065681299479,5.949070471685,1271.10897854518,85.2638069712975,0,1271.10897854518,15.1279939221645,15.1279939221645,0.00340925181627208,15.106963981897,25.5999999999999,1014.9,37.69,14.6179801513257
 47318,2874.09970346535,457.160594158416,45,15.1097722772277,15.5630654455446,2.9359702970297,-0.806534653465346,748.559405940594,305.498595219802,327.028706866337,20,40,11,32,5306292.98320631,396814.635976358,2,1,5306306.54510375,396803.586669122,230.806060132394,0,0,15.1097722772277,536.08354053764,2.9359702970297,3.14901105474988,3.36471142775005,-0.806534653465346,-0.791894444535489,-0.62823771861811,1.07610268288866,0.853741488970539,0.806824038791895,8.70988418695744,-0.000460813003826885,632.527302086139,632.421252768581,630.137183458399,5.95643560760927,1312.62684275288,-241.143578316483,0,1312.62684275288,15.1089351044015,15.1089351044015,-0.00964230086374984,15.1009874691351,25.5999999999999,1014.9,37.66,11.4378305780907
 47319,2874.10109544554,457.163242673267,45,15.0821485148515,15.534612970297,2.7210297029703,0.936138613861386,749.20297029703,319.98817689703,329.49429450099,20,40,11,32,5306295.5026389,396817.98103127,2,1,5306309.18828384,396806.83090303,234.9907291269,0,0,15.0821485148515,540.275516527741,2.7210297029703,2.91847387680488,3.1801727541918,0.936138613861386,0.950778822791244,0.750057576096902,1.29518785913944,1.02755585404732,1.05308711815244,8.71737239826962,0.000115203250956721,649.48247139802,648.664958202539,631.033195550079,5.96735379484657,1351.42916470266,-32.8592448826365,0,1351.42916470266,15.0845380845015,15.0845380845015,-0.00131523053295444,15.0950155560605,25.5999999999999,1014.9,37.63,10.2819222045498
-47320,2874.10247653465,457.165901386139,45,15.0902277227723,15.5429345544554,2.52366336633663,-0.137128712871287,748.841584158416,329.891651743564,318.633894611881,20,40,11,32,5306298.00167218,396821.338424969,2,1,5306311.82936749,396810.072563791,239.172079074602,0,0,15.0902277227723,544.466232534343,2.52366336633663,2.70678618482664,3.01273927913029,-0.137128712871287,-0.12248850394143,-0.0443056336223097,1.50332498431778,1.19268442586986,1.0120789141805,8.7131674796097,-2.88008127391804E-05,648.525546355445,647.748187142584,630.983487716196,5.96416190602333,1348.07756127018,-0.685550212911324,0,1348.07756127018,15.0879903930987,15.0879903930987,-2.7230445819729E-05,15.0856043735826,25.5999999999999,1014.9,37.5987376237624,9.19915003922391
-47321,2874.10382584158,457.168593762376,45,15.0713168316832,15.5234563366337,3.16419801980198,1.13346534653465,748.435643564356,326.103810647525,304.432508769307,20,40,10.970297029703,32,5306300.44108604,396824.736693501,2,1,5306314.46668107,396813.309597159,243.347460244213,0,0,15.0713168316832,548.656522743365,3.16419801980198,3.39379950602863,3.55661121065426,1.13346534653465,1.14810555546451,0.936794543432482,0.929271102219604,0.737250549674862,0.778134728525017,8.70844414632048,0.000748821131218689,630.536319416832,630.513814668327,630.028858909686,5.97163083955326,1311.60541356128,-128.218074341975,0,1311.60541356128,15.0743845701402,15.0743845701402,-0.00513430055876615,15.0667870759366,25.5999999999999,1014.9,37.56,13.009711304508
+47320,2874.10247653465,457.165901386139,45,15.0902277227723,15.5429345544554,2.52366336633663,-0.137128712871287,748.841584158416,329.891651743564,318.633894611881,20,40,11,32,5306298.00167218,396821.338424969,2,1,5306311.82936749,396810.072563791,239.172079074602,0,0,15.0902277227723,544.466232534343,2.52366336633663,2.70678618482664,3.01273927913029,-0.137128712871287,-0.12248850394143,-0.0443056336223096,1.50332498431778,1.19268442586986,1.0120789141805,8.7131674796097,-2.88008127391804E-05,648.525546355445,647.748187142584,630.983487716196,5.96416190602333,1348.07756127018,-0.685550212911324,0,1348.07756127018,15.0879903930987,15.0879903930987,-2.7230445819729E-05,15.0856043735826,25.5999999999999,1014.9,37.5987376237624,9.19915003922391
+47321,2874.10382584158,457.168593762376,45,15.0713168316832,15.5234563366337,3.16419801980198,1.13346534653465,748.435643564356,326.103810647525,304.432508769307,20,40,10.970297029703,32,5306300.44108604,396824.736693501,2,1,5306314.46668107,396813.309597159,243.347460244217,0,0,15.0713168316832,548.656522743365,3.16419801980198,3.39379950602863,3.55661121065426,1.13346534653465,1.14810555546451,0.936794543432483,0.929271102219604,0.737250549674862,0.778134728525017,8.70844414632048,0.000748821131218689,630.536319416832,630.513814668327,630.028858909686,5.97163083955326,1311.60541356128,-128.218074341975,0,1311.60541356128,15.0743845701402,15.0743845701402,-0.00513430055876615,15.0667870759366,25.5999999999999,1014.9,37.56,13.009711304508
 47322,2874.10514683168,457.171314356436,45,15.0646831683168,15.5166236633663,4.22423762376237,1.38554455445545,749.341584158416,312.107177257426,299.946825638614,20,40,10.009900990099,32,5306302.82742084,396828.169168823,2,1,5306317.09956868,396816.541198103,247.515834245595,0,0,15.0646831683168,552.841894305522,4.22423762376237,4.5307580218287,4.45835907679333,1.38554455445545,1.4001847633853,1.13422406693518,0.549973556180376,0.436329404446283,0.527521062043804,8.71898524378302,1.20228359721165E-19,612.05400289604,612.807043361994,629.07460111802,5.97425580129048,1275.26089698306,-8.88393937352073,0,1275.26089698306,15.0677562003725,15.0677562003725,-0.000355357317911398,15.037080377709,25.5999999999999,1014.9,37.52,20.0153895443024
 47323,2874.10642584158,457.174074653465,45,15.036396039604,15.4874879207921,4.3129504950495,2.31504950495049,748.925742574257,300.770191743564,309.300961582178,20,40,10,32,5306305.13511159,396831.649704121,0.495049504950495,0.247524752475248,1313445.22993378,98222.4111574162,61.9048105391782,0,0,15.0363960396039,557.024837622354,4.3129504950495,4.62590810310316,4.53218221860207,2.31504950495049,2.32968971388035,1.88505224234654,0.533630487490922,0.423363396630163,0.473006889645782,8.71414670724284,-0.000432012191087705,610.071153325743,610.907397087305,629.008013254399,5.98551997128781,1272.82957504495,-376.371778849692,0,1272.82957504495,15.0377572786981,15.0377572786981,-0.0150516289252676,15.0068369620448,25.5999999999999,1014.9,37.48,20.6081229367635
 47324,2874.1076219802,457.17691009901,45,14.9715940594059,15.4207418811881,4.87175247524752,3.01891089108911,748.321782178218,302.516026326733,323.894767166337,20,40,9.8019801980198,32,5306307.28762455,396835.22109543,0,0,0,0,0,0,0,14.9715940594059,561.194453518944,4.87175247524752,5.22525804027382,5.00376551021817,3.01891089108911,3.03355110001896,2.5053480736444,1.10439900098784,0.876190778550904,0.815279306270013,8.70711930893448,8.5877399800832E-20,626.410793493069,626.561401883394,629.808822256598,6.01148917603113,1311.57453350245,-754.894980767791,0,1311.57453350245,14.9653378100186,14.9653378100186,-0.0301958413663143,14.9677517938602,25.5999999999999,1014.9,37.44,25.1243386667021
@@ -163,7 +163,7 @@ Time,Lat,Long,Heading,v_veh_GPS,v_veh_CAN,vair_ar,beta_ar,n_eng,tq_l,tq_r,t_amb_
 47347,2874.1295680198,457.201458613861,171.534653465347,16.4674257425743,15.70545829,2.01431683168317,3.24445544554455,736.346534653465,314.124939929703,299.69638109604,20,40,11,32,5306347.39263459,396866.524866812,0,0,0,0,0,0,0,15.2480177572816,658.034103729392,2.01431683168317,2.16048029408074,2.58832286909587,3.24445544554455,3.25909565447441,2.18913503800525,2.08359369173991,1.65304892282264,1.61590269985858,8.56778097690233,0.00224646339365607,613.821321025742,614.500202223311,628.926935676,5.90240655753575,1241.62892827752,0.408749338879441,0,1241.62892827752,15.2480177572816,15.2480177572816,0,15.2480177572816,25.5,1014.9,37.31,6.7575145155323
 47348,2874.12866316832,457.198061188119,225,16.2874257425743,15.70545829,2.31530693069307,1.11059405940594,744.782178217822,301.649651756436,307.467757070297,20,40,11,32,5306345.79217949,396862.263170102,0,0,0,0,0,0,0,15.2480177572816,662.269664217524,2.31530693069307,2.48331092697623,2.84450116817933,1.11059405940594,1.1252342683358,0.812708790131425,1.76292222130025,1.39863961505229,1.48661722050862,8.66593414671745,0.000950426820392952,609.117408826733,609.993673111783,628.614944791778,5.90240655753575,1246.26162570786,0.174955512016234,0,1246.26162570786,15.2480177572816,15.2480177572816,0,15.2480177572816,25.5,1014.9,37.34,8.17383086928278
 47349,2874.12757237624,457.194871980198,225,16.0312574257426,15.70545829,1.96050495049505,0.322079207920792,749.851485148515,301.448612187129,322.164242463366,20,40,11,32,5306343.84266514,396858.254664267,0,0,0,0,0,0,0,15.2480177572816,666.505224705657,1.96050495049505,2.10276369902196,2.54256651460127,0.322079207920792,0.336719416850649,0.271976217478944,2.14066484256984,1.69832713842565,1.63968651269688,8.72491821120729,-1.03052879760998E-19,623.612854650495,623.880868676385,629.576367277931,5.90240655753575,1284.59663468781,-8.7938457396052E-18,0,1284.59663468781,15.2480177572816,15.2480177572816,0,15.2480177572816,25.5,1014.9,37.37,6.5089721522201
-47350,2874.12625792079,457.191889405941,225,16.2782574257426,15.70545829,2.45921782178218,3.09564356435644,750,313.706656077228,330.273956369307,20,40,11,32,5306341.47425069,396854.496126511,0,0,0,0,0,0,0,15.2480177572816,670.740785193789,2.45921782178218,2.63766432332938,2.96690603268076,3.09564356435644,3.11028377328629,2.2192396856558,1.61005352140273,1.27735904067702,1.32876550843049,8.72664625997164,0,643.980612446535,643.393965356112,630.92727573427,5.90240655753575,1326.8116507473,0,0,1326.8116507473,15.2480177572816,15.2480177572816,0,15.2480177572816,25.5,1014.9,37.3949504950495,8.83703813541199
+47350,2874.12625792079,457.191889405941,225,16.2782574257426,15.70545829,2.45921782178218,3.09564356435644,750,313.706656077228,330.273956369307,20,40,11,32,5306341.47425069,396854.496126511,0,0,0,0,0,0,0,15.2480177572816,670.740785193789,2.45921782178218,2.63766432332938,2.96690603268076,3.09564356435644,3.11028377328629,2.2192396856558,1.61005352140274,1.27735904067702,1.32876550843049,8.72664625997164,0,643.980612446535,643.393965356112,630.92727573427,5.90240655753575,1326.8116507473,0,0,1326.8116507473,15.2480177572816,15.2480177572816,0,15.2480177572816,25.5,1014.9,37.3949504950495,8.83703813541199
 47351,2874.12486960396,457.188917920792,225,16.3373564356436,15.70545829,2.41859405940594,1.92247524752475,750,327.153794409901,324.340865232673,20,40,10.7227722772277,32,5306338.96877494,396850.748952028,0,0,0,0,0,0,0,15.2480177572816,674.976345681921,2.41859405940594,2.5940928073172,2.9323974378825,1.92247524752475,1.93711545645461,1.3779301337926,1.65280494169219,1.31127649278815,1.25470871189236,8.72664625997164,0,651.494659642574,650.59271206367,631.425651156554,5.90240655753575,1342.2930568196,0,0,1342.2930568196,15.2480177572816,15.2480177572816,0,15.2480177572816,25.5,1014.9,37.39,8.64094369153006
 47352,2874.12345425743,457.185967128713,225,16.1710396039604,15.70545829,2.73558415841584,1.7429702970297,750,329.426790207921,309.819825670297,20,40,11,32,5306336.41277244,396847.026653894,0,0,0,0,0,0,0,15.2480177572816,679.211906170053,2.73558415841584,2.93408443701397,3.2022067445316,1.7429702970297,1.75761050595956,1.29833031345064,1.31603861199735,1.04409809771433,1.1016715004427,8.72664625997164,0,639.246615878218,638.858614259485,630.613289480148,5.90240655753575,1317.0580623938,0,0,1317.0580623938,15.2480177572816,15.2480177572816,0,15.2480177572816,25.5,1014.9,37.38,10.2895668296655
 47353,2874.1219929703,457.183174752475,225,15.8917128712871,15.70545829,2.03789108910891,2.87891089108911,750,318.435861624753,300.06141450099,20,40,11,32,5306333.76814667,396843.50014971,0,0,0,0,0,0,0,15.2480177572816,683.447466658186,2.03789108910891,2.18576515384799,2.6085235369189,2.87891089108911,2.89355110001896,1.93592456978757,2.05734072123796,1.6322207523491,1.55500542149136,8.72664625997164,0,618.497276125743,618.979947362072,629.237072284362,5.90240655753575,1274.30760500921,0,0,1274.30760500921,15.2480177572816,15.2480177572816,0,15.2480177572816,25.5,1014.9,37.37,6.93434724418196
@@ -177,14 +177,14 @@ Time,Lat,Long,Heading,v_veh_GPS,v_veh_CAN,vair_ar,beta_ar,n_eng,tq_l,tq_r,t_amb_
 47361,2874.11082960396,457.161000495049,225,15.3815445544555,15.70545829,3.06572277227723,-3.3680198019802,749.985148514852,299.720469262376,313.774266663366,20,40,11,32,5306313.58360456,396815.510666959,2,2,5306315.19219789,396814.200095042,6.64351370066986,0,0,15.2480177572816,717.331950563244,3.06572277227723,3.28817866804249,3.48288507494833,-3.3680198019802,-3.35337959305035,-2.51839128992678,0.982645891827734,0.779596204116697,0.85570697489325,8.7264734550952,0,613.494735925742,614.187321116195,628.905274649711,5.90240655753575,1263.97555083352,0,0,1263.97555083352,15.2480177572816,15.2480177572816,0,15.247994282384,25.5,1014.9,37.32,12.2386376351538
 47362,2874.1094419802,457.158286237624,225,15.3334158415842,15.70545829,2.45853465346535,-2.35594059405941,749.891089108911,305.713015273267,327.195015226733,20,40,11,32,5306311.07370756,396812.083877728,2,2,5306312.51279808,396810.911405118,10.8855255744938,0,0,15.2480177572816,721.567511051376,2.45853465346535,2.63693158274814,2.96638844667914,-2.35594059405941,-2.34130038512955,-1.68137264001973,1.61064360166137,1.27782718930877,1.21204580331539,8.72537902421111,0,632.9080305,632.786005257347,630.192877540613,5.90240655753575,1303.80814353314,0,0,1303.80814353314,15.2480177572816,15.2480177572816,0,15.2460907926207,25.5,1014.9,37.34,8.85674653669674
 47363,2874.1080809901,457.155563168317,225,15.3087425742574,15.70545829,2.95109900990099,0.916138613861386,749.826732673267,320.243972208911,329.403723035643,20,40,11,32,5306308.61334361,396808.646991934,2,2,5306309.84821593,396807.640902354,15.1040782134714,0,0,15.2480177572816,725.803071539508,2.95109900990099,3.16523754182437,3.38548543698386,0.916138613861386,0.930778822791241,0.640084628905258,1.09902312346433,0.871925749056578,0.919665250136422,8.7246302030799,0,649.647695244555,648.823249012754,631.303149711082,5.90240655753575,1338.17747292247,-0.409665533985719,0,1338.17747292247,15.2479894411998,15.2479894411998,-1.63866213594288E-05,15.2422003075595,25.5,1014.9,37.36,11.6876823463252
-47364,2874.10669138614,457.152871881188,225,15.2849306930693,15.7029767304951,2.31550495049505,-1.81069306930693,749.673267326733,329.953645285149,318.369714310891,20,40,11,32,5306306.0992709,396805.248742495,2,2,5306307.18112568,396804.36732115,19.3266016676963,0,0,15.2456084762088,730.038562713665,2.31550495049505,2.4835233155505,2.84456108730509,-1.81069306930693,-1.79605286037707,-1.26131487228035,1.76493768639117,1.40023861317305,1.38256252580563,8.72284455269007,0,648.32335959604,647.554484440065,631.211967978356,5.90334034773483,1335.38902887289,-84.4255727455841,0,1335.38902887289,15.2438147018091,15.2438147018091,-0.00337701941515771,15.2383372164719,25.5,1014.9,37.38,8.29614794949239
+47364,2874.10669138614,457.152871881188,225,15.2849306930693,15.7029767304951,2.31550495049505,-1.81069306930693,749.673267326733,329.953645285149,318.369714310891,20,40,11,32,5306306.0992709,396805.248742495,2,2,5306307.18112568,396804.36732115,19.3266016676928,0,0,15.2456084762088,730.038562713665,2.31550495049505,2.4835233155505,2.84456108730509,-1.81069306930693,-1.79605286037707,-1.26131487228035,1.76493768639117,1.40023861317305,1.38256252580563,8.72284455269007,0,648.32335959604,647.554484440065,631.211967978356,5.90334034773483,1335.38902887289,-84.4255727455841,0,1335.38902887289,15.2438147018091,15.2438147018091,-0.00337701941515771,15.2383372164719,25.5,1014.9,37.38,8.29614794949238
 47365,2874.10531594059,457.150182475248,225,15.2250594059406,15.6802421417822,2.63359405940594,2.15158415841584,749.668316831683,325.915005844554,304.237605792079,20,40,11,32,5306303.61138451,396801.853302331,2,2,5306304.52585843,396801.108251478,23.5304070022188,0,0,15.2235360599827,734.270647105729,2.63359405940594,2.82469370183449,3.11392708537024,2.15158415841584,2.1662243673457,1.65122252007561,1.44026882827514,1.1426579205887,1.12409921865441,8.72278695106459,-0.000201605689174262,630.152611636634,630.146207827144,630.014462211823,5.911907470306,1299.83167568174,-72.351293812008,0,1299.83167568174,15.2270787244083,15.2270787244083,-0.00289255029992099,15.2267396787588,25.5,1014.9,37.4,10.1725895358763
 47366,2874.10390871287,457.14752970297,225,15.2380198019802,15.6886897239604,3.09270297029703,1.50980198019802,749.653465346535,311.841160369307,300.000392874257,20,40,11,32,5306301.06381238,396798.502436456,2,2,5306301.8686062,396797.846745451,27.7373549394884,0,0,15.231737596078,738.499952425137,3.09270297029703,3.31711661128724,3.50514040434103,1.50980198019802,1.52444218912788,1.14858241645159,0.950763011629987,0.7543014640835,0.810417342028486,8.72261414618815,0.000201605689174262,611.841553243564,612.60350841544,628.835998341316,5.90872239340507,1261.35911716385,11.3302737443749,0,1261.35911716385,15.2298792679092,15.2298792679092,0.000451711100404283,15.213908760366,25.5,1014.9,37.42,12.4004417590331
 47367,2874.10252495049,457.144848712871,225,15.2023267326732,15.6582743395049,2.70846534653465,0.775742574257426,749.10396039604,300.671537484158,309.553749577228,20,40,11,32,5306298.56033677,396795.117197472,2,2,5306299.21211481,396794.586173266,31.9430983352479,0,0,15.2022080966067,742.728746700233,2.70846534653465,2.90499782176724,3.17646879161886,0.775742574257426,0.790382783187283,0.615920894324738,1.33721089489006,1.06089543184346,0.986703102016487,8.71622036576006,1.03052879760998E-19,610.225287061386,611.055063140849,628.789218846869,5.9202131820841,1259.5568388832,-369.161626859188,0,1259.5568388832,15.2006766265405,15.2006766265405,-0.0147664587291607,15.2028242172155,25.5,1014.9,37.44,10.2801626470844
 47368,2874.10115445545,457.142168910891,225,15.1660198019802,15.6210003960396,3.4839504950495,3.2850495049505,749.519801980198,302.675436947525,324.11436379802,20,40,11,32,5306296.0814123,396791.733875036,2,2,5306296.56635689,396791.338775325,36.1318485497273,0,0,15.1660198019802,746.944826443406,3.4839504950495,3.73675395633651,3.83404652262468,3.2850495049505,3.29968971388035,2.5581784555751,0.603089496265667,0.478469696908669,0.481199170594511,8.72105890230024,-0.000288008127391804,626.789800745545,626.92450543583,629.810544028531,5.93433650826532,1297.54106206166,-3.35499105260311,0,1297.54106206166,15.1705630820508,15.1705630820508,-0.000132067662214193,15.1911632177536,25.5,1014.9,37.46,14.7955948781677
 47369,2874.09979326733,457.139478811881,225,15.1843465346534,15.6398769306931,3.85545544554455,2.53732673267327,749.024752475248,316.010482854455,330.295273980198,20,40,11,32,5306293.61995886,396788.338032258,2,2,5306293.92143821,396788.092407476,40.3192700695711,0,0,15.1843465346534,751.159561921957,3.85545544554455,4.13521616053073,4.15132618756096,2.53732673267327,2.55196694160312,2.01532435280135,0.456097141670162,0.361851205313814,0.359798468504859,8.7152987397524,0.000345609752870164,646.305756834654,645.62154325922,630.967573781855,5.92716571508733,1335.44504430888,43.7692766685944,0,1335.44504430888,15.1796971865503,15.1796971865503,0.00174819462144008,15.1791535004732,25.5,1014.9,37.48,17.3490892624356
-47370,2874.09843831683,457.136775445545,225,15.1758910891089,15.6311678217822,3.32864356435644,0.547821782178218,749.450495049505,328.416495478218,322.41377979802,20,40,10.8118811881188,32,5306291.17035723,396784.925867697,2,2,5306291.27325544,396784.842033268,44.5118593088732,0,0,15.1758910891089,755.376670640331,3.32864356435644,3.57017759753393,3.70266178045077,0.547821782178218,0.562461991108076,0.44269507595793,0.690791082953377,0.548049007874472,0.556533207746481,8.72025247954354,-5.15264398804992E-20,650.830275276238,649.956206244888,631.237738913166,5.93046922072346,1346.31492932572,-76.2792671455117,0,1346.31492932572,15.175247132634,15.175247132634,-0.00305117145377341,15.1711306875665,25.4987376237624,1014.9,37.5025247524752,13.7612678309429
-47371,2874.09708574257,457.134076633663,225,15.1516534653465,15.6062030693069,2.95114851485148,0.136435643564356,748.955445544554,328.487444031683,307.716090664357,20,40,11,32,5306288.72505771,396781.519451926,2,2,5306288.62960412,396781.597220979,48.6972743445201,0,0,15.1516534653465,759.589093962666,2.95114851485148,3.16529063896794,3.38016726039759,0.136435643564356,0.151075852494214,0.105697294306241,1.06091563856873,0.84169262965913,0.804099647100636,8.7144923169957,8.64024382175411E-05,636.203534696039,635.943225240771,630.364255569942,5.93995239523613,1317.28567515511,-122.45298511126,0,1317.28567515511,15.1547877659053,15.1547877659053,-0.00489875720245417,15.1678296585773,25.49,1014.9,37.54,11.4700926419333
+47370,2874.09843831683,457.136775445545,225,15.1758910891089,15.6311678217822,3.32864356435644,0.547821782178218,749.450495049505,328.416495478218,322.41377979802,20,40,10.8118811881188,32,5306291.17035723,396784.925867697,2,2,5306291.27325544,396784.842033268,44.5118593088727,0,0,15.1758910891089,755.376670640331,3.32864356435644,3.57017759753393,3.70266178045077,0.547821782178218,0.562461991108076,0.44269507595793,0.690791082953377,0.548049007874472,0.556533207746481,8.72025247954354,-5.15264398804992E-20,650.830275276238,649.956206244888,631.237738913166,5.93046922072346,1346.31492932572,-76.2792671455117,0,1346.31492932572,15.175247132634,15.175247132634,-0.00305117145377341,15.1711306875665,25.4987376237624,1014.9,37.5025247524752,13.7612678309429
+47371,2874.09708574257,457.134076633663,225,15.1516534653465,15.6062030693069,2.95114851485148,0.136435643564356,748.955445544554,328.487444031683,307.716090664357,20,40,11,32,5306288.72505771,396781.519451926,2,2,5306288.62960412,396781.597220979,48.6972743445201,0,0,15.1516534653465,759.589093962666,2.95114851485148,3.16529063896794,3.38016726039759,0.136435643564356,0.151075852494214,0.105697294306242,1.06091563856873,0.84169262965913,0.804099647100636,8.7144923169957,8.64024382175411E-05,636.203534696039,635.943225240771,630.364255569942,5.93995239523613,1317.28567515511,-122.45298511126,0,1317.28567515511,15.1547877659053,15.1547877659053,-0.00489875720245417,15.1678296585773,25.49,1014.9,37.54,11.4700926419333
 47372,2874.09572534653,457.131393069307,225,15.1668910891089,15.6218978217822,3.29481188118812,0.340693069306931,749.648514851485,316.158098737624,299.715194175248,20,40,11,32,5306286.26493177,396778.131766144,2,2,5306285.98920944,396778.356405857,52.8775335204012,0,0,15.1668910891089,763.798848253098,3.29481188118812,3.53389100961933,3.67333992988244,0.340693069306931,0.355333278236788,0.290576267522698,0.724482607988367,0.574778662215494,0.615407637111587,8.72255654456267,1.71754799601664E-20,615.873292912871,616.466070350495,629.166209096503,5.93398881215918,1275.1047837472,200.484280569603,0,1275.1047837472,15.1663680031369,15.1663680031369,0.00801936629306175,15.1638650228051,25.48,1014.9,37.58,13.5469835469013
 47373,2874.09438811881,457.128681881188,225,15.1701881188119,15.6252937623762,3.07746534653465,2.80356435643564,749.178217821782,302.764002812871,305.767077675247,20,40,11,32,5306283.84833907,396774.710437483,2,2,5306283.34970844,396775.116687644,57.0563778155932,0,0,15.1701881188118,768.014207824057,3.07746534653465,3.3007733104969,3.48852098035891,2.80356435643564,2.8182045653655,2.11914690600465,0.940630292562206,0.746262526162608,0.727398772786114,8.71708439014223,-3.43509599203328E-20,608.531080488119,609.431947972679,628.730561204918,5.93269884368318,1258.83171949451,-176.759405005925,0,1258.83171949451,15.1699800019606,15.1699800019606,-0.00707038525634093,15.1568441759268,25.47,1014.9,37.62,12.2212489694089
 47374,2874.09301821782,457.12601009901,225,15.1490099009901,15.6034801980198,3.09650495049505,2.09940594059406,749.405940594059,300.619626263366,320.307667386138,20,40,11,32,5306281.37034805,396771.337106636,2,2,5306280.70921566,396771.875752127,61.2367922851409,0,0,15.1490099009901,772.22433562934,3.09650495049505,3.32119447191329,3.50359135267891,2.09940594059406,2.11404614952391,1.60141335899906,0.913499294057409,0.724737759586834,0.728473934546887,8.71973406491424,-2.06105759521997E-19,620.927293649505,621.307997773493,629.470910239683,5.94098838588118,1286.65072488525,-28.9323320454118,0,1286.65072488525,15.148971963533,15.148971963533,-0.00115729394721916,15.1530833722327,25.46,1014.9,37.66,12.3218278631706
@@ -194,22 +194,22 @@ Time,Lat,Long,Heading,v_veh_GPS,v_veh_CAN,vair_ar,beta_ar,n_eng,tq_l,tq_r,t_amb_
 47378,2874.08752752475,457.115325841584,225,15.1216336633663,15.5752826732673,2.62450495049505,-3.5,749.123762376238,320.382783636634,300.647574348515,20,40,11,32,5306271.43779853,396757.846963093,2,2,5306270.14058886,396758.903840885,77.9689874102225,0,0,15.1216336633663,789.046180156301,2.62450495049505,2.81494506627534,3.10021714122039,-3.5,-3.48535979107015,-2.53419491411485,1.40232708974249,1.11255629844419,1.16718050606687,8.71645077226197,-2.88008127391804E-05,621.030357985149,621.406737377257,629.512550161669,5.95174670762757,1288.70551539511,-89.3891176254211,0,1288.70551539511,15.1192687971767,15.1192687971767,-0.00357535753575257,15.1257044978234,25.42,1014.9,37.82,9.66525042959634
 47379,2874.08617069307,457.112641188119,225,15.1155544554456,15.5690210891089,2.70259405940594,-2.5729702970297,749.133663366337,305.831180664357,302.715895073267,20,40,11,32,5306268.98431295,396754.458018563,2,2,5306267.50222703,396755.665520889,82.1460281752536,0,0,15.1155544554455,793.245289094697,2.70259405940594,2.89870050054004,3.16642605559118,-2.5729702970297,-2.55833008809985,-1.86349288989738,1.31647433868803,1.04444378773035,1.07374326340595,8.71656597551292,0.000201605689174262,608.547075737624,609.447272036742,628.842964583372,5.95414097775716,1263.33731940443,-6.53131737884849,0,1263.33731940443,15.1144800509754,15.1144800509754,-0.000262773802133406,15.1228956702344,25.41,1014.9,37.86,10.0835136497865
 47380,2874.08480613861,457.10997039604,225,15.1086138613862,15.5618722772277,2.51618811881188,-1.67465346534654,748.524752475248,299.709347907921,316.078165223762,20,40,11,32,5306266.51621514,396751.086080754,2,2,5306264.86636341,396752.430267194,86.3191137829214,0,0,15.1086138613861,797.442933924181,2.51618811881188,2.69876851614782,3.00753866045076,-1.67465346534654,-1.66001325641668,-1.17707116547582,1.5100018375588,1.19798160309864,1.17598830813922,8.70948097557909,0,615.787513131683,616.383890014175,629.243047913477,5.95687650685755,1277.9097459817,21.5792574515991,0,1277.9097459817,15.1129985295559,15.1129985295559,0.00086320513239452,15.1189594348955,25.4012623762377,1014.9,37.9126237623762,9.13776689331396
-47381,2874.08343772277,457.107302376238,225,15.1226633663366,15.5763432673267,2.33686138613861,-0.277326732673268,748.990099009901,307.645670167327,328.449175234653,20,40,11,32,5306264.04090484,396747.717465176,2,2,5306262.22924913,396749.193478445,90.4941794238323,0,0,15.1226633663366,801.642268357627,2.33686138613861,2.50642942328588,2.85569692360941,-0.277326732673268,-0.262686523743409,-0.223699402780343,1.70430315679253,1.35213333994428,1.32188905623209,8.71489552837405,0.000259207314652623,636.09484540198,635.839096711195,630.332285165715,5.95134100783962,1319.66031002011,52.3651888531548,0,1319.66031002011,15.1207265954318,15.1207265954318,0.00209265976102462,15.1176743384177,25.4,1014.9,38.04,8.2166304731984
+47381,2874.08343772277,457.107302376238,225,15.1226633663366,15.5763432673267,2.33686138613861,-0.277326732673268,748.990099009901,307.645670167327,328.449175234653,20,40,11,32,5306264.04090484,396747.717465176,2,2,5306262.22924913,396749.193478445,90.4941794238288,0,0,15.1226633663366,801.642268357627,2.33686138613861,2.50642942328588,2.85569692360941,-0.277326732673268,-0.262686523743409,-0.223699402780343,1.70430315679253,1.35213333994428,1.32188905623209,8.71489552837405,0.000259207314652623,636.09484540198,635.839096711195,630.332285165715,5.95134100783962,1319.66031002011,52.3651888531548,0,1319.66031002011,15.1207265954318,15.1207265954318,0.00209265976102462,15.1176743384177,25.4,1014.9,38.04,8.2166304731984
 47382,2874.08207019802,457.104632574257,225,15.1201584158416,15.5737631683168,2.19322772277228,1.8480198019802,749.163366336634,322.343529360396,328.455075558416,20,40,11,32,5306261.56728682,396744.346656375,2,2,5306259.59173602,396745.956200162,94.6698765044128,0,0,15.1201584158416,805.842854413734,2.19322772277228,2.35237337093671,2.73326997058519,1.8480198019802,1.86266001091005,1.23081502451378,1.85743926851407,1.47362606932337,1.44200148947101,8.7169115852658,0,650.798604918812,649.92586482289,631.132509054774,5.95232836460229,1350.68916576638,-51.2953827093807,0,1350.68916576638,15.1207242427213,15.1207242427213,-0.00205181409229832,15.1214891884987,25.4,1014.9,38.18,7.54674768235668
 47383,2874.08070851485,457.101954158416,225,15.1190396039604,15.5726107920792,2.32124752475248,-0.556138613861386,748.683168316832,330.289781526733,316.090441470297,20,40,11,32,5306259.10468337,396740.965308975,2,2,5306256.95345671,396742.717981451,98.8467866242404,0,0,15.1190396039604,810.042418605154,2.32124752475248,2.48968258420443,2.84216365094598,-0.556138613861386,-0.541498404931529,-0.417163941512394,1.72072896790333,1.36516499264646,1.419025822314,8.71132422759439,-0.000633617880261968,646.380222997029,645.692884716675,630.884957201211,5.95276449001418,1340.75920339637,4.64772611870742,0,1340.75920339637,15.1177797274777,15.1177797274777,0.000190613120715875,15.126977735432,25.4,1014.9,38.32,8.13596957018827
 47384,2874.07936891089,457.099242079208,225,15.1249504950495,15.578699009901,2.03560396039604,0.724158415841584,749.232673267327,324.178679075248,302.723260516832,20,40,11,32,5306256.6837306,396737.542759823,2,2,5306254.31161855,396739.475394615,103.029331095069,0,0,15.1249504950495,814.24238194399,2.03560396039604,2.18331206581513,2.59956536029619,0.724158415841584,0.738798624771444,0.506818128196392,2.02482183335791,1.60642142650424,1.65252124554683,8.71771800802249,0.000259207314652623,626.901939592079,627.03193876917,629.822857710428,5.95044554230676,1300.79995665766,185.04537280379,0,1300.79995665766,15.1275033820214,15.1275033820214,0.00739987365072367,15.1311973510276,25.4,1014.9,38.46,6.77415521737344
-47385,2874.07801079208,457.096551287129,225,15.1500594059406,15.6045611881188,1.85546534653465,1.36712871287129,749.188118811881,309.628741403961,300.643257234653,20,40,11,32,5306254.22800938,396734.14610906,2,2,5306251.66859116,396736.231348122,107.213758347667,0,0,15.1500594059406,818.447946300427,1.85546534653465,1.99010217979867,2.44770284189834,1.36712871287129,1.38176892180114,0.765267651478243,2.22576506641592,1.76584262089155,1.73250591977418,8.71719959339319,-0.000172804876435082,610.271998638614,611.09981463234,628.854503870832,5.9405811299418,1264.12805889451,-11.5710821801218,0,1264.12805889451,15.1473148710911,15.1473148710911,-0.000461556056586919,15.1378145755683,25.4,1014.9,38.6,6.29003752582864
-47386,2874.07663207921,457.09389,225,15.1385445544554,15.5927008910891,1.8809603960396,-1.02287128712871,748.727722772277,300.017114117822,311.762777039604,20,40,11,32,5306251.73348507,396730.785523791,2,2,5306249.02774354,396732.989977083,111.39473458874,0,0,15.1385445544554,822.654579358734,1.8809603960396,2.01744720873636,2.46869497470579,-1.02287128712871,-1.00823107819886,-0.822354229704835,2.19514808940261,1.74155220329594,1.6603139184992,8.7118426422237,0.000662418693001148,611.779891157426,612.544433761504,628.966555783465,5.94509781066002,1267.43115850586,18.4357559369088,0,1267.43115850586,15.1401127340457,15.1401127340457,0.000732498992469444,15.144945110642,25.4,1014.9,38.74,6.28014271159683
+47385,2874.07801079208,457.096551287129,225,15.1500594059406,15.6045611881188,1.85546534653465,1.36712871287129,749.188118811881,309.628741403961,300.643257234653,20,40,11,32,5306254.22800938,396734.14610906,2,2,5306251.66859116,396736.231348122,107.213758347667,0,0,15.1500594059406,818.447946300427,1.85546534653465,1.99010217979867,2.44770284189833,1.36712871287129,1.38176892180114,0.765267651478244,2.22576506641592,1.76584262089155,1.73250591977418,8.71719959339319,-0.000172804876435082,610.271998638614,611.09981463234,628.854503870832,5.9405811299418,1264.12805889451,-11.5710821801218,0,1264.12805889451,15.1473148710911,15.1473148710911,-0.000461556056586919,15.1378145755683,25.4,1014.9,38.6,6.29003752582864
+47386,2874.07663207921,457.09389,225,15.1385445544554,15.5927008910891,1.8809603960396,-1.02287128712871,748.727722772277,300.017114117822,311.762777039604,20,40,11,32,5306251.73348507,396730.785523791,2,2,5306249.02774354,396732.989977083,111.39473458874,0,0,15.1385445544554,822.654579358734,1.8809603960396,2.01744720873636,2.46869497470579,-1.02287128712871,-1.00823107819886,-0.822354229704835,2.19514808940261,1.74155220329594,1.6603139184992,8.7118426422237,0.000662418693001148,611.779891157426,612.544433761504,628.966555783465,5.94509781066002,1267.43115850586,18.4357559369088,0,1267.43115850586,15.1401127340457,15.1401127340457,0.000732498992469444,15.144945110642,25.4,1014.9,38.74,6.28014271159682
 47387,2874.07525881188,457.091220693069,225,15.1508118811881,15.6053362376238,2.08121782178218,-2.57920792079208,749.683168316832,304.180683017822,325.858584704951,20,40,11,32,5306249.24922851,396727.41512674,2,2,5306246.3861877,396729.747736747,115.576832117328,0,0,15.1508118811881,826.86103010131,2.08121782178218,2.23223577389899,2.63975551218599,-2.57920792079208,-2.56456771186223,-1.73444013953623,1.98462349111083,1.57452949545539,1.66227528350803,8.72295975594102,0,630.039267722772,630.037619989903,630.008694066674,5.94028697114326,1305.85560748408,120.596760281523,0,1305.85560748408,15.1520583276149,15.1520583276149,0.00482387347645377,15.1489685114671,25.4,1014.9,38.88,7.03646364859493
 47388,2874.07388128713,457.08855,225,15.1683564356436,15.6234071287129,1.76681188118812,1.55415841584158,749.247524752475,318.291482046535,329.971059673267,20,40,11,32,5306246.75711856,396724.042859061,2,2,5306243.74058261,396726.500526408,119.765340347791,0,0,15.1683564356435,831.072728643666,1.76681188118812,1.89501581509649,2.37332599833641,1.55415841584158,1.56879862477144,1.01946959817081,2.32394367725926,1.84373402915516,1.79565119514555,8.71789081289893,-0.000489613816566066,648.262541719802,647.496218571071,631.078873653474,5.93341375821991,1341.30257019946,-12.6170010444292,0,1341.30257019946,15.1649391236153,15.1649391236153,-0.000501040203028739,15.1490681497419,25.4,1014.9,39.02,5.65742861084198
 47389,2874.07250158416,457.085883267327,225,15.150603960396,15.6051220792079,2.15842574257426,-0.793069306930693,749.618811881188,329.376107663367,320.319211421782,20,40,11,32,5306244.26088745,396720.675449287,2,2,5306241.09571219,396723.254217781,123.9526854791,0,0,15.150603960396,835.283885354339,2.15842574257426,2.31504607900817,2.70545877462186,-0.793069306930693,-0.778429098000835,-0.516302819944931,1.90230700858495,1.50922253406968,1.50528768984584,8.7222109348098,2.88008127391804E-05,649.695319085148,648.868874485962,631.146606136505,5.94036530567091,1346.50674784944,-108.916460413259,0,1346.50674784944,15.1531754729928,15.1531754729928,-0.00435687133069084,15.1487063274468,25.4,1014.9,39.16,7.37685576082636
-47390,2874.07112435643,457.083215643564,225,15.1361089108911,15.5901921782178,1.97141584158416,-0.629306930693069,748.90099009901,327.243406191089,305.776904720792,20,40,11,32,5306241.76926314,396717.307008728,2,2,5306238.45217495,396720.009545501,128.137919921882,0,0,15.1361089108911,839.490351966002,1.97141584158416,2.11446630946442,2.54553893919394,-0.629306930693069,-0.614666721763212,-0.404935374003234,2.09878059166278,1.66509766757458,1.57302760122314,8.71385869911544,-1.37403839681331E-19,633.020310911881,632.893574217832,630.171230479929,5.94605823205485,1311.95491425028,-41.4919750713844,0,1311.95491425028,15.1365808254093,15.1365808254093,-0.00165969567254142,15.1438082366831,25.4,1014.9,39.2722277227723,6.79772460274747
+47390,2874.07112435643,457.083215643564,225,15.1361089108911,15.5901921782178,1.97141584158416,-0.629306930693069,748.90099009901,327.243406191089,305.776904720792,20,40,11,32,5306241.76926314,396717.307008728,2,2,5306238.45217495,396720.009545501,128.137919921882,0,0,15.1361089108911,839.490351966002,1.97141584158416,2.11446630946442,2.54553893919394,-0.629306930693069,-0.614666721763212,-0.404935374003234,2.09878059166278,1.66509766757458,1.57302760122315,8.71385869911544,-1.37403839681331E-19,633.020310911881,632.893574217832,630.171230479929,5.94605823205485,1311.95491425028,-41.4919750713844,0,1311.95491425028,15.1365808254093,15.1365808254093,-0.00165969567254142,15.1438082366831,25.4,1014.9,39.2722277227723,6.79772460274747
 47391,2874.06975613861,457.080533861386,225,15.1496435643564,15.6041328712871,2.14291089108911,1.99871287128713,749.128712871287,313.854173528713,299.714269281188,20,40,11,32,5306239.2946459,396713.921228348,2,2,5306235.80693183,396716.762779425,132.325855106034,0,0,15.1496435643564,843.696409391745,2.14291089108911,2.29840543421385,2.69232029015163,1.99871287128713,2.01335308021698,1.31950963256181,1.91815391449537,1.52179490403276,1.55883205467453,8.71650837388745,0.000460813003826886,613.568442809901,614.257935152975,629.046484427308,5.94074314149868,1270.88339433089,42.9058342813879,0,1270.88339433089,15.1469676502304,15.1469676502304,0.00171279504188076,15.1313260963405,25.4,1014.9,39.22,7.55511131154872
 47392,2874.06837405941,457.077872475248,225,15.1266633663367,15.5804632673267,2.5549702970297,0.485049504950495,749.480198019802,301.518408436634,307.705264180198,20,40,11,32,5306236.79389976,396710.560390645,2,2,5306233.16347834,396713.518209928,136.510956971125,0,0,15.1266633663366,847.902131833991,2.5549702970297,2.74036481841926,3.04149639317099,0.485049504950495,0.499689713880352,0.405515051446781,1.47482362927037,1.17007246728749,1.24936975662142,8.72059808929641,-1.71754799601664E-20,609.223672616832,610.095477913351,628.850052859151,5.94976810467179,1264.39554309696,-225.162026634699,0,1264.39554309696,15.1278665817077,15.1278665817077,-0.00900646995392428,15.1193307848927,25.4,1014.9,39.14,9.33028647128838
 47393,2874.06698346535,457.075231980198,225,15.0998118811881,15.5528062376238,3.06166336633663,2.23554455445545,748.455445544554,301.577556457426,322.403005540594,20,40,11,32,5306234.27691728,396707.22528953,2,2,5306230.52614997,396710.281158408,140.686361554204,0,0,15.0998118811881,852.100385051814,3.06166336633663,3.28382470226989,3.47114266348222,2.23554455445545,2.2501847633853,1.68914884319037,0.937226874153023,0.743562375381044,0.804119331773069,8.70867455282239,-0.000518414629305246,623.98056199802,624.233146482237,629.676043745113,5.96035208231113,1295.55514855166,-191.766245002262,0,1295.55514855166,15.0979440250956,15.0979440250956,-0.00766673201973763,15.1069835670399,25.4,1014.9,39.06,12.1165747388596
 47394,2874.06559257426,457.072599108911,225,15.093702970297,15.546514059406,2.61462376237624,0.349108910891089,748.044554455446,313.977237163366,330.294457754455,20,40,11,32,5306231.75921648,396703.899671784,2,2,5306227.89317889,396707.049455012,144.854867706417,0,0,15.093702970297,856.291499518262,2.61462376237624,2.8043468764191,3.09043730603991,0.349108910891089,0.363749119820946,0.261626890230496,1.40117289470227,1.11164060126411,1.09625740976837,8.70389361790769,1.54579319641498E-19,644.271694917822,643.672833578198,630.76252016968,5.96277271836297,1337.48175049484,24.7449062745319,0,1337.48175049484,15.0907313008528,15.0907313008528,0.000989826705442227,15.0962393852646,25.4,1014.9,38.98,9.60046592604495
 47395,2874.06420306931,457.069961485148,225,15.0738415841584,15.5260568316832,1.71364356435643,1.53435643564356,748.806930693069,327.317241308911,324.124256044555,20,40,11,32,5306229.24419116,396700.568177429,2,2,5306225.25839754,396703.815529686,149.02623987873,0,0,15.0738415841584,860.482543990209,1.71364356435643,1.8379894829041,2.32257589498734,1.53435643564356,1.54899664457342,1.03287265675932,2.35563498420211,1.86887678180046,1.73383736677781,8.71276426823136,-0.000115203250956721,651.441497353466,650.541780544643,631.119274579624,5.97062673025461,1355.53801532187,-136.922623022842,0,1355.53801532187,15.0756699343201,15.0756699343201,-0.00547604265377024,15.0878913535518,25.4,1014.9,38.9,5.51758391267832
-47396,2874.0628219802,457.067317623762,225,15.0720891089109,15.5242517821782,2.14574257425742,-2.17762376237624,748.554455445545,329.33283060099,309.5652554,20,40,11,32,5306226.74489586,396697.22918969,2,2,5306222.62622247,396700.584803308,153.193485794546,0,0,15.0720891089109,864.668544815293,2.14574257425742,2.30144259082596,2.69022347683415,-2.17762376237624,-2.16298355344638,-1.51337589192257,1.8938734006197,1.50253161029806,1.53665365140123,8.70982658533196,0.000230406501913443,638.89808600099,638.524709207274,630.460933401968,5.97132206443342,1329.15642551309,79.9646969845613,0,1329.15642551309,15.0734749534359,15.0734749534359,0.00319685433889906,15.0885539049144,25.4,1014.9,38.82,7.36074710847719
+47396,2874.0628219802,457.067317623762,225,15.0720891089109,15.5242517821782,2.14574257425742,-2.17762376237624,748.554455445545,329.33283060099,309.5652554,20,40,11,32,5306226.74489586,396697.22918969,2,2,5306222.62622247,396700.584803308,153.193485794542,0,0,15.0720891089109,864.668544815293,2.14574257425742,2.30144259082596,2.69022347683415,-2.17762376237624,-2.16298355344638,-1.51337589192257,1.8938734006197,1.50253161029806,1.53665365140123,8.70982658533196,0.000230406501913443,638.89808600099,638.524709207274,630.460933401968,5.97132206443342,1329.15642551309,79.9646969845613,0,1329.15642551309,15.0734749534359,15.0734749534359,0.00319685433889906,15.0885539049144,25.4,1014.9,38.82,7.36074710847719
 47397,2874.06144752475,457.064664950495,225,15.0822871287129,15.5347557425743,2.31364356435644,-1.30663366336634,748.163366336634,318.170881533663,300.002933883168,20,40,11,32,5306224.25808682,396693.879442987,2,2,5306219.99376043,396697.353724708,157.361186035129,0,0,15.0822871287129,868.856920860398,2.31364356435644,2.48152686295233,2.83362105906063,-1.30663366336634,-1.29199345443648,-0.893902287025602,1.71815964332386,1.3631265821611,1.46879229400194,8.70527605691917,-0.000259207314652623,618.173815416832,618.67005954029,629.370658095706,5.96729895755637,1284.49560600004,42.4999456205801,0,1284.49560600004,15.0815058327615,15.0815058327615,0.00170190286355512,15.0955034154959,25.4,1014.9,38.74,8.09504279935312
 47398,2874.06007287129,457.06200980198,225,15.0997524752475,15.5527450495049,2.26827722772277,-1.52435643564356,748.331683168317,304.093638609901,304.228845784159,20,40,11,32,5306221.77096809,396690.526603657,2,2,5306217.35966043,396694.120635672,161.531479495216,0,0,15.0997524752475,873.048791789991,2.26827722772277,2.43286864058631,2.79589115064861,-1.52435643564356,-1.50971622671371,-1.04830957686296,1.77261177910228,1.40632696463046,1.40686538248317,8.70723451218543,0.00086402438217541,608.322484394059,609.232104878061,628.839645127195,5.96038657077955,1262.83910731307,253.438119697745,0,1262.83910731307,15.1024933830017,15.1024933830017,0.0101310873661597,15.100360735409,25.4,1014.9,38.66,7.86532816635154
 47399,2874.05869554456,457.059351980198,225,15.1301188118812,15.5840223762376,2.49447524752475,-0.883069306930693,749.326732673267,300.043654050495,318.3577072,20,40,11,32,5306219.27895907,396687.170342946,2,2,5306214.721934,396690.88309556,165.70751430325,0,0,15.1301188118812,877.248225810893,2.49447524752475,2.67548010897875,2.99018668598541,-0.883069306930693,-0.868429098000835,-0.678300964327354,1.54152631868292,1.22299200208927,1.20632436215141,8.71881243890658,-1.20228359721165E-19,618.401361250495,618.888057214362,629.349620870096,5.9484098532271,1282.89148273072,32.9833032519434,0,1282.89148273072,15.129068228605,15.129068228605,0.00131931509982912,15.106445040642,25.4,1014.9,38.58,9.06916864404574
@@ -232,33 +232,33 @@ Time,Lat,Long,Heading,v_veh_GPS,v_veh_CAN,vair_ar,beta_ar,n_eng,tq_l,tq_r,t_amb_
 47416,2874.03524089109,457.014217623762,225,15.0971089108911,15.5500221782178,3.48095049504951,-3.5,748.346534653465,315.887346793069,299.69708859604,20,40,11,32,5306176.83973756,396630.172689504,2,2,5306169.87941822,396635.843482042,236.701952657286,0,0,15.0971089108911,948.598360271843,3.48095049504951,3.73353626943627,3.82749650063139,-3.5,-3.48535979107015,-2.70140946784267,0.550350205458076,0.436628224549862,0.407820114244514,8.70740731706187,-0.000403211378348525,615.584435389109,616.189333712028,629.243755148585,5.96141096908963,1278.16325492403,42.7442101796318,0,1278.16325492403,15.0944835800412,15.0944835800412,0.00171279504187979,15.1003617994568,25.4,1014.9,38.24,14.6984983707625
 47417,2874.03385683168,457.011570990099,225,15.0974455445545,15.5503689108911,3.61952475247525,-3.04326732673267,748.247524752475,302.602479585149,305.98512510198,20,40,11,32,5306174.33504216,396626.830089074,2,2,5306167.24331964,396632.607939951,240.875410261164,0,0,15.0974455445544,952.792154606277,3.61952475247525,3.88216579371276,3.94553225383783,-3.04326732673267,-3.02862711780282,-2.36685175303518,0.489085935904196,0.388023338100534,0.396444641431358,8.7062552845523,0.00086402438217541,608.587604687129,609.48610033336,628.861199006978,5.96128956955762,1263.44292981101,25.0429020006767,0,1263.44292981101,15.1000521517498,15.1000521517498,0.000995272794606759,15.1001078545803,25.4,1014.9,38.28,15.6463293437302
 47418,2874.03246752475,457.008918910891,225,15.1082475247525,15.5614949504951,4.19269306930693,-3.46039603960396,749.237623762376,300.715835474257,320.561396014852,20,40,11,32,5306171.82074997,396623.480528569,2,2,5306164.59998405,396629.363515182,245.060325444365,0,0,15.1082475247525,956.987192807597,4.19269306930693,4.49692452194695,4.43374166598512,-3.46039603960396,-3.44575583067411,-2.76743266227243,0.455638516621659,0.361487348557378,0.367733322161488,8.71777560964797,1.71754799601664E-19,621.277231489109,621.643251704363,629.527792394348,5.95702254586872,1290.56960812623,-7.96524349824295,0,1290.56960812623,15.1045444564258,15.1045444564258,-0.000318596216056853,15.0999814256998,25.4,1014.9,38.32,19.7152863938348
-47419,2874.03108643564,457.006258118812,225,15.0995247524753,15.5525104950495,4.42986138613861,-3.39168316831683,748.653465346535,311.961986352475,330.024545079208,20,40,11,32,5306169.32187637,396620.120385023,1.95049504950495,2,5306161.95760363,396626.12026246,236.809501924846,0,0,15.0995247524752,961.182572675584,4.42986138613861,4.75130231735414,4.63507985931085,-3.39168316831683,-3.37704295938698,-2.73664316843277,0.648398582066157,0.51441630961608,0.504343716786247,8.71097861784153,-0.000345609752870164,641.986531431683,641.483558916175,630.637308136182,5.96046458383411,1333.31144372209,14.7080642317093,0,1333.31144372209,15.1018760905793,15.1018760905793,0.000590900674225564,15.099840272864,25.4,1014.9,38.36,21.5660695108919
+47419,2874.03108643564,457.006258118812,225,15.0995247524753,15.5525104950495,4.42986138613861,-3.39168316831683,748.653465346535,311.961986352475,330.024545079208,20,40,11,32,5306169.32187637,396620.120385023,1.95049504950495,2,5306161.95760363,396626.12026246,236.809501924855,0,0,15.0995247524752,961.182572675584,4.42986138613861,4.75130231735414,4.63507985931085,-3.39168316831683,-3.37704295938698,-2.73664316843277,0.648398582066157,0.51441630961608,0.504343716786247,8.71097861784153,-0.000345609752870164,641.986531431683,641.483558916175,630.637308136182,5.96046458383411,1333.31144372209,14.7080642317093,0,1333.31144372209,15.1018760905793,15.1018760905793,0.000590900674225564,15.099840272864,25.4,1014.9,38.36,21.5660695108919
 47420,2874.02972029703,457.003576138614,225,15.1034752475248,15.5565795049505,3.49516831683168,-3.27871287128713,748.381188118812,326.001272966337,325.674196691089,20,40,11,32,5306166.85117102,396616.734342587,1,2,5306159.31360148,396622.874852182,2.2584486947415,0,0,15.1034752475247,965.377635464362,3.49516831683168,3.7487857690691,3.84005605735396,-3.27871287128713,-3.26407266235728,-2.5212504653507,0.680254684876949,0.539689805425493,0.546251429093722,8.70781052844021,3.43509599203328E-20,651.675469657426,650.765935024096,631.14852346896,5.95890036501339,1352.59061466542,-32.8469820589582,0,1352.59061466542,15.1024146652289,15.1024146652289,-0.00131386901066459,15.098094133446,25.4,1014.9,38.4050495049505,14.987862856918
-47421,2874.02834554455,457.000908316832,225,15.0981089108911,15.5510521782178,4.20180198019802,-3.48683168316832,748.519801980198,329.926039943564,311.510041088119,20,40,11,32,5306164.36419581,396613.36564724,1,2,5306156.67194015,396619.632172457,6.44095348892902,0,0,15.0981089108911,969.572188159633,4.20180198019802,4.50669439636353,4.44090060952329,-3.48683168316832,-3.47219147423847,-2.78978541543781,0.456433499459069,0.362118059587198,0.37212172463835,8.70942337395361,0.000172804876435082,641.436081031683,640.95620622738,630.603039152007,5.96101929579837,1332.05315462358,-33.6990248488494,0,1332.05315462358,15.0967460052936,15.0967460052936,-0.0013492685902244,15.0962627212385,25.4,1014.9,38.48,19.7753676379056
+47421,2874.02834554455,457.000908316832,225,15.0981089108911,15.5510521782178,4.20180198019802,-3.48683168316832,748.519801980198,329.926039943564,311.510041088119,20,40,11,32,5306164.36419581,396613.36564724,1,2,5306156.67194015,396619.632172457,6.44095348892902,0,0,15.0981089108911,969.572188159633,4.20180198019802,4.50669439636353,4.44090060952329,-3.48683168316832,-3.47219147423847,-2.78978541543782,0.456433499459069,0.362118059587198,0.372121724638349,8.70942337395361,0.000172804876435082,641.436081031683,640.95620622738,630.603039152007,5.96101929579837,1332.05315462358,-33.6990248488494,0,1332.05315462358,15.0967460052936,15.0967460052936,-0.0013492685902244,15.0962627212385,25.4,1014.9,38.48,19.7753676379056
 47422,2874.02696336634,456.998252970297,225,15.0857326732673,15.5383046534654,4.05910891089109,-3.4480198019802,749.356435643564,320.127874637624,300.554537614852,20,40,11,32,5306161.86318906,396610.012241838,1,2,5306154.03216853,396616.391812376,10.6204663366045,0,0,15.0857326732673,973.764663214638,4.05910891089109,4.35364718974216,4.31879991647603,-3.4480198019802,-3.43337959305035,-2.72743623442655,0.788838911784581,0.625836658354051,0.686349237412827,8.71915804865945,-1.71754799601664E-20,620.682412252475,621.07339195871,629.511083102739,5.96591296209749,1291.4586271048,-44.1472815881364,0,1291.4586271048,15.0883532006666,15.0883532006666,-0.00176589441122451,15.0924270417734,25.4,1014.9,38.56,19.0602812733866
 47423,2874.02558722772,456.995608712871,225,15.0927326732673,15.5455146534654,3.37350495049505,-1.9439603960396,748.504950495049,305.615165031683,302.880125642574,20,40,11,32,5306159.37312414,396606.672846721,1,2,5306151.40362228,396613.165231603,14.7822062222436,0,0,15.0927326732673,977.955611261943,3.37350495049505,3.61829422903555,3.73606607588018,-1.9439603960396,-1.92932018710975,-1.52851012415738,1.23641166075934,0.980924914529216,0.934620251143261,8.70925056907718,-0.000403211378348525,608.495290674257,609.397659951152,628.872182151204,5.96314062616251,1264.07574320152,28.9918785618102,0,1264.07574320152,15.0906616018037,15.0906616018037,0.00116274003638027,15.0871957127903,25.4,1014.9,38.64,14.8940198380731
 47424,2874.02419425743,456.992961287129,225,15.0854653465347,15.5380293069307,4.78973267326733,-3.36534653465347,748.024752475248,299.730829414851,316.348670259406,20,40,11,32,5306156.85195376,396603.328943531,1,2,5306148.76046008,396609.920709521,18.9670873424266,0,0,15.0854653465346,982.147608621679,4.78973267326733,5.1372866928098,4.9404828073655,-3.36534653465347,-3.35070632572361,-2.75322237621006,0.990218651448003,0.785604161513912,0.762551667982663,8.70366321140578,0.000576016254783607,616.079499674257,616.663624370562,629.271810880465,5.96601615702631,1279.63047634177,-60.3103952382393,0,1279.63047634177,15.0872017449269,15.0872017449269,-0.002416702066246,15.0847127659542,25.4,1014.9,38.72,24.4855971128693
 47425,2874.02278821782,456.990332772277,225,15.0739801980198,15.5261996039604,4.61077227722772,-3.2529702970297,747.732673267327,307.884898814852,328.577253653465,20,40,11,32,5306154.30615432,396600.008159265,1,2,5306146.11879371,396606.678023608,23.1496001185485,0,0,15.0739801980198,986.336525398356,4.61077227722772,4.94534051881026,4.78757555352484,-3.2529702970297,-3.23833008809985,-2.64429609979779,0.810527582711717,0.643043676332502,0.648681936421584,8.70026471550255,-0.00080642275669705,636.462152468317,636.190991032644,630.336094962903,5.97056824186796,1322.46000906654,-122.925845388843,0,1322.46000906654,15.0731761592001,15.0731761592001,-0.00491101090307187,15.0855604754669,25.4,1014.9,38.8,22.9920731048415
-47426,2874.02138079208,456.987711188119,225,15.0751188118812,15.5273723762376,4.62668316831683,-3.49970297029703,748.608910891089,322.580559427723,328.322972661386,20,40,11,32,5306151.75763445,396596.695959023,1,2,5306143.48024551,396603.439165285,27.3271759540284,0,0,15.0751188118812,990.522938627179,4.62668316831683,4.96240594075313,4.8010936336096,-3.49970297029703,-3.48506276136718,-2.84750413392945,0.832135237128454,0.66018641870109,0.643365508382179,8.71046020321222,0.000864024382175411,650.903532089109,650.026389095089,631.092886191262,5.970111437249,1353.94538236738,174.607106819193,0,1353.94538236738,15.076397510048,15.076397510048,0.00697780174057125,15.0869320681394,25.4,1014.9,38.88,23.1220838285679
+47426,2874.02138079208,456.987711188119,225,15.0751188118812,15.5273723762376,4.62668316831683,-3.49970297029703,748.608910891089,322.580559427723,328.322972661386,20,40,11,32,5306151.75763445,396596.695959023,1,2,5306143.48024551,396603.439165285,27.3271759540324,0,0,15.0751188118812,990.522938627179,4.62668316831683,4.96240594075313,4.8010936336096,-3.49970297029703,-3.48506276136718,-2.84750413392945,0.832135237128454,0.66018641870109,0.643365508382179,8.71046020321222,0.000864024382175411,650.903532089109,650.026389095089,631.092886191262,5.970111437249,1353.94538236738,174.607106819193,0,1353.94538236738,15.076397510048,15.076397510048,0.00697780174057125,15.0869320681394,25.4,1014.9,38.88,23.1220838285679
 47427,2874.01997851485,456.985078217822,225,15.0931089108911,15.5459021782178,4.35767326732673,-3.17217821782178,748.693069306931,330.306688663366,315.819612034653,20,40,11,32,5306149.21890743,396593.369744018,1,2,5306140.83874115,396600.196678234,31.5094322300345,0,0,15.0931089108911,994.713460024319,4.35767326732673,4.67387606260279,4.57334363289663,-3.17217821782178,-3.15753800889193,-2.55156513335809,0.582551391011272,0.462175496699584,0.491986931237483,8.71143943084535,-2.91983159322829E-19,646.12630069802,645.449617369267,630.850687717991,5.96299995706705,1342.55736900251,36.0124777469101,0,1342.55736900251,15.0931135182825,15.0931135182825,0.00144049058371449,15.0891302099147,25.4,1014.9,38.96,20.9894918840493
 47428,2874.01856861386,456.982453564356,225,15.0997821782178,15.5527756435644,4.21492079207921,-3.45247524752475,748.613861386139,323.959918928713,302.562703886139,20,40,11,32,5306146.66587481,396590.053632572,1,2,5306138.19647751,396596.953259167,35.692890649577,0,0,15.0997821782178,998.907340332349,4.21492079207921,4.52076513940914,4.45217890057891,-3.45247524752475,-3.4378350385949,-2.76367562887258,0.457674591474864,0.363102697728486,0.35364928891656,8.7105178048377,0.000144004063695902,626.522622814852,626.668538682619,629.820581507398,5.9603600171643,1301.10331504745,7.85552417012768,0,1301.10331504745,15.0977286540535,15.0977286540535,0.000313150126890122,15.091666666145,25.4,1014.9,39.04,19.8733787372033
-47429,2874.01716207921,456.979825544555,225,15.0959504950495,15.548829009901,4.16261386138614,-3.48910891089109,748.217821782178,309.375441050495,300.740588422772,20,40,11,32,5306144.11915482,396586.733436782,1,2,5306135.55473209,396593.710476209,39.8755285962718,0,0,15.0959504950495,1003.10056566238,4.16261386138614,4.46466269751483,4.40743321394143,-3.48910891089109,-3.47446870196124,-2.78646076145571,0.459495632254204,0.364547446534665,0.361277159434382,8.70590967479943,-3.09158639282995E-19,610.116029473267,610.950390162847,628.947444112553,5.96187354796923,1266.68785409889,64.3319478293048,0,1266.68785409889,15.0986388589354,15.0986388589354,0.00257327712969778,15.0956572692464,25.4,1014.9,39.12,19.4862762360864
-47430,2874.01575673267,456.97719,225,15.1107821782178,15.5641056435644,3.77995049504951,-3.48821782178218,748.995049504951,299.962156732673,312.02851020396,20,40,11,32,5306141.57480551,396583.403904545,1,2,5306132.90936054,396590.463242121,44.0639077432789,0,0,15.1107821782178,1007.29627515083,3.77995049504951,4.05423239716031,4.08269160322018,-3.48821782178218,-3.47357761285233,-2.73445860412232,0.449889114180573,0.356925977715362,0.367284498063214,8.71495312999953,-0.000288008127391804,611.990666936634,612.746365076346,629.033319910036,5.95601848433211,1270.65550438978,-97.300625657847,0,1270.65550438978,15.1053941770414,15.1053941770414,-0.00388986918494353,15.1014442762636,25.4,1014.9,39.1823267326733,16.7558222766613
-47431,2874.01435316832,456.974554752475,225,15.0808514851485,15.533277029703,3.34095049504951,0.0228712871287129,748.787128712871,304.374596162376,326.048405994059,20,40,11,32,5306139.03375265,396580.074798523,1,2,5306130.2655127,396587.21787842,48.2498744078623,0,0,15.0808514851485,1011.48919368769,3.34095049504951,3.58337754742502,3.7076469418332,0.0228712871287129,0.037511496058571,0.0173130897245295,0.660928589316474,0.524357170480753,0.49053091303053,8.71253386172944,0.000201605689174262,630.423002156436,630.405252366229,630.020737619799,5.96784152586305,1311.15187942857,6.60701336979151,0,1311.15187942857,15.0851473384962,15.0851473384962,0.000262773802134873,15.1040581662786,25.4,1014.9,39.14,13.8122239128443
-47432,2874.01296168317,456.971900891089,225,15.1164851485149,15.5699797029703,3.24680198019802,-0.00188118811881165,748.381188118812,318.555982879208,329.910448271287,20,40,11,32,5306136.51549212,396576.72290485,1,2,5306127.61959853,396583.969978264,52.4391126689389,0,0,15.1164851485148,1015.68241555237,3.24680198019802,3.48239739978675,3.62952095120842,-0.00188118811881165,0.0127590208110467,0.0504545126113243,0.773747613146116,0.613863760251505,0.575138692149795,8.70781052844022,-0.000288008127391804,648.466431150495,647.691552497716,631.006307688927,5.95378003224256,1344.76591791948,222.112675959043,0,1344.76591791948,15.1127645328889,15.1127645328889,0.00888665599232827,15.1046172411621,25.4,1014.9,39.08,13.2698702441027
+47429,2874.01716207921,456.979825544555,225,15.0959504950495,15.548829009901,4.16261386138614,-3.48910891089109,748.217821782178,309.375441050495,300.740588422772,20,40,11,32,5306144.11915482,396586.733436782,1,2,5306135.55473209,396593.710476209,39.8755285962624,0,0,15.0959504950495,1003.10056566238,4.16261386138614,4.46466269751483,4.40743321394143,-3.48910891089109,-3.47446870196124,-2.78646076145571,0.459495632254204,0.364547446534665,0.361277159434382,8.70590967479943,-3.09158639282995E-19,610.116029473267,610.950390162847,628.947444112553,5.96187354796923,1266.68785409889,64.3319478293048,0,1266.68785409889,15.0986388589354,15.0986388589354,0.00257327712969778,15.0956572692464,25.4,1014.9,39.12,19.4862762360864
+47430,2874.01575673267,456.97719,225,15.1107821782178,15.5641056435644,3.77995049504951,-3.48821782178218,748.995049504951,299.962156732673,312.02851020396,20,40,11,32,5306141.57480551,396583.403904545,1,2,5306132.90936054,396590.463242121,44.0639077432789,0,0,15.1107821782178,1007.29627515083,3.77995049504951,4.05423239716031,4.08269160322018,-3.48821782178218,-3.47357761285233,-2.73445860412232,0.449889114180573,0.356925977715362,0.367284498063213,8.71495312999953,-0.000288008127391804,611.990666936634,612.746365076346,629.033319910036,5.95601848433211,1270.65550438978,-97.300625657847,0,1270.65550438978,15.1053941770414,15.1053941770414,-0.00388986918494353,15.1014442762636,25.4,1014.9,39.1823267326733,16.7558222766613
+47431,2874.01435316832,456.974554752475,225,15.0808514851485,15.533277029703,3.34095049504951,0.0228712871287129,748.787128712871,304.374596162376,326.048405994059,20,40,11,32,5306139.03375265,396580.074798523,1,2,5306130.2655127,396587.21787842,48.2498744078623,0,0,15.0808514851485,1011.48919368769,3.34095049504951,3.58337754742502,3.7076469418332,0.0228712871287129,0.037511496058571,0.0173130897245296,0.660928589316474,0.524357170480753,0.49053091303053,8.71253386172944,0.000201605689174262,630.423002156436,630.405252366229,630.020737619799,5.96784152586305,1311.15187942857,6.60701336979151,0,1311.15187942857,15.0851473384962,15.0851473384962,0.000262773802134873,15.1040581662786,25.4,1014.9,39.14,13.8122239128443
+47432,2874.01296168317,456.971900891089,225,15.1164851485149,15.5699797029703,3.24680198019802,-0.00188118811881165,748.381188118812,318.555982879208,329.910448271287,20,40,11,32,5306136.51549212,396576.72290485,1,2,5306127.61959853,396583.969978264,52.4391126689389,0,0,15.1164851485148,1015.68241555237,3.24680198019802,3.48239739978675,3.62952095120842,-0.00188118811881165,0.0127590208110467,0.0504545126113245,0.773747613146116,0.613863760251505,0.575138692149795,8.70781052844022,-0.000288008127391804,648.466431150495,647.691552497716,631.006307688927,5.95378003224256,1344.76591791948,222.112675959043,0,1344.76591791948,15.1127645328889,15.1127645328889,0.00888665599232827,15.1046172411621,25.4,1014.9,39.08,13.2698702441027
 47433,2874.01157386139,456.969233267327,225,15.1193762376238,15.5729575247525,3.78722772277228,1.70990099009901,748.519801980198,329.468015330693,320.063893166337,20,40,11,32,5306134.00432658,396573.353987209,1,2,5306124.96817846,396580.715319517,56.6370683614681,0,0,15.1193762376238,1019.88263232905,3.78722772277228,4.06203767726485,4.0894991382668,1.70990099009901,1.72454119902887,1.36619490543052,0.436836526147842,0.346570519895975,0.455092382381362,8.70942337395361,0.000288008127391804,649.53190849703,648.712320851701,631.075216075116,5.95263953205655,1346.97032516516,-82.6242859013945,0,1346.97032516516,15.1211718458974,15.1211718458974,-0.00330713764445488,15.1046395721019,25.4,1014.9,39.02,16.8185676705355
 47434,2874.01017386139,456.966601287129,225,15.1048118811881,15.5579562376238,3.42739603960396,-0.87009900990099,749.272277227723,327.078221221782,305.561618039604,20,40,11,32,5306131.46980889,396570.029060572,1,2,5306122.32898414,396577.475668087,60.8156671711285,0,0,15.1048118811881,1024.08076304962,3.42739603960396,3.67609577952405,3.78263433947554,-0.87009900990099,-0.855458800971133,-0.647409442178473,0.718895522045587,0.570346067494151,0.497476080954183,8.71817882102632,5.15264398804992E-20,632.639839261386,632.52906771789,630.142515677563,5.95837673757727,1314.53173874493,-117.840063496857,0,1314.53173874493,15.1037938437408,15.1037938437408,-0.00471359017089868,15.1071216427624,25.4,1014.9,38.96,14.4946657314266
-47435,2874.0087629703,456.963974752475,225,15.0967326732673,15.5496346534654,3.58725742574258,0.25950495049505,748.485148514852,313.583766218812,299.736947765347,20,40,11,32,5306128.91499745,396566.710552455,1,2,5306119.68483732,396574.229937377,65.0021072158451,0,0,15.0967326732673,1028.27482757107,3.58725742574258,3.84755707553492,3.91815907458495,0.25950495049505,0.274145159424907,0.231696575870368,0.512878599709948,0.406899588989131,0.48191439343431,8.70902016257526,0.000144004063695902,613.320713984158,614.020601390295,629.120535895627,5.96156289562286,1273.7340492766,76.3406363314201,0,1273.7340492766,15.0977369865699,15.0977369865699,0.00305253297606815,15.1048653266794,25.4,1014.9,38.9,15.4411329294361
+47435,2874.0087629703,456.963974752475,225,15.0967326732673,15.5496346534654,3.58725742574258,0.25950495049505,748.485148514852,313.583766218812,299.736947765347,20,40,11,32,5306128.91499745,396566.710552455,1,2,5306119.68483732,396574.229937377,65.0021072158451,0,0,15.0967326732673,1028.27482757107,3.58725742574258,3.84755707553492,3.91815907458495,0.25950495049505,0.274145159424907,0.231696575870368,0.512878599709948,0.40689958898913,0.48191439343431,8.70902016257526,0.000144004063695902,613.320713984158,614.020601390295,629.120535895627,5.96156289562286,1273.7340492766,76.3406363314201,0,1273.7340492766,15.0977369865699,15.0977369865699,0.00305253297606815,15.1048653266794,25.4,1014.9,38.9,15.4411329294361
 47436,2874.0073619802,456.961336138614,225,15.1123861386139,15.5657577227723,2.86206930693069,-1.52326732673267,748.089108910891,301.391390015842,307.945057318812,20,40,11,32,5306126.37879764,396563.377324062,1,2,5306117.04090682,396570.9844722,69.1882047678004,0,0,15.1123861386138,1032.47078117393,2.86206930693069,3.06974763883107,3.30191652220644,-1.52326732673267,-1.50862711780282,-1.11474878913079,1.14871996362573,0.911353449582917,0.98001946821505,8.70441203253699,6.87019198406656E-20,609.336447334653,610.20352044179,628.880555317859,5.95539005244495,1263.47724440573,30.0553815167587,0,1263.47724440573,15.1131608665817,15.1131608665817,0.00120222418281452,15.097864675472,25.4,1014.9,38.84,10.9489207325913
 47437,2874.00596504951,456.958699306931,225,15.0935841584158,15.5463916831683,2.02171287128713,-3.44356435643564,749.024752475248,301.710707085149,322.639448647525,20,40,11,32,5306123.85007935,396560.046447444,1,2,5306114.40111242,396567.744084155,73.3677536852351,0,0,15.0935841584158,1036.6675509209,2.02171287128713,2.16841300732985,2.5857837110308,-3.44356435643564,-3.42892414750579,-2.32010815354216,2.03280593946681,1.61275573153469,1.43419252855311,8.7152987397524,-0.000172804876435082,624.350155732673,624.587231518449,629.697223292277,5.96281417067436,1297.8556328354,-213.178163873241,0,1297.8556328354,15.0937439466719,15.0937439466719,-0.0085258525852582,15.0942474822284,25.4,1014.9,38.78,6.76782067182352
 47438,2874.00454940594,456.956056930693,225,15.0756435643564,15.5279128712871,2.77035643564357,-0.692574257425743,748.366336633663,314.248138772277,330.310166115842,20,40,11,32,5306121.28682408,396556.708040093,1,2,5306111.74385305,396564.482257593,77.5749546385106,0,0,15.0756435643564,1040.85705207602,2.77035643564357,2.97137987065637,3.22191170837319,-0.692574257425743,-0.677934048495883,-0.496985840558378,1.23182948364144,0.977289578629053,1.13629949138853,8.70763772356378,0.000259207314652623,644.558304888119,643.947416971327,630.760609442174,5.96990890676294,1340.2651475001,-16.7665740520005,0,1340.2651475001,15.0792188020782,15.0792188020782,-0.000672592011673515,15.093220611388,25.4,1014.9,38.72,10.4229327587839
 47439,2874.00312584159,456.953437821782,225,15.0890495049505,15.541720990099,2.2130297029703,-2.78821782178218,747.722772277228,327.47682820198,323.904787465346,20,40,11,32,5306118.70837908,396553.398349022,1,2,5306109.09459592,396561.230253897,81.7694857677585,0,0,15.0890495049505,1045.04577913872,2.2130297029703,2.37361222836405,2.74837502361344,-2.78821782178218,-2.77357761285232,-1.94113614582985,1.82739994864252,1.44979394430167,1.28798543393181,8.70014951225159,-0.00106563007134967,651.381615667327,650.484411580688,631.117102478776,5.96459607118727,1352.08287633582,69.7157708882874,0,1352.08287633582,15.0850774433879,15.0850774433879,0.00279656678538766,15.0911858467254,25.4,1014.9,38.66,7.6649609236162
-47440,2874.00169722772,456.950825742574,225,15.0919702970297,15.5447294059406,2.92041584158416,-3.10643564356436,747.564356435644,329.234379325743,309.312388285148,20,40,11,32,5306116.12042555,396550.097243657,1,2,5306106.44574989,396557.978754834,85.9633660052413,0,0,15.0919702970297,1049.23786436974,2.92041584158416,3.13232793224071,3.35040176981783,-3.10643564356436,-3.0917954346345,-2.29800366622286,1.08359888493291,0.859688708317396,0.915210961609087,8.69830626023629,0.00077762194395787,638.546767610891,638.188132654093,630.450285308913,5.96344516941482,1324.90733660534,34.7627900742012,0,1324.90733660534,15.0927677678659,15.0927677678659,0.00138466816978738,15.0909454553462,25.4,1014.9,38.5924257425743,11.3284890292811
+47440,2874.00169722772,456.950825742574,225,15.0919702970297,15.5447294059406,2.92041584158416,-3.10643564356436,747.564356435644,329.234379325743,309.312388285148,20,40,11,32,5306116.12042555,396550.097243657,1,2,5306106.44574989,396557.978754834,85.9633660052413,0,0,15.0919702970297,1049.23786436974,2.92041584158416,3.13232793224071,3.35040176981783,-3.10643564356436,-3.0917954346345,-2.29800366622286,1.08359888493291,0.859688708317396,0.915210961609088,8.69830626023629,0.00077762194395787,638.546767610891,638.188132654093,630.450285308913,5.96344516941482,1324.90733660534,34.7627900742012,0,1324.90733660534,15.0927677678659,15.0927677678659,0.00138466816978738,15.0909454553462,25.4,1014.9,38.5924257425743,11.3284890292811
 47441,2874.00029207921,456.948181287129,225,15.0908217821782,15.5435464356436,2.98211881188119,-3.45237623762376,748.544554455446,317.904907739604,299.949153091089,20,40,11,32,5306113.57666281,396546.756586041,1,2,5306103.79516451,396554.72512069,90.1600001342342,0,0,15.0908217821782,1053.43018780208,2.98211881188119,3.19850821198429,3.40273339893013,-3.45237623762376,-3.43773602869391,-2.57723610598338,1.02297558267217,0.811592342458089,0.824932377604375,8.709711382081,-0.000489613816566066,617.854060830693,618.363722326743,629.364895309885,5.96389702125626,1283.74011354966,1.44085857596612,0,1283.74011354966,15.0918349181453,15.0918349181453,6.12685030872456E-05,15.0953663844362,25.4,1014.9,38.48,11.6476679746189
 47442,2873.99887158416,456.945557920792,225,15.0998316831683,15.5528266336634,2.93043564356436,-3.49386138613861,748.89603960396,303.904677374257,304.423597126733,20,40,11,32,5306111.00400392,396543.441684883,1,2,5306101.14566429,396551.472818606,94.3549161327152,0,0,15.0998316831683,1057.62286458976,2.93043564356436,3.14307479409894,3.3592605540645,-3.49386138613861,-3.47922117720876,-2.59676088743888,1.08754102168212,0.862816259016337,0.849506052507957,8.71380109748996,0.000576016254783607,608.32827450099,609.237652023635,628.852951934368,5.96033988165433,1263.79438847688,105.080687361949,0,1263.79438847688,15.0995760219586,15.0995760219586,0.00419893474496191,15.0998637939335,25.4,1014.9,38.36,11.3568528577104
 47443,2873.99743188119,456.942955841584,225,15.1075643564356,15.5607912871287,3.16808910891089,-3.5,748.113861386139,300.105435464356,318.621937189109,20,40,11,32,5306108.39529179,396540.152658585,1,2,5306098.49445215,396548.218415106,98.5525426001635,0,0,15.1075643564356,1061.81923241154,3.16808910891089,3.3979729415131,3.56190296896936,-3.5,-3.48535979107015,-2.64559982996654,0.847612596378903,0.672465603524177,0.679082665344714,8.70470004066438,1.71754799601664E-20,618.727372653465,619.200388702264,629.393103970032,5.95728938798657,1283.40688204617,1.8386426872225,0,1283.40688204617,15.1091940005882,15.1091940005882,7.35222037061602E-05,15.1005939840267,25.4,1014.9,38.24,12.7759983605942
 47444,2873.99600772277,456.940332475247,225,15.1115643564356,15.5649112871287,3.55285148514852,-3.5,748.227722772277,310.000187492079,329.490284910891,20,40,11,32,5306105.81585081,396536.837629833,1,2,5306095.84218398,396544.962715307,102.751841072574,0,0,15.1115643564356,1066.01602842364,3.55285148514852,3.81065456075492,3.88950286699103,-3.5,-3.48535979107015,-2.71046948273464,0.556888537945994,0.44181550435353,0.448193152744988,8.70602487805038,8.64024382175409E-05,639.49047240297,639.092238201775,630.507074063798,5.95571250084582,1326.32553376521,-38.7193799368338,0,1326.32553376521,15.108218606019,15.108218606019,-0.00154941236697875,15.099831708452,25.4,1014.9,38.12,15.2178940849049
-47445,2873.99458247525,456.93770990099,225,15.1007920792079,15.5538158415842,3.47750495049505,-3.5,749.326732673267,324.491744086139,327.03633149901,20,40,11,32,5306103.23437661,396533.523548575,1,2,5306093.18956868,396541.70658941,106.95168913904,0,0,15.1007920792079,1070.21218991979,3.47750495049505,3.72984070824391,3.82477626538036,-3.5,-3.48535979107015,-2.70041242755365,0.56435742746305,0.447741054915425,0.440714301533666,8.71881243890658,3.43509599203328E-20,651.528075585149,650.62472582537,631.139118668983,5.95996033612219,1354.23463095625,-39.4843694834229,0,1354.23463095625,15.1014319184393,15.1014319184393,-0.00157936585737965,15.0979236989583,25.4,1014.9,38,14.6847450759031
+47445,2873.99458247525,456.93770990099,225,15.1007920792079,15.5538158415842,3.47750495049505,-3.5,749.326732673267,324.491744086139,327.03633149901,20,40,11,32,5306103.23437661,396533.523548575,1,2,5306093.18956868,396541.70658941,106.95168913904,0,0,15.1007920792079,1070.21218991979,3.47750495049505,3.72984070824391,3.82477626538036,-3.5,-3.48535979107015,-2.70041242755365,0.56435742746305,0.447741054915425,0.440714301533667,8.71881243890658,3.43509599203328E-20,651.528075585149,650.62472582537,631.139118668983,5.95996033612219,1354.23463095625,-39.4843694834229,0,1354.23463095625,15.1014319184393,15.1014319184393,-0.00157936585737965,15.0979236989583,25.4,1014.9,38,14.6847450759031
 47446,2873.99315059406,456.935101683169,225,15.0897920792079,15.5424858415842,4.04879207920792,-3.5,748.366336633663,330.256634937624,313.516230421782,20,40,11,32,5306100.64029578,396530.227126754,1,2,5306090.54057179,396538.454905167,111.145808228509,0,0,15.0897920792079,1074.40542339063,4.04879207920792,4.34258174502251,4.31022670881038,-3.5,-3.48535979107015,-2.78105492913947,0.423953309719672,0.336349435466941,0.349486158017133,8.70763772356378,-0.000547215442044427,643.772865359406,643.194935642074,630.722041826908,5.96430590584734,1337.37231732214,-92.5157458821713,0,1337.37231732214,15.0905408293304,15.0905408293304,-0.00369653301964137,15.0896163777537,25.4,1014.9,37.88,18.6531613469895
 47447,2873.9917250495,456.932485643565,225,15.091198019802,15.543933960396,4.19223762376237,-3.5,747.628712871287,321.994645989109,301.360300251485,20,40,11,32,5306098.05812914,396526.921169434,1,2,5306087.89165836,396535.203323373,115.339795175836,0,0,15.091198019802,1078.59647366565,4.19223762376237,4.49643602822613,4.43236057592994,-3.5,-3.48535979107015,-2.79691739967692,0.556671312185306,0.441643165182443,0.420734539207434,8.6990550813675,0.000345609752870164,623.354946240594,623.633782482952,629.651467319306,5.96375011952405,1293.56451400954,1.90241666700475,0,1293.56451400954,15.087130771493,15.087130771493,7.35222037086027E-05,15.0804971169183,25.4,1014.9,37.76,19.7743671626673
 47448,2873.99030118812,456.929867128713,225,15.0690495049505,15.521120990099,4.05563366336634,-3.31425742574257,747.688118811881,307.301811778218,301.744647120792,20,40,11,32,5306095.47913746,396523.61218183,1,2,5306085.24252762,396531.951474823,119.534126193052,0,0,15.0690495049505,1082.7858961629,4.05563366336634,4.34991977026366,4.31493199332151,-3.31425742574257,-3.29961721681272,-2.63130546238774,0.470878110451079,0.373577898775421,0.395560858459429,8.69974630087325,-0.000921626007653772,609.04645889901,609.925700345427,628.906776642893,5.9725147456208,1265.82714995234,-213.693079146054,0,1265.82714995234,15.0695862170375,15.0695862170375,-0.00854082933045681,15.0726254731067,25.4,1014.9,37.64,18.7203327213268
@@ -267,14 +267,14 @@ Time,Lat,Long,Heading,v_veh_GPS,v_veh_CAN,vair_ar,beta_ar,n_eng,tq_l,tq_r,t_amb_
 47451,2873.98603752475,456.922023861386,225,15.0684554455446,15.5205091089109,4.90461386138614,-3.3560396039604,748.366336633663,320.750553079208,329.209068270297,20,40,11,32,5306087.75657137,396513.700757264,1,2,5306077.30849205,396522.212324673,132.095971839512,0,0,15.0684554455445,1095.33328477676,4.90461386138614,5.26050392417448,5.03724820594225,-3.3560396039604,-3.34139939503054,-2.75613685107749,1.11413986893784,0.883918835770481,0.897479164820156,8.70763772356378,0.000144004063695902,649.959621349505,649.122086236732,631.039612952246,5.97276137693247,1352.13521897427,164.97576217516,0,1352.13521897427,15.0671184197627,15.0671184197627,0.00659793702142324,15.0665701343245,25.4,1014.9,37.43,25.4762576347293
 47452,2873.98462188119,456.919404752475,225,15.0786138613861,15.5309722772277,5.55505940594059,-3.41782178217822,747.925742574257,330.063555754455,317.838268782178,20,40,11,32,5306085.19282265,396510.391290868,1,2,5306074.66520751,396518.967652429,136.281046642954,0,0,15.0786138613861,1099.52150628391,5.55505940594059,5.95814729351885,5.59125952916615,-3.41782178217822,-3.40318157324837,-2.86030716219647,1.79638477515255,1.42518761182331,1.35340887710739,8.70251117889621,2.06105759521997E-19,647.901824536634,647.150637615194,630.942398539731,5.96873290181721,1346.16214338117,17.4628113780082,0,1346.16214338117,15.0805080874424,15.0805080874424,0.000698460935199241,15.0697701771723,25.4,1014.9,37.46,31.4188474051397
 47453,2873.9831919802,456.916778811881,225,15.0735247524752,15.5257304950495,4.53226732673267,-2.63316831683168,748.064356435644,325.527194742574,303.857978077228,20,40,11,32,5306082.60281876,396507.072838118,1,2,5306072.00704897,396515.70472212,140.48967124321,0,0,15.0735247524752,1103.70990523881,4.53226732673267,4.8611390685396,4.7207968903822,-2.63316831683168,-2.61852810790183,-2.1170231984516,0.944358329101355,0.749220217390852,0.81607129923147,8.70412402440961,0.000432012191087705,629.385172819802,629.410971870277,629.967877779147,5.97074201129108,1308.36541549868,-63.2975324362117,0,1308.36541549868,15.074733751593,15.074733751593,-0.00253515450554801,15.0740748627626,25.4,1014.9,37.49,22.648813284038
-47454,2873.98176623762,456.914155148515,225,15.0719603960396,15.5241192079208,4.60892079207921,0.143663366336634,748.257425742574,311.312179433663,300.121610934654,20,40,11,32,5306080.02046868,396503.757357129,1,2,5306069.35339886,396512.447325974,144.691157714366,0,0,15.0719603960396,1107.89687966125,4.60892079207921,4.94335468564081,4.78601004863938,0.143663366336634,0.158303575266491,0.0868435597060239,1.07192827624554,0.850429663621771,0.78439871306778,8.70637048780326,-3.60685079163495E-19,611.433790368317,612.212855871307,629.029729742287,5.97136245102319,1271.50393695368,41.3225414970404,0,1271.50393695368,15.0736880697971,15.0736880697971,0.00165288806108312,15.076909537354,25.4,1014.9,37.52,23.369324457261
+47454,2873.98176623762,456.914155148515,225,15.0719603960396,15.5241192079208,4.60892079207921,0.143663366336634,748.257425742574,311.312179433663,300.121610934654,20,40,11,32,5306080.02046868,396503.757357129,1,2,5306069.35339886,396512.447325974,144.691157714366,0,0,15.0719603960396,1107.89687966125,4.60892079207921,4.94335468564081,4.78601004863938,0.143663366336634,0.158303575266491,0.0868435597060242,1.07192827624554,0.850429663621771,0.78439871306778,8.70637048780326,-3.60685079163495E-19,611.433790368317,612.212855871307,629.029729742287,5.97136245102319,1271.50393695368,41.3225414970404,0,1271.50393695368,15.0736880697971,15.0736880697971,0.00165288806108312,15.076909537354,25.4,1014.9,37.52,23.369324457261
 47455,2873.98034356436,456.911530891089,225,15.077495049505,15.5298199009901,4.09827722772277,-0.148019801980198,749.178217821782,300.487729345545,310.064366081188,20,40,11,32,5306077.44381916,396500.44123517,1,2,5306066.70170893,396509.192335973,148.889540667369,0,0,15.0774950495049,1112.084682219,4.09827722772277,4.39565764973342,4.35183729744038,-0.148019801980198,-0.13337959305034,-0.120927882956266,0.691006235570579,0.548219702287456,0.589213378385909,8.71708439014223,-0.00077762194395787,610.552095426733,611.368158147142,628.980913511152,5.96917224982881,1270.77423554439,-7.66731853433322,0,1270.77423554439,15.0771971375355,15.0771971375355,-0.000300896426275604,15.0757332958717,25.4,1014.9,37.55,19.3915783377698
-47456,2873.97892861386,456.908904653465,225,15.0835544554455,15.5360610891089,3.98319801980198,-1.30089108910891,748.386138613861,303.005793969307,324.54492029802,20,40,11,32,5306074.88152099,396497.122900247,1,2,5306064.05466034,396505.943043299,153.080575040598,0,0,15.0835544554455,1116.2736262234,3.98319801980198,4.27222802979447,4.25430089246358,-1.30089108910891,-1.28625088017905,-1.03691864686089,0.802965383697088,0.637044097343153,0.699749865733884,8.70786813006569,0.000403211378348525,627.550714267327,627.653489902108,629.870597524574,5.96677384034804,1304.25300392926,3.92243033846901,0,1304.25300392926,15.0819865699441,15.0819865699441,0.000153852018869146,15.0722629798192,25.4,1014.9,37.58,18.5793257395682
+47456,2873.97892861386,456.908904653465,225,15.0835544554455,15.5360610891089,3.98319801980198,-1.30089108910891,748.386138613861,303.005793969307,324.54492029802,20,40,11,32,5306074.88152099,396497.122900247,1,2,5306064.05466034,396505.943043299,153.080575040607,0,0,15.0835544554455,1116.2736262234,3.98319801980198,4.27222802979447,4.25430089246358,-1.30089108910891,-1.28625088017905,-1.03691864686089,0.802965383697088,0.637044097343153,0.699749865733884,8.70786813006569,0.000403211378348525,627.550714267327,627.653489902108,629.870597524574,5.96677384034804,1304.25300392926,3.92243033846901,0,1304.25300392926,15.0819865699441,15.0819865699441,0.000153852018869146,15.0722629798192,25.4,1014.9,37.58,18.5793257395682
 47457,2873.97754306931,456.90628990099,225,15.0690198019802,15.5210903960396,4.35443564356436,-1.31138613861386,748.29702970297,316.551276305941,330.249918803961,20,40,10.970297029703,32,5306072.37343799,396493.819845708,1,2,5306061.43672147,396502.729483259,157.225520398336,0,0,15.0690198019802,1120.46139855563,4.35443564356436,4.67040350941342,4.56928383174473,-1.31138613861386,-1.29674592968401,-1.00839689238705,1.1195523533187,0.88821290783983,0.828766702231854,8.70683130080709,-0.000921626007653772,646.801195109901,646.096192219321,630.87719960916,5.97252750568969,1345.39181482802,-45.9867864409727,0,1345.39181482802,15.0718268797177,15.0718268797177,-0.00183260900347555,15.069319677834,25.4,1014.9,37.61,21.6414662778588
 47458,2873.97617306931,456.903675643564,225,15.0677128712871,15.5197442574258,3.92367326732673,0.689108910891089,747.584158415842,328.670522361386,321.934212292079,20,40,10.1089108910891,32,5306069.89413966,396490.51792145,1,2,5306058.83081874,396499.530697754,161.351409119694,0,0,15.0677128712871,1124.64768837961,3.92367326732673,4.2083840243679,4.20276940917398,0.689108910891089,0.703749119820946,0.524607171985817,1.07289003228443,0.851192686561614,0.845244319317597,8.6985366667382,0.000374410565609345,650.604734653465,649.740129640496,631.075294109935,5.9730454987423,1352.12985400498,-120.153082438911,0,1352.12985400498,15.064992059602,15.064992059602,-0.00480889673126126,15.0676958160056,25.4,1014.9,37.64,18.7026224415127
-47459,2873.97479366337,456.901055247525,225,15.0548415841584,15.5064868316832,4.53253465346535,0.103069306930693,748.821782178218,328.221153205941,307.243222977228,20,40,10,32,5306067.39755732,396487.208035341,1,2,5306056.21412242,396496.318662952,165.494387181016,0,0,15.0548415841584,1128.83025177345,4.53253465346535,4.86142579311487,4.72005154116242,0.103069306930693,0.117709515860552,0.154658835983362,1.06321906486003,0.843520085926026,0.774975595966507,8.71293707310779,-0.000172804876435082,635.464376183168,635.235082907891,630.281318478626,5.97815350124371,1323.9822397782,13.8892233589272,0,1323.9822397782,15.0542141946868,15.0542141946868,0.000556862616958536,15.0645159848982,25.4,1014.9,37.67,22.8661239893218
+47459,2873.97479366337,456.901055247525,225,15.0548415841584,15.5064868316832,4.53253465346535,0.103069306930693,748.821782178218,328.221153205941,307.243222977228,20,40,10,32,5306067.39755732,396487.208035341,1,2,5306056.21412242,396496.318662952,165.494387181016,0,0,15.0548415841584,1128.83025177345,4.53253465346535,4.86142579311487,4.72005154116242,0.103069306930693,0.117709515860552,0.154658835983363,1.06321906486003,0.843520085926026,0.774975595966507,8.71293707310779,-0.000172804876435082,635.464376183168,635.235082907891,630.281318478626,5.97815350124371,1323.9822397782,13.8892233589272,0,1323.9822397782,15.0542141946868,15.0542141946868,0.000556862616958536,15.0645159848982,25.4,1014.9,37.67,22.8661239893218
 47460,2873.97340643564,456.898421683168,225,15.0615940594059,15.5134418811881,4.84516831683168,1.27752475247525,749.004950495049,315.616316758416,299.683778684158,20,40,10,32,5306064.88678246,396483.881483551,1,2,5306053.58360371,396493.089660951,169.659250039135,0,0,15.0615940594059,1133.01237691097,4.84516831683168,5.19674487417762,4.98638825312831,1.27752475247525,1.29216496140511,1.021700233451,1.23061621479262,0.976327014396122,0.993123205473671,8.71506833325049,0.000316808940130984,615.300095442574,615.916925091001,629.231643465486,5.97547143094734,1281.71837500895,64.9018401755381,0,1281.71837500895,15.0613925105382,15.0613925105382,0.00259369996404969,15.0634005604457,25.4,1014.9,37.6873762376238,25.4518354175058
-47461,2873.97201831683,456.895778316832,225,15.0655544554455,15.5175210891089,4.71405940594059,0.561980198019802,748.524752475248,302.444841533663,306.205997637624,20,40,10,32,5306062.37457793,396480.54268957,1,2,5306050.94651997,396489.852600286,173.83450720189,0,0,15.0655544554455,1137.19752438071,4.71405940594059,5.05612239915124,4.87516416184022,0.561980198019802,0.576620406949659,0.481461086529112,0.995259165214766,0.789603125364519,0.943313424154893,8.70948097557909,6.87019198406656E-20,608.650839171287,609.546681403167,628.886149861641,5.97389951203565,1266.71304095991,-28.353327866373,0,1266.71304095991,15.0636296441525,15.0636296441525,-0.00113414806826972,15.0634840897324,25.4,1014.9,37.63,24.1791586035947
+47461,2873.97201831683,456.895778316832,225,15.0655544554455,15.5175210891089,4.71405940594059,0.561980198019802,748.524752475248,302.444841533663,306.205997637624,20,40,10,32,5306062.37457793,396480.54268957,1,2,5306050.94651997,396489.852600286,173.834507201881,0,0,15.0655544554455,1137.19752438071,4.71405940594059,5.05612239915124,4.87516416184022,0.561980198019802,0.576620406949659,0.481461086529112,0.995259165214766,0.789603125364519,0.943313424154893,8.70948097557909,6.87019198406656E-20,608.650839171287,609.546681403167,628.886149861641,5.97389951203565,1266.71304095991,-28.353327866373,0,1266.71304095991,15.0636296441525,15.0636296441525,-0.00113414806826972,15.0634840897324,25.4,1014.9,37.63,24.1791586035947
 47462,2873.97062574257,456.893137326733,225,15.0640396039604,15.5159607920792,5.54403960396039,1.64277227722772,748,300.816521093069,320.813381807921,20,40,10,32,5306059.85406917,396477.206704538,1,2,5306048.30749902,396486.613161661,178.012831527634,0,0,15.0640396039604,1141.38119597037,5.54403960396039,5.94632786936054,5.58125189089729,1.64277227722772,1.65741248615758,1.39553742209736,1.79251483795704,1.42211734167525,1.33219366850402,8.70337520327838,0.000288008127391803,621.62990290099,621.981124505205,629.570048307444,5.97450423064967,1292.94379481224,62.1388885589098,0,1292.94379481224,15.0665411234193,15.0665411234193,0.00248341665849436,15.0684680317744,25.4,1014.9,37.56,31.3639570706939
 47463,2873.9692290099,456.890497821782,225,15.0644158415842,15.5163483168317,5.61952475247525,2.64920792079208,747.777227722772,312.228425754455,330.075969549505,20,40,10,32,5306057.32582631,396473.872428343,1,2,5306045.66622959,396483.370962987,182.194715847287,0,0,15.0644158415841,1145.56708419919,5.61952475247525,6.02729039387354,5.64545549982054,2.64920792079208,2.66384812972193,2.23990621121983,1.86534388513018,1.47989731022528,1.49306538882958,8.70078313013186,2.06105759521997E-19,642.30439530396,641.788084753642,630.640875891911,5.97435097135221,1335.52682068343,-7.38653847028496,0,1335.52682068343,15.0664940692089,15.0664940692089,-0.000295450337107896,15.0757419612927,25.4,1014.9,37.49,32.0354713203403
 47464,2873.96783514851,456.887853069307,225,15.0841683168317,15.5366933663366,5.64412871287129,1.87069306930693,749.009900990099,326.188502992079,325.477780422772,20,40,10,32,5306054.80302123,396470.531708142,1,2,5306043.0239739,396480.127553672,186.378161688017,0,0,15.0841683168317,1149.75361819259,5.64412871287129,6.053679674227,5.66755799333073,1.87069306930693,1.88533327823679,1.58809863491917,1.88541679879551,1.49582244401884,1.47973916590557,8.71512593487597,0.000316808940130984,651.666283414852,650.757134249034,631.133518388549,5.96652987956068,1355.44102014892,145.776760361055,0,1355.44102014892,15.0819810802862,15.0819810802862,0.00582867692709779,15.081011244006,25.4,1014.9,37.42,32.2885624914074
@@ -287,7 +287,7 @@ Time,Lat,Long,Heading,v_veh_GPS,v_veh_CAN,vair_ar,beta_ar,n_eng,tq_l,tq_r,t_amb_
 47471,2873.95815742574,456.869227524752,225,15.082495049505,15.5349699009901,2.94377227722772,1.04821782178218,748.524752475248,330.318798953465,315.548525754456,20,40,10,32,5306037.29285239,396447.009364137,1,2,5306024.52057506,396457.414348259,215.674329850315,0,0,15.0824950495049,1179.09156467224,2.94377227722772,3.15737916457626,3.36970601546484,1.04821782178218,1.06285803071204,0.682645768811567,1.20675699743345,0.957397962291899,0.825308598676063,8.70948097557909,0.00100802844587131,645.867324707921,645.201508390344,630.829003197617,5.96718790544545,1342.6515522246,228.446936789105,0,1342.6515522246,15.0831234192726,15.0831234192726,0.00913036848239399,15.0887981159925,25.4,1014.9,37.01,12.0966634699889
 47472,2873.95679178218,456.866545445544,225,15.103702970297,15.5568140594059,4.57670297029703,1.70683168316832,749.148514851485,323.7383509,302.406044892079,20,40,10,32,5306034.82316613,396443.623062908,1,2,5306021.8771894,396454.169551895,219.859564747735,0,0,15.103702970297,1183.28477861613,4.57670297029703,4.90879906460654,4.76039401309542,1.70683168316832,1.72147189209817,1.39811688578988,0.764193291930754,0.606283702557931,0.584329589977528,8.71673878038936,1.03052879760998E-19,626.144395792079,626.306182624115,629.799094622306,5.95881476401998,1300.91372858795,-70.3227169308626,0,1300.91372858795,15.0973707479659,15.0973707479659,-0.00281290505288443,15.0861758761154,25.4,1014.9,37.02,22.7275496034094
 47473,2873.95543009901,456.86386019802,225,15.0794851485149,15.5318697029703,4.0039900990099,-1.38673267326733,748.39603960396,309.123903339604,300.842388275247,20,40,10,32,5306032.36088866,396440.232943843,1,2,5306019.23488974,396450.926088595,224.043080219374,0,0,15.0794851485148,1187.47635925419,4.0039900990099,4.29452883009317,4.27164915441603,-1.38673267326733,-1.37209246433747,-1.04461373721305,0.827389792352196,0.656421552063796,0.660427493141181,8.70798333331665,-0.000748821131218689,609.966291614851,610.806935524262,628.953320194056,5.96837995432081,1268.05916361565,-53.3420066028214,0,1268.05916361565,15.080250857759,15.080250857759,-0.00212805934058223,15.0849398477536,25.4,1014.9,37.03,18.7365263412233
-47474,2873.95406693069,456.861183267327,225,15.0817821782178,15.5342356435644,3.75744554455446,-2.34207920792079,747.89603960396,299.911911938614,312.295174585148,20,40,10,32,5306029.89567622,396436.853132292,1,2,5306016.5964666,396447.687383793,228.220458038842,0,0,15.0817821782178,1191.66459316508,3.75744554455446,4.03009443569414,4.06194254050808,-2.34207920792079,-2.32743899899094,-1.87950001392573,0.79043386229286,0.62710203520277,0.738213461061478,8.70216556914334,-6.87019198406656E-20,612.207086523762,612.9537033786,629.0690500976,5.96747207157449,1271.66949892268,41.4600680907315,0,1271.66949892268,15.0822267424762,15.0822267424762,0.00165833415024204,15.0854157880118,25.4,1014.9,37.04,16.969272687773
+47474,2873.95406693069,456.861183267327,225,15.0817821782178,15.5342356435644,3.75744554455446,-2.34207920792079,747.89603960396,299.911911938614,312.295174585148,20,40,10,32,5306029.89567622,396436.853132292,1,2,5306016.5964666,396447.687383793,228.220458038842,0,0,15.0817821782178,1191.66459316508,3.75744554455446,4.03009443569414,4.06194254050808,-2.34207920792079,-2.32743899899094,-1.87950001392572,0.79043386229286,0.62710203520277,0.738213461061478,8.70216556914334,-6.87019198406656E-20,612.207086523762,612.9537033786,629.0690500976,5.96747207157449,1271.66949892268,41.4600680907315,0,1271.66949892268,15.0822267424762,15.0822267424762,0.00165833415024204,15.0854157880118,25.4,1014.9,37.04,16.969272687773
 47475,2873.9527239604,456.858478217822,225,15.092594059406,15.5453718811881,2.7449603960396,1.99782178217822,748.821782178218,304.571839127723,326.234764906931,20,40,10,32,5306027.46850804,396433.438963375,1,2,5306013.95639597,396444.446656668,232.400444311201,0,0,15.0925940594059,1195.85539539281,2.7449603960396,2.94414103600582,3.20119886467887,1.99782178217822,2.01246199110807,1.43622125106327,1.33269549652456,1.05731307582376,0.949636246689448,8.71293707310779,-0.000316808940130984,630.806604034653,630.772757742153,630.044325528728,5.96320059319412,1310.98784071885,35.8505811224323,0,1310.98784071885,15.0901608665817,15.0901608665817,0.00143640601683908,15.0816271598407,25.4,1014.9,37.05,10.8709359414945
 47476,2873.95135207921,456.855807722772,225,15.0826633663366,15.5351432673267,3.66841584158416,-2.61118811881188,748.841584158416,318.819369324752,329.845164188119,20,40,10,32,5306024.98701639,396430.066872871,1,2,5306011.3152596,396441.204621336,236.582117947003,0,0,15.0826633663366,1200.04688059632,3.66841584158416,3.93460453270085,3.98631973975933,-2.61118811881188,-2.59654790988203,-2.02810228236949,0.636383833958524,0.504884236978289,0.582150568347,8.71316747960971,0.000230406501913443,648.664533512871,647.881342197108,630.978902268772,5.96712555167349,1349.02602179757,-126.442154935351,0,1349.02602179757,15.0820742084109,15.0820742084109,-0.00505941683277184,15.0798226635298,25.4,1014.9,37.06,16.1298757935715
 47477,2873.94998811881,456.853133168317,225,15.0691683168317,15.5212433663366,3.72683168316832,-1.68871287128713,747.920792079208,329.555388988119,319.806987974258,20,40,10,32,5306022.52028947,396426.689986238,1,2,5306008.67766458,396437.966933054,240.758184630039,0,0,15.0691683168317,1204.23382578334,3.72683168316832,3.99725916211148,4.03530854403774,-1.68871287128713,-1.67407266235727,-1.25933671272385,0.860900970974264,0.683008125992932,0.651127532235706,8.70245357727073,5.76016254783606E-05,649.362376962376,648.549903103539,631.007014139847,5.97247639764949,1350.03716662455,12.0935903266841,0,1350.03716662455,15.0697462993824,15.0697462993824,0.000483340413247246,15.0780313686183,25.4,1014.9,37.07,16.9541650592965
diff --git a/DemoData/Results/EvaluationDemo_CSE.csv b/DemoData/Results/EvaluationDemo_CSE.csv
index 848570743ee42cc960a0e75517925a5a8f8f4d47..b74581ed086f8248e181f455b64c82696e16c01b 100644
--- a/DemoData/Results/EvaluationDemo_CSE.csv
+++ b/DemoData/Results/EvaluationDemo_CSE.csv
@@ -1,7 +1,7 @@
-Resultfile Programm VECTO-CSE 2.01 Comp 12.05.2014
-Datafile LS1: ,J:\TE-Em\Projekte\I_2012_08_HDV_CO2_LOT3\Arbeitsordner\CSE\Release_Packages\2.01\Test\WorkingDir\DemoData\DataDemo_LS1.csdat
-Datafile HS: ,J:\TE-Em\Projekte\I_2012_08_HDV_CO2_LOT3\Arbeitsordner\CSE\Release_Packages\2.01\Test\WorkingDir\DemoData\DataDemo_HS.csdat
-Datafile LS2: ,J:\TE-Em\Projekte\I_2012_08_HDV_CO2_LOT3\Arbeitsordner\CSE\Release_Packages\2.01\Test\WorkingDir\DemoData\DataDemo_LS2.csdat
+Resultfile Programm VECTO_CSE 2.0.1-pre2 Comp 04/06/2014
+Datafile LS1: ,d:\Work\vecto-cse.git\CSE\bin\Debug\DemoData\DataDemo_LS1.csdat
+Datafile HS: ,d:\Work\vecto-cse.git\CSE\bin\Debug\DemoData\DataDemo_HS.csdat
+Datafile LS2: ,d:\Work\vecto-cse.git\CSE\bin\Debug\DemoData\DataDemo_LS2.csdat
 
 Results
 fv_veh:,0.970873786407766,[-] calibration factor for vehicle speed
@@ -10,19 +10,19 @@ fv_pe:,1.07256230008039,[-] calibration factor for air speed (position error)
 fa_pe:,1,[-] position error correction factor for measured air inflow angle (beta)
 beta_ame:,-0.0146402089298575,[°] calibration factor for beta (misalignment)
 CdxA:,5.59562995689675,[m²] average CdxA before yaw angle correction
-beta:,0.946513052271825,[°] average absolute yaw angle from high speed tests
-delta_CdxA:,0.0289689784778315,[m²] correction of CdxA for yaw angle
-CdxA(0):,5.56666097841892,[m²] average CdxA for zero yaw angle
-CdxA(0)_opt2:,5.56426706101589,[m²] average CdxA for zero yaw angle (yaw angle correction performed before averaging of measurement sections)
+beta:,0.946513052271824,[°] average absolute yaw angle from high speed tests
+delta_CdxA:,0.0806921307322776,[m²] correction of CdxA for yaw angle
+CdxA(0):,5.51493782616447,[m²] average CdxA for zero yaw angle
+CdxA(0)_opt2:,5.50584267299323,[m²] average CdxA for zero yaw angle (yaw angle correction performed before averaging of measurement sections)
 
 Validity criteria:
 Tire temp:,Ok
 RRC:,Invalid test - maximum deviation of RRCs between low speed tests exceeded
 Ambient temp:,Ok
 
-SecID,DirID,F2_ref,F2_LS1_ref,F2_LS2_ref,F0_ref,F0,F0_LS1_ref,F0_LS1,F0_LS2_ref,F0_LS2,F0 (95%),CdxA,CdxA0,delta_CdxA,beta_abs_HS,roh_air_LS,RRC,RRC_LS1,RRC_LS2,RRC_valid,t_tire_LS_min,t_tire_LS_max,t_tire_HS_min,t_tire_HS_max
-[-],[-],[N/(m2/s2)],[N/(m2/s2)],[N/(m2/s2)],[N],[N],[N],[N],[N],[N],[%],[m2],[m2],[m2],[°],[kg/m3],[kg/t],[kg/t],[kg/t],[-],[°],[°],[°],[°]
-1,1,3.35994856992982,3.2835744862296,3.44105348696315,1297.70660054197,1311.19111506185,1337.58053717346,1351.74473215944,1256.19946640268,1269.00347420728,133.139136784478,5.6545750331982,5.62796623259684,0.0266088006013679,0.869398176872766,1.20074873627284,5.34634501554271,5.51170125243401,5.17432609258829,0,40,40,40,40
-2,1,3.63944981827288,3.55540338749871,3.72846674358952,1277.96798305583,1291.21016204452,1318.832824774,1332.79443333568,1235.49086608716,1248.01561410732,131.351367290257,6.12495746546902,6.10620743674595,0.0187500287230699,0.612625913973401,1.20071411477506,5.264873239733,5.43443194020664,5.0887486813754,0,40,40,40,40
-2,2,3.1557522469832,3.14290110454808,3.16766172892009,1284.60686023971,1298.0082018041,1291.31134655767,1305.1182679414,1278.2551648806,1291.25800058512,138.526092634521,5.31092589525055,5.27758886024106,0.0333370350094905,1.04397660316078,1.20079771787383,5.29259205628583,5.3215831516469,5.26506830004127,1,40,40,40,40
-1,2,3.14454298362732,3.11294236546399,3.17526193310334,1276.54298553437,1289.81992930881,1293.96793978385,1307.67877886918,1259.44960715748,1272.30284438246,139.590479528425,5.29206143366922,5.2453057144797,0.0467557191895203,1.26005151508036,1.2007602252572,5.25920460472501,5.33202356317709,5.1877791819876,1,40,40,40,40
+SecID,DirID,F2_ref,F2_LS1_ref,F2_LS2_ref,F0_ref,F0,F0_LS1_ref,F0_LS1,F0_LS2_ref,F0_LS2,CdxA,CdxA0,delta_CdxA,beta_abs_HS,roh_air_LS,RRC,RRC_LS1,RRC_LS2,RRC_valid,t_tire_LS_min,t_tire_LS_max,t_tire_HS_min,t_tire_HS_max
+[-],[-],[N/(m2/s2)],[N/(m2/s2)],[N/(m2/s2)],[N],[N],[N],[N],[N],[N],[m2],[m2],[m2],[°],[kg/m3],[kg/t],[kg/t],[kg/t],[-],[°],[°],[°],[°]
+1,1,3.35994856992982,3.2835744862296,3.44105348696315,1297.70660054197,1311.19111506185,1337.58053717346,1351.74473215944,1256.19946640268,1269.00347420728,5.6545750331982,5.58045709982345,0.074117933374757,0.869398176872766,1.20074873627284,5.34634501554271,5.51170125243401,5.17432609258829,0,40,40,40,40
+2,1,3.63944981827289,3.55540338749871,3.72846674358952,1277.96798305583,1291.21016204452,1318.832824774,1332.79443333568,1235.49086608716,1248.01561410732,6.12495746546903,6.07272988105097,0.0522275844180603,0.612625913973401,1.20071411477506,5.264873239733,5.43443194020664,5.0887486813754,0,40,40,40,40
+2,2,3.1557522469832,3.14290110454808,3.16766172892009,1284.60686023971,1298.0082018041,1291.31134655767,1305.1182679414,1278.2551648806,1291.25800058512,5.31092589525055,5.21666247359047,0.0942634216600872,1.04397660316078,1.20079771787383,5.29259205628583,5.3215831516469,5.26506830004127,1,40,40,40,40
+1,2,3.14454298362732,3.11294236546399,3.17526193310334,1276.54298553437,1289.81992930881,1293.96793978385,1307.67877886918,1259.44960715748,1272.30284438246,5.29206143366922,5.15352123750804,0.138540196161176,1.26005151508036,1.2007602252572,5.25920460472501,5.33202356317709,5.1877791819876,1,40,40,40,40
diff --git a/DemoData/Results/EvaluationDemo_MS_CAL.csv b/DemoData/Results/EvaluationDemo_MS_CAL.csv
index af4477177d204ee798602343dfbdccd0acefe549..3c6a713adcff79f25e5e1a24f595a4715840d864 100644
--- a/DemoData/Results/EvaluationDemo_MS_CAL.csv
+++ b/DemoData/Results/EvaluationDemo_MS_CAL.csv
@@ -1,5 +1,5 @@
-Resultfile Programm VECTO-CSE 2.01 Comp 12.05.2014
-Datafile: ,J:\TE-Em\Projekte\I_2012_08_HDV_CO2_LOT3\Arbeitsordner\CSE\Release_Packages\2.01\Test\WorkingDir\DemoData\DataDemo_CAL.csdat
+Resultfile Programm VECTO_CSE 2.0.1-pre2 Comp 04/06/2014
+Datafile: ,d:\Work\vecto-cse.git\CSE\bin\Debug\DemoData\DataDemo_CAL.csdat
 
 Results
 fv_veh:,0.970873786407766
@@ -7,7 +7,7 @@ fv_veh_opt2:,0.969525450405305
 fv_pe:,1.07256230008039
 beta_ame:,-0.0146402089298575
 
-SecID,DirID,delta t,length,delta s,v (s),v (GPS),v_veh_CAN,v_veh,vair_ar,vair_ic,vair_uf,beta_ar,beta_ic,beta_uf,valid,used,vair,v_wind_ave,v_wind_1s,v_wind_1s_max,beta_ave,Satelites
+SecID,DirID,delta t,length,delta s,v (s),v (GPS),v_veh_CAN,v_veh,vair_ar,vair_ic,vair_uf,beta_ar,beta_ic,beta_uf,valid,used,vair,v_wind_avg,v_wind_1s,v_wind_1s_max,beta_avg,Satelites
 [-],[-],[s],[m],[m],[km/h],[km/h],[km/h],[km/h],[m/s],[m/s],[m/s],[°],[°],[°],[-],[-],[m/s],[m/s],[m/s],[m/s],[°],[#]
 1,1,11.2999999999956,250.64,251.06156111111,79.8499115044556,79.980893015031,82.3803198054819,79.9808930150309,19.2047323410964,19.2047323410964,20.5982718921946,4.58733863837312,4.58733863837312,4.60197884730294,1,1,20.9205584600433,2.05144694029172,2.06078827658996,2.48821778703183,3.59825941679147,10
 2,1,10.9800000000032,250.64,250.912308333333,82.1770491803039,82.2683703366696,84.7364214467697,82.2683703366694,20.7004457082166,20.7004457082166,22.202517661494,4.24483166515014,4.24483166515014,4.25947187407998,1,1,22.3246370976915,1.75288731461579,1.74951110158143,2.50600536187054,3.36080419011004,10
@@ -20,8 +20,8 @@ SecID,DirID,delta t,length,delta s,v (s),v (GPS),v_veh_CAN,v_veh,vair_ar,vair_ic
 1,1,10.6699999999983,250.64,251.389638888875,84.564573570773,84.8172659176031,87.3617838951312,84.817265917603,20.9580187265918,20.9580187265918,22.4787807705212,4.37001872659176,4.37001872659176,4.3846589355216,1,1,22.6897812331174,1.91566960075542,1.91948450178784,2.57163386999929,3.45037263594077,10.9578651685393
 2,1,10.6100000000006,250.64,250.522013888905,85.042789820919,85.0027608286254,87.5528436534842,85.0027608286253,20.1733860117326,20.1733860117326,21.6372133011535,2.06714689265537,2.06714689265537,2.08178710158524,1,1,22.0347477291324,2.1643906782952,2.16218964307667,2.90537070431992,1.62906522257328,11
 2,2,10.6399999999994,250.64,251.287411111072,84.8030075188016,85.0221014084504,87.5727644507042,85.0221014084503,22.9512412102254,22.9512412102254,24.6166360621392,-2.84734272300469,-2.84734272300469,-2.83270251407481,1,1,24.3981916289737,2.2784365004619,2.28011873674138,3.15243551237854,-2.26319115383399,11
-1,2,10.6200000000026,250.64,250.701952777805,84.9627118643858,84.9837347130762,87.5332467544686,84.9837347130761,22.0684923173472,22.0684923173472,23.6698328792003,-2.97273753527752,-2.97273753527752,-2.95809732634764,1,1,23.6448681120931,2.53164629963977,2.53163960024531,4.77282725728059,-2.35774344767187,11
-1,1,10.6500000000015,250.64,251.246211111125,84.7233802816786,84.9282185741085,87.476065131332,84.9282185741085,21.0841275797373,21.0841275797373,22.6140403721115,2.67296435272045,2.67296435272045,2.68760456165032,1,1,22.8054085139022,1.75620604512164,1.7509303328406,2.11669361295276,2.11854799714766,11
+1,2,10.6200000000026,250.64,250.701952777805,84.9627118643858,84.9837347130762,87.5332467544686,84.9837347130761,22.0684923173472,22.0684923173472,23.6698328792003,-2.97273753527752,-2.97273753527752,-2.95809732634764,1,1,23.6448681120931,2.53164629963977,2.53163960024531,4.7728272572806,-2.35774344767187,11
+1,1,10.6500000000015,250.64,251.246211111125,84.7233802816786,84.9282185741085,87.476065131332,84.9282185741085,21.0841275797373,21.0841275797373,22.6140403721115,2.67296435272045,2.67296435272045,2.68760456165032,1,1,22.8054085139022,1.75620604512164,1.75093033284061,2.11669361295276,2.11854799714766,11
 2,1,10.6199999999953,250.64,250.740211111053,84.962711864444,84.9967460018813,87.546648381938,84.9967460018812,19.9295717047883,19.9295717047883,21.3757072673048,3.18634995296331,3.18634995296331,3.20099016189319,1,1,21.8271499334462,2.29191380301035,2.29455661202474,2.69500466966294,2.49381558235465,11
 2,2,10.6400000000067,250.64,251.261583333351,84.8030075187436,85.0132826291077,87.5636811079812,85.0132826291076,23.8435797078967,23.8435797078967,25.5737246936518,-3.60260093896714,-3.60260093896714,-3.58796073003725,1,1,25.1563346989473,2.92164117409983,2.91396854500408,3.89769192883227,-2.88661461847264,12
 1,2,10.6200000000026,250.64,250.772691666763,84.9627118643858,85.0077262464721,87.5579580338664,85.0077262464719,21.655141841778,21.655141841778,23.2264887423845,-2.08508936970837,-2.08508936970837,-2.0704491607785,1,1,23.295669766807,2.16141978932772,2.15602575168964,2.55739486061537,-1.63997716422231,11.9736594543744
diff --git a/DemoData/Results/EvaluationDemo_MS_MEAS.csv b/DemoData/Results/EvaluationDemo_MS_MEAS.csv
index d3c6fd98e00769648377d399cdb59bef752f3d37..34790398b300cc186d9691620fbf73fd21381e1b 100644
--- a/DemoData/Results/EvaluationDemo_MS_MEAS.csv
+++ b/DemoData/Results/EvaluationDemo_MS_MEAS.csv
@@ -1,7 +1,7 @@
-Resultfile Programm VECTO-CSE 2.01 Comp 12.05.2014
-Datafile LS1: ,J:\TE-Em\Projekte\I_2012_08_HDV_CO2_LOT3\Arbeitsordner\CSE\Release_Packages\2.01\Test\WorkingDir\DemoData\DataDemo_LS1.csdat
-Datafile HS: ,J:\TE-Em\Projekte\I_2012_08_HDV_CO2_LOT3\Arbeitsordner\CSE\Release_Packages\2.01\Test\WorkingDir\DemoData\DataDemo_HS.csdat
-Datafile LS2: ,J:\TE-Em\Projekte\I_2012_08_HDV_CO2_LOT3\Arbeitsordner\CSE\Release_Packages\2.01\Test\WorkingDir\DemoData\DataDemo_LS2.csdat
+Resultfile Programm VECTO_CSE 2.0.1-pre2 Comp 04/06/2014
+Datafile LS1: ,d:\Work\vecto-cse.git\CSE\bin\Debug\DemoData\DataDemo_LS1.csdat
+Datafile HS: ,d:\Work\vecto-cse.git\CSE\bin\Debug\DemoData\DataDemo_HS.csdat
+Datafile LS2: ,d:\Work\vecto-cse.git\CSE\bin\Debug\DemoData\DataDemo_LS2.csdat
 
 Results
 fv_veh:,0.970873786407766
@@ -9,14 +9,14 @@ fv_veh_opt2:,0.969525450405305
 fv_pe:,1.07256230008039
 beta_ame:,-0.0146402089298575
 
-SecID,DirID,RunID,HeadID,delta t,length,delta s,v (s),v (GPS),v_veh_CAN,v_veh,vair_ar,vair_ic,vair_uf,beta_ar,beta_ic,beta_uf,valid,used,val_User,val_vVeh_ave,val_vVeh_f,val_vVeh_1s,val_vWind,val_vWind_1s,val_tq_f,val_tq_1s,val_beta,val_dist,vair,v_wind_ave,v_wind_1s,v_wind_1s_max,beta_ave,beta_abs,v_air_sq,n_eng,omega_wh,omega_p_wh,tq_sum,tq_sum_1s,tq_sum_1s_max,tq_sum_1s_min,tq_sum_float,tq_sum_float_max,tq_sum_float_min,t_float,F_trac,F_acc,F_grd,F_res,F_res_ref,v_veh_1s,v_veh_1s_max,v_veh_1s_min,v_veh_ave,a_veh_ave,v_veh_float,v_veh_float_max,v_veh_float_min,t_amb_veh,t_amb_stat,p_amb_stat,rh_stat,vp_H2O,rho_air,t_tire,p_tire,F0_ref_singleDS,F2_ref_singleDS,F0_singleDS,CdxA_singleDS,RRC_singleDS,Satelites
+SecID,DirID,RunID,HeadID,delta t,length,delta s,v (s),v (GPS),v_veh_CAN,v_veh,vair_ar,vair_ic,vair_uf,beta_ar,beta_ic,beta_uf,valid,used,val_User,val_vVeh_avg,val_vVeh_f,val_vVeh_1s,val_vWind,val_vWind_1s,val_tq_f,val_tq_1s,val_beta,val_dist,vair,v_wind_avg,v_wind_1s,v_wind_1s_max,beta_avg,beta_abs,v_air_sq,n_eng,omega_wh,omega_p_wh,tq_sum,tq_sum_1s,tq_sum_1s_max,tq_sum_1s_min,tq_sum_float,tq_sum_float_max,tq_sum_float_min,t_float,F_trac,F_acc,F_grd,F_res,F_res_ref,v_veh_1s,v_veh_1s_max,v_veh_1s_min,v_veh_avg,a_veh_avg,v_veh_float,v_veh_float_max,v_veh_float_min,t_amb_veh,t_amb_stat,p_amb_stat,rh_stat,vp_H2O,rho_air,t_tire,p_tire,F0_ref_singleDS,F2_ref_singleDS,F0_singleDS,CdxA_singleDS,RRC_singleDS,Satelites
 [-],[-],[-],[-],[s],[m],[m],[km/h],[km/h],[km/h],[km/h],[m/s],[m/s],[m/s],[°],[°],[°],[-],[-],[-],[-],[-],[-],[-],[-],[-],[-],[-],[-],[m/s],[m/s],[m/s],[m/s],[°],[°],[m2/s2],[rpm],[rad/s],[rad/s2],[Nm],[Nm],[Nm],[Nm],[Nm],[Nm],[Nm],[s],[N],[N],[N],[N],[N],[km/h],[km/h],[km/h],[km/h],[m/s2],[km/h],[km/h],[km/h],[°C],[°C],[mbar],[%],[Pa],[kg/m3],[°C],[bar],[N],[N],[N],[m2],[kg/t],[#]
-1,1,1,1,59.7300000000032,250.64,250.726831617744,15.106378704168,15.1117229661867,15.5649511004117,15.1116030101085,1.62270907264814,1.62270907264814,1.74045657532081,-0.263063274188148,-0.263063274188148,-0.24842306525842,1,1,1,1,1,1,1,1,1,1,1,1,2.24738345697663,1.95431783836351,1.95348939712671,2.90715154141816,-0.0374808118609091,0.0374808118609091,5.24422952557452,753.572908344445,8.76821893629334,3.94118922918938E-05,649.814124405474,649.821924019223,671.677933868317,628.322062980198,649.991110168506,651.340679788196,648.659331936087,5.95571730971224,1357.35353974161,5.26987934626099,0,1357.35353974161,1343.13057312342,15.1115785609278,15.168015183697,15.0542772277228,15.1115785609278,0.00021052908772625,15.1111659065588,15.153818967023,15.0668542713567,20,24.5131035152327,1015.31673920317,40.2970909943087,1242.60289413574,1.20098449086979,40,0,0,0,0,0,0,9
+1,1,1,1,59.7300000000032,250.64,250.726831617744,15.106378704168,15.1117229661867,15.5649511004117,15.1116030101085,1.62270907264814,1.62270907264814,1.74045657532081,-0.263063274188148,-0.263063274188148,-0.24842306525842,1,1,1,1,1,1,1,1,1,1,1,1,2.24738345697663,1.95431783836351,1.95348939712671,2.90715154141816,-0.037480811860909,0.037480811860909,5.24422952557452,753.572908344445,8.76821893629334,3.94118922918938E-05,649.814124405474,649.821924019223,671.677933868317,628.322062980198,649.991110168506,651.340679788196,648.659331936087,5.95571730971224,1357.35353974161,5.26987934626099,0,1357.35353974161,1343.13057312342,15.1115785609278,15.168015183697,15.0542772277228,15.1115785609278,0.00021052908772625,15.1111659065588,15.153818967023,15.0668542713567,20,24.5131035152327,1015.31673920317,40.2970909943087,1242.60289413574,1.20098449086979,40,0,0,0,0,0,0,9
 2,1,1,1,59.8600000000006,250.64,250.739023704342,15.0735716672234,15.0795607148817,15.5319183814195,15.0795324091448,2.31960280607983,2.31960280607983,2.48791852096192,-3.18661433105061,-3.18661433105061,-3.17197412212056,1,1,1,1,1,1,1,1,1,1,1,1,2.83841411741839,1.36094855816592,1.36180084828266,2.3698264614285,-2.23268326961832,2.23268326961832,8.26288926514582,751.93178454339,8.74912359378589,-1.80395942968447E-06,650.26711997117,650.255911223759,671.677937109901,628.322070013861,650.015482020371,651.340676102529,648.659459930354,5.9683846205946,1358.22431254822,0.547556190404666,0,1358.22431254822,1343.99631480419,15.0796453518744,15.1354177625685,15.022405940594,15.0796453518744,2.19351315455758E-05,15.0795327168264,15.1131859702721,15.0412998324957,20,24.3868784199086,1015.2976496575,40.4645900952063,1238.37310552525,1.20098083319451,40,0,0,0,0,0,0,9
 2,2,1,2,59.6399999999994,250.64,250.492037207314,15.129175050302,15.1292759430005,15.5738644361205,15.1202567340975,4.91819413243924,4.91819413243924,5.27506961093089,3.33368818105616,3.33368818105616,3.34832838998623,1,1,1,1,1,1,1,1,1,1,1,1,5.05174092782569,0.900719632899028,0.901792006758928,1.73867850402407,2.75887945201887,2.75887945201887,25.7642673512439,756.269404861693,8.79959409795636,-3.26731097746914E-05,650.320786099681,650.30732544251,671.677936851485,628.322065603961,650.018255085866,651.340678446206,648.659326509949,5.95233239783558,1362.49953846259,-13.9280096570285,0,1362.49953846259,1348.08557731055,15.1202597749383,15.1980242524272,15.0665841584158,15.1202597749383,-0.000556876494215242,15.1202052705223,15.1980056617822,15.0784371859296,20,24.3550963956394,1015.29999999989,39.6467303101425,1211.03528843933,1.20110660615455,40,0,0,0,0,0,0,10
-1,2,1,2,59.8600000000006,250.64,250.608622424302,15.0735716672234,15.0716879906459,15.5238357182128,15.0716851633129,4.67209403708034,4.67209403708034,5.01111192660276,-0.113382328378151,-0.113382328378151,-0.0987421194484215,1,1,1,1,1,1,1,1,1,1,1,1,4.83970363521116,1.04003741474692,1.04029360481013,2.4986492670059,-0.0296349148421881,0.0296349148421881,24.496581550344,753.354852179723,8.76568173760755,4.85866391624739E-06,649.729929710307,649.741262257441,671.677936560396,628.322064952475,649.984812693241,651.340679956156,648.663656388027,5.97149605948292,1360.38056762515,0.0790778191319301,0,1360.38056762515,1346.11715725334,15.0717099232304,15.1217131114102,15.0033663366336,15.0717099232304,3.12374648189884E-06,15.0716225536874,15.0991286690438,15.0286951423785,20,24.3445214631687,1015.29977125428,40.5024477701687,1236.39003429464,1.20099227533882,40,0,0,0,0,0,0,10
+1,2,1,2,59.8600000000006,250.64,250.608622424302,15.0735716672234,15.0716879906459,15.5238357182128,15.0716851633129,4.67209403708034,4.67209403708034,5.01111192660276,-0.113382328378151,-0.113382328378151,-0.0987421194484215,1,1,1,1,1,1,1,1,1,1,1,1,4.83970363521116,1.04003741474692,1.04029360481013,2.49864926700589,-0.029634914842188,0.029634914842188,24.496581550344,753.354852179723,8.76568173760755,4.85866391624739E-06,649.729929710307,649.741262257441,671.677936560396,628.322064952475,649.984812693241,651.340679956156,648.663656388027,5.97149605948292,1360.38056762515,0.0790778191319301,0,1360.38056762515,1346.11715725334,15.0717099232304,15.1217131114102,15.0033663366336,15.0717099232304,3.12374648189884E-06,15.0716225536874,15.0991286690438,15.0286951423785,20,24.3445214631687,1015.29977125428,40.5024477701687,1236.39003429464,1.20099227533882,40,0,0,0,0,0,0,10
 1,1,0,1,10.6600000000035,250.64,251.423377777781,84.6439024389967,84.9084086223055,87.4556608809746,84.9084086223054,19.9798477037957,19.9798477037957,21.429631408439,-1.53388940955951,-1.53388940955951,-1.51924920062963,1,1,1,1,1,1,1,1,1,1,1,1,21.8700963902126,2.40766868582701,2.38822493589101,3.05582850670837,-1.1797199876126,1.1797199876126,480.795573940845,1838.3045923149,53.4741129840452,0.000886023128550696,1350.28020994555,1352.58759041953,1471.82674178416,1322.90266335842,1352.68804114463,1473.47785721429,1322.99722054095,1.05996755436039,3061.38571946573,177.587821722908,0,3061.38571946573,3029.52400638752,84.9076552933643,85.0318019801979,84.7022277227722,84.9076552933643,0.00709632818952046,84.9076306154327,85.0317714285713,84.7003523809523,20,24.7999999999995,1015.19999999998,39.2380181818182,1230.87592958189,1.20089851527849,40,0,1282.89516919179,3.6318579117064,1296.38746623384,6.11218078022169,5.28598355243155,10
-2,1,0,1,10.6199999999953,250.64,250.654388888893,84.962711864444,84.9676519285041,87.5166814863593,84.967651928504,20.1423078289652,20.1423078289652,21.6038800139622,-0.977902163687676,-0.977902163687676,-0.963261954757805,1,1,1,1,1,1,1,1,1,1,1,1,22.011741221705,2.06001511526754,2.07095104999109,3.03360272667162,-0.747604754157067,0.747604754157067,486.01307705682,1839.36829727187,53.5050549069934,-0.000403631333755354,1354.01970266143,1351.92740057768,1377.09741033168,1260.4122496495,1351.82909167851,1377.00285289143,1260.03585088762,1.0592273082633,3069.49838687711,8.7853914967811,0,3069.49838687711,3037.69772478546,84.9654666132651,84.9924455445544,84.9341683168316,84.9654666132651,0.000354715622078929,84.9653998297718,84.993038095238,84.936057142857,20,24.7999999999995,1015.19999999998,39.6455870178739,1243.66114894807,1.20084100063811,40,0,1273.73863674255,3.62865489844445,1287.07298915347,6.10679031711041,5.24800403324554,10
+2,1,0,1,10.6199999999953,250.64,250.654388888893,84.962711864444,84.9676519285041,87.5166814863593,84.967651928504,20.1423078289652,20.1423078289652,21.6038800139622,-0.977902163687676,-0.977902163687676,-0.963261954757805,1,1,1,1,1,1,1,1,1,1,1,1,22.011741221705,2.06001511526754,2.07095104999109,3.03360272667162,-0.747604754157067,0.747604754157067,486.01307705682,1839.36829727187,53.5050549069934,-0.000403631333755354,1354.01970266143,1351.92740057768,1377.09741033168,1260.4122496495,1351.82909167851,1377.00285289143,1260.03585088762,1.0592273082633,3069.49838687711,8.7853914967811,0,3069.49838687711,3037.69772478546,84.9654666132651,84.9924455445544,84.9341683168316,84.9654666132651,0.000354715622078929,84.9653998297718,84.993038095238,84.936057142857,20,24.7999999999995,1015.19999999998,39.6455870178739,1243.66114894807,1.20084100063811,40,0,1273.73863674255,3.62865489844446,1287.07298915347,6.10679031711041,5.24800403324554,10
 2,2,0,2,10.6399999999994,250.64,251.387227777792,84.8030075188016,85.0558347417835,87.6075097840374,85.0558347417833,20.0731883150798,20.0731883150798,21.5297450291688,-0.605370892018779,-0.605370892018779,-0.590730683088914,1,1,1,1,1,1,1,1,1,1,1,1,21.9581147369049,2.28906726783862,2.29111353738485,3.05088363489283,-0.45789580766189,0.45789580766189,484.346870364174,1841.35539906103,53.562857354982,-0.000887687021749852,1350.26075002479,1348.68642415558,1377.09741214257,1264.21574757327,1348.63114589777,1377.00285469429,1266.05193025143,1.05812888910445,3061.12314251572,-59.4766567588282,0,3061.12314251572,3029.06083709702,85.0567827732069,85.1127227722771,85.0202376237623,85.0567827732069,-0.0023718216892112,85.0568225262687,85.113638095238,85.0202476190475,20,24.9000000000004,1015.19999999998,38.4366625352113,1212.95670692505,1.20097912536562,40,0,1251.02521929721,3.67107255968126,1264.26719587832,6.17817648365561,5.15501405047226,10
 1,2,0,2,10.6200000000026,250.64,250.800858333353,84.9627118643858,85.0172822201318,87.5678006867358,85.0172822201316,20.2594524930009,20.2594524930009,21.7295249642625,-0.497488240827846,-0.497488240827846,-0.482848031897988,1,1,1,1,1,1,1,1,1,1,1,1,22.1144032552198,2.01398549694328,2.00771454024154,3.0360147224065,-0.375294958650022,0.375294958650022,490.709297976465,1841.18156161806,53.5578006287435,-2.73648361868041E-05,1345.80581627018,1344.27542777563,1377.09715162772,1288.58982993564,1344.22355667987,1377.00259509048,1287.65351335619,1.05860893453104,3052.10685556288,-9.51404570066983,0,3052.10685556288,3020.37082846218,85.0165908460082,85.0699405940592,84.9545544554454,85.0165908460082,-0.000380329660435012,85.0165664919588,85.0688380952379,84.9557238095237,20,24.9000000000004,1015.19999999998,39.0860387582314,1233.44925734636,1.20088693909691,40,0,1241.76750148273,3.62472751074576,1254.8151599717,6.10018077890929,5.11647363902832,10
 1,1,0,1,10.6500000000015,250.64,251.158566666667,84.7233802816786,84.8985131332078,87.4454685272045,84.8985131332077,19.340864290272,19.340864290272,20.7442818887169,-0.911735459662289,-0.911735459662289,-0.897095250732422,1,1,1,1,1,1,1,1,1,1,1,1,21.3257775919177,2.53096993224293,2.51625398859699,3.02894466962151,-0.693916705659192,0.693916705659192,455.697480851112,1837.28846153846,53.4445549379123,-0.000197836727282034,1354.32378870535,1355.76417537622,1409.81004072277,1322.90258788416,1355.82883493424,1411.18978576857,1322.99714532952,1.06009094986934,3069.23323144874,243.402201084752,0,3069.23323144874,3036.86182212686,84.8979824735755,85.0562277227722,84.6816831683167,84.8979824735755,0.00973767639428036,84.8979487447511,85.0585714285714,84.6794761904761,20,24.7999999999995,1015.19999999998,38.0386008442777,1193.25084047925,1.20106777271609,40,0,1280.65666182378,3.8528183483661,1294.3078133838,6.48404283181453,5.27750382623363,9.9859287054409
@@ -31,14 +31,14 @@ SecID,DirID,RunID,HeadID,delta t,length,delta s,v (s),v (GPS),v_veh_CAN,v_veh,va
 2,1,0,1,10.6200000000026,250.64,250.890833333297,84.9627118643858,85.0478062088429,87.5992403951082,85.0478062088428,18.858271088476,18.858271088476,20.2266706141954,-1.05276575729069,-1.05276575729069,-1.03812554836081,1,1,1,1,1,1,1,1,1,1,1,1,20.923672857127,2.87101437959431,2.86341645953182,3.06610614779107,-0.798494546033812,0.798494546033812,438.053764020118,1840.04797742239,53.5248260011384,-0.000670438486576686,1346.19316983321,1343.58089185739,1377.09740911089,1262.3727834297,1343.49084801022,1377.00285167524,1262.44160794476,1.05822891352598,3050.01658882238,-14.0830996227211,0,3050.01658882238,3018.72761918534,85.0467686074346,85.0936039603959,85.0096831683167,85.0467686074346,-0.000557816835303743,85.0467203960041,85.0902095238094,85.0110857142856,20,24.9000000000004,1015.09999999999,39.4407930385701,1244.64433921001,1.20071774049304,40,0,1269.15520184669,3.99294908249168,1282.30993575607,6.71987374829394,5.22858281653851,11
 2,2,0,2,10.6399999999994,250.64,251.330424999953,84.8030075188016,85.0366338028169,87.5877328169012,85.0366338028168,23.1853416797183,23.1853416797183,24.8677234001484,-1.96813145539906,-1.96813145539906,-1.95349124646918,1,1,1,1,1,1,1,1,1,1,1,1,24.6047826297869,2.12884184172336,2.13485123303647,3.20015327499046,-1.56997743896495,1.56997743896495,608.448218243172,1840.21314553991,53.5296305469217,-0.000232164297996117,1345.99909856714,1346.08961885098,1379.24193883168,1322.90258264356,1346.11841079568,1379.55847549619,1322.99714010857,1.05836777188041,3050.25392792913,-66.5654818680664,0,3050.25392792913,3019.40092479331,85.0374236694091,85.1086237623761,84.9976633663365,85.0374236694091,-0.00266079424843901,85.0374426827632,85.1081238095237,84.9963809523808,20,24.7999999999995,1015,40.0702267605634,1256.98187364926,1.20054340253668,40,0,1265.73800599239,2.88234595488608,1278.67163741157,4.85080087814533,5.21374775702986,11
 1,2,0,2,10.6200000000026,250.64,250.801519444456,84.9627118643858,85.0174863593603,87.5680109501413,85.0174863593602,23.3855033971026,23.3855033971026,25.0824093121341,-2.6009219190969,-2.6009219190969,-2.58628171016701,1,1,1,1,1,1,1,1,1,1,1,1,24.773752542989,2.05928681335289,2.06328184266313,3.3070002435115,-2.07432177210922,2.07432177210922,615.989119477041,1839.56632173095,53.5108152050108,0.000725168158950293,1353.00961823452,1353.60565381124,1377.09733039208,1322.90281592574,1353.61867918325,1377.00277323143,1322.99737257619,1.05860630849382,3065.75561101845,7.14999871035977,0,3065.75561101845,3034.9925411392,85.0174685692464,85.0529207920791,84.9942475247523,85.0174685692464,0.000280072692124365,85.0174728665501,85.0525999999999,84.9953333333332,20,24.7999999999995,1015,40.761845625588,1278.67759256806,1.20044580378333,40,0,1258.01435985056,2.88487675968664,1270.76575318567,4.8550600581123,5.18151173572138,11
-1,1,0,1,10.6800000000003,250.64,251.354641666567,84.4853932584247,84.726095416277,87.2678782787652,84.7260954162769,21.5394989606454,21.5394989606454,23.1024545478091,0.905238540692236,0.905238540692236,0.919878749622103,1,1,1,1,1,1,1,1,1,1,1,1,23.1870087728886,1.54155920807855,1.54318466023956,2.3731910736591,0.732808524547173,0.732808524547173,539.385392583012,1833.13985032741,53.3238767295489,-0.000115647791097224,1346.03495894116,1346.14908997707,1377.09740480495,1322.90258156139,1346.14304280579,1377.00284738476,1322.99713903048,1.06225016649919,3049.73867017528,301.513594829688,0,3049.73867017528,3018.74531224171,84.7258656929303,84.8973663366336,84.4318316831682,84.7258656929303,0.0120614610572394,84.7259394385528,84.8985428571428,84.4294299065419,20,24.7060113189899,1015.02361131899,40.0832452759588,1250.35031720379,1.20060129380446,40,0,1287.17582335299,3.20956383942926,1300.39121481209,5.40148730737017,5.30230872502382,9.99719363891487
+1,1,0,1,10.6800000000003,250.64,251.354641666567,84.4853932584247,84.726095416277,87.2678782787652,84.7260954162769,21.5394989606454,21.5394989606454,23.1024545478091,0.905238540692236,0.905238540692236,0.919878749622103,1,1,1,1,1,1,1,1,1,1,1,1,23.1870087728886,1.54155920807855,1.54318466023956,2.3731910736591,0.732808524547174,0.732808524547174,539.385392583012,1833.13985032741,53.3238767295489,-0.000115647791097224,1346.03495894116,1346.14908997707,1377.09740480495,1322.90258156139,1346.14304280579,1377.00284738476,1322.99713903048,1.06225016649919,3049.73867017528,301.513594829688,0,3049.73867017528,3018.74531224171,84.7258656929303,84.8973663366336,84.4318316831682,84.7258656929303,0.0120614610572394,84.7259394385528,84.8985428571428,84.4294299065419,20,24.7060113189899,1015.02361131899,40.0832452759588,1250.35031720379,1.20060129380446,40,0,1287.17582335299,3.20956383942926,1300.39121481209,5.40148730737017,5.30230872502382,9.99719363891487
 2,1,0,1,10.6200000000026,250.64,250.626825000058,84.9627118643858,84.9582605832549,87.5070084007526,84.9582605832549,20.5752669070179,20.5752669070179,22.068255598559,0.201420507996237,0.201420507996237,0.21606071692609,1,1,1,1,1,1,1,1,1,1,1,1,22.3798679507083,1.79010776104711,1.79151947934471,2.83222807143981,0.17086223261895,0.17086223261895,502.33983288979,1838.33019755409,53.4748578102613,0.00038310770661525,1349.81016118965,1347.71874186071,1377.09733571485,1233.12306539604,1347.62035636786,1377.00277853428,1232.38771119905,1.05934457998582,3058.57708083657,93.5139714541658,0,3058.57708083657,3027.96010440935,84.9559957434124,85.0414158415841,84.8848712871286,84.9559957434124,0.00373745041484192,84.9559070644626,85.0397904761903,84.8865238095237,20,24.7806433678266,1015,41.0173010348072,1285.20457238113,1.20041644199563,40,0,1275.51521702801,3.48783443957881,1288.41248713254,5.86979863872832,5.25346579870556,10
 2,2,0,2,10.6200000000026,250.64,251.044899999972,84.9627118643858,85.1000611476953,87.653062982126,85.1000611476952,23.6080467753151,23.6080467753151,25.3211009497374,-2.54502351834431,-2.54502351834431,-2.53038330941442,1,1,1,1,1,1,1,1,1,1,1,1,24.9678278984457,2.5178725044554,2.51752603131761,3.4144060466758,-2.03320251758765,2.03320251758765,627.528215037693,1841.41721542803,53.5646555202083,-6.84120904670076E-05,1354.38142318645,1354.84180335794,1377.09734087327,1322.90279882871,1354.86554882117,1377.00278367524,1322.99735553905,1.05757979716019,3068.95576576923,-102.899650351961,0,3068.95576576923,3037.98473747443,85.1010256419808,85.2332475247524,84.9903267326731,85.1010256419808,-0.00411545152633844,85.101051462617,85.2321142857142,84.9925238095237,20,25.154502728128,1015,39.4270645343368,1263.23141443863,1.20051528881561,40,0,1266.85610381099,2.82254376503434,1279.77119049743,4.75015768000456,5.21823115391409,11
-1,2,0,2,10.6100000000006,250.64,250.619675000111,85.042789820919,85.0359529190207,87.5870315065914,85.0359529190206,24.285417765226,24.285417765226,26.047623536684,-2.71038606403013,-2.71038606403013,-2.69574585510024,1,1,1,1,1,1,1,1,1,1,1,1,25.540307930824,2.51565550106603,2.51972464138089,3.71918343898612,-2.17368079521728,2.17368079521728,654.597930050095,1841.02448210923,53.5532313710492,-0.000534116767324068,1348.25873191723,1347.51375860651,1377.09741404852,1322.90258817129,1347.49355992056,1377.00285659619,1322.99714561714,1.05837652820699,3056.76113307806,1.75826894458265,0,3056.76113307806,3025.62186217914,85.0342703846655,85.0886039603959,84.9790693069306,85.0342703846655,7.47132152004554E-05,85.0342036319612,85.088838095238,84.9822285714285,20,25.2000000000005,1015,38.5206206214689,1237.5372624324,1.20063087462374,40,0,1262.20600873712,2.6940014636067,1275.19645388415,4.53382934246165,5.1995777936153,11
+1,2,0,2,10.6100000000006,250.64,250.619675000111,85.042789820919,85.0359529190207,87.5870315065914,85.0359529190206,24.285417765226,24.285417765226,26.047623536684,-2.71038606403013,-2.71038606403013,-2.69574585510024,1,1,1,1,1,1,1,1,1,1,1,1,25.540307930824,2.51565550106603,2.51972464138089,3.71918343898612,-2.17368079521728,2.17368079521728,654.597930050095,1841.02448210923,53.5532313710492,-0.000534116767324068,1348.25873191723,1347.51375860651,1377.09741404852,1322.90258817129,1347.49355992056,1377.00285659619,1322.99714561714,1.05837652820699,3056.76113307806,1.75826894458265,0,3056.76113307806,3025.62186217914,85.0342703846655,85.0886039603959,84.9790693069306,85.0342703846655,7.47132152004554E-05,85.0342036319612,85.088838095238,84.9822285714285,20,25.2000000000005,1015,38.5206206214689,1237.5372624324,1.20063087462374,40,0,1262.20600873712,2.6940014636067,1275.19645388415,4.53382934246166,5.19957779361529,11
 1,1,0,1,10.6299999999974,250.64,251.126377777957,84.8827845719871,85.0474652255638,87.5988891823309,85.0474652255638,22.3956516812688,22.3956516812688,24.0207316790609,1.22278195488722,1.22278195488722,1.23742216381709,1,1,1,1,1,1,1,1,1,1,1,1,23.9338099415714,1.61663509894613,1.60628581471839,2.39746935455628,0.989567387049494,0.989567387049494,574.739233053265,1840.46334586466,53.5369085793493,-2.05043380168533E-05,1346.69725029352,1348.57630786716,1457.1180789505,1322.90258648614,1348.67196396221,1457.15061902476,1322.9971439381,1.0582338389699,3051.86301395342,89.974587758271,0,3051.86301395342,3021.05793745433,85.0469434043028,85.1284752475246,84.9429702970296,85.0469434043028,0.00359913810929899,85.0469202201932,85.1247238095236,84.9406285714285,20,25.7000000000005,1014.90000000001,37.353702537594,1236.23646767871,1.2005178890444,40,0,1289.17097093548,3.0127435273888,1302.31636940259,5.0702515163076,5.31015848889944,9
 2,1,0,1,10.6100000000006,250.64,250.661805555657,85.042789820919,85.0502344632768,87.6017414971752,85.0502344632767,20.7861147730038,20.7861147730038,22.2944030706679,0.138719397363465,0.138719397363465,0.153359606293321,1,1,1,1,1,1,1,1,1,1,1,1,22.5645201958642,1.900958067045,1.906278278504,2.65402322930242,0.125398910992419,0.125398910992419,511.330599256335,1839.99011299435,53.5231427931565,-0.000362925495745839,1353.87991705734,1352.6208233063,1377.09741242178,1280.1984118198,1352.56202790475,1377.00285497429,1278.75432764381,1.05819875080315,3067.24314786231,-29.3837702593958,0,3067.24314786231,3036.15995714591,85.0497232663945,85.0936633663366,85.0237227722771,85.0497232663945,-0.00117236299901158,85.0496961976504,85.0924761904761,85.0235714285713,20,25.7000000000005,1014.90000000001,37.0273783427495,1225.43663144972,1.20056647238733,40,0,1276.09843674211,3.44141987769731,1289.16270596442,5.7916859482125,5.25652479496194,9
 2,2,0,2,10.6200000000026,250.64,251.087116666647,84.9627118643858,85.114297271872,87.6677261900283,85.114297271872,19.1944034703763,19.1944034703763,20.5871935348579,-0.873885230479774,-0.873885230479774,-0.859245021549903,1,1,1,1,1,1,1,1,1,1,1,1,21.2137110398341,2.64431438072038,2.65592110281416,3.04087005360492,-0.663981851667594,0.663981851667594,450.67856239236,1841.09031044214,53.5551462396333,0.000567820350876174,1351.9592868444,1351.06210690739,1377.09741062772,1322.90266249802,1351.02187447703,1377.00285318667,1322.99721968476,1.05740195476938,3062.42685522094,-22.5352648686385,0,3062.42685522094,3031.90655963924,85.1151969393551,85.1519801980196,85.0801683168316,85.1151969393551,-0.000906064265879994,85.1152150786184,85.1516857142855,85.081038095238,20,25.7999999999995,1014.90000000001,38.1677479774224,1270.68854835287,1.20036290546739,40,0,1245.57631901066,3.96365972619678,1258.11475206524,6.67058166557404,5.12992763329354,11
-1,2,0,2,10.6199999999953,250.64,250.839391666821,84.962711864444,85.0303904045156,87.581302116651,85.0303904045155,20.6368971987771,20.6368971987771,22.1343579260428,-1.70344308560677,-1.70344308560677,-1.68880287667689,1,1,1,1,1,1,1,1,1,1,1,1,22.43599913306,2.25003829270162,2.25568713764775,3.05103281064516,-1.32853375702589,1.32853375702589,506.632629445802,1839.86265286924,53.5194351284095,-0.000595185187062976,1352.96251120254,1351.96201318342,1377.09741877327,1317.65945393762,1351.91387000735,1377.00286130381,1317.8438877619,1.05844589846024,3065.66422001001,-63.3669475799882,0,3065.66422001001,3035.13433601848,85.0297630468596,85.1169999999999,84.9438217821781,85.0297630468596,-0.00252983906104436,85.029746234825,85.1187619047618,84.9445238095237,20,25.7999999999995,1014.90000000001,38.2276270931327,1272.68205623978,1.20035393762054,40,0,1243.71418905985,3.5360982139096,1256.22449196803,5.95102343359014,5.1222201507361,11
+1,2,0,2,10.6199999999953,250.64,250.839391666821,84.962711864444,85.0303904045156,87.581302116651,85.0303904045155,20.6368971987771,20.6368971987771,22.1343579260428,-1.70344308560677,-1.70344308560677,-1.68880287667689,1,1,1,1,1,1,1,1,1,1,1,1,22.43599913306,2.25003829270162,2.25568713764775,3.05103281064517,-1.32853375702589,1.32853375702589,506.632629445803,1839.86265286924,53.5194351284095,-0.000595185187062976,1352.96251120254,1351.96201318342,1377.09741877327,1317.65945393762,1351.91387000735,1377.00286130381,1317.8438877619,1.05844589846024,3065.66422001001,-63.3669475799882,0,3065.66422001001,3035.13433601848,85.0297630468596,85.1169999999999,84.9438217821781,85.0297630468596,-0.00252983906104436,85.029746234825,85.1187619047618,84.9445238095237,20,25.7999999999995,1014.90000000001,38.2276270931327,1272.68205623978,1.20035393762054,40,0,1243.71418905985,3.5360982139096,1256.22449196803,5.95102343359014,5.12222015073611,11
 1,1,2,1,60.3300000000017,250.64,252.466052777781,14.9561412232716,15.0650858468675,15.5170384222738,15.0650858468675,3.53794630427578,3.53794630427578,3.79466782567495,2.09335929731521,2.09335929731521,2.10799950624523,1,1,1,1,1,1,1,1,1,1,1,1,3.87423230451094,0.598202464667821,0.597554450500132,1.61802969879372,1.6352033816435,1.6352033816435,15.3605820222894,748.039608882996,8.70383607355975,5.30290072145003E-06,629.746192668446,629.75684279792,651.677936809901,608.322065464356,629.990758792031,631.340574629848,628.659696064418,5.9741232653234,1309.81403570926,15.0848901623831,0,1309.81403570926,1296.59825696896,15.0650360596882,15.1067425742574,14.9491584158415,15.0650360596882,0.000603360385756877,15.064857995451,15.0980552763819,14.9654076539102,20,25.5461799801149,1014.90000000007,37.7294894928737,1237.32735137906,1.2005129816759,40,0,0,0,0,0,0,10.9593967517401
 2,1,2,1,59.8699999999953,250.64,251.144902777799,15.0710539502267,15.1014116566463,15.554454006346,15.1014116566463,3.76744822979291,3.76744822979291,4.04082293878048,0.552022378089512,0.552022378089512,0.566662587019399,1,1,1,1,1,1,1,1,1,1,1,1,4.07169203500346,0.716010205363962,0.715892639299615,1.539145374705,0.464223892028678,0.464223892028678,17.2336574221712,748.758851035404,8.71220483601219,9.27039933721741E-21,629.958948108736,629.960670706536,651.677930972277,608.322062777228,629.997682767426,631.340631978414,628.659320459696,5.95973912690107,1308.35875264551,-3.82414955894448,0,1308.35875264551,1295.22841716604,15.1013608388393,15.1485742574257,15.0514554455445,15.1013608388393,-0.000152969121227469,15.1001921427333,15.1196509274874,15.0151708542713,20,25.6000000000029,1014.9167000669,38.1863750167,1256.31828763166,1.20044739635561,40,0,0,0,0,0,0,10.9475617902472
 2,2,2,2,60.0099999999948,250.64,252.345914735653,15.035894017665,15.1467335888034,15.592397641161,15.1382501370495,2.921661946018,2.921661946018,3.1336644568784,-1.13637454181939,-1.13637454181939,-1.12173433288958,1,1,1,1,1,1,1,1,1,1,1,1,3.35411536410386,0.933496255473224,0.933165412624448,1.93669958329124,-0.869907826069288,0.869907826069288,11.6916547736272,748.985838053982,8.7148459499012,1.96536481783444E-20,629.523822546201,629.543803653502,651.677933719802,608.322062936633,629.970084754293,631.500771643973,628.499234002887,5.94527089606747,1304.68003816437,-16.6693922645556,0,1304.68003816437,1291.54204391726,15.1382469268987,15.2480177572816,15.0674356435643,15.1382469268987,-0.00066677872527265,15.1382192891136,15.2480177572816,15.0859832495812,20,25.4259330223227,1014.90000000007,38.1648456514495,1242.69623962521,1.2004888295931,40,0,0,0,0,0,0,10.9966677774075
diff --git a/DemoData/StandardCriteria.cscrt.json b/DemoData/StandardCriteria.cscrt.json
new file mode 100644
index 0000000000000000000000000000000000000000..bf6e9c976305a3491909f101d268cd12c9c5a31c
--- /dev/null
+++ b/DemoData/StandardCriteria.cscrt.json
@@ -0,0 +1,55 @@
+{
+  "Header": {
+    "Title": "vecto-cse CRITERIA",
+    "FileVersion": "1.0.0",
+    "AppVersion": "2.0.1-pre1",
+    "ModifiedDate": "2014/06/04 02:52:21 +02:00",
+    "CreatedBy": "ISIS\\anastkn@JRC(lic: 04c137c0-24df-4d90-a3e2-b02fe3dba8ea)",
+    "StrictBody": false,
+    "BodySchema": null
+  },
+  "Body": {
+    "Processing": {
+      "roh_air_ref": 1.1884,
+      "accel_correction": false,
+      "gradient_correction": false,
+      "hz_out": 1,
+      "rr_corr_factor": 1.0,
+      "acc_corr_avg": 1.0,
+      "dist_float": 25.0
+    },
+    "Validation": {
+      "trigger_delta_x_max": 10.0,
+      "trigger_delta_y_max": 100.0,
+      "delta_head_max": 10.0,
+      "segruns_min_CAL": 5,
+      "segruns_min_LS": 1,
+      "segruns_min_HS": 2,
+      "segruns_min_head_MS": 10,
+      "delta_Hz_max": 1.0,
+      "delta_parallel_max": 20.0,
+      "v_wind_avg_max_CAL": 5.0,
+      "v_wind_1s_max_CAL": 8.0,
+      "beta_avg_max_CAL": 5.0,
+      "leng_crit": 3.0,
+      "v_wind_avg_max_LS": 5.0,
+      "v_wind_1s_max_LS": 8.0,
+      "v_veh_avg_min_LS": 9.0,
+      "v_veh_avg_max_LS": 16.0,
+      "v_veh_float_delta_LS": 0.15,
+      "tq_sum_float_delta_LS": 0.1,
+      "v_wind_avg_max_HS": 5.0,
+      "v_wind_1s_max_HS": 8.0,
+      "beta_avg_max_HS": 3.0,
+      "v_veh_avg_min_HS": 80.0,
+      "v_veh_1s_delta_HS": 0.3,
+      "tq_sum_1s_delta_HS": 0.1,
+      "delta_t_tyre_max": 5.0,
+      "delta_rr_corr_max": 0.3,
+      "t_amb_min": 0.0,
+      "t_amb_max": 35.0,
+      "t_amb_var": 3.0,
+      "t_amb_tarmac": 25.0
+    }
+  }
+}
\ No newline at end of file
diff --git a/DemoData/VehicleDemo.csveh.json b/DemoData/VehicleDemo.csveh.json
index 6008120a97fe6214df975623a0f1ba5310f3de33..8cfc655c80e6bbeb2bf72f6d5b5c90b2dd860f2c 100644
--- a/DemoData/VehicleDemo.csveh.json
+++ b/DemoData/VehicleDemo.csveh.json
@@ -5,6 +5,7 @@
     "AppVersion": "2.0.1-pre1",
     "ModifiedDate": "2014/05/28 00:33:50 +02:00",
     "Strict": true,
+    "BodySchema": null,
   },
   "Body": {
         "classCode":         4,
diff --git a/Docs/VECTO_CSE-User Manual.docx b/Docs/VECTO_CSE-User Manual.docx
index a19b397daf7ff98b172ec39c908cdc1650829837..a203194df8922384f17a353dfacb3dee5951be9d 100644
Binary files a/Docs/VECTO_CSE-User Manual.docx and b/Docs/VECTO_CSE-User Manual.docx differ
diff --git a/README.md b/README.md
index 961cca5c2ddd00cd3b37e58a468d9a51003a5513..2ef64d6be3673cc2c4f20567fdf319270bacd28a 100644
--- a/README.md
+++ b/README.md
@@ -1,7 +1,7 @@
 VECTO-CSE
 =========
   * Copyright : 2014 EUROPEAN COMMISSION
-  * Developed : by TU-Graz, on behalf of DG CLIMA, supported by JRC.
+  * Developed : by TU-Graz & JRC, on behalf of DG CLIMA.
   * License   : EUPL
 
 A Constant Speed Evaluation tool for tests performed on Heavy-duty vehicles.
@@ -31,6 +31,5 @@ In any case, you can contact JRC to ask for access to the above resources:
 
 
 
-
 ## USAGE:
 Read `./Docs/VECTO_CSE-User Manual.pdf`