commit ae29bef4711f57d12e7ba128000356ac1d565792 Author: Jolys Enzo Date: Mon Mar 20 17:07:02 2023 +0100 first diff --git a/.drone.yml b/.drone.yml new file mode 100644 index 0000000..6e619c7 --- /dev/null +++ b/.drone.yml @@ -0,0 +1,64 @@ +kind: pipeline +type: docker +name: default + + +trigger: + event: + - push + +steps: + - name: build + image: mcr.microsoft.com/dotnet/sdk:6.0 + volumes: + - name: docs + path: /docs + commands: + - cd Sources/ + - dotnet restore ApiSolution.sln + - dotnet build ApiSolution.sln -c Release --no-restore + - dotnet publish ApiSolution.sln -c Release --no-restore -o CI_PROJECT_DIR/build/release + + - name: tests + image: mcr.microsoft.com/dotnet/sdk:6.0 + commands: + - cd Sources/ + - dotnet restore ApiSolution.sln + - dotnet test ApiSolution.sln --no-restore + depends_on: + - build + + - name: docker-build-and-push + image: plugins/docker + settings: + dockerfile: Sources/Api/Dockerfile + context: Sources/ + registry: hub.codefirst.iut.uca.fr + repo: hub.codefirst.iut.uca.fr/R-Dash/Serveur_R-Dash + username: + from_secret: SECRET_REGISTRY_USERNAME + password: + from_secret: SECRET_REGISTRY_PASSWORD + depends_on: + - tests + when: + branch: + - master + + - name: deploy-container + image: hub.codefirst.iut.uca.fr/thomas.bellembois/codefirst-dockerproxy-clientdrone:latest + environment: + IMAGENAME: hub.codefirst.iut.uca.fr/R-Dash/Serveur_R-Dash:latest + CONTAINERNAME: R-Dash_Container + COMMAND: create + OVERWRITE: true + ADMINS: enzojolys + depends_on: + - docker-build-and-push + when: + branch: + - master + +volumes: +- name: docs + temp: {} \ No newline at end of file diff --git a/Sources/.dockerignore b/Sources/.dockerignore new file mode 100644 index 0000000..3729ff0 --- /dev/null +++ b/Sources/.dockerignore @@ -0,0 +1,25 @@ +**/.classpath +**/.dockerignore +**/.env +**/.git +**/.gitignore +**/.project +**/.settings +**/.toolstarget +**/.vs +**/.vscode +**/*.*proj.user +**/*.dbmdl +**/*.jfm +**/azds.yaml +**/bin +**/charts +**/docker-compose* +**/Dockerfile* +**/node_modules +**/npm-debug.log +**/obj +**/secrets.dev.yaml +**/values.dev.yaml +LICENSE +README.md \ No newline at end of file diff --git a/Sources/.gitignore b/Sources/.gitignore new file mode 100644 index 0000000..e33af40 --- /dev/null +++ b/Sources/.gitignore @@ -0,0 +1,162 @@ +build/ +*.suo +*.user +_ReSharper.*/ +*.sdf +bin/ +obj/ +Debug/ +Release/ +*.opensdf +*.tlog +*.log +TestResult.xml +*.VisualState.xml +Version.cs +Version.h +Version.cpp +# Xcode +!**/*.xcodeproj +!**/*.pbxproj +!**/*.xcworkspacedata +!**/*.xcsettings +!**/*.xcscheme +*.pbxuser +!default.pbxuser +*.mode1v3 +!default.mode1v3 +*.mode2v3 +!default.mode2v3 +*.perspectivev3 +!default.perspectivev3 +xcuserdata +*.xccheckout +*.moved-aside +DerivedData +*.hmap +*.ipa +*.xcuserstate +project.xcworkspace +**/.xcode.env.local +.expo +.yarn +# Gradle +/build/ +/packages/react-native-gradle-plugin/build/ +/packages/rn-tester/build +/packages/rn-tester/android/app/.cxx/ +/packages/rn-tester/android/app/build/ +/packages/rn-tester/android/app/gradle/ +/packages/rn-tester/android/app/gradlew +/packages/rn-tester/android/app/gradlew.bat +/ReactAndroid/build/ +/ReactAndroid/.cxx/ +/ReactAndroid/gradle/ +/ReactAndroid/gradlew +/ReactAndroid/gradlew.bat +/ReactAndroid/external-artifacts/build/ +/ReactAndroid/external-artifacts/artifacts/ +/ReactAndroid/hermes-engine/build/ +/ReactAndroid/hermes-engine/.cxx/ +/template/android/app/build/ +/template/android/build/ + +# Buck +.buckd +buck-out +/.lsp.buckd +/.lsp-buck-out +/ReactAndroid/src/main/jni/prebuilt/lib/ +/ReactAndroid/src/main/gen + +# Android Studio +.project +.settings +.classpath + +# Watchman +.watchmanconfig + +# Android +.idea +.gradle +local.properties +*.iml +/android/* +!/android/README.md + +# Node +node_modules +*.log +.nvm +package-lock.json + +# OS X +.DS_Store + +# Test generated files +/ReactAndroid/src/androidTest/assets/AndroidTestBundle.js +*.js.meta + +/coverage +/third-party + +# Test Reports +/reports + +# Stack Dumps generated when programs crash (Ex. bash.exe.stackdump on Win) +*.stackdump + +# Root dir shouldn't have Xcode project +/*.xcodeproj + +# ReactCommon subdir shouldn't have Xcode project +/ReactCommon/**/*.xcodeproj + +# Libs that shouldn't have Xcode project +/Libraries/FBLazyVector/**/*.xcodeproj +/Libraries/RCTRequired/**/*.xcodeproj +/React/CoreModules/**/*.xcodeproj +/React/FBReactNativeSpec/**/*.xcodeproj +/packages/react-native-codegen/**/*.xcodeproj + +# Ruby Gems (Bundler) +/vendor +/template/vendor +.ruby-version +/**/.ruby-version + +# iOS / CocoaPods +/template/ios/build/ +/template/ios/Pods/ +/template/ios/Podfile.lock +/packages/rn-tester/Gemfile.lock + +# Ignore RNTester specific Pods, but keep the __offline_mirrors__ here. +/packages/rn-tester/Pods/* +!/packages/rn-tester/Pods/__offline_mirrors_hermes__ +!/packages/rn-tester/Pods/__offline_mirrors_jsc__ + +# @react-native/codegen +/React/FBReactNativeSpec/FBReactNativeSpec +/packages/react-native-codegen/lib +/packages/react-native-codegen/tmp/ +/ReactCommon/react/renderer/components/rncore/ +/packages/rn-tester/NativeModuleExample/ScreenshotManagerSpec* +/**/RCTThirdPartyFabricComponentsProvider.* + + +# Additional SDKs +/sdks/download +/sdks/hermes +/sdks/hermesc + +# Visual studio +.vscode +.vs + +# Android memory profiler files +*.hprof + +# Temporary files created by Metro to check the health of the file watcher +.metro-health-check* diff --git a/Sources/Api/.gitignore b/Sources/Api/.gitignore new file mode 100644 index 0000000..84b8a4f --- /dev/null +++ b/Sources/Api/.gitignore @@ -0,0 +1,145 @@ +# Xcode +!**/*.xcodeproj +!**/*.pbxproj +!**/*.xcworkspacedata +!**/*.xcsettings +!**/*.xcscheme +*.pbxuser +!default.pbxuser +*.mode1v3 +!default.mode1v3 +*.mode2v3 +!default.mode2v3 +*.perspectivev3 +!default.perspectivev3 +xcuserdata +*.xccheckout +*.moved-aside +DerivedData +*.hmap +*.ipa +*.xcuserstate +project.xcworkspace +**/.xcode.env.local +.expo +.yarn +# Gradle +/build/ +/packages/react-native-gradle-plugin/build/ +/packages/rn-tester/build +/packages/rn-tester/android/app/.cxx/ +/packages/rn-tester/android/app/build/ +/packages/rn-tester/android/app/gradle/ +/packages/rn-tester/android/app/gradlew +/packages/rn-tester/android/app/gradlew.bat +/ReactAndroid/build/ +/ReactAndroid/.cxx/ +/ReactAndroid/gradle/ +/ReactAndroid/gradlew +/ReactAndroid/gradlew.bat +/ReactAndroid/external-artifacts/build/ +/ReactAndroid/external-artifacts/artifacts/ +/ReactAndroid/hermes-engine/build/ +/ReactAndroid/hermes-engine/.cxx/ +/template/android/app/build/ +/template/android/build/ + +# Buck +.buckd +buck-out +/.lsp.buckd +/.lsp-buck-out +/ReactAndroid/src/main/jni/prebuilt/lib/ +/ReactAndroid/src/main/gen + +# Android Studio +.project +.settings +.classpath + +# Watchman +.watchmanconfig + +# Android +.idea +.gradle +local.properties +*.iml +/android/* +!/android/README.md + +# Node +node_modules +*.log +.nvm +package-lock.json + +# OS X +.DS_Store + +# Test generated files +/ReactAndroid/src/androidTest/assets/AndroidTestBundle.js +*.js.meta + +/coverage +/third-party + +# Test Reports +/reports + +# Stack Dumps generated when programs crash (Ex. bash.exe.stackdump on Win) +*.stackdump + +# Root dir shouldn't have Xcode project +/*.xcodeproj + +# ReactCommon subdir shouldn't have Xcode project +/ReactCommon/**/*.xcodeproj + +# Libs that shouldn't have Xcode project +/Libraries/FBLazyVector/**/*.xcodeproj +/Libraries/RCTRequired/**/*.xcodeproj +/React/CoreModules/**/*.xcodeproj +/React/FBReactNativeSpec/**/*.xcodeproj +/packages/react-native-codegen/**/*.xcodeproj + +# Ruby Gems (Bundler) +/vendor +/template/vendor +.ruby-version +/**/.ruby-version + +# iOS / CocoaPods +/template/ios/build/ +/template/ios/Pods/ +/template/ios/Podfile.lock +/packages/rn-tester/Gemfile.lock + +# Ignore RNTester specific Pods, but keep the __offline_mirrors__ here. +/packages/rn-tester/Pods/* +!/packages/rn-tester/Pods/__offline_mirrors_hermes__ +!/packages/rn-tester/Pods/__offline_mirrors_jsc__ + +# @react-native/codegen +/React/FBReactNativeSpec/FBReactNativeSpec +/packages/react-native-codegen/lib +/packages/react-native-codegen/tmp/ +/ReactCommon/react/renderer/components/rncore/ +/packages/rn-tester/NativeModuleExample/ScreenshotManagerSpec* +/**/RCTThirdPartyFabricComponentsProvider.* + + +# Additional SDKs +/sdks/download +/sdks/hermes +/sdks/hermesc + +# Visual studio +.vscode +.vs + +# Android memory profiler files +*.hprof + +# Temporary files created by Metro to check the health of the file watcher +.metro-health-check* diff --git a/Sources/Api/Api.csproj b/Sources/Api/Api.csproj new file mode 100644 index 0000000..740024b --- /dev/null +++ b/Sources/Api/Api.csproj @@ -0,0 +1,24 @@ + + + + net6.0 + enable + enable + df403082-13dd-4046-9b6a-b186df4676fe + Windows + + + + + + + + + + + + + + + + diff --git a/Sources/Api/Controllers/Circuits.cs b/Sources/Api/Controllers/Circuits.cs new file mode 100644 index 0000000..f1d18d1 --- /dev/null +++ b/Sources/Api/Controllers/Circuits.cs @@ -0,0 +1,48 @@ +using Dto.Classe; +using Dto.Factories; +using Interface; +using Microsoft.AspNetCore.Mvc; +using Modele.Classe; + +namespace Api.Controllers +{ + [ApiController] + [Route("[controller]")] + public class Circuits : Controller + { + private readonly IApi data; + + public Circuits(IApi manager) + { + this.data = manager; + } + [HttpGet] + public async Task Get(string name = "All") + { + if (name == "All") + { + return Ok((await data.GetCircuits()).Select(e => e.ModeleToDTO())); + } + + Circuit circuit = await data.GetOneCircuit(name); + if (circuit == null) + { + return BadRequest(name); + } + return Ok(circuit.ModeleToDTO()); + + } + + [HttpPost] + public async Task Post(CircuitDTO circuitDto) + { + Circuit circuit = await data.AddCircuit(circuitDto.DTOToModele()); + + if (circuit == null) + { + return BadRequest("Le pilote existe déjà !"); + } + return Ok(circuit.ModeleToDTO()); + } + } +} diff --git a/Sources/Api/Controllers/Ecuries.cs b/Sources/Api/Controllers/Ecuries.cs new file mode 100644 index 0000000..9424998 --- /dev/null +++ b/Sources/Api/Controllers/Ecuries.cs @@ -0,0 +1,83 @@ +using Dto.Classe; +using Dto.Factories; +using Interface; +using Microsoft.AspNetCore.Mvc; +using Modele.Classe; +using System.Runtime.Intrinsics.X86; + +namespace Api.Controllers +{ + [ApiController] + [Route("[controller]")] + public class Ecuries : Controller + { + private readonly IApi data; + + public Ecuries(IApi manager) + { + this.data = manager; + } + + [HttpGet] + public async Task Get(string Email,string password,string name = "All") + { + Pilote piloteCheck = await data.CheckPilote(Email, password); + if (piloteCheck == null) + { + return BadRequest(); + } + + if (name == "All") + { + return Ok((await data.GetEcuries()).Select(e => e.ModeleToDTO())); + } + else + { + Ecurie ecurie = await data.GetOneEcurie(name); + if (ecurie == null) + { + return BadRequest(name); + } + else + { + return Ok(ecurie.ModeleToDTO()); + } + } + } + + [HttpPost] + public async Task Post(string Email,string password,EcurieDTO ecurie,string pseudo) + { + Pilote piloteCheck = await data.CheckPilote(Email, password); + if (piloteCheck == null) + { + return BadRequest(); + } + + List result = new List(); + result = await data.AddEcurie(ecurie.DTOToModele(),pseudo); + + if (result.ToList()[0] == 1) + { + int tmpListe = result.ToList()[1]; + if (tmpListe == 2) + { + return BadRequest("Le nom de l'écurie est déjà pris !"); + } + else if (tmpListe == 3) + { + return BadRequest("Le pilote n'existe pas !"); + } + else if (tmpListe == 4) + { + return BadRequest("Le pilote fait déjà partie d'une écurie !"); + } + else + { + return BadRequest("Erreur !"); + } + } + return CreatedAtAction(nameof(Get), new { name = ecurie.Name }, ecurie); + } + } +} diff --git a/Sources/Api/Controllers/File.cs b/Sources/Api/Controllers/File.cs new file mode 100644 index 0000000..5e9ecaf --- /dev/null +++ b/Sources/Api/Controllers/File.cs @@ -0,0 +1,47 @@ +using Extraction_Donnees.Extraction_EXECL; +using Interface; +using Microsoft.AspNetCore.Http; +using Microsoft.AspNetCore.Mvc; +using Modele.Classe; + +namespace Api.Controllers +{ + [Route("[controller]")] + [ApiController] + public class File : Controller + { + private readonly IApi data; + + public File(IApi manager) + { + this.data = manager; + } + + [HttpPost] + public async Task PostExecl(IFormFile file, string pseudoPilote,string Email ,string password,string nameSession, string nameCircuit, string typeSession) + { + Pilote pilote = await data.CheckPilote(Email, password); + if (pilote == null) + { + return BadRequest(); + } + + + if ( file == null || file.Length == 0) + { + return BadRequest("File vide"); + } + Session session; + try + { + session = await Excel.ReadExcel(file); + await data.AddSession(session,pseudoPilote, nameCircuit, nameSession,typeSession); + } + catch(Exception e) { + return BadRequest(e.Message); + } + + return Ok(session.Tours[0].Points[0]); + } + } +} diff --git a/Sources/Api/Controllers/Geolocalisations.cs b/Sources/Api/Controllers/Geolocalisations.cs new file mode 100644 index 0000000..21d0b06 --- /dev/null +++ b/Sources/Api/Controllers/Geolocalisations.cs @@ -0,0 +1,32 @@ +using Dto.Factories; +using Interface; +using Microsoft.AspNetCore.Http; +using Microsoft.AspNetCore.Mvc; +using Modele.Classe; +/* +namespace Api.Controllers +{ + [Route("[controller]")] + [ApiController] + public class Geolocalisations : Controller + { + private readonly IApi data; + + public Geolocalisations(IApi manager) + { + this.data = manager; + } + + [HttpGet] + public async Task Get(long IdPoint) + { + Geolocalisation geo = (await data.GetGeolocalisations(IdPoint)); + if (geo == null) + { + return BadRequest(IdPoint); + } + return Ok(geo.ModeleToDTO()); + } + } +} +*/ \ No newline at end of file diff --git a/Sources/Api/Controllers/Image.cs b/Sources/Api/Controllers/Image.cs new file mode 100644 index 0000000..413dfdf --- /dev/null +++ b/Sources/Api/Controllers/Image.cs @@ -0,0 +1,31 @@ +using Dto.Factories; +using Interface; +using Microsoft.AspNetCore.Http; +using Microsoft.AspNetCore.Mvc; +using Modele.Classe; + +namespace Api.Controllers +{ + [Route("[controller]")] + [ApiController] + public class Image : Controller + { + private readonly IApi data; + + public Image(IApi manager) + { + this.data = manager; + } + + [HttpGet] + public async Task Get(int IdPilote) + { + Modele.Classe.Image img = (await data.GetImage(IdPilote)); + if (img == null) + { + return BadRequest(IdPilote); + } + return Ok(img.ModeleToDTO()); + } + } +} diff --git a/Sources/Api/Controllers/Pilotes.cs b/Sources/Api/Controllers/Pilotes.cs new file mode 100644 index 0000000..5c4f210 --- /dev/null +++ b/Sources/Api/Controllers/Pilotes.cs @@ -0,0 +1,78 @@ +using Dto.Classe; +using Dto.Factories; +using Interface; +using Microsoft.AspNetCore.Mvc; +using Modele.Classe; + +namespace Api.Controllers +{ + [ApiController] + [Route("[controller]")] + public class Pilotes : Controller + { + private readonly IApi data; + + public Pilotes(IApi manager) + { + this.data = manager; + } + + + [HttpGet] + public async Task Get(string Email,string password,string? pseudo) + { + Pilote piloteCheck = await data.CheckPilote(Email, password); + if (piloteCheck == null) + { + return BadRequest(); + } + + + if (pseudo == null) + { + return Ok((await data.GetPilotes()).Select(e => e.ModeleToDTO())); + } + else + { + Pilote pilote = await data.GetOnePilote(pseudo); + if (pilote == null) + { + return BadRequest(pseudo); + } + else + { + return Ok(pilote.ModeleToDTO()); + } + } + } + + [HttpPost] + public async Task Post(string Email,string password,PiloteDTO piloteDTO) + { + Pilote piloteCheck = await data.CheckPilote(Email, password); + if (piloteCheck == null) + { + return BadRequest(); + } + + Pilote pilote = await data.AddPilote(piloteDTO.DTOToModele()); + + if (pilote == null) + { + return BadRequest("Le pilote existe déjà !"); + } + return Ok(pilote.ModeleToDTO()); + } + + [HttpGet("check")] + public async Task CheckPilote(string Email,string password) + { + Pilote pilote = await data.CheckPilote(Email, password); + if ( pilote == null) + { + return BadRequest(null); + } + return Ok(pilote); + } + } +} diff --git a/Sources/Api/Controllers/Points.cs b/Sources/Api/Controllers/Points.cs new file mode 100644 index 0000000..f7f2a82 --- /dev/null +++ b/Sources/Api/Controllers/Points.cs @@ -0,0 +1,33 @@ +using Dto.Factories; +using Interface; +using Microsoft.AspNetCore.Http; +using Microsoft.AspNetCore.Mvc; +using Modele.Classe; + +namespace Api.Controllers +{ + [Route("[controller]")] + [ApiController] + public class Points : Controller + { + private readonly IApi data; + + public Points(IApi manager) + { + this.data = manager; + } + + [HttpGet] + public async Task Get(long IdTour) + { + IEnumerable points = (await data.GetPoints(IdTour)); + if (points == null) + { + return BadRequest(); + } + return Ok(points.Select(e => e.ModeleToDTO())); + + } + + } +} diff --git a/Sources/Api/Controllers/Sessions.cs b/Sources/Api/Controllers/Sessions.cs new file mode 100644 index 0000000..ae1fa60 --- /dev/null +++ b/Sources/Api/Controllers/Sessions.cs @@ -0,0 +1,31 @@ +using Dto.Classe; +using Dto.Factories; +using Interface; +using Microsoft.AspNetCore.Mvc; +using Modele.Classe; + +namespace Api.Controllers +{ + [ApiController] + [Route("[controller]")] + public class Sessions : Controller + { + private readonly IApi data; + + public Sessions(IApi manager) + { + this.data = manager; + } + + [HttpGet] + public async Task Get(string pseudo) + { + IEnumerable sessions = (await data.GetSessionsByPilotes(pseudo)); + if (sessions == null) + { + return NotFound(pseudo); + } + return Ok(sessions.Select(e => e.ModeleToDTO())); + } + } +} diff --git a/Sources/Api/Controllers/Tours.cs b/Sources/Api/Controllers/Tours.cs new file mode 100644 index 0000000..732fd03 --- /dev/null +++ b/Sources/Api/Controllers/Tours.cs @@ -0,0 +1,31 @@ +using Dto.Factories; +using Interface; +using Microsoft.AspNetCore.Http; +using Microsoft.AspNetCore.Mvc; +using Modele.Classe; + +namespace Api.Controllers +{ + [ApiController] + [Route("[controller]")] + public class Tours : Controller + { + private readonly IApi data; + + public Tours(IApi manager) + { + this.data = manager; + } + + [HttpGet] + public async Task Get(long IdSession) + { + IEnumerable tours = (await data.GetTours(IdSession)); + if (tours == null) + { + return BadRequest(IdSession); + } + return Ok(tours.Select(e => e.ModeleToDTO())); + } + } +} diff --git a/Sources/Api/Dockerfile b/Sources/Api/Dockerfile new file mode 100644 index 0000000..269b30c --- /dev/null +++ b/Sources/Api/Dockerfile @@ -0,0 +1,30 @@ +#See https://aka.ms/customizecontainer to learn how to customize your debug container and how Visual Studio uses this Dockerfile to build your images for faster debugging. + +#Depending on the operating system of the host machines(s) that will build or run the containers, the image specified in the FROM statement may need to be changed. +#For more information, please see https://aka.ms/containercompat + +FROM mcr.microsoft.com/dotnet/aspnet:6.0 AS base +WORKDIR /app +EXPOSE 80 +EXPOSE 443 + +FROM mcr.microsoft.com/dotnet/sdk:6.0 AS build +WORKDIR /src +COPY ["Api/Api.csproj", "Api/"] +COPY ["Dto/Dto.csproj", "Dto/"] +COPY ["Modele/Modele.csproj", "Modele/"] +COPY ["Entity_Framework/Entity_Framework.csproj", "Entity_Framework/"] +COPY ["Interface/Interface.csproj", "Interface/"] +COPY ["Extraction_Donnees/Extraction_Donnees.csproj", "Extraction_Donnees/"] +RUN dotnet restore "Api/Api.csproj" +COPY . . +WORKDIR "/src/Api" +RUN dotnet build "Api.csproj" -c Release -o /app/build + +FROM build AS publish +RUN dotnet publish "Api.csproj" -c Release -o /app/publish /p:UseAppHost=false + +FROM base AS final +WORKDIR /app +COPY --from=publish /app/publish . +ENTRYPOINT ["dotnet", "Api.dll"] \ No newline at end of file diff --git a/Sources/Api/Program.cs b/Sources/Api/Program.cs new file mode 100644 index 0000000..5173947 --- /dev/null +++ b/Sources/Api/Program.cs @@ -0,0 +1,30 @@ +using Extraction_Donnees.Extraction; +using Interface; + +var builder = WebApplication.CreateBuilder(args); + +// Add services to the container. + +builder.Services.AddControllers(); +// Learn more about configuring Swagger/OpenAPI at https://aka.ms/aspnetcore/swashbuckle +builder.Services.AddEndpointsApiExplorer(); +builder.Services.AddSwaggerGen(); + +builder.Services.AddSingleton(); + +var app = builder.Build(); + +// Configure the HTTP request pipeline. +if (app.Environment.IsDevelopment()) +{ + app.UseSwagger(); + app.UseSwaggerUI(); +} + +app.UseHttpsRedirection(); + +app.UseAuthorization(); + +app.MapControllers(); + +app.Run(); diff --git a/Sources/Api/Properties/launchSettings.json b/Sources/Api/Properties/launchSettings.json new file mode 100644 index 0000000..0f2f6b7 --- /dev/null +++ b/Sources/Api/Properties/launchSettings.json @@ -0,0 +1,38 @@ +{ + "profiles": { + "Api": { + "commandName": "Project", + "launchBrowser": true, + "launchUrl": "swagger", + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + }, + "dotnetRunMessages": true, + "applicationUrl": "https://localhost:7217;http://localhost:5031" + }, + "IIS Express": { + "commandName": "IISExpress", + "launchBrowser": true, + "launchUrl": "swagger", + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + } + }, + "Docker": { + "commandName": "Docker", + "launchBrowser": true, + "launchUrl": "{Scheme}://{ServiceHost}:{ServicePort}/swagger", + "publishAllPorts": true, + "useSSL": true + } + }, + "$schema": "https://json.schemastore.org/launchsettings.json", + "iisSettings": { + "windowsAuthentication": false, + "anonymousAuthentication": true, + "iisExpress": { + "applicationUrl": "http://localhost:56800", + "sslPort": 44325 + } + } +} \ No newline at end of file diff --git a/Sources/Api/appsettings.Development.json b/Sources/Api/appsettings.Development.json new file mode 100644 index 0000000..0c208ae --- /dev/null +++ b/Sources/Api/appsettings.Development.json @@ -0,0 +1,8 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft.AspNetCore": "Warning" + } + } +} diff --git a/Sources/Api/appsettings.json b/Sources/Api/appsettings.json new file mode 100644 index 0000000..10f68b8 --- /dev/null +++ b/Sources/Api/appsettings.json @@ -0,0 +1,9 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft.AspNetCore": "Warning" + } + }, + "AllowedHosts": "*" +} diff --git a/Sources/ApiSolution.sln b/Sources/ApiSolution.sln new file mode 100644 index 0000000..77eef02 --- /dev/null +++ b/Sources/ApiSolution.sln @@ -0,0 +1,67 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 17 +VisualStudioVersion = 17.5.33424.131 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Api", "Api\Api.csproj", "{4448F5FC-CAE2-4756-920F-C63171F8498E}" +EndProject +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ConsoleTest", "ConsoleTest\ConsoleTest.csproj", "{96B34ADC-CEFD-469F-9FB4-24366779B135}" +EndProject +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Dto", "Dto\Dto.csproj", "{85988F81-B575-4B90-A1A7-5255DF9A5F99}" +EndProject +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Entity_Framework", "Entity_Framework\Entity_Framework.csproj", "{F5026481-E8C5-4F10-8F89-80511FBA8874}" +EndProject +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Extraction_Donnees", "Extraction_Donnees\Extraction_Donnees.csproj", "{ECC3B1A4-6C07-43C4-9748-71F0A8CBE4DF}" +EndProject +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Extraction_Excel_Test", "Extraction_Excel_Test\Extraction_Excel_Test.csproj", "{BCD1468F-2313-4B28-9EAE-9E9E5878A6BA}" +EndProject +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Interface", "Interface\Interface.csproj", "{75F1273E-8191-4577-B8F2-A44B00E2E136}" +EndProject +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Modele", "Modele\Modele.csproj", "{BAEC968D-9C1E-4CE2-AB3A-19F0444142F3}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {4448F5FC-CAE2-4756-920F-C63171F8498E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {4448F5FC-CAE2-4756-920F-C63171F8498E}.Debug|Any CPU.Build.0 = Debug|Any CPU + {4448F5FC-CAE2-4756-920F-C63171F8498E}.Release|Any CPU.ActiveCfg = Release|Any CPU + {4448F5FC-CAE2-4756-920F-C63171F8498E}.Release|Any CPU.Build.0 = Release|Any CPU + {96B34ADC-CEFD-469F-9FB4-24366779B135}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {96B34ADC-CEFD-469F-9FB4-24366779B135}.Debug|Any CPU.Build.0 = Debug|Any CPU + {96B34ADC-CEFD-469F-9FB4-24366779B135}.Release|Any CPU.ActiveCfg = Release|Any CPU + {96B34ADC-CEFD-469F-9FB4-24366779B135}.Release|Any CPU.Build.0 = Release|Any CPU + {85988F81-B575-4B90-A1A7-5255DF9A5F99}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {85988F81-B575-4B90-A1A7-5255DF9A5F99}.Debug|Any CPU.Build.0 = Debug|Any CPU + {85988F81-B575-4B90-A1A7-5255DF9A5F99}.Release|Any CPU.ActiveCfg = Release|Any CPU + {85988F81-B575-4B90-A1A7-5255DF9A5F99}.Release|Any CPU.Build.0 = Release|Any CPU + {F5026481-E8C5-4F10-8F89-80511FBA8874}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {F5026481-E8C5-4F10-8F89-80511FBA8874}.Debug|Any CPU.Build.0 = Debug|Any CPU + {F5026481-E8C5-4F10-8F89-80511FBA8874}.Release|Any CPU.ActiveCfg = Release|Any CPU + {F5026481-E8C5-4F10-8F89-80511FBA8874}.Release|Any CPU.Build.0 = Release|Any CPU + {ECC3B1A4-6C07-43C4-9748-71F0A8CBE4DF}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {ECC3B1A4-6C07-43C4-9748-71F0A8CBE4DF}.Debug|Any CPU.Build.0 = Debug|Any CPU + {ECC3B1A4-6C07-43C4-9748-71F0A8CBE4DF}.Release|Any CPU.ActiveCfg = Release|Any CPU + {ECC3B1A4-6C07-43C4-9748-71F0A8CBE4DF}.Release|Any CPU.Build.0 = Release|Any CPU + {BCD1468F-2313-4B28-9EAE-9E9E5878A6BA}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {BCD1468F-2313-4B28-9EAE-9E9E5878A6BA}.Debug|Any CPU.Build.0 = Debug|Any CPU + {BCD1468F-2313-4B28-9EAE-9E9E5878A6BA}.Release|Any CPU.ActiveCfg = Release|Any CPU + {BCD1468F-2313-4B28-9EAE-9E9E5878A6BA}.Release|Any CPU.Build.0 = Release|Any CPU + {75F1273E-8191-4577-B8F2-A44B00E2E136}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {75F1273E-8191-4577-B8F2-A44B00E2E136}.Debug|Any CPU.Build.0 = Debug|Any CPU + {75F1273E-8191-4577-B8F2-A44B00E2E136}.Release|Any CPU.ActiveCfg = Release|Any CPU + {75F1273E-8191-4577-B8F2-A44B00E2E136}.Release|Any CPU.Build.0 = Release|Any CPU + {BAEC968D-9C1E-4CE2-AB3A-19F0444142F3}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {BAEC968D-9C1E-4CE2-AB3A-19F0444142F3}.Debug|Any CPU.Build.0 = Debug|Any CPU + {BAEC968D-9C1E-4CE2-AB3A-19F0444142F3}.Release|Any CPU.ActiveCfg = Release|Any CPU + {BAEC968D-9C1E-4CE2-AB3A-19F0444142F3}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {5E1A4343-995A-4650-83DF-0F54E91608E0} + EndGlobalSection +EndGlobal diff --git a/Sources/ConsoleTest/ConsoleTest.csproj b/Sources/ConsoleTest/ConsoleTest.csproj new file mode 100644 index 0000000..f87aacb --- /dev/null +++ b/Sources/ConsoleTest/ConsoleTest.csproj @@ -0,0 +1,17 @@ + + + + Exe + net6.0 + enable + enable + + + + + + + + + + diff --git a/Sources/ConsoleTest/Program.cs b/Sources/ConsoleTest/Program.cs new file mode 100644 index 0000000..f1ed5d6 --- /dev/null +++ b/Sources/ConsoleTest/Program.cs @@ -0,0 +1,19 @@ +// See https://aka.ms/new-console-template for more information +using Dto.Classe; +using Entity_Framework; +using Entity_Framework.Entity; +using Extraction_Donnees.Extraction; +using Microsoft.AspNetCore.Mvc; + +Console.WriteLine("Hello, World!"); + +Extraction tmp2 = new Extraction(); +Api.Controllers.Pilotes tmp = new Api.Controllers.Pilotes(tmp2); + + + +var result = await tmp.Get("All"); + +Console.WriteLine(result); + +Console.WriteLine("End !"); \ No newline at end of file diff --git a/Sources/Dto/Classe/CircuitDTO.cs b/Sources/Dto/Classe/CircuitDTO.cs new file mode 100644 index 0000000..9b094e2 --- /dev/null +++ b/Sources/Dto/Classe/CircuitDTO.cs @@ -0,0 +1,13 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Dto.Classe +{ + public class CircuitDTO + { + public string Name { get; set; } + } +} diff --git a/Sources/Dto/Classe/EcurieDTO.cs b/Sources/Dto/Classe/EcurieDTO.cs new file mode 100644 index 0000000..c9b2f37 --- /dev/null +++ b/Sources/Dto/Classe/EcurieDTO.cs @@ -0,0 +1,13 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Dto.Classe +{ + public class EcurieDTO + { + public string Name { get; set; } + } +} diff --git a/Sources/Dto/Classe/GeolocalisationDTO.cs b/Sources/Dto/Classe/GeolocalisationDTO.cs new file mode 100644 index 0000000..8b3ae0d --- /dev/null +++ b/Sources/Dto/Classe/GeolocalisationDTO.cs @@ -0,0 +1,14 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Dto.Classe +{ + public class GeolocalisationDTO + { + public double Latitude { get; set; } + public double Longitude { get; set; } + } +} diff --git a/Sources/Dto/Classe/ImageDTO.cs b/Sources/Dto/Classe/ImageDTO.cs new file mode 100644 index 0000000..7342af4 --- /dev/null +++ b/Sources/Dto/Classe/ImageDTO.cs @@ -0,0 +1,13 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Dto.Classe +{ + public class ImageDTO + { + public string Base64 { get; set; } + } +} diff --git a/Sources/Dto/Classe/PiloteDTO.cs b/Sources/Dto/Classe/PiloteDTO.cs new file mode 100644 index 0000000..cf55873 --- /dev/null +++ b/Sources/Dto/Classe/PiloteDTO.cs @@ -0,0 +1,14 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Dto.Classe +{ + public class PiloteDTO + { + public string Pseudo { get; set; } + public string Email { get; set; } + } +} diff --git a/Sources/Dto/Classe/PointDTO.cs b/Sources/Dto/Classe/PointDTO.cs new file mode 100644 index 0000000..b7afb51 --- /dev/null +++ b/Sources/Dto/Classe/PointDTO.cs @@ -0,0 +1,14 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Dto.Classe +{ + public class PointDTO + { + public float Distance { get; set; } + public long IdGeolocalisation { get; set; } + } +} diff --git a/Sources/Dto/Classe/SessionDTO.cs b/Sources/Dto/Classe/SessionDTO.cs new file mode 100644 index 0000000..a2e5272 --- /dev/null +++ b/Sources/Dto/Classe/SessionDTO.cs @@ -0,0 +1,20 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Dto.Classe +{ + public class SessionDTO + { + public long Id { get; set; } + public string Name { get; set; } + public string Type { get; set; } + public DateTime Date { get; set; } + + public string NameCircuit { get; set; } + + public string NamePilote { set; get; } + } +} diff --git a/Sources/Dto/Classe/TourDTO.cs b/Sources/Dto/Classe/TourDTO.cs new file mode 100644 index 0000000..0f4f61c --- /dev/null +++ b/Sources/Dto/Classe/TourDTO.cs @@ -0,0 +1,14 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Dto.Classe +{ + public class TourDTO + { + public float Temps { get; set; } + public long IdSession { get; set; } + } +} diff --git a/Sources/Dto/Dto.csproj b/Sources/Dto/Dto.csproj new file mode 100644 index 0000000..601e9e8 --- /dev/null +++ b/Sources/Dto/Dto.csproj @@ -0,0 +1,13 @@ + + + + net6.0 + enable + enable + + + + + + + diff --git a/Sources/Dto/Factories/CircuitFactorie.cs b/Sources/Dto/Factories/CircuitFactorie.cs new file mode 100644 index 0000000..d8ebce4 --- /dev/null +++ b/Sources/Dto/Factories/CircuitFactorie.cs @@ -0,0 +1,27 @@ +using Dto.Classe; +using Modele.Classe; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Dto.Factories +{ + public static class CircuitFactorie + { + public static CircuitDTO ModeleToDTO(this Circuit circuit) + { + CircuitDTO circuitDTO = new CircuitDTO(); + + circuitDTO.Name = circuit.name; + + return circuitDTO; + } + + public static Circuit DTOToModele(this CircuitDTO dto) + { + return new Circuit(nameArg:dto.Name); + } + } +} diff --git a/Sources/Dto/Factories/EcurieFactorie.cs b/Sources/Dto/Factories/EcurieFactorie.cs new file mode 100644 index 0000000..4505841 --- /dev/null +++ b/Sources/Dto/Factories/EcurieFactorie.cs @@ -0,0 +1,27 @@ +using Dto.Classe; +using Modele.Classe; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Dto.Factories +{ + public static class EcurieFactorie + { + public static EcurieDTO ModeleToDTO(this Ecurie ecurie) + { + EcurieDTO ecurieDTO = new EcurieDTO(); + + ecurieDTO.Name = ecurie.name; + + return ecurieDTO; + } + + public static Ecurie DTOToModele(this EcurieDTO dto) + { + return new Ecurie(nameArg: dto.Name); + } + } +} diff --git a/Sources/Dto/Factories/GeolocalisationFactorie.cs b/Sources/Dto/Factories/GeolocalisationFactorie.cs new file mode 100644 index 0000000..6bc038a --- /dev/null +++ b/Sources/Dto/Factories/GeolocalisationFactorie.cs @@ -0,0 +1,21 @@ +using Dto.Classe; +using Modele.Classe; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Dto.Factories +{ + public static class GeolocalisationFactorie + { + public static GeolocalisationDTO ModeleToDTO(this Geolocalisation modele) + { + GeolocalisationDTO dto = new GeolocalisationDTO(); + dto.Longitude = modele.Longitude; + dto.Latitude = modele.Latitude; + return dto; + } + } +} diff --git a/Sources/Dto/Factories/ImageFactorie.cs b/Sources/Dto/Factories/ImageFactorie.cs new file mode 100644 index 0000000..c64585a --- /dev/null +++ b/Sources/Dto/Factories/ImageFactorie.cs @@ -0,0 +1,20 @@ +using Dto.Classe; +using Modele.Classe; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Dto.Factories +{ + public static class ImageFactorie + { + public static ImageDTO ModeleToDTO(this Image modele) + { + ImageDTO dto = new ImageDTO(); + dto.Base64 = modele.Base64; + return dto; + } + } +} diff --git a/Sources/Dto/Factories/PiloteFactorie.cs b/Sources/Dto/Factories/PiloteFactorie.cs new file mode 100644 index 0000000..5f6c43f --- /dev/null +++ b/Sources/Dto/Factories/PiloteFactorie.cs @@ -0,0 +1,29 @@ +using Dto.Classe; +using Modele.Classe; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Dto.Factories +{ + public static class PiloteFactorie + { + + public static PiloteDTO ModeleToDTO(this Pilote pilote) + { + PiloteDTO piloteDTO = new PiloteDTO(); + + piloteDTO.Pseudo = pilote.Pseudo; + piloteDTO.Email = pilote.Email; + + return piloteDTO; + } + + public static Pilote DTOToModele(this PiloteDTO piloteDto) + { + return new Pilote(_Pseudo:piloteDto.Pseudo,_Email:piloteDto.Email,_Password:"Inconnu !"); + } + } +} diff --git a/Sources/Dto/Factories/PointFactorie.cs b/Sources/Dto/Factories/PointFactorie.cs new file mode 100644 index 0000000..0faffda --- /dev/null +++ b/Sources/Dto/Factories/PointFactorie.cs @@ -0,0 +1,21 @@ +using Dto.Classe; +using Modele.Classe; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Dto.Factories +{ + public static class PointFactorie + { + public static PointDTO ModeleToDTO(this Point modele) + { + PointDTO dto = new PointDTO(); + dto.Distance = modele.Distance; + //dto.IdGeolocalisation = modele.IdGeolocalisation; + return dto; + } + } +} diff --git a/Sources/Dto/Factories/SessionFactorie.cs b/Sources/Dto/Factories/SessionFactorie.cs new file mode 100644 index 0000000..5d7b332 --- /dev/null +++ b/Sources/Dto/Factories/SessionFactorie.cs @@ -0,0 +1,27 @@ +using Dto.Classe; +using Modele.Classe; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Dto.Factories +{ + public static class SessionFactorie + { + public static SessionDTO ModeleToDTO(this Session session) + { + SessionDTO sessionDTO = new SessionDTO(); + + sessionDTO.Name = session.name; + sessionDTO.Type = session.type; + sessionDTO.NamePilote = session.namePilote; + sessionDTO.NameCircuit = session.nameCircuit; + sessionDTO.Date = session.date; + sessionDTO.Id = session.Id; + + return sessionDTO; + } + } +} diff --git a/Sources/Dto/Factories/TourFactorie.cs b/Sources/Dto/Factories/TourFactorie.cs new file mode 100644 index 0000000..d95db5e --- /dev/null +++ b/Sources/Dto/Factories/TourFactorie.cs @@ -0,0 +1,23 @@ +using Dto.Classe; +using Modele.Classe; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Dto.Factories +{ + public static class TourFactorie + { + public static TourDTO ModeleToDTO(this Tour modele) + { + TourDTO tourDTO = new TourDTO(); + + tourDTO.IdSession = modele.IdSession; + //tourDTO.Temps = modele.Temps; + + return tourDTO; + } + } +} diff --git a/Sources/Entity_Framework/BDD.db b/Sources/Entity_Framework/BDD.db new file mode 100644 index 0000000..71f6296 Binary files /dev/null and b/Sources/Entity_Framework/BDD.db differ diff --git a/Sources/Entity_Framework/BDD.db-shm b/Sources/Entity_Framework/BDD.db-shm new file mode 100644 index 0000000..fe9ac28 Binary files /dev/null and b/Sources/Entity_Framework/BDD.db-shm differ diff --git a/Sources/Entity_Framework/BDD.db-wal b/Sources/Entity_Framework/BDD.db-wal new file mode 100644 index 0000000..e69de29 diff --git a/Sources/Entity_Framework/BDDContext.cs b/Sources/Entity_Framework/BDDContext.cs new file mode 100644 index 0000000..d8d593c --- /dev/null +++ b/Sources/Entity_Framework/BDDContext.cs @@ -0,0 +1,156 @@ +using Entity_Framework.Entity; +using Microsoft.EntityFrameworkCore; +using System.Collections.Generic; +using System.Reflection.Emit; +using System.Security.Cryptography; +using System.Text; + +namespace Entity_Framework +{ + public class BDDContext : DbContext + { + // Constructeur + public BDDContext() { } + public BDDContext(DbContextOptions option) : base(option) { } + + + // Fluent Api + protected override void OnModelCreating(ModelBuilder modelBuilder) + { + base.OnModelCreating(modelBuilder); + + // -------------------------------------------------------------------// + // Tables Pilotes + modelBuilder.Entity().HasKey(e => e.Id); + modelBuilder.Entity().Property(e => e.Id) + .ValueGeneratedOnAdd(); + modelBuilder.Entity().Property(e => e.Pseudo).IsRequired(); + modelBuilder.Entity().HasIndex(e => e.Pseudo).IsUnique(); + modelBuilder.Entity().Property(e => e.Email).IsRequired(); + modelBuilder.Entity().HasIndex(e => e.Email).IsUnique(); + modelBuilder.Entity().Property(e => e.Password).IsRequired(); + + //Relation avec écurie pour le propriétaire + modelBuilder.Entity().HasOne(e => e.EcuriePropriétaire) + .WithOne(e => e.PiloteProprietaire) + .HasForeignKey(e => e.IdPiloteProprietaire); + + // Relation avec Session + modelBuilder.Entity().HasMany(e => e.Sessions) + .WithOne(e => e.Pilote) + .HasForeignKey(e => e.IdPilote); + + + // -------------------------------------------------------------------// + // Tables Ecuries + modelBuilder.Entity().HasKey(e => e.Id); + modelBuilder.Entity().Property(e => e.Id) + .ValueGeneratedOnAdd(); + modelBuilder.Entity().Property(e => e.Name).IsRequired(); + modelBuilder.Entity().HasIndex(e => e.Name).IsUnique(); + + + // Relation avec pilotes + modelBuilder.Entity().HasMany(e => e.Pilotes) + .WithOne(e => e.Ecurie) + .HasForeignKey(e => e.IdEcurie) + .IsRequired(false); + // -------------------------------------------------------------------// + // Tables Circuits + + modelBuilder.Entity().HasKey(e => e.Id); + modelBuilder.Entity().Property(e => e.Id) + .ValueGeneratedOnAdd(); + modelBuilder.Entity().Property(e => e.Name).IsRequired(); + modelBuilder.Entity().HasIndex(e => e.Name).IsUnique(); + + modelBuilder.Entity().HasMany(e => e.Course) + .WithOne(e => e.Circuit) + .HasForeignKey(e => e.IdCircuit); + + // -------------------------------------------------------------------// + // Tables Session + modelBuilder.Entity().HasKey(e => e.Id); + modelBuilder.Entity().Property(e => e.Id) + .ValueGeneratedOnAdd(); + modelBuilder.Entity().Property(e => e.Name).IsRequired(); + + + modelBuilder.Entity().HasMany(e => e.Tours) + .WithOne(e => e.Session) + .HasForeignKey(e => e.IdSession); + + // -------------------------------------------------------------------// + // Tables Geolocalisations + /* + modelBuilder.Entity().HasKey(e => e.Id); + modelBuilder.Entity().Property(e => e.Id) + .ValueGeneratedOnAdd(); + modelBuilder.Entity().Property(e => e.Latitude).IsRequired(); + modelBuilder.Entity().Property(e => e.Longitude).IsRequired(); + + // Relation avec Points + modelBuilder.Entity().HasOne(e => e.Point) + .WithOne(z => z.Geolocalisation) + .HasForeignKey(x => x.IdGeolocalisation); + */ + // -------------------------------------------------------------------// + // Tables Points + modelBuilder.Entity().HasKey(e => e.Id); + modelBuilder.Entity().Property(e => e.Id) + .ValueGeneratedOnAdd(); + + // -------------------------------------------------------------------// + // Tables Tours + + modelBuilder.Entity().HasKey(e => e.Id); + modelBuilder.Entity().Property(e => e.Id) + .ValueGeneratedOnAdd(); + + modelBuilder.Entity().HasMany(e => e.Points) + .WithOne(e => e.Tours) + .HasForeignKey(x => x.IdTours); + + // -------------------------------------------------------------------// + // Tables Images + modelBuilder.Entity().HasKey(e => e.Id); + modelBuilder.Entity().Property(e => e.Id) + .ValueGeneratedOnAdd(); + + + + // ------------------------ STUB ------------------------------------ // + + //stub data + byte[] passwordByte = Encoding.UTF8.GetBytes("test123"); + SHA256 sha256 = SHA256.Create(); + byte[] hashedByte = sha256.ComputeHash(passwordByte); + string hashedPassword = Convert.ToBase64String(hashedByte); + + + var pilote = new Pilotes { Id = 1, Pseudo = "test_PILOTE", Email = "test@gmail.com", Password = hashedPassword }; + modelBuilder.Entity().HasData(pilote); + modelBuilder.Entity().HasData(new Circuits { Id = 1, Name = "test_CIRCUIT" }); + } + + // DbSet + public DbSet Pilotes { get; set; } + public DbSet Circuits { get; set; } + public DbSet Sessions { get; set; } + public DbSet Ecuries { get; set; } + //public DbSet Geolocalisations { get; set; } + public DbSet Points { get; set; } + public DbSet Tours { get; set; } + public DbSet Images { get; set; } + + // BDD + protected override void OnConfiguring(DbContextOptionsBuilder optionsBuilder) + { + if (!optionsBuilder.IsConfigured) + { + //optionsBuilder.UseSqlite($"Data Source=..\\Entity_Framework\\BDD.db"); + optionsBuilder.UseSqlite($"Data Source=C:\\Users\\Jolys Enzo\\home\\BUT\\Projet\\Sae4.01\\Projet\\R-Dash_APP\\Entity_Framework\\BDD.db"); + } + } + } +} \ No newline at end of file diff --git a/Sources/Entity_Framework/Entity/Circuits.cs b/Sources/Entity_Framework/Entity/Circuits.cs new file mode 100644 index 0000000..07b008c --- /dev/null +++ b/Sources/Entity_Framework/Entity/Circuits.cs @@ -0,0 +1,19 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Entity_Framework.Entity +{ + public class Circuits + { + public int Id { get; set; } + public string Name { get; set; } + + // -------------------- Relation -------------------- // + //Courses + public List Course { get; set; } + + } +} diff --git a/Sources/Entity_Framework/Entity/Ecuries.cs b/Sources/Entity_Framework/Entity/Ecuries.cs new file mode 100644 index 0000000..4a555e9 --- /dev/null +++ b/Sources/Entity_Framework/Entity/Ecuries.cs @@ -0,0 +1,24 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Entity_Framework.Entity +{ + public class Ecuries + { + public int Id { get; set; } + + public string Name { get; set; } + + // -------------------- Relation -------------------- // + + //Pilotes + public List Pilotes { get; set; } + + // Pilote propriétaire + public int IdPiloteProprietaire { get; set; } + public Pilotes PiloteProprietaire { get; set; } + } +} diff --git a/Sources/Entity_Framework/Entity/Geolocalisations.cs b/Sources/Entity_Framework/Entity/Geolocalisations.cs new file mode 100644 index 0000000..57ea75c --- /dev/null +++ b/Sources/Entity_Framework/Entity/Geolocalisations.cs @@ -0,0 +1,21 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Entity_Framework.Entity +{ + // Attribut à redefinir + + public class Geolocalisations + { + public long Id { get; set; } + public double Latitude { get; set; } + public double Longitude { get; set; } + + // -------------------- Relation -------------------- // + // Points + //public Points Point { get; set; } + } +} diff --git a/Sources/Entity_Framework/Entity/Images.cs b/Sources/Entity_Framework/Entity/Images.cs new file mode 100644 index 0000000..aa4d3ca --- /dev/null +++ b/Sources/Entity_Framework/Entity/Images.cs @@ -0,0 +1,22 @@ +using System; +using System.Collections.Generic; +using System.ComponentModel.DataAnnotations; +using System.ComponentModel.DataAnnotations.Schema; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Entity_Framework.Entity +{ + public class Images + { + public int Id { get; set; } + public string Base64 { get; set; } + + // ----- Relation ------ // + [Required] + public int IdPilote { get; set; } + [ForeignKey(nameof(IdPilote))] + public Pilotes Pilote { get; set; } + } +} diff --git a/Sources/Entity_Framework/Entity/Pilotes.cs b/Sources/Entity_Framework/Entity/Pilotes.cs new file mode 100644 index 0000000..0b4392c --- /dev/null +++ b/Sources/Entity_Framework/Entity/Pilotes.cs @@ -0,0 +1,44 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Entity_Framework.Entity +{ + public class Pilotes + { + public int Id { get; set; } + + public string Pseudo { get; set; } + + public string Email { get; set; } + + public string Password { get; set; } + /*{ get + { + return Password; + } + set + { + Password = BCrypt.Net.BCrypt.HashPassword(value); + } + }*/ + + // -------------------- Relation -------------------- // + + // Ecurie liste + public int? IdEcurie { get; set; } + public Ecuries Ecurie { get; set; } + + //Ecurie propriétaire + public Ecuries EcuriePropriétaire { get; set; } + + // Courses + public List Sessions { get; set; } + + //Images + public Images Image { get; set; } + + } +} diff --git a/Sources/Entity_Framework/Entity/Points.cs b/Sources/Entity_Framework/Entity/Points.cs new file mode 100644 index 0000000..b928413 --- /dev/null +++ b/Sources/Entity_Framework/Entity/Points.cs @@ -0,0 +1,34 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Entity_Framework.Entity +{ + // Attributs à redefinir + public class Points + { + public long Id { get; set; } + public float Timer { get; set; } + public double Latitude { get; set; } + public double Longitude { get; set; } + public float Distance { get; set; } + public float P_BreakF { get; set; } + public float NGearASCII { get; set; } + public float A_Steer { get; set;} + public float R_Pedal { get; set;} + public float G_Lon { get; set; } + public float G_Lat { get; set; } + public float V_Car { get; set;} + + // -------------------- Relation -------------------- // + // Geolocalisation + //public long IdGeolocalisation { get; set;} + //public Geolocalisations Geolocalisation { get; set;} + + // Tours + public long IdTours { get; set;} + public Tours Tours { get; set;} + } +} diff --git a/Sources/Entity_Framework/Entity/Relations/Relation_Pilote_Ecurie.cs b/Sources/Entity_Framework/Entity/Relations/Relation_Pilote_Ecurie.cs new file mode 100644 index 0000000..dc4a661 --- /dev/null +++ b/Sources/Entity_Framework/Entity/Relations/Relation_Pilote_Ecurie.cs @@ -0,0 +1,16 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Entity_Framework.Entity.Relations +{ + public class Relation_Pilote_Ecurie + { + public int IdPilote { get; set; } + public int IdEcurie { get; set; } + + + } +} diff --git a/Sources/Entity_Framework/Entity/Sessions.cs b/Sources/Entity_Framework/Entity/Sessions.cs new file mode 100644 index 0000000..6158f8d --- /dev/null +++ b/Sources/Entity_Framework/Entity/Sessions.cs @@ -0,0 +1,28 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Entity_Framework.Entity +{ + public class Sessions + { + public long Id { get; set; } + public string Name { get; set; } + public string Type { get; set; } + public DateTime Date { get; set; } + + // -------------------- Relation -------------------- // + //Circuit + public int IdCircuit { get; set; } + public Circuits Circuit { get; set; } + + // Pilotes + public int IdPilote { get; set; } + public Pilotes Pilote { get; set; } + + //Tours + public List Tours { get; set; } + } +} diff --git a/Sources/Entity_Framework/Entity/Tours.cs b/Sources/Entity_Framework/Entity/Tours.cs new file mode 100644 index 0000000..a490ee3 --- /dev/null +++ b/Sources/Entity_Framework/Entity/Tours.cs @@ -0,0 +1,26 @@ +using Microsoft.EntityFrameworkCore; +using System; +using System.Collections.Generic; +using System.ComponentModel.DataAnnotations; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Entity_Framework.Entity +{ + public class Tours + { + public long Id { get; set; } + public string Temps { get; set; } + public int Numero { get; set; } + + // -------------------- Relation -------------------- // + // Points + public List Points { get; set; } + + // Courses + public long IdSession { get; set; } + public Sessions Session { get; set; } + + } +} diff --git a/Sources/Entity_Framework/Entity_Framework.csproj b/Sources/Entity_Framework/Entity_Framework.csproj new file mode 100644 index 0000000..8623c75 --- /dev/null +++ b/Sources/Entity_Framework/Entity_Framework.csproj @@ -0,0 +1,25 @@ + + + + net6.0 + enable + enable + $(MSBuildProjectDirectory) + + + + + + + + all + runtime; build; native; contentfiles; analyzers; buildtransitive + + + + + + + + + diff --git a/Sources/Entity_Framework/Factories/CircuitFactorie.cs b/Sources/Entity_Framework/Factories/CircuitFactorie.cs new file mode 100644 index 0000000..d511e30 --- /dev/null +++ b/Sources/Entity_Framework/Factories/CircuitFactorie.cs @@ -0,0 +1,25 @@ +using Entity_Framework.Entity; +using Modele.Classe; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Entity_Framework.Factories +{ + public static class CircuitFactorie + { + public static Circuit EntityToModele(this Circuits entity) + { + return new Circuit(nameArg:entity.Name); + } + + public static Circuits ModeleToEntity(this Circuit modele) + { + Circuits circuit = new Circuits(); + circuit.Name = modele.name; + return circuit; + } + } +} diff --git a/Sources/Entity_Framework/Factories/EcurieFactorie.cs b/Sources/Entity_Framework/Factories/EcurieFactorie.cs new file mode 100644 index 0000000..c71a045 --- /dev/null +++ b/Sources/Entity_Framework/Factories/EcurieFactorie.cs @@ -0,0 +1,27 @@ +using Dto.Classe; +using Entity_Framework.Entity; +using Modele.Classe; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Entity_Framework.Factories +{ + public static class EcurieFactorie + { + + public static Ecurie EntityToModele(this Ecuries dto) + { + return new Ecurie(nameArg:dto.Name); + } + + public static Ecuries ModeleToEntity(this Ecurie ecurie) + { + Ecuries entity = new Ecuries(); + entity.Name = ecurie.name; + return entity; + } + } +} diff --git a/Sources/Entity_Framework/Factories/GeolocalisationFactorie.cs b/Sources/Entity_Framework/Factories/GeolocalisationFactorie.cs new file mode 100644 index 0000000..9d8aee8 --- /dev/null +++ b/Sources/Entity_Framework/Factories/GeolocalisationFactorie.cs @@ -0,0 +1,19 @@ +using Entity_Framework.Entity; +using Modele.Classe; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Entity_Framework.Factories +{ + public static class GeolocalisationFactorie + { + public static Geolocalisation EntityToModele(this Geolocalisations entity) + { + //return new Geolocalisation(LatitudeArg:entity.Latitude,LongitudeArg:entity.Longitude); + return null; + } + } +} diff --git a/Sources/Entity_Framework/Factories/ImageFactorie.cs b/Sources/Entity_Framework/Factories/ImageFactorie.cs new file mode 100644 index 0000000..1cea499 --- /dev/null +++ b/Sources/Entity_Framework/Factories/ImageFactorie.cs @@ -0,0 +1,18 @@ +using Entity_Framework.Entity; +using Modele.Classe; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Entity_Framework.Factories +{ + public static class ImageFactorie + { + public static Image EntityToModele(this Images entity) + { + return new Image(base64:entity.Base64); + } + } +} diff --git a/Sources/Entity_Framework/Factories/PiloteFactories.cs b/Sources/Entity_Framework/Factories/PiloteFactories.cs new file mode 100644 index 0000000..898f625 --- /dev/null +++ b/Sources/Entity_Framework/Factories/PiloteFactories.cs @@ -0,0 +1,30 @@ +using Entity_Framework.Entity; +using Modele.Classe; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Entity_Framework.Factories +{ + public static class PiloteFactories + { + + public static Pilotes ModeleToEntity(this Pilote piloteModele) + { + Pilotes pilote = new Pilotes(); + + pilote.Pseudo = piloteModele.Pseudo; + pilote.Email = piloteModele.Email; + pilote.Password = piloteModele.Password; + + return pilote; + } + + public static Pilote EntityToModele(this Pilotes piloteEntity) + { + return new Pilote(_Pseudo:piloteEntity.Pseudo,_Email:piloteEntity.Email,_Password:piloteEntity.Password); + } + } +} diff --git a/Sources/Entity_Framework/Factories/PointFactorie.cs b/Sources/Entity_Framework/Factories/PointFactorie.cs new file mode 100644 index 0000000..65ef4f4 --- /dev/null +++ b/Sources/Entity_Framework/Factories/PointFactorie.cs @@ -0,0 +1,37 @@ +using Entity_Framework.Entity; +using Modele.Classe; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Entity_Framework.Factories +{ + public static class PointFactorie + { + public static Point EntityToModele(this Points entity) + { + return new Point(entity.Longitude,entity.Latitude,entity.Timer,entity.Distance,entity.NGearASCII,entity.P_BreakF,entity.A_Steer,entity.R_Pedal,entity.G_Lon,entity.G_Lat,entity.V_Car); + } + + + public static Points ModeleToEntity(this Point modele) + { + return new Points + { + Longitude = modele.Longitude, + Latitude = modele.Latitude, + Timer = modele.Timer, + Distance = modele.Distance, + NGearASCII = modele.NGear, + P_BreakF = modele.PBrakeF, + A_Steer = modele.ASteer, + R_Pedal = modele.RPedal, + G_Lon = modele.GLong, + G_Lat = modele.GLat, + }; + + } + } +} diff --git a/Sources/Entity_Framework/Factories/SessionFactorie.cs b/Sources/Entity_Framework/Factories/SessionFactorie.cs new file mode 100644 index 0000000..56f046f --- /dev/null +++ b/Sources/Entity_Framework/Factories/SessionFactorie.cs @@ -0,0 +1,29 @@ +using Entity_Framework.Entity; +using Modele.Classe; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Entity_Framework.Factories +{ + public static class SessionFactorie + { + public static Session EntityToModele(this Sessions entity) + { + return new Session(IdArg:entity.Id,dateArg:entity.Date,nameArg: entity.Name, typeArg: entity.Type, nameCircuitArg: entity.Circuit.Name, namePiloteArg: entity.Pilote.Pseudo); + } + + public static Sessions ModeleToEntity(this Session modele) + { + Sessions entity = new Sessions(); + + entity.Name = modele.name; + entity.Type = modele.type; + entity.Date = modele.date; + + return entity; + } + } +} diff --git a/Sources/Entity_Framework/Factories/TourFactorie.cs b/Sources/Entity_Framework/Factories/TourFactorie.cs new file mode 100644 index 0000000..0b8be89 --- /dev/null +++ b/Sources/Entity_Framework/Factories/TourFactorie.cs @@ -0,0 +1,28 @@ +using Entity_Framework.Entity; +using Modele.Classe; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Entity_Framework.Factories +{ + public static class TourFactorie + { + public static Tour EntityToModele(this Tours entity) + { + return new Tour(TempsArg:entity.Temps,IdSessionArg:entity.IdSession); + } + + public static Tours ModeleToEntity(this Tour modele) + { + Tours tours = new Tours(); + + tours.Temps = modele.Temps; + tours.Numero = modele.Numero; + return tours; + + } + } +} diff --git a/Sources/Entity_Framework/Migrations/20230317102828_test.Designer.cs b/Sources/Entity_Framework/Migrations/20230317102828_test.Designer.cs new file mode 100644 index 0000000..aeb7329 --- /dev/null +++ b/Sources/Entity_Framework/Migrations/20230317102828_test.Designer.cs @@ -0,0 +1,345 @@ +// +using System; +using Entity_Framework; +using Microsoft.EntityFrameworkCore; +using Microsoft.EntityFrameworkCore.Infrastructure; +using Microsoft.EntityFrameworkCore.Migrations; +using Microsoft.EntityFrameworkCore.Storage.ValueConversion; + +#nullable disable + +namespace Entity_Framework.Migrations +{ + [DbContext(typeof(BDDContext))] + [Migration("20230317102828_test")] + partial class test + { + /// + protected override void BuildTargetModel(ModelBuilder modelBuilder) + { +#pragma warning disable 612, 618 + modelBuilder.HasAnnotation("ProductVersion", "7.0.3"); + + modelBuilder.Entity("Entity_Framework.Entity.Circuits", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER"); + + b.Property("Name") + .IsRequired() + .HasColumnType("TEXT"); + + b.HasKey("Id"); + + b.HasIndex("Name") + .IsUnique(); + + b.ToTable("Circuits"); + + b.HasData( + new + { + Id = 1, + Name = "test_CIRCUIT" + }); + }); + + modelBuilder.Entity("Entity_Framework.Entity.Ecuries", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER"); + + b.Property("IdPiloteProprietaire") + .HasColumnType("INTEGER"); + + b.Property("Name") + .IsRequired() + .HasColumnType("TEXT"); + + b.HasKey("Id"); + + b.HasIndex("IdPiloteProprietaire") + .IsUnique(); + + b.HasIndex("Name") + .IsUnique(); + + b.ToTable("Ecuries"); + }); + + modelBuilder.Entity("Entity_Framework.Entity.Images", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER"); + + b.Property("Base64") + .IsRequired() + .HasColumnType("TEXT"); + + b.Property("IdPilote") + .HasColumnType("INTEGER"); + + b.HasKey("Id"); + + b.HasIndex("IdPilote") + .IsUnique(); + + b.ToTable("Images"); + }); + + modelBuilder.Entity("Entity_Framework.Entity.Pilotes", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER"); + + b.Property("Email") + .IsRequired() + .HasColumnType("TEXT"); + + b.Property("IdEcurie") + .HasColumnType("INTEGER"); + + b.Property("Password") + .IsRequired() + .HasColumnType("TEXT"); + + b.Property("Pseudo") + .IsRequired() + .HasColumnType("TEXT"); + + b.HasKey("Id"); + + b.HasIndex("Email") + .IsUnique(); + + b.HasIndex("IdEcurie"); + + b.HasIndex("Pseudo") + .IsUnique(); + + b.ToTable("Pilotes"); + + b.HasData( + new + { + Id = 1, + Email = "test@gmail.com", + Password = "7NcYcNGWMxapfjrDQIyYNa2M8PPBvHA1J8MCZVNPda4=", + Pseudo = "test_PILOTE" + }); + }); + + modelBuilder.Entity("Entity_Framework.Entity.Points", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER"); + + b.Property("A_Steer") + .HasColumnType("REAL"); + + b.Property("Distance") + .HasColumnType("REAL"); + + b.Property("G_Lat") + .HasColumnType("REAL"); + + b.Property("G_Lon") + .HasColumnType("REAL"); + + b.Property("IdTours") + .HasColumnType("INTEGER"); + + b.Property("Latitude") + .HasColumnType("REAL"); + + b.Property("Longitude") + .HasColumnType("REAL"); + + b.Property("NGearASCII") + .HasColumnType("REAL"); + + b.Property("P_BreakF") + .HasColumnType("REAL"); + + b.Property("R_Pedal") + .HasColumnType("REAL"); + + b.Property("Timer") + .HasColumnType("REAL"); + + b.Property("V_Car") + .HasColumnType("REAL"); + + b.HasKey("Id"); + + b.HasIndex("IdTours"); + + b.ToTable("Points"); + }); + + modelBuilder.Entity("Entity_Framework.Entity.Sessions", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER"); + + b.Property("Date") + .HasColumnType("TEXT"); + + b.Property("IdCircuit") + .HasColumnType("INTEGER"); + + b.Property("IdPilote") + .HasColumnType("INTEGER"); + + b.Property("Name") + .IsRequired() + .HasColumnType("TEXT"); + + b.Property("Type") + .IsRequired() + .HasColumnType("TEXT"); + + b.HasKey("Id"); + + b.HasIndex("IdCircuit"); + + b.HasIndex("IdPilote"); + + b.ToTable("Sessions"); + }); + + modelBuilder.Entity("Entity_Framework.Entity.Tours", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER"); + + b.Property("IdSession") + .HasColumnType("INTEGER"); + + b.Property("Numero") + .HasColumnType("INTEGER"); + + b.Property("Temps") + .IsRequired() + .HasColumnType("TEXT"); + + b.HasKey("Id"); + + b.HasIndex("IdSession"); + + b.ToTable("Tours"); + }); + + modelBuilder.Entity("Entity_Framework.Entity.Ecuries", b => + { + b.HasOne("Entity_Framework.Entity.Pilotes", "PiloteProprietaire") + .WithOne("EcuriePropriétaire") + .HasForeignKey("Entity_Framework.Entity.Ecuries", "IdPiloteProprietaire") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("PiloteProprietaire"); + }); + + modelBuilder.Entity("Entity_Framework.Entity.Images", b => + { + b.HasOne("Entity_Framework.Entity.Pilotes", "Pilote") + .WithOne("Image") + .HasForeignKey("Entity_Framework.Entity.Images", "IdPilote") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("Pilote"); + }); + + modelBuilder.Entity("Entity_Framework.Entity.Pilotes", b => + { + b.HasOne("Entity_Framework.Entity.Ecuries", "Ecurie") + .WithMany("Pilotes") + .HasForeignKey("IdEcurie"); + + b.Navigation("Ecurie"); + }); + + modelBuilder.Entity("Entity_Framework.Entity.Points", b => + { + b.HasOne("Entity_Framework.Entity.Tours", "Tours") + .WithMany("Points") + .HasForeignKey("IdTours") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("Tours"); + }); + + modelBuilder.Entity("Entity_Framework.Entity.Sessions", b => + { + b.HasOne("Entity_Framework.Entity.Circuits", "Circuit") + .WithMany("Course") + .HasForeignKey("IdCircuit") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.HasOne("Entity_Framework.Entity.Pilotes", "Pilote") + .WithMany("Sessions") + .HasForeignKey("IdPilote") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("Circuit"); + + b.Navigation("Pilote"); + }); + + modelBuilder.Entity("Entity_Framework.Entity.Tours", b => + { + b.HasOne("Entity_Framework.Entity.Sessions", "Session") + .WithMany("Tours") + .HasForeignKey("IdSession") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("Session"); + }); + + modelBuilder.Entity("Entity_Framework.Entity.Circuits", b => + { + b.Navigation("Course"); + }); + + modelBuilder.Entity("Entity_Framework.Entity.Ecuries", b => + { + b.Navigation("Pilotes"); + }); + + modelBuilder.Entity("Entity_Framework.Entity.Pilotes", b => + { + b.Navigation("EcuriePropriétaire") + .IsRequired(); + + b.Navigation("Image") + .IsRequired(); + + b.Navigation("Sessions"); + }); + + modelBuilder.Entity("Entity_Framework.Entity.Sessions", b => + { + b.Navigation("Tours"); + }); + + modelBuilder.Entity("Entity_Framework.Entity.Tours", b => + { + b.Navigation("Points"); + }); +#pragma warning restore 612, 618 + } + } +} diff --git a/Sources/Entity_Framework/Migrations/20230317102828_test.cs b/Sources/Entity_Framework/Migrations/20230317102828_test.cs new file mode 100644 index 0000000..94ddb0e --- /dev/null +++ b/Sources/Entity_Framework/Migrations/20230317102828_test.cs @@ -0,0 +1,271 @@ +using System; +using Microsoft.EntityFrameworkCore.Migrations; + +#nullable disable + +namespace Entity_Framework.Migrations +{ + /// + public partial class test : Migration + { + /// + protected override void Up(MigrationBuilder migrationBuilder) + { + migrationBuilder.CreateTable( + name: "Circuits", + columns: table => new + { + Id = table.Column(type: "INTEGER", nullable: false) + .Annotation("Sqlite:Autoincrement", true), + Name = table.Column(type: "TEXT", nullable: false) + }, + constraints: table => + { + table.PrimaryKey("PK_Circuits", x => x.Id); + }); + + migrationBuilder.CreateTable( + name: "Ecuries", + columns: table => new + { + Id = table.Column(type: "INTEGER", nullable: false) + .Annotation("Sqlite:Autoincrement", true), + Name = table.Column(type: "TEXT", nullable: false), + IdPiloteProprietaire = table.Column(type: "INTEGER", nullable: false) + }, + constraints: table => + { + table.PrimaryKey("PK_Ecuries", x => x.Id); + }); + + migrationBuilder.CreateTable( + name: "Pilotes", + columns: table => new + { + Id = table.Column(type: "INTEGER", nullable: false) + .Annotation("Sqlite:Autoincrement", true), + Pseudo = table.Column(type: "TEXT", nullable: false), + Email = table.Column(type: "TEXT", nullable: false), + Password = table.Column(type: "TEXT", nullable: false), + IdEcurie = table.Column(type: "INTEGER", nullable: true) + }, + constraints: table => + { + table.PrimaryKey("PK_Pilotes", x => x.Id); + table.ForeignKey( + name: "FK_Pilotes_Ecuries_IdEcurie", + column: x => x.IdEcurie, + principalTable: "Ecuries", + principalColumn: "Id"); + }); + + migrationBuilder.CreateTable( + name: "Images", + columns: table => new + { + Id = table.Column(type: "INTEGER", nullable: false) + .Annotation("Sqlite:Autoincrement", true), + Base64 = table.Column(type: "TEXT", nullable: false), + IdPilote = table.Column(type: "INTEGER", nullable: false) + }, + constraints: table => + { + table.PrimaryKey("PK_Images", x => x.Id); + table.ForeignKey( + name: "FK_Images_Pilotes_IdPilote", + column: x => x.IdPilote, + principalTable: "Pilotes", + principalColumn: "Id", + onDelete: ReferentialAction.Cascade); + }); + + migrationBuilder.CreateTable( + name: "Sessions", + columns: table => new + { + Id = table.Column(type: "INTEGER", nullable: false) + .Annotation("Sqlite:Autoincrement", true), + Name = table.Column(type: "TEXT", nullable: false), + Type = table.Column(type: "TEXT", nullable: false), + Date = table.Column(type: "TEXT", nullable: false), + IdCircuit = table.Column(type: "INTEGER", nullable: false), + IdPilote = table.Column(type: "INTEGER", nullable: false) + }, + constraints: table => + { + table.PrimaryKey("PK_Sessions", x => x.Id); + table.ForeignKey( + name: "FK_Sessions_Circuits_IdCircuit", + column: x => x.IdCircuit, + principalTable: "Circuits", + principalColumn: "Id", + onDelete: ReferentialAction.Cascade); + table.ForeignKey( + name: "FK_Sessions_Pilotes_IdPilote", + column: x => x.IdPilote, + principalTable: "Pilotes", + principalColumn: "Id", + onDelete: ReferentialAction.Cascade); + }); + + migrationBuilder.CreateTable( + name: "Tours", + columns: table => new + { + Id = table.Column(type: "INTEGER", nullable: false) + .Annotation("Sqlite:Autoincrement", true), + Temps = table.Column(type: "TEXT", nullable: false), + Numero = table.Column(type: "INTEGER", nullable: false), + IdSession = table.Column(type: "INTEGER", nullable: false) + }, + constraints: table => + { + table.PrimaryKey("PK_Tours", x => x.Id); + table.ForeignKey( + name: "FK_Tours_Sessions_IdSession", + column: x => x.IdSession, + principalTable: "Sessions", + principalColumn: "Id", + onDelete: ReferentialAction.Cascade); + }); + + migrationBuilder.CreateTable( + name: "Points", + columns: table => new + { + Id = table.Column(type: "INTEGER", nullable: false) + .Annotation("Sqlite:Autoincrement", true), + Timer = table.Column(type: "REAL", nullable: false), + Latitude = table.Column(type: "REAL", nullable: false), + Longitude = table.Column(type: "REAL", nullable: false), + Distance = table.Column(type: "REAL", nullable: false), + P_BreakF = table.Column(type: "REAL", nullable: false), + NGearASCII = table.Column(type: "REAL", nullable: false), + A_Steer = table.Column(type: "REAL", nullable: false), + R_Pedal = table.Column(type: "REAL", nullable: false), + G_Lon = table.Column(type: "REAL", nullable: false), + G_Lat = table.Column(type: "REAL", nullable: false), + V_Car = table.Column(type: "REAL", nullable: false), + IdTours = table.Column(type: "INTEGER", nullable: false) + }, + constraints: table => + { + table.PrimaryKey("PK_Points", x => x.Id); + table.ForeignKey( + name: "FK_Points_Tours_IdTours", + column: x => x.IdTours, + principalTable: "Tours", + principalColumn: "Id", + onDelete: ReferentialAction.Cascade); + }); + + migrationBuilder.InsertData( + table: "Circuits", + columns: new[] { "Id", "Name" }, + values: new object[] { 1, "test_CIRCUIT" }); + + migrationBuilder.InsertData( + table: "Pilotes", + columns: new[] { "Id", "Email", "IdEcurie", "Password", "Pseudo" }, + values: new object[] { 1, "test@gmail.com", null, "7NcYcNGWMxapfjrDQIyYNa2M8PPBvHA1J8MCZVNPda4=", "test_PILOTE" }); + + migrationBuilder.CreateIndex( + name: "IX_Circuits_Name", + table: "Circuits", + column: "Name", + unique: true); + + migrationBuilder.CreateIndex( + name: "IX_Ecuries_IdPiloteProprietaire", + table: "Ecuries", + column: "IdPiloteProprietaire", + unique: true); + + migrationBuilder.CreateIndex( + name: "IX_Ecuries_Name", + table: "Ecuries", + column: "Name", + unique: true); + + migrationBuilder.CreateIndex( + name: "IX_Images_IdPilote", + table: "Images", + column: "IdPilote", + unique: true); + + migrationBuilder.CreateIndex( + name: "IX_Pilotes_Email", + table: "Pilotes", + column: "Email", + unique: true); + + migrationBuilder.CreateIndex( + name: "IX_Pilotes_IdEcurie", + table: "Pilotes", + column: "IdEcurie"); + + migrationBuilder.CreateIndex( + name: "IX_Pilotes_Pseudo", + table: "Pilotes", + column: "Pseudo", + unique: true); + + migrationBuilder.CreateIndex( + name: "IX_Points_IdTours", + table: "Points", + column: "IdTours"); + + migrationBuilder.CreateIndex( + name: "IX_Sessions_IdCircuit", + table: "Sessions", + column: "IdCircuit"); + + migrationBuilder.CreateIndex( + name: "IX_Sessions_IdPilote", + table: "Sessions", + column: "IdPilote"); + + migrationBuilder.CreateIndex( + name: "IX_Tours_IdSession", + table: "Tours", + column: "IdSession"); + + migrationBuilder.AddForeignKey( + name: "FK_Ecuries_Pilotes_IdPiloteProprietaire", + table: "Ecuries", + column: "IdPiloteProprietaire", + principalTable: "Pilotes", + principalColumn: "Id", + onDelete: ReferentialAction.Cascade); + } + + /// + protected override void Down(MigrationBuilder migrationBuilder) + { + migrationBuilder.DropForeignKey( + name: "FK_Ecuries_Pilotes_IdPiloteProprietaire", + table: "Ecuries"); + + migrationBuilder.DropTable( + name: "Images"); + + migrationBuilder.DropTable( + name: "Points"); + + migrationBuilder.DropTable( + name: "Tours"); + + migrationBuilder.DropTable( + name: "Sessions"); + + migrationBuilder.DropTable( + name: "Circuits"); + + migrationBuilder.DropTable( + name: "Pilotes"); + + migrationBuilder.DropTable( + name: "Ecuries"); + } + } +} diff --git a/Sources/Entity_Framework/Migrations/BDDContextModelSnapshot.cs b/Sources/Entity_Framework/Migrations/BDDContextModelSnapshot.cs new file mode 100644 index 0000000..ac2d2aa --- /dev/null +++ b/Sources/Entity_Framework/Migrations/BDDContextModelSnapshot.cs @@ -0,0 +1,342 @@ +// +using System; +using Entity_Framework; +using Microsoft.EntityFrameworkCore; +using Microsoft.EntityFrameworkCore.Infrastructure; +using Microsoft.EntityFrameworkCore.Storage.ValueConversion; + +#nullable disable + +namespace Entity_Framework.Migrations +{ + [DbContext(typeof(BDDContext))] + partial class BDDContextModelSnapshot : ModelSnapshot + { + protected override void BuildModel(ModelBuilder modelBuilder) + { +#pragma warning disable 612, 618 + modelBuilder.HasAnnotation("ProductVersion", "7.0.3"); + + modelBuilder.Entity("Entity_Framework.Entity.Circuits", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER"); + + b.Property("Name") + .IsRequired() + .HasColumnType("TEXT"); + + b.HasKey("Id"); + + b.HasIndex("Name") + .IsUnique(); + + b.ToTable("Circuits"); + + b.HasData( + new + { + Id = 1, + Name = "test_CIRCUIT" + }); + }); + + modelBuilder.Entity("Entity_Framework.Entity.Ecuries", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER"); + + b.Property("IdPiloteProprietaire") + .HasColumnType("INTEGER"); + + b.Property("Name") + .IsRequired() + .HasColumnType("TEXT"); + + b.HasKey("Id"); + + b.HasIndex("IdPiloteProprietaire") + .IsUnique(); + + b.HasIndex("Name") + .IsUnique(); + + b.ToTable("Ecuries"); + }); + + modelBuilder.Entity("Entity_Framework.Entity.Images", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER"); + + b.Property("Base64") + .IsRequired() + .HasColumnType("TEXT"); + + b.Property("IdPilote") + .HasColumnType("INTEGER"); + + b.HasKey("Id"); + + b.HasIndex("IdPilote") + .IsUnique(); + + b.ToTable("Images"); + }); + + modelBuilder.Entity("Entity_Framework.Entity.Pilotes", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER"); + + b.Property("Email") + .IsRequired() + .HasColumnType("TEXT"); + + b.Property("IdEcurie") + .HasColumnType("INTEGER"); + + b.Property("Password") + .IsRequired() + .HasColumnType("TEXT"); + + b.Property("Pseudo") + .IsRequired() + .HasColumnType("TEXT"); + + b.HasKey("Id"); + + b.HasIndex("Email") + .IsUnique(); + + b.HasIndex("IdEcurie"); + + b.HasIndex("Pseudo") + .IsUnique(); + + b.ToTable("Pilotes"); + + b.HasData( + new + { + Id = 1, + Email = "test@gmail.com", + Password = "7NcYcNGWMxapfjrDQIyYNa2M8PPBvHA1J8MCZVNPda4=", + Pseudo = "test_PILOTE" + }); + }); + + modelBuilder.Entity("Entity_Framework.Entity.Points", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER"); + + b.Property("A_Steer") + .HasColumnType("REAL"); + + b.Property("Distance") + .HasColumnType("REAL"); + + b.Property("G_Lat") + .HasColumnType("REAL"); + + b.Property("G_Lon") + .HasColumnType("REAL"); + + b.Property("IdTours") + .HasColumnType("INTEGER"); + + b.Property("Latitude") + .HasColumnType("REAL"); + + b.Property("Longitude") + .HasColumnType("REAL"); + + b.Property("NGearASCII") + .HasColumnType("REAL"); + + b.Property("P_BreakF") + .HasColumnType("REAL"); + + b.Property("R_Pedal") + .HasColumnType("REAL"); + + b.Property("Timer") + .HasColumnType("REAL"); + + b.Property("V_Car") + .HasColumnType("REAL"); + + b.HasKey("Id"); + + b.HasIndex("IdTours"); + + b.ToTable("Points"); + }); + + modelBuilder.Entity("Entity_Framework.Entity.Sessions", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER"); + + b.Property("Date") + .HasColumnType("TEXT"); + + b.Property("IdCircuit") + .HasColumnType("INTEGER"); + + b.Property("IdPilote") + .HasColumnType("INTEGER"); + + b.Property("Name") + .IsRequired() + .HasColumnType("TEXT"); + + b.Property("Type") + .IsRequired() + .HasColumnType("TEXT"); + + b.HasKey("Id"); + + b.HasIndex("IdCircuit"); + + b.HasIndex("IdPilote"); + + b.ToTable("Sessions"); + }); + + modelBuilder.Entity("Entity_Framework.Entity.Tours", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER"); + + b.Property("IdSession") + .HasColumnType("INTEGER"); + + b.Property("Numero") + .HasColumnType("INTEGER"); + + b.Property("Temps") + .IsRequired() + .HasColumnType("TEXT"); + + b.HasKey("Id"); + + b.HasIndex("IdSession"); + + b.ToTable("Tours"); + }); + + modelBuilder.Entity("Entity_Framework.Entity.Ecuries", b => + { + b.HasOne("Entity_Framework.Entity.Pilotes", "PiloteProprietaire") + .WithOne("EcuriePropriétaire") + .HasForeignKey("Entity_Framework.Entity.Ecuries", "IdPiloteProprietaire") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("PiloteProprietaire"); + }); + + modelBuilder.Entity("Entity_Framework.Entity.Images", b => + { + b.HasOne("Entity_Framework.Entity.Pilotes", "Pilote") + .WithOne("Image") + .HasForeignKey("Entity_Framework.Entity.Images", "IdPilote") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("Pilote"); + }); + + modelBuilder.Entity("Entity_Framework.Entity.Pilotes", b => + { + b.HasOne("Entity_Framework.Entity.Ecuries", "Ecurie") + .WithMany("Pilotes") + .HasForeignKey("IdEcurie"); + + b.Navigation("Ecurie"); + }); + + modelBuilder.Entity("Entity_Framework.Entity.Points", b => + { + b.HasOne("Entity_Framework.Entity.Tours", "Tours") + .WithMany("Points") + .HasForeignKey("IdTours") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("Tours"); + }); + + modelBuilder.Entity("Entity_Framework.Entity.Sessions", b => + { + b.HasOne("Entity_Framework.Entity.Circuits", "Circuit") + .WithMany("Course") + .HasForeignKey("IdCircuit") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.HasOne("Entity_Framework.Entity.Pilotes", "Pilote") + .WithMany("Sessions") + .HasForeignKey("IdPilote") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("Circuit"); + + b.Navigation("Pilote"); + }); + + modelBuilder.Entity("Entity_Framework.Entity.Tours", b => + { + b.HasOne("Entity_Framework.Entity.Sessions", "Session") + .WithMany("Tours") + .HasForeignKey("IdSession") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("Session"); + }); + + modelBuilder.Entity("Entity_Framework.Entity.Circuits", b => + { + b.Navigation("Course"); + }); + + modelBuilder.Entity("Entity_Framework.Entity.Ecuries", b => + { + b.Navigation("Pilotes"); + }); + + modelBuilder.Entity("Entity_Framework.Entity.Pilotes", b => + { + b.Navigation("EcuriePropriétaire") + .IsRequired(); + + b.Navigation("Image") + .IsRequired(); + + b.Navigation("Sessions"); + }); + + modelBuilder.Entity("Entity_Framework.Entity.Sessions", b => + { + b.Navigation("Tours"); + }); + + modelBuilder.Entity("Entity_Framework.Entity.Tours", b => + { + b.Navigation("Points"); + }); +#pragma warning restore 612, 618 + } + } +} diff --git a/Sources/Extraction_Donnees/Extraction_BDD/Extraction.cs b/Sources/Extraction_Donnees/Extraction_BDD/Extraction.cs new file mode 100644 index 0000000..d5a8b26 --- /dev/null +++ b/Sources/Extraction_Donnees/Extraction_BDD/Extraction.cs @@ -0,0 +1,12 @@ +using Dto.Classe; +using Interface; +using Modele.Classe; + +namespace Extraction_Donnees.Extraction + +{ + public partial class Extraction : IApi + { + + } +} diff --git a/Sources/Extraction_Donnees/Extraction_BDD/ExtractionCircuit.cs b/Sources/Extraction_Donnees/Extraction_BDD/ExtractionCircuit.cs new file mode 100644 index 0000000..81e3748 --- /dev/null +++ b/Sources/Extraction_Donnees/Extraction_BDD/ExtractionCircuit.cs @@ -0,0 +1,58 @@ +using Entity_Framework; +using Entity_Framework.Entity; +using Entity_Framework.Factories; +using Modele.Classe; +using System.Security.Cryptography; + +namespace Extraction_Donnees.Extraction +{ + public partial class Extraction + { + public Task> GetCircuits() + { + IEnumerable result = new List(); + + using (BDDContext db = new BDDContext()) + { + result = db.Circuits.ToList().Select(e => e.EntityToModele()); + } + + return Task.FromResult>(result); + } + + public Task GetOneCircuit(string name) + { + Circuits circuit = new Circuits(); + + using (BDDContext db = new BDDContext()) + { + circuit = db.Circuits.Where(e => e.Name == name).FirstOrDefault(); + } + if (circuit == null) + { + return Task.FromResult(null); + } + return Task.FromResult(circuit.EntityToModele()); + } + + public Task AddCircuit(Circuit circuit) + { + Circuits circuitEntity = circuit.ModeleToEntity(); + + using (BDDContext db = new BDDContext()) + { + bool checkCircuit = db.Circuits.Any(e => e.Name == circuitEntity.Name); + if (checkCircuit) + { + return Task.FromResult(null); + } + db.Add(circuitEntity); + db.SaveChanges(); + } + + return Task.FromResult(circuitEntity.EntityToModele()); + } + + + } +} diff --git a/Sources/Extraction_Donnees/Extraction_BDD/ExtractionEcuries.cs b/Sources/Extraction_Donnees/Extraction_BDD/ExtractionEcuries.cs new file mode 100644 index 0000000..f97d2f0 --- /dev/null +++ b/Sources/Extraction_Donnees/Extraction_BDD/ExtractionEcuries.cs @@ -0,0 +1,81 @@ +using Entity_Framework; +using Entity_Framework.Entity; +using Entity_Framework.Factories; +using Modele.Classe; +using System.Collections.Generic; + +namespace Extraction_Donnees.Extraction +{ + public partial class Extraction + { + public Task> GetEcuries() + { + IEnumerable result = new List(); + + using (BDDContext db = new BDDContext()) + { + result = db.Ecuries.ToList().Select(e => e.EntityToModele()); + } + + return Task.FromResult>(result); + } + + public Task GetOneEcurie(string name) + { + Ecuries ecurie = new Ecuries(); + + using (BDDContext db = new BDDContext()) + { + ecurie = db.Ecuries.Where(e => e.Name == name).FirstOrDefault(); + } + if(ecurie == null) + { + return Task.FromResult(null); + } + return Task.FromResult(ecurie.EntityToModele()); + } + + public Task> AddEcurie(Ecurie ecurie, string pseudo) + { + // IEnumerable + //Indice 0 : Réussi ou pas -> value : 0 ok / 1 erreur + //Indice 1 : L'erreur -> Value : 2 nom ecurie / 3 pilote introuvable / 4 fait déjà partie d'une ecurie + + List result = new List(); + Ecuries ecurieEntity = ecurie.ModeleToEntity(); + + using (BDDContext db = new BDDContext()) + { + bool checkEcurieName = db.Ecuries.Any(e => e.Name == ecurie.name); + if (checkEcurieName == true) + { + result.Add(1); + result.Add(2); + return Task.FromResult>(result); + } + bool chackPilotePseudo = db.Pilotes.Any(e => e.Pseudo == pseudo); + if ( chackPilotePseudo == false ) + { + result.Add(1); + result.Add(3); + return Task.FromResult>(result); + } + int idPilote = db.Pilotes.Where(e => e.Pseudo == pseudo).First().Id; + + bool checkPiloteWithEcurie = db.Ecuries.Any( e => e.IdPiloteProprietaire == idPilote); + if (checkPiloteWithEcurie == true ) + { + result.Add(1); + result.Add(4); + return Task.FromResult>(result); + } + ecurieEntity.IdPiloteProprietaire = idPilote; + db.Add(ecurieEntity); + db.SaveChanges(); + } + result.Add(0); + return Task.FromResult>(result); + } + + } +} diff --git a/Sources/Extraction_Donnees/Extraction_BDD/ExtractionGeolocalisation.cs b/Sources/Extraction_Donnees/Extraction_BDD/ExtractionGeolocalisation.cs new file mode 100644 index 0000000..20ba322 --- /dev/null +++ b/Sources/Extraction_Donnees/Extraction_BDD/ExtractionGeolocalisation.cs @@ -0,0 +1,35 @@ +using Entity_Framework.Entity; +using Entity_Framework; +using Modele.Classe; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using Entity_Framework.Factories; + +namespace Extraction_Donnees.Extraction +{ + public partial class Extraction + { + public Task GetGeolocalisations(long IdPoint) + { + /*Geolocalisations result = new Geolocalisations(); + + using (BDDContext db = new BDDContext()) + { + bool checkPoint = db.Points.Any(e => e.Id == IdPoint); + if (checkPoint == false) + { + return Task.FromResult(null); + } + result = (from geo in db.Geolocalisations + from point in db.Points + where geo.Id == point.IdGeolocalisation + select geo).First(); + } + return Task.FromResult(result.EntityToModele());*/ + return null; + } + } +} diff --git a/Sources/Extraction_Donnees/Extraction_BDD/ExtractionImage.cs b/Sources/Extraction_Donnees/Extraction_BDD/ExtractionImage.cs new file mode 100644 index 0000000..8ef06de --- /dev/null +++ b/Sources/Extraction_Donnees/Extraction_BDD/ExtractionImage.cs @@ -0,0 +1,29 @@ +using Entity_Framework; +using Entity_Framework.Entity; +using Entity_Framework.Factories; +using Modele.Classe; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Extraction_Donnees.Extraction +{ + public partial class Extraction + { + public Task GetImage(int IdPilote) + { + Images image = new Images(); + using (BDDContext db = new BDDContext()) + { + image = db.Images.Where( e => e.IdPilote == IdPilote).FirstOrDefault(); + } + if ( image == null) + { + return Task.FromResult(null); + } + return Task.FromResult(image.EntityToModele()); + } + } +} diff --git a/Sources/Extraction_Donnees/Extraction_BDD/ExtractionPilotes.cs b/Sources/Extraction_Donnees/Extraction_BDD/ExtractionPilotes.cs new file mode 100644 index 0000000..b7c2343 --- /dev/null +++ b/Sources/Extraction_Donnees/Extraction_BDD/ExtractionPilotes.cs @@ -0,0 +1,76 @@ +using Dto.Classe; +using Dto.Factories; +using Entity_Framework; +using Entity_Framework.Entity; +using Entity_Framework.Factories; +using Modele.Classe; +using System.Security.Cryptography; +using System.Text; + +namespace Extraction_Donnees.Extraction +{ + public partial class Extraction + { + public Task> GetPilotes() + { + IEnumerable result = new List(); + + using (BDDContext db = new BDDContext()) + { + result = db.Pilotes.ToList().Select(e => e.EntityToModele()); + } + return Task.FromResult(result); + } + + public Task GetOnePilote(string pseudo) + { + Pilotes pilote = new Pilotes(); + + using (BDDContext db = new BDDContext()) + { + pilote = db.Pilotes.Where( e => e.Pseudo == pseudo).FirstOrDefault(); + } + if (pilote == null) + { + return Task.FromResult(null); + } + return Task.FromResult(pilote.EntityToModele()); + } + + public Task AddPilote(Pilote pilote) + { + Pilotes piloteEntity = pilote.ModeleToEntity(); + + using (BDDContext db = new BDDContext()) + { + IEnumerable piloteCheck = db.Pilotes.Where(e => e.Pseudo == piloteEntity.Pseudo ); + if (piloteCheck.Count() != 0) + { + return Task.FromResult(null); + } + db.Add(piloteEntity); + db.SaveChanges(); + } + + return Task.FromResult(pilote); + } + + public Task CheckPilote(string Email, string password) + { + byte[] passwordByte = Encoding.UTF8.GetBytes(password); + SHA256 sha256 = SHA256.Create(); + byte[] hashedByte = sha256.ComputeHash(passwordByte); + string hashedPassword = Convert.ToBase64String(hashedByte); + + using (BDDContext db = new BDDContext()) + { + Pilotes pilote = db.Pilotes.Where(e => e.Email == Email && e.Password == hashedPassword).FirstOrDefault(); + if (pilote == null) + { + return Task.FromResult(null); + } + return Task.FromResult(pilote.EntityToModele()); + } + } + } +} diff --git a/Sources/Extraction_Donnees/Extraction_BDD/ExtractionPoint.cs b/Sources/Extraction_Donnees/Extraction_BDD/ExtractionPoint.cs new file mode 100644 index 0000000..5ac64af --- /dev/null +++ b/Sources/Extraction_Donnees/Extraction_BDD/ExtractionPoint.cs @@ -0,0 +1,34 @@ +using Entity_Framework; +using Entity_Framework.Entity; +using Entity_Framework.Factories; +using Modele.Classe; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Extraction_Donnees.Extraction +{ + public partial class Extraction + { + public Task> GetPoints(long IdTour) + { + IEnumerable result = new List(); + + using (BDDContext db = new BDDContext()) + { + bool checkTour = db.Tours.Any(e => e.Id == IdTour); + if (checkTour == false) + { + return Task.FromResult>(null); + } + result = (from tour in db.Tours + from point in db.Points + where tour.Id == point.IdTours + select point).ToList(); + } + return Task.FromResult>(result.Select( e => e.EntityToModele())); + } + } +} diff --git a/Sources/Extraction_Donnees/Extraction_BDD/ExtractionSession.cs b/Sources/Extraction_Donnees/Extraction_BDD/ExtractionSession.cs new file mode 100644 index 0000000..e840563 --- /dev/null +++ b/Sources/Extraction_Donnees/Extraction_BDD/ExtractionSession.cs @@ -0,0 +1,100 @@ +using Entity_Framework.Entity; +using Entity_Framework; +using Modele.Classe; +using Entity_Framework.Factories; +using Dto.Factories; + +namespace Extraction_Donnees.Extraction +{ + public partial class Extraction + { + public Task> GetSessionsByPilotes(string pseudo) + { + IEnumerable result = new List(); + + using (BDDContext db = new BDDContext()) + { + bool checkPilote = db.Pilotes.Any(e => e.Pseudo == pseudo); + if (checkPilote == false) + { + return Task.FromResult>(null); + } + result = (from session in db.Sessions + from pilotes in db.Pilotes + where pilotes.Id == session.IdPilote + select session).ToList(); + } + return Task.FromResult>(result.Select( e => e.EntityToModele())); + } + + + + public Task AddSession(Session session,string namePseudo,string nameCircuit,string nameSession,string typeSession) + { + int idPilote; + using (BDDContext db = new BDDContext()) + { + // Check si pilote existe + Pilotes piloteEntity = db.Pilotes.Where(e => e.Pseudo == namePseudo).FirstOrDefault(); + if (piloteEntity == null) + { + return Task.FromResult(null); + } + + idPilote = piloteEntity.Id; + // Check si circuit existe + Circuits circuitEntity = db.Circuits.Where( e => e.Name == nameCircuit).FirstOrDefault(); + + Sessions sessionsEntity = session.ModeleToEntity(); + if(circuitEntity != null) + { + sessionsEntity.IdCircuit = circuitEntity.Id; + } + + + sessionsEntity.IdPilote = piloteEntity.Id; + sessionsEntity.Name = nameSession; + sessionsEntity.Type = typeSession; + db.Sessions.Add(sessionsEntity); + db.SaveChanges(); + } + Console.WriteLine("Session fini !"); + + long idSession; + IEnumerable tours = session.Tours.Select( e => e.ModeleToEntity()); + using (BDDContext db = new BDDContext()) + { + Sessions sessions = db.Sessions.Where(e => e.Name == nameSession && e.IdPilote == idPilote).First(); + idSession = sessions.Id; + foreach (Tours tour in tours) + { + tour.IdSession = idSession; + db.Add(tour); + } + db.SaveChanges(); + } + Console.WriteLine("Tour fini !"); + + using (BDDContext db = new BDDContext()) + { + int i = 1; + foreach (Tour tour in session.Tours) + { + long idTour = db.Tours.Where(e => e.Numero == i && e.IdSession == idSession).First().Id; + + foreach (Point point in tour.Points) + { + Points entityPoint = point.ModeleToEntity(); + entityPoint.IdTours = idTour; + db.Points.Add(entityPoint); + } + i++; + } + db.SaveChanges(); + } + Console.WriteLine("Point fini !"); + + return Task.FromResult(session); + } + } +} diff --git a/Sources/Extraction_Donnees/Extraction_BDD/ExtractionTours.cs b/Sources/Extraction_Donnees/Extraction_BDD/ExtractionTours.cs new file mode 100644 index 0000000..ed2e786 --- /dev/null +++ b/Sources/Extraction_Donnees/Extraction_BDD/ExtractionTours.cs @@ -0,0 +1,34 @@ +using Entity_Framework; +using Entity_Framework.Entity; +using Entity_Framework.Factories; +using Modele.Classe; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Extraction_Donnees.Extraction +{ + public partial class Extraction + { + public Task> GetTours(long IdSession) + { + IEnumerable result = new List(); + + using (BDDContext db = new BDDContext()) + { + bool checkSession = db.Sessions.Any(e => e.Id == IdSession); + if (checkSession == false) + { + return Task.FromResult>(null); + } + result = (from tour in db.Tours + from session in db.Sessions + where session.Id == tour.IdSession + select tour).ToList(); + } + return Task.FromResult>(result.Select(e => e.EntityToModele())); + } + } +} diff --git a/Sources/Extraction_Donnees/Extraction_Donnees.csproj b/Sources/Extraction_Donnees/Extraction_Donnees.csproj new file mode 100644 index 0000000..2f10211 --- /dev/null +++ b/Sources/Extraction_Donnees/Extraction_Donnees.csproj @@ -0,0 +1,31 @@ + + + + net6.0 + enable + enable + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Sources/Extraction_Donnees/Extraction_EXECL/Excel.cs b/Sources/Extraction_Donnees/Extraction_EXECL/Excel.cs new file mode 100644 index 0000000..7117cbc --- /dev/null +++ b/Sources/Extraction_Donnees/Extraction_EXECL/Excel.cs @@ -0,0 +1,322 @@ + +using ExcelDataReader; +using Microsoft.AspNetCore.Http; +using Modele.Classe; +using System.Text.RegularExpressions; +using Spire.Xls; +using NPOI; +using NPOI.POIFS.FileSystem; +using NPOI.HSSF.UserModel; +using NPOI.XSSF.UserModel; +using NPOI.SS.UserModel; +using System.Data; +using System.Globalization; + +namespace Extraction_Donnees.Extraction_EXECL +{ + public static class Excel + { + + // FONCTION A UTILISER POUR RECUPERER LES DONNES EXCEL AVEC L'API + public static async Task ReadExcel(IFormFile file) + { + var session = new Session(); + + System.Text.Encoding.RegisterProvider(System.Text.CodePagesEncodingProvider.Instance); + + using (var stream = new MemoryStream()) + { + file.CopyTo(stream); + stream.Position = 0; +/* int tourNo = -1; + using (var reader = ExcelReaderFactory.CreateReader(stream)) + { + while (reader.Read()) + { + if (reader.GetValue(2) == null) break; + if (reader.Depth == 0) continue; // sauter les en-têtes + + var tourExtrait = reader.GetString(0); + if (!string.IsNullOrEmpty(tourExtrait)) + { + tourNo = Int32.Parse(Regex.Match(tourExtrait, @"\d+").Value); // récupérer le numéro du tour + Tour tour = new Tour(tourNo, reader.GetString(1)); // création du tour + + session.Tours.Add(tour); // ajouter le tour sans points à la session + } + try + { + + var point = new Point( + new Geolocalisation(reader.GetDouble(11), reader.GetDouble(12)), + (float)reader.GetDouble(2), + (float)reader.GetDouble(3), + (float)reader.GetDouble(4), + (float)reader.GetDouble(5), + (float)reader.GetDouble(6), + (float)reader.GetDouble(7), + (float)reader.GetDouble(8), + (float)reader.GetDouble(9), + (float)reader.GetDouble(10)); + if (tourNo != -1) + { + session.Tours.Find(t => t.Nombre == tourNo).Points.Add(point); + } + else + { + throw new ArgumentException("Aucun tour n'a été trouvé dans le fichier !"); + } + + } + catch (IndexOutOfRangeException e) + { + throw new ArgumentException($"Problème lors de la lecture des données, données manquantes ! (colonnes manquantes dans l'Excel). {e.Message}"); + } + + } + }*/ + using (var reader = new StreamReader(stream)) + { + int cpt = 0; + int tourNo = -1; + while (!reader.EndOfStream) + { + var line = reader.ReadLine(); + cpt++; + var values = line.Split('\t'); + + if (cpt == 1) continue; + if (values.Count() < 4) + break; + if (reader.Peek() == -1) break; + + if (values[0].ToLower().Contains("lap:")) + { + tourNo = Int32.Parse(Regex.Match(values[0], @"\d+").Value); // récupérer le numéro du tour + Tour tour = new Tour(tourNo, values[1]); // création du tour + + session.Tours.Add(tour); // ajouter le tour sans points à la session + } + else + { + try + { + var point = new Point( + double.Parse(values[11], CultureInfo.InvariantCulture), + double.Parse(values[12], CultureInfo.InvariantCulture), + float.Parse(values[2], CultureInfo.InvariantCulture), + float.Parse(values[3], CultureInfo.InvariantCulture), + float.Parse(values[4], CultureInfo.InvariantCulture), + float.Parse(values[5], CultureInfo.InvariantCulture), + float.Parse(values[6], CultureInfo.InvariantCulture), + float.Parse(values[7], CultureInfo.InvariantCulture), + float.Parse(values[8], CultureInfo.InvariantCulture), + float.Parse(values[9], CultureInfo.InvariantCulture), + float.Parse(values[10], CultureInfo.InvariantCulture) + ); + + + if (tourNo != -1) + { + session.Tours.Find(t => t.Numero == tourNo).Points.Add(point); + } + else + { + throw new ArgumentException("Aucun tour n'a été trouvé dans le fichier !"); + } + } + catch (IndexOutOfRangeException e) + { + throw new ArgumentException($"Problème lors de la lecture des données, données manquantes ! (colonnes manquantes dans l'Excel). {e.Message}"); + } + } + } + } + } + + return session; + } + + public static Session TestExcel(string filePath) + { + var session = new Session(); + System.Text.Encoding.RegisterProvider(System.Text.CodePagesEncodingProvider.Instance); + using (var stream = File.Open(filePath, FileMode.Open, FileAccess.Read)) + { + int tourNo = -1; + using (var reader = ExcelReaderFactory.CreateReader(stream)) + { + while (reader.Read()) + { + if (reader.GetValue(2) == null) break; + if (reader.Depth == 0) continue; // sauter les en-têtes + + var tourExtrait = reader.GetString(0); + if (!string.IsNullOrEmpty(tourExtrait)) + { + tourNo = Int32.Parse(Regex.Match(tourExtrait, @"\d+").Value); // récupérer le numéro du tour + Tour tour = new Tour(tourNo, reader.GetString(1)); // création du tour + + session.Tours.Add(tour); // ajouter le tour sans points à la session + } + try + { + + var point = new Point( + reader.GetDouble(11), + reader.GetDouble(12), + (float)reader.GetDouble(2), + (float)reader.GetDouble(3), + (float)reader.GetDouble(4), + (float)reader.GetDouble(5), + (float)reader.GetDouble(6), + (float)reader.GetDouble(7), + (float)reader.GetDouble(8), + (float)reader.GetDouble(9), + (float)reader.GetDouble(10)) ; + if (tourNo != -1) + { + session.Tours.Find(t => t.Numero == tourNo).Points.Add(point); + } + else + { + throw new ArgumentException("Aucun tour n'a été trouvé dans le fichier !"); + } + + } + catch (IndexOutOfRangeException e) + { + throw new ArgumentException($"Problème lors de la lecture des données, données manquantes ! (colonnes manquantes dans l'Excel). {e.Message}"); + } + + } + } + } + + return session; + } + + public static async Task TestExcel2(string filePath) + { + var session = new Session(); + using (var reader = new StreamReader(filePath)) + { + int cpt = 0; + int tourNo = -1; + while (!reader.EndOfStream) + { + var line = reader.ReadLine(); + cpt++; + var values = line.Split('\t'); + + if (cpt == 1) continue; + if (values.Count() < 4) + break; + if (reader.Peek() == -1) break; + + if (values[0].ToLower().Contains("lap:")) + { + tourNo = Int32.Parse(Regex.Match(values[0], @"\d+").Value); // récupérer le numéro du tour + Tour tour = new Tour(tourNo, values[1]); // création du tour + + session.Tours.Add(tour); // ajouter le tour sans points à la session + } + else + { + try + { + + var point = new Point( + double.Parse(values[11], CultureInfo.InvariantCulture), + double.Parse(values[12], CultureInfo.InvariantCulture), + float.Parse(values[2], CultureInfo.InvariantCulture), + float.Parse(values[3], CultureInfo.InvariantCulture), + float.Parse(values[4], CultureInfo.InvariantCulture), + float.Parse(values[5], CultureInfo.InvariantCulture), + float.Parse(values[6], CultureInfo.InvariantCulture), + float.Parse(values[7], CultureInfo.InvariantCulture), + float.Parse(values[8], CultureInfo.InvariantCulture), + float.Parse(values[9], CultureInfo.InvariantCulture), + float.Parse(values[10], CultureInfo.InvariantCulture) + ); + + + if (tourNo != -1) + { + session.Tours.Find(t => t.Numero == tourNo).Points.Add(point); + } + else + { + throw new ArgumentException("Aucun tour n'a été trouvé dans le fichier !"); + } + } + catch (IndexOutOfRangeException e) + { + throw new ArgumentException($"Problème lors de la lecture des données, données manquantes ! (colonnes manquantes dans l'Excel). {e.Message}"); + } + } + } + } + + return session; + } + public static DataTable TextExcel3(string filePath) + { + DataTable dt = new DataTable(); + try + { + using (StreamReader sr = new StreamReader(filePath)) + { + // read the header line and create columns in the DataTable + string[] headers = sr.ReadLine().Split('\t'); + foreach (string header in headers) + { + dt.Columns.Add(header.Trim()); + } + + // read the data lines and add rows to the DataTable + while (!sr.EndOfStream) + { + string[] values = sr.ReadLine().Split('\t'); + DataRow row = dt.NewRow(); + for (int i = 0; i < headers.Length; i++) + { + if (i < values.Length) + { + row[i] = values[i].Trim(); + } + else + { + row[i] = ""; + } + } + dt.Rows.Add(row); + } + } + } + catch (Exception ex) + { + Console.WriteLine("Error reading file: " + ex.Message); + } + return dt; + } + + + public static string OpenDIS(string path) + { + try + { + string text = File.ReadAllText(path); + return text; + + } + catch (IOException e) + { + Console.WriteLine($"Error reading file: {e.Message}"); + } + return "l"; + + } + } + +} \ No newline at end of file diff --git a/Sources/Extraction_Excel_Test/Extraction_Excel_Test.csproj b/Sources/Extraction_Excel_Test/Extraction_Excel_Test.csproj new file mode 100644 index 0000000..089f1a7 --- /dev/null +++ b/Sources/Extraction_Excel_Test/Extraction_Excel_Test.csproj @@ -0,0 +1,14 @@ + + + + Exe + net6.0 + enable + enable + + + + + + + diff --git a/Sources/Extraction_Excel_Test/Program.cs b/Sources/Extraction_Excel_Test/Program.cs new file mode 100644 index 0000000..acc7b68 --- /dev/null +++ b/Sources/Extraction_Excel_Test/Program.cs @@ -0,0 +1,35 @@ + +using Extraction_Donnees.Extraction; +using Extraction_Donnees.Extraction_EXECL; +using Interface; +using Modele.Classe; +using NPOI.SS.Formula.Functions; + +/* +var p = "C:\\Users\\Jolys Enzo\\home\\BUT\\Projet\\Sae4.01\\Projet\\R-Dash_APP\\Extraction_Excel_Test\\tmp.xls"; + +var sesh = await Excel.TestExcel2(p); + + +if (sesh == null) +{ + Console.WriteLine("L READ G"); +} +else +{ + Console.WriteLine(sesh.ToString()); + foreach (var tour in sesh.Tours) + { + Console.WriteLine(tour.ToString()); + } +} + +Console.WriteLine("Tours : " + sesh.Tours.Count); +*/ + +IApi data = new Extraction(); + +Session session = await Excel.TestExcel2("C:\\Users\\Jolys Enzo\\home\\BUT\\Projet\\Sae4.01\\Projet\\R-Dash_APP\\Extraction_Excel_Test\\tmp.xls"); +Console.WriteLine("Start !"); +await data.AddSession(session, "test_PILOTE", "test_CIRCUIT","Session_test","Championnat"); +Console.WriteLine("Fini !"); diff --git a/Sources/Extraction_Excel_Test/tmp.xls b/Sources/Extraction_Excel_Test/tmp.xls new file mode 100644 index 0000000..b6a3399 --- /dev/null +++ b/Sources/Extraction_Excel_Test/tmp.xls @@ -0,0 +1,3863 @@ + Time Time (s) Distance [m] NGearAscii [gear] pBrakeF [bar] aSteer [deg] rPedal [%] gLon [g] gLat [g] vCar [km/h] GPS_Latitude [°] GPS_Longitude [°] +Lap: 1 02.23.705 0.000 0.00 1.000 19.880 157.863 0.000 -0.013 0.023 0.000 46.863310516148 3.161758933361 + 0.100 0.00 1.000 19.880 157.863 0.000 -0.013 0.023 0.000 46.863310470647 3.161758692344 + 0.200 0.01 1.000 19.880 157.863 0.000 -0.013 0.023 0.000 46.863310425146 3.161758451327 + 0.300 0.01 1.000 19.880 157.863 0.000 -0.013 0.023 0.000 46.863310379645 3.161758210310 + 0.400 0.01 1.000 19.880 157.863 0.000 -0.013 0.023 0.000 46.863310334144 3.161757969292 + 0.500 0.01 1.000 19.880 157.863 0.000 -0.013 0.023 0.000 46.863310288643 3.161757728275 + 0.600 0.02 1.000 19.880 157.863 0.000 -0.013 0.023 0.000 46.863310243142 3.161757487258 + 0.700 0.02 1.000 19.880 157.863 0.000 -0.013 0.023 0.000 46.863310197641 3.161757246241 + 0.800 0.02 1.000 19.880 157.863 0.000 -0.013 0.023 0.000 46.863310152140 3.161757005223 + 0.900 0.03 1.000 19.880 157.863 0.000 -0.013 0.023 0.000 46.863310106639 3.161756764206 + 1.000 0.03 1.000 19.880 157.863 0.000 -0.013 0.023 0.000 46.863310061138 3.161756523189 + 1.100 0.03 1.000 19.880 157.863 0.000 -0.013 0.023 0.000 46.863310015637 3.161756282172 + 1.200 0.03 1.000 19.880 157.863 0.000 -0.013 0.023 0.000 46.863309970135 3.161756041155 + 1.300 0.04 1.000 19.880 157.863 0.000 -0.013 0.023 0.000 46.863309924634 3.161755800137 + 1.400 0.04 1.000 19.880 157.863 0.000 -0.013 0.023 0.000 46.863309879133 3.161755559120 + 1.500 0.04 1.000 19.880 157.863 0.000 -0.013 0.023 0.000 46.863309833632 3.161755318103 + 1.600 0.04 1.000 19.880 157.863 0.000 -0.013 0.023 0.000 46.863309788131 3.161755077086 + 1.700 0.05 1.000 19.880 157.863 0.000 -0.013 0.023 0.000 46.863309742630 3.161754836069 + 1.800 0.05 1.000 19.880 157.863 0.000 -0.013 0.023 0.000 46.863309697129 3.161754595051 + 1.900 0.05 1.000 19.880 157.863 0.000 -0.013 0.023 0.000 46.863309651628 3.161754354034 + 2.000 0.06 1.000 19.880 157.863 0.000 -0.013 0.023 0.000 46.863309606127 3.161754113017 + 2.100 0.06 1.000 19.880 157.863 0.000 -0.013 0.023 0.000 46.863309560626 3.161753872000 + 2.200 0.06 1.000 19.880 157.863 0.000 -0.013 0.023 0.000 46.863309515125 3.161753630982 + 2.300 0.06 1.000 19.880 157.863 0.000 -0.013 0.023 0.000 46.863309469624 3.161753389965 + 2.400 0.07 1.000 19.880 157.863 0.000 -0.013 0.023 0.000 46.863309424123 3.161753148948 + 2.500 0.07 1.000 19.880 157.863 0.000 -0.013 0.023 0.000 46.863309378622 3.161752907931 + 2.600 0.07 1.000 19.880 157.863 0.000 -0.013 0.023 0.000 46.863309333121 3.161752666914 + 2.700 0.08 1.000 19.880 157.863 0.000 -0.013 0.023 0.000 46.863309287619 3.161752425896 + 2.800 0.08 1.000 19.880 157.863 0.000 -0.013 0.023 0.000 46.863309242118 3.161752184879 + 2.900 0.08 1.000 19.880 157.863 0.000 -0.013 0.023 0.000 46.863309196617 3.161751943862 + 3.000 0.08 1.000 19.880 157.863 0.000 -0.013 0.023 0.000 46.863309151116 3.161751702845 + 3.100 0.09 1.000 19.880 157.863 0.000 -0.013 0.023 0.000 46.863309105615 3.161751461828 + 3.200 0.09 1.000 19.880 157.863 0.000 -0.013 0.023 0.000 46.863309060114 3.161751220810 + 3.300 0.09 1.000 19.880 157.863 0.000 -0.013 0.023 0.000 46.863309014613 3.161750979793 + 3.400 0.09 1.000 19.880 157.863 0.000 -0.013 0.023 0.000 46.863308969112 3.161750738776 + 3.500 0.10 1.000 19.880 157.863 0.000 -0.013 0.023 0.000 46.863308923611 3.161750497759 + 3.600 0.10 1.000 19.880 157.863 0.000 -0.013 0.023 0.000 46.863308878110 3.161750256742 + 3.700 0.10 1.000 19.880 157.863 0.000 -0.013 0.023 0.000 46.863308832609 3.161750015724 + 3.800 0.10 1.000 19.880 157.863 0.000 -0.013 0.023 0.000 46.863308787108 3.161749774707 + 3.900 0.10 1.000 19.880 157.863 0.000 -0.013 0.023 0.000 46.863308741607 3.161749533690 + 4.000 0.10 1.000 19.880 157.863 0.000 -0.013 0.023 0.000 46.863308696106 3.161749292673 + 4.100 0.11 1.000 19.880 157.863 0.000 -0.013 0.023 0.000 46.863308650605 3.161749051655 + 4.200 0.11 1.000 19.880 157.863 0.000 -0.013 0.023 0.000 46.863308605103 3.161748810638 + 4.300 0.11 1.000 19.880 157.863 0.000 -0.013 0.022 0.000 46.863308559602 3.161748569621 + 4.400 0.11 1.000 19.838 157.863 0.000 -0.014 0.014 0.000 46.863308514101 3.161748328604 + 4.500 0.11 1.000 19.648 157.902 0.000 -0.016 0.023 0.000 46.863308468073 3.161748091716 + 4.600 0.11 1.000 19.559 157.985 0.000 -0.012 0.017 0.000 46.863308419867 3.161747871860 + 4.700 0.11 1.000 19.527 158.037 0.000 -0.017 0.014 0.000 46.863308372205 3.161747668460 + 4.800 0.11 1.000 19.478 158.081 0.000 -0.011 0.017 0.000 46.863308308945 3.161747482375 + 4.900 0.11 1.000 19.478 158.126 0.000 -0.017 0.014 0.000 46.863308239153 3.161747332937 + 5.000 0.11 1.000 19.478 158.248 0.000 -0.018 0.018 0.000 46.863308197913 3.161747245670 + 5.100 0.11 1.000 19.478 158.691 0.000 -0.017 0.019 0.000 46.863308189491 3.161747199213 + 5.200 0.11 1.000 19.533 159.955 0.000 -0.018 0.015 0.000 46.863308165632 3.161747090414 + 5.300 0.11 1.000 19.559 161.199 0.000 -0.015 0.015 0.000 46.863308082870 3.161746828862 + 5.400 0.12 1.000 19.559 161.295 0.000 -0.012 0.017 0.000 46.863307948815 3.161746439081 + 5.500 0.12 1.000 19.559 161.295 0.000 -0.014 0.013 0.000 46.863307813953 3.161746033666 + 5.600 0.13 1.000 19.559 161.334 0.000 -0.014 0.016 0.000 46.863307711377 3.161745648589 + 5.700 0.13 1.000 19.672 161.334 0.000 -0.014 0.019 0.000 46.863307641067 3.161745284447 + 5.800 0.14 1.000 12.359 161.334 0.000 -0.014 0.018 0.000 46.863307601379 3.161744961888 + 5.900 0.14 1.000 0.000 161.334 0.000 -0.019 0.017 0.000 46.863307594095 3.161744671793 + 6.000 0.14 1.000 0.000 161.334 0.000 -0.014 0.017 0.000 46.863307623164 3.161744363185 + 6.100 0.14 1.000 0.000 161.334 0.000 -0.012 0.015 0.000 46.863307676661 3.161744035763 + 6.200 0.15 1.000 0.000 161.334 0.000 -0.015 0.017 0.000 46.863307735339 3.161743750164 + 6.300 0.15 1.000 0.000 161.334 0.000 -0.012 0.017 0.000 46.863307777725 3.161743529659 + 6.400 0.16 1.000 0.000 161.334 0.000 -0.013 0.018 0.000 46.863307796513 3.161743395472 + 6.500 0.16 1.000 0.000 161.334 0.000 -0.016 0.019 0.000 46.863307822317 3.161743291916 + 6.600 0.16 1.000 0.000 161.334 0.000 -0.014 0.016 0.000 46.863307866880 3.161743203112 + 6.700 0.17 1.000 0.000 161.334 0.000 -0.016 0.016 0.000 46.863307912319 3.161743132112 + 6.800 0.17 1.000 0.000 161.334 0.000 -0.013 0.015 0.000 46.863307935482 3.161743093981 + 6.900 0.18 1.000 0.000 161.334 0.000 -0.016 0.017 0.000 46.863307936154 3.161743107388 + 7.000 0.19 1.000 0.000 162.001 0.000 -0.012 0.019 0.000 46.863307923876 3.161743146956 + 7.100 0.19 1.000 0.000 162.046 0.000 -0.014 0.019 0.000 46.863307909702 3.161743167164 + 7.200 0.19 1.000 0.000 162.040 0.000 -0.015 0.017 0.000 46.863307898170 3.161743148424 + 7.300 0.20 1.000 0.000 162.040 0.000 -0.012 0.018 0.000 46.863307889385 3.161743126875 + 7.400 0.20 1.000 0.000 162.078 0.000 -0.015 0.017 0.000 46.863307875398 3.161743141358 + 7.500 0.21 1.000 0.000 162.085 0.000 -0.013 0.017 0.000 46.863307847913 3.161743207469 + 7.600 0.21 1.000 0.000 162.200 0.000 -0.014 0.019 0.000 46.863307807110 3.161743288938 + 7.700 0.21 1.000 0.000 162.335 0.000 -0.015 0.016 0.000 46.863307759279 3.161743352442 + 7.800 0.22 1.000 0.000 162.348 0.000 -0.015 0.016 0.000 46.863307712710 3.161743388295 + 7.900 0.22 1.000 0.000 162.348 0.000 -0.015 0.017 0.000 46.863307669550 3.161743394969 + 8.000 0.23 1.000 0.000 162.348 0.000 -0.015 0.018 0.000 46.863307630658 3.161743374472 + 8.100 0.24 1.000 0.000 162.348 0.000 -0.014 0.016 0.000 46.863307579533 3.161743347659 + 8.200 0.24 1.000 0.000 162.348 0.000 -0.017 0.018 0.000 46.863307489451 3.161743345296 + 8.300 0.25 1.000 0.000 162.348 0.000 -0.012 0.015 0.000 46.863307356320 3.161743382245 + 8.400 0.26 1.000 0.000 162.348 0.000 -0.015 0.017 0.000 46.863307219696 3.161743455235 + 8.500 0.27 1.000 0.000 162.348 0.000 -0.015 0.022 0.000 46.863307096835 3.161743543499 + 8.600 0.28 1.000 0.000 162.348 0.000 -0.015 0.017 0.000 46.863306971980 3.161743630651 + 8.700 0.29 1.000 0.000 162.348 0.000 -0.017 0.014 0.000 46.863306838084 3.161743701651 + 8.800 0.30 1.000 0.000 162.348 0.000 -0.014 0.016 0.000 46.863306702263 3.161743751639 + 8.900 0.31 1.000 0.000 162.348 0.000 -0.016 0.018 0.000 46.863306577920 3.161743768738 + 9.000 0.31 1.000 0.000 162.348 0.000 -0.014 0.018 0.000 46.863306462229 3.161743771011 + 9.100 0.32 1.000 0.000 162.348 0.000 -0.015 0.016 0.000 46.863306345648 3.161743794171 + 9.200 0.33 1.000 0.000 162.348 0.000 -0.016 0.017 0.000 46.863306205970 3.161743879397 + 9.300 0.34 1.000 0.000 162.348 0.000 -0.014 0.016 0.000 46.863306048188 3.161744023038 + 9.400 0.35 1.000 0.000 162.348 0.000 -0.018 0.017 0.000 46.863305866891 3.161744215545 + 9.500 0.36 1.000 0.000 162.348 0.000 -0.015 0.021 0.000 46.863305689107 3.161744414866 + 9.600 0.37 1.000 0.000 162.348 0.000 -0.015 0.016 0.000 46.863305514214 3.161744610318 + 9.700 0.39 1.000 0.000 162.348 0.000 -0.014 0.017 0.000 46.863305334802 3.161744794798 + 9.800 0.39 1.000 0.000 162.348 0.000 -0.017 0.017 0.000 46.863305142168 3.161744940785 + 9.900 0.40 1.000 0.000 162.348 0.000 -0.014 0.014 0.000 46.863304943488 3.161745041930 + 10.000 0.41 1.000 0.000 162.348 0.000 -0.016 0.020 0.000 46.863304745677 3.161745134375 + 10.100 0.42 1.000 0.000 162.348 0.000 -0.014 0.019 0.000 46.863304550394 3.161745257404 + 10.200 0.43 1.000 0.000 162.425 0.000 -0.012 0.017 0.000 46.863304347595 3.161745413647 + 10.300 0.44 1.000 0.000 163.817 0.000 -0.017 0.016 0.000 46.863304125472 3.161745596717 + 10.400 0.45 1.000 0.000 163.624 0.000 -0.015 0.019 0.000 46.863303911625 3.161745757955 + 10.500 0.46 1.000 0.000 158.139 0.000 -0.012 0.013 0.000 46.863303706527 3.161745890231 + 10.600 0.47 1.000 0.000 153.122 0.000 -0.018 0.015 0.000 46.863303525571 3.161745991502 + 10.700 0.48 1.000 0.000 150.011 0.000 -0.011 0.020 0.000 46.863303371564 3.161746089421 + 10.800 0.49 1.000 0.000 147.990 0.000 -0.018 0.017 0.000 46.863303209495 3.161746224478 + 10.900 0.50 1.000 0.000 147.522 0.000 -0.014 0.016 0.000 46.863303019224 3.161746417144 + 11.000 0.51 1.000 0.000 147.374 0.000 -0.013 0.019 0.000 46.863302812591 3.161746640435 + 11.100 0.52 1.000 0.000 146.970 0.000 -0.018 0.047 0.000 46.863302620166 3.161746846079 + 11.200 0.53 1.000 0.000 144.667 0.000 -0.014 0.009 0.000 46.863302444913 3.161747029043 + 11.300 0.54 1.000 0.000 130.688 0.000 -0.015 0.012 0.000 46.863302273533 3.161747235415 + 11.400 0.55 1.000 0.000 92.934 0.000 -0.016 0.026 0.000 46.863302105094 3.161747462374 + 11.500 0.56 1.000 0.000 30.879 0.000 -0.017 0.004 0.000 46.863301933345 3.161747668684 + 11.600 0.57 1.000 0.000 -40.953 0.000 -0.017 0.026 0.000 46.863301760570 3.161747815089 + 11.700 0.57 1.000 0.000 -74.376 0.000 -0.010 0.028 0.000 46.863301583937 3.161747913591 + 11.800 0.58 1.000 0.000 -100.493 0.000 -0.021 0.014 0.000 46.863301398198 3.161748015460 + 11.900 0.59 1.000 0.000 -158.680 0.000 -0.007 -0.002 0.000 46.863301212990 3.161748162011 + 12.000 0.60 1.000 0.000 -219.336 0.000 -0.012 0.018 0.000 46.863301054727 3.161748359204 + 12.100 0.60 1.000 0.000 -253.100 0.000 -0.012 0.040 0.000 46.863300936321 3.161748573798 + 12.200 0.61 1.000 0.000 -256.449 0.000 -0.020 0.015 0.000 46.863300841885 3.161748770859 + 12.300 0.61 1.000 0.000 -256.410 0.000 -0.022 0.009 0.000 46.863300747043 3.161748925706 + 12.400 0.62 1.000 0.000 -253.279 0.000 -0.005 0.031 0.000 46.863300623940 3.161749074340 + 12.500 0.63 1.000 0.000 -240.763 0.000 -0.014 0.011 0.000 46.863300491417 3.161749219599 + 12.600 0.64 1.000 0.000 -223.269 0.000 -0.019 0.014 0.000 46.863300361210 3.161749379097 + 12.700 0.64 1.000 0.000 -207.834 0.000 -0.013 0.020 0.000 46.863300230934 3.161749566085 + 12.800 0.65 1.000 0.000 -192.251 0.000 -0.013 0.012 0.000 46.863300106023 3.161749784113 + 12.900 0.65 1.000 0.000 -169.483 0.000 -0.014 0.017 0.000 46.863299991965 3.161750018901 + 13.000 0.66 1.000 0.000 -136.213 0.000 -0.016 0.024 0.000 46.863299892217 3.161750238743 + 13.100 0.66 1.000 0.000 -104.342 0.000 -0.011 0.013 0.000 46.863299805780 3.161750449390 + 13.200 0.67 1.000 0.000 -77.045 0.000 -0.011 0.008 0.000 46.863299731105 3.161750697169 + 13.300 0.67 1.000 0.000 -62.803 0.000 -0.017 0.017 0.000 46.863299658944 3.161751005053 + 13.400 0.68 1.000 0.000 -64.503 0.000 -0.016 0.012 0.000 46.863299594232 3.161751310859 + 13.500 0.68 1.000 0.872 -69.892 0.000 -0.015 0.020 0.000 46.863299538160 3.161751582399 + 13.600 0.68 1.000 3.384 -69.148 0.000 -0.018 0.018 0.000 46.863299476667 3.161751844171 + 13.700 0.69 1.000 3.570 -70.033 0.000 -0.016 0.013 0.000 46.863299390785 3.161752135371 + 13.800 0.69 1.000 3.677 -75.172 0.000 -0.010 0.016 0.000 46.863299287708 3.161752450190 + 13.900 0.69 1.000 1.762 -85.462 13.200 -0.015 0.018 0.000 46.863299186947 3.161752750529 + 14.000 0.70 1.000 0.000 -97.811 22.824 -0.016 0.014 0.000 46.863299099523 3.161753016261 + 14.100 0.70 1.000 0.000 -118.687 22.824 -0.011 0.012 0.000 46.863299021166 3.161753276336 + 14.200 0.71 1.000 0.000 -136.014 22.824 0.024 0.016 0.000 46.863298945428 3.161753567887 + 14.300 0.72 1.000 0.000 -154.907 22.499 0.084 0.003 0.000 46.863298881537 3.161753913690 + 14.400 0.74 1.000 0.000 -181.659 22.174 0.168 -0.015 0.000 46.863298874590 3.161754302333 + 14.500 0.78 1.000 0.000 -210.207 21.174 0.202 -0.019 0.727 46.863298955465 3.161754860010 + 14.600 0.84 1.000 0.000 -233.206 15.439 0.222 -0.032 1.904 46.863299135048 3.161755671276 + 14.700 0.92 1.000 0.000 -247.313 13.900 0.212 -0.044 3.049 46.863299442753 3.161756707718 + 14.800 1.02 1.000 0.000 -251.875 13.900 0.216 -0.039 4.000 46.863299901506 3.161757931677 + 14.900 1.14 1.000 0.000 -254.922 13.900 0.208 -0.040 4.882 46.863300491431 3.161759393132 + 15.000 1.29 1.000 0.000 -255.698 13.900 0.187 -0.055 5.703 46.863301133417 3.161761153239 + 15.100 1.46 1.000 0.000 -255.910 13.900 0.172 -0.052 6.459 46.863301805766 3.161763160010 + 15.200 1.64 1.000 0.000 -255.923 14.550 0.171 -0.055 7.193 46.863302541853 3.161765304713 + 15.300 1.84 1.000 0.000 -255.923 15.874 0.166 -0.074 7.773 46.863303326725 3.161767524890 + 15.400 2.05 1.000 0.000 -255.647 18.639 0.121 -0.072 8.403 46.863304079402 3.161770028890 + 15.500 2.27 1.000 0.000 -254.428 20.961 0.129 -0.066 8.986 46.863304719128 3.161772950039 + 15.600 2.52 1.000 0.000 -250.579 22.675 0.138 -0.095 9.558 46.863305289829 3.161776317476 + 15.700 2.79 1.000 0.000 -240.513 24.961 0.121 -0.085 10.127 46.863305841099 3.161779984561 + 15.800 3.07 1.000 0.000 -221.049 30.585 0.127 -0.052 10.642 46.863306357781 3.161783768965 + 15.900 3.35 1.000 0.000 -195.157 32.099 0.164 -0.051 11.189 46.863306885348 3.161787646620 + 16.000 3.65 1.000 0.000 -159.597 32.099 0.219 -0.016 11.917 46.863307515011 3.161791780595 + 16.100 3.99 1.000 0.000 -114.286 31.863 0.234 0.022 12.784 46.863308258400 3.161796351270 + 16.200 4.35 1.000 0.000 -73.305 31.449 0.232 0.060 13.652 46.863309038662 3.161801255457 + 16.300 4.73 1.000 0.000 -42.294 31.449 0.261 0.040 14.624 46.863309770701 3.161806125596 + 16.400 5.08 1.000 0.000 -16.748 31.449 0.262 0.050 15.592 46.863310373427 3.161810664056 + 16.500 5.42 1.000 0.000 -0.203 31.449 0.227 0.054 16.572 46.863310951677 3.161815170189 + 16.600 5.80 1.000 0.000 8.477 31.449 0.226 0.052 17.457 46.863311793126 3.161820113152 + 16.700 6.23 1.000 0.000 13.462 31.449 0.240 0.036 18.346 46.863313057766 3.161825717586 + 16.800 6.72 1.000 0.000 18.793 31.449 0.229 0.059 19.261 46.863314607389 3.161831881897 + 16.900 7.23 1.000 0.000 25.978 31.449 0.187 0.073 20.071 46.863316323432 3.161838211100 + 17.000 7.75 1.000 0.000 35.896 31.774 0.190 0.084 20.795 46.863318275502 3.161844451228 + 17.100 8.29 1.000 0.000 47.277 31.774 0.198 0.139 21.561 46.863320433427 3.161850810423 + 17.200 8.85 1.000 0.000 52.621 34.857 0.187 0.111 22.278 46.863322602756 3.161857740040 + 17.300 9.45 1.000 0.000 47.668 36.075 0.188 0.111 23.009 46.863324613292 3.161864978548 + 17.400 10.07 1.000 0.000 43.787 36.075 0.207 0.084 23.786 46.863326771499 3.161872880906 + 17.500 10.72 1.000 0.000 42.946 40.274 0.163 0.081 24.424 46.863329027050 3.161880715140 + 17.600 11.35 1.000 0.000 39.649 48.649 0.162 0.099 25.118 46.863331327060 3.161888378592 + 17.700 12.00 1.000 0.000 37.942 51.377 0.256 0.093 26.011 46.863333630011 3.161896117106 + 17.800 12.67 1.000 0.000 39.136 53.124 0.284 0.074 26.976 46.863336081590 3.161904153007 + 17.900 13.38 1.000 0.000 39.091 53.124 0.300 0.144 28.179 46.863338994451 3.161912485934 + 18.000 14.12 1.000 0.000 38.590 52.562 0.336 0.104 29.352 46.863342611081 3.161921043249 + 18.100 14.92 1.000 0.000 37.628 52.474 0.416 0.115 30.753 46.863346711641 3.161930041349 + 18.200 15.77 1.000 0.000 36.306 51.894 0.446 0.095 32.258 46.863350906781 3.161939752624 + 18.300 16.67 1.000 0.000 35.254 50.474 0.436 0.123 33.939 46.863355039355 3.161950147850 + 18.400 17.61 1.000 0.000 34.882 50.474 0.436 0.126 35.609 46.863359389517 3.161961344482 + 18.500 18.61 2.000 0.000 34.375 48.955 0.571 0.127 37.503 46.863364019609 3.161973270096 + 18.600 19.67 2.000 0.000 32.977 47.500 0.495 0.146 39.472 46.863368924827 3.161985851258 + 18.700 20.79 2.000 0.000 30.096 41.874 0.520 0.189 41.337 46.863374069416 3.161998941510 + 18.800 21.94 2.000 0.000 26.825 42.200 0.340 0.125 42.716 46.863379465582 3.162012385303 + 18.900 23.12 2.000 0.000 23.020 42.200 0.334 0.164 43.818 46.863385082307 3.162026107897 + 19.000 24.32 2.000 0.000 19.941 42.524 0.305 0.031 44.973 46.863390895123 3.162040075814 + 19.100 25.57 2.000 0.000 17.863 42.874 0.265 0.112 46.007 46.863396850118 3.162054334343 + 19.200 26.84 2.000 0.000 17.311 43.200 0.235 0.120 46.993 46.863402942065 3.162068884068 + 19.300 28.14 2.000 0.000 17.073 43.524 0.285 0.134 47.962 46.863409431569 3.162084163219 + 19.400 29.47 2.000 0.000 15.662 44.104 0.303 0.050 49.074 46.863416038899 3.162099319733 + 19.500 30.84 2.000 0.000 13.218 45.174 0.246 0.161 50.111 46.863422929113 3.162114856668 + 19.600 32.23 2.000 0.000 11.537 45.174 0.371 0.003 51.317 46.863429982888 3.162130690026 + 19.700 33.65 2.000 0.000 10.151 46.850 0.187 0.086 52.275 46.863437098998 3.162146633178 + 19.800 35.08 2.000 0.000 9.580 46.850 0.190 0.094 52.941 46.863444262240 3.162162536892 + 19.900 36.53 2.000 0.000 9.888 46.500 0.135 0.114 53.553 46.863451493102 3.162178452652 + 20.000 37.98 2.000 0.000 10.363 46.500 0.106 0.065 54.111 46.863458837857 3.162194473726 + 20.100 39.45 2.000 0.000 9.978 46.500 0.122 0.131 54.564 46.863466365089 3.162210635372 + 20.200 40.94 2.000 0.000 9.414 46.500 0.091 0.081 54.870 46.863474107548 3.162226867107 + 20.300 42.44 2.000 0.000 7.893 46.500 0.059 0.099 55.176 46.863482705740 3.162244569992 + 20.400 43.94 2.000 0.000 6.546 46.500 0.053 0.056 55.497 46.863490648157 3.162260781694 + 20.500 45.45 2.000 0.000 6.097 46.500 0.041 0.095 55.785 46.863498630310 3.162277003284 + 20.600 46.97 2.000 0.000 6.058 46.500 0.044 0.073 55.958 46.863506711397 3.162293255407 + 20.700 48.49 2.000 0.000 5.468 46.500 0.041 0.085 56.163 46.863514911346 3.162309534001 + 20.800 50.02 2.000 0.000 4.730 46.500 0.035 0.068 56.382 46.863523169135 3.162325849929 + 20.900 51.56 2.000 0.000 3.666 46.500 0.036 0.051 56.480 46.863531412949 3.162342299334 + 21.000 53.10 2.000 0.000 2.254 46.500 0.005 0.066 56.624 46.863539686547 3.162358897729 + 21.100 54.65 2.000 0.000 -0.389 46.500 0.021 0.015 56.732 46.863548101452 3.162375535996 + 21.200 56.20 2.000 0.000 -2.089 46.500 0.024 0.007 56.915 46.863556600382 3.162392028445 + 21.300 57.76 2.000 0.000 -2.044 46.500 0.020 -0.020 57.038 46.863564441283 3.162407205707 + 21.400 59.32 2.000 0.000 -1.909 46.500 0.034 0.023 57.178 46.863573025201 3.162423997307 + 21.500 60.88 2.000 0.000 -1.576 47.402 0.027 0.007 57.200 46.863581618391 3.162440828642 + 21.600 62.45 2.000 0.000 -1.268 48.824 0.019 0.014 57.336 46.863590267174 3.162457619147 + 21.700 64.02 2.000 0.000 -1.075 48.824 -0.003 -0.002 57.452 46.863598934801 3.162474440798 + 21.800 65.59 2.000 0.000 -0.742 48.824 0.004 0.043 57.542 46.863607553868 3.162491367097 + 21.900 67.16 2.000 0.000 0.002 48.824 0.025 0.036 57.668 46.863616183760 3.162508343838 + 22.000 68.74 2.000 0.000 2.896 48.824 0.011 0.038 57.732 46.863624911991 3.162525259627 + 22.100 70.32 2.000 0.000 3.524 48.824 0.015 0.073 57.866 46.863633699379 3.162542077974 + 22.200 71.90 2.000 0.000 3.242 48.824 0.030 0.052 57.956 46.863642442327 3.162558799771 + 22.300 73.49 2.000 0.000 2.613 48.824 0.011 0.055 58.013 46.863651035313 3.162575279108 + 22.400 75.07 2.000 0.000 1.876 48.824 -0.003 0.034 58.107 46.863659680242 3.162591870848 + 22.500 76.65 2.000 0.000 1.048 48.500 0.008 0.045 58.190 46.863668305295 3.162608472694 + 22.600 78.23 2.000 0.000 0.528 48.500 0.014 0.014 58.294 46.863676910087 3.162625070085 + 22.700 79.82 2.000 0.000 0.002 48.500 0.006 0.021 58.488 46.863685567302 3.162641679948 + 22.800 81.42 2.000 0.000 -0.248 48.500 0.012 0.026 58.481 46.863694357457 3.162658354667 + 22.900 83.02 2.000 0.000 -0.344 48.500 0.018 0.031 58.568 46.863703267686 3.162675072062 + 23.000 84.63 2.000 0.000 -0.273 48.174 0.008 0.025 58.717 46.863712195935 3.162691734531 + 23.100 86.23 2.000 0.000 -0.306 47.824 0.015 0.018 58.740 46.863721080397 3.162708362528 + 23.200 87.84 2.000 0.000 -0.312 47.824 0.002 0.020 58.848 46.863729931385 3.162725056085 + 23.300 89.45 2.000 0.000 -0.312 47.824 0.026 0.038 59.021 46.863738997758 3.162742152888 + 23.400 91.06 2.000 0.000 -0.273 47.824 0.012 0.011 59.144 46.863747958463 3.162758945363 + 23.500 92.68 2.000 0.000 -0.344 47.824 0.004 0.035 59.273 46.863756982507 3.162775827075 + 23.600 94.30 2.000 0.000 -0.357 47.824 0.027 0.012 59.273 46.863766024205 3.162792846828 + 23.700 95.93 2.000 0.000 -0.671 47.824 -0.005 0.020 59.403 46.863775090493 3.162809946662 + 23.800 97.55 2.000 0.000 -0.825 47.824 0.012 0.024 59.462 46.863784206027 3.162827090340 + 23.900 99.19 2.000 0.000 -0.960 47.824 0.007 0.025 59.507 46.863793385495 3.162844275919 + 24.000 100.82 2.000 0.000 -0.851 47.824 -0.000 0.017 59.594 46.863802587538 3.162861478136 + 24.100 102.44 2.000 0.000 -0.761 47.824 -0.009 0.010 59.648 46.863811774510 3.162878661011 + 24.200 104.08 2.000 0.000 -0.633 47.824 0.007 0.015 59.669 46.863820936056 3.162895855364 + 24.300 105.71 2.000 0.000 -0.498 47.824 -0.014 0.031 59.648 46.863829735172 3.162912438055 + 24.400 107.35 2.000 0.000 -0.447 47.824 0.002 0.037 59.619 46.863838862716 3.162929714203 + 24.500 108.99 2.000 0.000 -0.402 48.174 -0.014 0.026 59.662 46.863848026035 3.162947022308 + 24.600 110.62 2.000 0.000 -0.357 48.174 -0.007 0.018 59.716 46.863857252975 3.162964255031 + 24.700 112.26 2.000 0.000 -0.318 48.174 -0.008 0.008 59.763 46.863866536104 3.162981390821 + 24.800 113.90 2.000 0.000 -0.312 48.174 -0.018 0.009 59.763 46.863875802153 3.162998501515 + 24.900 115.54 2.000 0.000 -0.190 48.174 -0.005 0.032 59.781 46.863885032192 3.163015658941 + 25.000 117.18 2.000 0.000 -0.062 48.174 -0.003 0.014 59.770 46.863894253271 3.163032836887 + 25.100 118.81 2.000 0.000 -0.049 48.174 -0.003 0.021 59.824 46.863903485434 3.163049959094 + 25.200 120.44 2.000 0.000 0.073 48.174 -0.014 0.030 59.875 46.863912733537 3.163066977707 + 25.300 122.08 2.000 0.000 0.124 48.500 -0.018 0.016 59.911 46.863922588743 3.163084958140 + 25.400 123.71 2.000 0.000 0.169 48.500 -0.010 0.021 59.896 46.863931936768 3.163101969678 + 25.500 125.35 2.000 0.000 0.253 48.500 -0.006 0.008 59.828 46.863941293933 3.163119082707 + 25.600 126.99 2.000 0.000 0.221 48.500 -0.006 0.028 59.756 46.863950633929 3.163136232127 + 25.700 128.63 2.000 0.000 0.253 48.500 -0.017 0.023 59.896 46.863959967075 3.163153338638 + 25.800 130.26 2.000 0.000 0.182 48.500 -0.021 0.026 59.849 46.863969303873 3.163170386027 + 25.900 131.90 2.000 0.000 0.169 48.500 -0.025 0.027 59.810 46.863978641076 3.163187413878 + 26.000 133.53 2.000 0.000 0.169 48.500 -0.017 0.013 59.824 46.863987955818 3.163204460551 + 26.100 135.17 2.000 0.000 0.169 48.824 -0.019 0.020 59.803 46.863997230990 3.163221555130 + 26.200 136.80 2.000 0.000 0.131 49.150 -0.024 0.019 59.756 46.864006485763 3.163238716978 + 26.300 138.44 2.000 0.000 -0.030 50.052 -0.022 0.022 59.803 46.864016461955 3.163257149131 + 26.400 140.07 2.000 0.000 -0.049 51.150 -0.018 0.028 59.763 46.864025752444 3.163274148917 + 26.500 141.70 2.000 0.000 -0.010 52.150 -0.013 0.017 59.687 46.864035059105 3.163291110557 + 26.600 143.33 2.000 0.000 0.156 52.474 -0.026 0.039 59.655 46.864044345293 3.163308113877 + 26.700 144.97 2.000 0.000 0.214 53.422 -0.014 0.014 59.594 46.864053627613 3.163325131280 + 26.800 146.60 2.000 0.000 0.137 53.474 -0.011 0.022 59.623 46.864062943242 3.163342071827 + 26.900 148.23 2.000 0.000 0.131 53.800 -0.014 0.035 59.615 46.864072295533 3.163358923166 + 27.000 149.86 2.000 0.000 0.131 54.450 -0.011 0.026 59.533 46.864081644414 3.163375734433 + 27.100 151.49 2.000 0.000 0.131 54.450 -0.029 0.036 59.468 46.864090937629 3.163392548911 + 27.200 153.12 2.000 0.000 0.086 54.450 -0.031 0.028 59.482 46.864100253807 3.163409549728 + 27.300 154.75 2.000 0.000 -0.036 54.450 -0.009 0.015 59.533 46.864110132513 3.163427659228 + 27.400 156.38 2.000 0.000 -0.601 54.450 -0.015 0.007 59.428 46.864119379553 3.163444550351 + 27.500 158.01 2.000 0.000 -0.864 54.450 -0.018 0.025 59.514 46.864128669369 3.163461377463 + 27.600 159.64 2.000 0.000 -0.883 54.450 -0.021 0.019 59.460 46.864138028724 3.163478185316 + 27.700 161.27 2.000 0.000 -0.844 54.800 -0.004 0.009 59.450 46.864147453369 3.163495023774 + 27.800 162.90 2.000 0.000 -0.876 55.124 -0.016 -0.003 59.468 46.864156888279 3.163511881550 + 27.900 164.53 2.000 0.000 -0.998 55.450 -0.009 0.022 59.536 46.864166300478 3.163528740450 + 28.000 166.17 2.000 0.000 -1.133 55.450 -0.003 -0.003 59.536 46.864175703355 3.163545612978 + 28.100 167.80 2.000 0.000 -1.268 55.450 -0.008 0.029 59.529 46.864185095186 3.163562482901 + 28.200 169.44 2.000 0.000 -1.236 55.774 -0.009 -0.002 59.554 46.864194579393 3.163579578537 + 28.300 171.08 2.000 0.000 -1.236 56.124 -0.005 -0.000 59.583 46.864204451965 3.163597447172 + 28.400 172.71 2.000 0.000 -1.152 56.450 -0.005 -0.004 59.608 46.864213697169 3.163614214556 + 28.500 174.35 2.000 0.000 -1.223 56.450 -0.005 0.003 59.626 46.864222946430 3.163630975900 + 28.600 175.98 2.000 0.000 -1.152 56.676 -0.012 0.017 59.750 46.864232217842 3.163647733667 + 28.700 177.61 2.000 0.000 -1.069 56.774 -0.003 0.021 59.738 46.864241530266 3.163664480979 + 28.800 179.25 2.000 0.000 -0.979 56.774 -0.008 0.004 59.828 46.864250837782 3.163681162382 + 28.900 180.89 2.000 0.000 -0.889 57.774 -0.010 0.030 59.896 46.864260100414 3.163697779069 + 29.000 182.52 2.000 0.000 -0.844 58.375 -0.014 0.010 59.975 46.864269353751 3.163714456950 + 29.100 184.17 2.000 0.000 -0.761 59.100 -0.014 0.032 60.022 46.864278778471 3.163731226257 + 29.200 185.81 2.000 0.000 -0.472 59.424 -0.012 0.025 60.029 46.864288833520 3.163748317857 + 29.300 187.45 2.000 0.000 -0.440 59.424 -0.013 -0.010 59.990 46.864299584695 3.163765694112 + 29.400 189.08 2.000 0.000 -0.678 61.486 -0.018 0.012 60.101 46.864309350088 3.163781765930 + 29.500 190.73 2.000 0.000 -0.665 62.575 -0.032 0.024 60.256 46.864318763184 3.163798479187 + 29.600 192.39 2.000 0.000 -0.742 63.575 -0.016 0.004 60.296 46.864327916157 3.163815665212 + 29.700 194.04 2.000 0.000 -1.184 66.801 -0.018 0.046 60.217 46.864337083462 3.163832861096 + 29.800 195.70 2.000 0.000 -1.864 86.701 -0.017 0.010 60.310 46.864346375665 3.163849973319 + 29.900 197.36 2.000 0.000 -1.781 95.024 0.039 0.008 60.530 46.864355759520 3.163867154422 + 30.000 199.04 2.000 0.000 -1.640 95.024 0.327 0.004 61.379 46.864365268051 3.163884501067 + 30.100 200.75 2.000 0.000 -1.627 96.557 0.272 0.010 62.621 46.864375019101 3.163902110086 + 30.200 202.50 2.000 0.000 -1.589 97.000 0.407 0.024 63.928 46.864385391750 3.163920745398 + 30.300 204.30 2.000 0.000 -1.544 96.024 0.496 0.032 65.700 46.864396142894 3.163940271006 + 30.400 206.17 2.000 0.000 -0.947 91.826 0.618 0.002 67.640 46.864406635884 3.163959643876 + 30.500 208.09 2.000 0.000 -0.806 83.074 0.655 -0.020 69.998 46.864417423189 3.163979806921 + 30.600 210.09 2.000 0.000 -0.716 72.499 0.721 -0.037 72.508 46.864428540118 3.164000829178 + 30.700 212.15 2.000 0.000 -0.472 72.174 0.545 -0.029 74.858 46.864439941367 3.164022686686 + 30.800 214.27 2.000 0.000 -0.248 72.824 0.557 -0.027 76.803 46.864451630850 3.164045250410 + 30.900 216.43 2.000 0.000 -0.068 72.824 0.571 -0.031 78.851 46.864463658465 3.164068395746 + 31.000 218.66 2.000 0.000 0.034 73.824 0.539 -0.015 80.849 46.864476029713 3.164092064862 + 31.100 220.94 2.000 0.000 -0.036 73.824 0.514 0.005 82.718 46.864488694658 3.164116228419 + 31.200 223.27 2.000 0.000 -0.126 73.824 0.526 -0.006 84.647 46.864502294310 3.164142174479 + 31.300 225.65 2.000 0.000 -0.293 74.706 0.540 -0.022 86.624 46.864516152347 3.164168687676 + 31.400 228.10 2.000 0.000 -0.389 78.499 0.508 -0.024 88.600 46.864529585440 3.164194574749 + 31.500 230.59 2.000 0.000 -0.440 84.619 0.527 -0.026 90.465 46.864543179883 3.164221092031 + 31.600 233.15 2.000 0.000 -0.440 86.400 0.569 -0.024 92.431 46.864556922705 3.164248271906 + 31.700 235.75 2.000 0.000 -0.440 87.945 0.552 -0.030 94.479 46.864570886979 3.164276084437 + 31.800 238.41 3.000 0.000 -0.402 90.050 0.497 -0.057 96.456 46.864585230188 3.164304413591 + 31.900 241.12 3.000 0.000 -0.402 91.505 0.690 -0.049 98.036 46.864600092577 3.164333152627 + 32.000 243.90 3.000 0.000 -0.318 91.374 0.736 -0.052 100.600 46.864615456247 3.164362325494 + 32.100 246.74 3.000 0.000 -0.235 91.933 0.435 -0.050 102.771 46.864631101818 3.164392042309 + 32.200 249.62 3.000 0.000 -0.184 92.050 0.513 -0.024 104.538 46.864643335023 3.164415580543 + 32.300 252.52 3.000 0.000 0.099 94.927 0.472 -0.040 106.436 46.864652834935 3.164434094409 + 32.400 255.47 3.000 0.000 0.208 97.175 0.473 -0.025 108.146 46.864668088366 3.164464167571 + 32.500 258.47 3.000 0.000 0.253 97.499 0.447 0.011 109.755 46.864684248280 3.164496080667 + 32.600 261.52 3.000 0.000 0.458 97.499 0.467 -0.018 111.490 46.864700837018 3.164528335403 + 32.700 264.60 3.000 0.000 0.798 97.499 0.465 -0.029 113.301 46.864717862585 3.164560813812 + 32.800 267.74 3.000 0.000 0.791 97.499 0.451 0.007 115.036 46.864735212570 3.164593678611 + 32.900 270.92 3.000 0.000 0.868 97.175 0.454 0.005 116.685 46.864752797107 3.164627112854 + 33.000 274.15 3.000 0.000 0.798 96.499 0.445 0.030 118.302 46.864770660814 3.164661061108 + 33.100 277.42 3.000 0.000 0.984 94.980 0.419 0.051 119.864 46.864788899336 3.164695354367 + 33.200 280.74 3.000 0.000 1.324 87.797 0.469 0.038 121.506 46.864807535888 3.164729923112 + 33.300 284.11 3.000 0.000 1.401 85.074 0.420 0.035 123.256 46.864830343940 3.164771824716 + 33.400 287.52 3.000 0.000 1.600 78.488 0.434 0.071 124.984 46.864849652173 3.164807099690 + 33.500 290.97 3.000 0.000 2.812 62.272 0.379 0.059 126.586 46.864869210070 3.164842648027 + 33.600 294.47 3.000 0.000 4.288 25.084 0.322 0.073 128.004 46.864889002442 3.164878399619 + 33.700 297.98 3.000 1.818 7.483 0.000 -0.061 0.129 127.990 46.864908954640 3.164914206894 + 33.800 301.49 3.000 3.945 11.300 0.000 -0.230 0.225 127.641 46.864928978909 3.164949793166 + 33.900 304.97 3.000 1.701 11.807 0.000 -0.229 0.320 127.389 46.864949072264 3.164984897124 + 34.000 308.43 3.000 2.423 12.134 0.000 -0.196 0.342 126.359 46.864969299907 3.165019454516 + 34.100 311.87 3.000 8.219 15.258 0.000 -0.280 0.382 125.880 46.864989684884 3.165053540649 + 34.200 315.28 3.000 13.039 16.624 0.000 -0.314 0.426 124.692 46.865010528612 3.165087716497 + 34.300 318.67 3.000 15.366 16.823 0.000 -0.374 0.408 123.007 46.865033660859 3.165124804205 + 34.400 322.01 3.000 15.719 17.266 0.000 -0.389 0.464 121.607 46.865054268744 3.165157008686 + 34.500 325.32 3.000 14.288 18.658 0.000 -0.416 0.583 120.653 46.865074901248 3.165188332608 + 34.600 328.59 3.000 13.173 17.106 0.000 -0.361 0.538 118.914 46.865095637361 3.165218763227 + 34.700 331.83 3.000 5.759 18.344 0.000 -0.310 0.467 117.920 46.865116565336 3.165248357025 + 34.800 335.04 3.000 0.000 21.109 0.000 -0.233 0.566 117.247 46.865137733038 3.165277179106 + 34.900 338.23 3.000 0.000 24.368 0.000 -0.188 0.603 116.793 46.865159137954 3.165305284301 + 35.000 341.41 3.000 0.000 24.105 0.000 -0.181 0.595 116.077 46.865180747141 3.165332696929 + 35.100 344.57 3.000 0.000 18.222 0.000 -0.188 0.613 115.598 46.865202541321 3.165359392110 + 35.200 347.72 3.000 0.000 19.473 0.000 -0.177 0.597 115.083 46.865225558497 3.165386523163 + 35.300 350.84 3.000 0.000 20.717 0.000 -0.171 0.535 114.601 46.865250339366 3.165414638095 + 35.400 353.96 3.000 0.000 24.470 0.000 -0.175 0.546 113.935 46.865272748582 3.165439247835 + 35.500 357.06 3.000 0.000 31.277 0.000 -0.173 0.651 113.420 46.865295303352 3.165463225426 + 35.600 360.14 3.000 1.439 34.485 0.000 -0.182 0.790 112.898 46.865318060602 3.165486386803 + 35.700 363.21 3.000 4.619 35.075 0.000 -0.211 0.884 112.145 46.865341069372 3.165508537691 + 35.800 366.25 3.000 5.761 36.698 0.000 -0.241 0.880 111.137 46.865364315730 3.165529562682 + 35.900 369.27 3.000 6.039 37.897 0.000 -0.273 0.950 110.295 46.865387774653 3.165549410204 + 36.000 372.27 3.000 6.263 38.173 0.000 -0.264 0.947 109.193 46.865411433598 3.165568043699 + 36.100 375.23 3.000 1.641 38.186 0.000 -0.247 0.925 108.272 46.865435298065 3.165585418146 + 36.200 378.18 3.000 0.000 37.397 12.639 -0.208 0.985 107.685 46.865460946065 3.165602519045 + 36.300 381.11 3.000 0.000 34.029 39.326 -0.096 0.965 107.242 46.865487138109 3.165618323384 + 36.400 384.05 3.000 0.000 27.691 48.649 0.182 0.846 107.091 46.865511866251 3.165631881595 + 36.500 387.00 3.000 0.000 25.125 65.666 0.115 0.775 107.656 46.865536985018 3.165644518100 + 36.600 389.98 3.000 0.000 24.720 73.727 0.211 0.692 108.552 46.865562481073 3.165656384868 + 36.700 392.98 3.000 0.000 17.933 74.148 0.291 0.614 109.748 46.865588362136 3.165667611054 + 36.800 396.02 3.000 0.000 15.912 74.499 0.388 0.532 111.195 46.865614660647 3.165678321987 + 36.900 399.09 3.000 0.000 18.466 76.681 0.342 0.469 112.397 46.865641388619 3.165688600160 + 37.000 402.20 3.000 0.000 14.488 76.800 0.373 0.405 113.953 46.865668540429 3.165698471905 + 37.100 405.35 3.000 0.000 10.697 78.124 0.395 0.380 115.382 46.865696124319 3.165707959694 + 37.200 408.54 3.000 0.000 10.325 81.450 0.375 0.316 116.746 46.865718325900 3.165715258590 + 37.300 411.75 3.000 0.000 8.702 85.424 0.414 0.270 118.302 46.865735615545 3.165720790601 + 37.400 414.99 3.000 0.000 8.881 91.374 0.366 0.243 119.763 46.865763209794 3.165729348982 + 37.500 418.28 3.000 0.000 11.768 92.050 0.374 0.245 121.117 46.865792222302 3.165738001642 + 37.600 421.61 3.000 0.000 13.308 91.050 0.472 0.290 123.140 46.865821689833 3.165746389196 + 37.700 424.98 3.000 0.000 14.713 87.400 0.396 0.407 124.591 46.865851628117 3.165754439853 + 37.800 428.40 3.000 0.000 15.329 87.074 0.436 0.508 126.186 46.865882034137 3.165762048359 + 37.900 431.86 3.000 0.000 17.279 82.074 0.415 0.565 127.774 46.865912896667 3.165769098071 + 38.000 435.37 3.000 0.000 18.280 80.774 0.386 0.634 129.351 46.865944199360 3.165775461817 + 38.100 438.91 3.000 0.000 12.121 81.124 0.356 0.661 130.690 46.865975914308 3.165781024234 + 38.200 442.49 3.000 0.000 12.730 81.450 0.359 0.588 131.734 46.866008020518 3.165785769532 + 38.300 446.10 3.000 0.000 14.142 82.969 0.393 0.551 132.774 46.866038631536 3.165789572912 + 38.400 449.76 3.000 0.000 15.187 89.567 0.384 0.552 134.078 46.866071152220 3.165792958014 + 38.500 453.46 3.000 0.000 17.863 99.748 0.362 0.578 135.428 46.866104469425 3.165795732374 + 38.600 457.20 3.000 0.000 17.041 99.748 0.366 0.684 136.796 46.866138135153 3.165797743870 + 38.700 460.97 3.000 0.000 12.724 99.748 0.358 0.722 138.225 46.866172121587 3.165798848977 + 38.800 464.78 3.000 0.000 9.016 99.748 0.348 0.677 139.712 46.866206461984 3.165798964697 + 38.900 468.63 3.000 0.000 9.722 99.748 0.344 0.515 141.076 46.866241180722 3.165798179455 + 39.000 472.52 3.000 0.000 12.608 99.748 0.337 0.465 142.585 46.866276240807 3.165796705185 + 39.100 476.45 3.000 0.000 12.679 99.748 0.316 0.481 144.615 46.866311579370 3.165794654638 + 39.200 480.41 3.000 0.000 10.402 99.748 0.328 0.521 146.052 46.866347163339 3.165791953617 + 39.300 484.40 3.000 0.000 10.267 99.748 0.286 0.549 147.820 46.866382995750 3.165788507173 + 39.400 488.43 3.000 0.000 9.965 99.748 0.287 0.469 148.943 46.866419093057 3.165784347678 + 39.500 492.48 3.053 0.000 9.260 99.748 0.261 0.362 150.138 46.866455460175 3.165779587697 + 39.600 496.57 4.000 0.000 8.984 99.748 0.273 0.343 151.053 46.866492092929 3.165774307087 + 39.700 500.69 4.000 0.000 9.869 99.748 0.175 0.371 151.153 46.866528992900 3.165768524513 + 39.800 504.84 4.000 0.000 9.382 99.748 0.381 0.391 152.921 46.866566166933 3.165762223021 + 39.900 509.03 4.000 0.000 6.860 99.748 0.186 0.358 153.717 46.866603598102 3.165755369338 + 40.000 513.25 4.000 0.000 4.570 99.748 0.296 0.345 155.153 46.866641263443 3.165747951904 + 40.100 517.49 4.000 0.000 1.972 99.748 0.267 0.255 155.967 46.866679169439 3.165740042647 + 40.200 521.77 4.000 0.000 0.843 94.649 0.268 0.155 156.989 46.866717343362 3.165731779725 + 40.300 526.09 4.000 0.000 0.150 90.579 0.254 0.067 158.005 46.866755792297 3.165723295241 + 40.400 530.43 4.000 0.000 0.759 72.380 0.240 0.055 158.905 46.866794517835 3.165714671329 + 40.500 534.80 4.000 0.000 0.477 60.031 0.306 0.005 160.161 46.866833529113 3.165705947414 + 40.600 539.21 4.000 1.110 -0.748 22.691 0.233 0.026 161.201 46.866872771490 3.165697116919 + 40.700 543.63 4.000 16.534 -2.185 3.300 -0.284 0.049 160.841 46.866912039385 3.165688217024 + 40.800 548.02 4.000 51.161 -6.169 1.974 -0.826 -0.058 158.131 46.866950989526 3.165679422091 + 40.900 552.34 4.000 62.751 -5.688 0.000 -0.941 -0.147 154.091 46.866989265157 3.165670920994 + 41.000 556.57 4.000 67.348 -8.787 0.000 -1.217 -0.076 150.765 46.867026634617 3.165662735264 + 41.100 560.68 4.000 68.734 -11.481 0.000 -1.039 -0.284 146.365 46.867063056835 3.165654865255 + 41.200 564.70 4.000 65.980 -8.928 0.000 -1.043 -0.445 143.348 46.867098605924 3.165647493872 + 41.300 568.60 4.000 62.241 -6.560 0.000 -1.074 -0.348 138.859 46.867138837861 3.165639833418 + 41.400 572.40 4.000 53.673 -4.514 0.000 -0.947 -0.353 136.623 46.867172613321 3.165634093412 + 41.500 576.11 4.000 43.448 -4.585 0.000 -0.846 -0.360 133.844 46.867205611238 3.165629045377 + 41.600 579.73 4.000 35.187 -9.088 0.000 -0.793 -0.246 130.294 46.867237923140 3.165624518589 + 41.700 583.28 4.000 30.001 -16.427 0.000 -0.808 -0.240 127.695 46.867269600476 3.165620346109 + 41.800 586.77 4.000 28.898 -21.303 0.000 -0.660 -0.445 125.959 46.867300671306 3.165616590484 + 41.900 590.19 4.000 27.562 -24.568 0.000 -0.702 -0.562 123.958 46.867331204599 3.165613501183 + 42.000 593.55 4.000 24.505 -29.072 0.000 -0.650 -0.669 121.553 46.867361271440 3.165611252513 + 42.100 596.85 4.000 21.244 -30.528 0.000 -0.578 -0.745 119.702 46.867390890901 3.165609903610 + 42.200 600.11 4.000 19.214 -30.951 0.000 -0.553 -0.839 117.881 46.867420062294 3.165609541044 + 42.300 603.32 4.000 16.199 -28.969 0.000 -0.494 -0.890 116.170 46.867445285541 3.165610184459 + 42.400 606.48 4.000 11.476 -22.534 2.624 -0.422 -0.850 114.669 46.867473184644 3.165611984245 + 42.500 609.61 4.000 7.621 -21.726 7.425 -0.329 -0.750 113.406 46.867501222393 3.165614936137 + 42.600 612.72 4.000 0.000 -27.487 7.099 -0.145 -0.680 113.067 46.867529001522 3.165618801730 + 42.700 615.81 4.000 0.000 -33.787 7.099 -0.160 -0.684 112.678 46.867556607407 3.165623434282 + 42.800 618.89 4.000 0.000 -36.353 6.775 -0.130 -0.789 112.318 46.867584051552 3.165628896859 + 42.900 621.97 4.000 0.000 -37.598 7.002 -0.127 -0.896 112.138 46.867611302011 3.165635378720 + 43.000 625.03 4.000 0.000 -37.399 15.460 -0.113 -0.912 111.796 46.867638334532 3.165643015252 + 43.100 628.09 4.000 0.000 -32.138 26.894 -0.110 -0.926 111.569 46.867665136014 3.165651842810 + 43.200 631.13 4.000 0.000 -28.437 34.749 -0.002 -0.844 111.404 46.867691700960 3.165661808560 + 43.300 634.18 4.000 0.000 -28.642 39.477 0.027 -0.752 111.562 46.867718329450 3.165672918525 + 43.400 637.24 4.000 0.000 -32.459 41.550 0.081 -0.710 111.897 46.867744560233 3.165684868612 + 43.500 640.31 4.000 0.000 -36.122 40.979 0.082 -0.758 112.484 46.867770698834 3.165697756382 + 43.600 643.40 4.000 0.000 -37.232 40.874 0.064 -0.808 112.866 46.867796731528 3.165711625826 + 43.700 646.49 4.000 0.000 -37.277 42.769 0.053 -0.852 113.406 46.867822604852 3.165726532536 + 43.800 649.59 4.000 0.000 -36.520 51.025 0.071 -0.906 113.820 46.867848255897 3.165742550480 + 43.900 652.70 4.000 0.000 -36.000 54.800 0.184 -0.903 114.529 46.867873670598 3.165759741398 + 44.000 655.83 4.000 0.000 -38.252 54.450 0.195 -0.920 115.422 46.867898891423 3.165778129089 + 44.100 658.99 4.000 0.000 -38.778 54.124 0.180 -0.962 115.990 46.867923939769 3.165797718363 + 44.200 662.17 4.000 0.000 -38.335 53.800 0.217 -1.033 116.653 46.867948758873 3.165818546629 + 44.300 665.37 4.000 0.000 -37.258 53.800 0.216 -1.041 117.351 46.867979569206 3.165846646328 + 44.400 668.60 4.000 0.000 -34.409 53.539 0.231 -1.049 118.179 46.868003583003 3.165870482409 + 44.500 671.85 4.000 0.000 -36.841 51.101 0.228 -1.066 118.950 46.868027191866 3.165895648306 + 44.600 675.13 4.000 0.000 -39.753 47.247 0.200 -1.073 119.749 46.868050404161 3.165922067292 + 44.700 678.43 4.000 0.000 -40.279 44.524 0.156 -1.097 120.523 46.868073190707 3.165949697412 + 44.800 681.75 4.000 0.000 -40.266 44.524 0.109 -1.088 120.919 46.868095465805 3.165978555963 + 44.900 685.08 4.000 0.000 -40.298 44.200 0.127 -1.122 121.387 46.868117141127 3.166008613656 + 45.000 688.42 4.000 0.000 -41.254 44.524 0.122 -1.117 121.754 46.868138173468 3.166039793722 + 45.100 691.76 4.000 0.000 -41.517 44.524 0.124 -1.158 122.107 46.868158530590 3.166072052004 + 45.200 695.12 4.000 0.000 -40.664 44.850 0.101 -1.125 122.442 46.868178582998 3.166106107995 + 45.300 698.49 4.000 0.000 -38.233 44.850 0.139 -1.148 122.780 46.868199659973 3.166144697506 + 45.400 701.87 4.000 0.000 -38.573 44.850 0.132 -1.184 123.216 46.868217683260 3.166180278452 + 45.500 705.25 4.000 0.000 -38.598 44.524 0.126 -1.117 123.497 46.868234910736 3.166216838719 + 45.600 708.65 4.000 0.000 -38.156 44.200 0.132 -1.082 123.850 46.868251350292 3.166254290418 + 45.700 712.05 4.000 0.000 -38.188 44.200 0.120 -1.085 124.177 46.868267020446 3.166292563866 + 45.800 715.47 4.000 0.000 -38.040 43.850 0.107 -1.084 124.537 46.868281914949 3.166331641787 + 45.900 718.90 4.000 0.000 -37.508 41.516 0.132 -1.016 124.663 46.868296004943 3.166371486658 + 46.000 722.33 4.000 0.000 -37.604 37.073 0.092 -1.064 124.937 46.868309264208 3.166412005400 + 46.100 725.76 4.000 0.000 -37.623 37.073 0.066 -1.122 125.153 46.868321661536 3.166453112221 + 46.200 729.19 4.000 0.000 -36.757 37.399 0.027 -1.131 124.804 46.868333711159 3.166496923519 + 46.300 732.62 4.000 0.000 -36.064 38.952 0.043 -1.129 124.850 46.868345280091 3.166543744127 + 46.400 736.06 4.000 0.000 -36.154 41.550 0.048 -1.085 124.732 46.868354710513 3.166586517850 + 46.500 739.50 4.000 0.000 -37.322 40.874 0.082 -1.031 124.904 46.868363260258 3.166629747556 + 46.600 742.94 4.000 0.000 -38.598 39.666 0.092 -1.023 124.991 46.868370944906 3.166673372781 + 46.700 746.38 4.000 0.000 -38.092 38.329 0.071 -1.078 125.218 46.868377703064 3.166717341236 + 46.800 749.83 4.000 0.000 -37.784 37.574 0.046 -1.138 125.452 46.868383462927 3.166761599246 + 46.900 753.27 4.000 0.000 -37.796 37.574 0.030 -1.090 125.311 46.868388230848 3.166806088770 + 47.000 756.70 4.000 0.000 -37.918 36.672 0.035 -1.098 125.358 46.868392038023 3.166850783725 + 47.100 760.14 4.000 0.000 -38.169 35.329 0.040 -1.101 125.257 46.868394871780 3.166895665165 + 47.200 763.57 4.000 0.000 -38.553 32.274 0.022 -1.084 125.205 46.868396481518 3.166933875094 + 47.300 767.01 4.000 0.000 -38.791 31.274 0.006 -1.072 125.070 46.868397258441 3.166962859621 + 47.400 770.44 4.000 0.000 -38.893 31.274 -0.011 -1.089 125.124 46.868397661699 3.167005913829 + 47.500 773.87 4.000 0.000 -39.336 31.274 -0.007 -1.064 124.825 46.868397171229 3.167050849981 + 47.600 777.29 4.000 0.000 -40.215 31.274 -0.009 -1.016 124.483 46.868395745035 3.167095699055 + 47.700 780.71 4.000 0.000 -40.857 31.274 -0.018 -1.049 124.505 46.868393398870 3.167140407376 + 47.800 784.12 4.000 0.000 -40.921 31.274 -0.023 -1.092 124.328 46.868390121118 3.167184917326 + 47.900 787.53 4.000 0.000 -41.043 31.274 -0.018 -1.135 124.008 46.868385865594 3.167229180746 + 48.000 790.93 4.000 0.000 -41.293 31.274 -0.032 -1.117 123.734 46.868380612467 3.167273140676 + 48.100 794.32 4.000 0.000 -42.108 31.274 -0.038 -1.140 123.655 46.868374387551 3.167316740511 + 48.200 797.70 4.000 0.000 -42.512 31.599 -0.021 -1.134 123.490 46.868367213302 3.167359943170 + 48.300 801.08 4.000 0.000 -43.339 31.949 -0.013 -1.082 123.101 46.868357810686 3.167409115453 + 48.400 804.46 4.000 0.000 -43.468 31.949 -0.028 -1.140 123.148 46.868348617547 3.167451363134 + 48.500 807.83 4.000 0.000 -43.314 32.599 -0.025 -1.172 122.888 46.868338493461 3.167493053862 + 48.600 811.18 4.000 0.000 -42.621 34.827 -0.017 -1.146 122.611 46.868327424434 3.167534128070 + 48.700 814.54 4.000 0.000 -40.690 42.602 -0.007 -1.117 122.489 46.868315414616 3.167574605324 + 48.800 817.90 4.000 0.000 -39.176 43.850 0.077 -1.093 122.406 46.868302504124 3.167614543583 + 48.900 821.26 4.000 0.000 -38.515 43.850 0.128 -1.126 122.834 46.868288708904 3.167653961779 + 49.000 824.63 4.000 0.000 -38.541 44.524 0.124 -1.118 123.083 46.868273999779 3.167692803742 + 49.100 828.01 4.000 0.000 -36.058 44.524 0.110 -1.154 123.342 46.868258340282 3.167730981399 + 49.200 831.40 4.000 0.000 -32.337 44.752 0.132 -1.116 123.763 46.868241670033 3.167768590974 + 49.300 834.80 4.000 0.000 -36.109 44.850 0.130 -1.095 124.069 46.868222073959 3.167809526297 + 49.400 838.20 4.000 0.000 -37.598 48.433 0.132 -1.096 124.271 46.868203638506 3.167845478918 + 49.500 841.62 4.000 0.000 -35.776 50.649 0.173 -1.082 124.804 46.868184396185 3.167880720662 + 49.600 845.05 4.000 0.000 -31.721 51.596 0.185 -1.063 125.369 46.868164345774 3.167915210114 + 49.700 848.50 4.000 0.000 -31.497 53.851 0.210 -1.078 125.981 46.868143468707 3.167948904307 + 49.800 851.97 4.000 0.000 -30.053 56.156 0.199 -1.022 126.773 46.868121763175 3.167981794262 + 49.900 855.45 4.000 0.000 -25.659 66.100 0.236 -1.006 128.364 46.868099279975 3.168013898394 + 50.000 858.95 4.000 0.000 -25.146 99.748 0.239 -0.962 128.645 46.868076068442 3.168045245373 + 50.100 862.48 4.000 0.000 -23.401 99.748 0.283 -0.907 129.210 46.868052140174 3.168075872486 + 50.200 866.03 4.000 0.000 -23.208 99.748 0.292 -0.863 130.107 46.868027951792 3.168105287729 + 50.300 869.60 4.000 0.000 -22.817 99.748 0.316 -0.846 131.108 46.868005753274 3.168131107770 + 50.400 873.21 4.000 0.000 -20.398 99.748 0.320 -0.821 132.288 46.867979860729 3.168159904068 + 50.500 876.84 4.000 0.000 -18.711 99.748 0.309 -0.780 133.880 46.867953335128 3.168188065393 + 50.600 880.50 4.000 0.000 -17.325 99.748 0.329 -0.713 134.935 46.867926158906 3.168215596159 + 50.700 884.19 4.000 0.000 -15.959 99.748 0.327 -0.654 135.975 46.867898355674 3.168242540554 + 50.800 887.91 4.000 0.000 -15.587 99.748 0.311 -0.590 137.318 46.867870006253 3.168268982884 + 50.900 891.65 4.000 0.000 -13.463 99.748 0.318 -0.559 138.632 46.867841181053 3.168294992403 + 51.000 895.43 4.000 0.000 -11.885 99.748 0.318 -0.487 139.460 46.867811901689 3.168320613284 + 51.100 899.24 4.000 0.000 -11.859 99.748 0.335 -0.428 140.302 46.867782162583 3.168345862239 + 51.200 903.08 4.000 0.000 -12.026 99.748 0.306 -0.435 140.835 46.867752000693 3.168370717972 + 51.300 906.95 4.000 0.000 -11.609 99.748 0.350 -0.436 141.678 46.867725341170 3.168392090460 + 51.400 910.84 4.000 0.000 -11.840 99.748 0.300 -0.412 142.585 46.867694937445 3.168415878522 + 51.500 914.76 4.000 0.000 -12.110 99.748 0.316 -0.437 143.607 46.867663533893 3.168439818279 + 51.600 918.72 4.000 0.000 -11.577 99.748 0.295 -0.422 144.554 46.867631721902 3.168463420673 + 51.700 922.70 4.000 0.000 -10.685 99.748 0.315 -0.403 145.616 46.867599506454 3.168486670459 + 51.800 926.70 4.000 0.000 -9.646 99.748 0.292 -0.400 146.740 46.867566894501 3.168509565739 + 51.900 930.74 4.000 0.000 -8.870 99.748 0.304 -0.361 147.812 46.867533881773 3.168532125924 + 52.000 934.81 4.000 0.000 -10.294 99.748 0.310 -0.298 148.882 46.867500476950 3.168554411419 + 52.100 938.91 4.000 0.000 -12.122 99.748 0.298 -0.323 149.958 46.867466714138 3.168576480787 + 52.200 943.04 4.000 0.000 -12.546 99.748 0.304 -0.376 151.085 46.867432605647 3.168598310402 + 52.300 947.19 4.000 0.000 -12.809 99.748 0.313 -0.448 152.140 46.867398362851 3.168619642102 + 52.400 951.37 4.000 0.000 -12.283 99.748 0.309 -0.453 153.036 46.867363571955 3.168640623264 + 52.500 955.58 4.000 0.000 -10.557 99.748 0.303 -0.477 154.030 46.867328274153 3.168661197361 + 52.600 959.82 4.000 0.000 -9.980 99.748 0.316 -0.426 155.038 46.867292589930 3.168681324256 + 52.700 964.08 4.000 0.000 -10.134 99.748 0.310 -0.456 156.100 46.867256515765 3.168701007612 + 52.800 968.38 4.000 0.000 -10.153 99.748 0.314 -0.447 157.223 46.867220037106 3.168720232730 + 52.900 972.70 4.000 0.000 -9.563 99.748 0.295 -0.386 158.170 46.867183165330 3.168739013581 + 53.000 977.06 4.000 0.000 -9.499 99.748 0.317 -0.365 159.232 46.867145943383 3.168757402876 + 53.100 981.44 4.000 0.000 -9.178 99.748 0.296 -0.390 160.273 46.867108388242 3.168775420660 + 53.200 985.85 4.000 0.000 -8.748 99.748 0.310 -0.391 161.381 46.867070471290 3.168793047488 + 53.300 990.30 4.000 0.000 -8.985 99.748 0.302 -0.341 162.350 46.867022937528 3.168814361842 + 53.400 994.77 4.000 0.000 -9.056 99.748 0.294 -0.348 163.372 46.866984218637 3.168831135778 + 53.500 999.27 4.000 0.000 -9.255 99.748 0.291 -0.356 164.398 46.866945175660 3.168847546332 + 53.600 1003.80 4.000 0.000 -9.319 99.748 0.286 -0.338 165.442 46.866905797319 3.168863577021 + 53.700 1008.36 4.000 0.000 -8.607 99.748 0.310 -0.372 166.476 46.866866091045 3.168879203718 + 53.800 1012.94 4.000 0.000 -8.132 99.748 0.300 -0.368 167.545 46.866826069671 3.168894408573 + 53.900 1017.55 4.000 0.000 -7.972 99.748 0.280 -0.351 168.528 46.866785727214 3.168909202754 + 54.000 1022.19 4.000 0.000 -8.357 99.748 0.295 -0.303 169.514 46.866745047651 3.168923620157 + 54.100 1026.86 4.000 0.000 -9.069 99.748 0.286 -0.328 170.609 46.866704038992 3.168937675234 + 54.200 1031.55 4.000 0.000 -9.146 99.748 0.277 -0.354 171.505 46.866663349124 3.168951157876 + 54.300 1036.27 4.000 0.000 -9.024 99.748 0.286 -0.362 172.492 46.866628711642 3.168962262580 + 54.400 1041.01 4.000 0.000 -9.531 99.748 0.275 -0.366 173.482 46.866587661534 3.168974959103 + 54.500 1045.77 4.000 0.000 -10.057 99.748 0.270 -0.383 174.256 46.866545556304 3.168987428795 + 54.600 1050.57 4.000 0.000 -9.518 99.748 0.287 -0.427 175.116 46.866503135504 3.168999414144 + 54.700 1055.38 4.000 0.000 -8.780 99.748 0.263 -0.407 176.005 46.866460398081 3.169010905819 + 54.800 1060.22 4.000 0.000 -7.754 99.748 0.275 -0.368 176.880 46.866417368926 3.169021892237 + 54.900 1065.09 4.000 0.000 -7.375 99.748 0.270 -0.341 177.787 46.866374080800 3.169032382422 + 55.000 1069.98 4.000 0.000 -7.465 99.748 0.249 -0.309 178.684 46.866330537501 3.169042432052 + 55.100 1074.89 4.000 0.000 -7.394 99.748 0.264 -0.308 179.451 46.866286732515 3.169052096788 + 55.200 1079.83 4.000 0.000 -7.625 99.748 0.235 -0.290 180.365 46.866242676398 3.169061405513 + 55.300 1084.79 4.000 0.000 -7.651 99.748 0.252 -0.295 181.294 46.866185945618 3.169072793977 + 55.400 1089.78 4.000 0.000 -7.215 99.748 0.241 -0.287 182.115 46.866141357234 3.169081274876 + 55.500 1094.79 4.000 0.000 -6.060 99.748 0.241 -0.261 183.069 46.866096518311 3.169089384305 + 55.600 1099.82 4.000 0.000 -5.855 99.748 0.241 -0.242 184.023 46.866051430520 3.169097153812 + 55.700 1104.88 4.000 0.000 -6.560 99.748 0.222 -0.226 184.945 46.866006113824 3.169104620692 + 55.800 1109.96 4.000 0.000 -6.047 99.748 0.242 -0.222 185.859 46.865960594006 3.169111800615 + 55.900 1115.06 4.000 0.000 -5.149 99.748 0.218 -0.231 186.676 46.865914870250 3.169118678195 + 56.000 1120.18 4.000 0.000 -3.949 99.748 0.229 -0.194 187.450 46.865868922994 3.169125270003 + 56.100 1125.32 4.000 0.000 -3.866 99.748 0.220 -0.117 188.163 46.865822759207 3.169131634951 + 56.200 1130.48 4.000 0.000 -3.911 99.748 0.213 -0.120 188.750 46.865773924274 3.169138162217 + 56.300 1135.67 4.000 0.000 -4.155 99.748 0.218 -0.112 189.538 46.865718727119 3.169145317846 + 56.400 1140.87 4.000 0.000 -5.130 99.748 0.225 -0.112 190.287 46.865672002234 3.169151155885 + 56.500 1146.10 5.000 0.000 -5.393 99.748 0.188 -0.166 190.982 46.865625091959 3.169156781420 + 56.600 1151.34 5.000 0.000 -4.463 99.748 0.129 -0.147 191.396 46.865577991751 3.169162190947 + 56.700 1156.60 5.000 0.000 -3.962 99.748 0.231 -0.168 192.390 46.865530697786 3.169167405765 + 56.800 1161.88 5.000 0.000 -3.520 99.748 0.212 -0.121 192.937 46.865483226092 3.169172438774 + 56.900 1167.18 5.000 0.000 -3.199 99.748 0.212 -0.110 193.578 46.865435593066 3.169177302592 + 57.000 1172.50 5.000 0.000 -3.327 99.748 0.165 -0.078 194.294 46.865387793264 3.169182027377 + 57.100 1177.83 5.000 0.000 -3.539 99.748 0.201 -0.084 194.975 46.865339819360 3.169186634925 + 57.200 1183.19 5.000 0.000 -3.725 99.748 0.217 -0.089 195.554 46.865298090549 3.169190519881 + 57.300 1188.55 5.000 0.000 -3.539 99.748 0.188 -0.097 196.256 46.865265785940 3.169193438048 + 57.400 1193.93 5.000 0.000 -3.597 99.748 0.207 -0.124 196.958 46.865218691917 3.169197524726 + 57.500 1199.33 5.000 0.000 -4.283 99.748 0.199 -0.138 197.466 46.865170129990 3.169201563975 + 57.600 1204.75 5.000 0.000 -3.167 99.748 0.189 -0.079 198.218 46.865121390569 3.169205472088 + 57.700 1210.18 5.000 0.000 -2.994 99.748 0.201 -0.099 198.841 46.865072495331 3.169209235083 + 57.800 1215.63 5.000 0.000 -3.385 99.748 0.214 -0.109 199.536 46.865023454963 3.169212826005 + 57.900 1221.10 5.000 0.000 -3.590 99.748 0.168 -0.091 200.123 46.864974259486 3.169216260499 + 58.000 1226.59 5.000 0.000 -3.725 99.748 0.176 -0.095 200.692 46.864924895829 3.169219561880 + 58.100 1232.10 5.000 0.000 -3.898 99.748 0.220 -0.126 201.426 46.864875366087 3.169222724354 + 58.200 1237.62 5.000 0.000 -4.629 99.748 0.197 -0.135 202.092 46.864825671619 3.169225721453 + 58.300 1243.16 5.000 0.000 -4.982 99.748 0.172 -0.158 202.794 46.864778745658 3.169228355538 + 58.400 1248.71 5.000 0.000 -4.976 99.748 0.189 -0.182 203.320 46.864729274199 3.169230886966 + 58.500 1254.29 5.000 0.000 -5.008 99.748 0.205 -0.191 204.054 46.864679089740 3.169233175095 + 58.600 1259.88 5.000 0.000 -5.528 99.748 0.194 -0.222 204.677 46.864628757501 3.169235183980 + 58.700 1265.49 5.000 0.000 -5.624 99.748 0.174 -0.222 205.304 46.864578272867 3.169236889370 + 58.800 1271.11 5.000 0.000 -5.707 99.748 0.172 -0.270 205.880 46.864527622689 3.169238249000 + 58.900 1276.75 5.000 0.000 -6.862 99.748 0.173 -0.275 206.528 46.864476813549 3.169239238221 + 59.000 1282.40 5.000 0.000 -7.664 99.748 0.191 -0.312 207.028 46.864425873190 3.169239832444 + 59.100 1288.06 5.000 0.000 -7.503 99.748 0.181 -0.344 207.561 46.864374823391 3.169239982487 + 59.200 1293.74 5.000 0.000 -7.240 99.748 0.186 -0.307 208.281 46.864323644028 3.169239653277 + 59.300 1299.45 5.000 0.000 -7.292 99.748 0.176 -0.328 208.882 46.864257889824 3.169238559772 + 59.400 1305.18 5.000 0.000 -7.933 99.748 0.175 -0.337 209.577 46.864206311127 3.169237188523 + 59.500 1310.92 5.000 0.000 -7.529 99.748 0.180 -0.344 210.023 46.864154566873 3.169235337360 + 59.600 1316.69 5.000 0.000 -7.754 99.748 0.182 -0.350 210.232 46.864102678102 3.169233007585 + 59.700 1322.47 5.000 0.000 -8.613 99.748 0.197 -0.352 210.866 46.864050678444 3.169230206228 + 59.800 1328.26 5.000 0.000 -7.914 99.748 0.186 -0.377 211.435 46.863998579324 3.169226878484 + 59.900 1334.07 5.000 0.000 -6.759 99.748 0.206 -0.394 211.914 46.863946356991 3.169222979045 + 60.000 1339.90 5.000 0.000 -7.548 99.748 0.175 -0.276 212.389 46.863893982354 3.169218568499 + 60.100 1345.74 5.000 0.000 -7.850 99.748 0.173 -0.280 212.904 46.863841472567 3.169213733506 + 60.200 1351.60 5.000 0.000 -7.991 99.748 0.148 -0.312 213.523 46.863790354968 3.169208637654 + 60.300 1357.47 5.000 0.000 -8.004 99.748 0.134 -0.347 214.124 46.863749178805 3.169204229734 + 60.400 1363.35 5.000 0.000 -8.594 99.748 0.147 -0.336 214.693 46.863698105301 3.169198379113 + 60.500 1369.25 5.000 0.000 -8.305 99.748 0.152 -0.345 215.200 46.863645186351 3.169191852392 + 60.600 1375.17 5.000 0.000 -8.228 99.748 0.158 -0.386 215.694 46.863592150521 3.169184786762 + 60.700 1381.10 5.000 0.000 -8.498 99.748 0.162 -0.377 216.216 46.863538986848 3.169177144527 + 60.800 1387.05 5.000 0.000 -7.657 99.748 0.180 -0.399 216.911 46.863485705455 3.169168922599 + 60.900 1393.01 5.000 0.000 -7.799 99.748 0.199 -0.363 217.523 46.863432338352 3.169160149323 + 61.000 1398.99 5.000 0.000 -8.299 99.748 0.187 -0.371 217.919 46.863378903338 3.169150853506 + 61.100 1404.98 5.000 0.000 -9.069 99.748 0.191 -0.371 218.459 46.863325393456 3.169141033422 + 61.200 1410.98 5.000 0.000 -7.722 99.748 0.195 -0.416 219.013 46.863271799082 3.169130637007 + 61.300 1417.00 5.000 0.000 -7.086 99.748 0.197 -0.383 219.607 46.863212436682 3.169118458686 + 61.400 1423.04 5.000 0.000 -7.786 99.748 0.204 -0.308 219.920 46.863158391042 3.169106819459 + 61.500 1429.09 5.000 0.000 -8.030 99.748 0.196 -0.338 220.460 46.863104496867 3.169094770942 + 61.600 1435.16 5.000 0.000 -7.728 99.748 0.188 -0.362 221.101 46.863050546095 3.169082231746 + 61.700 1441.24 5.000 0.000 -7.497 99.748 0.193 -0.373 221.598 46.862996544512 3.169069142359 + 61.800 1447.33 5.000 0.000 -7.394 99.748 0.189 -0.337 222.044 46.862942482167 3.169055496057 + 61.900 1453.44 5.000 0.000 -7.029 99.748 0.190 -0.328 222.592 46.862888360343 3.169041347184 + 62.000 1459.55 5.000 0.000 -6.913 99.748 0.167 -0.317 223.114 46.862834188149 3.169026732073 + 62.100 1465.68 5.000 0.000 -7.022 99.748 0.158 -0.267 223.520 46.862779960415 3.169011688893 + 62.200 1471.83 5.000 0.000 -6.522 99.748 0.162 -0.256 224.007 46.862725659764 3.168996233139 + 62.300 1477.99 5.000 0.000 -6.625 99.748 0.148 -0.302 224.388 46.862659308715 3.168976806763 + 62.400 1484.16 5.000 0.000 -7.234 99.748 0.137 -0.309 224.921 46.862604866575 3.168960401478 + 62.500 1490.34 5.000 0.000 -6.823 99.748 0.124 -0.326 225.295 46.862550398338 3.168943525498 + 62.600 1496.54 5.000 0.000 -5.746 99.748 0.116 -0.314 225.727 46.862495900100 3.168926154483 + 62.700 1502.75 5.000 0.000 -5.117 99.748 0.120 -0.252 226.163 46.862441352752 3.168908352735 + 62.800 1508.97 5.000 0.000 -5.258 99.748 0.132 -0.200 226.685 46.862386745633 3.168890242686 + 62.900 1515.20 5.000 0.000 -5.399 99.748 0.130 -0.191 227.290 46.862332083405 3.168871864496 + 63.000 1521.44 5.000 0.000 -5.014 99.748 0.135 -0.175 227.888 46.862277374678 3.168853168475 + 63.100 1527.70 5.000 0.000 -4.533 99.748 0.134 -0.180 228.334 46.862222619090 3.168834141437 + 63.200 1533.97 5.000 0.000 -5.316 99.748 0.154 -0.165 228.834 46.862165321997 3.168813961401 + 63.300 1540.25 5.000 0.000 -5.014 99.748 0.158 -0.188 229.328 46.862101937056 3.168791320779 + 63.400 1546.54 5.000 0.000 -2.795 99.748 0.129 -0.185 229.608 46.862047053620 3.168771369611 + 63.500 1552.83 5.000 0.000 -2.160 99.748 0.109 -0.079 229.986 46.861992089696 3.168751092954 + 63.600 1559.15 5.000 0.000 -2.467 99.748 0.109 -0.045 230.051 46.861936876855 3.168730620561 + 63.700 1565.50 5.000 0.000 -3.455 99.748 0.142 -0.002 230.537 46.861881463205 3.168710147856 + 63.800 1571.85 5.000 0.000 -2.455 99.748 0.143 -0.058 231.110 46.861826048856 3.168689725153 + 63.900 1578.19 5.000 0.000 -3.597 99.748 0.135 -0.078 231.426 46.861770709720 3.168669195952 + 64.000 1584.54 5.000 0.000 -4.771 99.748 0.129 -0.080 231.916 46.861715299144 3.168648365397 + 64.100 1590.92 5.000 0.000 -3.455 99.748 0.104 -0.138 232.197 46.861659756651 3.168627204202 + 64.200 1597.29 5.000 0.000 -2.314 48.754 0.102 -0.098 232.715 46.861611043075 3.168608474201 + 64.300 1603.67 5.000 34.382 -1.095 0.000 -0.244 -0.050 232.046 46.861573606874 3.168594021211 + 64.400 1610.01 5.000 74.281 -0.889 0.000 -1.155 0.021 228.680 46.861520459316 3.168573456378 + 64.500 1616.25 5.000 97.585 0.939 0.000 -1.426 -0.009 223.067 46.861466457631 3.168552500828 + 64.600 1622.36 5.000 114.386 1.298 0.000 -1.057 0.008 218.851 46.861413596369 3.168531923794 + 64.700 1628.35 5.000 116.339 -3.828 0.000 -1.258 0.113 215.028 46.861361792285 3.168511802028 + 64.800 1634.23 5.000 106.635 -3.526 0.000 -1.134 0.138 210.445 46.861310931757 3.168492199730 + 64.900 1639.99 5.000 84.223 -1.492 0.000 -1.184 -0.021 205.898 46.861261037383 3.168473053987 + 65.000 1645.64 5.000 70.679 0.901 0.000 -1.252 -0.104 200.569 46.861212202020 3.168454227978 + 65.100 1651.15 5.000 63.419 2.286 0.000 -1.248 -0.057 196.897 46.861164473661 3.168435651164 + 65.200 1656.55 4.421 48.190 3.717 0.000 -1.088 -0.104 193.545 46.861117797671 3.168417276422 + 65.300 1661.84 4.000 44.134 6.200 0.000 -0.910 -0.028 189.934 46.861067057333 3.168397073729 + 65.400 1667.04 4.000 45.287 4.442 0.000 -0.940 0.157 186.021 46.861022239375 3.168379177609 + 65.500 1672.14 4.000 48.245 0.342 0.000 -0.983 0.145 183.044 46.860978238568 3.168361776307 + 65.600 1677.14 4.000 49.151 -0.049 0.000 -0.981 0.045 179.577 46.860935046383 3.168344862133 + 65.700 1682.04 4.000 46.592 1.850 0.000 -0.924 0.022 175.570 46.860892637033 3.168328273739 + 65.800 1686.86 4.000 44.066 2.896 0.000 -0.908 0.013 172.538 46.860851004817 3.168311942991 + 65.900 1691.58 4.000 44.629 2.710 0.000 -0.928 0.046 169.439 46.860810167203 3.168295932562 + 66.000 1696.22 4.000 48.481 2.793 0.000 -0.952 0.066 166.090 46.860770140903 3.168280293952 + 66.100 1700.75 4.000 54.327 1.343 0.000 -1.022 0.105 162.483 46.860730963919 3.168265053308 + 66.200 1705.18 3.895 59.751 0.785 0.000 -1.151 0.077 158.926 46.860692745173 3.168250242894 + 66.300 1709.51 3.000 62.422 1.298 0.000 -1.185 0.028 154.318 46.860659694431 3.168237481774 + 66.400 1713.73 3.000 64.313 1.202 0.000 -1.148 0.040 149.890 46.860623840782 3.168223686939 + 66.500 1717.84 3.000 65.691 1.343 0.000 -1.190 0.032 145.616 46.860588456123 3.168210101373 + 66.600 1721.82 3.000 65.750 2.030 0.000 -1.246 0.011 142.005 46.860554108530 3.168196884031 + 66.700 1725.69 3.000 66.363 2.222 0.000 -1.302 0.059 137.213 46.860520814239 3.168184018939 + 66.800 1729.44 3.000 66.250 2.081 0.000 -1.214 0.067 132.713 46.860488535146 3.168171543965 + 66.900 1733.07 3.000 66.119 1.824 0.000 -1.204 0.040 128.026 46.860457221019 3.168159476549 + 67.000 1736.58 3.000 66.389 1.600 0.000 -1.247 0.034 124.242 46.860426893901 3.168147781599 + 67.100 1739.97 3.000 63.817 1.497 0.000 -1.344 0.039 120.476 46.860397633281 3.168136433852 + 67.200 1743.23 3.000 61.401 1.651 0.000 -1.286 0.017 115.648 46.860369468543 3.168125481717 + 67.300 1746.35 3.000 57.840 1.664 0.000 -1.151 -0.015 110.867 46.860335481552 3.168112319429 + 67.400 1749.35 3.000 53.419 1.946 0.000 -1.173 -0.050 107.008 46.860309657021 3.168102310557 + 67.500 1752.23 2.210 46.851 2.447 0.000 -1.141 -0.053 103.365 46.860284838253 3.168092545777 + 67.600 1755.01 2.000 39.941 2.742 0.000 -1.036 -0.016 99.444 46.860260967909 3.168083005534 + 67.700 1757.68 2.000 37.131 2.132 0.000 -0.963 0.026 95.700 46.860237966677 3.168073788292 + 67.800 1760.27 2.000 35.996 0.836 0.000 -0.961 0.005 92.492 46.860215785267 3.168064934483 + 67.900 1762.76 2.000 35.008 -0.331 0.000 -0.931 -0.039 89.140 46.860194423147 3.168056357021 + 68.000 1765.16 2.000 33.674 -3.847 0.000 -0.898 -0.032 86.062 46.860173868256 3.168048000037 + 68.100 1767.47 2.000 32.108 -9.839 0.000 -0.854 -0.054 83.031 46.860154073354 3.168039877770 + 68.200 1769.69 2.000 29.549 -18.531 0.000 -0.763 -0.205 80.234 46.860134242751 3.168031602792 + 68.300 1771.83 2.000 28.050 -31.336 0.000 -0.763 -0.350 77.429 46.860112649757 3.168022143612 + 68.400 1773.90 2.000 27.838 -43.891 0.000 -0.756 -0.502 74.992 46.860095203017 3.168013867356 + 68.500 1775.89 2.000 27.838 -56.292 0.000 -0.779 -0.674 72.256 46.860078557415 3.168005207641 + 68.600 1777.81 2.000 26.478 -67.544 0.000 -0.671 -0.774 69.915 46.860062700708 3.167996036045 + 68.700 1779.66 2.000 25.296 -79.252 0.000 -0.656 -0.844 67.514 46.860047647703 3.167986244533 + 68.800 1781.46 2.000 24.319 -98.113 0.000 -0.667 -0.866 65.228 46.860033441810 3.167975787123 + 68.900 1783.19 2.000 23.062 -113.330 0.000 -0.575 -0.991 63.097 46.860020116911 3.167964640423 + 69.000 1784.87 2.000 22.132 -123.229 0.000 -0.571 -1.041 61.181 46.860007716033 3.167952787477 + 69.100 1786.49 2.000 23.096 -131.517 0.000 -0.805 -1.047 58.352 46.859996293048 3.167940261644 + 69.200 1788.05 2.000 22.043 -142.860 0.000 -0.615 -0.994 55.997 46.859987063423 3.167928761223 + 69.300 1789.57 2.000 10.727 -150.789 0.000 -0.589 -1.121 54.046 46.859980587824 3.167919854595 + 69.400 1791.05 2.000 0.000 -162.028 0.000 -0.234 -1.019 53.135 46.859971988542 3.167906610094 + 69.500 1792.50 2.000 0.000 -172.447 17.364 -0.493 -1.180 51.969 46.859963762678 3.167892016874 + 69.600 1793.92 2.000 0.000 -175.969 17.375 -0.273 -1.128 50.950 46.859956442332 3.167876797232 + 69.700 1795.32 2.000 0.000 -178.419 17.569 -0.141 -1.051 50.521 46.859950064065 3.167860993442 + 69.800 1796.72 2.000 0.000 -181.550 20.741 -0.089 -1.137 50.600 46.859944640952 3.167844614583 + 69.900 1798.10 2.000 0.000 -181.871 29.994 -0.218 -1.124 50.536 46.859940158078 3.167827771384 + 70.000 1799.47 2.000 0.000 -181.435 33.469 -0.187 -1.226 49.873 46.859936607036 3.167810648398 + 70.100 1800.83 2.000 0.000 -181.743 36.574 -0.097 -1.198 49.398 46.859934041015 3.167793290374 + 70.200 1802.19 2.000 0.000 -180.870 36.574 0.029 -1.172 49.528 46.859932558222 3.167775607063 + 70.300 1803.56 2.000 0.000 -174.840 36.574 -0.016 -1.091 49.434 46.859932195294 3.167757450338 + 70.400 1804.93 2.000 0.000 -158.160 40.449 0.033 -1.168 50.464 46.859932890361 3.167739393188 + 70.500 1806.32 2.000 0.000 -150.442 57.100 -0.004 -1.069 50.842 46.859934549488 3.167721425810 + 70.600 1807.70 2.000 0.000 -150.340 56.124 0.181 -1.056 51.266 46.859937155149 3.167703527468 + 70.700 1809.12 2.000 0.000 -137.939 55.255 0.265 -1.076 52.177 46.859940751250 3.167685598230 + 70.800 1810.58 2.000 0.000 -110.251 53.474 0.365 -1.036 53.347 46.859945395688 3.167667619741 + 70.900 1812.07 2.000 0.000 -88.067 53.474 0.439 -0.973 54.913 46.859951122726 3.167649689813 + 71.000 1813.60 2.000 0.000 -65.555 52.917 0.384 -0.918 56.418 46.859957903563 3.167631948644 + 71.100 1815.18 2.000 0.000 -46.008 49.472 0.444 -0.789 57.966 46.859965657036 3.167614478959 + 71.200 1816.78 2.000 0.000 -78.739 48.325 0.399 -0.884 59.723 46.859974306288 3.167597268237 + 71.300 1818.43 2.000 0.000 -92.358 48.649 0.349 -0.915 60.875 46.859983738671 3.167580406059 + 71.400 1820.13 2.000 0.000 -92.692 48.999 0.313 -0.912 62.114 46.859994018161 3.167563760864 + 71.500 1821.86 2.000 0.000 -91.974 48.999 0.289 -0.935 63.734 46.860005113906 3.167547514762 + 71.600 1823.62 2.000 0.000 -89.330 48.999 0.380 -1.058 65.563 46.860017031155 3.167531903223 + 71.700 1825.42 2.000 0.000 -83.666 48.999 0.334 -1.079 67.438 46.860029838341 3.167517087680 + 71.800 1827.25 2.000 0.000 -63.689 50.194 0.364 -1.067 69.329 46.860043535850 3.167503191444 + 71.900 1829.12 2.000 0.000 -52.314 71.444 0.410 -1.047 71.204 46.860058061693 3.167490292211 + 72.000 1831.03 2.000 0.000 -42.672 99.748 0.436 -0.962 71.568 46.860073373499 3.167478386957 + 72.100 1832.98 2.000 0.000 -37.482 99.748 0.496 -0.897 72.011 46.860089463111 3.167467399915 + 72.200 1834.99 2.000 0.000 -29.694 99.748 0.593 -0.810 74.016 46.860106319296 3.167457237549 + 72.300 1837.05 2.000 0.000 -17.287 99.748 0.668 -0.706 76.234 46.860124125727 3.167447743827 + 72.400 1839.17 2.000 0.000 -19.481 99.748 0.645 -0.713 78.671 46.860142548018 3.167439088165 + 72.500 1841.37 2.000 0.000 -16.151 99.748 0.685 -0.812 81.011 46.860161771299 3.167431223367 + 72.600 1843.62 2.000 0.000 -8.774 99.748 0.628 -0.601 83.506 46.860181768471 3.167424171094 + 72.700 1845.95 2.000 0.000 -12.078 99.748 0.533 -0.369 85.619 46.860202440548 3.167417738525 + 72.800 1848.33 2.000 0.000 -20.757 99.748 0.395 -0.254 88.193 46.860223651779 3.167411617417 + 72.900 1850.76 2.000 0.000 -25.627 99.748 0.609 -0.392 91.146 46.860245382984 3.167405761266 + 73.000 1853.25 2.000 0.000 -18.628 99.748 0.568 -0.521 93.335 46.860267728739 3.167400404335 + 73.100 1855.82 2.000 0.000 -17.133 99.748 0.541 -0.302 95.325 46.860290698934 3.167395620843 + 73.200 1858.44 2.000 0.000 -17.255 99.748 0.588 -0.181 97.126 46.860314161015 3.167391184656 + 73.300 1861.10 2.842 0.000 -18.307 99.748 0.400 -0.269 98.591 46.860337886598 3.167386975387 + 73.400 1863.82 3.000 0.000 -20.000 99.748 0.585 -0.334 100.783 46.860362220397 3.167383003578 + 73.500 1866.59 3.000 0.000 -21.322 99.748 0.610 -0.256 102.803 46.860387171669 3.167379303040 + 73.600 1869.42 3.000 0.000 -18.801 99.748 0.559 -0.389 102.331 46.860412579749 3.167375900001 + 73.700 1872.28 3.000 0.000 -15.503 99.748 0.487 -0.614 104.470 46.860438380885 3.167373060381 + 73.800 1875.18 3.000 0.000 -12.276 99.748 0.392 -0.522 107.825 46.860464592931 3.167371090773 + 73.900 1878.13 3.000 0.000 -7.491 99.748 0.494 -0.317 109.744 46.860491243570 3.167369930414 + 74.000 1881.13 3.000 0.000 -9.088 99.748 0.460 -0.222 110.727 46.860518340090 3.167369200125 + 74.100 1884.18 3.000 0.000 -10.589 99.748 0.400 -0.094 112.523 46.860545872515 3.167368609962 + 74.200 1887.27 3.000 0.000 -9.107 99.748 0.503 -0.141 114.266 46.860573809261 3.167368115883 + 74.300 1890.41 3.000 0.000 -8.171 99.748 0.418 -0.271 115.501 46.860608425661 3.167367847008 + 74.400 1893.59 3.000 0.000 -7.574 99.748 0.438 -0.227 117.258 46.860637264001 3.167368049178 + 74.500 1896.82 3.000 0.000 -5.855 99.748 0.409 -0.166 118.662 46.860666493392 3.167368602139 + 74.600 1900.08 3.000 0.000 -5.476 99.748 0.478 -0.243 120.433 46.860696078332 3.167369442017 + 74.700 1903.38 3.000 0.000 -6.246 99.748 0.423 -0.266 122.258 46.860726041247 3.167370625209 + 74.800 1906.73 3.000 0.000 -5.425 99.748 0.406 -0.200 124.062 46.860756407421 3.167372190522 + 74.900 1910.14 3.000 0.000 -4.963 99.748 0.435 -0.143 125.733 46.860787177852 3.167374076370 + 75.000 1913.58 3.000 0.000 -7.574 99.748 0.404 -0.168 127.403 46.860818352383 3.167376229570 + 75.100 1917.08 3.000 0.000 -8.665 99.748 0.412 -0.196 129.070 46.860849937636 3.167378677964 + 75.200 1920.62 3.000 0.000 -7.170 99.748 0.387 -0.189 130.539 46.860881500567 3.167381405590 + 75.300 1924.20 3.000 0.000 -7.029 99.748 0.409 -0.195 132.152 46.860907974256 3.167383898817 + 75.400 1927.82 3.000 0.000 -8.222 99.748 0.402 -0.176 133.660 46.860939714902 3.167387119672 + 75.500 1931.49 3.000 0.000 -7.010 99.748 0.371 -0.213 135.061 46.860972713942 3.167390762074 + 75.600 1935.19 3.000 0.000 -6.426 99.748 0.383 -0.186 136.573 46.861006082721 3.167394767857 + 75.700 1938.94 3.000 0.000 -6.220 99.748 0.369 -0.187 137.883 46.861039785015 3.167399103464 + 75.800 1942.72 3.000 0.000 -6.201 99.748 0.364 -0.166 139.356 46.861073795586 3.167403710319 + 75.900 1946.54 3.000 0.000 -5.887 99.748 0.355 -0.183 140.680 46.861108116580 3.167408597709 + 76.000 1950.40 3.000 0.000 -5.374 99.748 0.370 -0.175 142.113 46.861142763113 3.167413826564 + 76.100 1954.29 3.000 0.000 -4.649 99.748 0.331 -0.166 143.305 46.861177740551 3.167419409687 + 76.200 1958.22 3.000 0.000 -4.097 99.748 0.339 -0.135 144.597 46.861213023372 3.167425280886 + 76.300 1962.19 3.000 0.000 -4.084 99.748 0.307 -0.113 145.721 46.861255704797 3.167432608807 + 76.400 1966.19 3.474 0.000 -3.892 99.748 0.312 -0.095 146.909 46.861291560134 3.167438924256 + 76.500 1970.22 4.000 0.000 -3.398 99.748 0.139 -0.073 147.906 46.861327720964 3.167445433441 + 76.600 1974.30 4.000 0.000 -3.301 99.748 0.526 -0.091 149.598 46.861364207707 3.167452167457 + 76.700 1978.40 4.000 0.000 -3.340 99.748 0.319 -0.138 150.534 46.861400985771 3.167459160398 + 76.800 1982.54 4.000 0.000 -2.711 99.748 0.310 -0.115 151.823 46.861438022845 3.167466416216 + 76.900 1986.71 4.000 0.000 -1.890 99.748 0.288 -0.086 152.968 46.861475329021 3.167473894107 + 77.000 1990.92 4.000 0.000 -1.646 99.748 0.282 -0.023 153.889 46.861512922584 3.167481529882 + 77.100 1995.15 4.000 0.000 -1.435 99.748 0.311 -0.007 154.948 46.861550794560 3.167489256662 + 77.200 1999.42 4.000 0.000 -1.056 99.748 0.320 0.005 156.093 46.861589426888 3.167497164084 + 77.300 2003.72 4.000 0.000 -0.421 99.748 0.299 -0.006 157.040 46.861635136801 3.167506589086 + 77.400 2008.06 4.000 0.000 -0.235 99.748 0.290 0.016 157.882 46.861673944057 3.167514646331 + 77.500 2012.42 4.000 0.000 -0.145 99.748 0.278 0.035 158.977 46.861712992018 3.167522761512 + 77.600 2016.81 4.000 0.000 0.105 99.748 0.259 0.046 160.233 46.861752276903 3.167530900974 + 77.700 2021.23 4.000 0.000 1.196 99.748 0.280 0.048 161.482 46.861791843804 3.167539060295 + 77.800 2025.69 4.000 0.000 3.492 99.748 0.294 0.096 162.703 46.861831726515 3.167547225931 + 77.900 2030.17 4.000 0.000 5.552 99.748 0.290 0.186 163.920 46.861871910869 3.167555312702 + 78.000 2034.69 4.000 0.000 7.059 99.748 0.253 0.297 165.169 46.861912394691 3.167563160051 + 78.100 2039.24 4.000 0.000 7.996 99.748 0.269 0.408 166.397 46.861953193942 3.167570613132 + 78.200 2043.82 4.000 0.000 9.702 99.748 0.258 0.440 167.664 46.861996890822 3.167577996421 + 78.300 2048.44 4.000 0.000 10.915 99.748 0.303 0.567 168.888 46.862044048411 3.167585203363 + 78.400 2053.09 4.000 0.000 10.671 99.748 0.254 0.581 170.054 46.862085853065 3.167590862901 + 78.500 2057.77 4.000 0.000 9.959 99.748 0.273 0.537 170.897 46.862127988356 3.167595918555 + 78.600 2062.48 4.000 0.000 10.357 99.748 0.277 0.494 171.782 46.862170425301 3.167600402583 + 78.700 2067.22 4.000 0.000 10.331 99.748 0.240 0.508 172.765 46.862213124664 3.167604275202 + 78.800 2071.98 4.000 0.000 10.363 99.748 0.236 0.525 173.780 46.862256078466 3.167607476672 + 78.900 2076.78 4.000 0.000 9.895 99.748 0.268 0.536 174.900 46.862299306569 3.167610033833 + 79.000 2081.61 4.000 0.000 9.324 99.748 0.235 0.434 175.991 46.862342827235 3.167612047275 + 79.100 2086.47 4.000 0.000 8.163 99.748 0.245 0.372 176.581 46.862386627476 3.167613573844 + 79.200 2091.35 4.000 0.000 6.815 99.748 0.277 0.443 177.636 46.862436278654 3.167614648099 + 79.300 2096.27 4.000 0.000 5.013 99.748 0.195 0.471 178.742 46.862484712001 3.167614952854 + 79.400 2101.21 4.000 0.000 3.608 99.748 0.232 0.344 179.505 46.862529245144 3.167614701865 + 79.500 2106.18 4.000 0.000 4.455 99.748 0.259 0.268 180.462 46.862573988625 3.167614107314 + 79.600 2111.17 4.000 0.000 4.410 99.748 0.216 0.286 181.514 46.862618953067 3.167613226934 + 79.700 2116.18 4.000 0.000 3.441 99.748 0.210 0.251 182.360 46.862664151750 3.167612022735 + 79.800 2121.23 4.000 0.000 2.626 99.748 0.218 0.192 183.407 46.862709575355 3.167610503301 + 79.900 2126.30 4.000 0.000 2.113 99.748 0.216 0.196 184.448 46.862755211056 3.167608727047 + 80.000 2131.38 4.000 0.000 1.234 99.748 0.220 0.198 185.402 46.862801057007 3.167606741275 + 80.100 2136.50 4.000 0.000 0.747 99.748 0.201 0.115 186.147 46.862847111412 3.167604594402 + 80.200 2141.64 4.000 0.000 0.580 99.748 0.228 0.077 186.907 46.862903198306 3.167601862095 + 80.300 2146.81 4.000 0.000 0.368 99.748 0.198 0.086 187.897 46.862951068296 3.167599464925 + 80.400 2152.00 4.000 0.000 0.272 99.748 0.226 0.035 188.556 46.862997841759 3.167597061974 + 80.500 2157.21 4.000 0.000 -0.055 99.748 0.180 0.046 189.265 46.863044836485 3.167594592569 + 80.600 2162.45 4.684 0.000 0.028 99.748 0.224 0.084 190.233 46.863092018130 3.167592093100 + 80.700 2167.71 5.000 0.000 0.201 99.748 0.351 0.074 190.975 46.863139283188 3.167589605638 + 80.800 2172.98 5.000 0.000 0.176 99.748 0.091 0.021 192.051 46.863186609751 3.167587129454 + 80.900 2178.27 5.000 0.000 -0.780 99.748 0.157 0.034 192.631 46.863234274658 3.167584630530 + 81.000 2183.61 5.000 0.000 -1.082 99.748 0.156 0.024 193.549 46.863282639814 3.167582142052 + 81.100 2189.03 5.000 0.000 -0.864 99.748 0.189 0.046 194.474 46.863331650501 3.167579722539 + 81.200 2194.48 5.000 0.000 -0.126 99.748 0.180 0.027 195.191 46.863359613800 3.167578366429 + 81.300 2199.91 5.000 0.000 -0.402 99.748 0.163 0.004 195.904 46.863385164859 3.167577117106 + 81.400 2205.33 5.000 0.000 -0.678 92.234 0.217 0.018 196.613 46.863433931064 3.167574621049 + 81.500 2210.75 5.000 10.344 -1.261 12.438 0.175 0.021 197.261 46.863482505718 3.167572027212 + 81.600 2216.17 5.000 34.130 -2.628 0.000 -0.501 0.006 196.501 46.863531011791 3.167569464832 + 81.700 2221.54 5.000 69.971 -1.069 0.000 -1.167 -0.018 192.581 46.863579039571 3.167567029040 + 81.800 2226.78 5.000 90.283 -0.569 0.000 -1.511 0.032 186.979 46.863626007582 3.167564715484 + 81.900 2231.89 5.000 91.744 1.760 0.000 -1.386 0.008 181.866 46.863671678830 3.167562507106 + 82.000 2236.88 5.000 82.621 2.889 0.000 -1.274 -0.033 177.039 46.863716131624 3.167560408199 + 82.100 2241.73 5.000 74.120 -3.064 0.000 -1.267 0.053 173.752 46.863759456645 3.167558413197 + 82.200 2246.47 5.000 59.406 -1.165 0.000 -1.131 -0.048 169.568 46.863801765396 3.167556527617 + 82.300 2251.12 4.421 50.985 2.793 0.000 -0.918 -0.031 165.122 46.863838135063 3.167554999234 + 82.400 2255.67 4.000 52.618 2.690 0.000 -1.228 -0.065 162.570 46.863878140999 3.167553456478 + 82.500 2260.12 4.000 56.954 1.407 0.000 -1.119 -0.025 159.574 46.863917961693 3.167552044492 + 82.600 2264.47 4.000 57.481 -1.377 0.000 -1.074 0.054 155.052 46.863956831823 3.167550698204 + 82.700 2268.71 4.000 52.133 -2.782 0.000 -1.052 0.009 151.164 46.863994777954 3.167549347269 + 82.800 2272.86 4.000 42.659 -2.904 0.000 -0.918 -0.064 147.978 46.864031878811 3.167548030309 + 82.900 2276.92 4.000 36.067 -7.016 0.000 -0.825 -0.162 145.361 46.864068223898 3.167546846850 + 83.000 2280.91 4.000 29.182 -10.795 0.000 -0.785 -0.257 142.697 46.864103888738 3.167545897921 + 83.100 2284.82 4.000 18.088 -19.353 0.000 -0.622 -0.368 140.616 46.864138951564 3.167545279801 + 83.200 2288.67 4.000 6.163 -24.222 0.000 -0.473 -0.576 138.859 46.864173533517 3.167545164955 + 83.300 2292.49 4.000 0.000 -21.097 4.464 -0.252 -0.661 138.034 46.864207544914 3.167545781682 + 83.400 2296.28 4.000 0.000 -19.834 25.579 -0.177 -0.734 137.815 46.864241480638 3.167547324298 + 83.500 2300.05 4.000 0.000 -23.811 36.609 -0.162 -0.746 137.419 46.864275360361 3.167549833635 + 83.600 2303.81 4.000 0.000 -29.206 45.366 -0.149 -0.770 137.030 46.864309140626 3.167553236086 + 83.700 2307.57 4.000 0.000 -30.823 44.850 0.034 -0.784 136.846 46.864342873884 3.167557508218 + 83.800 2311.33 4.000 0.000 -30.945 39.730 0.043 -0.879 137.109 46.864376571999 3.167562762578 + 83.900 2315.09 4.000 0.000 -36.366 29.901 0.048 -0.993 137.501 46.864410205922 3.167569188372 + 84.000 2318.85 4.000 0.000 -41.081 17.375 -0.030 -1.102 137.592 46.864443710185 3.167576962088 + 84.100 2322.62 4.000 0.000 -40.940 12.058 -0.082 -1.140 137.390 46.864476988175 3.167586184089 + 84.200 2326.37 4.000 0.000 -43.134 11.900 -0.118 -1.098 136.897 46.864509957703 3.167596837752 + 84.300 2330.12 4.000 0.000 -44.212 11.900 -0.138 -1.121 136.825 46.864542914130 3.167608960724 + 84.400 2333.85 4.000 0.000 -44.584 11.900 -0.172 -1.168 136.436 46.864575186340 3.167622285033 + 84.500 2337.57 4.000 0.000 -42.717 12.755 -0.168 -1.278 136.108 46.864607054197 3.167636985551 + 84.600 2341.27 4.000 0.000 -40.606 15.349 -0.141 -1.208 135.496 46.864638470776 3.167653127705 + 84.700 2344.96 4.000 0.000 -39.169 31.174 -0.119 -1.051 135.100 46.864669424777 3.167670715963 + 84.800 2348.65 4.000 0.000 -34.762 36.751 0.008 -1.048 134.294 46.864699917237 3.167689736837 + 84.900 2352.33 4.000 0.000 -23.760 57.278 -0.016 -1.169 134.603 46.864729948180 3.167710176174 + 85.000 2356.02 4.000 0.000 -14.644 82.747 0.097 -0.831 135.331 46.864759589598 3.167731959384 + 85.100 2359.72 4.000 0.000 -14.746 99.748 0.199 -0.507 136.007 46.864789055801 3.167754791711 + 85.200 2363.45 4.000 0.000 -16.203 99.748 0.275 -0.281 137.066 46.864818595951 3.167778252459 + 85.300 2367.21 4.000 0.000 -9.588 98.453 0.315 -0.354 138.340 46.864852110728 3.167805249684 + 85.400 2370.99 4.000 0.000 3.383 82.496 0.308 -0.327 139.716 46.864881900354 3.167829865052 + 85.500 2374.81 4.000 0.000 12.416 63.488 0.295 0.008 140.432 46.864911691082 3.167855090031 + 85.600 2378.66 4.000 0.000 14.533 57.599 0.256 0.381 141.382 46.864941696291 3.167880625046 + 85.700 2382.54 4.000 0.000 18.831 57.599 0.251 0.406 142.571 46.864972079792 3.167906058398 + 85.800 2386.45 4.000 0.000 22.494 46.679 0.120 0.529 143.301 46.865002908911 3.167931037137 + 85.900 2390.37 4.000 0.000 22.180 32.054 0.200 0.824 142.689 46.865034209385 3.167955180337 + 86.000 2394.30 4.000 0.000 20.955 25.649 -0.031 1.138 143.064 46.865065977439 3.167978237211 + 86.100 2398.24 4.000 0.000 20.589 25.649 -0.007 0.785 142.567 46.865098105950 3.168000272669 + 86.200 2402.18 4.000 0.000 20.563 25.649 -0.026 0.712 143.546 46.865130460974 3.168021448094 + 86.300 2406.11 4.000 0.000 23.534 28.299 -0.071 0.890 144.155 46.865159055725 3.168039294117 + 86.400 2410.04 4.000 0.000 26.119 30.145 -0.039 0.815 144.018 46.865191248133 3.168058378095 + 86.500 2413.98 4.000 0.000 26.247 30.949 0.000 0.692 143.971 46.865224311117 3.168076978414 + 86.600 2417.93 4.000 0.000 30.623 31.451 0.036 0.384 143.964 46.865257562903 3.168094889016 + 86.700 2421.87 4.000 0.000 29.211 32.274 0.009 0.737 144.129 46.865290979335 3.168111945024 + 86.800 2425.81 4.000 0.000 32.047 34.099 -0.018 1.230 144.554 46.865324637551 3.168127828880 + 86.900 2429.76 4.000 0.000 36.698 34.424 -0.007 0.977 144.385 46.865358603765 3.168142484857 + 87.000 2433.71 4.000 0.000 40.579 33.749 0.007 1.013 144.507 46.865392856235 3.168156035969 + 87.100 2437.67 4.000 0.000 38.584 33.749 -0.010 1.153 144.529 46.865427363189 3.168168342678 + 87.200 2441.63 4.000 0.000 28.473 34.099 0.007 1.187 144.417 46.865462121153 3.168179118685 + 87.300 2445.59 4.000 0.000 20.339 37.134 0.010 1.090 144.489 46.865497728562 3.168188453076 + 87.400 2449.55 4.000 0.000 20.185 78.913 0.044 0.965 144.687 46.865533036945 3.168196277070 + 87.500 2453.52 4.000 0.000 22.713 99.748 0.168 0.821 145.109 46.865568478319 3.168203008809 + 87.600 2457.50 4.000 0.000 27.178 99.748 0.240 0.772 145.865 46.865604192317 3.168208841743 + 87.700 2461.51 4.000 0.000 27.524 99.748 0.263 0.901 147.359 46.865640214085 3.168213752846 + 87.800 2465.55 4.000 0.000 23.001 99.748 0.257 0.942 148.428 46.865676551604 3.168217570420 + 87.900 2469.61 4.000 0.000 19.928 99.748 0.284 0.971 149.573 46.865713200491 3.168220147463 + 88.000 2473.70 4.000 0.000 18.536 99.748 0.273 0.919 150.455 46.865750137659 3.168221480500 + 88.100 2477.82 4.000 0.000 15.444 99.748 0.280 0.809 151.650 46.865787336652 3.168221657803 + 88.200 2481.97 4.000 0.000 17.016 99.748 0.275 0.790 152.619 46.865824778660 3.168220758519 + 88.300 2486.15 4.000 0.000 17.856 99.748 0.273 0.755 153.490 46.865862182319 3.168218843195 + 88.400 2490.35 4.000 0.000 17.336 99.748 0.281 0.718 154.210 46.865899980930 3.168215925932 + 88.500 2494.59 4.000 0.000 17.587 99.748 0.268 0.739 155.150 46.865938107349 3.168212020281 + 88.600 2498.86 4.000 0.000 18.215 99.748 0.265 0.751 156.093 46.865976451848 3.168207120984 + 88.700 2503.15 4.000 0.000 17.369 99.748 0.282 0.777 157.173 46.866014996037 3.168201189834 + 88.800 2507.48 4.000 0.000 17.266 99.748 0.283 0.792 158.156 46.866053708949 3.168194188531 + 88.900 2511.83 4.000 0.000 17.266 99.748 0.276 0.807 159.243 46.866092570717 3.168186116037 + 89.000 2516.21 4.000 0.000 17.824 99.748 0.265 0.801 160.273 46.866131571229 3.168176993695 + 89.100 2520.62 4.000 0.000 18.119 99.748 0.281 0.823 161.306 46.866170707278 3.168166823358 + 89.200 2525.06 4.000 0.000 17.632 99.748 0.263 0.852 162.390 46.866209974844 3.168155557624 + 89.300 2529.53 4.000 0.000 17.574 99.748 0.280 0.845 163.369 46.866249081868 3.168143245626 + 89.400 2534.03 4.000 0.000 17.972 97.012 0.259 0.842 164.398 46.866288441546 3.168129745597 + 89.500 2538.55 4.000 0.000 18.177 70.524 0.267 0.841 165.414 46.866327991994 3.168115052358 + 89.600 2543.11 4.000 0.000 17.638 50.710 0.249 0.878 166.461 46.866367600202 3.168099160590 + 89.700 2547.69 4.000 23.240 17.856 1.237 0.082 0.836 167.567 46.866407127896 3.168082090876 + 89.800 2552.26 4.000 62.719 20.416 0.000 -0.917 0.802 165.316 46.866446202430 3.168064075454 + 89.900 2556.75 4.000 85.813 22.398 0.000 -1.244 0.647 160.557 46.866484337588 3.168045571627 + 90.000 2561.11 4.000 100.023 22.943 0.000 -1.380 0.546 155.304 46.866521226187 3.168026962129 + 90.100 2565.34 4.000 109.192 24.246 0.149 -1.351 0.710 149.937 46.866556823315 3.168008217277 + 90.200 2569.45 4.000 113.161 24.708 0.000 -1.122 0.889 145.998 46.866591178061 3.167989045297 + 90.300 2573.46 4.000 110.946 26.562 0.000 -1.267 0.445 141.393 46.866624916691 3.167969099835 + 90.400 2577.35 4.000 102.099 28.069 0.000 -1.126 0.259 138.434 46.866657078777 3.167949411620 + 90.500 2581.13 4.000 85.139 29.635 0.000 -1.172 0.471 134.402 46.866688167403 3.167930043183 + 90.600 2584.80 4.000 72.122 31.854 0.000 -1.213 0.499 130.298 46.866718233052 3.167910878039 + 90.700 2588.36 3.000 63.133 34.812 0.000 -1.272 0.594 125.311 46.866747186408 3.167891726171 + 90.800 2591.81 3.000 56.643 39.027 0.000 -1.074 0.816 121.873 46.866774990596 3.167872429052 + 90.900 2595.16 3.000 52.036 33.452 0.000 -1.013 0.818 118.597 46.866801662460 3.167852828074 + 91.000 2598.41 3.000 48.739 31.797 0.000 -1.006 0.745 115.195 46.866827239149 3.167832865905 + 91.100 2601.56 3.000 44.706 31.129 0.000 -0.976 0.723 112.243 46.866851768479 3.167812653014 + 91.200 2604.63 3.000 40.781 36.011 0.000 -0.959 0.693 108.967 46.866875295501 3.167792329280 + 91.300 2607.60 3.000 37.209 43.485 0.000 -0.924 0.851 106.000 46.866897683009 3.167772038626 + 91.400 2610.50 3.000 33.745 49.201 0.000 -0.805 0.956 103.397 46.866919203944 3.167751406552 + 91.500 2613.31 3.000 30.405 50.895 0.000 -0.778 1.053 100.744 46.866939789329 3.167730313562 + 91.600 2616.05 3.000 25.960 51.023 0.000 -0.767 1.104 98.224 46.866959350572 3.167708744352 + 91.700 2618.73 3.000 19.995 51.338 0.000 -0.641 1.096 95.732 46.866977881974 3.167686684880 + 91.800 2621.35 3.000 15.996 52.127 0.000 -0.507 1.109 93.799 46.866995411884 3.167664099237 + 91.900 2623.91 3.000 12.872 54.783 0.000 -0.463 1.139 92.247 46.867011957289 3.167640917311 + 92.000 2626.44 3.000 10.775 57.278 0.000 -0.443 1.163 90.703 46.867027502446 3.167617097676 + 92.100 2628.92 3.000 10.239 58.157 0.000 -0.501 1.172 89.284 46.867042037053 3.167592672976 + 92.200 2631.36 3.000 10.265 61.159 0.000 -0.413 1.162 87.725 46.867055579245 3.167567743069 + 92.300 2633.75 3.000 10.245 63.187 0.000 -0.464 1.211 86.462 46.867070632496 3.167537034713 + 92.400 2636.10 3.000 8.570 64.675 0.000 -0.390 1.196 84.968 46.867081882010 3.167511219361 + 92.500 2638.41 3.000 6.439 64.861 0.000 -0.351 1.185 83.657 46.867092025966 3.167485000884 + 92.600 2640.69 3.000 5.702 64.829 0.000 -0.339 1.227 82.527 46.867101105057 3.167458412346 + 92.700 2642.93 3.000 4.807 64.861 0.000 -0.303 1.202 81.497 46.867109157199 3.167431531181 + 92.800 2645.15 3.000 4.562 65.265 0.000 -0.316 1.187 80.576 46.867116157188 3.167404426733 + 92.900 2647.33 3.000 4.738 67.722 0.000 -0.305 1.175 79.708 46.867122081584 3.167377176168 + 93.000 2649.50 3.000 4.750 71.270 0.000 -0.293 1.153 78.826 46.867126969826 3.167349852626 + 93.100 2651.63 3.000 4.655 75.196 0.000 -0.300 1.119 77.922 46.867130883175 3.167322546686 + 93.200 2653.73 3.000 4.639 79.706 0.000 -0.305 1.180 76.957 46.867133795590 3.167295654093 + 93.300 2655.81 3.000 4.996 82.811 0.000 -0.314 1.213 76.043 46.867135452129 3.167273287869 + 93.400 2657.87 3.000 4.926 83.780 0.000 -0.307 1.211 74.927 46.867136479145 3.167247125872 + 93.500 2659.89 3.000 5.119 84.447 0.000 -0.311 1.226 73.994 46.867136487011 3.167220593037 + 93.600 2661.89 3.000 5.012 86.846 0.000 -0.319 1.257 72.943 46.867135437814 3.167194469090 + 93.700 2663.86 3.000 4.044 90.862 0.000 -0.283 1.191 71.816 46.867133335573 3.167168841541 + 93.800 2665.81 3.000 0.000 95.115 0.205 -0.269 1.217 70.923 46.867130216697 3.167143758054 + 93.900 2667.73 3.000 0.000 94.121 5.174 -0.222 1.251 70.326 46.867126127472 3.167119254329 + 94.000 2669.63 3.000 0.000 91.625 10.967 -0.174 1.295 69.667 46.867121045701 3.167095376903 + 94.100 2671.52 3.000 0.000 90.144 16.075 -0.138 1.198 69.163 46.867114942207 3.167072197116 + 94.200 2673.40 3.000 0.000 86.724 22.369 -0.119 1.201 68.753 46.867107879020 3.167049788771 + 94.300 2675.26 3.000 0.000 82.561 24.216 -0.055 1.142 68.778 46.867100025134 3.167028332368 + 94.400 2677.12 3.000 0.000 82.176 33.524 -0.085 1.104 68.583 46.867091338807 3.167007573013 + 94.500 2678.98 3.000 0.000 82.894 37.740 -0.028 1.062 68.457 46.867081826907 3.166987519359 + 94.600 2680.84 3.000 0.000 83.491 44.550 0.049 1.039 68.504 46.867071544125 3.166968196403 + 94.700 2682.71 3.000 0.000 83.587 46.025 0.093 1.018 68.695 46.867060520597 3.166949572847 + 94.800 2684.59 3.000 0.000 83.671 46.025 0.173 1.064 69.091 46.867048751662 3.166931675290 + 94.900 2686.48 3.000 0.000 85.101 46.025 0.161 1.116 69.599 46.867036233212 3.166914575462 + 95.000 2688.40 3.000 0.000 85.339 46.025 0.182 1.131 70.376 46.867022971442 3.166898356428 + 95.100 2690.33 3.000 0.000 85.544 46.025 0.142 1.140 70.909 46.867008964083 3.166883108696 + 95.200 2692.28 3.000 0.000 85.685 46.349 0.175 1.103 71.168 46.866994227916 3.166868908990 + 95.300 2694.25 3.000 0.000 85.659 46.349 0.181 1.245 71.834 46.866978671444 3.166855687557 + 95.400 2696.24 3.000 0.000 82.926 46.349 0.145 1.225 72.292 46.866962664504 3.166843808177 + 95.500 2698.24 3.000 0.000 76.569 46.349 0.212 1.377 73.069 46.866946075279 3.166833254277 + 95.600 2700.27 3.000 0.000 72.495 57.133 0.094 1.092 72.997 46.866928943286 3.166824053509 + 95.700 2702.31 3.000 0.000 67.652 58.925 0.204 1.037 73.850 46.866911353459 3.166816158221 + 95.800 2704.36 3.000 0.000 63.276 58.599 0.352 1.260 75.312 46.866893363484 3.166809561852 + 95.900 2706.44 3.000 0.000 64.309 58.275 0.153 1.061 75.982 46.866874971434 3.166804292067 + 96.000 2708.54 3.000 0.000 65.182 57.925 0.257 1.014 77.001 46.866856181215 3.166800352417 + 96.100 2710.66 3.000 0.000 65.342 57.925 0.283 1.122 78.253 46.866837033725 3.166797749862 + 96.200 2712.82 3.000 0.000 67.998 57.925 0.209 1.087 79.488 46.866817599669 3.166796492291 + 96.300 2715.00 3.000 0.000 65.130 58.599 0.280 1.089 80.716 46.866798106914 3.166796573405 + 96.400 2717.19 3.000 0.000 56.277 71.905 0.251 1.201 81.641 46.866778395390 3.166798030860 + 96.500 2719.41 3.000 0.000 52.640 76.474 0.310 1.077 82.473 46.866758479853 3.166800954490 + 96.600 2721.66 3.000 0.000 44.864 84.494 0.348 0.993 82.232 46.866738402322 3.166805339538 + 96.700 2723.94 3.000 0.000 36.640 99.748 0.409 1.021 83.571 46.866718193272 3.166811132520 + 96.800 2726.26 3.000 0.000 34.311 99.748 0.410 0.940 85.349 46.866697873567 3.166818318464 + 96.900 2728.61 3.000 0.000 28.172 99.748 0.481 0.769 87.013 46.866677410705 3.166826818898 + 97.000 2731.01 3.000 0.000 27.710 99.748 0.442 0.632 88.597 46.866656764453 3.166836422575 + 97.100 2733.46 3.000 0.000 29.192 99.748 0.438 0.578 90.256 46.866635925200 3.166846944074 + 97.200 2735.94 3.000 0.000 28.839 99.748 0.444 0.606 91.786 46.866614896236 3.166858327352 + 97.300 2738.47 3.000 0.000 26.927 99.748 0.458 0.607 93.471 46.866590981014 3.166872186424 + 97.400 2741.04 3.000 0.000 23.675 99.748 0.462 0.603 95.315 46.866569545397 3.166885493618 + 97.500 2743.66 3.000 0.000 19.575 99.748 0.449 0.564 97.162 46.866548034974 3.166899709417 + 97.600 2746.32 3.000 0.000 9.349 99.748 0.472 0.435 98.760 46.866526376021 3.166914833550 + 97.700 2749.02 3.000 0.000 -2.147 99.748 0.471 0.195 99.635 46.866504515294 3.166930649177 + 97.800 2751.76 3.000 0.000 -5.714 99.748 0.432 -0.074 101.172 46.866482371081 3.166946841320 + 97.900 2754.54 3.000 0.000 -7.247 99.748 0.462 -0.167 102.666 46.866459860831 3.166963190199 + 98.000 2757.36 3.000 0.000 -14.663 99.748 0.459 -0.204 104.293 46.866436944428 3.166979618647 + 98.100 2760.23 3.000 0.000 -20.219 99.748 0.426 -0.364 105.752 46.866413598810 3.166996020934 + 98.200 2763.13 3.000 0.000 -19.802 99.748 0.457 -0.488 107.400 46.866389765925 3.167012194903 + 98.300 2766.08 3.000 0.000 -16.767 99.748 0.453 -0.521 108.833 46.866368117408 3.167026223893 + 98.400 2769.06 3.000 0.000 -18.063 98.324 0.443 -0.497 110.479 46.866343701675 3.167041332125 + 98.500 2772.08 3.000 0.000 -22.239 94.047 0.485 -0.560 112.153 46.866318329132 3.167056312895 + 98.600 2775.14 3.000 0.000 -25.569 89.547 0.384 -0.591 113.305 46.866292473486 3.167070868341 + 98.700 2778.24 3.000 0.000 -26.089 74.604 0.410 -0.597 114.630 46.866266102198 3.167084929192 + 98.800 2781.38 3.000 0.000 -26.583 73.499 0.390 -0.777 115.627 46.866239201648 3.167098369319 + 98.900 2784.56 3.000 0.000 -27.744 73.499 0.342 -0.918 116.638 46.866211802340 3.167110975232 + 99.000 2787.76 3.000 0.000 -25.774 73.499 0.386 -0.953 117.816 46.866183925083 3.167122514807 + 99.100 2790.99 3.000 0.000 -23.721 74.677 0.302 -0.846 118.881 46.866155563976 3.167132886896 + 99.200 2794.25 3.000 0.000 -22.727 74.499 0.376 -0.865 119.979 46.866126737914 3.167142173818 + 99.300 2797.54 3.000 0.000 -23.901 78.299 0.337 -0.849 121.304 46.866097196156 3.167150576568 + 99.400 2800.86 3.000 0.000 -24.600 78.474 0.357 -0.772 122.384 46.866067546459 3.167157986676 + 99.500 2804.22 3.000 0.000 -24.344 78.474 0.338 -0.770 124.048 46.866037489463 3.167164458886 + 99.600 2807.61 3.000 0.000 -23.439 79.922 0.363 -0.849 125.459 46.866007029849 3.167169906542 + 99.700 2811.03 3.000 0.000 -22.310 80.964 0.342 -0.816 126.633 46.865976204692 3.167174276850 + 99.800 2814.48 3.000 0.000 -20.456 83.276 0.359 -0.780 128.343 46.865945059859 3.167177612347 + 99.900 2817.96 3.000 0.000 -20.424 93.694 0.381 -0.895 130.028 46.865913601582 3.167179949927 + 100.000 2821.48 3.000 0.000 -20.443 99.748 0.373 -0.845 131.061 46.865881801920 3.167181231605 + 100.100 2825.03 3.000 0.000 -18.544 99.748 0.409 -0.832 132.695 46.865849647405 3.167181373339 + 100.200 2828.61 3.000 0.000 -15.683 99.748 0.385 -0.846 134.092 46.865817172010 3.167180325020 + 100.300 2832.23 3.000 0.000 -11.590 99.748 0.408 -0.816 135.305 46.865783503788 3.167178026139 + 100.400 2835.89 3.000 0.000 -10.730 99.748 0.392 -0.619 136.216 46.865750393378 3.167174717756 + 100.500 2839.59 3.000 0.000 -14.284 99.748 0.398 -0.519 136.709 46.865717069362 3.167170603633 + 100.600 2843.33 3.000 0.000 -15.946 99.748 0.391 -0.554 137.844 46.865683455013 3.167165796452 + 100.700 2847.09 3.000 0.000 -16.049 99.748 0.376 -0.586 138.654 46.865649566360 3.167160238213 + 100.800 2850.90 3.000 0.000 -16.401 99.748 0.385 -0.625 139.705 46.865615433644 3.167153830608 + 100.900 2854.74 3.000 0.000 -16.992 99.748 0.339 -0.641 140.749 46.865581085600 3.167146544978 + 101.000 2858.61 3.000 0.000 -16.106 99.748 0.354 -0.698 141.894 46.865546540073 3.167138350500 + 101.100 2862.51 3.000 0.000 -13.669 99.748 0.335 -0.714 143.042 46.865511815872 3.167129186745 + 101.200 2866.44 3.000 0.000 -11.981 99.748 0.345 -0.727 144.212 46.865476936842 3.167118997197 + 101.300 2870.41 3.221 0.000 -11.590 99.748 0.332 -0.676 145.361 46.865434204930 3.167105183736 + 101.400 2874.41 4.000 0.000 -10.140 99.748 0.329 -0.590 146.416 46.865399040691 3.167092830075 + 101.500 2878.44 4.000 0.000 -9.582 99.748 0.320 -0.499 147.262 46.865363753947 3.167079677193 + 101.600 2882.51 4.000 0.000 -7.561 99.748 0.381 -0.498 148.590 46.865328317928 3.167065774838 + 101.700 2886.60 4.000 0.000 -2.833 99.748 0.305 -0.400 149.929 46.865292700873 3.167051161578 + 101.800 2890.73 4.000 0.000 0.278 99.748 0.359 -0.211 150.930 46.865256878020 3.167035999291 + 101.900 2894.89 4.000 0.000 0.407 99.748 0.352 -0.043 152.082 46.865220828143 3.167020554038 + 102.000 2899.09 4.000 0.000 0.432 99.748 0.332 0.013 153.385 46.865184509241 3.167005005994 + 102.100 2903.31 4.000 0.000 1.067 99.748 0.323 0.044 154.570 46.865147907506 3.166989399484 + 102.200 2907.56 4.000 0.000 2.524 99.748 0.310 0.069 155.628 46.865109893099 3.166973241624 + 102.300 2911.85 4.000 0.000 6.161 99.748 0.322 0.155 156.856 46.865065708913 3.166954600592 + 102.400 2916.17 4.000 0.000 13.231 99.748 0.317 0.286 158.073 46.865028218331 3.166939072328 + 102.500 2920.52 4.000 0.000 16.503 99.748 0.313 0.493 159.257 46.864990391960 3.166923922802 + 102.600 2924.90 4.000 0.000 16.349 99.748 0.309 0.642 160.438 46.864952204031 3.166909413710 + 102.700 2929.30 4.000 0.000 15.829 99.748 0.291 0.745 161.381 46.864913626734 3.166895740223 + 102.800 2933.73 4.000 0.000 15.778 99.748 0.299 0.754 162.372 46.864874660738 3.166882975393 + 102.900 2938.19 4.000 0.000 15.855 99.748 0.284 0.732 162.958 46.864835333014 3.166871101539 + 103.000 2942.67 4.000 0.000 17.324 99.748 0.303 0.755 163.779 46.864795655575 3.166860076093 + 103.100 2947.18 4.000 0.000 18.081 99.748 0.290 0.740 164.568 46.864755618421 3.166849906059 + 103.200 2951.71 4.000 0.000 17.907 99.748 0.308 0.842 165.468 46.864710525208 3.166839687578 + 103.300 2956.28 4.000 0.000 17.452 99.748 0.274 0.906 166.454 46.864663857424 3.166830674234 + 103.400 2960.87 4.000 0.000 14.867 99.748 0.299 0.885 167.351 46.864622736821 3.166823993735 + 103.500 2965.49 4.000 0.000 12.807 99.748 0.292 0.798 168.225 46.864581323603 3.166818330551 + 103.600 2970.13 4.000 0.000 12.570 99.748 0.292 0.752 169.172 46.864539622071 3.166813586992 + 103.700 2974.79 4.000 0.000 12.846 99.748 0.291 0.677 170.061 46.864497638725 3.166809705351 + 103.800 2979.49 4.000 0.000 11.768 99.748 0.288 0.633 170.983 46.864455396290 3.166806636180 + 103.900 2984.20 4.000 0.000 10.299 99.748 0.282 0.574 172.441 46.864412913490 3.166804315630 + 104.000 2988.95 4.000 0.000 8.605 99.748 0.289 0.513 173.507 46.864370183150 3.166802674860 + 104.100 2993.71 4.000 0.000 7.803 99.748 0.276 0.456 174.612 46.864327200275 3.166801647877 + 104.200 2998.51 4.000 0.000 7.733 99.748 0.279 0.397 175.959 46.864273016511 3.166801134148 + 104.300 3003.34 4.000 0.000 7.175 99.748 0.277 0.356 176.441 46.864227473280 3.166801279800 + 104.400 3008.19 4.000 0.000 4.070 99.748 0.271 0.334 176.844 46.864183759183 3.166801855762 + 104.500 3013.07 4.000 0.000 2.941 99.748 0.272 0.257 177.355 46.864139834166 3.166802764826 + 104.600 3017.96 4.000 0.000 2.774 99.748 0.266 0.170 178.252 46.864095706097 3.166803902103 + 104.700 3022.89 4.000 0.000 2.209 99.748 0.261 0.136 179.134 46.864051367694 3.166805201307 + 104.800 3027.83 4.000 0.000 1.516 99.748 0.247 0.079 179.958 46.864006810615 3.166806648334 + 104.900 3032.80 4.000 0.000 0.971 99.748 0.262 0.059 180.668 46.863962046554 3.166808225226 + 105.000 3037.79 4.000 0.000 0.246 99.748 0.252 0.046 181.593 46.863917087954 3.166809901638 + 105.100 3042.81 4.000 0.000 -0.383 99.748 0.247 0.023 182.442 46.863871929555 3.166811624788 + 105.200 3047.85 4.000 0.000 -0.325 99.748 0.240 -0.009 183.195 46.863815641837 3.166813732540 + 105.300 3052.92 4.000 0.000 -0.075 99.748 0.250 -0.030 184.063 46.863770008558 3.166815376525 + 105.400 3058.01 4.000 0.000 -0.363 99.748 0.234 -0.055 184.786 46.863724163754 3.166817003976 + 105.500 3063.12 4.000 0.000 -2.018 99.748 0.226 -0.044 185.413 46.863678114431 3.166818613039 + 105.600 3068.25 4.000 0.000 -2.718 99.748 0.266 -0.089 186.385 46.863631873997 3.166820132433 + 105.700 3073.40 4.000 0.000 -0.678 99.748 0.216 -0.115 187.317 46.863585444929 3.166821530388 + 105.800 3078.58 4.000 0.000 0.150 99.748 0.236 -0.078 188.192 46.863538831702 3.166822860767 + 105.900 3083.77 4.000 0.000 0.137 99.748 0.220 -0.013 188.865 46.863492035097 3.166824206366 + 106.000 3088.98 4.000 0.000 0.131 99.748 0.226 -0.005 189.697 46.863445062283 3.166825582822 + 106.100 3094.22 4.000 0.000 0.323 99.748 0.221 -0.020 190.330 46.863395035790 3.166827086981 + 106.200 3099.48 4.000 0.000 0.150 99.748 0.215 0.023 190.914 46.863335472090 3.166828940440 + 106.300 3104.76 4.010 0.000 0.208 99.748 0.216 0.018 191.688 46.863287978995 3.166830490279 + 106.400 3110.05 5.000 0.000 0.253 99.748 0.090 -0.003 192.368 46.863240326041 3.166832115645 + 106.500 3115.36 5.000 0.000 -0.889 99.748 0.366 0.001 193.254 46.863192506056 3.166833784495 + 106.600 3120.68 5.000 0.000 -1.095 99.748 0.260 -0.022 193.805 46.863144500951 3.166835362035 + 106.700 3126.02 5.000 0.000 0.086 99.748 0.222 -0.025 194.618 46.863096337002 3.166836715048 + 106.800 3131.39 5.000 0.000 0.727 99.748 0.224 -0.002 195.439 46.863048063332 3.166837939027 + 106.900 3136.76 5.000 0.000 -0.639 99.748 0.205 0.019 195.904 46.862999674048 3.166839261842 + 107.000 3142.15 5.000 0.000 -0.953 99.748 0.197 -0.000 196.519 46.862951085335 3.166840776076 + 107.100 3147.57 5.000 0.000 -0.690 99.748 0.202 -0.049 197.207 46.862915803394 3.166841892108 + 107.200 3153.00 5.000 0.000 -1.338 99.748 0.205 -0.040 197.754 46.862896998749 3.166842467541 + 107.300 3158.43 5.000 0.000 -1.095 99.748 0.198 -0.049 198.535 46.862878165163 3.166843017868 + 107.400 3163.88 5.000 0.000 0.086 99.748 0.208 -0.064 199.093 46.862833643182 3.166844216244 + 107.500 3169.34 5.000 0.000 -0.062 90.050 0.206 -0.001 199.597 46.862784457739 3.166845470096 + 107.600 3174.83 5.000 5.186 -0.010 72.829 0.199 0.011 200.346 46.862735082327 3.166846757065 + 107.700 3180.33 5.000 22.457 -0.081 0.000 0.089 0.003 200.836 46.862685592374 3.166848095427 + 107.800 3185.81 5.000 54.730 -0.883 0.000 -0.902 0.028 198.503 46.862636362318 3.166849419297 + 107.900 3191.22 5.000 87.349 -2.512 5.974 -1.423 -0.015 193.315 46.862587992188 3.166850640952 + 108.000 3196.48 5.000 106.793 -0.626 1.999 -1.412 -0.143 187.440 46.862540904816 3.166851678616 + 108.100 3201.61 5.000 115.603 -1.268 1.999 -1.178 -0.053 182.223 46.862495063332 3.166852511897 + 108.200 3206.64 5.000 119.388 -6.625 0.000 -0.927 0.094 177.636 46.862450200469 3.166853262906 + 108.300 3211.56 5.000 118.178 -4.758 0.000 -1.185 0.087 175.059 46.862405799483 3.166854108712 + 108.400 3216.36 4.831 113.563 -7.888 0.000 -1.199 -0.040 171.718 46.862362859303 3.166855019986 + 108.500 3221.04 4.000 101.667 -10.243 0.000 -1.209 -0.294 167.221 46.862321009056 3.166855733500 + 108.600 3225.61 4.000 92.515 -9.120 0.000 -1.167 -0.436 162.040 46.862280231075 3.166855956202 + 108.700 3230.06 4.000 89.318 -11.025 0.000 -1.185 -0.167 157.756 46.862240531531 3.166855649954 + 108.800 3234.38 4.000 85.936 -10.859 0.000 -1.328 -0.173 153.749 46.862201955337 3.166854965572 + 108.900 3238.58 4.000 71.103 -10.140 0.000 -1.227 -0.311 149.346 46.862164501828 3.166853991694 + 109.000 3242.65 4.000 63.494 -16.870 0.000 -1.209 -0.240 144.515 46.862128119033 3.166852726038 + 109.100 3246.61 4.000 55.206 -23.401 0.000 -1.116 -0.371 140.356 46.862092741335 3.166851133842 + 109.200 3250.47 4.000 49.734 -25.787 0.000 -0.860 -0.638 137.213 46.862058276030 3.166849066784 + 109.300 3254.24 4.000 44.601 -25.819 0.000 -0.714 -0.584 133.592 46.862024596655 3.166846292752 + 109.400 3257.93 4.000 39.853 -26.082 0.000 -0.861 -0.683 129.977 46.861991618799 3.166842707949 + 109.500 3261.55 4.000 32.855 -25.120 0.000 -0.610 -0.787 129.221 46.861959313952 3.166838324410 + 109.600 3265.11 4.000 19.470 -29.444 0.000 -0.593 -0.761 127.180 46.861927639045 3.166833133618 + 109.700 3268.60 4.000 5.323 -36.853 0.000 -0.413 -0.897 125.376 46.861896508746 3.166827049671 + 109.800 3272.06 4.000 0.000 -41.697 0.000 -0.205 -0.933 124.742 46.861865849123 3.166819950813 + 109.900 3275.48 4.000 0.000 -41.241 30.536 -0.231 -1.014 123.662 46.861835622510 3.166811698547 + 110.000 3278.89 4.000 0.000 -35.487 37.073 -0.090 -1.054 123.536 46.861805781467 3.166802205173 + 110.100 3282.28 4.000 0.000 -35.096 40.769 0.127 -1.144 123.839 46.861776239772 3.166791390504 + 110.200 3285.68 4.000 0.000 -40.696 57.538 0.038 -1.145 123.670 46.861746913660 3.166779149531 + 110.300 3289.08 4.000 0.000 -43.455 58.599 0.145 -1.148 123.979 46.861717988370 3.166765508748 + 110.400 3292.49 4.000 0.000 -41.395 58.599 0.188 -1.210 124.858 46.861689147294 3.166750336269 + 110.500 3295.92 4.000 0.000 -37.463 58.599 0.178 -1.276 125.769 46.861660420836 3.166733676135 + 110.600 3299.37 4.000 0.000 -34.525 57.437 0.249 -1.217 126.579 46.861631899451 3.166715541517 + 110.700 3302.84 4.000 0.000 -31.118 57.275 0.186 -1.006 127.072 46.861603645136 3.166695853946 + 110.800 3306.33 4.000 0.000 -19.770 55.929 0.173 -0.882 126.240 46.861575735409 3.166674633318 + 110.900 3309.83 4.000 0.000 -14.438 57.419 0.280 -1.241 127.965 46.861548178170 3.166652031042 + 111.000 3313.34 4.000 0.000 -21.059 65.224 0.244 -0.838 129.981 46.861520879303 3.166628229517 + 111.100 3316.89 4.000 0.000 -21.489 64.062 0.239 -0.484 130.521 46.861493695406 3.166603470885 + 111.200 3320.46 4.000 0.000 -21.412 62.575 0.304 -0.443 131.680 46.861466566522 3.166578016011 + 111.300 3324.04 4.000 0.000 -12.706 62.575 0.242 -0.586 132.400 46.861439291147 3.166551629434 + 111.400 3327.66 4.000 0.000 3.255 61.412 0.267 -0.378 133.459 46.861412450549 3.166524690387 + 111.500 3331.29 4.000 0.000 9.035 51.474 0.251 0.094 134.441 46.861385621983 3.166497134663 + 111.600 3334.95 4.000 0.000 12.493 28.874 0.215 0.372 134.704 46.861358592392 3.166469519963 + 111.700 3338.61 4.000 0.000 19.235 22.653 -0.014 0.485 134.024 46.861331312964 3.166442276632 + 111.800 3342.27 4.000 0.000 29.641 13.236 -0.089 0.643 133.743 46.861303857661 3.166415558992 + 111.900 3345.92 4.000 0.000 40.881 13.075 -0.086 0.949 133.793 46.861276227023 3.166389560039 + 112.000 3349.56 4.000 0.000 42.209 13.075 -0.112 1.148 133.016 46.861248316249 3.166364624094 + 112.100 3353.18 4.000 0.000 43.062 13.075 -0.159 1.318 132.425 46.861220034259 3.166341056426 + 112.200 3356.78 4.000 0.000 42.837 12.254 -0.132 1.262 131.669 46.861191369254 3.166318984107 + 112.300 3360.37 4.000 0.000 39.405 11.749 -0.096 1.056 130.751 46.861162388694 3.166298405186 + 112.400 3363.94 4.000 0.000 31.630 12.075 -0.132 1.383 130.517 46.861133149844 3.166279361245 + 112.500 3367.48 4.000 0.000 26.414 17.200 -0.082 1.145 129.999 46.861103653909 3.166261875417 + 112.600 3371.02 4.000 0.000 30.513 38.227 -0.064 0.609 129.297 46.861073912084 3.166245755220 + 112.700 3374.54 4.000 0.000 37.750 44.349 0.039 1.043 128.490 46.861043988366 3.166230727561 + 112.800 3378.06 4.000 0.000 38.815 43.699 0.064 1.145 127.734 46.861013874648 3.166216801979 + 112.900 3381.57 4.000 0.000 34.773 47.337 0.023 0.911 126.978 46.860983476196 3.166204172022 + 113.000 3385.09 4.000 0.000 31.951 75.240 0.227 1.307 127.605 46.860952734986 3.166192885150 + 113.100 3388.62 4.000 0.000 32.079 84.897 0.204 1.069 129.016 46.860921665586 3.166182847822 + 113.200 3392.17 4.000 0.000 35.922 90.474 0.256 0.833 130.586 46.860890279356 3.166173945101 + 113.300 3395.74 4.000 0.000 36.935 96.350 0.282 0.988 131.356 46.860858582101 3.166166113643 + 113.400 3399.33 4.000 0.000 28.538 96.674 0.288 1.152 132.375 46.860826571353 3.166159463807 + 113.500 3402.94 4.000 0.000 17.272 98.768 0.314 1.066 133.538 46.860794230370 3.166154216828 + 113.600 3406.58 4.000 0.000 18.972 99.748 0.339 0.942 134.783 46.860761561569 3.166150373172 + 113.700 3410.25 4.000 0.000 22.931 99.748 0.323 0.907 135.881 46.860728599599 3.166147719694 + 113.800 3413.95 4.000 0.000 23.258 99.748 0.323 0.876 136.879 46.860695366424 3.166146122361 + 113.900 3417.67 4.000 0.000 23.245 99.748 0.309 0.836 137.725 46.860661871047 3.166145589457 + 114.000 3421.42 4.000 0.000 22.969 99.748 0.317 0.877 138.452 46.860628138628 3.166146141842 + 114.100 3425.20 4.000 0.000 22.546 99.748 0.311 0.947 138.956 46.860594197567 3.166147802014 + 114.200 3429.00 4.000 0.000 22.225 99.748 0.316 0.907 139.644 46.860560059875 3.166150624582 + 114.300 3432.83 4.000 0.000 21.122 99.748 0.313 0.931 140.356 46.860525734026 3.166154669456 + 114.400 3436.68 4.000 0.000 19.620 99.748 0.307 0.936 141.267 46.860491247675 3.166159963886 + 114.500 3440.56 4.000 0.000 19.864 99.748 0.304 0.830 142.117 46.860456630142 3.166166463725 + 114.600 3444.47 4.000 0.000 19.948 99.748 0.322 0.836 143.042 46.860421892887 3.166174075146 + 114.700 3448.40 4.000 0.000 19.280 99.748 0.300 0.833 144.025 46.860387033764 3.166182751542 + 114.800 3452.36 4.000 0.000 19.364 99.748 0.319 0.828 145.001 46.860352066344 3.166192520636 + 114.900 3456.35 4.000 0.000 18.151 99.748 0.298 0.790 145.933 46.860317013454 3.166203406218 + 115.000 3460.36 4.000 0.000 14.495 99.748 0.319 0.768 146.887 46.860281876440 3.166215373361 + 115.100 3464.40 4.000 0.000 14.187 99.748 0.311 0.695 147.798 46.860246631102 3.166228351498 + 115.200 3468.47 4.000 0.000 13.321 99.748 0.305 0.662 148.738 46.860211287806 3.166242267191 + 115.300 3472.57 4.000 0.000 8.560 99.748 0.318 0.603 149.839 46.860175894057 3.166257067089 + 115.400 3476.68 4.000 0.000 7.008 99.748 0.293 0.460 151.405 46.860140426888 3.166272666312 + 115.500 3480.83 4.000 0.000 6.899 95.088 0.293 0.278 152.295 46.860104767416 3.166288877344 + 115.600 3485.01 4.000 14.020 7.329 25.571 0.215 0.191 153.580 46.860068950536 3.166305453815 + 115.700 3489.18 4.000 54.932 5.045 0.000 -0.764 0.256 152.014 46.860033387432 3.166322148364 + 115.800 3493.27 4.000 80.208 0.317 0.000 -1.375 0.119 146.718 46.859998658788 3.166338665816 + 115.900 3497.23 4.000 77.744 6.187 0.000 -1.209 -0.034 141.300 46.859965073732 3.166354727228 + 116.000 3501.07 4.000 50.927 8.278 0.000 -1.240 0.063 136.789 46.859932577231 3.166370262211 + 116.100 3504.80 4.000 41.897 3.409 0.000 -0.959 0.074 132.800 46.859901005420 3.166385346082 + 116.200 3508.43 4.000 38.793 6.257 0.000 -0.961 -0.051 129.398 46.859870265236 3.166399991341 + 116.300 3511.95 4.000 38.079 10.235 0.000 -0.965 0.066 125.686 46.859836847639 3.166415827426 + 116.400 3515.37 4.000 38.842 8.734 0.000 -1.007 0.147 122.546 46.859807735700 3.166429666362 + 116.500 3518.69 4.000 34.812 11.370 0.000 -0.915 0.213 119.115 46.859779560553 3.166443265843 + 116.600 3521.93 3.305 35.873 9.234 0.000 -0.897 0.270 115.576 46.859752261726 3.166456705409 + 116.700 3525.07 3.000 40.924 1.523 0.000 -1.003 0.144 112.055 46.859725831495 3.166469956174 + 116.800 3528.11 3.000 37.437 5.641 0.000 -0.942 0.094 109.017 46.859700236237 3.166482973770 + 116.900 3531.06 3.000 39.889 5.128 0.000 -0.944 0.136 105.273 46.859675444494 3.166495703813 + 117.000 3533.91 3.000 49.119 -2.115 0.000 -1.092 0.010 101.428 46.859651492667 3.166508054143 + 117.100 3536.66 3.000 53.102 -3.654 0.000 -1.101 -0.087 97.864 46.859628452273 3.166519904199 + 117.200 3539.29 3.000 53.489 -4.488 0.000 -1.105 -0.068 93.309 46.859606339014 3.166531164324 + 117.300 3541.82 3.000 51.286 -4.572 0.000 -1.147 -0.116 89.432 46.859587324660 3.166540711441 + 117.400 3544.25 3.000 43.239 -4.456 0.000 -1.055 -0.116 85.713 46.859567196526 3.166550650175 + 117.500 3546.58 3.000 38.595 -7.645 0.000 -0.959 -0.139 82.145 46.859547594775 3.166560112864 + 117.600 3548.80 3.000 32.207 -12.039 0.000 -0.882 -0.186 79.042 46.859528750829 3.166568968243 + 117.700 3550.95 3.000 28.571 -20.039 0.000 -0.856 -0.225 75.802 46.859510582705 3.166577260369 + 117.800 3553.00 3.000 28.726 -34.172 0.000 -0.787 -0.358 72.929 46.859493045488 3.166584966887 + 117.900 3554.98 3.000 24.630 -45.495 0.000 -0.758 -0.514 70.290 46.859476085333 3.166591979909 + 118.000 3556.89 3.000 17.638 -51.217 6.600 -0.607 -0.615 67.856 46.859459612981 3.166598146133 + 118.100 3558.74 3.000 6.485 -57.427 7.600 -0.423 -0.680 66.106 46.859443495140 3.166603356552 + 118.200 3560.54 3.000 0.000 -65.183 9.250 -0.179 -0.751 65.746 46.859427570069 3.166607569246 + 118.300 3562.33 3.000 0.000 -75.621 14.550 -0.160 -0.847 65.174 46.859411808496 3.166610766182 + 118.400 3564.10 3.000 0.000 -90.819 14.550 -0.127 -0.893 64.612 46.859395981179 3.166612969687 + 118.500 3565.87 3.000 0.000 -101.641 14.550 -0.117 -1.016 64.483 46.859380129240 3.166614074994 + 118.600 3567.62 3.000 0.000 -100.929 20.099 -0.131 -1.103 64.220 46.859364343806 3.166613895290 + 118.700 3569.37 3.000 0.000 -93.500 32.774 -0.117 -1.096 63.892 46.859348678007 3.166612267235 + 118.800 3571.10 3.000 0.000 -91.627 32.774 -0.059 -1.118 63.622 46.859333197895 3.166609151369 + 118.900 3572.83 3.000 0.000 -102.264 31.449 -0.018 -1.092 63.341 46.859317947711 3.166604632489 + 119.000 3574.55 3.000 0.000 -111.611 29.799 -0.063 -1.100 63.161 46.859302944776 3.166598811229 + 119.100 3576.28 3.000 0.000 -112.875 30.774 -0.079 -1.129 63.151 46.859288227812 3.166591714877 + 119.200 3577.99 3.000 0.000 -112.990 36.399 -0.094 -1.159 62.873 46.859273883579 3.166583287450 + 119.300 3579.71 3.000 0.000 -112.092 44.376 -0.055 -1.222 62.639 46.859259628017 3.166573203724 + 119.400 3581.42 3.000 0.000 -110.289 45.524 -0.010 -1.139 62.747 46.859246237966 3.166561992533 + 119.500 3583.14 3.000 0.000 -109.109 45.011 0.146 -1.162 62.719 46.859233375450 3.166549490379 + 119.600 3584.88 3.000 0.000 -100.653 45.366 0.229 -1.268 63.237 46.859221012332 3.166535623871 + 119.700 3586.63 3.000 0.000 -78.803 46.174 0.170 -1.125 63.831 46.859209218857 3.166520345709 + 119.800 3588.40 3.000 0.000 -66.191 45.850 0.214 -1.179 64.558 46.859198080594 3.166503699425 + 119.900 3590.20 3.000 0.000 -55.913 45.174 0.218 -1.064 65.282 46.859187642977 3.166485813639 + 120.000 3592.00 3.000 0.000 -67.358 49.074 0.211 -1.113 66.229 46.859177904814 3.166466809341 + 120.100 3593.83 3.000 0.000 -74.595 58.291 0.173 -0.961 66.672 46.859168829256 3.166446782264 + 120.200 3595.68 3.000 0.000 -76.789 53.949 0.285 -0.949 67.665 46.859160353094 3.166425835980 + 120.300 3597.56 3.000 0.000 -83.525 50.025 0.235 -0.991 68.504 46.859152644040 3.166404606177 + 120.400 3599.46 3.000 0.000 -83.467 48.824 0.273 -1.020 69.343 46.859145413102 3.166382211783 + 120.500 3601.38 3.000 0.000 -82.030 49.500 0.211 -1.056 70.106 46.859138869232 3.166358886712 + 120.600 3603.33 3.000 0.000 -79.271 50.275 0.254 -1.102 70.841 46.859133141041 3.166334756128 + 120.700 3605.30 3.000 0.000 -69.135 63.622 0.240 -1.125 71.784 46.859128316421 3.166309875274 + 120.800 3607.29 3.000 0.000 -55.220 67.549 0.328 -1.063 72.716 46.859124455852 3.166284302248 + 120.900 3609.32 3.000 0.000 -51.820 65.062 0.344 -1.002 74.074 46.859121535975 3.166258067812 + 121.000 3611.37 3.000 0.000 -47.490 64.899 0.324 -0.901 75.283 46.859119470323 3.166231226060 + 121.100 3613.46 3.000 0.000 -56.086 63.722 0.280 -0.855 76.399 46.859118180896 3.166203877830 + 121.200 3615.58 3.000 0.000 -62.316 57.675 0.268 -0.868 77.674 46.859117628847 3.166176114678 + 121.300 3617.72 3.000 0.000 -63.567 54.786 0.269 -0.954 79.089 46.859117831159 3.166147703300 + 121.400 3619.89 3.000 0.000 -61.110 59.119 0.273 -1.004 80.406 46.859118864382 3.166119246956 + 121.500 3622.08 3.000 0.000 -50.351 65.419 0.272 -0.941 81.706 46.859120821985 3.166090523521 + 121.600 3624.30 3.000 0.000 -46.220 66.474 0.323 -0.972 82.746 46.859123744102 3.166061581005 + 121.700 3626.56 3.000 0.000 -39.837 73.661 0.315 -0.859 83.168 46.859127589469 3.166032439964 + 121.800 3628.85 3.000 0.000 -38.650 83.319 0.370 -0.761 84.035 46.859132254612 3.166003088662 + 121.900 3631.17 3.000 0.000 -45.751 82.611 0.381 -0.732 85.425 46.859137628907 3.165973496154 + 122.000 3633.53 3.000 0.000 -45.912 77.474 0.293 -0.779 86.836 46.859143681960 3.165943645271 + 122.100 3635.93 3.000 0.000 -42.043 76.651 0.399 -0.874 87.319 46.859150464717 3.165913565799 + 122.200 3638.37 3.000 0.000 -30.547 75.738 0.301 -0.787 88.860 46.859158010647 3.165883315408 + 122.300 3640.85 3.000 0.000 -19.115 69.024 0.432 -0.762 90.444 46.859166288115 3.165853200117 + 122.400 3643.36 3.000 0.000 -24.228 63.899 0.341 -1.012 91.873 46.859175511128 3.165823035131 + 122.500 3645.91 3.000 0.000 -23.420 59.762 0.364 -0.938 93.039 46.859185786353 3.165792998231 + 122.600 3648.49 3.000 0.000 -20.482 60.087 0.330 -0.706 95.624 46.859196970345 3.165763160623 + 122.700 3651.10 3.000 0.000 -31.766 74.649 0.267 -0.637 96.791 46.859208817217 3.165733378249 + 122.800 3653.74 3.000 0.000 -35.667 86.249 0.360 -0.686 97.910 46.859221237317 3.165703561620 + 122.900 3656.42 3.000 0.000 -32.433 97.155 0.398 -0.616 99.336 46.859234300949 3.165673742498 + 123.000 3659.14 3.000 0.000 -22.118 99.748 0.396 -0.573 101.511 46.859248055165 3.165643972707 + 123.100 3661.90 3.000 0.000 -14.920 99.748 0.379 -0.563 103.206 46.859262496290 3.165614239165 + 123.200 3664.71 3.000 0.000 -14.798 99.748 0.482 -0.479 103.980 46.859277615458 3.165584452990 + 123.300 3667.57 3.000 0.000 -18.615 99.748 0.351 -0.295 105.669 46.859294059917 3.165553102901 + 123.400 3670.48 3.000 0.000 -22.676 99.748 0.545 -0.341 107.404 46.859310334985 3.165522735179 + 123.500 3673.43 3.000 0.000 -20.822 99.748 0.464 -0.574 109.233 46.859327017876 3.165492317080 + 123.600 3676.42 3.000 0.000 -17.569 99.748 0.394 -0.543 110.716 46.859344323033 3.165461879602 + 123.700 3679.47 3.000 0.000 -13.515 99.748 0.467 -0.525 112.304 46.859362357447 3.165431498815 + 123.800 3682.56 3.000 0.000 -14.483 99.748 0.466 -0.492 113.888 46.859381097290 3.165401134710 + 123.900 3685.71 3.000 0.000 -13.489 99.748 0.472 -0.414 115.555 46.859400441956 3.165370698665 + 124.000 3688.90 3.000 0.000 -12.058 99.748 0.429 -0.397 117.215 46.859420327704 3.165340149028 + 124.100 3692.14 3.000 0.000 -11.122 99.748 0.455 -0.427 118.993 46.859440770995 3.165309536055 + 124.200 3695.42 3.000 0.000 -8.902 99.748 0.437 -0.384 120.761 46.859461806718 3.165278921912 + 124.300 3698.75 3.000 0.000 -8.742 99.748 0.422 -0.305 122.399 46.859483619903 3.165247974874 + 124.400 3702.14 3.000 0.000 -9.024 99.748 0.446 -0.263 124.159 46.859505720019 3.165217212120 + 124.500 3705.56 3.000 0.000 -8.941 99.748 0.431 -0.286 125.941 46.859528301256 3.165186282012 + 124.600 3709.04 3.000 0.000 -8.491 99.748 0.434 -0.279 127.723 46.859551368381 3.165155200317 + 124.700 3712.56 3.000 0.000 -8.440 99.748 0.436 -0.256 129.470 46.859574912508 3.165124003707 + 124.800 3716.13 3.000 0.000 -8.286 99.748 0.420 -0.264 131.212 46.859598941829 3.165092705591 + 124.900 3719.74 3.000 0.000 -7.003 99.748 0.429 -0.265 132.918 46.859623470094 3.165061322295 + 125.000 3723.40 3.000 0.000 -5.162 99.748 0.403 -0.239 134.603 46.859648476702 3.165029857118 + 125.100 3727.10 3.000 0.000 -4.732 99.748 0.401 -0.172 136.252 46.859673908131 3.164998278244 + 125.200 3730.85 3.000 0.000 -4.193 99.748 0.399 -0.136 137.761 46.859699736152 3.164966522626 + 125.300 3734.64 3.274 0.000 -3.898 99.748 0.393 -0.141 139.251 46.859725740232 3.164934829296 + 125.400 3738.46 4.000 0.000 -3.872 99.748 0.368 -0.138 140.778 46.859752283612 3.164902769668 + 125.500 3742.33 4.000 0.000 -3.712 99.748 0.321 -0.117 142.081 46.859779257123 3.164870463176 + 125.600 3746.25 4.000 0.000 -3.776 99.748 0.494 -0.129 144.079 46.859806624633 3.164837930549 + 125.700 3750.20 4.000 0.000 -3.231 99.748 0.403 -0.155 145.191 46.859834376533 3.164805184623 + 125.800 3754.20 4.000 0.000 -2.577 99.748 0.366 -0.110 146.527 46.859862478313 3.164772289584 + 125.900 3758.22 4.000 0.000 -2.506 99.748 0.329 -0.096 147.866 46.859890902806 3.164739269514 + 126.000 3762.29 4.000 0.000 -2.506 99.748 0.313 -0.076 149.087 46.859919646373 3.164706080206 + 126.100 3766.39 4.000 0.000 -2.506 99.748 0.315 -0.047 150.329 46.859948688593 3.164672682346 + 126.200 3770.53 4.000 0.000 -2.269 99.748 0.308 -0.077 151.513 46.859978014472 3.164639086638 + 126.300 3774.69 4.000 0.000 -1.852 99.748 0.315 -0.059 152.665 46.860007403181 3.164605588946 + 126.400 3778.90 4.000 0.000 -1.293 99.748 0.318 -0.049 153.947 46.860037263637 3.164571724406 + 126.500 3783.14 4.000 0.000 -1.037 99.748 0.319 -0.019 155.171 46.860067475064 3.164537577415 + 126.600 3787.41 4.000 0.000 -0.973 99.748 0.303 -0.011 156.323 46.860097958796 3.164503203880 + 126.700 3791.71 4.000 0.000 -0.973 99.748 0.316 -0.025 157.547 46.860128713784 3.164468610518 + 126.800 3796.05 4.000 0.000 -0.735 99.748 0.309 -0.012 158.793 46.860159739406 3.164433798188 + 126.900 3800.43 4.000 0.000 -0.511 99.748 0.292 0.007 160.096 46.860191034365 3.164398765854 + 127.000 3804.84 4.000 0.000 -0.447 99.748 0.300 0.009 161.360 46.860222603559 3.164363504889 + 127.100 3809.29 4.000 0.000 -0.440 99.748 0.307 0.005 162.606 46.860254439566 3.164327986413 + 127.200 3813.77 4.000 0.000 -0.485 99.748 0.307 0.031 163.873 46.860286531075 3.164292179296 + 127.300 3818.29 4.000 0.000 -0.447 99.748 0.296 0.015 165.129 46.860317536735 3.164257569680 + 127.400 3822.84 4.000 0.000 -0.440 99.748 0.287 0.006 166.267 46.860349801330 3.164221574217 + 127.500 3827.42 4.000 0.000 -0.485 99.748 0.293 0.024 167.502 46.860382605702 3.164185029915 + 127.600 3832.03 4.000 0.000 -0.132 99.748 0.284 0.036 168.704 46.860415659658 3.164148274310 + 127.700 3836.67 4.000 0.000 0.901 99.748 0.273 0.059 169.925 46.860448922086 3.164111312720 + 127.800 3841.34 4.000 0.000 1.914 99.748 0.273 0.065 171.102 46.860482339733 3.164074193521 + 127.900 3846.02 4.000 0.000 7.001 99.748 0.269 0.159 172.312 46.860515891049 3.164036901140 + 128.000 3850.73 4.000 0.000 11.197 99.748 0.257 0.324 173.478 46.860549540151 3.163999246663 + 128.100 3855.47 4.000 0.000 10.652 99.748 0.254 0.485 174.637 46.860583256277 3.163960837051 + 128.200 3860.25 4.000 0.000 11.338 99.748 0.247 0.558 175.750 46.860617116428 3.163921483030 + 128.300 3865.10 4.000 0.000 13.442 99.748 0.248 0.586 176.851 46.860652130083 3.163880265323 + 128.400 3869.97 4.000 0.000 13.904 99.748 0.242 0.641 177.805 46.860686288415 3.163839478593 + 128.500 3874.86 4.000 0.000 15.393 99.748 0.238 0.644 178.634 46.860719941909 3.163798004152 + 128.600 3879.77 4.000 0.000 15.790 99.748 0.234 0.830 179.602 46.860753095147 3.163755444242 + 128.700 3884.71 4.000 0.000 14.001 99.748 0.218 0.907 180.714 46.860785978714 3.163711797313 + 128.800 3889.69 4.000 0.000 12.968 99.748 0.231 0.781 181.658 46.860818702363 3.163667223082 + 128.900 3894.69 4.000 0.000 15.284 99.748 0.216 0.649 182.421 46.860851187352 3.163621790663 + 129.000 3899.71 4.000 0.000 16.624 99.748 0.214 0.729 183.245 46.860883384499 3.163575550512 + 129.100 3904.76 4.000 0.000 16.265 99.748 0.199 0.849 184.225 46.860915301875 3.163528501034 + 129.200 3909.83 4.000 0.000 16.214 99.748 0.201 0.850 185.827 46.860946883360 3.163480538147 + 129.300 3914.93 4.000 0.000 16.528 99.748 0.207 0.885 186.896 46.860977530830 3.163432418034 + 129.400 3920.05 4.000 0.000 16.490 99.748 0.194 0.936 187.666 46.861008183524 3.163382624854 + 129.500 3925.18 4.484 0.000 16.239 99.748 0.198 0.940 188.062 46.861038468229 3.163331713722 + 129.600 3930.34 5.000 0.000 16.336 99.748 0.080 0.963 188.329 46.861068267203 3.163279818035 + 129.700 3935.52 5.000 0.000 16.111 99.748 0.220 0.888 188.962 46.861097567404 3.163226920049 + 129.800 3940.72 5.000 0.000 16.599 99.748 0.203 0.860 189.704 46.861126355010 3.163173029523 + 129.900 3945.94 5.000 0.000 16.932 99.748 0.192 0.938 190.348 46.861154603525 3.163118175272 + 130.000 3951.18 5.000 0.000 15.303 99.748 0.181 0.950 191.216 46.861182264658 3.163062392252 + 130.100 3956.44 5.000 0.000 12.070 99.748 0.180 0.868 192.059 46.861209328922 3.163005738050 + 130.200 3961.72 5.000 0.000 13.391 99.748 0.183 0.801 192.764 46.861235859115 3.162948294928 + 130.300 3967.02 5.000 0.000 15.553 99.748 0.169 0.825 193.524 46.861262195276 3.162889538966 + 130.400 3972.35 5.000 0.000 15.579 99.748 0.166 0.840 194.337 46.861287815991 3.162830625921 + 130.500 3977.69 5.000 0.000 16.066 99.748 0.164 0.840 195.065 46.861312932413 3.162770951198 + 130.600 3983.05 5.000 0.000 16.599 99.748 0.176 0.851 195.709 46.861337517250 3.162710500946 + 130.700 3988.44 5.000 0.000 18.036 99.748 0.162 0.910 196.372 46.861361562226 3.162649265649 + 130.800 3993.84 5.000 0.000 18.466 99.748 0.174 0.943 197.066 46.861385018996 3.162587226785 + 130.900 3999.26 5.000 0.000 17.587 99.748 0.167 1.016 197.840 46.861407795583 3.162524397961 + 131.000 4004.70 5.000 0.000 17.529 99.748 0.168 0.994 198.546 46.861429821268 3.162460794760 + 131.100 4010.17 5.000 0.000 17.535 99.748 0.173 0.917 199.183 46.861451114281 3.162396403648 + 131.200 4015.65 5.000 0.000 17.927 99.748 0.164 0.900 199.727 46.861471754949 3.162331205861 + 131.300 4021.14 5.000 0.000 17.895 99.748 0.174 1.001 200.404 46.861491609333 3.162265695566 + 131.400 4026.66 5.000 0.000 16.618 99.748 0.162 1.052 201.243 46.861510778925 3.162199154816 + 131.500 4032.19 5.000 0.000 12.878 99.748 0.186 1.008 201.955 46.861529138085 3.162131657012 + 131.600 4037.75 5.000 0.000 12.519 99.748 0.171 0.873 202.722 46.861546720332 3.162063451821 + 131.700 4043.32 5.000 0.000 12.480 99.748 0.182 0.767 203.432 46.861563712534 3.161994661174 + 131.800 4048.92 5.000 0.000 10.973 99.748 0.177 0.658 204.328 46.861580201464 3.161925352991 + 131.900 4054.53 5.000 0.000 9.343 99.748 0.163 0.661 205.599 46.861596172533 3.161855486975 + 132.000 4060.17 5.000 8.497 7.560 96.350 0.186 0.638 206.445 46.861611624355 3.161785062452 + 132.100 4065.82 5.000 36.069 1.683 0.000 -0.265 0.450 206.898 46.861626603926 3.161714437160 + 132.200 4071.43 5.000 79.285 1.882 0.000 -1.349 0.181 203.176 46.861641148331 3.161644422822 + 132.300 4076.92 5.000 105.984 6.366 0.000 -1.410 0.072 197.344 46.861655265068 3.161575850403 + 132.400 4082.27 5.000 100.332 5.154 0.000 -1.376 0.045 192.206 46.861668958566 3.161509016366 + 132.500 4087.50 5.000 85.914 5.757 0.000 -1.280 -0.009 187.155 46.861682270928 3.161443735205 + 132.600 4092.62 5.000 71.359 5.641 0.000 -1.273 0.018 182.356 46.861695272010 3.161379840575 + 132.700 4097.61 5.000 69.814 5.462 0.000 -1.296 0.056 177.697 46.861707988040 3.161317388092 + 132.800 4102.48 5.000 82.320 4.538 0.000 -1.480 0.030 172.697 46.861720368627 3.161256476072 + 132.900 4107.22 4.726 91.239 4.949 0.000 -1.323 -0.003 167.379 46.861732381356 3.161197146408 + 133.000 4111.83 4.000 101.086 4.609 0.000 -1.379 -0.109 162.285 46.861744104698 3.161139461855 + 133.100 4116.31 4.000 109.008 2.825 0.000 -1.302 -0.083 158.224 46.861755640918 3.161083492010 + 133.200 4120.67 4.000 108.381 2.556 0.000 -1.424 0.036 153.493 46.861766962481 3.161029246865 + 133.300 4124.87 4.000 110.673 -0.543 0.000 -1.428 0.023 148.316 46.861779656671 3.160968412026 + 133.400 4128.94 4.000 113.153 0.067 0.000 -1.395 -0.077 143.456 46.861790145549 3.160917844928 + 133.500 4132.88 4.000 112.324 -0.023 0.000 -1.326 -0.173 139.298 46.861800346004 3.160868980408 + 133.600 4136.69 4.000 111.519 0.227 0.000 -1.339 -0.186 135.475 46.861810386578 3.160821761153 + 133.700 4140.39 4.000 110.003 -3.853 0.000 -1.246 -0.167 131.046 46.861820276912 3.160776101998 + 133.800 4143.96 4.000 103.716 -10.281 0.000 -1.215 -0.128 125.862 46.861829947833 3.160731960905 + 133.900 4147.41 3.200 94.032 -11.224 0.000 -1.361 -0.175 122.690 46.861839412409 3.160689389962 + 134.000 4150.73 3.000 92.200 -12.719 0.000 -1.290 -0.456 118.507 46.861848792666 3.160648463644 + 134.100 4153.94 3.000 92.607 -13.630 0.000 -1.140 -0.476 114.414 46.861858221798 3.160609199616 + 134.200 4157.03 3.000 92.089 -18.146 0.000 -1.276 -0.406 109.276 46.861867675261 3.160571618139 + 134.300 4160.02 3.000 91.461 -21.803 0.000 -1.180 -0.444 105.478 46.861875806037 3.160540541245 + 134.400 4162.89 3.000 86.421 -28.757 0.000 -1.256 -0.417 100.564 46.861884986617 3.160506717899 + 134.500 4165.64 3.000 81.079 -37.841 0.000 -1.189 -0.495 95.581 46.861894339707 3.160473813826 + 134.600 4168.28 3.000 76.499 -48.856 0.000 -1.216 -0.541 91.588 46.861903717732 3.160442487998 + 134.700 4170.81 3.000 66.557 -55.592 0.000 -1.060 -0.755 87.553 46.861913160894 3.160412710532 + 134.800 4173.23 3.000 60.760 -59.102 0.000 -0.958 -0.723 85.105 46.861922711023 3.160384508318 + 134.900 4175.55 3.000 57.824 -67.018 0.000 -1.067 -0.758 81.688 46.861932404486 3.160357903743 + 135.000 4177.78 3.000 52.462 -77.199 0.000 -0.940 -0.889 78.426 46.861942278387 3.160332880096 + 135.100 4179.91 3.000 46.376 -85.988 0.000 -0.801 -0.870 76.014 46.861952378438 3.160309398931 + 135.200 4181.96 3.000 40.498 -98.318 3.475 -0.913 -1.016 73.163 46.861962737352 3.160287401649 + 135.300 4183.94 3.000 29.501 -108.018 6.950 -0.613 -1.070 70.661 46.861973861752 3.160265874577 + 135.400 4185.86 3.000 13.806 -116.275 7.437 -0.550 -0.993 68.879 46.861984868451 3.160246552711 + 135.500 4187.73 3.000 1.703 -120.765 15.312 -0.412 -1.243 67.258 46.861996264817 3.160228619685 + 135.600 4189.57 3.000 0.000 -121.965 24.547 -0.193 -1.234 66.909 46.862008250991 3.160212077749 + 135.700 4191.39 3.000 0.000 -121.067 29.900 -0.183 -1.259 65.977 46.862020910919 3.160196976375 + 135.800 4193.20 3.000 0.000 -105.208 31.274 -0.100 -1.217 65.448 46.862034196257 3.160183271811 + 135.900 4195.00 3.000 0.000 -83.088 40.550 0.007 -1.121 65.991 46.862048015735 3.160170884411 + 136.000 4196.80 3.000 0.000 -98.626 57.777 -0.021 -1.132 66.297 46.862062335050 3.160159765917 + 136.100 4198.60 3.000 0.000 -107.999 58.750 0.127 -1.144 66.585 46.862077168598 3.160149872608 + 136.200 4200.42 3.000 0.000 -107.755 58.750 0.076 -1.123 67.075 46.862092519410 3.160141205041 + 136.300 4202.26 3.000 0.000 -98.184 58.750 0.135 -1.176 67.406 46.862110280327 3.160133060845 + 136.400 4204.11 3.000 0.000 -75.101 69.780 0.247 -1.130 68.205 46.862126616174 3.160127375942 + 136.500 4205.98 3.000 0.000 -72.176 91.050 0.227 -1.077 68.810 46.862143361243 3.160123130444 + 136.600 4207.89 3.000 0.000 -72.760 97.825 0.345 -0.947 69.692 46.862160492762 3.160120127519 + 136.700 4209.83 3.000 0.000 -73.267 97.499 0.292 -0.994 70.931 46.862177987140 3.160118276923 + 136.800 4211.80 3.000 0.000 -64.689 95.024 0.373 -1.018 72.439 46.862195835214 3.160117694094 + 136.900 4213.80 3.000 0.000 -60.327 91.050 0.387 -1.081 74.308 46.862214032456 3.160118518645 + 137.000 4215.85 3.000 0.000 -58.845 91.050 0.411 -1.041 76.115 46.862232551542 3.160120775143 + 137.100 4217.94 3.000 0.000 -51.602 92.211 0.495 -1.082 76.615 46.862251338775 3.160124449210 + 137.200 4220.07 3.000 0.000 -52.353 92.700 0.444 -1.062 77.523 46.862270288937 3.160129531666 + 137.300 4222.24 3.000 0.000 -46.868 92.374 0.413 -1.050 79.128 46.862286814292 3.160135112553 + 137.400 4224.44 3.000 0.000 -29.944 92.050 0.443 -1.075 80.936 46.862305709215 3.160142788348 + 137.500 4226.69 3.000 0.000 -18.839 90.225 0.463 -1.043 82.484 46.862325011121 3.160152184577 + 137.600 4228.99 3.000 0.000 -9.537 89.050 0.477 -0.960 84.132 46.862344302100 3.160163210999 + 137.700 4231.32 3.000 0.000 -16.017 93.686 0.513 -0.932 86.015 46.862363586305 3.160175799530 + 137.800 4233.71 3.000 0.000 -26.961 99.748 0.456 -0.861 87.697 46.862382883466 3.160189817064 + 137.900 4236.14 3.000 0.000 -26.108 99.748 0.500 -0.755 89.158 46.862402219380 3.160205110744 + 138.000 4238.62 3.000 0.000 -27.866 99.748 0.427 -0.569 90.652 46.862421621391 3.160221512394 + 138.100 4241.14 3.000 0.000 -26.506 99.748 0.424 -0.597 92.989 46.862441111129 3.160238901916 + 138.200 4243.72 3.000 0.000 -25.858 99.748 0.398 -0.526 94.641 46.862460686318 3.160257234857 + 138.300 4246.33 3.000 0.000 -25.049 99.502 0.362 -0.529 95.991 46.862480185355 3.160276382900 + 138.400 4248.99 3.000 0.000 -25.999 83.100 0.574 -0.624 98.159 46.862499793623 3.160296585018 + 138.500 4251.70 3.000 0.000 -26.069 57.599 0.295 -0.579 99.804 46.862519461777 3.160317834708 + 138.600 4254.45 3.000 0.000 -24.408 57.275 0.321 -0.577 101.118 46.862539103855 3.160340020340 + 138.700 4257.23 3.000 2.393 -25.049 53.325 0.288 -0.642 102.375 46.862558667811 3.160363103942 + 138.800 4260.05 3.000 10.523 -25.498 9.499 0.298 -0.625 103.541 46.862578059922 3.160387049025 + 138.900 4262.88 3.000 21.843 -29.970 0.000 -0.423 -0.539 103.764 46.862597118045 3.160411607289 + 139.000 4265.67 3.000 38.941 -37.225 0.000 -0.659 -0.616 101.403 46.862615580962 3.160436306742 + 139.100 4268.39 3.000 44.964 -40.035 0.000 -0.987 -0.771 98.378 46.862633155482 3.160460833982 + 139.200 4271.02 3.000 44.318 -42.480 0.000 -0.730 -0.820 94.706 46.862649677619 3.160485231860 + 139.300 4273.58 3.000 36.089 -46.598 0.970 -0.765 -0.836 91.779 46.862665163089 3.160509649372 + 139.400 4276.07 3.000 26.244 -54.463 9.924 -0.821 -0.941 89.072 46.862679686929 3.160534150585 + 139.500 4278.49 3.000 21.026 -59.050 8.749 -0.498 -0.970 87.365 46.862693286165 3.160558774603 + 139.600 4280.86 3.000 19.749 -68.802 9.586 -0.539 -0.913 85.141 46.862705984257 3.160583557190 + 139.700 4283.19 3.000 10.218 -79.451 9.749 -0.384 -1.098 83.754 46.862717795240 3.160608512793 + 139.800 4285.47 3.000 1.148 -81.035 24.872 -0.338 -1.261 83.128 46.862728656504 3.160633765852 + 139.900 4287.73 3.000 0.000 -76.936 26.299 -0.153 -1.154 82.181 46.862738495726 3.160659547182 + 140.000 4289.98 3.000 0.000 -67.024 37.073 -0.052 -1.149 81.886 46.862747330080 3.160685973783 + 140.100 4292.22 3.000 0.000 -61.501 52.299 0.015 -1.173 81.630 46.862755207502 3.160713007793 + 140.200 4294.47 3.000 0.000 -64.843 50.975 0.160 -1.158 81.825 46.862762128866 3.160740644408 + 140.300 4296.72 3.000 0.000 -66.261 51.812 0.127 -1.147 82.437 46.862768161379 3.160769209123 + 140.400 4299.00 3.000 0.000 -64.433 54.450 0.232 -1.148 82.912 46.862773223272 3.160798110122 + 140.500 4301.29 3.000 0.000 -57.293 53.800 0.221 -1.115 84.165 46.862777379815 3.160827555062 + 140.600 4303.60 3.000 0.000 -56.208 52.800 0.244 -1.192 85.501 46.862780611377 3.160857514646 + 140.700 4305.94 3.000 0.000 -50.043 52.800 0.208 -1.047 86.552 46.862782896509 3.160888004635 + 140.800 4308.31 3.000 0.000 -39.548 49.649 0.373 -0.915 86.213 46.862784245275 3.160919012138 + 140.900 4310.70 3.000 0.000 -23.112 49.999 0.156 -0.654 85.699 46.862784750801 3.160950408212 + 141.000 4313.11 3.000 0.000 -4.046 45.224 0.505 -0.645 86.843 46.862784535231 3.160982029044 + 141.100 4315.53 3.000 0.000 5.443 42.699 0.288 -0.655 88.550 46.862783614604 3.161013849742 + 141.200 4317.98 3.000 0.000 22.578 43.025 0.182 -0.065 89.590 46.862782136514 3.161045959535 + 141.300 4320.46 3.000 0.000 31.867 43.025 0.106 0.580 90.663 46.862780613601 3.161078358780 + 141.400 4322.93 3.000 0.000 37.955 43.025 0.171 0.796 91.092 46.862779608729 3.161110942863 + 141.500 4325.42 3.000 0.000 43.171 43.518 0.113 0.818 91.563 46.862779280566 3.161143645165 + 141.600 4327.92 3.000 0.000 39.335 43.699 0.191 0.662 92.280 46.862779574649 3.161176519465 + 141.700 4330.44 3.000 0.000 40.310 43.375 0.213 0.662 92.276 46.862780488274 3.161209628428 + 141.800 4332.98 3.000 0.000 40.592 43.523 0.095 0.626 91.340 46.862782009910 3.161242892008 + 141.900 4335.52 3.000 0.000 40.092 45.349 0.156 0.898 92.175 46.862784137457 3.161276140447 + 142.000 4338.07 3.000 0.000 42.055 44.847 0.322 1.291 93.630 46.862787094506 3.161309343993 + 142.100 4340.63 3.000 0.000 41.246 59.839 0.115 0.889 94.577 46.862791055310 3.161342618040 + 142.200 4343.22 3.000 0.000 46.000 66.964 0.247 0.631 94.609 46.862795854210 3.161376007389 + 142.300 4345.82 3.000 0.000 50.061 65.387 0.335 1.060 96.110 46.862802133117 3.161414130140 + 142.400 4348.46 3.000 0.000 52.505 54.294 0.274 1.133 96.017 46.862808614937 3.161447579535 + 142.500 4351.13 3.000 0.000 52.698 50.969 0.280 1.060 96.978 46.862816165147 3.161480990656 + 142.600 4353.82 3.000 0.000 51.864 51.150 0.237 1.171 98.360 46.862824712416 3.161514230960 + 142.700 4356.52 3.000 0.000 50.901 51.150 0.224 1.216 99.268 46.862834245289 3.161547173552 + 142.800 4359.26 3.000 0.000 47.007 51.474 0.245 1.175 99.790 46.862844828034 3.161579768201 + 142.900 4362.01 3.000 0.000 39.899 53.637 0.289 1.158 100.773 46.862856417341 3.161611985380 + 143.000 4364.79 3.000 0.000 34.805 60.231 0.257 0.995 101.367 46.862868967943 3.161643761700 + 143.100 4367.59 3.000 0.000 27.755 60.424 0.282 0.985 102.256 46.862882465533 3.161675070764 + 143.200 4370.42 3.000 0.000 20.461 66.549 0.305 0.773 103.462 46.862896808142 3.161705987435 + 143.300 4373.27 3.000 0.000 7.983 76.298 0.262 0.610 104.535 46.862909872790 3.161732686558 + 143.400 4376.15 3.000 0.000 3.871 94.611 0.236 0.589 106.047 46.862925129486 3.161762559492 + 143.500 4379.06 3.000 0.000 5.770 99.748 0.417 0.515 107.292 46.862941354197 3.161792928372 + 143.600 4382.00 3.000 0.000 2.376 99.748 0.550 0.366 109.049 46.862958220501 3.161823238946 + 143.700 4384.99 3.000 0.000 3.159 99.748 0.617 0.144 111.415 46.862975618997 3.161853677602 + 143.705 4385.15 3.000 0.000 3.219 99.748 0.552 0.127 111.504 46.862976497712 3.161855204871 +Lap: 2 01.54.912 0.000 -0.00 3.000 0.000 3.219 99.748 0.552 0.127 111.504 46.862976497712 3.161855204871 + 0.100 3.05 3.000 0.000 4.495 99.748 0.508 -0.095 113.004 46.862994266046 3.161886062224 + 0.200 6.14 3.000 0.000 7.254 99.748 0.491 -0.133 113.696 46.863012222919 3.161917514607 + 0.300 9.28 3.000 0.000 10.432 99.748 0.565 -0.093 115.299 46.863030320484 3.161949576512 + 0.400 12.47 3.000 0.000 12.137 99.748 0.464 0.044 116.454 46.863048623564 3.161982125035 + 0.500 15.70 3.000 0.000 12.732 99.748 0.388 0.161 118.169 46.863067238986 3.162015046356 + 0.600 18.98 3.000 0.000 10.761 99.748 0.394 0.206 119.541 46.863086423756 3.162048616333 + 0.700 22.30 3.000 0.000 2.974 99.748 0.448 0.159 120.969 46.863105805362 3.162082144868 + 0.800 25.66 3.000 0.000 3.530 99.748 0.490 0.105 122.950 46.863125556350 3.162115937827 + 0.900 29.07 3.000 0.000 6.649 99.748 0.389 0.072 124.797 46.863145665919 3.162150022281 + 1.000 32.52 3.000 0.000 8.350 99.748 0.394 0.069 127.777 46.863166104708 3.162184469125 + 1.100 36.02 3.000 0.000 7.893 99.748 0.553 -0.041 129.371 46.863186826503 3.162219334330 + 1.200 39.55 3.000 0.000 3.390 99.748 0.490 0.001 130.891 46.863207823282 3.162254626271 + 1.300 43.13 3.000 0.000 1.477 99.748 0.378 0.034 132.231 46.863229114511 3.162290330169 + 1.400 46.76 3.000 0.000 2.080 99.748 0.416 -0.048 133.288 46.863250672860 3.162326424113 + 1.500 50.43 3.000 0.000 0.125 99.748 0.476 -0.016 134.015 46.863272451002 3.162362887878 + 1.600 54.13 3.000 0.000 0.526 99.748 0.337 -0.011 136.217 46.863294255859 3.162399465161 + 1.700 57.88 3.045 0.000 0.992 99.748 0.386 -0.008 137.519 46.863316401257 3.162436706504 + 1.800 61.67 3.910 0.000 -0.820 99.748 0.401 0.007 138.915 46.863338774348 3.162474419231 + 1.900 65.49 4.000 0.000 -3.692 99.748 0.275 -0.038 140.470 46.863361350720 3.162512472602 + 2.000 69.35 4.000 0.000 -6.622 99.748 0.583 -0.138 142.413 46.863384177212 3.162550946942 + 2.100 73.26 4.000 0.000 -4.848 99.748 0.365 -0.206 144.007 46.863407239967 3.162589963178 + 2.200 77.21 4.000 0.000 -4.615 99.748 0.353 -0.206 145.403 46.863430428076 3.162629546929 + 2.300 81.20 4.000 0.000 -4.513 99.748 0.332 -0.196 146.597 46.863453666879 3.162669638954 + 2.400 85.21 4.000 0.000 -3.201 99.748 0.331 -0.183 147.748 46.863476966787 3.162710204413 + 2.500 89.27 4.000 0.000 -1.886 99.748 0.336 -0.143 148.903 46.863500363458 3.162751241304 + 2.600 93.35 4.000 0.000 -1.670 99.748 0.326 -0.099 150.010 46.863524109586 3.162793127942 + 2.700 97.48 4.000 0.000 -1.365 99.748 0.318 -0.063 150.982 46.863547758876 3.162834977937 + 2.800 101.63 4.000 0.000 -0.800 99.748 0.328 -0.068 152.119 46.863571569331 3.162877182385 + 2.900 105.81 4.000 0.000 -1.303 99.748 0.310 -0.061 153.337 46.863595542731 3.162919783359 + 3.000 110.03 4.000 0.000 -1.376 99.748 0.312 -0.058 154.427 46.863619665505 3.162962775173 + 3.100 114.28 4.000 0.000 -1.605 99.748 0.327 -0.067 155.681 46.863643930046 3.163006120392 + 3.200 118.56 4.000 0.000 -1.682 99.748 0.305 -0.076 156.881 46.863668335739 3.163049816272 + 3.300 122.87 4.000 0.000 -1.868 99.748 0.316 -0.082 158.023 46.863692890391 3.163093919455 + 3.400 127.22 4.000 0.000 -1.783 99.748 0.310 -0.077 159.175 46.863717592937 3.163138442490 + 3.500 131.60 4.000 0.000 -1.205 99.748 0.313 -0.080 160.397 46.863742433089 3.163183346988 + 3.600 136.01 4.000 0.000 -1.113 99.748 0.300 -0.064 161.512 46.863767203787 3.163228225855 + 3.700 140.45 4.000 0.000 -1.225 99.748 0.304 -0.058 162.527 46.863792264955 3.163273706000 + 3.800 144.93 4.000 0.000 -1.260 99.748 0.298 -0.068 163.697 46.863817516284 3.163319615163 + 3.900 149.43 4.000 0.000 -0.997 99.748 0.303 -0.076 164.799 46.863842896080 3.163365883313 + 4.000 153.96 4.000 0.000 -0.998 99.748 0.307 -0.066 165.906 46.863868401890 3.163412517053 + 4.100 158.53 4.000 0.000 -1.485 99.748 0.296 -0.065 167.077 46.863894051370 3.163459500886 + 4.200 163.12 4.000 0.000 -1.434 99.748 0.301 -0.059 168.215 46.863919862428 3.163506821140 + 4.300 167.75 4.000 0.000 -0.928 99.748 0.290 -0.061 169.273 46.863945823423 3.163554478613 + 4.400 172.40 4.000 0.000 -0.683 99.748 0.303 -0.057 170.327 46.863971909587 3.163602487302 + 4.500 177.09 4.000 0.000 -0.651 99.748 0.303 -0.046 171.389 46.863998120310 3.163650847604 + 4.600 181.81 4.000 0.000 -0.377 99.748 0.293 -0.046 172.579 46.864024745579 3.163700039165 + 4.700 186.56 4.000 0.000 -0.157 99.748 0.282 -0.033 173.564 46.864051271913 3.163749072424 + 4.800 191.34 4.000 0.000 -0.136 99.748 0.289 -0.020 174.540 46.864077948406 3.163798412094 + 4.900 196.14 4.000 0.000 -0.216 99.748 0.270 -0.007 175.614 46.864104747996 3.163847977581 + 5.000 200.97 4.000 0.000 -0.222 99.748 0.268 -0.029 176.626 46.864131639941 3.163897740826 + 5.100 205.82 4.000 0.000 -0.218 99.748 0.267 -0.014 177.603 46.864158602994 3.163947867950 + 5.200 210.71 4.000 0.000 -0.145 99.748 0.265 -0.019 178.582 46.864185685689 3.163998653643 + 5.300 215.64 4.000 0.000 -0.142 99.748 0.257 -0.032 179.514 46.864213000408 3.164050149225 + 5.400 220.63 4.000 0.000 -0.332 99.748 0.263 -0.045 180.523 46.864240615068 3.164102091162 + 5.500 225.64 4.000 0.000 -0.357 99.748 0.253 -0.023 181.596 46.864268417243 3.164154126446 + 5.600 230.67 4.000 0.000 -0.351 99.748 0.244 -0.026 182.520 46.864297574292 3.164208603157 + 5.700 235.70 4.000 0.000 -0.224 99.748 0.246 0.009 183.472 46.864325416523 3.164260649492 + 5.800 240.74 4.000 0.000 -0.028 99.748 0.234 -0.007 184.254 46.864353355718 3.164312839450 + 5.900 245.81 4.000 0.000 -0.132 99.748 0.236 0.000 185.014 46.864381525790 3.164365385103 + 6.000 250.91 4.000 0.000 -0.355 99.748 0.250 -0.002 186.076 46.864409873099 3.164418233886 + 6.100 256.03 4.000 0.000 -0.083 99.748 0.228 -0.009 187.067 46.864438334385 3.164471306172 + 6.200 261.18 4.000 0.000 -0.119 99.748 0.223 0.016 187.844 46.864466935197 3.164524614031 + 6.300 266.35 4.000 0.000 0.054 99.748 0.224 0.004 188.664 46.864495703812 3.164578138614 + 6.400 271.55 4.000 0.000 0.760 95.487 0.223 0.024 189.602 46.864524636972 3.164631841773 + 6.500 276.76 4.000 0.216 2.564 66.164 0.209 0.075 190.623 46.864553735340 3.164685739708 + 6.600 282.00 4.000 5.013 6.511 15.679 0.196 0.157 191.643 46.864582735524 3.164739300482 + 6.700 287.25 4.000 18.871 8.724 0.000 -0.303 0.275 190.626 46.864612073476 3.164793120550 + 6.800 292.47 4.000 31.847 3.016 0.000 -0.674 0.253 188.709 46.864641397364 3.164846333457 + 6.900 297.63 4.000 39.577 2.101 0.000 -0.854 0.156 185.371 46.864670505383 3.164898586701 + 7.000 302.70 4.000 45.603 1.596 0.000 -0.932 0.132 181.556 46.864699271221 3.164949851501 + 7.100 307.67 4.000 50.742 3.542 0.000 -1.159 0.174 178.745 46.864727602136 3.165000100478 + 7.200 312.54 4.000 52.952 9.678 0.000 -1.079 0.214 174.465 46.864755441021 3.165049211278 + 7.300 317.31 4.000 52.832 13.325 0.000 -1.056 0.311 170.005 46.864782796776 3.165097062225 + 7.400 321.97 4.000 50.443 10.533 0.000 -1.126 0.336 167.162 46.864809735982 3.165143603592 + 7.500 326.53 4.000 43.659 11.878 0.000 -0.959 0.360 163.263 46.864836293802 3.165188833715 + 7.600 331.00 4.000 36.644 17.822 0.000 -0.890 0.503 159.896 46.864861364767 3.165230859299 + 7.700 335.39 4.000 29.390 19.507 0.000 -0.835 0.598 157.290 46.864887265807 3.165273393629 + 7.800 339.70 4.000 22.759 22.548 0.000 -0.698 0.648 155.073 46.864913293485 3.165314974684 + 7.900 343.93 4.000 19.554 28.468 0.000 -0.632 0.774 152.842 46.864939393867 3.165355403948 + 8.000 348.11 4.000 15.940 29.064 0.000 -0.602 0.871 150.792 46.864965614401 3.165394659554 + 8.100 352.23 4.000 9.119 28.581 7.948 -0.470 0.959 149.138 46.864992037502 3.165432638360 + 8.200 356.32 4.000 0.000 28.743 20.649 -0.217 0.984 148.158 46.865018799044 3.165469311581 + 8.300 360.37 4.000 0.000 29.969 25.930 -0.155 1.068 147.630 46.865046043010 3.165504789050 + 8.400 364.42 4.000 0.000 30.097 25.974 -0.006 1.068 147.787 46.865073866095 3.165539165222 + 8.500 368.46 4.000 0.000 30.065 25.974 -0.045 1.063 147.820 46.865102265547 3.165572446618 + 8.600 372.50 4.000 0.000 31.806 25.649 -0.040 1.027 147.625 46.865131682943 3.165605232710 + 8.700 376.53 4.000 0.000 34.659 25.324 -0.048 1.070 147.603 46.865161042742 3.165636439218 + 8.800 380.56 4.000 0.000 38.829 24.999 -0.060 1.126 147.482 46.865190814966 3.165666536512 + 8.900 384.58 4.000 0.000 36.408 27.537 -0.066 1.133 147.205 46.865221131185 3.165695443951 + 9.000 388.60 4.000 0.000 34.213 28.124 -0.073 1.162 146.910 46.865251998791 3.165723035610 + 9.100 392.61 4.000 0.000 36.947 28.124 -0.059 1.257 146.850 46.865283360865 3.165749277632 + 9.200 396.61 4.000 0.000 38.884 30.382 -0.053 1.086 146.472 46.865315152883 3.165774218415 + 9.300 400.61 4.000 0.000 38.897 48.596 -0.020 1.086 146.090 46.865347344903 3.165797914121 + 9.400 404.61 4.000 0.000 37.201 50.824 0.068 1.234 146.520 46.865379955898 3.165820343792 + 9.500 408.62 4.000 0.000 38.224 48.367 0.128 1.130 147.293 46.865413047743 3.165841465431 + 9.600 412.65 4.000 0.000 42.722 43.699 0.207 0.916 148.063 46.865446352023 3.165861180507 + 9.700 416.69 4.000 0.000 42.342 44.025 0.011 1.245 148.279 46.865480303997 3.165879811608 + 9.800 420.73 4.000 0.000 37.096 44.025 0.075 1.488 148.912 46.865514722876 3.165897044471 + 9.900 424.78 4.000 0.000 35.036 53.651 0.095 1.289 149.247 46.865549576098 3.165912613161 + 10.000 428.84 4.000 0.000 32.577 87.299 0.154 1.053 149.919 46.865584848232 3.165926609643 + 10.100 432.91 4.000 0.000 25.124 99.748 0.197 1.122 150.747 46.865620486234 3.165939283724 + 10.200 437.00 4.000 0.000 23.214 99.748 0.290 1.105 151.510 46.865656489944 3.165950692107 + 10.300 441.11 4.000 0.000 21.513 99.748 0.267 0.964 152.724 46.865692901734 3.165960774658 + 10.400 445.25 4.000 0.000 14.200 99.748 0.293 0.912 152.775 46.865729734081 3.165969587605 + 10.500 449.42 4.000 0.000 12.080 99.748 0.290 0.881 153.458 46.865766965282 3.165977289169 + 10.600 453.61 4.000 0.000 13.064 99.748 0.289 0.714 154.007 46.865804956562 3.165984090103 + 10.700 457.84 4.000 0.000 11.845 99.748 0.290 0.602 154.797 46.865842931977 3.165989985963 + 10.800 462.09 4.000 0.000 11.893 99.748 0.285 0.584 155.816 46.865881236827 3.165995142878 + 10.900 466.37 4.000 0.000 12.825 99.748 0.282 0.520 156.808 46.865919851760 3.165999606004 + 11.000 470.69 4.000 0.000 13.021 99.748 0.288 0.518 157.781 46.865958773391 3.166003388663 + 11.100 475.04 4.000 0.000 12.654 99.748 0.288 0.592 158.878 46.865997975121 3.166006465861 + 11.200 479.41 4.000 0.000 11.864 99.748 0.283 0.646 160.094 46.866037423404 3.166008761447 + 11.300 483.82 4.000 0.000 10.379 99.748 0.282 0.614 161.274 46.866077113472 3.166010238452 + 11.400 488.25 4.000 0.000 10.029 99.748 0.278 0.548 162.364 46.866117081702 3.166010949797 + 11.500 492.72 4.000 0.000 11.351 99.748 0.292 0.511 163.495 46.866157351148 3.166010953692 + 11.600 497.21 4.000 0.000 11.273 99.748 0.276 0.526 164.615 46.866197573217 3.166010263123 + 11.700 501.74 4.000 0.000 9.930 99.748 0.305 0.508 165.746 46.866238320673 3.166008884504 + 11.800 506.30 4.000 0.000 12.858 99.748 0.280 0.481 166.847 46.866279399983 3.166006873224 + 11.900 510.90 4.000 0.000 18.764 99.748 0.291 0.604 168.047 46.866320741704 3.166004219213 + 12.000 515.52 4.000 0.000 20.073 99.748 0.279 0.753 169.198 46.866362345723 3.166000776872 + 12.100 520.18 4.000 0.000 18.222 99.748 0.272 0.823 170.296 46.866404198185 3.165996330405 + 12.200 524.86 4.000 0.000 16.434 99.748 0.289 0.931 171.450 46.866446265055 3.165990731788 + 12.300 529.58 4.000 0.000 17.139 97.850 0.282 0.921 172.536 46.866488517405 3.165983937652 + 12.400 534.33 4.000 0.000 18.240 94.127 0.271 0.858 173.494 46.866530946486 3.165975988374 + 12.500 539.11 4.000 0.000 20.339 93.700 0.269 0.914 174.597 46.866573528949 3.165966909082 + 12.600 543.91 4.000 0.000 20.951 93.758 0.250 0.988 175.375 46.866620919441 3.165955441876 + 12.700 548.74 4.000 0.000 16.271 94.350 0.225 1.032 176.576 46.866663700430 3.165943712910 + 12.800 553.60 4.000 0.000 14.440 94.024 0.207 0.807 177.067 46.866706556390 3.165930661014 + 12.900 558.49 4.000 0.634 12.108 88.112 0.247 0.860 177.415 46.866749455711 3.165916340705 + 13.000 563.39 4.000 13.724 8.024 67.762 0.215 0.987 179.675 46.866792320156 3.165900741002 + 13.100 568.31 4.000 34.747 4.326 18.589 -0.239 0.638 179.822 46.866835006698 3.165884078264 + 13.200 573.20 4.000 60.997 0.507 0.000 -0.929 0.059 177.143 46.866877264534 3.165867008909 + 13.300 578.01 4.000 77.112 2.169 0.000 -0.967 -0.002 172.991 46.866918784954 3.165850247664 + 13.400 582.70 4.000 66.761 -0.367 0.000 -1.226 0.009 168.026 46.866959362130 3.165833978225 + 13.500 587.29 4.000 66.445 -3.966 0.000 -1.113 -0.211 163.545 46.866998912774 3.165818197482 + 13.600 591.79 4.000 71.649 -6.255 0.000 -1.078 -0.326 160.198 46.867033558932 3.165804573802 + 13.700 596.18 4.000 67.034 -6.658 0.000 -1.311 -0.222 155.672 46.867071143880 3.165790147819 + 13.800 600.46 4.000 58.325 -9.119 0.000 -1.097 -0.363 152.646 46.867108226411 3.165776313756 + 13.900 604.63 4.000 42.781 -13.707 0.000 -0.998 -0.623 149.920 46.867144490921 3.165763330995 + 14.000 608.71 4.000 33.799 -15.615 0.000 -0.785 -0.603 146.915 46.867180132863 3.165751342015 + 14.100 612.72 4.000 31.058 -19.567 0.000 -0.866 -0.613 144.135 46.867215235602 3.165740336111 + 14.200 616.65 4.000 29.764 -24.334 0.000 -0.881 -0.867 141.558 46.867249765425 3.165730319272 + 14.300 620.50 4.000 23.988 -25.849 0.000 -0.694 -0.918 139.231 46.867283753476 3.165721481129 + 14.400 624.28 4.000 15.093 -23.572 0.000 -0.635 -0.891 136.861 46.867317315936 3.165713975350 + 14.500 628.02 4.000 9.805 -25.075 0.000 -0.402 -0.913 134.997 46.867350550193 3.165707768535 + 14.600 631.70 4.000 7.086 -26.837 0.000 -0.379 -0.964 133.891 46.867387462126 3.165702263665 + 14.700 635.36 4.000 4.704 -30.471 0.000 -0.319 -0.880 132.661 46.867420206914 3.165698632830 + 14.800 638.99 4.000 1.045 -33.342 0.000 -0.268 -0.903 131.868 46.867452795434 3.165696137698 + 14.900 642.60 4.000 0.000 -38.869 0.000 -0.231 -1.023 131.433 46.867485220462 3.165694823745 + 15.000 646.19 4.000 0.000 -40.546 0.000 -0.228 -1.096 130.727 46.867517461033 3.165694850461 + 15.100 649.76 4.000 0.000 -39.401 0.000 -0.231 -1.110 130.073 46.867549507566 3.165696325181 + 15.200 653.31 4.000 0.000 -39.728 0.000 -0.194 -1.114 129.507 46.867581357797 3.165699227614 + 15.300 656.84 4.000 0.000 -45.959 0.000 -0.196 -1.133 128.998 46.867612992733 3.165703518256 + 15.400 660.35 4.000 0.000 -48.128 0.000 -0.200 -1.192 128.479 46.867644362890 3.165709197169 + 15.500 663.85 4.000 0.000 -44.346 15.729 -0.196 -1.160 127.738 46.867675360417 3.165716280846 + 15.600 667.34 4.000 0.000 -43.055 25.025 -0.153 -1.187 127.202 46.867703068847 3.165723948164 + 15.700 670.80 4.000 0.000 -41.764 25.568 -0.068 -1.160 126.491 46.867733218917 3.165733763147 + 15.800 674.27 4.000 0.000 -41.007 26.721 -0.060 -1.194 126.408 46.867763356935 3.165745161605 + 15.900 677.73 4.000 0.000 -41.983 28.539 -0.047 -1.128 126.460 46.867793181169 3.165757988805 + 16.000 681.19 4.000 0.000 -43.379 32.064 -0.027 -1.096 126.255 46.867822695694 3.165772159537 + 16.100 684.65 4.000 0.000 -43.057 34.099 -0.024 -1.115 126.403 46.867851900171 3.165787666329 + 16.200 688.12 4.000 0.000 -45.654 33.677 -0.005 -1.150 126.322 46.867880761109 3.165804552214 + 16.300 691.58 4.000 0.000 -46.144 33.496 -0.018 -1.214 126.610 46.867909201469 3.165822850413 + 16.400 695.05 4.000 0.000 -44.205 37.374 -0.008 -1.254 126.532 46.867937154857 3.165842576885 + 16.500 698.52 4.000 0.000 -43.977 38.073 0.011 -1.241 126.521 46.867964614124 3.165863750000 + 16.600 701.99 4.000 0.000 -46.728 36.107 0.039 -1.236 126.588 46.867991385474 3.165886149729 + 16.700 705.46 4.000 0.000 -49.329 30.982 -0.001 -1.228 126.557 46.868017811992 3.165910025254 + 16.800 708.92 4.000 0.000 -49.663 28.727 -0.021 -1.307 126.705 46.868043679057 3.165935289472 + 16.900 712.39 4.000 0.000 -49.796 27.506 -0.042 -1.296 126.707 46.868068866823 3.165961928086 + 17.000 715.86 4.000 0.000 -50.709 23.252 -0.043 -1.267 126.876 46.868093351215 3.165989886443 + 17.100 719.32 4.000 0.000 -50.807 21.349 -0.071 -1.269 126.544 46.868117080684 3.166019048140 + 17.200 722.77 4.000 0.000 -50.793 20.025 -0.093 -1.283 126.417 46.868139978710 3.166049342194 + 17.300 726.21 4.000 0.000 -50.541 20.025 -0.084 -1.289 126.454 46.868162012901 3.166080746371 + 17.400 729.64 4.000 0.000 -50.688 20.675 -0.101 -1.246 126.292 46.868183179891 3.166113200768 + 17.500 733.06 4.000 0.000 -49.601 24.211 -0.104 -1.310 125.790 46.868203444099 3.166146644079 + 17.600 736.46 4.000 0.000 -48.457 29.430 -0.087 -1.291 125.175 46.868222750104 3.166181061558 + 17.700 739.85 4.000 0.000 -47.438 32.099 -0.022 -1.245 124.376 46.868241092806 3.166216434332 + 17.800 743.24 4.000 0.000 -47.291 32.099 -0.024 -1.213 123.839 46.868258515148 3.166252680748 + 17.900 746.62 4.000 0.000 -47.175 32.099 -0.020 -1.216 123.619 46.868275030846 3.166289722866 + 18.000 750.00 4.000 0.000 -47.187 33.424 -0.008 -1.175 123.377 46.868290599642 3.166327521564 + 18.100 753.37 4.000 0.000 -47.652 34.099 -0.017 -1.117 123.106 46.868305212617 3.166366010622 + 18.200 756.73 4.000 0.000 -47.914 34.424 -0.009 -1.145 122.227 46.868318932796 3.166405088543 + 18.300 760.09 4.000 0.000 -47.629 34.977 -0.012 -1.192 122.037 46.868331788965 3.166444713957 + 18.400 763.44 4.000 0.000 -46.552 36.281 -0.008 -1.269 121.821 46.868343689920 3.166484922559 + 18.500 766.79 4.000 0.000 -43.014 37.314 0.018 -1.255 121.611 46.868354515136 3.166525732097 + 18.600 770.13 4.000 0.000 -41.186 39.127 0.035 -1.210 121.433 46.868364335204 3.166567515430 + 18.700 773.48 4.000 0.000 -42.856 39.972 0.065 -1.161 121.413 46.868373023333 3.166609375096 + 18.800 776.82 4.000 0.000 -43.551 40.874 0.069 -1.120 121.465 46.868380755595 3.166651649525 + 18.900 780.17 4.000 0.000 -43.656 40.874 0.068 -1.140 121.646 46.868387546983 3.166694278027 + 19.000 783.52 4.000 0.000 -43.199 41.452 0.072 -1.176 121.866 46.868393360373 3.166737227858 + 19.100 786.87 4.000 0.000 -42.648 44.169 0.080 -1.206 121.910 46.868398147164 3.166780475506 + 19.200 790.22 4.000 0.000 -38.684 45.850 0.110 -1.202 121.933 46.868401873030 3.166823995023 + 19.300 793.58 4.000 0.000 -34.774 46.850 0.182 -1.179 122.427 46.868404525660 3.166867775251 + 19.400 796.95 4.000 0.000 -36.133 46.850 0.155 -1.131 122.675 46.868406119723 3.166911827722 + 19.500 800.33 4.000 0.000 -36.627 46.850 0.171 -1.099 123.058 46.868406694337 3.166956139087 + 19.600 803.73 4.000 0.000 -35.235 46.850 0.168 -1.098 123.653 46.868406269844 3.167001465834 + 19.700 807.13 4.000 0.000 -35.229 46.850 0.165 -1.058 124.134 46.868404869573 3.167046135359 + 19.800 810.55 4.000 0.000 -38.235 46.500 0.163 -1.043 124.404 46.868402513078 3.167090802578 + 19.900 813.98 4.000 0.000 -40.363 46.174 0.152 -1.074 124.743 46.868399225152 3.167135514848 + 20.000 817.42 4.000 0.000 -40.441 45.850 0.145 -1.124 125.189 46.868394999455 3.167180211409 + 20.100 820.87 4.000 0.000 -39.459 45.850 0.157 -1.199 125.626 46.868389766969 3.167224800353 + 20.200 824.33 4.000 0.000 -38.867 45.850 0.138 -1.167 125.669 46.868383441586 3.167269206326 + 20.300 827.80 4.000 0.000 -38.829 45.850 0.136 -1.212 126.235 46.868376014978 3.167313397275 + 20.400 831.27 4.000 0.000 -38.433 45.850 0.133 -1.227 126.678 46.868367529032 3.167357339710 + 20.500 834.76 4.000 0.000 -37.972 45.850 0.152 -1.162 126.760 46.868358017302 3.167400983878 + 20.600 838.25 4.000 0.000 -37.772 45.850 0.132 -1.186 127.143 46.868345585472 3.167451552765 + 20.700 841.75 4.000 0.000 -37.688 46.174 0.137 -1.224 127.748 46.868333861580 3.167494267875 + 20.800 845.26 4.000 0.000 -37.971 46.174 0.151 -1.163 127.804 46.868321132014 3.167536490203 + 20.900 848.78 4.000 0.000 -38.506 46.174 0.157 -1.157 128.309 46.868307424292 3.167578239461 + 21.000 852.32 4.000 0.000 -38.807 46.174 0.139 -1.164 128.782 46.868292749114 3.167619468416 + 21.100 855.85 4.000 0.000 -38.472 46.850 0.145 -1.207 129.295 46.868277091625 3.167660085357 + 21.200 859.41 4.000 0.000 -37.835 47.500 0.159 -1.185 129.385 46.868260446331 3.167700022437 + 21.300 862.97 4.000 0.000 -36.345 49.892 0.184 -1.167 129.835 46.868242849465 3.167739272718 + 21.400 866.54 4.000 0.000 -33.234 62.014 0.202 -1.167 130.546 46.868224329289 3.167777818405 + 21.500 870.13 4.000 0.000 -30.342 63.575 0.231 -1.171 131.186 46.868205213900 3.167815017462 + 21.600 873.73 4.000 0.000 -28.809 64.953 0.226 -1.121 131.803 46.868188300180 3.167845967486 + 21.700 877.36 4.000 0.000 -22.549 68.989 0.257 -1.107 132.619 46.868167518660 3.167881799379 + 21.800 881.00 4.000 0.000 -17.094 78.267 0.284 -1.027 133.539 46.868145520383 3.167917482960 + 21.900 884.66 4.000 0.000 -19.599 99.748 0.294 -0.951 134.704 46.868122705820 3.167952460563 + 22.000 888.35 4.000 0.000 -23.292 99.748 0.291 -0.859 135.687 46.868099135422 3.167986829434 + 22.100 892.07 4.000 0.000 -23.059 99.748 0.287 -0.807 137.316 46.868074865178 3.168020683869 + 22.200 895.82 4.000 0.000 -20.799 99.748 0.306 -0.820 138.249 46.868049924208 3.168054045869 + 22.300 899.59 4.000 0.000 -20.243 99.748 0.316 -0.821 139.305 46.868024308017 3.168086860505 + 22.400 903.39 4.000 0.000 -19.901 99.748 0.312 -0.808 140.661 46.867998007605 3.168119069167 + 22.500 907.21 4.000 0.000 -18.248 99.748 0.318 -0.820 142.006 46.867971035424 3.168150645737 + 22.600 911.07 4.000 0.000 -15.689 99.748 0.319 -0.767 143.277 46.867943139632 3.168181896144 + 22.700 914.95 4.000 0.000 -13.832 99.748 0.330 -0.673 143.951 46.867914889936 3.168212220598 + 22.800 918.87 4.000 0.000 -13.395 99.748 0.328 -0.627 144.459 46.867886033294 3.168242010050 + 22.900 922.81 4.000 0.000 -13.559 99.748 0.326 -0.582 145.163 46.867856614165 3.168271370964 + 23.000 926.79 4.000 0.000 -15.843 99.748 0.329 -0.538 145.942 46.867826703969 3.168300391711 + 23.100 930.79 4.000 0.000 -17.692 99.748 0.318 -0.533 146.826 46.867796349593 3.168329077979 + 23.200 934.82 4.000 0.000 -18.155 99.748 0.326 -0.651 147.963 46.867765527443 3.168357340413 + 23.300 938.88 4.000 0.000 -17.058 99.748 0.325 -0.685 148.919 46.867734166762 3.168385047279 + 23.400 942.97 4.000 0.000 -13.995 99.748 0.303 -0.721 149.997 46.867702219726 3.168412115201 + 23.500 947.09 4.000 0.000 -12.818 99.748 0.325 -0.679 150.961 46.867669700878 3.168438533761 + 23.600 951.24 4.000 0.000 -11.489 99.748 0.317 -0.633 151.965 46.867631670800 3.168468173374 + 23.700 955.43 4.000 0.000 -10.791 99.748 0.333 -0.518 152.906 46.867598096649 3.168493365668 + 23.800 959.64 4.000 0.000 -10.695 99.748 0.303 -0.538 154.088 46.867564052469 3.168518038395 + 23.900 963.87 4.000 0.000 -9.998 99.748 0.317 -0.493 155.235 46.867529530798 3.168542212109 + 24.000 968.15 4.000 0.000 -9.670 99.748 0.305 -0.403 156.163 46.867494565834 3.168565984818 + 24.100 972.44 4.000 0.000 -10.595 99.748 0.334 -0.431 157.155 46.867459215477 3.168589457579 + 24.200 976.77 4.000 0.000 -10.198 99.748 0.316 -0.471 158.287 46.867423482025 3.168612569516 + 24.300 981.12 4.000 0.000 -9.961 99.748 0.295 -0.445 159.390 46.867387330585 3.168635214150 + 24.400 985.51 4.000 0.000 -9.984 99.748 0.294 -0.395 160.322 46.867350758533 3.168657425377 + 24.500 989.92 4.000 0.000 -10.188 99.748 0.293 -0.400 161.289 46.867314081446 3.168679155925 + 24.600 994.36 4.000 0.000 -10.326 99.748 0.318 -0.436 162.277 46.867281655309 3.168697921935 + 24.700 998.82 4.000 0.000 -9.672 99.748 0.298 -0.466 163.374 46.867244493630 3.168718804772 + 24.800 1003.32 4.000 0.000 -9.100 99.748 0.309 -0.479 164.496 46.867206455457 3.168739436143 + 24.900 1007.84 4.000 0.000 -9.645 99.748 0.297 -0.397 165.370 46.867167998554 3.168759619597 + 25.000 1012.39 4.000 0.000 -11.041 99.748 0.310 -0.410 166.459 46.867129165196 3.168779417294 + 25.100 1016.97 4.000 0.000 -10.013 99.748 0.299 -0.491 167.646 46.867089988793 3.168798760693 + 25.200 1021.58 4.000 0.000 -8.248 99.748 0.294 -0.459 168.616 46.867050453447 3.168817571366 + 25.300 1026.21 4.000 0.000 -9.167 99.748 0.307 -0.388 169.543 46.867010534886 3.168835888505 + 25.400 1030.87 4.000 0.000 -10.302 99.748 0.289 -0.422 170.496 46.866970246080 3.168853793552 + 25.500 1035.56 4.000 0.000 -10.361 99.748 0.291 -0.456 171.460 46.866929625717 3.168871281168 + 25.600 1040.28 4.000 0.000 -10.771 99.748 0.292 -0.488 172.426 46.866888275230 3.168888458078 + 25.700 1045.02 4.000 0.000 -10.754 99.748 0.274 -0.534 173.420 46.866846995967 3.168904906897 + 25.800 1049.78 4.000 0.000 -9.551 99.748 0.275 -0.547 174.428 46.866805358569 3.168920718805 + 25.900 1054.57 4.000 0.000 -8.158 99.748 0.273 -0.501 175.358 46.866763373230 3.168935856830 + 26.000 1059.39 4.000 0.000 -9.046 99.748 0.279 -0.435 176.183 46.866721065466 3.168950402463 + 26.100 1064.23 4.000 0.000 -9.452 99.748 0.273 -0.427 177.072 46.866678453267 3.168964463201 + 26.200 1069.10 4.000 0.000 -9.283 99.748 0.261 -0.437 177.985 46.866635530667 3.168978051641 + 26.300 1073.99 4.000 0.000 -8.940 99.748 0.259 -0.427 178.859 46.866592291716 3.168991102467 + 26.400 1078.91 4.000 0.000 -8.547 99.748 0.255 -0.403 179.665 46.866548755641 3.169003608892 + 26.500 1083.85 4.000 0.000 -8.124 99.748 0.247 -0.398 180.612 46.866504959146 3.169015631095 + 26.600 1088.81 4.000 0.000 -7.967 99.748 0.251 -0.352 181.445 46.866461281127 3.169027126150 + 26.700 1093.79 4.000 0.000 -7.877 99.748 0.239 -0.324 182.199 46.866417064211 3.169038276111 + 26.800 1098.80 4.000 0.000 -7.804 99.748 0.249 -0.341 183.079 46.866372507089 3.169049026774 + 26.900 1103.84 4.000 0.000 -8.016 99.748 0.242 -0.350 183.932 46.866327693653 3.169059358028 + 27.000 1108.89 4.000 0.000 -7.850 99.748 0.253 -0.318 184.723 46.866282624664 3.169069266598 + 27.100 1113.97 4.000 0.000 -7.118 99.748 0.241 -0.321 185.590 46.866237302580 3.169078763069 + 27.200 1119.06 4.000 0.000 -7.120 99.748 0.242 -0.302 186.406 46.866191745471 3.169087856339 + 27.300 1124.18 4.000 0.000 -7.296 99.748 0.225 -0.294 187.243 46.866145973824 3.169096550632 + 27.400 1129.32 4.000 0.000 -7.585 99.748 0.229 -0.289 187.962 46.866099987674 3.169104854622 + 27.500 1134.48 4.000 0.000 -6.972 99.748 0.219 -0.301 188.763 46.866053780125 3.169112786633 + 27.600 1139.67 4.000 0.000 -5.409 99.748 0.219 -0.280 189.544 46.865997121533 3.169121964554 + 27.700 1144.88 4.000 0.000 -5.333 99.748 0.219 -0.249 190.424 46.865950465694 3.169129098309 + 27.800 1150.10 4.000 0.000 -4.905 99.748 0.207 -0.236 191.276 46.865903612915 3.169135913063 + 27.900 1155.35 4.035 0.000 -4.464 99.748 0.219 -0.187 192.079 46.865856552299 3.169142443872 + 28.000 1160.61 4.710 0.000 -5.558 99.748 0.197 -0.180 192.746 46.865809289010 3.169148723106 + 28.100 1165.90 5.000 0.000 -5.137 99.748 0.099 -0.185 193.134 46.865761831945 3.169154772788 + 28.200 1171.20 5.000 0.000 -4.618 99.748 0.370 -0.181 194.476 46.865714186028 3.169160574813 + 28.300 1176.52 5.000 0.000 -3.601 99.748 0.223 -0.227 194.993 46.865666357488 3.169166075635 + 28.400 1181.87 5.000 0.000 -2.289 99.748 0.223 -0.166 195.613 46.865618351457 3.169171275851 + 28.500 1187.23 5.000 0.000 -1.327 99.748 0.200 -0.067 196.133 46.865568391716 3.169176453822 + 28.600 1192.61 5.000 0.000 -1.243 99.748 0.205 -0.012 196.516 46.865511119963 3.169182272777 + 28.700 1198.02 5.000 0.000 -1.422 99.748 0.206 -0.009 197.083 46.865462541870 3.169187177026 + 28.800 1203.44 5.000 0.000 -2.043 99.748 0.199 -0.006 197.812 46.865413820220 3.169192079913 + 28.900 1208.88 5.000 0.000 -2.035 99.748 0.208 -0.034 198.523 46.865364945244 3.169196966001 + 29.000 1214.34 5.000 0.000 -2.114 99.748 0.205 -0.044 199.262 46.865315885054 3.169201781273 + 29.100 1219.81 5.000 0.000 -2.328 99.748 0.194 -0.047 199.794 46.865266635830 3.169206472545 + 29.200 1225.31 5.000 0.000 -1.844 99.748 0.187 -0.053 200.437 46.865217224305 3.169211046785 + 29.300 1230.82 5.000 0.000 -1.475 99.748 0.206 -0.060 201.106 46.865167671660 3.169215558735 + 29.400 1236.35 5.000 0.000 -2.007 99.748 0.199 -0.010 201.399 46.865117968490 3.169220045869 + 29.500 1241.90 5.000 0.000 -1.983 99.748 0.197 -0.000 202.175 46.865072334204 3.169224131880 + 29.600 1247.45 5.000 0.000 -1.092 99.748 0.193 -0.010 202.975 46.865034589363 3.169227481110 + 29.700 1253.03 5.000 0.000 -1.461 99.748 0.198 -0.018 203.532 46.864984431435 3.169231899012 + 29.800 1258.62 5.000 0.000 -2.586 99.748 0.197 -0.007 204.132 46.864934116146 3.169236311589 + 29.900 1264.23 5.000 0.000 -3.026 99.748 0.202 -0.050 204.933 46.864883649375 3.169240680380 + 30.000 1269.86 5.000 0.000 -3.555 99.748 0.202 -0.105 205.734 46.864833022493 3.169244913574 + 30.100 1275.51 5.000 0.000 -4.380 99.748 0.196 -0.132 206.526 46.864782222479 3.169248956295 + 30.200 1281.17 5.000 0.000 -4.886 99.748 0.194 -0.168 207.179 46.864731253499 3.169252810029 + 30.300 1286.85 5.000 0.000 -5.040 99.748 0.187 -0.192 207.880 46.864680126812 3.169256467474 + 30.400 1292.55 5.000 0.000 -5.726 99.748 0.195 -0.225 208.522 46.864628843024 3.169259878216 + 30.500 1298.27 5.000 0.000 -7.185 99.748 0.194 -0.249 209.218 46.864577508183 3.169262966562 + 30.600 1304.00 5.000 0.000 -7.203 99.748 0.202 -0.301 209.933 46.864531435146 3.169265407708 + 30.700 1309.75 5.000 0.000 -6.800 99.748 0.186 -0.360 210.415 46.864480234760 3.169267728816 + 30.800 1315.52 5.000 0.000 -8.111 99.748 0.186 -0.340 211.169 46.864428314775 3.169269640058 + 30.900 1321.30 5.000 0.000 -8.930 99.748 0.203 -0.378 211.797 46.864376232988 3.169271085859 + 31.000 1327.10 5.000 0.000 -8.848 99.748 0.197 -0.431 212.350 46.864323990931 3.169271999237 + 31.100 1332.91 5.000 0.000 -8.645 99.748 0.205 -0.447 212.682 46.864271580243 3.169272295383 + 31.200 1338.75 5.000 0.000 -8.028 99.748 0.188 -0.502 213.139 46.864218999395 3.169271927362 + 31.300 1344.60 5.000 0.000 -7.984 99.748 0.184 -0.454 213.688 46.864166260182 3.169270894905 + 31.400 1350.47 5.000 0.000 -7.740 99.748 0.178 -0.458 214.239 46.864113377609 3.169269227582 + 31.500 1356.36 5.000 0.000 -7.950 99.748 0.174 -0.404 214.674 46.864060368457 3.169266985142 + 31.600 1362.26 5.000 0.000 -7.519 99.748 0.170 -0.404 215.329 46.863994483948 3.169263454284 + 31.700 1368.18 5.000 0.000 -7.368 99.748 0.176 -0.412 215.992 46.863941221714 3.169259993527 + 31.800 1374.12 5.000 0.000 -8.305 99.748 0.182 -0.355 216.490 46.863887818267 3.169255963935 + 31.900 1380.08 5.000 0.000 -7.918 99.748 0.185 -0.377 217.091 46.863834275015 3.169251380369 + 32.000 1386.05 5.000 0.000 -7.779 99.748 0.186 -0.406 217.661 46.863780616090 3.169246252147 + 32.100 1392.04 5.000 0.000 -8.215 99.748 0.182 -0.370 218.231 46.863726852312 3.169240602062 + 32.200 1398.04 5.000 0.000 -7.448 99.748 0.191 -0.394 218.885 46.863672968429 3.169234421988 + 32.300 1404.06 5.000 0.000 -6.886 99.748 0.193 -0.367 219.468 46.863618954937 3.169227688730 + 32.400 1410.10 5.000 0.000 -7.166 99.748 0.179 -0.336 220.033 46.863564828119 3.169220409828 + 32.500 1416.15 5.000 0.000 -8.565 99.748 0.183 -0.345 220.524 46.863511976643 3.169212841477 + 32.600 1422.21 5.000 0.000 -8.831 99.748 0.160 -0.380 221.080 46.863467847139 3.169206160778 + 32.700 1428.29 5.000 0.000 -8.192 99.748 0.167 -0.431 221.678 46.863414401854 3.169197546888 + 32.800 1434.38 5.000 0.000 -7.869 99.748 0.172 -0.426 222.228 46.863359920094 3.169188149530 + 32.900 1440.48 5.000 0.000 -8.102 99.748 0.157 -0.390 222.610 46.863305365011 3.169178168482 + 33.000 1446.60 5.000 0.000 -8.020 99.748 0.169 -0.401 223.176 46.863250742661 3.169167644418 + 33.100 1452.73 5.000 0.000 -8.083 99.748 0.169 -0.415 223.598 46.863196046531 3.169156538256 + 33.200 1458.87 5.000 0.000 -8.120 99.748 0.170 -0.420 224.031 46.863141274934 3.169144796392 + 33.300 1465.03 5.000 0.000 -7.846 99.748 0.158 -0.422 224.546 46.863086432454 3.169132401831 + 33.400 1471.21 5.000 0.000 -6.928 99.748 0.154 -0.393 225.114 46.863031530406 3.169119398183 + 33.500 1477.39 5.000 0.000 -7.134 99.748 0.148 -0.340 225.527 46.862976580959 3.169105881447 + 33.600 1483.59 5.000 0.000 -7.930 99.748 0.157 -0.342 226.024 46.862921578702 3.169091938116 + 33.700 1489.80 5.000 0.000 -8.225 99.748 0.155 -0.355 226.558 46.862866511191 3.169077555510 + 33.800 1496.03 5.000 0.000 -7.916 99.748 0.151 -0.376 226.971 46.862811382513 3.169062650694 + 33.900 1502.26 5.000 0.000 -8.055 99.748 0.148 -0.385 227.446 46.862756209817 3.169047157225 + 34.000 1508.51 5.000 0.000 -7.826 99.748 0.137 -0.414 227.928 46.862700992460 3.169031057586 + 34.100 1514.77 5.000 0.000 -8.139 99.748 0.135 -0.378 228.297 46.862645726077 3.169014386218 + 34.200 1521.04 5.000 0.000 -8.873 99.748 0.148 -0.380 228.638 46.862590424466 3.168997182017 + 34.300 1527.33 5.000 0.000 -8.570 99.748 0.148 -0.435 229.063 46.862535117847 3.168979415585 + 34.400 1533.63 5.000 0.000 -6.242 99.748 0.145 -0.452 229.613 46.862479816354 3.168960997964 + 34.500 1539.94 5.000 0.000 -5.438 99.748 0.136 -0.348 230.040 46.862424498268 3.168941959522 + 34.600 1546.26 5.000 0.000 -7.866 99.748 0.140 -0.277 230.319 46.862369131612 3.168922479732 + 34.700 1552.59 5.000 0.000 -9.683 99.748 0.130 -0.300 230.641 46.862313727078 3.168902674025 + 34.800 1558.93 5.000 0.000 -8.269 99.748 0.139 -0.435 231.207 46.862258327594 3.168882410927 + 34.900 1565.29 5.000 0.000 -5.115 99.748 0.129 -0.443 231.671 46.862202948926 3.168861507245 + 35.000 1571.65 5.000 0.000 -4.640 99.748 0.121 -0.284 231.844 46.862147559887 3.168839981937 + 35.100 1578.03 5.000 0.000 -5.271 99.748 0.126 -0.235 232.383 46.862092126093 3.168818002413 + 35.200 1584.42 5.027 0.000 -1.925 99.748 0.136 -0.201 232.798 46.862036627142 3.168795680293 + 35.300 1590.83 5.560 0.000 -0.940 99.748 0.133 -0.073 233.311 46.861981042856 3.168773132827 + 35.400 1597.25 6.000 0.000 -2.144 99.748 -0.031 -0.001 233.496 46.861925381557 3.168750550622 + 35.500 1603.68 6.000 0.000 -2.116 99.748 -0.029 -0.017 234.062 46.861869660936 3.168728016645 + 35.600 1610.12 6.000 0.000 -0.287 99.748 0.042 -0.016 234.494 46.861813886525 3.168705379793 + 35.700 1616.56 6.000 0.000 0.044 99.748 0.075 0.031 234.628 46.861758056743 3.168682520816 + 35.800 1623.01 6.000 0.000 -0.336 99.748 0.111 0.064 234.911 46.861702202985 3.168659515033 + 35.900 1629.46 6.000 0.000 0.657 99.748 0.121 0.065 235.022 46.861646325648 3.168636496965 + 36.000 1635.93 6.000 0.000 0.544 99.748 0.118 0.072 235.361 46.861590357293 3.168613479704 + 36.100 1642.40 6.000 1.183 0.483 99.748 0.101 0.110 235.525 46.861534219472 3.168590465861 + 36.200 1648.88 6.000 25.876 0.468 28.171 -0.016 0.105 235.866 46.861477999358 3.168567533321 + 36.300 1655.34 6.000 69.441 0.392 0.000 -0.903 0.094 234.275 46.861422083952 3.168544824448 + 36.400 1661.72 6.000 100.668 2.276 3.535 -1.374 0.016 229.975 46.861367022675 3.168522451956 + 36.500 1667.96 6.000 118.706 -0.833 1.999 -1.472 0.116 224.377 46.861313171896 3.168500567057 + 36.600 1674.05 6.000 123.509 -2.769 1.999 -1.366 0.319 218.563 46.861256401869 3.168477696696 + 36.700 1680.02 6.000 122.433 0.410 1.999 -1.264 0.078 213.426 46.861204876008 3.168457228246 + 36.800 1685.87 6.000 124.677 5.235 0.000 -0.999 -0.172 209.517 46.861154381179 3.168437184480 + 36.900 1691.61 6.000 116.805 5.279 0.000 -1.180 -0.168 205.586 46.861104871713 3.168417240978 + 37.000 1697.24 6.000 95.626 4.549 0.000 -1.283 -0.163 200.711 46.861056393052 3.168397367423 + 37.100 1702.74 5.973 70.920 6.031 0.000 -1.110 -0.009 196.840 46.861008981540 3.168377743895 + 37.200 1708.13 5.440 58.243 9.290 0.000 -1.178 0.128 193.177 46.860962595881 3.168358536360 + 37.300 1713.42 5.000 56.869 6.687 0.000 -1.118 0.174 188.791 46.860917147109 3.168339841674 + 37.400 1718.59 5.000 56.282 3.937 0.000 -1.104 0.146 183.962 46.860872601122 3.168321679591 + 37.500 1723.65 5.000 54.976 2.594 0.000 -1.087 0.183 180.733 46.860828968468 3.168304049904 + 37.600 1728.62 5.000 59.872 4.314 0.000 -1.121 0.178 176.627 46.860789378665 3.168288220791 + 37.700 1733.47 5.000 70.262 4.356 0.000 -1.223 0.104 172.031 46.860747853753 3.168271794310 + 37.800 1738.20 5.000 75.855 2.841 0.000 -1.304 0.033 168.359 46.860707086035 3.168255764804 + 37.900 1742.80 5.000 75.590 4.836 0.000 -1.276 0.052 163.650 46.860667386268 3.168240146807 + 38.000 1747.28 4.999 74.936 4.776 0.000 -1.219 0.106 158.632 46.860628722061 3.168224929300 + 38.100 1751.65 4.940 76.636 4.602 0.000 -1.269 0.116 154.323 46.860591085491 3.168210177628 + 38.200 1755.89 4.000 79.553 1.169 0.000 -1.325 0.109 150.086 46.860554532391 3.168195945157 + 38.300 1760.00 4.000 82.806 0.736 0.000 -1.318 0.114 145.044 46.860519111778 3.168182259821 + 38.400 1763.98 4.000 86.105 -0.246 0.000 -1.325 0.105 140.083 46.860484825246 3.168169151789 + 38.500 1767.83 4.000 88.699 -1.029 0.000 -1.295 -0.011 134.971 46.860451677719 3.168156575831 + 38.600 1771.56 4.000 91.021 -0.357 0.000 -1.318 -0.058 131.346 46.860419697986 3.168144386983 + 38.700 1775.15 4.000 92.081 0.429 0.000 -1.401 -0.051 127.132 46.860388872549 3.168132466851 + 38.800 1778.61 4.000 92.029 1.786 0.000 -1.280 -0.130 121.914 46.860359140398 3.168120783226 + 38.900 1781.95 4.000 93.875 3.299 0.000 -1.110 -0.190 117.375 46.860330468605 3.168109296893 + 39.000 1785.17 4.000 97.161 1.300 0.000 -1.283 -0.154 113.036 46.860302885165 3.168097988785 + 39.100 1788.27 3.971 96.786 -6.685 0.000 -1.379 0.065 109.133 46.860276421402 3.168087004257 + 39.200 1791.24 3.390 93.640 -15.629 0.000 -1.311 0.025 103.928 46.860251073848 3.168076517513 + 39.300 1794.09 3.000 93.872 -18.037 0.000 -1.234 -0.223 99.528 46.860226816714 3.168066420797 + 39.400 1796.81 3.000 94.079 -18.477 0.000 -1.166 -0.320 95.331 46.860203640506 3.168056398262 + 39.500 1799.42 3.000 94.835 -22.575 0.000 -1.308 -0.202 90.472 46.860181561910 3.168046351304 + 39.600 1801.90 3.000 88.738 -29.914 0.000 -1.305 -0.259 86.213 46.860160604236 3.168036448489 + 39.700 1804.26 3.000 80.761 -34.752 0.000 -1.143 -0.311 82.035 46.860140758651 3.168026780692 + 39.800 1806.51 2.952 77.619 -43.401 0.000 -1.251 -0.373 77.281 46.860121993640 3.168017232056 + 39.900 1808.64 2.040 67.057 -59.091 0.000 -1.176 -0.510 74.649 46.860104287689 3.168007666436 + 40.000 1810.66 2.000 60.408 -68.982 0.000 -1.085 -0.617 71.085 46.860087633143 3.167997990715 + 40.100 1812.59 2.000 50.896 -73.208 0.000 -0.921 -0.692 67.644 46.860072002763 3.167988098225 + 40.200 1814.42 2.000 41.372 -74.746 0.000 -0.853 -0.737 64.689 46.860057343958 3.167977868182 + 40.300 1816.17 2.000 35.136 -83.986 0.000 -0.728 -0.874 61.827 46.860043604659 3.167967230515 + 40.400 1817.85 2.000 29.673 -94.109 0.000 -0.652 -0.892 59.684 46.860030762650 3.167956154135 + 40.500 1819.47 2.000 19.584 -99.165 16.041 -0.613 -0.938 57.492 46.860018815353 3.167944586824 + 40.600 1821.04 2.000 5.983 -103.111 17.699 -0.332 -0.974 56.331 46.860007711879 3.167932395915 + 40.700 1822.57 2.000 0.000 -106.956 17.699 -0.183 -0.983 55.416 46.859997320476 3.167919448314 + 40.800 1824.09 2.000 0.000 -118.053 17.049 -0.142 -0.997 55.261 46.859987529519 3.167905686355 + 40.900 1825.60 2.000 0.000 -134.114 16.049 -0.161 -0.995 54.748 46.859978365726 3.167891130896 + 41.000 1827.10 2.000 0.000 -147.191 17.831 -0.178 -1.146 54.422 46.859969948083 3.167875821883 + 41.100 1828.59 2.000 0.000 -150.770 25.561 -0.170 -1.086 54.177 46.859962366941 3.167859794337 + 41.200 1830.08 2.000 0.000 -153.537 25.579 -0.101 -1.144 54.168 46.859955674874 3.167843055846 + 41.300 1831.55 2.000 0.000 -155.054 25.376 -0.125 -1.128 54.338 46.859949927597 3.167825669713 + 41.400 1833.02 2.000 0.000 -155.133 27.455 -0.143 -1.195 54.166 46.859945184521 3.167807798420 + 41.500 1834.48 2.000 0.000 -154.750 39.464 -0.066 -1.238 53.478 46.859941496008 3.167789588659 + 41.600 1835.93 2.000 0.000 -153.847 47.736 -0.050 -1.206 53.295 46.859938910494 3.167771022659 + 41.700 1837.40 2.000 0.000 -151.600 45.625 0.167 -1.119 53.439 46.859937406294 3.167752031177 + 41.800 1838.88 2.000 0.000 -148.965 42.200 0.140 -1.081 54.478 46.859936892671 3.167732642305 + 41.900 1840.39 2.000 0.000 -148.937 38.631 0.086 -1.139 55.354 46.859937324048 3.167712970924 + 42.000 1841.91 2.000 0.000 -149.231 33.274 0.176 -1.206 55.854 46.859938789431 3.167693136963 + 42.100 1843.45 2.000 0.000 -149.199 33.501 -0.041 -1.223 56.023 46.859941388014 3.167673323769 + 42.200 1844.99 2.000 0.000 -147.821 34.248 -0.003 -1.182 55.989 46.859945111040 3.167653767153 + 42.300 1846.54 2.000 0.000 -141.609 36.889 0.003 -1.180 56.254 46.859949871217 3.167634659016 + 42.400 1848.09 2.000 0.000 -128.348 43.679 -0.045 -1.201 56.217 46.859955619000 3.167616100360 + 42.500 1849.64 2.000 0.000 -107.252 47.999 0.204 -1.158 56.795 46.859962378767 3.167598135501 + 42.600 1851.21 2.000 0.000 -95.545 47.999 0.422 -1.214 57.803 46.859971116593 3.167578837554 + 42.700 1852.83 2.000 0.000 -93.840 47.609 0.343 -1.070 58.484 46.859980132178 3.167561956055 + 42.800 1854.49 2.000 0.000 -84.805 45.025 0.346 -1.111 60.091 46.859990131155 3.167545567489 + 42.900 1856.17 2.000 0.000 -77.551 45.745 0.264 -1.146 61.488 46.860001024618 3.167529871003 + 43.000 1857.88 2.000 0.000 -73.610 46.675 0.287 -1.191 62.249 46.860012795835 3.167515114808 + 43.100 1859.61 2.000 0.000 -43.088 47.290 0.298 -1.120 63.056 46.860025462436 3.167501444684 + 43.200 1861.37 2.000 0.000 -0.903 46.349 0.351 -0.877 64.566 46.860038972576 3.167488879550 + 43.300 1863.16 2.000 0.000 10.966 48.858 0.401 -0.815 66.127 46.860053251091 3.167477404863 + 43.400 1864.99 2.000 0.000 -26.226 52.278 0.433 -1.009 67.327 46.860068263703 3.167466985925 + 43.500 1866.86 2.000 0.000 -49.604 59.281 0.429 -0.882 68.640 46.860083956673 3.167457506203 + 43.600 1868.77 2.000 0.000 -47.527 68.329 0.448 -0.676 70.459 46.860098688438 3.167449589325 + 43.700 1870.72 2.000 0.000 -39.080 72.824 0.472 -0.572 72.257 46.860115421156 3.167441449886 + 43.800 1872.73 2.000 0.000 -34.654 72.824 0.514 -0.461 73.909 46.860132897605 3.167433705245 + 43.900 1874.80 2.000 0.000 -38.213 71.952 0.479 -0.390 75.825 46.860150943321 3.167426293109 + 44.000 1876.91 2.000 0.000 -35.619 70.524 0.512 -0.532 77.586 46.860169546757 3.167419267222 + 44.100 1879.06 2.000 0.000 -30.395 67.304 0.611 -0.605 81.011 46.860188732463 3.167412864972 + 44.200 1881.28 2.000 0.000 -27.037 68.199 0.375 -0.403 83.080 46.860208475972 3.167407122260 + 44.300 1883.54 2.000 0.000 -27.440 67.874 0.451 -0.220 83.704 46.860228673752 3.167401777723 + 44.400 1885.84 2.000 0.000 -25.888 68.096 0.529 -0.311 86.033 46.860249303481 3.167396720392 + 44.500 1888.19 2.000 0.000 -22.750 68.804 0.569 -0.314 87.290 46.860270445821 3.167392059396 + 44.600 1890.61 2.000 0.000 -26.322 71.649 0.379 -0.167 88.662 46.860292697520 3.167387587144 + 44.700 1893.06 2.000 0.000 -27.952 74.148 0.435 -0.172 90.186 46.860314730775 3.167383310873 + 44.800 1895.55 2.029 0.000 -27.955 74.148 0.623 -0.379 92.228 46.860337170791 3.167379226845 + 44.900 1898.11 2.610 0.000 -27.037 76.591 0.512 -0.371 93.740 46.860360189507 3.167375620345 + 45.000 1900.72 3.000 0.000 -28.244 80.341 0.397 -0.192 94.472 46.860383686313 3.167372370534 + 45.100 1903.35 3.000 0.000 -27.849 82.554 0.166 -0.262 94.876 46.860407425604 3.167369171030 + 45.200 1906.01 3.000 0.000 -20.247 82.645 0.475 -0.709 97.135 46.860431410465 3.167366256000 + 45.300 1908.71 3.000 0.000 -15.540 91.374 0.404 -0.700 98.982 46.860455808415 3.167364288467 + 45.400 1911.46 3.000 0.000 -5.660 93.494 0.255 -0.487 100.658 46.860480644770 3.167363567473 + 45.500 1914.24 3.000 0.000 0.696 99.748 0.290 -0.431 102.025 46.860505805464 3.167363789628 + 45.600 1917.05 3.000 0.000 -0.164 99.748 0.266 -0.048 103.078 46.860530554926 3.167364425493 + 45.700 1919.89 3.000 0.000 -5.176 99.748 0.210 0.103 103.951 46.860556127405 3.167365072144 + 45.800 1922.76 3.000 0.000 -7.893 99.748 0.395 0.250 104.630 46.860582049771 3.167365456589 + 45.900 1925.66 3.000 0.000 -8.054 99.748 0.414 0.063 106.299 46.860608338041 3.167365578008 + 46.000 1928.61 3.000 0.000 -7.234 99.748 0.345 -0.084 107.443 46.860635070208 3.167365644864 + 46.100 1931.60 3.000 0.000 -5.904 99.748 0.465 -0.140 108.960 46.860662182425 3.167365866035 + 46.200 1934.62 3.000 0.000 -3.628 99.748 0.435 -0.221 111.806 46.860689622110 3.167366380150 + 46.300 1937.68 3.000 0.000 -2.761 99.748 0.469 -0.160 113.779 46.860717446469 3.167367214064 + 46.400 1940.80 3.000 0.000 -5.248 99.748 0.408 -0.080 115.478 46.860745705928 3.167368278333 + 46.500 1943.96 3.000 0.000 -9.134 99.748 0.451 -0.149 117.297 46.860774379742 3.167369516711 + 46.600 1947.16 3.000 0.000 -9.981 99.748 0.421 -0.245 119.050 46.860803222874 3.167371022804 + 46.700 1950.42 3.000 0.000 -7.206 99.748 0.435 -0.244 120.897 46.860832656847 3.167372942825 + 46.800 1953.72 3.000 0.000 -7.425 99.748 0.444 -0.184 122.468 46.860862565886 3.167375261704 + 46.900 1957.08 3.000 0.000 -7.617 99.748 0.434 -0.194 124.128 46.860892879163 3.167377899851 + 47.000 1960.48 3.000 0.000 -7.329 99.748 0.443 -0.196 125.811 46.860923594648 3.167380824542 + 47.100 1963.92 3.000 0.000 -7.178 99.748 0.431 -0.183 127.420 46.860954711291 3.167384054918 + 47.200 1967.41 3.000 0.000 -7.072 99.748 0.424 -0.187 128.991 46.860986224500 3.167387626288 + 47.300 1970.95 3.000 0.000 -6.779 99.748 0.420 -0.192 130.660 46.861018121809 3.167391559460 + 47.400 1974.53 3.000 0.000 -6.293 99.748 0.412 -0.210 132.210 46.861050394370 3.167395829089 + 47.500 1978.15 3.000 0.000 -6.197 99.748 0.410 -0.198 133.801 46.861083036544 3.167400404924 + 47.600 1981.82 3.000 0.000 -6.003 99.748 0.393 -0.213 135.240 46.861116368698 3.167405357382 + 47.700 1985.52 3.000 0.000 -5.980 99.748 0.406 -0.216 136.817 46.861149702344 3.167410625861 + 47.800 1989.27 3.000 0.000 -5.162 99.748 0.375 -0.223 138.220 46.861183347350 3.167416269402 + 47.900 1993.05 3.000 0.000 -4.543 99.748 0.391 -0.197 139.630 46.861217317308 3.167422278839 + 48.000 1996.88 3.000 0.000 -4.458 99.748 0.359 -0.181 140.972 46.861251623110 3.167428639770 + 48.100 2000.74 3.000 0.000 -3.851 99.748 0.370 -0.174 142.337 46.861286247771 3.167435328741 + 48.200 2004.65 3.000 0.000 -3.031 99.748 0.351 -0.150 143.599 46.861321183570 3.167442324949 + 48.300 2008.58 3.000 0.000 -2.106 99.748 0.340 -0.119 144.745 46.861356436422 3.167449607442 + 48.400 2012.56 3.000 0.000 -1.053 99.748 0.335 -0.089 145.891 46.861391984321 3.167457136162 + 48.500 2016.56 3.000 0.000 -0.481 99.748 0.334 -0.055 147.184 46.861427800058 3.167464869632 + 48.600 2020.61 3.029 0.000 -0.163 99.748 0.304 -0.027 148.357 46.861469702477 3.167474056867 + 48.700 2024.70 3.610 0.000 -0.127 99.748 0.291 0.007 149.373 46.861506164059 3.167482118373 + 48.800 2028.81 4.000 0.000 -0.010 99.748 0.275 0.020 150.459 46.861542930275 3.167490238424 + 48.900 2032.96 4.000 0.000 0.152 99.748 0.477 0.036 151.689 46.861580007068 3.167498390874 + 49.000 2037.15 4.000 0.000 0.796 99.748 0.129 0.005 153.233 46.861617413984 3.167506628091 + 49.100 2041.37 4.000 0.000 0.763 99.748 0.301 0.012 154.105 46.861655138287 3.167514999467 + 49.200 2045.62 4.000 0.000 0.854 99.748 0.338 0.045 155.370 46.861693138084 3.167523468779 + 49.300 2049.90 4.000 0.000 1.469 99.748 0.314 0.077 156.690 46.861731409900 3.167531956692 + 49.400 2054.21 4.000 0.000 2.381 99.748 0.308 0.097 158.030 46.861769984262 3.167540440311 + 49.500 2058.56 4.000 0.000 4.401 99.748 0.288 0.153 159.348 46.861808592410 3.167548850475 + 49.600 2062.93 4.000 0.000 6.219 99.748 0.299 0.215 160.652 46.861843598058 3.167556352156 + 49.700 2067.35 4.000 0.000 6.899 99.748 0.292 0.308 161.980 46.861882896582 3.167564509152 + 49.800 2071.79 4.000 0.000 8.117 99.748 0.289 0.383 163.243 46.861922725282 3.167572378200 + 49.900 2076.27 4.000 0.000 10.466 99.748 0.288 0.439 164.519 46.861962879812 3.167579823371 + 50.000 2080.78 4.000 0.000 13.474 99.748 0.290 0.585 165.754 46.862003360818 3.167586744127 + 50.100 2085.32 4.000 0.000 12.661 99.748 0.260 0.647 167.016 46.862044184634 3.167593035813 + 50.200 2089.90 4.000 0.000 11.304 99.748 0.275 0.631 167.819 46.862085362183 3.167598614610 + 50.300 2094.50 4.000 0.000 10.469 99.748 0.271 0.600 168.808 46.862126871806 3.167603467755 + 50.400 2099.14 4.000 0.000 9.306 99.748 0.263 0.545 169.797 46.862168667237 3.167607621845 + 50.500 2103.81 4.000 0.000 9.271 99.748 0.283 0.498 170.795 46.862210734123 3.167611132719 + 50.600 2108.51 4.000 0.000 10.132 99.748 0.261 0.485 171.917 46.862256053922 3.167614206906 + 50.700 2113.24 4.000 0.000 8.441 99.748 0.262 0.447 173.132 46.862298707775 3.167616474895 + 50.800 2118.01 4.000 0.000 6.448 99.748 0.258 0.326 174.096 46.862341654077 3.167618234180 + 50.900 2122.81 4.000 0.000 7.100 99.748 0.249 0.293 174.923 46.862384884894 3.167619586990 + 51.000 2127.63 4.000 0.000 6.223 99.748 0.281 0.387 176.152 46.862428382272 3.167620543233 + 51.100 2132.48 4.000 0.000 4.896 99.748 0.250 0.381 177.133 46.862472132779 3.167621041960 + 51.200 2137.36 4.000 0.000 5.801 99.748 0.238 0.303 178.119 46.862516131475 3.167621070381 + 51.300 2142.26 4.000 0.000 4.859 99.748 0.262 0.297 179.300 46.862560363784 3.167620703137 + 51.400 2147.19 4.000 0.000 3.271 99.748 0.229 0.299 180.158 46.862604828523 3.167619993143 + 51.500 2152.16 4.000 0.000 2.908 99.748 0.245 0.201 181.221 46.862649782999 3.167618931808 + 51.600 2157.15 4.000 0.000 1.879 99.748 0.231 0.166 182.296 46.862704389801 3.167617247929 + 51.700 2162.17 4.000 0.000 1.215 99.748 0.245 0.170 183.212 46.862749615744 3.167615619376 + 51.800 2167.21 4.000 0.000 1.496 99.748 0.214 0.135 184.131 46.862795080466 3.167613806898 + 51.900 2172.28 4.000 0.000 2.171 99.748 0.242 0.115 185.054 46.862840764092 3.167611818188 + 52.000 2177.38 4.000 0.000 1.508 99.748 0.217 0.125 186.062 46.862886655139 3.167609686572 + 52.100 2182.50 4.000 0.000 0.412 99.748 0.225 0.102 187.000 46.862932768225 3.167607443097 + 52.200 2187.64 4.000 0.000 0.980 99.748 0.206 0.061 187.666 46.862979104555 3.167605100638 + 52.300 2192.81 4.000 0.000 0.418 99.748 0.225 0.082 188.432 46.863025647029 3.167602655448 + 52.400 2198.00 4.000 0.000 0.311 99.748 0.202 0.114 189.430 46.863072368963 3.167600142282 + 52.500 2203.21 4.000 0.000 1.049 99.748 0.208 0.067 190.342 46.863116397443 3.167597760552 + 52.600 2208.43 4.000 0.000 1.048 99.748 0.197 0.077 191.015 46.863151484768 3.167595843182 + 52.700 2213.67 4.000 0.000 0.744 99.748 0.196 0.072 191.779 46.863197506325 3.167593245805 + 52.800 2218.94 4.040 0.000 -0.535 99.748 0.200 0.105 192.604 46.863245001143 3.167590451989 + 52.900 2224.25 4.810 0.000 -0.831 99.748 0.185 0.059 193.514 46.863292743827 3.167587573282 + 53.000 2229.56 5.000 0.000 -0.217 99.748 0.059 0.030 194.146 46.863340616564 3.167584658685 + 53.100 2234.89 5.000 0.000 -0.389 99.748 0.277 0.006 195.150 46.863388628914 3.167581753493 + 53.200 2240.25 5.000 0.377 -0.786 99.748 0.220 0.001 195.765 46.863436896527 3.167578895021 + 53.300 2245.65 5.000 8.491 -1.476 71.132 0.202 0.012 196.526 46.863485474219 3.167576071923 + 53.400 2251.06 5.000 28.371 -3.061 0.000 -0.037 -0.036 197.086 46.863534161038 3.167573254140 + 53.500 2256.45 5.000 60.355 -1.933 0.000 -0.971 -0.087 194.504 46.863582524523 3.167570493434 + 53.600 2261.73 5.000 79.973 -0.007 0.000 -1.269 -0.023 189.608 46.863638498560 3.167567436065 + 53.700 2266.89 5.000 77.873 1.343 0.000 -1.323 -0.043 184.131 46.863684664667 3.167565068898 + 53.800 2271.93 5.000 59.344 2.678 0.000 -1.185 -0.050 180.002 46.863729680296 3.167562891424 + 53.900 2276.85 5.000 48.373 2.889 0.000 -1.093 -0.031 177.386 46.863773733367 3.167560857051 + 54.000 2281.69 5.000 52.805 4.303 0.000 -1.022 -0.021 173.378 46.863816964032 3.167558882857 + 54.100 2286.43 4.976 60.413 3.194 0.000 -0.925 0.056 169.665 46.863859350988 3.167556912018 + 54.200 2291.06 4.490 66.765 -0.190 0.000 -1.207 -0.047 166.609 46.863900790169 3.167555026462 + 54.300 2295.58 4.000 66.497 1.410 0.000 -1.056 -0.133 162.631 46.863941261327 3.167553369573 + 54.400 2300.01 4.000 55.653 1.624 0.000 -1.007 -0.051 158.536 46.863980843740 3.167551943726 + 54.500 2304.35 4.000 48.154 -0.009 0.000 -0.967 -0.014 154.924 46.864019353401 3.167550586575 + 54.600 2308.60 4.000 44.290 -3.050 0.000 -0.953 -0.093 151.984 46.864054132092 3.167549311562 + 54.700 2312.76 4.000 40.054 -10.813 0.000 -0.898 -0.212 149.152 46.864091250634 3.167548039159 + 54.800 2316.84 4.000 35.794 -17.556 0.000 -0.847 -0.368 146.207 46.864127707418 3.167547154125 + 54.900 2320.84 4.000 32.774 -18.544 0.000 -0.866 -0.515 143.706 46.864163533817 3.167546859574 + 55.000 2324.76 4.000 28.670 -21.567 0.000 -0.719 -0.627 140.930 46.864198726884 3.167547280049 + 55.100 2328.62 4.000 10.502 -25.429 0.000 -0.567 -0.815 139.097 46.864233315054 3.167548605433 + 55.200 2332.42 4.000 0.824 -19.490 0.000 -0.256 -0.937 138.195 46.864267420534 3.167551107637 + 55.300 2336.19 4.000 0.000 -19.938 0.000 -0.196 -0.949 137.528 46.864301215314 3.167554919718 + 55.400 2339.95 4.000 0.000 -23.074 5.823 -0.254 -0.753 136.551 46.864334811848 3.167559863334 + 55.500 2343.70 4.000 0.000 -31.376 15.822 -0.141 -0.704 136.150 46.864368234575 3.167565650843 + 55.600 2347.43 4.000 0.000 -33.786 35.315 -0.145 -0.838 135.830 46.864399046484 3.167571747400 + 55.700 2351.15 4.000 0.000 -35.165 37.294 0.003 -0.991 135.784 46.864431922025 3.167579255365 + 55.800 2354.87 4.000 0.000 -36.303 33.151 0.041 -1.075 136.553 46.864464876760 3.167588071324 + 55.900 2358.59 4.000 0.000 -39.794 22.858 0.029 -1.039 136.586 46.864497695911 3.167598228635 + 56.000 2362.32 4.000 0.000 -40.934 20.524 -0.030 -1.081 136.682 46.864530345656 3.167609701425 + 56.100 2366.04 4.000 0.000 -43.294 20.524 -0.061 -1.098 136.487 46.864562733751 3.167622450643 + 56.200 2369.76 4.000 0.000 -41.598 20.802 -0.115 -1.228 136.512 46.864594755754 3.167636457381 + 56.300 2373.47 4.000 0.000 -37.284 22.528 -0.162 -1.280 136.217 46.864626364085 3.167651784261 + 56.400 2377.17 4.000 0.000 -37.451 27.932 -0.083 -1.043 135.747 46.864657565938 3.167668538882 + 56.500 2380.86 4.000 0.000 -35.460 31.774 -0.071 -0.940 135.566 46.864688333873 3.167686735625 + 56.600 2384.55 4.000 0.000 -29.346 37.379 0.034 -1.301 135.285 46.864719143979 3.167706648946 + 56.700 2388.22 4.000 0.000 -22.409 79.729 0.057 -1.257 135.082 46.864748882192 3.167727575446 + 56.800 2391.91 4.000 0.000 -20.907 93.525 0.150 -0.841 135.565 46.864778196599 3.167749768225 + 56.900 2395.62 4.000 0.000 -20.922 89.882 0.217 -0.429 135.918 46.864807431771 3.167772958047 + 57.000 2399.36 4.000 0.000 -12.813 79.523 0.300 -0.364 136.703 46.864836794098 3.167796806545 + 57.100 2403.13 4.000 0.000 2.118 77.600 0.306 -0.391 137.942 46.864866254214 3.167821324437 + 57.200 2406.92 4.000 0.000 11.981 65.114 0.298 -0.129 139.041 46.864895743183 3.167846577582 + 57.300 2410.75 4.000 0.000 17.213 55.174 0.276 0.357 140.186 46.864925379043 3.167872209652 + 57.400 2414.60 4.000 0.000 18.884 54.507 0.235 0.620 141.414 46.864955390054 3.167897692102 + 57.500 2418.48 4.000 0.000 18.803 54.800 0.242 0.575 142.539 46.864985878626 3.167922779820 + 57.600 2422.39 4.000 0.000 19.191 51.706 0.186 0.614 143.637 46.865016260704 3.167946923128 + 57.700 2426.32 4.000 0.000 20.599 46.349 0.234 0.824 144.769 46.865047613714 3.167970751482 + 57.800 2430.27 4.000 0.000 21.732 46.349 0.173 0.997 145.124 46.865079550213 3.167993679798 + 57.900 2434.25 4.000 0.000 23.371 46.675 0.148 0.869 145.141 46.865112013936 3.168015659149 + 58.000 2438.24 4.000 0.000 24.107 47.669 0.152 0.968 146.191 46.865144942049 3.168036724274 + 58.100 2442.24 4.000 0.000 24.918 63.278 0.161 0.935 146.899 46.865178289872 3.168056879051 + 58.200 2446.27 4.000 0.000 26.019 99.540 0.219 0.744 147.631 46.865212066092 3.168076182584 + 58.300 2450.32 4.000 0.000 30.744 99.433 0.164 0.619 148.154 46.865246284943 3.168094696918 + 58.400 2454.40 4.000 0.000 24.814 90.510 0.350 1.053 149.866 46.865280992445 3.168112219358 + 58.500 2458.50 4.000 0.000 26.034 79.978 0.291 1.220 151.261 46.865316244788 3.168128482945 + 58.600 2462.63 4.000 0.000 29.663 75.474 0.256 0.991 152.219 46.865352030706 3.168143487217 + 58.700 2466.79 4.000 0.000 32.041 75.474 0.231 1.010 153.054 46.865388271451 3.168157435629 + 58.800 2470.98 4.000 0.000 32.338 75.474 0.249 1.046 154.333 46.865424924684 3.168170319761 + 58.900 2475.19 4.000 0.000 30.697 75.474 0.258 1.156 155.641 46.865461997446 3.168181942647 + 59.000 2479.42 4.000 0.000 26.078 75.474 0.231 1.199 156.972 46.865499477253 3.168192139710 + 59.100 2483.68 4.000 0.000 22.659 75.474 0.254 1.212 158.311 46.865537334708 3.168200868053 + 59.200 2487.96 4.000 0.000 20.652 75.474 0.247 1.178 159.217 46.865575554757 3.168208084046 + 59.300 2492.27 4.000 0.000 13.755 75.474 0.279 1.104 160.428 46.865614130487 3.168213776050 + 59.400 2496.60 4.000 0.000 17.756 75.474 0.272 1.090 160.751 46.865653037797 3.168218015335 + 59.500 2500.95 4.000 0.000 22.955 75.684 0.265 1.003 161.505 46.865692248262 3.168220967684 + 59.600 2505.34 4.000 0.000 25.871 76.149 0.257 0.994 162.048 46.865731732261 3.168222755558 + 59.700 2509.75 4.000 0.000 25.752 76.149 0.263 0.993 162.218 46.865771460184 3.168223362472 + 59.800 2514.19 4.000 0.000 20.344 76.203 0.272 1.061 162.748 46.865811416499 3.168222628441 + 59.900 2518.65 4.000 0.000 17.689 90.430 0.273 1.101 163.500 46.865851603042 3.168220402817 + 60.000 2523.14 4.000 0.000 16.160 99.748 0.281 0.972 164.204 46.865892014039 3.168216692954 + 60.100 2527.66 4.000 0.000 14.987 99.748 0.280 0.893 165.279 46.865932625280 3.168211680447 + 60.200 2532.21 4.000 0.000 16.758 99.748 0.272 0.827 166.342 46.865973419791 3.168205542297 + 60.300 2536.79 4.000 0.000 16.398 99.748 0.281 0.805 167.419 46.866014388993 3.168198327797 + 60.400 2541.40 4.000 0.000 16.833 99.748 0.272 0.808 168.435 46.866055523240 3.168190023867 + 60.500 2546.03 4.000 0.000 16.427 99.748 0.275 0.827 169.486 46.866096807388 3.168180650290 + 60.600 2550.70 4.000 0.000 16.997 99.748 0.260 0.816 170.479 46.866138222344 3.168170217351 + 60.700 2555.39 4.000 0.000 18.119 99.748 0.252 0.851 171.488 46.866179737083 3.168158679191 + 60.800 2560.10 4.000 0.000 18.185 99.570 0.244 0.890 172.441 46.866221329021 3.168145968607 + 60.900 2564.85 4.000 0.007 17.226 85.439 0.259 0.896 173.393 46.866263001302 3.168132074857 + 61.000 2569.62 4.000 0.844 16.782 59.660 0.244 0.869 174.300 46.866304754918 3.168117003159 + 61.100 2574.41 4.000 15.590 15.997 0.000 0.161 0.860 175.607 46.866346485408 3.168100743959 + 61.200 2579.21 4.000 40.349 16.216 0.000 -0.597 0.808 174.361 46.866387883027 3.168083395379 + 61.300 2583.95 4.000 60.871 19.641 0.000 -1.063 0.672 170.338 46.866428513911 3.168065319219 + 61.400 2588.59 4.000 64.446 16.605 0.000 -1.163 0.597 165.459 46.866468067570 3.168046931399 + 61.500 2593.11 4.000 57.762 14.179 0.000 -1.150 0.684 161.700 46.866506470366 3.168028354022 + 61.600 2597.53 4.000 58.545 14.562 0.000 -1.159 0.744 157.790 46.866543748618 3.168009433275 + 61.700 2601.83 4.000 62.883 17.496 0.000 -1.150 0.682 153.308 46.866579905135 3.167990091407 + 61.800 2606.03 4.000 65.073 16.712 0.000 -1.092 0.588 149.476 46.866614956418 3.167970446583 + 61.900 2610.13 3.971 68.287 18.750 0.000 -1.141 0.493 145.326 46.866648936502 3.167950689464 + 62.000 2614.11 3.390 76.096 23.874 0.000 -1.312 0.533 140.914 46.866681823766 3.167930954200 + 62.100 2617.96 3.000 83.688 30.241 0.000 -1.326 0.609 135.485 46.866713522649 3.167911287100 + 62.200 2621.70 3.000 87.846 33.128 0.000 -1.324 0.634 130.064 46.866743959878 3.167891629166 + 62.300 2625.30 3.000 90.575 36.116 0.000 -1.351 0.591 124.986 46.866773125193 3.167871902433 + 62.400 2628.79 3.000 89.568 38.612 0.000 -1.281 0.724 121.294 46.866801052978 3.167852085999 + 62.500 2632.15 3.000 82.790 41.317 0.000 -1.187 0.522 116.917 46.866827787515 3.167832261529 + 62.600 2635.40 3.000 65.982 43.700 0.000 -1.211 0.558 113.784 46.866853380672 3.167812507360 + 62.700 2638.54 3.000 57.442 49.997 0.000 -1.087 0.836 110.374 46.866877861907 3.167792782818 + 62.800 2641.57 3.000 52.070 55.589 0.000 -0.999 0.834 107.307 46.866901238671 3.167772944804 + 62.900 2644.51 3.000 45.359 64.737 0.000 -1.055 0.918 103.867 46.866923509257 3.167752896683 + 63.000 2647.35 3.000 40.257 67.744 0.000 -0.859 1.088 100.971 46.866944670387 3.167732562936 + 63.100 2650.11 3.000 34.724 67.420 0.000 -0.803 1.097 98.461 46.866964723326 3.167711795179 + 63.200 2652.80 3.000 27.236 62.375 0.000 -0.701 1.199 95.531 46.866983692086 3.167690430811 + 63.300 2655.43 3.000 20.749 57.245 0.000 -0.557 1.173 93.779 46.867001626611 3.167668428351 + 63.400 2658.00 3.000 17.437 60.874 0.000 -0.601 1.195 91.680 46.867018555039 3.167645821984 + 63.500 2660.52 3.000 17.988 67.972 0.000 -0.487 1.276 89.944 46.867034453841 3.167622649087 + 63.600 2662.99 3.000 19.278 72.069 0.000 -0.640 1.217 87.788 46.867049254803 3.167598938268 + 63.700 2665.39 3.000 19.502 73.318 0.000 -0.509 1.295 85.258 46.867062920016 3.167574740317 + 63.800 2667.75 3.000 17.109 69.964 0.000 -0.418 1.292 84.077 46.867075465717 3.167550097969 + 63.900 2670.06 3.000 14.747 68.426 0.000 -0.538 1.259 82.357 46.867086915640 3.167525049716 + 64.000 2672.32 3.000 13.762 70.584 0.000 -0.403 1.333 80.924 46.867097246951 3.167499646437 + 64.100 2674.54 3.000 12.375 70.698 0.000 -0.367 1.267 79.700 46.867106423108 3.167473981003 + 64.200 2676.72 3.000 12.153 69.907 4.864 -0.430 1.311 77.744 46.867114436886 3.167448150470 + 64.300 2678.85 3.000 10.780 63.894 7.924 -0.303 1.333 76.714 46.867121284923 3.167422189633 + 64.400 2680.95 3.000 6.589 54.646 12.666 -0.249 1.326 75.652 46.867126944776 3.167396062564 + 64.500 2683.02 3.000 0.261 49.694 15.550 -0.174 1.358 74.930 46.867131388297 3.167369743396 + 64.600 2685.07 3.000 0.000 48.973 16.445 -0.114 1.314 74.513 46.867134933012 3.167340097524 + 64.700 2687.10 3.000 0.000 47.362 18.200 -0.064 1.270 74.447 46.867136805132 3.167313553935 + 64.800 2689.13 3.000 0.000 51.124 18.524 -0.058 1.101 74.490 46.867137569314 3.167286980071 + 64.900 2691.15 3.000 0.000 60.027 18.524 -0.069 0.898 74.269 46.867137452731 3.167260406270 + 65.000 2693.17 3.000 0.000 75.150 18.524 -0.092 0.926 74.031 46.867136667395 3.167233917823 + 65.100 2695.18 3.000 0.000 85.679 18.524 -0.118 1.104 73.932 46.867135157259 3.167207631251 + 65.200 2697.18 3.000 0.000 86.781 18.524 -0.119 1.224 73.937 46.867132698664 3.167181617776 + 65.300 2699.18 3.000 0.000 86.701 18.902 -0.106 1.171 73.723 46.867129179271 3.167155919469 + 65.400 2701.16 3.000 0.000 85.450 21.089 -0.109 1.184 73.384 46.867124655295 3.167130623995 + 65.500 2703.14 3.000 0.000 81.688 22.290 -0.099 1.225 73.224 46.867119193555 3.167105946308 + 65.600 2705.11 3.000 0.000 80.942 28.196 -0.088 1.207 73.054 46.867113528349 3.167084552676 + 65.700 2707.07 3.000 0.000 80.930 42.000 -0.068 1.115 72.884 46.867106357739 3.167061279538 + 65.800 2709.03 3.000 0.000 83.846 43.524 0.026 1.121 72.348 46.867098235952 3.167038342709 + 65.900 2711.00 3.000 0.000 88.922 43.524 0.096 1.167 72.530 46.867089250377 3.167016024459 + 66.000 2712.98 3.000 0.000 91.913 44.411 0.089 1.154 72.747 46.867079355821 3.166994323019 + 66.100 2714.97 3.000 0.000 91.891 44.524 0.164 1.194 73.172 46.867068550346 3.166973272030 + 66.200 2716.98 3.000 0.000 91.979 44.200 0.131 1.244 73.592 46.867056877238 3.166952955112 + 66.300 2719.00 3.000 0.000 92.745 43.961 0.117 1.301 73.699 46.867044366552 3.166933508786 + 66.400 2721.03 3.000 0.000 90.130 43.850 0.074 1.389 74.000 46.867031030449 3.166915100548 + 66.500 2723.07 3.000 0.000 78.369 43.850 0.054 1.300 74.410 46.867016880332 3.166897878504 + 66.600 2725.13 3.000 0.000 72.767 43.524 0.158 1.156 74.445 46.866998678618 3.166878734542 + 66.700 2727.20 3.000 0.000 70.993 43.902 0.239 1.203 74.513 46.866982826859 3.166864308374 + 66.800 2729.27 3.000 0.000 64.618 47.999 0.003 1.325 75.280 46.866966362344 3.166851183187 + 66.900 2731.36 3.000 0.000 71.244 47.349 0.327 1.403 75.596 46.866949319876 3.166839450504 + 67.000 2733.46 3.000 0.000 73.948 48.137 0.224 1.386 76.150 46.866931653365 3.166829193000 + 67.100 2735.60 3.000 0.000 71.467 50.150 0.201 1.260 76.452 46.866913399434 3.166820406355 + 67.200 2737.74 3.000 0.000 57.818 50.474 0.144 1.248 77.532 46.866894667087 3.166813117253 + 67.300 2739.90 3.000 0.000 54.505 49.150 0.398 1.317 78.659 46.866875525599 3.166807367940 + 67.400 2742.09 3.000 0.000 65.274 49.500 0.214 1.283 78.874 46.866856004811 3.166803204129 + 67.500 2744.29 3.000 0.000 66.567 49.500 0.294 1.353 79.937 46.866836533972 3.166800629522 + 67.600 2746.52 3.000 0.000 66.966 50.377 0.242 1.305 81.195 46.866819948465 3.166799600571 + 67.700 2748.76 3.000 0.000 62.375 53.901 0.216 1.174 81.942 46.866800037383 3.166799693222 + 67.800 2751.03 3.000 0.000 48.553 80.533 0.313 1.151 83.052 46.866779578506 3.166801264338 + 67.900 2753.33 3.000 0.000 41.928 99.748 0.311 1.054 83.883 46.866758970769 3.166804354120 + 68.000 2755.65 3.000 0.000 41.343 99.748 0.439 0.901 85.079 46.866738187321 3.166808886042 + 68.100 2758.02 3.000 0.000 41.037 99.748 0.447 0.960 87.094 46.866717185430 3.166814715021 + 68.200 2760.43 3.000 0.000 39.303 99.748 0.440 0.945 88.609 46.866695981118 3.166821799103 + 68.300 2762.87 3.000 0.000 35.217 99.748 0.478 0.895 90.165 46.866674620580 3.166830186821 + 68.400 2765.36 3.000 0.000 31.441 99.748 0.442 0.795 91.695 46.866653120615 3.166839840095 + 68.500 2767.89 3.000 0.000 30.965 99.748 0.462 0.728 93.236 46.866631482014 3.166850645947 + 68.600 2770.47 3.000 0.000 29.593 99.748 0.436 0.744 94.848 46.866609499855 3.166862666888 + 68.700 2773.08 3.000 0.000 25.261 99.748 0.456 0.687 96.746 46.866587623032 3.166875657898 + 68.800 2775.74 3.000 0.000 17.989 99.748 0.477 0.601 98.399 46.866565624096 3.166889668265 + 68.900 2778.44 3.000 0.000 11.074 99.748 0.461 0.470 100.226 46.866543482712 3.166904600010 + 69.000 2781.18 3.000 0.000 5.278 99.748 0.470 0.283 102.145 46.866521159822 3.166920305849 + 69.100 2783.97 3.000 0.000 -0.401 99.748 0.467 0.082 103.914 46.866498585479 3.166936568699 + 69.200 2786.80 3.000 0.000 -2.680 99.748 0.456 -0.042 104.663 46.866475669612 3.166953155603 + 69.300 2789.67 3.000 0.000 -7.123 99.748 0.458 -0.090 106.220 46.866452380248 3.166969959094 + 69.400 2792.58 3.000 0.000 -15.021 99.748 0.481 -0.206 107.886 46.866428717193 3.166986915512 + 69.500 2795.54 3.000 0.000 -17.722 99.748 0.444 -0.384 109.492 46.866404647907 3.167003887494 + 69.600 2798.54 3.000 0.000 -18.862 99.748 0.472 -0.482 111.064 46.866380293616 3.167020530578 + 69.700 2801.57 3.000 0.000 -24.746 99.748 0.438 -0.541 112.563 46.866355271944 3.167036929611 + 69.800 2804.65 3.000 0.000 -28.804 99.748 0.406 -0.664 114.387 46.866329666437 3.167052896701 + 69.900 2807.77 3.000 0.000 -27.475 99.748 0.428 -0.824 115.725 46.866303493277 3.167068265512 + 70.000 2810.92 3.000 0.000 -22.239 99.748 0.429 -0.778 117.270 46.866276708306 3.167082889359 + 70.100 2814.12 3.000 0.000 -22.239 99.748 0.421 -0.782 118.453 46.866249326869 3.167096684809 + 70.200 2817.36 3.000 0.000 -24.495 99.748 0.433 -0.855 119.403 46.866221383503 3.167109582818 + 70.300 2820.63 3.000 0.000 -20.689 99.748 0.405 -0.892 120.562 46.866192877105 3.167121474199 + 70.400 2823.94 3.000 0.000 -11.667 99.748 0.470 -0.895 122.071 46.866163789380 3.167132275784 + 70.500 2827.30 3.000 0.000 -11.358 99.748 0.443 -0.732 123.410 46.866134165298 3.167142065153 + 70.600 2830.70 3.000 0.000 -21.920 99.748 0.446 -0.696 125.093 46.866096795300 3.167153094883 + 70.700 2834.14 3.000 0.000 -26.207 99.748 0.423 -0.689 127.121 46.866066181610 3.167161240091 + 70.800 2837.62 3.000 0.000 -26.083 99.748 0.392 -0.780 128.821 46.866035119716 3.167168601259 + 70.900 2841.14 3.000 0.000 -24.970 95.043 0.402 -0.913 130.460 46.866003612262 3.167174932952 + 71.000 2844.69 3.000 0.000 -26.661 91.050 0.384 -0.969 132.482 46.865971692332 3.167180090984 + 71.100 2848.28 3.000 0.000 -27.145 91.050 0.381 -0.930 134.445 46.865939395155 3.167184057160 + 71.200 2851.90 3.000 0.000 -23.922 91.050 0.415 -1.086 136.432 46.865906744579 3.167186789977 + 71.300 2855.55 3.000 0.000 -16.089 92.374 0.358 -1.087 136.844 46.865873761686 3.167188120970 + 71.400 2859.23 3.000 0.000 -3.160 92.700 0.374 -1.007 136.854 46.865840479040 3.167187938716 + 71.500 2862.94 3.000 0.000 -0.313 93.072 0.403 -0.993 137.348 46.865805266289 3.167186119899 + 71.600 2866.70 3.000 0.000 -6.602 95.272 0.417 -0.998 138.024 46.865764279094 3.167182160701 + 71.700 2870.49 3.000 0.000 -10.035 97.350 0.381 -0.721 138.962 46.865730135516 3.167177661462 + 71.800 2874.31 3.000 0.000 -11.645 99.710 0.385 -0.526 140.071 46.865695728406 3.167172398595 + 71.900 2878.17 3.000 0.000 -15.482 99.748 0.367 -0.499 141.304 46.865661061636 3.167166498718 + 72.000 2882.07 3.000 0.000 -15.434 99.748 0.342 -0.550 142.441 46.865626157422 3.167159889123 + 72.100 2885.99 3.000 0.000 -15.427 99.748 0.339 -0.595 143.557 46.865591045692 3.167152477014 + 72.200 2889.95 3.000 0.000 -14.649 99.748 0.334 -0.616 144.638 46.865555764005 3.167144244703 + 72.300 2893.94 3.003 0.000 -13.357 99.748 0.324 -0.633 145.738 46.865520332398 3.167135157583 + 72.400 2897.95 3.110 0.000 -12.403 99.748 0.327 -0.651 146.857 46.865484761526 3.167125143519 + 72.500 2902.00 4.000 0.000 -9.412 99.748 0.330 -0.648 147.966 46.865445468485 3.167113040878 + 72.600 2906.09 4.000 0.000 -8.778 99.748 0.223 -0.563 148.885 46.865405980842 3.167099869278 + 72.700 2910.20 4.000 0.000 -9.344 99.748 0.377 -0.489 149.938 46.865369905262 3.167087151371 + 72.800 2914.35 4.000 0.000 -9.219 99.748 0.363 -0.478 151.227 46.865333667645 3.167073732196 + 72.900 2918.52 4.000 0.000 -6.937 99.748 0.351 -0.480 153.115 46.865297284397 3.167059584490 + 73.000 2922.73 4.000 0.000 -4.258 99.748 0.350 -0.411 154.360 46.865260738869 3.167044797495 + 73.100 2926.97 4.000 0.000 -4.943 99.748 0.313 -0.259 155.744 46.865223983970 3.167029549053 + 73.200 2931.24 4.000 0.000 -3.609 99.748 0.337 -0.189 157.338 46.865187001041 3.167013956719 + 73.300 2935.54 4.000 0.000 0.560 99.748 0.325 -0.143 158.268 46.865149798869 3.166998077326 + 73.400 2939.87 4.000 0.000 3.125 99.748 0.317 -0.041 158.501 46.865112371311 3.166982015145 + 73.500 2944.22 4.000 0.000 3.428 99.748 0.315 0.075 159.396 46.865084017117 3.166969888254 + 73.600 2948.59 4.000 0.000 5.558 99.748 0.318 0.169 160.422 46.865061754114 3.166960430671 + 73.700 2952.99 4.000 0.000 13.687 99.748 0.320 0.281 161.669 46.865025219383 3.166945112249 + 73.800 2957.42 4.000 0.000 15.393 99.748 0.306 0.468 162.670 46.864986797438 3.166929397729 + 73.900 2961.87 4.000 0.000 15.033 99.748 0.313 0.629 163.856 46.864948035625 3.166914192092 + 74.000 2966.36 4.000 0.000 15.045 99.748 0.307 0.703 164.927 46.864908906974 3.166899723655 + 74.100 2970.87 4.000 0.000 15.620 99.748 0.302 0.710 165.851 46.864869390991 3.166886094048 + 74.200 2975.41 4.000 0.000 17.821 99.748 0.311 0.719 166.507 46.864829492352 3.166873281144 + 74.300 2979.97 4.000 0.000 19.120 99.748 0.288 0.763 167.235 46.864789215408 3.166861248883 + 74.400 2984.57 4.000 0.000 19.599 99.748 0.303 0.804 167.952 46.864748563174 3.166850050340 + 74.500 2989.19 4.000 0.000 19.540 99.748 0.277 0.928 168.963 46.864707550214 3.166839835515 + 74.600 2993.83 4.000 0.000 18.970 99.748 0.272 0.945 169.834 46.864657061757 3.166828933594 + 74.700 2998.50 4.000 0.000 16.213 99.748 0.274 0.915 170.671 46.864615326193 3.166821329305 + 74.800 3003.19 4.000 0.000 15.758 99.748 0.283 0.935 171.561 46.864573289088 3.166814891430 + 74.900 3007.91 4.000 0.000 14.281 99.748 0.281 0.853 172.392 46.864530960231 3.166809570493 + 75.000 3012.66 4.000 0.000 11.626 99.748 0.305 0.772 173.290 46.864488349343 3.166805303224 + 75.100 3017.42 4.000 0.000 10.648 99.748 0.278 0.649 174.147 46.864445467899 3.166801958548 + 75.200 3022.22 4.000 0.000 11.011 99.748 0.266 0.554 175.738 46.864402338742 3.166799399098 + 75.300 3027.03 4.000 0.000 9.957 99.748 0.265 0.523 176.430 46.864358978993 3.166797543202 + 75.400 3031.87 4.000 0.000 8.336 99.748 0.268 0.489 177.609 46.864315394324 3.166796360528 + 75.500 3036.73 4.000 0.000 6.109 99.748 0.268 0.395 178.938 46.864272454159 3.166795798702 + 75.600 3041.62 4.000 0.000 5.494 99.748 0.268 0.342 179.882 46.864236076920 3.166795715635 + 75.700 3046.52 4.000 0.000 5.596 99.748 0.265 0.287 180.833 46.864192569685 3.166795992444 + 75.800 3051.45 4.000 0.000 5.321 99.748 0.253 0.259 180.765 46.864148156617 3.166796625588 + 75.900 3056.40 4.000 0.000 4.911 99.748 0.249 0.258 181.498 46.864103557005 3.166797601320 + 76.000 3061.38 4.000 0.000 3.872 99.748 0.254 0.215 182.097 46.864058758425 3.166798926368 + 76.100 3066.38 4.000 0.000 -0.078 99.748 0.243 0.146 182.937 46.864013754308 3.166800576842 + 76.200 3071.40 4.000 0.000 -1.375 99.748 0.250 0.054 183.776 46.863968544302 3.166802452114 + 76.300 3076.44 4.000 0.000 0.623 99.748 0.248 -0.017 184.513 46.863923127370 3.166804414626 + 76.400 3081.50 4.000 0.000 0.744 99.748 0.240 -0.004 185.257 46.863877510377 3.166806371305 + 76.500 3086.59 4.000 0.000 -0.842 99.748 0.243 -0.010 186.018 46.863831708658 3.166808317960 + 76.600 3091.70 4.000 0.000 0.018 99.748 0.236 -0.050 186.699 46.863785720344 3.166810266814 + 76.700 3096.82 4.000 0.000 -0.885 99.748 0.227 -0.058 187.193 46.863739527826 3.166812217304 + 76.800 3101.98 4.000 0.000 -2.634 99.748 0.249 -0.068 188.063 46.863693123600 3.166814132103 + 76.900 3107.15 4.000 0.000 -0.118 99.748 0.223 -0.091 188.993 46.863646521149 3.166815953296 + 77.000 3112.34 4.000 0.000 1.191 99.748 0.223 -0.051 189.878 46.863599736776 3.166817662222 + 77.100 3117.56 4.000 0.000 0.110 99.748 0.220 0.013 190.547 46.863552778143 3.166819341748 + 77.200 3122.79 4.000 0.000 -0.045 99.748 0.216 0.024 191.305 46.863505643799 3.166821082625 + 77.300 3128.05 4.000 0.000 -0.171 99.748 0.210 -0.025 191.904 46.863458331997 3.166822889147 + 77.400 3133.32 4.000 0.000 -1.733 99.748 0.217 -0.011 192.584 46.863410847961 3.166824722186 + 77.500 3138.61 4.040 0.000 -0.992 99.748 0.204 -0.024 193.427 46.863363208944 3.166826557838 + 77.600 3143.92 4.810 0.000 0.167 99.748 0.200 -0.042 194.214 46.863315403606 3.166828365440 + 77.700 3149.25 5.000 0.000 -1.005 99.748 0.167 -0.033 194.562 46.863267411210 3.166830141350 + 77.800 3154.61 5.000 0.000 -1.613 99.748 0.203 -0.022 195.533 46.863219224531 3.166831954521 + 77.900 3159.97 5.000 0.000 -1.390 99.748 0.183 -0.047 196.210 46.863170864446 3.166833878458 + 78.000 3165.36 5.000 0.000 0.162 99.748 0.217 -0.044 196.956 46.863122277930 3.166835851399 + 78.100 3170.76 5.000 0.000 -0.337 99.748 0.200 -0.021 197.485 46.863073422645 3.166837700988 + 78.200 3176.21 5.000 0.000 -0.422 99.748 0.204 0.021 198.001 46.863024370355 3.166839330518 + 78.300 3181.66 5.000 0.000 -0.149 99.748 0.206 -0.011 198.684 46.862975300259 3.166840820291 + 78.400 3187.11 5.000 0.000 -1.520 99.748 0.211 -0.006 199.236 46.862926245113 3.166842315073 + 78.500 3192.58 5.000 0.000 -2.756 99.748 0.205 -0.060 200.068 46.862877079181 3.166843864622 + 78.600 3198.07 5.000 0.491 0.036 99.748 0.203 -0.091 200.874 46.862827653612 3.166845411167 + 78.700 3203.58 5.000 10.657 -0.047 38.369 0.206 -0.028 201.428 46.862777992062 3.166846875496 + 78.800 3209.09 5.000 27.957 0.008 0.000 -0.286 0.016 201.290 46.862728319376 3.166848240988 + 78.900 3214.58 5.000 56.377 0.299 0.000 -0.968 0.024 198.135 46.862679077410 3.166849543181 + 79.000 3219.98 5.000 88.377 -0.825 0.000 -1.271 0.015 193.171 46.862630752312 3.166850823683 + 79.100 3225.25 5.000 109.010 -1.881 0.000 -1.424 -0.094 187.824 46.862583645357 3.166852024007 + 79.200 3230.38 5.000 123.526 -1.182 0.000 -1.320 -0.243 182.583 46.862537787948 3.166852959581 + 79.300 3235.39 5.000 124.734 1.877 0.000 -1.321 -0.195 178.066 46.862493094813 3.166853518049 + 79.400 3240.27 5.000 122.191 -1.425 0.000 -1.134 0.099 173.123 46.862449484497 3.166853879326 + 79.500 3245.04 5.000 114.668 -4.284 0.000 -1.250 0.166 168.621 46.862406947686 3.166854335621 + 79.600 3249.66 4.955 102.277 -2.151 0.000 -1.421 0.019 163.218 46.862358230587 3.166855030293 + 79.700 3254.14 4.090 92.635 -5.544 0.000 -1.288 -0.099 159.889 46.862318288890 3.166855518587 + 79.800 3258.49 4.000 85.033 -8.154 0.000 -1.320 -0.159 154.810 46.862279568382 3.166855822165 + 79.900 3262.71 4.000 83.681 -3.367 0.000 -1.271 -0.141 149.348 46.862242015807 3.166855987002 + 80.000 3266.80 4.000 83.218 -6.335 0.000 -1.307 -0.230 145.807 46.862205608397 3.166855932934 + 80.100 3270.76 4.000 79.355 -4.430 0.000 -1.225 -0.476 141.578 46.862170320439 3.166855382526 + 80.200 3274.60 4.000 68.729 -3.203 0.000 -1.037 -0.433 137.813 46.862136078280 3.166854194605 + 80.300 3278.35 4.000 58.210 -1.440 0.000 -1.046 -0.259 133.628 46.862102814646 3.166852530914 + 80.400 3281.98 4.000 46.913 -8.337 0.000 -1.026 -0.266 130.304 46.862070478244 3.166850639937 + 80.500 3285.52 4.000 38.653 -15.002 0.020 -0.893 -0.410 126.673 46.862038861121 3.166848481645 + 80.600 3288.98 4.000 33.680 -21.557 0.974 -0.698 -0.527 123.842 46.862006983430 3.166845707255 + 80.700 3292.37 4.000 27.082 -23.542 6.505 -0.738 -0.672 121.619 46.861976878738 3.166842289098 + 80.800 3295.70 4.000 4.248 -22.788 14.614 -0.455 -0.692 120.037 46.861947324930 3.166838065516 + 80.900 3298.99 4.000 0.000 -24.781 38.580 -0.173 -0.752 119.493 46.861918116972 3.166832976087 + 81.000 3302.27 4.000 0.000 -29.101 49.824 0.055 -0.758 119.218 46.861889036105 3.166826908750 + 81.100 3305.55 4.000 0.000 -29.943 49.948 0.103 -0.784 119.907 46.861859988646 3.166819784230 + 81.200 3308.84 4.000 0.000 -33.324 56.310 0.121 -0.819 120.015 46.861830968991 3.166811610325 + 81.300 3312.13 4.000 0.000 -35.700 56.949 0.156 -0.888 120.276 46.861801975460 3.166802410197 + 81.400 3315.44 4.000 0.000 -37.324 56.949 0.228 -1.014 120.933 46.861773010454 3.166792062245 + 81.500 3318.77 4.000 0.000 -37.705 56.727 0.200 -1.116 121.503 46.861744045641 3.166780294625 + 81.600 3322.12 4.000 0.000 -37.299 56.275 0.220 -1.184 122.248 46.861714812098 3.166766738781 + 81.700 3325.48 4.000 0.000 -36.867 56.226 0.198 -1.220 122.751 46.861686285291 3.166751853545 + 81.800 3328.85 4.000 0.000 -34.339 55.949 0.224 -1.255 123.797 46.861657974312 3.166735481511 + 81.900 3332.25 4.000 0.000 -32.272 55.728 0.188 -1.216 124.482 46.861629869181 3.166717557435 + 82.000 3335.67 4.000 0.000 -32.154 55.835 0.233 -1.088 125.400 46.861601985861 3.166697992173 + 82.100 3339.12 4.000 0.000 -32.361 54.625 0.235 -1.048 125.050 46.861574401478 3.166676888121 + 82.200 3342.57 4.000 0.000 -25.813 55.288 0.244 -1.317 126.119 46.861547197836 3.166654435389 + 82.300 3346.05 4.000 0.000 -20.206 57.599 0.232 -1.035 128.153 46.861520381332 3.166630727814 + 82.400 3349.54 4.000 0.000 -20.106 57.275 0.244 -0.717 128.748 46.861493846957 3.166605878412 + 82.500 3353.07 4.000 0.000 -20.141 56.599 0.279 -0.609 129.995 46.861467329496 3.166579925009 + 82.600 3356.60 4.000 0.000 -14.196 56.599 0.238 -0.615 130.804 46.861440245689 3.166552361488 + 82.700 3360.17 4.000 0.000 1.707 56.599 0.273 -0.447 131.723 46.861414176205 3.166524812491 + 82.800 3363.75 4.000 0.000 12.743 55.014 0.256 -0.015 132.595 46.861388094226 3.166496679981 + 82.900 3367.36 4.000 0.000 17.477 52.576 0.247 0.439 132.901 46.861361785545 3.166468582701 + 83.000 3370.99 4.000 0.000 26.547 51.111 0.219 0.698 133.158 46.861335073964 3.166441004817 + 83.100 3374.63 4.000 0.000 30.603 48.288 0.217 0.817 133.826 46.861307871473 3.166414085000 + 83.200 3378.29 4.000 0.000 39.136 46.292 0.195 0.968 134.417 46.861280146425 3.166387891907 + 83.300 3381.96 4.000 0.000 43.745 45.476 0.127 1.138 134.698 46.861251894715 3.166362638101 + 83.400 3385.63 4.000 0.000 43.141 44.200 0.118 1.251 134.789 46.861223115681 3.166338612301 + 83.500 3389.32 4.000 0.000 39.541 44.200 0.099 1.356 134.539 46.861193428080 3.166315743420 + 83.600 3393.01 4.000 0.000 37.440 43.850 0.089 1.190 134.147 46.861162394290 3.166293844193 + 83.700 3396.71 4.000 0.000 34.033 43.850 0.145 1.311 134.331 46.861131972405 3.166274202095 + 83.800 3400.40 4.000 0.000 29.759 43.850 0.061 1.296 134.957 46.861101125137 3.166256007537 + 83.900 3404.10 4.000 0.000 23.205 43.524 0.126 0.954 134.164 46.861069927900 3.166239205002 + 84.000 3407.79 4.000 0.000 15.704 42.602 0.055 0.864 133.614 46.861038425386 3.166223669775 + 84.100 3411.49 4.000 0.000 10.326 38.725 0.262 1.275 133.856 46.861006616874 3.166209453014 + 84.200 3415.19 4.000 0.000 8.758 39.931 0.074 1.542 134.483 46.860974508988 3.166196855694 + 84.300 3418.88 4.000 0.000 10.647 40.574 0.061 1.517 134.585 46.860942145077 3.166186045291 + 84.400 3422.57 4.000 0.000 7.182 44.524 0.076 1.043 133.617 46.860909582094 3.166176896597 + 84.500 3426.26 4.000 0.000 -3.861 42.128 0.190 1.131 134.028 46.860878029357 3.166169555684 + 84.600 3429.96 4.000 0.000 -9.415 39.399 0.128 1.122 134.793 46.860850157578 3.166164266268 + 84.700 3433.66 4.000 0.000 4.816 39.936 0.143 0.702 135.183 46.860817082434 3.166159183624 + 84.800 3437.36 4.000 0.000 29.940 46.595 0.102 0.381 135.270 46.860783889335 3.166154657003 + 84.900 3441.08 4.000 0.000 38.393 50.824 0.119 0.751 135.693 46.860750578854 3.166150421591 + 85.000 3444.81 4.000 0.000 30.178 53.559 0.193 0.981 136.262 46.860717115180 3.166147047389 + 85.100 3448.55 4.000 0.000 14.730 58.726 0.232 1.040 137.115 46.860683478257 3.166145178498 + 85.200 3452.32 4.000 0.000 11.626 99.748 0.244 0.964 137.721 46.860649665429 3.166144847066 + 85.300 3456.10 4.000 0.000 16.120 99.748 0.278 0.843 138.529 46.860615674920 3.166145689701 + 85.400 3459.91 4.000 0.000 20.835 99.748 0.334 0.736 139.368 46.860581485035 3.166147440939 + 85.500 3463.74 4.000 0.000 24.078 99.748 0.309 0.748 140.518 46.860547056720 3.166150052678 + 85.600 3467.60 4.000 0.000 24.550 99.748 0.310 0.857 141.928 46.860511817268 3.166153708112 + 85.700 3471.48 4.000 0.000 24.587 99.748 0.299 0.938 142.797 46.860477072445 3.166158423276 + 85.800 3475.39 4.000 0.000 24.224 99.748 0.308 0.913 143.895 46.860442181464 3.166164372628 + 85.900 3479.33 4.000 0.000 23.810 99.748 0.317 1.001 144.998 46.860407167121 3.166171604913 + 86.000 3483.29 4.000 0.000 23.466 99.748 0.304 1.025 146.028 46.860372064364 3.166180146874 + 86.100 3487.28 4.000 0.000 18.984 99.748 0.318 1.025 146.799 46.860336897651 3.166190017801 + 86.200 3491.29 4.000 0.000 16.266 99.748 0.323 0.945 147.174 46.860301667724 3.166201206560 + 86.300 3495.33 4.000 0.000 16.044 99.748 0.319 0.886 147.901 46.860266368633 3.166213642391 + 86.400 3499.40 4.000 0.000 15.946 99.748 0.329 0.788 148.696 46.860231019915 3.166227203751 + 86.500 3503.50 4.000 0.000 12.566 99.748 0.318 0.719 149.601 46.860195374303 3.166241898568 + 86.600 3507.62 4.000 0.000 10.295 99.748 0.332 0.660 150.714 46.860156700735 3.166258900875 + 86.700 3511.77 4.000 0.000 10.012 99.748 0.324 0.513 151.710 46.860121182106 3.166275323320 + 86.800 3515.94 4.000 0.000 8.022 99.748 0.315 0.360 152.472 46.860085501718 3.166292417216 + 86.900 3520.15 4.000 0.347 3.958 99.748 0.327 0.266 153.364 46.860049639089 3.166310038575 + 87.000 3524.38 4.000 7.814 1.015 89.394 0.297 0.210 154.453 46.860013620694 3.166328040342 + 87.100 3528.63 4.000 26.254 4.129 15.913 -0.044 0.098 155.452 46.859977641672 3.166346179124 + 87.200 3532.84 4.000 60.315 5.579 0.000 -1.098 0.085 153.069 46.859942175869 3.166364128421 + 87.300 3536.93 4.000 89.782 4.583 0.000 -1.371 0.132 147.588 46.859907715090 3.166381646382 + 87.400 3540.88 4.000 103.052 3.599 0.000 -1.291 0.024 142.204 46.859874431909 3.166398660674 + 87.500 3544.72 4.000 111.350 3.608 0.000 -1.103 -0.039 137.638 46.859842309307 3.166415109045 + 87.600 3548.44 4.000 123.988 4.649 0.000 -1.202 -0.047 132.824 46.859811554643 3.166430790956 + 87.700 3552.04 4.000 126.040 3.140 0.000 -1.233 0.026 129.064 46.859781278042 3.166446136518 + 87.800 3555.51 4.000 119.942 -0.935 0.000 -1.303 0.108 123.918 46.859752095651 3.166460890205 + 87.900 3558.85 4.000 113.687 -2.097 0.000 -1.459 -0.032 118.907 46.859724047760 3.166475049951 + 88.000 3562.06 3.984 112.640 -3.362 0.000 -1.309 -0.128 114.226 46.859697121563 3.166488552429 + 88.100 3565.13 3.640 110.876 -6.158 0.000 -1.273 -0.041 108.901 46.859671273415 3.166501401254 + 88.200 3568.08 3.000 101.611 -11.745 0.000 -1.268 0.011 104.281 46.859646486101 3.166513652189 + 88.300 3570.91 3.000 84.383 -10.577 0.000 -1.324 -0.193 99.753 46.859622745098 3.166525256254 + 88.400 3573.60 3.000 61.897 -4.204 0.000 -1.142 -0.220 95.880 46.859599984310 3.166536095256 + 88.500 3576.19 3.000 42.598 -5.701 0.000 -1.000 -0.069 92.131 46.859578154338 3.166546213834 + 88.600 3578.68 3.000 33.029 -7.254 0.000 -0.829 -0.086 89.145 46.859557368038 3.166555707309 + 88.700 3581.09 3.000 32.240 -14.198 0.000 -0.804 -0.199 86.421 46.859536885451 3.166564942054 + 88.800 3583.42 3.000 33.924 -28.879 0.000 -0.811 -0.331 83.727 46.859517028267 3.166573618817 + 88.900 3585.67 3.000 35.245 -47.743 0.000 -0.838 -0.565 81.084 46.859497786718 3.166581542478 + 89.000 3587.83 3.000 35.680 -56.985 0.000 -0.802 -0.711 78.307 46.859479140215 3.166588499667 + 89.100 3589.92 3.000 34.546 -62.750 0.000 -0.825 -0.806 74.890 46.859461041944 3.166594331903 + 89.200 3591.93 3.000 26.019 -65.521 0.000 -0.568 -0.793 72.527 46.859443417885 3.166598984929 + 89.300 3593.88 3.000 9.273 -65.895 6.385 -0.447 -0.949 70.844 46.859426149868 3.166602448563 + 89.400 3595.79 3.000 0.957 -72.406 3.854 -0.266 -1.034 69.719 46.859409080631 3.166604663017 + 89.500 3597.68 3.000 0.192 -87.999 0.000 -0.172 -0.971 68.894 46.859391862827 3.166605593935 + 89.600 3599.56 3.000 3.887 -99.487 0.000 -0.220 -1.064 68.361 46.859373749912 3.166605151764 + 89.700 3601.41 3.000 4.574 -91.601 0.000 -0.307 -1.125 67.369 46.859357169581 3.166603398099 + 89.800 3603.23 3.000 0.000 -79.816 0.000 -0.214 -1.113 66.536 46.859340950877 3.166600230635 + 89.900 3605.03 3.000 0.000 -71.754 0.583 -0.187 -1.103 65.846 46.859325132899 3.166595603942 + 90.000 3606.81 3.000 0.000 -76.925 4.300 -0.162 -1.060 65.340 46.859309694101 3.166589618328 + 90.100 3608.58 3.000 0.000 -92.011 3.403 -0.154 -1.041 64.942 46.859294610541 3.166582420385 + 90.200 3610.33 3.000 0.000 -102.659 3.950 -0.173 -1.110 64.631 46.859279911181 3.166574094734 + 90.300 3612.07 3.000 0.000 -103.901 6.510 -0.162 -1.123 64.260 46.859265687352 3.166564657760 + 90.400 3613.80 3.000 0.000 -102.373 17.972 -0.178 -1.180 63.755 46.859252025105 3.166554101035 + 90.500 3615.51 3.000 0.000 -90.867 31.226 -0.144 -1.045 63.386 46.859238587699 3.166541971598 + 90.600 3617.21 3.000 0.000 -80.541 32.551 -0.022 -0.996 63.275 46.859225210144 3.166527806477 + 90.700 3618.92 3.000 0.000 -80.116 40.697 0.040 -1.051 62.094 46.859213500599 3.166513453024 + 90.800 3620.62 3.000 0.000 -79.567 46.119 -0.091 -0.993 61.110 46.859202429203 3.166498093656 + 90.900 3622.33 3.000 0.000 -84.040 46.962 0.149 -1.193 62.202 46.859191914218 3.166481762753 + 91.000 3624.05 3.000 0.000 -85.429 53.673 0.216 -0.816 62.537 46.859181841688 3.166464452413 + 91.100 3625.81 3.000 0.000 -85.490 52.975 0.159 -0.849 63.351 46.859172159279 3.166446256987 + 91.200 3627.58 3.000 0.000 -87.117 42.525 0.279 -0.894 64.300 46.859162971107 3.166427222272 + 91.300 3629.37 3.000 0.000 -89.405 38.517 0.144 -1.122 65.579 46.859154462535 3.166407256675 + 91.400 3631.18 3.000 0.000 -88.694 40.375 0.013 -1.040 66.510 46.859146765286 3.166386394811 + 91.500 3632.99 3.000 0.000 -85.342 54.988 0.167 -1.043 67.174 46.859140104214 3.166365599531 + 91.600 3634.81 3.000 0.000 -82.340 74.090 0.094 -0.992 67.158 46.859134492309 3.166345548645 + 91.700 3636.66 3.000 0.000 -82.170 69.199 0.327 -1.038 68.214 46.859128990390 3.166322707753 + 91.800 3638.53 3.000 0.000 -77.453 69.199 0.294 -1.043 69.608 46.859124267594 3.166299080193 + 91.900 3640.44 3.000 0.000 -61.663 69.573 0.317 -1.036 70.889 46.859120402414 3.166274710571 + 92.000 3642.37 3.000 0.000 -49.854 69.524 0.365 -0.982 72.338 46.859117440890 3.166249659519 + 92.100 3644.34 3.000 0.000 -49.931 72.527 0.347 -0.925 73.206 46.859115334671 3.166223977262 + 92.200 3646.34 3.000 0.000 -55.231 79.450 0.348 -0.850 74.296 46.859113993156 3.166197717869 + 92.300 3648.38 3.000 0.000 -62.205 76.174 0.370 -0.831 75.705 46.859113359370 3.166170929351 + 92.400 3650.45 3.000 0.000 -65.307 63.013 0.371 -0.936 77.193 46.859113472085 3.166143666529 + 92.500 3652.55 3.000 0.000 -56.988 63.899 0.297 -0.983 77.140 46.859114418493 3.166116321893 + 92.600 3654.69 3.000 0.000 -46.453 63.176 0.312 -0.965 77.551 46.859116164286 3.166090004506 + 92.700 3656.85 3.000 0.000 -43.699 63.925 0.355 -0.962 79.063 46.859118941091 3.166061798825 + 92.800 3659.04 3.000 0.000 -36.998 64.549 0.259 -0.820 80.526 46.859122573407 3.166033358735 + 92.900 3661.27 3.000 0.000 -39.876 65.289 0.330 -0.664 81.082 46.859126886228 3.166004686725 + 93.000 3663.53 3.000 0.000 -49.414 64.671 0.397 -0.678 82.628 46.859131773994 3.165975827484 + 93.100 3665.81 3.000 0.000 -49.214 63.522 0.361 -0.955 83.806 46.859137348420 3.165946839002 + 93.200 3668.13 3.000 0.000 -42.568 63.575 0.322 -1.018 84.592 46.859143814425 3.165917765122 + 93.300 3670.49 3.000 0.000 -30.154 63.623 0.312 -0.870 85.592 46.859151234919 3.165888660157 + 93.400 3672.87 3.000 0.000 -26.011 82.678 0.337 -0.852 86.991 46.859159539303 3.165859608361 + 93.500 3675.28 3.000 0.000 -19.735 99.748 0.394 -0.774 88.901 46.859168681036 3.165830519117 + 93.600 3677.74 3.000 0.000 -21.659 99.748 0.439 -0.565 90.879 46.859178582131 3.165801155516 + 93.700 3680.25 3.000 0.000 -33.557 99.748 0.433 -0.534 92.794 46.859188971988 3.165771719518 + 93.800 3682.80 3.000 0.000 -33.267 99.748 0.431 -0.690 94.364 46.859199911895 3.165742062478 + 93.900 3685.39 3.000 0.000 -24.861 99.748 0.447 -0.787 96.225 46.859211584818 3.165712340753 + 94.000 3688.03 3.000 0.000 -17.927 99.748 0.486 -0.694 97.794 46.859224099057 3.165682589958 + 94.100 3690.73 3.000 0.000 -16.676 98.788 0.466 -0.585 99.518 46.859237352462 3.165652743185 + 94.200 3693.46 3.000 0.000 -18.817 98.324 0.455 -0.589 101.593 46.859251226772 3.165622782348 + 94.300 3696.24 3.000 0.000 -18.299 98.324 0.455 -0.601 102.971 46.859265753374 3.165592755197 + 94.400 3699.07 3.000 0.000 -18.674 98.324 0.469 -0.592 104.146 46.859280978149 3.165562691491 + 94.500 3701.95 3.000 0.000 -19.232 98.674 0.473 -0.580 105.665 46.859296965682 3.165532391906 + 94.600 3704.87 3.000 0.000 -17.478 98.674 0.462 -0.586 107.242 46.859314066515 3.165501177840 + 94.700 3707.84 3.000 0.000 -16.192 99.709 0.501 -0.629 109.128 46.859331285941 3.165471021820 + 94.800 3710.86 3.000 0.000 -15.091 99.748 0.449 -0.603 111.011 46.859349225390 3.165440970409 + 94.900 3713.93 3.000 0.000 -12.127 99.748 0.473 -0.475 112.658 46.859367846322 3.165410941644 + 95.000 3717.05 3.000 0.000 -14.694 99.748 0.428 -0.316 114.378 46.859387006325 3.165380710214 + 95.100 3720.22 3.000 0.000 -20.014 99.748 0.430 -0.268 116.108 46.859406597768 3.165350149832 + 95.200 3723.43 3.000 0.000 -19.471 99.748 0.435 -0.423 117.932 46.859426648856 3.165319388482 + 95.300 3726.69 3.000 0.000 -18.060 99.748 0.445 -0.596 119.728 46.859447301310 3.165288671328 + 95.400 3729.99 3.000 0.000 -13.203 99.748 0.452 -0.596 121.340 46.859468657569 3.165258129842 + 95.500 3733.35 3.000 0.000 -10.147 99.748 0.442 -0.507 122.911 46.859490553436 3.165227951819 + 95.600 3736.75 3.000 0.000 -8.954 99.748 0.450 -0.404 124.573 46.859512221592 3.165198939153 + 95.700 3740.19 3.000 0.000 -7.072 99.748 0.438 -0.334 126.318 46.859535392203 3.165168595865 + 95.800 3743.69 3.000 0.000 -8.295 99.748 0.441 -0.272 128.027 46.859559057215 3.165138148436 + 95.900 3747.23 3.000 0.000 -9.079 99.748 0.427 -0.247 129.761 46.859583208908 3.165107563606 + 96.000 3750.82 3.000 0.000 -9.074 99.748 0.419 -0.273 131.477 46.859607853028 3.165076870763 + 96.100 3754.45 3.000 0.000 -7.619 99.748 0.420 -0.281 133.158 46.859632991376 3.165046115590 + 96.200 3758.13 3.000 0.000 -6.043 99.748 0.401 -0.251 134.811 46.859658598572 3.165015316261 + 96.300 3761.85 3.000 0.000 -6.039 99.748 0.406 -0.202 136.415 46.859684639204 3.164984439617 + 96.400 3765.61 3.000 0.000 -5.008 99.748 0.394 -0.178 137.997 46.859711098394 3.164953428488 + 96.500 3769.41 3.000 0.000 -4.543 99.748 0.384 -0.169 139.542 46.859737904013 3.164922332933 + 96.600 3773.25 3.000 0.000 -4.859 99.748 0.375 -0.160 141.070 46.859764688644 3.164891562708 + 96.700 3777.13 3.000 0.000 -5.066 99.748 0.366 -0.144 142.576 46.859792302241 3.164860132715 + 96.800 3781.05 3.000 0.000 -4.688 99.748 0.347 -0.153 144.012 46.859820271337 3.164828578393 + 96.900 3785.01 3.000 0.000 -4.462 99.748 0.350 -0.138 145.373 46.859848610329 3.164796865555 + 97.000 3789.01 3.000 0.000 -4.431 99.748 0.331 -0.123 146.784 46.859877302996 3.164764999075 + 97.100 3793.04 3.006 0.000 -4.225 99.748 0.317 -0.123 148.106 46.859906309389 3.164733019503 + 97.200 3797.11 3.160 0.000 -4.635 99.748 0.311 -0.122 149.388 46.859935627809 3.164700953257 + 97.300 3801.21 4.000 0.000 -3.289 99.748 0.249 -0.127 150.533 46.859965297343 3.164668772716 + 97.400 3805.36 4.000 0.000 -1.307 99.748 0.517 -0.106 151.663 46.859995331513 3.164636428073 + 97.500 3809.53 4.000 0.000 -0.673 99.748 0.169 -0.070 153.114 46.860025821247 3.164603748808 + 97.600 3813.75 4.000 0.000 -0.070 99.748 0.305 -0.035 154.196 46.860057529064 3.164569875608 + 97.700 3818.00 4.000 0.000 0.512 99.748 0.331 0.014 155.434 46.860088434465 3.164536939862 + 97.800 3822.28 4.000 0.000 0.579 99.748 0.328 0.068 156.479 46.860119632448 3.164503705391 + 97.900 3826.61 4.000 0.000 0.894 99.748 0.315 0.095 157.708 46.860151070485 3.164470123355 + 98.000 3830.96 4.000 0.000 2.542 99.748 0.297 0.133 159.011 46.860182683372 3.164436200387 + 98.100 3835.34 4.000 0.000 3.885 99.748 0.297 0.150 160.278 46.860214466990 3.164401933050 + 98.200 3839.77 4.000 0.000 4.236 99.748 0.295 0.210 161.530 46.860246437022 3.164367283206 + 98.300 3844.22 4.000 0.000 5.799 99.748 0.300 0.264 162.779 46.860278570486 3.164332185578 + 98.400 3848.72 4.000 0.000 5.392 99.748 0.292 0.286 164.038 46.860310831443 3.164296581990 + 98.500 3853.24 4.000 0.000 3.449 99.748 0.299 0.259 165.296 46.860343204596 3.164260453664 + 98.600 3857.80 4.000 0.000 3.569 99.748 0.302 0.234 166.562 46.860375690496 3.164223838616 + 98.700 3862.39 4.000 0.000 5.290 99.748 0.299 0.233 167.837 46.860408300738 3.164186797314 + 98.800 3867.01 4.000 0.000 7.885 99.748 0.287 0.312 169.091 46.860441027037 3.164149333207 + 98.900 3871.66 4.000 0.000 8.015 99.748 0.287 0.377 170.339 46.860473794251 3.164111368179 + 99.000 3876.34 4.000 0.000 6.678 99.748 0.280 0.417 171.548 46.860506519441 3.164072799754 + 99.100 3881.04 4.000 0.000 6.703 99.748 0.271 0.388 172.760 46.860539269072 3.164033561991 + 99.200 3885.78 4.000 0.000 8.293 99.748 0.270 0.411 173.792 46.860572191126 3.163993580523 + 99.300 3890.57 4.000 0.000 9.434 99.748 0.260 0.454 174.790 46.860605218382 3.163952831663 + 99.400 3895.39 4.000 0.000 9.422 99.748 0.261 0.470 175.755 46.860638084546 3.163911489973 + 99.500 3900.20 4.000 0.000 8.920 99.748 0.253 0.480 176.786 46.860671943755 3.163868236459 + 99.600 3905.04 4.000 0.000 10.503 99.748 0.248 0.494 177.797 46.860709553405 3.163819701132 + 99.700 3909.92 4.000 0.000 12.684 99.748 0.238 0.535 178.723 46.860742231862 3.163776756010 + 99.800 3914.84 4.000 0.000 12.837 99.748 0.233 0.683 179.771 46.860774718780 3.163732727019 + 99.900 3919.80 4.000 0.000 9.174 99.748 0.224 0.716 180.847 46.860806862735 3.163687609069 + 100.000 3924.79 4.000 0.000 10.181 99.748 0.231 0.603 181.727 46.860838750448 3.163641604358 + 100.100 3929.80 4.000 0.000 13.835 99.748 0.230 0.541 182.564 46.860870492087 3.163594897085 + 100.200 3934.84 4.000 0.000 12.520 99.748 0.225 0.643 183.478 46.860902083030 3.163547491106 + 100.300 3939.90 4.000 0.000 12.621 99.748 0.214 0.738 184.469 46.860933422248 3.163499267436 + 100.400 3944.99 4.000 0.000 13.982 99.748 0.204 0.744 186.149 46.860964427847 3.163450142626 + 100.500 3950.10 4.000 0.000 12.027 99.748 0.211 0.743 187.101 46.860993473645 3.163402722077 + 100.600 3955.23 4.000 0.000 11.909 99.748 0.204 0.749 187.864 46.861019586133 3.163358946469 + 100.700 3960.38 4.000 0.000 13.627 99.748 0.201 0.751 188.586 46.861049547759 3.163307395401 + 100.800 3965.56 4.000 0.000 13.858 99.748 0.195 0.761 188.942 46.861079162789 3.163255042548 + 100.900 3970.75 4.000 0.000 14.358 99.748 0.189 0.780 189.512 46.861108402773 3.163201840940 + 101.000 3975.97 4.000 0.000 15.030 99.748 0.186 0.780 190.106 46.861137234979 3.163147787759 + 101.100 3981.21 4.000 0.000 14.731 99.748 0.181 0.837 190.837 46.861165622615 3.163092929710 + 101.200 3986.46 4.000 0.000 15.100 99.748 0.170 0.872 191.680 46.861193522785 3.163037277987 + 101.300 3991.74 4.000 0.000 15.516 99.748 0.166 0.843 192.367 46.861220902562 3.162980792923 + 101.400 3997.04 4.019 0.000 15.591 99.748 0.175 0.847 193.034 46.861247750591 3.162923458440 + 101.500 4002.35 4.410 0.000 16.374 99.748 0.161 0.906 193.789 46.861274115978 3.162865096702 + 101.600 4007.68 5.000 0.000 17.456 99.748 0.099 0.935 194.506 46.861300220429 3.162805058444 + 101.700 4013.03 5.000 0.000 17.204 99.748 0.197 0.928 195.056 46.861325257498 3.162745183447 + 101.800 4018.41 5.000 0.000 17.723 99.748 0.211 0.946 195.790 46.861349663691 3.162684500130 + 101.900 4023.80 5.000 0.000 17.335 99.748 0.177 0.961 196.417 46.861373440201 3.162622988591 + 102.000 4029.21 5.000 0.000 14.048 99.748 0.177 0.944 197.155 46.861396600256 3.162560628697 + 102.100 4034.64 5.000 0.000 17.057 99.748 0.157 0.957 197.956 46.861419156144 3.162497475007 + 102.200 4040.09 5.000 0.000 17.845 99.748 0.169 0.922 198.642 46.861441084433 3.162433598678 + 102.300 4045.55 5.000 0.000 17.996 99.748 0.173 0.887 199.291 46.861462346912 3.162368996964 + 102.400 4051.04 5.000 0.000 17.821 99.748 0.169 0.908 199.826 46.861482911405 3.162303618638 + 102.500 4056.55 5.000 0.000 17.146 99.748 0.168 1.013 200.521 46.861502544298 3.162238101030 + 102.600 4062.07 5.000 0.000 16.717 99.748 0.171 1.067 201.343 46.861520635695 3.162174574916 + 102.700 4067.61 5.000 0.000 14.779 99.748 0.179 1.037 202.095 46.861538905277 3.162106952102 + 102.800 4073.17 5.000 0.000 11.539 99.748 0.183 0.911 202.818 46.861556469772 3.162038644735 + 102.900 4078.76 5.000 0.000 9.556 99.748 0.183 0.766 203.487 46.861573428166 3.161969715603 + 103.000 4084.36 5.000 0.283 10.540 91.745 0.192 0.660 204.171 46.861589808005 3.161900147772 + 103.100 4089.98 5.000 7.339 7.990 26.838 0.168 0.618 205.774 46.861605621620 3.161830029551 + 103.200 4095.61 5.000 40.450 6.784 0.000 -0.344 0.523 205.392 46.861620913952 3.161759800129 + 103.300 4101.18 5.000 66.000 4.420 0.000 -1.068 0.418 201.756 46.861635704579 3.161690216562 + 103.400 4106.64 5.000 88.402 0.794 0.000 -1.329 0.258 196.665 46.861649952798 3.161621914474 + 103.500 4111.97 5.000 110.044 0.310 0.000 -1.378 0.093 191.636 46.861663706389 3.161555023187 + 103.600 4117.17 5.000 128.252 4.040 0.000 -1.373 -0.037 186.292 46.861677286376 3.161488750046 + 103.700 4122.25 5.000 131.473 5.591 0.000 -1.398 -0.140 181.509 46.861690401356 3.161425302746 + 103.800 4127.20 5.000 129.294 6.425 0.000 -1.327 -0.033 176.527 46.861703257479 3.161363554354 + 103.900 4132.01 4.965 126.375 5.717 0.000 -1.469 0.067 171.115 46.861715728441 3.161303494171 + 104.000 4136.70 4.290 123.986 8.436 0.000 -1.419 -0.082 167.380 46.861727828178 3.161245064877 + 104.100 4141.26 4.000 124.086 11.813 0.000 -1.159 -0.178 163.104 46.861739706380 3.161188215294 + 104.200 4145.70 4.000 124.893 9.306 0.000 -1.331 0.031 158.317 46.861751358300 3.161132884921 + 104.300 4150.03 4.000 125.521 0.927 0.000 -1.258 0.198 153.829 46.861762612163 3.161079048330 + 104.400 4154.22 4.000 120.672 -1.035 0.000 -1.409 -0.010 149.330 46.861773441157 3.161026726215 + 104.500 4158.29 4.000 117.576 5.436 0.000 -1.174 -0.163 145.071 46.861783963428 3.160976345365 + 104.600 4162.26 4.000 120.416 2.674 0.000 -1.364 -0.115 141.061 46.861793878354 3.160929724782 + 104.700 4166.09 4.000 119.364 0.981 0.000 -1.360 0.037 136.317 46.861804064596 3.160882105833 + 104.800 4169.80 4.000 113.014 0.222 0.000 -1.386 0.054 132.261 46.861813811226 3.160836119449 + 104.900 4173.37 4.000 110.506 -1.813 0.000 -1.439 -0.010 127.768 46.861823184944 3.160791764606 + 105.000 4176.82 3.986 109.935 -6.257 0.000 -1.318 -0.236 122.851 46.861832382396 3.160748988614 + 105.100 4180.16 3.690 108.431 -7.367 0.000 -1.078 -0.253 119.039 46.861841529483 3.160707777919 + 105.200 4183.38 3.000 106.416 -8.486 0.000 -1.476 -0.148 114.607 46.861850528136 3.160668148019 + 105.300 4186.47 3.000 97.577 -12.375 0.000 -1.260 -0.077 110.389 46.861859222860 3.160630100923 + 105.400 4189.44 3.000 87.903 -21.367 0.000 -1.331 -0.305 105.510 46.861867646802 3.160593624666 + 105.500 4192.30 3.000 82.208 -27.105 0.000 -1.037 -0.583 102.103 46.861876115202 3.160558686391 + 105.600 4195.05 3.000 70.422 -27.342 0.000 -1.133 -0.572 98.515 46.861884972296 3.160524720335 + 105.700 4197.71 3.000 56.432 -28.862 0.000 -0.894 -0.461 95.309 46.861893839729 3.160492756094 + 105.800 4200.27 3.000 48.730 -36.378 0.000 -1.008 -0.467 92.220 46.861902700262 3.160462084238 + 105.900 4202.74 3.000 47.780 -46.748 0.000 -0.923 -0.607 88.995 46.861911557176 3.160432763796 + 106.000 4205.11 3.000 50.238 -54.251 0.000 -1.035 -0.786 85.454 46.861920534634 3.160404889669 + 106.100 4207.40 3.000 47.229 -59.876 0.000 -0.847 -0.813 82.569 46.861929774137 3.160378488918 + 106.200 4209.61 3.000 41.625 -67.977 0.000 -0.850 -0.908 79.566 46.861939364785 3.160353508424 + 106.300 4211.74 3.000 33.393 -76.981 0.000 -0.624 -0.955 77.344 46.861949361048 3.160329864421 + 106.400 4213.82 3.000 26.773 -80.408 0.000 -0.674 -1.031 74.887 46.861959763030 3.160307511545 + 106.500 4215.84 3.000 24.218 -85.895 0.059 -0.484 -1.052 72.958 46.861970633353 3.160286325186 + 106.600 4217.81 3.000 21.657 -94.825 6.575 -0.555 -1.105 71.003 46.861982483940 3.160265512138 + 106.700 4219.73 3.000 11.784 -96.954 35.809 -0.400 -1.124 69.212 46.861994179413 3.160247079468 + 106.800 4221.62 3.000 0.000 -102.149 35.749 -0.162 -1.195 68.879 46.862006403775 3.160229970470 + 106.900 4223.49 3.000 0.000 -114.912 37.073 0.024 -1.209 68.699 46.862019301189 3.160214188323 + 107.000 4225.37 3.000 0.000 -125.628 37.073 -0.006 -1.093 69.198 46.862032917835 3.160199636210 + 107.100 4227.25 3.000 0.000 -130.972 38.665 -0.029 -1.095 68.571 46.862047116842 3.160186177291 + 107.200 4229.12 3.000 0.000 -132.858 39.144 -0.016 -1.169 68.360 46.862061757790 3.160173821247 + 107.300 4231.00 3.000 0.000 -133.746 38.345 0.073 -1.225 68.332 46.862076854836 3.160162733216 + 107.400 4232.88 3.000 0.000 -131.209 38.073 -0.014 -1.244 68.132 46.862092462252 3.160153098618 + 107.500 4234.76 3.000 0.000 -113.634 38.432 0.043 -1.284 68.347 46.862108592754 3.160144991297 + 107.600 4236.65 3.000 0.000 -95.627 48.100 0.035 -1.177 68.907 46.862125180951 3.160138437600 + 107.700 4238.55 3.000 0.000 -109.381 50.649 0.058 -1.169 68.766 46.862141988929 3.160133416310 + 107.800 4240.45 3.000 0.000 -112.574 50.649 0.204 -1.069 69.276 46.862159075739 3.160129745137 + 107.900 4242.38 3.000 0.000 -111.083 50.649 0.165 -1.152 69.632 46.862176391844 3.160127375186 + 108.000 4244.31 3.000 0.000 -90.986 54.711 0.205 -1.151 70.379 46.862193916990 3.160126417048 + 108.100 4246.27 3.000 0.000 -75.448 63.801 0.268 -1.229 71.385 46.862211640894 3.160127017456 + 108.200 4248.26 3.000 0.000 -70.042 82.774 0.224 -1.179 71.661 46.862229526130 3.160129225313 + 108.300 4250.26 3.000 0.000 -33.413 81.774 0.388 -1.056 73.006 46.862247534339 3.160133002999 + 108.400 4252.30 3.000 0.000 -12.094 81.413 0.391 -1.024 74.491 46.862265635100 3.160138342731 + 108.500 4254.38 3.000 0.000 3.371 79.430 0.409 -0.908 75.704 46.862283582642 3.160145189643 + 108.600 4256.48 3.000 0.000 7.561 77.118 0.477 -0.828 77.627 46.862300378538 3.160152912173 + 108.700 4258.63 3.000 0.000 -20.880 88.568 0.430 -0.661 79.241 46.862318728457 3.160162485282 + 108.800 4260.83 3.000 0.000 -43.217 91.410 0.436 -0.585 80.967 46.862337296422 3.160172903126 + 108.900 4263.07 3.000 0.000 -45.991 99.226 0.417 -0.606 82.512 46.862356082178 3.160184041943 + 109.000 4265.35 3.000 0.000 -45.228 99.306 0.449 -0.771 84.074 46.862375017314 3.160196122449 + 109.100 4267.67 3.000 0.000 -38.894 98.324 0.489 -0.822 85.681 46.862394045495 3.160209424311 + 109.200 4270.05 3.000 0.000 -33.395 98.324 0.393 -0.791 87.208 46.862413110621 3.160224026620 + 109.300 4272.46 3.000 0.000 -30.590 98.557 0.518 -0.880 88.982 46.862432146827 3.160239877404 + 109.400 4274.92 3.000 0.000 -32.360 99.748 0.412 -0.805 90.499 46.862451095372 3.160256966126 + 109.500 4277.43 3.000 0.000 -17.632 99.748 0.512 -0.761 92.046 46.862470130066 3.160275507431 + 109.600 4279.98 3.000 0.000 -12.143 99.738 0.507 -0.637 93.906 46.862490836851 3.160297140603 + 109.700 4282.59 3.000 0.000 -15.013 93.407 0.462 -0.470 95.670 46.862509723275 3.160317881467 + 109.800 4285.25 3.000 0.000 -18.270 80.273 0.477 -0.397 98.135 46.862528724589 3.160339469845 + 109.900 4287.94 3.000 0.310 -18.833 62.466 0.398 -0.390 99.512 46.862547801062 3.160361774355 + 110.000 4290.67 3.000 6.689 -22.140 32.285 0.235 -0.437 101.155 46.862566844802 3.160384675760 + 110.100 4293.41 3.000 16.709 -27.513 17.398 -0.172 -0.469 100.861 46.862585670956 3.160407977752 + 110.200 4296.12 3.000 33.485 -35.984 0.000 -0.459 -0.622 99.569 46.862603991508 3.160431471839 + 110.300 4298.78 3.000 39.450 -39.066 0.000 -0.688 -0.735 97.254 46.862621504388 3.160455067357 + 110.400 4301.37 3.000 39.642 -31.509 0.000 -0.753 -0.811 94.371 46.862638053507 3.160478740480 + 110.500 4303.89 3.000 38.187 -27.502 0.000 -0.755 -0.759 91.362 46.862653458003 3.160502103784 + 110.600 4306.34 3.000 33.637 -33.891 0.000 -0.677 -0.763 88.922 46.862667108143 3.160523933836 + 110.700 4308.73 3.000 24.908 -55.537 0.000 -0.593 -0.922 86.564 46.862681041337 3.160547651374 + 110.800 4311.08 3.000 11.780 -63.714 0.000 -0.401 -1.024 85.046 46.862694080442 3.160571629447 + 110.900 4313.38 3.000 0.000 -67.469 25.505 -0.280 -1.074 83.436 46.862706239282 3.160595986913 + 111.000 4315.66 3.000 0.000 -65.275 61.165 -0.139 -1.094 83.422 46.862717534694 3.160620868874 + 111.100 4317.93 3.000 0.000 -74.163 52.584 0.119 -1.150 83.213 46.862727973245 3.160646510534 + 111.200 4320.21 3.000 0.000 -82.667 43.316 0.110 -1.044 83.522 46.862737619315 3.160673018316 + 111.300 4322.51 3.000 0.000 -84.985 40.224 0.152 -1.094 83.097 46.862746523261 3.160700280059 + 111.400 4324.82 3.000 0.000 -86.629 40.188 0.087 -1.201 83.479 46.862754591849 3.160728173747 + 111.500 4327.13 3.000 0.000 -82.819 34.431 0.062 -1.258 83.359 46.862761667243 3.160756778752 + 111.600 4329.45 3.000 0.000 -59.131 29.541 0.073 -1.286 83.673 46.862767729684 3.160786596613 + 111.700 4331.76 3.000 0.000 -56.623 28.799 0.011 -1.336 83.986 46.862772499240 3.160816079870 + 111.800 4334.07 3.000 0.000 -67.646 28.799 0.031 -1.167 83.524 46.862776164723 3.160845832430 + 111.900 4336.37 3.000 0.000 -64.421 36.644 -0.160 -1.305 83.719 46.862778744791 3.160875714231 + 112.000 4338.67 3.000 0.000 -53.348 45.120 0.022 -1.147 83.299 46.862780273243 3.160905699663 + 112.100 4340.97 3.000 0.000 -35.493 48.095 0.131 -0.743 81.993 46.862780862217 3.160935841279 + 112.200 4343.28 3.000 0.000 -5.193 51.325 0.112 -0.591 82.568 46.862780680665 3.160966162600 + 112.300 4345.60 3.000 0.000 16.971 60.092 0.343 -0.626 84.448 46.862779864503 3.160996708677 + 112.400 4347.96 3.000 0.000 21.509 74.148 0.364 -0.156 86.001 46.862778594692 3.161027626559 + 112.500 4350.35 3.000 0.000 30.960 72.145 0.258 0.425 87.658 46.862777282250 3.161059253992 + 112.600 4352.77 3.000 0.000 27.028 64.193 0.413 0.669 88.240 46.862776439034 3.161092434887 + 112.700 4355.22 3.000 0.000 32.082 51.325 0.347 0.862 89.821 46.862776367132 3.161124662250 + 112.800 4357.69 3.000 0.000 33.813 51.290 0.248 0.799 91.471 46.862776995426 3.161157258288 + 112.900 4360.19 3.000 0.000 35.702 44.625 0.346 0.746 92.362 46.862778279107 3.161190193825 + 113.000 4362.72 3.000 0.000 38.459 44.524 0.114 0.637 92.977 46.862780197261 3.161223397614 + 113.100 4365.27 3.000 0.000 37.883 49.406 0.039 0.621 93.538 46.862782705999 3.161256732645 + 113.200 4367.84 3.000 0.000 37.473 70.800 0.473 0.856 93.716 46.862785852946 3.161290101789 + 113.300 4370.41 3.000 0.000 44.409 70.931 0.295 1.043 94.669 46.862789797794 3.161323590176 + 113.400 4373.03 3.000 0.000 46.745 68.655 0.311 0.828 94.520 46.862794592838 3.161357313921 + 113.500 4375.67 3.000 0.000 47.259 67.250 0.344 0.919 96.054 46.862800405497 3.161392478698 + 113.600 4378.34 3.000 0.000 47.420 60.957 0.297 1.199 97.562 46.862807917217 3.161431222967 + 113.700 4381.04 3.000 0.000 47.215 54.625 0.290 1.106 97.791 46.862815673975 3.161465030796 + 113.800 4383.77 3.000 0.000 37.524 55.275 0.289 1.125 99.166 46.862824554463 3.161498643177 + 113.900 4386.52 3.000 0.000 28.392 56.738 0.291 1.196 100.453 46.862834495935 3.161531922040 + 114.000 4389.29 3.000 0.000 28.851 98.971 0.299 1.139 101.361 46.862845469615 3.161564824755 + 114.100 4392.10 3.000 0.000 27.669 99.748 0.354 1.010 102.721 46.862857422525 3.161597467878 + 114.200 4394.94 3.000 0.000 26.522 99.748 0.449 0.883 104.191 46.862870264415 3.161630000155 + 114.300 4397.82 3.000 0.000 26.634 99.748 0.438 0.789 105.680 46.862883899869 3.161662513810 + 114.400 4400.75 3.000 0.000 26.732 99.748 0.402 0.467 107.014 46.862898202875 3.161695057575 + 114.500 4403.71 3.000 0.000 20.913 99.748 0.510 0.635 107.575 46.862912187536 3.161725543285 + 114.600 4406.70 3.000 0.000 17.888 99.748 0.436 0.946 109.282 46.862925341430 3.161752882694 + 114.700 4409.73 3.000 0.000 17.196 99.748 0.397 0.672 111.443 46.862941737195 3.161785111380 + 114.800 4412.81 3.000 0.000 15.455 99.748 0.552 0.562 113.434 46.862958898293 3.161817177596 + 114.900 4415.92 3.000 0.000 7.187 99.748 0.541 0.605 115.655 46.862976725402 3.161849163601 + 114.912 4416.30 3.000 0.000 6.169 99.748 0.429 0.632 116.041 46.862978914878 3.161852998391 +Lap: 3 02.06.577 0.000 0.00 3.000 0.000 6.169 99.748 0.429 0.632 116.041 46.862978914878 3.161852998391 + 0.100 3.20 3.000 0.000 -0.561 99.748 0.497 0.427 117.343 46.862997667659 3.161885294165 + 0.200 6.42 3.000 0.000 1.015 99.748 0.505 0.072 118.731 46.863016756316 3.161917441078 + 0.300 9.71 3.000 0.000 3.039 99.748 0.582 -0.011 120.983 46.863036344087 3.161950299206 + 0.400 13.05 3.000 0.000 8.545 99.748 0.364 0.057 122.500 46.863056171447 3.161983625253 + 0.500 16.41 3.000 0.000 8.929 99.748 0.343 0.072 123.767 46.863076107129 3.162017041673 + 0.600 19.85 3.000 0.000 7.126 99.748 0.412 0.119 125.384 46.863096586541 3.162051169628 + 0.700 23.29 3.000 0.000 0.882 99.748 0.548 0.085 127.133 46.863117004944 3.162084958069 + 0.800 26.81 3.000 0.000 1.136 99.748 0.401 0.110 128.821 46.863138188955 3.162119765398 + 0.900 30.38 3.000 0.000 3.385 99.748 0.462 0.028 130.157 46.863159708691 3.162154942570 + 1.000 33.97 3.000 0.000 2.536 99.748 0.405 0.058 131.462 46.863181316799 3.162190131602 + 1.100 37.62 3.000 0.000 -0.438 99.748 0.453 0.084 133.056 46.863203445190 3.162225987281 + 1.200 41.32 3.000 0.000 -1.890 99.748 0.396 0.015 134.640 46.863225874409 3.162262172987 + 1.300 45.03 3.000 0.000 -4.660 99.748 0.406 -0.101 136.054 46.863248346098 3.162298430140 + 1.400 48.82 3.000 0.000 -9.594 99.748 0.394 -0.179 137.639 46.863271259004 3.162335552638 + 1.500 52.65 3.000 0.000 -9.830 99.748 0.381 -0.254 139.213 46.863294310509 3.162373215892 + 1.600 56.48 3.000 0.000 -8.446 99.748 0.372 -0.348 140.731 46.863317013965 3.162410850755 + 1.700 60.39 3.000 0.000 -7.860 99.748 0.371 -0.358 142.246 46.863339533738 3.162448888381 + 1.800 64.29 3.000 0.000 -5.403 99.748 0.370 -0.334 143.731 46.863362328105 3.162488091597 + 1.900 68.27 3.000 0.000 -2.408 99.748 0.352 -0.251 145.168 46.863385368036 3.162528316474 + 2.000 72.29 3.000 0.000 -1.796 99.748 0.347 -0.152 146.250 46.863408491243 3.162569109792 + 2.100 76.31 3.000 0.000 -3.253 99.748 0.334 -0.069 147.373 46.863431528986 3.162609953694 + 2.200 80.40 3.199 0.000 -4.480 99.748 0.314 -0.081 148.698 46.863454948043 3.162651551450 + 2.300 84.52 3.757 0.000 -5.005 99.748 0.297 -0.160 149.953 46.863478488030 3.162693536552 + 2.400 88.63 4.000 0.000 -4.285 99.748 0.507 -0.165 150.959 46.863501898844 3.162735590642 + 2.500 92.83 4.000 0.000 -1.868 99.748 0.204 -0.145 152.490 46.863525662465 3.162778586475 + 2.600 97.06 4.000 0.000 0.319 99.748 0.377 -0.120 153.450 46.863549542029 3.162822024777 + 2.700 101.28 4.000 0.000 0.399 99.748 0.342 -0.037 154.509 46.863573301117 3.162865404675 + 2.800 105.57 4.000 0.000 -0.379 99.748 0.313 0.036 155.641 46.863597452078 3.162909558362 + 2.900 109.85 4.000 0.000 -1.341 99.748 0.309 -0.026 156.609 46.863621563461 3.162953592643 + 3.000 114.21 4.000 0.000 -1.688 99.748 0.313 -0.022 157.824 46.863646118607 3.162998378784 + 3.100 118.60 4.000 0.000 -2.056 99.748 0.308 -0.021 159.101 46.863670859880 3.163043504296 + 3.200 122.98 4.000 0.000 -3.063 99.748 0.320 -0.074 160.242 46.863695526808 3.163088539178 + 3.300 127.43 4.000 0.000 -4.951 99.748 0.296 -0.092 161.532 46.863720587092 3.163134392031 + 3.400 131.92 4.000 0.000 -5.342 99.748 0.317 -0.141 162.794 46.863745754481 3.163180643764 + 3.500 136.39 4.000 0.000 -5.313 99.748 0.311 -0.181 164.094 46.863770751864 3.163226872758 + 3.600 140.94 4.000 0.000 -5.026 99.748 0.301 -0.218 165.374 46.863795645819 3.163273231741 + 3.700 145.53 4.000 0.000 -2.603 99.748 0.312 -0.186 166.598 46.863820435033 3.163319765101 + 3.800 150.10 4.000 0.000 -0.168 96.361 0.319 -0.137 167.580 46.863845599708 3.163367400551 + 3.900 154.74 4.000 0.000 0.707 45.512 0.310 -0.033 168.611 46.863871085109 3.163415936480 + 4.000 159.37 4.000 0.000 0.477 5.873 0.065 0.029 169.381 46.863896420814 3.163464193665 + 4.100 164.04 4.000 0.000 1.196 52.754 -0.164 0.039 169.174 46.863922102889 3.163512910388 + 4.200 168.72 4.000 0.000 2.517 54.511 0.241 0.093 169.647 46.863947891067 3.163561577435 + 4.300 173.37 4.000 0.000 3.091 67.050 0.190 0.120 170.400 46.863973576661 3.163609841662 + 4.400 178.09 4.000 0.000 1.971 92.897 0.158 0.144 170.853 46.863999732197 3.163658708812 + 4.500 182.82 4.000 0.000 -0.169 99.748 0.277 0.164 171.708 46.864026113804 3.163707638058 + 4.600 187.53 4.000 0.000 -1.554 99.748 0.244 0.096 172.552 46.864052719901 3.163756631044 + 4.700 192.32 4.000 0.000 -2.649 99.748 0.246 -0.020 173.324 46.864079854070 3.163806402263 + 4.800 197.13 4.000 0.000 -3.295 99.748 0.254 -0.049 174.437 46.864106885103 3.163855931264 + 4.900 201.91 4.000 0.000 -1.766 99.748 0.236 -0.069 175.497 46.864133714745 3.163905156612 + 5.000 206.76 4.000 0.000 -1.645 99.748 0.251 -0.054 176.355 46.864160753707 3.163955023511 + 5.100 211.57 4.000 0.000 -2.538 99.748 0.246 -0.024 176.511 46.864187416757 3.164004667228 + 5.200 216.46 4.000 0.000 -3.038 99.748 0.255 -0.048 177.728 46.864214403802 3.164055290895 + 5.300 221.38 4.000 0.000 -4.027 99.748 0.254 -0.120 179.172 46.864241676657 3.164106437454 + 5.400 226.30 4.000 0.000 -4.334 99.748 0.253 -0.130 180.281 46.864268981039 3.164157465039 + 5.500 231.30 4.000 0.000 -2.694 99.748 0.257 -0.169 181.350 46.864296693187 3.164209321469 + 5.600 236.33 4.000 0.000 0.689 99.748 0.266 -0.067 182.284 46.864324129227 3.164260950057 + 5.700 241.33 4.000 0.000 2.187 99.748 0.260 0.025 183.010 46.864351188728 3.164312043184 + 5.800 246.41 4.000 0.000 0.772 99.748 0.256 0.069 183.690 46.864379224178 3.164364868488 + 5.900 251.51 4.000 0.000 -0.341 99.748 0.253 0.115 184.154 46.864407509399 3.164417865116 + 6.000 256.58 4.000 0.000 0.474 99.748 0.251 0.058 185.592 46.864435739625 3.164470518921 + 6.100 261.74 4.000 0.000 2.324 99.748 0.240 0.025 186.461 46.864464429622 3.164523926223 + 6.200 266.86 4.000 0.000 6.343 99.748 0.251 0.167 187.451 46.864493041311 3.164576983364 + 6.300 272.07 4.000 0.000 5.896 98.294 0.234 0.287 188.522 46.864522263331 3.164630584554 + 6.400 277.29 4.000 0.000 2.117 93.673 0.215 0.309 189.554 46.864551882515 3.164684098051 + 6.500 282.49 4.000 0.000 0.973 89.520 0.228 0.186 190.476 46.864581548088 3.164737084187 + 6.600 287.77 4.000 0.000 0.643 71.470 0.225 0.067 191.258 46.864612773508 3.164792588862 + 6.700 293.07 4.000 0.000 1.642 60.683 0.209 0.072 192.030 46.864643572427 3.164847273241 + 6.800 298.34 4.000 0.116 3.432 27.149 0.196 0.081 192.771 46.864673714472 3.164900741512 + 6.900 303.67 4.000 11.901 4.307 0.000 -0.141 0.161 192.228 46.864704211150 3.164954691143 + 7.000 308.97 4.000 27.634 6.527 0.000 -0.495 0.288 191.240 46.864734652777 3.165008226689 + 7.100 314.17 4.000 35.004 10.506 0.000 -0.697 0.356 188.493 46.864764660246 3.165060448492 + 7.200 319.35 4.000 37.660 12.392 0.000 -0.755 0.501 185.040 46.864794834491 3.165112140033 + 7.300 324.41 4.000 39.614 14.287 0.000 -0.903 0.548 182.562 46.864824595265 3.165162142087 + 7.400 329.44 4.000 40.712 19.362 0.000 -0.786 0.513 179.216 46.864854508217 3.165211411198 + 7.500 334.38 4.000 40.414 24.287 0.000 -0.799 0.644 175.954 46.864884260279 3.165259418147 + 7.600 339.20 4.000 38.557 26.978 0.000 -0.881 0.818 173.650 46.864914923399 3.165307597094 + 7.700 343.98 4.000 34.724 28.450 0.000 -0.754 0.929 171.068 46.864945116425 3.165353365979 + 7.800 348.68 4.000 30.128 29.275 0.000 -0.744 1.036 168.401 46.864975037406 3.165396861777 + 7.900 353.27 4.000 23.296 27.452 0.000 -0.605 1.027 165.918 46.865004918043 3.165438431612 + 8.000 357.84 4.000 18.338 24.450 0.000 -0.536 1.062 163.961 46.865035354047 3.165478905116 + 8.100 362.37 4.000 11.378 23.880 0.000 -0.510 1.130 161.964 46.865066059399 3.165517822744 + 8.200 366.80 4.000 3.553 23.162 0.000 -0.373 1.215 160.831 46.865096802583 3.165554801800 + 8.300 371.24 4.000 0.366 22.782 0.000 -0.226 1.194 159.986 46.865128279873 3.165590628795 + 8.400 375.61 4.000 0.000 26.023 0.000 -0.217 1.097 159.533 46.865159861982 3.165624718198 + 8.500 380.00 4.000 0.000 32.811 0.000 -0.208 1.067 159.003 46.865192105456 3.165657906769 + 8.600 384.37 4.000 0.000 38.121 0.000 -0.206 1.069 158.361 46.865223634023 3.165688937297 + 8.700 388.68 4.000 0.000 40.016 0.000 -0.204 1.148 157.754 46.865255918851 3.165719170150 + 8.800 393.02 4.000 0.000 36.093 0.000 -0.222 1.346 157.034 46.865289223372 3.165748506504 + 8.900 397.33 4.000 0.000 32.283 1.673 -0.197 1.220 156.315 46.865322961330 3.165776251873 + 9.000 401.58 4.000 0.000 34.266 9.114 -0.163 1.099 154.970 46.865356739315 3.165802211780 + 9.100 405.85 4.000 0.000 35.660 24.324 -0.183 1.286 154.573 46.865391200048 3.165826998049 + 9.200 410.11 4.000 0.000 39.032 23.338 -0.059 1.129 154.279 46.865426017231 3.165850392580 + 9.300 414.32 4.000 0.000 43.139 20.789 -0.063 0.989 153.815 46.865460817935 3.165872231271 + 9.400 418.55 4.000 0.000 42.360 20.675 -0.112 1.294 153.585 46.865496248240 3.165892896465 + 9.500 422.74 4.000 0.000 35.444 27.958 -0.107 1.375 153.699 46.865531619274 3.165911785091 + 9.600 426.96 4.000 0.000 29.547 71.078 -0.044 1.163 153.673 46.865565984060 3.165928429830 + 9.700 431.19 4.000 0.000 28.366 95.691 0.091 0.996 152.537 46.865601935149 3.165944307722 + 9.800 435.38 4.000 0.000 27.434 99.748 0.157 1.094 153.344 46.865638304642 3.165959005297 + 9.900 439.63 4.000 0.000 24.660 99.748 0.272 1.053 153.868 46.865675413639 3.165972586305 + 10.000 443.90 4.000 0.000 25.763 99.748 0.262 1.011 154.520 46.865712947094 3.165984844560 + 10.100 448.15 4.000 0.000 27.792 99.748 0.267 1.031 155.356 46.865750521974 3.165995737136 + 10.200 452.47 4.000 0.000 20.018 99.748 0.273 1.060 156.216 46.865788867916 3.166005480573 + 10.300 456.81 4.000 0.000 16.003 99.748 0.286 1.116 157.291 46.865827611001 3.166013841381 + 10.400 461.14 4.000 0.000 12.554 99.748 0.291 1.058 158.216 46.865866362084 3.166020685164 + 10.500 465.54 4.000 0.000 14.038 99.748 0.302 0.973 159.374 46.865905868187 3.166026231758 + 10.600 469.93 4.000 0.000 14.000 99.748 0.303 0.835 160.419 46.865945980707 3.166030590902 + 10.700 474.39 4.000 0.000 16.164 99.748 0.298 0.772 162.319 46.865986221285 3.166033873825 + 10.800 478.88 4.000 0.000 18.513 99.748 0.266 0.792 163.606 46.866026646659 3.166036187814 + 10.900 483.36 4.000 0.000 17.833 99.748 0.279 0.857 164.827 46.866066967162 3.166037491638 + 11.000 487.91 4.000 0.000 17.062 99.748 0.280 0.903 166.166 46.866107959512 3.166037662540 + 11.100 492.48 4.000 0.000 8.091 99.748 0.292 0.831 167.668 46.866149192246 3.166036587775 + 11.200 497.05 4.000 0.000 8.291 99.748 0.286 0.730 168.988 46.866190266551 3.166034414324 + 11.300 501.69 4.000 0.000 15.443 99.748 0.273 0.609 169.701 46.866232026166 3.166031356031 + 11.400 506.36 4.000 0.000 17.949 99.748 0.273 0.679 170.090 46.866274039099 3.166027530104 + 11.500 511.01 4.000 0.000 18.981 99.748 0.267 0.844 170.886 46.866315841374 3.166022807092 + 11.600 515.75 4.000 0.000 17.224 99.748 0.264 0.899 171.524 46.866357492261 3.166017004766 + 11.700 520.51 4.000 0.000 17.325 99.748 0.260 0.878 172.296 46.866400035356 3.166009916009 + 11.800 525.25 4.000 0.000 17.031 99.748 0.279 0.995 173.323 46.866442399554 3.166001667815 + 11.900 530.07 4.000 0.000 12.612 99.748 0.256 0.968 174.403 46.866485311562 3.165992011338 + 12.000 534.87 4.000 0.000 11.852 99.748 0.261 0.868 175.308 46.866527898539 3.165981134219 + 12.100 539.74 4.000 0.000 13.924 99.748 0.261 0.808 176.217 46.866571008149 3.165968981727 + 12.200 544.64 4.000 0.000 14.192 99.748 0.241 0.839 177.259 46.866614218570 3.165955764664 + 12.300 549.52 4.000 0.000 11.725 99.748 0.264 0.778 178.349 46.866657122627 3.165941609324 + 12.400 554.48 4.000 0.000 9.045 99.138 0.215 0.645 179.015 46.866700575796 3.165926234644 + 12.500 559.47 4.000 0.000 8.746 94.350 0.261 0.580 179.606 46.866744101356 3.165909865988 + 12.600 564.42 4.000 0.532 1.683 84.854 0.245 0.623 180.984 46.866788962688 3.165892068114 + 12.700 569.45 4.000 9.885 -2.181 71.495 0.096 0.297 182.581 46.866832608384 3.165874095183 + 12.800 574.51 4.000 25.383 -1.284 3.566 -0.126 -0.053 183.476 46.866876267738 3.165855930770 + 12.900 579.48 4.000 59.816 -3.878 0.000 -0.872 -0.120 181.254 46.866919192530 3.165838231493 + 13.000 584.41 4.000 93.822 -10.095 0.000 -0.964 -0.136 177.046 46.866961841025 3.165820811886 + 13.100 589.19 4.000 94.147 -10.326 0.000 -1.174 -0.348 172.362 46.867003208763 3.165804090583 + 13.200 593.92 4.000 93.020 -11.086 0.000 -0.936 -0.542 167.715 46.867044174747 3.165787964936 + 13.300 598.54 4.000 95.745 -10.570 0.000 -1.185 -0.500 163.575 46.867084343220 3.165772864366 + 13.400 603.00 4.000 97.064 -4.835 0.000 -1.198 -0.787 159.289 46.867123304989 3.165759090072 + 13.500 607.40 4.000 93.748 -0.455 0.000 -0.995 -0.808 156.292 46.867162048423 3.165746418567 + 13.600 611.71 4.000 93.154 8.800 0.000 -1.002 -0.553 151.901 46.867201573846 3.165734542169 + 13.700 615.87 4.000 90.825 -2.263 0.000 -0.979 -0.772 147.656 46.867238242557 3.165724349070 + 13.800 619.96 4.000 83.478 -14.085 0.000 -1.002 -1.030 145.688 46.867274495345 3.165715260614 + 13.900 623.97 4.000 71.040 -13.211 0.000 -0.921 -0.963 142.297 46.867310067580 3.165707659833 + 14.000 627.86 4.000 56.244 -19.230 0.000 -0.777 -0.744 139.894 46.867344691618 3.165701499145 + 14.100 631.71 3.933 50.635 -25.963 0.000 -0.926 -0.648 137.664 46.867379022657 3.165696228024 + 14.200 635.44 3.039 46.612 -29.294 0.000 -0.905 -0.610 134.809 46.867412327644 3.165691717503 + 14.300 639.12 3.000 45.962 -35.338 0.000 -0.850 -0.732 131.999 46.867445254191 3.165687979406 + 14.400 642.73 3.000 48.473 -30.828 0.000 -0.869 -0.849 128.241 46.867477459000 3.165685295696 + 14.500 646.21 3.000 47.910 -20.855 0.000 -0.837 -0.973 125.243 46.867509396644 3.165683857446 + 14.600 649.64 3.000 42.487 -7.980 0.000 -0.793 -0.934 122.762 46.867542765869 3.165683874013 + 14.700 653.00 3.000 36.596 11.065 0.000 -0.645 -0.843 120.393 46.867572854235 3.165685251769 + 14.800 656.26 3.000 28.225 17.283 0.000 -0.699 -0.701 118.087 46.867602011484 3.165687672113 + 14.900 659.48 3.000 23.192 -8.243 0.000 -0.664 -0.721 115.936 46.867630814998 3.165690941113 + 15.000 662.64 3.000 20.975 -32.629 0.000 -0.629 -0.725 114.060 46.867659002247 3.165694920568 + 15.100 665.72 3.000 13.165 -30.193 0.045 -0.594 -0.676 112.239 46.867686402492 3.165699544565 + 15.200 668.79 3.000 1.916 -37.690 0.825 -0.294 -0.754 110.958 46.867713677686 3.165704982251 + 15.300 671.80 3.000 0.000 -41.446 1.475 -0.220 -0.902 110.082 46.867740339661 3.165711341928 + 15.400 674.83 3.000 0.000 -37.777 1.475 -0.181 -1.035 109.527 46.867766935737 3.165718989466 + 15.500 677.83 3.000 0.000 -31.815 3.494 -0.154 -0.998 109.044 46.867792358387 3.165727656991 + 15.600 680.80 3.000 0.000 -31.339 9.436 -0.145 -0.991 108.658 46.867816088296 3.165736934482 + 15.700 683.78 3.000 0.000 -39.533 18.122 -0.131 -0.978 108.431 46.867841744837 3.165748221216 + 15.800 686.75 3.000 0.000 -43.218 18.147 -0.082 -1.032 108.190 46.867867043545 3.165760650978 + 15.900 689.68 3.000 0.000 -43.531 17.524 -0.085 -1.068 107.702 46.867891704548 3.165774144153 + 16.000 692.64 3.000 0.000 -42.341 18.171 -0.109 -1.114 107.435 46.867916175344 3.165789072394 + 16.100 695.59 3.000 0.000 -38.633 27.513 -0.083 -1.119 107.134 46.867940173692 3.165805355458 + 16.200 698.51 3.000 0.000 -36.817 32.774 -0.031 -1.083 107.228 46.867963475578 3.165822756838 + 16.300 701.45 3.000 0.000 -37.893 32.420 0.016 -1.027 106.898 46.867986550572 3.165841554622 + 16.400 704.37 3.000 0.000 -37.854 32.099 0.009 -1.047 106.755 46.868008902751 3.165861354886 + 16.500 707.31 3.000 0.000 -36.373 32.431 0.011 -1.029 106.721 46.868032046197 3.165883626650 + 16.600 710.26 3.000 0.000 -35.261 33.749 0.016 -0.962 106.728 46.868055282107 3.165907769669 + 16.700 713.18 3.000 0.000 -37.120 33.749 0.025 -0.942 106.829 46.868076163459 3.165930945349 + 16.800 716.13 3.000 0.000 -39.224 37.065 0.018 -0.932 106.902 46.868096788716 3.165955273882 + 16.900 719.09 3.000 0.000 -39.812 40.581 0.048 -0.960 107.598 46.868116864169 3.165980569020 + 17.000 722.02 3.000 0.000 -41.545 43.399 0.103 -1.011 107.863 46.868136160728 3.166006631159 + 17.100 725.00 3.000 0.000 -38.944 50.188 0.139 -1.017 108.304 46.868155084117 3.166034051519 + 17.200 727.99 3.000 0.000 -34.566 51.150 0.265 -1.045 109.316 46.868173480421 3.166062623212 + 17.300 730.97 3.000 0.000 -34.214 51.104 0.251 -0.976 110.576 46.868191177813 3.166092043176 + 17.400 734.01 3.000 0.000 -31.724 50.474 0.285 -1.057 111.729 46.868208459185 3.166122869809 + 17.500 737.03 3.000 0.000 -22.293 50.853 0.268 -1.102 112.448 46.868224273430 3.166153337582 + 17.600 740.11 3.000 0.000 -15.519 51.091 0.296 -0.996 112.231 46.868239337880 3.166184640872 + 17.700 743.22 3.000 0.000 -20.695 50.474 0.310 -0.948 112.921 46.868254621706 3.166218670302 + 17.800 746.32 3.000 0.000 -30.495 48.759 0.266 -0.872 113.247 46.868269207394 3.166253221360 + 17.900 749.47 3.000 0.000 -33.290 36.878 0.262 -0.898 113.906 46.868283359030 3.166288883601 + 18.000 752.63 3.000 0.000 -33.042 27.947 0.082 -0.964 114.415 46.868296797958 3.166325283494 + 18.100 755.77 3.000 0.000 -31.846 25.974 0.047 -0.970 113.768 46.868309313087 3.166361993826 + 18.200 758.94 3.000 0.000 -29.972 26.781 0.020 -0.951 113.845 46.868321163674 3.166399620924 + 18.300 762.10 3.000 0.000 -30.599 32.279 0.014 -0.900 113.867 46.868332262058 3.166437679046 + 18.400 765.23 3.000 0.000 -32.550 33.447 0.053 -0.912 113.902 46.868342502885 3.166475749953 + 18.500 768.39 3.000 0.000 -34.097 39.300 0.038 -0.920 113.894 46.868352167682 3.166515008561 + 18.600 771.53 3.000 0.000 -34.563 41.224 0.095 -0.923 113.934 46.868360859971 3.166553996891 + 18.700 774.70 3.000 0.000 -36.516 41.182 0.136 -0.980 114.050 46.868368830651 3.166593867624 + 18.800 777.89 3.000 0.000 -35.987 40.874 0.132 -0.991 114.126 46.868375924267 3.166634214264 + 18.900 781.04 3.000 0.000 -30.499 40.874 0.163 -1.038 114.469 46.868382041080 3.166674566844 + 19.000 784.24 3.000 0.000 -26.973 41.224 0.137 -1.038 114.969 46.868387285931 3.166715690730 + 19.100 787.44 3.000 0.000 -29.180 44.998 0.140 -1.017 115.474 46.868391635511 3.166757149589 + 19.200 790.62 3.000 0.000 -30.833 46.025 0.154 -0.965 115.430 46.868395092283 3.166798497959 + 19.300 793.84 3.000 0.000 -28.873 45.675 0.221 -0.997 116.232 46.868397709921 3.166840560036 + 19.400 797.09 3.000 0.000 -27.184 45.675 0.207 -1.007 116.474 46.868399409140 3.166882946011 + 19.500 800.31 3.000 0.000 -22.874 45.349 0.212 -0.957 117.173 46.868400173765 3.166923084575 + 19.600 803.58 3.000 0.000 -21.848 45.349 0.206 -0.915 117.852 46.868400127782 3.166963846512 + 19.700 806.83 3.000 0.000 -26.071 45.349 0.195 -0.901 118.437 46.868399284380 3.167006448363 + 19.800 810.13 3.000 0.000 -28.358 45.349 0.196 -0.861 119.081 46.868397644850 3.167049614439 + 19.900 813.44 3.005 0.000 -30.650 45.349 0.184 -0.849 119.766 46.868395226195 3.167092923311 + 20.000 816.74 3.446 0.000 -31.871 44.685 0.181 -0.932 120.569 46.868392037212 3.167135902071 + 20.100 820.08 4.000 0.000 -28.907 44.349 0.092 -0.980 120.906 46.868387952854 3.167179334983 + 20.200 823.43 4.000 0.000 -25.473 44.025 0.152 -1.034 122.025 46.868382939505 3.167222711268 + 20.300 826.75 4.000 0.000 -23.482 44.025 0.168 -0.988 123.071 46.868377038126 3.167265532613 + 20.400 830.12 4.000 0.000 -25.819 44.025 0.147 -1.014 123.943 46.868370149641 3.167308588027 + 20.500 833.50 4.000 0.000 -30.305 44.349 0.123 -0.975 124.173 46.868362447574 3.167350993014 + 20.600 836.85 4.000 0.000 -33.367 44.349 0.126 -0.944 124.370 46.868353998162 3.167392789135 + 20.700 840.25 4.000 0.000 -33.223 44.684 0.131 -0.985 124.896 46.868344572518 3.167435212908 + 20.800 843.62 4.000 0.000 -30.483 45.025 0.135 -1.050 125.226 46.868334410785 3.167476934527 + 20.900 847.03 4.000 0.000 -29.197 45.025 0.141 -1.054 125.614 46.868323226727 3.167518684842 + 21.000 850.45 4.000 0.000 -30.390 45.349 0.144 -1.053 126.078 46.868311089934 3.167559984958 + 21.100 853.84 4.000 0.000 -29.621 45.349 0.140 -1.064 126.426 46.868298170827 3.167600423649 + 21.200 857.28 4.000 0.000 -27.129 45.349 0.151 -1.090 126.702 46.868284211000 3.167640773447 + 21.300 860.72 4.000 0.000 -26.135 45.806 0.145 -1.069 126.987 46.868269325123 3.167680569198 + 21.400 864.14 4.000 0.000 -27.449 47.349 0.160 -1.051 127.527 46.868253698524 3.167719386768 + 21.500 867.61 4.000 0.000 -28.934 47.675 0.179 -1.029 127.942 46.868236045609 3.167760251537 + 21.600 871.08 4.000 0.000 -27.376 47.675 0.184 -1.029 128.470 46.868217967664 3.167799358301 + 21.700 874.54 4.000 0.000 -23.700 47.999 0.182 -1.020 128.893 46.868199748758 3.167836308817 + 21.800 878.04 4.000 0.000 -23.277 48.649 0.193 -1.017 129.508 46.868180525750 3.167872947387 + 21.900 881.53 4.000 0.000 -24.751 49.038 0.205 -1.004 129.884 46.868160711551 3.167908534594 + 22.000 885.06 4.000 0.000 -24.819 50.764 0.216 -1.010 128.855 46.868139918723 3.167943801503 + 22.100 888.61 4.000 0.000 -22.024 62.723 0.223 -0.962 128.130 46.868118336047 3.167978398105 + 22.200 892.14 4.000 0.000 -19.360 80.674 0.245 -0.956 129.136 46.868096188039 3.168011970769 + 22.300 895.73 4.000 0.000 -20.679 81.151 0.269 -0.914 129.817 46.868073053178 3.168045189784 + 22.400 899.34 4.000 0.000 -22.437 80.774 0.278 -0.919 130.812 46.868049193045 3.168077751269 + 22.500 902.94 4.000 0.000 -22.777 79.736 0.286 -0.941 131.640 46.868026255792 3.168107606203 + 22.600 906.59 4.000 0.000 -21.374 79.124 0.284 -0.951 132.461 46.868001928519 3.168137760619 + 22.700 910.27 4.000 0.000 -16.391 79.124 0.292 -0.981 133.287 46.867976025247 3.168168158209 + 22.800 913.94 4.000 0.000 -14.826 79.124 0.303 -0.954 134.197 46.867949646116 3.168197369470 + 22.900 917.67 4.000 0.000 -16.158 80.948 0.287 -0.930 134.959 46.867922274364 3.168225972218 + 23.000 921.38 4.000 0.000 -15.132 83.774 0.307 -0.900 135.878 46.867894497217 3.168253457832 + 23.100 925.16 4.000 0.000 -14.085 84.100 0.316 -0.837 136.911 46.867865818226 3.168280456126 + 23.200 928.97 4.000 0.000 -13.954 87.295 0.318 -0.802 138.066 46.867836563399 3.168306747103 + 23.300 932.76 4.000 0.000 -12.820 98.500 0.307 -0.732 140.424 46.867807054720 3.168332092985 + 23.400 936.62 4.000 0.000 -9.543 99.748 0.331 -0.722 141.640 46.867776693833 3.168356985697 + 23.500 940.51 4.000 0.000 -6.810 99.748 0.306 -0.618 142.428 46.867745010142 3.168381766794 + 23.600 944.39 4.000 0.000 -4.854 99.748 0.334 -0.516 143.899 46.867713661335 3.168405301634 + 23.700 948.34 4.000 0.000 -5.597 99.748 0.349 -0.357 145.316 46.867681715697 3.168428564728 + 23.800 952.32 4.000 0.000 -6.259 99.748 0.338 -0.281 146.664 46.867649366508 3.168451594976 + 23.900 956.30 4.000 0.000 -6.801 99.748 0.334 -0.236 147.743 46.867616978028 3.168474230781 + 24.000 960.35 4.000 0.000 -7.801 99.748 0.343 -0.204 148.896 46.867583939550 3.168496965594 + 24.100 964.39 4.000 0.000 -8.835 99.748 0.324 -0.226 148.907 46.867550914091 3.168519373887 + 24.200 968.50 4.000 0.000 -9.404 99.748 0.324 -0.260 149.936 46.867517199000 3.168541875372 + 24.300 972.64 4.000 0.000 -9.705 99.748 0.323 -0.275 151.273 46.867483086546 3.168564194280 + 24.400 976.77 4.000 0.000 -11.153 99.748 0.328 -0.312 152.226 46.867448938469 3.168586091135 + 24.500 980.98 4.000 0.000 -10.796 99.748 0.318 -0.370 153.483 46.867406474521 3.168612712957 + 24.600 985.21 4.000 0.000 -9.300 99.748 0.306 -0.384 154.423 46.867371181068 3.168634205093 + 24.700 989.44 4.000 0.000 -9.587 99.748 0.329 -0.368 155.672 46.867335831681 3.168655112327 + 24.800 993.73 4.000 0.000 -10.992 99.748 0.300 -0.399 156.531 46.867299719538 3.168675884254 + 24.900 998.06 4.000 0.000 -10.267 99.748 0.329 -0.415 157.799 46.867263214538 3.168696314674 + 25.000 1002.37 4.000 0.000 -8.399 99.748 0.315 -0.432 158.786 46.867226685635 3.168716132977 + 25.100 1006.76 4.000 0.000 -8.242 99.748 0.316 -0.424 159.889 46.867189392636 3.168735691197 + 25.200 1011.13 4.000 0.000 -10.600 99.748 0.306 -0.402 161.019 46.867152086646 3.168754665798 + 25.300 1015.58 4.000 0.000 -12.031 99.748 0.326 -0.421 162.086 46.867114043638 3.168773460381 + 25.400 1020.05 4.000 0.000 -9.862 99.748 0.306 -0.466 163.147 46.867075805896 3.168791699595 + 25.500 1024.50 4.000 0.000 -8.418 99.748 0.307 -0.478 164.084 46.867040259149 3.168807984292 + 25.600 1029.03 4.000 0.000 -9.204 99.748 0.321 -0.454 165.345 46.867001155974 3.168825180946 + 25.700 1033.59 4.000 0.000 -9.755 99.748 0.321 -0.433 166.128 46.866961616142 3.168841936084 + 25.800 1038.13 4.000 0.000 -9.519 99.748 0.309 -0.419 166.694 46.866922117435 3.168858111395 + 25.900 1042.75 4.000 0.000 -9.479 99.748 0.312 -0.430 167.790 46.866881878282 3.168874010235 + 26.000 1047.39 4.000 0.000 -9.331 97.700 0.299 -0.458 168.928 46.866841299717 3.168889425002 + 26.100 1052.02 4.000 0.000 -8.187 94.340 0.288 -0.448 169.871 46.866800792812 3.168904152822 + 26.200 1056.72 4.000 0.000 -6.876 90.680 0.297 -0.415 170.473 46.866759542901 3.168918489361 + 26.300 1061.40 4.000 0.000 -6.637 86.048 0.295 -0.347 171.335 46.866718375520 3.168932239263 + 26.400 1066.15 4.000 0.000 -7.694 84.733 0.295 -0.317 172.421 46.866675973336 3.168945939983 + 26.500 1070.94 4.000 0.000 -8.881 82.655 0.280 -0.305 173.510 46.866624281507 3.168962040583 + 26.600 1075.70 4.000 0.000 -8.342 81.255 0.291 -0.331 174.549 46.866582191852 3.168974633021 + 26.700 1080.54 4.000 0.000 -8.390 78.394 0.271 -0.347 175.584 46.866539383385 3.168986936355 + 26.800 1085.41 4.000 0.000 -8.578 75.824 0.268 -0.365 176.619 46.866496291996 3.168998819608 + 26.900 1090.25 4.000 0.000 -8.121 72.024 0.274 -0.369 177.614 46.866453357613 3.169010158113 + 27.000 1095.16 4.000 0.000 -7.616 69.169 0.254 -0.360 178.525 46.866409717421 3.169021153981 + 27.100 1100.09 4.000 0.000 -7.706 63.575 0.261 -0.362 179.537 46.866365799142 3.169031672509 + 27.200 1105.01 4.000 0.000 -7.162 63.224 0.261 -0.351 180.419 46.866322056498 3.169041620481 + 27.300 1109.99 4.000 0.000 -6.060 62.896 0.257 -0.325 181.216 46.866277630382 3.169051231315 + 27.400 1114.95 4.000 0.000 -5.858 62.249 0.262 -0.296 181.920 46.866228646390 3.169061357247 + 27.500 1119.99 4.000 0.000 -5.736 62.249 0.257 -0.246 182.797 46.866177797860 3.169071449356 + 27.600 1125.05 4.000 0.000 -4.605 63.717 0.251 -0.207 183.513 46.866132601318 3.169080104113 + 27.700 1130.08 4.000 0.000 -5.970 67.657 0.243 -0.190 184.216 46.866087628932 3.169088408150 + 27.800 1135.18 4.000 0.000 -7.738 73.174 0.255 -0.212 185.148 46.866041990992 3.169096512183 + 27.900 1140.31 4.000 0.000 -7.539 73.174 0.240 -0.241 186.011 46.865996132967 3.169104317300 + 28.000 1145.41 4.000 0.000 -6.755 72.160 0.242 -0.280 186.908 46.865950495041 3.169111727636 + 28.100 1150.58 4.000 0.000 -7.256 71.264 0.233 -0.291 187.678 46.865904169789 3.169118859551 + 28.200 1155.77 4.000 0.000 -7.341 68.876 0.208 -0.298 188.383 46.865857636043 3.169125590919 + 28.300 1160.93 4.000 0.000 -7.306 65.162 0.236 -0.306 189.190 46.865811367474 3.169131818247 + 28.400 1166.16 4.000 0.000 -7.223 61.307 0.211 -0.313 189.803 46.865755889077 3.169138675855 + 28.500 1171.36 4.000 0.000 -6.542 56.657 0.230 -0.314 190.542 46.865707463546 3.169144155845 + 28.600 1176.64 4.000 0.000 -4.839 53.445 0.224 -0.293 191.314 46.865660079180 3.169149098254 + 28.700 1181.93 4.000 0.000 -0.504 48.824 0.192 -0.202 191.727 46.865612507662 3.169153777957 + 28.800 1187.18 4.000 0.000 1.029 41.874 0.201 -0.038 192.149 46.865565285257 3.169158377158 + 28.900 1192.50 4.000 0.000 -0.572 39.865 0.071 0.108 192.288 46.865517558285 3.169163156801 + 29.000 1197.82 4.000 0.000 -3.479 32.497 0.074 0.070 192.389 46.865469862721 3.169168054582 + 29.100 1203.08 4.000 0.000 -3.993 22.215 0.006 -0.049 192.494 46.865422690548 3.169172843057 + 29.200 1208.39 4.000 0.000 -2.560 9.812 -0.099 -0.140 191.945 46.865375117075 3.169177387495 + 29.300 1213.68 4.000 0.000 0.425 0.000 -0.102 -0.245 191.730 46.865327663184 3.169181475603 + 29.400 1218.89 4.003 0.000 4.639 0.000 -0.238 -0.276 191.213 46.865269663164 3.169185954706 + 29.500 1224.13 4.110 0.000 6.422 0.000 -0.203 -0.139 190.105 46.865222655393 3.169189484018 + 29.600 1229.30 5.000 0.000 5.896 0.000 -0.163 0.055 189.556 46.865176283726 3.169193130244 + 29.700 1234.51 5.000 0.000 3.335 0.000 -0.137 0.105 189.370 46.865129569160 3.169196949725 + 29.800 1239.70 5.000 0.000 2.110 0.000 -0.120 0.013 189.192 46.865082963587 3.169200712336 + 29.900 1244.83 5.000 0.000 2.605 0.000 -0.143 -0.049 188.813 46.865036948424 3.169204210166 + 30.000 1249.99 5.000 0.000 3.954 0.000 -0.138 -0.142 188.112 46.864990630222 3.169207464173 + 30.100 1255.14 5.000 0.000 2.166 0.000 -0.149 -0.205 187.317 46.864944472048 3.169210413616 + 30.200 1260.21 5.000 0.000 2.444 0.000 -0.172 -0.225 186.254 46.864898937598 3.169213018760 + 30.300 1265.31 5.000 0.335 6.650 0.000 -0.200 -0.189 184.912 46.864849498449 3.169215558239 + 30.400 1270.38 5.000 3.879 8.896 0.000 -0.218 -0.119 183.972 46.864795940657 3.169218161420 + 30.500 1275.37 5.000 8.469 7.188 0.000 -0.310 -0.030 183.013 46.864751239972 3.169220337459 + 30.600 1280.36 5.000 11.140 5.849 0.000 -0.368 -0.003 181.644 46.864706440556 3.169222480301 + 30.700 1285.27 5.000 12.726 5.812 0.000 -0.384 -0.070 180.055 46.864662452986 3.169224374343 + 30.800 1290.18 5.000 13.506 5.183 0.000 -0.397 -0.193 178.689 46.864618409758 3.169225870327 + 30.900 1295.05 5.000 14.139 6.385 0.000 -0.394 -0.293 177.129 46.864574757861 3.169226887845 + 31.000 1299.83 5.000 14.448 10.268 0.000 -0.406 -0.296 175.639 46.864531914312 3.169227510091 + 31.100 1304.62 5.000 14.442 13.013 0.000 -0.420 -0.214 174.279 46.864489007946 3.169227936216 + 31.200 1309.36 5.000 15.116 16.644 0.000 -0.397 -0.057 172.465 46.864446485422 3.169228373932 + 31.300 1314.01 5.000 16.089 15.129 0.000 -0.395 0.083 170.770 46.864397629512 3.169229105958 + 31.400 1318.64 5.000 18.005 8.179 0.000 -0.506 0.137 169.382 46.864353395116 3.169229931134 + 31.500 1323.22 5.000 22.516 7.110 0.000 -0.511 0.060 167.486 46.864312426075 3.169230610038 + 31.600 1327.70 5.000 24.442 7.064 0.000 -0.549 -0.055 165.362 46.864272397939 3.169230977817 + 31.700 1332.16 5.000 24.091 8.013 0.000 -0.579 -0.210 163.512 46.864232497676 3.169230924711 + 31.800 1336.52 5.000 22.785 8.610 0.000 -0.564 -0.279 161.323 46.864193461215 3.169230439031 + 31.900 1340.87 5.000 19.248 10.512 0.000 -0.536 -0.291 159.387 46.864154430721 3.169229635620 + 32.000 1345.19 5.000 15.931 13.821 0.000 -0.468 -0.181 157.626 46.864115738654 3.169228748052 + 32.100 1349.43 5.000 12.835 12.640 0.000 -0.381 -0.021 155.940 46.864077759688 3.169227933949 + 32.200 1353.67 5.000 11.387 7.712 0.000 -0.354 0.014 154.476 46.864039753993 3.169227107967 + 32.300 1357.87 5.000 11.470 3.212 0.000 -0.361 -0.039 153.312 46.863993205368 3.169225801075 + 32.400 1361.99 5.000 11.125 4.000 0.000 -0.345 -0.150 152.153 46.863956320458 3.169224387247 + 32.500 1366.12 5.000 9.275 5.124 0.000 -0.332 -0.194 150.807 46.863919327891 3.169222626517 + 32.600 1370.23 5.000 5.481 4.787 0.000 -0.275 -0.204 149.724 46.863882528315 3.169220598422 + 32.700 1374.27 5.000 1.244 4.663 0.000 -0.196 -0.191 148.962 46.863846248453 3.169218391350 + 32.800 1378.35 5.000 0.000 3.218 0.000 -0.148 -0.163 148.443 46.863809770682 3.169215952452 + 32.900 1382.36 5.000 0.000 1.328 0.000 -0.146 -0.157 148.001 46.863773830083 3.169213237551 + 33.000 1386.39 5.000 0.000 -0.199 0.000 -0.145 -0.210 147.565 46.863737702179 3.169210091521 + 33.100 1390.41 5.000 0.000 -0.662 0.000 -0.155 -0.269 147.023 46.863701743835 3.169206503752 + 33.200 1394.36 5.000 0.000 0.513 1.054 -0.162 -0.310 146.370 46.863664030413 3.169202286118 + 33.300 1398.34 5.000 0.000 1.664 8.215 -0.167 -0.291 145.798 46.863620091721 3.169196895457 + 33.400 1402.31 5.000 0.000 2.304 11.314 -0.127 -0.231 145.307 46.863584602616 3.169192188672 + 33.500 1406.23 5.000 0.000 1.248 15.550 -0.123 -0.224 144.986 46.863549573354 3.169187193260 + 33.600 1410.17 5.000 0.000 0.456 15.550 -0.066 -0.250 144.773 46.863514312486 3.169181774161 + 33.700 1414.11 5.000 0.000 0.303 15.666 -0.120 -0.261 144.430 46.863479186966 3.169176008284 + 33.800 1417.99 5.000 0.000 0.728 15.874 -0.089 -0.264 144.073 46.863444539907 3.169170007133 + 33.900 1421.89 5.000 0.000 1.169 16.200 -0.094 -0.238 143.455 46.863409673615 3.169163652795 + 34.000 1425.79 5.000 0.000 1.579 16.575 -0.089 -0.232 143.097 46.863374941306 3.169156973010 + 34.100 1429.64 5.000 0.000 0.807 18.200 -0.090 -0.215 142.666 46.863340687952 3.169150031850 + 34.200 1433.51 5.000 0.000 0.171 18.524 -0.066 -0.259 142.454 46.863300621737 3.169141459341 + 34.300 1437.34 5.000 0.000 0.397 18.850 -0.068 -0.255 142.021 46.863264040960 3.169133222969 + 34.400 1441.19 5.000 0.000 1.733 18.850 -0.055 -0.238 141.426 46.863229815499 3.169125175360 + 34.500 1445.04 5.000 0.000 1.772 18.850 -0.076 -0.240 141.275 46.863195714627 3.169116847557 + 34.600 1448.83 5.000 0.000 2.129 18.850 -0.091 -0.202 140.877 46.863162073200 3.169108357573 + 34.700 1452.66 5.000 0.000 3.746 19.200 -0.095 -0.190 140.460 46.863128209663 3.169099590778 + 34.800 1456.47 5.000 0.000 4.328 19.200 -0.111 -0.163 139.961 46.863094464002 3.169090655100 + 34.900 1460.23 5.000 0.000 2.907 19.200 -0.110 -0.142 138.831 46.863061187294 3.169081586837 + 35.000 1464.02 5.000 0.000 0.844 19.200 -0.112 -0.145 137.768 46.863027727719 3.169072127580 + 35.100 1467.80 5.000 0.000 0.482 19.189 -0.081 -0.188 137.302 46.862994408563 3.169062345833 + 35.200 1471.53 5.000 0.000 0.938 18.850 -0.068 -0.240 136.905 46.862955629009 3.169050579258 + 35.300 1475.29 5.000 0.000 2.604 18.850 -0.066 -0.246 136.619 46.862922562845 3.169040295754 + 35.400 1479.00 5.000 0.000 4.582 18.850 -0.052 -0.211 136.279 46.862889944742 3.169029996771 + 35.500 1482.73 5.000 0.000 5.019 18.524 -0.070 -0.144 136.141 46.862857119555 3.169019493136 + 35.600 1486.46 5.000 0.000 4.927 18.524 -0.101 -0.085 135.444 46.862824412251 3.169008873911 + 35.700 1490.13 5.000 0.000 4.431 18.200 -0.104 -0.083 135.117 46.862792157074 3.168998195118 + 35.800 1493.84 5.000 0.000 3.382 18.000 -0.084 -0.105 134.714 46.862759731740 3.168987181655 + 35.900 1497.53 5.000 0.000 2.930 17.200 -0.097 -0.141 134.323 46.862727453175 3.168975908487 + 36.000 1501.17 5.000 0.000 2.639 16.874 -0.075 -0.182 133.955 46.862695622178 3.168964537114 + 36.100 1504.84 5.000 0.000 3.288 16.874 -0.071 -0.191 133.583 46.862662851717 3.168952624892 + 36.200 1508.49 5.000 0.000 4.522 16.550 -0.084 -0.169 133.096 46.862622868981 3.168937844071 + 36.300 1512.11 5.000 0.000 5.130 16.200 -0.081 -0.144 132.750 46.862591455338 3.168926058624 + 36.400 1515.74 5.000 0.000 5.869 15.874 -0.090 -0.116 132.313 46.862559854154 3.168914088164 + 36.500 1519.33 5.000 0.000 6.668 15.550 -0.093 -0.085 131.893 46.862528663006 3.168902186341 + 36.600 1522.94 5.000 0.000 6.764 15.224 -0.078 -0.052 131.496 46.862497250981 3.168890105925 + 36.700 1526.55 5.000 0.000 6.501 15.224 -0.081 -0.048 131.163 46.862465955448 3.168877964787 + 36.800 1530.10 5.000 0.000 6.420 14.807 -0.073 -0.045 130.788 46.862435113375 3.168865888025 + 36.900 1533.68 5.000 0.000 6.574 14.224 -0.084 -0.058 130.419 46.862404083905 3.168853623667 + 37.000 1537.25 5.000 0.000 6.926 13.750 -0.090 -0.055 129.920 46.862373136444 3.168841292171 + 37.100 1540.78 5.000 0.000 8.051 12.900 -0.087 -0.047 129.600 46.862351588639 3.168832675095 + 37.200 1544.34 5.000 0.000 9.088 12.870 -0.077 -0.020 129.239 46.862343517110 3.168829445903 + 37.300 1547.90 5.000 0.000 9.408 11.719 -0.084 -0.007 128.658 46.862335452979 3.168826220930 + 37.400 1551.42 5.000 0.000 9.199 11.250 -0.076 0.024 128.401 46.862327475872 3.168823031982 + 37.500 1554.97 5.000 0.000 9.075 11.250 -0.109 0.046 128.001 46.862305736757 3.168814355374 + 37.600 1558.47 5.000 0.000 9.329 11.250 -0.096 0.030 127.600 46.862275410996 3.168802284498 + 37.700 1561.99 5.000 0.000 9.480 11.250 -0.104 0.007 127.228 46.862244885213 3.168790149175 + 37.800 1565.50 5.000 0.000 9.584 11.250 -0.108 0.018 127.147 46.862214473692 3.168778037738 + 37.900 1568.96 5.000 0.000 9.729 11.250 -0.105 0.036 126.992 46.862184483865 3.168766071333 + 38.000 1572.45 5.000 0.000 9.721 10.924 -0.113 0.041 126.836 46.862154315458 3.168754040793 + 38.100 1575.92 5.000 0.000 9.600 10.924 -0.106 0.031 126.582 46.862124279000 3.168742084504 + 38.200 1579.34 5.000 0.000 9.394 10.924 -0.117 0.009 126.103 46.862094688201 3.168730308690 + 38.300 1582.77 5.000 0.000 9.327 10.924 -0.116 0.029 125.554 46.862064977990 3.168718466789 + 38.400 1586.19 5.000 0.000 9.453 10.924 -0.109 0.029 125.093 46.862034759153 3.168706385812 + 38.500 1589.55 5.000 0.000 9.699 10.924 -0.119 0.037 124.544 46.862005455977 3.168694650181 + 38.600 1592.96 5.000 0.000 9.856 10.924 -0.107 0.024 123.938 46.861975961653 3.168682883764 + 38.700 1596.34 5.000 0.000 9.858 10.924 -0.106 0.037 123.471 46.861946596703 3.168671253832 + 38.800 1599.75 5.000 0.000 9.815 10.924 -0.116 0.038 123.131 46.861916945020 3.168659533460 + 38.900 1603.14 5.000 0.000 9.799 10.924 -0.112 0.031 122.466 46.861887570216 3.168647866991 + 39.000 1606.47 5.000 0.000 9.878 10.574 -0.114 0.026 121.964 46.861858826170 3.168636400437 + 39.100 1609.80 5.000 0.000 10.005 10.574 -0.125 0.032 121.463 46.861830001682 3.168624887078 + 39.200 1613.12 5.000 0.000 9.898 10.574 -0.124 0.040 120.800 46.861801259963 3.168613408859 + 39.300 1616.39 5.000 0.000 9.536 10.574 -0.120 0.037 120.240 46.861772872815 3.168602090272 + 39.400 1619.68 5.000 0.000 9.259 10.574 -0.117 0.002 119.831 46.861748184432 3.168592264221 + 39.500 1622.96 5.000 0.000 9.018 10.250 -0.121 -0.006 119.247 46.861722098766 3.168581884454 + 39.600 1626.19 5.000 0.920 8.952 10.250 -0.140 0.006 118.647 46.861694140388 3.168570741631 + 39.700 1629.43 5.000 2.803 9.156 10.250 -0.145 0.010 118.048 46.861666066252 3.168559536942 + 39.800 1632.63 5.000 3.421 9.595 10.250 -0.154 0.009 117.391 46.861638385161 3.168548472615 + 39.900 1635.84 5.000 3.413 9.469 10.250 -0.158 0.006 116.744 46.861610541149 3.168537340412 + 40.000 1639.03 5.000 3.430 9.268 10.195 -0.145 0.016 116.024 46.861582852136 3.168526288020 + 40.100 1642.18 5.000 3.403 9.285 9.924 -0.153 0.007 115.345 46.861555609673 3.168515434603 + 40.200 1645.33 5.000 3.440 9.459 9.924 -0.155 -0.002 114.794 46.861528259146 3.168504523666 + 40.300 1648.47 5.000 3.569 9.825 9.924 -0.153 0.006 114.063 46.861501071302 3.168493623131 + 40.400 1651.56 5.000 4.271 10.199 9.924 -0.158 0.010 113.425 46.861474305428 3.168482829638 + 40.500 1654.67 5.000 4.793 10.408 9.600 -0.173 0.025 112.617 46.861447409491 3.168471956196 + 40.600 1657.75 5.000 5.544 10.456 9.600 -0.174 0.040 111.898 46.861420665279 3.168461139915 + 40.700 1660.79 5.000 6.458 10.425 9.600 -0.202 0.044 111.143 46.861394383994 3.168450499786 + 40.800 1663.83 5.000 6.406 10.103 9.250 -0.205 0.042 110.139 46.861368061144 3.168439842677 + 40.900 1666.82 5.000 6.702 9.304 9.250 -0.212 0.031 109.239 46.861342196797 3.168429419119 + 41.000 1669.81 5.000 6.522 8.808 8.658 -0.201 0.013 108.549 46.861316265351 3.168419025552 + 41.100 1672.78 5.000 6.466 9.589 8.600 -0.206 0.005 107.552 46.861290553248 3.168408714236 + 41.200 1675.70 5.000 6.569 10.127 8.259 -0.200 0.016 106.788 46.861265331099 3.168398525255 + 41.300 1678.63 5.000 6.575 10.553 7.274 -0.215 0.021 106.004 46.861240080034 3.168388236959 + 41.400 1681.53 5.000 6.725 10.930 7.274 -0.206 0.034 105.077 46.861211093184 3.168376378926 + 41.500 1684.37 5.000 6.378 11.024 6.950 -0.216 0.056 104.352 46.861185757347 3.168366052033 + 41.600 1687.22 5.000 5.050 11.093 6.950 -0.207 0.060 103.491 46.861161138301 3.168356101508 + 41.700 1690.05 5.000 2.147 11.081 6.269 -0.148 0.055 102.876 46.861136701726 3.168346323721 + 41.800 1692.83 5.000 0.273 11.006 3.069 -0.132 0.048 102.207 46.861112640704 3.168336777959 + 41.900 1695.63 5.000 0.000 10.852 0.000 -0.119 0.047 101.659 46.861088429955 3.168327214315 + 42.000 1698.38 5.000 0.000 10.809 0.000 -0.107 0.045 101.111 46.861064543618 3.168317774522 + 42.100 1701.15 5.000 0.000 10.806 0.000 -0.101 0.040 100.661 46.861040527216 3.168308276942 + 42.200 1703.91 5.000 0.000 10.806 0.000 -0.109 0.061 100.272 46.861016629655 3.168298861747 + 42.300 1706.63 5.000 0.000 10.773 0.000 -0.115 0.053 99.753 46.860993051921 3.168289649010 + 42.400 1709.36 5.000 0.000 10.801 0.000 -0.108 0.036 99.192 46.860972703351 3.168281773885 + 42.500 1712.08 5.000 0.000 10.845 0.000 -0.100 0.055 98.636 46.860950081549 3.168273093543 + 42.600 1714.76 5.000 0.000 11.099 0.000 -0.114 0.062 98.265 46.860926792311 3.168264217533 + 42.700 1717.45 5.000 0.000 11.156 0.000 -0.101 0.053 97.691 46.860903461392 3.168255347495 + 42.800 1720.13 5.000 0.000 11.268 0.000 -0.104 0.061 97.437 46.860880274942 3.168246520327 + 42.900 1722.77 5.000 0.000 11.396 0.000 -0.110 0.065 96.791 46.860857383852 3.168237780715 + 43.000 1725.43 5.000 0.496 11.420 0.000 -0.106 0.049 96.270 46.860834309599 3.168228950150 + 43.100 1728.04 5.000 3.189 11.824 0.000 -0.149 0.056 95.700 46.860811568604 3.168220234746 + 43.200 1730.67 5.000 4.340 12.159 0.000 -0.181 0.080 94.992 46.860788773225 3.168211493907 + 43.300 1733.27 5.000 4.911 12.286 0.000 -0.190 0.090 94.151 46.860766178227 3.168202843252 + 43.400 1735.83 5.000 5.015 12.485 0.000 -0.187 0.082 93.454 46.860743780087 3.168194329056 + 43.500 1738.39 5.000 5.220 12.560 0.000 -0.186 0.086 92.571 46.860721560486 3.168186002003 + 43.600 1740.93 5.000 5.253 12.490 0.000 -0.192 0.100 91.856 46.860699486074 3.168177866776 + 43.700 1743.42 5.000 5.393 12.401 0.000 -0.197 0.090 91.078 46.860677758063 3.168169971112 + 43.800 1745.92 5.000 5.400 11.547 0.000 -0.194 0.082 90.301 46.860655963101 3.168162141157 + 43.900 1748.39 5.000 5.977 9.445 0.000 -0.200 0.061 89.434 46.860634357739 3.168154450140 + 44.000 1750.82 5.000 6.580 8.218 0.000 -0.206 0.020 88.516 46.860613170437 3.168146921287 + 44.100 1753.24 5.000 6.776 8.006 0.000 -0.224 0.001 87.630 46.860591971600 3.168139322857 + 44.200 1755.63 5.000 6.578 7.644 0.000 -0.209 -0.008 86.771 46.860571180312 3.168131774863 + 44.300 1758.01 5.000 6.416 7.402 0.000 -0.216 -0.012 86.038 46.860550392702 3.168124176369 + 44.400 1760.36 5.000 6.399 7.983 0.000 -0.209 -0.016 85.209 46.860529974147 3.168116707065 + 44.500 1762.67 5.000 6.516 8.002 0.000 -0.221 -0.023 84.237 46.860509886451 3.168109333753 + 44.600 1764.98 5.000 6.396 7.274 0.000 -0.200 -0.014 83.378 46.860489762884 3.168101865642 + 44.700 1767.27 5.000 6.415 6.933 0.000 -0.227 -0.031 82.535 46.860469855790 3.168094384170 + 44.800 1769.51 5.000 8.321 7.380 0.000 -0.240 -0.029 81.636 46.860450361608 3.168086986596 + 44.900 1771.74 5.000 9.793 7.704 0.000 -0.263 -0.022 80.534 46.860430922901 3.168079531489 + 45.000 1773.95 5.000 10.822 7.595 0.000 -0.284 -0.015 79.483 46.860411774932 3.168072092837 + 45.100 1776.11 5.000 11.655 7.147 0.000 -0.300 -0.003 78.417 46.860393109496 3.168064784138 + 45.200 1778.25 5.000 11.594 5.873 0.000 -0.303 -0.027 77.154 46.860374526237 3.168057497641 + 45.300 1780.35 5.000 12.218 5.849 0.000 -0.310 -0.040 75.967 46.860356389129 3.168050354968 + 45.400 1782.42 5.000 13.422 7.581 0.000 -0.316 -0.013 74.795 46.860333443175 3.168041187864 + 45.500 1784.45 5.000 14.432 7.337 0.000 -0.343 -0.007 73.430 46.860315885048 3.168034081133 + 45.600 1786.43 5.000 15.599 6.216 0.000 -0.371 -0.012 72.073 46.860298870116 3.168027156330 + 45.700 1788.39 5.000 17.315 5.673 0.000 -0.398 -0.015 70.572 46.860282051547 3.168020271393 + 45.800 1790.31 5.000 18.802 5.820 0.000 -0.430 -0.011 69.040 46.860265603349 3.168013473793 + 45.900 1792.16 5.000 19.587 6.595 0.000 -0.438 -0.020 67.345 46.860249703127 3.168006844872 + 46.000 1793.99 5.000 20.372 6.575 0.000 -0.456 -0.017 65.707 46.860234051241 3.168000268300 + 46.100 1795.77 5.000 20.600 5.987 0.000 -0.467 -0.038 64.002 46.860218810334 3.167993789252 + 46.200 1797.48 5.000 20.346 5.612 0.000 -0.462 -0.034 62.360 46.860204123918 3.167987460566 + 46.300 1799.17 5.000 19.787 5.577 0.000 -0.445 -0.036 60.718 46.860188549495 3.167980680054 + 46.400 1800.78 5.000 20.191 5.472 0.000 -0.440 -0.029 59.058 46.860172565752 3.167973658774 + 46.500 1802.36 5.000 20.578 4.640 0.000 -0.457 -0.010 57.278 46.860159078111 3.167967658506 + 46.600 1803.89 5.000 19.965 4.093 0.000 -0.469 -0.031 55.588 46.860145994920 3.167961770788 + 46.700 1805.36 5.000 19.894 3.057 0.000 -0.455 -0.035 53.871 46.860133439481 3.167956052391 + 46.800 1806.80 4.989 20.087 2.503 0.000 -0.460 -0.038 52.190 46.860121177216 3.167950387611 + 46.900 1808.19 4.778 20.185 1.805 0.000 -0.438 -0.035 50.431 46.860109354983 3.167944841670 + 47.000 1809.53 4.000 20.231 0.303 0.000 -0.484 -0.015 48.741 46.860098089372 3.167939486190 + 47.100 1810.82 4.000 20.442 -1.945 0.000 -0.472 -0.045 47.078 46.860087142726 3.167934195632 + 47.200 1812.07 4.000 19.684 -4.202 0.000 -0.420 -0.069 45.320 46.860076613470 3.167928999179 + 47.300 1813.26 4.000 18.685 -6.391 0.000 -0.438 -0.066 43.622 46.860064257763 3.167922742941 + 47.400 1814.40 4.000 17.470 -9.707 0.000 -0.423 -0.073 41.988 46.860054073459 3.167917450409 + 47.500 1815.49 4.000 16.054 -14.187 0.000 -0.434 -0.102 40.397 46.860044936358 3.167912570330 + 47.600 1816.56 4.000 14.889 -19.429 0.000 -0.357 -0.114 39.030 46.860036066656 3.167907679577 + 47.700 1817.59 4.000 14.685 -27.887 0.000 -0.357 -0.139 37.627 46.860027559735 3.167902802917 + 47.800 1818.57 4.000 13.805 -40.814 0.000 -0.368 -0.212 36.311 46.860019508146 3.167897937829 + 47.900 1819.52 3.821 11.622 -57.307 0.000 -0.349 -0.279 34.990 46.860011762359 3.167892915444 + 48.000 1820.44 3.144 9.550 -76.564 0.000 -0.321 -0.336 33.843 46.860004409538 3.167887711198 + 48.100 1821.33 3.000 8.295 -97.337 0.000 -0.294 -0.404 32.894 46.859997495408 3.167882307022 + 48.200 1822.20 3.000 6.937 -114.647 0.000 -0.293 -0.442 31.777 46.859990870782 3.167876524882 + 48.300 1823.05 3.000 3.986 -129.784 0.000 -0.251 -0.457 30.920 46.859986983534 3.167872801559 + 48.400 1823.88 3.000 3.384 -147.855 0.000 -0.243 -0.475 30.214 46.859982971883 3.167868641160 + 48.500 1824.69 3.000 3.115 -168.480 0.000 -0.259 -0.527 29.326 46.859977255530 3.167862132839 + 48.600 1825.47 3.000 2.863 -188.009 0.000 -0.273 -0.569 28.649 46.859972032570 3.167855404901 + 48.700 1826.24 3.000 1.594 -202.275 3.143 -0.283 -0.606 27.535 46.859967240819 3.167848287333 + 48.800 1826.99 3.000 0.000 -207.212 6.274 -0.250 -0.572 26.920 46.859962949003 3.167840843765 + 48.900 1827.71 3.000 0.000 -208.188 6.950 -0.204 -0.438 26.433 46.859959152997 3.167833194888 + 49.000 1828.43 3.000 0.000 -208.684 7.274 -0.147 -0.497 26.028 46.859955746586 3.167825227344 + 49.100 1829.14 3.000 0.000 -210.203 7.274 -0.152 -0.507 25.790 46.859952788630 3.167817041041 + 49.200 1829.83 2.798 0.000 -211.864 8.274 -0.141 -0.476 25.536 46.859950323324 3.167808748551 + 49.300 1830.52 2.225 0.000 -213.548 8.931 -0.140 -0.480 25.344 46.859948264909 3.167800125980 + 49.400 1831.20 2.000 0.000 -215.253 10.357 -0.138 -0.470 25.111 46.859946649403 3.167791326429 + 49.500 1831.87 2.000 0.000 -215.765 14.350 -0.160 -0.455 24.861 46.859945522854 3.167782728078 + 49.600 1832.54 2.000 0.000 -215.599 18.200 -0.129 -0.421 24.528 46.859944825442 3.167774045665 + 49.700 1833.20 2.000 0.000 -214.494 20.212 -0.120 -0.455 24.367 46.859944562492 3.167765461835 + 49.800 1833.86 2.000 0.000 -208.583 25.753 -0.063 -0.410 24.372 46.859944719468 3.167756797049 + 49.900 1834.53 2.000 0.000 -196.658 28.619 -0.055 -0.346 24.490 46.859945265401 3.167748160747 + 50.000 1835.19 2.000 0.000 -185.666 29.299 0.039 -0.297 24.622 46.859946146695 3.167739642792 + 50.100 1835.86 2.000 0.000 -178.162 30.157 0.043 -0.322 24.993 46.859947374222 3.167731046817 + 50.200 1836.54 2.000 0.000 -171.170 30.624 0.022 -0.378 25.336 46.859948985261 3.167722420638 + 50.300 1837.23 2.000 0.000 -161.602 30.624 0.085 -0.309 25.723 46.859950899054 3.167714187718 + 50.400 1837.94 2.000 0.000 -147.542 32.275 0.042 -0.290 26.088 46.859953051043 3.167706326881 + 50.500 1838.65 2.000 0.000 -132.958 36.249 0.088 -0.220 26.175 46.859955730167 3.167697710640 + 50.600 1839.37 2.000 0.000 -124.084 39.371 0.124 -0.266 26.874 46.859958689012 3.167689192493 + 50.700 1840.12 2.000 0.000 -117.772 40.049 0.148 -0.282 27.552 46.859962002376 3.167680581084 + 50.800 1840.87 2.000 0.000 -106.835 40.049 0.229 -0.222 28.150 46.859965628039 3.167672039637 + 50.900 1841.66 2.000 0.000 -96.103 40.049 0.206 -0.210 29.174 46.859969644221 3.167663383336 + 51.000 1842.47 2.000 0.000 -92.105 40.043 0.215 -0.209 30.046 46.859974003180 3.167654677701 + 51.100 1843.30 2.000 0.000 -91.664 39.725 0.199 -0.271 30.900 46.859978638359 3.167646029238 + 51.200 1844.16 2.000 0.000 -89.607 39.725 0.203 -0.222 31.680 46.859983628002 3.167637328309 + 51.300 1845.04 2.000 0.000 -86.269 39.399 0.212 -0.329 32.527 46.859989009200 3.167628586698 + 51.400 1845.93 2.000 0.000 -82.533 39.399 0.169 -0.223 33.313 46.859994723667 3.167619962823 + 51.500 1846.86 2.000 0.000 -75.874 39.399 0.210 -0.302 34.068 46.860000778590 3.167611485397 + 51.600 1847.81 2.000 0.000 -66.031 39.399 0.186 -0.183 34.849 46.860007194332 3.167603117878 + 51.700 1848.77 2.000 0.000 -57.282 39.399 0.203 -0.239 35.656 46.860013852259 3.167594928364 + 51.800 1849.76 2.000 0.000 -51.938 39.399 0.199 -0.152 36.449 46.860020845825 3.167586717909 + 51.900 1850.76 2.000 0.000 -48.831 39.049 0.167 -0.231 37.255 46.860028043054 3.167578638571 + 52.000 1851.79 2.000 0.000 -44.957 38.131 0.202 -0.145 37.892 46.860035606608 3.167570587401 + 52.100 1852.85 2.000 0.000 -39.266 37.399 0.173 -0.190 38.740 46.860043469372 3.167562701023 + 52.200 1853.90 2.000 0.000 -33.255 35.778 0.181 -0.144 39.380 46.860051518989 3.167555048562 + 52.300 1854.99 2.000 0.000 -29.620 35.424 0.095 -0.138 39.969 46.860059872013 3.167547431907 + 52.400 1856.09 2.000 0.000 -28.799 35.075 0.123 -0.165 40.522 46.860068330562 3.167539975767 + 52.500 1857.20 2.000 0.000 -28.992 35.075 0.090 -0.158 40.677 46.860076971519 3.167532626787 + 52.600 1858.33 2.000 0.000 -28.733 34.749 0.123 -0.223 41.187 46.860085892666 3.167525368237 + 52.700 1859.47 2.000 0.000 -28.029 34.610 0.108 -0.119 41.612 46.860095021533 3.167518327068 + 52.800 1860.61 2.000 0.000 -27.269 34.099 0.078 -0.222 41.986 46.860104260886 3.167511560576 + 52.900 1861.78 2.000 0.000 -26.464 33.938 0.098 -0.185 42.423 46.860113775587 3.167504892684 + 53.000 1862.94 2.000 0.000 -25.920 33.749 0.072 -0.168 42.752 46.860123353333 3.167498443726 + 53.100 1864.13 2.000 0.000 -25.424 33.749 0.089 -0.216 43.240 46.860133175962 3.167492124296 + 53.200 1865.32 2.000 0.000 -24.806 33.749 0.082 -0.132 43.528 46.860143151212 3.167486046304 + 53.300 1866.52 2.000 0.000 -23.078 33.749 0.053 -0.213 43.940 46.860153192918 3.167480280194 + 53.400 1867.73 2.000 0.000 -20.132 33.749 0.084 -0.195 44.238 46.860163406836 3.167474759747 + 53.500 1868.96 2.000 0.000 -17.796 33.749 0.062 -0.108 44.593 46.860173895501 3.167469412686 + 53.600 1870.18 2.000 0.000 -13.893 33.424 0.087 -0.191 45.107 46.860184439867 3.167464309752 + 53.700 1871.43 2.000 0.000 -10.216 30.742 0.122 -0.105 45.378 46.860195239037 3.167459298916 + 53.800 1872.69 2.000 0.000 -8.978 29.799 0.061 -0.066 45.639 46.860206156306 3.167454429253 + 53.900 1873.94 2.000 0.000 -8.784 29.449 0.029 -0.137 45.913 46.860217036145 3.167449769582 + 54.000 1875.22 2.000 0.000 -9.377 28.474 0.020 -0.051 46.215 46.860228071922 3.167445245323 + 54.100 1876.48 2.000 0.000 -9.129 28.407 0.013 -0.154 46.308 46.860239076099 3.167440945452 + 54.200 1877.75 2.000 0.000 -8.065 27.266 0.049 -0.192 46.443 46.860250299114 3.167436794664 + 54.300 1879.04 2.000 0.000 -7.322 26.474 -0.007 -0.063 46.411 46.860261613101 3.167432839997 + 54.400 1880.31 2.000 0.000 -5.508 25.464 0.002 -0.130 46.555 46.860272732625 3.167429152154 + 54.500 1881.59 2.000 0.000 -1.968 24.486 0.003 -0.126 46.650 46.860284073718 3.167425563495 + 54.600 1882.87 2.000 0.000 1.295 22.318 0.010 -0.017 46.490 46.860295426119 3.167422136016 + 54.700 1884.14 2.000 0.000 3.981 22.174 -0.029 -0.090 46.509 46.860306695766 3.167418876808 + 54.800 1885.42 2.000 0.000 5.323 22.174 -0.048 -0.068 46.395 46.860318083221 3.167415713132 + 54.900 1886.70 2.000 0.000 5.805 21.850 -0.032 -0.008 46.285 46.860329450529 3.167412663905 + 55.000 1887.96 2.000 0.000 6.070 21.850 -0.014 -0.070 46.249 46.860340695496 3.167409746275 + 55.100 1889.24 2.000 0.000 3.697 21.850 -0.008 -0.078 46.187 46.860352049342 3.167406886809 + 55.200 1890.50 2.000 0.000 2.144 21.499 -0.027 -0.007 46.079 46.860363283146 3.167404135848 + 55.300 1891.78 2.000 0.000 2.931 21.174 -0.026 -0.103 45.956 46.860374745756 3.167401421584 + 55.400 1893.05 2.000 0.000 2.966 20.850 -0.023 -0.063 45.836 46.860386097982 3.167398845614 + 55.500 1894.31 2.000 0.000 3.471 20.850 -0.029 -0.053 46.068 46.860397303346 3.167396411186 + 55.600 1895.57 2.000 0.000 5.197 20.850 -0.036 -0.099 45.887 46.860408589084 3.167394063392 + 55.700 1896.84 2.000 0.000 6.208 20.850 -0.003 -0.058 45.675 46.860419884199 3.167391821684 + 55.800 1898.09 2.000 0.000 7.149 20.850 -0.039 -0.029 45.816 46.860431076974 3.167389693831 + 55.900 1899.35 2.000 0.000 8.401 20.524 -0.046 -0.072 45.562 46.860442352650 3.167387628348 + 56.000 1900.61 2.000 0.000 9.522 20.174 -0.011 0.016 45.634 46.860453597026 3.167385653603 + 56.100 1901.85 2.000 0.000 11.102 20.174 -0.037 -0.048 45.565 46.860464726504 3.167383786703 + 56.200 1903.10 2.000 0.000 13.160 20.174 -0.044 -0.036 45.380 46.860475973501 3.167381964860 + 56.300 1904.34 2.000 0.000 14.376 20.174 -0.018 0.056 45.199 46.860488404172 3.167379999740 + 56.400 1905.58 2.000 0.000 15.145 20.174 -0.044 0.000 45.082 46.860500045605 3.167378189965 + 56.500 1906.82 2.000 0.000 15.765 20.174 -0.057 -0.009 45.116 46.860511177259 3.167376466493 + 56.600 1908.04 2.000 0.000 16.433 19.279 -0.026 0.053 44.759 46.860522184176 3.167374755828 + 56.700 1909.27 2.000 0.000 16.392 18.524 -0.062 -0.006 44.650 46.860533288948 3.167373024313 + 56.800 1910.50 2.000 0.000 16.244 18.524 -0.044 0.050 44.724 46.860544346819 3.167371291191 + 56.900 1911.72 2.000 0.000 15.774 18.200 -0.047 0.009 44.547 46.860555239778 3.167369572172 + 57.000 1912.94 2.000 0.000 14.809 18.200 -0.043 0.005 44.369 46.860566214422 3.167367840727 + 57.100 1914.16 2.000 0.000 14.618 16.874 -0.032 0.062 44.254 46.860577185567 3.167366131737 + 57.200 1915.36 2.000 0.000 14.825 16.874 -0.049 -0.022 44.702 46.860588034974 3.167364466621 + 57.300 1916.58 2.000 0.000 14.889 16.200 -0.058 0.007 44.114 46.860597693440 3.167362997562 + 57.400 1917.79 2.000 0.000 15.925 16.200 -0.042 0.048 44.402 46.860608122703 3.167361425272 + 57.500 1918.99 2.000 0.000 16.472 15.874 -0.058 0.003 44.183 46.860618878928 3.167359827333 + 57.600 1920.19 2.000 0.000 16.967 15.550 -0.064 0.048 43.775 46.860629732426 3.167358228763 + 57.700 1921.38 2.000 0.000 17.086 14.721 -0.038 0.041 44.268 46.860640463283 3.167356629306 + 57.800 1922.59 2.000 0.000 17.093 13.900 -0.051 0.008 43.819 46.860651267825 3.167354981617 + 57.900 1923.78 2.000 0.000 17.093 13.900 -0.071 0.076 43.764 46.860662030194 3.167353304990 + 58.000 1924.96 2.000 2.178 14.858 13.224 -0.103 -0.005 43.760 46.860672640869 3.167351621128 + 58.100 1926.15 2.000 3.881 10.057 13.224 -0.115 0.012 43.179 46.860683299158 3.167349919662 + 58.200 1927.33 2.000 3.691 5.493 13.224 -0.102 -0.051 43.434 46.860693893704 3.167348274603 + 58.300 1928.49 2.000 1.403 4.476 13.224 -0.096 -0.079 42.872 46.860704287936 3.167346749773 + 58.400 1929.65 2.000 0.121 5.215 13.224 -0.098 0.005 42.744 46.860714755986 3.167345296757 + 58.500 1930.81 2.000 0.000 3.484 13.574 -0.088 -0.088 42.399 46.860725237858 3.167343903294 + 58.600 1931.95 2.000 0.000 4.135 13.574 -0.079 -0.026 42.124 46.860735563224 3.167342607890 + 58.700 1933.11 2.000 0.000 6.157 13.574 -0.054 -0.047 42.244 46.860745953248 3.167341415403 + 58.800 1934.25 2.000 0.000 5.979 13.574 -0.057 -0.064 42.012 46.860756223948 3.167340347858 + 58.900 1935.39 2.000 0.000 5.707 13.574 -0.068 -0.007 41.931 46.860766583385 3.167339348647 + 59.000 1936.54 2.000 0.000 3.807 13.574 -0.072 -0.085 41.903 46.860776919587 3.167338404651 + 59.100 1937.67 2.000 0.000 -0.016 13.574 -0.068 -0.045 41.663 46.860787133005 3.167337538508 + 59.200 1938.81 2.000 0.000 -0.413 13.574 -0.058 -0.111 42.076 46.860797430078 3.167336777429 + 59.300 1939.95 2.000 0.000 -1.006 13.574 -0.058 -0.103 41.614 46.860807805336 3.167336150804 + 59.400 1941.07 2.000 0.000 -0.379 13.574 -0.046 -0.056 41.623 46.860817947650 3.167335670675 + 59.500 1942.20 2.000 0.000 -0.079 13.574 -0.059 -0.125 41.622 46.860828168693 3.167335313489 + 59.600 1943.33 2.000 0.000 -0.087 13.574 -0.060 -0.023 41.370 46.860838378762 3.167335104913 + 59.700 1944.44 2.000 0.000 0.802 13.574 -0.054 -0.118 41.683 46.860848478865 3.167335052371 + 59.800 1945.56 2.000 0.000 3.150 13.574 -0.066 -0.039 41.096 46.860858655183 3.167335123971 + 59.900 1946.67 2.000 0.000 9.302 13.574 -0.044 -0.039 41.792 46.860868687034 3.167335269165 + 60.000 1947.78 2.000 0.000 11.160 13.574 -0.057 -0.028 41.117 46.860878777398 3.167335471595 + 60.100 1948.89 2.000 0.000 11.569 13.574 -0.054 0.043 41.413 46.860888841762 3.167335731272 + 60.200 1949.99 2.000 0.000 8.759 13.574 -0.075 -0.060 40.999 46.860898788933 3.167336034973 + 60.300 1951.10 2.000 0.000 4.148 13.574 -0.060 -0.002 40.920 46.860908733328 3.167336372248 + 60.400 1952.20 2.000 0.000 3.034 13.574 -0.063 -0.101 40.876 46.860918687235 3.167336756960 + 60.500 1953.28 2.000 0.000 2.277 13.574 -0.066 -0.017 40.310 46.860928519109 3.167337208189 + 60.600 1954.37 2.000 0.000 2.774 13.574 -0.042 -0.071 40.800 46.860938394290 3.167337750050 + 60.700 1955.46 2.000 0.000 3.480 13.574 -0.064 -0.058 39.927 46.860948221778 3.167338384547 + 60.800 1956.54 2.000 0.000 5.209 13.574 -0.050 -0.042 40.249 46.860957924775 3.167339091461 + 60.900 1957.62 2.000 0.000 5.969 13.574 -0.067 -0.062 39.817 46.860967705669 3.167339865856 + 61.000 1958.69 2.000 0.000 10.306 13.574 -0.049 0.021 39.835 46.860977346715 3.167340706685 + 61.100 1959.76 2.000 0.000 16.693 13.224 -0.067 -0.039 39.554 46.860987022418 3.167341646833 + 61.200 1960.83 2.000 0.000 25.519 11.590 -0.053 0.105 39.547 46.860996647460 3.167342637672 + 61.300 1961.88 2.000 0.000 34.113 7.519 -0.075 0.174 39.275 46.861006246559 3.167343576923 + 61.400 1962.94 2.000 0.000 38.729 7.425 -0.106 0.214 38.633 46.861015799402 3.167344355100 + 61.500 1964.00 2.000 0.000 35.708 7.425 -0.133 0.146 38.066 46.861025272047 3.167344884789 + 61.600 1965.03 2.000 0.000 34.345 7.425 -0.090 0.152 37.673 46.861034574452 3.167345139006 + 61.700 1966.06 2.000 0.000 31.597 7.425 -0.103 0.099 37.480 46.861043924651 3.167345182455 + 61.800 1967.09 2.000 0.000 29.156 7.425 -0.114 0.141 36.954 46.861053206138 3.167345118167 + 61.900 1968.10 2.000 0.000 31.299 7.425 -0.155 0.027 36.797 46.861062269741 3.167344981278 + 62.000 1969.10 2.000 0.000 29.919 2.515 -0.081 0.084 36.424 46.861071294997 3.167344708373 + 62.100 1970.08 2.000 0.000 25.032 0.324 -0.112 0.081 35.920 46.861080167291 3.167344274889 + 62.200 1971.08 2.000 0.000 16.389 0.650 -0.147 -0.034 35.348 46.861089077315 3.167343770721 + 62.300 1972.05 2.000 0.000 9.393 0.650 -0.176 -0.004 34.921 46.861097774068 3.167343293188 + 62.400 1973.00 2.000 0.000 5.304 0.155 -0.148 -0.027 34.453 46.861106292793 3.167342828704 + 62.500 1973.94 2.000 0.000 2.456 0.000 -0.187 -0.068 33.838 46.861114750999 3.167342340959 + 62.600 1974.87 2.000 0.000 -3.076 0.000 -0.154 -0.002 33.260 46.861123113077 3.167341903100 + 62.700 1975.78 2.000 0.000 -10.570 0.000 -0.210 -0.076 32.317 46.861131289738 3.167341578951 + 62.800 1976.68 2.000 0.130 -19.689 0.000 -0.150 -0.123 31.912 46.861139394316 3.167341349392 + 62.900 1977.57 2.000 1.228 -26.637 0.000 -0.198 -0.126 31.458 46.861147315894 3.167341159152 + 63.000 1978.42 2.000 3.287 -26.875 0.000 -0.172 -0.114 30.496 46.861155003924 3.167341061374 + 63.100 1979.27 2.000 3.234 -25.068 0.000 -0.189 -0.131 30.012 46.861162643054 3.167341179538 + 63.200 1980.09 2.000 3.866 -17.346 0.000 -0.256 -0.204 29.334 46.861170061441 3.167341571793 + 63.300 1980.90 2.000 4.106 -8.032 0.000 -0.149 -0.082 28.873 46.861177394552 3.167342150022 + 63.400 1981.69 2.000 3.711 -3.459 0.000 -0.242 -0.031 28.253 46.861184441623 3.167342773335 + 63.500 1982.45 2.000 4.294 -0.223 0.000 -0.223 -0.071 27.492 46.861191235131 3.167343429463 + 63.600 1983.20 2.000 4.678 5.124 0.000 -0.211 -0.021 26.840 46.861197930541 3.167344168108 + 63.700 1983.94 2.000 4.766 9.060 0.000 -0.201 0.003 25.941 46.861204461861 3.167344926729 + 63.800 1984.65 2.000 4.545 9.840 0.000 -0.264 -0.006 25.231 46.861210778303 3.167345598752 + 63.900 1985.34 2.000 3.174 9.600 0.000 -0.191 -0.013 24.523 46.861217006235 3.167346221026 + 64.000 1986.02 2.000 0.551 10.820 0.000 -0.165 -0.026 24.121 46.861223080969 3.167346906454 + 64.100 1986.68 2.000 0.000 10.960 0.000 -0.119 -0.057 23.908 46.861228956543 3.167347692640 + 64.200 1987.33 2.000 0.000 10.771 0.000 -0.156 0.012 23.380 46.861234780938 3.167348486304 + 64.300 1987.97 2.000 0.000 10.053 0.000 -0.097 0.011 23.068 46.861240396045 3.167349175288 + 64.400 1988.60 2.000 0.000 9.872 0.000 -0.124 -0.035 22.742 46.861246035276 3.167349833747 + 64.500 1989.22 2.000 0.000 9.740 0.000 -0.144 -0.052 22.286 46.861251602671 3.167350541320 + 64.600 1989.83 2.000 0.000 10.356 0.000 -0.121 -0.007 21.728 46.861257063307 3.167351275645 + 64.700 1990.43 2.000 0.000 10.136 0.000 -0.114 -0.004 21.752 46.861262499273 3.167351990826 + 64.800 1991.03 2.000 0.000 9.625 0.000 -0.113 -0.026 21.421 46.861267819065 3.167352662188 + 64.900 1991.61 2.000 0.000 9.471 0.000 -0.124 -0.013 20.897 46.861272975112 3.167353306181 + 65.000 1992.18 2.000 0.000 9.229 0.000 -0.095 -0.049 20.767 46.861278095165 3.167353965427 + 65.100 1992.74 2.000 0.000 8.956 0.000 -0.096 -0.047 20.410 46.861283136758 3.167354668190 + 65.200 1993.29 2.000 0.000 8.267 0.000 -0.102 0.004 19.998 46.861288279409 3.167355436485 + 65.300 1993.84 2.000 0.000 8.584 0.000 -0.115 -0.021 19.665 46.861293929752 3.167356293194 + 65.400 1994.37 2.000 0.000 10.047 0.000 -0.105 -0.059 19.496 46.861298681013 3.167357015228 + 65.500 1994.89 2.000 0.000 11.923 0.000 -0.094 -0.011 18.863 46.861303368790 3.167357736815 + 65.600 1995.41 2.000 0.000 16.443 0.000 -0.094 0.030 18.496 46.861307972572 3.167358440276 + 65.700 1995.92 2.000 0.000 24.195 0.000 -0.126 0.009 18.167 46.861312478586 3.167359106670 + 65.800 1996.42 2.000 0.000 25.581 0.000 -0.100 -0.022 18.195 46.861316970689 3.167359752254 + 65.900 1996.91 2.000 0.000 21.971 0.000 -0.109 -0.003 17.708 46.861321370261 3.167360365124 + 66.000 1997.39 2.000 0.000 19.633 0.000 -0.133 0.005 17.147 46.861325631819 3.167360945112 + 66.100 1997.86 2.000 0.000 18.830 0.000 -0.118 -0.006 16.883 46.861329853023 3.167361526290 + 66.200 1998.32 2.000 0.000 18.539 0.000 -0.111 -0.051 16.709 46.861335217708 3.167362300396 + 66.300 1998.77 2.000 0.000 18.465 0.000 -0.086 -0.045 16.510 46.861339616702 3.167362923039 + 66.400 1999.21 2.000 0.000 17.936 0.000 -0.107 0.034 15.862 46.861343553948 3.167363427418 + 66.500 1999.63 2.000 0.000 17.365 0.000 -0.117 0.005 15.499 46.861347355844 3.167363877061 + 66.600 2000.05 2.000 0.000 17.171 0.000 -0.124 -0.055 15.263 46.861351120629 3.167364322396 + 66.700 2000.47 2.000 0.000 16.626 0.000 -0.118 -0.025 15.073 46.861354829927 3.167364783175 + 66.800 2000.87 2.000 0.000 16.281 0.000 -0.099 -0.052 14.808 46.861358432065 3.167365244227 + 66.900 2001.27 2.000 0.000 16.135 0.000 -0.105 -0.005 14.476 46.861361979205 3.167365700413 + 67.000 2001.65 2.000 0.000 16.124 0.000 -0.118 -0.025 14.183 46.861365447844 3.167366149057 + 67.100 2002.03 2.000 0.000 16.020 0.000 -0.098 -0.051 13.889 46.861368829452 3.167366602798 + 67.200 2002.40 2.000 0.000 15.840 0.000 -0.096 0.010 13.738 46.861372982533 3.167367170734 + 67.300 2002.77 2.000 0.000 15.374 0.000 -0.106 -0.056 13.565 46.861376263113 3.167367593888 + 67.400 2003.12 2.000 0.000 14.155 0.000 -0.092 0.022 13.018 46.861379447092 3.167367979143 + 67.500 2003.48 2.000 0.000 13.216 0.000 -0.103 -0.036 12.674 46.861382606560 3.167368368541 + 67.600 2003.82 1.060 0.000 12.854 0.000 -0.094 -0.038 12.595 46.861385677420 3.167368783118 + 67.700 2004.16 0.000 0.000 10.878 0.000 -0.079 -0.053 12.511 46.861388707928 3.167369214477 + 67.800 2004.49 0.000 0.000 7.816 0.000 -0.073 -0.017 12.502 46.861391655525 3.167369635027 + 67.900 2004.81 0.000 0.000 6.687 0.000 -0.128 -0.050 11.990 46.861394497437 3.167370027428 + 68.000 2005.13 0.000 0.000 7.290 0.000 -0.099 0.005 11.501 46.861397312654 3.167370408340 + 68.100 2005.44 0.000 0.000 7.923 0.000 -0.096 -0.069 11.329 46.861400354826 3.167370830123 + 68.200 2005.73 0.000 0.000 7.787 0.000 -0.084 -0.020 11.113 46.861403621256 3.167371313453 + 68.300 2006.02 0.000 0.000 7.787 0.000 -0.099 -0.058 10.947 46.861406246205 3.167371698622 + 68.400 2006.31 0.000 0.000 8.180 0.000 -0.085 -0.029 10.835 46.861408817743 3.167372048986 + 68.500 2006.59 0.000 0.000 7.960 0.000 -0.077 0.002 10.606 46.861411307767 3.167372387995 + 68.600 2006.86 0.000 0.000 7.756 0.000 -0.098 -0.045 10.390 46.861413756489 3.167372729425 + 68.700 2007.12 0.000 0.000 8.223 0.000 -0.092 -0.011 10.036 46.861416137044 3.167373064734 + 68.800 2007.39 0.000 0.000 8.622 0.000 -0.098 -0.069 9.766 46.861418507974 3.167373424446 + 68.900 2007.64 0.000 0.000 8.567 0.000 -0.094 -0.039 9.252 46.861420811974 3.167373828939 + 69.000 2007.89 0.000 0.000 8.575 0.000 -0.089 -0.067 9.191 46.861423013463 3.167374233407 + 69.100 2008.13 0.000 0.000 8.557 0.000 -0.085 -0.016 9.190 46.861425495332 3.167374656097 + 69.200 2008.37 0.000 0.000 8.600 0.000 -0.101 -0.018 8.837 46.861427720971 3.167374987756 + 69.300 2008.59 0.000 0.000 10.592 0.000 -0.071 -0.032 8.787 46.861429747464 3.167375230963 + 69.400 2008.82 0.000 0.000 16.510 0.000 -0.075 0.028 8.254 46.861431723663 3.167375415093 + 69.500 2009.03 0.000 0.000 20.263 0.000 -0.080 0.026 8.158 46.861433638520 3.167375611984 + 69.600 2009.24 0.000 0.000 19.869 0.000 -0.097 -0.066 7.776 46.861435479966 3.167375889747 + 69.700 2009.44 0.000 0.000 19.401 0.000 -0.083 -0.077 7.542 46.861437285400 3.167376236955 + 69.800 2009.64 0.000 0.000 19.601 0.000 -0.100 -0.033 7.378 46.861439002279 3.167376550380 + 69.900 2009.82 0.000 0.000 20.042 0.000 -0.098 -0.033 7.060 46.861440645822 3.167376778470 + 70.000 2010.00 0.000 0.000 20.281 0.000 -0.097 -0.004 6.929 46.861442212453 3.167376966709 + 70.100 2010.17 0.000 0.000 20.175 0.000 -0.082 0.003 6.760 46.861442985614 3.167377075968 + 70.200 2010.34 0.000 0.000 19.962 0.000 -0.085 -0.054 6.382 46.861443627865 3.167377180903 + 70.300 2010.51 0.000 0.000 19.583 0.000 -0.082 -0.066 6.166 46.861444699115 3.167377369949 + 70.400 2010.67 0.000 0.000 18.120 0.000 -0.083 0.048 5.947 46.861446148880 3.167377602694 + 70.500 2010.83 0.000 0.000 14.994 0.000 -0.085 -0.019 5.815 46.861447561438 3.167377745973 + 70.600 2010.98 0.000 0.000 11.909 0.000 -0.108 -0.025 5.487 46.861448899770 3.167377847566 + 70.700 2011.12 0.000 0.000 11.593 0.000 -0.090 -0.067 5.202 46.861450140391 3.167377996080 + 70.800 2011.26 0.000 0.000 12.176 0.000 -0.093 -0.024 4.884 46.861451326421 3.167378200656 + 70.900 2011.39 0.000 0.000 11.847 0.000 -0.083 0.016 4.636 46.861452460488 3.167378387525 + 71.000 2011.51 0.000 0.000 11.246 0.000 -0.086 -0.008 4.494 46.861453556736 3.167378515432 + 71.100 2011.63 0.000 0.000 11.098 0.000 -0.078 -0.045 4.268 46.861454589450 3.167378602591 + 71.200 2011.74 0.000 0.000 11.112 0.000 -0.075 -0.029 4.011 46.861455827624 3.167378724879 + 71.300 2011.84 0.000 0.000 10.777 0.000 -0.077 -0.024 3.863 46.861456788687 3.167378845258 + 71.400 2011.94 0.000 0.000 9.595 0.000 -0.087 -0.022 3.670 46.861457638316 3.167378958275 + 71.500 2012.03 0.000 0.000 7.679 0.000 -0.084 -0.017 3.454 46.861458411419 3.167379066696 + 71.600 2012.12 0.000 0.000 6.834 0.000 -0.085 -0.032 3.281 46.861459124385 3.167379161407 + 71.700 2012.19 0.000 0.000 6.696 0.000 -0.085 -0.028 3.006 46.861459766251 3.167379226049 + 71.800 2012.27 0.000 0.000 6.591 0.000 -0.098 -0.008 2.737 46.861460327621 3.167379260940 + 71.900 2012.33 0.000 0.000 6.217 0.000 -0.085 -0.045 2.482 46.861460825796 3.167379304790 + 72.000 2012.39 0.000 0.000 6.070 0.000 -0.070 -0.040 2.272 46.861461273930 3.167379376634 + 72.100 2012.44 0.000 0.000 6.058 0.000 -0.071 -0.017 2.073 46.861461702185 3.167379469521 + 72.200 2012.49 0.000 0.000 6.058 0.000 -0.082 -0.009 1.852 46.861462008689 3.167379532399 + 72.300 2012.53 0.000 0.000 6.058 0.000 -0.086 -0.026 1.687 46.861462325811 3.167379583594 + 72.400 2012.56 0.000 0.000 6.093 0.000 -0.087 -0.029 1.485 46.861462599067 3.167379605319 + 72.500 2012.59 0.000 0.000 6.103 0.000 -0.093 -0.020 1.229 46.861462797660 3.167379605234 + 72.600 2012.61 0.000 0.000 6.139 0.000 -0.096 -0.021 1.037 46.861462940647 3.167379605910 + 72.700 2012.63 0.000 0.000 6.148 0.000 -0.097 -0.022 0.900 46.861463033157 3.167379604040 + 72.800 2012.63 0.000 0.000 6.148 0.000 -0.091 -0.026 0.749 46.861463061970 3.167379576317 + 72.900 2012.63 0.000 0.000 6.148 0.000 -0.048 -0.023 0.716 46.861463033509 3.167379517752 + 73.000 2012.64 0.000 0.000 6.148 0.000 -0.024 -0.024 0.446 46.861462976088 3.167379458914 + 73.100 2012.64 0.000 0.000 6.148 0.000 -0.016 -0.023 0.428 46.861462922318 3.167379433011 + 73.200 2012.64 0.000 0.000 6.148 0.000 -0.007 -0.023 0.228 46.861462885845 3.167379431029 + 73.300 2012.64 0.000 0.000 6.148 0.000 -0.004 -0.021 0.207 46.861462877843 3.167379410639 + 73.400 2012.64 0.000 0.000 6.148 0.000 0.000 -0.022 0.158 46.861462907469 3.167379344435 + 73.500 2012.64 0.000 0.000 6.148 0.000 -0.009 -0.022 0.172 46.861462963000 3.167379249512 + 73.600 2012.64 0.000 0.000 4.979 0.000 -0.026 -0.026 0.163 46.861463003373 3.167379183467 + 73.700 2012.64 0.000 0.000 2.543 0.000 -0.016 -0.023 0.134 46.861463011795 3.167379168867 + 73.800 2012.64 0.000 0.000 0.397 0.000 -0.017 -0.025 0.118 46.861463006932 3.167379176885 + 73.900 2012.64 0.000 0.000 -0.660 0.000 -0.018 -0.024 0.096 46.861463004449 3.167379181418 + 74.000 2012.64 0.000 0.000 -0.830 0.000 -0.009 -0.025 0.083 46.861463004664 3.167379181072 + 74.100 2012.64 0.000 0.000 -0.838 0.000 -0.022 -0.025 0.078 46.861463004884 3.167379180355 + 74.200 2012.64 0.000 0.000 -0.838 0.000 -0.013 -0.023 0.066 46.861463004927 3.167379181042 + 74.300 2012.64 0.000 0.000 -0.838 0.000 -0.019 -0.026 0.002 46.861463004469 3.167379184581 + 74.400 2012.64 0.000 0.000 -0.838 0.000 -0.016 -0.022 0.000 46.861463002443 3.167379185354 + 74.500 2012.64 0.000 0.000 -0.838 0.000 -0.018 -0.023 0.000 46.861463004430 3.167379160829 + 74.600 2012.64 0.000 0.000 -0.838 0.000 -0.017 -0.023 0.000 46.861463027338 3.167379078833 + 74.700 2012.64 0.000 0.000 -0.838 0.000 -0.016 -0.019 0.000 46.861463090045 3.167378926155 + 74.800 2012.64 0.000 0.000 -0.838 0.000 -0.017 -0.024 0.000 46.861463188924 3.167378748119 + 74.900 2012.64 0.000 0.000 -0.838 0.000 -0.017 -0.024 0.000 46.861463299021 3.167378608723 + 75.000 2012.64 0.000 0.000 -0.838 0.000 -0.019 -0.024 0.000 46.861463399156 3.167378533267 + 75.100 2012.64 0.000 0.000 -0.838 0.000 -0.016 -0.026 0.000 46.861463485501 3.167378488008 + 75.200 2012.64 0.000 0.000 -0.838 0.000 -0.018 -0.024 0.000 46.861463560387 3.167378433478 + 75.300 2012.64 0.000 0.000 -0.838 0.000 -0.015 -0.023 0.000 46.861463639461 3.167378351826 + 75.400 2012.64 0.000 0.000 -0.838 0.000 -0.015 -0.024 0.000 46.861463727250 3.167378260679 + 75.500 2012.64 0.000 0.000 -0.838 0.000 -0.020 -0.022 0.000 46.861463818836 3.167378181955 + 75.600 2012.64 0.000 0.000 -0.838 0.000 -0.018 -0.022 0.000 46.861463904568 3.167378127574 + 75.700 2012.64 0.000 0.000 -0.838 0.000 -0.016 -0.024 0.000 46.861463976369 3.167378100258 + 75.800 2012.64 0.000 0.000 -0.838 0.000 -0.018 -0.025 0.000 46.861464040658 3.167378090792 + 75.900 2012.64 0.000 0.000 -0.838 0.000 -0.016 -0.026 0.000 46.861464098914 3.167378067377 + 76.000 2012.64 0.000 0.000 -0.838 0.000 -0.017 -0.023 0.000 46.861464153002 3.167378020962 + 76.100 2012.64 0.000 0.000 -0.836 0.000 -0.015 -0.025 0.000 46.861464203328 3.167377978135 + 76.200 2012.64 0.000 0.000 -0.761 0.000 -0.020 -0.022 0.000 46.861464260024 3.167377964618 + 76.300 2012.64 0.000 0.000 -0.748 0.000 -0.017 -0.022 0.000 46.861464325310 3.167377976185 + 76.400 2012.64 0.000 0.000 -0.748 0.000 -0.018 -0.024 0.000 46.861464386857 3.167378013456 + 76.500 2012.64 0.000 0.000 -0.748 0.000 -0.017 -0.024 0.000 46.861464434512 3.167378068887 + 76.600 2012.64 0.000 0.000 -0.748 0.000 -0.018 -0.025 0.000 46.861464473642 3.167378114569 + 76.700 2012.64 0.000 0.000 -0.748 0.000 -0.018 -0.023 0.000 46.861464515984 3.167378128891 + 76.800 2012.64 0.000 0.000 -0.748 0.000 -0.014 -0.025 0.000 46.861464558979 3.167378126339 + 76.900 2012.64 0.000 0.000 -0.748 0.000 -0.017 -0.023 0.000 46.861464584226 3.167378124573 + 77.000 2012.64 0.000 0.000 -0.748 0.000 -0.017 -0.024 0.000 46.861464587719 3.167378125651 + 77.100 2012.64 0.000 0.000 -0.755 0.000 -0.018 -0.024 0.000 46.861464583436 3.167378125595 + 77.200 2012.64 0.000 0.000 -0.858 0.000 -0.018 -0.023 0.000 46.861464581776 3.167378125366 + 77.300 2012.64 0.000 0.000 -1.126 0.000 -0.016 -0.023 0.000 46.861464582140 3.167378125396 + 77.400 2012.64 0.000 0.000 -1.185 0.000 -0.017 -0.022 0.000 46.861464582226 3.167378125406 + 77.500 2012.64 0.000 0.000 -1.191 0.000 -0.016 -0.023 0.000 46.861464582221 3.167378125406 + 77.600 2012.64 0.000 0.000 -1.191 0.000 -0.018 -0.022 0.000 46.861464582221 3.167378125406 + 77.700 2012.64 0.000 0.000 -1.191 0.000 -0.018 -0.023 0.000 46.861464582226 3.167378125232 + 77.800 2012.64 0.000 0.000 -1.191 0.000 -0.017 -0.023 0.000 46.861464582198 3.167378126239 + 77.900 2012.64 0.000 0.000 -1.191 0.000 -0.016 -0.023 0.000 46.861464582231 3.167378123960 + 78.000 2012.64 0.000 0.000 -1.191 0.000 -0.019 -0.023 0.000 46.861464582594 3.167378116401 + 78.100 2012.64 0.000 0.000 -1.191 0.000 -0.016 -0.024 0.000 46.861464582147 3.167378121391 + 78.200 2012.64 0.000 0.000 -1.191 0.000 -0.016 -0.021 0.000 46.861464578969 3.167378181704 + 78.300 2012.64 0.000 0.000 -1.191 0.000 -0.017 -0.023 0.000 46.861464577140 3.167378326933 + 78.400 2012.64 0.000 0.000 -1.185 0.000 -0.017 -0.025 0.000 46.861464589298 3.167378544811 + 78.500 2012.64 0.000 0.000 -1.151 0.000 -0.017 -0.023 0.000 46.861464621943 3.167378789392 + 78.600 2012.64 0.000 0.000 -1.125 0.000 -0.015 -0.023 0.000 46.861464661472 3.167379011251 + 78.700 2012.64 0.000 0.000 -0.965 0.000 -0.017 -0.024 0.000 46.861464697760 3.167379185971 + 78.800 2012.64 0.000 0.000 -0.682 0.000 -0.015 -0.024 0.000 46.861464733153 3.167379320237 + 78.900 2012.64 0.000 0.000 -0.604 0.000 -0.019 -0.023 0.000 46.861464774183 3.167379442974 + 79.000 2012.64 0.000 0.000 -0.528 0.000 -0.018 -0.026 0.000 46.861464830630 3.167379574821 + 79.100 2012.64 0.000 0.000 -0.490 0.000 -0.019 -0.025 0.000 46.861464897439 3.167379711579 + 79.200 2012.64 0.000 0.000 -0.461 0.000 -0.015 -0.024 0.000 46.861464950961 3.167379843984 + 79.300 2012.64 0.000 0.000 -0.313 0.000 -0.016 -0.025 0.000 46.861464975095 3.167379973155 + 79.400 2012.64 0.000 0.000 -0.098 0.000 -0.016 -0.024 0.000 46.861464986028 3.167380113974 + 79.500 2012.64 0.000 0.000 -0.049 0.000 -0.017 -0.024 0.000 46.861464999726 3.167380279570 + 79.600 2012.64 0.000 0.000 -0.049 0.000 -0.016 -0.023 0.000 46.861465015926 3.167380464142 + 79.700 2012.64 0.000 0.000 -0.049 0.000 -0.016 -0.026 0.000 46.861465032359 3.167380647536 + 79.800 2012.64 0.000 0.000 -0.049 0.000 -0.015 -0.024 0.000 46.861465050115 3.167380818681 + 79.900 2012.64 0.000 0.000 -0.049 0.000 -0.019 -0.024 0.000 46.861465062232 3.167380956543 + 80.000 2012.64 0.000 0.000 -0.049 0.000 -0.017 -0.023 0.000 46.861465063370 3.167381025539 + 80.100 2012.64 0.000 0.000 -0.049 0.000 -0.017 -0.021 0.000 46.861465060446 3.167381030221 + 80.200 2012.64 0.000 0.000 -0.038 0.000 -0.017 -0.023 0.000 46.861465059531 3.167381016373 + 80.300 2012.64 0.000 0.000 -0.009 0.000 -0.016 -0.022 0.000 46.861465060017 3.167381011708 + 80.400 2012.64 0.000 0.000 -0.004 0.000 -0.018 -0.024 0.000 46.861465059993 3.167381013225 + 80.500 2012.64 0.000 0.000 -0.004 0.000 -0.017 -0.022 0.000 46.861465059991 3.167381013283 + 80.600 2012.64 0.000 0.000 -0.004 0.000 -0.019 -0.024 0.000 46.861465059991 3.167381013283 + 80.700 2012.64 0.000 0.000 -0.004 0.000 -0.017 -0.024 0.000 46.861465059991 3.167381013283 + 80.800 2012.64 0.000 0.000 -0.004 0.000 -0.018 -0.025 0.000 46.861465059991 3.167381013283 + 80.900 2012.64 0.000 0.000 -0.004 0.000 -0.016 -0.023 0.000 46.861465059991 3.167381013283 + 81.000 2012.64 0.000 0.000 -0.004 0.000 -0.017 -0.023 0.000 46.861465059998 3.167381013283 + 81.100 2012.64 0.000 0.000 -0.004 0.000 -0.017 -0.025 0.000 46.861465060153 3.167381013317 + 81.200 2012.64 0.000 0.000 -0.004 0.000 -0.018 -0.023 0.000 46.861465059147 3.167381013465 + 81.300 2012.64 0.000 0.000 -0.004 0.000 -0.016 -0.023 0.000 46.861465057990 3.167381011663 + 81.400 2012.64 0.000 0.000 -0.004 0.000 -0.016 -0.025 0.000 46.861465063496 3.167381009254 + 81.500 2012.64 0.000 0.000 -0.004 0.000 -0.017 -0.024 0.000 46.861465080767 3.167381019667 + 81.600 2012.64 0.000 0.000 -0.004 0.000 -0.017 -0.025 0.000 46.861465097827 3.167381068307 + 81.700 2012.64 0.000 0.000 -0.004 0.000 -0.016 -0.026 0.000 46.861465091976 3.167381167095 + 81.800 2012.64 0.000 0.000 -0.004 0.000 -0.017 -0.025 0.000 46.861465065450 3.167381299215 + 81.900 2012.64 0.000 0.000 -0.004 0.000 -0.019 -0.022 0.000 46.861465043292 3.167381437171 + 82.000 2012.64 0.000 0.000 -0.004 0.000 -0.017 -0.021 0.000 46.861465027621 3.167381567843 + 82.100 2012.64 0.000 0.000 -0.004 0.000 -0.014 -0.023 0.000 46.861465003619 3.167381681749 + 82.200 2012.64 0.000 0.000 -0.004 0.000 -0.018 -0.024 0.000 46.861464982442 3.167381765921 + 82.300 2012.64 0.000 0.000 -0.004 0.000 -0.019 -0.022 0.000 46.861464985174 3.167381843256 + 82.400 2012.64 0.000 0.000 -0.004 0.000 -0.015 -0.022 0.000 46.861465006349 3.167381946804 + 82.500 2012.64 0.000 0.000 -0.004 0.000 -0.017 -0.021 0.000 46.861465019694 3.167382080428 + 82.600 2012.64 0.000 0.000 -0.004 0.000 -0.016 -0.024 0.000 46.861465017793 3.167382208771 + 82.700 2012.64 0.000 0.000 -0.004 0.000 -0.019 -0.025 0.000 46.861465012375 3.167382288724 + 82.800 2012.64 0.000 0.000 -0.004 0.000 -0.017 -0.025 0.000 46.861465010934 3.167382312798 + 82.900 2012.64 0.000 0.000 -0.004 0.000 -0.017 -0.024 0.000 46.861465011460 3.167382307774 + 83.000 2012.64 0.000 0.000 -0.004 0.000 -0.019 -0.023 0.000 46.861465011610 3.167382301096 + 83.100 2012.64 0.000 0.000 -0.004 0.000 -0.016 -0.023 0.000 46.861465011634 3.167382300243 + 83.200 2012.64 0.000 0.000 -0.004 0.000 -0.016 -0.022 0.000 46.861465011613 3.167382300990 + 83.300 2012.64 0.000 0.000 -0.004 0.000 -0.016 -0.024 0.000 46.861465011615 3.167382300927 + 83.400 2012.64 0.000 0.000 -0.004 0.000 -0.018 -0.024 0.000 46.861465011615 3.167382300927 + 83.500 2012.64 0.000 0.000 -0.004 0.000 -0.019 -0.024 0.000 46.861465011615 3.167382300927 + 83.600 2012.64 0.000 0.000 -0.004 0.000 -0.018 -0.023 0.000 46.861465011615 3.167382300927 + 83.700 2012.64 0.000 0.000 -0.004 0.000 -0.019 -0.022 0.000 46.861465011615 3.167382300927 + 83.800 2012.64 0.000 0.000 -0.004 0.000 -0.017 -0.023 0.000 46.861465011558 3.167382301029 + 83.900 2012.64 0.000 0.000 -0.004 0.000 -0.017 -0.023 0.000 46.861465011536 3.167382301267 + 84.000 2012.64 0.000 0.000 -0.004 0.000 -0.018 -0.022 0.000 46.861465012785 3.167382298921 + 84.100 2012.64 0.000 0.000 -0.004 0.000 -0.017 -0.024 0.000 46.861465012756 3.167382294925 + 84.200 2012.64 0.000 0.000 -0.004 0.000 -0.017 -0.022 0.000 46.861465006898 3.167382304893 + 84.300 2012.64 0.000 0.000 -0.004 0.000 -0.018 -0.021 0.000 46.861464992493 3.167382356410 + 84.400 2012.64 0.000 0.000 -0.004 0.000 -0.018 -0.024 0.000 46.861464974082 3.167382460351 + 84.500 2012.64 0.000 0.000 -0.004 0.000 -0.016 -0.023 0.000 46.861464956487 3.167382600807 + 84.600 2012.64 0.000 0.000 -0.004 0.000 -0.017 -0.023 0.000 46.861464945881 3.167382739848 + 84.700 2012.64 0.000 0.000 -0.004 0.000 -0.016 -0.024 0.000 46.861464944391 3.167382855312 + 84.800 2012.64 0.000 0.000 -0.004 0.000 -0.017 -0.022 0.000 46.861464949334 3.167382942270 + 84.900 2012.64 0.000 0.000 -0.004 0.000 -0.017 -0.022 0.000 46.861464958171 3.167383004193 + 85.000 2012.64 0.000 0.000 -0.004 0.000 -0.017 -0.022 0.000 46.861464969161 3.167383041319 + 85.100 2012.64 0.000 0.000 -0.004 0.000 -0.016 -0.022 0.000 46.861464976923 3.167383073514 + 85.200 2012.64 0.000 0.000 -0.004 0.000 -0.017 -0.021 0.000 46.861464975473 3.167383146524 + 85.300 2012.64 0.000 0.000 -0.004 0.000 -0.016 -0.023 0.000 46.861464974173 3.167383295451 + 85.400 2012.64 0.000 0.000 -0.004 0.000 -0.017 -0.023 0.000 46.861464986608 3.167383471450 + 85.500 2012.64 0.000 0.000 -0.004 0.000 -0.018 -0.024 0.000 46.861465007262 3.167383575067 + 85.600 2012.64 0.000 0.000 -0.004 0.000 -0.015 -0.023 0.000 46.861465023553 3.167383590219 + 85.700 2012.64 0.000 0.000 -0.004 0.000 -0.017 -0.024 0.000 46.861465027387 3.167383573130 + 85.800 2012.64 0.000 0.000 -0.004 0.000 -0.017 -0.022 0.000 46.861465001955 3.167383579359 + 85.900 2012.64 0.000 0.000 -0.004 0.000 -0.017 -0.022 0.000 46.861464928188 3.167383631089 + 86.000 2012.64 0.000 0.000 -0.004 0.000 -0.015 -0.025 0.000 46.861464822226 3.167383719024 + 86.100 2012.64 0.000 0.000 -0.004 0.000 -0.017 -0.025 0.000 46.861464729411 3.167383805862 + 86.200 2012.64 0.000 0.000 -0.004 0.000 -0.017 -0.025 0.000 46.861464664858 3.167383869507 + 86.300 2012.64 0.000 0.000 -0.111 0.000 -0.017 -0.025 0.000 46.861464621255 3.167383907064 + 86.400 2012.64 0.000 0.000 -0.066 0.000 -0.017 -0.024 0.000 46.861464601729 3.167383921995 + 86.500 2012.64 0.000 0.000 -0.008 0.000 -0.016 -0.025 0.000 46.861464603281 3.167383920349 + 86.600 2012.64 0.000 0.000 -0.222 0.000 -0.017 -0.023 0.000 46.861464608206 3.167383916584 + 86.700 2012.64 0.000 0.000 -0.179 0.000 -0.019 -0.025 0.000 46.861464608850 3.167383915915 + 86.800 2012.64 0.000 0.000 -0.068 0.000 -0.015 -0.025 0.000 46.861464611415 3.167383913444 + 86.900 2012.64 0.000 0.000 -0.049 0.000 -0.016 -0.024 0.000 46.861464615293 3.167383909587 + 87.000 2012.64 0.000 0.000 -0.022 0.000 -0.016 -0.025 0.000 46.861464599359 3.167383924789 + 87.100 2012.64 0.000 0.000 -0.006 0.000 -0.015 -0.024 0.000 46.861464534281 3.167383989039 + 87.200 2012.64 0.000 0.000 -0.004 0.000 -0.016 -0.023 0.000 46.861464417320 3.167384099815 + 87.300 2012.64 0.000 0.000 -0.004 0.000 -0.016 -0.021 0.000 46.861464271344 3.167384216791 + 87.400 2012.64 0.000 0.000 0.024 0.000 -0.019 -0.021 0.000 46.861464130722 3.167384301007 + 87.500 2012.64 0.000 0.000 0.039 0.000 -0.017 -0.025 0.000 46.861464020334 3.167384358016 + 87.600 2012.64 0.000 0.000 0.132 0.000 -0.017 -0.023 0.000 46.861463959503 3.167384395380 + 87.700 2012.64 0.000 0.000 0.201 0.000 -0.017 -0.022 0.000 46.861463950202 3.167384406829 + 87.800 2012.64 0.000 0.000 0.214 0.000 -0.016 -0.025 0.000 46.861463961033 3.167384401626 + 87.900 2012.64 0.000 0.000 0.214 0.000 -0.019 -0.023 0.000 46.861463947024 3.167384417825 + 88.000 2012.64 0.000 0.000 0.214 0.000 -0.018 -0.023 0.000 46.861463879505 3.167384481536 + 88.100 2012.64 0.000 0.000 0.214 0.000 -0.016 -0.022 0.000 46.861463756084 3.167384575683 + 88.200 2012.64 0.000 0.000 0.214 0.000 -0.019 -0.022 0.000 46.861463613319 3.167384640442 + 88.300 2012.64 0.000 0.000 0.250 0.000 -0.016 -0.021 0.000 46.861463500246 3.167384652309 + 88.400 2012.64 0.000 0.000 0.259 0.000 -0.016 -0.022 0.000 46.861463442680 3.167384641093 + 88.500 2012.64 0.000 0.000 0.259 0.000 -0.015 -0.023 0.000 46.861463432383 3.167384635319 + 88.600 2012.64 0.000 0.000 0.259 0.000 -0.018 -0.022 0.000 46.861463439610 3.167384635999 + 88.700 2012.64 0.000 0.000 0.259 0.000 -0.017 -0.022 0.000 46.861463443925 3.167384636713 + 88.800 2012.64 0.000 0.000 0.227 0.000 -0.017 -0.022 0.000 46.861463443764 3.167384636619 + 88.900 2012.64 0.000 0.000 0.215 0.000 -0.018 -0.024 0.000 46.861463443310 3.167384636593 + 89.000 2012.64 0.000 0.000 0.214 0.000 -0.015 -0.022 0.000 46.861463443394 3.167384636598 + 89.100 2012.64 0.000 0.000 0.214 0.000 -0.018 -0.023 0.000 46.861463443394 3.167384636598 + 89.200 2012.64 0.000 0.000 0.214 0.000 -0.016 -0.024 0.000 46.861463443394 3.167384636598 + 89.300 2012.64 0.000 0.000 0.253 0.000 -0.019 -0.025 0.000 46.861463443394 3.167384636598 + 89.400 2012.64 0.000 0.000 0.259 0.000 -0.017 -0.026 0.000 46.861463443394 3.167384636598 + 89.500 2012.64 0.000 0.000 0.259 0.000 -0.018 -0.024 0.000 46.861463443394 3.167384636598 + 89.600 2012.64 0.000 0.000 0.259 0.000 -0.016 -0.024 0.000 46.861463443394 3.167384636598 + 89.700 2012.64 0.000 0.000 0.293 0.000 -0.016 -0.023 0.000 46.861463443394 3.167384636598 + 89.800 2012.64 0.000 0.000 0.337 0.000 -0.016 -0.022 0.000 46.861463443394 3.167384636598 + 89.900 2012.64 0.000 0.000 0.348 0.000 -0.016 -0.024 0.000 46.861463443394 3.167384636598 + 90.000 2012.64 0.000 0.000 0.383 0.000 -0.017 -0.024 0.000 46.861463443394 3.167384636598 + 90.100 2012.64 0.000 0.000 0.393 0.000 -0.016 -0.024 0.000 46.861463443394 3.167384636598 + 90.200 2012.64 0.000 0.000 0.394 0.000 -0.016 -0.026 0.000 46.861463443394 3.167384636598 + 90.300 2012.64 0.000 0.000 0.465 0.000 -0.018 -0.025 0.000 46.861463443394 3.167384636598 + 90.400 2012.64 0.000 0.000 0.477 0.000 -0.015 -0.026 0.000 46.861463443394 3.167384636598 + 90.500 2012.64 0.000 0.000 0.477 0.000 -0.017 -0.025 0.000 46.861463443394 3.167384636598 + 90.600 2012.64 0.000 0.000 0.477 0.000 -0.018 -0.023 0.000 46.861463443394 3.167384636598 + 90.700 2012.64 0.000 0.000 0.477 0.000 -0.018 -0.023 0.000 46.861463443394 3.167384636598 + 90.800 2012.64 0.000 0.000 0.477 0.000 -0.013 -0.023 0.000 46.861463443394 3.167384636598 + 90.900 2012.64 0.000 0.000 0.477 0.000 -0.018 -0.024 0.000 46.861463443397 3.167384636480 + 91.000 2012.64 0.000 0.000 0.477 0.000 -0.018 -0.021 0.000 46.861463443376 3.167384637284 + 91.100 2012.64 0.000 0.000 0.521 0.000 -0.015 -0.022 0.000 46.861463443405 3.167384635859 + 91.200 2012.64 0.000 0.000 0.799 0.000 -0.019 -0.024 0.000 46.861463443628 3.167384628146 + 91.300 2012.64 0.000 0.000 0.829 0.000 -0.016 -0.023 0.000 46.861463443825 3.167384630832 + 91.400 2012.64 0.000 0.000 0.830 0.000 -0.015 -0.023 0.000 46.861463441668 3.167384684625 + 91.500 2012.64 0.000 0.000 0.830 0.000 -0.015 -0.024 0.000 46.861463436519 3.167384807781 + 91.600 2012.64 0.000 0.000 0.830 0.000 -0.017 -0.023 0.000 46.861463434196 3.167384956331 + 91.700 2012.64 0.000 0.000 0.830 0.000 -0.019 -0.022 0.000 46.861463442160 3.167385063989 + 91.800 2012.64 0.000 0.000 0.830 0.000 -0.018 -0.021 0.000 46.861463449358 3.167385119161 + 91.900 2012.64 0.000 0.000 0.830 0.000 -0.021 -0.022 0.000 46.861463442559 3.167385141714 + 92.000 2012.64 0.000 0.000 0.830 0.000 -0.016 -0.021 0.000 46.861463425786 3.167385147967 + 92.100 2012.64 0.000 0.000 0.830 0.000 -0.019 -0.023 0.000 46.861463415213 3.167385171319 + 92.200 2012.64 0.000 0.000 0.830 0.000 -0.015 -0.022 0.000 46.861463415644 3.167385247312 + 92.300 2012.64 0.000 0.000 0.830 0.000 -0.013 -0.025 0.000 46.861463424043 3.167385377226 + 92.400 2012.64 0.000 0.000 0.830 0.000 -0.017 -0.022 0.000 46.861463430996 3.167385523935 + 92.500 2012.64 0.000 0.000 0.830 0.000 -0.014 -0.023 0.000 46.861463437145 3.167385659381 + 92.600 2012.64 0.000 0.000 0.830 0.000 -0.017 -0.025 0.000 46.861463445740 3.167385751217 + 92.700 2012.64 0.000 0.000 0.830 0.000 -0.017 -0.024 0.000 46.861463456495 3.167385796174 + 92.800 2012.64 0.000 0.000 0.830 0.000 -0.017 -0.022 0.000 46.861463459378 3.167385837641 + 92.900 2012.64 0.000 0.000 0.830 0.000 -0.018 -0.023 0.000 46.861463458742 3.167385917011 + 93.000 2012.64 0.000 0.000 0.830 0.000 -0.016 -0.023 0.000 46.861463474016 3.167386017637 + 93.100 2012.64 0.000 0.000 0.830 0.000 -0.017 -0.024 0.000 46.861463516742 3.167386109730 + 93.200 2012.64 0.000 0.000 0.830 0.000 -0.018 -0.022 0.000 46.861463561178 3.167386169354 + 93.300 2012.64 0.000 0.000 0.830 0.000 -0.016 -0.024 0.000 46.861463584183 3.167386202369 + 93.400 2012.64 0.000 0.000 0.830 0.000 -0.016 -0.025 0.000 46.861463585316 3.167386208236 + 93.500 2012.64 0.000 0.000 0.830 0.000 -0.019 -0.022 0.000 46.861463581112 3.167386203037 + 93.600 2012.64 0.000 0.000 0.830 0.000 -0.016 -0.025 0.000 46.861463579927 3.167386199780 + 93.700 2012.64 0.000 0.000 0.830 0.000 -0.018 -0.024 0.000 46.861463580302 3.167386200512 + 93.800 2012.64 0.000 0.000 0.830 0.000 -0.015 -0.023 0.000 46.861463580344 3.167386200606 + 93.900 2012.64 0.000 0.000 0.830 0.000 -0.015 -0.025 0.000 46.861463580344 3.167386200606 + 94.000 2012.64 0.000 0.000 0.830 0.000 -0.017 -0.025 0.000 46.861463580344 3.167386200606 + 94.100 2012.64 0.000 0.000 0.830 0.000 -0.014 -0.023 0.000 46.861463580344 3.167386200606 + 94.200 2012.64 0.000 0.000 0.830 0.000 -0.017 -0.024 0.000 46.861463580344 3.167386200606 + 94.300 2012.64 0.000 0.000 0.830 0.000 -0.017 -0.025 0.000 46.861463580344 3.167386200606 + 94.400 2012.64 0.000 0.000 0.830 0.000 -0.015 -0.025 0.000 46.861463580344 3.167386200606 + 94.500 2012.64 0.000 0.000 0.830 0.000 -0.018 -0.023 0.000 46.861463580344 3.167386200606 + 94.600 2012.64 0.000 0.000 0.830 0.000 -0.018 -0.027 0.000 46.861463580344 3.167386200606 + 94.700 2012.64 0.000 0.000 0.830 0.000 -0.016 -0.023 0.000 46.861463580344 3.167386200606 + 94.800 2012.64 0.000 0.000 0.830 0.000 -0.016 -0.026 0.000 46.861463580316 3.167386200715 + 94.900 2012.64 0.000 0.000 0.830 0.000 -0.016 -0.022 0.000 46.861463580559 3.167386199759 + 95.000 2012.64 0.000 0.000 0.830 0.000 -0.018 -0.024 0.000 46.861463579918 3.167386202633 + 95.100 2012.64 0.000 0.000 0.830 0.000 -0.015 -0.023 0.000 46.861463577297 3.167386210048 + 95.200 2012.64 0.000 0.000 0.830 0.000 -0.017 -0.022 0.000 46.861463580073 3.167386200954 + 95.300 2012.64 0.000 0.000 0.830 0.000 -0.017 -0.026 0.000 46.861463602409 3.167386129563 + 95.400 2012.64 0.000 0.000 0.830 0.000 -0.016 -0.022 0.000 46.861463644066 3.167385982863 + 95.500 2012.64 0.000 0.000 0.830 0.000 -0.014 -0.024 0.000 46.861463677582 3.167385808104 + 95.600 2012.64 0.000 0.000 0.830 0.000 -0.016 -0.023 0.000 46.861463677109 3.167385697411 + 95.700 2012.64 0.000 0.000 0.830 0.000 -0.016 -0.023 0.000 46.861463660864 3.167385662740 + 95.800 2012.64 0.000 0.000 0.830 0.000 -0.017 -0.021 0.000 46.861463652626 3.167385670778 + 95.900 2012.64 0.000 0.000 0.830 0.000 -0.018 -0.021 0.000 46.861463652723 3.167385687335 + 96.000 2012.64 0.000 0.000 0.830 0.000 -0.016 -0.024 0.000 46.861463657352 3.167385681104 + 96.100 2012.64 0.000 0.000 0.830 0.000 -0.017 -0.022 0.000 46.861463674769 3.167385597405 + 96.200 2012.64 0.000 0.000 0.830 0.000 -0.014 -0.023 0.000 46.861463710023 3.167385404555 + 96.300 2012.64 0.000 0.000 0.830 0.000 -0.018 -0.022 0.000 46.861463753127 3.167385130736 + 96.400 2012.64 0.000 0.000 0.830 0.000 -0.015 -0.021 0.000 46.861463788297 3.167384843881 + 96.500 2012.64 0.000 0.000 0.830 0.000 -0.017 -0.024 0.000 46.861463813219 3.167384587095 + 96.600 2012.64 0.000 0.000 0.830 0.000 -0.014 -0.020 0.000 46.861463839414 3.167384362336 + 96.700 2012.64 0.000 0.000 0.830 0.000 -0.017 -0.024 0.000 46.861463875134 3.167384160693 + 96.800 2012.64 0.000 0.000 0.830 0.000 -0.016 -0.022 0.000 46.861463914164 3.167383980852 + 96.900 2012.64 0.000 0.000 0.830 0.000 -0.015 -0.024 0.000 46.861463943724 3.167383821655 + 97.000 2012.64 0.000 0.000 0.830 0.000 -0.017 -0.024 0.000 46.861463964895 3.167383684943 + 97.100 2012.64 0.000 0.000 0.830 0.000 -0.017 -0.024 0.000 46.861463994885 3.167383556224 + 97.200 2012.64 0.000 0.000 0.830 0.000 -0.015 -0.027 0.000 46.861464042313 3.167383435836 + 97.300 2012.64 0.000 0.000 0.830 0.000 -0.017 -0.023 0.000 46.861464085767 3.167383352865 + 97.400 2012.64 0.000 0.000 0.830 0.000 -0.019 -0.025 0.000 46.861464104434 3.167383323213 + 97.500 2012.64 0.000 0.000 0.830 0.000 -0.015 -0.023 0.000 46.861464103075 3.167383326599 + 97.600 2012.64 0.000 0.000 0.830 0.000 -0.015 -0.021 0.000 46.861464099027 3.167383333758 + 97.700 2012.64 0.000 0.000 0.830 0.000 -0.018 -0.025 0.000 46.861464098339 3.167383335242 + 97.800 2012.64 0.000 0.000 0.830 0.000 -0.017 -0.022 0.000 46.861464098727 3.167383334459 + 97.900 2012.64 0.000 0.000 0.830 0.000 -0.017 -0.023 0.000 46.861464098716 3.167383334481 + 98.000 2012.64 0.000 0.000 0.830 0.000 -0.017 -0.023 0.000 46.861464098716 3.167383334481 + 98.100 2012.64 0.000 0.000 0.830 0.000 -0.013 -0.024 0.000 46.861464098716 3.167383334481 + 98.200 2012.64 0.000 0.000 0.830 0.000 -0.017 -0.024 0.000 46.861464098716 3.167383334481 + 98.300 2012.64 0.000 0.000 0.830 0.000 -0.017 -0.022 0.000 46.861464098716 3.167383334481 + 98.400 2012.64 0.000 0.000 0.830 0.000 -0.016 -0.023 0.000 46.861464098716 3.167383334481 + 98.500 2012.64 0.000 0.000 0.830 0.000 -0.018 -0.024 0.000 46.861464098716 3.167383334481 + 98.600 2012.64 0.000 0.000 0.830 0.000 -0.016 -0.025 0.000 46.861464098716 3.167383334481 + 98.700 2012.64 0.000 0.000 0.830 0.000 -0.016 -0.025 0.000 46.861464098716 3.167383334481 + 98.800 2012.64 0.000 0.000 0.830 0.000 -0.018 -0.025 0.000 46.861464098716 3.167383334481 + 98.900 2012.64 0.000 0.000 0.830 0.000 -0.016 -0.026 0.000 46.861464098716 3.167383334481 + 99.000 2012.64 0.000 0.000 0.830 0.000 -0.016 -0.024 0.000 46.861464098716 3.167383334481 + 99.100 2012.64 0.000 0.000 0.830 0.000 -0.017 -0.025 0.000 46.861464098716 3.167383334481 + 99.200 2012.64 0.000 0.000 0.830 0.000 -0.016 -0.025 0.000 46.861464098716 3.167383334481 + 99.300 2012.64 0.000 0.000 0.830 0.000 -0.016 -0.025 0.000 46.861464098716 3.167383334481 + 99.400 2012.64 0.000 0.000 0.830 0.000 -0.017 -0.021 0.000 46.861464098716 3.167383334481 + 99.500 2012.64 0.000 0.000 0.830 0.000 -0.015 -0.022 0.000 46.861464098716 3.167383334481 + 99.600 2012.64 0.000 0.000 0.830 0.000 -0.018 -0.023 0.000 46.861464098716 3.167383334481 + 99.700 2012.64 0.000 0.000 0.830 0.000 -0.018 -0.022 0.000 46.861464098716 3.167383334481 + 99.800 2012.64 0.000 0.000 0.830 0.000 -0.016 -0.023 0.000 46.861464098716 3.167383334481 + 99.900 2012.64 0.000 0.000 0.830 0.000 -0.018 -0.021 0.000 46.861464098716 3.167383334481 + 100.000 2012.64 0.000 0.000 0.830 0.000 -0.014 -0.023 0.000 46.861464098720 3.167383334354 + 100.100 2012.64 0.000 0.000 0.830 0.000 -0.016 -0.024 0.000 46.861464098722 3.167383334128 + 100.200 2012.64 0.000 0.000 0.830 0.000 -0.016 -0.024 0.000 46.861464098651 3.167383336845 + 100.300 2012.64 0.000 0.000 0.830 0.000 -0.018 -0.024 0.000 46.861464098551 3.167383341016 + 100.400 2012.64 0.000 0.000 0.830 0.000 -0.017 -0.024 0.000 46.861464098864 3.167383328785 + 100.500 2012.64 0.000 0.000 0.830 0.000 -0.017 -0.025 0.000 46.861464101088 3.167383270703 + 100.600 2012.64 0.000 0.000 0.830 0.000 -0.018 -0.026 0.000 46.861464103359 3.167383155707 + 100.700 2012.64 0.000 0.000 0.830 0.000 -0.016 -0.023 0.000 46.861464096938 3.167383007005 + 100.800 2012.64 0.000 0.000 0.830 0.000 -0.016 -0.023 0.000 46.861464075982 3.167382858279 + 100.900 2012.64 0.000 0.000 0.830 0.000 -0.018 -0.022 0.000 46.861464053629 3.167382738714 + 101.000 2012.64 0.000 0.000 0.830 0.000 -0.015 -0.025 0.000 46.861464043432 3.167382670228 + 101.100 2012.64 0.000 0.000 0.830 0.000 -0.015 -0.023 0.000 46.861464044714 3.167382652169 + 101.200 2012.64 0.000 0.000 0.830 0.000 -0.016 -0.024 0.000 46.861464047301 3.167382659564 + 101.300 2012.64 0.000 0.000 0.830 0.000 -0.016 -0.026 0.000 46.861464047631 3.167382665665 + 101.400 2012.64 0.000 0.000 0.830 0.000 -0.015 -0.024 0.000 46.861464047186 3.167382665877 + 101.500 2012.64 0.000 0.000 0.830 0.000 -0.018 -0.022 0.000 46.861464047278 3.167382665162 + 101.600 2012.64 0.000 0.000 0.830 0.000 -0.018 -0.020 0.000 46.861464047274 3.167382665306 + 101.700 2012.64 0.000 0.000 0.830 0.000 -0.019 -0.022 0.000 46.861464047274 3.167382665306 + 101.800 2012.64 0.000 0.000 0.830 0.000 -0.016 -0.023 0.000 46.861464047274 3.167382665306 + 101.900 2012.64 0.000 0.000 0.830 0.000 -0.017 -0.025 0.000 46.861464047274 3.167382665314 + 102.000 2012.64 0.000 0.000 0.830 0.000 -0.017 -0.023 0.000 46.861464047284 3.167382664866 + 102.100 2012.64 0.000 0.000 0.830 0.000 -0.016 -0.025 0.000 46.861464047173 3.167382665161 + 102.200 2012.64 0.000 0.000 0.830 0.000 -0.016 -0.025 0.000 46.861464047405 3.167382671454 + 102.300 2012.64 0.000 0.000 0.830 0.000 -0.019 -0.024 0.000 46.861464048433 3.167382674798 + 102.400 2012.64 0.000 0.000 0.830 0.000 -0.016 -0.023 0.000 46.861464047113 3.167382639398 + 102.500 2012.64 0.000 0.000 0.830 0.000 -0.017 -0.023 0.000 46.861464038775 3.167382523893 + 102.600 2012.64 0.000 0.000 0.830 0.000 -0.018 -0.022 0.000 46.861464027441 3.167382326650 + 102.700 2012.64 0.000 0.000 0.830 0.000 -0.018 -0.025 0.000 46.861464031595 3.167382085437 + 102.800 2012.64 0.000 0.000 0.830 0.000 -0.016 -0.024 0.000 46.861464059835 3.167381848170 + 102.900 2012.64 0.000 0.000 0.830 0.000 -0.017 -0.027 0.000 46.861464100936 3.167381632437 + 103.000 2012.64 0.000 0.000 0.830 0.000 -0.016 -0.025 0.000 46.861464141807 3.167381441782 + 103.100 2012.64 0.000 0.000 0.830 0.000 -0.017 -0.024 0.000 46.861464176061 3.167381267061 + 103.200 2012.64 0.000 0.000 0.830 0.000 -0.015 -0.022 0.000 46.861464189150 3.167381113163 + 103.300 2012.64 0.000 0.000 0.830 0.000 -0.015 -0.023 0.000 46.861464177083 3.167381001192 + 103.400 2012.64 0.000 0.000 0.830 0.000 -0.014 -0.023 0.000 46.861464153250 3.167380942368 + 103.500 2012.64 0.000 0.000 0.830 0.000 -0.017 -0.023 0.000 46.861464121348 3.167380905295 + 103.600 2012.64 0.000 0.000 0.830 0.000 -0.017 -0.023 0.000 46.861464067452 3.167380839158 + 103.700 2012.64 0.000 0.000 0.830 0.000 -0.018 -0.024 0.000 46.861463998226 3.167380737998 + 103.800 2012.64 0.000 0.000 0.830 0.000 -0.019 -0.021 0.000 46.861463950543 3.167380657721 + 103.900 2012.64 0.000 0.000 0.830 0.000 -0.016 -0.025 0.000 46.861463941785 3.167380637015 + 104.000 2012.64 0.000 0.000 0.830 0.000 -0.016 -0.021 0.000 46.861463948360 3.167380645576 + 104.100 2012.64 0.000 0.000 0.830 0.000 -0.021 -0.022 0.000 46.861463952770 3.167380651633 + 104.200 2012.64 0.000 0.000 0.830 0.000 -0.015 -0.021 0.000 46.861463952233 3.167380654847 + 104.300 2012.64 0.000 0.000 0.830 0.000 -0.018 -0.024 0.000 46.861463942154 3.167380654642 + 104.400 2012.64 0.000 0.000 0.830 0.000 -0.019 -0.023 0.000 46.861463918444 3.167380622809 + 104.500 2012.64 0.000 0.000 0.830 0.000 -0.018 0.013 0.000 46.861463885315 3.167380520757 + 104.600 2012.64 0.000 0.000 0.830 0.000 -0.017 -0.037 0.000 46.861463840829 3.167380345061 + 104.700 2012.64 0.000 0.000 0.830 0.000 -0.012 -0.019 0.000 46.861463773877 3.167380155949 + 104.800 2012.64 0.000 0.000 0.830 0.000 -0.017 -0.022 0.000 46.861463687289 3.167379994080 + 104.900 2012.64 0.000 0.000 0.830 0.000 -0.015 -0.032 0.000 46.861463601318 3.167379831274 + 105.000 2012.64 0.000 0.000 0.830 0.000 -0.016 -0.016 0.000 46.861463531667 3.167379644938 + 105.100 2012.64 0.000 0.000 0.830 0.000 -0.016 -0.030 0.000 46.861463474344 3.167379462559 + 105.200 2012.64 0.000 0.000 0.830 0.000 -0.016 -0.018 0.000 46.861463417550 3.167379307921 + 105.300 2012.64 0.000 0.000 0.830 0.000 -0.018 -0.024 0.000 46.861463353341 3.167379170439 + 105.400 2012.64 0.000 0.000 0.830 0.000 -0.015 -0.024 0.000 46.861463277898 3.167379035620 + 105.500 2012.64 0.000 0.000 0.830 0.000 -0.019 -0.021 0.000 46.861463202807 3.167378922719 + 105.600 2012.64 0.000 0.000 0.830 0.000 -0.017 -0.028 0.000 46.861463155586 3.167378864834 + 105.700 2012.64 0.000 0.000 0.830 0.000 -0.017 -0.020 0.000 46.861463144112 3.167378856296 + 105.800 2012.64 0.000 0.000 0.830 0.000 -0.016 -0.024 0.000 46.861463150060 3.167378865130 + 105.900 2012.64 0.000 0.000 0.830 0.000 -0.016 -0.023 0.000 46.861463154083 3.167378869449 + 106.000 2012.64 0.000 0.000 0.830 0.000 -0.016 -0.023 0.000 46.861463153899 3.167378869042 + 106.100 2012.64 0.000 0.000 0.830 0.000 -0.015 -0.026 0.000 46.861463153501 3.167378868631 + 106.200 2012.64 0.000 0.000 0.830 0.000 -0.016 -0.023 0.000 46.861463153561 3.167378868698 + 106.300 2012.64 0.000 0.000 0.830 0.000 -0.017 -0.025 0.000 46.861463153561 3.167378868698 + 106.400 2012.64 0.000 0.000 0.830 0.000 -0.016 -0.023 0.000 46.861463153561 3.167378868698 + 106.500 2012.64 0.000 0.000 0.830 0.000 -0.017 -0.025 0.000 46.861463153561 3.167378868698 + 106.600 2012.64 0.000 0.000 0.830 0.000 -0.015 -0.027 0.000 46.861463153561 3.167378868698 + 106.700 2012.64 0.000 0.000 0.830 0.000 -0.017 -0.023 0.000 46.861463153561 3.167378868698 + 106.800 2012.64 0.000 0.000 0.830 0.000 -0.019 -0.024 0.000 46.861463153561 3.167378868698 + 106.900 2012.64 0.000 0.000 0.830 0.000 -0.017 -0.023 0.000 46.861463153561 3.167378868698 + 107.000 2012.64 0.000 0.000 0.830 0.000 -0.015 -0.028 0.000 46.861463153561 3.167378868698 + 107.100 2012.64 0.000 0.000 0.830 0.000 -0.017 -0.025 0.000 46.861463153561 3.167378868698 + 107.200 2012.64 0.000 0.000 0.830 0.000 -0.018 -0.024 0.000 46.861463153561 3.167378868698 + 107.300 2012.64 0.000 0.000 0.830 0.000 -0.012 -0.025 0.000 46.861463153592 3.167378868767 + 107.400 2012.64 0.000 0.000 0.830 0.000 -0.016 -0.025 0.000 46.861463153446 3.167378868302 + 107.500 2012.64 0.000 0.000 0.830 0.000 -0.015 -0.026 0.000 46.861463153434 3.167378869331 + 107.600 2012.64 0.000 0.000 0.830 0.000 -0.018 -0.024 0.000 46.861463156421 3.167378872568 + 107.700 2012.64 0.000 0.000 0.830 0.000 -0.018 -0.025 0.000 46.861463158850 3.167378870733 + 107.800 2012.64 0.000 0.000 0.830 0.000 -0.015 -0.024 0.000 46.861463140600 3.167378844250 + 107.900 2012.64 0.000 0.000 0.830 0.000 -0.017 -0.020 0.000 46.861463074095 3.167378783595 + 108.000 2012.64 0.000 0.000 0.830 0.000 -0.017 -0.023 0.000 46.861462956648 3.167378695969 + 108.100 2012.64 0.000 0.000 0.830 0.000 -0.016 -0.025 0.000 46.861462831031 3.167378615322 + 108.200 2012.64 0.000 0.000 0.830 0.000 -0.015 -0.025 0.000 46.861462710088 3.167378540354 + 108.300 2012.64 0.000 0.000 0.830 0.000 -0.017 -0.023 0.000 46.861462587544 3.167378467039 + 108.400 2012.64 0.000 0.000 0.830 0.000 -0.017 -0.023 0.000 46.861462478421 3.167378389617 + 108.500 2012.64 0.000 0.000 0.830 0.000 -0.016 -0.024 0.000 46.861462409178 3.167378323303 + 108.600 2012.64 0.000 0.000 0.830 0.000 -0.017 -0.024 0.000 46.861462388425 3.167378284798 + 108.700 2012.64 0.000 0.000 0.830 0.000 -0.016 -0.024 0.000 46.861462392100 3.167378278995 + 108.800 2012.64 0.000 0.000 0.830 0.000 -0.016 -0.023 0.000 46.861462397391 3.167378284415 + 108.900 2012.64 0.000 0.000 0.830 0.000 -0.017 -0.024 0.000 46.861462398254 3.167378287791 + 109.000 2012.64 0.000 0.000 0.830 0.000 -0.018 -0.025 0.000 46.861462397782 3.167378287016 + 109.100 2012.64 0.000 0.000 0.830 0.000 -0.018 -0.023 0.000 46.861462397765 3.167378286978 + 109.200 2012.64 0.000 0.000 0.830 0.000 -0.015 -0.023 0.000 46.861462397768 3.167378286992 + 109.300 2012.64 0.000 0.000 0.830 0.000 -0.020 -0.025 0.000 46.861462397596 3.167378286180 + 109.400 2012.64 0.000 0.000 0.830 0.000 -0.016 -0.024 0.000 46.861462398223 3.167378289443 + 109.500 2012.64 0.000 0.000 0.830 0.000 -0.013 -0.025 0.000 46.861462400729 3.167378300017 + 109.600 2012.64 0.000 0.000 0.830 0.000 -0.018 -0.023 0.000 46.861462399945 3.167378290944 + 109.700 2012.64 0.000 0.000 0.830 0.000 -0.015 -0.024 0.000 46.861462376921 3.167378189966 + 109.800 2012.64 0.000 0.000 0.830 0.000 -0.019 -0.024 0.000 46.861462312616 3.167377948871 + 109.900 2012.64 0.000 0.000 0.830 0.000 -0.020 -0.024 0.000 46.861462208794 3.167377611195 + 110.000 2012.64 0.000 0.000 0.830 0.000 -0.014 -0.021 0.000 46.861462121937 3.167377372627 + 110.100 2012.64 0.000 0.000 0.830 0.000 -0.020 -0.024 0.000 46.861462100086 3.167377330022 + 110.200 2012.64 0.000 0.000 0.830 0.000 -0.017 -0.023 0.000 46.861462106196 3.167377351359 + 110.300 2012.64 0.000 0.000 0.830 0.000 -0.016 -0.022 0.000 46.861462111857 3.167377364351 + 110.400 2012.64 0.000 0.000 0.830 0.000 -0.021 -0.023 0.000 46.861462112164 3.167377364281 + 110.500 2012.64 0.000 0.000 0.780 0.000 -0.017 -0.026 0.000 46.861462111489 3.167377362897 + 110.600 2012.64 0.000 0.000 0.579 0.000 -0.019 -0.024 0.000 46.861462111608 3.167377363165 + 110.700 2012.64 0.000 0.000 0.537 0.000 -0.019 -0.024 0.000 46.861462111608 3.167377363165 + 110.800 2012.64 0.000 0.000 0.549 0.000 -0.017 -0.022 0.000 46.861462111608 3.167377363165 + 110.900 2012.64 0.000 0.000 0.506 0.000 -0.017 -0.023 0.000 46.861462111608 3.167377363165 + 111.000 2012.64 0.000 0.000 0.668 0.000 -0.017 -0.022 0.000 46.861462111608 3.167377363165 + 111.100 2012.64 0.000 0.000 1.202 0.000 -0.014 -0.022 0.000 46.861462111608 3.167377363165 + 111.200 2012.64 0.000 0.000 1.831 0.000 -0.016 -0.022 0.000 46.861462111608 3.167377363165 + 111.300 2012.64 0.000 0.000 1.877 0.000 -0.017 -0.020 0.000 46.861462111608 3.167377363165 + 111.400 2012.64 0.000 0.000 1.834 0.000 -0.016 -0.022 0.000 46.861462111608 3.167377363165 + 111.500 2012.64 0.000 0.000 1.803 0.000 -0.016 -0.022 0.000 46.861462111608 3.167377363165 + 111.600 2012.64 0.000 0.000 1.809 0.000 -0.015 -0.022 0.000 46.861462111608 3.167377363165 + 111.700 2012.64 0.000 0.000 1.839 0.000 -0.019 -0.022 0.000 46.861462111608 3.167377363165 + 111.800 2012.64 0.000 0.000 1.844 0.000 -0.015 -0.022 0.000 46.861462111608 3.167377363165 + 111.900 2012.64 0.000 0.000 1.844 0.000 -0.016 -0.020 0.000 46.861462111611 3.167377363165 + 112.000 2012.64 0.000 0.000 1.844 0.000 -0.018 -0.022 0.000 46.861462111438 3.167377363185 + 112.100 2012.64 0.000 0.000 1.844 0.000 -0.015 -0.023 0.000 46.861462112047 3.167377363085 + 112.200 2012.64 0.000 0.000 1.844 0.000 -0.017 -0.023 0.000 46.861462114681 3.167377362933 + 112.300 2012.64 0.000 0.000 1.844 0.000 -0.018 -0.024 0.000 46.861462113864 3.167377363383 + 112.400 2012.64 0.000 0.000 1.844 0.000 -0.015 -0.022 0.000 46.861462090043 3.167377365307 + 112.500 2012.64 0.000 0.000 1.831 0.000 -0.018 -0.023 0.000 46.861462024455 3.167377368197 + 112.600 2012.64 0.000 0.000 1.803 0.000 -0.016 -0.022 0.000 46.861461918076 3.167377370398 + 112.700 2012.64 0.000 0.000 1.799 0.000 -0.017 -0.023 0.000 46.861461802979 3.167377370795 + 112.800 2012.64 0.000 0.000 1.799 0.000 -0.012 -0.022 0.000 46.861461706656 3.167377370495 + 112.900 2012.64 0.000 0.000 1.826 0.000 -0.019 -0.021 0.000 46.861461642725 3.167377370353 + 113.000 2012.64 0.000 0.000 1.954 0.000 -0.018 -0.023 0.000 46.861461616275 3.167377370395 + 113.100 2012.64 0.000 0.000 2.080 0.000 -0.015 -0.021 0.000 46.861461616977 3.167377370394 + 113.200 2012.64 0.000 0.000 2.036 0.000 -0.016 -0.021 0.000 46.861461622688 3.167377370394 + 113.300 2012.64 0.000 0.000 1.965 0.000 -0.018 -0.025 0.000 46.861461624322 3.167377370394 + 113.400 2012.64 0.000 0.000 1.933 0.000 -0.015 -0.025 0.000 46.861461623609 3.167377370394 + 113.500 2012.64 0.000 0.000 1.933 0.000 -0.015 -0.024 0.000 46.861461623636 3.167377370394 + 113.600 2012.64 0.000 0.000 1.933 0.000 -0.018 -0.023 0.000 46.861461623636 3.167377370394 + 113.700 2012.64 0.000 0.000 1.933 0.000 -0.016 -0.023 0.000 46.861461623636 3.167377370394 + 113.800 2012.64 0.000 0.000 1.915 0.000 -0.016 -0.025 0.000 46.861461623636 3.167377370394 + 113.900 2012.64 0.000 0.000 1.888 0.000 -0.019 -0.023 0.000 46.861461623636 3.167377370394 + 114.000 2012.64 0.000 0.000 1.888 0.000 -0.015 -0.025 0.000 46.861461623636 3.167377370394 + 114.100 2012.64 0.000 0.000 1.888 0.000 -0.014 -0.025 0.000 46.861461623641 3.167377370275 + 114.200 2012.64 0.000 0.000 1.888 0.000 -0.018 -0.025 0.000 46.861461623595 3.167377369754 + 114.300 2012.64 0.000 0.000 1.868 0.000 -0.017 -0.025 0.000 46.861461623328 3.167377373996 + 114.400 2012.64 0.000 0.000 1.844 0.000 -0.016 -0.025 0.000 46.861461625060 3.167377380388 + 114.500 2012.64 0.000 0.000 1.844 0.000 -0.016 -0.025 0.000 46.861461627732 3.167377361449 + 114.600 2012.64 0.000 0.000 1.844 0.000 -0.017 -0.026 0.000 46.861461618242 3.167377274675 + 114.700 2012.64 0.000 0.000 1.844 0.000 -0.018 -0.026 0.000 46.861461577846 3.167377116614 + 114.800 2012.64 0.000 0.000 1.844 0.000 -0.016 -0.023 0.000 46.861461512557 3.167376935370 + 114.900 2012.64 0.000 0.000 1.844 0.000 -0.014 -0.024 0.000 46.861461461004 3.167376796386 + 115.000 2012.64 0.000 0.000 1.844 0.000 -0.016 -0.027 0.000 46.861461447769 3.167376722875 + 115.100 2012.64 0.000 0.000 1.844 0.000 -0.016 -0.025 0.000 46.861461456316 3.167376706544 + 115.200 2012.64 0.000 0.000 1.844 0.000 -0.018 -0.027 0.000 46.861461463111 3.167376716542 + 115.300 2012.64 0.000 0.000 1.844 0.000 -0.018 -0.023 0.000 46.861461450501 3.167376709629 + 115.400 2012.64 0.000 0.000 1.844 0.000 -0.016 -0.024 0.000 46.861461405022 3.167376652144 + 115.500 2012.64 0.000 0.000 1.844 0.000 -0.018 -0.024 0.000 46.861461337041 3.167376553662 + 115.600 2012.64 0.000 0.000 1.844 0.000 -0.016 -0.024 0.000 46.861461284565 3.167376469265 + 115.700 2012.64 0.000 0.000 1.844 0.000 -0.018 -0.024 0.000 46.861461271504 3.167376441124 + 115.800 2012.64 0.000 0.000 1.885 0.000 -0.016 -0.024 0.000 46.861461276920 3.167376447389 + 115.900 2012.64 0.000 0.000 1.928 0.000 -0.016 -0.024 0.000 46.861461280728 3.167376454447 + 116.000 2012.64 0.000 0.000 1.933 0.000 -0.017 -0.022 0.000 46.861461280209 3.167376454323 + 116.100 2012.64 0.000 0.000 1.933 0.000 -0.017 -0.023 0.000 46.861461278323 3.167376453370 + 116.200 2012.64 0.000 0.000 1.999 0.000 -0.017 -0.023 0.000 46.861461277893 3.167376453240 + 116.300 2012.64 0.000 0.000 2.127 0.000 -0.016 -0.023 0.000 46.861461287429 3.167376455053 + 116.400 2012.64 0.000 0.000 2.165 0.000 -0.018 -0.020 0.000 46.861461311860 3.167376461191 + 116.500 2012.64 0.000 0.000 2.152 0.000 -0.015 -0.024 0.000 46.861461342344 3.167376472003 + 116.600 2012.64 0.000 0.000 2.152 0.000 -0.018 -0.020 0.000 46.861461361378 3.167376484177 + 116.700 2012.64 0.000 0.000 2.152 0.000 -0.017 -0.022 0.000 46.861461366007 3.167376493428 + 116.800 2012.64 0.000 0.000 2.152 0.000 -0.017 -0.025 0.000 46.861461365983 3.167376497706 + 116.900 2012.64 0.000 0.000 2.152 0.000 -0.016 -0.022 0.000 46.861461365950 3.167376498240 + 117.000 2012.64 0.000 0.000 2.152 0.000 -0.016 -0.021 0.000 46.861461365977 3.167376497610 + 117.100 2012.64 0.000 0.000 2.152 0.000 -0.016 -0.022 0.000 46.861461365702 3.167376497228 + 117.200 2012.64 0.000 0.000 2.152 0.000 -0.014 -0.024 0.000 46.861461365721 3.167376497261 + 117.300 2012.64 0.000 0.000 2.152 0.000 -0.016 -0.022 0.000 46.861461365738 3.167376497293 + 117.400 2012.64 0.000 0.000 2.152 0.000 -0.019 -0.022 0.000 46.861461365734 3.167376497285 + 117.500 2012.64 0.000 0.000 2.152 0.000 -0.015 -0.021 0.000 46.861461365734 3.167376497285 + 117.600 2012.64 0.000 0.000 2.152 0.000 -0.017 -0.023 0.000 46.861461365734 3.167376497285 + 117.700 2012.64 0.000 0.000 2.177 0.000 -0.018 -0.024 0.000 46.861461365734 3.167376497285 + 117.800 2012.64 0.000 0.000 2.164 0.000 -0.016 -0.021 0.000 46.861461365734 3.167376497285 + 117.900 2012.64 0.000 0.000 2.152 0.000 -0.016 -0.024 0.000 46.861461365734 3.167376497285 + 118.000 2012.64 0.000 0.000 2.178 0.000 -0.017 -0.025 0.000 46.861461365734 3.167376497285 + 118.100 2012.64 0.000 0.000 2.163 0.000 -0.017 -0.024 0.000 46.861461365734 3.167376497285 + 118.200 2012.64 0.000 0.000 2.152 0.000 -0.016 -0.023 0.000 46.861461365734 3.167376497285 + 118.300 2012.64 0.000 0.000 2.152 0.000 -0.017 -0.024 0.000 46.861461365734 3.167376497285 + 118.400 2012.64 0.000 0.000 2.152 0.000 -0.016 -0.024 0.000 46.861461365741 3.167376497285 + 118.500 2012.64 0.000 0.000 2.152 0.000 -0.014 -0.025 0.000 46.861461365632 3.167376497273 + 118.600 2012.64 0.000 0.000 2.152 0.000 -0.015 -0.026 0.000 46.861461365636 3.167376497485 + 118.700 2012.64 0.000 0.000 2.152 0.000 -0.016 -0.025 0.000 46.861461367262 3.167376497081 + 118.800 2012.64 0.000 0.000 2.152 0.000 -0.017 -0.025 0.000 46.861461368691 3.167376494451 + 118.900 2012.64 0.000 0.000 2.152 0.000 -0.016 -0.025 0.000 46.861461359501 3.167376495665 + 119.000 2012.64 0.000 0.000 2.152 0.000 -0.016 -0.025 0.000 46.861461327972 3.167376516547 + 119.100 2012.64 0.000 0.000 2.152 0.000 -0.015 -0.027 0.000 46.861461280096 3.167376564119 + 119.200 2012.64 0.000 0.000 2.152 0.000 -0.015 -0.025 0.000 46.861461243036 3.167376614001 + 119.300 2012.64 0.000 0.000 2.152 0.000 -0.017 -0.025 0.000 46.861461232972 3.167376635571 + 119.400 2012.64 0.000 0.000 2.152 0.000 -0.017 -0.024 0.000 46.861461236676 3.167376633066 + 119.500 2012.64 0.000 0.000 2.152 0.000 -0.014 -0.023 0.000 46.861461239426 3.167376628120 + 119.600 2012.64 0.000 0.000 2.152 0.000 -0.017 -0.023 0.000 46.861461239323 3.167376627683 + 119.700 2012.64 0.000 0.000 2.152 0.000 -0.016 -0.022 0.000 46.861461239054 3.167376628321 + 119.800 2012.64 0.000 0.000 2.152 0.000 -0.016 -0.023 0.000 46.861461239105 3.167376628219 + 119.900 2012.64 0.000 0.000 2.152 0.000 -0.018 -0.025 0.000 46.861461239105 3.167376628219 + 120.000 2012.64 0.000 0.000 2.152 0.000 -0.017 -0.024 0.000 46.861461239105 3.167376628219 + 120.100 2012.64 0.000 0.000 2.152 0.000 -0.015 -0.025 0.000 46.861461239105 3.167376628219 + 120.200 2012.64 0.000 0.000 2.152 0.000 -0.015 -0.027 0.000 46.861461239105 3.167376628219 + 120.300 2012.64 0.000 0.000 2.152 0.000 -0.016 -0.025 0.000 46.861461239105 3.167376628219 + 120.400 2012.64 0.000 0.000 2.152 0.000 -0.014 -0.025 0.000 46.861461239105 3.167376628219 + 120.500 2012.64 0.000 0.000 2.152 0.000 -0.016 -0.025 0.000 46.861461239105 3.167376628219 + 120.600 2012.64 0.000 0.000 2.152 0.000 -0.018 -0.024 0.000 46.861461239105 3.167376628219 + 120.700 2012.64 0.000 0.000 2.152 0.000 -0.014 -0.025 0.000 46.861461239105 3.167376628219 + 120.800 2012.64 0.000 0.000 2.152 0.000 -0.016 -0.023 0.000 46.861461239105 3.167376628219 + 120.900 2012.64 0.000 0.000 2.152 0.000 -0.016 -0.023 0.000 46.861461239105 3.167376628219 + 121.000 2012.64 0.000 0.000 2.152 0.000 -0.015 -0.023 0.000 46.861461239105 3.167376628219 + 121.100 2012.64 0.000 0.000 2.152 0.000 -0.016 -0.024 0.000 46.861461239105 3.167376628219 + 121.200 2012.64 0.000 0.000 2.152 0.000 -0.017 -0.022 0.000 46.861461239105 3.167376628219 + 121.300 2012.64 0.000 0.000 2.152 0.000 -0.017 -0.022 0.000 46.861461239105 3.167376628219 + 121.400 2012.64 0.000 0.000 2.152 0.000 -0.016 -0.021 0.000 46.861461239105 3.167376628219 + 121.500 2012.64 0.000 0.000 2.152 0.000 -0.015 -0.022 0.000 46.861461239105 3.167376628219 + 121.600 2012.64 0.000 0.000 2.152 0.000 -0.017 -0.022 0.000 46.861461239105 3.167376628219 + 121.700 2012.64 0.000 0.000 2.152 0.000 -0.018 -0.021 0.000 46.861461239105 3.167376628219 + 121.800 2012.64 0.000 0.000 2.152 0.000 -0.017 -0.023 0.000 46.861461239105 3.167376628219 + 121.900 2012.64 0.000 0.000 2.152 0.000 -0.017 -0.024 0.000 46.861461239105 3.167376628219 + 122.000 2012.64 0.000 0.000 2.152 0.000 -0.016 -0.025 0.000 46.861461239105 3.167376628219 + 122.100 2012.64 0.000 0.000 2.152 0.000 -0.017 -0.022 0.000 46.861461239105 3.167376628219 + 122.200 2012.64 0.000 0.000 2.152 0.000 -0.015 -0.024 0.000 46.861461239105 3.167376628219 + 122.300 2012.64 0.000 0.000 2.152 0.000 -0.017 -0.023 0.000 46.861461239105 3.167376628219 + 122.400 2012.64 0.000 0.000 2.152 0.000 -0.017 -0.022 0.000 46.861461239110 3.167376628113 + 122.500 2012.64 0.000 0.000 2.152 0.000 -0.017 -0.026 0.000 46.861461239070 3.167376629027 + 122.600 2012.64 0.000 0.000 2.152 0.000 -0.016 -0.026 0.000 46.861461239189 3.167376626232 + 122.700 2012.64 0.000 0.000 2.114 0.000 -0.017 -0.020 0.000 46.861461239543 3.167376618815 + 122.800 2012.64 0.000 0.000 2.107 0.000 -0.014 -0.019 0.000 46.861461239155 3.167376628296 + 122.900 2012.64 0.000 0.000 2.107 0.000 -0.019 -0.020 0.000 46.861461236832 3.167376678792 + 123.000 2012.64 0.000 0.000 2.107 0.000 -0.017 -0.022 0.000 46.861461231041 3.167376798831 + 123.100 2012.64 0.000 0.000 2.107 0.000 -0.016 -0.018 0.000 46.861461223823 3.167376942049 + 123.200 2012.64 0.000 0.000 2.107 0.000 -0.014 -0.026 0.000 46.861461219814 3.167377016146 + 123.300 2012.64 0.000 0.000 2.107 0.000 -0.016 -0.019 0.000 46.861461219393 3.167377020816 + 123.400 2012.64 0.000 0.000 2.107 0.000 -0.015 -0.023 0.000 46.861461220018 3.167377008441 + 123.500 2012.64 0.000 0.000 2.107 0.000 -0.019 -0.023 0.000 46.861461220207 3.167377005543 + 123.600 2012.64 0.000 0.000 2.107 0.000 -0.016 -0.024 0.000 46.861461220164 3.167377006388 + 123.700 2012.64 0.000 0.000 2.107 0.000 -0.016 -0.025 0.000 46.861461220152 3.167377006565 + 123.800 2012.64 0.000 0.000 2.107 0.000 -0.016 -0.025 0.000 46.861461220153 3.167377006543 + 123.900 2012.64 0.000 0.000 2.107 0.000 -0.018 -0.025 0.000 46.861461220153 3.167377006543 + 124.000 2012.64 0.000 0.000 2.107 0.000 -0.015 -0.022 0.000 46.861461220153 3.167377006543 + 124.100 2012.64 0.000 0.000 2.107 0.000 -0.015 -0.025 0.000 46.861461220153 3.167377006543 + 124.200 2012.64 0.000 0.000 2.107 0.000 -0.015 -0.023 0.000 46.861461220153 3.167377006543 + 124.300 2012.64 0.000 0.000 2.107 0.000 -0.016 -0.025 0.000 46.861461220153 3.167377006543 + 124.400 2012.64 0.000 0.000 2.107 0.000 -0.018 -0.024 0.000 46.861461220153 3.167377006543 + 124.500 2012.64 0.000 0.000 2.107 0.000 -0.017 -0.023 0.000 46.861461220153 3.167377006543 + 124.600 2012.64 0.000 0.000 2.107 0.000 -0.016 -0.025 0.000 46.861461220138 3.167377006570 + 124.700 2012.64 0.000 0.000 2.107 0.000 -0.017 -0.021 0.000 46.861461220364 3.167377006165 + 124.800 2012.64 0.000 0.000 2.107 0.000 -0.016 -0.023 0.000 46.861461219822 3.167377007337 + 124.900 2012.64 0.000 0.000 2.107 0.000 -0.018 -0.023 0.000 46.861461216561 3.167377012419 + 125.000 2012.64 0.000 0.000 2.107 0.000 -0.015 -0.024 0.000 46.861461213676 3.167377014358 + 125.100 2012.64 0.000 0.000 2.107 0.000 -0.015 -0.022 0.000 46.861461236966 3.167376976656 + 125.200 2012.64 0.000 0.000 2.107 0.000 -0.016 -0.023 0.000 46.861461317658 3.167376864133 + 125.300 2012.64 0.000 0.000 2.107 0.000 -0.018 -0.024 0.000 46.861461456884 3.167376685367 + 125.400 2012.64 0.000 0.000 2.107 0.000 -0.016 -0.025 0.000 46.861461605475 3.167376505195 + 125.500 2012.64 0.000 0.000 2.107 0.000 -0.017 -0.022 0.000 46.861461722667 3.167376367644 + 125.600 2012.64 0.000 0.000 2.107 0.000 -0.018 -0.023 0.000 46.861461807563 3.167376271914 + 125.700 2012.64 0.000 0.000 2.107 0.000 -0.017 -0.023 0.000 46.861461869793 3.167376205922 + 125.800 2012.65 0.000 0.000 2.107 0.000 -0.017 -0.023 0.000 46.861461932646 3.167376139270 + 125.900 2012.65 0.000 0.000 2.107 0.000 -0.017 -0.023 0.000 46.861461995498 3.167376072618 + 126.000 2012.65 0.000 0.000 2.107 0.000 -0.017 -0.023 0.000 46.861462057728 3.167376006627 + 126.100 2012.65 0.000 0.000 2.107 0.000 -0.017 -0.023 0.000 46.861462120580 3.167375939975 + 126.200 2012.66 0.000 0.000 2.107 0.000 -0.017 -0.023 0.000 46.861462183433 3.167375873323 + 126.300 2012.66 0.000 0.000 2.107 0.000 -0.017 -0.023 0.000 46.861462245663 3.167375807331 + 126.400 2012.66 0.000 0.000 2.107 0.000 -0.017 -0.023 0.000 46.861462308515 3.167375740679 + 126.500 2012.67 0.000 0.000 2.107 0.000 -0.017 -0.023 0.000 46.861462371367 3.167375674027 + 126.577 2012.67 0.000 0.000 2.107 0.000 -0.017 -0.023 0.000 46.861462419284 3.167375623213 + +Lap: +1 _02.23.705_ 143.705 +2 _01.54.912_ 114.912 +3 _02.06.577_ 126.577 \ No newline at end of file diff --git a/Sources/Extraction_Excel_Test/xlsx.xlsx b/Sources/Extraction_Excel_Test/xlsx.xlsx new file mode 100644 index 0000000..4204797 Binary files /dev/null and b/Sources/Extraction_Excel_Test/xlsx.xlsx differ diff --git a/Sources/Interface/IApi.cs b/Sources/Interface/IApi.cs new file mode 100644 index 0000000..1e6c8df --- /dev/null +++ b/Sources/Interface/IApi.cs @@ -0,0 +1,44 @@ +using Dto.Classe; +using Modele.Classe; + +namespace Interface +{ + public interface IApi + { + + + // Pilotes + Task> GetPilotes(); + Task GetOnePilote(string pseudo); + Task AddPilote(Pilote pilote); + Task CheckPilote(string Email, string password); + + + // Ecuries + Task> GetEcuries(); + Task GetOneEcurie(string name); + Task> AddEcurie(Ecurie ecurie,string pseudo); + + // Circuits + Task> GetCircuits(); + Task GetOneCircuit(string name); + Task AddCircuit(Circuit circuit); + + // Session + Task> GetSessionsByPilotes(string pseudo); + Task AddSession(Session session, string namePseudo, string nameCircuit,string nameSession,string typeSession); + + + // Tours + Task> GetTours(long IdSession); + + // Point + Task> GetPoints(long IdTour); + + // Geolocalisation + Task GetGeolocalisations(long IdPoint); + + //Image + Task GetImage(int IdPilote); + } +} diff --git a/Sources/Interface/Interface.csproj b/Sources/Interface/Interface.csproj new file mode 100644 index 0000000..694c5d3 --- /dev/null +++ b/Sources/Interface/Interface.csproj @@ -0,0 +1,13 @@ + + + + net6.0 + enable + enable + + + + + + + diff --git a/Sources/Modele/Classe/Circuit.cs b/Sources/Modele/Classe/Circuit.cs new file mode 100644 index 0000000..4b1470d --- /dev/null +++ b/Sources/Modele/Classe/Circuit.cs @@ -0,0 +1,18 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Modele.Classe +{ + public class Circuit + { + public string name { get; set; } + + public Circuit(string nameArg = "Inconnu !") + { + name = nameArg; + } + } +} diff --git a/Sources/Modele/Classe/Ecurie.cs b/Sources/Modele/Classe/Ecurie.cs new file mode 100644 index 0000000..01e5346 --- /dev/null +++ b/Sources/Modele/Classe/Ecurie.cs @@ -0,0 +1,19 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Modele.Classe +{ + public class Ecurie + { + public string name { get; set; } + + public Ecurie(string nameArg = "Inconnu !") + { + name = nameArg; + } + + } +} diff --git a/Sources/Modele/Classe/Geolocalisation.cs b/Sources/Modele/Classe/Geolocalisation.cs new file mode 100644 index 0000000..15d1873 --- /dev/null +++ b/Sources/Modele/Classe/Geolocalisation.cs @@ -0,0 +1,20 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Modele.Classe +{ + public class Geolocalisation + { + public double Latitude { get; set; } + public double Longitude { get; set; } + + public Geolocalisation(double LatitudeArg,double LongitudeArg) + { + Latitude = LatitudeArg; + Longitude = LongitudeArg; + } + } +} diff --git a/Sources/Modele/Classe/Image.cs b/Sources/Modele/Classe/Image.cs new file mode 100644 index 0000000..39d73c3 --- /dev/null +++ b/Sources/Modele/Classe/Image.cs @@ -0,0 +1,18 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Modele.Classe +{ + public class Image + { + public string Base64 { get; set; } + + public Image(string base64) + { + Base64 = base64; + } + } +} diff --git a/Sources/Modele/Classe/Pilote.cs b/Sources/Modele/Classe/Pilote.cs new file mode 100644 index 0000000..c11b021 --- /dev/null +++ b/Sources/Modele/Classe/Pilote.cs @@ -0,0 +1,24 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Modele.Classe +{ + public class Pilote + { + public string Pseudo { get; set; } + public string Email { get; set; } + public string Password { get; set; } + + public Pilote(string _Pseudo, string _Email, string _Password) + { + Pseudo = _Pseudo; + Email = _Email; + Password = _Password; + } + + public Pilote() { } + } +} diff --git a/Sources/Modele/Classe/Point.cs b/Sources/Modele/Classe/Point.cs new file mode 100644 index 0000000..2ac7431 --- /dev/null +++ b/Sources/Modele/Classe/Point.cs @@ -0,0 +1,40 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Security.Cryptography.X509Certificates; +using System.Text; +using System.Threading.Tasks; + +namespace Modele.Classe +{ + public class Point + { + public double Latitude { get; set; } + public double Longitude { get; set; } + public float Timer { get; set; } + public float Distance { get; set; } + public float NGear { get; set; } + public float PBrakeF { get; set; } + public float ASteer { get; set; } + public float RPedal { get; set; } + public float GLong { get; set; } + public float GLat { get; set; } + public float VCar { get; set; } + + public Point(double longitude,double latitude, float timer, float distance, float nGear, float pBrakeF, float aSteer, float rPedal, float gLong, float gLat, float vCar) + { + Latitude = latitude; + Longitude = longitude; + Timer = timer; + Distance = distance; + NGear = nGear; + PBrakeF = pBrakeF; + ASteer = aSteer; + RPedal = rPedal; + GLong = gLong; + GLat = gLat; + VCar = vCar; + } + + } +} diff --git a/Sources/Modele/Classe/Session.cs b/Sources/Modele/Classe/Session.cs new file mode 100644 index 0000000..73735b9 --- /dev/null +++ b/Sources/Modele/Classe/Session.cs @@ -0,0 +1,60 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Modele.Classe +{ + public class Session + { + public long Id { get; set; } + public string name { get; set; } + public string type { get; set; } + public DateTime date { get; set; } + + public string nameCircuit { get; set; } + + public string namePilote { set; get; } + + + public List Tours { get; set; } + + public Session() + { + Tours = new List(); + } + public Session(long IdArg,DateTime dateArg,string nameArg = "Inconnu !",string typeArg = "Inconnu !",string nameCircuitArg = "Inconnu !",string namePiloteArg = "Inconnu !") + { + name = nameArg; + type = typeArg; + nameCircuit = nameCircuitArg; + namePilote = namePiloteArg; + date = dateArg; + Id = IdArg; + } + + public Session(List tours, long IdArg, DateTime dateArg, string nameArg = "Inconnu !", string typeArg = "Inconnu !", string nameCircuitArg = "Inconnu !", string namePiloteArg = "Inconnu !") + { + name = nameArg; + type = typeArg; + nameCircuit = nameCircuitArg; + namePilote = namePiloteArg; + date = dateArg; + Id = IdArg; + Tours = tours; + } + + public override string ToString() + { + string sb = ""; + + foreach (Tour tour in Tours) + { + sb += tour.ToString(); + } + + return sb; + } + } +} diff --git a/Sources/Modele/Classe/Tour.cs b/Sources/Modele/Classe/Tour.cs new file mode 100644 index 0000000..c3a0bee --- /dev/null +++ b/Sources/Modele/Classe/Tour.cs @@ -0,0 +1,47 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +//classe tour +namespace Modele.Classe +{ + public class Tour + { + public string Temps { get; set; } + public int Numero { get; set; } + public long IdSession { get; set; } + + public List Points { get; set; } + + public Tour(string TempsArg,long IdSessionArg) + { + Temps = TempsArg; + IdSession = IdSessionArg; + } + + public Tour(int nombre, string temps) + { + Numero = nombre; + Temps = temps; + Points = new List(); + } + + public override string ToString() + { + string sb = "-"; + + sb+=$"Tour {Numero}: {Temps}\n"; + foreach (Point point in Points) + { + sb += $"\tTime: {point.Timer}, Distance: {point.Distance}\n"; + sb += $"\tNGear: {point.NGear}, PBrakeF: {point.PBrakeF}, ASteer: {point.ASteer}\n"; + sb += $"\tRPedal: {point.RPedal}, GLong: {point.GLong}, GLat: {point.GLat}\n"; + sb += $"\tVCar: {point.VCar}, Geo: {point.Latitude}, {point.Longitude}\n\n"; + } + + return sb; + } + + } +} diff --git a/Sources/Modele/Modele.csproj b/Sources/Modele/Modele.csproj new file mode 100644 index 0000000..27ac386 --- /dev/null +++ b/Sources/Modele/Modele.csproj @@ -0,0 +1,9 @@ + + + + net6.0 + enable + enable + + + diff --git a/readme.md b/readme.md new file mode 100644 index 0000000..20cb460 --- /dev/null +++ b/readme.md @@ -0,0 +1,3 @@ +Api R-Dash !! + +Modif !!! \ No newline at end of file